From a3e057ef37dfc98772e48698654d8a70615b6acf Mon Sep 17 00:00:00 2001 From: Evan Scamehorn Date: Tue, 2 Dec 2025 14:06:24 -0600 Subject: [PATCH] population and job data for map, add visualization of data --- data-pipeline/generate_city.py | 145 +++++++++++++++++++++++++++++---- index.html | 1 + public/city_data.json | 2 +- public/routing_graph.json | 2 +- src/UIManager.js | 15 ++++ src/main.js | 94 ++++++++++++++++++++- 6 files changed, 238 insertions(+), 21 deletions(-) diff --git a/data-pipeline/generate_city.py b/data-pipeline/generate_city.py index ac8c14f..8f1fe8f 100644 --- a/data-pipeline/generate_city.py +++ b/data-pipeline/generate_city.py @@ -4,7 +4,9 @@ import os import networkx as nx from shapely.ops import unary_union from shapely.geometry import Polygon, MultiPolygon +from scipy.spatial import cKDTree import re +import numpy as np # ========================================== # 1. Configuration @@ -29,6 +31,12 @@ DEFAULT_WIDTHS = { } +# Census/Zoning Simulation Settings +# Approximate density per cubic meter of building volume +POP_DENSITY_FACTOR = 0.05 # People per m3 (Residential) +JOB_DENSITY_FACTOR = 0.08 # Jobs per m3 (Commercial) + + # ========================================== # 2. Helpers # ========================================== @@ -56,7 +64,6 @@ def get_height(row): def estimate_road_width(row): """Estimates width with US-unit safety checks.""" - # 1. Explicit width tag for key in ["width", "width:carriageway", "est_width"]: if key in row and str(row[key]) != "nan": val_str = str(row[key]).lower() @@ -66,13 +73,12 @@ def estimate_road_width(row): val = float(nums[0]) if "'" in val_str or "ft" in val_str or "feet" in val_str: val *= 0.3048 - elif val > 50: # Sanity check for feet without units + elif val > 50: val *= 0.3048 return val except: pass - # 2. Lanes if "lanes" in row and str(row["lanes"]) != "nan": try: clean = re.findall(r"\d+", str(row["lanes"])) @@ -83,18 +89,81 @@ def estimate_road_width(row): except: pass - # 3. Default based on type highway = row.get("highway", "residential") if isinstance(highway, list): highway = highway[0] return DEFAULT_WIDTHS.get(highway, 4.0) +def classify_building(row, height, area): + """ + Classifies a building as Residential (Pop) or Commercial (Jobs) + and estimates the count based on volume. + """ + b_type = str(row.get("building", "yes")).lower() + amenity = str(row.get("amenity", "")).lower() + office = str(row.get("office", "")).lower() + shop = str(row.get("shop", "")).lower() + + volume = area * height + + # Lists of tags + residential_tags = [ + "apartments", + "residential", + "house", + "detached", + "terrace", + "dormitory", + "hotel", + ] + commercial_tags = [ + "commercial", + "office", + "retail", + "industrial", + "university", + "school", + "hospital", + "public", + ] + + is_res = any(t in b_type for t in residential_tags) + is_com = ( + any(t in b_type for t in commercial_tags) + or (amenity != "nan" and amenity != "") + or (office != "nan" and office != "") + or (shop != "nan" and shop != "") + ) + + # Default logic if generic "yes" + if not is_res and not is_com: + # Small buildings likely houses, big generic likely commercial in city center + if volume > 5000: + is_com = True + else: + is_res = True + + pop = 0 + jobs = 0 + category = "none" + density_score = 0 + + if is_res: + pop = round(volume * POP_DENSITY_FACTOR) + category = "residential" + density_score = min(1.0, pop / 500) # Normalize for color (0-1) + elif is_com: + jobs = round(volume * JOB_DENSITY_FACTOR) + category = "commercial" + density_score = min(1.0, jobs / 1000) # Normalize for color (0-1) + + return category, density_score, pop, jobs + + def parse_geometry(geom, center_x, center_y): - """Parses geometry into {outer, holes} structure.""" if geom.is_empty: return [] - polys = [] if geom.geom_type == "Polygon": source_geoms = [geom] @@ -116,12 +185,10 @@ def parse_geometry(geom, center_x, center_y): ] holes.append(hole_coords) polys.append({"outer": outer, "holes": holes}) - return polys def parse_line_points(geom, center_x, center_y): - """Simple parser for LineStrings (Routing Graph).""" if geom.geom_type == "LineString": return [ [round(x - center_x, 2), round(y - center_y, 2)] for x, y in geom.coords @@ -139,6 +206,9 @@ tags_visual = { "natural": ["water", "bay"], "leisure": ["park", "garden"], "landuse": ["grass", "forest", "park"], + "amenity": True, # Fetch amenities to help classify jobs + "office": True, + "shop": True, } gdf_visual = ox.features.features_from_address(PLACE_NAME, tags=tags_visual, dist=DIST) @@ -158,24 +228,42 @@ center_y = gdf_visual.geometry.centroid.y.mean() output_visual = {"buildings": [], "water": [], "parks": [], "roads": []} output_routing = {"nodes": {}, "edges": []} -print("3. Processing Visual Layers...") +# We will store building data to map it to graph nodes later +building_data_points = [] # (x, y, pop, jobs) + +print("3. Processing Visual Layers & Census Simulation...") for idx, row in gdf_visual.iterrows(): polygons = parse_geometry(row.geometry, center_x, center_y) for poly_data in polygons: - # 1. Buildings + # 1. Buildings (With Zoning Logic) if "building" in row and str(row["building"]) != "nan": + height = get_height(row) + area = row.geometry.area + + # Zoning / Census Simulation + cat, score, pop, jobs = classify_building(row, height, area) + + # Store centroid for graph mapping + cx = row.geometry.centroid.x - center_x + cy = row.geometry.centroid.y - center_y + building_data_points.append([cx, cy, pop, jobs]) + output_visual["buildings"].append( - {"shape": poly_data, "height": get_height(row)} + { + "shape": poly_data, + "height": height, + "data": {"type": cat, "density": score, "pop": pop, "jobs": jobs}, + } ) - # 2. Water (Explicit check for NaN) + # 2. Water elif ("natural" in row and str(row["natural"]) != "nan") or ( "water" in row and str(row["water"]) != "nan" ): output_visual["water"].append({"shape": poly_data}) - # 3. Parks (Fallback) + # 3. Parks else: output_visual["parks"].append({"shape": poly_data}) @@ -187,17 +275,40 @@ for idx, row in gdf_edges.iterrows(): road_polys.append(buffered) if road_polys: - print(" Merging road polygons...") merged_roads = unary_union(road_polys) road_shapes = parse_geometry(merged_roads, center_x, center_y) for shape in road_shapes: output_visual["roads"].append({"shape": shape}) -print("4. Processing Routing Graph...") +print("4. Mapping Census Data to Graph Nodes...") +# Create a KDTree of building centroids +if building_data_points: + b_coords = np.array([[b[0], b[1]] for b in building_data_points]) + b_data = np.array([[b[2], b[3]] for b in building_data_points]) # pop, jobs + tree = cKDTree(b_coords) + for node_id, row in gdf_nodes.iterrows(): + nx = row.geometry.x - center_x + ny = row.geometry.y - center_y + + # Find all buildings within 100m of this node + if building_data_points: + indices = tree.query_ball_point([nx, ny], r=100) + if indices: + # Sum pop/jobs of nearby buildings + nearby_stats = np.sum(b_data[indices], axis=0) + node_pop = int(nearby_stats[0]) + node_jobs = int(nearby_stats[1]) + else: + node_pop, node_jobs = 0, 0 + else: + node_pop, node_jobs = 0, 0 + output_routing["nodes"][int(node_id)] = { - "x": round(row.geometry.x - center_x, 2), - "y": round(row.geometry.y - center_y, 2), + "x": round(nx, 2), + "y": round(ny, 2), + "pop": node_pop, # Store for gameplay later + "jobs": node_jobs, } for u, v, k in G.edges(keys=True): diff --git a/index.html b/index.html index b0ae5c1..f73a08b 100644 --- a/index.html +++ b/index.html @@ -16,6 +16,7 @@

Route Planner

Left Click: Add Point
Drag: Move Point

+
diff --git a/public/city_data.json b/public/city_data.json index 9665547..4d775c0 100644 --- a/public/city_data.json +++ b/public/city_data.json @@ -1 +1 @@ -{"buildings": [{"shape": {"outer": [[-2464.0, -629.13], [-2465.27, -638.5], [-2460.41, -639.85], [-2462.6, -649.51], [-2469.37, -648.01], [-2471.99, -658.1], [-2473.39, -661.85], [-2475.35, -667.19], [-2477.53, -672.97], [-2479.89, -679.45], [-2481.32, -683.56], [-2475.69, -686.22], [-2480.23, -695.13], [-2486.89, -692.5], [-2487.2, -693.09], [-2489.87, -691.74], [-2502.24, -685.07], [-2503.64, -687.91], [-2506.89, -692.31], [-2510.0, -695.6], [-2512.84, -698.4], [-2515.73, -700.45], [-2519.45, -702.72], [-2523.22, -704.64], [-2527.05, -706.01], [-2530.7, -707.1], [-2534.91, -708.02], [-2534.41, -711.54], [-2594.71, -708.67], [-2596.11, -707.56], [-2598.28, -711.63], [-2603.48, -709.87], [-2608.4, -707.5], [-2610.89, -705.98], [-2612.55, -704.96], [-2615.95, -702.33], [-2616.93, -701.48], [-2619.88, -698.93], [-2615.58, -694.53], [-2611.77, -690.49], [-2614.03, -687.07], [-2634.46, -696.51], [-2636.3, -692.77], [-2640.26, -694.45], [-2651.33, -668.95], [-2648.44, -667.83], [-2650.95, -660.39], [-2653.17, -652.63], [-2654.36, -647.91], [-2654.31, -645.83], [-2651.22, -645.1], [-2652.44, -640.72], [-2653.29, -635.89], [-2650.58, -635.38], [-2651.84, -627.0], [-2652.86, -617.63], [-2653.07, -608.53], [-2652.95, -598.52], [-2652.5, -588.58], [-2651.84, -579.75], [-2650.35, -569.94], [-2648.56, -562.14], [-2651.75, -561.11], [-2649.26, -551.91], [-2651.76, -550.7], [-2652.62, -550.28], [-2651.43, -547.14], [-2650.75, -545.34], [-2648.41, -539.09], [-2646.09, -532.04], [-2643.32, -525.62], [-2645.56, -523.85], [-2642.36, -516.58], [-2636.63, -506.56], [-2631.54, -498.47], [-2624.76, -491.1], [-2623.28, -492.93], [-2621.88, -491.87], [-2613.5, -499.77], [-2608.49, -495.42], [-2603.34, -491.25], [-2609.99, -481.35], [-2608.63, -480.5], [-2604.33, -477.41], [-2604.65, -476.82], [-2597.71, -473.16], [-2590.64, -470.06], [-2582.22, -467.37], [-2574.85, -465.8], [-2566.72, -464.61], [-2559.23, -464.3], [-2551.08, -464.67], [-2544.47, -465.43], [-2536.09, -467.35], [-2527.55, -470.2], [-2519.48, -474.54], [-2515.5, -477.17], [-2507.69, -483.53], [-2501.41, -489.03], [-2496.64, -494.18], [-2493.86, -497.2], [-2487.82, -504.42], [-2482.55, -513.19], [-2478.79, -521.37], [-2475.64, -528.6], [-2474.32, -532.58], [-2472.46, -538.53], [-2465.5, -536.44], [-2462.11, -546.53], [-2469.16, -549.04], [-2467.0, -557.17], [-2465.79, -564.08], [-2463.93, -574.78], [-2462.65, -588.9], [-2462.6, -595.04], [-2462.52, -599.49], [-2455.46, -599.3], [-2455.64, -604.74], [-2462.64, -604.36], [-2462.66, -606.24], [-2463.22, -619.06], [-2464.0, -629.13]], "holes": [[[-2585.61, -663.26], [-2536.63, -664.7], [-2532.34, -662.98], [-2532.31, -657.48], [-2530.77, -657.42], [-2530.62, -651.31], [-2532.02, -651.17], [-2529.87, -645.24], [-2527.85, -637.17], [-2525.46, -626.93], [-2524.02, -615.84], [-2523.33, -599.86], [-2523.36, -583.88], [-2523.9, -576.82], [-2524.75, -569.28], [-2526.65, -558.88], [-2528.74, -550.35], [-2530.94, -541.88], [-2534.36, -538.65], [-2534.91, -539.03], [-2537.81, -535.01], [-2541.56, -531.27], [-2545.13, -528.83], [-2549.76, -526.29], [-2555.85, -525.05], [-2560.63, -524.48], [-2566.64, -525.52], [-2574.19, -528.82], [-2582.28, -536.25], [-2587.7, -541.01], [-2590.7, -551.89], [-2596.03, -573.13], [-2597.27, -589.12], [-2598.26, -600.3], [-2598.43, -613.77], [-2596.81, -629.32], [-2594.34, -640.0], [-2592.26, -648.71], [-2592.95, -660.77], [-2585.61, -663.26]]]}, "height": 8.0}, {"shape": {"outer": [[-2003.59, -514.72], [-2006.92, -587.19], [-2036.03, -585.92], [-2035.84, -576.99], [-2037.05, -575.64], [-2049.63, -575.26], [-2060.09, -563.31], [-2059.73, -551.99], [-2052.07, -545.35], [-2062.76, -533.8], [-2061.8, -511.85], [-2003.59, -514.72]], "holes": [[[-2045.76, -534.71], [-2041.43, -539.17], [-2032.08, -549.86], [-2016.34, -550.21], [-2015.68, -533.49], [-2016.31, -533.45], [-2016.12, -525.91], [-2045.45, -524.75], [-2045.76, -534.71]]]}, "height": 8.0}, {"shape": {"outer": [[-1546.71, -216.43], [-1546.5, -214.98], [-1546.16, -208.12], [-1546.84, -208.09], [-1544.55, -161.5], [-1544.14, -153.74], [-1543.47, -142.93], [-1541.1, -102.25], [-1540.9, -100.49], [-1540.82, -98.24], [-1540.68, -96.79], [-1540.27, -90.51], [-1502.8, -92.34], [-1497.45, -92.59], [-1490.09, -93.0], [-1493.27, -156.55], [-1496.39, -216.32], [-1497.08, -229.57], [-1508.82, -228.95], [-1547.21, -226.95], [-1546.71, -216.43]], "holes": [[[-1530.15, -149.47], [-1529.37, -150.34], [-1528.45, -151.39], [-1507.6, -152.51], [-1506.63, -151.47], [-1505.97, -150.73], [-1505.24, -140.35], [-1506.04, -139.17], [-1529.37, -138.2], [-1529.81, -138.88], [-1530.15, -149.47]]]}, "height": 21.0}, {"shape": {"outer": [[-2702.81, -716.15], [-2689.96, -716.41], [-2689.87, -711.41], [-2692.54, -711.35], [-2692.43, -706.12], [-2679.62, -706.38], [-2679.72, -711.61], [-2680.24, -711.6], [-2680.32, -715.46], [-2679.8, -715.48], [-2679.81, -717.76], [-2679.92, -721.46], [-2680.58, -721.45], [-2680.66, -725.42], [-2679.99, -725.43], [-2680.09, -730.26], [-2703.08, -729.79], [-2702.81, -716.15]], "holes": [[[-2694.43, -724.75], [-2690.96, -724.88], [-2690.77, -719.83], [-2693.33, -719.73], [-2694.24, -719.7], [-2694.43, -724.75]]]}, "height": 8.0}, {"shape": {"outer": [[-1045.58, -482.12], [-1046.36, -502.74], [-1047.94, -527.89], [-1048.13, -530.9], [-1080.3, -529.43], [-1080.07, -524.32], [-1084.87, -524.19], [-1083.45, -500.95], [-1079.77, -436.37], [-1079.62, -430.35], [-1076.32, -430.58], [-1076.12, -425.99], [-1053.54, -426.53], [-1044.23, -426.84], [-1044.95, -466.12], [-1044.97, -467.42], [-1034.51, -478.84], [-1038.37, -482.29], [-1045.58, -482.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2853.08, -159.72], [-2876.73, -160.75], [-2901.57, -161.18], [-2903.38, -161.25], [-2904.79, -161.31], [-2923.42, -161.73], [-2923.07, -160.61], [-2923.11, -159.7], [-2923.55, -158.69], [-2924.43, -158.02], [-2925.32, -157.71], [-2935.56, -157.84], [-2936.59, -158.28], [-2937.33, -158.91], [-2937.89, -159.86], [-2938.11, -161.14], [-2937.96, -162.05], [-2937.65, -162.78], [-2936.74, -163.7], [-2935.89, -164.12], [-2934.88, -164.26], [-2933.73, -164.11], [-2933.2, -167.51], [-2964.18, -172.72], [-2965.0, -166.4], [-2965.51, -162.47], [-2968.36, -162.76], [-2968.34, -153.34], [-2968.31, -143.97], [-2855.09, -142.54], [-2855.23, -147.61], [-2852.09, -146.92], [-2852.46, -151.75], [-2853.08, -159.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1755.99, 1593.49], [1758.64, 1595.91], [1759.36, 1595.07], [1798.22, 1552.73], [1802.83, 1556.95], [1804.9, 1554.7], [1826.27, 1574.18], [1810.32, 1591.55], [1846.93, 1625.47], [1852.31, 1619.61], [1854.29, 1621.6], [1866.81, 1607.84], [1867.9, 1608.87], [1871.89, 1604.46], [1860.44, 1594.1], [1847.31, 1607.82], [1848.58, 1608.6], [1847.73, 1609.56], [1844.55, 1609.77], [1843.67, 1609.17], [1844.08, 1608.41], [1828.03, 1593.63], [1827.59, 1593.88], [1826.64, 1593.04], [1826.37, 1589.95], [1827.22, 1589.3], [1828.36, 1589.95], [1841.13, 1576.35], [1805.25, 1543.33], [1804.47, 1543.98], [1739.39, 1484.58], [1732.62, 1492.09], [1728.86, 1488.79], [1713.69, 1505.54], [1720.71, 1511.67], [1718.77, 1513.7], [1726.96, 1521.23], [1738.03, 1509.5], [1751.85, 1522.08], [1721.19, 1555.36], [1718.97, 1557.75], [1714.89, 1557.96], [1713.0, 1558.05], [1703.23, 1549.38], [1702.68, 1549.78], [1701.84, 1549.11], [1701.8, 1547.67], [1701.77, 1546.38], [1702.5, 1545.68], [1703.14, 1546.22], [1712.44, 1535.72], [1711.54, 1534.93], [1713.73, 1532.89], [1706.31, 1526.27], [1704.97, 1527.43], [1698.23, 1521.69], [1679.61, 1542.66], [1677.85, 1541.16], [1671.09, 1549.03], [1678.25, 1555.42], [1679.3, 1554.12], [1681.15, 1555.52], [1680.8, 1556.16], [1740.4, 1610.42], [1755.99, 1593.49]], "holes": [[[1735.15, 1570.75], [1767.7, 1535.27], [1785.06, 1551.09], [1771.19, 1566.2], [1770.32, 1565.41], [1762.67, 1573.74], [1760.85, 1572.09], [1750.9, 1582.94], [1751.34, 1583.33], [1750.08, 1584.7], [1743.76, 1584.69], [1735.42, 1577.08], [1735.15, 1570.75]]]}, "height": 14.0}, {"shape": {"outer": [[-1863.47, -6.02], [-1862.78, -2.7], [-1855.74, -4.05], [-1855.65, -3.55], [-1852.08, -4.13], [-1849.7, 7.81], [-1867.54, 10.63], [-1866.87, 13.52], [-1867.45, 13.53], [-1865.37, 25.61], [-1864.79, 25.59], [-1864.73, 27.9], [-1859.54, 27.18], [-1858.95, 27.74], [-1850.89, 26.35], [-1850.88, 26.93], [-1838.22, 24.83], [-1838.26, 23.68], [-1830.2, 22.28], [-1830.22, 21.7], [-1825.05, 20.97], [-1827.72, 8.32], [-1832.89, 9.05], [-1834.31, 2.9], [-1833.64, 2.67], [-1833.84, 1.09], [-1834.03, -0.03], [-1834.14, -0.66], [-1835.01, -0.5], [-1836.15, -7.11], [-1833.26, -7.6], [-1834.3, -13.62], [-1829.94, -14.36], [-1828.93, -14.58], [-1827.92, -14.77], [-1826.34, -15.1], [-1826.63, -16.69], [-1827.57, -22.1], [-1828.59, -27.47], [-1828.9, -29.18], [-1830.16, -28.95], [-1831.42, -28.71], [-1832.42, -28.5], [-1836.82, -27.7], [-1837.9, -33.51], [-1840.94, -32.94], [-1842.15, -39.43], [-1841.14, -39.58], [-1841.24, -40.28], [-1841.5, -41.62], [-1841.6, -42.62], [-1841.73, -43.5], [-1842.6, -43.35], [-1843.87, -49.8], [-1839.12, -50.59], [-1841.46, -63.67], [-1846.43, -62.75], [-1846.53, -63.38], [-1854.97, -61.71], [-1855.11, -62.54], [-1856.21, -62.34], [-1867.48, -60.26], [-1867.33, -59.43], [-1875.38, -57.94], [-1875.28, -57.4], [-1880.46, -56.43], [-1880.16, -54.8], [-1908.19, -49.57], [-1907.83, -48.95], [-1905.76, -37.91], [-1902.82, -20.82], [-1902.69, -18.96], [-1904.13, -18.75], [-1903.37, -14.45], [-1902.22, -8.29], [-1900.33, 1.69], [-1882.35, -1.45], [-1882.56, -2.61], [-1863.47, -6.02]], "holes": [[[-1877.61, -40.08], [-1877.45, -39.22], [-1859.77, -42.43], [-1857.64, -30.07], [-1860.57, -29.52], [-1860.6, -28.76], [-1867.75, -27.44], [-1867.1, -24.34], [-1885.88, -21.17], [-1886.21, -22.5], [-1887.61, -22.25], [-1890.77, -37.97], [-1877.61, -40.08]]]}, "height": 14.0}, {"shape": {"outer": [[-3229.78, 25.16], [-3224.48, 39.71], [-3225.01, 50.88], [-3225.17, 51.44], [-3232.67, 50.99], [-3233.57, 66.25], [-3233.18, 66.27], [-3233.6, 73.63], [-3230.09, 107.04], [-3234.15, 107.44], [-3232.35, 125.71], [-3228.16, 125.3], [-3228.31, 126.72], [-3201.48, 125.74], [-3201.55, 123.7], [-3199.0, 123.61], [-3189.33, 123.25], [-3189.33, 123.13], [-3188.79, 123.1], [-3188.8, 122.99], [-3188.52, 122.98], [-3187.84, 122.95], [-3187.67, 126.85], [-3163.15, 125.94], [-3163.2, 124.14], [-3159.8, 124.02], [-3162.09, 60.35], [-3162.14, 58.9], [-3162.32, 54.02], [-3162.54, 47.86], [-3164.1, 48.29], [-3168.56, 48.48], [-3175.03, 48.69], [-3181.14, 48.93], [-3181.17, 48.32], [-3216.09, 49.61], [-3216.67, 33.91], [-3199.38, 30.67], [-3199.63, 24.07], [-3229.78, 25.16]], "holes": [[[-3188.89, 115.9], [-3199.29, 116.08], [-3199.64, 116.01], [-3199.98, 115.9], [-3200.32, 115.76], [-3200.64, 115.61], [-3200.94, 115.41], [-3201.23, 115.2], [-3201.49, 114.95], [-3201.74, 114.68], [-3222.12, 90.57], [-3222.55, 89.98], [-3222.94, 89.37], [-3223.27, 88.72], [-3223.54, 88.05], [-3223.76, 87.36], [-3223.92, 86.66], [-3224.02, 85.94], [-3224.92, 77.45], [-3224.93, 77.38], [-3196.83, 76.35], [-3196.79, 77.41], [-3195.76, 77.37], [-3195.91, 73.38], [-3190.48, 73.22], [-3188.89, 115.9]]]}, "height": 10.5}, {"shape": {"outer": [[-1649.5, -1224.04], [-1656.94, -1223.89], [-1657.39, -1238.87], [-1659.12, -1238.82], [-1659.33, -1245.68], [-1660.34, -1245.65], [-1660.38, -1247.06], [-1713.63, -1245.5], [-1713.25, -1232.58], [-1727.58, -1232.16], [-1726.55, -1196.96], [-1727.4, -1196.93], [-1727.28, -1193.17], [-1726.36, -1193.2], [-1726.27, -1190.12], [-1727.19, -1190.09], [-1727.09, -1186.64], [-1726.11, -1186.68], [-1725.99, -1182.88], [-1726.98, -1182.85], [-1726.64, -1170.97], [-1725.57, -1171.0], [-1725.12, -1155.69], [-1716.31, -1155.95], [-1716.29, -1154.98], [-1689.11, -1155.77], [-1688.38, -1158.18], [-1686.26, -1158.87], [-1684.97, -1156.71], [-1681.89, -1156.74], [-1681.35, -1159.3], [-1679.15, -1158.28], [-1679.33, -1164.37], [-1664.91, -1164.76], [-1639.46, -1165.46], [-1639.56, -1169.75], [-1647.78, -1169.46], [-1647.97, -1174.32], [-1634.78, -1174.58], [-1634.85, -1178.2], [-1630.89, -1178.28], [-1631.14, -1191.23], [-1630.55, -1191.25], [-1631.18, -1223.14], [-1635.77, -1223.05], [-1635.83, -1226.13], [-1632.12, -1226.22], [-1632.38, -1239.52], [-1636.5, -1243.18], [-1649.95, -1242.91], [-1649.5, -1224.04]], "holes": [[[-1690.66, -1195.41], [-1682.18, -1195.64], [-1682.13, -1193.77], [-1675.1, -1193.96], [-1674.67, -1178.2], [-1690.18, -1177.78], [-1690.66, -1195.41]]]}, "height": 8.0}, {"shape": {"outer": [[-1467.26, -128.93], [-1465.83, -96.06], [-1465.18, -96.09], [-1465.01, -92.29], [-1456.67, -92.7], [-1455.12, -92.66], [-1453.89, -92.72], [-1445.82, -93.1], [-1445.99, -96.82], [-1444.74, -96.88], [-1444.97, -101.72], [-1443.39, -101.78], [-1443.41, -102.34], [-1443.69, -108.17], [-1443.76, -110.27], [-1445.36, -110.21], [-1445.41, -112.42], [-1445.46, -113.53], [-1445.57, -114.76], [-1446.14, -127.36], [-1449.45, -127.23], [-1449.63, -130.02], [-1444.12, -130.27], [-1444.67, -141.3], [-1469.09, -140.14], [-1468.6, -128.87], [-1467.26, -128.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1465.69, -166.14], [-1460.48, -166.43], [-1447.75, -167.1], [-1446.94, -167.15], [-1448.48, -204.73], [-1449.16, -218.92], [-1489.74, -216.43], [-1487.52, -165.0], [-1485.34, -165.11], [-1472.75, -165.77], [-1465.69, -166.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1323.8, 103.88], [-1323.84, 103.03], [-1328.3, 103.24], [-1329.78, 103.3], [-1346.94, 104.09], [-1349.8, 104.23], [-1349.66, 107.26], [-1349.51, 110.57], [-1351.44, 110.61], [-1351.47, 109.68], [-1358.65, 109.9], [-1359.92, 111.15], [-1363.06, 111.33], [-1361.84, 113.47], [-1361.08, 114.77], [-1359.62, 118.23], [-1358.88, 122.42], [-1358.76, 125.0], [-1358.97, 127.3], [-1359.81, 128.48], [-1360.69, 129.53], [-1361.66, 130.4], [-1362.61, 131.09], [-1360.78, 131.75], [-1358.21, 132.48], [-1355.57, 133.06], [-1353.59, 133.34], [-1351.32, 133.51], [-1346.09, 133.63], [-1345.98, 136.76], [-1315.05, 135.49], [-1315.34, 127.66], [-1303.91, 127.0], [-1304.28, 119.59], [-1303.01, 119.52], [-1300.57, 119.37], [-1300.91, 111.37], [-1303.51, 111.46], [-1304.58, 111.51], [-1304.91, 103.92], [-1312.86, 104.27], [-1319.06, 104.54], [-1323.76, 104.74], [-1323.8, 103.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[26.69, -542.2], [25.1, -540.87], [23.87, -539.7], [20.25, -542.93], [18.9, -541.66], [17.81, -540.17], [17.19, -538.68], [17.16, -536.89], [17.51, -534.94], [18.66, -533.07], [63.66, -488.19], [66.47, -485.46], [69.51, -482.66], [68.38, -481.12], [67.65, -479.62], [67.05, -477.81], [66.85, -476.03], [66.62, -474.43], [66.78, -472.54], [66.96, -470.71], [67.72, -468.67], [68.66, -466.64], [69.88, -464.88], [71.44, -463.09], [73.06, -461.77], [74.9, -460.86], [76.89, -460.06], [79.18, -459.68], [81.59, -459.64], [84.06, -459.86], [87.97, -461.24], [89.43, -462.26], [92.02, -459.66], [93.61, -457.95], [95.02, -456.63], [136.57, -415.6], [138.15, -413.9], [139.62, -412.7], [141.7, -411.73], [143.51, -411.62], [145.85, -412.09], [149.22, -414.82], [151.57, -412.76], [152.4, -412.57], [153.27, -412.61], [153.93, -413.03], [154.18, -413.6], [154.26, -414.15], [154.08, -415.0], [152.42, -416.68], [143.46, -425.01], [144.81, -426.54], [147.41, -429.55], [149.34, -432.44], [150.93, -435.08], [152.58, -438.33], [154.24, -442.48], [156.37, -443.23], [158.17, -444.19], [159.81, -445.71], [161.57, -447.16], [163.09, -449.41], [164.03, -451.57], [164.74, -454.13], [164.75, -454.75], [164.8, -457.46], [164.46, -460.71], [163.26, -463.94], [161.14, -467.27], [158.29, -470.14], [154.85, -472.05], [151.01, -473.04], [148.05, -473.23], [147.46, -474.38], [146.47, -475.57], [145.59, -476.28], [144.6, -476.82], [142.71, -477.32], [141.65, -477.36], [141.39, -480.53], [140.68, -484.42], [139.59, -489.38], [137.34, -496.04], [136.23, -498.45], [135.23, -500.6], [132.11, -506.25], [129.53, -510.22], [126.28, -514.0], [123.07, -517.29], [119.76, -520.49], [114.4, -524.62], [107.7, -528.22], [104.86, -529.52], [100.5, -531.37], [95.44, -532.51], [91.26, -533.44], [86.83, -534.06], [84.49, -534.35], [84.45, -536.11], [83.87, -537.96], [83.08, -539.19], [81.93, -540.3], [81.0, -540.88], [81.21, -543.42], [80.89, -545.53], [80.25, -548.31], [78.69, -551.14], [76.64, -553.54], [74.54, -555.25], [72.18, -556.39], [69.47, -557.11], [66.83, -557.38], [64.18, -557.38], [61.81, -557.05], [59.28, -556.34], [57.3, -555.49], [55.32, -554.43], [53.5, -552.91], [51.94, -551.5], [51.0, -550.43], [50.1, -548.8], [49.4, -547.1], [44.92, -545.17], [42.51, -544.13], [40.15, -543.01], [37.7, -541.69], [35.62, -540.27], [33.65, -538.87], [32.0, -537.29], [26.69, -542.2]], "holes": [[[84.28, -469.83], [82.88, -468.96], [81.29, -468.6], [79.65, -468.75], [78.15, -469.42], [76.94, -470.52], [76.13, -472.02], [75.86, -473.7], [76.16, -475.36], [77.01, -476.84], [78.29, -477.96], [79.88, -478.59], [81.58, -478.66], [83.21, -478.18], [84.59, -477.17], [85.52, -475.82], [85.98, -474.25], [85.91, -472.62], [85.33, -471.09], [84.28, -469.83]]]}, "height": 8.0}, {"shape": {"outer": [[-1544.68, 139.11], [-1543.08, 139.05], [-1543.04, 140.11], [-1542.77, 146.4], [-1538.67, 146.24], [-1519.06, 145.41], [-1519.27, 140.42], [-1519.47, 135.39], [-1517.53, 135.32], [-1518.86, 103.19], [-1517.46, 103.13], [-1517.53, 101.36], [-1516.03, 101.31], [-1516.29, 95.06], [-1517.02, 95.09], [-1517.36, 86.32], [-1514.94, 86.23], [-1511.58, 86.09], [-1511.48, 88.55], [-1509.14, 88.45], [-1509.12, 88.78], [-1507.17, 88.7], [-1504.41, 88.6], [-1504.27, 92.44], [-1503.23, 92.36], [-1502.44, 92.55], [-1501.24, 93.08], [-1499.88, 94.4], [-1498.49, 95.62], [-1497.28, 96.25], [-1495.64, 96.62], [-1494.02, 96.66], [-1492.39, 96.38], [-1490.79, 95.58], [-1489.35, 94.67], [-1488.18, 93.28], [-1487.43, 92.16], [-1486.64, 91.55], [-1485.65, 91.08], [-1484.88, 91.0], [-1483.9, 90.94], [-1481.56, 90.76], [-1480.1, 90.65], [-1479.92, 98.04], [-1479.29, 111.37], [-1438.54, 109.46], [-1441.05, 55.98], [-1448.8, 56.33], [-1448.82, 55.68], [-1458.77, 56.08], [-1468.49, 56.53], [-1468.46, 57.28], [-1477.53, 57.68], [-1477.56, 56.86], [-1478.68, 56.9], [-1478.74, 55.99], [-1478.88, 52.57], [-1479.27, 52.58], [-1487.78, 52.92], [-1487.73, 54.01], [-1492.12, 54.18], [-1500.22, 54.48], [-1504.03, 54.65], [-1504.08, 53.64], [-1504.45, 53.67], [-1507.91, 53.84], [-1509.71, 53.93], [-1512.73, 54.01], [-1513.07, 54.02], [-1512.88, 58.68], [-1513.93, 58.72], [-1513.89, 59.62], [-1514.5, 59.65], [-1514.56, 58.11], [-1515.08, 58.19], [-1518.85, 58.34], [-1523.05, 58.46], [-1523.01, 59.43], [-1525.45, 59.53], [-1525.57, 56.56], [-1526.94, 56.63], [-1539.79, 57.17], [-1541.12, 57.23], [-1540.98, 60.52], [-1542.5, 60.58], [-1542.47, 61.39], [-1546.36, 61.56], [-1550.61, 61.74], [-1552.13, 61.8], [-1551.67, 72.36], [-1550.19, 72.3], [-1548.04, 72.2], [-1547.61, 82.04], [-1548.57, 82.08], [-1548.03, 94.52], [-1546.95, 94.47], [-1546.59, 102.97], [-1548.82, 103.07], [-1550.45, 103.14], [-1549.92, 115.53], [-1548.91, 139.29], [-1544.68, 139.11]], "holes": [[[-1478.52, 90.92], [-1479.3, 90.95], [-1479.42, 88.49], [-1484.66, 88.74], [-1484.56, 90.72], [-1485.71, 90.78], [-1486.8, 91.28], [-1487.75, 92.01], [-1488.59, 93.31], [-1489.58, 94.52], [-1491.07, 95.4], [-1492.57, 95.99], [-1494.01, 96.32], [-1495.52, 96.23], [-1496.89, 95.91], [-1498.21, 95.24], [-1499.51, 94.19], [-1500.7, 92.86], [-1502.13, 92.16], [-1503.11, 91.94], [-1503.99, 91.99], [-1504.2, 88.22], [-1499.4, 87.96], [-1499.32, 89.38], [-1498.64, 90.88], [-1497.33, 92.22], [-1495.72, 93.07], [-1492.24, 92.69], [-1490.42, 91.54], [-1489.34, 89.84], [-1488.87, 88.47], [-1488.93, 87.38], [-1471.2, 86.52], [-1470.5, 101.04], [-1446.75, 99.89], [-1447.61, 82.1], [-1446.16, 82.03], [-1446.56, 73.74], [-1448.22, 73.81], [-1448.92, 59.26], [-1445.67, 59.11], [-1443.67, 59.01], [-1441.38, 106.88], [-1477.08, 108.58], [-1477.74, 90.91], [-1478.52, 90.92]]]}, "height": 14.0}, {"shape": {"outer": [[-2188.99, -201.1], [-2188.5, -189.92], [-2187.75, -172.67], [-2161.64, -173.81], [-2161.5, -170.77], [-2157.88, -170.93], [-2157.43, -160.54], [-2162.53, -160.32], [-2161.99, -148.05], [-2158.35, -148.21], [-2157.66, -147.31], [-2157.42, -138.89], [-2157.37, -137.28], [-2146.81, -137.58], [-2146.84, -138.59], [-2143.78, -138.68], [-2141.66, -145.02], [-2140.44, -145.08], [-2130.0, -145.52], [-2126.27, -145.67], [-2126.36, -147.89], [-2123.14, -148.02], [-2122.62, -135.91], [-2126.19, -135.76], [-2125.78, -125.69], [-2121.64, -121.68], [-2107.49, -122.14], [-2108.5, -149.41], [-2082.75, -150.37], [-2082.38, -140.42], [-2071.97, -140.81], [-2072.01, -141.64], [-2057.43, -142.18], [-2057.36, -142.86], [-2051.33, -143.11], [-2048.77, -143.22], [-2042.16, -143.5], [-2042.6, -153.22], [-2042.78, -159.16], [-2043.79, -178.36], [-2044.09, -184.16], [-2044.17, -185.62], [-2044.22, -186.86], [-2045.02, -206.86], [-2058.76, -206.26], [-2058.12, -191.16], [-2076.48, -190.37], [-2083.3, -190.09], [-2083.24, -188.71], [-2091.72, -188.36], [-2091.8, -190.14], [-2140.87, -188.04], [-2140.83, -187.08], [-2149.41, -186.71], [-2149.46, -187.79], [-2175.03, -186.68], [-2175.69, -201.69], [-2188.99, -201.1]], "holes": [[[-2147.97, -170.55], [-2146.24, -170.61], [-2146.45, -176.36], [-2140.57, -176.58], [-2140.52, -174.92], [-2128.91, -175.34], [-2128.59, -166.87], [-2129.63, -166.83], [-2129.53, -164.39], [-2147.72, -163.71], [-2147.97, -170.55]], [[-2103.0, -168.14], [-2103.36, -176.42], [-2094.0, -176.82], [-2093.77, -171.43], [-2083.96, -171.85], [-2083.71, -166.11], [-2101.56, -165.35], [-2101.68, -168.19], [-2103.0, -168.14]]]}, "height": 17.5}, {"shape": {"outer": [[-1898.09, -65.66], [-1898.51, -69.51], [-1897.4, -69.55], [-1885.61, -70.02], [-1863.44, -70.87], [-1861.04, -80.82], [-1860.5, -83.02], [-1859.75, -85.98], [-1859.44, -87.4], [-1858.85, -89.83], [-1863.51, -90.22], [-1864.04, -89.59], [-1864.85, -89.58], [-1871.64, -89.44], [-1872.08, -91.56], [-1873.44, -98.27], [-1875.25, -98.21], [-1884.16, -97.98], [-1885.88, -103.27], [-1901.29, -102.61], [-1902.7, -97.09], [-1944.45, -95.54], [-1947.78, -95.33], [-1956.88, -95.03], [-1956.61, -88.38], [-1956.24, -78.89], [-1958.34, -78.23], [-1957.91, -67.98], [-1955.85, -67.5], [-1955.57, -63.92], [-1955.46, -60.71], [-1955.25, -54.53], [-1955.21, -53.56], [-1949.1, -53.75], [-1948.83, -52.91], [-1945.5, -53.09], [-1941.98, -53.26], [-1941.98, -54.13], [-1929.37, -54.45], [-1924.99, -54.57], [-1911.58, -57.85], [-1912.03, -60.99], [-1898.09, -65.66]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[63.66, -488.19], [18.66, -533.07], [17.51, -534.94], [17.16, -536.89], [17.19, -538.68], [17.81, -540.17], [18.9, -541.66], [20.25, -542.93], [23.87, -539.7], [25.1, -540.87], [26.69, -542.2], [24.19, -544.75], [18.81, -550.21], [14.79, -554.2], [-2.08, -570.98], [-10.27, -579.13], [-9.43, -579.99], [-3.74, -585.84], [-0.52, -588.93], [0.87, -590.64], [1.95, -592.53], [2.32, -593.79], [2.54, -594.54], [2.88, -596.75], [2.69, -599.68], [2.2, -602.33], [0.67, -605.44], [-1.27, -607.55], [-2.97, -609.15], [-6.19, -610.77], [-9.92, -611.45], [-13.21, -611.18], [-17.15, -609.97], [-18.07, -609.42], [-18.89, -608.94], [-20.09, -607.94], [-20.94, -607.07], [-21.7, -606.08], [-22.66, -604.73], [-23.38, -603.28], [-23.98, -601.75], [-24.4, -599.75], [-24.48, -598.96], [-24.55, -598.21], [-24.45, -596.33], [-24.2, -594.59], [-23.07, -591.95], [-21.6, -589.64], [-25.54, -585.86], [-29.06, -582.3], [-33.59, -577.72], [-42.98, -568.59], [-54.88, -556.36], [-59.69, -551.41], [-60.22, -551.38], [-60.86, -551.29], [-61.38, -550.82], [-61.59, -550.24], [-61.66, -549.56], [-77.1, -535.6], [-72.83, -531.68], [-70.65, -529.43], [-66.14, -533.86], [-54.45, -544.2], [-51.76, -541.43], [-41.17, -530.89], [14.35, -475.25], [16.89, -472.7], [34.81, -454.83], [36.93, -452.67], [37.46, -452.15], [38.12, -451.45], [60.39, -429.14], [61.17, -428.38], [63.76, -425.77], [64.33, -425.35], [77.64, -412.01], [113.09, -375.69], [135.29, -352.24], [140.22, -347.09], [143.97, -343.28], [146.37, -340.6], [149.87, -340.08], [155.86, -345.84], [167.51, -357.4], [176.94, -366.79], [181.72, -371.56], [184.88, -374.72], [186.81, -376.42], [189.0, -378.52], [190.15, -377.29], [192.11, -376.27], [194.27, -375.42], [196.56, -374.9], [198.89, -374.87], [200.62, -375.04], [201.46, -375.05], [203.5, -375.81], [205.42, -376.71], [207.09, -377.91], [208.7, -379.34], [210.1, -381.13], [211.0, -382.89], [211.53, -385.21], [211.79, -387.62], [211.74, -389.99], [211.33, -392.56], [210.35, -394.77], [209.17, -396.39], [207.45, -398.19], [205.42, -399.63], [203.17, -400.75], [201.69, -401.41], [199.08, -401.77], [196.26, -401.49], [193.42, -400.77], [190.34, -399.06], [181.03, -390.5], [179.73, -389.33], [169.53, -399.03], [163.13, -405.57], [154.08, -415.0], [154.26, -414.15], [154.18, -413.6], [153.93, -413.03], [153.27, -412.61], [152.4, -412.57], [151.57, -412.76], [149.22, -414.82], [145.85, -412.09], [143.51, -411.62], [141.7, -411.73], [139.62, -412.7], [138.15, -413.9], [136.57, -415.6], [95.02, -456.63], [93.61, -457.95], [92.02, -459.66], [89.43, -462.26], [87.97, -461.24], [84.06, -459.86], [81.59, -459.64], [79.18, -459.68], [76.89, -460.06], [74.9, -460.86], [73.06, -461.77], [71.44, -463.09], [69.88, -464.88], [68.66, -466.64], [67.72, -468.67], [66.96, -470.71], [66.78, -472.54], [66.62, -474.43], [66.85, -476.03], [67.05, -477.81], [67.65, -479.62], [68.38, -481.12], [69.51, -482.66], [66.47, -485.46], [63.66, -488.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1602.23, -1006.94], [-1593.7, -1006.94], [-1589.99, -1006.94], [-1590.15, -1003.07], [-1589.51, -1003.06], [-1584.29, -1002.99], [-1584.11, -1006.96], [-1543.03, -1006.77], [-1542.96, -1005.24], [-1543.4, -1005.29], [-1543.28, -995.39], [-1543.06, -977.41], [-1539.03, -977.41], [-1539.09, -1005.21], [-1539.11, -1011.29], [-1588.8, -1011.59], [-1593.52, -1011.6], [-1602.03, -1011.62], [-1614.24, -1011.66], [-1619.56, -1011.67], [-1628.09, -1011.69], [-1635.86, -1011.72], [-1636.03, -1015.1], [-1641.57, -1015.29], [-1641.83, -1011.61], [-1681.91, -1011.12], [-1681.8, -1007.0], [-1628.25, -1006.97], [-1619.84, -1006.96], [-1614.49, -1006.96], [-1602.23, -1006.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-241.75, -110.46], [-241.51, -105.29], [-240.21, -77.25], [-234.2, -77.42], [-234.11, -75.25], [-233.34, -75.26], [-232.06, -75.28], [-231.96, -72.7], [-225.85, -72.9], [-224.71, -72.95], [-223.73, -72.99], [-221.76, -73.05], [-220.6, -73.1], [-219.5, -73.14], [-217.67, -73.2], [-216.83, -73.24], [-215.61, -73.28], [-210.26, -73.46], [-208.74, -73.53], [-208.85, -76.23], [-208.1, -76.25], [-206.77, -76.3], [-206.85, -78.42], [-201.0, -78.61], [-202.53, -107.04], [-202.79, -111.96], [-200.99, -112.1], [-199.13, -112.82], [-198.14, -113.2], [-196.49, -114.37], [-194.51, -117.29], [-193.94, -118.97], [-193.37, -121.86], [-189.01, -122.04], [-160.23, -123.22], [-160.48, -129.25], [-158.62, -129.32], [-158.65, -129.83], [-158.7, -131.13], [-156.14, -131.24], [-156.17, -131.97], [-156.41, -137.84], [-156.45, -138.98], [-156.49, -139.95], [-156.57, -141.93], [-156.61, -143.03], [-156.66, -144.17], [-156.73, -145.98], [-156.77, -147.02], [-156.82, -148.0], [-157.11, -154.75], [-159.63, -154.66], [-159.7, -156.17], [-159.73, -156.85], [-162.25, -156.77], [-162.48, -162.34], [-190.0, -161.06], [-195.54, -160.85], [-195.7, -162.79], [-197.12, -165.43], [-198.69, -167.32], [-200.75, -168.79], [-201.36, -169.23], [-203.32, -169.7], [-205.53, -169.76], [-205.72, -174.74], [-206.75, -202.94], [-213.13, -202.77], [-213.2, -204.61], [-215.08, -204.54], [-215.15, -207.23], [-221.64, -206.94], [-222.78, -206.89], [-223.76, -206.84], [-225.77, -206.75], [-226.86, -206.7], [-228.01, -206.64], [-229.77, -206.57], [-230.75, -206.52], [-231.78, -206.48], [-234.46, -206.38], [-238.53, -206.22], [-238.44, -203.42], [-240.05, -203.32], [-240.01, -201.5], [-245.74, -201.31], [-244.75, -172.12], [-244.46, -166.68], [-246.35, -166.64], [-248.85, -166.27], [-249.29, -165.96], [-250.96, -164.79], [-252.19, -162.79], [-252.4, -162.43], [-253.03, -160.04], [-252.99, -157.68], [-259.25, -157.58], [-286.88, -156.36], [-286.71, -150.52], [-287.89, -150.48], [-287.86, -149.79], [-287.82, -148.68], [-291.04, -148.56], [-290.8, -141.78], [-290.76, -140.71], [-290.72, -139.76], [-290.66, -137.95], [-290.59, -136.38], [-290.57, -135.69], [-290.51, -133.73], [-290.47, -132.74], [-290.44, -131.65], [-290.22, -125.86], [-290.19, -124.89], [-287.02, -124.97], [-286.99, -124.25], [-286.94, -123.07], [-285.15, -123.16], [-284.94, -117.38], [-257.7, -118.75], [-250.93, -118.78], [-250.41, -116.21], [-249.56, -114.22], [-249.15, -113.83], [-247.68, -112.44], [-246.11, -111.25], [-245.56, -110.83], [-243.45, -110.5], [-241.75, -110.46]], "holes": []}, "height": 86.6}, {"shape": {"outer": [[-1180.89, -891.38], [-1177.07, -882.8], [-1175.01, -882.64], [-1173.03, -881.74], [-1170.77, -880.72], [-1169.69, -879.57], [-1125.68, -898.99], [-1117.38, -880.3], [-1195.26, -845.91], [-1196.98, -849.79], [-1198.55, -853.3], [-1199.88, -856.31], [-1209.8, -878.61], [-1180.89, -891.38]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1058.81, -870.15], [-1061.23, -869.06], [-1185.68, -812.57], [-1184.08, -809.04], [-1141.21, -828.49], [-1136.58, -818.35], [-1118.45, -826.58], [-1121.48, -833.21], [-1111.56, -837.7], [-1107.33, -828.44], [-1096.13, -833.52], [-1095.73, -832.63], [-1067.05, -845.65], [-1070.29, -852.72], [-1054.18, -860.03], [-1058.81, -870.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1234.23, -147.18], [-1232.58, -147.26], [-1232.52, -145.99], [-1232.44, -144.18], [-1226.96, -144.42], [-1226.88, -143.04], [-1219.4, -143.4], [-1217.9, -143.48], [-1216.41, -143.54], [-1197.97, -144.42], [-1189.0, -144.81], [-1186.76, -144.94], [-1187.54, -161.25], [-1182.85, -161.47], [-1183.2, -168.78], [-1188.04, -168.55], [-1188.14, -170.72], [-1188.24, -172.73], [-1184.02, -175.4], [-1184.15, -179.46], [-1188.44, -177.03], [-1188.55, -179.6], [-1189.36, -198.63], [-1184.59, -198.89], [-1184.87, -205.45], [-1189.79, -205.28], [-1189.85, -206.82], [-1189.97, -209.58], [-1185.61, -212.32], [-1186.02, -216.75], [-1190.29, -214.22], [-1190.39, -216.24], [-1190.47, -217.89], [-1237.48, -215.66], [-1234.23, -147.18]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-606.28, -293.84], [-660.53, -235.12], [-676.2, -249.49], [-688.92, -260.95], [-633.99, -319.65], [-619.5, -305.97], [-606.28, -293.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-184.46, 185.22], [-182.67, 186.92], [-186.04, 191.37], [-139.8, 234.26], [-135.77, 230.0], [-132.64, 232.52], [-105.72, 203.24], [-83.48, 178.43], [-88.35, 173.79], [-134.42, 131.54], [-148.49, 146.88], [-181.06, 181.6], [-184.46, 185.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2955.64, -230.88], [-2953.29, -245.79], [-2954.28, -245.95], [-2952.53, -257.08], [-2951.53, -256.92], [-2951.06, -259.89], [-2936.01, -257.53], [-2937.84, -245.89], [-2929.87, -244.64], [-2928.41, -253.85], [-2911.36, -251.19], [-2912.78, -242.19], [-2904.93, -240.96], [-2903.27, -251.54], [-2885.23, -248.72], [-2885.58, -246.5], [-2884.26, -246.3], [-2885.73, -236.96], [-2887.57, -237.25], [-2888.95, -228.52], [-2888.05, -228.38], [-2889.38, -220.03], [-2896.58, -221.16], [-2896.21, -223.51], [-2906.85, -225.18], [-2907.25, -222.67], [-2918.74, -224.46], [-2918.34, -226.98], [-2926.13, -228.2], [-2926.54, -225.59], [-2938.08, -227.4], [-2937.67, -230.0], [-2948.46, -231.69], [-2948.76, -229.8], [-2955.64, -230.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2879.61, -220.85], [-2878.39, -229.96], [-2863.25, -227.95], [-2863.04, -229.43], [-2857.36, -228.67], [-2857.6, -226.87], [-2853.73, -226.36], [-2854.91, -217.57], [-2879.61, -220.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2242.4, -414.01], [-2235.05, -414.37], [-2230.74, -414.59], [-2221.93, -415.14], [-2207.75, -431.37], [-2208.34, -442.47], [-2208.97, -454.3], [-2222.38, -467.08], [-2243.07, -466.14], [-2243.07, -463.78], [-2244.62, -463.69], [-2244.44, -459.53], [-2242.67, -418.03], [-2242.4, -414.01]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-2712.17, -36.15], [-2713.27, -71.74], [-2742.82, -70.81], [-2742.86, -72.16], [-2748.51, -71.98], [-2748.47, -70.64], [-2779.3, -69.68], [-2778.18, -33.76], [-2758.67, -34.37], [-2758.49, -28.82], [-2748.23, -29.14], [-2748.26, -29.99], [-2744.54, -30.1], [-2739.67, -30.26], [-2739.65, -29.47], [-2730.68, -29.75], [-2730.86, -35.57], [-2712.17, -36.15]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2672.98, 19.73], [-2673.09, 16.55], [-2666.09, 16.31], [-2666.51, 4.33], [-2646.33, 3.62], [-2646.3, 4.57], [-2644.64, 4.51], [-2642.53, 4.43], [-2642.62, 1.72], [-2599.27, 0.2], [-2598.86, 12.02], [-2587.63, 11.63], [-2587.82, 6.06], [-2569.18, 5.42], [-2568.47, 25.67], [-2587.05, 26.33], [-2587.12, 24.29], [-2589.93, 24.4], [-2589.32, 41.68], [-2609.39, 42.4], [-2610.04, 23.85], [-2605.31, 23.68], [-2605.41, 20.66], [-2606.21, 20.69], [-2606.46, 13.71], [-2625.53, 14.38], [-2625.09, 27.0], [-2638.77, 27.48], [-2641.89, 27.59], [-2642.12, 20.98], [-2645.57, 21.1], [-2645.52, 22.43], [-2665.89, 23.14], [-2666.02, 19.48], [-2672.98, 19.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2629.11, 107.87], [-2629.37, 101.37], [-2630.97, 62.54], [-2635.5, 62.72], [-2635.73, 57.04], [-2649.42, 55.65], [-2658.63, 56.03], [-2674.5, 56.67], [-2687.05, 57.19], [-2684.89, 110.16], [-2629.11, 107.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2516.12, -108.04], [-2524.83, -107.84], [-2524.79, -109.96], [-2531.29, -109.69], [-2532.19, -138.67], [-2527.49, -138.88], [-2519.2, -142.81], [-2520.61, -145.95], [-2472.44, -167.71], [-2470.87, -165.09], [-2464.69, -168.39], [-2456.95, -168.66], [-2456.79, -163.15], [-2455.71, -163.2], [-2455.58, -157.47], [-2454.63, -134.57], [-2455.68, -134.54], [-2455.77, -131.27], [-2462.89, -131.04], [-2465.04, -130.88], [-2454.41, -108.52], [-2496.8, -107.02], [-2501.37, -105.16], [-2505.0, -113.25], [-2516.12, -108.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2785.27, 319.76], [-2786.24, 285.91], [-2775.41, 285.6], [-2774.44, 319.45], [-2785.27, 319.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2735.8, 268.13], [-2735.94, 263.35], [-2734.13, 263.29], [-2734.16, 262.13], [-2734.33, 256.11], [-2772.23, 257.18], [-2772.95, 231.59], [-2777.6, 231.73], [-2777.65, 229.95], [-2784.57, 230.14], [-2783.74, 259.26], [-2785.74, 259.31], [-2785.57, 265.53], [-2782.76, 265.45], [-2782.63, 270.31], [-2765.97, 269.83], [-2765.99, 268.98], [-2735.8, 268.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2817.68, 103.47], [-2818.69, 70.64], [-2845.45, 71.46], [-2845.19, 79.96], [-2855.43, 80.28], [-2855.22, 86.92], [-2911.38, 88.66], [-2910.62, 113.36], [-2855.19, 111.64], [-2855.29, 108.32], [-2852.59, 108.23], [-2850.76, 108.18], [-2850.56, 114.91], [-2833.24, 114.38], [-2833.55, 103.96], [-2817.68, 103.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2774.25, 106.84], [-2774.13, 109.83], [-2784.91, 110.26], [-2785.2, 102.87], [-2786.76, 102.92], [-2787.29, 89.64], [-2785.4, 89.57], [-2786.73, 56.65], [-2775.74, 56.21], [-2775.88, 52.88], [-2764.19, 52.41], [-2763.02, 81.34], [-2747.5, 80.73], [-2747.34, 85.04], [-2742.76, 84.85], [-2742.9, 81.12], [-2738.56, 80.95], [-2738.62, 79.4], [-2728.19, 78.97], [-2728.13, 80.52], [-2710.4, 79.81], [-2709.72, 96.54], [-2708.35, 96.48], [-2708.01, 104.73], [-2709.4, 104.78], [-2709.3, 107.2], [-2725.41, 107.86], [-2725.35, 109.33], [-2735.46, 109.75], [-2735.52, 108.26], [-2739.06, 108.41], [-2739.22, 104.63], [-2741.96, 104.76], [-2746.75, 104.95], [-2746.55, 110.01], [-2767.24, 110.84], [-2767.41, 106.57], [-2771.55, 106.74], [-2774.25, 106.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2752.44, 57.6], [-2752.76, 48.88], [-2755.4, 48.98], [-2755.63, 42.87], [-2752.6, 42.76], [-2752.74, 39.03], [-2739.41, 38.54], [-2703.63, 37.21], [-2703.51, 40.73], [-2701.11, 40.64], [-2700.9, 46.22], [-2703.33, 46.31], [-2702.98, 55.77], [-2752.44, 57.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2573.12, 107.49], [-2573.27, 103.21], [-2573.38, 99.97], [-2573.5, 96.39], [-2573.52, 95.69], [-2566.74, 95.39], [-2566.89, 92.32], [-2572.44, 92.54], [-2573.63, 92.58], [-2573.74, 89.26], [-2573.95, 83.03], [-2572.44, 82.99], [-2572.59, 78.24], [-2574.11, 78.29], [-2574.37, 70.56], [-2574.44, 68.05], [-2574.66, 62.05], [-2579.79, 62.23], [-2582.11, 62.32], [-2588.99, 62.56], [-2594.97, 62.77], [-2596.59, 62.82], [-2598.24, 62.88], [-2607.31, 63.19], [-2609.06, 63.25], [-2611.52, 63.33], [-2618.81, 63.55], [-2620.68, 63.61], [-2619.9, 86.76], [-2619.68, 92.98], [-2619.64, 93.94], [-2619.35, 102.68], [-2619.13, 109.04], [-2616.87, 108.97], [-2609.78, 108.73], [-2603.69, 108.52], [-2591.31, 108.1], [-2588.23, 108.0], [-2585.26, 107.9], [-2582.63, 107.8], [-2579.98, 107.72], [-2576.99, 107.62], [-2573.12, 107.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2995.13, 46.56], [-2941.79, 44.3], [-2941.17, 59.0], [-2994.51, 61.26], [-2995.13, 46.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2953.52, 101.76], [-2954.82, 69.88], [-2965.63, 70.31], [-2964.32, 102.14], [-2968.33, 102.3], [-2969.63, 70.34], [-2980.83, 70.79], [-2979.53, 102.77], [-2983.19, 102.92], [-2984.46, 71.49], [-2994.94, 71.91], [-2992.93, 121.49], [-2966.11, 120.41], [-2938.89, 119.31], [-2940.92, 69.29], [-2950.29, 69.66], [-2948.98, 101.57], [-2953.52, 101.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2842.33, 58.64], [-2843.09, 37.57], [-2921.04, 40.37], [-2920.13, 65.32], [-2911.79, 65.01], [-2911.48, 73.44], [-2864.51, 71.74], [-2864.83, 62.97], [-2854.63, 62.6], [-2854.76, 59.09], [-2842.33, 58.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1588.86, 13.36], [-1588.34, 22.17], [-1584.12, 21.97], [-1583.92, 26.06], [-1583.87, 27.2], [-1583.77, 29.79], [-1583.66, 32.1], [-1583.62, 33.17], [-1583.41, 37.01], [-1587.57, 37.21], [-1587.09, 46.27], [-1582.11, 46.15], [-1581.91, 52.33], [-1581.83, 53.4], [-1581.77, 54.55], [-1581.38, 60.91], [-1620.81, 62.67], [-1621.36, 50.1], [-1621.5, 47.79], [-1621.51, 46.74], [-1621.32, 46.04], [-1620.87, 45.46], [-1620.39, 45.01], [-1619.6, 44.71], [-1618.76, 44.66], [-1618.03, 44.76], [-1617.26, 45.22], [-1616.75, 45.96], [-1616.57, 46.76], [-1616.48, 47.75], [-1599.38, 47.11], [-1599.65, 39.65], [-1604.8, 39.9], [-1606.67, 38.29], [-1606.82, 34.51], [-1607.04, 29.95], [-1607.22, 26.1], [-1607.31, 23.55], [-1605.57, 21.51], [-1599.99, 21.19], [-1600.5, 14.21], [-1615.24, 14.7], [-1618.12, 14.78], [-1618.09, 15.92], [-1618.25, 16.57], [-1618.53, 17.1], [-1618.8, 17.48], [-1619.15, 17.79], [-1619.56, 18.03], [-1620.18, 18.23], [-1620.86, 18.24], [-1621.28, 18.15], [-1621.7, 17.97], [-1622.05, 17.74], [-1622.36, 17.44], [-1622.68, 16.93], [-1622.89, 16.49], [-1623.05, 15.89], [-1623.08, 14.98], [-1623.68, -0.18], [-1584.43, -1.64], [-1583.76, 13.2], [-1588.86, 13.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1651.78, 23.57], [-1632.67, 22.69], [-1630.85, 62.89], [-1634.47, 63.06], [-1634.37, 65.22], [-1634.34, 65.83], [-1635.18, 65.86], [-1642.07, 66.17], [-1642.09, 65.85], [-1642.25, 63.44], [-1647.53, 63.66], [-1651.16, 63.86], [-1651.33, 60.89], [-1656.31, 59.68], [-1652.17, 32.63], [-1653.18, 32.47], [-1652.85, 29.87], [-1651.78, 23.57]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2069.08, -21.71], [-2068.42, -4.55], [-2070.71, -4.47], [-2070.3, 6.2], [-2110.89, 7.76], [-2110.02, 30.68], [-2063.03, 28.89], [-2062.47, 42.76], [-2060.47, 42.68], [-2060.39, 44.7], [-2047.89, 44.2], [-2047.97, 42.17], [-2045.34, 42.07], [-2045.43, 40.03], [-2043.42, 39.97], [-2044.09, 22.57], [-2031.29, 22.3], [-2031.0, 10.9], [-2031.15, 9.07], [-2031.93, -15.48], [-2032.05, -18.98], [-2032.11, -20.69], [-2032.69, -20.72], [-2034.96, -20.64], [-2039.16, -20.58], [-2041.05, -20.5], [-2052.04, -20.06], [-2053.96, -20.0], [-2059.36, -19.75], [-2059.46, -22.05], [-2060.14, -22.02], [-2069.08, -21.71]], "holes": []}, "height": 74.0}, {"shape": {"outer": [[-1927.31, 103.79], [-1888.21, 96.44], [-1891.71, 77.96], [-1901.77, 79.85], [-1934.7, 86.04], [-1941.76, 87.36], [-1945.35, 68.38], [-1973.6, 73.7], [-1969.66, 94.52], [-1958.83, 92.53], [-1958.19, 96.51], [-1958.11, 98.05], [-1958.62, 98.13], [-1958.48, 100.58], [-1960.43, 100.86], [-1960.26, 102.47], [-1960.08, 103.8], [-1969.29, 105.58], [-1966.66, 122.41], [-1941.23, 117.82], [-1938.34, 133.02], [-1937.47, 132.75], [-1935.91, 140.93], [-1942.83, 142.15], [-1942.96, 141.45], [-1946.95, 142.21], [-1946.33, 145.49], [-1949.2, 146.03], [-1947.4, 155.58], [-1944.53, 170.75], [-1913.98, 165.0], [-1914.56, 161.94], [-1908.79, 160.85], [-1912.87, 139.28], [-1924.31, 141.43], [-1926.51, 129.83], [-1922.53, 129.08], [-1927.31, 103.79]], "holes": []}, "height": 28.0}, {"shape": {"outer": [[-1692.76, 164.36], [-1691.24, 180.17], [-1621.41, 173.48], [-1622.23, 165.89], [-1622.93, 157.67], [-1661.74, 161.39], [-1661.93, 159.49], [-1669.3, 160.19], [-1669.11, 162.1], [-1692.76, 164.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1576.99, 83.59], [-1576.64, 93.36], [-1580.88, 93.6], [-1580.66, 97.7], [-1574.62, 97.45], [-1569.89, 97.16], [-1569.3, 108.89], [-1569.11, 113.64], [-1568.42, 123.81], [-1568.21, 127.23], [-1568.16, 129.96], [-1568.08, 132.1], [-1567.7, 143.68], [-1572.52, 143.97], [-1578.28, 144.19], [-1578.12, 148.48], [-1652.0, 151.98], [-1652.21, 148.39], [-1656.51, 148.53], [-1657.19, 135.64], [-1658.55, 135.71], [-1658.73, 132.2], [-1657.37, 132.14], [-1658.62, 108.2], [-1660.07, 108.29], [-1660.24, 104.97], [-1658.8, 104.89], [-1659.44, 92.5], [-1654.99, 92.33], [-1655.07, 88.95], [-1627.66, 87.5], [-1626.78, 87.47], [-1626.63, 90.96], [-1621.87, 90.68], [-1621.62, 99.09], [-1621.14, 117.72], [-1610.9, 116.97], [-1598.56, 116.83], [-1598.83, 108.09], [-1577.69, 84.38], [-1576.99, 83.59]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[-1731.47, 175.07], [-1730.57, 182.73], [-1729.29, 193.67], [-1728.92, 196.58], [-1761.09, 199.79], [-1761.3, 196.66], [-1763.42, 178.46], [-1754.65, 177.52], [-1731.47, 175.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2249.3, 76.04], [-2249.33, 75.24], [-2244.18, 75.05], [-2241.9, 74.96], [-2238.82, 74.85], [-2238.79, 75.77], [-2231.16, 75.5], [-2231.03, 78.75], [-2226.24, 78.58], [-2226.29, 77.28], [-2223.33, 77.18], [-2222.88, 76.0], [-2221.84, 75.05], [-2220.32, 74.98], [-2219.18, 75.83], [-2218.93, 77.02], [-2216.11, 76.91], [-2216.05, 78.63], [-2215.52, 93.0], [-2225.7, 93.37], [-2226.09, 82.59], [-2231.12, 82.78], [-2231.08, 83.91], [-2238.5, 84.18], [-2238.86, 85.92], [-2239.87, 87.54], [-2241.41, 88.72], [-2243.55, 89.27], [-2245.76, 88.74], [-2247.49, 87.58], [-2248.74, 86.15], [-2249.4, 84.22], [-2257.24, 84.51], [-2257.54, 76.35], [-2249.3, 76.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2102.26, 141.74], [-2100.69, 155.47], [-2100.15, 155.41], [-2100.03, 156.48], [-2099.64, 159.91], [-2125.19, 162.82], [-2123.91, 174.03], [-2126.35, 174.3], [-2127.12, 175.26], [-2127.44, 176.13], [-2127.0, 179.94], [-2126.85, 181.16], [-2154.14, 184.31], [-2153.75, 187.64], [-2156.58, 187.96], [-2155.75, 195.12], [-2153.03, 194.81], [-2152.69, 197.73], [-2119.07, 193.88], [-2120.32, 183.04], [-2120.51, 181.52], [-2118.43, 181.29], [-2118.51, 180.59], [-2119.02, 176.11], [-2090.51, 172.87], [-2090.01, 172.81], [-2091.42, 160.41], [-2077.68, 158.84], [-2077.48, 160.55], [-2065.32, 159.18], [-2065.51, 157.47], [-2051.9, 155.97], [-2050.59, 167.7], [-2050.16, 167.66], [-2021.27, 164.47], [-2020.69, 169.71], [-2019.21, 169.56], [-2019.02, 171.29], [-2017.8, 182.37], [-1983.6, 178.63], [-1983.94, 175.44], [-1981.04, 175.12], [-1981.87, 167.58], [-1984.91, 167.91], [-1985.19, 165.34], [-1985.38, 164.95], [-1985.84, 164.83], [-1989.92, 165.26], [-1989.88, 165.62], [-2012.67, 168.03], [-2013.25, 162.54], [-2014.47, 161.38], [-2015.39, 161.13], [-2016.97, 161.32], [-2018.25, 150.5], [-2043.97, 153.52], [-2044.23, 151.34], [-2044.5, 149.03], [-2044.1, 148.99], [-2045.66, 135.51], [-2066.08, 137.86], [-2067.61, 138.04], [-2067.77, 136.61], [-2074.3, 137.35], [-2080.22, 138.03], [-2080.08, 139.22], [-2102.26, 141.74]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1758.65, -0.75], [-1757.42, -1.05], [-1746.36, -2.9], [-1745.28, -3.07], [-1739.57, 30.97], [-1752.48, 33.12], [-1758.65, -0.75]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1723.93, -1.71], [-1723.03, 19.38], [-1721.67, 19.32], [-1720.79, 40.27], [-1710.69, 39.85], [-1705.87, 39.64], [-1705.93, 38.24], [-1701.07, 38.04], [-1695.32, 37.79], [-1688.42, 37.5], [-1684.56, 37.33], [-1684.11, 47.78], [-1674.27, 47.33], [-1669.2, 47.12], [-1670.32, 20.99], [-1670.4, 19.2], [-1670.51, 16.45], [-1669.41, 16.39], [-1670.27, -3.99], [-1686.49, -3.31], [-1686.42, -1.59], [-1693.08, -1.3], [-1698.12, -1.09], [-1702.15, -0.92], [-1707.77, -0.68], [-1707.84, -2.39], [-1723.93, -1.71]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1361.95, 100.2], [-1362.33, 98.98], [-1363.45, 97.55], [-1364.43, 97.07], [-1364.48, 96.12], [-1364.53, 94.89], [-1366.05, 58.55], [-1366.33, 51.9], [-1365.47, 51.15], [-1364.78, 50.2], [-1364.42, 49.15], [-1364.35, 47.81], [-1364.31, 46.4], [-1364.99, 45.47], [-1365.81, 44.47], [-1366.68, 43.77], [-1367.83, 43.43], [-1372.3, 43.51], [-1373.16, 43.94], [-1382.79, 44.26], [-1390.87, 44.66], [-1391.42, 44.49], [-1392.04, 44.53], [-1394.68, 44.78], [-1396.03, 45.04], [-1397.15, 45.97], [-1397.91, 46.97], [-1398.47, 48.14], [-1398.53, 49.44], [-1398.26, 50.67], [-1397.68, 51.79], [-1396.62, 52.71], [-1396.2, 52.98], [-1395.47, 69.87], [-1395.36, 72.49], [-1399.95, 72.7], [-1400.4, 71.94], [-1401.17, 71.54], [-1402.23, 71.51], [-1403.03, 71.86], [-1403.73, 72.68], [-1403.85, 73.43], [-1403.75, 74.31], [-1403.34, 75.15], [-1402.76, 75.65], [-1402.32, 75.9], [-1402.02, 83.43], [-1402.33, 83.74], [-1402.86, 84.27], [-1403.35, 85.11], [-1403.27, 86.0], [-1402.97, 86.9], [-1402.52, 87.33], [-1401.54, 87.77], [-1400.66, 87.8], [-1399.86, 87.38], [-1399.27, 86.71], [-1399.13, 86.32], [-1398.37, 86.32], [-1394.69, 86.29], [-1394.04, 98.72], [-1395.34, 99.69], [-1395.99, 101.33], [-1395.77, 102.9], [-1395.08, 103.86], [-1393.61, 104.74], [-1392.33, 104.91], [-1391.03, 104.62], [-1389.99, 103.8], [-1389.61, 102.91], [-1388.96, 102.87], [-1388.68, 103.42], [-1388.24, 103.8], [-1387.58, 103.97], [-1386.92, 103.75], [-1386.49, 103.3], [-1386.36, 102.73], [-1380.08, 102.38], [-1379.9, 102.91], [-1379.48, 103.26], [-1378.76, 103.42], [-1378.16, 103.25], [-1377.7, 102.83], [-1377.51, 102.23], [-1371.6, 101.91], [-1371.34, 102.46], [-1370.84, 102.88], [-1370.13, 103.02], [-1369.45, 102.8], [-1369.04, 102.34], [-1368.91, 101.75], [-1368.32, 101.73], [-1367.7, 102.56], [-1366.64, 103.23], [-1365.38, 103.55], [-1364.22, 103.26], [-1363.2, 102.77], [-1362.54, 102.03], [-1362.3, 101.15], [-1361.95, 100.2]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[-1481.12, 7.29], [-1482.36, -19.97], [-1482.57, -25.2], [-1482.79, -30.32], [-1483.99, -57.52], [-1487.78, -57.35], [-1493.37, -57.1], [-1493.42, -58.17], [-1498.93, -57.94], [-1500.37, -57.87], [-1503.01, -57.75], [-1507.62, -57.54], [-1507.57, -56.42], [-1516.48, -56.03], [-1516.15, -48.35], [-1534.47, -47.54], [-1534.6, -48.72], [-1547.18, -48.15], [-1550.87, -47.98], [-1552.13, -47.92], [-1551.37, -31.54], [-1550.06, -31.6], [-1549.63, -22.31], [-1549.15, -11.99], [-1550.54, -11.93], [-1549.76, 4.77], [-1548.93, 4.74], [-1532.4, 3.98], [-1532.59, 2.61], [-1515.69, 1.86], [-1515.37, 9.1], [-1505.98, 8.69], [-1505.94, 9.53], [-1499.38, 9.24], [-1497.39, 9.15], [-1495.83, 9.09], [-1490.35, 8.84], [-1490.4, 7.7], [-1481.12, 7.29]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-2769.14, 334.84], [-2735.54, 333.87], [-2735.85, 323.04], [-2769.45, 324.01], [-2769.14, 334.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2761.06, 298.64], [-2727.28, 297.66], [-2727.59, 286.86], [-2761.37, 287.83], [-2761.06, 298.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2813.37, 293.29], [-2813.56, 286.77], [-2816.13, 286.84], [-2816.28, 281.97], [-2834.26, 282.49], [-2835.26, 282.51], [-2835.39, 278.02], [-2869.93, 279.01], [-2869.73, 285.95], [-2867.98, 285.9], [-2867.85, 290.47], [-2845.19, 289.81], [-2844.34, 319.02], [-2839.67, 318.89], [-2839.62, 320.74], [-2832.5, 320.54], [-2833.24, 294.98], [-2823.66, 294.71], [-2823.7, 293.58], [-2821.95, 293.53], [-2813.37, 293.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2969.13, 396.23], [-2970.1, 365.18], [-2992.89, 365.89], [-2993.03, 361.32], [-2994.84, 361.37], [-2995.06, 354.46], [-2961.24, 353.4], [-2961.23, 353.94], [-2946.15, 353.47], [-2946.03, 357.51], [-2940.77, 357.35], [-2940.62, 362.01], [-2938.42, 361.95], [-2938.2, 368.99], [-2948.68, 369.31], [-2948.66, 370.09], [-2957.94, 370.38], [-2957.15, 395.85], [-2969.13, 396.23]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-3024.59, 428.07], [-3025.23, 398.79], [-3048.21, 399.29], [-3048.31, 394.85], [-3050.11, 394.89], [-3050.27, 387.59], [-3016.77, 386.85], [-3016.66, 391.39], [-2996.32, 390.94], [-2996.21, 395.47], [-2993.82, 395.42], [-2993.66, 402.47], [-3003.93, 402.69], [-3003.91, 403.71], [-3013.58, 403.93], [-3013.02, 429.54], [-3019.86, 429.7], [-3019.91, 427.96], [-3024.59, 428.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2715.49, 306.7], [-2681.28, 305.68], [-2681.25, 306.69], [-2678.39, 306.6], [-2678.11, 314.27], [-2681.24, 314.36], [-2681.16, 316.78], [-2715.16, 317.79], [-2715.49, 306.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2566.26, 194.87], [-2566.89, 195.42], [-2586.3, 197.49], [-2587.14, 189.65], [-2585.45, 189.47], [-2585.52, 188.74], [-2585.0, 188.68], [-2585.59, 183.18], [-2565.91, 181.09], [-2565.68, 183.3], [-2564.82, 191.33], [-2566.28, 191.48], [-2566.02, 193.92], [-2566.26, 194.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2486.54, 177.95], [-2486.9, 166.28], [-2503.91, 166.81], [-2503.83, 169.48], [-2508.46, 169.64], [-2507.82, 189.71], [-2508.89, 189.74], [-2508.46, 203.09], [-2507.41, 203.06], [-2506.77, 223.17], [-2502.28, 223.03], [-2502.2, 225.65], [-2485.41, 225.12], [-2485.79, 213.36], [-2494.01, 213.62], [-2495.13, 178.22], [-2486.54, 177.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1334.96, 34.13], [-1334.93, 35.17], [-1334.82, 39.12], [-1338.2, 39.22], [-1340.37, 39.47], [-1345.08, 39.64], [-1349.69, 39.81], [-1362.78, 40.6], [-1363.12, 46.31], [-1364.05, 55.74], [-1349.34, 57.2], [-1347.39, 98.67], [-1347.16, 101.41], [-1346.94, 104.09], [-1329.78, 103.3], [-1328.3, 103.24], [-1323.84, 103.03], [-1321.7, 102.87], [-1321.82, 99.62], [-1303.24, 98.74], [-1303.25, 98.35], [-1300.61, 98.22], [-1300.78, 95.51], [-1300.24, 95.43], [-1300.77, 87.02], [-1299.23, 86.92], [-1299.46, 82.51], [-1299.64, 79.33], [-1299.97, 72.93], [-1300.16, 69.49], [-1300.18, 69.06], [-1301.76, 69.06], [-1303.02, 36.95], [-1303.84, 37.02], [-1304.03, 33.21], [-1307.91, 33.36], [-1307.97, 32.72], [-1325.01, 33.61], [-1334.96, 34.13]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-2757.94, 233.65], [-2758.12, 229.06], [-2759.97, 229.14], [-2760.25, 222.09], [-2716.67, 220.36], [-2716.49, 224.95], [-2686.87, 223.78], [-2686.6, 230.65], [-2688.55, 230.73], [-2688.37, 235.21], [-2715.26, 236.29], [-2715.21, 237.6], [-2727.58, 238.09], [-2727.8, 232.45], [-2757.94, 233.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2579.98, 299.9], [-2614.83, 300.91], [-2615.15, 289.72], [-2580.29, 288.72], [-2579.98, 299.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2554.34, 348.34], [-2588.51, 348.93], [-2588.71, 337.5], [-2554.54, 336.91], [-2554.34, 348.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2562.32, 318.77], [-2563.29, 284.81], [-2552.29, 284.49], [-2551.31, 318.45], [-2562.32, 318.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2536.89, 349.55], [-2538.15, 312.4], [-2533.01, 312.23], [-2533.22, 305.95], [-2499.38, 304.81], [-2497.9, 348.22], [-2536.89, 349.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2840.6, 21.4], [-2840.69, 17.7], [-2838.67, 17.66], [-2838.72, 15.68], [-2839.86, 15.71], [-2839.99, 10.25], [-2838.74, 10.22], [-2838.88, 4.62], [-2807.81, 3.86], [-2807.68, 8.97], [-2805.26, 8.91], [-2805.1, 15.07], [-2807.53, 15.12], [-2807.4, 20.59], [-2840.6, 21.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2999.34, 5.69], [-2999.3, 7.19], [-3010.91, 7.68], [-3011.88, 8.97], [-3012.24, 10.28], [-3011.7, 11.57], [-3010.58, 12.55], [-2999.07, 12.07], [-2998.66, 21.72], [-2939.58, 19.23], [-2939.81, 13.77], [-2940.02, 9.01], [-2935.35, 8.81], [-2934.05, 8.23], [-2933.61, 6.5], [-2934.08, 5.11], [-2935.55, 4.09], [-2940.22, 4.29], [-2940.32, 1.99], [-2921.75, 1.21], [-2922.02, -5.02], [-2923.12, -5.0], [-2996.07, -1.9], [-2999.99, -1.73], [-2999.9, 0.39], [-3006.56, 0.67], [-3006.63, -1.1], [-3007.17, -13.85], [-3035.2, -12.67], [-3034.36, 7.18], [-2999.34, 5.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3232.8, 18.44], [-3241.87, 18.77], [-3243.04, -13.77], [-3195.93, -15.48], [-3196.83, -40.45], [-3176.77, -41.17], [-3176.81, -42.26], [-3130.61, -43.93], [-3130.57, -42.69], [-3110.83, -43.41], [-3109.94, -18.6], [-3081.31, -19.64], [-3080.32, 7.7], [-3080.14, 12.83], [-3094.44, 13.34], [-3097.16, 13.44], [-3096.68, 26.85], [-3118.58, 27.65], [-3119.07, 14.23], [-3150.71, 15.37], [-3156.2, 15.58], [-3155.95, 22.49], [-3169.3, 23.0], [-3175.74, 23.18], [-3199.63, 24.07], [-3229.78, 25.16], [-3232.55, 25.26], [-3232.8, 18.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2564.21, 256.86], [-2565.21, 222.33], [-2554.2, 222.01], [-2553.21, 256.54], [-2564.21, 256.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2571.01, 269.92], [-2604.56, 270.89], [-2604.88, 260.01], [-2571.32, 259.04], [-2571.01, 269.92]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-2627.1, 303.92], [-2626.67, 315.99], [-2677.98, 317.82], [-2678.11, 314.27], [-2678.39, 306.6], [-2678.47, 304.39], [-2664.23, 303.88], [-2664.14, 306.21], [-2661.31, 306.1], [-2661.35, 305.14], [-2627.1, 303.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2664.45, 296.12], [-2664.23, 303.88], [-2678.47, 304.39], [-2678.82, 289.56], [-2673.98, 289.41], [-2674.13, 284.06], [-2688.36, 284.48], [-2688.53, 278.64], [-2697.16, 278.9], [-2697.43, 270.8], [-2697.69, 261.23], [-2693.36, 261.1], [-2693.45, 257.99], [-2688.63, 257.85], [-2688.66, 256.71], [-2667.26, 256.08], [-2667.22, 257.34], [-2663.24, 257.22], [-2663.06, 263.04], [-2662.81, 271.39], [-2666.72, 271.51], [-2666.37, 283.34], [-2663.39, 283.24], [-2663.32, 285.93], [-2661.43, 285.88], [-2661.34, 289.05], [-2658.9, 288.98], [-2658.69, 295.95], [-2664.45, 296.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2823.64, -70.48], [-2823.87, -80.88], [-2824.82, -80.87], [-2825.08, -92.65], [-2847.68, -92.14], [-2847.62, -89.49], [-2850.02, -89.43], [-2850.18, -96.48], [-2873.52, -95.96], [-2873.26, -84.54], [-2879.38, -84.41], [-2879.14, -73.84], [-2849.57, -74.52], [-2849.67, -78.7], [-2845.74, -78.8], [-2845.63, -73.8], [-2833.13, -74.08], [-2833.04, -70.27], [-2823.64, -70.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2851.4, -49.52], [-2867.24, -49.05], [-2867.84, -69.38], [-2879.35, -69.05], [-2878.76, -49.07], [-2895.35, -48.58], [-2895.66, -58.93], [-2918.79, -58.25], [-2918.47, -47.61], [-2935.03, -47.12], [-2935.62, -66.87], [-2946.82, -66.54], [-2946.23, -46.45], [-2962.0, -45.99], [-2961.64, -33.51], [-2917.73, -34.81], [-2917.53, -27.99], [-2902.77, -28.42], [-2902.67, -25.05], [-2899.79, -25.13], [-2899.75, -23.53], [-2891.38, -23.78], [-2891.53, -28.94], [-2892.23, -28.92], [-2892.34, -32.47], [-2894.43, -32.41], [-2894.54, -36.02], [-2851.03, -37.32], [-2851.4, -49.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2985.88, -55.3], [-2986.03, -61.69], [-2973.44, -61.99], [-2973.97, -84.21], [-2986.54, -83.92], [-2986.09, -65.18], [-3000.64, -64.84], [-3001.07, -83.24], [-3036.43, -82.4], [-3036.18, -71.89], [-3039.81, -71.81], [-3040.05, -81.81], [-3053.33, -81.49], [-3052.87, -62.19], [-3039.57, -62.5], [-3039.62, -64.65], [-3035.99, -64.74], [-3035.87, -59.51], [-3032.85, -59.57], [-3032.48, -44.13], [-3009.53, -44.96], [-3006.82, -41.66], [-3002.8, -41.76], [-3000.71, -44.02], [-3000.83, -48.27], [-3004.19, -51.0], [-3004.59, -57.99], [-2999.35, -58.12], [-2999.27, -55.0], [-2985.88, -55.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3261.93, -108.87], [-3261.87, -105.96], [-3252.29, -106.24], [-3252.26, -103.06], [-3245.71, -103.18], [-3245.76, -101.24], [-3243.16, -101.36], [-3243.04, -92.32], [-3245.5, -92.23], [-3245.47, -84.49], [-3226.38, -84.92], [-3226.04, -75.6], [-3219.41, -75.82], [-3218.4, -74.74], [-3218.35, -72.44], [-3219.58, -71.69], [-3222.83, -71.6], [-3222.57, -62.17], [-3225.84, -62.07], [-3225.71, -55.67], [-3249.24, -55.06], [-3249.23, -54.43], [-3250.41, -54.38], [-3251.0, -53.4], [-3272.97, -52.8], [-3278.14, -52.66], [-3278.2, -55.84], [-3278.24, -58.13], [-3276.6, -58.17], [-3276.71, -60.64], [-3284.87, -60.43], [-3285.96, -60.8], [-3286.52, -61.5], [-3286.67, -62.51], [-3286.32, -63.79], [-3285.25, -64.4], [-3283.63, -64.46], [-3283.62, -70.03], [-3289.53, -69.77], [-3290.17, -91.95], [-3292.89, -91.88], [-3293.89, -92.59], [-3294.19, -93.78], [-3294.09, -94.76], [-3293.06, -95.87], [-3289.61, -95.92], [-3290.12, -110.38], [-3271.19, -111.2], [-3271.26, -108.69], [-3261.93, -108.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1681.18, -80.89], [-1681.22, -84.44], [-1679.99, -84.46], [-1680.29, -95.23], [-1677.44, -95.28], [-1664.89, -95.25], [-1665.51, -120.88], [-1665.53, -122.52], [-1657.13, -122.71], [-1657.79, -143.45], [-1657.83, -144.55], [-1663.02, -144.41], [-1701.37, -143.38], [-1701.42, -146.26], [-1701.55, -153.03], [-1705.76, -152.91], [-1705.53, -132.12], [-1709.51, -132.03], [-1713.12, -131.91], [-1715.32, -141.1], [-1723.59, -139.81], [-1725.66, -139.51], [-1727.89, -139.14], [-1738.73, -137.28], [-1735.21, -119.11], [-1729.1, -120.24], [-1724.84, -96.44], [-1743.71, -92.99], [-1743.46, -91.56], [-1741.49, -80.48], [-1722.62, -83.81], [-1722.77, -79.5], [-1704.89, -80.28], [-1693.41, -80.63], [-1681.18, -80.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1776.87, -114.66], [-1779.3, -128.23], [-1779.85, -128.14], [-1780.07, -129.4], [-1780.3, -130.67], [-1777.87, -131.11], [-1778.03, -131.95], [-1777.25, -132.09], [-1779.56, -145.16], [-1780.45, -145.0], [-1780.6, -145.89], [-1784.55, -145.2], [-1785.65, -151.4], [-1786.44, -151.27], [-1786.56, -151.92], [-1790.3, -151.27], [-1799.01, -149.74], [-1798.89, -149.06], [-1799.7, -148.92], [-1798.29, -140.91], [-1800.41, -140.54], [-1800.99, -140.43], [-1800.32, -136.66], [-1801.07, -136.51], [-1801.8, -136.41], [-1801.4, -134.14], [-1802.73, -133.86], [-1805.79, -133.36], [-1805.99, -134.63], [-1814.2, -139.78], [-1823.82, -138.39], [-1829.56, -130.18], [-1829.29, -128.5], [-1828.08, -121.74], [-1828.79, -121.62], [-1828.68, -120.97], [-1830.92, -120.58], [-1831.98, -120.4], [-1831.83, -119.57], [-1841.25, -117.92], [-1851.71, -116.1], [-1852.43, -120.19], [-1856.4, -119.5], [-1856.57, -120.44], [-1845.74, -122.32], [-1847.37, -131.61], [-1845.13, -132.01], [-1845.64, -134.93], [-1850.74, -134.04], [-1850.08, -130.37], [-1858.72, -128.85], [-1861.59, -145.09], [-1877.55, -142.29], [-1876.27, -134.99], [-1875.99, -133.46], [-1875.8, -132.39], [-1870.8, -104.02], [-1870.47, -102.2], [-1870.27, -101.08], [-1855.26, -103.72], [-1854.34, -103.88], [-1854.16, -102.84], [-1852.65, -103.11], [-1850.58, -103.48], [-1850.29, -101.88], [-1849.41, -102.03], [-1828.77, -105.67], [-1828.6, -104.74], [-1825.18, -105.34], [-1824.99, -104.26], [-1824.15, -104.4], [-1802.6, -108.23], [-1801.19, -108.49], [-1801.34, -109.3], [-1797.77, -109.94], [-1797.95, -110.92], [-1792.87, -111.82], [-1788.24, -112.65], [-1779.76, -114.15], [-1776.87, -114.66]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[-1929.97, -29.39], [-1932.47, -28.84], [-1933.08, -28.71], [-1934.12, -28.51], [-1936.94, -44.87], [-1949.12, -42.78], [-1948.54, -38.56], [-1950.35, -38.2], [-1949.22, -31.87], [-1947.35, -32.19], [-1947.14, -31.25], [-1946.95, -30.18], [-1946.74, -28.96], [-1946.3, -26.4], [-1949.79, -25.82], [-1949.95, -26.8], [-1950.7, -26.72], [-1951.82, -26.54], [-1952.68, -26.38], [-1953.45, -29.15], [-1955.19, -36.59], [-1956.04, -41.21], [-1975.9, -38.04], [-1974.41, -23.22], [-1976.22, -22.87], [-1978.37, -22.53], [-1977.85, -14.47], [-1977.42, -7.69], [-1965.97, -9.9], [-1964.11, -10.22], [-1962.22, -10.57], [-1951.23, -12.49], [-1950.79, -10.15], [-1947.4, -10.73], [-1943.36, 12.01], [-1942.92, 15.22], [-1965.44, 19.08], [-1966.34, 19.24], [-1964.8, 28.12], [-1968.73, 28.8], [-1967.43, 36.31], [-1968.5, 36.49], [-1967.43, 42.68], [-1966.52, 42.52], [-1965.15, 42.24], [-1962.57, 41.85], [-1962.9, 39.91], [-1952.37, 38.11], [-1927.82, 33.89], [-1925.96, 33.57], [-1922.51, 32.95], [-1921.46, 32.78], [-1921.99, 29.71], [-1922.53, 26.47], [-1922.94, 24.06], [-1920.68, 23.67], [-1921.4, 19.5], [-1921.81, 17.09], [-1925.25, -2.76], [-1925.47, -4.08], [-1925.74, -5.53], [-1929.97, -29.39]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-2141.17, 40.47], [-2142.07, 11.93], [-2157.09, 12.4], [-2156.69, 24.87], [-2160.0, 24.97], [-2160.09, 22.15], [-2176.93, 22.69], [-2191.24, 23.16], [-2191.15, 25.86], [-2195.44, 25.99], [-2195.85, 13.18], [-2211.24, 13.66], [-2211.08, 18.67], [-2213.52, 18.75], [-2213.62, 15.41], [-2218.46, 15.57], [-2218.49, 14.83], [-2260.77, 16.16], [-2260.63, 20.85], [-2266.62, 21.03], [-2266.79, 15.73], [-2293.41, 16.56], [-2292.44, 48.37], [-2280.51, 47.94], [-2280.55, 49.67], [-2276.59, 49.13], [-2276.43, 50.4], [-2245.85, 46.29], [-2223.66, 47.41], [-2223.6, 46.48], [-2217.35, 46.6], [-2216.87, 41.75], [-2209.79, 41.52], [-2209.59, 48.0], [-2194.54, 47.53], [-2194.75, 41.05], [-2156.2, 39.84], [-2156.17, 40.95], [-2141.17, 40.47]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-2106.79, -107.7], [-2106.97, -108.28], [-2107.49, -122.14], [-2121.64, -121.68], [-2125.78, -125.69], [-2129.55, -121.83], [-2137.61, -121.55], [-2137.02, -104.06], [-2136.93, -101.42], [-2142.26, -101.24], [-2141.69, -84.64], [-2142.46, -84.62], [-2142.08, -73.23], [-2141.15, -73.26], [-2140.6, -56.69], [-2126.26, -57.17], [-2127.73, -101.8], [-2128.74, -101.77], [-2128.84, -104.93], [-2128.9, -106.97], [-2106.79, -107.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2083.21, -85.3], [-2088.99, -85.07], [-2088.97, -84.6], [-2098.41, -84.23], [-2097.25, -54.62], [-2070.28, -55.67], [-2070.32, -56.88], [-2067.12, -57.01], [-2066.64, -57.02], [-2067.31, -74.22], [-2082.76, -73.62], [-2083.21, -85.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2158.07, -60.81], [-2201.09, -59.58], [-2201.85, -86.26], [-2158.83, -87.5], [-2158.07, -60.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2223.09, -96.09], [-2224.29, -96.04], [-2224.47, -100.94], [-2237.46, -100.5], [-2237.31, -96.25], [-2238.71, -96.2], [-2237.9, -73.73], [-2244.71, -73.49], [-2244.65, -71.89], [-2246.02, -69.74], [-2246.05, -66.29], [-2266.13, -65.55], [-2266.1, -64.28], [-2273.47, -64.1], [-2273.36, -58.02], [-2272.79, -58.05], [-2272.67, -54.95], [-2273.24, -54.93], [-2273.12, -51.61], [-2266.35, -51.85], [-2265.77, -51.88], [-2265.74, -50.82], [-2239.06, -51.78], [-2238.98, -49.56], [-2218.5, -50.31], [-2218.83, -59.29], [-2219.18, -68.89], [-2222.11, -68.8], [-2223.09, -96.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2327.41, -47.12], [-2328.28, -69.91], [-2329.17, -93.01], [-2299.61, -94.13], [-2297.85, -48.25], [-2327.41, -47.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2527.98, 44.0], [-2526.93, 79.6], [-2524.62, 79.55], [-2524.56, 86.4], [-2518.13, 86.36], [-2512.83, 86.32], [-2512.38, 97.42], [-2505.7, 97.29], [-2505.6, 99.43], [-2496.91, 99.12], [-2475.2, 98.34], [-2476.34, 77.38], [-2494.41, 78.04], [-2492.94, 69.23], [-2489.93, 69.2], [-2483.95, 34.45], [-2479.29, 34.46], [-2479.25, 41.02], [-2430.22, 39.19], [-2430.28, 37.4], [-2424.15, 37.17], [-2424.22, 20.01], [-2428.73, 20.07], [-2429.05, 18.69], [-2445.3, 15.91], [-2445.51, 8.18], [-2441.19, 7.99], [-2441.24, 5.3], [-2441.37, -2.62], [-2447.8, -2.5], [-2447.89, -7.42], [-2465.26, -6.78], [-2481.36, -6.19], [-2481.26, -0.92], [-2490.03, -0.6], [-2489.7, 9.53], [-2482.73, 9.64], [-2486.21, 27.3], [-2488.05, 27.23], [-2488.4, 22.14], [-2528.65, 23.4], [-2527.98, 44.0]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[-2567.18, -42.9], [-2567.53, -51.3], [-2563.89, -51.44], [-2564.82, -73.14], [-2624.79, -70.55], [-2625.0, -76.61], [-2618.66, -78.56], [-2621.35, -86.75], [-2621.58, -92.75], [-2644.91, -91.74], [-2644.74, -82.34], [-2687.64, -80.97], [-2686.2, -35.48], [-2632.28, -38.15], [-2632.4, -40.74], [-2625.91, -41.01], [-2625.76, -37.48], [-2624.32, -37.55], [-2624.15, -33.56], [-2578.98, -35.51], [-2579.29, -42.39], [-2567.18, -42.9]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-2538.73, -36.35], [-2540.11, -85.58], [-2521.49, -86.1], [-2520.12, -36.88], [-2538.73, -36.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2462.07, -43.63], [-2462.52, -60.36], [-2464.68, -60.31], [-2499.89, -59.37], [-2500.26, -73.48], [-2469.01, -74.31], [-2469.64, -98.09], [-2484.75, -97.69], [-2484.96, -103.3], [-2496.22, -103.24], [-2496.28, -97.38], [-2501.65, -97.24], [-2501.17, -79.38], [-2515.49, -79.0], [-2514.63, -46.88], [-2508.78, -47.04], [-2508.66, -42.27], [-2485.76, -42.93], [-2462.07, -43.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2462.07, -43.63], [-2460.21, -43.68], [-2460.26, -45.38], [-2450.35, -45.69], [-2451.9, -95.76], [-2465.77, -95.33], [-2464.68, -60.31], [-2462.52, -60.36], [-2462.07, -43.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2404.83, -45.53], [-2404.95, -49.77], [-2401.34, -49.87], [-2401.63, -61.98], [-2401.79, -68.66], [-2407.24, -68.5], [-2407.38, -73.29], [-2426.23, -72.74], [-2426.11, -68.51], [-2431.01, -68.46], [-2430.88, -63.34], [-2430.72, -56.27], [-2430.53, -48.48], [-2425.63, -48.62], [-2425.44, -45.12], [-2404.83, -45.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2371.44, -45.21], [-2371.97, -63.38], [-2371.39, -63.4], [-2371.53, -68.87], [-2371.68, -73.69], [-2372.26, -73.67], [-2372.79, -92.04], [-2377.15, -91.92], [-2377.16, -92.33], [-2386.74, -92.05], [-2386.73, -91.64], [-2388.84, -91.58], [-2389.68, -91.56], [-2389.56, -87.1], [-2392.56, -87.02], [-2392.34, -79.45], [-2389.34, -79.54], [-2388.85, -62.45], [-2388.68, -56.8], [-2391.08, -56.73], [-2390.85, -48.76], [-2388.45, -48.83], [-2388.34, -44.72], [-2384.51, -44.83], [-2384.5, -44.52], [-2375.13, -44.79], [-2375.14, -45.1], [-2371.44, -45.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2459.75, 76.19], [-2460.03, 64.64], [-2462.38, 64.7], [-2462.61, 55.53], [-2460.25, 55.48], [-2460.34, 51.93], [-2443.32, 51.52], [-2443.13, 59.42], [-2441.19, 59.37], [-2441.05, 65.09], [-2443.0, 65.14], [-2442.77, 74.05], [-2439.26, 73.96], [-2438.94, 86.82], [-2446.18, 86.99], [-2446.26, 83.52], [-2458.63, 83.82], [-2458.82, 76.18], [-2459.75, 76.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2435.95, 81.34], [-2436.66, 54.97], [-2435.22, 54.92], [-2435.28, 54.4], [-2432.86, 53.19], [-2428.38, 53.12], [-2428.34, 54.78], [-2419.83, 54.55], [-2419.13, 80.88], [-2435.95, 81.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2458.88, 114.34], [-2459.34, 98.22], [-2446.09, 97.84], [-2445.63, 113.95], [-2458.88, 114.34]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-2444.09, 136.63], [-2444.71, 116.4], [-2408.7, 115.3], [-2408.36, 126.43], [-2408.09, 135.55], [-2444.09, 136.63]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-2408.7, 115.3], [-2408.94, 109.2], [-2409.82, 83.49], [-2396.22, 83.02], [-2396.44, 76.57], [-2373.36, 75.79], [-2372.32, 106.18], [-2381.81, 106.51], [-2381.15, 125.5], [-2390.56, 125.82], [-2392.27, 127.79], [-2394.09, 127.85], [-2395.79, 127.91], [-2397.12, 126.04], [-2408.36, 126.43], [-2408.7, 115.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2369.93, 60.26], [-2353.15, 59.78], [-2353.15, 58.01], [-2339.2, 57.66], [-2339.17, 58.93], [-2322.61, 58.71], [-2322.76, 50.11], [-2335.59, 50.48], [-2335.82, 42.41], [-2341.39, 36.95], [-2331.67, 36.72], [-2331.65, 37.6], [-2328.32, 37.47], [-2328.35, 36.5], [-2315.36, 36.24], [-2315.53, 28.35], [-2315.01, 28.34], [-2315.04, 26.87], [-2315.63, 26.88], [-2315.9, 15.3], [-2335.85, 15.75], [-2335.88, 14.79], [-2340.3, 14.86], [-2340.39, 10.87], [-2347.1, 11.03], [-2353.81, 11.19], [-2353.71, 15.18], [-2358.24, 15.31], [-2358.22, 16.41], [-2378.34, 16.86], [-2377.86, 37.98], [-2351.96, 37.26], [-2357.26, 42.96], [-2357.04, 50.83], [-2370.04, 51.2], [-2369.93, 60.26]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-2136.39, 92.13], [-2130.07, 91.97], [-2130.04, 93.14], [-2122.89, 92.95], [-2122.95, 90.73], [-2121.91, 90.7], [-2122.28, 75.57], [-2132.25, 75.83], [-2132.22, 77.32], [-2136.76, 77.43], [-2136.39, 92.13]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2425.65, 213.12], [-2433.62, 213.35], [-2436.93, 213.45], [-2442.21, 213.6], [-2442.38, 207.4], [-2443.0, 185.61], [-2443.18, 179.49], [-2440.78, 179.43], [-2440.85, 177.19], [-2438.32, 177.12], [-2435.78, 177.05], [-2435.73, 179.28], [-2426.99, 179.03], [-2426.77, 186.48], [-2412.6, 186.07], [-2412.52, 188.89], [-2410.03, 188.82], [-2409.64, 202.65], [-2412.61, 202.73], [-2412.36, 211.16], [-2425.69, 211.55], [-2425.65, 213.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2218.18, -101.15], [-2224.47, -100.94], [-2237.46, -100.5], [-2263.72, -99.62], [-2264.44, -120.9], [-2218.89, -122.42], [-2218.18, -101.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2282.38, -104.21], [-2282.68, -111.79], [-2283.47, -111.76], [-2283.76, -119.07], [-2282.96, -119.1], [-2283.33, -128.46], [-2283.7, -137.97], [-2284.49, -137.94], [-2284.75, -144.69], [-2283.96, -144.72], [-2284.18, -150.37], [-2285.22, -150.4], [-2286.37, -151.85], [-2286.37, -152.88], [-2273.41, -153.38], [-2272.97, -141.96], [-2271.97, -116.34], [-2271.52, -104.63], [-2282.38, -104.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2330.13, -107.63], [-2330.29, -113.08], [-2331.04, -138.7], [-2331.22, -144.67], [-2326.85, -144.8], [-2327.1, -153.22], [-2327.13, -154.36], [-2320.39, -154.57], [-2320.12, -145.27], [-2308.92, -145.61], [-2307.83, -108.49], [-2311.79, -108.38], [-2311.74, -106.73], [-2325.46, -106.32], [-2325.5, -107.76], [-2330.13, -107.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2311.75, -184.14], [-2311.85, -187.38], [-2311.01, -187.4], [-2311.19, -193.34], [-2311.3, -197.04], [-2332.99, -196.4], [-2331.92, -167.74], [-2331.37, -153.14], [-2327.1, -153.22], [-2327.13, -154.36], [-2320.39, -154.57], [-2277.42, -155.84], [-2277.59, -161.65], [-2265.83, -161.99], [-2266.04, -169.16], [-2261.02, -169.3], [-2260.91, -165.6], [-2222.12, -166.75], [-2222.92, -193.78], [-2221.71, -193.82], [-2221.92, -200.59], [-2258.64, -199.5], [-2258.6, -198.46], [-2264.99, -198.26], [-2266.95, -198.21], [-2266.97, -199.05], [-2277.73, -198.73], [-2277.33, -185.55], [-2278.24, -185.52], [-2284.54, -185.34], [-2284.7, -190.62], [-2298.45, -190.21], [-2298.28, -184.54], [-2311.75, -184.14]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-2041.38, -124.8], [-2040.32, -124.84], [-2040.37, -126.13], [-2040.49, -129.73], [-2040.65, -133.87], [-2040.68, -134.57], [-2048.41, -134.28], [-2050.96, -134.19], [-2057.13, -133.95], [-2057.43, -142.18], [-2072.01, -141.64], [-2071.97, -140.81], [-2082.38, -140.42], [-2082.75, -150.37], [-2108.5, -149.41], [-2107.49, -122.14], [-2106.97, -108.28], [-2100.27, -108.53], [-2099.99, -101.07], [-2099.05, -101.11], [-2098.41, -84.23], [-2088.97, -84.6], [-2088.99, -85.07], [-2083.21, -85.3], [-2083.42, -90.04], [-2083.53, -94.65], [-2075.89, -94.94], [-2076.12, -99.94], [-2076.23, -102.76], [-2056.02, -103.52], [-2055.84, -98.62], [-2040.72, -99.22], [-2040.41, -99.1], [-2040.32, -99.28], [-2041.38, -124.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2176.8, -153.96], [-2177.39, -153.93], [-2177.57, -159.09], [-2188.86, -158.69], [-2188.67, -153.64], [-2189.35, -153.62], [-2188.22, -122.1], [-2203.93, -121.54], [-2203.43, -107.8], [-2159.28, -109.38], [-2159.77, -123.28], [-2175.68, -122.71], [-2176.8, -153.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1997.5, -64.88], [-1997.72, -70.42], [-1997.76, -71.58], [-1997.8, -72.6], [-1998.66, -94.21], [-1998.74, -96.04], [-1999.95, -127.3], [-1970.96, -128.44], [-1967.77, -128.56], [-1964.0, -128.7], [-1964.06, -130.33], [-1944.18, -131.1], [-1944.09, -128.87], [-1907.75, -130.27], [-1907.49, -123.45], [-1907.42, -121.89], [-1907.38, -120.76], [-1907.13, -114.33], [-1919.73, -113.84], [-1944.42, -112.89], [-1944.38, -111.77], [-1945.12, -111.85], [-1948.5, -111.71], [-1981.47, -110.37], [-1981.34, -107.06], [-1981.29, -105.81], [-1981.24, -104.4], [-1980.49, -84.4], [-1967.51, -84.9], [-1967.48, -83.81], [-1967.41, -82.28], [-1966.83, -67.13], [-1967.66, -67.1], [-1979.73, -66.65], [-1979.96, -65.56], [-1997.5, -64.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1982.7, -134.19], [-1982.97, -142.1], [-1983.08, -145.55], [-2000.1, -144.97], [-2000.88, -167.72], [-2006.71, -167.52], [-2006.87, -172.19], [-2007.01, -176.28], [-2001.15, -176.49], [-2001.74, -193.93], [-2003.01, -193.88], [-2003.47, -207.34], [-2002.69, -207.37], [-2002.72, -207.94], [-2002.06, -207.96], [-2002.08, -208.38], [-1993.1, -208.69], [-1993.09, -208.22], [-1969.83, -209.03], [-1969.86, -209.92], [-1966.09, -210.05], [-1966.12, -210.82], [-1960.3, -211.02], [-1953.83, -211.24], [-1947.5, -211.46], [-1947.47, -210.77], [-1943.74, -210.9], [-1943.72, -210.37], [-1939.19, -210.52], [-1919.6, -211.18], [-1919.62, -211.77], [-1911.57, -212.04], [-1911.55, -211.53], [-1911.01, -211.55], [-1910.99, -210.98], [-1910.6, -210.99], [-1910.14, -197.39], [-1911.0, -197.36], [-1909.45, -152.23], [-1913.38, -152.09], [-1923.53, -151.75], [-1924.07, -167.77], [-1924.29, -174.01], [-1929.06, -173.85], [-1928.84, -167.58], [-1963.73, -166.39], [-1962.66, -134.88], [-1968.05, -134.69], [-1971.2, -134.59], [-1982.7, -134.19]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-1841.65, -135.39], [-1836.36, -136.23], [-1834.97, -127.59], [-1829.29, -128.5], [-1829.56, -130.18], [-1823.82, -138.39], [-1814.2, -139.78], [-1805.99, -134.63], [-1805.79, -133.36], [-1802.73, -133.86], [-1803.29, -137.29], [-1801.72, -137.55], [-1802.64, -143.1], [-1804.14, -142.86], [-1807.85, -165.31], [-1814.06, -164.29], [-1814.16, -164.95], [-1820.37, -163.94], [-1820.2, -162.89], [-1839.02, -159.87], [-1838.62, -157.4], [-1838.42, -156.15], [-1844.82, -155.12], [-1841.65, -135.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1799.43, -192.9], [-1782.86, -193.61], [-1782.96, -195.8], [-1768.26, -196.44], [-1768.05, -191.52], [-1760.72, -191.83], [-1753.87, -192.12], [-1754.08, -197.19], [-1739.05, -197.83], [-1738.96, -195.65], [-1722.43, -196.37], [-1723.17, -210.31], [-1723.54, -222.1], [-1740.11, -221.39], [-1740.01, -219.2], [-1758.85, -218.39], [-1762.29, -218.24], [-1765.41, -218.1], [-1771.77, -217.83], [-1783.96, -217.31], [-1784.04, -219.3], [-1800.52, -218.6], [-1799.43, -192.9]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1709.54, -185.28], [-1705.93, -185.53], [-1680.07, -186.64], [-1680.37, -193.57], [-1680.52, -202.51], [-1683.65, -202.38], [-1693.51, -201.99], [-1693.84, -210.49], [-1694.18, -219.13], [-1684.14, -219.52], [-1681.2, -219.64], [-1681.83, -235.7], [-1711.5, -234.53], [-1709.54, -185.28]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-1647.95, -96.89], [-1640.97, -97.15], [-1639.59, -97.2], [-1638.51, -97.24], [-1631.07, -97.51], [-1631.09, -98.11], [-1625.86, -98.3], [-1625.72, -94.44], [-1617.17, -94.75], [-1615.6, -94.81], [-1614.26, -94.86], [-1605.73, -95.16], [-1604.18, -95.21], [-1602.74, -95.26], [-1601.18, -95.32], [-1601.41, -101.54], [-1602.25, -101.51], [-1602.71, -114.76], [-1603.63, -114.73], [-1603.68, -116.49], [-1603.75, -118.12], [-1606.4, -118.02], [-1607.21, -118.0], [-1607.24, -118.79], [-1610.34, -118.68], [-1619.36, -118.36], [-1626.14, -118.12], [-1626.38, -117.43], [-1629.75, -117.31], [-1632.57, -117.21], [-1632.72, -121.24], [-1633.2, -121.21], [-1648.82, -120.64], [-1647.95, -96.89]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1603.97, -168.83], [-1597.03, -173.01], [-1599.04, -175.7], [-1598.07, -176.29], [-1594.19, -178.69], [-1602.99, -192.86], [-1603.09, -195.67], [-1597.62, -195.88], [-1597.72, -198.58], [-1597.81, -200.96], [-1603.33, -200.75], [-1603.44, -203.75], [-1595.57, -218.94], [-1597.23, -219.8], [-1599.66, -221.05], [-1599.21, -221.93], [-1598.74, -222.83], [-1598.5, -223.3], [-1606.09, -227.2], [-1607.23, -225.0], [-1608.28, -225.55], [-1609.29, -223.6], [-1615.46, -211.67], [-1614.46, -211.16], [-1615.33, -209.49], [-1617.25, -208.31], [-1618.59, -210.47], [-1617.49, -211.16], [-1619.18, -213.89], [-1627.49, -208.77], [-1625.75, -205.96], [-1624.48, -206.75], [-1623.17, -204.63], [-1625.78, -203.02], [-1628.11, -202.93], [-1628.15, -204.13], [-1642.07, -203.6], [-1642.03, -202.34], [-1644.88, -202.23], [-1644.56, -195.27], [-1641.68, -195.39], [-1641.49, -190.82], [-1624.81, -191.46], [-1617.32, -187.56], [-1614.38, -186.02], [-1603.97, -168.83]], "holes": []}, "height": 38.5}, {"shape": {"outer": [[-1770.29, -65.98], [-1776.25, -100.43], [-1763.21, -102.67], [-1757.25, -68.22], [-1758.01, -68.09], [-1768.99, -66.21], [-1770.29, -65.98]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1488.26, -2021.44], [-1473.63, -2049.11], [-1468.29, -2046.31], [-1461.75, -2042.88], [-1476.38, -2015.22], [-1488.26, -2021.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2056.27, -1803.63], [-1929.58, -1807.15], [-1929.75, -1813.44], [-1924.99, -1813.56], [-1926.72, -1875.71], [-1932.27, -1875.55], [-1932.42, -1880.88], [-1993.75, -1879.18], [-2048.79, -1877.66], [-2052.6, -1877.55], [-2058.31, -1877.4], [-2056.27, -1803.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1338.64, -703.53], [-1338.73, -697.38], [-1338.47, -690.64], [-1336.63, -681.45], [-1335.33, -676.7], [-1332.46, -669.52], [-1329.41, -663.61], [-1326.54, -659.06], [-1321.06, -652.15], [-1318.5, -649.26], [-1316.33, -646.62], [-1315.95, -632.12], [-1308.64, -640.39], [-1301.64, -636.03], [-1295.26, -632.85], [-1288.04, -630.19], [-1281.04, -628.41], [-1279.11, -627.92], [-1272.15, -626.99], [-1265.47, -626.77], [-1258.54, -626.98], [-1250.96, -628.09], [-1243.83, -629.95], [-1241.64, -630.81], [-1237.32, -632.49], [-1231.07, -635.36], [-1226.48, -637.72], [-1222.31, -640.67], [-1220.32, -642.01], [-1218.77, -643.26], [-1209.33, -643.85], [-1215.27, -766.25], [-1215.87, -765.89], [-1215.97, -769.56], [-1220.73, -767.33], [-1224.83, -765.57], [-1224.61, -762.04], [-1225.08, -761.86], [-1233.25, -758.15], [-1234.09, -758.85], [-1235.48, -759.82], [-1237.4, -760.7], [-1238.76, -761.39], [-1240.82, -762.27], [-1242.69, -762.98], [-1245.09, -763.78], [-1247.22, -764.38], [-1249.57, -764.99], [-1251.84, -765.44], [-1254.71, -766.01], [-1257.55, -766.38], [-1259.66, -766.54], [-1262.4, -766.57], [-1264.7, -766.58], [-1267.19, -766.55], [-1269.44, -766.51], [-1271.96, -766.44], [-1274.28, -766.22], [-1276.7, -765.98], [-1278.9, -765.66], [-1280.82, -765.26], [-1283.41, -764.64], [-1285.55, -764.08], [-1289.16, -762.77], [-1291.65, -761.75], [-1295.1, -760.25], [-1295.5, -761.05], [-1320.54, -749.95], [-1321.51, -749.52], [-1319.46, -707.49], [-1338.64, -706.69], [-1338.64, -703.53]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-2557.21, -355.32], [-2557.54, -362.61], [-2556.81, -362.64], [-2560.65, -440.72], [-2561.45, -440.69], [-2561.61, -444.19], [-2554.58, -444.51], [-2554.63, -445.77], [-2549.35, -446.0], [-2549.41, -447.48], [-2546.6, -447.61], [-2546.55, -446.17], [-2545.28, -446.22], [-2516.08, -447.43], [-2511.76, -447.61], [-2511.84, -449.64], [-2504.74, -449.94], [-2504.66, -448.1], [-2503.95, -430.62], [-2503.67, -423.5], [-2501.29, -364.75], [-2500.05, -364.8], [-2499.89, -361.1], [-2506.73, -360.81], [-2506.67, -359.43], [-2525.96, -358.59], [-2530.98, -358.38], [-2549.74, -357.57], [-2549.65, -355.65], [-2557.21, -355.32]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-2498.37, -317.06], [-2497.27, -289.99], [-2495.5, -249.11], [-2507.18, -248.61], [-2507.04, -245.25], [-2512.57, -245.01], [-2547.99, -243.5], [-2553.73, -243.26], [-2553.87, -246.64], [-2565.88, -246.13], [-2566.7, -263.72], [-2566.78, -266.97], [-2569.25, -324.98], [-2554.33, -325.62], [-2554.55, -330.66], [-2513.89, -332.39], [-2513.67, -327.35], [-2498.86, -327.99], [-2498.37, -317.06]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-2637.54, -249.51], [-2640.9, -328.32], [-2638.27, -329.09], [-2638.33, -335.42], [-2606.42, -336.84], [-2604.39, -336.3], [-2590.06, -339.67], [-2587.61, -339.51], [-2587.74, -333.64], [-2586.61, -333.56], [-2586.52, -327.83], [-2587.88, -327.77], [-2588.0, -322.89], [-2586.27, -322.85], [-2583.56, -266.31], [-2583.42, -262.89], [-2582.45, -242.48], [-2590.14, -241.69], [-2598.44, -241.33], [-2606.89, -241.84], [-2616.3, -243.15], [-2622.15, -244.5], [-2629.14, -246.3], [-2637.54, -249.51]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-2473.88, -321.78], [-2470.12, -321.93], [-2470.22, -324.77], [-2438.51, -325.99], [-2438.41, -323.46], [-2434.57, -323.6], [-2433.83, -304.33], [-2437.65, -304.18], [-2437.54, -301.47], [-2440.64, -301.35], [-2443.44, -301.25], [-2443.08, -292.01], [-2497.27, -289.99], [-2498.37, -317.06], [-2473.73, -317.95], [-2473.88, -321.78]], "holes": []}, "height": 56.0}, {"shape": {"outer": [[-2438.11, -362.33], [-2402.78, -363.86], [-2402.63, -360.56], [-2396.63, -360.82], [-2396.46, -356.98], [-2325.16, -360.06], [-2325.32, -363.9], [-2319.7, -364.14], [-2319.85, -367.43], [-2283.83, -368.98], [-2284.49, -384.03], [-2309.98, -382.93], [-2310.63, -398.13], [-2279.13, -399.48], [-2279.82, -415.37], [-2311.21, -414.02], [-2311.84, -428.59], [-2285.99, -429.7], [-2286.76, -447.57], [-2441.51, -440.91], [-2440.75, -423.57], [-2419.18, -424.5], [-2418.53, -409.46], [-2440.27, -408.52], [-2439.6, -392.9], [-2417.6, -393.86], [-2417.06, -381.43], [-2438.89, -380.49], [-2438.11, -362.33]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-2496.02, -462.05], [-2504.24, -461.61], [-2515.5, -477.17], [-2507.69, -483.53], [-2501.41, -489.03], [-2496.64, -494.18], [-2493.86, -497.2], [-2487.82, -504.42], [-2482.55, -513.19], [-2478.79, -521.37], [-2475.64, -528.6], [-2474.32, -532.58], [-2458.46, -532.74], [-2381.24, -534.49], [-2381.04, -526.41], [-2382.92, -526.3], [-2381.35, -470.96], [-2379.62, -471.01], [-2379.44, -462.41], [-2495.86, -459.23], [-2496.02, -462.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2468.32, -247.29], [-2467.27, -247.33], [-2467.2, -245.55], [-2454.48, -246.02], [-2454.55, -247.8], [-2445.58, -248.14], [-2445.55, -247.34], [-2440.04, -247.54], [-2434.74, -247.74], [-2434.77, -248.54], [-2426.24, -248.85], [-2426.18, -247.25], [-2411.62, -247.78], [-2411.68, -249.38], [-2405.01, -249.62], [-2406.23, -282.64], [-2435.9, -281.55], [-2436.0, -284.16], [-2439.98, -284.01], [-2442.74, -283.91], [-2447.77, -283.72], [-2447.67, -281.12], [-2455.13, -280.84], [-2455.12, -280.39], [-2464.36, -280.05], [-2464.13, -273.97], [-2469.29, -273.77], [-2468.32, -247.29]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-670.28, -127.95], [-640.53, -160.93], [-644.26, -164.26], [-610.03, -202.19], [-605.71, -198.31], [-598.53, -206.28], [-602.53, -209.86], [-588.35, -225.58], [-584.67, -222.29], [-558.55, -251.22], [-515.0, -212.19], [-514.01, -213.28], [-497.31, -198.31], [-504.53, -190.34], [-503.0, -188.97], [-524.76, -164.87], [-526.42, -166.37], [-553.81, -136.06], [-560.51, -133.26], [-670.28, -127.95]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[121.36, -217.5], [132.64, -207.07], [154.41, -230.49], [143.12, -240.9], [121.36, -217.5]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[9.24, -349.55], [11.09, -347.89], [13.23, -346.08], [15.59, -344.06], [37.43, -324.28], [19.09, -304.08], [22.08, -301.4], [24.49, -299.22], [16.37, -290.25], [10.28, -295.73], [-5.53, -278.28], [-8.54, -280.99], [-26.84, -297.45], [-28.98, -299.39], [-31.12, -301.31], [-32.97, -302.98], [-30.93, -305.23], [-29.36, -306.96], [-25.98, -310.69], [-14.78, -323.05], [-12.92, -325.1], [-10.04, -328.27], [-8.26, -330.23], [9.24, -349.55]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-436.67, -84.92], [-361.89, -18.07], [-388.3, 11.26], [-399.16, 1.56], [-424.02, -20.66], [-448.04, -42.13], [-461.79, -54.42], [-461.39, -54.85], [-462.7, -56.02], [-457.9, -61.34], [-458.59, -61.96], [-441.96, -80.45], [-441.26, -79.82], [-436.67, -84.92]], "holes": []}, "height": 42.0}, {"shape": {"outer": [[-229.7, 46.41], [-255.14, 74.16], [-268.78, 61.76], [-267.69, 60.57], [-269.83, 58.63], [-246.63, 33.34], [-245.57, 32.19], [-244.65, 33.02], [-243.2, 34.35], [-241.89, 32.93], [-236.94, 37.45], [-232.83, 41.19], [-234.01, 42.49], [-229.7, 46.41]], "holes": []}, "height": 35.0}, {"shape": {"outer": [[-61.9, -107.85], [-48.3, -95.77], [-31.82, -81.12], [-27.41, -77.2], [-2.01, -54.62], [-5.41, -50.83], [-46.65, -4.75], [-106.84, -58.24], [-85.05, -82.57], [-82.1, -79.96], [-76.46, -86.26], [-79.07, -88.59], [-72.81, -95.59], [-70.28, -93.33], [-65.08, -99.15], [-67.65, -101.43], [-61.9, -107.85]], "holes": []}, "height": 35.0}, {"shape": {"outer": [[-304.54, -21.39], [-292.85, -10.73], [-290.96, -12.78], [-287.97, -10.04], [-285.29, -7.6], [-287.21, -5.5], [-274.25, 6.3], [-277.72, 10.12], [-301.02, 35.46], [-303.75, 38.44], [-334.09, 10.8], [-304.54, -21.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[83.29, -109.07], [109.82, -85.19], [118.46, -77.41], [134.75, -62.86], [110.38, -36.28], [59.75, -83.02], [83.29, -109.07]], "holes": []}, "height": 31.5}, {"shape": {"outer": [[-44.21, 50.87], [-62.56, 71.27], [-58.24, 75.14], [-66.05, 83.8], [-67.07, 82.9], [-81.45, 70.28], [-84.58, 67.49], [-58.29, 38.28], [-44.21, 50.87]], "holes": []}, "height": 35.0}, {"shape": {"outer": [[-36.32, 58.22], [-15.2, 77.7], [-31.79, 95.57], [-40.3, 87.72], [-49.65, 97.77], [-62.25, 86.14], [-36.32, 58.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-246.63, 33.34], [-247.95, 32.14], [-249.01, 31.18], [-247.42, 29.45], [-249.64, 27.44], [-252.29, 25.01], [-269.82, 8.99], [-273.99, 13.53], [-277.72, 10.12], [-301.02, 35.46], [-296.8, 39.3], [-281.26, 53.5], [-283.98, 56.46], [-283.14, 57.22], [-282.19, 58.08], [-279.48, 55.13], [-278.6, 55.93], [-277.77, 55.02], [-276.8, 53.96], [-270.68, 59.55], [-269.83, 58.63], [-246.63, 33.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[162.24, -224.91], [185.07, -202.84], [178.94, -196.39], [176.53, -193.35], [175.97, -193.64], [176.45, -181.61], [176.82, -172.55], [176.93, -170.09], [168.47, -169.63], [168.51, -168.53], [151.81, -167.91], [151.3, -169.11], [143.12, -168.83], [141.58, -202.69], [162.24, -224.91]], "holes": []}, "height": 38.5}, {"shape": {"outer": [[156.04, -148.6], [187.91, -119.01], [144.26, -70.74], [128.22, -85.62], [126.77, -86.97], [112.84, -99.9], [156.04, -148.6]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[-223.78, 72.17], [-221.88, 115.8], [-225.58, 119.32], [-240.47, 119.85], [-245.75, 114.92], [-251.13, 120.64], [-260.97, 111.5], [-224.91, 72.02], [-223.78, 72.17]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[34.18, -61.82], [56.36, -41.68], [50.01, -34.09], [62.58, -22.69], [68.97, -28.53], [91.4, -8.27], [65.57, 21.21], [58.82, 14.44], [47.42, 28.25], [52.81, 33.34], [28.1, 60.06], [6.24, 40.43], [10.44, 34.54], [-3.01, 22.72], [-8.06, 29.4], [-29.19, 8.66], [-2.06, -20.86], [3.54, -15.9], [5.88, -18.3], [3.42, -20.58], [10.3, -28.07], [12.71, -26.01], [14.59, -28.17], [8.83, -33.8], [34.18, -61.82]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-259.13, 79.17], [-282.19, 58.08], [-283.14, 57.22], [-283.98, 56.46], [-303.75, 38.44], [-326.13, 62.75], [-328.85, 65.41], [-321.54, 72.1], [-318.15, 75.19], [-288.17, 102.6], [-284.58, 98.7], [-280.53, 102.39], [-269.46, 90.39], [-266.46, 87.13], [-259.13, 79.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-191.51, -303.56], [-192.69, -302.25], [-198.83, -307.69], [-200.38, -305.96], [-204.2, -309.34], [-209.01, -313.6], [-207.56, -315.23], [-218.3, -324.74], [-205.81, -338.73], [-180.16, -367.5], [-166.25, -383.08], [-163.2, -380.38], [-137.73, -357.81], [-151.17, -342.83], [-188.68, -301.05], [-191.51, -303.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-191.3, -298.15], [-188.68, -301.05], [-151.17, -342.83], [-137.73, -357.81], [-91.27, -316.4], [-113.59, -291.54], [-138.63, -313.87], [-142.65, -309.4], [-169.9, -279.06], [-191.3, -298.15]], "holes": []}, "height": 28.0}, {"shape": {"outer": [[-161.35, -271.57], [-144.47, -256.45], [-117.19, -286.4], [-134.06, -301.67], [-161.35, -271.57]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[-334.09, 10.8], [-338.89, 16.09], [-341.6, 19.07], [-356.03, 34.85], [-354.66, 36.09], [-357.86, 39.6], [-332.84, 62.29], [-330.02, 59.21], [-328.22, 60.85], [-326.13, 62.75], [-303.75, 38.44], [-334.09, 10.8]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[1217.36, 1714.0], [1225.92, 1709.86], [1232.65, 1714.29], [1235.13, 1713.67], [1243.67, 1724.24], [1238.6, 1727.65], [1241.26, 1731.09], [1231.77, 1738.81], [1229.67, 1737.25], [1217.33, 1748.23], [1207.8, 1737.12], [1216.34, 1728.74], [1213.62, 1722.25], [1217.36, 1714.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1388.58, -65.23], [-1388.48, -63.04], [-1388.1, -54.79], [-1387.57, -54.82], [-1387.02, -42.83], [-1386.78, -37.68], [-1387.84, -37.64], [-1387.67, -33.99], [-1388.06, -33.97], [-1387.94, -31.37], [-1387.79, -28.22], [-1387.68, -25.86], [-1387.29, -25.87], [-1387.12, -22.26], [-1385.91, -22.31], [-1385.73, -18.45], [-1385.1, -4.94], [-1385.54, -4.92], [-1385.23, 1.72], [-1385.06, 5.16], [-1371.32, 4.51], [-1371.28, 5.45], [-1367.69, 5.28], [-1364.25, 5.12], [-1364.31, 3.81], [-1320.9, 1.77], [-1320.88, 2.09], [-1309.28, 1.55], [-1309.32, 0.65], [-1302.9, 0.36], [-1302.99, -1.64], [-1303.54, -13.39], [-1306.7, -13.24], [-1309.84, -13.08], [-1309.93, -14.96], [-1310.03, -17.21], [-1310.58, -17.19], [-1311.11, -28.42], [-1311.36, -33.91], [-1314.1, -33.78], [-1314.15, -34.88], [-1311.43, -35.0], [-1310.32, -35.06], [-1308.75, -35.13], [-1306.27, -35.25], [-1304.76, -35.31], [-1306.44, -71.59], [-1307.32, -71.54], [-1307.37, -72.73], [-1307.44, -74.24], [-1340.35, -72.73], [-1340.28, -71.27], [-1340.11, -67.49], [-1358.81, -66.63], [-1359.92, -67.59], [-1361.2, -67.83], [-1362.69, -67.4], [-1363.9, -66.36], [-1388.58, -65.23]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[-1362.94, -91.81], [-1362.95, -92.12], [-1363.29, -99.24], [-1363.37, -101.49], [-1364.44, -123.05], [-1364.86, -131.54], [-1364.9, -132.29], [-1332.71, -133.89], [-1312.17, -134.91], [-1311.82, -127.8], [-1311.53, -122.08], [-1311.44, -120.17], [-1311.12, -120.19], [-1309.98, -97.52], [-1309.83, -94.36], [-1313.13, -94.19], [-1323.76, -93.67], [-1335.68, -93.07], [-1335.7, -93.52], [-1339.24, -93.34], [-1339.22, -92.96], [-1347.08, -92.58], [-1355.45, -92.17], [-1362.94, -91.81]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1358.06, -141.38], [-1350.72, -141.77], [-1350.56, -138.93], [-1333.81, -139.81], [-1333.98, -143.04], [-1330.24, -143.23], [-1325.8, -143.47], [-1327.22, -170.29], [-1327.34, -172.67], [-1327.48, -175.18], [-1327.57, -176.96], [-1336.12, -176.52], [-1336.33, -180.47], [-1336.44, -182.47], [-1352.83, -181.6], [-1352.73, -179.73], [-1352.54, -176.14], [-1359.89, -175.75], [-1359.73, -172.65], [-1359.52, -168.67], [-1358.61, -151.68], [-1358.43, -148.16], [-1358.11, -142.33], [-1358.06, -141.38]], "holes": []}, "height": 28.0}, {"shape": {"outer": [[-1297.18, -877.08], [-1278.82, -885.44], [-1273.22, -873.22], [-1263.36, -877.71], [-1254.84, -859.13], [-1293.19, -841.68], [-1301.74, -860.33], [-1291.62, -864.94], [-1297.18, -877.08]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-79.16, -472.16], [-48.48, -505.59], [-44.87, -509.54], [-33.05, -498.77], [-43.85, -487.0], [-51.4, -478.78], [-36.17, -464.91], [-28.95, -472.77], [-17.58, -485.15], [-3.06, -471.93], [-14.88, -459.04], [-12.56, -456.93], [-14.74, -454.57], [-17.34, -456.94], [-22.43, -451.39], [-6.04, -436.45], [-0.8, -442.16], [-3.7, -444.81], [-1.66, -447.03], [1.0, -444.6], [12.55, -457.17], [19.93, -450.39], [24.55, -446.25], [23.01, -444.57], [10.76, -431.22], [0.54, -420.08], [-9.0, -409.68], [-10.53, -411.07], [-22.16, -421.67], [-21.15, -422.76], [-34.36, -434.8], [-36.19, -432.81], [-51.91, -447.12], [-50.67, -448.48], [-64.34, -460.92], [-65.47, -459.69], [-79.16, -472.16]], "holes": []}, "height": 53.9}, {"shape": {"outer": [[-1669.45, -540.81], [-1667.92, -542.57], [-1658.09, -542.92], [-1656.83, -541.56], [-1644.96, -542.12], [-1644.93, -543.01], [-1642.11, -543.1], [-1639.18, -543.18], [-1639.15, -542.39], [-1627.38, -542.92], [-1625.93, -544.48], [-1616.55, -544.88], [-1614.42, -542.93], [-1614.27, -533.76], [-1615.32, -532.33], [-1615.83, -531.63], [-1625.82, -531.21], [-1627.02, -532.56], [-1655.86, -531.46], [-1657.42, -529.82], [-1667.09, -529.51], [-1667.13, -531.35], [-1668.55, -531.36], [-1669.17, -531.36], [-1669.45, -540.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1774.09, -524.69], [-1770.18, -529.27], [-1769.06, -528.32], [-1767.03, -529.79], [-1767.73, -531.41], [-1722.04, -553.84], [-1719.72, -549.11], [-1719.22, -539.55], [-1718.31, -538.16], [-1717.37, -528.49], [-1716.47, -527.22], [-1721.87, -521.39], [-1723.03, -522.27], [-1767.65, -520.82], [-1768.85, -519.32], [-1774.09, -524.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1584.98, -1293.36], [-1585.7, -1314.27], [-1560.95, -1315.14], [-1548.77, -1302.44], [-1548.56, -1294.61], [-1551.32, -1294.53], [-1584.98, -1293.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1658.64, -1347.27], [-1650.5, -1347.44], [-1650.0, -1324.54], [-1658.25, -1324.36], [-1658.45, -1333.62], [-1660.91, -1333.56], [-1661.14, -1344.45], [-1658.58, -1344.5], [-1658.64, -1347.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1373.95, -846.92], [-1360.58, -852.73], [-1357.34, -855.39], [-1353.95, -857.74], [-1350.39, -859.99], [-1346.44, -861.86], [-1342.61, -863.33], [-1338.59, -864.52], [-1334.68, -865.53], [-1330.7, -866.3], [-1316.77, -872.92], [-1307.81, -853.34], [-1333.31, -841.74], [-1333.11, -841.32], [-1332.91, -840.89], [-1339.2, -838.03], [-1339.4, -838.46], [-1339.61, -838.91], [-1364.99, -827.37], [-1373.95, -846.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1457.03, -845.79], [-1438.74, -805.39], [-1436.27, -800.04], [-1434.46, -796.26], [-1397.75, -813.06], [-1404.9, -829.1], [-1400.24, -831.31], [-1402.53, -836.53], [-1401.95, -836.81], [-1403.34, -839.85], [-1405.13, -843.87], [-1405.82, -843.58], [-1408.0, -848.55], [-1413.22, -846.67], [-1420.53, -862.78], [-1457.03, -845.79]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-988.84, -862.75], [-961.69, -892.43], [-937.77, -870.72], [-952.73, -854.35], [-950.7, -852.52], [-958.84, -843.62], [-960.93, -845.52], [-964.98, -841.09], [-988.84, -862.75]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1530.32, -780.73], [-1510.63, -781.73], [-1511.4, -796.53], [-1483.1, -798.02], [-1482.23, -797.72], [-1481.8, -797.02], [-1479.41, -751.28], [-1480.39, -750.29], [-1485.15, -750.1], [-1484.33, -732.54], [-1484.14, -728.84], [-1479.29, -727.45], [-1478.24, -726.18], [-1478.21, -722.99], [-1482.62, -720.86], [-1523.55, -701.11], [-1524.66, -700.58], [-1525.46, -700.3], [-1526.24, -700.37], [-1526.85, -700.85], [-1527.18, -701.57], [-1531.35, -779.67], [-1531.03, -780.29], [-1530.32, -780.73]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1195.37, -774.88], [-1149.84, -788.41], [-1135.67, -775.4], [-1092.52, -735.78], [-1092.15, -732.18], [-1123.71, -730.52], [-1116.59, -703.35], [-1140.71, -697.22], [-1142.27, -703.64], [-1183.2, -692.88], [-1191.41, -723.56], [-1183.23, -725.59], [-1195.37, -774.88]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-934.16, -815.21], [-920.36, -830.16], [-913.38, -823.77], [-896.15, -842.43], [-892.73, -839.29], [-886.9, -833.95], [-882.03, -829.48], [-912.04, -796.93], [-913.05, -795.87], [-934.16, -815.21]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-1088.49, -965.64], [-1082.33, -972.38], [-1080.37, -970.61], [-1075.21, -976.29], [-1071.83, -973.23], [-1072.21, -972.82], [-1052.77, -955.22], [-1047.13, -961.39], [-1035.74, -951.09], [-1056.7, -928.1], [-1068.07, -938.38], [-1067.04, -939.51], [-1073.19, -945.07], [-1074.1, -944.06], [-1078.78, -948.31], [-1077.84, -949.36], [-1085.12, -955.95], [-1085.92, -955.07], [-1090.41, -959.15], [-1086.3, -963.65], [-1088.49, -965.64]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-950.15, -827.07], [-929.45, -849.52], [-921.78, -842.49], [-942.47, -820.05], [-950.15, -827.07]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1592.13, -832.09], [-1591.34, -813.89], [-1587.25, -814.79], [-1586.97, -813.28], [-1588.29, -812.97], [-1589.82, -812.3], [-1590.99, -811.3], [-1592.09, -809.91], [-1592.78, -808.32], [-1593.1, -806.46], [-1592.89, -804.69], [-1592.38, -803.06], [-1591.71, -801.78], [-1590.87, -800.65], [-1589.69, -799.68], [-1588.4, -799.03], [-1586.63, -798.47], [-1584.79, -798.36], [-1582.79, -798.73], [-1581.17, -799.49], [-1580.07, -800.5], [-1579.11, -801.71], [-1578.49, -802.7], [-1578.13, -803.83], [-1577.87, -805.08], [-1575.67, -805.02], [-1575.17, -795.78], [-1562.67, -797.96], [-1481.52, -813.01], [-1481.77, -821.67], [-1482.02, -824.17], [-1482.19, -825.59], [-1479.61, -826.18], [-1482.21, -839.52], [-1482.88, -839.4], [-1483.38, -853.64], [-1577.33, -835.99], [-1577.32, -834.46], [-1592.13, -832.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1392.94, -942.69], [-1392.79, -932.84], [-1395.45, -932.8], [-1395.13, -912.49], [-1375.65, -912.79], [-1375.81, -922.78], [-1373.37, -922.82], [-1373.68, -942.98], [-1392.94, -942.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1452.35, -966.64], [-1451.84, -944.37], [-1444.29, -944.54], [-1444.34, -946.92], [-1435.62, -947.12], [-1435.57, -944.5], [-1428.78, -944.65], [-1429.29, -966.82], [-1436.39, -966.66], [-1436.22, -958.77], [-1444.11, -958.59], [-1444.3, -966.82], [-1452.35, -966.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1452.18, -1001.07], [-1451.97, -990.83], [-1454.39, -990.78], [-1453.98, -970.58], [-1446.72, -970.74], [-1446.7, -969.31], [-1432.35, -969.61], [-1432.99, -1001.46], [-1452.18, -1001.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1453.32, -940.74], [-1434.16, -941.34], [-1433.84, -931.37], [-1430.89, -931.45], [-1430.23, -910.86], [-1450.38, -910.22], [-1450.71, -920.64], [-1452.69, -920.57], [-1453.32, -940.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1496.28, -1114.04], [-1480.01, -1114.41], [-1478.66, -1055.32], [-1494.93, -1054.95], [-1495.42, -1076.5], [-1513.88, -1076.08], [-1514.24, -1091.76], [-1495.77, -1092.17], [-1496.28, -1114.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1513.49, -969.55], [-1513.5, -951.11], [-1476.23, -951.43], [-1475.26, -951.44], [-1475.12, -947.53], [-1495.09, -947.2], [-1494.93, -940.48], [-1491.27, -940.59], [-1490.96, -936.76], [-1490.05, -936.74], [-1489.95, -930.71], [-1494.9, -930.63], [-1494.99, -928.53], [-1519.92, -928.41], [-1519.95, -929.37], [-1524.39, -929.25], [-1524.34, -924.94], [-1561.94, -924.64], [-1563.71, -923.06], [-1568.16, -922.9], [-1570.18, -924.93], [-1570.38, -929.13], [-1568.53, -930.81], [-1568.85, -971.3], [-1548.56, -971.49], [-1548.58, -973.36], [-1544.31, -977.4], [-1543.06, -977.41], [-1539.03, -977.41], [-1539.03, -971.05], [-1535.68, -971.06], [-1533.66, -969.28], [-1513.49, -969.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1422.63, -922.69], [-1404.77, -923.23], [-1404.42, -911.47], [-1422.27, -910.93], [-1422.63, -922.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1396.99, -1002.88], [-1377.61, -1003.22], [-1377.47, -995.19], [-1387.74, -995.01], [-1387.7, -992.92], [-1373.98, -993.17], [-1373.62, -973.16], [-1393.84, -972.79], [-1393.96, -980.44], [-1384.14, -980.62], [-1384.17, -982.41], [-1396.61, -982.18], [-1396.99, -1002.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1447.69, -1182.68], [-1439.08, -1192.61], [-1426.78, -1193.26], [-1418.83, -1186.12], [-1417.81, -1162.59], [-1416.22, -1161.34], [-1416.07, -1157.0], [-1417.36, -1155.51], [-1417.15, -1151.81], [-1415.27, -1150.54], [-1381.49, -1152.35], [-1373.5, -1145.29], [-1373.18, -1132.94], [-1378.65, -1126.86], [-1382.51, -1130.31], [-1382.73, -1135.58], [-1386.09, -1135.36], [-1387.25, -1133.76], [-1391.56, -1133.57], [-1393.09, -1135.07], [-1410.38, -1134.11], [-1413.94, -1130.39], [-1431.47, -1129.42], [-1438.85, -1136.1], [-1445.92, -1142.44], [-1447.69, -1182.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1570.3, -1236.67], [-1569.46, -1236.69], [-1565.93, -1236.79], [-1565.98, -1238.32], [-1536.01, -1239.16], [-1535.65, -1226.4], [-1538.38, -1226.33], [-1538.3, -1223.07], [-1558.66, -1222.49], [-1566.16, -1222.29], [-1565.96, -1215.33], [-1580.75, -1214.92], [-1580.85, -1218.4], [-1583.46, -1218.34], [-1583.79, -1230.2], [-1570.12, -1230.58], [-1570.3, -1236.67]], "holes": []}, "height": 28.0}, {"shape": {"outer": [[-1524.58, -1231.62], [-1517.71, -1231.79], [-1517.64, -1228.76], [-1507.72, -1229.0], [-1507.64, -1225.89], [-1500.94, -1226.05], [-1500.67, -1215.3], [-1507.69, -1215.13], [-1507.77, -1218.49], [-1518.17, -1218.24], [-1518.24, -1220.99], [-1524.32, -1220.84], [-1524.58, -1231.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1574.06, -1180.15], [-1573.73, -1160.39], [-1563.77, -1160.56], [-1563.79, -1162.31], [-1523.05, -1162.97], [-1523.01, -1160.39], [-1483.8, -1161.04], [-1484.45, -1200.73], [-1504.56, -1200.4], [-1504.38, -1189.54], [-1502.29, -1189.56], [-1502.11, -1178.73], [-1510.48, -1178.59], [-1510.53, -1181.65], [-1520.31, -1181.49], [-1520.68, -1204.5], [-1523.96, -1204.45], [-1523.58, -1180.97], [-1574.06, -1180.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1492.24, -1244.8], [-1492.12, -1238.06], [-1493.05, -1238.04], [-1492.87, -1228.03], [-1491.66, -1228.05], [-1491.48, -1218.33], [-1492.8, -1218.3], [-1492.67, -1211.37], [-1482.05, -1211.56], [-1482.18, -1218.44], [-1481.22, -1218.45], [-1481.4, -1228.47], [-1482.62, -1228.45], [-1482.78, -1237.96], [-1481.63, -1237.98], [-1481.76, -1244.99], [-1492.24, -1244.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1399.78, -945.85], [-1400.31, -968.63], [-1393.47, -968.79], [-1393.4, -965.73], [-1383.95, -965.94], [-1384.02, -968.76], [-1375.9, -968.95], [-1375.38, -946.46], [-1383.58, -946.27], [-1383.65, -949.33], [-1391.96, -949.14], [-1391.89, -946.03], [-1399.78, -945.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1556.55, -782.18], [-1553.16, -782.3], [-1553.16, -783.76], [-1547.47, -784.09], [-1547.41, -782.65], [-1543.69, -782.67], [-1543.38, -779.75], [-1539.27, -780.03], [-1538.19, -756.58], [-1542.23, -756.47], [-1542.17, -751.27], [-1538.05, -751.59], [-1537.37, -728.18], [-1541.33, -728.07], [-1541.16, -722.79], [-1554.19, -722.22], [-1555.7, -721.16], [-1562.03, -721.01], [-1562.31, -727.21], [-1564.96, -727.13], [-1566.06, -727.1], [-1565.77, -717.73], [-1569.85, -717.59], [-1569.59, -711.62], [-1565.62, -711.82], [-1564.56, -691.09], [-1563.85, -678.51], [-1567.85, -678.22], [-1567.76, -675.2], [-1571.19, -675.05], [-1571.11, -673.67], [-1573.99, -673.52], [-1577.26, -673.35], [-1577.28, -674.65], [-1580.69, -674.54], [-1580.8, -677.54], [-1584.75, -677.3], [-1586.06, -711.16], [-1581.86, -711.29], [-1582.17, -716.71], [-1586.32, -716.6], [-1587.49, -739.79], [-1583.66, -740.0], [-1583.73, -743.63], [-1572.0, -744.06], [-1571.26, -745.58], [-1569.77, -747.14], [-1568.16, -747.95], [-1566.52, -748.1], [-1564.66, -747.84], [-1563.52, -746.67], [-1562.61, -745.28], [-1561.55, -742.48], [-1561.51, -740.16], [-1558.64, -740.19], [-1559.06, -750.57], [-1555.12, -750.69], [-1555.33, -755.94], [-1559.79, -755.81], [-1560.31, -778.75], [-1556.45, -778.86], [-1556.55, -782.18]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[-1450.66, -2087.67], [-1443.93, -2099.68], [-1428.07, -2090.87], [-1434.8, -2078.86], [-1450.66, -2087.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1238.01, -2466.47], [-1238.1, -2468.11], [-1229.37, -2483.14], [-1221.63, -2483.66], [-1221.68, -2484.46], [-1203.31, -2485.71], [-1201.94, -2468.6], [-1238.01, -2466.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-366.02, -462.13], [-328.55, -503.56], [-271.55, -451.57], [-269.29, -449.51], [-306.79, -408.29], [-327.31, -426.95], [-366.02, -462.13]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-929.54, -93.79], [-928.66, -80.47], [-939.38, -79.84], [-951.44, -90.19], [-950.84, -92.75], [-929.54, -93.79]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1164.78, -219.36], [-1164.65, -218.84], [-1164.29, -218.44], [-1163.75, -218.26], [-1163.19, -218.36], [-1161.43, -220.3], [-1150.07, -232.83], [-1149.22, -232.07], [-1146.27, -235.32], [-1144.4, -237.38], [-1151.98, -244.21], [-1164.69, -255.65], [-1165.32, -255.85], [-1165.95, -255.67], [-1166.41, -255.18], [-1166.51, -254.52], [-1165.48, -233.48], [-1165.12, -226.28], [-1164.78, -219.36]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-683.99, 417.58], [-682.51, 415.99], [-680.47, 413.87], [-674.49, 419.33], [-672.78, 417.64], [-666.3, 423.62], [-664.41, 421.44], [-654.95, 410.57], [-622.78, 375.35], [-629.03, 370.19], [-628.41, 369.54], [-642.05, 356.74], [-642.91, 356.22], [-643.9, 355.87], [-644.82, 355.87], [-645.73, 356.04], [-646.13, 356.19], [-646.73, 356.54], [-648.75, 358.64], [-650.13, 360.05], [-655.53, 365.96], [-658.17, 368.8], [-659.32, 367.8], [-661.12, 369.68], [-662.66, 371.43], [-661.59, 372.37], [-663.54, 374.78], [-665.95, 372.63], [-687.99, 352.16], [-689.21, 351.0], [-690.26, 352.05], [-691.34, 352.5], [-692.39, 353.1], [-693.34, 353.82], [-694.33, 354.69], [-694.91, 356.22], [-695.12, 357.5], [-696.83, 359.13], [-700.77, 363.02], [-702.97, 365.18], [-703.67, 365.87], [-704.63, 365.04], [-705.4, 364.44], [-707.14, 363.06], [-707.3, 362.56], [-707.43, 362.02], [-707.47, 361.74], [-707.51, 361.36], [-707.48, 360.9], [-707.4, 360.42], [-707.3, 360.15], [-707.14, 359.71], [-707.11, 359.25], [-707.19, 358.68], [-707.33, 358.14], [-707.55, 357.73], [-707.83, 357.37], [-708.04, 357.16], [-708.45, 356.88], [-708.93, 356.66], [-709.45, 356.59], [-709.96, 356.55], [-710.55, 356.54], [-711.13, 356.61], [-711.71, 356.74], [-712.25, 356.97], [-712.68, 357.2], [-713.09, 357.5], [-713.48, 357.84], [-713.85, 358.25], [-714.23, 358.7], [-721.73, 352.25], [-726.74, 358.25], [-725.43, 359.65], [-734.02, 369.34], [-734.93, 368.61], [-736.71, 370.5], [-737.56, 369.81], [-747.8, 381.13], [-738.53, 388.48], [-738.29, 390.18], [-737.7, 391.79], [-736.77, 393.11], [-735.35, 393.78], [-733.8, 393.99], [-732.54, 393.77], [-731.31, 392.83], [-728.68, 390.05], [-727.89, 390.79], [-727.01, 391.67], [-699.01, 416.81], [-697.39, 415.11], [-690.67, 421.18], [-685.81, 416.08], [-683.99, 417.58]], "holes": []}, "height": 35.0}, {"shape": {"outer": [[-1534.54, -2122.05], [-1501.41, -2123.79], [-1501.72, -2113.99], [-1525.61, -2112.87], [-1538.25, -2100.46], [-1546.93, -2108.25], [-1547.59, -2108.84], [-1534.54, -2122.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1517.77, -2081.18], [-1510.17, -2094.16], [-1502.07, -2089.71], [-1506.2, -2082.2], [-1504.6, -2081.21], [-1506.4, -2078.19], [-1507.86, -2079.05], [-1509.31, -2076.52], [-1517.77, -2081.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1533.54, -2145.87], [-1528.19, -2146.13], [-1528.41, -2149.94], [-1521.43, -2150.47], [-1521.21, -2146.55], [-1503.31, -2147.61], [-1502.83, -2138.58], [-1504.26, -2138.44], [-1504.01, -2133.98], [-1504.75, -2132.86], [-1506.27, -2132.39], [-1511.84, -2132.23], [-1512.01, -2130.37], [-1512.95, -2129.14], [-1514.36, -2128.78], [-1532.49, -2128.04], [-1533.54, -2145.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-905.41, -131.93], [-905.01, -125.64], [-905.3, -125.62], [-904.93, -119.84], [-904.64, -119.86], [-904.33, -114.95], [-898.69, -115.31], [-898.99, -120.15], [-898.63, -120.17], [-898.98, -125.91], [-899.52, -125.83], [-899.93, -132.27], [-905.41, -131.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1070.23, -55.95], [-1070.14, -54.2], [-1070.9, -54.87], [-1072.63, -52.9], [-1071.96, -52.31], [-1071.62, -45.56], [-1061.55, -46.05], [-1062.07, -56.37], [-1070.23, -55.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-514.17, -293.61], [-457.81, -242.76], [-479.71, -217.53], [-479.03, -216.9], [-476.61, -214.69], [-483.22, -209.45], [-484.4, -208.49], [-485.52, -209.74], [-493.36, -218.57], [-502.6, -228.7], [-519.15, -243.43], [-542.24, -264.14], [-539.76, -266.81], [-538.92, -267.71], [-538.25, -267.1], [-537.13, -268.33], [-533.66, -272.09], [-535.94, -274.06], [-534.52, -275.7], [-532.24, -273.73], [-529.08, -277.2], [-514.17, -293.61]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-895.67, 57.5], [-881.67, 70.21], [-896.02, 85.91], [-910.03, 73.22], [-895.67, 57.5]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-806.23, -51.47], [-798.43, -60.28], [-777.08, -41.51], [-784.88, -32.7], [-806.23, -51.47]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-926.8, 56.02], [-912.08, 39.82], [-908.03, 43.47], [-912.8, 48.72], [-908.26, 52.81], [-918.47, 64.04], [-920.85, 64.32], [-922.44, 62.88], [-922.31, 60.07], [-926.8, 56.02]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-965.82, 22.36], [-957.12, 12.44], [-956.23, 13.21], [-954.83, 11.62], [-955.46, 11.06], [-949.47, 4.22], [-940.29, 12.2], [-952.27, 25.87], [-953.06, 25.19], [-954.26, 26.56], [-953.54, 27.2], [-956.44, 30.51], [-965.82, 22.36]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1075.0, -34.14], [-1063.59, -34.83], [-1062.1, -10.26], [-1073.51, -9.58], [-1075.0, -34.14]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-655.04, -232.57], [-627.8, -262.27], [-621.76, -256.76], [-618.74, -254.01], [-601.64, -238.42], [-600.39, -237.29], [-626.3, -209.05], [-627.04, -208.7], [-627.77, -208.6], [-628.57, -208.74], [-629.25, -209.08], [-655.04, -232.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1012.09, -24.08], [-1003.43, -33.65], [-997.16, -28.03], [-993.97, -31.55], [-985.91, -24.31], [-999.88, -8.87], [-1006.48, -14.81], [-1007.7, -15.89], [-1005.58, -18.23], [-1012.09, -24.08]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1258.7, -22.84], [-1255.22, -23.0], [-1253.14, -23.15], [-1253.42, -28.29], [-1246.61, -28.66], [-1245.09, 1.48], [-1248.02, 1.65], [-1254.99, 2.0], [-1255.92, 2.05], [-1262.26, 2.39], [-1263.41, 2.45], [-1270.96, 2.87], [-1275.86, 3.13], [-1282.74, 3.5], [-1282.86, 1.13], [-1283.96, -19.08], [-1279.22, -19.33], [-1271.53, -19.75], [-1271.47, -18.57], [-1258.51, -19.28], [-1258.7, -22.84]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[-995.14, -2.16], [-991.98, 0.61], [-991.67, 0.25], [-988.84, 2.73], [-988.34, 2.17], [-984.15, 5.85], [-967.72, -12.79], [-977.42, -21.28], [-991.73, -5.06], [-992.2, -5.48], [-995.14, -2.16]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1198.98, -25.43], [-1194.68, -25.62], [-1194.8, -29.87], [-1195.08, -35.78], [-1181.6, -36.42], [-1181.77, -40.13], [-1180.22, -40.29], [-1172.35, -40.68], [-1170.75, -40.68], [-1170.73, -40.12], [-1170.29, -31.66], [-1169.32, -12.65], [-1172.46, -12.52], [-1171.99, -6.03], [-1179.51, -6.61], [-1179.58, -7.56], [-1189.78, -6.97], [-1189.6, -4.97], [-1193.57, -4.68], [-1193.54, -3.42], [-1197.89, -3.15], [-1198.08, -6.33], [-1200.01, -6.24], [-1200.49, -16.87], [-1198.6, -16.94], [-1198.98, -25.43]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-1084.55, -41.5], [-1082.94, -8.26], [-1119.75, -6.49], [-1120.81, -28.63], [-1111.13, -29.1], [-1111.1, -28.5], [-1107.82, -28.66], [-1107.38, -19.78], [-1096.37, -20.32], [-1097.36, -40.87], [-1084.55, -41.5]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[-1144.98, -82.55], [-1143.46, -52.04], [-1143.27, -48.2], [-1142.99, -42.58], [-1146.32, -42.41], [-1146.3, -41.99], [-1154.16, -41.6], [-1154.19, -42.09], [-1172.37, -41.19], [-1172.35, -40.68], [-1180.22, -40.29], [-1180.24, -40.85], [-1181.8, -40.76], [-1183.47, -40.68], [-1183.75, -46.29], [-1185.44, -80.44], [-1182.53, -80.59], [-1182.56, -81.21], [-1174.09, -81.63], [-1174.06, -81.05], [-1171.48, -81.17], [-1164.96, -81.49], [-1159.24, -81.78], [-1156.26, -81.92], [-1156.28, -82.38], [-1147.55, -82.81], [-1147.53, -82.42], [-1145.29, -82.53], [-1144.98, -82.55]], "holes": []}, "height": 38.5}, {"shape": {"outer": [[-1170.29, -31.66], [-1159.28, -32.19], [-1154.9, -32.41], [-1155.13, -37.01], [-1148.78, -37.32], [-1148.64, -34.62], [-1148.55, -32.7], [-1145.76, -32.83], [-1145.72, -31.82], [-1145.67, -30.72], [-1145.62, -29.63], [-1145.05, -17.97], [-1144.93, -15.57], [-1141.49, -15.75], [-1141.31, -12.13], [-1141.14, -8.74], [-1141.6, -8.7], [-1144.59, -8.55], [-1144.56, -7.88], [-1154.33, -7.38], [-1163.9, -6.89], [-1166.54, -6.77], [-1169.02, -6.65], [-1169.32, -12.65], [-1170.29, -31.66]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[-1275.56, 72.49], [-1275.52, 73.24], [-1275.2, 79.68], [-1274.78, 79.67], [-1274.74, 80.18], [-1274.72, 80.76], [-1275.87, 80.82], [-1275.78, 82.77], [-1275.4, 90.23], [-1274.66, 90.19], [-1274.08, 101.64], [-1257.26, 100.79], [-1257.59, 94.09], [-1258.04, 94.1], [-1258.8, 79.14], [-1258.96, 76.02], [-1258.44, 76.0], [-1258.66, 71.64], [-1275.56, 72.49]], "holes": []}, "height": 28.0}, {"shape": {"outer": [[-1204.94, 111.15], [-1196.87, 110.76], [-1196.09, 126.94], [-1218.1, 128.01], [-1218.74, 114.77], [-1204.8, 114.09], [-1204.94, 111.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1236.57, 76.55], [-1220.56, 75.7], [-1219.85, 89.24], [-1220.44, 90.26], [-1220.01, 98.42], [-1221.09, 99.35], [-1224.21, 99.52], [-1225.34, 98.58], [-1229.11, 98.78], [-1230.03, 99.71], [-1233.16, 99.87], [-1234.45, 98.86], [-1234.86, 91.18], [-1235.86, 89.92], [-1236.57, 76.55]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1274.62, 114.6], [-1254.63, 113.68], [-1254.54, 115.58], [-1251.17, 115.43], [-1250.56, 128.68], [-1255.15, 128.89], [-1255.28, 126.11], [-1258.34, 126.24], [-1258.74, 128.25], [-1259.85, 129.96], [-1261.51, 131.16], [-1263.48, 131.69], [-1265.57, 131.45], [-1267.42, 130.46], [-1268.77, 128.87], [-1269.44, 126.87], [-1274.05, 127.09], [-1274.1, 126.03], [-1274.62, 114.6]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[-1277.94, 70.63], [-1270.07, 70.26], [-1270.06, 70.62], [-1264.58, 70.36], [-1264.6, 69.95], [-1256.46, 69.56], [-1256.75, 63.45], [-1260.09, 63.6], [-1260.33, 58.69], [-1276.59, 59.46], [-1276.56, 60.17], [-1278.43, 60.25], [-1277.94, 70.63]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1250.52, 74.86], [-1241.38, 74.47], [-1241.33, 75.5], [-1240.27, 96.0], [-1239.67, 95.97], [-1239.47, 100.02], [-1245.95, 100.35], [-1246.08, 98.0], [-1247.52, 98.07], [-1248.18, 97.51], [-1249.33, 97.58], [-1249.63, 92.46], [-1250.37, 91.61], [-1250.47, 89.53], [-1249.83, 88.27], [-1250.52, 74.86]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-1216.16, 61.07], [-1216.13, 61.68], [-1215.48, 74.13], [-1214.41, 94.97], [-1205.86, 94.52], [-1205.91, 93.68], [-1199.79, 93.36], [-1201.5, 60.31], [-1216.16, 61.07]], "holes": []}, "height": 31.5}, {"shape": {"outer": [[-1277.8, 46.78], [-1277.64, 50.16], [-1279.36, 50.24], [-1278.98, 58.19], [-1264.06, 57.49], [-1264.12, 56.14], [-1258.78, 55.89], [-1258.99, 51.43], [-1257.06, 51.33], [-1257.31, 46.03], [-1261.97, 46.26], [-1261.98, 46.02], [-1267.55, 46.29], [-1267.59, 45.31], [-1271.02, 45.47], [-1270.97, 46.45], [-1277.8, 46.78]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1277.28, 31.68], [-1270.58, 31.36], [-1270.56, 31.81], [-1268.92, 31.74], [-1269.05, 29.02], [-1267.7, 27.78], [-1265.21, 27.66], [-1265.23, 27.17], [-1260.96, 26.98], [-1256.26, 26.75], [-1255.55, 42.3], [-1276.74, 43.28], [-1277.28, 31.68]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1187.45, 120.45], [-1174.35, 119.85], [-1173.07, 147.96], [-1186.17, 148.56], [-1187.45, 120.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1151.38, 102.65], [-1137.55, 102.02], [-1136.27, 130.09], [-1150.1, 130.72], [-1151.38, 102.65]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[-1016.57, 170.91], [-995.19, 147.72], [-994.81, 148.07], [-994.07, 147.27], [-983.71, 156.78], [-1005.82, 180.75], [-1014.12, 173.15], [-1016.57, 170.91]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-1075.94, 180.4], [-1072.48, 176.55], [-1073.69, 175.47], [-1067.97, 169.11], [-1069.08, 168.12], [-1067.12, 165.94], [-1065.17, 163.76], [-1064.04, 164.77], [-1057.86, 157.88], [-1048.47, 166.26], [-1064.76, 184.39], [-1066.3, 183.01], [-1069.28, 186.33], [-1075.94, 180.4]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1038.65, 162.41], [-1029.82, 170.3], [-1039.46, 181.01], [-1038.65, 181.72], [-1037.41, 182.83], [-1040.42, 186.18], [-1042.66, 184.19], [-1050.13, 192.5], [-1058.76, 184.8], [-1038.65, 162.41]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1195.12, 24.26], [-1185.56, 23.89], [-1185.44, 26.89], [-1183.37, 26.8], [-1183.09, 33.93], [-1184.34, 33.98], [-1184.22, 37.3], [-1182.89, 37.25], [-1182.23, 53.99], [-1183.58, 54.04], [-1183.55, 54.94], [-1189.45, 55.16], [-1189.51, 53.7], [-1194.62, 53.9], [-1194.68, 52.5], [-1196.02, 52.55], [-1197.0, 27.29], [-1195.0, 27.21], [-1195.12, 24.26]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[-1151.15, 148.2], [-1133.97, 147.44], [-1133.29, 162.85], [-1150.48, 163.61], [-1151.15, 148.2]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1075.36, 116.91], [-1068.95, 109.93], [-1066.79, 111.9], [-1063.39, 108.18], [-1061.86, 109.58], [-1060.29, 111.02], [-1056.43, 114.53], [-1066.23, 125.22], [-1075.36, 116.91]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1112.1, 86.31], [-1112.52, 76.85], [-1111.44, 76.8], [-1111.49, 75.39], [-1111.56, 73.97], [-1112.7, 74.01], [-1113.13, 64.43], [-1083.6, 63.12], [-1083.19, 72.44], [-1090.95, 72.78], [-1090.4, 85.35], [-1112.1, 86.31]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-1025.88, 182.35], [-1025.43, 182.76], [-1024.96, 183.2], [-1019.3, 177.09], [-1009.36, 186.23], [-1024.49, 202.58], [-1024.87, 202.23], [-1027.86, 205.46], [-1036.52, 197.49], [-1033.2, 193.9], [-1034.28, 192.91], [-1030.19, 188.5], [-1030.94, 187.81], [-1025.88, 182.35]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1031.16, 153.89], [-1013.94, 135.4], [-1010.39, 138.69], [-1010.93, 139.27], [-1005.53, 144.27], [-1010.63, 149.76], [-1011.95, 148.54], [-1014.8, 151.6], [-1017.23, 154.2], [-1015.78, 155.54], [-1020.0, 160.07], [-1025.08, 155.37], [-1027.15, 157.59], [-1031.16, 153.89]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1031.21, 93.58], [-1018.12, 79.17], [-1016.46, 80.67], [-1014.67, 78.7], [-1011.15, 81.88], [-1013.26, 84.21], [-1009.72, 87.41], [-1022.7, 101.68], [-1024.19, 100.35], [-1026.03, 102.38], [-1029.58, 99.18], [-1027.52, 96.91], [-1031.21, 93.58]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-989.2, 168.59], [-978.18, 156.32], [-967.68, 165.67], [-967.51, 168.4], [-977.63, 179.66], [-981.21, 176.47], [-980.84, 176.05], [-989.2, 168.59]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1110.32, 123.6], [-1110.16, 126.89], [-1111.62, 126.96], [-1111.2, 135.17], [-1108.5, 135.03], [-1108.4, 137.08], [-1106.86, 138.57], [-1104.31, 138.44], [-1103.08, 136.75], [-1103.1, 136.4], [-1098.63, 136.19], [-1098.85, 131.89], [-1096.45, 131.77], [-1096.54, 130.06], [-1095.07, 129.98], [-1094.35, 129.15], [-1094.43, 127.6], [-1093.16, 127.53], [-1093.4, 122.77], [-1101.81, 123.18], [-1101.85, 122.34], [-1106.0, 122.55], [-1105.96, 123.39], [-1110.32, 123.6]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1043.54, 138.69], [-1027.91, 121.58], [-1017.43, 131.08], [-1033.06, 148.2], [-1043.54, 138.69]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1109.63, 151.3], [-1086.16, 125.38], [-1076.45, 134.11], [-1099.93, 160.03], [-1109.63, 151.3]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1023.48, 208.49], [-1018.89, 203.49], [-1019.49, 202.94], [-1006.58, 188.86], [-996.46, 198.09], [-1005.79, 208.26], [-1009.18, 211.95], [-1009.45, 211.7], [-1014.24, 216.91], [-1023.48, 208.49]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1248.46, 113.39], [-1247.86, 125.29], [-1246.66, 125.22], [-1246.7, 124.49], [-1245.6, 124.44], [-1245.56, 125.22], [-1244.65, 125.78], [-1242.96, 125.64], [-1242.15, 124.98], [-1242.19, 124.15], [-1241.35, 124.1], [-1241.32, 124.75], [-1238.82, 124.63], [-1238.86, 123.95], [-1237.96, 123.91], [-1237.94, 124.54], [-1235.29, 124.42], [-1235.33, 123.74], [-1234.5, 123.71], [-1234.47, 124.33], [-1231.91, 124.2], [-1231.93, 123.53], [-1231.32, 123.51], [-1231.29, 124.16], [-1229.08, 124.05], [-1229.11, 123.34], [-1223.4, 123.06], [-1223.36, 124.02], [-1222.5, 123.98], [-1223.08, 112.21], [-1226.35, 112.38], [-1226.45, 110.54], [-1232.54, 110.84], [-1232.45, 112.59], [-1248.46, 113.39]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-954.22, 247.03], [-941.94, 233.44], [-930.1, 244.07], [-942.38, 257.65], [-954.22, 247.03]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-918.61, 153.59], [-914.26, 148.82], [-910.99, 151.78], [-893.4, 132.46], [-883.61, 141.31], [-905.55, 165.39], [-918.61, 153.59]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-883.84, 47.52], [-882.8, 46.33], [-883.77, 45.5], [-880.5, 41.76], [-879.54, 42.59], [-879.25, 42.26], [-875.9, 45.17], [-875.79, 45.04], [-867.0, 52.67], [-872.3, 58.75], [-877.11, 54.58], [-877.38, 54.89], [-881.48, 51.33], [-880.6, 50.32], [-883.84, 47.52]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-913.12, 236.34], [-902.98, 245.51], [-917.04, 260.94], [-923.02, 255.54], [-924.03, 256.65], [-928.67, 252.46], [-924.47, 247.86], [-924.0, 248.28], [-916.37, 239.91], [-917.15, 239.19], [-914.88, 236.71], [-914.1, 237.42], [-913.12, 236.34]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-983.17, 223.77], [-980.37, 220.79], [-980.98, 220.23], [-974.14, 212.96], [-973.54, 213.52], [-971.75, 211.62], [-964.97, 217.94], [-966.65, 219.72], [-959.21, 226.67], [-958.17, 225.57], [-951.88, 231.44], [-959.28, 239.32], [-960.32, 238.36], [-962.86, 241.08], [-969.6, 234.79], [-968.38, 233.49], [-974.17, 228.1], [-976.21, 230.27], [-983.17, 223.77]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1061.86, 109.58], [-1060.42, 108.02], [-1054.1, 101.14], [-1056.66, 98.82], [-1054.88, 96.88], [-1056.33, 95.56], [-1041.34, 79.23], [-1032.97, 86.85], [-1043.72, 98.57], [-1031.2, 109.97], [-1041.47, 121.16], [-1056.79, 107.2], [-1058.85, 109.44], [-1060.29, 111.02], [-1061.86, 109.58]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-1015.43, 72.89], [-998.96, 54.57], [-989.15, 63.31], [-1005.62, 81.65], [-1015.43, 72.89]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-951.22, 129.61], [-932.23, 109.16], [-923.61, 117.11], [-942.61, 137.55], [-951.22, 129.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-535.26, 84.7], [-532.22, 81.35], [-533.14, 80.51], [-515.87, 61.49], [-500.86, 75.01], [-501.65, 75.87], [-475.73, 99.17], [-491.04, 116.07], [-489.13, 117.79], [-493.95, 123.11], [-498.61, 128.25], [-501.73, 125.45], [-504.13, 128.11], [-504.94, 127.39], [-508.17, 130.96], [-506.97, 132.04], [-508.75, 134.0], [-510.71, 136.16], [-512.67, 134.4], [-520.15, 142.66], [-522.0, 141.0], [-526.92, 146.44], [-528.07, 145.41], [-529.55, 147.04], [-528.92, 147.61], [-529.8, 148.57], [-530.7, 149.56], [-535.8, 144.97], [-536.54, 145.78], [-542.23, 140.67], [-541.24, 139.57], [-545.42, 135.8], [-544.19, 134.44], [-544.44, 132.06], [-538.74, 125.81], [-540.9, 123.84], [-532.75, 114.89], [-544.02, 104.69], [-534.84, 94.63], [-541.33, 88.75], [-536.57, 83.53], [-535.26, 84.7]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-617.96, 38.99], [-610.37, 30.86], [-590.63, 49.17], [-615.36, 75.63], [-626.6, 65.2], [-608.26, 45.56], [-611.47, 42.57], [-612.7, 43.87], [-617.96, 38.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-683.25, -48.89], [-664.62, -69.7], [-650.85, -57.47], [-669.48, -36.66], [-673.71, -40.41], [-679.85, -33.55], [-684.87, -38.01], [-678.73, -44.87], [-683.25, -48.89]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-608.75, 216.43], [-601.59, 208.5], [-586.79, 221.76], [-588.03, 223.13], [-585.9, 225.04], [-590.26, 229.86], [-592.85, 227.53], [-594.42, 229.28], [-608.75, 216.43]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-762.31, 3.69], [-751.4, -7.75], [-744.92, -1.61], [-751.13, 4.9], [-751.35, 4.68], [-756.06, 9.62], [-762.31, 3.69]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-784.72, 52.03], [-769.59, 35.0], [-760.21, 43.28], [-775.34, 60.3], [-784.72, 52.03]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-756.21, 19.16], [-738.55, -0.23], [-732.97, 4.83], [-732.45, 4.26], [-728.31, 8.0], [-728.83, 8.57], [-723.1, 13.76], [-740.76, 33.13], [-756.21, 19.16]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-688.8, 126.55], [-675.88, 138.4], [-682.98, 146.09], [-692.03, 137.78], [-689.83, 135.39], [-693.7, 131.84], [-688.8, 126.55]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-780.34, -6.44], [-760.83, -28.04], [-746.88, -15.53], [-753.88, -7.79], [-756.79, -10.39], [-756.47, -10.73], [-764.61, -18.04], [-766.11, -16.37], [-760.72, -11.53], [-772.04, 1.0], [-780.34, -6.44]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-684.45, 9.14], [-675.22, -0.87], [-674.91, -0.59], [-672.86, -2.82], [-664.81, 4.55], [-666.86, 6.77], [-666.4, 7.2], [-675.64, 17.21], [-684.45, 9.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-793.79, 13.57], [-792.25, 11.88], [-793.66, 10.59], [-789.78, 6.36], [-788.33, 7.68], [-786.8, 6.0], [-776.82, 15.12], [-783.79, 22.7], [-793.79, 13.57]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-785.2, 2.51], [-780.55, -2.73], [-769.9, 6.64], [-774.56, 11.9], [-785.2, 2.51]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1092.33, 161.68], [-1086.5, 155.22], [-1084.13, 157.36], [-1071.71, 143.61], [-1066.3, 148.44], [-1068.57, 150.95], [-1066.5, 152.82], [-1076.96, 164.41], [-1076.79, 164.56], [-1076.71, 165.98], [-1077.79, 167.17], [-1079.22, 167.17], [-1079.35, 167.06], [-1082.48, 170.51], [-1092.33, 161.68]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1110.09, 110.99], [-1104.9, 110.75], [-1104.94, 109.97], [-1099.32, 109.7], [-1099.28, 110.48], [-1090.99, 110.09], [-1090.97, 110.71], [-1089.38, 110.64], [-1089.11, 116.17], [-1090.37, 117.64], [-1098.99, 118.05], [-1098.9, 120.09], [-1109.64, 120.59], [-1109.68, 119.6], [-1112.81, 119.75], [-1113.16, 112.23], [-1110.05, 112.07], [-1110.09, 110.99]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-892.69, 158.58], [-881.25, 146.04], [-880.34, 146.87], [-878.35, 144.7], [-860.52, 160.85], [-864.43, 165.14], [-863.46, 166.03], [-873.18, 176.69], [-874.32, 175.64], [-877.83, 179.5], [-879.22, 178.24], [-879.83, 178.9], [-885.11, 174.1], [-884.51, 173.44], [-885.46, 172.58], [-881.73, 168.51], [-892.69, 158.58]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-968.11, 119.34], [-949.02, 98.76], [-946.71, 100.88], [-942.04, 95.85], [-933.6, 103.61], [-959.69, 131.74], [-964.18, 127.61], [-963.14, 126.49], [-968.96, 121.13], [-967.67, 119.75], [-968.11, 119.34]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1037.22, 39.8], [-1023.71, 24.88], [-1026.95, 21.96], [-1021.49, 15.92], [-1009.42, 26.78], [-1028.39, 47.73], [-1037.22, 39.8]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1026.69, 62.25], [-1019.6, 54.3], [-1008.93, 63.76], [-1016.02, 71.71], [-1026.69, 62.25]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1041.35, 33.24], [-1041.47, 30.27], [-1041.75, 30.28], [-1042.3, 16.27], [-1030.98, 15.83], [-1030.84, 19.43], [-1029.69, 20.51], [-1029.55, 23.99], [-1030.61, 25.12], [-1030.5, 28.01], [-1032.59, 30.1], [-1036.53, 30.26], [-1036.41, 33.04], [-1041.35, 33.24]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1018.48, 50.46], [-1016.37, 48.24], [-1016.53, 48.08], [-1008.1, 39.25], [-999.13, 47.74], [-1002.89, 51.68], [-1001.02, 53.45], [-1007.81, 60.56], [-1018.48, 50.46]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-979.22, 97.55], [-960.89, 77.58], [-948.63, 88.74], [-966.96, 108.73], [-979.22, 97.55]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-888.17, 204.48], [-875.31, 190.36], [-865.49, 199.24], [-878.34, 213.36], [-879.72, 212.11], [-882.26, 214.9], [-888.55, 209.21], [-886.01, 206.42], [-888.17, 204.48]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1158.15, 37.51], [-1158.75, 23.5], [-1155.59, 23.36], [-1155.72, 20.32], [-1150.41, 20.09], [-1150.43, 19.67], [-1145.24, 19.46], [-1145.21, 20.19], [-1143.16, 20.1], [-1142.96, 24.93], [-1142.24, 24.9], [-1141.96, 31.61], [-1142.29, 31.63], [-1142.17, 34.4], [-1148.41, 34.66], [-1148.31, 37.09], [-1158.15, 37.51]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1084.57, 48.58], [-1085.06, 39.06], [-1085.89, 39.1], [-1086.16, 33.91], [-1085.32, 33.86], [-1085.83, 23.93], [-1084.88, 23.88], [-1084.62, 21.93], [-1083.64, 20.22], [-1082.06, 19.03], [-1080.14, 18.53], [-1078.18, 18.81], [-1076.47, 19.84], [-1075.3, 21.44], [-1074.84, 23.37], [-1073.81, 23.32], [-1072.55, 47.97], [-1084.57, 48.58]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1058.49, 63.85], [-1041.52, 45.21], [-1031.91, 53.91], [-1048.88, 72.54], [-1058.49, 63.85]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1058.63, 16.46], [-1053.2, 16.23], [-1053.17, 16.73], [-1051.29, 16.65], [-1051.31, 16.15], [-1046.29, 15.93], [-1046.24, 17.07], [-1045.69, 17.05], [-1045.58, 19.72], [-1045.46, 22.44], [-1044.37, 22.4], [-1044.11, 28.56], [-1045.19, 28.61], [-1045.03, 32.25], [-1046.09, 32.3], [-1045.88, 37.16], [-1057.11, 37.65], [-1057.35, 32.01], [-1056.77, 31.98], [-1057.02, 26.02], [-1058.21, 26.07], [-1058.63, 16.46]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-901.78, 221.91], [-900.75, 222.84], [-905.33, 227.83], [-896.28, 236.08], [-882.96, 221.57], [-892.16, 213.2], [-896.88, 218.34], [-897.77, 217.55], [-901.78, 221.91]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1071.03, 17.89], [-1062.13, 17.34], [-1061.68, 24.48], [-1062.15, 24.52], [-1061.45, 35.82], [-1061.23, 35.81], [-1060.77, 43.19], [-1069.44, 43.71], [-1071.03, 17.89]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-905.19, 193.25], [-901.15, 188.82], [-901.79, 188.25], [-897.89, 183.98], [-897.25, 184.55], [-894.22, 181.23], [-886.2, 188.51], [-890.0, 192.67], [-889.7, 192.95], [-892.74, 196.27], [-893.04, 196.0], [-897.17, 200.51], [-905.19, 193.25]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1080.98, 79.32], [-1079.56, 77.76], [-1081.07, 76.39], [-1079.82, 75.0], [-1078.31, 74.95], [-1077.6, 75.6], [-1077.05, 74.98], [-1075.13, 76.7], [-1070.71, 71.81], [-1058.64, 82.67], [-1066.35, 91.17], [-1074.65, 83.71], [-1075.31, 84.43], [-1080.98, 79.32]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1110.37, 20.62], [-1098.71, 20.16], [-1097.85, 42.21], [-1095.94, 42.13], [-1095.53, 52.68], [-1109.14, 53.21], [-1109.52, 43.46], [-1112.25, 43.56], [-1112.8, 29.68], [-1110.02, 29.57], [-1110.37, 20.62]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1174.68, 24.32], [-1174.0, 39.38], [-1177.33, 39.54], [-1176.75, 52.6], [-1173.61, 52.47], [-1173.25, 60.36], [-1194.56, 61.32], [-1193.79, 78.35], [-1190.59, 78.2], [-1190.04, 90.34], [-1163.15, 89.11], [-1163.74, 77.43], [-1158.57, 77.17], [-1140.7, 76.28], [-1141.51, 58.36], [-1142.55, 58.4], [-1143.03, 47.81], [-1142.44, 47.79], [-1142.53, 45.81], [-1142.6, 44.07], [-1143.27, 44.1], [-1143.4, 41.31], [-1149.0, 41.56], [-1149.05, 40.47], [-1162.66, 41.08], [-1163.43, 23.82], [-1174.68, 24.32]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[-1113.1, 106.03], [-1101.14, 105.69], [-1101.18, 104.54], [-1093.43, 104.32], [-1093.57, 99.36], [-1095.5, 99.42], [-1095.63, 94.89], [-1104.91, 95.15], [-1104.92, 94.85], [-1111.19, 95.03], [-1111.02, 100.88], [-1113.25, 100.95], [-1113.1, 106.03]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-988.66, 81.16], [-974.92, 66.11], [-966.24, 73.98], [-979.98, 89.03], [-988.66, 81.16]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1036.68, 70.62], [-1033.62, 67.25], [-1032.53, 68.24], [-1028.2, 63.46], [-1018.75, 71.96], [-1026.14, 80.11], [-1036.68, 70.62]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1065.96, 73.69], [-1059.05, 66.07], [-1049.12, 75.0], [-1056.03, 82.63], [-1065.96, 73.69]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-969.77, 151.06], [-963.57, 144.01], [-964.29, 143.38], [-958.9, 137.25], [-948.54, 146.29], [-952.03, 150.26], [-950.42, 151.66], [-956.63, 158.73], [-959.75, 156.02], [-960.79, 157.18], [-964.7, 153.77], [-965.55, 154.74], [-969.77, 151.06]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1062.45, 144.68], [-1069.9, 138.05], [-1065.05, 132.65], [-1066.25, 131.59], [-1060.25, 124.89], [-1051.6, 132.56], [-1062.45, 144.68]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-854.76, -218.93], [-849.1, -225.08], [-847.88, -223.97], [-847.1, -224.81], [-846.44, -225.54], [-850.15, -228.93], [-843.63, -236.03], [-829.93, -223.53], [-830.67, -222.72], [-843.47, -208.64], [-854.0, -218.25], [-854.76, -218.93]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-835.25, 222.84], [-817.03, 203.06], [-807.78, 211.53], [-814.0, 218.28], [-811.22, 220.82], [-823.22, 233.85], [-835.25, 222.84]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1240.82, -33.99], [-1225.54, -34.77], [-1225.38, -31.64], [-1224.88, -22.29], [-1224.83, -21.34], [-1224.53, -15.38], [-1223.78, -1.2], [-1227.57, -1.0], [-1227.51, -0.01], [-1228.75, 0.07], [-1231.24, 0.2], [-1233.87, 0.33], [-1235.28, 0.39], [-1235.34, -0.64], [-1239.1, -0.45], [-1240.82, -33.99]], "holes": []}, "height": 28.0}, {"shape": {"outer": [[-846.54, 307.89], [-823.9, 282.94], [-812.03, 293.64], [-834.67, 318.59], [-846.54, 307.89]], "holes": []}, "height": 28.0}, {"shape": {"outer": [[-695.92, 322.75], [-692.98, 325.45], [-686.17, 318.09], [-681.09, 322.76], [-680.23, 323.54], [-678.32, 323.37], [-676.2, 325.32], [-676.15, 327.28], [-675.39, 327.98], [-689.92, 343.68], [-690.41, 343.24], [-698.77, 352.28], [-711.34, 340.74], [-704.57, 333.43], [-700.89, 336.81], [-699.58, 335.4], [-703.42, 331.87], [-697.29, 325.25], [-697.8, 324.78], [-695.92, 322.75]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-877.08, 262.24], [-868.69, 252.73], [-861.88, 258.7], [-861.15, 257.87], [-857.02, 261.49], [-857.75, 262.31], [-851.66, 267.65], [-859.98, 277.09], [-862.31, 275.04], [-864.53, 277.56], [-876.86, 266.76], [-874.69, 264.31], [-877.08, 262.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-794.78, 239.3], [-789.94, 234.22], [-787.73, 236.31], [-783.72, 232.12], [-779.38, 236.24], [-778.02, 234.81], [-769.07, 243.28], [-774.46, 248.93], [-776.4, 247.08], [-779.61, 250.44], [-777.65, 252.3], [-778.4, 253.09], [-777.64, 253.81], [-782.97, 259.4], [-788.88, 253.8], [-786.6, 251.4], [-793.85, 244.53], [-791.66, 242.25], [-794.78, 239.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-897.5, 246.66], [-887.17, 255.77], [-893.14, 262.51], [-890.01, 265.26], [-891.51, 266.95], [-891.53, 270.04], [-893.01, 271.7], [-895.95, 271.92], [-898.09, 270.03], [-900.75, 270.16], [-903.74, 267.51], [-903.78, 265.38], [-907.87, 261.77], [-905.49, 259.1], [-907.2, 257.59], [-897.5, 246.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-766.23, 278.45], [-762.76, 274.81], [-763.91, 273.74], [-754.0, 263.36], [-751.61, 265.63], [-749.31, 263.23], [-747.63, 264.82], [-746.07, 263.2], [-742.61, 266.48], [-743.74, 267.67], [-738.4, 272.74], [-754.48, 289.58], [-766.23, 278.45]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-717.3, 319.09], [-710.5, 311.91], [-709.21, 313.12], [-709.08, 312.98], [-707.23, 314.73], [-699.63, 306.72], [-698.33, 307.93], [-697.8, 307.37], [-690.49, 314.26], [-699.56, 323.82], [-700.35, 323.08], [-706.34, 329.41], [-717.3, 319.09]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-804.89, 260.9], [-814.38, 271.33], [-802.0, 282.52], [-801.56, 282.04], [-799.26, 284.11], [-789.63, 273.53], [-799.93, 264.23], [-800.51, 264.85], [-804.89, 260.9]], "holes": []}, "height": 28.0}, {"shape": {"outer": [[-1057.69, -38.7], [-1042.8, -39.32], [-1042.22, -25.76], [-1044.49, -25.66], [-1044.24, -20.0], [-1049.72, -19.77], [-1049.66, -18.3], [-1049.61, -17.13], [-1052.92, -16.99], [-1052.97, -18.17], [-1056.82, -18.0], [-1057.69, -38.7]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-811.69, 234.66], [-796.51, 218.01], [-794.12, 220.17], [-793.82, 219.84], [-791.19, 222.21], [-791.49, 222.54], [-789.18, 224.64], [-804.36, 241.29], [-811.69, 234.66]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-978.25, 8.24], [-971.36, -0.0], [-970.92, 0.37], [-961.07, -11.38], [-954.36, -5.8], [-957.08, -2.56], [-955.18, -0.99], [-962.2, 7.39], [-960.71, 8.64], [-967.71, 17.0], [-978.25, 8.24]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-848.1, 289.55], [-855.12, 283.17], [-847.01, 274.32], [-848.78, 272.71], [-843.54, 266.97], [-841.98, 268.38], [-841.46, 267.81], [-834.2, 274.42], [-834.72, 274.99], [-832.59, 276.92], [-837.9, 282.71], [-840.05, 280.76], [-848.1, 289.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-737.75, 354.79], [-742.7, 350.28], [-734.48, 341.36], [-736.04, 339.93], [-732.84, 336.46], [-731.13, 338.03], [-728.15, 334.8], [-719.21, 342.98], [-733.29, 358.26], [-733.62, 357.97], [-735.4, 358.09], [-737.34, 356.32], [-737.36, 354.54], [-737.44, 354.46], [-737.75, 354.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-756.21, 332.5], [-749.83, 325.52], [-746.96, 328.12], [-732.46, 312.25], [-735.02, 309.92], [-728.95, 303.28], [-717.93, 313.28], [-723.78, 319.68], [-724.6, 318.95], [-745.7, 342.04], [-756.21, 332.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1221.42, -33.75], [-1218.51, -33.89], [-1218.57, -35.21], [-1211.48, -35.56], [-1210.8, -35.59], [-1209.43, -35.64], [-1209.39, -34.85], [-1205.52, -35.04], [-1203.97, -2.62], [-1207.02, -2.47], [-1206.96, -1.3], [-1216.37, -0.83], [-1216.81, -0.82], [-1216.87, -1.9], [-1217.45, -1.88], [-1218.72, -1.82], [-1219.91, -1.78], [-1220.6, -15.66], [-1220.7, -17.57], [-1220.85, -21.17], [-1221.04, -25.03], [-1221.42, -33.75]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-725.45, 285.5], [-721.74, 288.83], [-727.28, 294.95], [-729.03, 293.38], [-731.09, 295.67], [-729.5, 297.11], [-734.75, 302.91], [-736.41, 301.43], [-738.58, 303.82], [-736.86, 305.36], [-742.02, 311.08], [-743.82, 309.46], [-748.5, 314.64], [-746.75, 316.23], [-752.63, 322.73], [-767.73, 309.18], [-761.67, 302.48], [-759.91, 304.06], [-755.54, 299.24], [-757.23, 297.71], [-751.77, 291.67], [-750.01, 293.26], [-747.87, 290.89], [-749.69, 289.26], [-744.36, 283.36], [-742.62, 284.92], [-740.69, 282.79], [-742.5, 281.17], [-736.81, 274.89], [-732.52, 278.74], [-730.6, 276.61], [-723.33, 283.14], [-725.45, 285.5]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1037.69, -19.5], [-1038.3, -39.04], [-1032.19, -39.22], [-1031.9, -30.05], [-1030.6, -30.09], [-1030.75, -35.25], [-1022.96, -35.5], [-1022.31, -14.69], [-1024.73, -14.61], [-1024.69, -13.1], [-1029.97, -12.92], [-1030.34, -24.91], [-1031.59, -24.86], [-1031.43, -19.71], [-1037.69, -19.5]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-950.86, 36.26], [-930.54, 13.96], [-925.79, 18.25], [-927.25, 19.86], [-911.54, 34.06], [-931.41, 55.88], [-947.08, 41.71], [-946.07, 40.59], [-950.86, 36.26]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-628.9, 248.07], [-621.36, 239.72], [-617.05, 243.58], [-616.73, 243.23], [-612.2, 247.29], [-612.51, 247.65], [-608.9, 250.89], [-616.44, 259.24], [-621.05, 255.1], [-621.45, 255.55], [-625.19, 252.19], [-624.79, 251.75], [-628.9, 248.07]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-717.71, 227.69], [-710.74, 219.81], [-701.29, 228.11], [-702.02, 228.93], [-696.87, 233.46], [-698.14, 234.88], [-692.62, 239.73], [-693.25, 240.43], [-687.24, 245.71], [-690.83, 249.76], [-702.31, 239.67], [-704.27, 241.89], [-710.67, 236.28], [-709.48, 234.93], [-717.71, 227.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-555.87, 369.53], [-544.16, 380.1], [-546.3, 382.45], [-546.08, 383.69], [-546.33, 384.93], [-547.01, 385.99], [-548.0, 386.73], [-549.19, 387.08], [-550.42, 386.98], [-552.82, 389.6], [-566.84, 376.95], [-560.46, 369.94], [-558.14, 372.03], [-555.87, 369.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-544.74, 368.26], [-538.08, 360.87], [-529.57, 368.49], [-536.23, 375.87], [-544.74, 368.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-657.47, 207.89], [-652.55, 212.32], [-652.05, 211.77], [-648.74, 214.76], [-657.0, 223.81], [-659.03, 226.12], [-660.85, 224.54], [-662.57, 226.48], [-667.09, 222.4], [-665.37, 220.51], [-667.32, 218.75], [-657.47, 207.89]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-573.47, 461.55], [-557.74, 444.29], [-545.1, 455.73], [-546.12, 456.85], [-543.13, 459.56], [-546.69, 463.46], [-545.54, 464.5], [-556.69, 476.73], [-561.32, 472.54], [-563.27, 472.94], [-565.25, 472.6], [-566.96, 471.6], [-568.22, 469.98], [-568.79, 468.0], [-568.59, 465.96], [-573.47, 461.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-634.1, 278.1], [-634.61, 278.68], [-632.85, 280.2], [-637.21, 285.21], [-638.79, 283.84], [-638.75, 284.43], [-640.36, 286.25], [-642.81, 286.3], [-644.54, 284.79], [-644.56, 283.88], [-646.55, 282.14], [-647.43, 282.17], [-649.89, 280.02], [-649.88, 279.21], [-654.29, 275.39], [-650.28, 270.8], [-649.93, 271.1], [-646.61, 267.29], [-634.1, 278.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-535.52, 354.95], [-519.65, 338.1], [-516.85, 340.71], [-516.0, 339.79], [-512.41, 343.15], [-513.27, 344.06], [-510.28, 346.85], [-520.06, 357.24], [-517.31, 359.8], [-521.71, 364.47], [-523.37, 362.92], [-525.06, 364.73], [-535.52, 354.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-689.42, 197.29], [-679.47, 186.43], [-667.18, 197.63], [-677.13, 208.49], [-689.42, 197.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-684.94, 282.33], [-664.65, 260.25], [-653.9, 270.04], [-657.65, 274.12], [-655.73, 276.05], [-658.03, 278.45], [-658.96, 279.53], [-646.13, 291.71], [-659.14, 305.86], [-684.94, 282.33]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-646.57, 218.45], [-645.29, 219.59], [-644.61, 218.84], [-642.45, 220.76], [-643.17, 221.57], [-640.48, 223.93], [-643.49, 227.33], [-642.1, 228.56], [-645.32, 232.2], [-644.89, 232.57], [-647.88, 235.95], [-649.06, 234.9], [-651.69, 237.88], [-656.5, 233.66], [-654.36, 231.25], [-655.32, 230.42], [-652.48, 227.2], [-653.51, 226.28], [-646.57, 218.45]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-573.83, 375.9], [-553.34, 393.91], [-563.33, 405.21], [-583.84, 387.2], [-573.83, 375.9]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-703.49, 212.77], [-699.25, 208.17], [-698.08, 209.25], [-697.49, 208.62], [-692.14, 213.54], [-688.9, 210.02], [-682.63, 215.78], [-684.59, 217.89], [-681.58, 220.65], [-685.13, 224.48], [-681.36, 227.95], [-685.37, 232.28], [-693.47, 224.84], [-692.46, 223.75], [-695.57, 220.89], [-695.84, 221.18], [-703.26, 214.38], [-702.56, 213.62], [-703.49, 212.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-728.88, 241.07], [-726.11, 238.19], [-724.43, 239.81], [-721.13, 236.39], [-707.7, 249.25], [-714.69, 256.5], [-724.59, 247.04], [-723.66, 246.07], [-728.88, 241.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-593.38, 326.31], [-568.31, 298.84], [-554.21, 311.62], [-540.62, 323.92], [-565.69, 351.39], [-593.38, 326.31]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[-645.2, 236.16], [-642.8, 233.47], [-643.69, 232.7], [-639.54, 228.03], [-639.19, 228.34], [-636.16, 224.93], [-622.45, 237.03], [-629.68, 245.17], [-630.87, 244.11], [-633.2, 246.73], [-645.2, 236.16]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-703.34, 266.38], [-706.79, 263.29], [-705.95, 262.37], [-709.72, 259.0], [-700.23, 248.46], [-696.28, 251.98], [-697.02, 252.8], [-693.74, 255.73], [-703.34, 266.38]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-903.32, 9.08], [-891.28, -3.93], [-891.0, -3.67], [-889.38, -3.85], [-888.73, -3.26], [-888.26, -3.77], [-883.63, 0.47], [-888.88, 6.15], [-888.51, 6.49], [-896.57, 15.2], [-896.93, 14.88], [-898.02, 16.08], [-901.1, 13.25], [-900.04, 12.1], [-903.32, 9.08]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-987.23, -46.75], [-962.94, -74.28], [-960.09, -71.79], [-959.77, -72.16], [-953.59, -66.74], [-953.92, -66.38], [-950.91, -63.74], [-975.2, -36.22], [-987.23, -46.75]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[-941.32, -8.42], [-921.61, -30.53], [-920.03, -29.13], [-916.91, -32.64], [-913.36, -29.5], [-914.38, -28.35], [-905.99, -20.93], [-904.49, -22.62], [-899.2, -17.95], [-902.06, -14.73], [-896.14, -9.51], [-893.73, -12.21], [-891.06, -9.85], [-913.94, 15.81], [-941.32, -8.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-972.94, -32.25], [-957.24, -49.89], [-956.12, -48.91], [-949.4, -56.48], [-937.98, -46.39], [-945.05, -38.45], [-944.22, -37.72], [-954.95, -25.67], [-953.63, -24.51], [-952.75, -23.73], [-957.39, -18.51], [-972.94, -32.25]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1103.03, -51.83], [-1123.63, -50.78], [-1123.72, -52.7], [-1124.76, -73.06], [-1125.33, -83.98], [-1123.45, -84.07], [-1104.82, -85.1], [-1104.24, -74.28], [-1103.03, -51.83]], "holes": []}, "height": 31.5}, {"shape": {"outer": [[-883.24, 17.5], [-875.49, 9.0], [-868.33, 15.47], [-870.93, 18.32], [-870.57, 18.65], [-875.72, 24.31], [-883.24, 17.5]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-890.97, 24.02], [-884.05, 16.8], [-883.9, 16.94], [-880.13, 13.01], [-880.28, 12.87], [-877.61, 10.08], [-883.55, 4.43], [-896.91, 18.37], [-890.97, 24.02]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-853.28, 38.64], [-846.91, 31.5], [-861.43, 18.63], [-862.63, 19.98], [-865.02, 17.86], [-868.88, 22.18], [-866.33, 24.44], [-867.65, 25.91], [-853.28, 38.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-889.36, -38.81], [-866.2, -64.0], [-858.3, -56.8], [-858.79, -56.28], [-853.83, -51.75], [-857.35, -47.91], [-856.72, -47.34], [-872.74, -29.93], [-878.31, -35.0], [-881.45, -31.58], [-889.36, -38.81]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-896.36, -44.75], [-883.75, -58.52], [-877.51, -52.84], [-890.11, -39.08], [-896.36, -44.75]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-822.97, -49.44], [-812.59, -60.55], [-806.36, -54.77], [-808.88, -52.08], [-787.85, -32.56], [-790.7, -29.51], [-788.28, -27.28], [-792.63, -22.63], [-795.04, -24.86], [-795.71, -24.14], [-822.97, -49.44]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-816.2, -21.56], [-809.8, -15.5], [-810.47, -14.81], [-807.7, -12.18], [-807.66, -10.7], [-809.47, -8.8], [-810.77, -8.69], [-813.97, -5.33], [-816.81, -8.01], [-817.44, -7.35], [-825.41, -14.9], [-822.45, -18.01], [-820.94, -16.59], [-816.2, -21.56]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-834.82, 2.41], [-836.42, 4.15], [-832.19, 7.99], [-831.95, 9.78], [-830.15, 11.41], [-827.91, 11.26], [-818.6, 1.11], [-826.29, -5.88], [-830.86, -0.88], [-834.68, -4.34], [-838.11, -0.58], [-834.82, 2.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-856.33, -11.79], [-844.2, -24.99], [-837.78, -19.14], [-841.17, -15.45], [-840.06, -14.43], [-836.23, -18.61], [-829.74, -12.69], [-842.51, 1.2], [-848.39, -4.17], [-847.9, -4.7], [-849.57, -6.22], [-849.86, -5.9], [-856.33, -11.79]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-817.91, -27.32], [-813.92, -31.51], [-808.02, -25.93], [-807.1, -26.9], [-800.26, -20.43], [-805.54, -14.9], [-808.57, -17.77], [-809.31, -17.01], [-813.06, -20.56], [-811.97, -21.7], [-817.91, -27.32]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-788.97, 33.99], [-797.0, 42.47], [-798.13, 41.42], [-800.95, 44.4], [-809.17, 36.66], [-808.17, 35.6], [-810.37, 33.52], [-800.29, 22.88], [-797.39, 25.62], [-799.66, 28.01], [-796.22, 31.25], [-794.18, 29.09], [-788.97, 33.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-852.11, 83.73], [-846.53, 88.85], [-839.43, 95.39], [-814.14, 68.07], [-827.22, 56.05], [-830.19, 59.26], [-829.24, 60.13], [-832.23, 63.37], [-832.79, 62.86], [-836.09, 66.42], [-837.92, 64.74], [-850.13, 77.93], [-848.29, 79.61], [-852.11, 83.73]], "holes": []}, "height": 35.0}, {"shape": {"outer": [[-717.23, 164.11], [-709.86, 156.28], [-706.48, 159.44], [-706.16, 159.11], [-702.91, 162.15], [-703.18, 162.44], [-699.62, 165.77], [-700.02, 166.2], [-698.09, 168.01], [-705.11, 175.46], [-717.23, 164.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-876.34, 102.01], [-864.83, 89.03], [-862.51, 91.08], [-861.29, 89.72], [-850.78, 98.98], [-847.95, 95.77], [-839.89, 102.88], [-849.3, 113.49], [-850.96, 112.02], [-856.54, 118.3], [-859.11, 116.04], [-860.6, 117.73], [-875.33, 104.76], [-874.4, 103.72], [-876.34, 102.01]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-837.94, 136.0], [-823.99, 120.27], [-817.34, 126.12], [-823.42, 132.98], [-823.25, 133.13], [-826.34, 136.6], [-826.51, 136.45], [-831.3, 141.86], [-837.94, 136.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-801.8, 171.83], [-797.4, 175.68], [-799.28, 177.81], [-791.79, 184.35], [-783.19, 174.56], [-785.16, 172.84], [-781.14, 168.28], [-790.65, 159.99], [-794.76, 164.67], [-795.18, 164.3], [-801.8, 171.83]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-773.17, 137.22], [-759.72, 122.89], [-753.43, 128.73], [-766.98, 143.19], [-771.64, 138.86], [-773.17, 137.22]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-817.43, 158.76], [-806.17, 147.01], [-798.41, 154.39], [-810.84, 167.37], [-814.64, 163.77], [-813.45, 162.53], [-817.43, 158.76]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-710.58, 126.63], [-708.97, 124.91], [-697.42, 112.55], [-687.3, 121.94], [-700.47, 136.02], [-710.58, 126.63]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-857.66, 122.97], [-850.98, 129.0], [-847.45, 125.12], [-847.31, 125.25], [-836.05, 112.88], [-842.88, 106.72], [-857.66, 122.97]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-833.05, 148.69], [-816.2, 130.05], [-810.77, 134.93], [-813.29, 137.72], [-809.14, 141.44], [-821.22, 154.81], [-824.82, 151.59], [-827.06, 154.06], [-833.05, 148.69]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-786.03, 126.03], [-778.32, 133.13], [-775.9, 133.02], [-774.37, 132.17], [-760.69, 117.4], [-769.93, 108.9], [-775.52, 114.93], [-774.64, 115.73], [-775.36, 116.51], [-774.29, 117.49], [-779.74, 123.36], [-781.8, 121.46], [-786.03, 126.03]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-849.28, 130.46], [-843.56, 124.32], [-843.35, 124.52], [-840.79, 121.78], [-840.14, 122.38], [-836.32, 118.28], [-835.69, 118.87], [-833.28, 116.28], [-827.5, 121.64], [-842.01, 137.2], [-849.28, 130.46]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-727.25, 176.0], [-725.83, 174.41], [-730.13, 170.59], [-725.77, 165.71], [-724.99, 166.42], [-722.53, 163.68], [-707.88, 176.65], [-712.39, 181.71], [-713.61, 180.63], [-717.82, 185.34], [-719.08, 184.21], [-721.04, 186.41], [-727.88, 180.33], [-725.44, 177.6], [-727.25, 176.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-817.07, 103.83], [-809.27, 95.53], [-810.35, 94.52], [-800.89, 84.45], [-791.94, 92.79], [-809.19, 111.16], [-817.07, 103.83]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-795.25, 109.53], [-790.1, 103.8], [-782.94, 95.83], [-775.69, 102.3], [-783.31, 110.79], [-781.45, 112.45], [-785.41, 116.85], [-786.53, 115.85], [-790.03, 119.74], [-792.92, 117.17], [-790.15, 114.09], [-795.25, 109.53]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-744.96, 189.23], [-739.71, 183.45], [-739.37, 183.76], [-735.09, 179.04], [-727.04, 186.28], [-727.96, 187.29], [-724.46, 190.44], [-727.92, 194.25], [-726.04, 195.94], [-731.3, 201.76], [-736.68, 196.91], [-737.47, 197.78], [-741.35, 194.29], [-740.45, 193.3], [-744.96, 189.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-725.72, 144.12], [-722.13, 147.44], [-721.63, 146.9], [-715.96, 152.13], [-728.26, 165.37], [-732.0, 161.92], [-734.07, 164.16], [-737.98, 160.56], [-736.41, 158.87], [-738.04, 157.37], [-725.72, 144.12]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-746.63, 138.07], [-734.53, 149.16], [-744.02, 159.43], [-742.32, 160.98], [-749.51, 168.77], [-756.63, 162.25], [-755.22, 160.72], [-756.08, 159.94], [-753.66, 157.37], [-756.71, 154.55], [-755.51, 153.25], [-756.46, 152.37], [-754.3, 150.03], [-756.13, 148.35], [-746.63, 138.07]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-783.38, 188.34], [-768.58, 172.46], [-765.91, 174.93], [-763.29, 172.12], [-761.06, 174.19], [-763.67, 177.0], [-760.22, 180.18], [-774.65, 195.66], [-779.32, 191.34], [-779.7, 191.75], [-783.38, 188.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-755.65, 184.26], [-749.87, 189.53], [-752.21, 192.08], [-750.7, 193.45], [-752.08, 194.96], [-745.98, 200.51], [-744.68, 199.08], [-737.08, 205.99], [-738.4, 207.43], [-738.21, 207.61], [-751.23, 221.8], [-761.74, 212.22], [-759.05, 209.3], [-761.05, 207.48], [-758.78, 205.01], [-766.94, 197.59], [-759.31, 189.27], [-758.9, 189.64], [-756.97, 187.52], [-757.88, 186.69], [-755.65, 184.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-516.73, 401.39], [-516.29, 400.91], [-518.63, 398.79], [-513.92, 393.64], [-511.58, 395.76], [-509.56, 393.56], [-497.05, 404.93], [-504.22, 412.76], [-516.73, 401.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-589.62, -5.52], [-586.59, -2.8], [-586.6, -0.39], [-578.77, 6.65], [-588.62, 17.52], [-588.89, 17.28], [-589.46, 17.92], [-593.82, 13.99], [-593.25, 13.37], [-593.95, 12.74], [-592.13, 10.73], [-596.46, 6.86], [-594.18, 4.33], [-596.59, 2.18], [-589.62, -5.52]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-646.91, -8.67], [-645.37, -7.31], [-649.77, -2.35], [-653.7, -5.83], [-654.03, -5.45], [-657.52, -5.66], [-660.89, -8.64], [-661.37, -12.15], [-661.15, -12.4], [-663.43, -14.4], [-660.04, -18.21], [-660.86, -18.93], [-657.65, -22.53], [-659.28, -23.96], [-652.79, -31.25], [-650.81, -29.51], [-637.31, -44.71], [-632.84, -40.76], [-631.65, -42.1], [-627.4, -38.36], [-628.33, -37.29], [-624.49, -33.9], [-646.91, -8.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-597.43, 27.22], [-592.54, 21.99], [-591.6, 22.87], [-589.66, 20.8], [-575.6, 33.86], [-582.43, 41.16], [-597.43, 27.22]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-639.86, -3.67], [-628.76, -15.44], [-632.04, -18.49], [-627.49, -23.33], [-623.9, -19.96], [-618.84, -25.33], [-618.42, -24.94], [-616.69, -26.79], [-613.19, -23.52], [-614.93, -21.67], [-611.38, -18.35], [-615.35, -14.14], [-613.96, -12.83], [-618.62, -7.88], [-619.92, -9.11], [-624.75, -3.99], [-627.06, -6.14], [-634.29, 1.54], [-639.86, -3.67]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-619.51, 207.21], [-616.66, 203.97], [-617.05, 203.63], [-613.49, 199.58], [-612.93, 200.08], [-609.6, 196.29], [-603.28, 201.81], [-613.03, 212.88], [-619.51, 207.21]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-661.78, 29.08], [-652.4, 19.32], [-646.33, 25.12], [-655.72, 34.87], [-655.91, 34.69], [-657.43, 36.27], [-662.94, 31.01], [-661.41, 29.42], [-661.78, 29.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-626.75, 5.95], [-604.96, -17.47], [-592.48, -5.94], [-614.27, 17.49], [-626.75, 5.95]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-606.94, 30.55], [-604.16, 27.48], [-602.88, 28.62], [-600.7, 26.22], [-592.81, 33.3], [-592.64, 33.12], [-587.87, 37.42], [-588.3, 37.89], [-584.99, 40.86], [-590.44, 46.87], [-598.36, 39.74], [-596.77, 38.0], [-603.19, 32.22], [-604.03, 33.16], [-606.94, 30.55]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-654.89, 35.84], [-645.88, 25.85], [-638.96, 32.03], [-648.01, 42.07], [-648.75, 41.4], [-649.93, 42.71], [-655.77, 37.49], [-654.56, 36.13], [-654.89, 35.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-670.52, 22.56], [-660.12, 11.75], [-653.95, 17.64], [-664.34, 28.45], [-670.52, 22.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-583.37, 20.29], [-574.01, 29.03], [-568.61, 23.29], [-567.52, 23.03], [-566.66, 22.29], [-566.24, 21.24], [-566.39, 20.05], [-567.11, 19.07], [-568.22, 18.58], [-575.43, 11.85], [-578.67, 15.29], [-580.16, 13.9], [-583.04, 16.98], [-581.56, 18.37], [-583.37, 20.29]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-644.05, 155.37], [-643.35, 154.63], [-644.96, 153.11], [-634.03, 141.54], [-629.24, 146.02], [-630.86, 147.74], [-625.56, 152.7], [-628.72, 156.06], [-623.25, 161.19], [-623.97, 161.96], [-621.38, 164.38], [-622.21, 165.26], [-620.51, 166.85], [-625.12, 171.76], [-630.08, 167.12], [-630.66, 167.74], [-635.99, 162.74], [-636.57, 163.35], [-638.69, 161.36], [-638.2, 160.85], [-644.05, 155.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-731.06, 31.21], [-728.9, 33.16], [-728.06, 32.24], [-725.8, 34.28], [-727.12, 35.73], [-722.83, 39.62], [-711.99, 27.73], [-720.71, 19.86], [-731.06, 31.21]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-639.71, 189.37], [-645.88, 183.99], [-645.11, 183.12], [-645.37, 182.89], [-636.62, 172.94], [-630.17, 178.57], [-633.27, 182.09], [-631.24, 183.87], [-634.59, 187.68], [-636.64, 185.88], [-639.71, 189.37]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-618.6, 159.87], [-609.53, 149.75], [-602.67, 155.85], [-602.29, 156.19], [-609.52, 164.26], [-608.31, 165.33], [-611.97, 169.42], [-618.8, 163.33], [-616.98, 161.31], [-618.6, 159.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-635.75, 190.89], [-631.13, 185.8], [-631.71, 185.27], [-627.92, 181.11], [-623.36, 185.22], [-622.29, 184.04], [-618.66, 187.3], [-628.15, 197.74], [-635.75, 190.89]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-623.6, 126.9], [-616.77, 119.2], [-615.49, 117.78], [-614.87, 118.32], [-612.57, 115.72], [-609.45, 118.46], [-608.6, 117.5], [-607.58, 118.41], [-606.06, 118.32], [-604.45, 119.7], [-604.5, 121.1], [-600.42, 124.71], [-601.8, 126.25], [-597.64, 129.91], [-595.45, 131.84], [-599.07, 135.94], [-598.02, 136.85], [-601.66, 140.95], [-602.62, 140.11], [-607.68, 135.64], [-608.86, 136.96], [-611.26, 134.85], [-614.12, 135.24], [-623.6, 126.9]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-596.95, 184.16], [-586.71, 193.52], [-580.49, 186.75], [-575.11, 191.66], [-572.67, 189.03], [-571.69, 189.93], [-568.49, 186.47], [-565.57, 183.3], [-560.74, 187.72], [-556.41, 191.69], [-555.48, 191.84], [-554.65, 191.46], [-545.03, 180.48], [-543.04, 182.2], [-541.14, 180.04], [-541.0, 179.3], [-541.11, 178.61], [-541.42, 178.0], [-542.07, 177.39], [-541.29, 176.57], [-557.51, 161.43], [-558.12, 161.17], [-558.84, 161.16], [-559.46, 161.45], [-569.16, 152.52], [-573.64, 157.35], [-573.74, 157.69], [-573.1, 158.27], [-584.54, 170.67], [-584.97, 170.47], [-585.58, 170.59], [-586.09, 170.95], [-586.86, 171.8], [-587.88, 172.93], [-587.14, 173.54], [-588.2, 174.66], [-596.95, 184.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-662.91, 169.38], [-659.73, 165.89], [-660.73, 164.99], [-655.87, 159.63], [-652.85, 159.61], [-650.95, 161.31], [-650.96, 162.68], [-645.47, 167.61], [-648.98, 171.48], [-650.38, 170.23], [-655.57, 175.97], [-662.91, 169.38]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-720.84, 41.97], [-717.28, 38.14], [-717.72, 37.74], [-715.62, 35.48], [-716.11, 35.03], [-712.63, 31.28], [-712.14, 31.75], [-709.44, 28.85], [-705.49, 32.5], [-706.54, 33.63], [-702.54, 37.33], [-702.34, 39.64], [-708.38, 46.11], [-710.29, 44.34], [-713.97, 48.31], [-720.84, 41.97]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-628.29, 199.14], [-615.72, 185.72], [-613.68, 187.63], [-612.97, 186.86], [-608.25, 191.26], [-621.52, 205.43], [-628.29, 199.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-700.42, 64.57], [-695.1, 58.96], [-696.68, 57.47], [-692.87, 53.45], [-691.3, 54.93], [-684.95, 48.21], [-676.37, 56.27], [-678.22, 58.22], [-677.53, 58.87], [-691.16, 73.27], [-700.42, 64.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-543.04, 246.36], [-535.56, 238.36], [-517.19, 255.4], [-524.67, 263.4], [-543.04, 246.36]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-649.01, 85.92], [-643.97, 80.29], [-631.67, 91.2], [-636.71, 96.83], [-649.01, 85.92]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-684.15, 119.71], [-675.15, 110.19], [-661.18, 123.29], [-661.47, 123.59], [-659.31, 125.61], [-666.81, 133.54], [-668.81, 131.67], [-670.04, 132.96], [-684.15, 119.71]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-669.16, 108.29], [-663.87, 102.77], [-650.2, 115.81], [-655.39, 121.22], [-657.17, 119.52], [-657.62, 120.0], [-667.02, 111.03], [-666.67, 110.67], [-669.16, 108.29]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-657.91, 91.54], [-653.63, 87.08], [-648.45, 92.01], [-647.51, 91.03], [-644.23, 94.14], [-643.64, 93.52], [-641.61, 95.45], [-642.11, 95.97], [-638.71, 99.21], [-641.32, 101.93], [-640.41, 102.81], [-642.34, 104.82], [-643.25, 103.94], [-644.04, 104.75], [-657.91, 91.54]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-558.2, 260.87], [-547.79, 249.74], [-530.98, 265.34], [-541.4, 276.47], [-558.2, 260.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-721.49, 102.34], [-710.01, 90.07], [-700.13, 99.25], [-715.17, 115.32], [-722.09, 108.89], [-724.95, 111.94], [-728.07, 109.04], [-727.08, 107.97], [-729.19, 106.01], [-723.76, 100.21], [-721.49, 102.34]], "holes": []}, "height": 31.5}, {"shape": {"outer": [[-764.04, 69.16], [-751.06, 55.97], [-745.22, 61.67], [-758.38, 75.05], [-760.86, 72.62], [-761.77, 73.54], [-763.69, 71.68], [-762.6, 70.57], [-764.04, 69.16]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-749.54, 85.29], [-738.98, 73.59], [-745.43, 67.81], [-755.99, 79.5], [-749.54, 85.29]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-537.18, 277.13], [-528.17, 267.66], [-519.1, 276.22], [-528.11, 285.7], [-537.18, 277.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-663.95, 99.15], [-659.69, 94.79], [-657.1, 97.28], [-656.06, 96.22], [-653.92, 98.3], [-653.13, 97.49], [-650.11, 100.4], [-650.73, 101.04], [-645.25, 106.36], [-650.72, 111.97], [-663.95, 99.15]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-749.41, 87.28], [-748.28, 86.05], [-748.53, 85.81], [-742.29, 79.1], [-742.75, 78.68], [-735.4, 70.76], [-732.28, 73.62], [-730.46, 71.66], [-725.87, 75.88], [-727.7, 77.84], [-727.26, 78.24], [-741.98, 94.12], [-749.41, 87.28]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-773.19, 61.98], [-767.24, 67.42], [-766.19, 66.28], [-765.52, 66.89], [-754.91, 55.36], [-761.67, 49.2], [-772.28, 60.73], [-772.15, 60.85], [-773.19, 61.98]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-684.14, 73.52], [-677.25, 66.0], [-673.81, 69.12], [-670.68, 65.7], [-664.69, 71.15], [-670.41, 77.4], [-667.7, 79.86], [-672.01, 84.57], [-684.14, 73.52]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-741.47, -230.88], [-713.66, -205.86], [-691.51, -230.31], [-719.32, -255.33], [-741.47, -230.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-654.11, -204.84], [-639.79, -191.92], [-694.36, -131.86], [-705.68, -142.06], [-691.25, -157.94], [-694.75, -161.1], [-664.51, -194.39], [-664.01, -193.94], [-654.11, -204.84]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-806.75, -238.26], [-802.08, -243.4], [-799.38, -240.96], [-798.48, -241.97], [-792.7, -236.74], [-793.6, -235.75], [-788.52, -231.15], [-787.52, -232.24], [-781.66, -226.95], [-782.66, -225.86], [-779.85, -223.33], [-784.46, -218.27], [-787.42, -220.95], [-789.82, -218.32], [-795.68, -223.61], [-793.28, -226.24], [-798.48, -230.94], [-800.97, -228.19], [-806.57, -233.23], [-804.14, -235.91], [-806.75, -238.26]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-603.93, -110.6], [-598.96, -110.8], [-593.99, -111.01], [-592.8, -92.67], [-592.55, -89.39], [-564.54, -64.65], [-589.28, -37.65], [-619.71, -64.62], [-602.78, -83.58], [-603.0, -88.74], [-603.93, -110.6]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1167.67, -394.09], [-1113.14, -396.74], [-1112.39, -381.51], [-1150.83, -379.65], [-1150.29, -368.75], [-1149.61, -354.68], [-1165.71, -353.9], [-1167.67, -394.09]], "holes": []}, "height": 28.0}, {"shape": {"outer": [[-867.68, -510.37], [-858.63, -519.92], [-852.92, -514.56], [-855.58, -511.76], [-855.11, -511.33], [-858.59, -507.66], [-859.05, -508.09], [-861.98, -505.0], [-867.68, -510.37]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-834.55, -335.34], [-819.7, -351.5], [-817.89, -351.6], [-816.13, -350.0], [-816.14, -348.39], [-816.03, -348.28], [-814.51, -348.38], [-812.73, -346.76], [-812.69, -345.09], [-812.56, -344.98], [-810.79, -345.07], [-809.14, -343.57], [-809.07, -341.89], [-808.98, -341.81], [-807.31, -341.9], [-805.59, -340.33], [-805.56, -338.72], [-805.29, -338.48], [-803.84, -338.51], [-802.14, -336.97], [-802.03, -335.42], [-801.84, -335.25], [-800.3, -335.28], [-798.56, -333.69], [-798.53, -330.17], [-800.02, -328.54], [-801.44, -328.53], [-802.97, -326.88], [-796.93, -321.37], [-796.98, -319.42], [-798.08, -318.21], [-799.87, -318.13], [-804.16, -313.45], [-803.99, -311.89], [-805.25, -310.51], [-807.26, -310.46], [-834.55, -335.34]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1059.4, -340.63], [-1059.57, -345.29], [-1060.92, -345.24], [-1061.07, -349.21], [-1056.88, -349.36], [-1056.93, -350.55], [-1046.76, -350.94], [-1046.59, -346.48], [-1045.67, -345.66], [-1045.55, -343.58], [-1046.43, -342.65], [-1046.37, -341.13], [-1059.4, -340.63]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1207.17, -230.61], [-1203.47, -230.77], [-1203.5, -231.34], [-1194.39, -231.74], [-1194.37, -231.23], [-1187.67, -231.52], [-1187.3, -223.0], [-1205.16, -222.22], [-1205.3, -225.34], [-1206.93, -225.26], [-1207.17, -230.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1238.2, -231.34], [-1229.53, -231.85], [-1229.67, -234.19], [-1223.09, -234.58], [-1222.28, -220.86], [-1237.48, -219.91], [-1238.2, -231.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1203.79, -140.3], [-1184.5, -141.22], [-1183.81, -141.25], [-1181.46, -141.36], [-1181.19, -135.58], [-1180.96, -130.86], [-1183.11, -130.75], [-1183.07, -129.93], [-1203.24, -128.98], [-1203.79, -140.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1265.3, -127.41], [-1265.52, -130.98], [-1261.59, -131.21], [-1261.95, -137.33], [-1292.04, -135.53], [-1291.91, -133.36], [-1291.42, -125.25], [-1282.31, -125.8], [-1280.34, -124.09], [-1265.18, -125.0], [-1265.3, -127.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1297.28, -221.93], [-1297.47, -225.83], [-1297.62, -229.05], [-1296.75, -229.08], [-1296.79, -230.16], [-1296.85, -231.17], [-1297.79, -231.12], [-1297.99, -235.11], [-1299.04, -257.05], [-1296.34, -257.18], [-1293.58, -257.32], [-1293.54, -256.4], [-1292.14, -256.46], [-1290.91, -256.52], [-1290.95, -257.44], [-1285.61, -257.69], [-1285.57, -256.77], [-1283.12, -256.88], [-1281.86, -229.49], [-1281.56, -223.33], [-1282.95, -223.27], [-1282.91, -222.61], [-1297.28, -221.93]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1105.39, -229.31], [-1100.08, -235.3], [-1098.92, -235.03], [-1096.9, -237.31], [-1092.08, -242.76], [-1083.78, -235.45], [-1090.82, -227.41], [-1090.42, -226.19], [-1095.46, -220.54], [-1105.39, -229.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1258.17, -123.97], [-1258.28, -126.76], [-1258.64, -126.74], [-1258.91, -133.35], [-1254.8, -133.51], [-1254.92, -136.23], [-1249.88, -136.43], [-1249.9, -136.78], [-1243.99, -137.03], [-1243.75, -132.26], [-1242.57, -132.31], [-1242.53, -131.46], [-1242.14, -123.42], [-1242.51, -123.41], [-1249.4, -123.15], [-1249.44, -124.06], [-1253.41, -123.9], [-1253.43, -124.17], [-1258.17, -123.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1265.3, -127.41], [-1261.83, -127.57], [-1261.45, -119.72], [-1252.7, -120.14], [-1252.75, -121.35], [-1251.24, -121.43], [-1251.18, -120.23], [-1242.38, -120.65], [-1238.82, -120.82], [-1238.74, -119.12], [-1238.64, -117.48], [-1238.42, -112.87], [-1237.9, -102.02], [-1237.72, -98.02], [-1242.53, -97.79], [-1263.82, -96.78], [-1264.73, -116.26], [-1264.97, -120.62], [-1265.18, -125.0], [-1265.3, -127.41]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1270.96, -229.99], [-1272.27, -258.62], [-1269.1, -258.48], [-1268.13, -258.21], [-1264.92, -255.42], [-1261.4, -252.37], [-1260.3, -252.08], [-1259.33, -252.32], [-1258.05, -253.44], [-1252.52, -258.94], [-1246.09, -259.23], [-1244.08, -219.44], [-1270.05, -218.04], [-1275.34, -222.84], [-1270.88, -226.51], [-1270.96, -229.99]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1289.89, -95.54], [-1288.73, -95.59], [-1281.95, -95.92], [-1275.86, -96.2], [-1274.05, -96.29], [-1275.21, -120.12], [-1283.11, -119.73], [-1291.04, -119.34], [-1289.89, -95.54]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1232.76, -122.72], [-1228.69, -122.93], [-1224.08, -123.16], [-1219.58, -123.39], [-1219.05, -112.26], [-1219.29, -112.25], [-1218.91, -104.2], [-1218.66, -98.96], [-1222.18, -98.78], [-1222.86, -98.75], [-1226.95, -98.55], [-1227.47, -98.52], [-1228.1, -98.49], [-1231.54, -98.32], [-1232.76, -122.72]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1051.48, -219.08], [-1045.35, -213.49], [-1044.62, -214.29], [-1045.7, -215.27], [-1042.33, -218.95], [-1038.93, -215.85], [-1042.29, -212.19], [-1043.28, -213.09], [-1044.04, -212.26], [-1037.89, -206.66], [-1057.29, -185.51], [-1070.87, -197.88], [-1064.74, -204.57], [-1063.43, -203.37], [-1055.73, -211.77], [-1057.06, -212.99], [-1055.16, -215.07], [-1051.48, -219.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-994.44, -132.8], [-975.52, -154.04], [-964.9, -144.66], [-963.48, -146.25], [-961.19, -144.22], [-959.58, -146.03], [-956.84, -143.61], [-979.04, -118.78], [-982.38, -118.7], [-999.08, -133.37], [-997.32, -135.35], [-994.44, -132.8]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1028.92, -161.22], [-1009.51, -182.46], [-994.38, -168.73], [-1013.78, -147.5], [-1019.57, -152.75], [-1019.94, -152.35], [-1023.39, -155.48], [-1023.03, -155.88], [-1028.92, -161.22]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[-1038.65, -172.17], [-1035.49, -175.63], [-1036.0, -176.09], [-1029.38, -183.36], [-1022.79, -177.41], [-1032.54, -166.65], [-1038.65, -172.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1009.08, -142.37], [-991.25, -162.03], [-985.6, -156.94], [-1003.29, -137.09], [-1009.08, -142.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1126.51, -248.23], [-1110.15, -266.77], [-1105.03, -267.05], [-1104.17, -266.3], [-1101.44, -263.91], [-1100.67, -263.24], [-1098.61, -265.58], [-1094.36, -261.85], [-1115.16, -238.29], [-1120.94, -243.34], [-1126.51, -248.23]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1157.06, -213.14], [-1141.16, -230.91], [-1139.48, -232.78], [-1133.41, -227.39], [-1145.83, -213.51], [-1150.99, -207.74], [-1157.06, -213.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1114.25, -236.93], [-1093.19, -260.4], [-1087.42, -255.24], [-1095.73, -245.98], [-1100.6, -240.56], [-1108.47, -231.79], [-1109.7, -232.88], [-1114.25, -236.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-974.69, -166.66], [-956.41, -186.68], [-943.67, -175.12], [-944.92, -173.75], [-939.47, -168.81], [-947.16, -160.39], [-944.06, -157.58], [-953.4, -147.35], [-974.69, -166.66]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1132.42, -225.56], [-1130.52, -225.25], [-1128.25, -223.31], [-1128.19, -222.15], [-1126.22, -220.02], [-1125.18, -219.92], [-1123.0, -217.83], [-1122.88, -216.28], [-1134.51, -203.41], [-1135.87, -204.54], [-1144.4, -212.23], [-1132.42, -225.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1082.14, -147.33], [-1065.5, -165.92], [-1060.61, -161.59], [-1074.34, -146.23], [-1080.81, -146.15], [-1082.14, -147.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1017.4, -206.54], [-994.16, -232.68], [-982.89, -222.73], [-992.96, -211.4], [-982.36, -202.04], [-972.41, -213.24], [-960.86, -203.05], [-983.97, -177.04], [-1017.4, -206.54]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[-1144.19, -182.73], [-1144.48, -188.92], [-1144.63, -192.21], [-1134.51, -203.41], [-1122.88, -216.28], [-1103.66, -199.03], [-1129.94, -169.95], [-1140.95, -179.82], [-1144.19, -182.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-937.01, -220.3], [-936.58, -220.8], [-935.23, -219.66], [-933.6, -221.56], [-933.19, -221.22], [-926.19, -229.43], [-916.57, -240.7], [-930.74, -252.71], [-932.18, -251.02], [-935.98, -254.25], [-934.56, -255.9], [-948.18, -267.44], [-951.24, -263.85], [-964.73, -248.04], [-964.24, -247.63], [-965.98, -245.59], [-964.51, -244.34], [-964.83, -243.98], [-961.22, -240.93], [-953.54, -234.42], [-952.65, -233.67], [-951.44, -235.09], [-949.66, -233.57], [-947.82, -232.02], [-949.09, -230.53], [-945.85, -227.79], [-939.79, -222.65], [-937.01, -220.3]], "holes": []}, "height": 31.5}, {"shape": {"outer": [[-674.94, -781.66], [-669.5, -787.47], [-656.95, -775.8], [-662.4, -769.99], [-674.94, -781.66]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-632.52, -837.2], [-620.11, -850.37], [-613.75, -844.41], [-626.16, -831.24], [-632.52, -837.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-697.2, -848.61], [-688.92, -857.15], [-688.71, -856.96], [-687.42, -858.3], [-683.31, -854.36], [-685.44, -852.16], [-682.56, -849.4], [-687.98, -843.82], [-690.52, -846.27], [-692.57, -844.17], [-697.2, -848.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-658.69, -795.45], [-653.28, -801.36], [-642.72, -791.76], [-647.85, -786.15], [-650.94, -788.97], [-651.22, -788.66], [-658.69, -795.45]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-690.4, -896.29], [-685.19, -901.88], [-686.03, -902.66], [-679.13, -910.06], [-674.12, -905.42], [-677.32, -901.99], [-675.92, -900.68], [-681.96, -894.18], [-682.82, -894.98], [-685.67, -891.92], [-690.4, -896.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-689.26, -783.19], [-683.74, -778.19], [-685.61, -776.13], [-685.05, -775.61], [-696.69, -762.85], [-702.79, -768.36], [-689.26, -783.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-695.78, -832.95], [-681.4, -848.37], [-676.81, -844.13], [-682.18, -838.36], [-681.26, -837.51], [-690.27, -827.85], [-695.78, -832.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-708.37, -909.51], [-698.78, -919.64], [-698.36, -919.24], [-696.45, -921.26], [-692.58, -917.62], [-694.5, -915.61], [-692.93, -914.13], [-702.52, -904.01], [-708.37, -909.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-668.36, -789.56], [-663.08, -795.28], [-660.03, -792.48], [-659.13, -793.46], [-650.08, -785.14], [-655.56, -779.2], [-660.27, -783.52], [-660.41, -783.37], [-663.61, -786.33], [-664.18, -785.71], [-668.36, -789.56]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-695.03, -760.96], [-683.24, -773.82], [-681.4, -772.15], [-680.3, -773.35], [-676.57, -769.97], [-689.47, -755.89], [-695.03, -760.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-667.7, -876.15], [-651.12, -893.97], [-640.17, -883.85], [-656.75, -866.03], [-667.7, -876.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-643.99, -807.86], [-638.85, -813.44], [-630.99, -806.23], [-632.05, -805.08], [-630.63, -803.77], [-633.79, -800.35], [-635.35, -801.77], [-636.27, -800.78], [-638.13, -802.49], [-638.5, -802.09], [-641.2, -804.56], [-640.83, -804.96], [-643.99, -807.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-690.54, -822.77], [-673.18, -841.46], [-663.27, -832.32], [-680.62, -813.63], [-690.54, -822.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-647.67, -809.02], [-649.86, -806.63], [-649.33, -806.13], [-653.29, -801.82], [-642.6, -792.07], [-636.8, -798.4], [-639.63, -800.97], [-639.27, -801.37], [-647.67, -809.02]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-744.65, -867.63], [-734.05, -879.05], [-732.91, -877.99], [-731.25, -879.79], [-732.59, -881.02], [-725.9, -888.23], [-723.19, -885.73], [-722.12, -886.88], [-717.67, -882.77], [-718.81, -881.54], [-717.46, -880.3], [-716.33, -881.52], [-709.38, -875.12], [-710.42, -874.0], [-708.25, -872.01], [-707.15, -873.19], [-700.48, -867.05], [-701.57, -865.87], [-700.14, -864.56], [-699.03, -865.76], [-694.71, -861.79], [-695.78, -860.64], [-693.03, -858.09], [-699.61, -851.0], [-700.7, -852.0], [-702.36, -850.21], [-701.22, -849.15], [-711.85, -837.7], [-714.43, -840.08], [-715.47, -838.95], [-723.07, -845.94], [-716.67, -852.84], [-719.39, -855.34], [-717.24, -857.67], [-718.11, -858.47], [-720.31, -856.09], [-724.32, -859.78], [-723.17, -861.02], [-725.23, -862.91], [-726.39, -861.65], [-729.03, -864.09], [-735.48, -857.13], [-743.0, -864.06], [-741.97, -865.18], [-744.65, -867.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-757.23, -914.81], [-766.65, -904.56], [-765.48, -903.5], [-768.26, -900.47], [-763.95, -896.54], [-760.1, -900.74], [-759.43, -900.13], [-756.57, -903.25], [-756.86, -903.52], [-754.18, -906.43], [-754.63, -906.85], [-751.83, -909.89], [-752.61, -910.6], [-750.82, -912.55], [-753.34, -914.85], [-755.13, -912.91], [-757.23, -914.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-538.88, -926.88], [-533.38, -932.69], [-524.3, -924.17], [-524.53, -923.93], [-522.33, -921.87], [-527.21, -916.72], [-529.4, -918.78], [-529.8, -918.36], [-538.88, -926.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-664.93, -817.49], [-662.32, -820.34], [-663.65, -821.55], [-657.82, -827.9], [-657.41, -827.52], [-656.44, -828.58], [-652.03, -824.57], [-653.0, -823.51], [-652.69, -823.23], [-658.59, -816.8], [-658.71, -816.92], [-661.26, -814.15], [-664.93, -817.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-765.3, -892.02], [-758.2, -899.55], [-757.88, -899.23], [-749.21, -908.43], [-743.52, -903.11], [-759.28, -886.39], [-765.3, -892.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-756.5, -884.4], [-740.07, -902.48], [-729.09, -892.55], [-745.53, -874.49], [-756.5, -884.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-593.13, -868.02], [-575.6, -887.26], [-565.02, -877.69], [-582.55, -858.45], [-593.13, -868.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-662.24, -810.69], [-653.76, -819.98], [-653.35, -819.6], [-650.42, -822.82], [-644.73, -817.65], [-656.14, -805.16], [-662.24, -810.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-687.85, -753.19], [-686.47, -754.72], [-686.66, -754.88], [-674.41, -768.47], [-673.4, -767.57], [-672.48, -768.59], [-667.81, -764.4], [-668.18, -763.99], [-666.7, -762.67], [-679.52, -748.47], [-681.66, -750.4], [-683.03, -748.89], [-687.85, -753.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-621.27, -829.46], [-610.27, -841.4], [-601.53, -833.4], [-612.53, -821.47], [-621.27, -829.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-644.44, -856.06], [-628.22, -873.63], [-616.04, -862.46], [-632.25, -844.9], [-637.11, -849.36], [-637.6, -848.82], [-642.12, -852.97], [-641.63, -853.5], [-644.44, -856.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-681.31, -890.11], [-664.31, -908.51], [-654.63, -899.64], [-671.64, -881.24], [-681.31, -890.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-776.86, -910.67], [-772.54, -915.31], [-772.93, -915.68], [-768.54, -920.39], [-768.14, -920.03], [-765.41, -922.96], [-764.98, -922.57], [-763.65, -924.0], [-758.14, -918.89], [-759.46, -917.46], [-759.19, -917.2], [-770.65, -904.92], [-776.86, -910.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-653.81, -863.17], [-647.67, -869.81], [-647.47, -869.63], [-645.64, -871.6], [-641.57, -867.87], [-643.38, -865.92], [-641.53, -864.22], [-647.71, -857.55], [-653.81, -863.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-666.67, -968.19], [-665.01, -966.63], [-662.74, -969.02], [-658.95, -965.47], [-666.86, -957.11], [-670.91, -960.91], [-669.26, -962.66], [-670.65, -963.97], [-666.67, -968.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-666.62, -924.58], [-662.91, -928.72], [-658.76, -925.02], [-662.47, -920.88], [-666.62, -924.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-697.15, -951.95], [-691.81, -957.88], [-685.95, -952.64], [-691.29, -946.71], [-697.15, -951.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-668.3, -954.85], [-657.27, -966.58], [-652.28, -961.92], [-656.56, -957.36], [-655.66, -956.52], [-659.23, -952.73], [-658.16, -951.73], [-661.33, -948.34], [-663.07, -949.96], [-664.82, -948.09], [-667.95, -951.01], [-667.18, -951.85], [-668.16, -952.76], [-667.18, -953.8], [-668.3, -954.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-596.57, -882.03], [-583.88, -895.9], [-577.36, -889.97], [-590.06, -876.12], [-596.57, -882.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-693.08, -972.41], [-682.36, -984.29], [-676.36, -978.92], [-687.09, -967.04], [-693.08, -972.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-688.4, -928.03], [-683.0, -923.52], [-678.11, -929.33], [-680.97, -931.71], [-679.48, -933.48], [-683.86, -937.14], [-689.41, -930.55], [-687.58, -929.02], [-688.4, -928.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-637.41, -908.41], [-620.42, -926.85], [-610.4, -917.69], [-627.4, -899.25], [-637.41, -908.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-697.22, -982.12], [-685.93, -994.35], [-684.24, -992.8], [-684.5, -992.51], [-681.49, -989.75], [-682.86, -988.27], [-681.73, -987.23], [-691.38, -976.78], [-697.22, -982.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-682.33, -968.68], [-671.14, -980.33], [-666.26, -975.67], [-677.45, -964.01], [-682.33, -968.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-655.32, -935.62], [-651.74, -939.52], [-652.4, -940.11], [-648.03, -944.86], [-647.38, -944.26], [-644.49, -947.41], [-644.2, -947.17], [-642.69, -948.82], [-637.72, -944.29], [-639.25, -942.64], [-638.7, -942.13], [-645.5, -934.72], [-646.32, -935.47], [-649.12, -932.42], [-651.43, -934.52], [-652.66, -933.19], [-655.32, -935.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-804.27, -939.77], [-797.35, -947.56], [-793.71, -944.34], [-787.63, -951.17], [-776.59, -941.41], [-789.58, -926.81], [-804.27, -939.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-605.38, -856.26], [-599.95, -862.15], [-588.58, -851.75], [-594.01, -845.86], [-605.38, -856.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-673.06, -929.99], [-672.85, -930.21], [-674.73, -931.87], [-671.27, -935.78], [-669.39, -934.12], [-669.1, -934.45], [-664.01, -929.97], [-667.98, -925.52], [-673.06, -929.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-784.24, -845.69], [-763.54, -868.5], [-761.77, -866.91], [-760.14, -868.7], [-756.23, -865.19], [-756.89, -864.46], [-753.52, -861.42], [-757.88, -856.61], [-756.23, -855.13], [-755.19, -856.29], [-746.6, -848.55], [-747.75, -847.28], [-742.65, -842.69], [-741.6, -843.86], [-733.01, -836.11], [-734.02, -835.0], [-732.46, -833.6], [-728.06, -838.45], [-724.5, -835.24], [-724.05, -835.74], [-720.22, -832.3], [-721.8, -830.55], [-719.86, -828.81], [-740.53, -806.03], [-742.33, -807.66], [-743.84, -806.0], [-748.38, -810.09], [-747.9, -810.62], [-750.34, -812.82], [-746.13, -817.45], [-747.38, -818.57], [-748.23, -817.64], [-756.34, -824.94], [-755.59, -825.76], [-757.78, -827.74], [-756.51, -829.13], [-759.79, -832.08], [-761.08, -830.67], [-763.45, -832.8], [-764.2, -831.98], [-772.11, -839.1], [-771.26, -840.05], [-772.64, -841.3], [-776.72, -836.79], [-779.37, -839.18], [-779.93, -838.58], [-784.08, -842.31], [-782.46, -844.09], [-784.24, -845.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-652.04, -954.37], [-651.71, -954.07], [-650.18, -955.74], [-646.49, -952.37], [-648.02, -950.7], [-647.74, -950.45], [-652.67, -945.09], [-651.84, -944.33], [-655.45, -940.4], [-660.58, -945.08], [-652.04, -954.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-702.89, -991.44], [-693.46, -1001.31], [-687.4, -995.56], [-695.62, -986.95], [-695.89, -987.21], [-696.68, -986.38], [-698.91, -988.5], [-699.32, -988.06], [-702.89, -991.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-668.9, -943.23], [-672.6, -939.22], [-669.48, -936.35], [-665.77, -940.36], [-668.9, -943.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-613.68, -848.13], [-607.63, -854.68], [-594.95, -843.05], [-601.01, -836.49], [-613.68, -848.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-656.14, -922.52], [-644.73, -934.87], [-630.27, -921.61], [-641.68, -909.26], [-656.14, -922.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-624.48, -897.61], [-613.04, -910.07], [-591.94, -890.83], [-603.38, -878.36], [-624.48, -897.61]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-705.4, -985.98], [-703.05, -988.59], [-700.63, -986.43], [-698.96, -988.29], [-695.79, -985.44], [-699.81, -980.97], [-705.4, -985.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-711.75, -978.73], [-711.34, -979.17], [-712.29, -980.01], [-708.62, -984.11], [-707.68, -983.27], [-707.33, -983.66], [-697.67, -975.07], [-698.0, -974.71], [-695.92, -972.87], [-700.01, -968.29], [-711.75, -978.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-718.92, -972.12], [-715.24, -976.22], [-702.41, -964.77], [-702.64, -964.52], [-701.34, -963.37], [-703.74, -960.7], [-705.03, -961.85], [-706.09, -960.67], [-718.92, -972.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-614.31, -962.4], [-597.58, -980.67], [-588.21, -972.13], [-604.92, -953.88], [-614.31, -962.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-638.69, -985.16], [-632.08, -992.33], [-625.42, -986.24], [-632.3, -978.77], [-632.94, -979.35], [-634.5, -977.65], [-639.7, -982.42], [-637.87, -984.4], [-638.69, -985.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-511.03, -943.91], [-507.67, -948.96], [-502.5, -945.55], [-505.86, -940.5], [-511.03, -943.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-561.74, -973.22], [-557.17, -978.11], [-553.96, -975.12], [-558.54, -970.23], [-561.74, -973.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-665.13, -1035.69], [-649.24, -1053.12], [-637.13, -1042.16], [-629.16, -1035.39], [-626.2, -1032.43], [-621.36, -1037.04], [-611.82, -1028.31], [-620.04, -1018.62], [-633.28, -1022.21], [-645.46, -1026.1], [-665.13, -1035.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-567.41, -840.32], [-563.97, -844.08], [-563.28, -843.45], [-561.19, -845.73], [-547.43, -833.27], [-551.69, -828.61], [-554.31, -830.97], [-555.16, -830.04], [-555.84, -830.66], [-556.96, -829.43], [-560.18, -832.36], [-559.9, -832.66], [-563.46, -835.9], [-563.29, -836.09], [-566.75, -839.21], [-566.49, -839.49], [-567.41, -840.32]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-557.21, -846.49], [-552.41, -851.73], [-551.49, -850.89], [-549.08, -853.5], [-546.2, -850.88], [-543.71, -853.59], [-540.84, -850.97], [-537.43, -854.67], [-534.95, -852.39], [-534.04, -853.38], [-528.21, -848.05], [-528.07, -848.21], [-527.34, -847.55], [-527.18, -847.73], [-525.46, -847.09], [-524.72, -845.49], [-524.89, -845.31], [-523.77, -844.3], [-523.92, -844.15], [-522.39, -842.76], [-522.2, -842.96], [-521.37, -842.21], [-521.23, -842.36], [-519.49, -841.77], [-518.76, -840.09], [-518.89, -839.94], [-518.09, -839.21], [-518.28, -838.99], [-511.58, -832.88], [-514.44, -829.79], [-513.17, -828.64], [-518.6, -822.74], [-519.69, -823.74], [-536.95, -804.96], [-541.15, -808.79], [-541.89, -807.99], [-547.9, -813.47], [-548.93, -812.34], [-555.19, -818.05], [-553.4, -819.99], [-553.72, -820.28], [-546.72, -827.9], [-545.02, -826.35], [-540.52, -831.26], [-557.21, -846.49]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-593.06, -945.39], [-584.17, -955.34], [-582.81, -954.14], [-580.02, -957.25], [-575.1, -952.88], [-581.16, -946.09], [-580.88, -945.85], [-584.02, -942.33], [-584.3, -942.58], [-587.79, -938.68], [-592.23, -942.61], [-591.22, -943.75], [-593.06, -945.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-648.82, -992.62], [-641.82, -1000.34], [-639.19, -997.97], [-637.07, -1000.31], [-633.66, -997.24], [-636.27, -994.35], [-636.77, -994.79], [-643.26, -987.62], [-648.82, -992.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-556.15, -908.66], [-555.54, -909.32], [-557.3, -910.93], [-550.83, -917.95], [-549.07, -916.33], [-548.38, -917.08], [-536.16, -905.91], [-543.93, -897.48], [-556.15, -908.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-567.5, -941.9], [-557.62, -954.12], [-549.46, -963.48], [-541.28, -961.49], [-529.11, -950.49], [-548.49, -929.21], [-549.74, -930.34], [-551.29, -930.45], [-556.26, -930.66], [-559.08, -933.89], [-567.5, -941.9]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[-585.84, -939.11], [-583.05, -942.01], [-582.57, -941.54], [-576.28, -948.07], [-576.78, -948.54], [-570.24, -955.33], [-565.79, -951.09], [-569.12, -947.63], [-567.83, -946.54], [-571.9, -941.42], [-571.35, -941.02], [-574.88, -937.03], [-575.27, -937.43], [-578.56, -933.92], [-579.19, -934.46], [-580.04, -933.58], [-585.84, -939.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-612.38, -985.18], [-608.51, -989.06], [-605.88, -986.45], [-609.74, -982.57], [-612.38, -985.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-551.87, -967.82], [-547.63, -973.74], [-542.34, -969.97], [-546.59, -964.06], [-551.87, -967.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-599.38, -948.41], [-592.75, -955.94], [-591.95, -955.25], [-588.31, -959.38], [-584.73, -956.26], [-595.01, -944.59], [-599.38, -948.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-532.73, -938.38], [-526.17, -945.5], [-525.92, -945.27], [-525.01, -946.25], [-521.25, -942.82], [-522.16, -941.83], [-517.93, -937.97], [-516.38, -939.66], [-511.83, -935.5], [-511.67, -932.18], [-513.96, -929.7], [-514.16, -929.87], [-518.18, -925.51], [-523.4, -930.29], [-523.62, -930.05], [-532.73, -938.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-631.04, -977.79], [-624.28, -985.06], [-618.24, -979.48], [-624.99, -972.22], [-625.26, -972.46], [-626.96, -970.63], [-632.19, -975.45], [-630.48, -977.29], [-631.04, -977.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-547.16, -919.06], [-545.5, -920.89], [-546.66, -921.92], [-543.66, -925.24], [-542.51, -924.21], [-541.56, -925.26], [-530.46, -915.32], [-530.8, -914.94], [-529.65, -913.91], [-534.23, -908.82], [-535.39, -909.85], [-536.05, -909.11], [-547.16, -919.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-624.86, -968.62], [-623.07, -970.57], [-623.4, -970.88], [-616.74, -978.15], [-610.94, -972.88], [-619.37, -963.64], [-624.86, -968.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-421.05, -783.81], [-418.79, -786.3], [-419.11, -786.59], [-415.84, -790.18], [-415.52, -789.89], [-413.79, -791.81], [-414.12, -792.11], [-410.87, -795.69], [-410.53, -795.39], [-408.32, -797.83], [-398.76, -789.22], [-411.48, -775.2], [-421.05, -783.81]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-451.83, -831.07], [-442.51, -841.44], [-441.32, -840.37], [-436.55, -845.68], [-432.74, -842.29], [-438.52, -835.85], [-437.67, -835.1], [-441.74, -830.57], [-442.77, -831.49], [-447.01, -826.76], [-451.83, -831.07]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-409.4, -834.25], [-403.34, -840.98], [-396.35, -834.73], [-397.25, -833.71], [-391.58, -828.64], [-397.6, -821.95], [-398.85, -823.05], [-400.34, -821.41], [-403.88, -824.58], [-402.33, -826.29], [-403.84, -827.64], [-404.45, -826.96], [-407.42, -829.61], [-405.98, -831.2], [-409.4, -834.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-446.43, -812.28], [-436.2, -823.59], [-429.36, -817.46], [-441.25, -804.3], [-447.76, -810.13], [-446.09, -811.97], [-446.43, -812.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-403.44, -780.05], [-397.22, -786.94], [-385.11, -776.09], [-391.34, -769.2], [-403.44, -780.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-492.14, -890.51], [-488.0, -886.78], [-485.65, -889.37], [-482.62, -886.64], [-484.98, -884.05], [-480.94, -880.4], [-485.12, -875.82], [-486.27, -876.86], [-495.93, -866.25], [-494.96, -865.37], [-499.37, -860.53], [-510.19, -870.31], [-505.73, -875.21], [-504.44, -874.03], [-494.77, -884.66], [-496.25, -885.99], [-492.14, -890.51]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-371.18, -812.38], [-361.39, -803.72], [-364.43, -800.31], [-363.61, -799.58], [-369.6, -792.87], [-374.31, -797.02], [-375.29, -795.92], [-378.93, -799.15], [-377.32, -800.96], [-378.11, -801.65], [-376.22, -803.77], [-379.29, -806.49], [-375.54, -810.71], [-373.94, -809.29], [-371.18, -812.38]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-482.89, -868.47], [-479.03, -873.0], [-476.33, -870.71], [-480.18, -866.19], [-482.89, -868.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-467.93, -848.31], [-464.79, -851.72], [-465.69, -852.54], [-463.09, -855.37], [-463.6, -855.83], [-461.91, -857.67], [-462.31, -858.04], [-458.29, -862.42], [-455.46, -859.83], [-454.02, -861.41], [-448.38, -856.29], [-456.97, -846.92], [-457.83, -847.71], [-462.13, -843.02], [-467.93, -848.31]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-460.28, -838.74], [-447.99, -852.15], [-446.5, -850.8], [-444.97, -852.46], [-441.27, -849.1], [-442.8, -847.43], [-441.43, -846.18], [-449.61, -837.25], [-450.73, -838.26], [-454.84, -833.79], [-460.28, -838.74]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-521.34, -812.62], [-516.57, -817.79], [-517.88, -818.99], [-510.76, -826.7], [-504.15, -820.64], [-516.04, -807.75], [-518.24, -809.78], [-519.18, -808.76], [-521.67, -811.04], [-520.73, -812.06], [-521.34, -812.62]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-361.32, -822.62], [-354.68, -829.76], [-344.99, -820.82], [-351.63, -813.67], [-361.32, -822.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-370.34, -816.45], [-368.04, -818.93], [-366.9, -817.88], [-362.79, -822.31], [-353.51, -813.79], [-359.91, -806.88], [-370.34, -816.45]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-490.1, -858.32], [-485.67, -863.32], [-484.55, -862.33], [-482.1, -865.07], [-479.39, -862.68], [-480.29, -861.65], [-473.46, -855.61], [-480.94, -847.22], [-487.55, -853.05], [-486.05, -854.74], [-490.1, -858.32]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-392.55, -783.45], [-383.54, -775.37], [-377.22, -782.36], [-386.22, -790.45], [-392.55, -783.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-437.6, -801.18], [-417.57, -822.89], [-406.41, -812.66], [-413.78, -804.68], [-419.62, -810.03], [-421.87, -807.58], [-418.63, -804.62], [-429.04, -793.34], [-437.6, -801.18]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-415.3, -854.05], [-410.58, -859.13], [-409.98, -858.58], [-408.03, -860.68], [-404.06, -857.03], [-404.29, -856.78], [-401.84, -854.52], [-401.61, -854.76], [-395.9, -849.51], [-402.56, -842.33], [-402.82, -842.56], [-403.64, -841.67], [-408.55, -846.19], [-410.16, -844.45], [-414.22, -848.19], [-411.78, -850.82], [-415.3, -854.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-683.46, -1089.24], [-677.53, -1084.28], [-679.12, -1082.71], [-665.11, -1070.38], [-644.34, -1093.19], [-650.95, -1098.66], [-643.74, -1102.78], [-685.75, -1165.39], [-692.97, -1158.44], [-697.04, -1162.81], [-717.92, -1139.95], [-719.57, -1138.16], [-701.05, -1122.58], [-694.04, -1130.53], [-673.6, -1099.64], [-683.46, -1089.24]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-777.15, -1043.73], [-773.25, -1040.15], [-776.72, -1036.4], [-778.67, -1038.21], [-779.85, -1036.93], [-781.79, -1038.71], [-777.15, -1043.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-894.98, -1077.96], [-840.75, -1139.67], [-827.86, -1128.43], [-850.65, -1102.51], [-882.1, -1066.72], [-894.98, -1077.96]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-921.77, -1100.86], [-859.56, -1172.83], [-843.03, -1158.66], [-905.24, -1086.67], [-921.77, -1100.86]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-893.99, -1162.03], [-901.33, -1168.48], [-897.0, -1173.38], [-889.66, -1166.92], [-893.99, -1162.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-908.27, -1142.85], [-905.85, -1145.47], [-903.47, -1143.28], [-900.48, -1146.5], [-898.51, -1144.69], [-903.92, -1138.85], [-908.27, -1142.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-916.27, -1155.06], [-913.26, -1158.3], [-909.37, -1154.72], [-907.08, -1157.17], [-900.57, -1151.17], [-905.85, -1145.47], [-916.27, -1155.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-926.63, -1133.06], [-918.89, -1141.34], [-910.26, -1133.85], [-917.67, -1125.58], [-926.63, -1133.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-911.62, -1139.26], [-909.29, -1141.83], [-905.78, -1138.44], [-908.13, -1135.87], [-911.62, -1139.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-942.48, -1074.91], [-940.75, -1073.38], [-945.13, -1068.44], [-938.35, -1062.46], [-939.63, -1061.02], [-932.78, -1054.99], [-931.46, -1056.48], [-926.38, -1052.0], [-925.46, -1053.05], [-922.78, -1050.69], [-937.08, -1034.59], [-936.22, -1033.83], [-937.89, -1031.94], [-939.01, -1032.95], [-947.81, -1023.04], [-950.43, -1025.35], [-949.34, -1026.58], [-954.79, -1031.38], [-953.61, -1032.72], [-959.59, -1037.98], [-961.02, -1036.38], [-967.91, -1042.45], [-972.11, -1037.73], [-973.95, -1039.36], [-979.59, -1033.02], [-977.91, -1031.54], [-981.13, -1027.91], [-976.74, -1024.03], [-978.32, -1022.24], [-969.24, -1014.22], [-967.7, -1015.94], [-962.55, -1011.39], [-958.75, -1015.67], [-956.62, -1013.79], [-957.13, -1013.22], [-951.06, -1007.87], [-952.37, -1006.39], [-946.58, -1001.29], [-945.06, -1003.0], [-941.97, -1000.27], [-936.8, -1006.09], [-935.44, -1004.89], [-927.94, -1013.32], [-929.29, -1014.52], [-923.04, -1021.54], [-921.96, -1020.58], [-917.38, -1025.74], [-918.71, -1026.91], [-912.46, -1033.95], [-910.8, -1032.47], [-903.79, -1040.36], [-905.31, -1041.71], [-899.84, -1047.88], [-902.64, -1050.36], [-901.24, -1051.94], [-906.71, -1056.77], [-908.29, -1055.01], [-916.84, -1062.53], [-912.68, -1067.21], [-917.97, -1071.87], [-916.51, -1073.5], [-925.63, -1081.54], [-926.98, -1080.02], [-931.55, -1084.04], [-934.66, -1080.53], [-936.24, -1081.92], [-942.48, -1074.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-872.94, -981.33], [-850.23, -1006.24], [-838.46, -995.58], [-839.0, -994.97], [-860.33, -971.57], [-861.15, -970.67], [-872.94, -981.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-813.24, -925.25], [-808.91, -929.86], [-808.1, -929.09], [-802.74, -934.77], [-797.72, -930.05], [-803.01, -924.44], [-799.13, -920.82], [-803.53, -916.16], [-813.24, -925.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-885.6, -935.82], [-867.67, -955.38], [-828.64, -919.84], [-846.79, -900.04], [-860.1, -912.17], [-858.65, -913.73], [-862.59, -917.32], [-864.12, -915.66], [-869.28, -920.35], [-867.71, -922.07], [-871.32, -925.36], [-872.6, -923.97], [-885.6, -935.82]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1170.83, -1044.72], [-1166.33, -1049.64], [-1169.59, -1052.61], [-1171.25, -1050.79], [-1175.24, -1054.4], [-1173.37, -1056.45], [-1175.91, -1058.76], [-1183.29, -1050.68], [-1188.5, -1055.4], [-1189.24, -1054.59], [-1198.41, -1062.91], [-1193.72, -1068.03], [-1195.25, -1069.42], [-1187.25, -1078.18], [-1181.65, -1073.09], [-1180.58, -1074.26], [-1171.54, -1066.05], [-1175.87, -1061.32], [-1172.1, -1057.89], [-1170.54, -1059.59], [-1166.91, -1056.28], [-1168.76, -1054.26], [-1165.77, -1051.54], [-1158.21, -1059.79], [-1153.5, -1055.5], [-1152.33, -1056.78], [-1142.6, -1047.93], [-1147.62, -1042.45], [-1146.69, -1041.61], [-1154.7, -1032.85], [-1159.51, -1037.22], [-1160.9, -1035.71], [-1170.83, -1044.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-844.28, -965.11], [-838.89, -970.93], [-840.84, -972.73], [-835.86, -978.09], [-833.52, -975.94], [-826.06, -983.98], [-794.75, -955.15], [-812.63, -935.87], [-823.48, -945.87], [-822.02, -947.43], [-824.72, -949.91], [-826.15, -948.37], [-830.4, -952.28], [-828.76, -954.05], [-831.6, -956.66], [-833.21, -954.93], [-844.28, -965.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-842.49, -892.74], [-837.73, -897.99], [-835.75, -896.2], [-834.21, -897.9], [-830.72, -894.76], [-832.3, -893.0], [-829.53, -890.5], [-823.75, -896.87], [-819.82, -893.33], [-830.3, -881.78], [-842.49, -892.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-895.32, -944.03], [-883.44, -956.94], [-876.61, -950.71], [-888.5, -937.8], [-895.32, -944.03]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1252.67, -1118.42], [-1247.07, -1113.89], [-1248.18, -1112.61], [-1238.92, -1104.11], [-1234.96, -1108.96], [-1230.88, -1105.86], [-1232.46, -1103.92], [-1226.21, -1098.75], [-1231.64, -1092.17], [-1226.43, -1087.58], [-1227.82, -1086.45], [-1218.29, -1078.07], [-1213.67, -1082.83], [-1212.72, -1081.93], [-1203.59, -1091.56], [-1209.25, -1096.13], [-1208.3, -1097.41], [-1217.48, -1105.21], [-1221.99, -1100.29], [-1226.46, -1104.03], [-1224.67, -1106.26], [-1230.99, -1111.41], [-1225.39, -1118.05], [-1230.22, -1122.43], [-1228.99, -1123.66], [-1238.63, -1131.58], [-1242.68, -1127.09], [-1244.06, -1128.24], [-1252.67, -1118.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1301.88, -1165.8], [-1300.09, -1164.31], [-1305.08, -1159.27], [-1295.88, -1150.93], [-1294.51, -1152.39], [-1289.57, -1147.85], [-1283.09, -1154.56], [-1281.96, -1153.34], [-1280.72, -1152.02], [-1281.68, -1151.12], [-1278.31, -1147.73], [-1276.18, -1149.86], [-1272.47, -1146.05], [-1277.02, -1141.02], [-1267.93, -1132.79], [-1266.78, -1134.23], [-1261.17, -1129.38], [-1252.8, -1138.45], [-1254.59, -1140.03], [-1250.47, -1144.94], [-1259.11, -1152.86], [-1260.38, -1151.3], [-1265.31, -1155.62], [-1272.09, -1148.24], [-1275.01, -1150.98], [-1273.09, -1152.78], [-1276.8, -1156.05], [-1278.92, -1153.82], [-1280.35, -1155.29], [-1282.64, -1157.63], [-1278.19, -1162.87], [-1287.18, -1171.55], [-1288.68, -1170.31], [-1292.96, -1174.65], [-1301.88, -1165.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1087.25, -1052.72], [-1073.61, -1067.15], [-1070.0, -1063.76], [-1065.46, -1068.58], [-1057.9, -1061.51], [-1062.02, -1057.14], [-1058.3, -1053.65], [-1072.36, -1038.75], [-1087.25, -1052.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1202.78, -1174.35], [-1197.54, -1169.4], [-1196.59, -1170.41], [-1188.21, -1162.46], [-1192.9, -1157.55], [-1188.24, -1153.14], [-1186.49, -1154.97], [-1182.52, -1151.21], [-1180.52, -1149.32], [-1174.49, -1155.65], [-1169.54, -1150.96], [-1168.43, -1152.13], [-1159.93, -1144.05], [-1164.37, -1139.42], [-1163.13, -1138.25], [-1171.87, -1129.1], [-1176.42, -1133.41], [-1177.53, -1132.25], [-1186.82, -1141.05], [-1182.64, -1145.43], [-1185.45, -1148.09], [-1186.03, -1148.64], [-1187.57, -1147.03], [-1193.74, -1152.87], [-1199.58, -1146.75], [-1204.36, -1151.27], [-1205.62, -1149.93], [-1215.36, -1159.12], [-1210.23, -1164.5], [-1211.23, -1165.45], [-1202.78, -1174.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1154.49, -1112.42], [-1149.58, -1107.92], [-1150.66, -1106.75], [-1141.08, -1097.97], [-1136.89, -1102.5], [-1133.79, -1099.65], [-1135.7, -1097.58], [-1129.67, -1092.05], [-1135.14, -1086.13], [-1129.68, -1081.11], [-1130.45, -1080.28], [-1120.77, -1071.35], [-1115.84, -1076.66], [-1114.87, -1075.77], [-1106.36, -1084.93], [-1111.68, -1089.85], [-1110.53, -1091.08], [-1119.37, -1099.24], [-1124.47, -1093.76], [-1129.23, -1098.16], [-1127.77, -1099.74], [-1133.83, -1105.32], [-1127.86, -1111.76], [-1132.85, -1116.35], [-1131.86, -1117.41], [-1140.33, -1125.2], [-1144.93, -1120.22], [-1146.21, -1121.39], [-1154.49, -1112.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1071.27, -1175.35], [-1064.23, -1182.91], [-1060.63, -1179.58], [-1061.98, -1178.13], [-1059.91, -1176.22], [-1065.62, -1170.11], [-1071.27, -1175.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1118.16, -1193.77], [-1112.57, -1186.89], [-1114.95, -1184.97], [-1113.15, -1182.75], [-1115.54, -1180.81], [-1113.06, -1177.76], [-1117.35, -1174.31], [-1124.27, -1182.84], [-1121.85, -1184.79], [-1124.8, -1188.43], [-1118.16, -1193.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1137.83, -1169.71], [-1134.21, -1173.7], [-1135.31, -1174.7], [-1131.85, -1178.5], [-1124.76, -1172.12], [-1123.12, -1173.93], [-1119.11, -1170.32], [-1124.41, -1164.48], [-1128.03, -1167.75], [-1131.47, -1163.96], [-1137.83, -1169.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1024.48, -1113.18], [-1019.24, -1118.93], [-1007.63, -1108.43], [-1012.87, -1102.67], [-1024.48, -1113.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1060.55, -1102.02], [-1050.87, -1112.65], [-1041.29, -1103.98], [-1050.96, -1093.35], [-1060.55, -1102.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1030.38, -1147.79], [-1024.78, -1153.68], [-1016.43, -1145.81], [-1018.25, -1143.9], [-1016.91, -1142.63], [-1019.68, -1139.71], [-1023.05, -1142.88], [-1024.34, -1142.08], [-1030.38, -1147.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1040.03, -1098.79], [-1027.36, -1087.65], [-1031.2, -1083.31], [-1030.59, -1082.77], [-1037.94, -1074.46], [-1046.16, -1081.67], [-1038.35, -1090.51], [-1043.42, -1094.95], [-1040.03, -1098.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1110.59, -1145.22], [-1105.09, -1151.28], [-1109.67, -1155.4], [-1112.22, -1152.6], [-1111.39, -1151.85], [-1114.34, -1148.6], [-1110.59, -1145.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1005.64, -1135.8], [-995.66, -1126.55], [-1000.41, -1121.46], [-1010.39, -1130.71], [-1005.64, -1135.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1092.23, -1153.18], [-1096.75, -1157.06], [-1092.69, -1161.74], [-1088.18, -1157.84], [-1092.23, -1153.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1026.94, -1135.4], [-1022.6, -1131.3], [-1019.03, -1135.07], [-1023.37, -1139.16], [-1026.94, -1135.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1064.93, -1166.25], [-1057.99, -1159.78], [-1048.8, -1169.55], [-1055.73, -1176.02], [-1064.93, -1166.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1108.52, -1142.47], [-1101.35, -1150.52], [-1096.08, -1145.87], [-1103.26, -1137.8], [-1108.52, -1142.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1108.89, -1195.71], [-1102.76, -1200.34], [-1096.91, -1192.65], [-1103.04, -1188.02], [-1108.89, -1195.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1123.91, -1159.11], [-1113.82, -1169.98], [-1109.21, -1165.74], [-1110.98, -1163.85], [-1109.7, -1162.67], [-1118.04, -1153.7], [-1123.91, -1159.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1092.19, -1194.46], [-1100.08, -1204.04], [-1093.62, -1209.32], [-1085.74, -1199.75], [-1092.19, -1194.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1049.13, -1151.46], [-1039.8, -1161.63], [-1033.38, -1155.07], [-1042.62, -1145.44], [-1049.13, -1151.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1094.99, -1185.34], [-1090.4, -1188.85], [-1086.61, -1183.94], [-1091.2, -1180.43], [-1094.99, -1185.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1032.46, -1126.57], [-1035.96, -1122.98], [-1031.7, -1119.17], [-1028.43, -1123.19], [-1032.46, -1126.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1105.9, -1163.23], [-1102.37, -1167.16], [-1100.18, -1165.22], [-1103.72, -1161.29], [-1105.9, -1163.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1027.04, -1107.13], [-1025.28, -1105.54], [-1027.11, -1103.52], [-1020.69, -1097.76], [-1019.11, -1099.52], [-1017.87, -1098.4], [-1014.18, -1102.48], [-1023.59, -1110.94], [-1027.04, -1107.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1096.92, -1130.2], [-1095.46, -1131.91], [-1094.78, -1131.34], [-1087.99, -1139.32], [-1092.57, -1143.19], [-1095.79, -1139.42], [-1097.02, -1140.46], [-1102.06, -1134.55], [-1096.92, -1130.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1085.06, -1123.11], [-1076.25, -1133.08], [-1071.52, -1128.94], [-1080.33, -1118.96], [-1085.06, -1123.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1029.1, -1102.64], [-1020.51, -1095.21], [-1026.08, -1088.81], [-1033.18, -1094.96], [-1031.71, -1096.64], [-1033.21, -1097.94], [-1029.1, -1102.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1080.74, -1173.04], [-1076.41, -1177.78], [-1071.75, -1173.56], [-1076.08, -1168.81], [-1080.74, -1173.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1074.94, -1112.64], [-1070.24, -1108.49], [-1071.13, -1107.49], [-1066.55, -1103.45], [-1059.88, -1110.97], [-1069.16, -1119.15], [-1074.94, -1112.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1111.74, -1182.87], [-1107.29, -1185.97], [-1104.3, -1181.7], [-1108.75, -1178.6], [-1111.74, -1182.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1095.64, -1129.44], [-1085.08, -1141.05], [-1079.96, -1136.42], [-1090.51, -1124.81], [-1095.64, -1129.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1018.72, -1125.08], [-1014.71, -1129.31], [-1013.69, -1128.35], [-1012.52, -1129.59], [-1001.29, -1119.04], [-1004.8, -1115.34], [-1006.62, -1117.04], [-1008.29, -1115.29], [-1018.72, -1125.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-947.47, -1325.71], [-945.36, -1322.89], [-948.12, -1320.84], [-943.08, -1314.08], [-939.77, -1316.54], [-937.96, -1314.1], [-933.28, -1317.57], [-942.25, -1329.58], [-947.47, -1325.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-986.96, -1240.59], [-982.8, -1245.13], [-973.2, -1236.41], [-975.65, -1233.73], [-974.26, -1232.46], [-975.95, -1230.6], [-986.96, -1240.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1054.57, -1237.85], [-1046.61, -1244.01], [-1039.58, -1235.02], [-1043.62, -1231.89], [-1045.5, -1234.31], [-1049.42, -1231.26], [-1054.57, -1237.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-986.92, -1246.33], [-983.84, -1249.53], [-987.57, -1253.09], [-990.65, -1249.88], [-986.92, -1246.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-991.49, -1285.99], [-988.46, -1288.19], [-990.17, -1290.5], [-985.46, -1293.94], [-982.21, -1289.52], [-980.92, -1290.46], [-977.2, -1285.4], [-986.22, -1278.82], [-991.49, -1285.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-973.9, -1252.98], [-979.67, -1246.97], [-971.2, -1238.88], [-970.03, -1240.11], [-968.46, -1238.61], [-964.61, -1242.61], [-966.61, -1244.52], [-965.85, -1245.29], [-973.9, -1252.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1035.6, -1199.34], [-1029.44, -1205.82], [-1024.67, -1201.32], [-1030.82, -1194.85], [-1035.6, -1199.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-931.69, -1296.31], [-925.92, -1302.75], [-917.57, -1295.33], [-923.34, -1288.89], [-931.69, -1296.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1031.28, -1258.45], [-1029.58, -1256.23], [-1031.52, -1254.76], [-1025.5, -1246.89], [-1024.5, -1247.65], [-1018.74, -1240.29], [-1013.23, -1244.82], [-1026.3, -1262.25], [-1031.28, -1258.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1034.03, -1178.24], [-1027.15, -1185.62], [-1021.77, -1180.65], [-1028.66, -1173.27], [-1034.03, -1178.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-942.06, -1286.82], [-937.51, -1291.96], [-928.9, -1285.13], [-933.45, -1279.66], [-942.06, -1286.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-978.49, -1255.17], [-976.33, -1257.59], [-979.85, -1260.71], [-982.01, -1258.29], [-978.49, -1255.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1022.04, -1265.91], [-1016.4, -1269.99], [-1006.22, -1256.04], [-1011.86, -1251.96], [-1022.04, -1265.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1004.89, -1200.24], [-1013.68, -1208.04], [-1008.69, -1213.52], [-999.97, -1205.66], [-1004.89, -1200.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1003.2, -1282.62], [-1000.85, -1279.49], [-1002.0, -1278.63], [-994.54, -1268.76], [-987.74, -1273.86], [-995.47, -1284.08], [-996.65, -1283.19], [-998.73, -1285.97], [-1003.2, -1282.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1041.85, -1200.45], [-1035.79, -1194.96], [-1043.83, -1186.14], [-1048.85, -1190.67], [-1046.81, -1192.91], [-1047.86, -1193.86], [-1041.85, -1200.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1014.23, -1268.79], [-1005.77, -1275.35], [-1000.61, -1268.75], [-1001.51, -1268.06], [-996.01, -1260.97], [-1002.79, -1255.96], [-1008.32, -1262.78], [-1009.08, -1262.19], [-1014.23, -1268.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1051.0, -1216.84], [-1045.97, -1220.8], [-1042.11, -1215.8], [-1047.35, -1211.83], [-1051.0, -1216.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1067.19, -1229.42], [-1058.07, -1236.43], [-1048.9, -1224.57], [-1058.02, -1217.57], [-1067.19, -1229.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-942.05, -1330.89], [-934.9, -1338.52], [-921.99, -1326.51], [-929.14, -1318.89], [-942.05, -1330.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1044.21, -1245.85], [-1036.62, -1251.84], [-1028.55, -1241.67], [-1032.85, -1238.28], [-1031.6, -1236.71], [-1034.89, -1234.12], [-1044.21, -1245.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1074.34, -1222.22], [-1073.13, -1220.64], [-1077.39, -1217.4], [-1072.56, -1211.07], [-1063.08, -1218.27], [-1069.12, -1226.17], [-1074.34, -1222.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-953.88, -1275.92], [-944.01, -1266.72], [-950.68, -1259.13], [-958.73, -1265.98], [-955.56, -1269.56], [-957.8, -1271.45], [-953.88, -1275.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-999.28, -1241.74], [-995.72, -1245.74], [-992.27, -1242.7], [-995.83, -1238.7], [-999.28, -1241.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1008.47, -1234.33], [-1004.35, -1238.55], [-999.16, -1233.51], [-1003.28, -1229.29], [-1008.47, -1234.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-981.87, -1270.68], [-991.09, -1263.32], [-986.29, -1257.34], [-977.06, -1264.69], [-981.87, -1270.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1015.07, -1230.23], [-1012.6, -1232.93], [-1008.41, -1229.13], [-1010.88, -1226.42], [-1015.07, -1230.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1009.8, -1217.04], [-1005.33, -1212.9], [-1004.57, -1213.7], [-998.58, -1208.16], [-994.78, -1212.25], [-1005.25, -1221.93], [-1009.8, -1217.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-964.45, -1311.48], [-955.49, -1299.94], [-962.91, -1294.21], [-970.13, -1303.5], [-968.11, -1305.07], [-969.85, -1307.31], [-964.45, -1311.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-994.24, -1214.85], [-990.59, -1218.88], [-999.51, -1226.9], [-1003.16, -1222.88], [-994.24, -1214.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-950.39, -1279.95], [-945.2, -1285.86], [-937.13, -1278.69], [-942.86, -1272.42], [-950.39, -1279.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-961.94, -1313.89], [-952.29, -1320.96], [-945.34, -1311.53], [-954.98, -1304.47], [-961.94, -1313.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1010.49, -1244.92], [-1006.65, -1247.81], [-1003.23, -1243.28], [-1007.09, -1240.4], [-1010.49, -1244.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-991.75, -1232.14], [-988.58, -1235.8], [-979.76, -1228.22], [-984.18, -1223.11], [-991.03, -1228.99], [-989.78, -1230.44], [-991.75, -1232.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1056.75, -1197.68], [-1048.41, -1207.41], [-1042.53, -1202.41], [-1050.88, -1192.68], [-1056.75, -1197.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1026.35, -1239.51], [-1022.5, -1242.84], [-1017.64, -1237.28], [-1021.49, -1233.95], [-1026.35, -1239.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1042.38, -1184.76], [-1034.5, -1193.34], [-1028.75, -1188.08], [-1036.63, -1179.51], [-1042.38, -1184.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-965.58, -1260.12], [-957.5, -1252.94], [-962.7, -1247.13], [-970.77, -1254.31], [-965.58, -1260.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-981.47, -1297.0], [-974.9, -1301.92], [-970.42, -1295.99], [-967.96, -1297.85], [-964.48, -1293.24], [-967.75, -1290.78], [-969.0, -1292.43], [-974.76, -1288.11], [-981.47, -1297.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-912.95, -1284.68], [-908.56, -1289.59], [-906.89, -1288.1], [-904.88, -1290.36], [-898.55, -1284.72], [-904.95, -1277.57], [-912.95, -1284.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-918.06, -1274.37], [-908.09, -1264.99], [-913.75, -1259.02], [-923.71, -1268.4], [-918.06, -1274.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-914.5, -1246.44], [-910.76, -1250.42], [-905.8, -1245.81], [-909.54, -1241.82], [-914.5, -1246.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-921.07, -1306.23], [-913.58, -1314.83], [-912.31, -1313.73], [-907.89, -1318.79], [-901.31, -1313.11], [-913.23, -1299.44], [-921.07, -1306.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-955.56, -1207.72], [-953.41, -1210.37], [-956.35, -1212.75], [-958.51, -1210.1], [-955.56, -1207.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-946.08, -1201.42], [-940.79, -1196.58], [-946.05, -1190.87], [-941.66, -1186.86], [-945.97, -1182.2], [-955.64, -1191.04], [-946.08, -1201.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-902.08, -1276.25], [-899.52, -1279.15], [-893.79, -1274.1], [-896.35, -1271.22], [-902.08, -1276.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-915.88, -1246.04], [-910.57, -1241.24], [-913.37, -1238.15], [-918.69, -1242.96], [-915.88, -1246.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-971.74, -1153.73], [-980.2, -1161.77], [-975.61, -1166.57], [-967.14, -1158.53], [-971.74, -1153.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-983.2, -1184.59], [-979.01, -1189.09], [-972.83, -1183.36], [-977.01, -1178.88], [-983.2, -1184.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-912.13, -1237.3], [-909.41, -1235.05], [-907.73, -1237.07], [-902.17, -1232.46], [-907.75, -1225.77], [-913.23, -1230.3], [-911.84, -1231.96], [-914.65, -1234.28], [-912.13, -1237.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-955.79, -1183.65], [-964.19, -1174.66], [-957.77, -1168.71], [-954.06, -1172.68], [-953.27, -1171.96], [-948.58, -1176.97], [-955.79, -1183.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-875.59, -1268.57], [-868.18, -1277.04], [-861.99, -1271.67], [-869.4, -1263.2], [-875.59, -1268.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-953.99, -1207.35], [-951.36, -1209.91], [-948.91, -1207.39], [-951.55, -1204.84], [-953.99, -1207.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-957.53, -1228.7], [-951.1, -1223.2], [-952.75, -1221.29], [-950.79, -1219.6], [-953.38, -1216.59], [-961.78, -1223.77], [-957.53, -1228.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-891.74, -1265.21], [-888.69, -1269.02], [-883.79, -1265.13], [-886.84, -1261.32], [-891.74, -1265.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-896.1, -1280.19], [-887.39, -1289.99], [-881.09, -1284.42], [-889.8, -1274.63], [-896.1, -1280.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-888.44, -1260.27], [-882.88, -1255.14], [-888.91, -1248.65], [-886.95, -1246.84], [-890.28, -1243.25], [-898.65, -1250.98], [-897.51, -1252.2], [-899.49, -1254.01], [-895.62, -1258.17], [-892.81, -1255.58], [-888.44, -1260.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-986.45, -1148.42], [-982.78, -1151.9], [-983.78, -1152.95], [-979.93, -1156.6], [-973.34, -1149.66], [-980.86, -1142.55], [-986.45, -1148.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-923.52, -1219.18], [-917.91, -1214.11], [-920.66, -1210.98], [-923.01, -1212.98], [-924.71, -1211.19], [-927.97, -1214.26], [-923.52, -1219.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1000.39, -1145.85], [-988.77, -1135.79], [-993.92, -1129.89], [-1005.54, -1139.95], [-1000.39, -1145.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-996.71, -1145.48], [-991.85, -1150.69], [-982.43, -1141.95], [-987.29, -1136.75], [-996.71, -1145.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-902.66, -1290.99], [-895.94, -1298.43], [-888.83, -1292.05], [-895.55, -1284.61], [-902.66, -1290.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-968.7, -1218.51], [-961.54, -1212.18], [-967.04, -1206.02], [-974.19, -1212.36], [-968.7, -1218.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-897.24, -1300.03], [-893.03, -1304.58], [-884.41, -1296.63], [-888.63, -1292.09], [-897.24, -1300.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-887.17, -1273.35], [-876.2, -1285.21], [-869.53, -1279.08], [-880.5, -1267.22], [-887.17, -1273.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-930.63, -1261.12], [-925.46, -1266.9], [-915.32, -1257.88], [-919.28, -1253.46], [-921.43, -1255.37], [-922.63, -1254.02], [-930.63, -1261.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-916.93, -1276.12], [-912.1, -1281.54], [-901.77, -1272.41], [-905.4, -1268.32], [-907.45, -1270.13], [-908.65, -1268.8], [-916.93, -1276.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-981.4, -1206.51], [-972.15, -1199.33], [-976.43, -1193.85], [-985.68, -1201.02], [-981.4, -1206.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-949.13, -1239.67], [-943.55, -1234.41], [-949.04, -1228.62], [-954.62, -1233.88], [-949.13, -1239.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-940.92, -1248.62], [-935.12, -1243.31], [-940.81, -1237.13], [-946.61, -1242.44], [-940.92, -1248.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-931.64, -1257.79], [-924.58, -1251.85], [-929.65, -1245.87], [-936.72, -1251.83], [-931.64, -1257.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-929.59, -1231.9], [-926.68, -1234.88], [-921.92, -1230.27], [-924.82, -1227.29], [-929.59, -1231.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-902.5, -1245.91], [-893.41, -1237.95], [-897.87, -1232.89], [-906.0, -1240.01], [-903.54, -1242.8], [-904.5, -1243.64], [-902.5, -1245.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-917.17, -1231.24], [-906.8, -1221.6], [-911.34, -1216.76], [-921.7, -1226.4], [-917.17, -1231.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-939.67, -1210.22], [-936.23, -1207.1], [-939.39, -1203.63], [-934.51, -1199.19], [-929.32, -1204.88], [-925.74, -1201.63], [-920.84, -1207.0], [-932.75, -1217.79], [-939.67, -1210.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-987.3, -1164.02], [-985.59, -1165.68], [-989.31, -1169.48], [-991.02, -1167.81], [-987.3, -1164.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1019.26, -1162.32], [-1013.84, -1167.84], [-1009.65, -1163.75], [-1015.07, -1158.24], [-1019.26, -1162.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1020.45, -1161.44], [-1015.85, -1157.1], [-1020.84, -1151.85], [-1025.44, -1156.18], [-1020.45, -1161.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-815.04, -788.57], [-809.86, -794.21], [-810.52, -794.81], [-808.26, -797.27], [-805.32, -794.59], [-805.89, -793.98], [-802.15, -790.57], [-797.94, -795.16], [-798.83, -795.97], [-796.87, -798.1], [-799.54, -800.54], [-790.7, -810.17], [-787.97, -807.68], [-787.58, -808.09], [-785.14, -805.86], [-785.52, -805.44], [-782.86, -803.01], [-785.63, -799.99], [-785.35, -799.74], [-793.42, -790.96], [-793.68, -791.21], [-797.94, -786.59], [-796.66, -785.43], [-803.46, -778.02], [-815.04, -788.57]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-785.23, -752.95], [-758.57, -782.43], [-748.17, -773.09], [-774.84, -743.61], [-785.23, -752.95]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1051.44, -728.36], [-1045.92, -734.39], [-1017.27, -765.72], [-1049.42, -794.91], [-1055.78, -787.96], [-1055.91, -784.8], [-1035.07, -765.89], [-1061.24, -737.26], [-1051.44, -728.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-838.2, -842.47], [-828.6, -853.11], [-822.01, -847.22], [-831.61, -836.57], [-838.2, -842.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1059.32, -800.46], [-1053.72, -795.61], [-1057.75, -791.36], [-1057.96, -783.18], [-1055.04, -780.54], [-1068.61, -766.0], [-1054.25, -753.01], [-1057.95, -748.66], [-1057.77, -746.05], [-1062.75, -740.8], [-1089.93, -766.27], [-1059.32, -800.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-797.49, -775.37], [-777.06, -797.6], [-768.25, -789.56], [-788.69, -767.34], [-797.49, -775.37]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-844.04, -820.98], [-823.33, -843.92], [-818.79, -839.85], [-826.17, -831.67], [-825.71, -831.26], [-839.04, -816.49], [-844.04, -820.98]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-822.88, -812.96], [-821.73, -811.94], [-819.55, -814.39], [-820.7, -815.42], [-807.82, -829.87], [-805.76, -828.04], [-804.37, -829.6], [-799.38, -825.18], [-801.76, -822.51], [-797.02, -818.34], [-798.24, -816.97], [-796.27, -815.22], [-802.9, -807.78], [-804.23, -808.95], [-805.6, -807.42], [-804.48, -806.43], [-808.3, -802.14], [-809.47, -803.18], [-813.97, -798.14], [-812.99, -797.28], [-823.28, -785.72], [-825.67, -787.83], [-826.59, -786.81], [-831.67, -791.3], [-830.86, -792.21], [-834.55, -795.47], [-833.45, -796.7], [-835.64, -798.64], [-822.88, -812.96]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1006.95, -758.82], [-998.75, -767.76], [-989.14, -759.0], [-997.34, -750.06], [-1006.95, -758.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-827.23, -824.97], [-821.66, -819.98], [-808.93, -834.07], [-814.49, -839.07], [-827.23, -824.97]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1124.22, -783.04], [-1109.0, -769.18], [-1100.65, -778.27], [-1102.26, -779.75], [-1072.91, -811.71], [-1075.92, -814.46], [-1074.49, -816.02], [-1076.68, -818.02], [-1076.0, -818.77], [-1078.42, -820.97], [-1079.31, -820.0], [-1082.33, -822.76], [-1083.64, -821.32], [-1086.6, -824.01], [-1124.22, -783.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1001.18, -723.74], [-966.52, -762.15], [-956.19, -752.89], [-990.85, -714.48], [-1001.18, -723.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-789.43, -685.61], [-780.04, -696.12], [-773.61, -690.4], [-783.01, -679.9], [-783.22, -680.09], [-784.21, -678.99], [-789.7, -683.87], [-788.72, -684.98], [-789.43, -685.61]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-981.65, -667.67], [-971.63, -678.51], [-966.07, -673.4], [-976.08, -662.56], [-976.3, -662.76], [-977.79, -661.15], [-982.86, -665.81], [-981.37, -667.41], [-981.65, -667.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-895.23, -723.3], [-883.05, -712.28], [-904.34, -688.92], [-902.02, -686.83], [-900.76, -688.23], [-891.99, -680.29], [-893.14, -679.02], [-889.6, -675.81], [-900.07, -664.33], [-916.9, -679.57], [-917.78, -678.62], [-926.3, -686.32], [-924.96, -687.78], [-930.32, -692.63], [-919.28, -704.75], [-915.35, -701.2], [-895.23, -723.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-730.12, -712.5], [-722.89, -720.39], [-715.05, -713.26], [-715.22, -713.08], [-713.57, -711.57], [-720.42, -704.08], [-722.08, -705.58], [-722.27, -705.36], [-730.12, -712.5]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-878.34, -670.49], [-860.67, -690.0], [-854.36, -684.33], [-872.02, -664.82], [-878.34, -670.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-974.37, -660.34], [-973.38, -661.44], [-973.6, -661.62], [-963.68, -672.52], [-963.32, -672.19], [-961.64, -674.04], [-956.87, -669.74], [-958.56, -667.89], [-958.16, -667.53], [-968.02, -656.69], [-968.2, -656.85], [-969.25, -655.7], [-974.37, -660.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-784.08, -677.95], [-774.17, -688.77], [-768.32, -683.45], [-778.23, -672.63], [-784.08, -677.95]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-865.1, -669.73], [-854.47, -681.63], [-848.48, -676.34], [-853.08, -671.18], [-852.85, -670.98], [-858.88, -664.21], [-861.78, -666.78], [-862.83, -665.6], [-865.2, -667.71], [-864.15, -668.89], [-865.1, -669.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-748.98, -695.2], [-738.89, -686.12], [-739.45, -685.5], [-738.49, -684.64], [-741.74, -681.06], [-742.69, -681.92], [-743.83, -680.66], [-747.2, -683.69], [-747.84, -683.0], [-751.79, -686.55], [-751.16, -687.26], [-753.93, -689.75], [-752.92, -690.85], [-753.99, -691.82], [-750.39, -695.79], [-749.32, -694.82], [-748.98, -695.2]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-923.55, -706.96], [-930.12, -699.76], [-951.72, -719.33], [-925.07, -748.54], [-898.57, -724.56], [-909.27, -712.83], [-922.42, -724.73], [-931.82, -714.44], [-923.55, -706.96]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-768.81, -664.47], [-758.9, -675.14], [-751.91, -668.7], [-761.82, -658.02], [-763.31, -659.4], [-764.17, -658.48], [-768.77, -662.7], [-767.91, -663.64], [-768.81, -664.47]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-732.24, -711.93], [-723.45, -703.96], [-723.86, -703.52], [-722.19, -702.0], [-728.84, -694.72], [-730.49, -696.22], [-730.87, -695.79], [-739.67, -703.77], [-732.24, -711.93]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-776.02, -671.69], [-764.62, -684.27], [-764.21, -683.9], [-762.74, -685.51], [-759.47, -682.55], [-760.92, -680.94], [-757.83, -678.17], [-767.2, -667.82], [-767.61, -668.18], [-769.63, -665.95], [-769.99, -666.27], [-771.12, -665.04], [-776.83, -670.17], [-775.71, -671.41], [-776.02, -671.69]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-803.76, -699.78], [-802.53, -701.14], [-803.21, -701.76], [-799.32, -706.04], [-798.65, -705.43], [-794.58, -709.92], [-789.96, -705.77], [-792.34, -703.15], [-792.12, -702.94], [-797.01, -697.54], [-797.24, -697.75], [-799.15, -695.64], [-803.76, -699.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-727.22, -736.62], [-719.02, -745.66], [-713.01, -740.24], [-721.21, -731.2], [-727.22, -736.62]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-966.19, -656.09], [-956.47, -666.6], [-954.36, -664.66], [-953.43, -665.66], [-950.29, -662.78], [-951.22, -661.78], [-950.77, -661.37], [-953.81, -658.09], [-953.41, -657.73], [-956.46, -654.44], [-956.85, -654.79], [-960.5, -650.87], [-966.19, -656.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-882.91, -681.29], [-868.91, -696.54], [-862.12, -690.35], [-876.11, -675.09], [-882.91, -681.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-744.6, -763.0], [-743.52, -762.02], [-738.98, -767.0], [-733.86, -762.37], [-733.26, -763.04], [-730.22, -760.3], [-730.66, -759.81], [-729.52, -758.79], [-729.26, -759.07], [-723.54, -753.89], [-728.22, -748.75], [-725.69, -746.47], [-733.7, -737.68], [-737.96, -741.54], [-743.8, -735.14], [-739.62, -731.37], [-742.13, -728.61], [-741.01, -727.58], [-748.95, -718.88], [-751.3, -721.0], [-752.19, -720.02], [-761.19, -728.15], [-760.34, -729.08], [-762.27, -730.82], [-763.22, -729.76], [-768.74, -734.75], [-767.72, -735.87], [-769.94, -737.87], [-763.48, -744.96], [-762.42, -744.0], [-755.51, -751.59], [-754.3, -750.49], [-752.13, -752.86], [-753.07, -753.71], [-744.6, -763.0]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-976.34, -687.73], [-972.66, -691.8], [-963.18, -683.31], [-966.85, -679.24], [-976.34, -687.73]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-884.24, -634.61], [-879.47, -640.01], [-873.21, -634.52], [-877.99, -629.12], [-884.24, -634.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-797.06, -693.02], [-787.36, -703.89], [-786.84, -703.42], [-785.06, -705.41], [-779.32, -700.32], [-781.1, -698.33], [-780.67, -697.94], [-790.37, -687.08], [-797.06, -693.02]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-740.93, -703.71], [-731.36, -694.8], [-731.58, -694.56], [-730.67, -693.71], [-734.62, -689.5], [-735.54, -690.35], [-736.62, -689.2], [-743.73, -695.82], [-745.43, -694.0], [-749.86, -698.13], [-747.82, -700.3], [-745.85, -698.47], [-743.59, -700.87], [-744.82, -702.01], [-742.47, -704.51], [-741.24, -703.37], [-740.93, -703.71]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-709.14, -742.4], [-696.28, -730.54], [-711.14, -714.55], [-724.0, -726.41], [-709.14, -742.4]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-925.58, -620.1], [-915.77, -630.8], [-921.24, -635.78], [-931.06, -625.08], [-930.73, -624.77], [-931.85, -623.55], [-926.95, -619.1], [-925.83, -620.32], [-925.58, -620.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-877.19, -800.4], [-876.06, -800.47], [-873.8, -798.4], [-873.61, -798.6], [-872.3, -798.65], [-861.85, -789.1], [-861.82, -787.75], [-871.39, -777.35], [-867.81, -774.08], [-864.29, -770.87], [-864.31, -769.59], [-871.07, -762.24], [-872.19, -762.21], [-875.74, -765.45], [-878.58, -768.04], [-880.0, -768.02], [-882.03, -765.82], [-891.57, -774.54], [-891.61, -776.26], [-895.24, -779.56], [-895.25, -780.76], [-877.19, -800.4]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-845.73, -673.02], [-840.54, -668.2], [-847.85, -660.39], [-848.07, -660.6], [-850.52, -657.98], [-855.49, -662.61], [-845.73, -673.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-839.17, -591.31], [-838.82, -591.71], [-842.93, -595.41], [-841.53, -596.96], [-847.31, -602.19], [-843.83, -606.01], [-838.06, -600.8], [-837.52, -601.39], [-833.21, -597.49], [-833.97, -596.66], [-825.41, -588.93], [-830.43, -583.41], [-839.17, -591.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-947.31, -637.24], [-935.77, -649.57], [-930.34, -644.52], [-940.84, -633.3], [-942.9, -635.22], [-943.94, -634.11], [-947.31, -637.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-901.83, -598.66], [-899.32, -601.4], [-899.74, -601.77], [-895.7, -606.21], [-895.29, -605.83], [-890.84, -610.73], [-884.74, -605.22], [-895.72, -593.14], [-901.83, -598.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-850.13, -585.96], [-840.13, -576.91], [-846.82, -569.57], [-856.82, -578.61], [-850.13, -585.96]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-908.9, -608.09], [-900.28, -617.26], [-898.85, -615.92], [-897.57, -617.28], [-894.53, -614.44], [-895.81, -613.08], [-893.82, -611.22], [-902.44, -602.06], [-908.9, -608.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-866.52, -573.14], [-851.81, -559.97], [-858.39, -552.68], [-864.5, -558.15], [-873.1, -565.85], [-866.52, -573.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-880.57, -576.91], [-876.8, -581.18], [-877.64, -581.91], [-874.53, -585.43], [-873.06, -584.14], [-869.11, -588.62], [-864.28, -584.39], [-873.54, -573.88], [-873.86, -574.16], [-875.42, -572.4], [-880.57, -576.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-895.35, -592.08], [-883.42, -604.85], [-877.44, -599.3], [-886.3, -589.81], [-886.5, -589.98], [-889.56, -586.71], [-895.35, -592.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-951.78, -644.46], [-944.8, -651.96], [-939.02, -646.62], [-946.0, -639.12], [-946.98, -640.02], [-948.62, -638.25], [-953.21, -642.48], [-951.56, -644.25], [-951.78, -644.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-923.7, -618.21], [-913.81, -629.01], [-913.49, -628.72], [-912.46, -629.84], [-910.11, -627.71], [-911.13, -626.59], [-908.18, -623.91], [-918.07, -613.1], [-923.7, -618.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-959.21, -650.57], [-948.22, -662.52], [-942.26, -657.08], [-950.18, -648.46], [-950.48, -648.73], [-953.54, -645.4], [-959.21, -650.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-886.72, -584.96], [-883.91, -588.01], [-884.26, -588.32], [-880.46, -592.45], [-880.11, -592.13], [-875.3, -597.35], [-869.7, -592.22], [-872.89, -588.76], [-872.71, -588.58], [-879.0, -581.77], [-879.19, -581.94], [-881.13, -579.84], [-886.72, -584.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-860.19, -568.83], [-852.4, -562.0], [-846.32, -568.89], [-854.11, -575.72], [-860.19, -568.83]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-916.77, -612.22], [-905.45, -624.59], [-899.38, -619.08], [-910.69, -606.71], [-916.77, -612.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-938.66, -630.62], [-932.41, -637.11], [-930.6, -635.39], [-927.85, -638.25], [-927.65, -638.05], [-926.65, -639.09], [-923.82, -636.39], [-924.86, -635.31], [-923.96, -634.46], [-926.56, -631.75], [-925.85, -631.07], [-930.32, -626.44], [-932.01, -628.06], [-933.92, -626.07], [-938.66, -630.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1177.18, -551.76], [-1177.99, -552.05], [-1178.25, -552.79], [-1179.77, -579.08], [-1178.09, -579.19], [-1178.81, -590.53], [-1178.77, -591.02], [-1178.42, -591.32], [-1158.14, -592.42], [-1157.75, -592.32], [-1157.62, -591.84], [-1157.18, -583.59], [-1156.67, -574.06], [-1138.16, -575.05], [-1138.66, -584.79], [-1139.15, -593.76], [-1110.91, -595.26], [-1110.29, -583.69], [-1096.75, -584.41], [-1096.22, -574.53], [-1081.39, -575.31], [-1081.59, -578.98], [-1083.72, -578.86], [-1084.05, -585.2], [-1084.66, -596.39], [-1066.19, -597.38], [-1064.14, -559.4], [-1064.55, -558.41], [-1065.51, -557.62], [-1107.45, -555.26], [-1107.36, -553.7], [-1108.31, -552.69], [-1131.99, -551.15], [-1133.09, -551.55], [-1133.88, -552.4], [-1133.97, -554.09], [-1177.18, -551.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1079.29, -335.62], [-1042.29, -337.31], [-1041.45, -318.99], [-1059.51, -318.18], [-1058.69, -299.88], [-1077.36, -298.83], [-1079.29, -335.62]], "holes": []}, "height": 38.5}, {"shape": {"outer": [[-981.71, -489.76], [-979.49, -487.71], [-978.11, -489.18], [-975.44, -486.72], [-973.24, -489.08], [-947.78, -465.53], [-948.44, -464.83], [-944.55, -461.23], [-949.02, -456.42], [-947.95, -455.43], [-953.07, -449.94], [-954.9, -451.63], [-958.62, -447.62], [-956.62, -445.77], [-962.42, -439.54], [-963.41, -440.47], [-966.46, -437.21], [-971.5, -441.86], [-972.55, -440.73], [-978.13, -445.91], [-977.11, -447.0], [-980.76, -450.38], [-972.51, -459.24], [-980.87, -466.98], [-984.3, -463.32], [-983.98, -463.02], [-987.03, -459.75], [-988.23, -460.86], [-990.13, -458.8], [-992.59, -461.08], [-993.73, -459.86], [-999.3, -465.02], [-998.3, -466.09], [-1003.53, -470.94], [-1000.52, -474.16], [-1001.55, -475.11], [-995.99, -481.08], [-995.57, -480.7], [-993.18, -483.26], [-991.45, -481.65], [-985.5, -488.03], [-984.34, -486.96], [-981.71, -489.76]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-1125.66, -366.37], [-1122.61, -366.53], [-1122.47, -363.74], [-1119.57, -363.88], [-1119.03, -352.81], [-1124.99, -352.52], [-1125.66, -366.37]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1116.29, -367.41], [-1107.1, -367.88], [-1106.44, -355.28], [-1115.63, -354.81], [-1116.29, -367.41]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1142.13, -364.29], [-1139.1, -364.45], [-1139.0, -362.76], [-1134.93, -362.98], [-1134.43, -354.16], [-1141.54, -353.76], [-1142.13, -364.29]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1133.73, -364.75], [-1130.22, -364.95], [-1130.14, -363.39], [-1127.15, -363.55], [-1126.6, -353.99], [-1133.09, -353.62], [-1133.73, -364.75]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1098.67, -369.33], [-1100.21, -397.81], [-1087.12, -398.52], [-1086.3, -383.3], [-1085.58, -370.04], [-1098.67, -369.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1123.7, -509.13], [-1124.13, -518.1], [-1114.35, -518.57], [-1114.31, -517.76], [-1108.64, -518.02], [-1108.25, -509.86], [-1123.7, -509.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1124.06, -519.46], [-1124.3, -524.27], [-1120.28, -524.48], [-1120.4, -527.01], [-1115.3, -527.26], [-1115.27, -526.54], [-1111.02, -526.75], [-1110.68, -519.89], [-1119.9, -519.44], [-1119.91, -519.66], [-1124.06, -519.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1155.07, -497.22], [-1155.39, -504.41], [-1150.69, -504.62], [-1150.64, -503.61], [-1145.57, -503.84], [-1145.3, -497.64], [-1155.07, -497.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1153.38, -509.2], [-1153.83, -515.94], [-1151.74, -516.09], [-1152.26, -523.79], [-1148.61, -524.03], [-1148.72, -525.66], [-1145.84, -525.86], [-1145.73, -524.23], [-1145.57, -524.23], [-1144.6, -509.79], [-1153.38, -509.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1179.58, -513.43], [-1168.34, -514.18], [-1168.4, -515.07], [-1163.15, -515.42], [-1163.09, -514.52], [-1162.53, -514.56], [-1162.03, -507.13], [-1177.22, -506.13], [-1177.24, -506.42], [-1178.5, -506.33], [-1178.63, -508.39], [-1179.24, -508.35], [-1179.58, -513.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1180.0, -516.73], [-1162.08, -517.39], [-1162.41, -526.48], [-1180.34, -525.82], [-1180.0, -516.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1140.8, -518.04], [-1141.28, -527.08], [-1136.39, -527.34], [-1136.42, -527.95], [-1127.87, -528.42], [-1127.35, -518.76], [-1140.8, -518.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1129.15, -488.67], [-1105.09, -489.8], [-1104.41, -475.45], [-1128.48, -474.33], [-1129.15, -488.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1132.55, -425.57], [-1134.14, -460.3], [-1105.3, -461.62], [-1103.71, -426.9], [-1132.55, -425.57]], "holes": []}, "height": 42.0}, {"shape": {"outer": [[-1119.73, -500.06], [-1120.07, -508.22], [-1109.59, -508.65], [-1109.25, -500.51], [-1113.81, -500.31], [-1113.76, -499.17], [-1116.19, -499.06], [-1116.24, -500.21], [-1119.73, -500.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1176.01, -505.31], [-1171.14, -505.61], [-1171.09, -504.79], [-1163.4, -505.25], [-1162.99, -498.39], [-1166.53, -498.18], [-1166.51, -497.77], [-1170.94, -497.51], [-1170.91, -496.93], [-1175.49, -496.66], [-1175.57, -498.03], [-1176.74, -497.97], [-1177.08, -503.78], [-1175.93, -503.85], [-1176.01, -505.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1151.22, -438.34], [-1150.79, -424.81], [-1158.86, -424.48], [-1158.8, -422.64], [-1162.72, -422.48], [-1162.63, -421.23], [-1173.71, -420.86], [-1175.51, -422.55], [-1176.15, -441.13], [-1170.03, -441.33], [-1170.09, -443.36], [-1158.32, -443.86], [-1158.09, -438.1], [-1151.22, -438.34]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1171.1, -343.78], [-1144.33, -344.94], [-1144.33, -344.63], [-1142.91, -344.69], [-1142.32, -331.12], [-1165.98, -330.09], [-1166.0, -330.5], [-1170.51, -330.3], [-1171.1, -343.78]], "holes": []}, "height": 42.0}, {"shape": {"outer": [[-1172.31, -487.01], [-1153.02, -487.97], [-1152.36, -474.77], [-1171.65, -473.79], [-1172.31, -487.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1166.3, -446.01], [-1167.13, -465.57], [-1152.48, -466.19], [-1151.64, -446.63], [-1166.3, -446.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1015.53, -648.7], [-1008.55, -656.22], [-1007.82, -655.55], [-1006.66, -656.81], [-1002.09, -652.6], [-1003.25, -651.35], [-1002.42, -650.58], [-1009.38, -643.05], [-1010.56, -644.14], [-1012.15, -642.41], [-1016.16, -646.09], [-1014.56, -647.81], [-1015.53, -648.7]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2236.29, -558.42], [-2235.71, -543.91], [-2227.96, -544.22], [-2228.54, -558.73], [-2236.29, -558.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2225.0, -556.02], [-2224.56, -546.62], [-2216.16, -547.02], [-2216.59, -556.14], [-2218.78, -556.04], [-2218.89, -558.5], [-2223.11, -558.3], [-2223.0, -556.12], [-2225.0, -556.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2180.42, -549.04], [-2174.05, -549.1], [-2170.8, -549.14], [-2170.58, -526.76], [-2180.19, -526.66], [-2180.42, -549.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2239.78, -557.16], [-2239.31, -542.92], [-2247.24, -542.67], [-2247.71, -556.91], [-2239.78, -557.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2247.52, -534.96], [-2234.49, -535.19], [-2234.36, -528.14], [-2241.02, -528.03], [-2241.04, -529.43], [-2247.43, -529.31], [-2247.52, -534.96]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2243.28, -569.7], [-2243.75, -584.98], [-2216.73, -585.82], [-2216.25, -570.54], [-2243.28, -569.7]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-2243.48, -519.79], [-2233.21, -520.09], [-2232.45, -494.69], [-2242.72, -494.38], [-2243.48, -519.79]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2179.63, -522.46], [-2170.34, -522.62], [-2169.93, -499.88], [-2179.2, -499.72], [-2179.63, -522.46]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-2196.84, -536.81], [-2189.87, -536.96], [-2189.88, -537.59], [-2186.1, -537.68], [-2185.28, -499.9], [-2189.62, -499.81], [-2189.64, -500.55], [-2196.04, -500.41], [-2196.84, -536.81]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1164.89, -305.71], [-1148.41, -306.59], [-1148.82, -314.28], [-1139.75, -314.76], [-1138.68, -295.03], [-1146.46, -294.61], [-1146.84, -301.7], [-1155.44, -301.23], [-1155.4, -300.53], [-1162.92, -300.13], [-1164.58, -300.04], [-1164.89, -305.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1136.27, -314.73], [-1133.8, -314.74], [-1133.9, -316.76], [-1130.81, -316.91], [-1130.86, -318.01], [-1124.28, -318.33], [-1124.17, -316.14], [-1118.31, -316.43], [-1118.25, -315.31], [-1101.21, -316.15], [-1102.37, -339.38], [-1104.42, -339.28], [-1104.65, -343.89], [-1085.83, -344.82], [-1085.61, -340.56], [-1086.81, -340.51], [-1086.53, -334.83], [-1084.08, -334.96], [-1083.83, -330.0], [-1084.99, -329.94], [-1084.11, -312.16], [-1082.77, -312.22], [-1082.53, -307.5], [-1084.14, -307.42], [-1083.76, -299.78], [-1094.67, -299.23], [-1094.54, -296.69], [-1100.82, -296.39], [-1100.94, -298.73], [-1122.65, -297.66], [-1122.58, -296.59], [-1135.07, -295.81], [-1136.27, -314.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1168.94, -307.38], [-1151.24, -308.1], [-1152.03, -327.45], [-1169.73, -326.73], [-1168.94, -307.38]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1036.39, -582.29], [-1019.8, -583.05], [-1019.52, -577.18], [-1024.41, -576.96], [-1024.3, -574.53], [-1036.01, -574.0], [-1036.39, -582.29]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-890.53, -530.03], [-880.65, -540.43], [-874.81, -534.93], [-884.69, -524.53], [-890.53, -530.03]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-981.14, -609.43], [-973.09, -617.79], [-972.79, -617.5], [-969.58, -620.85], [-964.02, -615.53], [-975.28, -603.83], [-981.14, -609.43]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-937.95, -565.26], [-932.31, -560.14], [-919.1, -574.59], [-921.9, -577.14], [-920.85, -578.29], [-923.68, -580.86], [-937.95, -565.26]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-943.74, -577.07], [-934.39, -587.66], [-928.8, -582.76], [-938.16, -572.17], [-943.74, -577.07]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-987.53, -616.62], [-981.98, -611.6], [-971.64, -622.94], [-977.2, -627.96], [-987.53, -616.62]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-921.41, -555.73], [-910.35, -568.04], [-903.99, -562.36], [-915.05, -550.05], [-921.41, -555.73]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-906.78, -542.78], [-895.33, -555.26], [-892.74, -552.9], [-893.62, -551.94], [-890.08, -548.72], [-893.08, -545.46], [-892.69, -545.1], [-896.16, -541.3], [-896.56, -541.66], [-900.64, -537.19], [-902.6, -538.97], [-903.79, -537.67], [-907.08, -540.65], [-905.88, -541.96], [-906.78, -542.78]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-953.03, -581.76], [-941.79, -594.0], [-935.87, -588.62], [-938.57, -585.68], [-938.37, -585.49], [-942.41, -581.09], [-942.62, -581.28], [-947.12, -576.37], [-953.03, -581.76]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-952.52, -583.24], [-940.91, -595.85], [-945.9, -600.42], [-947.26, -598.94], [-948.1, -599.7], [-958.35, -588.57], [-952.52, -583.24]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-928.52, -559.89], [-923.74, -565.32], [-924.09, -565.62], [-920.98, -569.16], [-920.63, -568.86], [-916.84, -573.15], [-911.92, -568.85], [-923.58, -555.59], [-928.52, -559.89]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-913.58, -549.56], [-903.84, -560.21], [-898.49, -555.35], [-901.48, -552.08], [-901.28, -551.91], [-904.44, -548.47], [-904.62, -548.64], [-908.22, -544.7], [-913.58, -549.56]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-899.38, -534.87], [-895.11, -539.51], [-895.37, -539.74], [-891.99, -543.42], [-891.72, -543.17], [-886.82, -548.49], [-880.62, -542.81], [-893.18, -529.19], [-899.38, -534.87]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1010.73, -639.55], [-1000.64, -650.48], [-994.82, -645.14], [-997.34, -642.4], [-996.93, -642.04], [-1004.49, -633.84], [-1010.73, -639.55]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-973.95, -604.65], [-968.4, -599.3], [-958.37, -609.65], [-963.91, -614.99], [-973.95, -604.65]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-964.51, -597.18], [-958.49, -591.73], [-949.51, -601.59], [-949.84, -601.89], [-948.55, -603.3], [-953.33, -607.62], [-954.62, -606.21], [-955.04, -606.59], [-957.48, -603.92], [-957.96, -604.36], [-964.51, -597.18]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1001.87, -633.14], [-995.1, -626.97], [-985.18, -637.8], [-988.07, -640.43], [-989.24, -639.15], [-993.13, -642.69], [-1001.87, -633.14]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-994.57, -623.77], [-984.73, -634.37], [-984.26, -633.94], [-983.01, -635.29], [-978.44, -631.06], [-979.68, -629.72], [-979.21, -629.29], [-989.03, -618.69], [-994.57, -623.77]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1036.28, -594.53], [-1036.69, -602.68], [-1025.95, -603.22], [-1025.54, -595.07], [-1036.28, -594.53]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-945.52, -499.73], [-938.95, -493.62], [-929.97, -503.19], [-936.55, -509.32], [-945.52, -499.73]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-938.89, -489.11], [-937.3, -490.87], [-937.94, -491.44], [-936.1, -493.47], [-935.47, -492.9], [-933.41, -495.17], [-921.09, -484.11], [-926.57, -478.06], [-938.89, -489.11]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-960.94, -511.86], [-949.22, -524.5], [-943.15, -518.93], [-954.86, -506.28], [-960.94, -511.86]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1024.56, -634.58], [-1021.14, -638.35], [-1013.2, -631.22], [-1014.16, -630.17], [-1011.06, -627.38], [-1013.52, -624.67], [-1024.56, -634.58]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-981.95, -532.98], [-973.34, -542.22], [-972.64, -541.56], [-970.26, -544.12], [-966.42, -540.57], [-969.95, -536.77], [-968.55, -535.49], [-976.0, -527.48], [-981.95, -532.98]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-916.27, -514.2], [-911.89, -518.83], [-901.55, -509.14], [-906.79, -503.57], [-914.0, -510.33], [-913.12, -511.25], [-916.27, -514.2]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1010.25, -605.71], [-1010.35, -609.65], [-1003.91, -609.81], [-1003.81, -605.87], [-1010.25, -605.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1005.65, -581.42], [-999.81, -581.67], [-999.6, -576.68], [-1005.45, -576.45], [-1005.65, -581.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-952.95, -506.85], [-945.66, -514.76], [-945.43, -514.55], [-943.13, -517.06], [-937.4, -511.84], [-947.0, -501.41], [-952.95, -506.85]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-974.24, -525.87], [-963.9, -537.58], [-962.83, -536.64], [-959.57, -540.32], [-956.21, -537.39], [-959.57, -533.59], [-958.32, -532.49], [-968.58, -520.89], [-974.24, -525.87]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1034.08, -593.16], [-1019.04, -593.51], [-1018.96, -590.06], [-1021.24, -590.0], [-1021.19, -587.85], [-1033.94, -587.55], [-1033.95, -587.84], [-1036.03, -587.79], [-1036.16, -592.94], [-1034.07, -592.99], [-1034.08, -593.16]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1013.43, -561.05], [-1008.03, -555.8], [-998.41, -565.64], [-999.64, -566.83], [-998.27, -568.23], [-1001.51, -571.38], [-1002.87, -569.99], [-1003.8, -570.89], [-1013.43, -561.05]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-990.89, -540.72], [-981.9, -550.5], [-977.45, -546.44], [-979.14, -544.61], [-978.13, -543.67], [-978.97, -542.75], [-978.44, -542.27], [-982.18, -538.21], [-983.22, -539.16], [-985.94, -536.2], [-990.89, -540.72]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1037.2, -612.81], [-1031.56, -613.03], [-1031.51, -611.91], [-1025.47, -612.13], [-1025.46, -611.8], [-1022.15, -611.93], [-1022.0, -607.86], [-1036.99, -607.28], [-1037.2, -612.81]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-1036.7, -563.74], [-1036.93, -570.58], [-1026.04, -570.95], [-1025.96, -568.44], [-1022.55, -568.56], [-1022.43, -564.67], [-1025.83, -564.55], [-1025.82, -564.11], [-1036.7, -563.74]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-999.5, -545.86], [-986.59, -559.93], [-986.08, -559.46], [-984.67, -561.0], [-981.58, -558.19], [-983.06, -556.58], [-980.57, -554.32], [-991.64, -542.25], [-994.19, -544.57], [-995.97, -542.63], [-999.5, -545.86]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1031.06, -627.51], [-1030.87, -627.72], [-1032.2, -628.96], [-1027.19, -634.26], [-1017.39, -625.07], [-1019.3, -623.04], [-1016.75, -620.63], [-1019.36, -617.85], [-1021.93, -620.26], [-1022.58, -619.56], [-1031.06, -627.51]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-909.01, -518.21], [-902.66, -525.15], [-893.99, -517.27], [-900.33, -510.34], [-909.01, -518.21]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-930.54, -495.9], [-925.35, -501.6], [-922.02, -498.59], [-921.82, -498.82], [-918.87, -496.15], [-919.08, -495.92], [-916.26, -493.38], [-916.6, -493.0], [-915.53, -492.03], [-919.92, -487.2], [-920.99, -488.17], [-921.13, -488.04], [-922.38, -489.17], [-922.7, -488.81], [-930.54, -495.9]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-968.73, -518.38], [-964.88, -522.64], [-965.27, -523.0], [-958.02, -531.04], [-951.88, -525.55], [-962.99, -513.24], [-968.73, -518.38]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1006.99, -613.15], [-1002.68, -617.83], [-996.13, -611.84], [-1000.44, -607.16], [-1006.99, -613.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1036.7, -622.27], [-1027.47, -622.69], [-1027.12, -615.08], [-1036.35, -614.66], [-1036.38, -615.19], [-1038.48, -615.1], [-1038.78, -621.89], [-1036.68, -621.98], [-1036.7, -622.27]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-925.45, -504.35], [-919.91, -510.33], [-911.69, -502.78], [-912.02, -502.41], [-909.0, -499.63], [-914.21, -494.0], [-925.45, -504.35]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1005.54, -554.33], [-994.9, -565.94], [-990.82, -562.22], [-991.97, -560.96], [-990.47, -559.6], [-996.49, -553.03], [-996.83, -553.34], [-1000.29, -549.56], [-1000.77, -549.98], [-1001.56, -549.12], [-1006.1, -553.24], [-1005.31, -554.11], [-1005.54, -554.33]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-994.94, -298.77], [-988.43, -305.87], [-974.68, -293.31], [-995.32, -270.87], [-996.53, -271.97], [-998.05, -273.36], [-1010.39, -284.62], [-1015.76, -289.54], [-1016.32, -300.77], [-1016.54, -305.36], [-998.95, -306.21], [-998.25, -291.95], [-994.62, -292.12], [-994.94, -298.77]], "holes": []}, "height": 35.0}, {"shape": {"outer": [[-940.28, -426.52], [-928.57, -439.3], [-901.18, -414.4], [-912.89, -401.62], [-940.28, -426.52]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-828.21, -315.64], [-826.5, -314.05], [-825.08, -315.57], [-812.81, -304.14], [-818.89, -297.67], [-832.24, -310.09], [-830.38, -312.09], [-830.99, -312.66], [-828.21, -315.64]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1894.65, -890.9], [-1876.98, -891.49], [-1876.59, -879.9], [-1894.26, -879.3], [-1894.65, -890.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1854.62, -839.96], [-1833.34, -840.84], [-1834.11, -859.54], [-1855.39, -858.67], [-1854.62, -839.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1910.51, -843.23], [-1896.09, -843.53], [-1895.55, -824.71], [-1909.97, -824.29], [-1910.14, -826.58], [-1912.87, -826.5], [-1912.93, -828.68], [-1910.1, -828.76], [-1910.25, -834.3], [-1915.27, -834.05], [-1915.37, -837.32], [-1910.34, -837.46], [-1910.51, -843.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2171.32, -885.23], [-2144.61, -886.2], [-2145.15, -900.76], [-2171.85, -899.77], [-2171.32, -885.23]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-768.47, -228.01], [-773.81, -222.28], [-772.71, -221.25], [-775.15, -218.62], [-770.36, -214.22], [-767.79, -216.99], [-764.95, -214.37], [-759.74, -219.98], [-762.7, -222.7], [-757.9, -227.86], [-755.2, -225.37], [-749.98, -230.99], [-752.71, -233.49], [-747.94, -238.63], [-745.26, -236.15], [-740.2, -241.58], [-742.96, -244.13], [-740.46, -246.81], [-746.41, -252.3], [-748.63, -249.91], [-747.47, -248.83], [-747.79, -248.49], [-748.7, -249.32], [-753.9, -243.73], [-754.09, -243.9], [-758.3, -239.38], [-757.26, -238.43], [-757.69, -237.96], [-758.5, -238.71], [-763.79, -233.02], [-763.95, -233.17], [-768.19, -228.6], [-767.12, -227.62], [-767.55, -227.15], [-768.47, -228.01]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-812.67, -252.34], [-807.91, -247.94], [-805.36, -250.7], [-804.46, -249.87], [-799.16, -255.56], [-800.13, -256.46], [-795.41, -261.54], [-794.55, -260.74], [-789.41, -266.27], [-790.39, -267.17], [-785.6, -272.33], [-784.69, -271.49], [-779.52, -277.05], [-780.51, -277.97], [-777.98, -280.7], [-782.77, -285.13], [-785.2, -282.51], [-788.06, -285.16], [-793.23, -279.58], [-790.34, -276.91], [-795.15, -271.73], [-797.94, -274.3], [-803.17, -268.68], [-800.38, -266.09], [-804.91, -261.22], [-807.57, -263.68], [-812.96, -257.87], [-810.04, -255.17], [-812.67, -252.34]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-752.94, -322.46], [-742.19, -334.36], [-717.18, -362.12], [-715.04, -364.43], [-697.31, -348.54], [-694.64, -346.14], [-722.2, -315.61], [-724.08, -313.52], [-729.24, -318.14], [-738.18, -308.24], [-748.67, -317.64], [-748.18, -318.19], [-752.94, -322.46]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-684.57, -342.1], [-679.74, -347.22], [-680.83, -348.23], [-678.11, -351.13], [-676.91, -350.01], [-672.14, -355.1], [-648.97, -333.56], [-633.99, -319.65], [-688.92, -260.95], [-726.94, -296.29], [-722.28, -301.27], [-723.25, -302.18], [-720.2, -305.44], [-719.21, -304.54], [-714.66, -309.46], [-692.39, -289.05], [-693.34, -288.02], [-688.49, -283.59], [-683.57, -279.11], [-679.1, -283.97], [-669.42, -294.48], [-677.89, -302.21], [-673.18, -307.34], [-679.67, -313.26], [-679.84, -314.9], [-669.54, -325.82], [-668.43, -326.99], [-684.57, -342.1]], "holes": []}, "height": 56.0}, {"shape": {"outer": [[-758.36, -380.08], [-750.26, -372.11], [-754.26, -368.08], [-762.36, -376.05], [-761.88, -376.53], [-763.09, -377.71], [-759.89, -380.94], [-758.68, -379.76], [-758.36, -380.08]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-900.82, -470.41], [-900.21, -471.06], [-901.3, -472.09], [-897.01, -476.65], [-895.91, -475.63], [-895.45, -476.11], [-885.22, -466.54], [-890.58, -460.84], [-900.82, -470.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-830.73, -428.91], [-828.11, -426.53], [-826.89, -427.85], [-823.89, -425.12], [-841.93, -405.41], [-847.55, -410.51], [-830.73, -428.91]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-835.43, -486.64], [-831.83, -483.4], [-832.64, -482.51], [-794.47, -448.19], [-793.75, -448.99], [-790.31, -445.9], [-801.98, -433.01], [-847.19, -473.66], [-835.43, -486.64]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-763.51, -376.66], [-754.53, -367.83], [-759.67, -362.66], [-768.64, -371.49], [-763.51, -376.66]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-878.1, -439.48], [-867.0, -451.45], [-860.56, -445.52], [-864.66, -441.11], [-864.53, -440.99], [-868.7, -436.49], [-868.83, -436.61], [-871.67, -433.55], [-878.1, -439.48]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-856.35, -416.85], [-841.03, -433.46], [-835.07, -428.01], [-850.4, -411.4], [-856.35, -416.85]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-772.01, -362.55], [-770.07, -364.63], [-775.44, -369.58], [-772.18, -373.08], [-760.51, -362.32], [-765.7, -356.73], [-772.01, -362.55]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-862.24, -439.56], [-856.5, -434.34], [-859.74, -430.81], [-859.57, -430.65], [-862.06, -427.94], [-862.22, -428.1], [-863.69, -426.49], [-869.57, -431.85], [-867.31, -434.31], [-867.44, -434.42], [-864.28, -437.88], [-864.01, -437.64], [-862.24, -439.56]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-823.05, -410.09], [-816.69, -404.22], [-820.36, -400.26], [-820.17, -400.09], [-823.89, -396.07], [-824.09, -396.25], [-826.99, -393.14], [-833.35, -399.0], [-823.05, -410.09]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-862.97, -425.78], [-849.25, -440.56], [-843.47, -435.23], [-857.2, -420.45], [-862.97, -425.78]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-908.39, -463.01], [-907.96, -463.47], [-909.29, -464.69], [-904.33, -470.04], [-903.08, -468.89], [-902.92, -469.07], [-891.98, -459.01], [-897.17, -453.42], [-901.99, -457.86], [-902.35, -457.46], [-908.39, -463.01]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-883.45, -493.3], [-870.92, -482.3], [-867.11, -486.62], [-870.87, -489.93], [-869.59, -491.37], [-878.36, -499.06], [-883.45, -493.3]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-895.03, -478.77], [-889.64, -484.51], [-877.83, -473.49], [-883.22, -467.75], [-895.03, -478.77]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-862.4, -499.84], [-853.49, -509.45], [-852.71, -508.73], [-849.91, -511.75], [-844.96, -507.19], [-856.66, -494.56], [-862.4, -499.84]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-769.52, -407.36], [-756.82, -421.29], [-750.68, -415.74], [-763.38, -401.8], [-765.83, -404.01], [-766.69, -403.07], [-769.79, -405.87], [-768.93, -406.82], [-769.52, -407.36]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-856.46, -494.13], [-844.8, -506.71], [-839.55, -501.88], [-842.88, -498.27], [-842.1, -497.55], [-850.41, -488.58], [-856.46, -494.13]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-771.86, -350.67], [-774.59, -347.79], [-773.52, -346.78], [-777.45, -342.62], [-785.79, -350.45], [-782.02, -354.44], [-782.68, -355.06], [-779.79, -358.13], [-778.74, -357.13], [-776.34, -359.68], [-772.03, -355.64], [-774.44, -353.1], [-771.86, -350.67]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-884.52, -445.55], [-875.29, -455.49], [-869.56, -450.22], [-878.79, -440.26], [-879.08, -440.53], [-880.49, -439.03], [-885.7, -443.83], [-884.3, -445.34], [-884.52, -445.55]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-814.66, -420.38], [-819.68, -424.95], [-816.06, -428.9], [-811.04, -424.33], [-814.66, -420.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-892.98, -453.22], [-882.07, -465.13], [-875.36, -459.04], [-883.77, -449.86], [-884.41, -450.44], [-886.91, -447.71], [-892.98, -453.22]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-840.32, -406.32], [-838.98, -405.09], [-839.41, -404.63], [-836.12, -401.62], [-835.69, -402.08], [-834.82, -401.29], [-832.6, -403.7], [-832.07, -403.23], [-828.56, -407.04], [-829.08, -407.51], [-824.88, -412.09], [-830.37, -417.11], [-840.32, -406.32]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-889.15, -486.95], [-886.07, -490.32], [-885.49, -489.78], [-883.12, -492.37], [-876.88, -486.71], [-878.83, -484.58], [-874.79, -480.91], [-878.29, -477.08], [-889.15, -486.95]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-748.51, -400.68], [-745.44, -404.12], [-742.26, -401.32], [-738.81, -405.2], [-736.99, -403.58], [-736.82, -403.79], [-732.91, -400.33], [-739.58, -392.84], [-741.15, -394.23], [-745.97, -388.82], [-750.2, -392.57], [-745.42, -397.93], [-748.51, -400.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-795.22, -363.11], [-792.15, -366.38], [-792.62, -366.82], [-784.39, -375.57], [-778.49, -370.07], [-789.79, -358.04], [-795.22, -363.11]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-805.62, -369.8], [-793.96, -382.24], [-787.1, -375.87], [-794.11, -368.39], [-794.88, -369.11], [-799.53, -364.14], [-805.62, -369.8]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-779.73, -379.72], [-776.24, -376.46], [-775.97, -376.73], [-774.5, -375.35], [-765.64, -384.78], [-769.86, -388.74], [-773.79, -384.57], [-774.53, -385.25], [-779.73, -379.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-252.18, -439.28], [-248.7, -436.15], [-246.75, -405.14], [-250.39, -401.12], [-270.42, -419.17], [-252.18, -439.28]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-226.54, -400.27], [-205.85, -422.38], [-199.56, -416.55], [-179.52, -397.93], [-205.72, -369.93], [-223.42, -386.36], [-225.96, -386.26], [-226.54, -400.27]], "holes": []}, "height": 31.5}, {"shape": {"outer": [[-226.97, -381.28], [-221.81, -381.43], [-207.4, -368.01], [-222.36, -352.05], [-223.47, -351.41], [-225.13, -351.6], [-226.19, -352.44], [-226.97, -381.28]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-228.53, -440.47], [-226.0, -441.27], [-208.62, -424.87], [-223.61, -409.11], [-227.4, -408.97], [-228.53, -440.47]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[203.44, -99.24], [212.02, -108.5], [227.59, -93.9], [230.44, -91.32], [221.97, -82.19], [203.44, -99.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[181.68, -194.17], [188.25, -201.11], [218.55, -173.22], [217.83, -171.58], [195.22, -170.76], [195.16, -172.1], [194.53, -185.6], [191.69, -185.37], [181.68, -194.17]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-428.06, -244.75], [-412.61, -231.08], [-410.49, -229.02], [-407.12, -226.02], [-407.97, -225.07], [-401.22, -219.06], [-413.14, -205.76], [-423.17, -199.27], [-448.62, -221.93], [-428.06, -244.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-254.78, -541.56], [-253.92, -514.97], [-262.59, -514.72], [-264.87, -516.65], [-265.94, -541.03], [-254.78, -541.56]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-299.45, -535.26], [-294.22, -540.83], [-292.7, -539.43], [-292.39, -539.77], [-289.18, -536.79], [-288.79, -537.21], [-284.79, -533.47], [-285.17, -533.06], [-282.49, -530.58], [-287.01, -525.75], [-288.03, -526.69], [-288.72, -525.96], [-290.21, -527.34], [-290.78, -526.72], [-298.01, -533.45], [-297.77, -533.7], [-299.45, -535.26]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-266.09, -513.75], [-251.13, -500.06], [-256.53, -494.19], [-271.51, -507.88], [-266.09, -513.75]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-291.72, -540.9], [-289.75, -543.06], [-291.69, -544.83], [-288.23, -548.6], [-274.04, -535.72], [-277.13, -532.35], [-278.55, -533.63], [-280.9, -531.07], [-291.72, -540.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2171.3, -584.43], [-2170.88, -574.31], [-2177.66, -574.03], [-2177.95, -581.11], [-2175.6, -581.21], [-2175.73, -584.24], [-2171.3, -584.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2158.95, -633.19], [-2141.15, -633.59], [-2140.77, -616.83], [-2158.57, -616.41], [-2158.95, -633.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2183.45, -631.13], [-2165.99, -631.65], [-2165.37, -611.07], [-2166.48, -611.04], [-2166.3, -604.96], [-2181.64, -604.5], [-2181.81, -610.28], [-2182.83, -610.25], [-2183.45, -631.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2202.72, -558.24], [-2193.95, -558.47], [-2193.61, -545.03], [-2200.47, -544.85], [-2200.55, -547.89], [-2202.47, -547.83], [-2202.72, -558.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2161.72, -517.56], [-2138.45, -518.53], [-2138.17, -512.0], [-2161.45, -511.04], [-2161.72, -517.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2190.99, -584.77], [-2182.36, -585.19], [-2181.73, -572.32], [-2188.76, -571.98], [-2188.86, -574.15], [-2190.47, -574.07], [-2190.99, -584.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2216.53, -605.68], [-2217.49, -625.3], [-2204.68, -625.93], [-2203.73, -606.3], [-2216.53, -605.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2162.64, -529.54], [-2138.62, -530.55], [-2138.32, -523.36], [-2162.33, -522.35], [-2162.64, -529.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2154.29, -556.47], [-2136.82, -557.09], [-2136.48, -547.63], [-2153.95, -547.0], [-2154.29, -556.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2249.76, -619.1], [-2226.79, -619.82], [-2227.19, -632.61], [-2250.17, -631.88], [-2249.76, -619.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2158.23, -610.31], [-2140.54, -610.62], [-2140.26, -594.57], [-2157.95, -594.26], [-2158.23, -610.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2193.73, -586.72], [-2193.06, -571.2], [-2201.46, -570.83], [-2201.98, -582.76], [-2200.0, -582.84], [-2200.15, -586.44], [-2193.73, -586.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2150.83, -580.51], [-2150.61, -575.53], [-2152.62, -575.44], [-2152.48, -572.06], [-2138.72, -572.66], [-2139.08, -581.02], [-2150.83, -580.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2177.69, -567.55], [-2165.29, -568.06], [-2164.94, -559.68], [-2177.34, -559.17], [-2177.69, -567.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2158.31, -590.38], [-2137.95, -591.04], [-2137.67, -582.33], [-2158.02, -581.66], [-2158.31, -590.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2153.81, -541.84], [-2139.13, -542.43], [-2138.77, -533.61], [-2153.45, -533.02], [-2153.81, -541.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2249.8, -612.0], [-2226.66, -612.88], [-2226.19, -600.58], [-2249.34, -599.7], [-2249.8, -612.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2156.55, -568.71], [-2140.64, -569.36], [-2140.52, -566.3], [-2137.76, -566.41], [-2137.58, -561.74], [-2156.53, -560.99], [-2156.59, -562.34], [-2158.18, -562.27], [-2158.32, -565.75], [-2156.44, -565.83], [-2156.55, -568.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2154.17, -508.95], [-2136.58, -509.5], [-2136.38, -503.07], [-2142.5, -502.88], [-2142.46, -501.43], [-2152.42, -501.12], [-2152.47, -503.04], [-2153.99, -502.99], [-2154.17, -508.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2197.39, -630.1], [-2189.2, -630.23], [-2188.83, -606.66], [-2197.01, -606.53], [-2197.39, -630.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-505.05, -757.78], [-499.37, -752.51], [-514.77, -736.02], [-520.46, -741.28], [-505.05, -757.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-503.59, -791.14], [-501.52, -793.4], [-499.98, -792.0], [-488.09, -805.01], [-483.52, -800.86], [-493.35, -790.11], [-493.59, -790.34], [-497.74, -785.82], [-503.59, -791.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-473.77, -718.02], [-467.91, -712.53], [-471.25, -709.0], [-470.82, -708.6], [-474.48, -704.73], [-474.9, -705.13], [-478.08, -701.76], [-483.94, -707.25], [-480.81, -710.55], [-481.1, -710.83], [-477.44, -714.72], [-477.15, -714.44], [-473.77, -718.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-574.0, -786.65], [-569.0, -792.05], [-570.19, -793.16], [-575.06, -787.91], [-581.12, -793.48], [-570.61, -804.82], [-564.08, -798.8], [-566.63, -796.04], [-565.27, -794.79], [-561.93, -798.38], [-557.55, -794.35], [-568.97, -782.02], [-574.0, -786.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-489.0, -715.38], [-472.75, -732.79], [-469.45, -729.74], [-470.95, -728.13], [-468.02, -725.41], [-481.18, -711.31], [-482.03, -712.09], [-482.57, -711.5], [-484.37, -713.18], [-485.42, -712.06], [-489.0, -715.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-470.34, -781.15], [-448.87, -761.88], [-459.72, -749.88], [-481.18, -769.16], [-470.34, -781.15]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-496.01, -738.7], [-491.27, -734.32], [-494.59, -730.75], [-493.21, -729.47], [-500.73, -721.37], [-505.89, -726.12], [-501.96, -730.36], [-502.93, -731.25], [-496.01, -738.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-581.16, -823.5], [-576.03, -828.98], [-571.83, -825.08], [-571.55, -825.37], [-567.26, -821.38], [-567.54, -821.09], [-564.24, -818.01], [-569.38, -812.53], [-581.16, -823.5]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-495.08, -719.16], [-492.5, -721.99], [-493.73, -723.11], [-486.61, -730.91], [-481.23, -726.02], [-485.04, -721.86], [-484.62, -721.48], [-490.51, -715.02], [-495.08, -719.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-475.52, -701.13], [-466.94, -710.07], [-460.04, -703.51], [-463.52, -699.9], [-463.33, -699.71], [-468.15, -694.68], [-471.3, -697.69], [-471.59, -697.39], [-475.52, -701.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-527.65, -744.48], [-526.07, -746.21], [-526.43, -746.53], [-522.75, -750.58], [-523.23, -751.01], [-519.99, -754.59], [-519.51, -754.15], [-517.29, -756.6], [-516.93, -756.27], [-513.8, -759.74], [-508.87, -755.31], [-522.73, -740.04], [-527.65, -744.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-529.58, -749.53], [-516.04, -764.3], [-521.81, -769.54], [-537.01, -752.96], [-533.62, -749.86], [-531.95, -751.69], [-529.58, -749.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-558.64, -775.05], [-544.54, -790.19], [-537.43, -783.62], [-550.62, -769.44], [-552.65, -771.32], [-553.55, -770.35], [-558.64, -775.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-456.12, -706.98], [-450.24, -701.63], [-455.92, -695.45], [-455.37, -694.94], [-459.08, -690.89], [-459.63, -691.39], [-461.89, -688.94], [-467.53, -694.08], [-462.14, -699.96], [-462.37, -700.16], [-456.12, -706.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-492.83, -786.85], [-480.49, -800.39], [-473.76, -794.3], [-486.09, -780.76], [-489.16, -783.53], [-490.98, -781.52], [-493.67, -783.96], [-491.84, -785.96], [-492.83, -786.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-587.43, -812.76], [-587.94, -812.23], [-589.63, -813.82], [-594.64, -808.53], [-593.16, -807.14], [-594.29, -805.94], [-584.73, -796.96], [-578.09, -803.97], [-587.43, -812.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-478.77, -774.13], [-467.82, -786.5], [-474.19, -792.1], [-485.14, -779.73], [-482.6, -777.5], [-484.47, -775.39], [-481.85, -773.09], [-479.98, -775.2], [-478.77, -774.13]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-504.11, -744.2], [-498.59, -739.08], [-501.57, -735.88], [-501.29, -735.62], [-504.43, -732.25], [-504.72, -732.52], [-508.18, -728.81], [-514.01, -734.23], [-507.33, -741.36], [-507.03, -741.08], [-504.11, -744.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-509.75, -797.69], [-508.6, -798.91], [-509.07, -799.36], [-503.67, -805.16], [-503.2, -804.71], [-499.91, -808.25], [-500.5, -808.81], [-494.91, -814.82], [-494.31, -814.27], [-493.09, -815.57], [-488.56, -811.39], [-489.7, -810.17], [-487.89, -808.49], [-502.28, -793.05], [-502.84, -793.56], [-503.97, -792.34], [-509.75, -797.69]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-582.75, -821.16], [-579.29, -817.91], [-579.8, -817.37], [-574.86, -812.73], [-579.29, -808.06], [-580.35, -809.06], [-581.33, -808.02], [-588.66, -814.92], [-582.75, -821.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-516.16, -803.35], [-512.29, -807.65], [-513.9, -809.09], [-511.09, -812.21], [-511.34, -812.44], [-508.66, -815.41], [-508.17, -814.96], [-502.32, -821.48], [-496.94, -816.66], [-498.84, -814.56], [-498.76, -814.49], [-501.61, -811.3], [-501.06, -810.81], [-504.78, -806.68], [-505.34, -807.18], [-508.24, -803.95], [-508.93, -804.56], [-512.75, -800.31], [-516.16, -803.35]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-537.24, -755.57], [-520.76, -773.74], [-524.45, -777.05], [-525.85, -775.53], [-528.54, -777.95], [-534.41, -771.49], [-532.94, -770.18], [-534.97, -767.95], [-536.53, -769.35], [-542.48, -762.8], [-539.81, -760.4], [-541.07, -759.02], [-537.24, -755.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-544.85, -761.5], [-528.08, -779.83], [-532.73, -784.05], [-549.5, -765.73], [-544.85, -761.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-555.48, -664.81], [-546.94, -657.12], [-560.2, -642.51], [-568.74, -650.2], [-555.48, -664.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-500.44, -658.85], [-486.31, -674.57], [-479.31, -668.34], [-493.45, -652.6], [-500.44, -658.85]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-536.22, -694.87], [-530.63, -689.8], [-520.96, -700.37], [-526.55, -705.45], [-536.22, -694.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-624.03, -773.62], [-621.19, -771.05], [-620.75, -771.53], [-616.95, -768.12], [-617.39, -767.64], [-611.55, -762.38], [-616.5, -756.93], [-628.97, -768.16], [-624.03, -773.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-564.89, -719.8], [-554.78, -730.8], [-550.09, -726.53], [-555.92, -720.17], [-554.94, -719.28], [-559.22, -714.62], [-559.5, -714.88], [-560.28, -714.05], [-563.55, -717.03], [-562.78, -717.87], [-564.89, -719.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-585.41, -742.09], [-582.17, -739.28], [-583.09, -738.22], [-580.58, -736.04], [-579.65, -737.1], [-579.43, -736.91], [-569.49, -748.32], [-575.48, -753.48], [-585.41, -742.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-598.82, -753.67], [-593.45, -759.45], [-594.53, -760.45], [-588.63, -766.8], [-583.91, -762.45], [-593.03, -752.64], [-594.73, -754.2], [-596.88, -751.88], [-598.82, -753.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-527.71, -628.68], [-521.62, -623.22], [-525.67, -618.74], [-525.24, -618.35], [-528.67, -614.56], [-529.09, -614.95], [-531.7, -612.06], [-531.94, -612.28], [-532.88, -611.24], [-538.49, -616.27], [-537.55, -617.31], [-537.79, -617.54], [-527.71, -628.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-570.06, -727.76], [-566.62, -731.52], [-566.23, -731.17], [-560.04, -737.95], [-556.17, -734.44], [-560.65, -729.54], [-559.79, -728.77], [-564.95, -723.13], [-566.78, -724.78], [-567.84, -723.61], [-569.79, -725.38], [-568.73, -726.56], [-570.06, -727.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-627.56, -752.82], [-616.88, -743.26], [-630.19, -728.48], [-640.88, -738.04], [-627.56, -752.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-513.68, -673.55], [-503.29, -684.82], [-496.41, -678.51], [-506.8, -667.24], [-513.68, -673.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-666.24, -731.99], [-654.46, -744.73], [-649.18, -739.88], [-660.96, -727.14], [-666.24, -731.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-600.53, -742.27], [-584.11, -760.42], [-577.69, -754.65], [-584.79, -746.81], [-586.29, -748.16], [-588.36, -745.87], [-586.8, -744.46], [-592.71, -737.93], [-595.48, -740.42], [-596.82, -738.93], [-600.53, -742.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-647.54, -738.37], [-646.81, -737.7], [-645.71, -738.91], [-640.21, -733.96], [-644.44, -729.29], [-643.93, -728.83], [-647.19, -725.22], [-647.7, -725.68], [-651.28, -721.75], [-652.64, -722.98], [-653.73, -721.77], [-657.99, -725.6], [-656.9, -726.81], [-657.52, -727.37], [-647.54, -738.37]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-494.97, -678.6], [-489.81, -673.85], [-492.75, -670.67], [-492.39, -670.34], [-499.22, -662.99], [-505.06, -668.37], [-498.97, -674.93], [-498.64, -674.63], [-494.97, -678.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-542.84, -700.13], [-539.43, -703.77], [-538.77, -703.17], [-531.8, -710.61], [-526.62, -705.79], [-537.01, -694.69], [-542.84, -700.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-615.06, -771.63], [-614.41, -771.04], [-615.14, -770.23], [-613.02, -768.32], [-612.29, -769.13], [-608.68, -765.86], [-598.27, -777.32], [-604.66, -783.08], [-615.06, -771.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-509.83, -654.69], [-500.53, -646.49], [-505.61, -640.78], [-514.9, -648.98], [-509.83, -654.69]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-622.98, -778.65], [-619.19, -782.68], [-619.68, -783.15], [-615.79, -787.29], [-615.3, -786.83], [-612.54, -789.77], [-605.95, -783.63], [-616.39, -772.5], [-622.98, -778.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-529.44, -634.6], [-524.56, -640.1], [-521.73, -637.59], [-521.36, -638.0], [-518.0, -635.04], [-518.37, -634.63], [-515.24, -631.87], [-518.06, -628.69], [-516.63, -627.43], [-518.69, -625.12], [-529.44, -634.6]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-580.5, -734.33], [-569.32, -746.23], [-562.94, -740.3], [-574.12, -728.39], [-575.27, -729.47], [-576.0, -728.69], [-578.82, -731.33], [-578.09, -732.09], [-580.5, -734.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-555.42, -716.49], [-551.38, -712.75], [-552.18, -711.9], [-550.1, -709.97], [-549.29, -710.8], [-541.55, -719.06], [-541.76, -719.25], [-539.8, -721.36], [-545.13, -726.31], [-547.09, -724.2], [-547.69, -724.75], [-555.42, -716.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-515.41, -673.57], [-504.3, -685.74], [-504.54, -685.96], [-503.06, -687.58], [-509.22, -693.16], [-510.7, -691.54], [-511.21, -691.99], [-522.32, -679.83], [-520.68, -678.34], [-521.55, -677.39], [-517.22, -673.47], [-516.35, -674.42], [-515.41, -673.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-545.92, -623.36], [-535.74, -634.41], [-529.83, -629.01], [-532.72, -625.88], [-532.38, -625.56], [-536.28, -621.32], [-536.62, -621.64], [-540.02, -617.96], [-545.92, -623.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-549.85, -706.49], [-544.28, -701.43], [-533.96, -712.7], [-539.52, -717.75], [-542.67, -714.32], [-543.22, -714.82], [-547.13, -710.55], [-546.57, -710.06], [-549.85, -706.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-627.34, -714.08], [-615.65, -726.85], [-556.04, -672.66], [-567.73, -659.9], [-627.34, -714.08]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-517.04, -649.25], [-507.19, -640.26], [-507.34, -640.09], [-506.35, -639.19], [-511.11, -634.02], [-512.09, -634.92], [-512.4, -634.59], [-515.39, -637.3], [-515.77, -636.88], [-519.75, -640.5], [-519.35, -640.93], [-522.26, -643.57], [-517.04, -649.25]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-529.94, -687.26], [-522.51, -680.46], [-511.1, -692.81], [-518.54, -699.62], [-529.94, -687.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-539.38, -657.46], [-532.71, -651.46], [-548.96, -633.54], [-555.62, -639.55], [-539.38, -657.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-608.54, -763.61], [-597.65, -775.45], [-591.71, -770.02], [-602.59, -758.18], [-608.54, -763.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-629.2, -767.37], [-618.23, -757.31], [-622.46, -752.72], [-633.43, -762.79], [-629.2, -767.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-406.4, -684.9], [-399.67, -678.82], [-401.33, -677.0], [-401.73, -677.36], [-404.38, -674.45], [-403.97, -674.09], [-405.8, -672.08], [-406.87, -673.05], [-407.25, -672.63], [-406.18, -671.66], [-408.12, -669.53], [-408.52, -669.89], [-410.7, -667.48], [-410.31, -667.12], [-412.22, -665.02], [-418.95, -671.11], [-412.85, -677.81], [-412.14, -677.16], [-411.73, -677.61], [-412.45, -678.26], [-406.4, -684.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-378.51, -687.32], [-367.11, -699.5], [-361.02, -693.85], [-372.42, -681.66], [-378.51, -687.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-355.91, -591.04], [-353.18, -594.07], [-353.54, -594.38], [-345.46, -603.36], [-338.75, -597.36], [-349.56, -585.36], [-349.83, -585.6], [-350.86, -584.44], [-356.75, -589.7], [-355.7, -590.85], [-355.91, -591.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-359.91, -634.81], [-355.79, -639.25], [-351.2, -635.04], [-355.33, -630.59], [-359.91, -634.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-322.29, -659.57], [-315.66, -653.63], [-328.59, -639.26], [-335.23, -645.2], [-322.29, -659.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-316.47, -651.47], [-316.04, -651.09], [-315.19, -652.04], [-309.62, -647.1], [-310.45, -646.17], [-310.11, -645.87], [-313.04, -642.57], [-312.63, -642.2], [-316.74, -637.59], [-317.16, -637.96], [-319.91, -634.87], [-321.96, -636.68], [-324.73, -633.57], [-328.07, -636.52], [-325.24, -639.7], [-325.76, -640.16], [-323.01, -643.25], [-323.44, -643.63], [-316.47, -651.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-329.88, -591.5], [-343.22, -576.93], [-336.4, -570.72], [-323.05, -585.28], [-329.88, -591.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-312.06, -572.48], [-309.73, -574.99], [-310.01, -575.25], [-305.96, -579.64], [-297.53, -571.91], [-303.91, -565.01], [-312.06, -572.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-413.47, -704.75], [-415.48, -702.6], [-417.21, -704.22], [-421.1, -700.07], [-405.29, -685.35], [-400.87, -690.05], [-401.91, -691.03], [-400.43, -692.6], [-413.47, -704.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-462.07, -590.53], [-453.65, -583.09], [-459.54, -576.47], [-424.66, -545.62], [-426.77, -543.25], [-422.95, -539.87], [-417.14, -546.39], [-415.59, -545.01], [-412.41, -548.58], [-412.8, -550.97], [-414.8, -551.89], [-415.38, -556.77], [-413.37, -559.32], [-413.89, -566.95], [-422.53, -566.37], [-423.46, -564.48], [-428.04, -564.35], [-429.63, -566.16], [-431.81, -566.31], [-434.14, -568.39], [-446.39, -579.39], [-441.93, -584.32], [-462.41, -602.71], [-480.71, -582.48], [-482.4, -584.0], [-485.36, -580.73], [-488.5, -583.55], [-489.98, -581.92], [-498.47, -589.58], [-494.1, -594.39], [-497.61, -597.55], [-491.89, -603.85], [-488.87, -601.12], [-485.06, -605.31], [-487.53, -607.54], [-482.11, -613.5], [-477.86, -609.66], [-475.61, -612.13], [-476.76, -613.17], [-474.61, -615.52], [-478.55, -619.1], [-472.63, -625.57], [-468.02, -621.38], [-465.26, -624.39], [-467.1, -626.07], [-463.67, -629.82], [-461.78, -628.09], [-459.1, -630.99], [-463.6, -635.1], [-458.08, -641.1], [-453.03, -636.5], [-450.18, -639.59], [-435.41, -626.1], [-437.98, -623.3], [-436.59, -622.03], [-455.64, -601.36], [-447.69, -594.07], [-444.52, -594.27], [-434.31, -585.04], [-417.16, -603.86], [-421.36, -607.67], [-416.32, -613.2], [-404.91, -602.87], [-395.66, -594.53], [-387.65, -587.28], [-366.43, -568.1], [-384.64, -548.09], [-375.69, -540.0], [-360.86, -556.31], [-356.03, -551.95], [-354.25, -553.93], [-348.2, -548.49], [-350.02, -546.48], [-347.2, -543.95], [-366.7, -522.34], [-368.94, -524.36], [-372.33, -520.59], [-368.8, -517.43], [-385.41, -498.96], [-388.9, -502.14], [-390.75, -500.13], [-395.24, -504.2], [-398.18, -500.99], [-403.33, -505.59], [-401.23, -507.94], [-403.5, -509.97], [-386.09, -529.4], [-387.07, -530.26], [-388.04, -529.19], [-392.76, -533.37], [-395.37, -530.44], [-394.4, -529.58], [-407.98, -514.31], [-406.55, -513.06], [-410.71, -508.38], [-412.61, -510.06], [-414.2, -508.28], [-416.44, -510.26], [-417.19, -509.41], [-421.78, -513.46], [-420.99, -514.35], [-423.74, -516.77], [-423.14, -517.44], [-435.89, -528.7], [-437.47, -526.92], [-444.98, -533.56], [-450.91, -538.79], [-449.53, -540.35], [-470.81, -559.16], [-481.55, -568.65], [-462.07, -590.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-347.74, -583.84], [-342.54, -589.54], [-343.22, -590.14], [-339.24, -594.49], [-333.04, -588.86], [-342.2, -578.82], [-342.62, -579.21], [-343.42, -578.34], [-348.23, -582.71], [-347.44, -583.57], [-347.74, -583.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-340.68, -608.7], [-335.56, -614.26], [-325.03, -604.62], [-330.15, -599.07], [-340.68, -608.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-416.35, -647.06], [-410.04, -654.04], [-409.89, -653.91], [-407.13, -656.97], [-402.92, -653.18], [-405.73, -650.08], [-404.74, -649.2], [-411.01, -642.26], [-411.34, -642.56], [-412.27, -641.53], [-414.03, -643.1], [-413.09, -644.14], [-416.35, -647.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-330.46, -665.73], [-323.76, -659.67], [-334.22, -648.18], [-335.59, -649.42], [-336.98, -647.89], [-341.15, -651.66], [-339.75, -653.18], [-340.93, -654.24], [-330.46, -665.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-359.63, -617.59], [-361.78, -615.21], [-362.6, -615.95], [-366.33, -611.85], [-365.5, -611.1], [-371.18, -604.84], [-366.02, -600.2], [-356.73, -610.45], [-357.14, -610.82], [-354.88, -613.32], [-359.63, -617.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-378.68, -611.94], [-371.52, -620.08], [-370.89, -619.53], [-370.11, -620.42], [-364.86, -615.83], [-365.65, -614.94], [-364.55, -613.99], [-371.71, -605.85], [-372.24, -606.31], [-373.63, -604.73], [-379.63, -609.97], [-378.24, -611.55], [-378.68, -611.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-426.72, -692.39], [-421.66, -697.94], [-418.49, -695.09], [-418.11, -695.5], [-414.19, -691.95], [-414.58, -691.54], [-411.68, -688.92], [-416.75, -683.37], [-426.72, -692.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-350.27, -643.91], [-345.1, -649.51], [-334.73, -640.0], [-339.91, -634.39], [-350.27, -643.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-387.31, -660.0], [-392.83, -653.99], [-392.46, -653.65], [-400.31, -645.1], [-400.68, -645.45], [-404.47, -641.31], [-404.76, -641.58], [-408.96, -637.01], [-404.1, -632.59], [-403.8, -632.91], [-402.68, -631.88], [-402.98, -631.55], [-395.7, -624.91], [-395.33, -625.33], [-394.27, -624.37], [-394.64, -623.96], [-389.93, -619.67], [-381.92, -628.4], [-382.38, -628.82], [-374.63, -637.25], [-374.43, -637.07], [-367.26, -644.86], [-369.73, -647.12], [-368.99, -647.93], [-376.98, -655.22], [-377.72, -654.41], [-379.02, -655.59], [-378.37, -656.3], [-383.72, -661.17], [-385.94, -658.75], [-387.31, -660.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-426.59, -651.19], [-414.58, -664.62], [-420.74, -670.07], [-432.74, -656.65], [-426.59, -651.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-365.34, -598.31], [-355.41, -609.3], [-348.01, -602.66], [-357.94, -591.67], [-365.34, -598.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-302.28, -590.88], [-300.85, -592.46], [-301.95, -593.46], [-299.23, -596.44], [-298.13, -595.44], [-296.93, -596.75], [-284.91, -585.84], [-285.17, -585.56], [-283.9, -584.41], [-288.72, -579.14], [-289.98, -580.3], [-290.26, -579.99], [-302.28, -590.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-314.34, -574.21], [-306.71, -567.16], [-307.06, -566.78], [-303.94, -563.91], [-309.84, -557.58], [-320.58, -567.51], [-314.34, -574.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-363.75, -674.37], [-351.44, -687.68], [-347.36, -683.94], [-346.86, -684.48], [-344.64, -682.44], [-357.46, -668.58], [-363.75, -674.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-285.66, -682.52], [-277.68, -675.23], [-285.92, -666.26], [-286.83, -667.09], [-287.69, -666.16], [-294.76, -672.6], [-285.66, -682.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-315.96, -626.66], [-313.94, -628.89], [-313.32, -628.34], [-305.43, -637.07], [-304.36, -637.08], [-303.47, -638.05], [-303.45, -639.38], [-304.55, -640.37], [-305.56, -640.36], [-309.92, -644.27], [-317.18, -636.24], [-316.38, -635.51], [-319.04, -632.55], [-318.09, -631.7], [-319.65, -629.98], [-315.96, -626.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-434.13, -683.87], [-430.52, -687.87], [-430.55, -688.62], [-429.48, -689.8], [-427.8, -689.83], [-426.68, -688.83], [-426.71, -687.96], [-417.34, -679.55], [-422.7, -673.62], [-434.13, -683.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-358.57, -661.43], [-343.22, -678.51], [-339.28, -675.0], [-354.63, -657.92], [-358.57, -661.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-329.29, -561.31], [-323.1, -568.06], [-311.98, -557.96], [-311.81, -558.14], [-309.2, -555.75], [-313.95, -550.55], [-315.94, -552.35], [-317.03, -551.16], [-318.14, -551.18], [-329.29, -561.31]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-369.18, -680.5], [-358.22, -692.31], [-353.62, -688.09], [-364.58, -676.26], [-369.18, -680.5]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-339.1, -633.81], [-334.02, -639.35], [-322.34, -628.71], [-327.41, -623.18], [-339.1, -633.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-446.35, -672.06], [-442.6, -676.21], [-443.23, -676.77], [-437.38, -683.24], [-431.42, -677.88], [-436.08, -672.73], [-436.6, -673.19], [-437.56, -672.12], [-436.46, -671.13], [-438.89, -668.44], [-439.47, -668.97], [-441.01, -667.26], [-441.46, -667.66], [-442.84, -666.14], [-447.52, -670.33], [-446.14, -671.86], [-446.35, -672.06]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-407.42, -704.81], [-402.08, -710.55], [-401.44, -709.97], [-399.13, -712.44], [-399.76, -713.04], [-391.94, -721.43], [-390.17, -719.79], [-389.0, -721.06], [-378.17, -711.04], [-379.32, -709.81], [-377.62, -708.23], [-394.19, -690.45], [-399.02, -694.91], [-398.69, -695.25], [-400.07, -696.52], [-400.39, -696.18], [-406.15, -701.51], [-405.09, -702.65], [-407.42, -704.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-384.55, -695.45], [-374.95, -705.78], [-368.33, -699.65], [-377.93, -689.34], [-384.55, -695.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-307.34, -582.0], [-301.79, -588.01], [-293.99, -580.87], [-294.41, -580.41], [-291.57, -577.82], [-296.69, -572.26], [-307.34, -582.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-368.23, -669.2], [-364.27, -665.37], [-372.49, -656.92], [-376.46, -660.76], [-368.23, -669.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-437.36, -667.79], [-436.87, -667.35], [-439.47, -664.46], [-436.75, -662.01], [-437.69, -660.96], [-434.33, -657.96], [-423.0, -670.55], [-429.58, -676.43], [-437.36, -667.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-328.61, -597.56], [-323.49, -603.21], [-308.14, -589.35], [-313.27, -583.71], [-328.61, -597.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-332.11, -570.23], [-329.29, -573.3], [-330.44, -574.34], [-326.19, -578.95], [-324.95, -577.81], [-322.81, -580.13], [-322.27, -579.63], [-321.64, -580.32], [-317.98, -576.98], [-318.62, -576.29], [-317.8, -575.54], [-327.0, -565.55], [-332.11, -570.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-386.13, -619.16], [-375.61, -630.74], [-369.53, -625.26], [-380.22, -613.48], [-383.95, -616.85], [-383.78, -617.04], [-386.13, -619.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-298.39, -613.69], [-287.97, -625.07], [-289.0, -626.01], [-286.81, -628.39], [-291.13, -632.32], [-293.42, -629.83], [-294.35, -630.69], [-304.68, -619.41], [-302.81, -617.71], [-304.38, -615.99], [-301.47, -613.34], [-299.9, -615.06], [-298.39, -613.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-293.06, -601.59], [-287.8, -607.36], [-288.22, -607.73], [-281.85, -614.73], [-276.45, -609.85], [-278.5, -607.6], [-278.25, -607.37], [-282.0, -603.26], [-281.74, -603.03], [-287.58, -596.63], [-293.06, -601.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-270.83, -612.65], [-272.42, -610.94], [-272.63, -611.12], [-275.89, -607.61], [-276.4, -608.08], [-281.02, -603.08], [-280.51, -602.62], [-282.25, -600.73], [-276.06, -595.05], [-272.95, -598.41], [-272.39, -597.9], [-268.4, -602.22], [-269.09, -602.85], [-264.99, -607.29], [-270.83, -612.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-310.98, -627.33], [-301.17, -638.02], [-294.48, -631.92], [-297.69, -628.43], [-297.24, -628.02], [-301.0, -623.92], [-301.44, -624.33], [-304.3, -621.22], [-310.98, -627.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-296.83, -612.21], [-294.93, -614.26], [-295.16, -614.46], [-284.43, -626.0], [-279.53, -621.47], [-281.35, -619.52], [-279.57, -617.87], [-288.32, -608.45], [-288.62, -608.73], [-290.67, -606.54], [-291.23, -607.06], [-296.83, -612.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-241.23, -710.39], [-234.72, -717.5], [-231.81, -714.86], [-230.55, -716.23], [-226.23, -712.31], [-227.49, -710.92], [-225.91, -709.49], [-224.66, -710.85], [-220.91, -707.44], [-222.2, -706.03], [-218.28, -702.48], [-217.08, -703.8], [-213.41, -700.48], [-214.67, -699.09], [-213.29, -697.82], [-211.96, -699.27], [-208.22, -695.89], [-209.56, -694.42], [-208.19, -693.18], [-207.01, -694.47], [-203.36, -691.15], [-204.6, -689.78], [-203.32, -688.63], [-202.1, -689.96], [-197.79, -686.05], [-199.07, -684.65], [-195.7, -681.59], [-210.86, -664.99], [-215.21, -668.93], [-213.91, -670.34], [-218.56, -674.56], [-219.76, -673.24], [-223.47, -676.61], [-222.21, -677.99], [-223.42, -679.07], [-224.61, -677.77], [-228.37, -681.17], [-227.11, -682.55], [-228.68, -683.97], [-229.87, -682.66], [-233.53, -685.99], [-232.32, -687.32], [-233.75, -688.63], [-235.01, -687.25], [-238.63, -690.54], [-237.29, -692.02], [-240.13, -694.59], [-236.93, -698.09], [-240.41, -701.24], [-237.99, -703.89], [-240.65, -706.3], [-238.88, -708.26], [-241.23, -710.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-238.19, -654.64], [-232.23, -661.26], [-222.38, -652.45], [-228.34, -645.84], [-231.83, -648.95], [-232.66, -648.01], [-235.3, -650.37], [-234.45, -651.3], [-238.19, -654.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-225.91, -481.68], [-221.31, -486.67], [-220.09, -485.53], [-203.88, -503.0], [-199.66, -507.55], [-193.48, -514.21], [-189.23, -510.48], [-174.58, -527.29], [-230.43, -577.86], [-225.91, -481.68]], "holes": []}, "height": 31.5}, {"shape": {"outer": [[-200.99, -499.93], [-223.85, -477.15], [-223.72, -472.28], [-199.7, -451.1], [-199.61, -448.0], [-193.97, -442.55], [-191.31, -442.92], [-168.04, -422.01], [-163.16, -422.9], [-141.16, -445.36], [-153.6, -456.69], [-164.73, -466.83], [-169.51, -471.19], [-200.99, -499.93]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-152.8, -484.75], [-143.4, -495.22], [-136.81, -489.34], [-142.35, -483.17], [-146.22, -478.87], [-152.8, -484.75]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-128.63, -483.81], [-114.21, -470.66], [-137.69, -445.12], [-152.1, -458.27], [-134.99, -476.89], [-128.63, -483.81]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-182.67, -589.74], [-183.39, -590.27], [-186.47, -592.56], [-160.76, -622.37], [-151.55, -613.82], [-177.4, -584.76], [-180.76, -588.05], [-181.71, -586.72], [-183.62, -588.4], [-182.67, -589.74]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-303.87, -678.08], [-298.57, -683.96], [-298.77, -684.15], [-295.0, -688.33], [-294.8, -688.15], [-291.35, -691.97], [-284.72, -686.03], [-297.24, -672.15], [-303.87, -678.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-119.27, -548.12], [-116.44, -551.24], [-115.57, -550.47], [-103.35, -563.93], [-100.2, -561.09], [-99.09, -562.32], [-87.81, -552.15], [-87.36, -552.65], [-81.09, -547.0], [-82.64, -545.3], [-80.05, -542.96], [-89.84, -532.17], [-91.95, -529.83], [-90.96, -528.94], [-93.12, -526.56], [-94.05, -525.54], [-99.31, -530.27], [-97.92, -531.79], [-113.2, -545.55], [-114.65, -543.96], [-117.41, -546.45], [-119.27, -548.12]], "holes": []}, "height": 31.5}, {"shape": {"outer": [[-268.28, -674.69], [-264.53, -671.22], [-262.44, -673.45], [-258.56, -669.86], [-261.17, -667.04], [-258.49, -664.56], [-261.39, -661.47], [-262.61, -662.6], [-271.97, -652.56], [-281.25, -661.15], [-273.06, -669.94], [-272.87, -669.76], [-268.28, -674.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-330.09, -770.54], [-325.26, -775.65], [-316.3, -767.26], [-321.12, -762.15], [-330.09, -770.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-338.85, -727.74], [-306.06, -697.73], [-313.83, -689.31], [-346.62, -719.32], [-338.85, -727.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-319.18, -785.2], [-313.59, -791.15], [-300.11, -778.62], [-305.69, -772.65], [-319.18, -785.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-279.09, -697.72], [-266.18, -698.24], [-266.13, -696.98], [-263.2, -697.09], [-262.79, -687.08], [-272.63, -686.68], [-272.68, -687.87], [-275.13, -687.76], [-275.23, -690.07], [-278.78, -689.93], [-279.09, -697.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-325.41, -800.68], [-320.47, -796.09], [-325.42, -790.79], [-330.37, -795.38], [-325.41, -800.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-310.39, -687.13], [-299.3, -699.1], [-294.04, -694.28], [-296.7, -691.41], [-295.37, -690.19], [-303.46, -681.47], [-306.46, -684.23], [-306.82, -683.85], [-310.39, -687.13]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-279.53, -752.41], [-301.95, -751.49], [-301.8, -746.15], [-304.44, -743.03], [-309.8, -742.98], [-311.49, -740.98], [-310.49, -721.4], [-308.69, -719.39], [-303.45, -719.42], [-300.21, -717.23], [-299.73, -711.69], [-278.0, -712.31], [-277.92, -717.1], [-275.49, -720.01], [-273.2, -724.21], [-272.12, -728.48], [-272.04, -733.28], [-272.73, -738.59], [-274.82, -742.67], [-279.22, -747.67], [-279.53, -752.41]], "holes": []}, "height": 45.4}, {"shape": {"outer": [[-341.21, -780.6], [-336.46, -785.72], [-328.9, -778.73], [-333.65, -773.63], [-341.21, -780.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-359.54, -761.08], [-343.21, -778.85], [-324.12, -761.43], [-340.45, -743.66], [-349.97, -752.12], [-359.54, -761.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-679.77, -589.36], [-673.96, -595.63], [-674.87, -596.47], [-660.33, -612.17], [-662.47, -614.14], [-659.04, -617.84], [-656.62, -615.62], [-653.42, -619.07], [-636.04, -603.07], [-663.04, -573.96], [-679.77, -589.36]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-745.27, -642.64], [-742.4, -645.88], [-742.85, -646.28], [-739.17, -650.42], [-738.72, -650.02], [-735.25, -653.92], [-735.05, -653.74], [-731.02, -658.28], [-725.81, -653.68], [-733.44, -645.09], [-733.0, -644.71], [-736.64, -640.61], [-737.08, -641.0], [-739.86, -637.86], [-745.27, -642.64]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-580.88, -581.51], [-575.27, -587.54], [-564.69, -577.78], [-565.67, -576.72], [-564.12, -575.28], [-568.47, -570.59], [-570.03, -572.03], [-570.29, -571.75], [-580.88, -581.51]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-617.03, -531.15], [-610.81, -537.72], [-610.41, -537.34], [-607.67, -540.24], [-604.41, -537.18], [-603.41, -538.22], [-600.35, -535.34], [-611.15, -523.93], [-615.7, -528.21], [-614.85, -529.1], [-617.03, -531.15]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-626.75, -537.52], [-625.86, -538.49], [-625.12, -537.82], [-612.45, -551.82], [-618.94, -557.66], [-628.8, -546.77], [-628.52, -546.51], [-631.43, -543.29], [-630.64, -542.57], [-631.41, -541.71], [-626.75, -537.52]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-663.52, -697.57], [-654.9, -689.76], [-674.37, -668.42], [-681.84, -675.2], [-680.0, -677.2], [-681.15, -678.25], [-663.52, -697.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-595.68, -562.39], [-595.08, -563.04], [-596.26, -564.12], [-593.06, -567.62], [-591.88, -566.55], [-591.57, -566.88], [-588.71, -564.29], [-588.46, -564.58], [-585.07, -561.48], [-585.32, -561.21], [-581.61, -557.85], [-585.72, -553.36], [-590.21, -557.42], [-590.55, -557.06], [-593.07, -559.35], [-592.73, -559.72], [-595.68, -562.39]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-598.26, -598.35], [-592.73, -604.45], [-592.51, -604.25], [-589.7, -607.34], [-588.13, -605.93], [-587.33, -606.81], [-588.79, -608.12], [-584.93, -612.38], [-584.2, -611.73], [-581.06, -615.19], [-579.01, -613.34], [-578.27, -614.15], [-574.04, -610.32], [-590.91, -591.74], [-598.26, -598.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-649.88, -685.48], [-645.1, -681.06], [-646.55, -679.49], [-646.35, -679.31], [-656.88, -667.97], [-662.01, -672.7], [-651.46, -684.06], [-651.31, -683.94], [-649.88, -685.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-601.55, -559.57], [-597.21, -555.71], [-595.16, -558.02], [-587.99, -551.65], [-590.89, -548.4], [-589.54, -547.21], [-593.43, -542.84], [-602.1, -550.53], [-601.03, -551.74], [-605.22, -555.45], [-601.55, -559.57]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-681.38, -651.95], [-676.23, -657.62], [-671.11, -652.99], [-676.25, -647.32], [-681.38, -651.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-679.65, -718.01], [-674.2, -713.05], [-675.41, -711.74], [-670.48, -707.24], [-669.99, -707.77], [-666.45, -704.53], [-666.93, -704.01], [-666.55, -703.66], [-682.79, -685.97], [-696.53, -698.5], [-693.2, -702.13], [-692.7, -701.68], [-683.76, -711.43], [-684.81, -712.38], [-679.65, -718.01]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-626.06, -534.24], [-621.69, -530.11], [-618.74, -533.19], [-617.95, -532.44], [-613.57, -537.03], [-614.37, -537.79], [-611.33, -540.97], [-615.7, -545.11], [-618.61, -542.07], [-619.14, -542.57], [-623.57, -537.92], [-623.03, -537.42], [-626.06, -534.24]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-629.43, -664.84], [-627.66, -663.22], [-627.39, -663.53], [-622.34, -658.91], [-622.62, -658.6], [-619.72, -655.94], [-625.02, -650.18], [-615.11, -641.11], [-609.83, -646.84], [-607.02, -644.26], [-606.69, -644.62], [-601.6, -639.96], [-601.93, -639.61], [-600.2, -638.02], [-609.14, -628.32], [-610.02, -629.13], [-615.87, -622.79], [-614.87, -621.88], [-623.97, -612.01], [-633.61, -620.85], [-629.81, -624.98], [-639.84, -634.17], [-643.49, -630.23], [-653.09, -639.03], [-644.27, -648.58], [-643.26, -647.65], [-637.27, -654.15], [-638.36, -655.16], [-629.43, -664.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-712.64, -679.86], [-706.93, -686.01], [-693.7, -673.78], [-699.41, -667.64], [-712.64, -679.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-662.5, -488.24], [-652.65, -498.69], [-643.67, -490.29], [-649.29, -484.33], [-648.85, -483.92], [-650.87, -481.77], [-651.3, -482.18], [-653.52, -479.84], [-662.5, -488.24]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-738.38, -635.62], [-728.38, -646.72], [-722.51, -641.47], [-724.88, -638.84], [-724.57, -638.56], [-728.48, -634.22], [-728.79, -634.5], [-732.51, -630.37], [-738.38, -635.62]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-726.11, -664.65], [-721.55, -669.74], [-706.76, -656.59], [-711.92, -650.83], [-713.6, -652.33], [-713.79, -652.11], [-722.28, -659.66], [-721.49, -660.55], [-726.11, -664.65]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-718.77, -669.76], [-718.54, -670.02], [-719.72, -671.09], [-714.45, -676.79], [-713.28, -675.71], [-713.09, -675.91], [-701.22, -665.01], [-706.9, -658.85], [-718.77, -669.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-720.23, -639.21], [-714.86, -634.39], [-723.72, -624.61], [-725.64, -626.34], [-725.88, -626.08], [-728.97, -628.86], [-725.91, -632.24], [-726.43, -632.7], [-723.17, -636.28], [-723.01, -636.14], [-720.23, -639.21]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-648.28, -555.52], [-637.4, -567.49], [-635.84, -566.09], [-634.63, -567.43], [-628.28, -561.7], [-627.29, -562.8], [-622.78, -558.73], [-633.34, -547.11], [-639.17, -552.37], [-641.69, -549.59], [-648.28, -555.52]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-601.15, -614.24], [-590.08, -626.11], [-589.73, -625.79], [-588.37, -627.24], [-583.71, -622.92], [-585.06, -621.47], [-584.13, -620.61], [-595.2, -608.73], [-595.56, -609.08], [-597.93, -606.54], [-603.34, -611.56], [-600.99, -614.09], [-601.15, -614.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-654.24, -566.58], [-642.05, -579.52], [-646.3, -583.5], [-659.56, -569.43], [-657.86, -567.85], [-656.79, -568.98], [-654.24, -566.58]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-642.5, -577.85], [-637.8, -573.7], [-641.17, -569.92], [-639.83, -568.73], [-644.3, -563.71], [-644.69, -564.04], [-648.46, -559.82], [-649.02, -560.32], [-650.71, -558.43], [-655.8, -562.95], [-642.5, -577.85]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-590.01, -573.89], [-587.15, -571.22], [-588.36, -569.93], [-579.18, -561.37], [-574.74, -566.09], [-575.49, -566.78], [-572.69, -569.77], [-576.59, -573.41], [-579.54, -570.25], [-586.95, -577.16], [-590.01, -573.89]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-573.01, -598.1], [-564.15, -607.86], [-549.49, -594.65], [-558.35, -584.9], [-573.01, -598.1]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-609.54, -620.57], [-597.37, -633.67], [-594.49, -631.01], [-593.11, -632.5], [-589.02, -628.73], [-602.57, -614.15], [-602.93, -614.48], [-603.57, -613.78], [-605.47, -615.54], [-604.83, -616.23], [-609.54, -620.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-535.25, -559.87], [-543.09, -566.82], [-530.34, -581.08], [-522.5, -574.12], [-535.25, -559.87]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-718.99, -622.82], [-707.74, -635.11], [-684.45, -613.96], [-695.73, -601.63], [-696.18, -602.04], [-699.04, -598.92], [-703.14, -602.64], [-700.25, -605.79], [-718.99, -622.82]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-704.3, -688.15], [-697.6, -695.55], [-687.25, -686.25], [-693.36, -679.49], [-699.96, -685.43], [-700.54, -684.78], [-704.3, -688.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-611.12, -556.58], [-604.37, -563.9], [-606.31, -565.68], [-603.83, -568.36], [-607.17, -571.42], [-609.65, -568.74], [-609.96, -569.02], [-616.71, -561.7], [-616.58, -561.59], [-617.65, -560.43], [-613.46, -556.61], [-612.4, -557.76], [-611.12, -556.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-94.86, -455.95], [-90.3, -451.91], [-89.48, -451.1], [-91.08, -449.33], [-89.56, -447.97], [-90.32, -447.14], [-89.38, -446.29], [-86.57, -443.76], [-87.24, -443.01], [-83.67, -439.79], [-57.32, -416.19], [-55.3, -414.33], [-45.69, -405.55], [-44.1, -404.11], [-45.36, -402.72], [-35.85, -394.15], [-47.64, -381.01], [-49.69, -378.78], [-47.97, -377.2], [-57.49, -366.89], [-64.18, -359.45], [-65.4, -360.56], [-66.8, -359.02], [-67.63, -359.78], [-78.84, -347.43], [-81.74, -344.25], [-94.79, -356.02], [-96.61, -357.67], [-136.18, -393.38], [-137.83, -391.56], [-140.34, -393.82], [-141.85, -392.16], [-146.75, -396.58], [-148.6, -398.25], [-124.39, -424.9], [-126.43, -426.74], [-121.02, -432.71], [-118.25, -430.21], [-96.26, -454.41], [-94.86, -455.95]], "holes": []}, "height": 28.0}, {"shape": {"outer": [[-426.3, -352.2], [-401.4, -379.63], [-387.87, -366.82], [-379.49, -375.93], [-357.83, -355.55], [-369.95, -341.92], [-368.75, -340.78], [-378.53, -329.92], [-384.04, -327.71], [-391.79, -325.1], [-395.76, -328.7], [-398.21, -326.42], [-422.02, -348.28], [-426.3, -352.2]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[-436.54, -417.85], [-461.89, -388.38], [-465.26, -391.41], [-467.02, -389.47], [-512.31, -429.97], [-502.55, -440.82], [-501.14, -439.56], [-497.6, -443.48], [-468.81, -415.56], [-452.78, -432.77], [-436.54, -417.85]], "holes": []}, "height": 40.5}, {"shape": {"outer": [[-539.32, -392.42], [-536.42, -392.45], [-525.73, -382.6], [-525.77, -381.11], [-533.35, -372.65], [-529.64, -369.53], [-527.48, -369.68], [-516.36, -359.67], [-516.26, -356.52], [-517.2, -355.32], [-527.19, -344.67], [-534.08, -336.83], [-531.99, -334.87], [-531.77, -328.44], [-534.09, -326.09], [-527.16, -319.48], [-527.09, -317.04], [-533.01, -309.53], [-546.24, -294.45], [-549.07, -294.05], [-583.61, -325.34], [-591.14, -332.16], [-591.24, -335.64], [-571.61, -357.07], [-568.65, -357.52], [-560.92, -365.75], [-560.54, -368.89], [-554.91, -375.14], [-539.32, -392.42]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[-513.99, -352.33], [-507.14, -359.64], [-508.06, -360.5], [-504.43, -364.37], [-502.47, -362.54], [-501.59, -363.47], [-494.68, -357.02], [-495.6, -356.04], [-493.54, -354.12], [-497.33, -350.08], [-499.52, -352.12], [-505.89, -345.32], [-502.79, -342.42], [-513.04, -331.49], [-527.19, -344.67], [-517.2, -355.32], [-513.99, -352.33]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-535.47, -554.98], [-537.88, -557.23], [-540.25, -554.7], [-544.92, -559.05], [-554.55, -548.77], [-549.2, -543.79], [-551.55, -541.3], [-556.84, -546.22], [-595.02, -505.47], [-592.89, -503.5], [-591.88, -504.57], [-586.97, -500.01], [-535.47, -554.98]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-702.83, -436.14], [-696.24, -430.13], [-707.9, -417.46], [-714.0, -423.03], [-711.07, -426.23], [-711.54, -426.67], [-702.83, -436.14]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-788.91, -536.08], [-783.6, -531.22], [-784.99, -529.71], [-782.52, -527.45], [-782.13, -527.87], [-776.77, -522.98], [-767.91, -532.59], [-773.93, -538.09], [-774.62, -537.33], [-776.05, -538.65], [-774.55, -540.27], [-780.25, -545.48], [-788.91, -536.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-796.79, -584.8], [-791.42, -590.77], [-788.46, -588.13], [-788.05, -588.59], [-784.75, -585.63], [-785.0, -585.36], [-781.41, -582.16], [-786.94, -576.01], [-796.79, -584.8]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-777.44, -575.36], [-760.77, -593.79], [-750.74, -584.78], [-768.77, -564.84], [-772.39, -568.08], [-771.02, -569.6], [-777.44, -575.36]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-684.97, -477.39], [-678.81, -484.02], [-664.0, -470.37], [-670.16, -463.74], [-684.97, -477.39]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-840.08, -539.44], [-835.74, -544.19], [-836.07, -544.49], [-832.57, -548.33], [-832.24, -548.02], [-827.53, -553.17], [-821.29, -547.51], [-833.83, -533.77], [-840.08, -539.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-709.31, -444.52], [-704.69, -449.65], [-698.7, -444.3], [-698.11, -444.95], [-693.16, -440.53], [-693.76, -439.87], [-690.81, -437.23], [-695.44, -432.1], [-709.31, -444.52]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-690.86, -466.02], [-687.98, -463.51], [-687.39, -464.18], [-681.55, -459.07], [-682.14, -458.4], [-678.04, -454.8], [-678.77, -453.98], [-677.88, -453.2], [-683.18, -447.2], [-696.88, -459.19], [-690.86, -466.02]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-735.09, -445.59], [-725.67, -455.69], [-725.17, -455.22], [-722.38, -458.22], [-718.54, -454.66], [-720.44, -452.63], [-719.46, -451.73], [-720.35, -450.78], [-720.14, -450.59], [-724.15, -446.28], [-724.36, -446.48], [-725.01, -447.07], [-730.42, -441.27], [-730.92, -441.73], [-731.94, -440.65], [-735.53, -443.96], [-734.51, -445.07], [-735.09, -445.59]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-776.53, -610.58], [-775.12, -609.28], [-774.16, -610.33], [-769.48, -606.04], [-771.03, -604.37], [-770.31, -603.71], [-780.19, -593.01], [-785.19, -597.59], [-784.53, -598.3], [-786.33, -599.95], [-776.53, -610.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-716.32, -451.73], [-710.4, -446.45], [-721.87, -433.69], [-726.06, -437.43], [-723.68, -440.08], [-725.41, -441.62], [-716.32, -451.73]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-816.4, -521.13], [-814.35, -519.28], [-815.26, -518.29], [-811.05, -514.48], [-801.07, -525.46], [-803.19, -527.38], [-804.3, -526.17], [-808.43, -529.9], [-816.4, -521.13]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-805.42, -574.96], [-799.54, -581.43], [-791.14, -573.85], [-797.02, -567.38], [-805.42, -574.96]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-673.16, -497.11], [-664.91, -506.22], [-661.03, -502.73], [-663.92, -499.54], [-663.31, -498.99], [-665.26, -496.83], [-664.16, -495.84], [-667.56, -492.08], [-673.16, -497.11]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-776.89, -594.94], [-775.27, -593.5], [-777.91, -590.56], [-776.69, -589.48], [-779.14, -586.75], [-774.92, -583.0], [-761.95, -597.44], [-768.99, -603.73], [-776.89, -594.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-821.74, -558.88], [-817.56, -563.6], [-807.67, -554.89], [-810.85, -551.31], [-812.68, -552.92], [-813.68, -551.79], [-821.74, -558.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-720.42, -432.3], [-710.63, -442.78], [-704.87, -437.44], [-708.92, -433.1], [-709.42, -433.56], [-715.16, -427.41], [-720.42, -432.3]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-677.79, -495.78], [-683.64, -501.03], [-673.72, -511.99], [-667.87, -506.72], [-677.79, -495.78]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-702.89, -480.09], [-701.29, -481.79], [-701.84, -482.31], [-695.93, -488.64], [-695.64, -488.37], [-693.66, -490.49], [-687.69, -484.96], [-695.49, -476.61], [-697.25, -478.24], [-698.94, -476.42], [-702.89, -480.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-825.85, -526.91], [-814.47, -538.98], [-812.73, -537.37], [-810.87, -539.33], [-807.74, -536.4], [-809.29, -534.75], [-808.31, -533.85], [-812.68, -529.21], [-812.12, -528.69], [-815.84, -524.75], [-816.27, -525.15], [-819.25, -522.0], [-822.75, -525.28], [-823.39, -524.6], [-825.85, -526.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-682.69, -471.81], [-672.22, -462.09], [-677.31, -456.63], [-680.53, -459.63], [-680.97, -459.16], [-684.66, -462.58], [-684.22, -463.05], [-687.78, -466.36], [-686.48, -467.75], [-687.89, -469.06], [-685.89, -471.19], [-684.48, -469.89], [-682.69, -471.81]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-672.17, -480.38], [-666.83, -486.04], [-657.1, -476.93], [-662.44, -471.27], [-672.17, -480.38]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-810.41, -513.28], [-798.72, -526.2], [-792.89, -520.96], [-804.58, -508.04], [-810.41, -513.28]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-763.46, -489.23], [-756.91, -483.35], [-766.23, -473.04], [-767.75, -474.41], [-766.92, -475.33], [-771.95, -479.84], [-763.46, -489.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-764.91, -473.6], [-758.31, -480.73], [-757.6, -480.09], [-754.4, -483.55], [-749.56, -479.12], [-752.75, -475.67], [-752.03, -475.01], [-756.06, -470.65], [-756.78, -471.31], [-760.08, -467.74], [-764.1, -471.43], [-763.39, -472.2], [-764.91, -473.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-757.6, -464.64], [-756.45, -465.87], [-756.69, -466.1], [-747.78, -475.73], [-742.65, -471.02], [-744.69, -468.82], [-743.89, -468.1], [-748.25, -463.37], [-749.04, -464.1], [-751.59, -461.34], [-751.75, -461.48], [-752.85, -460.28], [-757.6, -464.64]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-815.34, -565.69], [-811.88, -569.71], [-810.46, -568.51], [-806.19, -573.48], [-795.95, -564.74], [-799.83, -560.22], [-803.19, -563.08], [-807.03, -558.6], [-815.34, -565.69]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-832.78, -533.38], [-828.95, -537.51], [-829.1, -537.66], [-825.13, -541.96], [-824.98, -541.82], [-820.99, -546.12], [-814.83, -540.46], [-826.61, -527.71], [-832.78, -533.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-615.86, -414.79], [-616.13, -423.52], [-616.28, -428.27], [-616.65, -440.33], [-599.59, -441.6], [-597.99, -441.72], [-594.74, -441.96], [-594.15, -442.69], [-593.36, -443.2], [-591.98, -443.56], [-590.45, -443.43], [-588.88, -442.77], [-588.32, -442.23], [-587.98, -441.21], [-587.68, -440.27], [-547.26, -403.12], [-537.6, -394.21], [-539.32, -392.42], [-554.91, -375.14], [-556.38, -376.41], [-599.48, -415.55], [-601.95, -415.43], [-615.86, -414.79]], "holes": []}, "height": 49.0}, {"shape": {"outer": [[505.01, 465.21], [509.05, 460.85], [501.1, 453.57], [503.38, 451.09], [513.79, 460.63], [526.66, 472.44], [520.35, 479.27], [505.01, 465.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1878.38, 2364.71], [1897.83, 2360.57], [1904.54, 2392.0], [1885.06, 2396.14], [1881.83, 2381.01], [1880.13, 2372.88], [1878.38, 2364.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1878.16, 2425.33], [1892.27, 2416.16], [1894.03, 2418.85], [1898.87, 2426.24], [1900.44, 2428.65], [1886.34, 2437.83], [1884.62, 2435.2], [1880.06, 2428.24], [1878.16, 2425.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-161.35, -271.57], [-134.06, -301.67], [-142.65, -309.4], [-169.9, -279.06], [-161.35, -271.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-462.12, 164.57], [-431.01, 192.95], [-442.16, 205.09], [-469.74, 179.93], [-469.22, 179.35], [-472.75, 176.13], [-471.58, 174.86], [-473.25, 173.42], [-474.29, 171.49], [-474.57, 169.3], [-474.04, 167.17], [-472.79, 165.35], [-471.06, 164.16], [-469.04, 163.62], [-466.95, 163.8], [-465.04, 164.66], [-463.55, 166.13], [-462.12, 164.57]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1297.88, -354.41], [-1295.53, -354.51], [-1295.47, -353.07], [-1286.5, -353.46], [-1286.53, -354.12], [-1233.71, -356.6], [-1233.96, -361.88], [-1229.47, -362.08], [-1229.22, -356.91], [-1201.83, -358.22], [-1200.27, -358.28], [-1200.37, -360.41], [-1198.92, -360.48], [-1197.45, -361.96], [-1197.55, -363.86], [-1195.33, -363.98], [-1195.47, -366.47], [-1195.65, -369.86], [-1196.81, -391.23], [-1200.33, -391.04], [-1202.74, -393.35], [-1202.85, -395.74], [-1230.82, -394.43], [-1230.59, -389.44], [-1234.78, -389.24], [-1234.92, -392.09], [-1239.56, -391.87], [-1240.81, -391.81], [-1240.92, -394.04], [-1294.76, -391.53], [-1294.65, -389.15], [-1297.43, -386.35], [-1299.25, -386.26], [-1298.37, -365.85], [-1297.88, -354.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1255.16, -346.8], [-1234.59, -347.87], [-1234.46, -345.22], [-1234.33, -342.8], [-1234.22, -340.77], [-1234.17, -339.72], [-1234.08, -338.0], [-1233.97, -335.96], [-1227.34, -336.28], [-1227.25, -334.7], [-1226.88, -327.41], [-1226.76, -325.14], [-1226.3, -316.19], [-1214.42, -316.8], [-1214.36, -315.62], [-1210.6, -315.81], [-1199.08, -316.4], [-1197.51, -315.01], [-1192.65, -310.72], [-1192.01, -310.15], [-1191.49, -300.58], [-1198.01, -293.56], [-1207.49, -293.08], [-1212.0, -297.25], [-1216.67, -297.04], [-1216.53, -293.93], [-1220.16, -293.76], [-1273.32, -291.31], [-1273.45, -294.08], [-1274.08, -293.5], [-1274.76, -292.86], [-1277.35, -292.74], [-1279.17, -294.46], [-1279.21, -295.48], [-1279.26, -296.77], [-1278.5, -297.79], [-1278.62, -300.03], [-1279.31, -313.45], [-1268.28, -314.01], [-1253.5, -314.78], [-1254.77, -339.24], [-1255.16, -346.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1202.78, -330.1], [-1200.69, -330.19], [-1200.56, -327.1], [-1196.89, -327.21], [-1197.1, -332.26], [-1197.14, -333.07], [-1197.1, -333.94], [-1197.11, -334.19], [-1202.95, -333.93], [-1202.78, -330.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[519.48, -47.93], [522.37, -47.2], [540.46, -42.69], [544.05, -41.37], [552.36, -38.33], [565.08, -33.66], [577.05, -28.8], [587.88, -23.14], [590.46, -21.9], [589.67, -19.48], [596.82, -16.76], [592.12, -0.92], [589.59, 7.63], [584.49, 6.28], [579.15, 4.84], [568.78, 2.08], [566.95, 1.58], [558.13, -0.77], [554.82, -1.66], [544.95, -4.3], [539.74, -5.68], [532.64, -7.58], [530.96, -8.01], [518.44, -11.21], [509.74, -13.7], [508.55, -13.62], [508.0, -13.67], [507.45, -13.84], [506.92, -14.18], [506.55, -14.48], [506.1, -15.18], [505.91, -16.05], [505.93, -16.68], [506.04, -17.32], [506.42, -18.21], [506.85, -18.7], [507.39, -19.01], [507.99, -19.18], [508.56, -19.2], [509.11, -19.1], [509.75, -18.87], [510.24, -18.63], [510.56, -18.28], [510.88, -17.83], [511.07, -17.25], [517.27, -41.0], [519.48, -47.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[390.67, -17.58], [401.35, -7.76], [383.5, 11.88], [379.98, 8.87], [381.43, 7.28], [374.09, 0.67], [390.67, -17.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[398.37, 22.64], [393.59, 18.3], [410.12, 0.14], [414.92, 4.47], [398.37, 22.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[425.29, 13.44], [418.96, 20.45], [425.02, 25.88], [421.92, 29.32], [415.9, 23.92], [411.7, 28.57], [413.94, 30.58], [412.15, 32.56], [415.06, 35.16], [416.67, 33.39], [427.42, 43.04], [439.11, 30.1], [439.76, 28.86], [439.94, 28.22], [439.96, 27.55], [439.73, 26.88], [438.96, 25.72], [425.29, 13.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[338.16, -30.9], [355.66, -49.59], [364.87, -41.72], [365.32, -40.93], [365.33, -39.55], [364.93, -38.8], [349.17, -21.53], [338.16, -30.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[424.26, 12.91], [414.92, 4.47], [398.37, 22.64], [403.29, 27.1], [406.3, 23.81], [410.7, 27.78], [424.26, 12.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[410.12, 0.14], [401.35, -7.76], [383.5, 11.88], [390.92, 18.57], [392.28, 17.08], [393.59, 18.3], [410.12, 0.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[348.57, -105.73], [356.07, -98.94], [359.3, -103.03], [377.37, -77.89], [370.27, -70.3], [348.52, -90.36], [341.05, -97.43], [348.57, -105.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[739.85, 69.23], [745.06, 63.6], [747.16, 65.53], [764.17, 47.13], [784.68, 65.93], [762.47, 89.98], [739.85, 69.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[204.49, 216.52], [205.96, 214.99], [220.2, 200.18], [219.91, 189.95], [202.85, 174.54], [189.69, 187.99], [190.82, 204.51], [204.49, 216.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2461.62, -765.64], [-2454.82, -774.35], [-2456.64, -775.76], [-2453.47, -779.83], [-2449.42, -776.59], [-2448.13, -778.19], [-2444.2, -775.05], [-2443.07, -776.45], [-2435.92, -770.73], [-2434.33, -771.69], [-2430.44, -768.59], [-2432.55, -765.97], [-2427.02, -761.55], [-2438.5, -747.27], [-2441.5, -749.68], [-2440.38, -751.11], [-2446.84, -756.1], [-2447.76, -754.91], [-2453.65, -758.9], [-2461.62, -765.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2362.15, -684.97], [-2370.77, -691.74], [-2350.28, -717.81], [-2344.09, -725.61], [-2312.38, -700.74], [-2324.47, -685.44], [-2323.12, -684.38], [-2328.4, -677.7], [-2324.03, -674.26], [-2327.99, -669.26], [-2331.95, -668.75], [-2335.22, -671.32], [-2338.86, -666.71], [-2362.15, -684.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2406.98, -743.49], [-2398.91, -737.26], [-2398.55, -737.83], [-2396.18, -740.8], [-2393.29, -744.43], [-2401.24, -750.71], [-2404.72, -746.33], [-2406.98, -743.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2350.67, -735.46], [-2344.26, -730.45], [-2344.74, -729.84], [-2352.71, -719.71], [-2350.28, -717.81], [-2370.77, -691.74], [-2371.82, -690.41], [-2393.99, -707.72], [-2391.92, -710.34], [-2371.38, -736.48], [-2358.05, -726.08], [-2350.67, -735.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2404.15, 2692.59], [2392.53, 2681.42], [2411.72, 2661.58], [2423.42, 2672.82], [2425.68, 2670.48], [2471.74, 2714.69], [2465.86, 2720.77], [2463.7, 2718.71], [2451.61, 2731.21], [2453.79, 2733.31], [2447.93, 2739.36], [2401.78, 2695.04], [2404.15, 2692.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2240.21, 2389.97], [2246.69, 2397.08], [2219.73, 2424.93], [2175.6, 2382.2], [2202.88, 2354.12], [2220.75, 2336.85], [2218.39, 2334.42], [2213.15, 2338.81], [2208.11, 2333.95], [2197.17, 2345.14], [2169.74, 2317.5], [2203.01, 2284.89], [2204.91, 2286.47], [2210.26, 2282.19], [2212.61, 2284.41], [2233.31, 2263.03], [2234.31, 2263.77], [2237.18, 2260.97], [2255.23, 2277.33], [2258.32, 2274.52], [2253.34, 2268.35], [2270.64, 2250.34], [2271.44, 2251.51], [2278.87, 2244.01], [2288.57, 2243.09], [2288.52, 2241.35], [2298.14, 2241.52], [2298.15, 2253.6], [2312.85, 2267.77], [2313.54, 2266.99], [2320.1, 2273.01], [2318.94, 2274.34], [2334.49, 2289.63], [2345.69, 2289.49], [2345.82, 2300.04], [2344.02, 2299.98], [2343.91, 2311.91], [2346.15, 2311.95], [2346.61, 2312.7], [2359.23, 2312.83], [2360.03, 2312.05], [2360.68, 2311.7], [2361.28, 2312.07], [2361.64, 2312.93], [2361.33, 2313.92], [2361.13, 2331.78], [2361.47, 2332.26], [2361.77, 2333.11], [2361.69, 2334.15], [2361.03, 2334.28], [2360.26, 2334.08], [2359.92, 2333.5], [2343.21, 2333.75], [2343.88, 2345.7], [2346.18, 2345.86], [2345.82, 2356.52], [2343.59, 2356.64], [2299.45, 2401.36], [2283.89, 2385.92], [2284.74, 2385.13], [2279.08, 2379.79], [2278.66, 2380.35], [2269.11, 2371.2], [2269.48, 2370.75], [2263.27, 2365.27], [2240.21, 2389.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[873.79, 1048.35], [855.98, 1067.52], [851.71, 1063.56], [849.71, 1065.8], [845.11, 1061.57], [823.18, 1085.71], [810.23, 1074.1], [809.71, 1074.99], [804.32, 1069.81], [804.95, 1069.13], [801.48, 1066.13], [803.76, 1063.61], [771.91, 1034.85], [769.96, 1037.02], [766.15, 1033.71], [765.57, 1034.65], [759.41, 1029.28], [763.5, 1025.13], [763.12, 1023.29], [765.54, 1020.17], [767.47, 1020.45], [774.46, 1012.73], [774.35, 1010.89], [776.84, 1008.1], [778.43, 1008.21], [781.73, 1004.68], [782.46, 1003.9], [788.45, 1009.18], [783.2, 1014.99], [787.25, 1018.74], [785.45, 1020.75], [819.34, 1050.71], [824.37, 1045.01], [822.12, 1042.74], [837.11, 1026.14], [844.69, 1033.06], [848.28, 1028.72], [853.37, 1033.2], [854.86, 1031.58], [873.79, 1048.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2217.59, -685.75], [-2208.51, -686.17], [-2207.18, -656.77], [-2215.59, -656.39], [-2215.94, -664.16], [-2218.65, -664.04], [-2219.28, -678.15], [-2217.25, -678.24], [-2217.59, -685.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1470.6, -645.08], [-1483.04, -644.28], [-1483.22, -651.29], [-1470.92, -651.86], [-1470.6, -645.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1563.28, -622.22], [-1574.26, -616.57], [-1576.58, -621.07], [-1565.37, -626.74], [-1563.28, -622.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1543.66, -600.68], [-1574.24, -596.53], [-1576.23, -609.11], [-1545.52, -612.93], [-1543.66, -600.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1560.49, -620.23], [-1563.96, -627.1], [-1554.33, -632.12], [-1550.85, -625.3], [-1560.49, -620.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1507.87, -535.96], [-1510.18, -535.8], [-1519.81, -535.18], [-1519.82, -535.83], [-1527.03, -535.46], [-1526.84, -534.81], [-1534.98, -534.47], [-1535.05, -535.24], [-1542.42, -534.97], [-1542.45, -534.09], [-1550.47, -533.65], [-1550.49, -534.3], [-1552.15, -534.23], [-1557.48, -533.99], [-1557.46, -533.28], [-1565.92, -532.88], [-1566.21, -539.24], [-1569.21, -539.21], [-1569.53, -550.48], [-1566.64, -550.56], [-1566.76, -552.83], [-1522.18, -555.04], [-1522.72, -566.24], [-1567.01, -569.38], [-1566.86, -571.78], [-1569.55, -572.19], [-1568.83, -583.16], [-1566.31, -583.01], [-1565.51, -589.4], [-1557.3, -588.88], [-1557.33, -588.0], [-1549.99, -587.35], [-1549.85, -588.22], [-1542.24, -587.72], [-1542.38, -586.91], [-1534.55, -586.32], [-1534.51, -586.91], [-1526.31, -586.6], [-1526.56, -585.84], [-1524.26, -585.68], [-1522.46, -585.62], [-1521.25, -585.71], [-1518.98, -586.17], [-1517.45, -586.48], [-1517.41, -586.97], [-1509.06, -587.43], [-1509.2, -586.5], [-1501.83, -586.87], [-1501.97, -587.69], [-1493.79, -588.24], [-1493.82, -587.43], [-1486.35, -587.86], [-1486.38, -588.83], [-1477.87, -589.36], [-1477.83, -582.44], [-1474.94, -582.58], [-1474.63, -577.52], [-1475.67, -577.55], [-1475.34, -571.51], [-1477.03, -571.46], [-1477.17, -568.96], [-1489.92, -568.29], [-1519.13, -566.78], [-1518.65, -555.63], [-1510.25, -556.2], [-1510.31, -552.6], [-1509.8, -551.91], [-1508.79, -552.7], [-1506.32, -549.02], [-1512.93, -544.85], [-1512.12, -543.52], [-1508.19, -543.63], [-1508.09, -541.28], [-1507.87, -535.96]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[-1584.11, -2946.62], [-1584.15, -2936.82], [-1593.91, -2937.63], [-1605.36, -2940.47], [-1616.98, -2945.47], [-1621.21, -2947.96], [-1628.44, -2952.55], [-1629.92, -2950.76], [-1637.08, -2956.45], [-1641.13, -2960.24], [-1645.88, -2965.89], [-1644.08, -2968.07], [-1649.51, -2976.41], [-1652.05, -2981.18], [-1645.43, -2984.35], [-1640.36, -2986.91], [-1641.77, -2990.19], [-1643.23, -2993.47], [-1644.83, -2997.95], [-1645.81, -3001.68], [-1646.17, -3004.55], [-1595.69, -3034.31], [-1582.71, -3010.77], [-1605.54, -2996.62], [-1626.17, -2980.07], [-1624.33, -2978.2], [-1621.66, -2975.5], [-1617.07, -2971.5], [-1611.94, -2967.72], [-1606.83, -2964.94], [-1601.29, -2962.47], [-1594.56, -2960.39], [-1589.49, -2959.0], [-1583.68, -2958.52], [-1579.31, -2958.31], [-1579.3, -2950.36], [-1580.49, -2950.11], [-1580.39, -2946.63], [-1584.11, -2946.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1539.83, -2959.05], [-1554.32, -2956.12], [-1552.41, -2946.68], [-1538.57, -2949.47], [-1537.44, -2943.9], [-1527.14, -2945.99], [-1530.88, -2964.4], [-1540.52, -2962.44], [-1539.83, -2959.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1681.7, -3093.07], [-1687.33, -3092.59], [-1687.62, -3096.13], [-1681.98, -3096.66], [-1681.7, -3093.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2372.69, -1798.67], [-2395.48, -1775.98], [-2403.19, -1783.67], [-2386.68, -1800.1], [-2389.29, -1802.7], [-2383.0, -1808.95], [-2372.69, -1798.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2679.62, -1818.79], [-2696.82, -1807.31], [-2698.69, -1810.13], [-2701.59, -1808.23], [-2703.83, -1803.56], [-2713.82, -1808.32], [-2709.93, -1816.43], [-2704.62, -1819.89], [-2704.96, -1820.41], [-2688.47, -1831.12], [-2688.19, -1830.7], [-2682.69, -1834.28], [-2679.34, -1834.52], [-2678.57, -1823.84], [-2681.64, -1821.77], [-2679.62, -1818.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2646.18, -1683.97], [-2651.99, -1684.67], [-2651.51, -1688.76], [-2645.54, -1688.12], [-2646.18, -1683.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2401.37, -1855.55], [-2393.95, -1861.78], [-2386.6, -1867.96], [-2377.41, -1857.1], [-2373.63, -1856.98], [-2373.7, -1854.87], [-2373.76, -1852.79], [-2364.89, -1842.31], [-2365.11, -1842.12], [-2372.34, -1836.04], [-2379.66, -1829.88], [-2390.26, -1842.42], [-2401.37, -1855.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2276.28, -1885.04], [-2292.61, -1888.67], [-2289.74, -1901.52], [-2273.41, -1897.91], [-2276.09, -1885.92], [-2276.28, -1885.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2466.33, -1819.09], [-2481.92, -1838.03], [-2462.95, -1853.53], [-2447.36, -1834.58], [-2466.33, -1819.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2054.02, 1115.63], [2027.53, 1144.85], [2022.37, 1139.98], [2019.91, 1141.8], [2017.92, 1142.1], [2015.98, 1141.8], [2014.21, 1140.98], [2009.1, 1145.91], [1999.26, 1137.59], [2001.15, 1135.14], [1984.91, 1120.8], [1987.03, 1118.67], [1980.29, 1112.21], [1979.13, 1113.44], [1943.13, 1080.17], [1946.3, 1076.65], [1942.83, 1073.85], [1941.88, 1072.96], [1941.31, 1072.11], [1940.78, 1070.59], [1940.52, 1069.29], [1940.64, 1067.77], [1940.99, 1066.35], [1941.82, 1065.12], [1942.56, 1064.12], [1945.1, 1061.11], [1943.3, 1059.58], [1956.44, 1044.88], [1977.78, 1021.0], [2010.0, 1049.81], [1999.51, 1061.49], [2004.0, 1065.44], [2005.96, 1063.38], [2006.1, 1062.44], [2006.27, 1060.97], [2006.84, 1059.59], [2007.64, 1058.97], [2009.09, 1058.33], [2010.4, 1058.13], [2012.22, 1058.62], [2013.34, 1059.68], [2014.09, 1061.12], [2014.18, 1062.43], [2013.95, 1063.91], [2052.23, 1098.6], [2048.69, 1102.72], [2049.7, 1103.89], [2050.4, 1105.34], [2050.43, 1106.39], [2050.46, 1107.4], [2050.07, 1108.99], [2049.55, 1109.99], [2048.61, 1110.89], [2054.02, 1115.63]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-866.53, -2822.15], [-872.9, -2836.32], [-900.16, -2824.15], [-893.78, -2809.97], [-866.53, -2822.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-675.97, -2816.72], [-687.5, -2816.23], [-689.75, -2869.62], [-678.22, -2870.1], [-675.97, -2816.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-816.99, -2863.25], [-831.52, -2857.7], [-820.49, -2828.94], [-805.95, -2834.48], [-816.99, -2863.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-554.84, -2497.31], [-555.67, -2526.58], [-543.55, -2527.04], [-542.49, -2501.36], [-540.28, -2500.45], [-539.99, -2497.94], [-541.57, -2495.94], [-544.09, -2495.87], [-545.89, -2497.89], [-554.84, -2497.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-627.76, -2729.31], [-672.2, -2727.59], [-671.01, -2696.69], [-626.56, -2698.4], [-627.76, -2729.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-674.57, -2744.86], [-674.58, -2745.17], [-676.54, -2793.46], [-656.09, -2794.29], [-656.36, -2800.93], [-651.47, -2801.13], [-651.88, -2811.08], [-657.4, -2810.86], [-658.02, -2826.2], [-652.49, -2826.43], [-652.58, -2828.72], [-632.2, -2829.55], [-630.46, -2786.93], [-620.75, -2787.31], [-620.07, -2770.53], [-621.74, -2770.47], [-621.6, -2767.19], [-621.09, -2767.22], [-620.7, -2757.7], [-628.85, -2757.36], [-628.79, -2756.1], [-645.05, -2755.43], [-644.82, -2749.54], [-650.55, -2749.3], [-650.41, -2745.83], [-674.57, -2744.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-742.57, -2698.31], [-753.83, -2694.02], [-771.34, -2739.6], [-752.26, -2746.88], [-742.55, -2721.62], [-750.38, -2718.62], [-742.57, -2698.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-864.35, -2807.86], [-866.72, -2813.25], [-893.46, -2801.6], [-877.13, -2764.34], [-855.08, -2773.94], [-848.81, -2759.63], [-869.63, -2750.56], [-854.65, -2716.41], [-843.46, -2721.28], [-850.96, -2738.4], [-844.08, -2741.4], [-847.54, -2749.28], [-830.33, -2756.78], [-822.79, -2739.58], [-806.02, -2746.88], [-817.67, -2773.45], [-819.27, -2772.75], [-831.93, -2801.61], [-833.26, -2801.02], [-840.76, -2818.14], [-864.35, -2807.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-830.18, -2704.7], [-835.83, -2717.86], [-820.29, -2724.48], [-814.65, -2711.34], [-830.18, -2704.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-660.15, -2867.26], [-688.66, -2889.72], [-677.42, -2903.9], [-648.9, -2881.44], [-660.15, -2867.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-551.99, -2483.12], [-553.64, -2487.21], [-561.74, -2483.61], [-559.77, -2479.85], [-561.28, -2478.93], [-555.71, -2467.65], [-544.7, -2472.66], [-543.65, -2470.51], [-534.47, -2474.36], [-535.53, -2477.05], [-532.51, -2478.45], [-534.03, -2481.68], [-533.52, -2483.1], [-534.14, -2485.48], [-535.57, -2486.09], [-537.31, -2489.53], [-538.5, -2489.01], [-551.99, -2483.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-238.97, -2654.05], [-243.95, -2657.97], [-251.51, -2648.43], [-271.87, -2664.43], [-267.34, -2670.15], [-274.35, -2675.66], [-263.71, -2689.11], [-267.88, -2692.39], [-249.76, -2715.3], [-232.3, -2701.58], [-228.33, -2706.59], [-218.84, -2699.15], [-216.75, -2701.79], [-211.61, -2697.75], [-224.32, -2681.72], [-219.59, -2678.01], [-221.62, -2675.44], [-212.16, -2667.99], [-218.8, -2659.6], [-228.51, -2667.25], [-238.97, -2654.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-124.45, -2685.16], [-122.25, -2665.57], [-137.11, -2663.91], [-139.31, -2683.57], [-145.2, -2682.91], [-145.45, -2685.12], [-151.84, -2684.4], [-154.23, -2705.73], [-140.37, -2707.27], [-140.65, -2709.87], [-122.44, -2711.9], [-122.18, -2709.6], [-102.98, -2711.73], [-102.43, -2706.88], [-100.14, -2707.13], [-99.32, -2699.85], [-101.64, -2699.59], [-100.56, -2689.95], [-122.61, -2687.5], [-122.37, -2685.38], [-124.45, -2685.16]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-136.22, -2785.56], [-133.19, -2777.87], [-163.18, -2766.15], [-166.44, -2774.45], [-175.73, -2770.82], [-184.21, -2792.37], [-128.49, -2814.14], [-123.89, -2802.46], [-119.77, -2791.99], [-136.22, -2785.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[393.0, -2496.05], [407.47, -2508.82], [416.66, -2498.47], [402.2, -2485.7], [393.0, -2496.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[413.61, 246.44], [468.12, 296.73], [481.68, 280.86], [427.19, 231.89], [413.61, 246.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[641.54, 137.05], [667.51, 160.52], [649.4, 180.4], [646.76, 178.01], [643.64, 175.2], [639.77, 171.7], [635.98, 175.87], [633.22, 173.38], [630.12, 170.57], [633.81, 166.51], [623.33, 157.05], [641.54, 137.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[666.62, 108.67], [671.62, 111.92], [698.73, 128.98], [674.62, 155.89], [651.63, 134.87], [647.15, 130.91], [655.61, 121.82], [664.65, 111.63], [666.62, 108.67]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[424.13, 376.58], [458.96, 408.5], [455.91, 411.72], [453.2, 414.58], [451.48, 412.97], [443.87, 420.52], [445.48, 422.01], [455.57, 431.32], [446.8, 440.56], [402.65, 400.56], [424.13, 376.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1546.43, 779.05], [1580.23, 809.41], [1565.98, 825.16], [1557.51, 817.54], [1541.32, 834.54], [1533.43, 827.37], [1527.02, 821.97], [1526.86, 819.89], [1526.41, 817.71], [1527.49, 816.68], [1528.53, 815.63], [1520.13, 807.68], [1546.43, 779.05]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2971.4, -1159.0], [-2970.41, -1159.32], [-2969.24, -1159.37], [-2968.14, -1159.2], [-2966.96, -1158.81], [-2965.93, -1158.19], [-2960.03, -1153.09], [-2954.92, -1148.68], [-2922.29, -1120.53], [-2922.55, -1120.28], [-2923.44, -1119.36], [-2922.8, -1118.67], [-2923.42, -1118.06], [-2921.17, -1115.95], [-2923.87, -1112.93], [-2924.08, -1113.15], [-2924.67, -1112.45], [-2925.14, -1111.71], [-2925.48, -1111.01], [-2925.79, -1110.32], [-2926.1, -1109.44], [-2926.36, -1108.57], [-2926.58, -1107.53], [-2926.7, -1106.78], [-2926.78, -1106.02], [-2926.8, -1105.36], [-2926.8, -1104.76], [-2926.78, -1104.2], [-2926.51, -1104.2], [-2926.5, -1100.99], [-2929.72, -1100.92], [-2929.71, -1099.67], [-2931.07, -1099.62], [-2932.54, -1099.53], [-2935.58, -1099.45], [-2940.73, -1099.3], [-2940.78, -1100.58], [-2943.0, -1100.55], [-2947.12, -1100.5], [-2949.96, -1100.46], [-2952.45, -1100.39], [-2957.53, -1100.31], [-2964.91, -1100.2], [-2968.2, -1100.16], [-2973.76, -1100.03], [-2977.22, -1099.95], [-2980.28, -1099.93], [-2983.58, -1099.86], [-2984.7, -1100.68], [-2988.27, -1103.31], [-2989.06, -1102.31], [-2991.87, -1098.75], [-2992.48, -1097.98], [-2995.03, -1099.88], [-2996.4, -1097.99], [-2999.36, -1100.28], [-3000.83, -1098.69], [-3005.3, -1102.23], [-3003.87, -1103.89], [-3006.99, -1106.3], [-3005.55, -1108.12], [-3007.92, -1110.05], [-3003.72, -1115.29], [-3005.72, -1116.9], [-2993.7, -1131.54], [-2972.85, -1157.9], [-2972.11, -1158.57], [-2971.4, -1159.0]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[1666.74, 1228.57], [1764.33, 1317.68], [1765.39, 1318.65], [1795.23, 1286.21], [1755.59, 1249.07], [1696.6, 1196.11], [1666.74, 1228.57]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1920.56, -388.37], [-1939.65, -387.59], [-1941.41, -430.67], [-1922.32, -431.45], [-1920.56, -388.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1871.2, -427.08], [-1871.59, -435.23], [-1869.75, -435.32], [-1870.64, -454.13], [-1871.32, -454.07], [-1872.92, -454.0], [-1873.25, -462.0], [-1913.99, -460.06], [-1913.16, -442.69], [-1912.32, -425.12], [-1871.2, -427.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-458.65, 293.66], [-469.59, 284.3], [-465.54, 279.59], [-466.81, 278.5], [-462.05, 272.97], [-456.34, 277.86], [-458.12, 279.94], [-451.62, 285.5], [-458.65, 293.66]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-187.8, 356.25], [-168.34, 373.94], [-173.87, 379.97], [-172.52, 381.2], [-180.72, 390.15], [-186.8, 384.62], [-186.05, 383.79], [-189.07, 381.04], [-189.06, 379.77], [-187.0, 377.52], [-189.52, 375.22], [-184.99, 370.26], [-190.56, 365.2], [-190.77, 359.49], [-187.8, 356.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[574.1, -3161.21], [563.23, -3150.6], [566.37, -3147.44], [561.1, -3142.5], [565.32, -3138.26], [570.61, -3143.36], [574.31, -3139.46], [620.91, -3181.67], [618.92, -3184.18], [633.96, -3197.83], [631.08, -3201.02], [634.72, -3204.29], [629.61, -3209.95], [625.96, -3206.68], [623.24, -3209.69], [612.13, -3199.96], [606.67, -3205.73], [612.72, -3213.93], [606.68, -3218.28], [609.96, -3222.8], [606.19, -3225.51], [602.91, -3221.0], [597.4, -3224.96], [579.59, -3201.32], [575.05, -3197.39], [563.9, -3187.03], [561.05, -3184.57], [533.87, -3167.76], [537.74, -3160.81], [533.27, -3158.34], [534.78, -3155.64], [539.26, -3158.11], [543.27, -3150.91], [570.84, -3166.66], [574.1, -3161.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-6.08, -2607.03], [58.73, -2640.76], [71.23, -2616.72], [57.01, -2608.92], [60.33, -2599.86], [29.21, -2584.77], [34.84, -2571.43], [16.33, -2563.33], [-6.08, -2607.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-76.89, -2525.57], [-15.99, -2513.79], [-20.45, -2493.63], [-80.93, -2506.28], [-76.89, -2525.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[78.75, -2672.88], [98.41, -2691.13], [113.69, -2674.31], [94.15, -2656.15], [78.75, -2672.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-584.7, -2267.81], [-575.4, -2268.21], [-575.43, -2268.82], [-569.76, -2269.07], [-569.8, -2269.96], [-565.87, -2270.12], [-565.78, -2267.94], [-556.71, -2268.32], [-553.85, -2271.72], [-548.34, -2271.96], [-545.36, -2268.8], [-536.3, -2269.19], [-536.41, -2271.67], [-531.54, -2271.88], [-531.46, -2270.18], [-524.09, -2270.5], [-523.01, -2245.18], [-521.91, -2245.23], [-521.0, -2223.75], [-542.78, -2222.82], [-543.55, -2240.88], [-564.37, -2240.0], [-564.33, -2238.91], [-569.19, -2238.71], [-569.38, -2243.14], [-576.58, -2242.83], [-577.3, -2259.65], [-584.35, -2259.35], [-584.7, -2267.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1861.57, -265.5], [-1862.74, -293.95], [-1867.32, -293.82], [-1868.63, -339.35], [-1863.73, -339.49], [-1864.2, -356.55], [-1866.81, -356.48], [-1866.87, -358.5], [-1865.81, -358.53], [-1867.48, -359.82], [-1870.05, -361.05], [-1873.33, -361.93], [-1876.32, -362.36], [-1878.79, -362.4], [-1881.59, -362.3], [-1881.54, -360.34], [-1883.14, -360.3], [-1883.03, -356.02], [-1884.49, -355.99], [-1884.34, -350.28], [-1905.74, -349.69], [-1906.95, -355.82], [-1949.98, -354.63], [-1950.06, -357.5], [-1957.24, -357.3], [-1957.26, -357.99], [-1964.56, -357.8], [-1964.47, -354.61], [-1970.58, -354.43], [-1969.85, -327.8], [-1968.68, -327.83], [-1968.39, -317.32], [-1960.59, -317.53], [-1960.56, -316.41], [-1957.69, -316.49], [-1957.67, -315.89], [-1954.05, -315.99], [-1954.0, -314.35], [-1945.51, -314.58], [-1945.56, -316.7], [-1942.89, -316.77], [-1942.91, -317.55], [-1941.65, -317.58], [-1941.9, -326.41], [-1912.57, -327.22], [-1912.06, -308.88], [-1912.76, -308.86], [-1912.51, -290.64], [-1914.69, -291.54], [-1928.65, -290.96], [-1930.81, -290.29], [-1929.8, -262.98], [-1861.57, -265.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1699.5, -271.66], [-1699.95, -278.37], [-1699.86, -278.72], [-1700.7, -296.77], [-1701.38, -311.12], [-1702.02, -311.12], [-1702.6, -322.5], [-1701.96, -322.52], [-1703.68, -355.14], [-1685.3, -356.24], [-1685.48, -361.11], [-1678.3, -361.47], [-1678.17, -356.51], [-1667.75, -357.0], [-1667.86, -359.82], [-1667.65, -362.02], [-1666.61, -365.42], [-1665.18, -368.02], [-1663.35, -370.22], [-1662.19, -371.41], [-1660.22, -372.87], [-1657.0, -374.41], [-1653.29, -375.28], [-1649.89, -375.28], [-1649.71, -371.1], [-1644.46, -371.45], [-1644.05, -364.48], [-1649.5, -364.33], [-1648.52, -344.66], [-1646.17, -344.09], [-1643.43, -342.76], [-1641.03, -340.62], [-1639.75, -338.26], [-1638.99, -335.92], [-1622.02, -336.88], [-1621.89, -338.32], [-1621.46, -339.84], [-1620.32, -341.99], [-1618.28, -344.21], [-1615.67, -345.67], [-1613.47, -346.45], [-1614.35, -365.95], [-1620.01, -365.66], [-1620.21, -372.54], [-1614.7, -372.8], [-1615.02, -377.01], [-1609.91, -377.22], [-1607.22, -377.11], [-1604.05, -376.25], [-1601.27, -374.82], [-1599.01, -372.95], [-1597.01, -370.79], [-1595.39, -367.99], [-1594.32, -365.46], [-1594.0, -363.18], [-1593.68, -361.77], [-1593.14, -361.05], [-1592.18, -360.79], [-1589.56, -309.45], [-1593.11, -309.33], [-1597.33, -302.78], [-1595.05, -300.79], [-1592.95, -298.28], [-1591.87, -296.6], [-1591.57, -296.03], [-1590.18, -296.79], [-1589.33, -294.73], [-1588.75, -292.5], [-1588.47, -288.48], [-1589.01, -284.94], [-1590.39, -281.55], [-1591.39, -279.66], [-1592.76, -277.63], [-1594.54, -275.98], [-1596.64, -274.29], [-1598.64, -273.13], [-1600.92, -272.12], [-1601.5, -273.58], [-1603.48, -273.02], [-1606.59, -272.68], [-1606.79, -276.35], [-1607.94, -276.45], [-1610.65, -277.0], [-1613.36, -278.09], [-1616.04, -280.1], [-1618.81, -284.16], [-1620.26, -289.1], [-1622.92, -289.01], [-1622.64, -281.97], [-1644.18, -281.0], [-1644.12, -279.05], [-1654.53, -278.46], [-1654.62, -280.28], [-1664.2, -279.87], [-1664.43, -284.31], [-1674.73, -283.94], [-1675.02, -280.13], [-1676.27, -277.0], [-1677.23, -275.21], [-1678.72, -273.39], [-1681.61, -270.68], [-1684.98, -268.97], [-1688.72, -267.93], [-1692.5, -267.68], [-1692.69, -271.95], [-1699.5, -271.66]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[-1546.29, -298.69], [-1548.43, -342.13], [-1546.75, -342.23], [-1546.85, -344.29], [-1551.38, -344.07], [-1553.17, -380.6], [-1510.74, -382.67], [-1510.62, -380.13], [-1497.62, -380.76], [-1496.06, -348.37], [-1493.05, -348.51], [-1492.88, -344.92], [-1483.13, -345.39], [-1482.8, -338.44], [-1478.89, -338.63], [-1463.1, -339.37], [-1462.88, -334.66], [-1462.73, -331.59], [-1461.47, -331.65], [-1460.81, -317.5], [-1462.07, -317.44], [-1461.93, -314.61], [-1461.87, -313.48], [-1459.74, -313.58], [-1459.62, -311.18], [-1453.2, -311.48], [-1451.81, -282.05], [-1457.55, -281.78], [-1470.3, -281.17], [-1479.28, -280.75], [-1481.84, -280.63], [-1482.48, -294.03], [-1498.46, -293.27], [-1523.69, -292.07], [-1523.61, -290.38], [-1530.44, -290.05], [-1530.54, -292.07], [-1544.99, -291.37], [-1545.35, -298.74], [-1546.29, -298.69]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[-2056.16, -311.02], [-2039.27, -311.51], [-2039.18, -308.58], [-2021.07, -309.11], [-2020.26, -281.56], [-1998.09, -282.21], [-1999.12, -317.55], [-2004.9, -317.38], [-2004.99, -320.3], [-2005.08, -323.23], [-1996.65, -323.47], [-1997.05, -336.98], [-2019.02, -336.34], [-2019.08, -338.47], [-2015.7, -338.57], [-2015.84, -343.14], [-2015.97, -347.71], [-2019.2, -347.61], [-2019.45, -355.91], [-2039.91, -355.31], [-2039.83, -352.22], [-2052.62, -351.85], [-2057.35, -351.71], [-2056.16, -311.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2234.2, -287.94], [-2223.84, -291.83], [-2222.98, -290.12], [-2209.1, -296.2], [-2210.89, -300.04], [-2171.01, -318.88], [-2169.28, -315.24], [-2147.71, -327.09], [-2148.72, -328.75], [-2131.49, -338.87], [-2128.73, -248.35], [-2155.52, -247.53], [-2155.58, -249.83], [-2220.85, -247.89], [-2220.79, -245.92], [-2232.97, -245.57], [-2234.2, -287.94]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1431.78, -284.16], [-1432.79, -306.16], [-1432.35, -306.19], [-1433.89, -339.23], [-1436.07, -339.14], [-1439.27, -338.98], [-1439.77, -349.58], [-1436.62, -349.72], [-1436.04, -349.75], [-1436.33, -355.95], [-1433.61, -356.07], [-1433.74, -358.88], [-1434.68, -358.84], [-1435.84, -384.26], [-1404.06, -385.59], [-1399.73, -386.04], [-1378.4, -387.08], [-1342.8, -388.83], [-1342.87, -390.24], [-1329.06, -390.92], [-1328.01, -369.38], [-1329.17, -369.32], [-1328.82, -362.33], [-1329.51, -362.3], [-1329.14, -354.8], [-1328.89, -349.76], [-1328.67, -345.44], [-1326.95, -311.17], [-1324.14, -311.31], [-1322.98, -288.14], [-1357.65, -286.42], [-1357.72, -287.92], [-1427.68, -284.37], [-1431.78, -284.16]], "holes": []}, "height": 50.0}, {"shape": {"outer": [[-2293.42, -243.18], [-2263.75, -244.6], [-2262.76, -243.48], [-2261.32, -243.61], [-2260.66, -244.8], [-2260.7, -246.19], [-2261.71, -246.91], [-2261.89, -251.77], [-2261.35, -252.49], [-2261.39, -255.01], [-2262.03, -255.65], [-2262.6, -270.72], [-2274.72, -270.28], [-2274.62, -267.55], [-2281.72, -267.47], [-2284.42, -266.2], [-2284.49, -261.54], [-2293.93, -261.18], [-2293.42, -243.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1270.83, -436.81], [-1271.81, -460.68], [-1272.64, -480.88], [-1277.26, -480.69], [-1277.31, -481.78], [-1277.44, -484.92], [-1270.86, -485.18], [-1271.3, -495.75], [-1277.98, -495.48], [-1278.66, -512.44], [-1280.83, -512.34], [-1280.92, -514.74], [-1288.4, -514.43], [-1288.31, -512.16], [-1291.32, -512.04], [-1291.22, -511.4], [-1290.49, -495.0], [-1291.88, -494.94], [-1291.33, -481.58], [-1289.93, -481.63], [-1289.86, -480.04], [-1293.89, -479.88], [-1292.09, -435.86], [-1293.6, -435.81], [-1293.73, -438.84], [-1297.76, -438.68], [-1297.62, -435.25], [-1299.0, -435.2], [-1298.89, -432.69], [-1301.19, -432.59], [-1300.91, -425.78], [-1298.5, -425.89], [-1298.4, -423.31], [-1267.49, -424.57], [-1267.41, -422.7], [-1254.11, -423.24], [-1254.2, -425.39], [-1223.88, -426.63], [-1223.97, -428.93], [-1221.78, -428.88], [-1222.24, -436.41], [-1224.47, -436.33], [-1224.58, -438.99], [-1254.99, -437.74], [-1255.26, -444.17], [-1265.63, -443.75], [-1265.36, -437.04], [-1270.83, -436.81]], "holes": []}, "height": 35.0}, {"shape": {"outer": [[-1459.27, -429.36], [-1459.64, -437.76], [-1461.85, -437.66], [-1461.96, -440.16], [-1485.56, -439.15], [-1485.59, -439.71], [-1485.85, -445.9], [-1497.79, -445.38], [-1497.67, -442.69], [-1509.19, -442.19], [-1511.8, -442.08], [-1512.01, -447.02], [-1515.57, -446.86], [-1515.69, -449.73], [-1516.08, -458.72], [-1518.11, -458.63], [-1518.15, -459.45], [-1528.49, -458.99], [-1528.41, -457.3], [-1529.13, -457.27], [-1534.51, -457.01], [-1534.57, -458.22], [-1545.48, -457.71], [-1546.59, -481.32], [-1548.7, -481.23], [-1548.81, -483.4], [-1558.39, -482.94], [-1558.27, -480.62], [-1560.57, -480.51], [-1559.44, -457.04], [-1561.56, -456.95], [-1560.77, -440.49], [-1558.65, -440.6], [-1558.62, -440.01], [-1562.49, -439.82], [-1562.42, -438.24], [-1561.35, -415.95], [-1557.39, -416.13], [-1557.12, -410.46], [-1554.42, -410.58], [-1554.29, -408.05], [-1545.06, -408.49], [-1545.14, -410.25], [-1545.19, -411.23], [-1542.62, -411.34], [-1542.95, -418.35], [-1530.4, -418.93], [-1530.13, -413.27], [-1524.94, -413.51], [-1520.18, -413.73], [-1520.42, -418.83], [-1500.35, -419.76], [-1500.52, -423.41], [-1484.99, -424.12], [-1485.05, -425.53], [-1461.29, -426.59], [-1461.41, -429.26], [-1459.27, -429.36]], "holes": []}, "height": 35.0}, {"shape": {"outer": [[-1753.21, -280.28], [-1752.98, -280.29], [-1753.35, -288.19], [-1765.29, -287.62], [-1765.16, -285.06], [-1769.75, -284.84], [-1769.62, -282.15], [-1769.58, -279.05], [-1769.48, -275.57], [-1769.34, -270.82], [-1769.19, -267.59], [-1763.22, -267.88], [-1763.47, -272.99], [-1752.89, -273.49], [-1753.21, -280.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1753.98, -335.35], [-1753.73, -329.9], [-1753.49, -324.46], [-1741.45, -324.98], [-1742.37, -346.06], [-1734.97, -346.38], [-1735.87, -366.93], [-1743.34, -366.59], [-1743.49, -369.82], [-1755.54, -369.3], [-1754.79, -352.36], [-1775.1, -351.47], [-1775.32, -356.45], [-1781.99, -356.15], [-1781.05, -334.73], [-1782.49, -334.66], [-1782.34, -331.03], [-1780.84, -331.1], [-1780.84, -330.89], [-1775.94, -331.1], [-1775.73, -326.14], [-1771.93, -326.31], [-1772.05, -329.24], [-1772.29, -334.54], [-1753.98, -335.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1801.57, -487.85], [-1804.86, -487.72], [-1805.17, -494.88], [-1830.05, -493.82], [-1829.64, -484.24], [-1831.68, -484.15], [-1831.6, -482.15], [-1840.94, -481.75], [-1839.9, -457.19], [-1832.82, -457.49], [-1832.66, -453.83], [-1837.35, -453.63], [-1837.17, -449.44], [-1828.07, -449.83], [-1827.93, -446.52], [-1809.12, -447.31], [-1809.3, -451.43], [-1795.41, -452.02], [-1795.71, -459.15], [-1795.59, -459.16], [-1795.86, -465.47], [-1792.78, -465.59], [-1793.56, -483.98], [-1797.3, -483.82], [-1797.4, -486.22], [-1797.47, -486.22], [-1797.76, -493.01], [-1801.77, -492.84], [-1801.57, -487.85]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-1743.22, -423.52], [-1741.8, -423.58], [-1742.03, -428.64], [-1743.39, -428.58], [-1743.59, -432.86], [-1772.8, -431.54], [-1773.32, -431.51], [-1772.05, -403.57], [-1789.83, -402.76], [-1789.9, -404.35], [-1787.56, -404.46], [-1787.8, -409.91], [-1789.2, -409.84], [-1789.49, -416.23], [-1790.01, -427.37], [-1790.52, -438.62], [-1799.9, -438.2], [-1812.15, -437.63], [-1819.39, -437.31], [-1819.47, -438.9], [-1825.46, -438.63], [-1825.35, -436.09], [-1836.48, -435.58], [-1834.71, -396.93], [-1834.66, -395.95], [-1834.87, -395.95], [-1834.62, -390.35], [-1829.16, -390.61], [-1829.16, -390.91], [-1828.16, -390.96], [-1733.63, -395.27], [-1734.76, -420.06], [-1743.04, -419.68], [-1743.22, -423.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1709.33, -417.66], [-1708.76, -408.03], [-1690.36, -409.11], [-1690.92, -418.75], [-1709.33, -417.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1693.27, -420.57], [-1693.8, -429.77], [-1713.07, -428.66], [-1712.54, -419.46], [-1693.27, -420.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1795.77, -364.7], [-1796.9, -364.66], [-1798.31, -364.6], [-1798.37, -366.24], [-1815.29, -365.58], [-1815.22, -363.94], [-1818.11, -363.83], [-1817.99, -360.9], [-1825.35, -360.61], [-1825.31, -359.44], [-1829.77, -359.27], [-1829.84, -361.35], [-1838.84, -361.0], [-1838.5, -352.02], [-1837.49, -352.06], [-1835.84, -352.13], [-1835.77, -350.02], [-1836.27, -350.0], [-1836.18, -347.59], [-1837.31, -347.55], [-1837.27, -346.44], [-1838.28, -346.4], [-1840.06, -346.33], [-1839.94, -343.19], [-1841.57, -343.13], [-1840.71, -321.07], [-1837.95, -321.17], [-1837.86, -319.1], [-1821.7, -319.73], [-1821.83, -323.05], [-1812.75, -323.41], [-1812.62, -320.09], [-1796.51, -320.72], [-1796.58, -322.69], [-1794.14, -322.78], [-1794.91, -342.49], [-1795.39, -342.46], [-1795.45, -344.07], [-1795.51, -345.73], [-1795.03, -345.74], [-1795.77, -364.7]], "holes": []}, "height": 45.5}, {"shape": {"outer": [[-1705.37, -431.41], [-1701.1, -431.54], [-1701.15, -433.3], [-1690.33, -433.73], [-1690.73, -443.89], [-1712.07, -443.04], [-1711.66, -432.89], [-1705.42, -433.14], [-1705.37, -431.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2226.63, -341.01], [-2151.14, -378.28], [-2153.33, -382.58], [-2148.97, -384.99], [-2146.83, -380.42], [-2139.97, -383.84], [-2135.63, -386.1], [-2136.02, -405.62], [-2133.8, -405.8], [-2131.81, -405.91], [-2132.82, -431.66], [-2134.08, -463.53], [-2140.29, -463.36], [-2155.93, -462.93], [-2163.94, -462.71], [-2163.61, -449.7], [-2164.66, -443.86], [-2166.57, -437.85], [-2169.12, -431.54], [-2172.45, -425.25], [-2177.0, -419.69], [-2182.27, -414.86], [-2188.84, -410.23], [-2193.98, -407.94], [-2199.6, -405.8], [-2203.7, -404.47], [-2207.92, -403.32], [-2212.64, -402.32], [-2217.38, -401.68], [-2227.97, -401.11], [-2228.15, -399.86], [-2229.26, -399.88], [-2236.63, -400.07], [-2236.39, -360.53], [-2226.99, -361.13], [-2226.79, -349.41], [-2226.63, -341.01]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-2105.79, -515.08], [-2103.85, -515.17], [-2103.69, -511.73], [-2096.68, -512.07], [-2096.5, -508.45], [-2081.39, -509.18], [-2081.56, -512.8], [-2075.05, -513.11], [-2075.21, -516.55], [-2073.15, -516.66], [-2073.67, -527.38], [-2074.18, -538.01], [-2076.24, -537.91], [-2076.39, -541.03], [-2082.92, -540.72], [-2083.08, -544.08], [-2098.19, -543.36], [-2098.02, -539.7], [-2105.02, -539.37], [-2104.85, -535.87], [-2106.78, -535.77], [-2105.79, -515.08]], "holes": []}, "height": 54.9}, {"shape": {"outer": [[-2748.75, -161.63], [-2745.75, -161.75], [-2745.82, -163.57], [-2739.21, -163.84], [-2740.29, -190.26], [-2745.82, -190.03], [-2745.86, -191.11], [-2755.82, -190.7], [-2755.62, -185.8], [-2755.54, -185.81], [-2754.61, -163.17], [-2769.56, -162.56], [-2770.51, -185.71], [-2781.33, -185.26], [-2781.43, -187.58], [-2783.74, -187.5], [-2784.85, -187.45], [-2784.75, -185.22], [-2795.57, -184.78], [-2794.61, -161.38], [-2794.75, -161.38], [-2794.44, -153.59], [-2783.75, -154.02], [-2783.65, -151.44], [-2773.38, -151.86], [-2773.49, -154.32], [-2769.35, -154.5], [-2769.37, -154.81], [-2748.5, -155.66], [-2748.75, -161.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2841.49, -172.59], [-2822.76, -173.22], [-2823.13, -184.05], [-2841.86, -183.42], [-2841.49, -172.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2726.75, -156.36], [-2693.37, -157.58], [-2694.92, -200.49], [-2728.31, -199.28], [-2726.75, -156.36]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2111.57, -394.17], [-2015.62, -441.38], [-2015.84, -446.66], [-2019.81, -446.5], [-2020.93, -474.78], [-2021.11, -479.18], [-2060.45, -477.8], [-2059.82, -464.72], [-2065.9, -464.45], [-2071.1, -464.21], [-2071.67, -477.47], [-2098.72, -475.13], [-2112.68, -474.67], [-2109.43, -436.29], [-2112.35, -436.13], [-2112.28, -432.22], [-2111.57, -394.17]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[2465.07, 1743.03], [2463.91, 1747.47], [2465.37, 1747.82], [2464.21, 1752.08], [2462.75, 1751.69], [2462.1, 1754.33], [2459.56, 1753.59], [2457.41, 1762.27], [2445.29, 1759.14], [2450.33, 1739.79], [2457.3, 1741.46], [2457.68, 1740.26], [2463.31, 1741.74], [2463.13, 1742.52], [2465.07, 1743.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2717.82, 2675.22], [2735.58, 2679.83], [2733.56, 2691.31], [2736.49, 2696.79], [2747.37, 2700.51], [2741.75, 2718.52], [2707.54, 2708.48], [2717.82, 2675.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[835.59, 526.8], [876.54, 562.99], [826.0, 620.27], [783.85, 582.7], [835.59, 526.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1168.19, 660.34], [1111.57, 608.95], [1135.61, 582.66], [1166.11, 610.35], [1167.26, 609.11], [1193.37, 632.81], [1168.19, 660.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1477.77, 797.97], [1491.46, 783.45], [1501.7, 792.71], [1504.25, 789.93], [1509.77, 795.11], [1494.27, 811.99], [1477.77, 797.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1895.32, 1277.19], [1899.56, 1273.44], [1900.74, 1272.4], [1885.88, 1255.74], [1879.3, 1261.57], [1884.16, 1267.02], [1885.32, 1266.0], [1885.92, 1266.67], [1895.32, 1277.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-602.76, -2190.84], [-586.16, -2191.74], [-584.15, -2166.97], [-598.09, -2165.27], [-602.76, -2190.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-678.66, -2185.75], [-670.85, -2186.11], [-670.02, -2167.54], [-671.66, -2167.47], [-671.06, -2154.09], [-677.23, -2153.82], [-678.66, -2185.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-698.13, -2104.04], [-695.19, -2108.98], [-691.86, -2107.01], [-694.79, -2102.08], [-698.13, -2104.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1273.69, -3175.96], [-1263.58, -3124.82], [-1242.69, -3128.93], [-1226.7, -3048.08], [-1207.64, -3051.83], [-1205.19, -3039.46], [-1197.55, -3040.95], [-1194.08, -3023.44], [-1157.81, -3030.56], [-1163.79, -3060.8], [-1184.85, -3056.67], [-1192.51, -3095.45], [-1187.56, -3096.42], [-1189.7, -3107.31], [-1194.62, -3106.35], [-1203.19, -3149.66], [-1224.06, -3145.55], [-1228.24, -3166.67], [-1246.14, -3163.15], [-1249.6, -3180.69], [-1273.69, -3175.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2462.9, -1926.11], [-2449.04, -1929.77], [-2448.6, -1929.04], [-2444.92, -1923.01], [-2443.28, -1920.33], [-2446.58, -1918.65], [-2451.62, -1916.08], [-2452.76, -1915.51], [-2462.9, -1926.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1881.65, -1852.89], [-1838.97, -1854.74], [-1833.79, -1854.81], [-1831.92, -1809.67], [-1843.51, -1798.48], [-1880.5, -1833.2], [-1881.65, -1852.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1731.31, -1758.47], [-1721.24, -1758.72], [-1712.24, -1758.94], [-1645.25, -1760.58], [-1646.44, -1809.55], [-1651.98, -1809.27], [-1652.44, -1818.5], [-1703.93, -1816.51], [-1704.07, -1825.27], [-1707.47, -1825.22], [-1709.33, -1825.12], [-1709.22, -1816.78], [-1715.64, -1816.71], [-1720.38, -1816.65], [-1720.2, -1812.04], [-1726.56, -1811.84], [-1726.54, -1807.58], [-1728.64, -1807.45], [-1728.66, -1803.16], [-1728.15, -1787.48], [-1727.52, -1768.04], [-1731.56, -1767.7], [-1731.31, -1758.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1833.79, -1854.81], [-1831.92, -1809.67], [-1831.49, -1805.93], [-1821.08, -1806.19], [-1817.62, -1807.44], [-1818.78, -1855.08], [-1833.79, -1854.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1652.44, -1818.5], [-1651.98, -1809.27], [-1646.44, -1809.55], [-1639.85, -1809.87], [-1640.02, -1818.54], [-1627.77, -1839.41], [-1632.43, -1841.65], [-1630.45, -1844.6], [-1701.95, -1883.28], [-1704.77, -1878.18], [-1706.16, -1878.94], [-1715.02, -1861.69], [-1713.16, -1860.65], [-1714.59, -1858.22], [-1708.24, -1854.46], [-1707.97, -1844.58], [-1707.74, -1835.86], [-1707.47, -1825.22], [-1704.07, -1825.27], [-1703.93, -1816.51], [-1652.44, -1818.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1805.63, -1794.47], [-1794.61, -1783.46], [-1799.29, -1779.08], [-1803.97, -1774.69], [-1818.21, -1789.03], [-1829.65, -1799.25], [-1821.08, -1806.19], [-1817.62, -1807.44], [-1805.63, -1794.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1818.84, -1858.78], [-1789.42, -1888.53], [-1785.11, -1892.89], [-1794.45, -1901.91], [-1812.28, -1883.57], [-1823.06, -1872.07], [-1827.98, -1872.0], [-1836.64, -1863.7], [-1833.16, -1859.48], [-1833.79, -1854.81], [-1818.78, -1855.08], [-1818.84, -1858.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1865.08, -1946.55], [-1784.5, -1903.98], [-1777.86, -1916.16], [-1858.25, -1960.02], [-1865.08, -1946.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1805.63, -1794.47], [-1765.43, -1780.15], [-1752.66, -1807.31], [-1744.07, -1838.33], [-1742.78, -1844.18], [-1740.0, -1855.05], [-1737.94, -1862.25], [-1760.24, -1868.26], [-1764.57, -1855.04], [-1768.11, -1855.66], [-1771.12, -1846.41], [-1818.84, -1858.78], [-1818.78, -1855.08], [-1817.62, -1807.44], [-1805.63, -1794.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1843.51, -1798.48], [-1874.69, -1765.31], [-1867.41, -1753.27], [-1864.21, -1755.98], [-1862.19, -1754.29], [-1858.56, -1757.23], [-1854.08, -1753.43], [-1818.21, -1789.03], [-1829.65, -1799.25], [-1821.08, -1806.19], [-1831.49, -1805.93], [-1831.92, -1809.67], [-1843.51, -1798.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1884.34, -1932.27], [-1856.82, -1933.06], [-1819.21, -1912.49], [-1826.9, -1897.89], [-1833.03, -1886.26], [-1838.89, -1886.19], [-1839.06, -1870.18], [-1842.12, -1870.25], [-1842.17, -1860.57], [-1839.39, -1856.71], [-1838.97, -1854.74], [-1881.65, -1852.89], [-1882.2, -1868.96], [-1884.34, -1932.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1922.22, 70.88], [-1923.41, 64.0], [-1919.95, 63.4], [-1916.68, 62.84], [-1915.48, 69.71], [-1922.22, 70.88]], "holes": []}, "height": 25.9}, {"shape": {"outer": [[-3352.94, -1713.99], [-3341.91, -1704.63], [-3346.16, -1699.66], [-3338.76, -1693.38], [-3337.55, -1694.81], [-3314.66, -1675.36], [-3307.8, -1683.38], [-3298.04, -1675.08], [-3292.85, -1681.16], [-3287.75, -1676.83], [-3289.9, -1674.32], [-3284.89, -1670.06], [-3279.65, -1665.61], [-3277.47, -1668.16], [-3272.42, -1663.86], [-3277.34, -1658.12], [-3267.71, -1649.94], [-3270.53, -1646.63], [-3273.36, -1649.04], [-3293.84, -1625.15], [-3289.84, -1621.75], [-3285.66, -1618.19], [-3283.31, -1620.93], [-3274.52, -1613.44], [-3277.64, -1609.82], [-3255.63, -1591.07], [-3245.83, -1602.49], [-3244.38, -1604.17], [-3242.97, -1602.99], [-3225.01, -1623.91], [-3238.01, -1634.99], [-3236.7, -1636.53], [-3230.88, -1643.29], [-3233.61, -1645.61], [-3232.65, -1646.72], [-3264.37, -1673.74], [-3267.04, -1670.63], [-3272.16, -1674.99], [-3270.7, -1676.68], [-3280.91, -1685.39], [-3282.31, -1683.76], [-3287.44, -1688.13], [-3288.61, -1686.76], [-3291.69, -1689.39], [-3272.54, -1711.75], [-3271.98, -1711.27], [-3265.87, -1718.4], [-3266.86, -1719.24], [-3260.37, -1726.83], [-3270.57, -1735.5], [-3271.51, -1734.39], [-3273.24, -1735.86], [-3259.93, -1751.43], [-3295.96, -1782.0], [-3301.66, -1775.34], [-3304.73, -1777.95], [-3308.85, -1781.44], [-3320.89, -1767.36], [-3313.7, -1761.25], [-3315.11, -1759.6], [-3314.43, -1759.03], [-3352.94, -1713.99]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-3281.5, -1880.39], [-3267.88, -1869.38], [-3269.43, -1867.46], [-3262.28, -1861.69], [-3260.73, -1863.6], [-3251.34, -1856.01], [-3247.12, -1843.95], [-3244.76, -1844.71], [-3232.88, -1813.38], [-3225.78, -1816.16], [-3225.29, -1814.92], [-3219.71, -1817.11], [-3220.19, -1818.35], [-3212.25, -1821.45], [-3229.16, -1865.52], [-3227.81, -1867.13], [-3238.11, -1875.98], [-3239.16, -1874.76], [-3261.37, -1892.62], [-3245.7, -1911.52], [-3258.79, -1922.07], [-3266.71, -1912.67], [-3268.82, -1914.1], [-3282.02, -1897.62], [-3277.71, -1894.33], [-3282.98, -1887.96], [-3278.29, -1884.35], [-3281.5, -1880.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3210.68, -1739.31], [-3211.07, -1738.55], [-3220.99, -1744.54], [-3219.58, -1747.27], [-3222.33, -1749.03], [-3214.95, -1762.03], [-3204.52, -1755.31], [-3189.35, -1773.81], [-3146.5, -1738.92], [-3161.34, -1720.84], [-3152.05, -1713.28], [-3158.23, -1705.74], [-3159.09, -1706.44], [-3164.18, -1700.23], [-3186.65, -1718.53], [-3176.38, -1731.05], [-3171.32, -1726.92], [-3166.5, -1732.8], [-3191.07, -1752.81], [-3195.17, -1747.81], [-3190.8, -1745.06], [-3192.61, -1742.25], [-3191.93, -1741.71], [-3198.29, -1731.77], [-3210.68, -1739.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3153.04, -1788.58], [-3139.83, -1804.09], [-3152.43, -1814.73], [-3165.63, -1799.22], [-3153.04, -1788.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3256.84, -2035.85], [-3235.72, -2008.38], [-3246.06, -2000.49], [-3245.14, -1999.29], [-3253.57, -1992.85], [-3257.92, -1998.52], [-3258.95, -1997.73], [-3261.83, -2001.48], [-3265.34, -2006.05], [-3260.68, -2009.61], [-3271.97, -2024.3], [-3256.84, -2035.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1347.0, -2833.83], [-1347.13, -2838.55], [-1348.44, -2838.51], [-1348.88, -2853.85], [-1347.57, -2853.89], [-1348.03, -2869.94], [-1311.32, -2870.97], [-1311.41, -2873.88], [-1299.28, -2874.23], [-1298.07, -2831.88], [-1303.76, -2831.72], [-1303.6, -2826.36], [-1339.46, -2825.35], [-1339.7, -2834.04], [-1347.0, -2833.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2251.79, -652.43], [-2224.47, -653.05], [-2224.88, -670.64], [-2231.2, -670.5], [-2231.95, -703.53], [-2232.09, -709.42], [-2232.64, -710.74], [-2244.37, -710.47], [-2244.41, -712.55], [-2253.17, -712.35], [-2251.79, -652.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2187.99, -657.69], [-2199.18, -657.37], [-2200.28, -695.77], [-2189.1, -696.09], [-2188.99, -692.39], [-2187.99, -657.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2164.61, -684.97], [-2163.8, -659.22], [-2142.37, -659.88], [-2142.97, -679.22], [-2143.17, -685.63], [-2164.61, -684.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2184.95, -657.77], [-2174.37, -658.02], [-2175.18, -692.47], [-2185.76, -692.23], [-2184.95, -657.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2085.68, -662.11], [-2086.16, -672.98], [-2093.14, -672.68], [-2093.31, -676.45], [-2113.39, -675.59], [-2112.76, -660.93], [-2085.68, -662.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2114.88, -605.6], [-2114.46, -593.65], [-2103.09, -594.04], [-2103.51, -605.99], [-2114.88, -605.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2063.77, -599.48], [-2064.91, -638.73], [-2032.51, -639.67], [-2032.12, -626.1], [-2039.6, -625.89], [-2038.85, -600.2], [-2063.77, -599.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2021.17, -630.86], [-2021.42, -639.02], [-2005.62, -639.5], [-2005.36, -631.34], [-2021.17, -630.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2082.43, -603.14], [-2070.54, -603.38], [-2071.18, -635.16], [-2083.07, -634.92], [-2082.43, -603.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2098.17, -612.88], [-2098.77, -633.34], [-2087.63, -633.66], [-2087.03, -613.2], [-2098.17, -612.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2114.92, -624.26], [-2101.65, -624.9], [-2102.1, -634.34], [-2115.37, -633.7], [-2114.92, -624.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1974.57, -261.52], [-1975.37, -291.06], [-1963.41, -291.38], [-1963.18, -283.03], [-1947.38, -283.46], [-1947.39, -283.92], [-1943.31, -284.02], [-1943.42, -288.23], [-1933.48, -288.51], [-1933.1, -274.31], [-1943.18, -274.05], [-1942.96, -266.23], [-1945.26, -266.17], [-1947.38, -266.11], [-1947.48, -269.76], [-1963.04, -269.34], [-1962.83, -261.84], [-1968.49, -261.68], [-1974.57, -261.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2704.91, -929.36], [-2712.99, -936.26], [-2727.83, -919.02], [-2733.54, -912.4], [-2725.46, -905.49], [-2704.91, -929.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2735.47, -915.51], [-2740.93, -920.11], [-2751.49, -928.97], [-2757.4, -933.95], [-2763.99, -926.17], [-2742.05, -907.73], [-2735.47, -915.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2760.12, -935.61], [-2754.66, -941.95], [-2745.24, -952.73], [-2739.51, -959.55], [-2747.62, -966.49], [-2768.24, -942.54], [-2760.12, -935.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2788.31, -955.46], [-2782.6, -962.21], [-2765.7, -981.78], [-2757.67, -974.93], [-2780.28, -948.61], [-2788.31, -955.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2795.75, -962.61], [-2796.67, -1011.5], [-2807.05, -1011.31], [-2806.13, -962.41], [-2795.75, -962.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3090.21, -1237.3], [-3076.87, -1253.1], [-3068.79, -1246.33], [-3049.31, -1230.02], [-3041.83, -1223.74], [-3043.8, -1221.42], [-3055.17, -1207.94], [-3062.65, -1214.22], [-3082.12, -1230.53], [-3090.21, -1237.3]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-3090.01, -1256.31], [-3097.24, -1247.76], [-3089.78, -1241.51], [-3082.55, -1250.06], [-3085.33, -1252.38], [-3090.01, -1256.31]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2271.09, -1443.77], [-2271.57, -1458.39], [-2259.06, -1458.81], [-2258.58, -1444.18], [-2271.09, -1443.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-902.29, -2239.33], [-896.42, -2249.6], [-894.74, -2259.98], [-895.27, -2267.46], [-893.98, -2267.53], [-894.34, -2274.85], [-896.32, -2315.85], [-897.04, -2330.9], [-894.25, -2348.22], [-890.02, -2355.04], [-888.89, -2354.56], [-886.01, -2359.39], [-882.19, -2365.79], [-870.04, -2374.94], [-852.4, -2379.06], [-837.28, -2376.62], [-837.5, -2375.15], [-834.98, -2374.62], [-832.54, -2373.27], [-832.08, -2374.28], [-818.45, -2365.95], [-808.73, -2352.37], [-804.72, -2336.61], [-804.97, -2329.58], [-808.24, -2306.71], [-805.89, -2296.63], [-797.38, -2285.84], [-810.34, -2272.79], [-819.7, -2285.52], [-818.75, -2286.36], [-821.05, -2289.25], [-821.62, -2291.52], [-822.97, -2290.82], [-826.61, -2306.27], [-823.06, -2328.61], [-821.96, -2328.52], [-821.62, -2330.74], [-823.05, -2331.04], [-825.35, -2344.65], [-831.76, -2353.44], [-840.94, -2358.8], [-851.91, -2360.26], [-862.12, -2357.95], [-871.15, -2352.09], [-866.74, -2347.98], [-860.61, -2342.59], [-863.52, -2337.27], [-871.68, -2340.12], [-876.21, -2341.76], [-878.13, -2331.4], [-877.81, -2318.13], [-877.19, -2305.63], [-876.34, -2291.66], [-875.8, -2282.14], [-875.57, -2275.9], [-875.36, -2271.09], [-876.96, -2271.1], [-876.45, -2260.61], [-878.97, -2243.13], [-889.72, -2225.82], [-899.02, -2234.47], [-898.25, -2235.9], [-902.29, -2239.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1466.9, 2442.35], [1463.03, 2431.03], [1439.93, 2438.87], [1443.81, 2450.19], [1466.9, 2442.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1694.08, -956.31], [-1693.39, -925.46], [-1641.29, -926.62], [-1641.97, -957.47], [-1668.71, -956.87], [-1675.09, -956.73], [-1678.81, -956.65], [-1694.08, -956.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1664.25, -868.79], [-1663.09, -839.69], [-1675.09, -839.27], [-1674.23, -821.23], [-1631.34, -822.73], [-1632.8, -860.43], [-1631.95, -860.47], [-1632.23, -863.35], [-1632.53, -865.16], [-1633.08, -866.86], [-1633.98, -868.26], [-1635.4, -869.47], [-1636.96, -870.25], [-1638.69, -870.56], [-1642.13, -870.47], [-1642.09, -869.59], [-1664.25, -868.79]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[-1651.92, -966.72], [-1652.64, -993.45], [-1683.94, -992.61], [-1687.55, -992.52], [-1710.38, -991.91], [-1709.67, -965.18], [-1679.02, -965.99], [-1675.31, -966.09], [-1651.92, -966.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2429.3, -1743.34], [-2439.92, -1753.43], [-2445.0, -1748.12], [-2459.39, -1732.78], [-2454.07, -1727.83], [-2456.15, -1725.61], [-2451.71, -1721.48], [-2447.59, -1720.84], [-2446.1, -1720.6], [-2440.98, -1719.79], [-2438.05, -1717.01], [-2435.78, -1714.85], [-2425.99, -1725.41], [-2429.06, -1728.66], [-2435.72, -1736.35], [-2429.3, -1743.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2387.79, -1733.35], [-2378.62, -1741.06], [-2367.02, -1727.35], [-2376.19, -1719.65], [-2387.79, -1733.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1986.71, -1897.16], [-1987.76, -1926.4], [-1968.28, -1927.1], [-1968.37, -1929.5], [-1960.35, -1929.79], [-1960.9, -1944.99], [-1918.93, -1946.5], [-1917.24, -1899.66], [-1986.71, -1897.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-58.0, 110.34], [-48.89, 99.97], [-25.56, 120.31], [-34.68, 130.68], [-58.0, 110.34]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[-434.33, 235.1], [-437.02, 232.64], [-438.52, 234.29], [-444.41, 228.92], [-442.91, 227.29], [-443.48, 226.77], [-436.74, 219.43], [-427.6, 227.76], [-434.33, 235.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-465.01, 207.87], [-490.1, 185.26], [-480.98, 175.22], [-455.9, 197.83], [-465.01, 207.87]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-506.71, 503.47], [-504.52, 491.04], [-475.12, 496.16], [-477.31, 508.59], [-506.71, 503.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-308.8, 128.85], [-325.19, 114.01], [-315.74, 103.65], [-299.36, 118.5], [-308.8, 128.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-201.21, 43.63], [-190.89, 32.61], [-165.56, 56.16], [-164.02, 57.6], [-174.34, 68.62], [-201.21, 43.63]], "holes": []}, "height": 38.5}, {"shape": {"outer": [[-434.66, 238.55], [-423.77, 226.88], [-416.95, 233.18], [-418.0, 234.31], [-417.42, 234.86], [-419.45, 237.05], [-420.04, 236.5], [-425.29, 242.12], [-424.72, 242.65], [-426.58, 244.65], [-427.16, 244.12], [-427.84, 244.85], [-428.3, 244.43], [-429.56, 245.78], [-434.7, 241.01], [-433.45, 239.67], [-434.66, 238.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-363.57, 118.24], [-358.74, 112.87], [-360.81, 111.03], [-338.53, 86.22], [-334.17, 90.12], [-333.45, 89.31], [-326.09, 95.88], [-326.47, 96.31], [-322.49, 99.87], [-341.97, 121.55], [-349.93, 130.41], [-363.57, 118.24]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-468.77, 423.92], [-483.32, 411.09], [-463.3, 388.56], [-448.75, 401.4], [-450.56, 403.38], [-468.77, 423.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-445.54, 505.67], [-399.34, 456.66], [-385.09, 469.9], [-388.7, 473.81], [-379.51, 481.85], [-354.49, 480.0], [-375.0, 502.48], [-445.54, 505.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[69.71, 237.2], [55.65, 224.35], [70.59, 208.12], [84.65, 220.97], [69.71, 237.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-400.62, 214.1], [-399.96, 214.71], [-400.48, 215.28], [-395.83, 219.5], [-395.31, 218.93], [-392.32, 221.66], [-390.69, 219.88], [-390.09, 220.43], [-386.03, 215.99], [-386.63, 215.44], [-380.47, 208.72], [-379.99, 209.16], [-375.87, 204.66], [-376.35, 204.22], [-374.85, 202.58], [-376.95, 200.66], [-373.35, 196.72], [-374.81, 195.4], [-372.98, 193.4], [-374.23, 192.26], [-372.49, 190.34], [-373.45, 189.47], [-372.99, 188.96], [-377.08, 185.23], [-377.55, 185.75], [-384.33, 179.57], [-391.93, 187.87], [-384.68, 194.44], [-384.42, 196.41], [-400.62, 214.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-198.76, 162.56], [-199.94, 141.42], [-201.81, 109.91], [-188.51, 109.33], [-186.96, 110.5], [-174.01, 95.94], [-154.55, 113.01], [-198.76, 162.56]], "holes": []}, "height": 49.0}, {"shape": {"outer": [[-447.95, 222.5], [-438.74, 212.54], [-449.86, 202.33], [-459.07, 212.29], [-447.95, 222.5]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-483.78, 450.19], [-509.95, 479.31], [-522.11, 468.46], [-509.03, 453.92], [-497.02, 440.56], [-493.87, 443.37], [-492.0, 441.31], [-486.14, 446.53], [-486.92, 447.39], [-483.78, 450.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-425.46, 246.75], [-418.74, 239.36], [-418.57, 239.52], [-412.74, 233.13], [-412.61, 233.25], [-411.15, 231.64], [-408.13, 234.38], [-409.57, 235.96], [-406.43, 238.8], [-418.99, 252.6], [-419.83, 251.85], [-421.38, 253.55], [-426.68, 248.75], [-425.13, 247.05], [-425.46, 246.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-636.73, -2170.28], [-640.2, -2189.29], [-624.61, -2190.01], [-622.11, -2171.13], [-636.73, -2170.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-640.1, -2209.1], [-640.41, -2222.84], [-640.47, -2225.47], [-640.57, -2230.03], [-632.51, -2230.22], [-632.04, -2209.29], [-640.1, -2209.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-680.83, -2208.61], [-681.8, -2218.82], [-682.8, -2218.74], [-684.36, -2235.16], [-678.04, -2235.77], [-676.73, -2221.95], [-675.66, -2222.06], [-674.43, -2209.22], [-680.83, -2208.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-620.31, -2169.65], [-611.18, -2169.98], [-614.53, -2189.2], [-623.49, -2188.95], [-620.31, -2169.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-707.81, -2161.05], [-708.44, -2177.95], [-698.46, -2178.31], [-697.83, -2161.42], [-707.81, -2161.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-713.79, -2211.0], [-714.0, -2212.81], [-715.06, -2212.68], [-716.64, -2226.05], [-706.86, -2227.2], [-705.32, -2214.08], [-706.24, -2213.97], [-706.0, -2211.91], [-713.79, -2211.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-608.61, -2165.84], [-599.7, -2167.41], [-603.39, -2189.52], [-612.99, -2189.02], [-608.61, -2165.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-688.38, -2172.97], [-688.55, -2178.78], [-690.03, -2178.74], [-690.25, -2186.14], [-685.28, -2186.29], [-684.9, -2173.07], [-688.38, -2172.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1979.03, -712.49], [-1955.58, -713.15], [-1955.93, -725.48], [-1942.42, -725.86], [-1943.12, -750.33], [-1963.41, -749.75], [-1963.82, -763.82], [-1980.49, -763.34], [-1979.03, -712.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2062.22, -756.3], [-2006.48, -758.8], [-2007.05, -771.48], [-2007.84, -771.45], [-2008.29, -781.41], [-2033.99, -780.25], [-2033.86, -777.38], [-2043.85, -776.93], [-2043.94, -778.87], [-2063.2, -778.0], [-2062.22, -756.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2116.92, -754.87], [-2097.91, -755.58], [-2098.16, -762.11], [-2075.38, -762.96], [-2075.87, -775.76], [-2111.47, -774.42], [-2111.2, -767.25], [-2117.38, -767.01], [-2116.92, -754.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2118.68, -710.29], [-2092.56, -703.87], [-2048.82, -704.94], [-2048.69, -699.74], [-2033.93, -700.1], [-2033.98, -701.83], [-2026.32, -702.04], [-2026.42, -705.55], [-2010.59, -705.98], [-2009.77, -706.0], [-2010.46, -731.12], [-2051.37, -729.99], [-2051.55, -736.5], [-2054.56, -736.43], [-2054.67, -740.18], [-2057.62, -740.09], [-2057.51, -736.44], [-2063.01, -736.27], [-2063.12, -740.03], [-2065.6, -739.95], [-2088.94, -739.22], [-2088.68, -730.78], [-2119.15, -729.83], [-2119.03, -725.77], [-2119.74, -724.92], [-2119.48, -714.89], [-2118.77, -714.36], [-2118.68, -710.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1983.93, -670.15], [-1939.65, -671.97], [-1940.53, -693.33], [-1984.8, -691.51], [-1983.93, -670.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2067.31, -74.22], [-2066.64, -57.02], [-2067.12, -57.01], [-2067.05, -55.35], [-2039.52, -56.46], [-2039.55, -57.14], [-2039.03, -57.16], [-2040.53, -94.46], [-2040.72, -99.22], [-2055.84, -98.62], [-2057.14, -98.52], [-2056.92, -93.8], [-2056.59, -86.5], [-2056.55, -84.93], [-2072.11, -84.31], [-2072.35, -90.48], [-2083.42, -90.04], [-2083.21, -85.3], [-2082.76, -73.62], [-2067.31, -74.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2102.63, -573.51], [-2101.95, -559.65], [-2108.84, -559.31], [-2108.39, -550.08], [-2076.57, -551.65], [-2077.02, -560.86], [-2093.74, -560.05], [-2094.4, -573.59], [-2094.54, -576.29], [-2091.25, -576.46], [-2091.53, -582.2], [-2078.01, -582.87], [-2078.48, -592.39], [-2110.19, -590.84], [-2109.72, -581.4], [-2103.03, -581.73], [-2102.63, -573.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2012.28, -380.23], [-2012.9, -396.23], [-2000.96, -396.7], [-2000.9, -395.17], [-1999.32, -395.23], [-1999.11, -389.91], [-1998.82, -382.39], [-2000.4, -382.33], [-2000.34, -380.7], [-2012.28, -380.23]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2939.73, -189.24], [-2949.64, -190.72], [-2950.21, -185.65], [-2961.89, -187.35], [-2964.18, -172.72], [-2933.2, -167.51], [-2933.73, -164.11], [-2934.88, -164.26], [-2935.89, -164.12], [-2936.74, -163.7], [-2937.65, -162.78], [-2937.96, -162.05], [-2938.11, -161.14], [-2937.89, -159.86], [-2937.33, -158.91], [-2936.59, -158.28], [-2935.56, -157.84], [-2925.32, -157.71], [-2924.43, -158.02], [-2923.55, -158.69], [-2923.11, -159.7], [-2923.07, -160.61], [-2923.42, -161.73], [-2924.09, -162.3], [-2925.14, -162.7], [-2927.89, -163.12], [-2927.61, -164.79], [-2927.35, -166.52], [-2920.84, -165.43], [-2917.92, -165.96], [-2915.47, -167.18], [-2913.82, -168.55], [-2912.55, -170.89], [-2912.21, -174.18], [-2913.98, -177.23], [-2915.18, -178.78], [-2918.32, -179.85], [-2915.51, -196.3], [-2928.33, -197.99], [-2929.63, -197.72], [-2930.79, -197.21], [-2931.33, -193.55], [-2939.0, -194.57], [-2939.73, -189.24]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-2442.72, -90.01], [-2402.4, -91.31], [-2402.89, -106.66], [-2389.87, -107.08], [-2373.24, -107.61], [-2373.76, -123.92], [-2374.28, -140.07], [-2392.64, -139.48], [-2392.79, -143.92], [-2394.28, -143.88], [-2444.41, -142.26], [-2443.28, -107.43], [-2442.72, -90.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2516.08, -96.48], [-2515.49, -79.0], [-2501.17, -79.38], [-2501.65, -97.24], [-2516.08, -96.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3016.84, 331.53], [-3014.27, 338.67], [-3005.47, 336.28], [-3005.51, 334.19], [-2995.58, 326.86], [-2995.64, 325.65], [-2994.4, 324.64], [-2993.01, 324.72], [-2984.2, 314.24], [-2984.38, 312.98], [-2983.39, 311.53], [-2982.03, 311.39], [-2976.68, 300.22], [-2972.38, 302.4], [-2959.9, 321.35], [-2927.25, 300.78], [-2900.42, 283.88], [-2908.94, 270.8], [-2910.38, 271.73], [-2914.22, 265.84], [-2905.54, 261.68], [-2895.71, 261.39], [-2878.21, 257.81], [-2864.96, 252.8], [-2865.76, 250.68], [-2867.79, 245.29], [-2870.13, 246.07], [-2874.03, 247.38], [-2874.82, 241.27], [-2878.91, 241.37], [-2879.44, 240.31], [-2886.08, 240.61], [-2886.13, 241.17], [-2893.89, 241.38], [-2893.92, 242.62], [-2902.94, 242.96], [-2902.97, 241.99], [-2918.48, 242.58], [-2918.45, 243.3], [-2921.19, 243.4], [-2921.21, 242.68], [-2934.31, 243.18], [-2941.68, 242.22], [-2952.6, 239.69], [-2961.43, 239.32], [-2974.05, 239.86], [-2973.94, 242.59], [-2973.84, 245.31], [-2977.06, 246.72], [-2974.64, 252.32], [-2978.28, 253.76], [-2987.7, 254.02], [-2987.11, 269.26], [-2985.07, 269.26], [-2985.31, 277.62], [-2987.89, 277.86], [-2989.76, 286.67], [-2994.03, 295.28], [-3005.79, 290.65], [-3009.78, 299.65], [-2999.62, 304.88], [-3004.33, 310.5], [-3002.73, 312.06], [-3007.55, 316.7], [-3009.16, 315.39], [-3018.42, 321.13], [-3021.46, 323.73], [-3016.17, 330.22], [-3016.84, 331.53]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-2506.11, 296.84], [-2507.17, 259.86], [-2495.43, 259.52], [-2495.61, 253.45], [-2481.37, 253.04], [-2481.59, 245.45], [-2475.21, 245.27], [-2475.13, 248.17], [-2472.46, 248.09], [-2472.64, 241.94], [-2459.48, 241.56], [-2459.16, 252.75], [-2458.0, 252.71], [-2457.75, 261.59], [-2458.9, 261.62], [-2457.93, 295.65], [-2458.67, 295.67], [-2458.57, 298.94], [-2455.39, 298.85], [-2454.99, 312.73], [-2463.28, 312.97], [-2463.26, 313.65], [-2473.17, 313.94], [-2473.19, 313.26], [-2494.6, 313.87], [-2495.0, 300.06], [-2480.06, 299.63], [-2480.09, 298.76], [-2475.02, 298.62], [-2470.53, 298.49], [-2470.5, 299.35], [-2461.12, 299.08], [-2461.22, 295.55], [-2471.21, 295.84], [-2472.05, 266.52], [-2475.76, 266.63], [-2493.47, 267.14], [-2493.16, 277.85], [-2492.63, 296.46], [-2506.11, 296.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2426.41, 313.67], [-2426.57, 305.79], [-2427.89, 305.82], [-2428.1, 296.07], [-2426.79, 296.04], [-2427.24, 274.57], [-2419.57, 274.41], [-2419.65, 270.25], [-2421.93, 270.29], [-2422.1, 262.33], [-2413.33, 262.14], [-2413.16, 269.94], [-2410.72, 269.89], [-2410.88, 262.65], [-2373.79, 261.86], [-2373.53, 273.8], [-2367.79, 273.68], [-2367.36, 293.32], [-2379.95, 293.58], [-2380.32, 276.11], [-2410.52, 276.75], [-2410.57, 274.17], [-2414.09, 274.25], [-2413.98, 279.23], [-2413.6, 297.48], [-2396.26, 297.11], [-2396.27, 296.57], [-2386.62, 296.36], [-2386.6, 296.92], [-2355.63, 296.25], [-2355.33, 310.02], [-2366.91, 310.28], [-2366.89, 311.35], [-2376.54, 311.56], [-2376.56, 310.48], [-2409.41, 311.19], [-2409.63, 301.03], [-2413.43, 301.1], [-2413.16, 313.38], [-2426.41, 313.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1658.65, -477.14], [-1676.84, -476.22], [-1676.4, -467.61], [-1675.39, -467.66], [-1675.35, -467.1], [-1658.18, -467.96], [-1658.65, -477.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3045.28, 358.91], [-3040.84, 366.02], [-3029.62, 359.09], [-3034.07, 351.97], [-3045.28, 358.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1712.09, -449.54], [-1703.98, -449.94], [-1703.92, -448.72], [-1691.92, -449.31], [-1692.4, -458.91], [-1712.5, -457.91], [-1712.09, -449.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2265.89, -124.39], [-2190.89, -127.26], [-2192.34, -165.19], [-2210.51, -164.5], [-2215.84, -164.3], [-2259.15, -162.64], [-2265.06, -162.42], [-2264.97, -160.27], [-2268.18, -160.15], [-2268.03, -156.32], [-2267.12, -156.34], [-2265.89, -124.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1336.63, -681.45], [-1338.47, -690.64], [-1338.73, -697.38], [-1338.64, -703.53], [-1338.64, -706.69], [-1319.46, -707.49], [-1321.51, -749.52], [-1322.31, -749.18], [-1363.83, -731.04], [-1359.25, -720.72], [-1354.48, -710.01], [-1371.49, -702.18], [-1406.66, -699.91], [-1405.14, -696.08], [-1411.35, -693.25], [-1394.31, -655.12], [-1380.88, -661.16], [-1336.63, -681.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2609.73, -708.59], [-2610.37, -730.39], [-2611.19, -730.37], [-2611.25, -732.38], [-2646.85, -731.34], [-2646.78, -729.32], [-2647.67, -729.3], [-2647.14, -711.89], [-2647.03, -707.5], [-2632.45, -707.93], [-2616.93, -701.48], [-2615.95, -702.33], [-2612.55, -704.96], [-2610.89, -705.98], [-2609.73, -708.59]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2534.41, -711.54], [-2534.53, -713.8], [-2531.73, -713.94], [-2532.2, -724.03], [-2534.32, -770.37], [-2532.79, -770.44], [-2533.17, -779.34], [-2533.26, -781.59], [-2537.29, -781.43], [-2537.36, -783.23], [-2593.89, -781.06], [-2593.8, -778.73], [-2597.74, -778.58], [-2597.53, -773.12], [-2597.35, -768.66], [-2596.36, -768.7], [-2594.88, -731.94], [-2597.69, -731.82], [-2597.53, -728.05], [-2594.69, -728.16], [-2594.35, -720.35], [-2595.26, -720.3], [-2594.92, -713.12], [-2594.71, -708.67], [-2534.41, -711.54]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-2515.73, -700.45], [-2512.84, -698.4], [-2510.0, -695.6], [-2506.89, -692.31], [-2503.64, -687.91], [-2502.24, -685.07], [-2489.87, -691.74], [-2491.62, -693.91], [-2482.88, -700.44], [-2473.97, -707.23], [-2478.1, -712.6], [-2478.79, -712.11], [-2492.73, -702.29], [-2496.36, -706.31], [-2500.43, -709.87], [-2504.75, -713.47], [-2509.37, -716.46], [-2515.22, -719.07], [-2509.42, -732.48], [-2522.76, -737.17], [-2524.38, -731.21], [-2526.51, -723.3], [-2531.85, -724.19], [-2532.2, -724.03], [-2531.73, -713.94], [-2534.53, -713.8], [-2534.41, -711.54], [-2534.91, -708.02], [-2530.7, -707.1], [-2527.05, -706.01], [-2523.22, -704.64], [-2519.45, -702.72], [-2515.73, -700.45]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-1787.82, -951.79], [-1776.47, -952.09], [-1776.4, -949.23], [-1767.19, -949.47], [-1767.26, -952.32], [-1755.48, -952.64], [-1756.6, -995.27], [-1764.88, -995.05], [-1767.96, -994.97], [-1788.93, -994.42], [-1787.82, -951.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1721.92, -1011.54], [-1721.85, -1008.42], [-1765.26, -1007.05], [-1764.88, -995.05], [-1767.96, -994.97], [-1768.43, -1010.08], [-1721.92, -1011.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1777.48, -1155.6], [-1761.18, -1155.65], [-1758.31, -1155.66], [-1758.35, -1160.05], [-1760.04, -1159.94], [-1760.54, -1182.72], [-1759.25, -1182.76], [-1759.03, -1186.15], [-1756.8, -1187.17], [-1755.56, -1188.97], [-1755.64, -1203.09], [-1756.51, -1205.48], [-1759.91, -1205.86], [-1759.71, -1209.89], [-1761.17, -1210.48], [-1761.78, -1231.51], [-1760.32, -1231.22], [-1760.3, -1242.14], [-1792.99, -1241.2], [-1792.47, -1228.86], [-1778.79, -1229.08], [-1778.36, -1208.71], [-1776.99, -1160.9], [-1777.6, -1159.61], [-1777.48, -1155.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1683.81, -1096.65], [-1692.12, -1096.44], [-1697.56, -1096.3], [-1724.03, -1095.64], [-1722.06, -1016.97], [-1721.92, -1011.54], [-1721.85, -1008.42], [-1721.77, -1005.27], [-1687.85, -1006.12], [-1684.24, -1006.21], [-1681.78, -1006.27], [-1681.8, -1007.0], [-1681.91, -1011.12], [-1681.98, -1014.42], [-1682.07, -1017.83], [-1682.53, -1035.94], [-1683.55, -1077.19], [-1679.9, -1077.29], [-1680.01, -1081.74], [-1682.84, -1081.67], [-1683.06, -1090.42], [-1683.66, -1090.41], [-1683.74, -1093.81], [-1683.81, -1096.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1678.24, -1034.16], [-1676.51, -1036.02], [-1674.93, -1036.06], [-1674.89, -1034.73], [-1667.86, -1034.93], [-1666.48, -1034.97], [-1649.67, -1035.48], [-1644.42, -1035.65], [-1644.42, -1038.87], [-1640.99, -1039.09], [-1639.13, -1039.21], [-1635.99, -1039.8], [-1638.46, -1129.1], [-1639.46, -1165.46], [-1664.91, -1164.76], [-1679.33, -1164.37], [-1679.15, -1158.28], [-1678.89, -1151.65], [-1678.57, -1142.26], [-1678.43, -1135.33], [-1678.38, -1129.18], [-1678.22, -1124.11], [-1678.04, -1118.22], [-1677.92, -1114.66], [-1677.71, -1107.85], [-1677.27, -1094.1], [-1679.69, -1096.2], [-1682.23, -1093.87], [-1683.74, -1093.81], [-1683.66, -1090.41], [-1683.06, -1090.42], [-1682.84, -1081.67], [-1680.01, -1081.74], [-1679.9, -1077.29], [-1683.55, -1077.19], [-1682.53, -1035.94], [-1680.0, -1036.02], [-1678.24, -1034.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-264.55, 437.56], [-262.43, 439.48], [-260.8, 437.68], [-258.53, 439.75], [-260.09, 441.45], [-257.95, 443.39], [-266.44, 452.71], [-272.97, 446.8], [-264.55, 437.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3008.53, -1196.46], [-3026.14, -1175.55], [-3035.17, -1183.11], [-3017.57, -1204.02], [-3008.53, -1196.46]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-3017.73, -1177.86], [-3010.96, -1186.12], [-3002.33, -1179.1], [-3009.11, -1170.83], [-3017.73, -1177.86]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3006.7, -1171.19], [-2995.37, -1184.64], [-2986.11, -1176.89], [-2997.42, -1163.44], [-3006.7, -1171.19]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2977.63, -747.85], [-2968.34, -748.13], [-2968.45, -751.76], [-2946.73, -752.41], [-2946.68, -750.74], [-2915.45, -751.66], [-2915.77, -762.45], [-2918.44, -762.37], [-2919.3, -791.54], [-2916.93, -791.61], [-2917.25, -802.31], [-2948.15, -801.4], [-2948.1, -799.67], [-2970.25, -799.01], [-2970.34, -801.83], [-2978.94, -801.57], [-2978.54, -788.19], [-2978.44, -785.05], [-2946.24, -786.03], [-2945.63, -765.88], [-2978.15, -764.9], [-2978.08, -762.74], [-2977.63, -747.85]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-3031.85, -1189.52], [-3018.56, -1204.86], [-3028.05, -1213.03], [-3038.04, -1201.49], [-3035.31, -1199.13], [-3038.61, -1195.33], [-3031.85, -1189.52]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2678.57, -160.07], [-2679.52, -160.06], [-2679.79, -169.54], [-2680.97, -169.5], [-2681.9, -170.19], [-2682.98, -180.22], [-2683.14, -193.21], [-2673.68, -193.47], [-2673.67, -195.92], [-2658.6, -196.6], [-2654.73, -196.78], [-2651.62, -196.89], [-2641.68, -196.71], [-2637.14, -195.69], [-2632.44, -193.79], [-2633.16, -191.1], [-2638.92, -190.28], [-2638.8, -189.01], [-2638.61, -187.05], [-2642.19, -186.9], [-2641.11, -183.92], [-2638.56, -180.12], [-2636.1, -180.42], [-2633.35, -173.85], [-2619.75, -174.85], [-2618.44, -170.45], [-2635.03, -165.0], [-2642.95, -163.14], [-2642.77, -159.56], [-2651.74, -155.62], [-2657.34, -153.49], [-2663.24, -151.93], [-2667.94, -151.06], [-2673.19, -150.54], [-2677.99, -150.59], [-2678.57, -160.07]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1427.14, -472.19], [-1363.45, -475.23], [-1351.0, -475.82], [-1351.12, -478.44], [-1331.11, -479.39], [-1331.62, -489.98], [-1342.96, -489.44], [-1344.22, -515.69], [-1406.29, -512.72], [-1406.21, -511.11], [-1417.31, -510.57], [-1417.36, -511.65], [-1420.25, -511.5], [-1420.34, -513.43], [-1441.5, -512.35], [-1439.89, -481.11], [-1438.78, -481.16], [-1438.73, -480.28], [-1441.55, -480.14], [-1441.21, -473.08], [-1434.02, -473.43], [-1427.21, -473.76], [-1427.14, -472.19]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1420.78, -610.29], [-1425.86, -608.84], [-1429.7, -607.65], [-1435.3, -606.33], [-1442.33, -622.09], [-1445.47, -628.77], [-1445.12, -629.55], [-1449.57, -639.55], [-1449.63, -643.27], [-1443.49, -646.39], [-1445.95, -651.79], [-1450.91, -662.66], [-1451.11, -663.09], [-1451.75, -674.41], [-1449.93, -679.33], [-1445.58, -684.18], [-1413.8, -698.56], [-1411.35, -693.25], [-1394.31, -655.12], [-1380.88, -661.16], [-1379.29, -657.42], [-1377.8, -657.99], [-1375.66, -654.11], [-1367.99, -636.98], [-1376.69, -631.4], [-1383.31, -627.49], [-1388.81, -624.39], [-1394.6, -621.56], [-1404.52, -617.1], [-1420.78, -610.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2632.49, 278.81], [-2635.39, 278.89], [-2635.37, 280.13], [-2639.88, 280.26], [-2639.93, 278.35], [-2647.66, 278.57], [-2648.79, 237.34], [-2672.35, 237.99], [-2672.33, 238.84], [-2676.17, 238.95], [-2676.41, 230.62], [-2679.01, 230.7], [-2679.2, 223.46], [-2635.68, 222.28], [-2635.66, 223.02], [-2629.69, 222.86], [-2629.49, 230.53], [-2634.7, 230.67], [-2634.66, 231.91], [-2633.06, 231.87], [-2631.86, 276.39], [-2632.55, 276.41], [-2632.49, 278.81]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-2121.82, -838.8], [-2122.17, -847.81], [-2109.66, -848.32], [-2109.3, -839.3], [-2121.82, -838.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2297.04, -899.89], [-2284.25, -889.01], [-2297.07, -874.02], [-2309.86, -884.89], [-2297.04, -899.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1699.38, -624.67], [-1707.92, -624.25], [-1707.82, -622.14], [-1716.13, -621.72], [-1716.53, -630.03], [-1718.88, -629.91], [-1719.32, -638.97], [-1713.85, -639.24], [-1714.89, -660.09], [-1719.56, -659.86], [-1720.05, -669.71], [-1717.45, -669.84], [-1717.88, -678.28], [-1709.09, -678.72], [-1708.97, -676.28], [-1703.21, -676.57], [-1703.38, -679.9], [-1693.56, -680.38], [-1693.16, -672.4], [-1695.52, -672.29], [-1695.22, -666.38], [-1702.21, -666.04], [-1702.33, -668.58], [-1705.28, -668.43], [-1704.95, -661.81], [-1700.64, -662.03], [-1699.49, -638.97], [-1704.87, -638.71], [-1704.5, -631.17], [-1699.71, -631.41], [-1699.38, -624.67]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1733.06, -615.07], [-1733.84, -631.49], [-1762.98, -630.1], [-1762.19, -613.68], [-1733.06, -615.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1660.11, -685.15], [-1684.29, -683.95], [-1683.04, -658.99], [-1682.3, -659.04], [-1681.86, -650.05], [-1683.04, -649.99], [-1682.81, -645.41], [-1690.33, -645.03], [-1689.32, -624.86], [-1686.89, -624.98], [-1686.78, -622.94], [-1676.52, -623.45], [-1676.62, -625.3], [-1671.84, -625.55], [-1671.89, -626.55], [-1668.82, -626.69], [-1669.08, -631.92], [-1662.16, -632.26], [-1662.36, -636.14], [-1658.34, -636.34], [-1659.16, -652.77], [-1670.25, -652.2], [-1670.6, -659.26], [-1658.85, -659.85], [-1660.11, -685.15]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1735.49, -658.27], [-1752.72, -657.49], [-1751.71, -635.32], [-1734.48, -636.1], [-1735.49, -658.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1766.12, -615.38], [-1767.54, -644.19], [-1784.8, -643.34], [-1783.37, -614.53], [-1766.12, -615.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1769.25, -676.84], [-1785.88, -675.97], [-1784.36, -646.89], [-1767.72, -647.75], [-1769.25, -676.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1736.6, -678.28], [-1765.8, -676.73], [-1764.92, -660.22], [-1735.72, -661.76], [-1736.6, -678.28]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1848.01, -652.69], [-1847.02, -630.9], [-1829.83, -631.68], [-1830.82, -653.47], [-1848.01, -652.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1818.92, -658.06], [-1819.73, -674.8], [-1846.26, -673.82], [-1848.0, -673.82], [-1849.07, -673.03], [-1849.2, -671.77], [-1848.02, -670.55], [-1848.67, -670.49], [-1848.83, -662.69], [-1848.27, -656.72], [-1818.92, -658.06]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-1800.1, -676.01], [-1816.58, -675.23], [-1815.17, -645.76], [-1798.69, -646.54], [-1800.1, -676.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1798.53, -643.06], [-1827.56, -641.92], [-1826.88, -624.67], [-1797.84, -625.82], [-1798.53, -643.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-947.11, -903.82], [-961.74, -917.09], [-934.16, -947.26], [-919.53, -933.98], [-947.11, -903.82]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-911.38, -911.05], [-899.28, -900.1], [-900.04, -899.26], [-898.38, -897.76], [-889.25, -907.79], [-874.68, -894.64], [-899.3, -867.6], [-913.43, -880.38], [-922.27, -870.68], [-936.46, -883.52], [-911.38, -911.05]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-889.51, -847.65], [-865.59, -873.57], [-872.87, -880.24], [-867.25, -886.32], [-845.97, -866.81], [-875.51, -834.82], [-881.24, -840.07], [-887.08, -845.41], [-889.51, -847.65]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-645.89, -1212.91], [-636.81, -1216.44], [-663.72, -1278.62], [-673.24, -1274.85], [-645.89, -1212.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2665.67, -227.65], [-2665.98, -238.51], [-2666.32, -250.41], [-2674.43, -250.17], [-2674.46, -250.99], [-2691.21, -250.51], [-2691.33, -254.93], [-2700.17, -254.68], [-2702.37, -254.62], [-2702.52, -259.65], [-2707.52, -259.5], [-2710.89, -259.41], [-2710.75, -254.79], [-2722.59, -254.46], [-2722.42, -248.32], [-2723.47, -248.28], [-2722.76, -223.42], [-2707.21, -223.87], [-2704.06, -223.96], [-2704.08, -224.91], [-2674.47, -225.77], [-2674.52, -227.4], [-2665.67, -227.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3340.13, -1966.81], [-3340.88, -1965.87], [-3337.04, -1962.74], [-3351.97, -1944.5], [-3351.29, -1943.94], [-3356.19, -1937.95], [-3348.86, -1931.99], [-3343.97, -1937.98], [-3343.09, -1937.27], [-3342.52, -1937.98], [-3338.5, -1934.71], [-3323.38, -1953.2], [-3301.28, -1935.25], [-3302.04, -1934.31], [-3298.58, -1931.5], [-3297.74, -1932.51], [-3296.29, -1931.12], [-3303.95, -1921.24], [-3312.94, -1925.09], [-3315.26, -1920.48], [-3318.11, -1921.58], [-3322.76, -1911.98], [-3299.53, -1901.08], [-3264.98, -1943.52], [-3274.64, -1956.89], [-3289.05, -1939.82], [-3297.49, -1946.66], [-3318.47, -1963.66], [-3320.61, -1965.4], [-3306.31, -1982.87], [-3315.29, -1990.17], [-3322.47, -1981.39], [-3326.39, -1984.58], [-3329.37, -1980.93], [-3325.42, -1977.72], [-3329.56, -1972.66], [-3331.38, -1974.28], [-3332.88, -1975.61], [-3340.13, -1966.81]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1310.03, -2983.0], [-1321.4, -3043.68], [-1339.11, -3040.38], [-1340.07, -3045.48], [-1347.58, -3044.07], [-1335.26, -2978.3], [-1310.03, -2983.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1262.78, -3016.75], [-1274.33, -3077.13], [-1304.88, -3071.32], [-1292.96, -3009.01], [-1280.67, -3011.35], [-1281.03, -3013.28], [-1262.78, -3016.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1452.44, -3062.68], [-1417.19, -3063.69], [-1418.51, -3110.06], [-1432.72, -3109.65], [-1432.83, -3113.67], [-1446.6, -3113.28], [-1446.48, -3109.26], [-1460.96, -3108.84], [-1460.78, -3102.45], [-1466.49, -3102.28], [-1472.7, -3102.1], [-1471.35, -3055.11], [-1452.24, -3055.65], [-1452.44, -3062.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1081.16, -3018.16], [-1087.93, -3019.16], [-1091.88, -3006.72], [-1088.54, -2997.53], [-1058.34, -2998.56], [-1059.08, -3013.41], [-1058.1, -3013.45], [-1058.62, -3027.53], [-1050.37, -3027.83], [-1050.22, -3023.7], [-1041.63, -3024.01], [-1042.24, -3040.81], [-1051.12, -3040.48], [-1051.51, -3051.21], [-1059.49, -3050.92], [-1059.64, -3054.89], [-1068.19, -3054.61], [-1068.76, -3071.53], [-1082.03, -3071.08], [-1081.47, -3054.16], [-1082.66, -3054.12], [-1081.16, -3018.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[113.45, -300.48], [143.44, -333.55], [145.46, -331.74], [147.52, -334.01], [152.65, -331.4], [157.5, -328.24], [161.27, -325.0], [164.83, -321.34], [168.34, -317.01], [171.49, -312.42], [169.23, -309.94], [171.58, -307.83], [141.62, -274.81], [138.16, -277.93], [136.34, -275.93], [114.87, -295.26], [116.84, -297.43], [113.45, -300.48]], "holes": []}, "height": 35.0}, {"shape": {"outer": [[-3027.52, -1238.66], [-3011.3, -1257.16], [-2998.79, -1246.27], [-3015.01, -1227.77], [-3027.52, -1238.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2013.62, -1020.83], [-2014.45, -1059.75], [-2018.67, -1059.65], [-2018.69, -1060.69], [-2058.32, -1059.84], [-2058.3, -1058.79], [-2061.18, -1058.73], [-2060.89, -1044.6], [-2053.43, -1044.76], [-2052.9, -1019.99], [-2013.62, -1020.83]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-2008.73, -1026.44], [-2004.22, -1026.56], [-2003.88, -1023.25], [-2000.79, -1019.84], [-1995.86, -1019.93], [-1993.2, -1023.5], [-1993.06, -1026.83], [-1988.65, -1026.95], [-1988.92, -1037.82], [-1985.97, -1037.89], [-1986.11, -1043.1], [-1989.05, -1043.03], [-1989.29, -1052.53], [-1988.23, -1052.56], [-1988.4, -1059.1], [-1992.89, -1058.99], [-1992.96, -1061.75], [-2006.75, -1061.41], [-2006.68, -1058.64], [-2010.68, -1058.54], [-2010.51, -1051.93], [-2009.37, -1051.96], [-2008.73, -1026.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2788.85, -1034.52], [-2774.26, -1052.04], [-2766.83, -1045.89], [-2781.43, -1028.39], [-2788.85, -1034.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2419.57, -806.37], [-2409.71, -806.78], [-2409.76, -807.99], [-2392.22, -808.71], [-2384.37, -809.04], [-2384.22, -805.26], [-2363.33, -806.13], [-2363.49, -809.98], [-2355.12, -810.32], [-2345.75, -810.7], [-2337.55, -811.05], [-2337.4, -807.31], [-2316.81, -808.16], [-2316.97, -811.93], [-2290.99, -813.0], [-2290.96, -812.28], [-2281.67, -812.67], [-2281.97, -819.94], [-2280.62, -819.99], [-2280.8, -824.23], [-2281.77, -824.19], [-2282.09, -831.73], [-2285.37, -831.59], [-2291.76, -831.32], [-2291.71, -830.06], [-2307.14, -829.41], [-2317.4, -828.97], [-2317.56, -832.97], [-2320.22, -832.86], [-2328.21, -832.51], [-2335.88, -832.18], [-2338.69, -832.07], [-2338.67, -831.48], [-2361.45, -830.5], [-2367.58, -830.25], [-2374.79, -829.94], [-2382.4, -829.61], [-2385.17, -829.5], [-2385.01, -825.89], [-2401.17, -825.2], [-2405.84, -825.0], [-2410.84, -824.79], [-2410.89, -825.88], [-2420.06, -825.5], [-2420.03, -824.92], [-2419.75, -818.32], [-2421.83, -818.23], [-2421.63, -813.66], [-2419.88, -813.73], [-2419.57, -806.37]], "holes": []}, "height": 28.0}, {"shape": {"outer": [[1106.84, 2062.84], [1112.0, 2070.91], [1110.12, 2072.03], [1121.33, 2089.55], [1126.71, 2086.94], [1129.68, 2091.52], [1132.65, 2096.12], [1127.68, 2099.12], [1140.93, 2122.16], [1117.81, 2135.24], [1111.42, 2123.88], [1108.58, 2125.66], [1085.56, 2087.6], [1087.61, 2086.32], [1082.31, 2077.8], [1106.84, 2062.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[221.24, -196.83], [222.47, -196.65], [223.68, -196.88], [224.56, -197.82], [255.79, -231.64], [257.01, -233.24], [234.15, -253.68], [202.01, -218.37], [201.7, -217.17], [201.52, -216.15], [201.68, -215.03], [202.07, -214.18], [221.24, -196.83]], "holes": []}, "height": 49.0}, {"shape": {"outer": [[222.52, -195.61], [224.83, -193.48], [244.33, -175.51], [276.82, -210.95], [274.45, -212.97], [275.03, -213.6], [274.05, -214.5], [274.77, -215.27], [267.71, -221.75], [258.52, -230.18], [258.0, -229.61], [255.79, -231.64], [224.56, -197.82], [222.52, -195.61]], "holes": []}, "height": 49.0}, {"shape": {"outer": [[244.33, -175.51], [266.09, -156.01], [266.7, -156.66], [293.74, -186.65], [296.23, -189.14], [276.82, -210.95], [244.33, -175.51]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[266.7, -156.66], [275.98, -148.49], [295.72, -170.59], [299.04, -167.42], [301.05, -169.9], [311.72, -159.82], [314.24, -162.63], [315.53, -166.57], [317.32, -168.98], [310.62, -173.65], [309.1, -171.4], [296.54, -183.72], [293.74, -186.65], [266.7, -156.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[289.51, -135.09], [310.14, -116.61], [320.66, -110.04], [339.02, -130.46], [331.8, -136.91], [332.72, -137.92], [324.72, -145.07], [327.5, -148.17], [329.68, -151.69], [314.24, -162.63], [312.36, -160.52], [292.67, -138.61], [290.97, -136.72], [290.04, -135.69], [289.51, -135.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-517.38, -296.5], [-510.95, -303.63], [-487.74, -329.24], [-476.3, -341.84], [-437.45, -306.89], [-416.65, -288.18], [-452.02, -249.16], [-454.41, -246.51], [-457.81, -242.76], [-514.17, -293.61], [-517.38, -296.5]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[81.99, -325.74], [83.86, -324.1], [84.4, -322.53], [86.31, -320.86], [87.81, -320.35], [89.67, -318.67], [91.22, -317.28], [92.32, -315.45], [94.01, -313.98], [95.57, -313.34], [97.17, -311.9], [100.51, -315.57], [99.85, -316.18], [106.37, -323.37], [107.0, -322.81], [109.94, -326.05], [108.41, -327.43], [108.92, -328.0], [109.4, -328.52], [110.86, -327.2], [113.7, -330.33], [113.07, -330.89], [119.63, -338.14], [120.45, -337.4], [123.93, -341.24], [122.17, -342.82], [121.37, -344.48], [119.73, -346.04], [118.4, -346.44], [114.38, -349.72], [113.88, -350.96], [111.6, -353.03], [110.51, -353.1], [108.43, -354.96], [105.19, -351.38], [105.97, -350.68], [102.38, -346.7], [103.01, -346.14], [101.34, -344.3], [99.92, -345.58], [96.76, -342.08], [98.42, -340.6], [98.35, -338.87], [102.5, -335.03], [101.12, -333.55], [96.98, -337.39], [95.37, -337.39], [93.75, -338.81], [90.44, -335.07], [91.85, -333.83], [90.17, -331.93], [89.47, -332.54], [86.02, -328.64], [85.2, -329.36], [81.99, -325.74]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[450.92, 148.92], [439.08, 138.26], [440.47, 136.73], [401.21, 101.46], [409.23, 92.59], [424.6, 106.39], [444.35, 84.55], [429.91, 71.59], [456.06, 42.67], [465.97, 51.56], [474.91, 69.51], [472.69, 71.84], [487.71, 86.08], [485.44, 87.53], [491.53, 93.01], [488.75, 96.07], [494.29, 101.06], [450.92, 148.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[475.78, 165.37], [480.09, 169.44], [532.46, 216.6], [536.07, 212.8], [539.67, 216.61], [557.92, 197.59], [555.43, 194.61], [558.41, 191.47], [556.23, 189.58], [503.96, 144.04], [500.34, 140.89], [495.22, 136.43], [475.51, 157.9], [479.31, 161.63], [475.78, 165.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[634.99, -12.86], [603.66, -22.47], [607.98, -33.9], [638.37, -24.18], [634.99, -12.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[664.15, 36.95], [623.65, 24.59], [622.88, 26.16], [620.2, 25.44], [617.92, 21.44], [616.69, 21.16], [609.37, 7.61], [607.3, 3.79], [604.87, 3.07], [597.2, 1.09], [597.4, 0.42], [598.91, -4.82], [602.43, -17.7], [633.22, -8.55], [628.94, 5.57], [669.58, 18.38], [667.68, 24.92], [664.15, 36.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2384.54, 1749.94], [2385.69, 1745.51], [2383.88, 1745.05], [2389.21, 1722.43], [2417.28, 1729.1], [2409.99, 1758.52], [2388.71, 1753.06], [2389.2, 1751.14], [2384.54, 1749.94]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[2161.16, 1706.12], [2167.6, 1699.7], [2163.47, 1696.28], [2163.25, 1694.25], [2162.24, 1692.1], [2160.44, 1690.63], [2160.98, 1689.76], [2129.88, 1640.03], [2108.4, 1657.47], [2150.41, 1698.38], [2150.96, 1697.97], [2151.99, 1699.68], [2153.73, 1701.21], [2155.6, 1701.93], [2157.3, 1701.93], [2161.16, 1706.12]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[2283.58, 1728.21], [2294.44, 1686.01], [2295.11, 1683.4], [2316.34, 1689.09], [2310.95, 1708.49], [2313.32, 1709.76], [2314.38, 1711.73], [2313.77, 1715.24], [2361.49, 1727.79], [2356.56, 1746.56], [2283.58, 1728.21]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-220.22, 435.73], [-227.47, 429.21], [-226.64, 428.29], [-227.75, 427.3], [-224.68, 423.9], [-223.57, 424.9], [-223.47, 424.79], [-221.38, 424.65], [-220.29, 425.62], [-219.34, 424.57], [-217.66, 424.51], [-215.73, 426.24], [-215.75, 427.77], [-216.72, 428.83], [-215.21, 430.2], [-220.22, 435.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-231.7, 424.55], [-238.87, 418.05], [-230.99, 409.43], [-222.85, 416.81], [-224.65, 418.78], [-225.63, 417.9], [-231.7, 424.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-233.76, 398.15], [-241.9, 390.9], [-238.06, 386.62], [-237.27, 387.31], [-234.4, 384.11], [-227.04, 390.67], [-233.76, 398.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-215.66, 439.94], [-215.88, 431.32], [-214.52, 431.28], [-214.61, 427.87], [-209.12, 427.73], [-209.04, 430.97], [-206.68, 430.91], [-206.32, 444.72], [-211.72, 444.86], [-211.85, 439.84], [-215.66, 439.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-399.2, 269.97], [-395.16, 273.77], [-395.52, 274.16], [-392.03, 277.46], [-391.66, 277.06], [-387.35, 281.11], [-385.93, 279.62], [-384.84, 280.65], [-382.01, 277.67], [-383.11, 276.63], [-380.29, 273.65], [-392.13, 262.51], [-399.2, 269.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-391.45, 259.81], [-386.02, 253.81], [-378.0, 261.02], [-378.85, 261.96], [-376.67, 263.93], [-378.84, 266.32], [-381.02, 264.36], [-383.42, 267.02], [-391.45, 259.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-383.76, 284.09], [-375.39, 274.76], [-372.74, 277.13], [-371.86, 276.14], [-369.13, 278.56], [-370.02, 279.55], [-367.67, 281.64], [-377.8, 292.91], [-385.21, 286.31], [-383.46, 284.37], [-383.76, 284.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-367.04, 265.36], [-374.94, 257.99], [-375.97, 257.95], [-377.86, 256.19], [-377.85, 255.27], [-380.96, 252.38], [-382.11, 252.61], [-383.23, 252.22], [-383.98, 251.3], [-384.13, 250.12], [-383.71, 249.11], [-382.85, 248.43], [-381.75, 248.25], [-377.46, 243.7], [-374.8, 246.19], [-374.26, 245.61], [-361.94, 257.1], [-364.77, 260.11], [-363.34, 261.43], [-367.04, 265.36]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-364.42, 250.33], [-374.69, 240.88], [-372.36, 238.37], [-373.74, 237.1], [-367.1, 229.93], [-360.77, 235.76], [-361.89, 236.97], [-356.58, 241.87], [-364.42, 250.33]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-364.38, 225.14], [-358.65, 218.86], [-356.72, 220.62], [-356.34, 220.21], [-348.31, 227.48], [-349.7, 229.01], [-347.24, 231.23], [-351.95, 236.39], [-355.65, 233.05], [-355.99, 233.43], [-359.92, 229.86], [-359.58, 229.48], [-364.38, 225.14]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-356.37, 218.6], [-352.3, 214.17], [-351.28, 215.1], [-348.08, 211.61], [-338.58, 220.26], [-338.95, 220.65], [-336.61, 222.78], [-341.96, 228.6], [-342.38, 228.23], [-343.94, 229.92], [-356.37, 218.6]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-374.12, 293.72], [-358.02, 275.11], [-351.39, 280.8], [-367.49, 299.41], [-374.12, 293.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-363.8, 302.83], [-348.12, 285.21], [-341.67, 290.9], [-357.35, 308.52], [-363.8, 302.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-350.64, 313.3], [-348.65, 311.1], [-351.21, 308.8], [-345.25, 302.2], [-335.27, 311.16], [-343.22, 319.96], [-350.64, 313.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-340.65, 319.87], [-330.51, 308.77], [-330.02, 309.2], [-329.31, 308.43], [-327.1, 310.43], [-326.9, 310.2], [-323.48, 313.31], [-334.54, 325.41], [-334.7, 325.27], [-336.81, 327.59], [-342.33, 322.58], [-340.22, 320.27], [-340.65, 319.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-331.71, 327.87], [-325.2, 320.67], [-324.42, 321.36], [-318.96, 315.3], [-313.51, 320.18], [-314.03, 320.75], [-312.97, 321.71], [-316.27, 325.37], [-315.56, 326.01], [-325.15, 336.63], [-330.29, 332.03], [-328.85, 330.43], [-331.71, 327.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-288.73, 167.33], [-295.85, 160.5], [-296.24, 159.1], [-300.38, 155.14], [-295.89, 150.48], [-294.71, 151.6], [-294.14, 151.02], [-283.14, 161.52], [-288.73, 167.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-295.55, 147.96], [-289.7, 141.83], [-275.42, 155.39], [-281.27, 161.51], [-295.55, 147.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-234.03, 245.57], [-216.93, 244.62], [-217.06, 240.43], [-218.48, 192.74], [-225.16, 187.11], [-250.28, 213.91], [-234.91, 227.95], [-234.03, 245.57]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[-242.6, 196.44], [-232.59, 185.35], [-238.97, 179.63], [-251.16, 193.12], [-246.99, 196.87], [-244.8, 194.45], [-242.6, 196.44]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-255.41, 186.02], [-251.42, 189.54], [-249.9, 187.83], [-249.74, 187.97], [-238.82, 175.73], [-242.96, 172.07], [-255.41, 186.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-257.36, 183.83], [-246.67, 172.22], [-255.33, 164.31], [-266.02, 175.92], [-265.47, 176.41], [-266.9, 177.98], [-262.4, 182.1], [-260.96, 180.54], [-257.36, 183.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-269.96, 178.46], [-254.02, 161.16], [-260.24, 155.47], [-276.18, 172.77], [-269.96, 178.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-263.31, 157.66], [-269.82, 151.67], [-282.22, 165.07], [-275.72, 171.05], [-263.31, 157.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-334.63, 194.22], [-332.49, 191.82], [-333.49, 190.94], [-328.97, 185.89], [-316.63, 196.85], [-321.24, 202.01], [-320.57, 202.61], [-322.6, 204.9], [-326.45, 201.49], [-326.91, 202.0], [-330.99, 198.37], [-330.53, 197.86], [-334.63, 194.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-326.7, 182.89], [-320.89, 176.79], [-309.4, 187.65], [-315.2, 193.75], [-326.7, 182.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-308.34, 186.92], [-318.49, 177.97], [-312.15, 170.83], [-308.22, 174.29], [-307.28, 173.23], [-301.06, 178.73], [-308.34, 186.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-287.66, 184.16], [-294.87, 177.54], [-289.02, 171.21], [-284.68, 175.19], [-286.44, 177.1], [-283.57, 179.73], [-287.66, 184.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-286.79, 184.77], [-280.82, 178.29], [-273.82, 184.71], [-279.79, 191.18], [-286.79, 184.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-317.37, 206.05], [-304.75, 192.43], [-300.07, 196.74], [-300.27, 196.95], [-299.16, 197.97], [-300.82, 199.75], [-299.43, 201.03], [-301.69, 203.46], [-299.7, 205.29], [-300.92, 206.62], [-300.54, 206.96], [-306.03, 212.9], [-306.41, 212.55], [-308.2, 214.48], [-317.37, 206.05]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-302.33, 221.92], [-301.1, 220.53], [-301.56, 220.12], [-295.62, 213.4], [-295.8, 213.24], [-292.54, 209.55], [-287.15, 214.27], [-291.7, 219.43], [-287.71, 222.94], [-292.55, 228.4], [-296.47, 224.95], [-297.52, 226.14], [-302.33, 221.92]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-288.91, 231.44], [-278.6, 219.87], [-278.13, 220.29], [-276.56, 218.52], [-274.14, 220.65], [-275.61, 222.29], [-271.29, 226.1], [-281.7, 237.8], [-283.53, 236.19], [-285.11, 237.96], [-287.28, 236.04], [-286.58, 235.24], [-288.74, 233.34], [-287.87, 232.36], [-288.91, 231.44]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-422.47, 111.31], [-402.02, 88.76], [-397.72, 92.63], [-391.79, 86.09], [-387.17, 90.25], [-385.16, 88.04], [-380.28, 92.44], [-381.17, 93.42], [-362.05, 110.63], [-360.77, 111.78], [-371.65, 123.78], [-367.39, 127.62], [-383.99, 145.93], [-422.47, 111.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-489.46, -477.71], [-520.51, -443.38], [-522.49, -445.16], [-520.46, -447.41], [-532.67, -458.36], [-528.7, -462.75], [-527.13, -461.33], [-524.88, -463.82], [-526.75, -465.5], [-503.94, -490.71], [-489.46, -477.71]], "holes": []}, "height": 38.5}, {"shape": {"outer": [[-548.12, -532.18], [-579.96, -497.09], [-562.19, -481.08], [-550.9, -470.9], [-539.02, -484.0], [-532.76, -490.89], [-526.48, -485.24], [-512.77, -500.34], [-525.23, -511.52], [-526.87, -513.08], [-548.12, -532.18]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-468.84, -459.27], [-449.49, -441.42], [-440.1, -451.51], [-459.47, -469.37], [-468.84, -459.27]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-462.14, -471.4], [-471.43, -461.33], [-477.07, -466.47], [-478.55, -467.8], [-469.26, -477.93], [-462.14, -471.4]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-475.5, -456.47], [-481.39, -461.67], [-482.88, -463.01], [-496.81, -447.41], [-489.47, -440.89], [-475.5, -456.47]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-511.51, -153.29], [-498.68, -167.37], [-489.81, -159.34], [-485.06, -155.06], [-484.18, -135.96], [-490.17, -135.69], [-490.2, -136.35], [-490.6, -136.34], [-490.56, -135.29], [-497.07, -135.0], [-497.11, -136.0], [-497.5, -135.99], [-497.48, -135.32], [-498.07, -135.29], [-498.05, -134.96], [-504.95, -134.64], [-504.97, -134.92], [-510.67, -134.65], [-511.45, -152.09], [-511.51, -153.29]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-454.16, -137.97], [-455.01, -156.58], [-452.15, -156.7], [-435.6, -141.63], [-435.07, -140.24], [-435.17, -138.99], [-435.81, -137.95], [-436.85, -137.56], [-454.89, -136.74], [-454.91, -137.09], [-454.95, -137.94], [-454.16, -137.97]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-484.15, -135.24], [-484.18, -135.96], [-485.06, -155.06], [-470.97, -170.53], [-470.28, -169.92], [-469.12, -171.18], [-461.8, -164.57], [-468.68, -157.02], [-467.75, -136.64], [-477.46, -136.2], [-477.43, -135.55], [-484.15, -135.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-454.16, -137.97], [-455.01, -156.58], [-455.1, -158.5], [-461.8, -164.57], [-468.68, -157.02], [-467.75, -136.64], [-467.74, -136.51], [-454.91, -137.09], [-454.95, -137.94], [-454.16, -137.97]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1160.59, -100.37], [-1161.09, -110.12], [-1161.88, -125.67], [-1162.24, -133.0], [-1163.01, -148.18], [-1163.4, -155.89], [-1162.2, -155.96], [-1162.37, -159.23], [-1163.59, -159.18], [-1163.8, -163.26], [-1162.58, -163.33], [-1162.63, -164.38], [-1163.82, -164.32], [-1163.95, -166.69], [-1162.75, -166.75], [-1162.82, -168.17], [-1163.99, -168.11], [-1164.26, -173.52], [-1163.1, -173.57], [-1163.17, -174.97], [-1164.32, -174.91], [-1164.45, -177.26], [-1163.3, -177.32], [-1163.34, -178.32], [-1164.53, -178.27], [-1164.66, -180.82], [-1163.48, -180.89], [-1163.52, -181.74], [-1162.35, -181.81], [-1144.19, -182.73], [-1140.95, -179.82], [-1129.94, -169.95], [-1103.66, -199.03], [-1065.5, -165.92], [-1082.14, -147.33], [-1082.96, -146.43], [-1085.26, -146.32], [-1084.24, -127.13], [-1083.89, -120.9], [-1083.11, -105.86], [-1091.12, -105.46], [-1092.16, -105.41], [-1092.1, -104.36], [-1102.25, -103.79], [-1102.28, -104.88], [-1103.16, -104.83], [-1138.87, -103.04], [-1138.83, -102.1], [-1140.94, -101.99], [-1140.98, -102.84], [-1142.48, -102.76], [-1142.43, -101.83], [-1143.58, -101.77], [-1144.62, -101.72], [-1144.67, -102.67], [-1146.11, -102.59], [-1146.05, -101.59], [-1148.31, -101.48], [-1148.37, -102.45], [-1149.98, -102.36], [-1149.92, -101.35], [-1152.22, -101.24], [-1152.27, -102.26], [-1153.86, -102.18], [-1153.78, -100.7], [-1156.51, -100.57], [-1160.59, -100.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1185.44, -80.44], [-1185.47, -81.6], [-1191.43, -81.31], [-1193.44, -81.21], [-1193.36, -80.05], [-1194.3, -80.03], [-1195.01, -80.03], [-1194.53, -70.98], [-1193.21, -45.71], [-1183.75, -46.29], [-1185.44, -80.44]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-1010.4, -352.5], [-1004.7, -358.8], [-1002.65, -361.07], [-1001.64, -360.18], [-1001.26, -360.59], [-1001.55, -360.85], [-993.59, -369.7], [-992.39, -368.62], [-984.72, -361.77], [-985.22, -361.21], [-983.38, -359.56], [-981.36, -357.77], [-971.17, -348.65], [-968.23, -351.92], [-968.05, -352.11], [-964.04, -348.53], [-966.86, -345.41], [-963.81, -342.67], [-950.36, -330.65], [-947.28, -327.9], [-948.08, -327.02], [-946.69, -325.77], [-948.1, -324.2], [-968.11, -302.13], [-985.42, -317.71], [-994.15, -325.57], [-1006.65, -311.77], [-1017.42, -321.46], [-1016.43, -322.55], [-1015.89, -323.15], [-1017.35, -324.46], [-1018.54, -325.54], [-1018.32, -328.27], [-1017.65, -331.04], [-1016.68, -334.15], [-1015.58, -337.13], [-1014.25, -340.5], [-1012.75, -343.54], [-1011.38, -346.32], [-1009.97, -348.86], [-1008.63, -350.92], [-1010.4, -352.5]], "holes": []}, "height": 35.0}, {"shape": {"outer": [[-2325.04, -651.79], [-2275.25, -613.22], [-2276.1, -652.97], [-2276.23, -659.28], [-2273.28, -663.06], [-2277.45, -666.28], [-2292.89, -678.26], [-2301.5, -667.22], [-2308.66, -672.77], [-2325.04, -651.79]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[-186.99, 29.36], [-178.17, 19.67], [-155.4, 40.22], [-151.85, 43.42], [-160.66, 53.12], [-161.75, 52.14], [-186.99, 29.36]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[1555.22, 874.64], [1548.87, 868.91], [1561.19, 855.34], [1567.54, 861.06], [1566.07, 862.67], [1557.92, 871.65], [1555.22, 874.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-827.85, -1343.43], [-825.71, -1342.38], [-823.64, -1341.37], [-822.6, -1343.03], [-817.07, -1344.82], [-815.75, -1344.32], [-814.77, -1345.77], [-813.44, -1347.75], [-814.44, -1348.38], [-813.09, -1350.48], [-814.19, -1355.03], [-815.97, -1355.74], [-815.88, -1356.5], [-819.97, -1358.24], [-821.34, -1356.35], [-826.23, -1355.23], [-827.67, -1355.95], [-830.06, -1351.97], [-829.29, -1351.33], [-830.54, -1349.55], [-829.12, -1345.46], [-827.35, -1344.74], [-827.85, -1343.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1385.7, -1372.4], [-1383.32, -1378.48], [-1378.17, -1382.33], [-1371.95, -1383.98], [-1365.35, -1381.49], [-1361.25, -1376.17], [-1360.31, -1369.3], [-1362.59, -1363.32], [-1368.48, -1359.44], [-1374.81, -1358.56], [-1381.02, -1361.29], [-1383.57, -1364.37], [-1384.8, -1366.11], [-1385.09, -1368.12], [-1385.7, -1372.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[633.79, 1.54], [637.41, -9.88], [675.59, 2.16], [671.97, 13.57], [633.79, 1.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[764.15, 210.7], [762.19, 208.97], [757.44, 204.76], [768.29, 192.6], [774.32, 197.95], [785.77, 208.1], [780.74, 213.73], [785.05, 217.55], [781.09, 221.99], [776.77, 218.17], [769.54, 226.25], [758.78, 216.72], [763.21, 211.75], [764.15, 210.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[796.4, 185.13], [791.92, 181.06], [800.05, 172.18], [801.13, 173.18], [805.14, 168.8], [808.7, 172.03], [804.78, 176.31], [806.75, 178.09], [802.52, 182.7], [801.71, 181.95], [798.24, 185.74], [796.92, 184.54], [796.4, 185.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[802.82, 184.57], [812.81, 173.49], [816.21, 176.54], [819.43, 179.42], [809.44, 190.49], [802.82, 184.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[819.02, 196.68], [824.09, 190.98], [830.47, 196.61], [825.84, 201.8], [823.22, 199.48], [822.77, 199.98], [819.02, 196.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[816.59, 254.94], [811.04, 249.91], [820.1, 239.99], [822.5, 239.93], [826.77, 243.81], [816.59, 254.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[817.93, 258.83], [816.63, 257.64], [812.06, 253.45], [798.99, 267.6], [800.64, 269.11], [799.63, 270.19], [807.58, 277.47], [808.63, 276.33], [813.35, 280.66], [812.3, 281.79], [822.05, 290.73], [823.07, 289.63], [825.29, 291.66], [838.53, 277.32], [830.47, 269.92], [832.44, 267.79], [833.62, 268.88], [840.19, 261.76], [836.33, 258.22], [831.86, 254.11], [832.36, 253.57], [829.7, 251.14], [827.17, 248.81], [817.93, 258.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[827.72, 295.24], [850.51, 270.71], [860.71, 280.12], [837.92, 304.64], [827.72, 295.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[854.63, 319.45], [840.37, 306.81], [862.8, 281.72], [877.06, 294.38], [854.63, 319.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[841.39, 229.08], [835.01, 223.35], [846.09, 210.63], [852.63, 217.03], [841.39, 229.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[843.46, 229.23], [857.91, 213.37], [862.47, 217.5], [860.46, 219.71], [853.81, 227.01], [856.67, 229.6], [850.88, 235.94], [843.46, 229.23]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[865.54, 249.17], [858.64, 242.92], [867.7, 232.99], [874.6, 239.25], [865.54, 249.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[871.46, 246.2], [871.74, 246.45], [870.78, 247.54], [873.06, 249.54], [874.02, 248.45], [877.23, 251.26], [886.51, 240.74], [880.73, 235.69], [871.46, 246.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[899.81, 271.57], [904.78, 276.09], [913.92, 266.12], [908.95, 261.6], [899.81, 271.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[915.66, 294.75], [910.25, 289.65], [923.78, 275.38], [929.2, 280.49], [915.66, 294.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[920.18, 352.28], [927.64, 344.51], [926.7, 343.6], [929.63, 340.55], [924.23, 335.41], [913.84, 346.23], [920.18, 352.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[932.78, 307.6], [926.65, 301.78], [939.47, 288.38], [943.74, 292.44], [942.47, 293.76], [944.33, 295.52], [932.78, 307.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-892.73, -839.29], [-887.08, -845.41], [-881.24, -840.07], [-886.9, -833.95], [-892.73, -839.29]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-38.5, 691.05], [-35.31, 693.86], [-36.15, 694.81], [-29.92, 700.31], [-29.18, 699.47], [-25.83, 702.43], [-13.44, 688.48], [-19.87, 682.81], [-26.22, 677.22], [-38.5, 691.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[685.42, 21.61], [687.76, 13.75], [686.3, 13.31], [686.48, 12.69], [694.89, 15.18], [696.98, 8.18], [706.31, 10.95], [704.02, 18.61], [716.73, 22.37], [721.53, 6.31], [715.15, 4.41], [716.56, -0.3], [705.35, -3.61], [705.6, -4.43], [695.65, -7.38], [694.47, -3.44], [688.49, -5.2], [686.86, 0.27], [683.11, -0.84], [682.44, 1.41], [679.41, 0.51], [675.41, 13.96], [680.65, 15.51], [679.37, 19.83], [685.42, 21.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[762.23, 94.09], [767.27, 98.72], [759.18, 107.47], [754.14, 102.83], [762.23, 94.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[775.36, 96.42], [778.7, 99.52], [775.68, 102.75], [776.48, 103.5], [770.18, 110.23], [765.14, 105.55], [773.09, 97.05], [773.98, 97.89], [775.36, 96.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[782.3, 115.46], [788.72, 117.02], [791.72, 104.79], [791.04, 104.63], [791.54, 102.57], [793.28, 103.0], [793.92, 100.37], [794.94, 100.62], [795.99, 96.35], [789.57, 94.79], [788.5, 99.16], [786.42, 98.65], [782.3, 115.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[783.0, 90.52], [788.28, 94.28], [800.0, 77.95], [794.72, 74.18], [783.0, 90.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[801.54, 97.93], [801.75, 98.06], [801.32, 98.83], [803.58, 100.1], [804.58, 100.66], [805.02, 99.89], [808.7, 101.96], [814.71, 91.37], [807.55, 87.32], [801.54, 97.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[798.27, 118.23], [800.16, 111.54], [805.34, 105.61], [809.32, 107.02], [809.19, 107.57], [814.2, 108.82], [815.66, 102.4], [824.38, 104.38], [821.91, 115.16], [817.84, 114.23], [815.98, 122.33], [810.39, 121.07], [809.14, 120.78], [810.54, 114.3], [809.76, 114.11], [808.84, 113.91], [808.16, 113.74], [807.6, 113.61], [805.87, 120.19], [804.18, 119.76], [798.27, 118.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[822.56, 124.02], [825.32, 112.43], [833.26, 114.31], [830.51, 125.89], [822.56, 124.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[834.25, 123.81], [839.04, 114.9], [846.54, 118.9], [840.96, 129.28], [837.41, 127.39], [838.2, 125.93], [834.25, 123.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[847.99, 116.68], [856.38, 118.84], [853.49, 130.03], [853.19, 129.96], [852.59, 132.26], [845.02, 130.31], [845.61, 128.05], [845.08, 127.91], [847.99, 116.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[855.63, 130.47], [864.76, 132.73], [868.38, 118.23], [867.38, 117.98], [868.15, 114.92], [859.02, 112.67], [855.96, 124.94], [856.95, 125.18], [855.63, 130.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[870.37, 129.36], [871.26, 129.56], [872.31, 124.42], [885.64, 128.17], [884.34, 132.57], [885.22, 132.75], [884.31, 135.5], [882.64, 137.95], [883.63, 138.57], [881.07, 140.61], [879.39, 139.34], [876.42, 138.56], [875.16, 136.19], [869.11, 134.84], [870.37, 129.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[914.79, 143.87], [916.51, 144.07], [920.32, 144.52], [920.36, 144.15], [924.19, 144.6], [924.55, 141.59], [925.37, 141.69], [926.12, 135.36], [925.11, 135.24], [925.47, 132.22], [923.71, 132.01], [923.81, 131.15], [922.25, 130.97], [922.78, 126.48], [916.92, 125.79], [915.81, 135.19], [914.79, 143.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[930.96, 132.85], [940.61, 134.4], [938.73, 146.06], [936.56, 145.72], [936.21, 147.91], [932.79, 147.36], [933.15, 145.17], [929.8, 144.63], [929.18, 143.89], [930.96, 132.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-190.89, 32.61], [-186.99, 29.36], [-161.75, 52.14], [-165.56, 56.16], [-190.89, 32.61]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-138.38, -25.37], [-134.3, -29.98], [-132.17, -30.93], [-104.85, -6.97], [-104.74, -4.76], [-103.48, -3.24], [-102.04, -3.46], [-96.42, 1.76], [-104.53, 10.45], [-111.3, 4.17], [-108.4, 1.06], [-109.31, 0.22], [-112.99, -3.04], [-138.38, -25.37]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-138.38, -25.37], [-146.32, -16.0], [-121.55, 6.78], [-112.99, -3.04], [-138.38, -25.37]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-146.32, -16.0], [-153.11, -7.98], [-127.14, 15.36], [-120.45, 7.83], [-121.55, 6.78], [-146.32, -16.0]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-153.11, -7.98], [-159.68, -0.73], [-133.72, 22.62], [-127.14, 15.36], [-153.11, -7.98]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-159.68, -0.73], [-168.98, 9.93], [-141.99, 34.98], [-132.4, 24.3], [-133.72, 22.62], [-159.68, -0.73]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-141.99, 34.98], [-146.18, 39.59], [-150.75, 35.23], [-173.17, 14.52], [-168.98, 9.93], [-141.99, 34.98]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-155.4, 40.22], [-178.17, 19.67], [-173.17, 14.52], [-150.75, 35.23], [-155.4, 40.22]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-203.98, 77.59], [-199.57, 72.52], [-185.07, 85.61], [-189.79, 90.86], [-203.98, 77.59]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-136.76, 47.66], [-133.27, 43.9], [-130.14, 46.78], [-136.6, 53.73], [-140.31, 57.72], [-146.36, 64.19], [-161.06, 80.02], [-170.81, 71.04], [-143.43, 41.51], [-136.76, 47.66]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-146.36, 64.19], [-140.56, 69.49], [-155.08, 85.36], [-161.06, 80.02], [-146.36, 64.19]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-155.08, 85.36], [-141.15, 98.28], [-123.12, 78.39], [-125.55, 75.05], [-136.46, 64.95], [-140.56, 69.49], [-155.08, 85.36]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1068.76, -127.65], [-1068.69, -126.23], [-1067.67, -106.48], [-1067.63, -105.82], [-1060.56, -106.19], [-1061.54, -125.34], [-1061.68, -128.01], [-1068.76, -127.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1060.56, -106.19], [-1052.52, -106.6], [-1052.58, -107.06], [-1053.51, -125.75], [-1054.2, -139.75], [-1054.59, -147.15], [-1054.61, -147.61], [-1050.51, -152.29], [-1059.72, -160.31], [-1067.72, -151.19], [-1067.75, -149.96], [-1066.27, -148.65], [-1065.92, -141.83], [-1062.39, -142.01], [-1061.68, -128.01], [-1061.54, -125.34], [-1060.56, -106.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1052.58, -107.06], [-1037.86, -107.75], [-1038.31, -117.0], [-1038.66, -123.99], [-1038.92, -123.94], [-1039.64, -138.42], [-1037.61, -140.68], [-1046.33, -148.49], [-1054.2, -139.75], [-1053.51, -125.75], [-1052.58, -107.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1026.57, -121.74], [-1024.85, -121.83], [-1024.99, -124.71], [-1023.02, -126.88], [-1022.64, -127.38], [-1026.62, -130.85], [-1031.8, -124.94], [-1032.37, -124.29], [-1038.66, -123.99], [-1038.31, -117.0], [-1037.86, -107.75], [-1030.44, -108.12], [-1024.2, -108.42], [-1024.65, -117.66], [-1026.37, -117.58], [-1026.57, -121.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1026.62, -130.85], [-1035.52, -138.58], [-1036.96, -139.89], [-1038.6, -138.04], [-1038.43, -135.25], [-1037.9, -126.8], [-1031.8, -124.94], [-1026.62, -130.85]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1023.02, -126.88], [-1019.66, -123.85], [-1018.95, -108.67], [-1024.2, -108.42], [-1024.65, -117.66], [-1024.85, -121.83], [-1024.99, -124.71], [-1023.02, -126.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1019.66, -123.85], [-1018.5, -125.09], [-1004.58, -112.12], [-1004.15, -110.95], [-1004.26, -110.01], [-1004.63, -109.3], [-1005.33, -108.92], [-1018.93, -108.29], [-1018.95, -108.67], [-1019.66, -123.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2245.81, -586.99], [-2246.02, -595.55], [-2230.54, -595.92], [-2230.39, -589.53], [-2233.9, -589.44], [-2233.85, -587.28], [-2245.81, -586.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-939.38, -79.84], [-932.82, -74.2], [-927.75, -79.71], [-928.66, -80.47], [-939.38, -79.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-928.66, -80.47], [-927.75, -79.71], [-927.41, -79.83], [-926.99, -80.29], [-921.13, -86.79], [-919.57, -88.51], [-919.77, -94.36], [-929.54, -93.79], [-928.66, -80.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-497.56, 257.35], [-487.82, 266.22], [-477.87, 255.37], [-476.58, 256.53], [-465.94, 244.93], [-478.32, 233.66], [-488.1, 244.35], [-486.76, 245.56], [-497.56, 257.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-489.5, 219.1], [-485.33, 222.96], [-487.65, 225.45], [-485.37, 227.55], [-483.28, 225.31], [-479.48, 228.82], [-484.57, 234.29], [-484.44, 235.99], [-489.67, 241.61], [-491.03, 241.23], [-497.21, 247.87], [-497.58, 247.53], [-499.6, 249.71], [-508.42, 241.56], [-506.4, 239.38], [-506.82, 238.99], [-501.0, 232.74], [-501.63, 230.67], [-496.17, 224.81], [-494.81, 224.8], [-489.5, 219.1]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-556.06, 439.07], [-551.72, 434.46], [-548.33, 437.63], [-544.74, 433.82], [-543.23, 435.22], [-542.67, 434.63], [-530.07, 446.28], [-534.87, 451.38], [-538.24, 448.21], [-542.0, 452.19], [-556.06, 439.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-529.79, 414.73], [-522.65, 407.15], [-520.21, 409.43], [-519.0, 408.16], [-510.93, 415.72], [-509.2, 413.88], [-504.75, 418.04], [-509.16, 422.71], [-507.51, 424.26], [-511.79, 428.81], [-513.86, 426.88], [-515.94, 429.09], [-521.04, 424.32], [-520.59, 423.84], [-527.34, 417.51], [-527.1, 417.24], [-529.79, 414.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-505.5, 386.68], [-499.7, 391.83], [-493.05, 384.41], [-490.3, 386.85], [-481.41, 376.91], [-483.33, 375.2], [-482.66, 374.45], [-489.0, 368.81], [-489.67, 369.56], [-491.14, 368.26], [-492.35, 369.61], [-493.39, 368.69], [-496.17, 371.79], [-495.13, 372.71], [-500.04, 378.2], [-498.86, 379.25], [-505.5, 386.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-522.88, 289.06], [-517.61, 283.04], [-517.1, 283.5], [-512.36, 278.09], [-508.84, 281.16], [-506.3, 278.26], [-500.82, 283.03], [-504.21, 286.9], [-503.75, 287.29], [-509.87, 294.29], [-509.63, 294.5], [-513.2, 298.58], [-513.96, 297.91], [-514.5, 298.54], [-520.71, 293.15], [-520.16, 292.52], [-522.4, 290.57], [-521.86, 289.95], [-522.88, 289.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-475.64, -36.42], [-437.61, -1.84], [-454.43, 16.53], [-481.14, -7.75], [-495.0, 7.39], [-470.16, 29.98], [-473.57, 33.7], [-470.14, 36.82], [-480.95, 48.61], [-520.37, 12.77], [-513.9, 5.69], [-512.2, 7.25], [-501.71, -4.2], [-501.87, -6.0], [-497.66, -10.54], [-495.8, -10.59], [-490.39, -16.49], [-492.3, -18.23], [-475.64, -36.42]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[776.2, 1890.58], [784.9, 1886.98], [785.47, 1894.08], [784.12, 1909.89], [771.28, 1901.12], [766.67, 1894.96], [776.2, 1890.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[948.44, 318.68], [957.4, 308.34], [956.43, 307.51], [956.73, 307.17], [952.5, 303.53], [943.24, 314.2], [948.44, 318.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[925.78, 350.41], [934.26, 341.03], [935.6, 342.24], [940.24, 346.41], [931.77, 355.77], [926.83, 351.34], [925.78, 350.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[920.75, 358.12], [925.69, 362.52], [931.77, 355.77], [926.83, 351.34], [920.75, 358.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[931.14, 361.1], [941.49, 349.14], [945.46, 352.55], [949.45, 355.97], [939.11, 367.94], [931.14, 361.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[950.45, 323.4], [956.65, 329.33], [966.94, 318.62], [960.74, 312.7], [950.45, 323.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[960.26, 334.99], [966.72, 340.86], [969.59, 343.46], [980.83, 331.15], [979.07, 329.55], [975.23, 326.08], [971.5, 322.68], [960.26, 334.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[988.79, 412.8], [993.84, 407.26], [999.79, 400.53], [993.61, 395.0], [982.58, 407.24], [988.79, 412.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2957.73, -1179.29], [-2946.03, -1193.05], [-2938.97, -1187.08], [-2950.67, -1173.33], [-2957.73, -1179.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2950.67, -1173.33], [-2944.11, -1167.78], [-2932.41, -1181.55], [-2938.97, -1187.08], [-2950.67, -1173.33]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2944.11, -1167.78], [-2936.84, -1161.65], [-2925.13, -1175.42], [-2932.41, -1181.55], [-2944.11, -1167.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2603.05, -875.52], [-2591.58, -889.03], [-2583.49, -882.2], [-2585.03, -880.38], [-2594.95, -868.69], [-2603.05, -875.52]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[776.62, 227.48], [781.79, 232.15], [785.58, 235.58], [798.45, 221.45], [799.85, 219.92], [805.51, 225.04], [791.25, 240.7], [788.38, 238.11], [785.98, 240.74], [775.38, 252.38], [763.62, 241.76], [774.02, 230.33], [776.62, 227.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[852.79, 171.47], [852.43, 171.15], [848.98, 174.95], [842.4, 169.01], [843.99, 167.27], [842.33, 165.78], [844.96, 162.88], [843.16, 161.26], [848.25, 155.66], [852.05, 159.08], [854.09, 156.83], [860.69, 162.78], [852.79, 171.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[884.7, 209.69], [881.92, 207.19], [884.26, 204.61], [879.57, 200.4], [882.06, 197.63], [885.02, 200.29], [885.65, 199.61], [890.16, 203.66], [884.7, 209.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[764.01, 156.83], [768.71, 161.08], [775.88, 153.21], [769.01, 146.99], [765.75, 150.56], [767.93, 152.53], [764.01, 156.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[772.87, 144.29], [779.64, 150.09], [786.79, 141.81], [781.68, 137.43], [779.62, 139.81], [777.95, 138.39], [772.87, 144.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[815.21, 167.87], [820.94, 161.8], [815.06, 156.28], [809.33, 162.34], [812.17, 165.01], [815.21, 167.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[805.83, 157.45], [798.58, 151.1], [803.15, 145.91], [806.16, 148.54], [806.98, 147.6], [811.23, 151.33], [805.83, 157.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[839.62, 157.21], [836.19, 154.24], [835.85, 154.62], [832.8, 151.97], [826.24, 159.47], [832.24, 164.68], [833.0, 163.81], [833.48, 164.23], [839.62, 157.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[827.57, 178.4], [832.78, 182.86], [834.09, 181.35], [837.38, 184.18], [841.63, 179.26], [843.21, 180.61], [845.08, 178.44], [835.0, 169.8], [827.57, 178.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[861.19, 208.87], [855.01, 203.25], [858.06, 199.92], [859.22, 198.65], [857.82, 197.38], [858.86, 196.25], [862.53, 192.26], [870.09, 199.13], [861.19, 208.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[887.94, 166.35], [885.25, 169.35], [884.58, 168.76], [880.33, 173.49], [881.0, 174.1], [876.64, 178.94], [882.63, 184.29], [893.93, 171.7], [887.94, 166.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[887.9, 191.92], [892.54, 196.04], [898.45, 189.44], [897.92, 188.98], [904.12, 182.05], [899.32, 177.78], [896.81, 180.59], [895.01, 178.99], [889.04, 185.66], [891.52, 187.87], [887.9, 191.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[905.44, 204.8], [897.07, 197.35], [906.41, 186.93], [914.79, 194.38], [905.44, 204.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[908.82, 202.9], [909.32, 203.33], [902.69, 210.94], [903.16, 211.34], [900.83, 214.0], [904.21, 216.92], [906.43, 214.36], [907.75, 215.5], [911.44, 211.26], [910.43, 210.39], [913.46, 206.91], [914.87, 208.13], [921.83, 200.13], [915.78, 194.9], [908.82, 202.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[921.65, 218.79], [927.33, 223.7], [930.09, 220.55], [931.1, 221.42], [934.56, 217.44], [933.58, 216.58], [936.51, 213.21], [930.81, 208.28], [921.65, 218.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[927.28, 230.33], [932.27, 234.73], [935.46, 231.14], [935.91, 231.54], [946.26, 219.87], [943.18, 217.15], [942.09, 218.38], [939.71, 216.28], [936.82, 219.53], [936.12, 218.91], [932.5, 222.98], [932.84, 223.28], [930.32, 226.13], [930.7, 226.46], [927.28, 230.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[935.97, 233.59], [947.46, 221.29], [952.69, 226.14], [941.21, 238.45], [935.97, 233.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[946.03, 240.9], [948.64, 238.03], [946.91, 236.46], [950.94, 232.04], [951.46, 232.51], [953.75, 230.01], [955.3, 231.41], [957.06, 229.49], [961.12, 233.17], [950.43, 244.89], [946.03, 240.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[958.07, 252.13], [968.48, 240.8], [961.25, 234.19], [950.84, 245.52], [951.77, 246.37], [950.21, 248.07], [951.48, 249.23], [950.25, 250.56], [953.64, 253.66], [954.87, 252.33], [955.69, 253.08], [957.25, 251.38], [958.07, 252.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[961.57, 251.68], [970.42, 242.1], [976.13, 247.35], [967.28, 256.92], [961.57, 251.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[963.25, 263.75], [970.32, 269.99], [983.62, 255.02], [976.55, 248.79], [963.25, 263.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[973.33, 273.2], [980.33, 279.43], [992.2, 266.19], [991.25, 265.34], [990.08, 264.31], [985.19, 259.96], [973.33, 273.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[983.62, 282.7], [987.5, 278.49], [987.13, 278.14], [995.43, 269.16], [1003.65, 276.7], [1002.99, 277.4], [1004.19, 278.5], [998.12, 285.07], [996.37, 283.45], [992.77, 287.34], [991.98, 286.62], [990.1, 288.64], [989.98, 288.52], [988.21, 290.44], [982.12, 284.84], [983.88, 282.93], [983.62, 282.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1002.98, 289.61], [1008.54, 283.55], [1011.16, 285.94], [1015.97, 280.7], [1021.8, 286.02], [1015.2, 293.22], [1013.91, 292.04], [1010.15, 296.14], [1002.98, 289.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[985.35, 301.8], [989.6, 297.25], [991.81, 299.3], [994.43, 296.51], [1001.5, 303.09], [994.11, 310.99], [986.97, 304.36], [987.5, 303.79], [985.35, 301.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[948.88, 183.54], [955.56, 176.42], [960.7, 181.22], [961.47, 180.41], [966.36, 184.97], [961.36, 190.29], [957.59, 186.77], [955.14, 189.38], [948.88, 183.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[959.95, 196.48], [963.66, 199.9], [973.68, 189.12], [973.38, 188.85], [978.54, 183.3], [973.47, 178.63], [970.26, 182.09], [969.87, 181.72], [960.6, 191.7], [962.64, 193.58], [959.95, 196.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[968.25, 201.66], [975.53, 193.59], [985.74, 202.72], [978.47, 210.8], [968.25, 201.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[988.16, 192.18], [990.8, 189.37], [990.46, 189.04], [996.71, 182.37], [1002.35, 187.64], [993.46, 197.11], [988.16, 192.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[980.84, 213.41], [984.45, 209.46], [984.02, 209.07], [985.98, 206.93], [986.41, 207.32], [990.19, 203.18], [996.58, 208.97], [994.91, 210.8], [995.55, 211.38], [990.91, 216.46], [989.98, 215.62], [987.16, 218.69], [985.39, 217.08], [985.17, 217.33], [980.84, 213.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[996.88, 194.74], [1000.07, 197.59], [1000.5, 197.12], [1003.78, 200.05], [1011.25, 191.73], [1007.57, 188.45], [1007.99, 187.97], [1005.19, 185.47], [996.88, 194.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1005.64, 202.24], [1017.28, 189.48], [1018.8, 190.86], [1020.35, 189.15], [1024.9, 193.28], [1011.71, 207.74], [1005.64, 202.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1016.93, 205.13], [1022.72, 210.24], [1035.34, 196.01], [1029.54, 190.9], [1016.93, 205.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1031.54, 204.93], [1034.08, 207.2], [1033.17, 208.21], [1034.82, 209.68], [1035.73, 208.68], [1037.21, 210.02], [1047.05, 199.1], [1041.37, 194.03], [1031.54, 204.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1048.24, 218.01], [1050.18, 215.93], [1054.15, 219.61], [1060.14, 213.18], [1059.45, 212.54], [1061.3, 210.57], [1050.95, 200.97], [1049.06, 202.99], [1048.04, 202.05], [1042.13, 208.39], [1043.55, 209.71], [1041.57, 211.83], [1048.24, 218.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1062.97, 214.82], [1071.02, 205.95], [1082.07, 215.92], [1074.01, 224.79], [1062.97, 214.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[933.67, 172.17], [931.94, 170.66], [935.61, 166.53], [936.5, 166.05], [937.14, 166.01], [937.76, 166.18], [940.86, 168.9], [942.14, 167.47], [947.95, 172.57], [948.05, 174.46], [941.9, 181.38], [937.26, 177.26], [936.22, 177.38], [935.08, 176.37], [935.06, 175.31], [932.72, 173.25], [933.67, 172.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1054.24, 223.59], [1057.53, 219.9], [1059.47, 221.62], [1061.46, 219.39], [1071.98, 228.68], [1068.94, 232.09], [1065.78, 235.64], [1064.4, 237.19], [1057.49, 231.09], [1059.8, 228.51], [1054.24, 223.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1064.48, 239.45], [1054.4, 230.4], [1047.39, 238.15], [1057.46, 247.2], [1064.48, 239.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1032.71, 255.7], [1036.09, 252.03], [1035.14, 251.16], [1039.82, 246.06], [1042.41, 248.44], [1046.32, 244.19], [1051.97, 249.34], [1047.96, 253.7], [1048.63, 254.31], [1044.1, 259.24], [1043.75, 258.91], [1040.32, 262.64], [1039.0, 261.45], [1037.82, 262.73], [1035.48, 260.6], [1036.67, 259.31], [1032.71, 255.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[995.72, 227.24], [1001.01, 231.89], [1009.76, 221.97], [1004.46, 217.33], [995.72, 227.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1004.06, 233.92], [1007.19, 236.38], [1007.9, 235.75], [1010.53, 238.11], [1020.24, 227.38], [1014.09, 221.59], [1004.06, 233.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[989.75, 221.08], [995.66, 226.16], [1005.37, 214.94], [1001.3, 211.44], [999.18, 213.89], [998.04, 212.91], [996.38, 214.83], [994.91, 215.11], [993.69, 215.54], [992.87, 216.39], [992.75, 217.62], [989.75, 221.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1012.56, 239.85], [1018.29, 244.93], [1028.89, 233.04], [1022.65, 227.5], [1014.93, 236.15], [1015.45, 236.62], [1012.56, 239.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1023.6, 243.01], [1028.77, 247.45], [1034.5, 240.82], [1035.64, 241.8], [1040.05, 236.69], [1036.33, 233.49], [1032.24, 238.22], [1029.66, 236.0], [1023.6, 243.01]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[925.59, 263.13], [918.85, 270.17], [938.53, 288.86], [945.26, 281.82], [925.59, 263.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[984.94, 358.64], [995.72, 368.1], [1003.84, 358.92], [993.04, 349.45], [984.94, 358.64]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[1009.06, 379.22], [1014.74, 384.43], [1022.91, 375.58], [1022.06, 374.79], [1023.1, 373.65], [1018.75, 369.67], [1017.7, 370.8], [1017.23, 370.37], [1009.06, 379.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1017.66, 382.68], [1024.81, 389.0], [1031.84, 381.1], [1030.29, 379.74], [1031.58, 378.29], [1025.97, 373.34], [1017.66, 382.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[922.22, 429.5], [932.42, 418.55], [960.75, 444.76], [950.55, 455.72], [922.22, 429.5]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[961.68, 465.69], [966.97, 459.93], [965.0, 458.14], [966.65, 456.35], [958.75, 449.16], [951.82, 456.73], [961.68, 465.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[963.38, 468.06], [973.49, 456.82], [1003.11, 483.31], [993.0, 494.54], [963.38, 468.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1028.68, 312.68], [1055.67, 337.46], [1064.15, 328.29], [1059.22, 323.76], [1051.14, 316.33], [1041.62, 307.59], [1037.17, 303.51], [1028.68, 312.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1062.02, 347.81], [1073.19, 335.67], [1072.43, 334.98], [1073.5, 333.82], [1072.81, 333.19], [1071.89, 332.35], [1067.85, 328.65], [1066.78, 329.82], [1066.06, 329.15], [1054.89, 341.29], [1062.02, 347.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1062.43, 349.47], [1068.67, 355.14], [1072.54, 350.92], [1072.67, 351.04], [1076.39, 346.97], [1075.43, 346.11], [1079.73, 341.41], [1074.31, 336.48], [1062.43, 349.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1095.61, 372.56], [1099.25, 368.55], [1099.84, 369.07], [1102.9, 365.69], [1101.58, 364.5], [1104.57, 361.19], [1099.86, 356.96], [1092.21, 365.41], [1093.35, 366.44], [1091.31, 368.69], [1095.61, 372.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1099.27, 375.01], [1103.73, 379.08], [1104.45, 378.29], [1106.82, 380.44], [1112.47, 374.26], [1111.38, 373.28], [1114.22, 370.18], [1109.12, 365.54], [1103.81, 371.36], [1103.15, 370.77], [1099.27, 375.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1109.62, 385.65], [1110.93, 386.89], [1110.07, 387.79], [1113.39, 390.91], [1114.58, 389.65], [1116.7, 391.65], [1119.46, 388.74], [1120.83, 390.03], [1122.91, 387.84], [1121.54, 386.54], [1126.2, 381.62], [1125.45, 380.91], [1126.74, 379.55], [1120.95, 374.11], [1119.67, 375.47], [1119.46, 375.27], [1109.62, 385.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1121.5, 396.79], [1127.88, 402.65], [1137.08, 392.71], [1130.71, 386.85], [1121.5, 396.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1130.91, 404.64], [1138.16, 411.27], [1147.27, 401.4], [1140.55, 395.24], [1138.97, 396.97], [1138.43, 396.48], [1130.91, 404.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1143.89, 422.29], [1155.0, 410.07], [1154.03, 409.2], [1149.86, 405.44], [1148.36, 404.08], [1145.21, 407.54], [1144.71, 407.08], [1140.36, 411.88], [1140.63, 412.1], [1137.01, 416.08], [1141.72, 420.33], [1139.52, 422.74], [1141.31, 424.35], [1143.5, 421.93], [1143.89, 422.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1143.46, 424.67], [1153.23, 413.94], [1156.95, 417.3], [1158.98, 419.13], [1161.28, 421.21], [1151.51, 431.94], [1143.46, 424.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1173.55, 390.04], [1188.12, 403.2], [1197.69, 392.68], [1198.19, 393.14], [1203.91, 386.85], [1201.78, 384.92], [1202.69, 383.93], [1194.39, 376.43], [1193.48, 377.43], [1188.85, 373.24], [1173.55, 390.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1167.04, 380.57], [1173.9, 386.83], [1181.25, 378.82], [1178.84, 376.62], [1179.53, 375.87], [1175.64, 372.32], [1174.95, 373.08], [1174.39, 372.57], [1167.04, 380.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1150.26, 366.6], [1154.41, 370.46], [1155.92, 368.85], [1159.18, 371.88], [1168.45, 361.97], [1165.86, 359.56], [1170.76, 354.32], [1166.43, 350.29], [1161.52, 355.54], [1161.04, 355.09], [1150.26, 366.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1140.13, 354.15], [1140.56, 354.55], [1139.31, 355.92], [1144.44, 360.61], [1145.71, 359.24], [1145.94, 359.46], [1156.49, 347.98], [1149.74, 341.81], [1145.45, 346.47], [1146.4, 347.33], [1140.13, 354.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1129.79, 347.95], [1136.57, 354.05], [1149.86, 339.41], [1148.73, 338.39], [1149.67, 337.36], [1145.15, 333.29], [1144.21, 334.32], [1143.08, 333.3], [1129.79, 347.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1118.43, 335.22], [1121.99, 338.32], [1123.08, 339.27], [1123.8, 339.9], [1135.09, 327.03], [1129.19, 321.89], [1118.53, 334.03], [1119.06, 334.49], [1118.43, 335.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1116.16, 326.07], [1108.73, 318.93], [1115.12, 312.31], [1113.53, 310.78], [1117.55, 306.61], [1120.01, 308.96], [1123.02, 305.84], [1129.6, 312.15], [1116.16, 326.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1098.93, 309.37], [1104.12, 314.17], [1110.87, 306.91], [1105.68, 302.11], [1098.93, 309.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1086.57, 305.03], [1087.97, 306.31], [1092.44, 310.45], [1093.74, 311.65], [1107.3, 297.1], [1100.14, 290.47], [1096.63, 294.23], [1086.57, 305.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1081.06, 299.93], [1086.57, 305.03], [1096.63, 294.23], [1092.12, 290.06], [1087.96, 294.52], [1086.95, 293.59], [1081.06, 299.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1071.89, 294.4], [1077.74, 299.62], [1081.26, 295.71], [1081.66, 296.06], [1088.01, 289.01], [1081.39, 283.09], [1075.43, 289.73], [1075.79, 290.05], [1071.89, 294.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1061.14, 280.82], [1065.12, 284.44], [1066.34, 283.09], [1069.3, 285.79], [1075.22, 279.34], [1068.02, 272.79], [1062.91, 278.37], [1063.17, 278.6], [1061.14, 280.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1138.05, 430.75], [1146.47, 438.48], [1146.28, 438.68], [1149.11, 441.27], [1148.78, 441.62], [1150.56, 443.25], [1146.78, 447.35], [1146.07, 448.11], [1145.47, 448.78], [1132.43, 436.83], [1138.05, 430.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1138.69, 454.26], [1143.81, 448.57], [1136.89, 442.38], [1131.43, 448.46], [1134.76, 451.43], [1135.1, 451.06], [1138.69, 454.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1121.23, 454.44], [1132.26, 464.1], [1136.88, 458.87], [1132.57, 455.09], [1133.15, 454.43], [1129.25, 451.0], [1128.66, 451.66], [1125.85, 449.21], [1121.23, 454.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1123.11, 461.81], [1129.02, 467.18], [1120.12, 476.93], [1114.21, 471.58], [1123.11, 461.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2929.83, -1155.73], [-2918.11, -1169.49], [-2925.13, -1175.42], [-2936.84, -1161.65], [-2929.83, -1155.73]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2929.83, -1155.73], [-2923.22, -1150.15], [-2909.31, -1166.5], [-2906.24, -1170.11], [-2912.85, -1175.69], [-2918.11, -1169.49], [-2929.83, -1155.73]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2980.41, -1199.21], [-2963.52, -1218.56], [-2955.82, -1211.88], [-2972.71, -1192.54], [-2980.41, -1199.21]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[799.39, 1285.92], [811.79, 1298.4], [826.06, 1284.31], [813.67, 1271.85], [799.39, 1285.92]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1268.58, 1263.79], [1279.86, 1252.08], [1270.08, 1242.73], [1258.81, 1254.44], [1268.58, 1263.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1232.02, 1233.23], [1244.05, 1219.89], [1234.59, 1209.89], [1221.13, 1223.75], [1232.02, 1233.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1263.1, 279.57], [1260.09, 276.87], [1261.27, 275.57], [1259.17, 273.67], [1265.9, 266.27], [1267.68, 267.87], [1268.38, 267.1], [1270.39, 268.91], [1269.34, 270.07], [1270.66, 271.26], [1263.1, 279.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1283.58, 263.13], [1289.91, 255.66], [1297.81, 262.32], [1292.87, 268.15], [1287.09, 263.29], [1285.7, 264.93], [1283.58, 263.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1294.64, 270.97], [1301.51, 263.52], [1306.81, 268.36], [1302.41, 273.12], [1303.46, 274.09], [1300.98, 276.78], [1294.64, 270.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1274.33, 253.94], [1276.41, 255.6], [1275.22, 257.08], [1281.45, 262.06], [1289.25, 252.38], [1280.94, 245.74], [1274.33, 253.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1261.56, 243.67], [1268.99, 234.89], [1276.72, 241.38], [1269.29, 250.17], [1261.56, 243.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1233.72, 255.1], [1242.66, 245.52], [1248.77, 251.18], [1239.81, 260.76], [1233.72, 255.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1321.37, 286.62], [1331.1, 276.29], [1339.46, 284.1], [1329.74, 294.43], [1321.37, 286.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1332.31, 298.22], [1333.65, 299.3], [1337.24, 302.18], [1340.71, 304.96], [1353.11, 289.59], [1344.7, 282.86], [1332.31, 298.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1342.47, 306.14], [1350.89, 313.23], [1361.53, 302.15], [1354.45, 296.18], [1351.49, 298.84], [1350.0, 297.3], [1342.47, 306.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1340.27, 342.69], [1341.11, 341.73], [1353.87, 327.09], [1372.96, 343.6], [1369.41, 347.68], [1370.75, 348.85], [1359.26, 362.04], [1353.06, 356.68], [1350.43, 359.7], [1351.05, 360.24], [1348.51, 363.17], [1347.55, 362.34], [1344.4, 365.95], [1345.44, 366.85], [1342.58, 370.15], [1341.67, 369.36], [1338.97, 372.45], [1339.63, 373.01], [1336.33, 376.79], [1335.4, 375.99], [1333.47, 378.21], [1332.22, 379.64], [1330.03, 377.75], [1329.01, 378.91], [1326.17, 376.44], [1321.55, 372.45], [1327.01, 366.18], [1325.72, 365.06], [1328.23, 362.18], [1329.31, 363.12], [1331.72, 360.35], [1330.81, 359.56], [1333.36, 356.65], [1334.37, 357.53], [1337.66, 353.77], [1336.95, 353.16], [1339.54, 350.18], [1340.64, 351.14], [1343.22, 348.18], [1342.05, 347.16], [1343.51, 345.49], [1340.27, 342.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1365.85, 363.09], [1419.56, 334.33], [1427.11, 348.32], [1366.29, 380.88], [1359.93, 369.08], [1367.04, 365.28], [1365.85, 363.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1618.84, 483.26], [1612.98, 478.07], [1625.51, 464.02], [1631.38, 469.21], [1618.84, 483.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1619.35, 483.88], [1621.01, 485.3], [1619.6, 486.93], [1623.53, 490.3], [1624.81, 488.83], [1626.8, 490.55], [1640.21, 475.08], [1632.63, 468.56], [1619.35, 483.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1627.06, 491.25], [1628.2, 492.27], [1626.93, 493.69], [1631.34, 497.59], [1632.72, 496.04], [1633.7, 496.92], [1646.11, 482.97], [1639.56, 477.19], [1627.06, 491.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1647.33, 483.83], [1653.65, 489.54], [1641.23, 503.18], [1634.91, 497.47], [1647.33, 483.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1665.74, 519.12], [1670.62, 512.48], [1669.67, 511.77], [1674.32, 505.44], [1679.03, 508.87], [1677.2, 511.36], [1680.19, 513.54], [1672.76, 523.67], [1674.14, 524.67], [1671.14, 528.75], [1665.64, 524.73], [1667.7, 521.94], [1665.74, 519.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1680.5, 524.45], [1689.94, 514.06], [1691.93, 511.87], [1704.02, 522.77], [1702.16, 524.82], [1692.59, 535.34], [1680.5, 524.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1696.97, 537.63], [1707.21, 527.57], [1714.04, 534.42], [1704.23, 544.46], [1696.97, 537.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1708.42, 551.39], [1721.85, 536.23], [1733.84, 546.79], [1720.4, 561.94], [1708.42, 551.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1616.22, 517.03], [1623.17, 523.16], [1632.41, 512.73], [1626.64, 507.65], [1625.51, 508.91], [1624.33, 507.88], [1616.22, 517.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1593.37, 496.99], [1600.69, 488.01], [1602.19, 489.22], [1604.01, 487.0], [1609.98, 491.84], [1600.85, 503.04], [1593.37, 496.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1600.71, 503.72], [1608.17, 494.93], [1615.78, 501.33], [1608.32, 510.13], [1600.71, 503.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1608.17, 510.6], [1615.22, 516.8], [1623.23, 507.73], [1622.35, 506.97], [1623.99, 505.12], [1618.37, 500.19], [1616.98, 501.76], [1616.42, 501.28], [1608.17, 510.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1427.73, 354.04], [1434.65, 347.13], [1436.41, 348.09], [1440.14, 347.4], [1443.09, 349.77], [1442.9, 352.03], [1434.31, 360.59], [1427.73, 354.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1412.04, 367.75], [1418.99, 373.93], [1408.75, 385.37], [1401.8, 379.2], [1412.04, 367.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1409.66, 389.72], [1421.56, 375.9], [1429.26, 382.48], [1417.36, 396.3], [1409.66, 389.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1442.48, 368.36], [1439.29, 365.22], [1441.61, 362.88], [1437.84, 359.15], [1445.07, 351.88], [1452.04, 358.77], [1442.48, 368.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1443.22, 369.3], [1451.03, 376.83], [1457.83, 369.84], [1450.01, 362.3], [1443.22, 369.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1452.65, 378.0], [1461.56, 368.34], [1469.18, 374.74], [1460.18, 384.42], [1452.65, 378.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1461.62, 385.86], [1464.4, 388.14], [1466.45, 386.43], [1471.38, 390.64], [1477.31, 383.67], [1469.82, 376.86], [1461.62, 385.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1496.79, 409.48], [1503.26, 415.29], [1513.33, 404.14], [1506.89, 398.37], [1503.84, 401.74], [1503.49, 401.43], [1499.12, 406.27], [1499.43, 406.55], [1496.79, 409.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1503.97, 417.01], [1504.95, 415.93], [1504.14, 415.2], [1513.08, 405.24], [1520.02, 411.42], [1510.88, 421.62], [1510.34, 421.13], [1509.56, 421.99], [1503.97, 417.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1512.36, 422.72], [1521.53, 412.41], [1528.8, 418.83], [1519.66, 429.11], [1516.89, 426.65], [1515.83, 427.83], [1511.68, 424.17], [1512.71, 423.01], [1512.36, 422.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1427.81, 410.58], [1436.07, 418.11], [1437.47, 416.61], [1440.21, 419.1], [1445.61, 413.22], [1444.54, 412.24], [1450.24, 406.03], [1440.54, 397.19], [1437.22, 400.81], [1435.42, 399.17], [1429.81, 405.29], [1431.37, 406.7], [1427.81, 410.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1495.85, 394.25], [1496.27, 394.63], [1499.13, 391.48], [1501.35, 393.48], [1502.07, 392.7], [1505.4, 395.71], [1502.42, 398.98], [1503.28, 399.75], [1500.6, 402.7], [1501.04, 403.1], [1497.81, 406.66], [1497.42, 406.3], [1496.13, 407.73], [1489.25, 401.51], [1495.85, 394.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1269.82, 278.77], [1275.62, 271.82], [1285.3, 279.81], [1292.84, 286.05], [1288.38, 291.41], [1287.52, 292.43], [1287.04, 293.01], [1269.82, 278.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1581.9, 483.32], [1593.07, 470.36], [1598.07, 469.07], [1602.23, 472.98], [1602.33, 476.57], [1603.81, 478.1], [1599.48, 483.12], [1601.02, 485.09], [1595.41, 491.09], [1592.89, 488.8], [1589.92, 491.93], [1584.71, 487.2], [1585.48, 486.3], [1581.9, 483.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1567.28, 467.46], [1569.84, 469.93], [1568.14, 471.66], [1572.07, 475.44], [1573.26, 474.22], [1576.91, 477.74], [1581.2, 473.31], [1581.1, 471.89], [1583.46, 468.95], [1583.18, 468.33], [1582.74, 467.76], [1584.21, 467.09], [1584.66, 464.21], [1580.35, 460.42], [1576.36, 460.21], [1577.22, 459.33], [1574.58, 456.78], [1569.38, 462.11], [1570.34, 463.04], [1567.75, 465.69], [1568.39, 466.31], [1567.28, 467.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1551.9, 455.22], [1561.74, 444.22], [1570.85, 452.31], [1566.04, 457.7], [1565.44, 459.04], [1560.94, 464.06], [1557.03, 460.6], [1556.31, 461.39], [1553.19, 458.64], [1554.33, 457.36], [1551.9, 455.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1524.17, 424.72], [1525.64, 423.2], [1526.13, 423.67], [1529.05, 420.64], [1532.21, 423.66], [1534.45, 421.33], [1542.53, 429.06], [1541.04, 430.61], [1542.04, 431.58], [1533.84, 440.09], [1521.81, 428.58], [1524.87, 425.39], [1524.17, 424.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1539.05, 445.9], [1549.69, 434.27], [1554.88, 438.99], [1552.51, 441.58], [1554.09, 443.02], [1552.62, 444.63], [1553.47, 445.4], [1550.34, 448.81], [1549.72, 448.24], [1545.31, 453.06], [1543.6, 451.5], [1544.34, 450.71], [1539.05, 445.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1870.44, 612.85], [1879.22, 604.29], [1890.78, 616.06], [1882.01, 624.62], [1870.44, 612.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1940.41, 676.43], [1949.98, 665.86], [1942.28, 658.93], [1932.71, 669.48], [1940.41, 676.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1976.83, 705.25], [1986.03, 694.67], [1977.07, 686.93], [1967.87, 697.5], [1976.83, 705.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1903.37, 643.38], [1911.85, 633.63], [1921.48, 641.94], [1913.0, 651.69], [1903.37, 643.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1889.2, 631.1], [1897.99, 622.82], [1904.57, 629.76], [1895.78, 638.04], [1889.2, 631.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1865.45, 610.69], [1873.81, 600.71], [1863.22, 591.92], [1854.87, 601.9], [1865.45, 610.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1980.94, 712.7], [1992.92, 699.72], [1999.11, 705.42], [1987.13, 718.38], [1980.94, 712.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1928.39, 666.02], [1936.87, 656.47], [1923.38, 644.57], [1914.9, 654.11], [1928.39, 666.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1963.27, 695.66], [1970.35, 687.21], [1962.0, 680.26], [1954.93, 688.71], [1963.27, 695.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1949.47, 679.68], [1958.49, 670.26], [1963.27, 674.8], [1952.05, 686.51], [1947.27, 681.97], [1949.47, 679.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1304.84, 309.11], [1311.59, 315.1], [1321.15, 304.4], [1314.41, 298.41], [1304.84, 309.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1316.66, 316.79], [1322.47, 321.8], [1332.31, 310.44], [1326.51, 305.44], [1316.66, 316.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1322.76, 329.23], [1332.03, 335.5], [1341.21, 322.0], [1331.94, 315.74], [1322.76, 329.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1207.94, 281.3], [1208.81, 282.1], [1210.05, 283.25], [1214.97, 287.81], [1226.72, 275.23], [1225.08, 273.72], [1226.22, 272.49], [1222.6, 269.13], [1221.46, 270.37], [1219.68, 268.72], [1207.94, 281.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1172.4, 249.62], [1179.64, 256.05], [1189.85, 244.65], [1188.59, 243.53], [1192.31, 239.38], [1187.99, 235.53], [1187.55, 236.01], [1185.61, 234.29], [1183.43, 236.72], [1183.02, 236.35], [1180.25, 239.45], [1180.94, 240.08], [1178.88, 242.38], [1178.27, 241.85], [1174.48, 246.08], [1175.08, 246.62], [1172.4, 249.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1125.13, 206.83], [1136.35, 195.27], [1145.2, 203.79], [1133.98, 215.35], [1125.13, 206.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1199.94, 274.36], [1207.46, 281.15], [1221.03, 266.25], [1213.51, 259.45], [1199.94, 274.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1162.26, 240.17], [1170.65, 247.73], [1183.73, 233.3], [1175.34, 225.75], [1162.26, 240.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1190.52, 265.88], [1194.36, 269.37], [1192.78, 271.1], [1193.65, 271.9], [1194.98, 273.1], [1195.82, 273.87], [1210.26, 258.14], [1209.26, 257.23], [1210.51, 255.87], [1205.62, 251.42], [1204.37, 252.79], [1203.37, 251.88], [1190.52, 265.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1154.49, 233.4], [1157.02, 235.74], [1156.68, 236.12], [1160.82, 239.95], [1163.96, 236.58], [1164.14, 236.74], [1169.05, 231.47], [1168.87, 231.29], [1173.04, 226.81], [1166.36, 220.64], [1160.96, 226.44], [1160.4, 225.91], [1156.53, 230.08], [1157.1, 230.59], [1154.49, 233.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1180.73, 257.53], [1183.98, 260.44], [1186.37, 262.58], [1187.85, 263.89], [1198.73, 251.79], [1196.24, 249.58], [1197.68, 247.99], [1193.79, 244.51], [1192.35, 246.1], [1191.61, 245.44], [1180.73, 257.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1144.09, 224.44], [1157.32, 210.1], [1165.28, 217.4], [1152.05, 231.74], [1151.84, 231.54], [1150.4, 233.09], [1147.36, 230.31], [1148.79, 228.75], [1144.09, 224.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1483.28, -2441.45], [-1447.57, -2442.53], [-1447.19, -2430.58], [-1387.99, -2432.99], [-1384.95, -2391.61], [-1480.94, -2388.27], [-1483.28, -2441.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1281.34, -2583.07], [-1262.79, -2583.89], [-1261.09, -2583.05], [-1261.83, -2581.56], [-1252.35, -2576.91], [-1245.5, -2590.76], [-1243.51, -2589.79], [-1226.06, -2625.09], [-1227.93, -2626.01], [-1224.02, -2633.92], [-1224.45, -2634.13], [-1223.18, -2636.72], [-1234.88, -2642.47], [-1258.89, -2640.92], [-1260.34, -2637.99], [-1266.35, -2640.94], [-1277.55, -2618.3], [-1278.94, -2618.99], [-1279.8, -2617.26], [-1282.81, -2617.09], [-1281.34, -2583.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1153.03, -2595.83], [-1141.09, -2596.35], [-1141.75, -2611.49], [-1143.49, -2611.42], [-1143.53, -2612.38], [-1147.02, -2612.23], [-1146.98, -2611.26], [-1153.68, -2610.97], [-1153.03, -2595.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1328.43, -2420.49], [-1330.21, -2417.36], [-1328.55, -2416.43], [-1331.84, -2410.63], [-1322.72, -2405.5], [-1325.35, -2400.88], [-1316.63, -2395.97], [-1308.94, -2409.53], [-1328.43, -2420.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1634.48, -2038.28], [-1624.58, -2055.32], [-1607.11, -2045.25], [-1617.0, -2028.21], [-1634.48, -2038.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1554.52, -2038.72], [-1545.41, -2033.77], [-1535.61, -2051.66], [-1544.72, -2056.61], [-1554.52, -2038.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1621.47, -2060.59], [-1612.14, -2078.02], [-1595.34, -2069.1], [-1604.67, -2051.67], [-1621.47, -2060.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1593.04, -1974.45], [-1589.12, -1981.54], [-1591.8, -1983.0], [-1586.99, -1991.7], [-1584.06, -1990.09], [-1585.7, -1987.15], [-1562.05, -1974.16], [-1560.17, -1968.08], [-1563.13, -1962.73], [-1568.82, -1961.14], [-1593.04, -1974.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1576.01, -2004.59], [-1575.55, -2005.43], [-1568.66, -2018.24], [-1553.94, -2010.39], [-1556.41, -2005.8], [-1539.7, -1996.88], [-1544.58, -1987.8], [-1546.43, -1988.79], [-1576.01, -2004.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1548.59, -1910.28], [-1543.11, -1907.29], [-1532.59, -1901.55], [-1516.84, -1930.2], [-1523.16, -1933.65], [-1515.99, -1946.69], [-1514.72, -1946.01], [-1509.66, -1955.2], [-1500.79, -1950.35], [-1494.32, -1962.12], [-1503.06, -1966.89], [-1506.11, -1961.34], [-1511.87, -1964.48], [-1517.18, -1967.38], [-1548.59, -1910.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2168.53, 881.48], [2173.98, 876.44], [2183.41, 886.58], [2177.97, 891.61], [2168.53, 881.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2072.93, 792.1], [2081.69, 782.19], [2088.8, 788.43], [2080.05, 798.35], [2072.93, 792.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2030.97, 736.48], [2032.49, 734.64], [2027.97, 730.89], [2023.71, 736.03], [2020.88, 733.69], [2013.93, 742.07], [2023.6, 750.08], [2033.29, 738.39], [2030.97, 736.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2043.05, 768.23], [2051.98, 758.49], [2057.69, 763.69], [2048.76, 773.43], [2043.05, 768.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2005.47, 733.5], [2010.35, 728.4], [2017.86, 735.53], [2012.97, 740.64], [2005.47, 733.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2034.9, 760.31], [2043.83, 751.07], [2050.19, 757.19], [2041.26, 766.42], [2034.9, 760.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2082.54, 803.42], [2093.15, 792.22], [2100.56, 799.19], [2089.93, 810.4], [2082.54, 803.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2026.92, 751.74], [2032.88, 745.25], [2039.94, 751.69], [2033.97, 758.18], [2026.92, 751.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2103.2, 819.38], [2110.24, 812.49], [2112.64, 814.95], [2115.55, 812.11], [2118.17, 814.77], [2108.22, 824.49], [2103.2, 819.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2155.08, 867.5], [2165.8, 856.27], [2173.39, 863.44], [2168.01, 869.1], [2171.37, 872.28], [2166.04, 877.88], [2155.08, 867.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2214.82, 950.31], [2225.31, 940.01], [2231.68, 946.46], [2219.15, 958.73], [2215.2, 954.73], [2217.23, 952.74], [2214.82, 950.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-845.26, -1039.52], [-833.96, -1032.77], [-830.66, -1038.03], [-824.85, -1034.22], [-789.99, -1086.78], [-796.76, -1091.74], [-795.35, -1093.37], [-798.44, -1095.01], [-798.21, -1095.94], [-805.31, -1102.87], [-845.26, -1039.52]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-762.21, -1224.96], [-760.4, -1226.59], [-761.75, -1227.75], [-767.1, -1232.34], [-769.09, -1230.69], [-771.33, -1231.81], [-774.99, -1226.13], [-777.12, -1227.49], [-783.54, -1231.31], [-811.65, -1185.86], [-815.99, -1189.75], [-836.57, -1208.16], [-816.3, -1223.15], [-828.83, -1238.92], [-830.66, -1237.95], [-832.15, -1239.23], [-837.94, -1233.11], [-841.34, -1235.78], [-849.08, -1227.89], [-847.28, -1225.43], [-854.44, -1220.47], [-852.1, -1217.49], [-857.38, -1211.93], [-860.09, -1213.7], [-864.32, -1208.69], [-862.01, -1206.9], [-863.16, -1205.02], [-859.23, -1202.09], [-861.3, -1200.7], [-855.0, -1193.48], [-852.54, -1195.66], [-824.34, -1170.16], [-825.08, -1168.03], [-818.4, -1162.0], [-820.19, -1159.44], [-808.73, -1153.15], [-767.85, -1217.92], [-762.21, -1224.96]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-2406.98, -743.49], [-2398.91, -737.26], [-2393.3, -732.93], [-2403.6, -719.68], [-2402.19, -718.57], [-2404.61, -715.46], [-2407.94, -718.02], [-2407.64, -718.41], [-2415.92, -724.77], [-2416.88, -725.18], [-2419.82, -727.58], [-2417.8, -730.03], [-2417.18, -730.79], [-2417.29, -732.78], [-2417.81, -733.17], [-2410.72, -742.29], [-2408.97, -740.94], [-2406.98, -743.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1417.56, -594.09], [-1423.05, -593.92], [-1428.26, -604.56], [-1429.7, -607.65], [-1425.86, -608.84], [-1424.48, -605.85], [-1421.3, -598.97], [-1402.8, -600.01], [-1402.87, -598.73], [-1417.71, -597.81], [-1417.56, -594.09]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2947.88, -61.86], [-2947.69, -61.55], [-2947.63, -61.19], [-2947.72, -60.84], [-2947.93, -60.54], [-2948.24, -60.36], [-2948.6, -60.3], [-2948.95, -60.38], [-2949.24, -60.6], [-2949.43, -60.9], [-2949.49, -61.27], [-2949.4, -61.61], [-2949.19, -61.91], [-2948.89, -62.09], [-2948.53, -62.15], [-2948.18, -62.07], [-2947.88, -61.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2947.78, -59.59], [-2947.59, -59.29], [-2947.53, -58.93], [-2947.62, -58.59], [-2947.83, -58.29], [-2948.14, -58.1], [-2948.49, -58.04], [-2948.84, -58.13], [-2949.14, -58.34], [-2949.33, -58.65], [-2949.39, -59.0], [-2949.3, -59.35], [-2949.09, -59.64], [-2948.78, -59.83], [-2948.42, -59.89], [-2948.07, -59.81], [-2947.78, -59.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2947.09, -72.57], [-2946.32, -71.86], [-2945.9, -70.91], [-2945.87, -69.87], [-2946.24, -68.9], [-2946.95, -68.14], [-2947.91, -67.71], [-2948.95, -67.68], [-2949.92, -68.06], [-2950.68, -68.77], [-2951.1, -69.71], [-2951.14, -70.76], [-2950.77, -71.72], [-2950.05, -72.48], [-2949.1, -72.9], [-2948.06, -72.93], [-2947.09, -72.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2939.49, -72.94], [-2938.85, -71.99], [-2938.61, -70.87], [-2938.83, -69.75], [-2939.46, -68.8], [-2940.42, -68.16], [-2941.53, -67.93], [-2942.66, -68.15], [-2943.61, -68.78], [-2944.26, -69.72], [-2944.49, -70.85], [-2944.27, -71.96], [-2943.63, -72.92], [-2942.69, -73.56], [-2941.56, -73.79], [-2940.44, -73.56], [-2939.49, -72.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2947.94, -64.1], [-2947.75, -63.79], [-2947.69, -63.44], [-2947.78, -63.08], [-2947.99, -62.79], [-2948.31, -62.6], [-2948.66, -62.55], [-2949.02, -62.62], [-2949.31, -62.84], [-2949.49, -63.14], [-2949.55, -63.51], [-2949.47, -63.86], [-2949.25, -64.15], [-2948.95, -64.34], [-2948.59, -64.39], [-2948.24, -64.31], [-2947.94, -64.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2950.29, -60.4], [-2950.09, -60.08], [-2950.04, -59.73], [-2950.12, -59.38], [-2950.33, -59.09], [-2950.64, -58.9], [-2951.0, -58.84], [-2951.35, -58.92], [-2951.64, -59.14], [-2951.83, -59.44], [-2951.89, -59.8], [-2951.81, -60.15], [-2951.59, -60.44], [-2951.29, -60.64], [-2950.93, -60.69], [-2950.58, -60.6], [-2950.29, -60.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2950.38, -62.55], [-2950.19, -62.25], [-2950.13, -61.88], [-2950.22, -61.53], [-2950.43, -61.24], [-2950.74, -61.05], [-2951.1, -61.0], [-2951.45, -61.08], [-2951.74, -61.29], [-2951.94, -61.6], [-2951.99, -61.95], [-2951.91, -62.31], [-2951.7, -62.6], [-2951.38, -62.79], [-2951.03, -62.84], [-2950.67, -62.77], [-2950.38, -62.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2950.17, -66.53], [-2949.92, -66.13], [-2949.85, -65.68], [-2949.95, -65.22], [-2950.22, -64.85], [-2950.61, -64.6], [-2951.07, -64.52], [-2951.53, -64.63], [-2951.91, -64.9], [-2952.15, -65.29], [-2952.23, -65.74], [-2952.12, -66.19], [-2951.85, -66.58], [-2951.46, -66.82], [-2951.0, -66.89], [-2950.55, -66.79], [-2950.17, -66.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2932.41, -50.59], [-2923.4, -50.8], [-2923.6, -59.51], [-2932.62, -59.3], [-2932.41, -50.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2583.42, -262.89], [-2574.88, -263.31], [-2566.7, -263.72], [-2566.78, -266.97], [-2574.97, -266.65], [-2583.56, -266.31], [-2583.42, -262.89]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-2202.01, -504.19], [-2202.97, -537.64], [-2209.56, -537.46], [-2231.71, -536.88], [-2231.42, -525.68], [-2230.46, -525.71], [-2230.35, -521.76], [-2228.04, -521.82], [-2227.4, -497.7], [-2224.39, -497.79], [-2224.34, -495.79], [-2217.27, -495.97], [-2217.33, -497.98], [-2210.99, -498.14], [-2211.05, -500.19], [-2204.11, -502.26], [-2204.09, -504.13], [-2202.01, -504.19]], "holes": []}, "height": 28.0}, {"shape": {"outer": [[-2093.14, -374.57], [-2093.29, -380.81], [-2088.25, -380.93], [-2088.31, -383.3], [-2081.42, -383.46], [-2081.37, -381.17], [-2083.39, -381.12], [-2083.23, -374.82], [-2093.14, -374.57]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1640.58, -170.16], [-1641.49, -190.82], [-1641.68, -195.39], [-1644.56, -195.27], [-1644.88, -202.23], [-1644.91, -203.04], [-1648.29, -202.89], [-1648.31, -203.55], [-1667.92, -202.71], [-1667.55, -194.13], [-1680.37, -193.57], [-1680.07, -186.64], [-1705.93, -185.53], [-1705.83, -183.05], [-1705.12, -166.35], [-1689.05, -167.03], [-1689.08, -167.81], [-1684.69, -168.0], [-1666.2, -168.79], [-1666.16, -167.78], [-1647.12, -168.62], [-1647.19, -169.87], [-1640.58, -170.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1427.01, -205.82], [-1429.16, -205.71], [-1430.44, -205.65], [-1430.38, -204.34], [-1437.29, -204.01], [-1442.1, -203.79], [-1444.55, -203.66], [-1444.61, -204.91], [-1446.29, -204.83], [-1447.36, -204.78], [-1448.48, -204.73], [-1449.16, -218.92], [-1447.97, -218.98], [-1438.07, -219.47], [-1429.84, -219.84], [-1386.18, -221.94], [-1385.91, -216.32], [-1385.54, -208.64], [-1384.84, -194.02], [-1382.22, -194.15], [-1381.63, -181.78], [-1382.94, -181.72], [-1384.33, -181.64], [-1383.78, -170.19], [-1387.42, -170.02], [-1387.29, -167.45], [-1414.6, -166.15], [-1414.72, -168.64], [-1417.7, -168.49], [-1425.15, -168.15], [-1425.22, -169.76], [-1426.16, -169.71], [-1426.3, -172.68], [-1426.78, -182.67], [-1426.85, -184.25], [-1426.95, -186.28], [-1426.07, -186.32], [-1427.01, -205.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2013.74, -409.51], [-2014.02, -417.81], [-1999.72, -418.3], [-1999.44, -410.0], [-2013.74, -409.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1970.96, -128.44], [-1967.77, -128.56], [-1968.05, -134.69], [-1971.2, -134.59], [-1970.96, -128.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1947.83, -95.4], [-1944.45, -95.54], [-1945.12, -111.85], [-1948.5, -111.71], [-1947.83, -95.4]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-1898.72, -646.09], [-1876.73, -646.93], [-1876.81, -649.1], [-1871.98, -649.28], [-1871.32, -631.99], [-1877.33, -631.76], [-1879.75, -634.3], [-1884.78, -634.15], [-1884.85, -636.82], [-1894.06, -636.55], [-1898.58, -637.97], [-1898.72, -646.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1914.44, -671.96], [-1905.81, -672.15], [-1905.96, -679.14], [-1904.79, -679.17], [-1904.99, -688.49], [-1909.42, -688.4], [-1909.47, -690.7], [-1914.84, -690.59], [-1914.72, -684.69], [-1915.86, -684.65], [-1915.68, -676.4], [-1914.54, -676.43], [-1914.44, -671.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2011.62, -442.56], [-2000.3, -448.71], [-2000.88, -480.27], [-2001.61, -480.26], [-2001.64, -481.82], [-2001.96, -481.82], [-2002.0, -483.62], [-2003.17, -483.58], [-2003.18, -484.21], [-2014.96, -483.94], [-2014.89, -481.28], [-2016.78, -481.24], [-2016.62, -474.7], [-2014.76, -474.74], [-2014.17, -450.56], [-2016.01, -450.52], [-2015.93, -447.06], [-2014.1, -447.11], [-2011.62, -442.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1884.78, -682.43], [-1884.46, -672.86], [-1872.33, -673.27], [-1872.66, -682.85], [-1884.78, -682.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1780.07, -486.06], [-1780.38, -493.35], [-1771.89, -493.72], [-1771.58, -486.42], [-1773.46, -486.35], [-1773.31, -482.76], [-1776.73, -482.62], [-1776.89, -486.19], [-1780.07, -486.06]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2718.89, -276.27], [-2708.03, -276.63], [-2708.34, -285.91], [-2709.94, -287.33], [-2710.06, -291.04], [-2719.36, -290.74], [-2719.26, -287.39], [-2722.11, -287.29], [-2721.86, -279.33], [-2718.99, -279.41], [-2718.89, -276.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2809.57, -227.67], [-2809.92, -237.81], [-2788.3, -238.56], [-2787.96, -228.41], [-2798.66, -228.05], [-2798.58, -225.39], [-2800.6, -225.32], [-2800.44, -220.73], [-2803.94, -220.6], [-2804.1, -225.21], [-2805.94, -225.15], [-2806.03, -227.79], [-2809.57, -227.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3001.4, -191.68], [-3011.28, -193.19], [-3008.82, -209.18], [-2998.94, -207.69], [-3001.4, -191.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2978.92, -187.71], [-2987.97, -189.03], [-2985.22, -207.62], [-2976.17, -206.29], [-2978.92, -187.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2989.94, -190.33], [-2999.2, -191.84], [-2996.45, -208.7], [-2987.18, -207.2], [-2989.94, -190.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2984.31, -150.36], [-2993.14, -151.72], [-2990.77, -167.02], [-2981.94, -165.68], [-2984.31, -150.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2683.37, -259.48], [-2683.68, -268.77], [-2667.42, -269.31], [-2667.12, -260.01], [-2683.37, -259.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2763.36, -258.08], [-2763.7, -267.89], [-2752.53, -268.27], [-2752.2, -258.94], [-2754.43, -258.86], [-2754.42, -258.39], [-2763.36, -258.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2684.03, -287.63], [-2684.39, -297.42], [-2668.61, -298.0], [-2668.52, -295.32], [-2666.28, -295.4], [-2666.02, -288.31], [-2684.03, -287.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2767.47, -290.33], [-2767.08, -277.65], [-2765.66, -277.69], [-2765.6, -276.0], [-2755.67, -276.31], [-2755.73, -278.0], [-2750.92, -278.14], [-2751.31, -290.83], [-2767.47, -290.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2764.76, -239.32], [-2765.18, -250.25], [-2752.04, -250.71], [-2752.02, -250.29], [-2749.85, -250.37], [-2749.42, -240.36], [-2751.52, -240.26], [-2751.5, -239.82], [-2764.76, -239.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2214.23, -800.98], [-2215.42, -831.92], [-2213.23, -832.01], [-2213.68, -843.96], [-2203.31, -844.36], [-2202.55, -824.52], [-2207.72, -824.33], [-2207.16, -809.87], [-2198.8, -810.19], [-2198.47, -801.59], [-2214.23, -800.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2154.85, -780.52], [-2166.07, -780.34], [-2166.06, -779.8], [-2177.2, -779.62], [-2177.19, -779.12], [-2194.92, -778.85], [-2195.1, -790.22], [-2177.66, -790.5], [-2177.68, -791.09], [-2167.12, -791.26], [-2167.13, -791.79], [-2155.03, -791.99], [-2154.85, -780.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2188.06, -731.46], [-2188.18, -735.85], [-2191.65, -735.76], [-2191.67, -736.92], [-2195.19, -736.83], [-2196.04, -769.32], [-2188.13, -769.53], [-2188.08, -768.07], [-2180.34, -768.27], [-2179.78, -746.94], [-2162.91, -747.37], [-2162.71, -739.91], [-2161.31, -739.95], [-2161.1, -732.17], [-2188.06, -731.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2166.84, -845.99], [-2166.78, -844.15], [-2166.04, -822.64], [-2165.95, -820.14], [-2140.58, -821.01], [-2141.49, -846.86], [-2166.84, -845.99]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2233.38, -744.2], [-2233.75, -759.44], [-2200.7, -760.24], [-2200.33, -744.99], [-2233.38, -744.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2187.89, -794.52], [-2176.46, -794.75], [-2176.81, -812.06], [-2188.24, -811.83], [-2187.89, -794.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2319.14, -786.23], [-2318.82, -776.22], [-2318.74, -773.77], [-2309.94, -774.04], [-2283.39, -774.89], [-2283.78, -787.33], [-2319.14, -786.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2094.03, -813.75], [-2093.69, -803.24], [-2076.69, -803.79], [-2077.03, -814.31], [-2094.03, -813.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2235.29, -780.23], [-2235.63, -795.53], [-2201.34, -796.29], [-2201.0, -781.0], [-2235.29, -780.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2118.36, -783.61], [-2118.9, -799.2], [-2094.92, -800.04], [-2086.39, -789.44], [-2090.7, -785.66], [-2095.42, -784.42], [-2118.36, -783.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2143.42, -731.63], [-2150.75, -731.44], [-2150.77, -732.53], [-2157.34, -732.37], [-2158.17, -766.43], [-2144.28, -766.77], [-2143.42, -731.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2254.51, -814.28], [-2255.35, -835.98], [-2251.18, -841.16], [-2216.45, -842.43], [-2215.76, -823.36], [-2220.28, -823.2], [-2234.45, -822.68], [-2235.15, -821.71], [-2235.84, -820.73], [-2235.62, -814.97], [-2254.51, -814.28]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-2237.19, -751.76], [-2243.49, -751.63], [-2243.47, -750.61], [-2251.05, -750.46], [-2251.51, -774.92], [-2244.07, -775.06], [-2244.05, -773.69], [-2237.6, -773.81], [-2237.19, -751.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2152.33, -782.38], [-2140.7, -782.72], [-2141.74, -819.81], [-2165.8, -819.13], [-2165.62, -812.78], [-2155.07, -813.07], [-2155.12, -815.11], [-2153.25, -815.17], [-2152.33, -782.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[423.93, 1015.22], [406.99, 999.95], [416.59, 989.37], [427.09, 998.83], [430.81, 994.74], [420.39, 985.34], [430.0, 974.75], [446.87, 989.96], [423.93, 1015.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[438.63, 1028.41], [428.19, 1019.03], [436.24, 1010.14], [443.46, 1002.17], [453.9, 1011.54], [438.63, 1028.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[452.92, 1041.3], [442.88, 1032.17], [458.2, 1015.47], [468.23, 1024.6], [460.78, 1032.73], [452.92, 1041.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[470.1, 1022.87], [477.79, 1014.48], [485.44, 1006.14], [475.21, 996.82], [459.87, 1013.55], [470.1, 1022.87]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[486.33, 1004.7], [494.11, 996.21], [501.06, 988.63], [501.42, 988.25], [491.54, 979.26], [476.45, 995.71], [486.33, 1004.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[502.63, 1020.0], [518.24, 1002.98], [517.23, 1002.07], [508.05, 993.7], [507.49, 994.32], [505.09, 996.93], [506.76, 998.45], [502.12, 1003.51], [497.77, 1008.27], [495.76, 1006.43], [492.1, 1010.42], [502.63, 1020.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[486.1, 1038.43], [501.79, 1021.31], [491.15, 1011.63], [488.05, 1015.02], [489.93, 1016.73], [485.54, 1021.53], [481.29, 1026.16], [479.24, 1024.28], [475.29, 1028.59], [486.1, 1038.43]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[469.45, 1056.29], [484.91, 1039.43], [474.69, 1030.13], [471.82, 1033.25], [473.49, 1034.78], [468.73, 1039.98], [464.57, 1044.52], [462.72, 1042.83], [459.05, 1046.83], [469.45, 1056.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[518.06, 1028.67], [533.85, 1012.0], [523.1, 1001.89], [520.23, 1004.92], [507.31, 1018.57], [518.06, 1028.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[471.9, 991.97], [487.08, 975.55], [476.63, 965.96], [461.45, 982.38], [471.9, 991.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2603.55, 181.63], [-2602.93, 186.35], [-2623.72, 188.71], [-2624.18, 183.99], [-2603.55, 181.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2632.24, 154.8], [-2627.66, 154.27], [-2627.23, 157.95], [-2631.72, 158.64], [-2632.24, 154.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-385.29, -43.15], [-359.64, -71.74], [-333.31, -48.31], [-354.37, -24.89], [-357.1, -21.84], [-359.03, -19.7], [-385.29, -43.15]], "holes": []}, "height": 42.0}, {"shape": {"outer": [[-383.46, -92.96], [-378.49, -88.55], [-403.56, -60.63], [-408.51, -65.1], [-383.46, -92.96]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-408.51, -65.1], [-419.15, -74.58], [-419.53, -74.15], [-434.3, -87.34], [-408.86, -115.63], [-383.46, -92.96], [-408.51, -65.1]], "holes": []}, "height": 35.0}, {"shape": {"outer": [[-378.49, -88.55], [-359.64, -71.74], [-385.29, -43.15], [-404.16, -59.95], [-403.56, -60.63], [-378.49, -88.55]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-513.78, 211.43], [-505.83, 202.75], [-490.88, 216.33], [-498.82, 225.02], [-513.78, 211.43]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-475.1, 257.77], [-472.49, 254.86], [-472.92, 254.48], [-466.27, 247.08], [-465.56, 247.72], [-464.44, 246.46], [-461.92, 248.71], [-462.53, 249.39], [-459.4, 252.18], [-462.33, 255.44], [-461.82, 255.89], [-466.09, 260.65], [-466.6, 260.19], [-469.17, 263.06], [-470.2, 262.14], [-471.52, 263.61], [-475.35, 260.2], [-474.03, 258.73], [-475.1, 257.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-461.37, 158.19], [-439.5, 177.73], [-441.61, 180.07], [-421.86, 197.73], [-395.09, 168.01], [-415.2, 150.03], [-416.74, 151.74], [-438.24, 132.51], [-461.37, 158.19]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-462.83, 272.06], [-461.17, 270.27], [-460.8, 270.61], [-450.92, 259.93], [-457.12, 254.23], [-466.92, 264.83], [-465.19, 266.41], [-466.92, 268.3], [-462.83, 272.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-450.07, 262.26], [-443.53, 267.46], [-442.0, 267.42], [-439.97, 269.65], [-439.7, 271.6], [-439.67, 272.63], [-445.15, 279.48], [-449.75, 275.42], [-451.25, 276.66], [-458.08, 270.81], [-450.07, 262.26]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-470.64, 305.74], [-462.72, 297.01], [-474.07, 286.78], [-476.55, 289.52], [-478.33, 287.9], [-483.78, 293.91], [-470.64, 305.74]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-477.36, 309.76], [-478.35, 308.91], [-477.67, 308.14], [-486.89, 300.07], [-487.57, 300.85], [-489.69, 299.0], [-492.65, 302.36], [-495.75, 299.65], [-500.18, 304.69], [-496.05, 308.3], [-497.86, 310.37], [-493.95, 313.78], [-495.33, 315.34], [-488.08, 321.68], [-483.77, 316.78], [-481.88, 318.43], [-479.17, 315.34], [-480.92, 313.81], [-477.36, 309.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1675.2, -851.09], [-1666.53, -851.42], [-1667.18, -868.4], [-1675.84, -868.06], [-1675.2, -851.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1688.08, -843.38], [-1678.02, -843.7], [-1678.79, -867.63], [-1688.85, -867.3], [-1688.55, -858.05], [-1688.08, -843.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1725.48, -817.92], [-1726.5, -842.08], [-1725.75, -842.11], [-1726.37, -844.2], [-1720.66, -845.27], [-1715.78, -846.16], [-1714.9, -842.56], [-1701.16, -843.15], [-1690.86, -843.59], [-1689.83, -819.43], [-1725.48, -817.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1701.16, -843.15], [-1701.63, -857.59], [-1691.22, -857.99], [-1690.86, -843.59], [-1701.16, -843.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1521.29, 1555.01], [1530.78, 1539.02], [1551.73, 1551.37], [1542.11, 1567.57], [1536.5, 1564.26], [1531.11, 1573.34], [1523.53, 1568.87], [1527.69, 1561.87], [1522.53, 1558.83], [1523.89, 1556.55], [1521.29, 1555.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1401.21, 1574.2], [1428.66, 1598.85], [1424.98, 1602.91], [1434.0, 1611.01], [1436.32, 1608.44], [1447.42, 1618.41], [1448.43, 1617.29], [1458.57, 1626.41], [1472.79, 1610.68], [1483.43, 1598.92], [1431.32, 1552.13], [1412.93, 1572.46], [1407.33, 1567.43], [1401.21, 1574.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1387.9, 1563.05], [1394.14, 1568.68], [1419.01, 1541.26], [1412.77, 1535.64], [1387.9, 1563.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1346.1, 1553.61], [1352.66, 1559.54], [1338.01, 1575.63], [1331.44, 1569.69], [1346.1, 1553.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1522.44, 1476.49], [1538.47, 1490.3], [1544.67, 1495.63], [1532.96, 1508.39], [1536.62, 1511.55], [1524.72, 1524.53], [1513.92, 1486.1], [1522.44, 1476.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1287.91, 1522.62], [1305.3, 1538.45], [1310.69, 1532.58], [1327.62, 1547.99], [1375.31, 1495.99], [1346.83, 1470.06], [1345.16, 1471.87], [1339.31, 1466.56], [1287.91, 1522.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1352.81, 1453.98], [1439.96, 1534.07], [1451.31, 1522.95], [1436.38, 1508.49], [1472.83, 1466.08], [1471.9, 1455.31], [1467.5, 1451.35], [1465.75, 1435.07], [1463.05, 1419.28], [1449.39, 1407.31], [1425.78, 1386.63], [1418.86, 1380.57], [1404.58, 1396.43], [1389.24, 1413.48], [1369.4, 1435.53], [1352.81, 1453.98]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1506.83, 1356.82], [1518.44, 1353.11], [1548.22, 1380.31], [1562.19, 1365.21], [1581.1, 1381.91], [1577.02, 1386.12], [1583.1, 1391.36], [1572.86, 1402.46], [1583.67, 1411.66], [1552.39, 1446.2], [1513.11, 1409.97], [1506.83, 1356.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1205.69, 968.8], [1245.5, 924.99], [1267.06, 944.44], [1263.43, 948.43], [1313.67, 993.75], [1323.51, 982.92], [1346.78, 1003.91], [1336.95, 1014.73], [1372.33, 1046.66], [1348.28, 1073.13], [1317.67, 1045.52], [1305.53, 1058.88], [1288.18, 1043.23], [1214.65, 976.88], [1205.69, 968.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1605.38, 1393.2], [1592.4, 1407.22], [1621.2, 1433.73], [1619.35, 1435.72], [1620.57, 1436.85], [1618.77, 1438.8], [1630.23, 1449.35], [1631.54, 1447.94], [1639.51, 1455.26], [1641.8, 1452.78], [1645.99, 1456.64], [1653.53, 1448.52], [1659.02, 1442.58], [1620.44, 1407.06], [1605.38, 1393.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1602.71, 1390.74], [1620.05, 1372.04], [1640.61, 1390.95], [1639.47, 1392.18], [1640.74, 1393.34], [1637.93, 1396.38], [1636.34, 1394.91], [1634.05, 1397.39], [1635.29, 1398.53], [1632.59, 1401.45], [1628.84, 1398.0], [1620.44, 1407.06], [1605.38, 1393.2], [1602.71, 1390.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1295.79, 1215.19], [1412.88, 1320.42], [1413.81, 1318.56], [1433.54, 1297.3], [1391.52, 1258.58], [1405.86, 1243.13], [1412.88, 1249.6], [1435.7, 1225.0], [1431.43, 1221.05], [1435.43, 1216.31], [1429.25, 1210.61], [1433.96, 1205.54], [1421.27, 1193.83], [1433.62, 1180.52], [1419.37, 1168.1], [1417.42, 1160.22], [1400.35, 1144.71], [1413.4, 1130.36], [1390.69, 1110.09], [1310.84, 1198.93], [1301.32, 1209.59], [1295.79, 1215.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1280.27, 1191.13], [1300.16, 1208.57], [1301.32, 1209.59], [1310.84, 1198.93], [1309.52, 1197.75], [1294.46, 1184.38], [1290.01, 1180.36], [1280.27, 1191.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1256.16, 1167.53], [1280.27, 1191.13], [1290.01, 1180.36], [1265.52, 1157.74], [1256.16, 1167.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1258.5, 1076.12], [1280.17, 1097.19], [1248.6, 1131.85], [1233.14, 1116.04], [1226.98, 1110.71], [1258.5, 1076.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1305.53, 1058.88], [1358.0, 1106.91], [1370.26, 1092.6], [1348.28, 1073.13], [1317.67, 1045.52], [1305.53, 1058.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1206.13, 988.84], [1278.43, 1054.23], [1258.5, 1076.12], [1226.98, 1110.71], [1214.44, 1124.48], [1211.66, 1127.54], [1140.76, 1062.16], [1201.53, 993.88], [1206.13, 988.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1226.98, 1110.71], [1214.44, 1124.48], [1219.84, 1129.62], [1217.13, 1132.57], [1256.16, 1167.53], [1265.52, 1157.74], [1268.23, 1154.53], [1246.32, 1133.92], [1230.06, 1119.0], [1233.14, 1116.04], [1226.98, 1110.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-343.42, 249.09], [-341.24, 246.75], [-342.41, 245.67], [-341.9, 245.12], [-344.69, 242.56], [-337.57, 234.91], [-337.39, 235.08], [-332.27, 229.57], [-326.05, 235.31], [-331.15, 240.79], [-330.07, 241.78], [-337.98, 250.28], [-338.47, 249.83], [-340.39, 251.89], [-343.42, 249.09]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-230.99, 385.6], [-229.87, 384.44], [-233.91, 380.58], [-221.23, 367.44], [-209.34, 378.82], [-223.14, 393.12], [-230.99, 385.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-180.72, 390.15], [-168.8, 400.99], [-181.98, 415.38], [-178.58, 418.47], [-183.03, 423.34], [-182.81, 423.53], [-173.18, 432.28], [-171.31, 430.24], [-171.83, 429.75], [-165.71, 423.07], [-164.71, 423.98], [-141.56, 398.69], [-167.2, 375.39], [-172.52, 381.2], [-180.72, 390.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1309.88, 1280.0], [1353.6, 1318.6], [1322.8, 1352.21], [1280.68, 1314.26], [1309.88, 1280.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1632.96, 1247.65], [1617.77, 1263.99], [1638.66, 1283.27], [1653.85, 1266.91], [1632.96, 1247.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1581.94, 1200.17], [1600.65, 1217.13], [1585.78, 1233.41], [1567.08, 1216.45], [1581.94, 1200.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1381.61, 1365.41], [1392.91, 1376.54], [1400.95, 1367.36], [1389.28, 1357.02], [1381.61, 1365.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1610.2, 1242.22], [1618.82, 1250.04], [1627.03, 1241.06], [1618.41, 1233.23], [1610.2, 1242.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1565.44, 1183.99], [1533.84, 1156.25], [1519.44, 1172.54], [1536.7, 1187.68], [1551.04, 1200.26], [1555.46, 1195.27], [1565.44, 1183.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1533.84, 1156.25], [1502.0, 1128.29], [1487.6, 1144.58], [1510.38, 1164.58], [1519.44, 1172.54], [1533.84, 1156.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1600.65, 1217.13], [1618.41, 1233.23], [1610.2, 1242.22], [1603.53, 1249.51], [1585.78, 1233.41], [1600.65, 1217.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1502.17, 1178.47], [1487.73, 1194.81], [1526.52, 1228.85], [1540.96, 1212.52], [1526.2, 1199.55], [1502.17, 1178.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1499.88, 1176.44], [1510.38, 1164.58], [1519.44, 1172.54], [1536.7, 1187.68], [1526.2, 1199.55], [1502.17, 1178.47], [1499.88, 1176.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1360.85, 1350.08], [1370.27, 1339.77], [1389.28, 1357.02], [1381.61, 1365.41], [1367.89, 1352.96], [1366.14, 1354.88], [1360.85, 1350.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1576.38, 1265.85], [1582.32, 1271.26], [1583.51, 1269.97], [1592.75, 1278.41], [1600.34, 1270.17], [1587.3, 1258.27], [1582.89, 1258.36], [1576.38, 1265.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1201.53, 993.88], [1128.02, 929.03], [1108.48, 911.39], [1068.29, 913.79], [1065.99, 870.19], [1027.1, 912.82], [1029.32, 961.76], [1140.76, 1062.16], [1201.53, 993.88]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[1557.03, 1282.65], [1560.99, 1286.19], [1558.84, 1288.58], [1579.2, 1306.79], [1591.69, 1292.92], [1576.13, 1279.0], [1577.66, 1277.3], [1568.91, 1269.47], [1557.03, 1282.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1691.2, 1397.6], [1704.27, 1397.73], [1706.65, 1395.74], [1709.1, 1398.66], [1712.01, 1396.22], [1713.39, 1397.86], [1718.73, 1393.39], [1717.1, 1391.46], [1719.2, 1389.7], [1720.71, 1391.48], [1726.16, 1386.91], [1724.52, 1384.97], [1726.58, 1383.23], [1728.06, 1385.0], [1734.85, 1379.32], [1733.53, 1377.74], [1737.17, 1374.69], [1738.41, 1376.15], [1745.69, 1370.06], [1744.23, 1368.32], [1748.05, 1365.13], [1742.29, 1358.29], [1739.16, 1360.91], [1731.35, 1351.64], [1723.05, 1358.58], [1724.45, 1360.24], [1720.53, 1363.51], [1719.36, 1362.13], [1708.73, 1371.01], [1710.16, 1372.7], [1708.37, 1374.2], [1707.01, 1372.6], [1703.05, 1375.91], [1704.62, 1377.79], [1702.69, 1379.41], [1701.46, 1377.95], [1698.61, 1377.84], [1694.74, 1377.69], [1693.59, 1378.93], [1691.6, 1377.09], [1693.23, 1375.36], [1690.18, 1372.52], [1688.56, 1374.25], [1686.82, 1372.64], [1688.12, 1371.24], [1682.58, 1366.1], [1681.21, 1367.56], [1676.89, 1363.55], [1678.22, 1362.12], [1675.26, 1359.37], [1673.85, 1360.89], [1671.92, 1359.08], [1673.21, 1357.7], [1667.98, 1352.86], [1666.4, 1354.55], [1663.72, 1352.06], [1662.44, 1350.87], [1663.88, 1349.33], [1657.94, 1343.82], [1655.73, 1346.17], [1654.26, 1344.81], [1648.18, 1351.32], [1643.81, 1347.27], [1637.84, 1353.67], [1641.13, 1356.72], [1639.67, 1358.29], [1646.86, 1364.96], [1648.24, 1363.46], [1651.73, 1366.7], [1650.35, 1368.17], [1656.94, 1374.28], [1658.39, 1372.71], [1660.09, 1374.29], [1658.67, 1375.81], [1663.97, 1380.73], [1665.61, 1378.98], [1667.72, 1380.93], [1665.97, 1382.8], [1671.34, 1387.79], [1673.03, 1385.97], [1677.47, 1390.09], [1675.88, 1391.79], [1682.27, 1397.73], [1683.79, 1396.1], [1686.23, 1398.37], [1688.93, 1395.48], [1691.2, 1397.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-182.14, 443.68], [-186.35, 439.86], [-184.88, 438.24], [-186.18, 437.05], [-183.43, 434.05], [-186.51, 431.24], [-184.66, 429.21], [-186.49, 427.54], [-182.81, 423.53], [-173.18, 432.28], [-172.38, 433.01], [-182.14, 443.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-155.91, 473.95], [-133.75, 449.39], [-103.36, 476.6], [-125.52, 501.17], [-155.91, 473.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-166.85, 477.18], [-162.61, 472.58], [-163.51, 471.77], [-157.5, 465.26], [-156.71, 465.98], [-152.56, 461.47], [-153.35, 460.75], [-151.27, 458.48], [-150.62, 459.07], [-146.46, 454.56], [-147.12, 453.97], [-142.32, 448.76], [-141.73, 449.31], [-137.56, 444.78], [-138.16, 444.24], [-129.56, 434.91], [-129.79, 428.64], [-127.77, 428.64], [-127.79, 434.38], [-123.62, 438.19], [-124.55, 439.19], [-121.64, 441.85], [-122.14, 442.39], [-117.37, 446.74], [-116.88, 446.21], [-111.21, 451.38], [-112.39, 452.66], [-107.67, 456.97], [-107.2, 456.47], [-96.54, 466.21], [-85.46, 454.18], [-95.47, 445.03], [-95.06, 444.59], [-99.73, 440.32], [-100.14, 440.76], [-102.08, 439.0], [-101.37, 438.22], [-103.92, 435.88], [-103.48, 435.4], [-107.65, 431.58], [-108.1, 432.06], [-111.84, 428.65], [-110.91, 427.63], [-113.61, 425.16], [-113.29, 424.82], [-118.0, 420.51], [-118.32, 420.86], [-123.41, 416.21], [-122.1, 414.79], [-124.37, 412.72], [-124.73, 413.12], [-127.44, 410.65], [-128.88, 412.22], [-129.93, 411.27], [-133.34, 414.98], [-134.24, 414.16], [-136.17, 416.26], [-135.7, 416.69], [-137.81, 418.97], [-138.0, 418.8], [-142.15, 423.31], [-141.94, 423.49], [-146.17, 428.09], [-146.38, 427.9], [-150.62, 432.51], [-150.29, 432.81], [-158.66, 441.89], [-158.99, 441.59], [-163.3, 446.27], [-162.9, 446.64], [-175.83, 460.68], [-176.23, 460.31], [-180.27, 464.7], [-178.07, 466.71], [-177.85, 466.48], [-168.67, 474.87], [-168.99, 475.22], [-166.85, 477.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-112.26, 531.65], [-99.75, 517.98], [-106.7, 511.66], [-117.43, 523.39], [-117.2, 523.59], [-118.99, 525.54], [-112.26, 531.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-106.15, 539.55], [-94.6, 526.77], [-100.17, 521.78], [-104.19, 526.23], [-103.11, 527.19], [-109.8, 534.59], [-108.66, 535.61], [-109.51, 536.55], [-106.15, 539.55]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-103.48, 509.58], [-99.21, 504.69], [-96.83, 506.76], [-96.09, 505.9], [-86.64, 514.09], [-87.08, 514.59], [-84.77, 516.58], [-88.52, 520.88], [-89.12, 520.36], [-89.85, 521.2], [-89.17, 521.79], [-90.11, 522.86], [-92.85, 520.48], [-93.18, 520.87], [-99.97, 514.98], [-99.68, 514.65], [-102.04, 512.6], [-101.17, 511.59], [-103.48, 509.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-79.44, 516.27], [-75.6, 512.04], [-77.86, 510.02], [-74.73, 506.56], [-85.44, 496.92], [-85.78, 497.28], [-87.98, 495.31], [-92.26, 500.04], [-90.89, 501.29], [-92.66, 503.25], [-84.01, 511.04], [-84.56, 511.64], [-79.44, 516.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-63.58, 499.31], [-65.27, 497.77], [-65.03, 497.51], [-76.28, 487.21], [-76.68, 487.64], [-78.46, 486.02], [-83.15, 491.11], [-73.99, 499.49], [-73.68, 499.16], [-68.13, 504.24], [-63.58, 499.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-61.14, 416.83], [-60.42, 417.49], [-59.22, 416.2], [-56.72, 418.5], [-57.92, 419.79], [-55.61, 421.9], [-66.77, 433.95], [-67.95, 432.86], [-68.92, 433.92], [-72.81, 430.34], [-71.84, 429.29], [-72.29, 428.87], [-61.14, 416.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-79.6, 421.5], [-67.89, 408.94], [-61.42, 414.93], [-73.13, 427.49], [-73.4, 427.24], [-74.49, 428.41], [-77.62, 425.52], [-76.52, 424.34], [-79.6, 421.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-89.06, 416.34], [-75.56, 401.24], [-72.66, 403.82], [-72.0, 403.06], [-69.31, 405.44], [-69.99, 406.18], [-67.95, 407.99], [-79.97, 421.44], [-82.85, 418.89], [-84.32, 420.54], [-89.06, 416.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-90.89, 416.13], [-96.41, 410.99], [-80.99, 394.52], [-77.07, 398.16], [-79.86, 401.14], [-78.68, 402.24], [-79.96, 403.6], [-79.54, 403.99], [-90.89, 416.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-102.63, 400.88], [-90.96, 388.43], [-84.55, 394.39], [-96.22, 406.84], [-102.63, 400.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-102.83, 400.6], [-108.86, 395.0], [-98.34, 383.77], [-92.31, 389.39], [-102.83, 400.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-260.64, 260.89], [-248.3, 246.9], [-241.36, 252.97], [-252.43, 265.51], [-255.65, 262.69], [-256.93, 264.14], [-260.64, 260.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-280.11, 239.35], [-272.68, 231.46], [-271.34, 232.72], [-265.77, 226.81], [-262.14, 230.21], [-264.6, 232.83], [-264.04, 233.36], [-274.57, 244.54], [-278.13, 241.2], [-278.67, 241.8], [-280.19, 240.37], [-279.63, 239.79], [-280.11, 239.35]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-321.74, 274.13], [-314.93, 267.06], [-316.23, 265.82], [-310.47, 259.83], [-301.81, 268.11], [-307.34, 273.86], [-308.29, 272.95], [-315.32, 280.26], [-321.74, 274.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-303.6, 284.14], [-299.81, 279.97], [-301.04, 278.86], [-292.97, 269.99], [-292.53, 270.4], [-290.9, 268.61], [-283.82, 275.0], [-293.4, 285.53], [-295.85, 283.32], [-299.76, 287.62], [-303.6, 284.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-328.75, 256.92], [-334.45, 251.9], [-331.71, 248.82], [-331.93, 248.63], [-322.85, 238.4], [-321.48, 239.61], [-319.92, 237.86], [-316.26, 241.09], [-317.84, 242.86], [-316.96, 243.63], [-320.1, 247.17], [-319.46, 247.73], [-322.7, 251.37], [-323.33, 250.81], [-328.75, 256.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-295.07, 300.16], [-278.19, 281.66], [-268.71, 290.26], [-285.58, 308.75], [-295.07, 300.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-258.05, 300.11], [-265.79, 293.18], [-273.62, 301.86], [-271.87, 303.43], [-276.44, 308.5], [-270.45, 313.86], [-266.0, 308.92], [-265.29, 309.56], [-260.68, 304.45], [-261.39, 303.81], [-258.05, 300.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-397.69, 343.75], [-398.52, 344.67], [-401.61, 341.92], [-400.49, 340.66], [-402.08, 339.26], [-395.97, 332.44], [-399.95, 328.91], [-397.27, 325.92], [-397.1, 324.57], [-396.11, 323.53], [-394.58, 322.93], [-392.32, 320.41], [-390.61, 321.92], [-388.64, 319.71], [-380.71, 326.75], [-387.34, 334.14], [-386.66, 334.74], [-394.27, 343.24], [-395.54, 342.11], [-397.31, 344.08], [-397.69, 343.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-440.18, 318.28], [-435.1, 312.51], [-433.61, 313.81], [-426.97, 306.27], [-415.08, 316.67], [-423.09, 325.77], [-424.48, 324.55], [-428.2, 328.77], [-440.18, 318.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-428.3, 329.86], [-437.66, 339.91], [-452.1, 326.57], [-442.74, 316.51], [-428.3, 329.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-446.54, 354.61], [-438.78, 345.85], [-439.23, 345.46], [-438.75, 344.93], [-442.84, 341.33], [-442.01, 340.4], [-451.13, 332.39], [-452.04, 333.41], [-455.31, 330.54], [-460.33, 336.22], [-460.74, 335.85], [-465.89, 341.68], [-455.91, 350.46], [-453.87, 348.16], [-446.54, 354.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-396.05, 374.41], [-410.57, 389.77], [-413.7, 386.84], [-414.12, 387.29], [-415.03, 386.42], [-416.24, 387.68], [-422.21, 382.08], [-421.01, 380.81], [-421.36, 380.49], [-406.85, 365.15], [-404.58, 367.29], [-401.55, 364.08], [-397.06, 368.29], [-397.45, 368.71], [-395.05, 370.96], [-397.25, 373.29], [-396.05, 374.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-400.14, 354.7], [-395.13, 349.31], [-386.71, 357.0], [-382.76, 352.7], [-379.41, 355.77], [-376.43, 358.29], [-385.34, 368.18], [-386.3, 367.33], [-387.23, 368.37], [-389.85, 366.02], [-388.8, 364.86], [-400.14, 354.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-363.63, 374.29], [-367.79, 370.7], [-366.1, 368.76], [-369.86, 365.51], [-365.31, 360.29], [-366.52, 359.24], [-357.08, 348.42], [-350.37, 354.22], [-350.53, 354.4], [-343.36, 360.61], [-347.25, 365.06], [-350.18, 362.54], [-352.35, 365.03], [-353.34, 364.17], [-361.23, 373.24], [-362.07, 372.51], [-363.63, 374.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-384.06, 415.42], [-390.95, 408.8], [-389.02, 406.8], [-389.52, 406.33], [-382.0, 398.55], [-381.79, 398.76], [-375.1, 391.83], [-368.71, 397.97], [-374.97, 404.44], [-373.78, 405.59], [-381.38, 413.45], [-381.78, 413.07], [-384.06, 415.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-427.1, 441.89], [-430.39, 438.92], [-439.19, 448.56], [-439.72, 448.09], [-441.16, 449.66], [-447.28, 444.13], [-445.84, 442.55], [-446.31, 442.13], [-438.04, 433.06], [-438.78, 432.38], [-429.76, 422.5], [-426.64, 425.33], [-425.91, 424.53], [-425.49, 424.91], [-423.98, 423.24], [-420.82, 426.1], [-422.34, 427.77], [-417.89, 431.8], [-427.1, 441.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-186.79, 328.88], [-176.56, 317.82], [-164.27, 329.12], [-174.5, 340.18], [-186.79, 328.88]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-92.51, 380.77], [-90.45, 378.51], [-90.8, 378.19], [-88.49, 375.66], [-76.63, 386.38], [-81.01, 391.18], [-92.51, 380.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-86.93, 374.72], [-85.64, 373.33], [-86.23, 372.79], [-82.88, 369.16], [-70.83, 380.21], [-75.47, 385.24], [-86.93, 374.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-80.96, 369.72], [-79.46, 368.01], [-80.46, 367.15], [-74.67, 360.53], [-73.34, 361.68], [-71.96, 360.1], [-65.02, 366.13], [-65.45, 366.63], [-62.09, 369.56], [-66.48, 374.59], [-69.85, 371.66], [-73.69, 376.04], [-80.96, 369.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-69.21, 353.03], [-63.42, 346.85], [-51.21, 358.2], [-56.47, 363.81], [-60.93, 359.67], [-61.46, 360.24], [-69.21, 353.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-102.14, 351.23], [-113.35, 341.21], [-119.17, 347.66], [-107.96, 357.69], [-102.14, 351.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-131.98, 376.51], [-118.5, 361.84], [-112.52, 367.28], [-123.71, 379.48], [-126.09, 377.29], [-128.39, 379.79], [-131.98, 376.51]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-148.09, 363.19], [-143.83, 358.56], [-144.16, 358.24], [-140.63, 354.4], [-140.29, 354.7], [-136.24, 350.3], [-130.03, 355.96], [-137.65, 364.25], [-137.99, 363.94], [-141.15, 367.36], [-143.24, 365.45], [-144.31, 366.63], [-148.09, 363.19]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-139.06, 369.08], [-135.97, 365.76], [-137.08, 364.73], [-133.59, 360.98], [-133.0, 361.53], [-129.64, 357.91], [-127.97, 359.44], [-125.88, 357.19], [-122.34, 360.46], [-124.43, 362.71], [-123.85, 363.25], [-133.79, 373.95], [-136.84, 371.13], [-137.81, 372.16], [-139.63, 370.47], [-138.68, 369.44], [-139.06, 369.08]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-157.21, 340.78], [-145.2, 328.09], [-131.38, 341.08], [-143.39, 353.76], [-157.21, 340.78]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-151.04, 322.92], [-145.48, 316.78], [-157.38, 306.07], [-158.49, 307.29], [-159.01, 306.83], [-163.46, 311.76], [-151.04, 322.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-155.34, 302.77], [-154.63, 301.96], [-155.43, 301.27], [-153.7, 299.3], [-152.91, 299.98], [-150.36, 297.08], [-137.72, 308.08], [-143.07, 314.19], [-148.76, 309.25], [-148.39, 308.81], [-155.34, 302.77]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-149.54, 295.49], [-149.29, 295.2], [-150.77, 293.83], [-149.17, 292.09], [-147.67, 293.46], [-142.89, 288.27], [-130.8, 299.35], [-132.53, 301.22], [-131.54, 302.11], [-136.07, 307.03], [-136.93, 306.24], [-137.32, 306.68], [-149.54, 295.49]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-142.17, 287.72], [-135.75, 280.76], [-122.61, 292.8], [-129.04, 299.76], [-142.17, 287.72]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-135.21, 279.66], [-133.34, 277.61], [-135.15, 275.96], [-130.91, 271.31], [-120.85, 280.42], [-122.15, 281.85], [-116.22, 287.22], [-118.73, 289.97], [-118.07, 290.56], [-119.64, 292.28], [-131.24, 281.79], [-131.98, 282.6], [-135.21, 279.66]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-129.09, 272.6], [-123.64, 266.54], [-111.88, 277.06], [-115.13, 280.66], [-114.65, 281.09], [-116.5, 283.13], [-116.98, 282.71], [-117.33, 283.11], [-129.09, 272.6]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-122.49, 265.98], [-116.76, 259.72], [-106.26, 269.28], [-111.99, 275.54], [-122.49, 265.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-117.46, 258.92], [-110.94, 251.88], [-97.22, 264.46], [-103.72, 271.5], [-117.46, 258.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-105.63, 242.41], [-100.7, 237.08], [-88.49, 248.27], [-93.43, 253.61], [-105.63, 242.41]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-98.37, 235.16], [-91.45, 227.79], [-88.41, 230.63], [-87.38, 229.53], [-83.08, 233.55], [-83.66, 234.16], [-80.74, 236.88], [-81.14, 237.3], [-78.76, 239.53], [-80.95, 241.84], [-76.74, 245.78], [-80.4, 249.66], [-82.72, 247.5], [-84.56, 249.46], [-87.82, 246.42], [-87.11, 245.66], [-98.37, 235.16]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-60.8, 221.8], [-55.12, 226.96], [-44.19, 215.01], [-46.96, 212.5], [-46.42, 211.91], [-49.33, 209.27], [-60.8, 221.8]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1542.64, -2025.66], [-1529.32, -2049.69], [-1522.36, -2045.87], [-1535.68, -2021.83], [-1542.64, -2025.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1474.33, -2221.69], [-1474.39, -2223.37], [-1475.59, -2223.29], [-1476.07, -2234.6], [-1465.8, -2234.78], [-1466.0, -2241.7], [-1476.54, -2241.28], [-1477.11, -2255.58], [-1476.62, -2255.54], [-1476.96, -2263.92], [-1446.45, -2265.12], [-1406.17, -2242.23], [-1408.32, -2238.39], [-1407.93, -2238.21], [-1409.63, -2235.41], [-1409.19, -2235.21], [-1420.18, -2216.1], [-1429.95, -2221.43], [-1426.04, -2228.23], [-1451.92, -2242.42], [-1463.98, -2241.7], [-1463.77, -2232.71], [-1453.07, -2233.24], [-1451.66, -2201.15], [-1454.08, -2201.14], [-1453.25, -2183.99], [-1452.38, -2183.42], [-1451.26, -2185.96], [-1445.87, -2182.99], [-1445.47, -2183.61], [-1439.32, -2180.06], [-1469.07, -2126.96], [-1471.79, -2127.62], [-1476.19, -2221.61], [-1474.33, -2221.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-457.05, -92.41], [-456.12, -93.43], [-436.53, -114.95], [-435.99, -115.55], [-435.82, -116.32], [-435.88, -117.06], [-436.25, -117.79], [-436.84, -118.41], [-437.65, -118.73], [-454.82, -117.98], [-468.62, -117.39], [-468.61, -117.06], [-467.96, -102.28], [-457.05, -92.41]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-457.05, -92.41], [-467.96, -102.28], [-468.61, -117.06], [-469.04, -117.04], [-469.39, -117.02], [-470.38, -117.97], [-473.1, -117.85], [-474.06, -117.81], [-474.89, -116.82], [-475.68, -116.78], [-474.82, -98.93], [-462.02, -87.29], [-461.38, -87.98], [-460.51, -87.93], [-459.14, -89.44], [-457.83, -90.86], [-457.89, -91.49], [-457.45, -91.97], [-457.05, -92.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-536.16, -95.96], [-551.06, -109.81], [-551.18, -111.44], [-553.68, -113.61], [-556.47, -113.85], [-557.81, -112.54], [-560.33, -112.37], [-559.11, -82.51], [-557.75, -76.88], [-553.92, -76.56], [-536.16, -95.96]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-88.43, 77.98], [-73.68, 90.52], [-67.07, 82.9], [-81.45, 70.28], [-88.43, 77.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-964.28, -2436.6], [-964.62, -2447.83], [-961.38, -2447.93], [-961.4, -2448.74], [-959.35, -2448.81], [-959.32, -2447.93], [-956.01, -2448.02], [-955.89, -2443.93], [-952.96, -2444.02], [-952.86, -2440.69], [-955.4, -2440.62], [-955.3, -2437.04], [-958.21, -2436.96], [-958.16, -2435.29], [-961.05, -2435.21], [-961.1, -2436.7], [-964.28, -2436.6]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-967.14, -2461.2], [-958.34, -2461.61], [-958.75, -2470.39], [-967.68, -2469.98], [-967.53, -2466.65], [-971.16, -2466.48], [-970.97, -2462.3], [-967.2, -2462.48], [-967.14, -2461.2]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-969.73, -2447.53], [-969.07, -2434.74], [-977.27, -2434.27], [-978.04, -2447.08], [-969.73, -2447.53]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-925.75, -2438.87], [-919.57, -2438.96], [-919.73, -2449.93], [-928.93, -2449.78], [-928.81, -2441.47], [-925.79, -2441.52], [-925.75, -2438.87]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-950.94, -2405.9], [-950.76, -2400.3], [-950.59, -2394.89], [-958.98, -2394.63], [-959.33, -2405.64], [-950.94, -2405.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-991.98, -2433.36], [-984.16, -2433.62], [-984.49, -2444.23], [-992.32, -2443.98], [-991.98, -2433.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1018.16, -2432.38], [-1009.88, -2432.69], [-1010.34, -2444.71], [-1018.61, -2444.39], [-1018.16, -2432.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1032.86, -2434.96], [-1020.88, -2435.36], [-1021.18, -2444.64], [-1033.16, -2444.26], [-1032.86, -2434.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-914.6, -2440.7], [-902.43, -2441.13], [-902.77, -2450.61], [-910.23, -2450.35], [-910.38, -2454.57], [-915.09, -2454.4], [-914.6, -2440.7]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-925.65, -2468.06], [-915.45, -2468.48], [-915.85, -2478.0], [-924.21, -2477.66], [-924.08, -2474.42], [-925.16, -2474.37], [-925.09, -2472.88], [-925.85, -2472.85], [-925.65, -2468.06]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-820.53, -2442.56], [-792.17, -2443.49], [-792.52, -2454.0], [-798.26, -2453.81], [-798.62, -2464.76], [-821.24, -2464.01], [-820.53, -2442.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-964.55, -2454.43], [-958.68, -2454.62], [-958.81, -2458.8], [-964.68, -2458.61], [-964.55, -2454.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-977.35, -2469.96], [-970.69, -2470.26], [-970.81, -2474.34], [-977.53, -2474.15], [-977.35, -2469.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-969.93, -2477.64], [-959.54, -2478.13], [-959.67, -2480.85], [-958.44, -2480.91], [-958.61, -2484.68], [-959.74, -2484.63], [-959.87, -2487.28], [-970.37, -2486.78], [-969.93, -2477.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-965.26, -2492.53], [-956.57, -2493.02], [-957.05, -2501.58], [-960.55, -2501.38], [-960.48, -2500.2], [-965.68, -2499.91], [-965.26, -2492.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1064.59, -2384.82], [-1065.22, -2398.5], [-1056.29, -2398.89], [-1055.68, -2385.23], [-1064.59, -2384.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1049.38, -2399.52], [-1039.63, -2399.97], [-1038.92, -2382.97], [-1048.62, -2382.55], [-1049.38, -2399.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1034.99, -2382.59], [-1035.56, -2400.14], [-1025.31, -2400.48], [-1024.74, -2382.91], [-1034.99, -2382.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1021.76, -2384.77], [-1022.24, -2400.48], [-1012.71, -2400.76], [-1012.23, -2385.07], [-1021.76, -2384.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[491.54, 979.26], [495.28, 975.18], [507.54, 986.34], [503.44, 990.8], [501.06, 988.63], [501.42, 988.25], [491.54, 979.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[507.49, 994.32], [505.31, 992.34], [509.46, 987.81], [520.82, 998.15], [517.23, 1002.07], [508.05, 993.7], [507.49, 994.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[233.55, 51.41], [239.28, 45.05], [224.19, 31.57], [221.26, 34.83], [219.39, 33.16], [216.11, 36.83], [225.72, 45.4], [226.21, 44.85], [233.55, 51.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[230.32, 26.12], [242.23, 36.8], [247.33, 31.15], [235.42, 20.46], [230.32, 26.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[236.02, 17.33], [241.52, 11.02], [255.13, 22.78], [249.63, 29.09], [236.02, 17.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[244.02, 8.57], [253.97, -2.36], [271.94, 13.91], [262.0, 24.83], [244.02, 8.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[255.1, -4.35], [262.31, -11.83], [273.97, -0.67], [266.76, 6.81], [255.1, -4.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[263.12, -11.75], [269.39, -18.86], [283.65, -6.39], [277.38, 0.72], [263.12, -11.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[272.54, -20.38], [282.14, -30.87], [299.28, -15.29], [289.68, -4.81], [272.54, -20.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[284.43, -32.93], [291.91, -41.72], [299.35, -35.42], [297.79, -33.6], [299.93, -31.8], [294.0, -24.84], [284.43, -32.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[291.78, -43.62], [297.5, -50.05], [309.49, -39.46], [303.78, -33.03], [291.78, -43.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[297.51, -53.86], [304.38, -60.91], [319.45, -46.35], [312.59, -39.3], [297.51, -53.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1099.98, 245.57], [1106.28, 250.98], [1113.34, 242.81], [1113.67, 243.09], [1115.54, 240.94], [1115.04, 240.51], [1116.24, 239.1], [1115.74, 238.67], [1115.02, 238.06], [1114.34, 237.48], [1114.78, 236.97], [1110.35, 233.17], [1107.32, 236.68], [1106.13, 235.66], [1102.47, 239.89], [1103.86, 241.08], [1099.98, 245.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1220.91, 291.64], [1225.17, 295.28], [1226.62, 296.52], [1227.88, 297.59], [1238.67, 285.06], [1231.7, 279.11], [1220.91, 291.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[325.25, 263.19], [329.48, 266.98], [325.76, 271.11], [331.04, 276.12], [316.03, 291.84], [316.09, 294.43], [316.23, 294.56], [332.52, 308.81], [342.62, 297.35], [341.33, 296.22], [336.26, 291.7], [342.36, 284.93], [354.66, 295.9], [356.09, 297.15], [359.39, 293.41], [359.71, 293.69], [361.51, 291.65], [363.32, 293.24], [368.02, 287.92], [369.42, 286.08], [373.2, 288.87], [374.54, 292.17], [375.96, 294.58], [377.9, 296.6], [380.4, 298.57], [382.58, 299.78], [384.65, 300.56], [387.07, 301.14], [389.7, 301.36], [392.17, 301.2], [394.32, 300.77], [396.37, 300.09], [398.99, 298.76], [401.12, 297.19], [403.0, 295.31], [404.62, 293.07], [405.74, 290.93], [406.65, 288.18], [407.09, 285.45], [406.92, 281.37], [406.2, 278.49], [404.96, 275.71], [401.79, 271.65], [399.81, 270.01], [396.46, 268.18], [394.37, 267.47], [392.09, 267.01], [384.88, 261.21], [385.43, 260.69], [384.15, 259.56], [386.8, 256.8], [355.39, 228.5], [345.91, 239.72], [350.74, 243.88], [331.13, 264.83], [327.16, 261.1], [325.25, 263.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[393.16, 319.88], [418.75, 291.74], [423.18, 286.87], [427.81, 291.04], [428.57, 290.2], [454.0, 313.16], [423.21, 347.02], [393.16, 319.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[361.74, 145.27], [373.13, 155.45], [383.09, 144.8], [388.49, 149.45], [405.1, 132.39], [388.39, 115.39], [361.74, 145.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-977.77, -2404.16], [-969.14, -2404.5], [-968.72, -2393.73], [-977.34, -2393.39], [-977.77, -2404.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-992.43, -2402.7], [-983.1, -2403.01], [-982.64, -2389.25], [-991.97, -2388.93], [-992.43, -2402.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1004.47, -2384.17], [-1005.31, -2402.21], [-994.92, -2402.72], [-993.87, -2384.69], [-1004.47, -2384.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1264.49, -2421.48], [-1244.19, -2422.66], [-1245.05, -2437.51], [-1255.48, -2436.87], [-1264.49, -2421.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-988.37, -2550.88], [-969.26, -2552.26], [-969.44, -2554.75], [-960.83, -2559.79], [-961.56, -2569.79], [-969.78, -2574.35], [-970.12, -2579.13], [-994.55, -2577.37], [-993.85, -2567.68], [-984.28, -2568.38], [-983.66, -2559.89], [-989.0, -2559.51], [-988.37, -2550.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-930.04, -2504.23], [-921.86, -2504.64], [-922.72, -2521.82], [-930.9, -2521.41], [-930.04, -2504.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1046.12, -2434.64], [-1037.92, -2434.82], [-1038.26, -2450.09], [-1039.9, -2450.05], [-1039.98, -2453.68], [-1046.54, -2453.52], [-1046.12, -2434.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1063.54, -2434.09], [-1054.93, -2434.51], [-1055.39, -2443.59], [-1064.0, -2443.16], [-1063.54, -2434.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1075.14, -2433.27], [-1066.03, -2433.64], [-1066.42, -2443.47], [-1075.54, -2443.11], [-1075.14, -2433.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1085.27, -2432.57], [-1076.96, -2432.7], [-1077.51, -2447.94], [-1086.13, -2447.69], [-1085.27, -2432.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1100.04, -2429.2], [-1091.26, -2429.53], [-1091.92, -2447.52], [-1100.7, -2447.21], [-1100.04, -2429.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1115.18, -2428.58], [-1106.46, -2428.9], [-1107.1, -2445.87], [-1115.82, -2445.54], [-1115.18, -2428.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1131.59, -2428.58], [-1123.62, -2428.97], [-1124.22, -2440.91], [-1125.7, -2440.84], [-1125.79, -2442.61], [-1127.84, -2442.51], [-1127.93, -2444.3], [-1133.24, -2444.02], [-1132.79, -2435.03], [-1131.92, -2435.08], [-1131.59, -2428.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1145.65, -2429.75], [-1133.7, -2430.28], [-1134.09, -2439.36], [-1146.05, -2438.83], [-1145.65, -2429.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1163.04, -2427.38], [-1155.02, -2427.67], [-1155.53, -2441.2], [-1163.54, -2440.89], [-1163.04, -2427.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1176.1, -2428.28], [-1165.51, -2428.65], [-1165.87, -2438.91], [-1176.46, -2438.54], [-1176.1, -2428.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1187.07, -2426.86], [-1180.49, -2427.05], [-1180.67, -2433.03], [-1178.72, -2433.09], [-1178.97, -2441.91], [-1187.49, -2441.66], [-1187.07, -2426.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1207.73, -2427.41], [-1196.98, -2427.81], [-1197.13, -2431.85], [-1198.76, -2431.79], [-1198.91, -2436.02], [-1202.88, -2435.88], [-1202.97, -2438.41], [-1207.17, -2438.25], [-1207.08, -2435.66], [-1208.03, -2435.62], [-1207.73, -2427.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1221.9, -2425.04], [-1212.46, -2425.37], [-1213.04, -2441.87], [-1222.49, -2441.53], [-1221.9, -2425.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1229.2, -2427.36], [-1229.81, -2438.74], [-1237.53, -2438.33], [-1236.93, -2426.96], [-1229.2, -2427.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1004.22, -2508.01], [-994.86, -2508.32], [-995.2, -2518.62], [-996.02, -2518.58], [-996.09, -2520.66], [-1003.68, -2520.4], [-1003.61, -2518.33], [-1004.56, -2518.31], [-1004.22, -2508.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1018.18, -2502.42], [-1013.21, -2502.58], [-1013.29, -2505.07], [-1009.07, -2505.21], [-1009.47, -2518.1], [-1018.65, -2517.81], [-1018.18, -2502.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1031.28, -2512.43], [-1022.88, -2512.73], [-1023.17, -2521.28], [-1024.52, -2521.23], [-1024.59, -2523.34], [-1030.65, -2523.12], [-1030.58, -2521.02], [-1031.58, -2520.98], [-1031.28, -2512.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1042.9, -2510.47], [-1042.83, -2519.97], [-1051.37, -2520.04], [-1051.44, -2510.52], [-1042.9, -2510.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1065.64, -2508.16], [-1061.43, -2508.36], [-1061.55, -2510.91], [-1058.2, -2511.07], [-1058.72, -2521.94], [-1066.28, -2521.58], [-1065.64, -2508.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1076.48, -2509.58], [-1068.55, -2509.86], [-1068.88, -2519.52], [-1071.78, -2519.42], [-1071.85, -2521.42], [-1075.89, -2521.28], [-1075.82, -2519.28], [-1076.81, -2519.25], [-1076.48, -2509.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1088.39, -2512.42], [-1079.86, -2512.78], [-1079.28, -2498.8], [-1087.81, -2498.45], [-1088.39, -2512.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1115.56, -2503.4], [-1108.0, -2503.76], [-1108.54, -2515.18], [-1116.1, -2514.82], [-1115.56, -2503.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1132.01, -2503.77], [-1123.63, -2504.02], [-1123.91, -2513.22], [-1132.29, -2512.96], [-1132.01, -2503.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1145.04, -2511.43], [-1138.41, -2511.74], [-1137.96, -2502.15], [-1144.6, -2501.84], [-1145.04, -2511.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2976.0, -1225.49], [-2967.26, -1218.03], [-2982.5, -1200.29], [-2991.24, -1207.74], [-2976.0, -1225.49]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2923.22, -1150.15], [-2915.03, -1143.24], [-2901.12, -1159.6], [-2909.31, -1166.5], [-2923.22, -1150.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1164.04, 552.28], [1170.28, 557.91], [1163.62, 565.25], [1157.37, 559.62], [1164.04, 552.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-989.53, -2668.86], [-978.41, -2669.56], [-979.53, -2687.5], [-990.65, -2686.8], [-989.53, -2668.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2163.26, 1291.25], [2164.65, 1289.63], [2163.46, 1288.23], [2166.8, 1283.97], [2168.28, 1285.36], [2169.12, 1284.33], [2176.35, 1290.3], [2174.96, 1292.21], [2177.91, 1294.42], [2173.44, 1299.57], [2163.26, 1291.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-993.25, -2690.46], [-985.3, -2690.61], [-985.49, -2700.35], [-993.44, -2700.19], [-993.25, -2690.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-285.9, 140.72], [-281.08, 135.57], [-270.03, 145.84], [-276.23, 152.47], [-283.59, 145.62], [-282.65, 144.61], [-284.57, 142.82], [-284.14, 142.35], [-285.9, 140.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-782.62, -448.67], [-775.29, -442.14], [-776.21, -441.1], [-772.29, -437.6], [-773.19, -436.59], [-766.56, -430.67], [-764.81, -432.62], [-762.72, -430.76], [-762.35, -431.16], [-758.69, -427.88], [-759.05, -427.48], [-757.06, -425.71], [-772.29, -408.77], [-772.64, -409.08], [-776.06, -405.28], [-777.38, -406.47], [-779.6, -404.0], [-803.56, -425.4], [-782.62, -448.67]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-806.81, -409.51], [-804.3, -407.21], [-802.98, -408.66], [-799.5, -405.47], [-798.95, -406.06], [-792.04, -399.73], [-792.51, -399.22], [-788.94, -395.95], [-790.51, -394.24], [-787.99, -391.94], [-804.94, -373.54], [-807.6, -375.97], [-809.06, -374.39], [-812.11, -377.18], [-812.54, -376.71], [-819.71, -383.27], [-819.25, -383.78], [-822.79, -387.01], [-821.02, -388.92], [-823.61, -391.28], [-806.81, -409.51]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-721.36, -968.23], [-706.5, -954.69], [-712.51, -948.13], [-713.75, -949.25], [-718.23, -944.37], [-705.0, -932.33], [-703.1, -934.4], [-696.57, -928.46], [-710.32, -913.47], [-718.6, -921.02], [-716.1, -923.75], [-723.54, -930.53], [-726.06, -927.78], [-743.31, -943.5], [-735.81, -951.67], [-735.21, -951.12], [-732.17, -954.44], [-733.16, -955.36], [-721.36, -968.23]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-958.45, -199.77], [-975.04, -181.91], [-971.61, -178.75], [-969.91, -180.6], [-966.0, -176.99], [-948.62, -195.68], [-953.88, -200.53], [-956.37, -197.84], [-958.45, -199.77]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[95.4, -176.07], [88.11, -183.0], [89.32, -184.27], [97.73, -193.14], [102.11, -189.5], [105.08, -186.94], [95.4, -176.07]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[237.12, 33.77], [236.19, 32.93], [233.16, 36.25], [234.07, 37.08], [233.27, 37.96], [243.55, 47.27], [247.7, 42.73], [237.44, 33.43], [237.12, 33.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-789.26, -877.96], [-806.23, -859.57], [-815.72, -868.26], [-798.82, -886.57], [-795.98, -883.97], [-794.1, -886.0], [-791.0, -883.15], [-792.8, -881.2], [-789.26, -877.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2832.3, 1890.94], [2841.7, 1893.34], [2835.14, 1918.79], [2825.74, 1916.38], [2832.3, 1890.94]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1476.23, -951.43], [-1476.21, -960.98], [-1476.19, -977.17], [-1476.14, -1005.72], [-1539.09, -1005.21], [-1539.03, -977.41], [-1539.03, -971.05], [-1535.68, -971.06], [-1533.66, -969.28], [-1513.49, -969.55], [-1513.5, -951.11], [-1476.23, -951.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1683.94, -992.61], [-1684.24, -1006.21], [-1687.85, -1006.12], [-1687.55, -992.52], [-1683.94, -992.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1675.09, -956.73], [-1675.31, -966.09], [-1679.02, -965.99], [-1678.81, -956.65], [-1675.09, -956.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1973.64, -880.82], [-1963.03, -881.13], [-1963.24, -888.0], [-1949.67, -888.41], [-1950.11, -903.04], [-1961.71, -902.69], [-1961.82, -906.2], [-1974.39, -905.82], [-1973.64, -880.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1816.15, -757.65], [-1816.68, -769.95], [-1811.07, -770.19], [-1811.12, -771.56], [-1805.05, -771.83], [-1805.0, -770.45], [-1799.72, -770.68], [-1799.78, -771.95], [-1793.91, -772.21], [-1793.85, -770.94], [-1787.9, -771.18], [-1787.38, -759.13], [-1793.76, -758.86], [-1793.81, -760.0], [-1798.95, -759.77], [-1798.9, -758.73], [-1804.97, -758.47], [-1805.02, -759.51], [-1810.09, -759.3], [-1810.02, -757.91], [-1816.15, -757.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1782.67, -788.42], [-1783.19, -800.52], [-1771.14, -801.03], [-1771.08, -799.78], [-1766.01, -799.99], [-1766.06, -801.25], [-1760.0, -801.5], [-1759.93, -800.07], [-1754.8, -800.3], [-1754.86, -801.73], [-1745.69, -802.13], [-1745.17, -790.03], [-1753.98, -789.65], [-1753.94, -788.66], [-1760.01, -788.4], [-1760.05, -789.39], [-1765.12, -789.18], [-1765.07, -788.02], [-1771.07, -787.76], [-1771.12, -788.91], [-1782.67, -788.42]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1783.79, -759.31], [-1784.36, -771.31], [-1772.78, -771.85], [-1772.84, -773.24], [-1766.83, -773.52], [-1766.77, -772.13], [-1761.3, -772.39], [-1761.36, -773.78], [-1755.42, -774.05], [-1755.36, -772.66], [-1744.19, -773.18], [-1743.63, -761.18], [-1755.22, -760.64], [-1755.28, -761.85], [-1760.48, -761.61], [-1760.43, -760.4], [-1766.56, -760.11], [-1766.62, -761.39], [-1771.69, -761.14], [-1771.63, -759.87], [-1783.79, -759.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1827.15, -786.39], [-1827.63, -798.51], [-1815.93, -798.98], [-1815.88, -797.8], [-1811.07, -798.0], [-1811.12, -799.17], [-1804.58, -799.43], [-1804.53, -798.15], [-1799.92, -798.34], [-1799.97, -799.61], [-1788.13, -800.08], [-1787.64, -787.96], [-1798.91, -787.52], [-1798.86, -786.25], [-1804.6, -786.02], [-1804.65, -787.29], [-1810.12, -787.06], [-1810.08, -785.94], [-1815.88, -785.71], [-1815.92, -786.84], [-1827.15, -786.39]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1713.35, -764.47], [-1705.58, -764.8], [-1705.63, -765.91], [-1698.71, -766.18], [-1699.62, -788.23], [-1681.91, -788.95], [-1680.96, -765.98], [-1672.43, -766.33], [-1672.48, -767.72], [-1666.34, -767.98], [-1667.23, -789.55], [-1649.15, -790.29], [-1648.26, -768.75], [-1641.79, -769.02], [-1641.73, -767.61], [-1634.33, -767.93], [-1635.35, -792.72], [-1639.55, -792.54], [-1639.57, -796.21], [-1637.89, -798.2], [-1637.99, -802.12], [-1638.45, -802.11], [-1638.59, -805.39], [-1711.77, -802.4], [-1711.41, -793.79], [-1710.43, -793.83], [-1710.24, -789.07], [-1714.35, -788.91], [-1713.35, -764.47]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1645.13, -710.0], [-1630.58, -710.7], [-1632.63, -753.02], [-1647.18, -752.32], [-1645.13, -710.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1931.71, -672.07], [-1923.47, -672.44], [-1924.56, -696.28], [-1932.79, -695.9], [-1931.71, -672.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1681.43, -735.46], [-1682.05, -749.99], [-1649.95, -751.34], [-1649.33, -736.81], [-1681.43, -735.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1850.75, -736.36], [-1851.0, -745.09], [-1832.85, -745.62], [-1832.59, -736.88], [-1850.75, -736.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1745.65, -821.1], [-1757.46, -820.81], [-1758.55, -864.54], [-1746.73, -864.84], [-1745.65, -821.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1680.17, -708.69], [-1680.86, -723.07], [-1649.02, -724.6], [-1648.33, -710.22], [-1680.17, -708.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1804.17, -819.03], [-1817.74, -818.56], [-1818.47, -839.34], [-1804.91, -839.82], [-1804.17, -819.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1771.15, -839.01], [-1786.29, -838.39], [-1786.47, -842.6], [-1789.52, -842.47], [-1790.25, -860.41], [-1772.06, -861.16], [-1771.15, -839.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1829.56, -959.17], [-1853.86, -958.43], [-1854.36, -974.81], [-1853.23, -974.85], [-1853.92, -997.08], [-1830.75, -997.79], [-1829.56, -959.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1849.33, -698.49], [-1850.8, -730.78], [-1839.72, -731.29], [-1838.75, -709.87], [-1829.33, -710.3], [-1828.83, -699.42], [-1849.33, -698.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1752.84, -893.23], [-1800.3, -890.76], [-1801.14, -906.7], [-1801.98, -922.65], [-1779.53, -923.82], [-1779.85, -930.16], [-1754.84, -931.46], [-1752.84, -893.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1825.1, -725.45], [-1825.97, -745.37], [-1815.11, -745.85], [-1814.69, -736.58], [-1793.51, -737.51], [-1793.04, -726.84], [-1825.1, -725.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1852.13, -814.65], [-1852.47, -823.37], [-1833.59, -824.1], [-1833.45, -820.44], [-1831.68, -820.51], [-1831.56, -817.59], [-1833.34, -817.52], [-1833.25, -815.39], [-1852.13, -814.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1744.81, -704.92], [-1774.86, -703.72], [-1776.33, -740.77], [-1770.76, -741.0], [-1770.84, -742.92], [-1753.44, -743.62], [-1753.38, -741.89], [-1746.29, -742.17], [-1744.81, -704.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1927.88, -759.1], [-1928.64, -791.36], [-1876.42, -792.59], [-1876.25, -785.38], [-1877.21, -785.36], [-1876.78, -767.41], [-1875.81, -767.44], [-1875.64, -760.33], [-1927.88, -759.1]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1802.7, -1081.66], [-1797.44, -1081.78], [-1797.39, -1079.06], [-1792.82, -1079.16], [-1792.87, -1081.88], [-1790.4, -1081.93], [-1790.44, -1083.51], [-1769.25, -1083.95], [-1769.21, -1082.37], [-1767.04, -1082.42], [-1766.98, -1079.86], [-1761.83, -1079.97], [-1761.88, -1082.52], [-1757.09, -1082.62], [-1757.85, -1119.1], [-1768.23, -1118.88], [-1768.21, -1117.83], [-1777.92, -1117.62], [-1778.57, -1119.0], [-1779.74, -1119.53], [-1780.85, -1119.58], [-1782.05, -1118.7], [-1782.66, -1117.53], [-1793.17, -1117.3], [-1793.19, -1118.36], [-1803.46, -1118.14], [-1802.7, -1081.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1716.27, -728.63], [-1716.59, -736.11], [-1703.57, -736.67], [-1703.25, -729.18], [-1716.27, -728.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1850.75, -780.23], [-1851.16, -789.09], [-1832.89, -789.91], [-1832.49, -781.07], [-1850.75, -780.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1851.38, -767.95], [-1851.79, -777.1], [-1833.97, -777.89], [-1833.57, -768.73], [-1851.38, -767.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2032.45, -884.72], [-2032.71, -892.7], [-2016.43, -893.21], [-2016.19, -885.23], [-2032.45, -884.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2071.82, -870.84], [-2065.49, -871.0], [-2065.95, -889.8], [-2072.3, -889.64], [-2071.82, -870.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1850.02, -757.87], [-1850.4, -766.3], [-1834.61, -767.01], [-1834.23, -758.59], [-1850.02, -757.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2238.94, -872.23], [-2239.11, -876.09], [-2227.34, -876.49], [-2226.94, -867.35], [-2231.03, -867.3], [-2238.94, -872.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2223.58, -863.83], [-2220.48, -863.97], [-2176.72, -866.02], [-2178.22, -890.1], [-2186.37, -889.55], [-2187.09, -910.35], [-2179.08, -910.45], [-2179.49, -921.62], [-2220.99, -920.33], [-2220.54, -909.72], [-2208.17, -909.54], [-2208.06, -888.78], [-2221.37, -888.25], [-2224.47, -888.12], [-2223.58, -863.83]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1702.77, -850.38], [-1706.77, -850.27], [-1706.73, -848.89], [-1711.05, -848.77], [-1711.09, -850.02], [-1713.34, -849.96], [-1713.68, -861.55], [-1713.01, -861.57], [-1713.07, -863.66], [-1705.8, -863.87], [-1705.74, -861.64], [-1705.1, -861.66], [-1704.96, -856.72], [-1702.95, -856.78], [-1702.77, -850.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2096.6, -829.46], [-2097.5, -848.62], [-2074.87, -849.67], [-2073.97, -830.52], [-2082.32, -830.13], [-2082.21, -828.05], [-2087.07, -827.84], [-2087.17, -829.91], [-2096.6, -829.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1987.53, -813.71], [-1955.9, -814.78], [-1956.21, -823.78], [-1962.21, -823.57], [-1962.72, -838.62], [-1956.74, -838.82], [-1957.2, -854.05], [-1970.13, -855.16], [-1988.92, -854.52], [-1987.53, -813.71]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[197.13, 291.37], [206.9, 280.46], [202.39, 276.46], [202.67, 276.15], [198.65, 272.57], [198.37, 272.88], [196.05, 270.82], [186.29, 281.73], [197.13, 291.37]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[55.95, 180.79], [42.05, 168.37], [38.67, 172.13], [33.04, 167.11], [36.98, 162.73], [33.92, 159.99], [42.68, 150.26], [37.23, 145.4], [43.39, 138.57], [49.1, 143.68], [53.13, 139.22], [75.44, 159.14], [55.95, 180.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[143.75, 140.94], [134.26, 151.42], [137.29, 154.15], [133.88, 157.92], [118.88, 144.43], [126.97, 135.5], [127.87, 136.32], [130.88, 132.98], [132.45, 134.4], [134.26, 132.41], [143.75, 140.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[238.98, 351.51], [222.23, 336.33], [233.26, 324.25], [249.74, 339.18], [259.7, 328.26], [268.98, 336.66], [235.32, 373.53], [226.32, 365.37], [238.98, 351.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[280.47, 353.29], [256.05, 380.51], [261.49, 385.36], [258.88, 388.27], [287.98, 414.18], [289.69, 412.28], [291.59, 413.98], [301.13, 403.36], [302.36, 404.46], [304.15, 402.45], [309.67, 407.37], [323.67, 391.75], [280.47, 353.29]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[228.16, 428.96], [257.16, 396.95], [226.25, 369.15], [212.49, 384.34], [206.88, 379.29], [191.88, 395.86], [207.85, 410.22], [217.83, 399.19], [222.73, 403.61], [212.52, 414.88], [228.16, 428.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-197.2, 242.1], [-195.15, 242.01], [-193.46, 243.42], [-193.37, 245.48], [-191.43, 245.4], [-186.42, 249.8], [-186.15, 255.84], [-183.72, 255.72], [-183.62, 257.98], [-186.21, 258.1], [-185.82, 266.92], [-191.36, 267.17], [-191.22, 270.2], [-195.93, 270.41], [-197.2, 242.1]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-197.48, 237.67], [-191.46, 231.09], [-178.57, 242.82], [-184.59, 249.39], [-197.48, 237.67]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-183.43, 236.4], [-182.33, 235.22], [-181.44, 236.04], [-177.53, 231.85], [-178.59, 230.87], [-177.96, 230.19], [-178.37, 229.82], [-174.25, 225.4], [-179.17, 220.85], [-183.29, 225.26], [-191.25, 217.88], [-191.61, 218.27], [-193.21, 216.78], [-196.56, 220.38], [-196.54, 224.26], [-193.71, 226.88], [-194.06, 227.27], [-190.08, 230.95], [-189.73, 230.57], [-183.43, 236.4]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-181.53, 215.81], [-176.42, 210.1], [-172.87, 213.27], [-169.8, 209.83], [-180.17, 200.61], [-183.2, 203.98], [-186.6, 200.96], [-192.14, 207.13], [-184.84, 213.62], [-184.46, 213.2], [-181.53, 215.81]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-192.83, 287.35], [-192.94, 285.01], [-194.05, 285.06], [-194.2, 282.0], [-193.09, 281.94], [-193.22, 279.22], [-184.18, 278.8], [-184.12, 280.24], [-181.5, 280.12], [-181.18, 286.8], [-192.83, 287.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1841.71, 2324.46], [1854.59, 2311.03], [1853.79, 2310.24], [1819.32, 2276.83], [1814.0, 2282.01], [1815.47, 2298.48], [1841.71, 2324.46]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-428.8, 375.01], [-421.54, 366.63], [-418.55, 369.21], [-415.24, 365.4], [-419.74, 361.53], [-417.34, 358.76], [-423.89, 353.11], [-429.01, 359.01], [-429.3, 358.76], [-437.16, 367.82], [-428.8, 375.01]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-440.16, 366.45], [-447.23, 360.09], [-436.97, 348.78], [-429.25, 355.73], [-435.83, 362.97], [-436.47, 362.38], [-440.16, 366.45]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-336.35, 461.79], [-344.12, 454.74], [-328.77, 437.92], [-321.0, 444.97], [-336.35, 461.79]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-346.42, 452.18], [-352.97, 446.32], [-350.9, 444.02], [-351.47, 443.5], [-341.12, 432.02], [-333.55, 438.8], [-337.28, 442.94], [-336.55, 443.6], [-338.19, 445.41], [-338.86, 444.82], [-343.82, 450.32], [-344.33, 449.86], [-346.42, 452.18]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-320.9, 443.17], [-334.27, 431.24], [-332.52, 429.29], [-336.26, 425.95], [-331.54, 420.7], [-323.01, 428.33], [-322.58, 427.85], [-318.28, 431.7], [-318.81, 432.29], [-316.04, 434.77], [-316.51, 435.29], [-315.01, 436.63], [-320.9, 443.17]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-309.43, 427.35], [-317.1, 420.25], [-308.85, 411.39], [-301.17, 418.49], [-309.43, 427.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-317.05, 411.52], [-323.81, 405.51], [-306.71, 386.43], [-299.95, 392.44], [-317.05, 411.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-324.63, 404.76], [-331.46, 398.66], [-314.14, 379.37], [-307.31, 385.47], [-324.63, 404.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-219.29, 402.26], [-219.62, 395.92], [-215.66, 395.72], [-215.85, 392.0], [-209.89, 391.7], [-209.37, 401.74], [-219.29, 402.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-215.8, 422.47], [-215.97, 418.87], [-220.72, 419.09], [-220.91, 414.89], [-219.89, 414.85], [-219.93, 413.95], [-217.67, 413.85], [-217.63, 414.74], [-210.78, 414.41], [-210.65, 417.21], [-207.42, 417.05], [-207.18, 422.06], [-215.8, 422.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-69.89, 566.21], [-73.1, 563.31], [-74.55, 564.9], [-80.16, 559.84], [-78.72, 558.25], [-79.37, 557.65], [-71.76, 549.28], [-70.36, 550.55], [-68.95, 549.01], [-65.68, 551.96], [-67.08, 553.5], [-62.29, 557.84], [-69.89, 566.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-85.2, 556.4], [-91.05, 551.08], [-89.59, 549.5], [-90.68, 548.51], [-86.67, 544.12], [-87.81, 543.09], [-85.14, 540.17], [-83.99, 541.2], [-79.51, 536.3], [-75.99, 539.5], [-74.61, 537.98], [-72.16, 540.2], [-73.55, 541.71], [-71.06, 543.97], [-81.63, 555.53], [-83.15, 554.15], [-85.2, 556.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-92.7, 548.13], [-94.63, 546.44], [-95.36, 547.28], [-98.66, 544.4], [-97.93, 543.57], [-98.2, 543.33], [-92.65, 537.01], [-93.73, 536.08], [-90.33, 532.21], [-87.91, 534.32], [-86.54, 532.75], [-82.38, 536.38], [-92.7, 548.13]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-49.44, 504.55], [-56.33, 498.35], [-52.39, 494.02], [-51.85, 494.52], [-45.66, 487.72], [-41.05, 491.88], [-43.57, 494.66], [-41.85, 496.21], [-49.44, 504.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-63.17, 494.37], [-67.96, 490.15], [-57.87, 478.79], [-54.52, 481.72], [-53.21, 480.26], [-49.86, 483.23], [-56.61, 490.85], [-58.54, 489.15], [-63.17, 494.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1.32, 438.76], [-17.69, 424.08], [-15.99, 422.19], [-17.33, 420.99], [-9.01, 411.78], [-7.43, 413.2], [-5.67, 411.26], [10.45, 425.71], [7.19, 429.32], [8.72, 430.7], [1.88, 438.29], [0.34, 436.91], [-1.32, 438.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-37.12, 463.35], [-46.64, 454.71], [-42.77, 450.48], [-40.5, 452.53], [-37.93, 449.73], [-34.62, 452.73], [-33.36, 451.35], [-29.43, 454.91], [-37.12, 463.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-27.52, 444.79], [-34.15, 438.8], [-30.72, 435.04], [-31.2, 434.6], [-29.74, 433.01], [-22.64, 439.43], [-27.52, 444.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-20.21, 438.84], [-22.74, 436.61], [-21.62, 435.35], [-25.37, 432.05], [-23.16, 429.57], [-24.18, 428.68], [-21.94, 426.17], [-20.93, 427.06], [-20.04, 426.07], [-13.41, 431.93], [-13.89, 432.47], [-12.13, 434.02], [-13.88, 435.99], [-12.04, 437.61], [-15.06, 441.01], [-19.03, 437.5], [-20.21, 438.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[14.51, 416.24], [3.42, 406.06], [5.76, 403.52], [5.11, 402.92], [7.34, 400.5], [8.0, 401.1], [9.01, 400.01], [21.48, 411.45], [16.33, 417.04], [14.95, 415.76], [14.51, 416.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[21.65, 409.07], [5.61, 393.98], [11.79, 387.46], [12.41, 388.05], [12.76, 387.67], [18.85, 393.39], [18.42, 393.85], [27.76, 402.63], [21.65, 409.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[26.37, 397.57], [12.09, 384.17], [17.5, 378.45], [18.82, 379.68], [19.08, 379.4], [32.04, 391.56], [26.37, 397.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-47.7, 412.09], [-49.03, 410.92], [-49.14, 411.06], [-58.78, 402.59], [-57.26, 400.87], [-57.81, 400.37], [-54.48, 396.62], [-53.92, 397.1], [-53.43, 396.56], [-43.88, 404.95], [-46.28, 407.66], [-44.86, 408.89], [-47.7, 412.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-44.08, 402.79], [-53.19, 394.53], [-49.0, 389.93], [-44.94, 393.6], [-42.13, 390.52], [-38.36, 393.94], [-42.23, 398.18], [-40.94, 399.36], [-44.08, 402.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-33.3, 394.82], [-45.6, 383.95], [-41.39, 379.23], [-29.09, 390.1], [-33.3, 394.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-38.77, 381.26], [-34.56, 376.54], [-24.53, 385.41], [-28.73, 390.13], [-38.77, 381.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-49.68, 356.14], [-60.43, 346.31], [-54.48, 339.85], [-42.71, 350.6], [-48.29, 356.67], [-49.31, 355.74], [-49.68, 356.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-42.19, 338.51], [-50.77, 330.77], [-45.53, 325.0], [-44.59, 325.85], [-44.12, 325.34], [-32.95, 335.41], [-37.99, 340.98], [-41.53, 337.78], [-42.19, 338.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-22.29, 382.66], [-29.84, 375.77], [-28.14, 373.92], [-31.44, 370.91], [-28.74, 367.97], [-17.89, 377.86], [-22.29, 382.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-15.75, 375.58], [-27.54, 365.03], [-26.63, 364.02], [-27.1, 363.59], [-23.67, 359.77], [-11.39, 370.73], [-15.75, 375.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-58.76, 562.15], [-62.58, 566.56], [-63.2, 566.03], [-66.14, 569.43], [-66.44, 569.18], [-68.2, 571.23], [-64.63, 574.31], [-64.2, 573.81], [-60.23, 577.22], [-52.12, 567.86], [-58.76, 562.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-50.08, 562.79], [-58.01, 555.77], [-55.06, 552.46], [-58.18, 549.69], [-55.06, 546.19], [-53.07, 547.95], [-52.42, 547.22], [-41.74, 556.67], [-45.77, 561.2], [-47.39, 559.77], [-50.08, 562.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-54.29, 539.67], [-51.34, 536.34], [-48.65, 538.72], [-47.59, 537.52], [-43.95, 540.72], [-43.33, 540.01], [-34.44, 547.83], [-39.53, 553.59], [-40.74, 552.52], [-41.06, 552.89], [-44.59, 549.79], [-45.11, 550.37], [-49.27, 546.71], [-48.21, 545.51], [-51.9, 542.27], [-51.65, 541.98], [-54.29, 539.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-31.7, 543.78], [-44.9, 531.87], [-37.61, 523.83], [-24.4, 535.75], [-31.7, 543.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-42.86, 513.59], [-44.47, 512.12], [-45.01, 512.7], [-47.66, 510.28], [-47.12, 509.69], [-48.65, 508.31], [-44.45, 503.75], [-44.98, 503.27], [-41.32, 499.3], [-40.94, 499.66], [-37.77, 496.21], [-31.85, 501.61], [-42.86, 513.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-28.4, 526.52], [-28.7, 526.25], [-29.72, 527.37], [-33.52, 523.9], [-32.49, 522.78], [-32.84, 522.45], [-28.49, 517.74], [-28.01, 518.18], [-21.06, 510.65], [-15.85, 515.41], [-17.31, 516.99], [-16.98, 517.3], [-22.95, 523.77], [-23.28, 523.47], [-24.83, 525.14], [-26.07, 524.0], [-28.4, 526.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-37.67, 517.41], [-39.78, 515.41], [-39.08, 514.69], [-40.87, 512.97], [-30.49, 502.19], [-25.75, 506.73], [-30.06, 511.21], [-30.9, 510.4], [-37.67, 517.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[9.75, 502.91], [5.72, 499.27], [4.58, 500.53], [1.01, 497.32], [10.1, 487.29], [17.7, 494.12], [9.75, 502.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1.71, 496.02], [-5.27, 489.88], [2.61, 480.99], [9.59, 487.13], [1.71, 496.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-6.39, 488.72], [-9.94, 485.43], [-10.17, 485.69], [-14.22, 481.94], [-8.06, 475.34], [-4.53, 478.59], [-4.3, 478.34], [-0.22, 482.1], [-6.39, 488.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[18.91, 486.9], [7.04, 476.22], [12.78, 469.89], [24.65, 480.56], [24.14, 481.12], [25.27, 482.14], [20.26, 487.66], [19.13, 486.65], [18.91, 486.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[26.62, 480.14], [23.43, 477.33], [23.0, 477.83], [18.74, 474.09], [19.18, 473.6], [15.71, 470.54], [20.52, 465.11], [31.43, 474.71], [26.62, 480.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[34.41, 472.02], [16.68, 455.99], [24.66, 447.23], [41.6, 462.54], [39.46, 464.91], [40.23, 465.62], [34.41, 472.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[46.02, 458.73], [31.11, 445.97], [35.77, 440.57], [49.5, 452.33], [48.37, 453.64], [49.54, 454.64], [46.02, 458.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[52.15, 450.04], [40.43, 439.49], [42.77, 436.91], [43.93, 437.96], [46.47, 435.16], [57.03, 444.67], [52.15, 450.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[68.55, 430.32], [55.83, 417.98], [61.05, 412.63], [73.77, 424.97], [68.55, 430.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[60.13, 442.26], [45.75, 429.16], [48.7, 425.94], [50.43, 427.5], [53.15, 424.54], [66.74, 436.91], [64.63, 439.22], [63.71, 438.38], [60.13, 442.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-101.51, 350.17], [-102.95, 348.93], [-103.16, 349.18], [-110.45, 342.87], [-109.03, 341.24], [-112.17, 338.52], [-108.46, 334.27], [-97.79, 343.51], [-98.18, 343.95], [-96.98, 344.99], [-101.51, 350.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-95.16, 342.35], [-106.56, 332.62], [-100.84, 325.97], [-89.44, 335.68], [-95.16, 342.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-87.73, 336.56], [-101.65, 324.6], [-96.06, 318.12], [-83.12, 329.21], [-84.35, 330.64], [-83.35, 331.49], [-87.73, 336.56]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-79.26, 326.22], [-97.33, 309.96], [-88.07, 299.74], [-70.0, 316.01], [-79.26, 326.22]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-68.57, 312.0], [-80.77, 300.8], [-74.85, 294.4], [-62.64, 305.6], [-68.57, 312.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-68.65, 483.86], [-74.03, 478.8], [-71.94, 476.58], [-72.77, 475.8], [-69.51, 472.36], [-70.24, 471.67], [-67.92, 469.22], [-64.55, 472.4], [-63.4, 471.17], [-59.82, 474.54], [-68.65, 483.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-20.4, 475.91], [-24.8, 472.13], [-24.42, 471.69], [-25.81, 470.51], [-20.22, 464.02], [-14.42, 468.98], [-20.4, 475.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-26.72, 466.42], [-33.12, 460.78], [-28.66, 455.74], [-22.25, 461.39], [-26.72, 466.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[38.64, 383.09], [24.37, 370.02], [28.54, 365.48], [29.5, 366.36], [30.78, 364.98], [32.23, 364.97], [44.77, 376.45], [38.64, 383.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[44.18, 373.88], [36.1, 366.45], [36.5, 366.0], [31.74, 361.63], [37.17, 355.76], [42.76, 360.9], [43.27, 360.35], [47.63, 364.38], [47.13, 364.91], [50.02, 367.58], [44.18, 373.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[52.03, 366.57], [41.1, 356.3], [46.31, 350.81], [57.23, 361.08], [52.03, 366.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[55.14, 357.8], [45.5, 348.84], [50.38, 343.64], [60.02, 352.59], [55.14, 357.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[66.19, 353.67], [58.45, 346.7], [58.92, 346.17], [51.48, 339.46], [56.34, 334.1], [68.28, 344.85], [67.83, 345.34], [71.09, 348.27], [68.99, 350.58], [70.12, 351.6], [68.41, 353.48], [67.28, 352.46], [66.19, 353.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[79.48, 359.4], [74.47, 354.88], [76.02, 353.18], [73.17, 350.61], [82.87, 339.97], [82.86, 339.19], [84.11, 337.81], [85.98, 337.68], [87.43, 338.97], [89.1, 337.13], [97.34, 344.58], [92.01, 350.43], [90.37, 348.95], [85.69, 354.07], [85.86, 356.2], [83.9, 358.33], [81.61, 358.38], [80.95, 357.78], [79.48, 359.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[93.53, 366.47], [87.45, 360.81], [92.78, 355.15], [92.22, 354.63], [99.37, 347.02], [105.99, 353.19], [93.53, 366.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[85.91, 407.5], [73.42, 395.88], [81.32, 387.45], [93.81, 399.06], [85.91, 407.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[78.4, 419.34], [67.37, 409.46], [73.38, 402.8], [84.41, 412.67], [83.75, 413.41], [85.37, 414.85], [80.4, 420.37], [78.78, 418.92], [78.4, 419.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[116.92, 382.66], [109.42, 375.63], [120.56, 363.83], [125.17, 368.15], [125.53, 367.78], [128.77, 370.82], [125.78, 373.98], [125.43, 373.66], [116.92, 382.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[105.05, 374.17], [99.16, 368.74], [100.99, 366.76], [99.75, 365.61], [110.48, 354.05], [117.95, 360.94], [112.61, 366.7], [112.27, 366.4], [105.05, 374.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[102.77, 391.76], [96.56, 386.16], [103.2, 378.84], [109.42, 384.45], [107.0, 387.1], [108.04, 388.03], [105.76, 390.54], [104.73, 389.62], [102.77, 391.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[69.84, 503.77], [54.2, 489.41], [54.77, 488.79], [53.99, 488.08], [56.13, 485.75], [55.71, 485.37], [59.53, 481.24], [59.87, 481.55], [61.54, 479.75], [62.39, 480.54], [64.67, 478.08], [64.13, 477.58], [68.02, 473.38], [68.56, 473.87], [74.37, 467.59], [72.81, 466.16], [76.82, 461.82], [82.18, 466.74], [81.94, 467.0], [83.82, 468.73], [82.71, 469.95], [83.7, 470.86], [84.22, 470.3], [87.65, 473.45], [88.25, 472.79], [90.94, 475.26], [89.82, 476.47], [91.41, 477.93], [92.77, 476.46], [97.13, 480.46], [95.8, 481.89], [98.82, 484.67], [90.5, 493.67], [93.44, 496.36], [87.41, 502.89], [84.3, 500.04], [83.25, 501.18], [80.36, 498.53], [81.42, 497.4], [78.34, 494.57], [74.6, 498.62], [75.69, 499.62], [73.32, 502.18], [72.23, 501.19], [69.84, 503.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[54.82, 506.42], [44.99, 497.29], [50.68, 491.21], [60.5, 500.33], [54.82, 506.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[47.53, 517.43], [44.3, 514.53], [43.62, 515.28], [36.48, 508.89], [39.82, 505.19], [39.12, 504.56], [40.96, 502.53], [42.81, 504.2], [43.17, 503.8], [49.55, 509.52], [48.75, 510.41], [51.57, 512.94], [47.53, 517.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[25.26, 520.18], [33.44, 511.21], [44.56, 521.27], [36.38, 530.24], [31.14, 525.49], [30.46, 526.25], [27.96, 523.97], [28.63, 523.23], [25.26, 520.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[49.0, 537.96], [40.77, 530.24], [50.72, 519.7], [58.94, 527.42], [49.0, 537.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-32.23, 604.05], [-42.84, 594.35], [-35.73, 586.63], [-25.12, 596.34], [-32.23, 604.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-25.63, 592.89], [-35.81, 583.14], [-29.7, 576.82], [-28.02, 578.42], [-27.14, 577.52], [-18.65, 585.66], [-25.63, 592.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-15.24, 583.31], [-24.17, 575.05], [-23.34, 574.13], [-25.31, 572.31], [-19.78, 566.38], [-16.1, 569.78], [-14.87, 568.46], [-10.28, 572.72], [-11.37, 573.89], [-8.06, 576.96], [-10.32, 579.39], [-11.0, 578.76], [-15.24, 583.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-13.33, 614.89], [-13.86, 614.4], [-15.82, 616.51], [-26.4, 606.75], [-24.44, 604.64], [-25.15, 603.98], [-17.63, 595.89], [-14.94, 598.37], [-12.44, 595.68], [-6.01, 601.61], [-8.56, 604.37], [-5.87, 606.85], [-13.33, 614.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-0.5, 627.31], [-11.27, 617.76], [-1.28, 606.57], [5.6, 612.68], [4.71, 613.67], [8.6, 617.12], [-0.5, 627.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[9.65, 637.58], [9.1, 637.08], [6.98, 639.39], [1.0, 633.94], [3.11, 631.63], [2.37, 630.96], [12.1, 620.34], [19.38, 626.96], [9.65, 637.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[16.59, 644.84], [16.21, 644.51], [14.93, 645.95], [9.84, 641.42], [11.13, 639.99], [10.69, 639.59], [20.18, 628.99], [22.9, 631.42], [24.59, 629.52], [27.78, 632.36], [16.59, 644.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[23.65, 651.48], [17.06, 645.51], [20.04, 642.23], [19.73, 641.94], [21.91, 639.55], [22.23, 639.84], [24.04, 637.85], [30.63, 643.82], [23.65, 651.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[30.97, 657.62], [24.24, 651.57], [32.84, 642.08], [37.87, 646.61], [35.75, 648.95], [37.44, 650.47], [30.97, 657.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[44.57, 668.57], [44.29, 668.29], [42.59, 670.09], [37.03, 664.88], [38.72, 663.09], [38.15, 662.55], [45.85, 654.38], [52.28, 660.4], [44.57, 668.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[23.8, 715.38], [19.66, 711.62], [20.03, 711.21], [17.49, 708.92], [17.98, 708.38], [16.78, 707.31], [17.84, 706.14], [16.95, 705.34], [20.06, 701.9], [21.99, 702.03], [25.36, 698.36], [33.01, 705.3], [23.8, 715.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[38.8, 726.14], [38.16, 725.55], [36.12, 727.77], [29.7, 721.93], [31.48, 720.0], [30.7, 719.29], [40.79, 708.31], [48.62, 715.45], [38.8, 726.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[59.55, 681.73], [50.53, 673.58], [51.27, 672.76], [49.15, 670.84], [54.26, 665.23], [56.38, 667.14], [57.07, 666.4], [60.63, 669.61], [62.56, 667.5], [68.02, 672.43], [59.55, 681.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[74.4, 695.5], [65.63, 687.18], [72.34, 680.16], [73.5, 681.26], [79.36, 675.15], [86.96, 682.37], [74.4, 695.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[82.43, 707.34], [76.48, 701.98], [86.3, 691.15], [92.25, 696.5], [82.43, 707.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[89.44, 713.01], [83.95, 708.0], [93.17, 697.99], [98.65, 703.01], [89.44, 713.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[101.15, 700.09], [92.14, 691.84], [97.82, 685.7], [106.83, 693.95], [101.15, 700.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-72.44, 241.14], [-76.39, 237.42], [-76.13, 237.15], [-87.99, 226.02], [-82.54, 220.26], [-66.73, 235.09], [-67.21, 235.6], [-66.43, 236.32], [-69.2, 239.25], [-69.98, 238.52], [-72.44, 241.14]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-82.65, 219.62], [-76.3, 212.75], [-62.93, 225.02], [-69.28, 231.9], [-82.65, 219.62]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-64.64, 217.07], [-73.43, 208.78], [-67.41, 202.46], [-64.21, 205.49], [-59.57, 200.61], [-54.27, 205.62], [-58.85, 210.43], [-58.57, 210.69], [-64.64, 217.07]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-46.23, 232.4], [-52.68, 226.63], [-42.18, 214.99], [-35.73, 220.76], [-46.23, 232.4]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-39.64, 241.11], [-46.72, 234.66], [-34.77, 221.67], [-27.69, 228.13], [-39.64, 241.11]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-34.04, 245.97], [-37.86, 242.44], [-34.07, 238.37], [-34.37, 238.09], [-27.67, 230.89], [-21.43, 236.66], [-28.01, 243.74], [-30.13, 241.78], [-34.04, 245.97]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-23.72, 252.56], [-24.08, 252.23], [-24.84, 253.07], [-28.44, 249.83], [-27.69, 248.99], [-30.3, 246.64], [-21.53, 236.95], [-14.95, 242.86], [-23.72, 252.56]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-15.81, 261.74], [-19.99, 257.93], [-20.62, 258.6], [-22.97, 256.46], [-22.34, 255.78], [-23.1, 255.09], [-13.41, 244.53], [-7.54, 249.88], [-7.51, 251.27], [-8.71, 252.58], [-8.34, 252.93], [-8.29, 253.56], [-15.81, 261.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-26.77, 268.59], [-36.67, 259.54], [-31.84, 254.28], [-21.92, 263.33], [-26.77, 268.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-35.28, 275.5], [-47.04, 264.74], [-44.43, 261.91], [-43.62, 262.65], [-40.91, 259.7], [-34.77, 265.32], [-35.45, 266.07], [-30.64, 270.47], [-35.28, 275.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-67.85, 290.53], [-65.19, 292.93], [-64.77, 292.47], [-60.2, 296.58], [-60.58, 297.01], [-57.3, 299.97], [-62.19, 305.35], [-72.7, 295.88], [-67.85, 290.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-54.25, 296.57], [-65.17, 287.02], [-59.99, 281.14], [-49.07, 290.69], [-54.25, 296.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-55.31, 274.73], [-43.94, 284.86], [-48.93, 290.42], [-57.7, 282.6], [-55.64, 280.3], [-58.24, 277.99], [-55.31, 274.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-41.39, 282.92], [-52.52, 273.12], [-47.88, 267.89], [-41.41, 273.59], [-41.24, 273.39], [-36.58, 277.51], [-41.39, 282.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-20.18, 316.45], [-28.65, 308.85], [-20.22, 299.54], [-11.76, 307.15], [-20.18, 316.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-4.91, 303.07], [-16.03, 293.19], [-10.54, 287.05], [-7.45, 289.78], [-7.12, 289.42], [-3.14, 292.95], [-3.47, 293.32], [0.59, 296.92], [-4.91, 303.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2.57, 294.89], [-0.52, 292.08], [-0.75, 292.33], [-4.62, 288.8], [-4.39, 288.55], [-9.12, 284.24], [-3.59, 278.21], [8.11, 288.86], [2.57, 294.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[41.77, 259.95], [27.25, 246.88], [29.68, 244.2], [29.24, 243.82], [31.17, 241.69], [31.6, 242.08], [34.37, 239.03], [48.89, 252.1], [41.77, 259.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[48.29, 248.95], [39.83, 241.12], [40.25, 240.67], [35.96, 236.69], [41.73, 230.5], [45.04, 233.57], [45.53, 233.05], [50.08, 237.26], [49.75, 237.61], [54.64, 242.14], [48.29, 248.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[57.47, 238.87], [47.93, 230.18], [48.26, 229.82], [44.15, 226.08], [49.61, 220.13], [63.26, 232.57], [57.47, 238.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[67.49, 278.73], [64.31, 275.9], [63.62, 276.67], [57.33, 271.05], [61.54, 266.37], [64.34, 268.88], [65.79, 267.26], [72.46, 273.22], [67.49, 278.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[76.44, 271.44], [64.52, 260.91], [71.65, 252.89], [83.57, 263.43], [76.44, 271.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[85.84, 261.65], [81.94, 257.95], [81.58, 258.32], [77.6, 254.56], [77.97, 254.17], [74.97, 251.33], [79.76, 246.32], [82.56, 248.97], [83.42, 248.07], [87.45, 251.89], [86.59, 252.79], [90.63, 256.63], [85.84, 261.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[100.5, 248.26], [86.86, 235.92], [92.67, 229.55], [106.31, 241.89], [100.5, 248.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-102.55, 131.15], [-105.83, 128.4], [-101.98, 123.83], [-102.91, 123.05], [-98.29, 117.55], [-92.65, 122.25], [-94.02, 123.88], [-89.49, 127.65], [-95.15, 134.37], [-97.9, 132.07], [-100.44, 135.08], [-101.46, 134.23], [-102.69, 135.7], [-104.85, 133.88], [-102.55, 131.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[352.16, 303.26], [366.17, 316.22], [363.84, 318.76], [364.59, 319.41], [341.33, 344.59], [341.14, 344.81], [326.41, 331.46], [352.16, 303.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[380.73, 332.45], [356.54, 358.39], [341.33, 344.59], [364.59, 319.41], [365.6, 318.56], [380.73, 332.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[353.0, 192.83], [333.73, 175.96], [361.74, 145.27], [373.13, 155.45], [378.75, 160.52], [377.15, 162.2], [375.56, 163.88], [377.92, 165.99], [353.0, 192.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1513.81, -1346.8], [-1507.8, -1353.35], [-1496.87, -1343.39], [-1495.37, -1345.03], [-1478.97, -1330.11], [-1488.23, -1320.01], [-1497.57, -1328.5], [-1499.5, -1326.39], [-1506.09, -1332.38], [-1506.72, -1332.96], [-1503.03, -1336.99], [-1511.82, -1344.99], [-1513.81, -1346.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2594.95, -868.69], [-2585.03, -880.38], [-2581.54, -877.4], [-2576.73, -882.99], [-2573.82, -880.49], [-2572.07, -882.53], [-2554.83, -867.77], [-2553.59, -866.7], [-2554.93, -865.13], [-2548.41, -859.55], [-2546.82, -861.4], [-2533.75, -850.2], [-2568.59, -849.01], [-2574.58, -854.13], [-2575.92, -852.57], [-2594.95, -868.69]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-464.43, -482.18], [-433.36, -453.58], [-446.25, -439.66], [-431.16, -425.77], [-398.3, -461.2], [-444.47, -503.7], [-462.37, -484.4], [-464.43, -482.18]], "holes": []}, "height": 38.5}, {"shape": {"outer": [[-1423.84, -136.41], [-1422.98, -136.44], [-1422.94, -133.3], [-1423.24, -133.29], [-1423.19, -132.38], [-1420.3, -132.48], [-1420.29, -132.2], [-1372.18, -134.45], [-1372.64, -142.78], [-1371.43, -142.82], [-1371.75, -149.58], [-1372.85, -149.54], [-1373.13, -157.53], [-1388.96, -156.84], [-1389.0, -157.55], [-1393.91, -157.33], [-1393.96, -156.34], [-1403.53, -155.88], [-1403.67, -156.87], [-1408.49, -156.74], [-1408.53, -155.74], [-1421.34, -155.16], [-1421.33, -155.03], [-1424.4, -154.98], [-1424.38, -153.95], [-1423.93, -153.98], [-1423.85, -150.66], [-1424.42, -150.64], [-1423.84, -136.41]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[-87.01, 144.97], [-81.95, 149.15], [-71.79, 138.92], [-78.73, 133.1], [-80.99, 135.17], [-82.68, 135.78], [-84.79, 138.55], [-84.75, 139.9], [-86.91, 142.49], [-85.79, 143.76], [-87.01, 144.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-74.37, 157.26], [-62.43, 144.68], [-66.3, 140.94], [-67.79, 142.47], [-70.25, 140.41], [-80.74, 151.73], [-74.37, 157.26]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-63.56, 163.46], [-63.62, 161.33], [-54.67, 151.17], [-60.99, 146.2], [-67.99, 153.77], [-67.58, 154.33], [-71.64, 158.51], [-66.36, 163.45], [-63.56, 163.46]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-68.49, 137.04], [-53.92, 149.57], [-47.49, 142.67], [-61.35, 129.39], [-68.49, 137.04]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-46.76, 138.25], [-37.98, 129.87], [-52.25, 117.02], [-60.12, 125.56], [-46.76, 138.25]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[16.51, 106.28], [37.23, 125.52], [17.67, 146.44], [11.09, 140.32], [8.22, 143.39], [5.89, 141.22], [0.22, 147.28], [-8.29, 139.21], [-11.53, 136.27], [-0.48, 124.46], [16.51, 106.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-8.29, 139.21], [-20.96, 152.48], [-32.23, 164.29], [-34.11, 166.27], [-26.41, 173.56], [-27.09, 174.27], [-19.97, 181.03], [-19.24, 180.26], [-12.42, 186.72], [-0.11, 173.84], [-11.01, 163.51], [2.46, 149.4], [0.22, 147.28], [-8.29, 139.21]], "holes": []}, "height": 28.0}, {"shape": {"outer": [[-51.71, 180.08], [-40.89, 168.33], [-13.58, 193.32], [-24.32, 204.96], [-32.88, 197.12], [-32.66, 196.88], [-44.34, 186.19], [-44.65, 186.54], [-51.71, 180.08]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-16.66, 205.4], [-16.56, 207.14], [-14.95, 208.59], [-13.13, 208.59], [-15.21, 210.86], [-11.97, 213.79], [-10.32, 211.97], [-7.1, 214.89], [1.14, 205.86], [-8.84, 196.83], [-16.66, 205.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-4.91, 222.37], [4.04, 230.36], [4.28, 230.1], [6.01, 231.64], [11.56, 225.46], [9.84, 223.92], [10.3, 223.4], [1.34, 215.41], [-4.91, 222.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[12.82, 223.9], [19.29, 216.88], [8.53, 207.04], [6.21, 209.55], [5.31, 208.72], [1.16, 213.23], [12.82, 223.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[10.35, 287.98], [-2.79, 276.25], [8.96, 263.19], [22.09, 274.92], [10.35, 287.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[21.95, 279.24], [47.86, 302.55], [37.14, 314.37], [11.24, 291.06], [21.95, 279.24]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[63.15, 325.5], [76.3, 337.54], [76.1, 337.76], [78.28, 339.75], [75.34, 342.93], [73.24, 341.0], [71.04, 343.37], [57.83, 331.26], [63.15, 325.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[71.89, 331.19], [77.9, 324.7], [70.58, 317.95], [64.56, 324.44], [71.89, 331.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1110.02, 469.62], [1116.49, 462.75], [1112.0, 458.55], [1105.53, 465.4], [1110.02, 469.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1118.05, 450.05], [1112.65, 444.9], [1109.92, 447.75], [1109.44, 447.28], [1105.9, 450.97], [1106.39, 451.42], [1103.5, 454.43], [1103.78, 454.7], [1102.9, 455.61], [1104.59, 457.22], [1105.47, 456.31], [1108.62, 459.32], [1111.51, 456.3], [1111.78, 456.56], [1118.05, 450.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1069.83, 425.76], [1073.73, 421.54], [1074.44, 422.18], [1081.47, 414.56], [1075.09, 408.71], [1064.15, 420.55], [1069.83, 425.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1080.18, 444.02], [1088.47, 434.87], [1087.84, 434.31], [1089.63, 432.33], [1084.98, 428.16], [1074.9, 439.28], [1080.18, 444.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1098.22, 453.79], [1102.09, 449.42], [1102.38, 449.67], [1106.4, 445.13], [1100.68, 440.08], [1092.77, 448.99], [1098.22, 453.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1095.94, 444.37], [1102.31, 437.12], [1095.26, 430.98], [1094.73, 431.59], [1094.23, 431.15], [1090.28, 435.64], [1093.46, 438.42], [1091.58, 440.56], [1095.94, 444.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1072.61, 409.63], [1067.04, 404.92], [1059.53, 413.73], [1059.83, 413.97], [1058.33, 415.74], [1063.6, 420.2], [1072.61, 409.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1050.11, 465.59], [1059.46, 455.18], [1054.38, 450.66], [1051.01, 454.41], [1050.16, 453.65], [1044.18, 460.3], [1050.11, 465.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1064.24, 474.51], [1071.55, 466.39], [1065.79, 461.25], [1066.37, 460.6], [1062.32, 456.98], [1053.45, 466.86], [1057.3, 470.29], [1048.77, 479.78], [1048.93, 479.93], [1048.12, 480.83], [1052.42, 484.67], [1053.19, 483.81], [1056.37, 486.65], [1065.93, 476.02], [1064.24, 474.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1068.7, 507.81], [1055.59, 496.31], [1076.09, 473.12], [1087.43, 483.08], [1078.99, 492.63], [1080.75, 494.18], [1068.7, 507.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1319.0, 722.68], [1328.22, 730.79], [1342.11, 715.1], [1332.88, 706.99], [1319.0, 722.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3056.02, -1263.8], [-3043.16, -1278.47], [-3032.57, -1269.24], [-3045.44, -1254.58], [-3056.02, -1263.8]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3038.04, -1246.55], [-3016.68, -1270.38], [-3007.51, -1262.23], [-3028.86, -1238.39], [-3038.04, -1246.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3012.48, -1224.83], [-2994.08, -1247.11], [-2978.82, -1234.57], [-2984.96, -1227.15], [-2983.08, -1225.61], [-2984.86, -1223.47], [-2983.34, -1222.23], [-2987.21, -1217.54], [-2985.7, -1216.29], [-2989.93, -1211.18], [-2991.87, -1212.78], [-2994.27, -1209.89], [-3012.48, -1224.83]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-2915.03, -1143.24], [-2908.96, -1138.11], [-2892.38, -1157.62], [-2898.45, -1162.73], [-2915.03, -1143.24]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2908.96, -1138.11], [-2902.79, -1132.59], [-2901.37, -1134.16], [-2899.87, -1135.94], [-2885.51, -1152.82], [-2881.57, -1157.44], [-2887.95, -1162.82], [-2908.96, -1138.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2899.87, -1135.94], [-2885.51, -1152.82], [-2870.91, -1140.5], [-2874.68, -1136.05], [-2886.87, -1121.72], [-2889.19, -1123.69], [-2889.81, -1122.95], [-2892.38, -1125.12], [-2891.53, -1126.12], [-2895.84, -1129.75], [-2897.16, -1128.19], [-2900.1, -1130.67], [-2898.91, -1132.08], [-2901.37, -1134.16], [-2899.87, -1135.94]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2886.87, -1121.72], [-2874.68, -1136.05], [-2867.26, -1129.78], [-2869.04, -1127.67], [-2879.43, -1115.45], [-2886.87, -1121.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2879.43, -1115.45], [-2872.9, -1109.94], [-2862.51, -1122.15], [-2869.04, -1127.67], [-2879.43, -1115.45]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2859.53, -1094.67], [-2852.96, -1089.06], [-2847.91, -1094.92], [-2847.21, -1095.75], [-2848.06, -1096.47], [-2845.17, -1099.82], [-2844.15, -1098.95], [-2840.25, -1103.49], [-2846.98, -1109.25], [-2859.53, -1094.67]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2852.96, -1089.06], [-2847.91, -1094.92], [-2846.81, -1094.0], [-2839.63, -1102.53], [-2833.91, -1097.75], [-2834.36, -1097.22], [-2833.66, -1096.64], [-2827.26, -1104.21], [-2821.64, -1099.5], [-2832.6, -1086.53], [-2833.03, -1086.9], [-2839.82, -1078.87], [-2840.0, -1079.02], [-2840.94, -1078.88], [-2843.37, -1080.88], [-2843.37, -1081.99], [-2845.39, -1083.68], [-2845.91, -1083.05], [-2852.96, -1089.06]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2837.99, -1077.86], [-2830.71, -1086.52], [-2830.19, -1086.08], [-2825.75, -1091.38], [-2819.63, -1086.29], [-2831.33, -1072.32], [-2832.02, -1072.88], [-2832.99, -1072.53], [-2835.55, -1074.63], [-2835.47, -1075.76], [-2837.99, -1077.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2831.03, -1070.3], [-2825.22, -1077.12], [-2821.72, -1074.17], [-2818.63, -1077.8], [-2818.12, -1077.63], [-2817.26, -1078.64], [-2816.83, -1078.28], [-2815.29, -1080.07], [-2819.28, -1083.46], [-2813.21, -1090.56], [-2806.42, -1084.79], [-2808.51, -1082.34], [-2805.34, -1079.66], [-2811.11, -1072.92], [-2810.19, -1072.13], [-2813.62, -1068.13], [-2814.67, -1069.02], [-2817.51, -1065.7], [-2818.24, -1066.32], [-2821.62, -1062.36], [-2831.03, -1070.3]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2029.31, -738.13], [-2029.8, -747.07], [-2010.62, -748.14], [-2010.13, -739.18], [-2029.31, -738.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2039.49, -736.59], [-2045.88, -736.35], [-2046.25, -746.28], [-2039.86, -746.52], [-2039.49, -736.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2050.45, -735.88], [-2046.53, -736.04], [-2046.93, -745.65], [-2050.85, -745.49], [-2050.45, -735.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2692.5, -568.88], [-2676.52, -569.39], [-2676.58, -571.32], [-2675.97, -571.34], [-2676.31, -582.08], [-2676.92, -582.06], [-2676.97, -583.7], [-2681.31, -583.57], [-2681.45, -587.94], [-2677.23, -588.07], [-2677.28, -589.92], [-2676.54, -589.94], [-2676.88, -600.73], [-2677.63, -600.71], [-2677.68, -602.34], [-2693.55, -601.83], [-2693.3, -593.94], [-2685.82, -594.17], [-2685.74, -591.53], [-2691.12, -591.37], [-2690.76, -579.85], [-2685.62, -580.02], [-2685.53, -577.17], [-2692.76, -576.94], [-2692.5, -568.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2177.96, 1781.43], [2192.05, 1767.34], [2183.76, 1759.12], [2169.67, 1773.2], [2177.96, 1781.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2163.91, 1767.48], [2177.99, 1753.39], [2183.76, 1759.12], [2169.67, 1773.2], [2163.91, 1767.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2194.79, 1705.74], [2200.98, 1682.7], [2202.09, 1678.6], [2202.66, 1678.72], [2208.54, 1679.96], [2209.71, 1675.42], [2213.22, 1676.38], [2216.06, 1677.14], [2215.35, 1679.36], [2207.56, 1709.19], [2194.79, 1705.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2207.56, 1709.19], [2221.1, 1712.83], [2226.95, 1691.66], [2222.05, 1690.46], [2220.57, 1690.1], [2223.16, 1681.1], [2215.35, 1679.36], [2207.56, 1709.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2415.87, 1840.35], [2424.5, 1805.54], [2426.88, 1806.13], [2431.28, 1788.39], [2438.12, 1790.08], [2445.3, 1792.0], [2459.48, 1795.33], [2454.97, 1813.54], [2446.14, 1811.37], [2445.77, 1812.88], [2437.62, 1845.7], [2419.73, 1841.3], [2415.87, 1840.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2670.46, 1824.91], [2674.08, 1805.88], [2685.65, 1808.74], [2685.0, 1811.91], [2687.04, 1812.32], [2685.77, 1818.56], [2689.32, 1819.29], [2687.71, 1827.88], [2686.59, 1832.51], [2676.35, 1829.39], [2670.46, 1824.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2745.01, 1873.43], [2744.85, 1867.89], [2748.62, 1868.81], [2753.65, 1870.03], [2752.82, 1875.61], [2747.86, 1874.23], [2745.01, 1873.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2818.47, 1887.59], [2824.49, 1889.06], [2819.9, 1907.74], [2813.88, 1906.27], [2818.47, 1887.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2819.9, 1907.74], [2824.49, 1889.06], [2832.3, 1890.94], [2825.74, 1916.38], [2823.48, 1924.84], [2816.58, 1920.55], [2819.9, 1907.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2476.95, 1556.73], [2493.65, 1556.42], [2512.34, 1556.72], [2511.84, 1527.23], [2482.99, 1526.63], [2482.47, 1545.32], [2482.44, 1546.13], [2477.63, 1545.93], [2476.95, 1556.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2433.11, 1602.37], [2513.85, 1657.36], [2518.49, 1655.05], [2513.46, 1565.72], [2494.37, 1566.47], [2493.65, 1556.42], [2476.95, 1556.73], [2465.3, 1548.79], [2459.01, 1544.5], [2446.45, 1562.45], [2451.09, 1565.89], [2431.95, 1596.09], [2433.11, 1602.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[8.43, 536.39], [15.8, 542.9], [15.28, 543.49], [21.12, 548.66], [20.41, 549.46], [25.17, 553.68], [25.79, 552.98], [32.86, 559.22], [19.28, 574.48], [12.66, 568.63], [12.93, 568.35], [9.83, 565.61], [6.96, 568.84], [9.63, 571.19], [3.22, 578.38], [-2.11, 573.66], [-2.38, 573.97], [-9.24, 567.9], [-6.79, 565.15], [-8.01, 564.07], [-7.51, 563.52], [-13.17, 558.51], [-10.54, 555.54], [-9.47, 556.48], [-6.38, 553.02], [-5.74, 553.58], [-2.33, 549.73], [-3.89, 548.35], [-0.64, 544.69], [-0.13, 545.13], [4.68, 539.73], [5.12, 540.12], [8.43, 536.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[35.66, 608.36], [35.21, 607.95], [34.49, 608.74], [31.7, 606.19], [32.42, 605.41], [27.55, 600.96], [26.17, 602.46], [22.95, 599.53], [24.33, 598.02], [17.35, 591.66], [23.89, 584.54], [27.53, 587.87], [30.34, 584.81], [20.78, 576.1], [30.76, 565.24], [31.2, 565.64], [34.67, 561.87], [41.19, 567.82], [40.87, 568.16], [45.21, 572.12], [45.58, 571.72], [52.11, 577.68], [51.75, 578.08], [55.05, 581.09], [55.31, 580.8], [58.4, 583.62], [35.66, 608.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[63.03, 624.98], [60.36, 622.52], [59.39, 623.56], [56.68, 621.07], [57.31, 620.39], [54.24, 617.58], [53.79, 618.06], [49.46, 614.08], [53.18, 610.06], [53.38, 610.25], [55.88, 607.53], [54.5, 606.26], [54.33, 606.44], [47.93, 600.56], [50.77, 597.49], [50.37, 597.14], [60.89, 585.76], [64.54, 589.11], [64.31, 589.36], [67.11, 591.93], [67.51, 591.49], [71.88, 595.5], [71.4, 596.03], [72.81, 597.32], [73.26, 596.83], [77.89, 601.08], [77.44, 601.57], [79.58, 603.53], [80.0, 603.08], [82.77, 605.61], [79.94, 608.67], [79.68, 608.43], [77.97, 610.27], [78.49, 610.74], [72.28, 617.47], [71.76, 616.99], [67.18, 621.96], [66.44, 621.28], [63.03, 624.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[91.65, 643.29], [77.11, 630.17], [89.18, 616.91], [103.71, 630.04], [91.65, 643.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[108.7, 691.96], [98.84, 682.84], [104.52, 676.74], [110.98, 682.71], [110.52, 683.2], [113.93, 686.34], [108.7, 691.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[113.29, 684.08], [102.15, 673.82], [104.59, 671.19], [103.41, 670.11], [105.86, 667.48], [107.03, 668.56], [108.41, 667.07], [119.55, 677.32], [119.09, 677.82], [120.26, 678.9], [114.72, 684.88], [113.55, 683.8], [113.29, 684.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[142.94, 624.67], [136.59, 618.7], [143.22, 611.71], [144.66, 613.05], [147.99, 609.54], [151.85, 613.17], [148.71, 616.47], [149.77, 617.47], [142.94, 624.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[152.24, 629.85], [151.95, 629.59], [150.8, 630.83], [145.74, 626.16], [146.98, 624.81], [146.68, 624.53], [156.69, 613.74], [162.35, 618.94], [152.24, 629.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[133.33, 615.69], [123.28, 606.68], [143.08, 584.77], [153.12, 593.78], [133.33, 615.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[120.81, 604.36], [113.87, 598.07], [126.98, 583.73], [133.92, 590.02], [120.81, 604.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[115.9, 594.18], [115.69, 593.99], [113.43, 596.45], [107.68, 591.19], [109.95, 588.73], [109.67, 588.47], [121.06, 576.15], [127.28, 581.85], [115.9, 594.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[104.73, 589.56], [104.4, 589.26], [103.03, 590.74], [98.11, 586.21], [99.47, 584.74], [99.06, 584.35], [106.44, 576.38], [107.08, 576.97], [108.32, 575.62], [111.48, 578.52], [110.23, 579.87], [112.1, 581.59], [104.73, 589.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[98.35, 584.13], [92.87, 579.14], [97.04, 574.61], [96.53, 574.15], [99.28, 571.15], [99.78, 571.6], [100.28, 571.07], [105.75, 576.06], [98.35, 584.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[62.31, 547.28], [54.55, 540.49], [64.2, 529.53], [71.96, 536.32], [62.31, 547.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[72.27, 553.86], [71.73, 553.38], [70.79, 554.46], [69.23, 553.1], [70.17, 552.03], [67.51, 549.71], [72.82, 543.67], [77.57, 547.81], [72.27, 553.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[83.49, 571.27], [77.91, 566.5], [85.56, 557.63], [91.14, 562.4], [83.49, 571.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[90.14, 576.36], [85.28, 572.19], [87.69, 569.4], [86.71, 568.56], [91.04, 563.55], [96.87, 568.54], [90.14, 576.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-8.74, 367.83], [-20.67, 356.66], [-17.42, 353.21], [-11.06, 359.16], [-8.11, 356.03], [-4.35, 359.56], [-6.84, 362.2], [-5.03, 363.89], [-8.74, 367.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1.66, 360.5], [-10.71, 352.51], [-9.45, 351.09], [-11.06, 349.68], [-6.71, 344.79], [-5.2, 346.13], [-4.8, 345.67], [4.34, 353.76], [-1.66, 360.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[6.03, 352.72], [-8.76, 339.95], [-2.63, 332.89], [12.16, 345.67], [6.03, 352.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[21.23, 336.15], [17.39, 332.64], [16.55, 333.54], [10.57, 328.08], [11.77, 326.78], [10.86, 325.96], [10.1, 326.78], [6.5, 323.5], [11.17, 318.43], [25.5, 331.52], [21.23, 336.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[15.35, 341.13], [9.38, 336.01], [10.52, 334.69], [7.21, 331.85], [2.56, 337.22], [11.84, 345.19], [15.35, 341.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[108.17, 300.83], [95.21, 289.31], [89.31, 295.92], [90.9, 297.33], [90.4, 297.88], [93.6, 300.73], [93.68, 301.97], [96.02, 304.06], [97.29, 304.0], [101.78, 307.99], [102.79, 306.85], [103.3, 307.3], [107.77, 302.3], [107.26, 301.85], [108.17, 300.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[141.75, 354.11], [129.28, 342.83], [137.05, 334.28], [149.54, 345.57], [141.75, 354.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[117.82, 334.92], [112.15, 329.78], [113.21, 328.63], [112.7, 328.17], [120.63, 319.49], [120.95, 319.78], [122.49, 318.09], [126.14, 321.41], [124.6, 323.1], [126.8, 325.09], [117.82, 334.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[113.55, 326.44], [112.99, 325.91], [111.46, 327.53], [106.95, 323.33], [108.47, 321.7], [107.96, 321.24], [114.03, 314.75], [119.63, 319.95], [113.55, 326.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[97.75, 289.01], [100.15, 286.38], [99.74, 286.02], [102.82, 282.64], [108.02, 287.35], [105.51, 290.1], [109.48, 293.68], [106.73, 296.7], [103.43, 293.71], [103.21, 293.95], [97.75, 289.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[121.88, 294.12], [126.53, 289.01], [118.39, 281.66], [118.62, 281.41], [114.8, 277.96], [114.57, 278.22], [111.56, 275.5], [106.92, 280.61], [107.2, 280.86], [105.52, 282.71], [111.08, 287.72], [111.23, 287.55], [117.71, 293.4], [119.23, 291.73], [121.88, 294.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[127.03, 275.78], [124.83, 273.8], [125.26, 273.32], [117.67, 266.48], [113.17, 271.44], [113.48, 271.72], [111.32, 274.11], [120.81, 282.64], [121.07, 282.34], [123.38, 284.41], [125.55, 282.02], [123.25, 279.95], [127.03, 275.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[130.06, 275.66], [119.08, 265.63], [124.3, 259.94], [127.85, 263.19], [128.38, 262.62], [133.22, 267.05], [132.69, 267.62], [135.28, 269.98], [130.06, 275.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[142.17, 263.65], [132.36, 254.74], [132.04, 255.09], [129.5, 252.77], [124.44, 258.31], [136.79, 269.53], [142.17, 263.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[162.42, 273.19], [156.92, 268.25], [163.33, 261.17], [161.57, 259.59], [161.41, 259.77], [156.43, 255.3], [158.73, 252.75], [157.99, 252.07], [161.1, 248.64], [161.85, 249.31], [164.57, 246.31], [169.68, 250.9], [166.77, 254.12], [169.0, 256.13], [173.13, 251.57], [178.26, 256.18], [167.26, 268.33], [167.02, 268.1], [162.42, 273.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[154.19, 339.79], [169.16, 322.95], [167.57, 321.55], [169.46, 319.43], [171.04, 320.84], [185.91, 304.11], [173.68, 293.32], [167.51, 300.26], [169.56, 302.06], [166.6, 305.39], [142.47, 284.1], [128.15, 300.21], [134.2, 305.56], [135.96, 303.57], [154.46, 319.91], [150.57, 324.27], [147.59, 321.65], [141.46, 328.55], [154.19, 339.79]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[156.26, 250.82], [154.66, 249.36], [152.64, 251.55], [148.68, 247.94], [150.7, 245.74], [150.36, 245.42], [159.13, 235.89], [165.03, 241.29], [156.26, 250.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[155.39, 286.86], [158.32, 283.66], [157.75, 283.15], [160.26, 280.41], [159.6, 279.8], [163.03, 276.06], [169.16, 281.63], [163.34, 287.99], [162.9, 287.58], [159.85, 290.91], [155.39, 286.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[174.1, 275.5], [167.13, 269.27], [175.18, 260.32], [175.44, 260.56], [178.23, 257.46], [179.07, 258.2], [179.86, 257.32], [185.73, 262.59], [174.1, 275.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[175.24, 276.29], [186.1, 264.51], [192.63, 270.5], [181.77, 282.28], [175.24, 276.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[105.23, 535.93], [94.84, 526.54], [99.75, 521.13], [101.47, 522.69], [102.76, 521.26], [101.05, 519.71], [105.3, 515.03], [115.37, 524.12], [114.57, 525.0], [115.51, 525.85], [113.0, 528.62], [112.06, 527.78], [109.96, 530.08], [110.28, 530.37], [109.89, 530.8], [110.97, 531.79], [108.51, 534.5], [107.42, 533.52], [105.23, 535.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[108.34, 510.8], [117.62, 500.58], [121.6, 504.18], [122.34, 503.37], [129.47, 509.79], [128.66, 510.69], [131.46, 513.21], [130.6, 514.14], [132.69, 516.02], [134.21, 514.35], [140.88, 520.37], [140.16, 521.16], [143.58, 524.25], [134.72, 534.01], [131.43, 531.05], [130.15, 532.47], [127.41, 530.01], [128.15, 529.2], [125.25, 526.59], [124.79, 527.1], [121.84, 524.44], [122.91, 523.26], [120.27, 520.87], [118.94, 522.33], [116.15, 519.82], [117.37, 518.48], [115.14, 516.46], [113.77, 517.98], [110.6, 515.12], [111.74, 513.86], [108.34, 510.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[152.27, 550.34], [149.51, 547.91], [148.54, 548.99], [146.09, 546.82], [146.99, 545.8], [144.37, 543.49], [143.31, 544.68], [140.58, 542.27], [141.53, 541.2], [138.01, 538.1], [147.07, 527.93], [150.6, 531.04], [151.46, 530.07], [159.2, 536.91], [158.49, 537.69], [161.31, 540.18], [152.27, 550.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[177.32, 572.16], [169.58, 565.14], [168.25, 566.6], [165.75, 564.34], [166.96, 563.02], [166.62, 562.72], [167.43, 561.84], [165.65, 560.23], [164.41, 561.59], [164.06, 561.27], [162.82, 562.62], [160.18, 560.23], [161.28, 559.03], [158.77, 556.76], [168.38, 546.23], [171.09, 548.68], [172.06, 547.62], [179.33, 554.21], [178.48, 555.14], [181.41, 557.79], [178.71, 560.76], [183.64, 565.23], [177.32, 572.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[175.75, 616.41], [174.65, 615.39], [172.76, 617.44], [168.45, 613.45], [169.4, 612.42], [164.29, 607.7], [171.91, 599.51], [182.43, 609.23], [175.75, 616.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[182.81, 605.8], [172.88, 596.69], [175.03, 594.38], [173.89, 593.32], [176.28, 590.74], [177.59, 591.94], [178.18, 591.3], [179.96, 589.38], [178.67, 588.19], [181.09, 585.59], [182.2, 586.61], [189.24, 579.02], [196.51, 585.7], [191.97, 590.61], [194.71, 593.12], [192.2, 595.82], [193.16, 596.7], [186.48, 603.92], [185.43, 602.96], [182.81, 605.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[200.3, 586.25], [207.52, 578.25], [193.89, 566.03], [186.67, 574.02], [200.3, 586.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[173.1, 513.74], [181.76, 504.31], [176.56, 499.57], [176.33, 499.82], [175.05, 498.66], [175.43, 498.25], [169.22, 492.6], [168.85, 493.01], [165.05, 489.56], [165.4, 489.18], [159.67, 483.97], [159.32, 484.34], [158.1, 483.22], [158.49, 482.8], [153.52, 478.27], [144.62, 487.97], [151.09, 493.86], [151.48, 493.42], [157.95, 499.32], [157.2, 500.14], [159.31, 502.06], [160.06, 501.24], [160.76, 501.87], [160.43, 502.23], [164.03, 505.52], [163.16, 506.46], [164.73, 507.9], [165.6, 506.95], [165.75, 507.08], [166.08, 506.72], [167.01, 507.57], [166.14, 508.5], [167.88, 510.07], [168.42, 509.47], [173.1, 513.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[186.0, 527.6], [176.29, 518.84], [199.86, 492.93], [209.57, 501.7], [186.0, 527.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[191.27, 534.04], [203.51, 520.48], [213.35, 529.29], [201.1, 542.85], [195.14, 537.51], [194.77, 537.92], [192.29, 535.69], [192.66, 535.28], [191.27, 534.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[380.62, 572.69], [334.43, 531.11], [367.06, 495.13], [406.11, 531.48], [415.62, 520.11], [423.5, 526.16], [380.62, 572.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[329.12, 526.78], [361.52, 491.62], [338.99, 471.02], [306.59, 506.18], [329.12, 526.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[307.92, 564.88], [324.65, 546.29], [316.44, 538.96], [315.61, 539.88], [300.8, 526.65], [301.82, 525.52], [293.66, 518.23], [276.75, 537.02], [284.8, 544.21], [285.54, 543.39], [300.43, 556.71], [299.69, 557.52], [307.92, 564.88]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[314.9, 618.18], [327.52, 604.41], [293.91, 573.84], [281.29, 587.63], [314.9, 618.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[267.64, 550.54], [293.3, 573.18], [280.04, 588.11], [254.37, 565.46], [267.64, 550.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[206.36, 645.05], [195.18, 634.93], [200.35, 629.25], [203.45, 632.05], [204.43, 630.98], [212.51, 638.29], [206.36, 645.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[201.53, 627.77], [207.1, 621.71], [210.17, 624.51], [210.56, 624.09], [214.94, 628.09], [214.56, 628.51], [219.11, 632.66], [213.55, 638.72], [201.53, 627.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[171.5, 654.53], [177.11, 648.43], [184.48, 640.43], [197.58, 652.42], [184.59, 666.51], [171.5, 654.53]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[105.05, 650.16], [99.21, 644.87], [103.61, 640.06], [103.39, 639.86], [110.01, 632.61], [116.07, 638.11], [105.05, 650.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[113.01, 658.65], [107.43, 653.7], [112.35, 648.17], [111.65, 647.55], [115.7, 643.01], [116.39, 643.63], [119.12, 640.57], [124.71, 645.51], [113.01, 658.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[121.49, 660.94], [116.23, 656.28], [119.09, 653.06], [118.69, 652.7], [125.06, 645.54], [130.73, 650.55], [127.63, 654.04], [128.13, 654.49], [124.77, 658.27], [124.26, 657.81], [121.49, 660.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[79.19, 664.57], [71.97, 657.91], [77.18, 652.32], [84.39, 658.99], [79.19, 664.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[110.53, 729.2], [111.57, 728.05], [110.97, 727.5], [117.71, 720.04], [118.33, 720.6], [119.67, 719.12], [125.47, 724.32], [124.91, 724.95], [129.03, 728.66], [128.42, 729.33], [129.0, 729.85], [122.56, 736.98], [120.67, 735.29], [119.6, 736.46], [117.98, 735.01], [117.54, 735.5], [110.53, 729.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[145.59, 708.99], [134.66, 699.12], [154.92, 676.85], [165.45, 686.4], [165.85, 686.72], [145.59, 708.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[174.03, 711.14], [171.48, 708.83], [169.82, 710.65], [166.99, 708.08], [168.69, 706.21], [168.02, 705.62], [178.02, 694.67], [183.54, 699.66], [179.85, 703.7], [179.85, 704.75], [174.03, 711.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[181.31, 715.29], [180.82, 714.85], [177.34, 718.73], [173.15, 714.99], [185.36, 701.36], [190.05, 705.54], [181.31, 715.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[137.2, 750.78], [128.1, 742.49], [132.25, 737.96], [131.7, 737.45], [134.7, 734.19], [133.57, 733.15], [136.71, 729.74], [140.49, 733.19], [138.73, 735.11], [145.73, 741.48], [137.2, 750.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[187.52, 725.84], [182.36, 721.16], [193.94, 708.49], [199.09, 713.16], [187.52, 725.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[193.72, 729.83], [188.72, 725.21], [200.25, 712.83], [205.24, 717.46], [193.72, 729.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[197.46, 733.63], [200.78, 730.0], [199.71, 729.03], [207.16, 720.88], [207.78, 721.44], [208.67, 720.48], [213.94, 725.27], [213.22, 726.06], [213.94, 726.71], [208.61, 732.52], [209.0, 732.88], [206.75, 735.33], [205.59, 734.26], [202.21, 737.95], [197.46, 733.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[208.83, 747.11], [202.37, 741.42], [211.77, 730.82], [218.23, 736.51], [208.83, 747.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[216.11, 751.78], [210.91, 746.96], [219.35, 737.9], [224.56, 742.72], [216.11, 751.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[161.67, 704.04], [162.46, 704.7], [158.44, 709.41], [153.43, 705.15], [160.9, 696.42], [165.13, 700.0], [161.67, 704.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[170.43, 698.56], [179.84, 688.06], [172.88, 681.88], [163.31, 692.57], [166.75, 695.62], [166.06, 696.38], [169.21, 699.19], [170.07, 698.24], [170.43, 698.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[203.63, 654.58], [213.0, 663.18], [212.48, 663.75], [214.34, 665.45], [208.93, 671.3], [209.7, 672.01], [202.37, 679.95], [188.22, 666.98], [200.82, 653.34], [202.97, 655.3], [203.63, 654.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[85.75, 776.14], [72.66, 764.35], [81.59, 754.4], [88.06, 760.19], [94.8, 766.2], [85.75, 776.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[113.74, 816.33], [107.53, 810.84], [109.21, 808.96], [97.75, 798.82], [95.85, 800.97], [89.54, 795.4], [96.98, 787.04], [94.95, 785.25], [100.97, 778.5], [102.63, 779.97], [103.69, 780.9], [106.86, 777.36], [129.85, 797.66], [125.64, 802.39], [126.9, 803.51], [128.03, 804.5], [123.14, 809.99], [121.04, 808.13], [113.74, 816.33]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[90.15, 444.74], [96.17, 437.88], [108.91, 448.96], [102.89, 455.84], [90.15, 444.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[111.13, 446.79], [103.23, 439.84], [103.66, 439.35], [99.34, 435.55], [104.32, 429.92], [116.55, 440.68], [111.13, 446.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[106.01, 430.58], [110.33, 425.77], [113.95, 428.99], [115.15, 427.65], [124.69, 436.14], [119.16, 442.3], [106.01, 430.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[113.66, 419.92], [117.63, 415.73], [122.02, 419.85], [122.36, 419.48], [126.45, 423.32], [125.61, 424.21], [130.21, 428.52], [125.44, 433.57], [116.69, 425.36], [117.54, 424.47], [114.53, 421.64], [114.99, 421.16], [113.66, 419.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[119.2, 415.28], [119.43, 415.02], [117.99, 413.7], [121.73, 409.64], [123.17, 410.95], [123.59, 410.5], [130.08, 416.42], [125.69, 421.2], [119.2, 415.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[135.33, 416.67], [125.01, 407.11], [132.42, 399.16], [142.75, 408.71], [135.33, 416.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[138.96, 397.98], [135.11, 394.5], [143.39, 385.44], [147.23, 388.92], [138.96, 397.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[144.12, 402.95], [140.66, 399.85], [141.99, 398.39], [141.1, 397.59], [148.11, 389.84], [152.45, 393.73], [144.12, 402.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[148.2, 407.69], [145.06, 404.77], [146.81, 402.88], [146.21, 402.33], [153.63, 394.39], [157.89, 398.33], [150.69, 406.04], [150.18, 405.57], [148.2, 407.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[162.07, 423.61], [155.9, 417.96], [164.52, 408.61], [166.53, 410.45], [168.23, 408.6], [173.01, 412.97], [169.58, 416.67], [168.97, 416.13], [162.07, 423.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[137.03, 480.34], [123.97, 468.44], [153.49, 436.28], [157.44, 439.88], [148.09, 450.08], [149.43, 451.31], [145.75, 455.32], [153.51, 462.4], [137.03, 480.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[123.57, 468.53], [116.64, 462.2], [127.17, 450.76], [127.99, 451.51], [137.04, 441.65], [142.05, 446.23], [133.16, 455.9], [134.26, 456.9], [123.57, 468.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[201.96, 459.68], [182.67, 441.7], [191.44, 432.35], [210.74, 450.32], [201.96, 459.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[182.28, 486.78], [174.61, 479.6], [175.56, 478.58], [170.02, 473.39], [169.06, 474.41], [160.84, 466.71], [162.49, 464.96], [162.15, 464.63], [165.18, 461.43], [165.52, 461.75], [169.47, 457.56], [168.9, 457.03], [172.36, 453.36], [172.92, 453.89], [175.06, 451.62], [183.05, 459.11], [181.56, 460.69], [187.19, 465.96], [188.3, 464.78], [196.12, 472.09], [194.55, 473.76], [195.05, 474.23], [191.8, 477.67], [191.3, 477.21], [187.43, 481.31], [188.05, 481.89], [184.73, 485.41], [184.11, 484.84], [182.28, 486.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[210.92, 470.13], [206.22, 466.03], [217.48, 453.21], [219.77, 455.2], [220.23, 454.68], [224.05, 458.01], [223.79, 458.32], [224.36, 458.81], [216.35, 467.94], [215.78, 467.45], [213.79, 469.7], [212.38, 468.48], [210.92, 470.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[229.58, 510.97], [220.01, 502.19], [243.39, 476.86], [252.96, 485.63], [229.58, 510.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[245.09, 540.73], [225.79, 523.35], [230.88, 517.73], [250.18, 535.11], [245.09, 540.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[250.95, 534.34], [241.56, 525.69], [246.14, 520.75], [248.51, 522.92], [249.38, 521.99], [253.64, 525.91], [252.8, 526.82], [255.57, 529.36], [250.95, 534.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[248.44, 516.4], [252.5, 511.85], [253.56, 512.79], [254.68, 511.54], [263.65, 519.48], [259.7, 523.92], [258.48, 522.84], [257.26, 524.21], [248.44, 516.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[267.18, 515.77], [265.13, 513.88], [263.49, 515.65], [259.58, 512.06], [269.25, 501.62], [275.2, 507.1], [267.18, 515.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[260.55, 510.48], [255.34, 505.77], [257.73, 503.16], [257.29, 502.76], [260.66, 499.05], [261.1, 499.45], [263.77, 496.52], [268.98, 501.23], [260.55, 510.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[254.41, 501.14], [248.81, 495.83], [256.5, 487.8], [262.09, 493.11], [254.41, 501.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[241.15, 578.87], [251.6, 567.26], [285.52, 597.52], [275.07, 609.14], [241.15, 578.87]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[220.08, 630.11], [225.38, 624.27], [221.51, 620.79], [221.77, 620.5], [217.89, 617.01], [217.63, 617.29], [212.9, 613.02], [209.81, 616.44], [210.98, 617.49], [208.77, 619.92], [220.08, 630.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[238.49, 637.59], [237.58, 636.76], [236.09, 638.4], [232.1, 634.79], [233.01, 633.78], [231.57, 632.47], [241.34, 621.7], [242.83, 623.05], [245.64, 619.96], [250.51, 624.34], [238.49, 637.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[250.65, 638.43], [244.83, 633.03], [251.98, 625.36], [252.44, 625.78], [253.8, 624.31], [258.76, 628.9], [257.5, 630.26], [257.92, 630.65], [250.65, 638.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[225.28, 758.37], [224.89, 758.02], [222.98, 760.19], [219.43, 757.09], [221.15, 755.14], [218.43, 752.77], [219.17, 751.94], [218.82, 751.64], [226.61, 742.78], [233.61, 748.9], [225.28, 758.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[233.8, 765.1], [232.39, 763.86], [229.55, 767.06], [224.18, 762.35], [229.54, 756.29], [228.91, 755.73], [234.13, 749.83], [241.54, 756.34], [233.8, 765.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[240.77, 769.69], [235.35, 764.0], [243.49, 756.32], [248.9, 762.02], [240.77, 769.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[246.39, 781.57], [240.38, 776.22], [249.87, 765.62], [250.3, 765.99], [252.0, 764.09], [257.14, 768.66], [255.33, 770.69], [255.78, 771.07], [246.39, 781.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[255.44, 786.62], [249.29, 780.89], [260.72, 768.71], [266.87, 774.43], [255.44, 786.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[282.97, 797.6], [270.69, 786.12], [275.39, 781.43], [276.54, 782.43], [276.87, 781.92], [288.32, 791.87], [282.97, 797.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[271.95, 808.97], [264.25, 802.05], [271.18, 794.39], [278.89, 801.31], [271.95, 808.97]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[251.01, 801.54], [244.56, 795.17], [252.52, 787.18], [258.96, 793.56], [251.01, 801.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[264.77, 819.25], [255.06, 809.98], [257.86, 807.08], [260.02, 809.14], [264.51, 804.47], [270.78, 810.46], [266.96, 814.45], [268.23, 815.65], [264.77, 819.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[256.15, 829.2], [247.45, 821.59], [248.4, 820.51], [245.78, 818.21], [251.17, 812.08], [260.39, 820.16], [257.62, 823.3], [259.72, 825.15], [256.15, 829.2]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[237.28, 843.07], [236.8, 842.62], [236.08, 843.42], [234.13, 841.68], [235.01, 840.7], [234.66, 840.38], [235.24, 839.74], [230.04, 835.07], [238.64, 825.57], [245.6, 831.82], [243.65, 833.97], [244.19, 834.46], [239.24, 839.93], [239.72, 840.36], [237.28, 843.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[225.32, 832.76], [213.32, 822.24], [222.9, 811.4], [234.9, 821.9], [225.32, 832.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[211.6, 819.09], [208.63, 816.38], [207.63, 817.48], [205.56, 815.59], [206.93, 814.1], [205.96, 813.21], [213.68, 804.8], [213.33, 804.49], [215.98, 801.6], [221.32, 806.46], [218.92, 809.06], [219.94, 810.0], [211.6, 819.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[204.22, 813.06], [198.81, 808.14], [208.86, 797.16], [214.27, 802.07], [204.22, 813.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[194.58, 805.82], [194.25, 805.51], [192.76, 807.12], [188.16, 802.92], [189.41, 801.57], [188.88, 801.07], [199.27, 789.77], [204.3, 794.36], [201.32, 797.6], [201.75, 798.01], [194.58, 805.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[187.45, 801.2], [182.18, 796.39], [187.93, 790.14], [187.59, 789.81], [191.21, 785.89], [196.25, 790.49], [190.5, 796.74], [191.07, 797.26], [187.45, 801.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[180.06, 796.42], [173.1, 790.06], [184.09, 778.13], [188.61, 782.27], [191.91, 778.7], [194.38, 780.96], [191.07, 784.56], [191.54, 784.99], [182.44, 794.87], [181.92, 794.4], [180.06, 796.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[171.85, 786.32], [165.48, 780.42], [175.09, 770.11], [175.74, 770.7], [177.47, 768.84], [183.2, 774.14], [171.85, 786.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[163.38, 776.33], [159.3, 772.65], [158.08, 773.99], [151.12, 767.74], [159.19, 758.83], [166.26, 765.2], [168.2, 763.07], [171.41, 765.95], [167.47, 770.31], [168.22, 770.99], [163.38, 776.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[149.34, 765.2], [141.63, 758.19], [150.61, 748.4], [152.23, 749.87], [151.56, 750.6], [152.43, 751.39], [151.09, 752.85], [153.18, 754.75], [151.74, 756.32], [154.87, 759.17], [149.34, 765.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[188.69, 766.03], [183.28, 761.17], [185.95, 758.22], [189.74, 754.05], [190.4, 753.32], [195.79, 758.17], [188.69, 766.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[173.57, 916.31], [162.1, 905.64], [162.58, 905.13], [159.75, 902.48], [166.44, 895.36], [169.01, 897.76], [171.07, 895.56], [182.79, 906.48], [173.57, 916.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[183.67, 902.69], [174.99, 894.85], [176.16, 893.56], [173.9, 891.51], [178.67, 886.26], [180.94, 888.31], [182.89, 886.18], [191.56, 894.02], [183.67, 902.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[163.38, 923.73], [155.66, 916.74], [157.06, 915.21], [153.81, 912.26], [154.04, 912.0], [153.18, 911.22], [156.36, 907.73], [157.29, 908.57], [159.41, 906.24], [170.32, 916.13], [163.38, 923.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[150.78, 941.03], [140.52, 931.75], [148.03, 923.51], [146.87, 922.46], [149.76, 919.28], [154.23, 923.32], [154.8, 922.7], [157.83, 925.45], [157.26, 926.06], [161.19, 929.61], [150.78, 941.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[192.04, 893.26], [197.82, 887.02], [191.76, 881.46], [185.98, 887.7], [192.04, 893.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[163.04, 887.97], [157.8, 883.16], [161.49, 879.16], [166.73, 883.99], [163.04, 887.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[186.61, 868.17], [178.51, 860.73], [189.05, 849.35], [189.56, 849.82], [191.31, 847.93], [198.89, 854.9], [186.61, 868.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[221.58, 926.93], [234.87, 911.93], [223.36, 901.81], [210.08, 916.8], [210.67, 917.33], [210.12, 917.96], [219.71, 926.39], [220.26, 925.77], [221.58, 926.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[208.2, 970.91], [196.63, 960.46], [204.22, 952.1], [206.69, 954.33], [205.24, 955.93], [214.35, 964.14], [208.2, 970.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[248.13, 952.07], [240.97, 945.69], [244.68, 941.56], [243.12, 940.17], [264.22, 916.67], [265.86, 918.14], [269.15, 914.48], [276.33, 920.88], [272.3, 925.38], [273.59, 926.53], [252.72, 949.77], [251.31, 948.52], [248.13, 952.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[237.2, 938.96], [233.16, 935.14], [230.9, 937.52], [227.7, 934.49], [229.28, 932.82], [226.27, 929.98], [231.74, 924.24], [232.52, 924.97], [238.18, 919.03], [238.52, 919.34], [240.71, 917.05], [246.45, 922.47], [244.19, 924.85], [247.99, 928.44], [239.72, 937.13], [239.32, 936.74], [237.2, 938.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[215.66, 935.67], [208.89, 929.38], [214.57, 923.3], [221.35, 929.6], [215.66, 935.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[182.69, 967.51], [175.24, 961.06], [183.73, 951.34], [191.17, 957.78], [182.69, 967.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[195.17, 994.77], [190.38, 990.48], [189.85, 991.07], [181.7, 983.78], [184.79, 980.35], [183.98, 979.63], [188.03, 975.15], [188.84, 975.87], [190.23, 974.33], [194.78, 978.41], [194.39, 978.85], [197.89, 981.99], [194.95, 985.24], [199.83, 989.62], [195.17, 994.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[213.13, 1028.36], [229.48, 1010.47], [221.11, 1002.89], [211.29, 1013.65], [214.35, 1016.41], [209.63, 1021.58], [211.39, 1023.18], [209.58, 1025.15], [213.13, 1028.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[228.68, 1032.76], [227.69, 1031.89], [227.4, 1032.22], [223.01, 1028.31], [224.97, 1026.12], [222.04, 1023.52], [229.18, 1015.56], [237.81, 1023.24], [230.5, 1031.39], [230.17, 1031.1], [228.68, 1032.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[245.12, 1051.76], [237.25, 1044.54], [247.99, 1032.88], [250.45, 1035.13], [251.51, 1033.98], [253.85, 1036.12], [252.8, 1037.28], [255.87, 1040.1], [245.12, 1051.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[255.59, 1066.13], [246.97, 1058.32], [257.43, 1046.85], [258.5, 1047.82], [260.08, 1046.08], [262.99, 1048.72], [261.41, 1050.46], [265.15, 1053.83], [266.06, 1052.83], [268.92, 1055.41], [260.24, 1064.94], [258.29, 1063.17], [255.59, 1066.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[271.6, 1081.23], [259.97, 1070.9], [270.57, 1059.04], [273.38, 1061.53], [273.68, 1061.2], [274.5, 1061.93], [276.01, 1060.25], [280.02, 1063.81], [278.52, 1065.49], [279.64, 1066.5], [279.34, 1066.83], [282.21, 1069.37], [271.6, 1081.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[281.21, 1099.42], [274.84, 1093.31], [276.71, 1091.37], [274.05, 1088.81], [286.3, 1076.11], [296.18, 1085.58], [284.04, 1098.16], [283.21, 1097.36], [281.21, 1099.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[296.15, 1137.01], [287.49, 1129.01], [297.68, 1118.06], [297.86, 1118.23], [299.62, 1116.33], [307.81, 1123.89], [306.15, 1125.68], [306.44, 1125.94], [296.15, 1137.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[320.88, 1124.02], [310.48, 1114.36], [310.68, 1114.14], [308.93, 1112.52], [316.57, 1104.35], [328.27, 1115.21], [323.59, 1120.23], [324.03, 1120.64], [320.88, 1124.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[259.92, 1017.71], [254.18, 1012.41], [255.64, 1010.83], [255.09, 1010.33], [263.1, 1001.73], [264.1, 1002.64], [265.02, 1001.65], [269.65, 1005.92], [268.62, 1007.03], [269.68, 1008.0], [261.73, 1016.54], [261.35, 1016.18], [259.92, 1017.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[281.08, 1039.66], [271.14, 1030.42], [273.79, 1027.6], [272.95, 1026.81], [278.51, 1020.87], [289.3, 1030.89], [281.08, 1039.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[276.18, 999.34], [264.91, 989.01], [270.87, 982.57], [283.04, 993.75], [282.19, 994.67], [285.75, 997.95], [282.54, 1001.42], [278.06, 997.3], [276.18, 999.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[278.29, 668.24], [273.28, 663.68], [282.82, 653.28], [287.83, 657.84], [278.29, 668.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[285.89, 678.0], [279.52, 672.0], [283.38, 667.94], [282.93, 667.52], [286.83, 663.4], [287.28, 663.82], [290.5, 660.43], [296.87, 666.43], [285.89, 678.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[301.6, 690.06], [300.11, 688.7], [297.31, 691.73], [294.43, 689.09], [297.23, 686.05], [295.56, 684.53], [302.41, 677.11], [302.78, 677.47], [305.55, 674.47], [311.21, 679.65], [301.6, 690.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[294.59, 681.25], [300.7, 674.83], [300.01, 674.17], [302.82, 671.22], [297.58, 666.26], [288.64, 675.62], [290.85, 677.72], [286.63, 682.14], [290.19, 685.5], [294.41, 681.08], [294.59, 681.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[277.62, 746.42], [270.6, 739.9], [280.91, 728.88], [287.94, 735.41], [277.62, 746.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[285.42, 753.09], [279.2, 747.16], [290.1, 735.82], [291.6, 737.25], [293.03, 735.76], [297.33, 739.85], [295.89, 741.35], [296.32, 741.76], [285.42, 753.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[302.01, 749.46], [295.91, 743.62], [292.9, 746.72], [292.61, 746.44], [288.91, 750.27], [289.21, 750.55], [285.27, 754.64], [287.84, 757.12], [288.52, 756.41], [292.03, 759.79], [302.01, 749.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[324.02, 750.28], [315.59, 742.59], [320.93, 736.77], [329.36, 744.46], [329.16, 744.67], [330.65, 746.03], [327.82, 749.11], [326.33, 747.77], [324.02, 750.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[318.04, 717.47], [302.89, 703.87], [310.76, 695.18], [325.9, 708.78], [318.04, 717.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[342.14, 799.18], [340.3, 797.46], [341.33, 796.37], [340.52, 795.62], [340.57, 794.98], [337.68, 792.31], [338.07, 791.88], [333.67, 787.83], [333.14, 788.17], [330.31, 785.69], [329.89, 785.95], [328.78, 784.92], [327.01, 786.79], [327.7, 787.45], [324.61, 790.73], [328.02, 793.92], [327.69, 794.26], [331.87, 798.17], [332.55, 797.45], [335.71, 800.41], [336.13, 799.95], [338.94, 802.58], [342.14, 799.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[342.78, 793.28], [339.16, 789.98], [338.59, 790.61], [334.11, 786.53], [334.59, 786.01], [331.24, 782.96], [337.08, 777.06], [348.38, 787.16], [342.78, 793.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[354.6, 780.72], [344.27, 771.6], [338.61, 777.97], [343.32, 782.13], [344.15, 782.22], [349.27, 786.73], [354.6, 780.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[355.03, 777.99], [347.31, 771.07], [347.59, 770.75], [345.32, 768.71], [349.72, 763.85], [359.71, 772.82], [355.03, 777.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[368.72, 762.15], [360.03, 754.47], [364.7, 749.23], [373.38, 756.91], [368.72, 762.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[379.66, 752.11], [376.64, 749.32], [377.57, 748.31], [373.6, 744.65], [372.6, 745.73], [369.08, 742.47], [366.37, 745.39], [366.8, 745.78], [364.94, 747.78], [371.94, 754.23], [372.25, 753.91], [375.34, 756.77], [379.66, 752.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[318.01, 733.49], [322.96, 728.01], [334.52, 738.37], [329.57, 743.86], [318.01, 733.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[298.05, 769.69], [298.98, 768.21], [310.75, 755.52], [311.14, 755.88], [313.11, 753.68], [316.68, 756.85], [314.66, 759.1], [317.97, 762.05], [306.39, 774.96], [303.15, 772.09], [302.08, 773.27], [298.05, 769.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[337.47, 737.38], [327.42, 728.86], [331.54, 724.02], [334.33, 726.39], [334.76, 725.89], [338.48, 729.05], [338.06, 729.54], [341.6, 732.54], [337.47, 737.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[345.52, 729.08], [344.65, 728.27], [344.36, 728.58], [341.62, 726.03], [341.31, 726.36], [335.8, 721.2], [337.24, 719.67], [334.19, 716.82], [342.67, 707.81], [352.38, 716.9], [347.67, 721.89], [350.13, 724.18], [345.52, 729.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[343.15, 810.23], [370.05, 780.77], [380.9, 790.61], [371.86, 800.51], [370.07, 798.9], [352.22, 818.45], [343.15, 810.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[361.89, 827.02], [372.29, 815.83], [378.01, 821.1], [367.72, 832.52], [361.89, 827.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3030.65, -197.13], [-3041.11, -198.76], [-3040.78, -200.84], [-3046.53, -201.73], [-3043.93, -218.29], [-3037.79, -217.33], [-3038.39, -213.51], [-3035.73, -213.1], [-3035.49, -214.65], [-3028.08, -213.5], [-3030.65, -197.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2999.3, -301.38], [-3001.4, -288.47], [-2984.33, -285.7], [-2983.14, -293.04], [-2980.64, -292.64], [-2982.74, -279.74], [-2971.03, -277.84], [-2969.35, -288.14], [-2967.85, -287.89], [-2966.51, -296.07], [-2999.3, -301.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3091.02, -249.87], [-3102.51, -251.47], [-3099.91, -269.93], [-3088.41, -268.33], [-3091.02, -249.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3051.1, -162.42], [-3058.77, -163.59], [-3057.1, -174.38], [-3049.43, -173.2], [-3051.1, -162.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3004.06, -151.0], [-2995.85, -149.79], [-2993.59, -165.02], [-3001.81, -166.23], [-3004.06, -151.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3068.08, -193.73], [-3078.79, -195.41], [-3074.87, -220.14], [-3064.16, -218.45], [-3068.08, -193.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3039.85, -156.54], [-3048.35, -157.76], [-3046.25, -172.26], [-3037.76, -171.04], [-3039.85, -156.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3017.59, -155.03], [-3026.16, -156.34], [-3023.99, -170.42], [-3015.42, -169.11], [-3017.59, -155.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3007.02, -151.82], [-3015.24, -153.05], [-3013.03, -167.67], [-3004.81, -166.44], [-3007.02, -151.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3020.21, -212.47], [-3021.61, -203.9], [-3017.11, -203.18], [-3017.54, -200.61], [-3013.61, -199.98], [-3011.79, -211.11], [-3020.21, -212.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3029.02, -156.91], [-3036.87, -158.4], [-3034.58, -170.34], [-3031.96, -169.85], [-3031.69, -171.27], [-3029.28, -170.8], [-3029.56, -169.38], [-3026.73, -168.84], [-3029.02, -156.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-428.06, -244.75], [-402.3, -273.66], [-386.84, -259.97], [-412.61, -231.08], [-428.06, -244.75]], "holes": []}, "height": 35.0}, {"shape": {"outer": [[-2386.15, -1323.84], [-2383.26, -1308.32], [-2377.12, -1309.28], [-2377.7, -1312.2], [-2372.24, -1313.22], [-2372.57, -1314.58], [-2371.41, -1314.81], [-2372.58, -1321.5], [-2374.23, -1321.26], [-2375.25, -1326.01], [-2386.15, -1323.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2400.44, -1314.17], [-2400.42, -1306.46], [-2412.74, -1306.41], [-2412.7, -1314.99], [-2403.7, -1315.25], [-2403.67, -1314.07], [-2400.44, -1314.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2396.2, -1319.75], [-2396.07, -1315.37], [-2397.64, -1315.23], [-2397.52, -1307.81], [-2385.98, -1307.96], [-2386.43, -1320.13], [-2396.2, -1319.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2367.15, -1326.73], [-2359.43, -1326.85], [-2359.62, -1330.06], [-2358.06, -1330.1], [-2358.21, -1338.88], [-2355.97, -1339.04], [-2356.2, -1347.22], [-2369.78, -1346.72], [-2368.71, -1329.99], [-2367.34, -1329.93], [-2367.15, -1326.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2380.92, -1406.26], [-2380.64, -1403.89], [-2382.1, -1403.8], [-2381.49, -1392.46], [-2377.77, -1392.57], [-2377.72, -1390.72], [-2373.52, -1390.74], [-2373.53, -1392.87], [-2372.88, -1392.88], [-2373.26, -1404.05], [-2374.69, -1404.07], [-2374.87, -1406.55], [-2380.92, -1406.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2452.5, -1312.83], [-2442.52, -1312.82], [-2442.57, -1304.34], [-2452.34, -1304.16], [-2452.5, -1312.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2370.42, -1392.08], [-2370.13, -1377.77], [-2362.54, -1378.1], [-2362.6, -1380.0], [-2360.81, -1379.93], [-2361.2, -1389.26], [-2361.26, -1391.4], [-2358.94, -1393.6], [-2361.19, -1397.31], [-2364.93, -1395.08], [-2364.85, -1392.36], [-2370.42, -1392.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2354.25, -1391.54], [-2353.94, -1380.48], [-2341.41, -1380.84], [-2341.73, -1391.89], [-2354.25, -1391.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2545.81, -1340.1], [-2536.03, -1339.99], [-2535.55, -1323.43], [-2545.52, -1323.14], [-2545.81, -1340.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2517.24, -1339.94], [-2516.66, -1333.33], [-2513.14, -1333.43], [-2512.37, -1320.01], [-2502.02, -1320.88], [-2502.66, -1329.24], [-2499.53, -1329.53], [-2500.07, -1334.59], [-2496.55, -1334.69], [-2496.72, -1340.73], [-2517.24, -1339.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2586.79, -1390.77], [-2586.58, -1376.74], [-2574.46, -1376.9], [-2574.99, -1391.34], [-2578.66, -1391.36], [-2578.65, -1393.54], [-2586.87, -1393.69], [-2586.79, -1390.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2465.91, -1313.62], [-2465.89, -1306.22], [-2474.69, -1305.96], [-2474.79, -1309.46], [-2477.72, -1309.38], [-2477.68, -1308.26], [-2483.99, -1308.32], [-2484.2, -1320.03], [-2472.68, -1320.0], [-2472.63, -1318.35], [-2470.14, -1318.42], [-2470.0, -1313.69], [-2465.91, -1313.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2519.42, -1342.52], [-2519.33, -1329.48], [-2529.77, -1329.1], [-2530.06, -1336.35], [-2531.86, -1336.36], [-2531.84, -1340.75], [-2530.18, -1340.8], [-2530.22, -1342.02], [-2519.42, -1342.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2522.95, -1312.34], [-2517.83, -1312.35], [-2517.61, -1305.02], [-2522.66, -1304.87], [-2522.95, -1312.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2536.15, -1314.98], [-2529.88, -1315.16], [-2529.88, -1304.95], [-2535.57, -1304.87], [-2536.15, -1314.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2399.29, -1406.29], [-2395.85, -1406.38], [-2396.03, -1408.5], [-2391.29, -1408.76], [-2391.81, -1418.8], [-2402.85, -1418.84], [-2402.2, -1408.09], [-2399.46, -1408.05], [-2399.29, -1406.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2356.65, -1423.13], [-2356.42, -1418.88], [-2348.82, -1419.1], [-2349.07, -1423.35], [-2356.65, -1423.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2517.2, -1392.71], [-2516.22, -1391.55], [-2516.17, -1381.62], [-2498.49, -1382.13], [-2498.67, -1392.66], [-2505.44, -1392.57], [-2506.17, -1393.5], [-2507.61, -1393.93], [-2509.27, -1393.65], [-2513.05, -1396.98], [-2517.2, -1392.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2528.93, -1396.07], [-2529.1, -1389.78], [-2527.91, -1389.71], [-2527.88, -1380.11], [-2541.52, -1379.72], [-2541.88, -1388.0], [-2539.75, -1388.18], [-2539.79, -1389.72], [-2535.64, -1389.84], [-2535.81, -1395.98], [-2528.93, -1396.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2452.78, -1420.32], [-2442.45, -1420.49], [-2442.34, -1412.34], [-2452.42, -1412.05], [-2452.78, -1420.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2457.89, -1424.43], [-2457.62, -1410.71], [-2469.6, -1410.26], [-2470.0, -1424.2], [-2457.89, -1424.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2486.49, -1405.49], [-2486.6, -1413.53], [-2472.47, -1413.82], [-2472.47, -1405.66], [-2486.49, -1405.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2412.96, -1297.9], [-2412.88, -1286.66], [-2397.57, -1287.22], [-2398.08, -1296.55], [-2401.05, -1296.58], [-2401.1, -1298.12], [-2412.96, -1297.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2597.9, -1389.99], [-2602.18, -1393.67], [-2596.74, -1399.86], [-2592.37, -1395.9], [-2597.9, -1389.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2336.08, -1346.93], [-2326.98, -1347.19], [-2326.59, -1333.65], [-2335.69, -1333.39], [-2336.08, -1346.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2352.81, -1347.02], [-2341.76, -1347.35], [-2341.3, -1331.28], [-2352.34, -1330.96], [-2352.81, -1347.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2320.37, -1348.44], [-2319.96, -1334.13], [-2310.48, -1334.4], [-2310.89, -1348.72], [-2320.37, -1348.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2300.71, -1331.66], [-2301.57, -1347.82], [-2292.19, -1348.09], [-2291.14, -1331.93], [-2300.71, -1331.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2290.87, -1319.62], [-2290.27, -1308.93], [-2304.9, -1308.36], [-2305.34, -1318.91], [-2290.87, -1319.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2292.96, -1329.47], [-2292.51, -1321.37], [-2298.34, -1321.2], [-2298.79, -1329.24], [-2292.96, -1329.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2542.24, -1416.38], [-2541.83, -1401.95], [-2529.85, -1402.65], [-2530.4, -1413.65], [-2535.62, -1413.38], [-2535.6, -1416.69], [-2542.24, -1416.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2528.65, -1426.95], [-2529.13, -1443.74], [-2541.25, -1443.87], [-2540.52, -1426.61], [-2528.65, -1426.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2512.8, -1458.18], [-2512.87, -1460.66], [-2506.35, -1460.97], [-2506.25, -1449.26], [-2512.65, -1448.95], [-2512.69, -1450.25], [-2517.09, -1450.48], [-2515.54, -1458.57], [-2512.8, -1458.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2502.13, -1459.87], [-2501.94, -1451.39], [-2500.06, -1451.45], [-2499.95, -1446.67], [-2492.73, -1446.85], [-2493.04, -1460.09], [-2502.13, -1459.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2504.48, -1445.64], [-2504.45, -1440.32], [-2498.15, -1440.26], [-2498.3, -1445.7], [-2504.48, -1445.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2453.13, -1462.76], [-2453.16, -1451.51], [-2449.12, -1451.5], [-2448.98, -1446.54], [-2443.76, -1446.58], [-2443.74, -1462.67], [-2453.13, -1462.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2459.09, -1459.66], [-2458.64, -1447.37], [-2469.38, -1446.97], [-2469.83, -1459.27], [-2459.09, -1459.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2475.58, -1459.91], [-2475.42, -1456.29], [-2471.91, -1456.44], [-2471.51, -1447.39], [-2482.57, -1446.91], [-2483.12, -1459.58], [-2475.58, -1459.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2308.08, -1451.13], [-2300.48, -1451.35], [-2300.59, -1446.85], [-2308.06, -1446.4], [-2308.08, -1451.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2319.4, -1452.46], [-2319.05, -1444.19], [-2325.34, -1444.12], [-2325.57, -1452.41], [-2319.4, -1452.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2324.81, -1467.1], [-2312.94, -1467.44], [-2312.7, -1454.9], [-2324.1, -1454.57], [-2324.81, -1467.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2308.12, -1452.66], [-2308.59, -1468.87], [-2296.61, -1469.33], [-2296.25, -1452.89], [-2308.12, -1452.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2327.65, -1466.66], [-2326.86, -1451.89], [-2336.95, -1451.6], [-2337.03, -1466.39], [-2327.65, -1466.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2313.5, -1439.75], [-2298.9, -1440.12], [-2298.67, -1431.33], [-2310.05, -1431.02], [-2310.12, -1433.26], [-2313.33, -1433.17], [-2313.5, -1439.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2309.73, -1421.24], [-2301.9, -1421.27], [-2301.89, -1418.8], [-2299.15, -1418.8], [-2299.11, -1406.66], [-2312.59, -1406.61], [-2312.6, -1413.17], [-2309.7, -1413.18], [-2309.73, -1421.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2312.12, -1389.24], [-2299.31, -1389.72], [-2299.11, -1387.0], [-2296.61, -1386.84], [-2296.54, -1380.22], [-2311.73, -1380.01], [-2312.12, -1389.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2323.53, -1389.5], [-2323.21, -1378.45], [-2315.32, -1378.67], [-2315.64, -1389.73], [-2323.53, -1389.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2336.69, -1394.72], [-2336.38, -1380.12], [-2325.1, -1380.36], [-2325.41, -1394.97], [-2336.69, -1394.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2330.43, -1419.01], [-2330.51, -1413.33], [-2324.69, -1413.38], [-2324.97, -1418.92], [-2330.43, -1419.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2297.44, -1391.28], [-2297.67, -1399.12], [-2299.48, -1399.06], [-2299.51, -1399.75], [-2310.12, -1399.42], [-2309.84, -1390.27], [-2299.41, -1390.59], [-2299.42, -1391.23], [-2297.44, -1391.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2412.22, -1272.83], [-2411.68, -1259.05], [-2402.68, -1259.37], [-2403.44, -1273.22], [-2412.22, -1272.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2396.71, -1269.09], [-2396.47, -1259.94], [-2384.55, -1260.24], [-2384.78, -1269.39], [-2396.71, -1269.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2384.82, -1272.68], [-2385.18, -1280.36], [-2380.43, -1280.64], [-2380.28, -1272.81], [-2384.82, -1272.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2381.42, -1270.42], [-2381.23, -1260.1], [-2372.54, -1260.27], [-2372.56, -1261.94], [-2369.98, -1261.99], [-2370.12, -1269.03], [-2372.21, -1269.0], [-2372.24, -1270.58], [-2381.42, -1270.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2364.33, -1265.82], [-2364.68, -1275.88], [-2353.98, -1276.27], [-2353.56, -1264.04], [-2361.19, -1263.78], [-2361.27, -1265.93], [-2364.33, -1265.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2345.96, -1300.45], [-2345.25, -1293.36], [-2351.72, -1292.88], [-2352.21, -1299.7], [-2345.96, -1300.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2360.83, -1291.19], [-2360.54, -1283.58], [-2368.45, -1283.0], [-2368.9, -1290.89], [-2360.83, -1291.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2346.54, -1279.11], [-2346.41, -1272.88], [-2345.17, -1272.91], [-2345.04, -1266.2], [-2337.6, -1266.36], [-2337.83, -1277.93], [-2341.96, -1277.85], [-2341.99, -1279.2], [-2346.54, -1279.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2334.45, -1284.34], [-2334.02, -1271.14], [-2324.76, -1271.44], [-2325.2, -1284.65], [-2334.45, -1284.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2319.49, -1283.03], [-2319.4, -1279.92], [-2320.42, -1279.88], [-2320.06, -1267.88], [-2308.53, -1268.24], [-2308.87, -1279.32], [-2311.63, -1279.23], [-2311.76, -1283.26], [-2319.49, -1283.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2292.65, -1302.48], [-2292.58, -1294.73], [-2302.29, -1294.23], [-2302.74, -1302.12], [-2292.65, -1302.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2301.41, -1281.18], [-2291.4, -1281.4], [-2291.32, -1273.85], [-2301.19, -1273.57], [-2301.41, -1281.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-731.77, -103.92], [-731.14, -91.25], [-722.15, -101.05], [-721.41, -101.21], [-720.65, -102.01], [-720.43, -102.94], [-720.54, -103.52], [-720.84, -104.12], [-721.16, -104.44], [-721.6, -104.71], [-722.54, -104.88], [-723.46, -104.58], [-723.91, -104.3], [-731.77, -103.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-586.36, -111.31], [-585.79, -92.86], [-592.8, -92.67], [-593.99, -111.01], [-586.36, -111.31]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-586.36, -111.31], [-585.79, -92.86], [-585.73, -91.34], [-584.77, -90.39], [-586.03, -87.97], [-575.71, -79.27], [-571.86, -79.52], [-572.07, -82.16], [-573.17, -111.85], [-586.36, -111.31]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-573.17, -111.85], [-560.33, -112.37], [-559.11, -82.51], [-572.07, -82.16], [-573.17, -111.85]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-649.54, -108.21], [-648.47, -93.77], [-650.66, -91.22], [-656.6, -96.41], [-656.39, -98.53], [-664.83, -106.09], [-664.2, -107.44], [-651.81, -108.09], [-649.54, -108.21]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-622.04, -85.22], [-628.16, -90.79], [-629.33, -109.27], [-614.99, -110.02], [-613.72, -88.28], [-616.74, -88.14], [-616.42, -80.54], [-616.87, -80.51], [-622.04, -85.22]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-614.99, -110.02], [-613.72, -88.28], [-605.96, -88.63], [-603.0, -88.74], [-603.93, -110.6], [-614.99, -110.02]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1415.65, -114.94], [-1421.38, -114.76], [-1421.43, -118.03], [-1422.28, -117.99], [-1422.66, -126.26], [-1421.81, -126.27], [-1421.91, -129.51], [-1399.15, -130.45], [-1398.97, -127.07], [-1397.81, -125.59], [-1397.6, -120.19], [-1398.44, -118.85], [-1397.43, -96.34], [-1397.38, -95.37], [-1409.36, -94.99], [-1410.12, -109.97], [-1415.42, -109.74], [-1415.65, -114.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1369.04, -91.82], [-1371.01, -126.44], [-1371.3, -131.61], [-1377.23, -131.3], [-1377.18, -130.45], [-1383.09, -130.13], [-1383.12, -130.78], [-1388.44, -130.47], [-1388.38, -129.43], [-1396.8, -128.94], [-1396.35, -121.32], [-1395.44, -121.37], [-1394.57, -107.19], [-1395.99, -107.11], [-1395.33, -96.42], [-1395.14, -93.34], [-1387.89, -93.75], [-1387.43, -90.87], [-1383.5, -91.1], [-1383.53, -91.61], [-1373.26, -92.17], [-1373.23, -91.66], [-1369.04, -91.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1745.49, -274.78], [-1746.65, -294.66], [-1767.09, -293.48], [-1768.17, -312.14], [-1757.07, -312.78], [-1757.2, -315.05], [-1728.38, -316.72], [-1726.01, -275.91], [-1745.49, -274.78]], "holes": []}, "height": 28.0}, {"shape": {"outer": [[-2688.96, -909.57], [-2688.91, -902.99], [-2688.83, -892.25], [-2697.37, -894.45], [-2697.9, -909.55], [-2694.18, -909.56], [-2688.96, -909.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3046.48, -834.94], [-3044.01, -835.0], [-3043.98, -833.62], [-3035.89, -833.82], [-3035.92, -835.2], [-3033.82, -835.25], [-3034.09, -846.2], [-3027.91, -846.35], [-3027.99, -849.67], [-3024.96, -849.75], [-3025.29, -863.54], [-3045.66, -863.04], [-3045.63, -861.8], [-3048.43, -861.73], [-3048.36, -858.76], [-3051.22, -858.69], [-3051.01, -849.86], [-3046.84, -849.96], [-3046.48, -834.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2408.99, -1095.95], [-2405.72, -1093.16], [-2406.56, -1092.18], [-2404.09, -1090.08], [-2403.25, -1091.06], [-2392.45, -1081.86], [-2393.33, -1080.84], [-2390.83, -1078.71], [-2389.95, -1079.73], [-2388.4, -1078.42], [-2386.42, -1081.02], [-2385.3, -1080.17], [-2383.2, -1082.92], [-2384.32, -1083.78], [-2382.38, -1086.33], [-2398.41, -1100.14], [-2387.0, -1100.4], [-2386.87, -1094.47], [-2384.72, -1092.01], [-2378.64, -1092.23], [-2378.96, -1106.77], [-2387.92, -1106.57], [-2387.95, -1107.98], [-2391.57, -1107.9], [-2391.55, -1106.49], [-2403.51, -1106.21], [-2403.54, -1107.46], [-2406.97, -1107.39], [-2406.94, -1106.13], [-2409.22, -1106.08], [-2408.99, -1095.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3019.51, -1066.88], [-3016.6, -1077.57], [-3004.56, -1074.31], [-3007.47, -1063.62], [-3019.51, -1066.88]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3047.12, -1063.85], [-3042.92, -1068.67], [-3038.07, -1064.48], [-3042.26, -1059.65], [-3047.12, -1063.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2697.37, -894.45], [-2688.83, -892.25], [-2680.19, -889.7], [-2679.88, -877.57], [-2700.4, -884.07], [-2697.37, -894.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3038.68, -1074.22], [-3029.26, -1066.91], [-3022.66, -1075.33], [-3024.28, -1076.59], [-3022.79, -1078.49], [-3027.04, -1081.78], [-3028.52, -1079.88], [-3032.08, -1082.64], [-3038.68, -1074.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2664.89, -933.98], [-2660.74, -930.49], [-2658.97, -932.58], [-2656.75, -930.71], [-2645.63, -943.84], [-2649.95, -947.48], [-2651.54, -945.6], [-2653.57, -947.32], [-2664.89, -933.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2289.94, -1108.73], [-2310.93, -1107.98], [-2310.88, -1106.29], [-2322.45, -1105.88], [-2322.51, -1107.65], [-2339.27, -1107.06], [-2338.83, -1094.57], [-2333.46, -1094.76], [-2333.03, -1082.61], [-2313.38, -1083.31], [-2313.13, -1076.27], [-2308.85, -1076.43], [-2308.82, -1075.53], [-2288.78, -1076.23], [-2288.03, -1080.16], [-2287.45, -1084.1], [-2287.05, -1088.33], [-2287.0, -1092.46], [-2287.3, -1096.69], [-2287.95, -1100.74], [-2288.86, -1104.78], [-2289.94, -1108.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3117.86, -1136.8], [-3124.37, -1142.57], [-3120.81, -1146.57], [-3122.71, -1148.26], [-3119.22, -1152.18], [-3117.32, -1150.49], [-3115.19, -1152.87], [-3110.93, -1149.1], [-3111.39, -1148.58], [-3109.14, -1146.59], [-3117.86, -1136.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3241.36, -920.18], [-3241.71, -929.64], [-3230.24, -930.06], [-3229.89, -920.6], [-3241.36, -920.18]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2930.86, -984.72], [-2925.26, -984.77], [-2925.31, -990.59], [-2920.8, -990.63], [-2920.89, -999.81], [-2931.02, -999.71], [-2930.86, -984.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3018.37, -994.48], [-3008.66, -993.15], [-3007.31, -1002.92], [-3007.78, -1002.98], [-3007.5, -1004.97], [-3015.5, -1006.06], [-3015.77, -1004.08], [-3017.03, -1004.25], [-3018.37, -994.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3184.31, -1145.52], [-3178.67, -1152.44], [-3176.44, -1150.63], [-3175.65, -1151.58], [-3166.15, -1143.89], [-3171.85, -1136.89], [-3174.17, -1138.76], [-3174.88, -1137.89], [-3184.31, -1145.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3034.83, -1134.16], [-3033.31, -1132.95], [-3034.82, -1131.07], [-3031.27, -1128.24], [-3029.76, -1130.11], [-3028.36, -1129.0], [-3020.77, -1138.47], [-3027.24, -1143.61], [-3034.83, -1134.16]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3022.17, -1005.37], [-3022.9, -996.67], [-3031.86, -997.42], [-3031.12, -1006.12], [-3022.17, -1005.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3049.03, -1008.47], [-3048.56, -1008.42], [-3048.5, -1008.97], [-3047.39, -1010.02], [-3039.89, -1009.2], [-3041.33, -995.98], [-3041.48, -994.6], [-3042.41, -994.7], [-3050.44, -995.57], [-3049.03, -1008.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3067.93, -998.61], [-3061.2, -997.86], [-3061.31, -996.85], [-3058.44, -996.53], [-3057.86, -1001.72], [-3056.88, -1010.48], [-3066.48, -1011.54], [-3067.93, -998.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3041.33, -995.98], [-3035.7, -995.49], [-3036.17, -990.15], [-3042.75, -990.72], [-3042.41, -994.7], [-3041.48, -994.6], [-3041.33, -995.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3027.28, -992.35], [-3027.93, -986.5], [-3021.78, -985.83], [-3021.13, -991.68], [-3027.28, -992.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3021.11, -990.91], [-3014.05, -990.2], [-3014.67, -984.17], [-3021.73, -984.89], [-3021.11, -990.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3000.54, -1004.11], [-2993.27, -1003.0], [-2993.61, -1000.74], [-2993.08, -1000.65], [-2994.63, -990.6], [-3003.04, -991.89], [-3001.48, -1001.94], [-3000.89, -1001.86], [-3000.54, -1004.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2983.87, -1000.53], [-2974.03, -1000.72], [-2973.77, -987.11], [-2978.62, -987.02], [-2978.53, -982.24], [-2984.0, -982.14], [-2984.08, -986.53], [-2986.62, -986.48], [-2986.73, -991.79], [-2983.7, -991.85], [-2983.87, -1000.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2970.3, -1000.97], [-2961.94, -1001.28], [-2961.32, -984.28], [-2969.68, -983.99], [-2970.3, -1000.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2958.56, -991.99], [-2958.76, -1000.18], [-2949.03, -1000.42], [-2948.7, -986.89], [-2955.47, -986.72], [-2955.6, -992.05], [-2958.56, -991.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2942.97, -999.09], [-2937.84, -999.26], [-2937.83, -998.88], [-2935.53, -998.95], [-2935.33, -993.43], [-2934.86, -993.45], [-2934.67, -987.74], [-2935.31, -987.72], [-2935.17, -983.85], [-2941.35, -983.64], [-2941.49, -987.97], [-2942.59, -987.92], [-2942.97, -999.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3008.95, -1166.05], [-3001.76, -1160.15], [-3003.92, -1157.05], [-3002.9, -1156.18], [-3006.02, -1151.87], [-3014.68, -1158.98], [-3008.95, -1166.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3020.96, -1151.98], [-3018.09, -1155.2], [-3013.57, -1151.66], [-3016.17, -1148.17], [-3020.96, -1151.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3039.83, -1152.78], [-3029.86, -1144.47], [-3036.89, -1136.09], [-3043.24, -1141.36], [-3041.43, -1143.52], [-3045.06, -1146.53], [-3039.83, -1152.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3120.62, -1224.88], [-3112.4, -1217.58], [-3121.02, -1207.88], [-3128.78, -1214.89], [-3120.62, -1224.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3112.88, -1202.2], [-3104.72, -1211.44], [-3102.57, -1209.54], [-3102.11, -1210.06], [-3097.8, -1206.29], [-3106.42, -1196.53], [-3112.88, -1202.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3092.98, -1210.59], [-3089.96, -1214.8], [-3085.91, -1211.69], [-3089.1, -1207.29], [-3092.98, -1210.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3093.63, -1204.33], [-3085.29, -1197.56], [-3094.06, -1186.82], [-3094.85, -1187.47], [-3096.49, -1185.45], [-3103.71, -1191.3], [-3101.9, -1193.51], [-3102.25, -1193.79], [-3093.63, -1204.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3086.35, -1181.71], [-3081.21, -1187.77], [-3069.5, -1177.91], [-3074.64, -1171.85], [-3086.35, -1181.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2788.73, -1546.88], [-2781.03, -1554.63], [-2771.5, -1545.94], [-2778.66, -1538.02], [-2788.73, -1546.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2774.04, -1537.17], [-2769.26, -1542.87], [-2765.48, -1539.92], [-2764.87, -1540.75], [-2757.12, -1533.98], [-2762.17, -1528.0], [-2765.95, -1531.3], [-2767.09, -1530.11], [-2771.71, -1534.27], [-2771.19, -1534.92], [-2774.04, -1537.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2760.91, -1524.99], [-2754.64, -1532.16], [-2752.34, -1530.44], [-2750.41, -1532.46], [-2746.55, -1529.62], [-2748.1, -1527.33], [-2745.71, -1525.61], [-2748.33, -1522.66], [-2745.11, -1520.25], [-2749.19, -1515.02], [-2760.91, -1524.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2748.0, -1512.96], [-2742.48, -1520.3], [-2730.23, -1511.14], [-2737.05, -1502.08], [-2741.9, -1505.7], [-2740.6, -1507.43], [-2748.0, -1512.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2733.22, -1499.89], [-2727.63, -1506.46], [-2726.43, -1505.46], [-2723.57, -1508.82], [-2717.6, -1503.78], [-2716.97, -1504.52], [-2713.9, -1501.92], [-2722.97, -1491.24], [-2733.22, -1499.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2719.99, -1489.01], [-2711.91, -1498.09], [-2704.23, -1491.3], [-2700.43, -1495.57], [-2695.48, -1491.2], [-2707.35, -1477.85], [-2719.99, -1489.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2702.2, -1473.56], [-2699.81, -1476.33], [-2700.8, -1477.17], [-2692.05, -1487.34], [-2683.03, -1479.64], [-2694.15, -1466.71], [-2702.2, -1473.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2689.63, -1464.31], [-2682.28, -1472.56], [-2678.65, -1469.34], [-2676.77, -1471.45], [-2669.63, -1465.15], [-2678.85, -1454.8], [-2689.63, -1464.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2626.6, -1430.64], [-2616.57, -1442.6], [-2612.0, -1438.74], [-2614.01, -1436.31], [-2606.42, -1430.03], [-2613.72, -1420.96], [-2626.6, -1430.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2632.63, -1429.13], [-2619.01, -1419.33], [-2624.99, -1410.73], [-2626.81, -1412.16], [-2627.67, -1411.1], [-2639.06, -1420.52], [-2632.63, -1429.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2673.95, -1449.95], [-2664.67, -1461.7], [-2656.21, -1455.05], [-2665.49, -1443.31], [-2673.95, -1449.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2662.33, -1438.67], [-2646.8, -1456.82], [-2641.51, -1452.33], [-2647.55, -1445.26], [-2642.89, -1441.32], [-2652.38, -1430.22], [-2662.33, -1438.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2367.48, -1441.47], [-2360.16, -1441.5], [-2361.1, -1461.83], [-2370.82, -1461.73], [-2369.9, -1445.17], [-2367.91, -1445.13], [-2367.48, -1441.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2368.48, -857.21], [-2356.54, -857.79], [-2357.25, -872.6], [-2364.8, -872.12], [-2373.46, -879.54], [-2383.22, -867.91], [-2376.96, -862.5], [-2373.1, -861.28], [-2368.48, -857.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2496.59, -919.44], [-2490.74, -926.23], [-2487.86, -923.77], [-2486.74, -925.07], [-2484.58, -923.23], [-2485.7, -921.92], [-2484.67, -921.04], [-2491.12, -913.55], [-2493.72, -915.79], [-2493.12, -916.48], [-2496.59, -919.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2443.01, -873.12], [-2440.53, -871.01], [-2441.97, -869.31], [-2436.51, -864.69], [-2427.87, -874.8], [-2430.97, -877.42], [-2430.25, -878.26], [-2431.16, -879.03], [-2430.9, -879.35], [-2434.84, -882.69], [-2443.01, -873.12]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2795.07, -942.5], [-2790.37, -949.4], [-2782.49, -944.06], [-2781.59, -945.38], [-2777.24, -942.44], [-2782.84, -934.22], [-2786.52, -936.71], [-2787.02, -935.98], [-2791.62, -939.09], [-2791.11, -939.83], [-2795.07, -942.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2533.04, -886.67], [-2521.76, -899.62], [-2517.8, -896.2], [-2519.21, -894.59], [-2504.61, -881.97], [-2501.48, -885.57], [-2496.43, -881.21], [-2508.51, -867.31], [-2527.75, -883.94], [-2528.67, -882.88], [-2533.04, -886.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2441.75, -999.11], [-2444.09, -1001.14], [-2442.9, -1002.5], [-2446.97, -1006.03], [-2437.83, -1016.47], [-2436.87, -1015.63], [-2435.15, -1017.59], [-2431.02, -1014.01], [-2432.74, -1012.05], [-2431.19, -1010.69], [-2440.41, -1000.16], [-2440.64, -1000.36], [-2441.75, -999.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2462.09, -890.3], [-2462.76, -890.85], [-2464.09, -889.21], [-2469.45, -893.53], [-2468.12, -895.17], [-2468.68, -895.62], [-2462.46, -903.27], [-2460.73, -901.86], [-2460.14, -902.58], [-2458.73, -901.43], [-2456.22, -904.52], [-2452.79, -901.74], [-2462.09, -890.3]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2485.59, -853.29], [-2492.93, -859.38], [-2488.49, -864.69], [-2489.47, -865.5], [-2487.25, -868.16], [-2486.27, -867.34], [-2484.01, -870.05], [-2478.61, -865.58], [-2480.38, -863.47], [-2478.42, -861.85], [-2481.39, -858.31], [-2480.83, -857.84], [-2482.39, -855.97], [-2482.95, -856.44], [-2485.59, -853.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2405.63, -996.23], [-2400.83, -1001.7], [-2394.74, -996.39], [-2399.54, -990.93], [-2405.63, -996.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2321.3, -921.12], [-2325.51, -924.65], [-2321.2, -929.75], [-2317.0, -926.23], [-2321.3, -921.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2479.47, -932.28], [-2484.44, -936.42], [-2479.96, -941.76], [-2474.99, -937.61], [-2479.47, -932.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2439.65, -896.72], [-2443.08, -899.66], [-2437.71, -905.88], [-2434.29, -902.95], [-2439.65, -896.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2478.83, -904.27], [-2472.03, -898.5], [-2463.33, -908.69], [-2470.13, -914.45], [-2478.83, -904.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2845.24, -1003.39], [-2845.47, -1012.57], [-2830.41, -1012.95], [-2830.19, -1003.77], [-2845.24, -1003.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2461.64, -918.75], [-2457.78, -923.32], [-2452.71, -919.07], [-2456.56, -914.5], [-2461.64, -918.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2329.75, -901.05], [-2322.8, -895.14], [-2312.9, -906.69], [-2319.85, -912.6], [-2329.75, -901.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2763.41, -902.67], [-2761.48, -909.04], [-2732.7, -900.38], [-2734.62, -894.01], [-2763.41, -902.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2448.96, -929.37], [-2445.69, -926.63], [-2441.89, -931.14], [-2445.16, -933.88], [-2448.96, -929.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2290.33, -910.03], [-2295.93, -903.31], [-2285.83, -894.94], [-2280.23, -901.67], [-2290.33, -910.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2489.77, -939.97], [-2494.03, -943.75], [-2489.15, -949.23], [-2484.89, -945.45], [-2489.77, -939.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2430.69, -1020.82], [-2426.37, -1025.38], [-2421.39, -1020.71], [-2425.72, -1016.14], [-2430.69, -1020.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2564.6, -901.84], [-2570.33, -906.72], [-2564.27, -913.8], [-2558.53, -908.92], [-2564.6, -901.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2378.92, -974.42], [-2374.14, -979.56], [-2368.44, -974.31], [-2373.22, -969.16], [-2378.92, -974.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2435.6, -894.37], [-2431.42, -899.29], [-2426.07, -894.78], [-2430.25, -889.86], [-2435.6, -894.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2482.96, -907.48], [-2489.11, -912.71], [-2480.27, -923.05], [-2474.12, -917.83], [-2482.96, -907.48]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2452.86, -909.14], [-2456.84, -912.38], [-2452.69, -917.42], [-2448.72, -914.18], [-2452.86, -909.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2877.23, -1001.21], [-2870.54, -1001.25], [-2870.57, -1008.21], [-2877.27, -1008.17], [-2877.23, -1001.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2445.21, -926.1], [-2440.91, -931.1], [-2434.94, -926.0], [-2439.24, -921.01], [-2445.21, -926.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2733.5, -893.79], [-2731.5, -900.53], [-2705.37, -892.82], [-2707.37, -886.1], [-2733.5, -893.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2673.39, -990.28], [-2668.56, -995.59], [-2663.49, -991.04], [-2668.31, -985.71], [-2673.39, -990.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2429.71, -888.11], [-2425.13, -893.69], [-2418.57, -888.35], [-2423.15, -882.76], [-2429.71, -888.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2532.83, -891.46], [-2538.91, -896.64], [-2532.75, -903.85], [-2532.18, -903.36], [-2528.27, -907.95], [-2522.76, -903.26], [-2532.83, -891.46]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2255.53, -901.53], [-2255.71, -910.01], [-2243.17, -910.27], [-2243.17, -909.83], [-2240.93, -909.87], [-2240.76, -901.84], [-2255.53, -901.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2585.61, -905.33], [-2589.61, -900.12], [-2586.87, -898.03], [-2588.13, -896.4], [-2583.67, -892.99], [-2578.42, -899.83], [-2585.61, -905.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2340.07, -923.76], [-2345.01, -917.77], [-2341.53, -914.93], [-2342.62, -913.59], [-2339.57, -911.1], [-2333.54, -918.42], [-2340.07, -923.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2360.06, -926.7], [-2366.03, -931.85], [-2357.83, -941.27], [-2355.08, -938.88], [-2354.22, -939.86], [-2351.02, -937.09], [-2360.06, -926.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2423.54, -982.68], [-2426.49, -985.27], [-2424.62, -987.38], [-2428.8, -991.06], [-2419.79, -1001.24], [-2416.02, -997.92], [-2417.2, -996.59], [-2413.85, -993.64], [-2423.54, -982.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2417.99, -938.74], [-2423.14, -932.71], [-2416.98, -927.47], [-2416.43, -928.11], [-2414.71, -926.65], [-2410.35, -931.74], [-2412.01, -933.15], [-2411.75, -933.45], [-2417.99, -938.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2501.82, -869.97], [-2495.66, -877.17], [-2494.83, -876.46], [-2493.21, -878.34], [-2487.12, -873.17], [-2488.73, -871.28], [-2488.13, -870.78], [-2494.28, -863.57], [-2501.82, -869.97]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2728.51, -989.21], [-2721.73, -983.55], [-2711.88, -995.26], [-2713.5, -996.6], [-2712.34, -997.98], [-2715.95, -1001.0], [-2717.11, -999.62], [-2718.67, -1000.92], [-2728.51, -989.21]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2610.05, -947.05], [-2612.19, -944.54], [-2612.53, -944.82], [-2616.15, -940.57], [-2615.23, -939.8], [-2615.6, -939.38], [-2608.09, -933.02], [-2607.63, -933.56], [-2605.99, -932.16], [-2600.78, -938.27], [-2602.32, -939.57], [-2601.85, -940.12], [-2610.05, -947.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2253.0, -898.26], [-2252.68, -888.88], [-2243.74, -889.18], [-2243.92, -894.58], [-2241.8, -894.65], [-2241.92, -898.09], [-2244.04, -898.03], [-2244.05, -898.56], [-2253.0, -898.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2565.12, -996.66], [-2558.02, -990.56], [-2549.85, -1000.0], [-2552.67, -1002.43], [-2551.23, -1004.1], [-2555.11, -1007.42], [-2556.57, -1005.72], [-2556.98, -1006.06], [-2565.12, -996.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2888.02, -987.01], [-2877.29, -987.22], [-2877.37, -991.48], [-2873.24, -991.57], [-2873.37, -998.38], [-2877.48, -998.3], [-2877.48, -998.61], [-2888.24, -998.42], [-2888.02, -987.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2506.34, -927.32], [-2500.92, -933.74], [-2498.3, -931.55], [-2497.06, -933.01], [-2494.57, -930.93], [-2495.81, -929.46], [-2493.92, -927.88], [-2499.34, -921.45], [-2506.34, -927.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2292.26, -929.38], [-2291.96, -917.9], [-2290.17, -917.95], [-2290.11, -915.5], [-2284.19, -915.65], [-2284.25, -918.09], [-2282.97, -918.13], [-2283.27, -929.6], [-2292.26, -929.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2440.33, -936.16], [-2444.75, -939.98], [-2440.85, -944.48], [-2442.8, -946.17], [-2435.83, -954.2], [-2432.81, -951.59], [-2431.45, -953.17], [-2428.07, -950.25], [-2440.33, -936.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3134.95, -296.69], [-3134.02, -302.83], [-3131.43, -302.43], [-3130.97, -305.43], [-3119.78, -303.75], [-3119.84, -303.38], [-3118.07, -303.12], [-3119.34, -294.77], [-3121.15, -295.04], [-3121.21, -294.62], [-3134.95, -296.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3167.57, -213.88], [-3174.13, -214.92], [-3173.16, -221.06], [-3173.72, -221.14], [-3173.1, -225.03], [-3174.98, -225.33], [-3172.92, -238.29], [-3167.59, -237.46], [-3168.07, -234.44], [-3163.36, -233.69], [-3163.86, -230.54], [-3164.88, -230.7], [-3167.57, -213.88]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3197.13, -518.69], [-3198.09, -506.78], [-3180.91, -505.4], [-3181.01, -504.21], [-3174.55, -503.68], [-3174.03, -509.97], [-3172.27, -509.83], [-3172.2, -510.66], [-3169.72, -510.46], [-3169.24, -516.45], [-3178.77, -517.22], [-3178.54, -520.11], [-3190.09, -521.03], [-3190.32, -518.14], [-3197.13, -518.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3136.03, -259.73], [-3126.88, -258.32], [-3124.26, -275.13], [-3133.42, -276.55], [-3136.03, -259.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3112.17, -182.23], [-3110.55, -192.62], [-3091.81, -189.74], [-3093.43, -179.33], [-3112.17, -182.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3163.94, -501.95], [-3163.16, -510.55], [-3152.25, -509.56], [-3153.04, -500.97], [-3163.94, -501.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3097.78, -211.04], [-3087.35, -209.39], [-3085.14, -223.23], [-3095.57, -224.89], [-3097.78, -211.04]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-3179.7, -162.98], [-3164.59, -160.35], [-3161.58, -177.52], [-3176.69, -180.15], [-3179.7, -162.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2933.26, -259.56], [-2927.81, -258.78], [-2926.9, -265.19], [-2932.35, -265.96], [-2933.26, -259.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3153.42, -161.19], [-3151.67, -172.3], [-3137.58, -170.08], [-3139.34, -158.98], [-3153.42, -161.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2870.14, -274.57], [-2870.57, -284.54], [-2856.54, -285.14], [-2856.11, -275.19], [-2870.14, -274.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3207.93, -226.15], [-3209.31, -215.72], [-3194.66, -213.78], [-3193.27, -224.21], [-3207.93, -226.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3190.57, -270.12], [-3187.24, -290.42], [-3172.44, -288.0], [-3175.77, -267.71], [-3190.57, -270.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3199.06, -187.22], [-3200.26, -179.22], [-3211.11, -180.83], [-3209.92, -188.83], [-3199.06, -187.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3204.17, -163.09], [-3202.74, -171.31], [-3218.12, -173.98], [-3219.55, -165.75], [-3204.17, -163.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3101.99, -199.46], [-3110.95, -200.87], [-3106.81, -226.85], [-3097.86, -225.44], [-3101.99, -199.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3197.66, -193.48], [-3196.27, -202.79], [-3211.07, -204.96], [-3212.45, -195.65], [-3197.66, -193.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2936.76, -263.85], [-2949.29, -265.92], [-2945.29, -289.84], [-2932.77, -287.77], [-2936.76, -263.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3206.82, -232.8], [-3205.09, -244.05], [-3190.54, -241.84], [-3192.27, -230.59], [-3206.82, -232.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3150.64, -184.41], [-3151.35, -180.11], [-3149.73, -179.83], [-3150.4, -175.8], [-3136.03, -173.42], [-3134.64, -181.77], [-3150.64, -184.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3130.05, -189.46], [-3144.69, -191.77], [-3143.57, -198.77], [-3139.13, -198.08], [-3133.69, -232.28], [-3123.49, -230.67], [-3130.05, -189.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3170.97, -268.33], [-3160.01, -266.44], [-3159.08, -271.83], [-3160.32, -272.05], [-3158.9, -280.23], [-3168.61, -281.91], [-3170.97, -268.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2725.65, -424.04], [-2726.06, -435.72], [-2710.44, -436.27], [-2710.34, -433.4], [-2708.18, -433.48], [-2707.98, -427.37], [-2710.12, -427.3], [-2710.03, -424.59], [-2725.65, -424.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2975.64, -238.87], [-2977.52, -239.16], [-2977.89, -236.72], [-2983.77, -237.63], [-2983.39, -240.06], [-2985.11, -240.32], [-2982.68, -256.1], [-2973.21, -254.65], [-2975.64, -238.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3259.23, -280.11], [-3257.61, -290.57], [-3259.16, -290.8], [-3257.57, -301.13], [-3235.52, -297.74], [-3237.76, -283.24], [-3236.06, -282.98], [-3237.03, -276.7], [-3259.23, -280.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3227.53, -189.91], [-3248.48, -193.73], [-3239.26, -243.86], [-3234.35, -242.96], [-3234.03, -244.68], [-3222.64, -242.59], [-3222.96, -240.88], [-3218.31, -240.03], [-3227.53, -189.91]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-3052.05, -285.54], [-3043.33, -284.19], [-3040.32, -303.55], [-3041.03, -303.65], [-3040.74, -305.43], [-3042.86, -305.76], [-3042.67, -306.95], [-3048.56, -307.87], [-3052.05, -285.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3162.48, -220.1], [-3152.53, -218.52], [-3150.38, -231.98], [-3152.44, -232.29], [-3151.98, -235.14], [-3158.07, -236.11], [-3158.53, -233.26], [-3160.34, -233.54], [-3162.48, -220.1]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3166.46, -312.65], [-3158.52, -311.3], [-3156.97, -320.35], [-3158.28, -320.57], [-3157.7, -323.97], [-3161.52, -324.62], [-3161.41, -325.27], [-3164.22, -325.74], [-3166.46, -312.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3039.76, -293.72], [-3038.13, -304.36], [-3035.42, -303.95], [-3035.14, -305.79], [-3029.57, -304.94], [-3029.85, -303.1], [-3027.13, -302.69], [-3028.76, -292.05], [-3039.76, -293.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3139.59, -216.2], [-3149.65, -217.85], [-3147.41, -231.35], [-3145.2, -230.99], [-3144.71, -233.95], [-3139.12, -233.03], [-3139.6, -230.07], [-3137.35, -229.71], [-3139.59, -216.2]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3113.99, -168.93], [-3112.74, -177.85], [-3097.25, -175.69], [-3097.48, -174.05], [-3095.62, -173.79], [-3096.22, -169.55], [-3098.08, -169.81], [-3098.51, -166.77], [-3113.99, -168.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3085.71, -1694.74], [-3091.56, -1699.48], [-3080.76, -1712.69], [-3076.81, -1709.47], [-3075.27, -1711.34], [-3077.48, -1713.13], [-3076.86, -1715.05], [-3075.89, -1716.22], [-3074.09, -1717.27], [-3064.2, -1709.23], [-3066.99, -1705.81], [-3065.32, -1704.46], [-3067.6, -1701.67], [-3065.61, -1700.06], [-3069.88, -1694.85], [-3079.33, -1702.53], [-3085.71, -1694.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3210.49, -1665.96], [-3219.04, -1672.98], [-3202.65, -1692.79], [-3198.25, -1689.17], [-3196.55, -1691.23], [-3193.12, -1688.42], [-3188.87, -1693.55], [-3200.38, -1703.02], [-3194.12, -1710.58], [-3177.76, -1697.14], [-3192.34, -1679.53], [-3191.13, -1678.55], [-3195.34, -1673.46], [-3200.66, -1677.83], [-3203.96, -1673.85], [-3202.0, -1672.25], [-3204.59, -1669.13], [-3206.54, -1670.73], [-3210.49, -1665.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3226.88, -1688.45], [-3235.59, -1695.66], [-3225.08, -1708.26], [-3216.37, -1701.05], [-3226.88, -1688.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3224.45, -1713.83], [-3217.6, -1721.71], [-3206.54, -1712.17], [-3213.39, -1704.28], [-3224.45, -1713.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2995.62, -2913.29], [-2990.18, -2927.44], [-2984.44, -2925.25], [-2986.68, -2919.44], [-2976.82, -2915.67], [-2979.06, -2909.85], [-2984.64, -2911.98], [-2987.18, -2905.37], [-2993.07, -2907.62], [-2991.49, -2911.72], [-2995.62, -2913.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3168.44, -2995.12], [-3171.91, -2996.99], [-3172.55, -2995.82], [-3178.56, -2999.06], [-3175.38, -3004.92], [-3177.73, -3006.18], [-3174.64, -3011.85], [-3165.5, -3006.93], [-3168.57, -3001.28], [-3165.89, -2999.83], [-3168.44, -2995.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3010.56, -3035.34], [-3002.85, -3028.8], [-2997.29, -3035.29], [-2998.13, -3036.0], [-2993.55, -3041.36], [-2994.68, -3042.31], [-2987.66, -3050.51], [-2994.57, -3056.38], [-2999.8, -3050.27], [-2998.63, -3049.28], [-3010.56, -3035.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3140.64, -3002.86], [-3140.65, -3007.7], [-3137.54, -3007.85], [-3137.82, -3013.6], [-3131.35, -3013.93], [-3131.16, -3010.23], [-3118.23, -3010.88], [-3117.72, -3000.63], [-3124.69, -3000.29], [-3128.67, -2997.26], [-3140.64, -3002.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3324.02, -3012.4], [-3316.42, -3019.84], [-3306.78, -3010.07], [-3304.63, -3012.19], [-3299.14, -3006.64], [-3303.2, -3002.65], [-3300.14, -2999.56], [-3305.84, -2993.97], [-3310.16, -2998.36], [-3311.34, -2997.2], [-3320.31, -3006.29], [-3319.13, -3007.45], [-3324.02, -3012.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3037.79, -2942.46], [-3030.64, -2935.24], [-3025.92, -2939.89], [-3018.77, -2932.68], [-3013.0, -2938.35], [-3018.39, -2943.79], [-3014.98, -2947.14], [-3018.81, -2951.01], [-3022.22, -2947.66], [-3024.26, -2949.71], [-3029.52, -2944.53], [-3032.56, -2947.6], [-3037.79, -2942.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3101.49, -2935.22], [-3108.34, -2938.65], [-3114.95, -2941.49], [-3117.79, -2947.33], [-3112.15, -2951.78], [-3109.25, -2951.54], [-3108.35, -2953.62], [-3104.6, -2954.45], [-3102.23, -2952.81], [-3091.34, -2962.22], [-3083.4, -2953.79], [-3096.03, -2942.26], [-3096.41, -2940.98], [-3101.49, -2935.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3211.83, -2946.63], [-3197.86, -2942.31], [-3192.32, -2960.1], [-3206.29, -2964.42], [-3211.83, -2946.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2985.88, -3064.51], [-2976.55, -3057.64], [-2964.19, -3074.29], [-2973.52, -3081.16], [-2985.88, -3064.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2988.89, -2991.92], [-2996.21, -2984.24], [-2982.74, -2971.49], [-2975.42, -2979.16], [-2988.89, -2991.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3257.24, -2969.09], [-3261.74, -2959.64], [-3249.85, -2954.02], [-3245.34, -2963.46], [-3257.24, -2969.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3303.98, -2979.94], [-3294.69, -2994.18], [-3279.94, -2984.62], [-3289.23, -2970.39], [-3303.98, -2979.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3225.12, -3029.41], [-3217.02, -3023.9], [-3207.24, -3038.18], [-3215.34, -3043.69], [-3225.12, -3029.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3099.24, -3007.0], [-3097.74, -3017.94], [-3077.32, -3015.17], [-3079.18, -3001.5], [-3086.12, -3002.43], [-3085.74, -3005.18], [-3099.24, -3007.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2971.71, -3010.85], [-2961.21, -3003.26], [-2949.38, -3019.51], [-2958.19, -3025.87], [-2961.83, -3020.86], [-2963.53, -3022.08], [-2971.71, -3010.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3060.07, -3050.74], [-3052.85, -3060.08], [-3032.84, -3044.72], [-3043.56, -3030.86], [-3050.23, -3035.97], [-3046.72, -3040.5], [-3060.07, -3050.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3233.86, -2996.17], [-3240.94, -3000.36], [-3232.19, -3015.04], [-3225.99, -3011.36], [-3230.04, -3004.54], [-3229.18, -3004.03], [-3233.86, -2996.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3058.89, -3007.14], [-3067.53, -2998.61], [-3058.4, -2989.43], [-3056.38, -2991.41], [-3045.14, -2980.11], [-3037.01, -2988.13], [-3049.88, -3001.09], [-3051.39, -2999.6], [-3058.89, -3007.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-420.34, -1974.02], [-408.87, -1974.62], [-408.92, -1976.53], [-399.11, -1976.81], [-398.87, -1958.9], [-415.77, -1958.29], [-416.15, -1967.2], [-420.13, -1967.02], [-420.34, -1974.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-410.07, -1995.69], [-399.37, -1996.21], [-398.92, -1980.33], [-409.3, -1979.92], [-410.07, -1995.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-411.72, -2015.46], [-401.35, -2015.87], [-400.79, -1999.88], [-411.07, -1999.47], [-411.72, -2015.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-434.94, -2016.61], [-423.12, -2017.27], [-422.74, -2009.43], [-434.48, -2008.68], [-434.94, -2016.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-416.88, -2027.16], [-408.03, -2027.66], [-407.48, -2019.49], [-416.07, -2018.84], [-416.88, -2027.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-414.86, -2031.05], [-410.08, -2031.19], [-409.82, -2028.01], [-404.44, -2028.26], [-404.55, -2029.45], [-402.16, -2029.67], [-402.33, -2032.2], [-398.91, -2032.39], [-399.41, -2037.89], [-415.15, -2037.18], [-414.86, -2031.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-280.88, -2035.19], [-272.33, -2035.61], [-271.66, -2022.15], [-280.21, -2021.73], [-280.88, -2035.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-259.2, -2126.39], [-254.05, -2126.62], [-253.94, -2119.56], [-259.08, -2119.41], [-259.2, -2126.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-285.98, -2117.64], [-286.21, -2125.9], [-271.76, -2126.29], [-271.52, -2117.06], [-284.43, -2116.71], [-284.46, -2117.68], [-285.98, -2117.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-261.58, -2113.65], [-254.58, -2114.01], [-254.29, -2106.71], [-261.37, -2106.43], [-261.58, -2113.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-251.33, -2110.09], [-244.72, -2110.12], [-244.41, -2102.01], [-250.85, -2101.83], [-251.33, -2110.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-249.58, -2128.12], [-240.73, -2128.37], [-240.42, -2114.9], [-249.28, -2114.8], [-249.58, -2128.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-234.04, -2128.48], [-225.67, -2128.64], [-225.48, -2116.28], [-233.86, -2116.28], [-234.04, -2128.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-286.15, -2107.82], [-270.86, -2108.49], [-270.62, -2100.15], [-285.84, -2099.79], [-286.15, -2107.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-283.52, -2095.88], [-272.35, -2096.27], [-272.24, -2093.33], [-269.48, -2093.42], [-269.34, -2089.32], [-272.22, -2089.22], [-272.12, -2086.31], [-281.71, -2085.98], [-281.8, -2088.69], [-283.27, -2088.64], [-283.52, -2095.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-267.98, -2082.61], [-259.88, -2082.9], [-259.7, -2077.78], [-267.8, -2077.51], [-267.98, -2082.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-268.02, -2083.87], [-268.23, -2088.4], [-261.1, -2088.6], [-261.13, -2084.07], [-268.02, -2083.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-281.7, -2078.6], [-270.52, -2078.9], [-270.28, -2069.9], [-283.98, -2069.53], [-284.15, -2076.12], [-281.64, -2076.18], [-281.7, -2078.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-281.38, -2064.45], [-273.4, -2064.83], [-273.28, -2062.39], [-269.76, -2062.56], [-269.43, -2055.72], [-282.16, -2055.1], [-282.5, -2062.0], [-281.27, -2062.06], [-281.38, -2064.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-281.0, -2049.35], [-271.36, -2049.7], [-271.11, -2040.8], [-280.82, -2040.45], [-281.0, -2049.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-269.87, -2052.63], [-263.77, -2052.96], [-263.68, -2049.84], [-269.63, -2049.67], [-269.87, -2052.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-262.25, -2060.43], [-255.64, -2060.57], [-255.49, -2053.67], [-262.1, -2053.52], [-262.25, -2060.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-233.41, -2114.05], [-226.36, -2114.1], [-226.32, -2106.23], [-233.36, -2106.18], [-233.41, -2114.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-583.56, -1962.27], [-581.99, -1950.72], [-567.78, -1952.64], [-568.36, -1956.9], [-567.52, -1957.01], [-569.47, -1971.38], [-580.3, -1969.92], [-579.34, -1962.84], [-583.56, -1962.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-580.05, -1973.93], [-570.12, -1975.03], [-571.23, -1984.92], [-581.16, -1983.81], [-580.05, -1973.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-594.08, -1984.71], [-586.51, -1985.65], [-585.91, -1980.9], [-593.5, -1979.96], [-594.08, -1984.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-547.26, -1984.26], [-540.66, -1984.94], [-539.39, -1972.83], [-544.09, -1972.34], [-544.32, -1974.59], [-546.68, -1974.34], [-546.94, -1976.82], [-547.95, -1976.71], [-548.29, -1979.98], [-546.83, -1980.13], [-547.26, -1984.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-537.22, -1984.01], [-533.29, -1984.27], [-532.92, -1978.79], [-527.48, -1979.16], [-526.79, -1969.0], [-530.46, -1968.75], [-530.3, -1966.23], [-534.43, -1965.96], [-535.25, -1978.04], [-536.81, -1977.94], [-537.22, -1984.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-512.19, -1975.68], [-505.84, -1975.98], [-505.55, -1969.58], [-511.89, -1969.29], [-512.19, -1975.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-503.11, -1970.11], [-493.08, -1970.47], [-492.83, -1961.56], [-502.62, -1961.36], [-503.11, -1970.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-503.87, -1983.31], [-493.54, -1983.74], [-493.37, -1974.91], [-497.54, -1974.82], [-497.59, -1975.48], [-503.44, -1975.23], [-503.87, -1983.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-512.59, -1973.44], [-512.38, -1969.77], [-514.42, -1969.66], [-514.38, -1969.02], [-515.08, -1968.98], [-514.91, -1965.93], [-522.21, -1965.53], [-523.06, -1980.56], [-514.93, -1981.02], [-514.5, -1973.33], [-512.59, -1973.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-523.41, -1981.51], [-515.06, -1982.12], [-516.06, -1995.63], [-523.13, -1995.11], [-522.85, -1991.28], [-524.13, -1991.19], [-523.41, -1981.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-468.99, -1986.64], [-461.05, -1987.0], [-460.15, -1967.53], [-470.11, -1967.07], [-470.81, -1982.49], [-468.81, -1982.58], [-468.99, -1986.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-441.21, -1984.44], [-434.89, -1984.83], [-435.43, -1993.58], [-440.91, -1993.24], [-440.71, -1989.99], [-441.55, -1989.94], [-441.21, -1984.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-441.34, -1983.7], [-435.28, -1983.98], [-434.7, -1971.42], [-440.76, -1971.13], [-441.34, -1983.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-469.36, -1997.96], [-457.96, -1998.42], [-457.65, -1990.65], [-469.06, -1990.19], [-469.36, -1997.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-498.7, -1988.29], [-493.27, -1988.59], [-493.92, -2000.49], [-502.59, -2000.02], [-502.0, -1989.28], [-498.76, -1989.46], [-498.7, -1988.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-503.04, -2008.45], [-492.72, -2008.9], [-492.41, -2001.73], [-502.73, -2001.28], [-503.04, -2008.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[308.64, 968.45], [301.41, 961.92], [312.45, 949.79], [319.68, 956.32], [308.64, 968.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[306.12, 973.38], [292.4, 961.05], [286.57, 967.5], [300.28, 979.82], [306.12, 973.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2161.39, 1765.05], [2175.51, 1750.7], [2170.4, 1745.71], [2156.29, 1760.07], [2161.39, 1765.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2168.82, 1744.47], [2162.67, 1738.55], [2149.24, 1752.43], [2155.39, 1758.35], [2168.82, 1744.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2142.88, 1747.83], [2148.49, 1753.22], [2149.24, 1752.43], [2162.67, 1738.55], [2157.07, 1733.17], [2142.88, 1747.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2132.45, 1737.31], [2141.07, 1745.63], [2155.27, 1731.02], [2146.63, 1722.7], [2132.45, 1737.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2230.62, 1762.29], [2212.42, 1732.55], [2214.12, 1731.19], [2255.27, 1742.82], [2253.46, 1747.94], [2230.62, 1762.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2023.41, 1629.09], [2014.92, 1637.65], [2017.5, 1640.2], [2020.38, 1637.31], [2023.03, 1639.92], [2022.43, 1640.54], [2028.54, 1646.58], [2029.24, 1645.87], [2033.9, 1650.48], [2033.22, 1651.17], [2036.34, 1654.25], [2030.81, 1659.82], [2031.62, 1660.63], [2033.69, 1658.55], [2036.27, 1661.09], [2034.21, 1663.17], [2035.01, 1663.96], [2032.92, 1666.06], [2028.46, 1670.56], [2024.23, 1666.39], [2023.73, 1666.89], [2020.8, 1664.02], [2020.15, 1664.67], [2017.46, 1662.02], [2017.92, 1661.55], [2013.43, 1657.12], [2012.95, 1657.59], [2010.13, 1654.8], [2010.55, 1654.38], [2007.55, 1651.43], [2013.29, 1645.63], [2010.15, 1642.54], [2006.73, 1645.98], [2002.87, 1642.18], [2003.32, 1641.73], [1996.44, 1634.96], [1995.94, 1635.46], [1992.06, 1631.64], [1995.95, 1627.71], [1996.25, 1628.02], [2003.27, 1620.95], [2002.34, 1620.04], [2009.38, 1612.95], [2010.33, 1613.88], [2017.04, 1607.12], [2016.0, 1606.1], [2020.7, 1601.37], [2025.31, 1605.92], [2024.63, 1606.6], [2031.29, 1613.17], [2031.83, 1612.62], [2035.84, 1616.57], [2033.21, 1619.21], [2035.27, 1621.23], [2036.9, 1619.58], [2042.3, 1624.91], [2042.69, 1624.52], [2044.67, 1626.47], [2044.28, 1626.86], [2049.35, 1631.86], [2049.92, 1631.3], [2052.56, 1633.9], [2045.41, 1641.09], [2043.28, 1638.99], [2043.63, 1638.63], [2042.52, 1637.53], [2036.62, 1643.48], [2034.01, 1640.9], [2034.7, 1640.21], [2027.18, 1632.79], [2026.13, 1633.85], [2023.47, 1631.23], [2024.52, 1630.17], [2023.41, 1629.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2232.22, 1765.52], [2247.06, 1756.69], [2251.63, 1766.1], [2238.09, 1774.74], [2232.22, 1765.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2238.09, 1774.74], [2245.13, 1785.77], [2258.18, 1776.83], [2251.63, 1766.1], [2238.09, 1774.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2503.02, -1779.75], [-2502.97, -1777.94], [-2502.88, -1774.8], [-2503.59, -1774.78], [-2503.36, -1766.5], [-2499.2, -1766.62], [-2499.06, -1761.56], [-2483.73, -1762.0], [-2483.77, -1763.43], [-2483.98, -1770.68], [-2478.75, -1770.83], [-2478.77, -1771.55], [-2479.03, -1780.44], [-2494.0, -1780.01], [-2498.3, -1779.89], [-2503.02, -1779.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2212.9, -1864.6], [-2214.54, -1879.29], [-2184.7, -1882.61], [-2183.06, -1867.91], [-2194.04, -1866.7], [-2192.79, -1855.53], [-2201.82, -1854.53], [-2201.66, -1853.05], [-2208.78, -1852.26], [-2210.2, -1864.9], [-2212.9, -1864.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2202.89, -1844.37], [-2204.94, -1832.79], [-2182.41, -1828.83], [-2180.36, -1840.42], [-2202.89, -1844.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2365.84, -1852.48], [-2352.44, -1864.56], [-2340.53, -1851.44], [-2353.93, -1839.37], [-2365.84, -1852.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2371.43, -1658.61], [-2384.43, -1647.4], [-2376.65, -1638.44], [-2371.52, -1642.86], [-2367.03, -1637.69], [-2372.16, -1633.27], [-2364.02, -1623.92], [-2351.03, -1635.13], [-2371.43, -1658.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2491.46, -1828.02], [-2486.49, -1821.65], [-2487.34, -1812.89], [-2491.6, -1809.98], [-2487.57, -1804.53], [-2492.7, -1800.41], [-2496.77, -1805.02], [-2501.87, -1805.46], [-2503.44, -1807.95], [-2505.58, -1806.35], [-2509.76, -1811.28], [-2508.86, -1812.08], [-2508.89, -1814.85], [-2509.55, -1814.94], [-2508.74, -1821.82], [-2500.09, -1829.07], [-2491.46, -1828.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2194.79, 1705.74], [2185.06, 1689.48], [2199.53, 1680.56], [2200.98, 1682.7], [2194.79, 1705.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2185.06, 1689.48], [2180.76, 1682.63], [2190.9, 1676.67], [2197.93, 1672.54], [2199.78, 1671.44], [2200.9, 1673.59], [2203.4, 1675.03], [2202.66, 1678.72], [2202.09, 1678.6], [2200.98, 1682.7], [2199.53, 1680.56], [2185.06, 1689.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2180.76, 1682.63], [2176.69, 1676.2], [2186.59, 1669.89], [2190.9, 1676.67], [2180.76, 1682.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1447.68, 777.92], [1454.06, 783.69], [1474.74, 761.02], [1468.35, 755.24], [1461.99, 762.22], [1447.68, 777.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1441.61, 772.42], [1447.68, 777.92], [1461.99, 762.22], [1455.92, 756.72], [1441.61, 772.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1433.76, 763.35], [1433.83, 765.38], [1441.61, 772.42], [1455.92, 756.72], [1447.08, 748.72], [1433.76, 763.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1399.6, 593.55], [1404.8, 598.18], [1415.53, 586.24], [1410.34, 581.6], [1399.6, 593.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1445.1, 631.76], [1445.39, 632.02], [1444.27, 633.25], [1449.65, 638.05], [1450.76, 636.82], [1450.99, 637.01], [1459.46, 627.62], [1453.56, 622.36], [1445.1, 631.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1376.79, 572.84], [1387.31, 561.29], [1393.68, 567.05], [1383.16, 578.61], [1382.24, 577.78], [1380.89, 576.55], [1376.79, 572.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1430.32, 618.27], [1436.14, 623.27], [1445.47, 612.52], [1439.65, 607.5], [1436.6, 611.02], [1436.08, 610.58], [1432.78, 614.38], [1433.3, 614.83], [1430.32, 618.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1416.61, 606.06], [1417.32, 606.68], [1416.6, 607.52], [1418.33, 609.0], [1419.05, 608.17], [1421.67, 610.42], [1429.08, 601.89], [1424.02, 597.53], [1416.61, 606.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1512.32, 693.62], [1518.31, 698.89], [1528.4, 686.68], [1522.57, 681.49], [1512.32, 693.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1475.88, 659.26], [1476.04, 659.43], [1474.27, 661.25], [1478.17, 665.01], [1479.94, 663.17], [1480.06, 663.3], [1486.67, 656.49], [1485.49, 655.37], [1489.38, 651.36], [1489.88, 651.84], [1492.43, 649.22], [1487.69, 644.65], [1479.56, 653.02], [1480.79, 654.2], [1475.88, 659.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1349.95, 601.96], [1357.15, 593.84], [1363.89, 599.77], [1355.61, 609.11], [1354.54, 608.16], [1352.92, 609.99], [1349.1, 606.63], [1351.8, 603.59], [1349.95, 601.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1338.2, 598.74], [1349.1, 586.72], [1349.63, 587.19], [1350.62, 586.1], [1351.7, 587.07], [1352.67, 587.94], [1356.02, 590.96], [1355.03, 592.05], [1355.3, 592.29], [1344.39, 604.32], [1338.2, 598.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1261.38, 299.4], [1271.4, 308.09], [1277.4, 301.22], [1267.38, 292.53], [1261.38, 299.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1379.24, 527.19], [1380.83, 528.65], [1381.59, 527.83], [1391.22, 536.59], [1383.47, 545.06], [1372.23, 534.83], [1379.24, 527.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1461.43, 646.16], [1466.05, 650.45], [1468.79, 647.52], [1469.68, 648.34], [1472.79, 645.0], [1472.47, 644.7], [1473.69, 643.39], [1473.14, 642.87], [1474.33, 641.6], [1470.1, 637.69], [1467.78, 640.16], [1467.38, 639.8], [1461.43, 646.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1524.56, 700.32], [1533.55, 708.71], [1541.29, 700.23], [1532.0, 691.77], [1524.56, 700.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1191.08, 369.82], [1205.47, 382.35], [1211.09, 375.95], [1210.01, 375.01], [1210.31, 374.68], [1207.04, 371.83], [1207.54, 371.24], [1203.12, 367.4], [1202.62, 367.97], [1199.99, 365.68], [1199.7, 366.02], [1196.7, 363.41], [1191.08, 369.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1437.39, 624.68], [1437.73, 624.98], [1436.43, 626.44], [1441.45, 630.9], [1442.76, 629.46], [1443.0, 629.67], [1445.16, 627.26], [1445.67, 627.72], [1448.89, 624.13], [1448.38, 623.67], [1450.61, 621.19], [1444.99, 616.19], [1437.39, 624.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1377.66, 549.62], [1367.36, 540.44], [1355.37, 553.81], [1365.67, 562.99], [1377.66, 549.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1257.06, 385.79], [1264.75, 392.64], [1272.25, 384.28], [1264.56, 377.43], [1257.06, 385.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1406.5, 600.47], [1413.08, 606.17], [1423.88, 593.81], [1417.31, 588.1], [1406.5, 600.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1240.9, 311.29], [1250.3, 300.73], [1251.6, 301.87], [1254.4, 298.73], [1260.75, 304.36], [1257.01, 308.56], [1256.21, 307.86], [1247.75, 317.35], [1243.84, 313.89], [1241.84, 312.13], [1240.9, 311.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1467.2, 655.01], [1471.88, 659.23], [1481.92, 648.22], [1477.24, 643.99], [1467.2, 655.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1510.82, 691.91], [1521.59, 679.23], [1515.3, 673.67], [1503.91, 686.07], [1508.82, 690.22], [1510.06, 691.27], [1510.82, 691.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1422.97, 611.79], [1423.29, 612.07], [1422.08, 613.49], [1427.16, 617.81], [1428.38, 616.39], [1428.95, 616.88], [1431.26, 614.2], [1431.52, 614.42], [1434.46, 611.01], [1434.2, 610.78], [1436.47, 608.13], [1430.48, 603.03], [1422.97, 611.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1453.87, 639.82], [1459.17, 644.63], [1467.76, 635.22], [1462.46, 630.41], [1453.87, 639.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1232.43, 304.38], [1239.4, 310.62], [1251.25, 297.47], [1244.28, 291.24], [1232.43, 304.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1355.73, 609.84], [1363.81, 600.86], [1369.1, 605.59], [1366.35, 608.65], [1366.56, 608.83], [1361.23, 614.76], [1355.73, 609.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1265.93, 289.87], [1278.4, 300.54], [1279.74, 298.97], [1282.71, 295.53], [1284.41, 293.55], [1271.95, 282.9], [1265.93, 289.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1392.15, 584.72], [1400.82, 575.18], [1407.89, 581.56], [1399.21, 591.1], [1398.69, 590.63], [1397.44, 592.0], [1391.47, 586.62], [1392.72, 585.24], [1392.15, 584.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1209.64, 344.01], [1212.78, 340.52], [1213.45, 341.12], [1220.95, 332.8], [1211.05, 323.93], [1205.59, 330.0], [1208.01, 332.16], [1205.36, 335.11], [1206.02, 335.69], [1203.48, 338.5], [1209.64, 344.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1262.88, 304.5], [1247.59, 321.41], [1255.78, 328.77], [1272.04, 310.78], [1269.22, 308.26], [1268.25, 309.32], [1262.88, 304.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1223.55, 356.37], [1233.35, 345.92], [1228.93, 341.8], [1225.25, 338.36], [1224.02, 337.21], [1222.36, 338.98], [1221.47, 338.14], [1212.04, 348.18], [1218.3, 354.01], [1219.57, 352.66], [1223.55, 356.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1285.84, 421.7], [1288.73, 424.28], [1289.89, 423.0], [1293.72, 426.44], [1295.64, 424.32], [1296.72, 425.28], [1303.82, 417.42], [1296.02, 410.43], [1285.84, 421.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1337.85, 573.35], [1342.3, 577.29], [1341.24, 578.49], [1343.82, 580.79], [1337.82, 587.49], [1334.86, 584.86], [1336.48, 583.06], [1332.4, 579.45], [1337.85, 573.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1385.47, 577.65], [1387.4, 579.39], [1386.39, 580.5], [1391.16, 584.79], [1396.04, 579.41], [1395.52, 578.94], [1397.29, 576.98], [1394.33, 574.3], [1391.61, 577.28], [1388.42, 574.4], [1385.47, 577.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1300.27, 426.71], [1305.73, 420.7], [1306.88, 421.75], [1309.73, 418.6], [1310.66, 419.44], [1312.11, 417.84], [1316.4, 421.72], [1314.95, 423.31], [1315.89, 424.16], [1307.57, 433.31], [1300.27, 426.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1259.74, 402.67], [1278.36, 419.71], [1289.08, 408.08], [1283.71, 403.16], [1284.69, 402.11], [1276.49, 394.62], [1275.43, 395.76], [1270.37, 391.13], [1259.74, 402.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1390.41, 517.84], [1404.02, 503.11], [1412.12, 510.54], [1404.01, 519.33], [1407.16, 522.22], [1403.91, 525.74], [1400.77, 522.86], [1397.88, 525.99], [1393.36, 521.84], [1394.01, 521.14], [1390.41, 517.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1965.86, -1431.34], [-1947.67, -1431.98], [-1947.31, -1421.76], [-1945.38, -1421.83], [-1944.53, -1397.41], [-1945.73, -1397.37], [-1945.62, -1394.19], [-1949.78, -1394.05], [-1949.79, -1394.68], [-1958.43, -1394.38], [-1958.62, -1399.64], [-1961.09, -1399.56], [-1961.37, -1407.4], [-1963.48, -1407.32], [-1965.43, -1407.25], [-1965.6, -1411.96], [-1966.2, -1411.94], [-1966.3, -1414.84], [-1968.28, -1414.77], [-1968.43, -1419.11], [-1965.44, -1419.22], [-1965.86, -1431.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2030.29, -840.09], [-2029.88, -828.99], [-2034.56, -828.81], [-2035.29, -828.78], [-2038.2, -828.65], [-2039.51, -828.59], [-2053.76, -827.99], [-2062.51, -827.63], [-2065.71, -827.49], [-2064.73, -804.49], [-2031.97, -805.92], [-2008.31, -806.99], [-2009.76, -840.87], [-2030.29, -840.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2043.63, -851.77], [-2031.51, -852.42], [-2030.82, -839.61], [-2030.38, -831.16], [-2034.65, -830.94], [-2034.56, -828.81], [-2038.2, -828.65], [-2038.5, -831.11], [-2042.51, -830.89], [-2043.63, -851.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2038.2, -828.65], [-2039.51, -828.59], [-2053.76, -827.99], [-2062.51, -827.63], [-2062.59, -829.84], [-2064.92, -829.81], [-2066.03, -850.43], [-2043.63, -851.77], [-2042.51, -830.89], [-2038.5, -831.11], [-2038.2, -828.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3042.56, -491.17], [-3034.94, -489.4], [-3036.24, -483.83], [-3028.98, -482.15], [-3027.55, -488.26], [-3022.19, -487.01], [-3020.78, -493.05], [-3026.16, -494.3], [-3024.71, -500.46], [-3028.44, -501.33], [-3027.09, -507.06], [-3033.68, -508.58], [-3036.45, -496.78], [-3041.0, -497.84], [-3042.56, -491.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2286.51, -475.06], [-2286.56, -476.82], [-2285.77, -476.84], [-2285.82, -478.6], [-2286.48, -478.58], [-2286.55, -480.74], [-2286.73, -483.41], [-2286.02, -483.43], [-2286.08, -485.31], [-2287.22, -485.28], [-2287.28, -487.06], [-2289.57, -487.0], [-2289.47, -483.38], [-2289.4, -480.72], [-2289.33, -478.35], [-2289.23, -474.98], [-2286.51, -475.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1249.79, 1224.1], [1254.09, 1227.91], [1254.32, 1230.23], [1244.59, 1240.75], [1239.18, 1235.87], [1249.79, 1224.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[535.22, 254.83], [504.21, 289.1], [513.37, 297.24], [521.86, 287.74], [541.43, 305.09], [537.94, 309.0], [547.27, 317.28], [539.45, 326.04], [583.68, 365.27], [575.7, 374.2], [589.99, 386.88], [598.09, 377.81], [607.64, 386.27], [641.94, 347.89], [570.32, 284.36], [569.5, 285.29], [535.22, 254.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[642.64, 352.92], [648.7, 358.37], [656.49, 365.38], [635.64, 388.58], [646.89, 399.37], [634.57, 413.16], [609.48, 390.3], [642.64, 352.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[588.42, 406.48], [595.25, 399.27], [612.52, 414.97], [611.49, 415.99], [622.83, 426.21], [617.2, 432.76], [588.42, 406.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1488.14, 596.6], [1498.02, 585.95], [1494.74, 582.93], [1495.34, 582.28], [1492.27, 579.44], [1491.63, 580.14], [1491.23, 579.77], [1484.24, 587.31], [1485.17, 588.17], [1482.33, 591.24], [1484.56, 593.29], [1482.01, 596.04], [1484.84, 598.65], [1487.39, 595.91], [1488.14, 596.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1398.9, 906.79], [1403.61, 901.55], [1485.0, 975.12], [1472.49, 988.64], [1450.5, 968.98], [1456.23, 962.79], [1436.45, 944.15], [1434.94, 946.05], [1411.38, 925.52], [1404.54, 914.25], [1405.9, 912.82], [1398.9, 906.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1429.2, 968.03], [1437.95, 964.38], [1440.91, 970.33], [1439.38, 971.0], [1448.52, 992.4], [1440.99, 995.25], [1429.2, 968.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1454.58, 992.23], [1461.06, 985.39], [1469.19, 992.75], [1462.7, 999.58], [1454.58, 992.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1419.17, 779.7], [1433.55, 793.02], [1431.73, 794.97], [1417.03, 810.72], [1402.65, 797.4], [1419.17, 779.7]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[1431.73, 794.97], [1436.43, 799.32], [1425.19, 811.37], [1428.34, 814.28], [1423.09, 819.91], [1415.25, 812.64], [1417.03, 810.72], [1431.73, 794.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1437.48, 807.26], [1438.04, 807.76], [1441.13, 804.31], [1446.14, 808.77], [1437.86, 818.03], [1433.24, 813.92], [1435.65, 811.23], [1434.69, 810.38], [1437.48, 807.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1438.33, 819.19], [1442.05, 815.12], [1441.54, 814.66], [1446.56, 809.15], [1447.31, 809.83], [1448.28, 808.75], [1452.22, 812.32], [1440.99, 824.64], [1437.78, 821.72], [1439.29, 820.07], [1438.33, 819.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1462.33, 792.35], [1473.95, 779.53], [1473.3, 778.94], [1476.99, 774.9], [1481.94, 779.4], [1480.92, 780.51], [1482.29, 781.75], [1468.2, 797.68], [1462.33, 792.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1456.3, 812.83], [1464.01, 819.82], [1449.58, 835.63], [1441.87, 828.64], [1456.3, 812.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1444.93, 844.06], [1448.81, 839.81], [1465.61, 821.41], [1473.58, 828.65], [1472.42, 829.91], [1452.9, 851.29], [1444.93, 844.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1472.42, 829.91], [1477.51, 834.53], [1455.85, 858.26], [1451.94, 862.53], [1446.85, 857.92], [1452.9, 851.29], [1472.42, 829.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1455.85, 858.26], [1459.92, 861.94], [1462.02, 859.64], [1464.62, 862.0], [1468.02, 858.28], [1484.75, 839.96], [1485.23, 839.43], [1478.55, 833.39], [1477.51, 834.53], [1455.85, 858.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1484.75, 839.96], [1489.84, 844.57], [1478.55, 856.94], [1473.11, 862.89], [1468.02, 858.28], [1484.75, 839.96]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[1480.24, 880.34], [1494.88, 864.33], [1493.82, 863.42], [1501.77, 854.75], [1508.07, 860.41], [1484.88, 884.52], [1480.24, 880.34]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1481.93, 860.0], [1493.46, 847.38], [1499.53, 852.89], [1488.01, 865.51], [1481.93, 860.0]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1374.72, 772.48], [1391.28, 754.53], [1402.41, 764.93], [1402.68, 767.65], [1388.16, 784.41], [1374.72, 772.48]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1368.62, 761.6], [1382.57, 746.69], [1388.9, 752.57], [1374.95, 767.49], [1368.62, 761.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1246.61, 727.38], [1261.86, 710.75], [1268.32, 716.63], [1267.34, 717.72], [1269.07, 719.29], [1270.06, 718.21], [1276.29, 723.89], [1275.25, 725.03], [1278.03, 727.55], [1279.07, 726.42], [1285.6, 732.36], [1284.54, 733.52], [1286.18, 735.0], [1284.49, 736.85], [1286.25, 738.46], [1288.46, 738.34], [1290.03, 736.62], [1288.69, 735.4], [1290.26, 733.69], [1289.04, 732.58], [1294.64, 726.46], [1311.29, 741.63], [1305.59, 747.85], [1304.43, 746.79], [1299.7, 751.95], [1300.85, 753.01], [1295.12, 759.25], [1294.44, 758.62], [1288.28, 765.34], [1265.93, 744.99], [1268.31, 742.4], [1263.02, 737.58], [1263.71, 736.82], [1261.42, 734.72], [1258.35, 738.08], [1246.61, 727.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1242.79, 723.41], [1257.54, 707.18], [1253.64, 703.67], [1253.19, 704.17], [1250.78, 701.98], [1248.7, 704.26], [1247.12, 702.83], [1246.98, 700.42], [1248.41, 698.85], [1249.77, 700.06], [1251.35, 698.32], [1251.82, 698.74], [1253.98, 696.37], [1254.4, 696.75], [1257.51, 693.34], [1241.21, 678.62], [1236.06, 684.28], [1237.0, 685.12], [1235.75, 686.49], [1234.82, 685.65], [1225.56, 695.83], [1226.16, 696.37], [1223.82, 698.95], [1224.27, 699.36], [1223.58, 700.13], [1222.2, 700.14], [1220.7, 701.86], [1220.73, 704.04], [1222.34, 705.44], [1223.81, 705.41], [1226.42, 707.76], [1225.98, 708.24], [1232.05, 713.71], [1232.32, 713.42], [1237.13, 717.76], [1236.86, 718.06], [1242.79, 723.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1240.49, 646.05], [1254.03, 630.5], [1248.45, 625.4], [1234.13, 640.65], [1240.49, 646.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1255.21, 602.87], [1269.76, 586.98], [1276.37, 592.99], [1261.81, 608.87], [1255.21, 602.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1261.81, 608.87], [1268.57, 615.02], [1283.13, 599.14], [1276.37, 592.99], [1261.81, 608.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1283.64, 629.03], [1301.74, 608.93], [1307.44, 614.01], [1297.82, 624.71], [1295.94, 623.04], [1287.47, 632.45], [1283.64, 629.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1294.5, 637.36], [1302.29, 628.84], [1307.03, 633.07], [1299.2, 641.64], [1294.5, 637.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1299.2, 641.64], [1298.55, 642.35], [1305.2, 648.37], [1319.42, 632.81], [1312.77, 626.79], [1307.03, 633.07], [1299.2, 641.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1331.26, 637.82], [1338.33, 630.01], [1352.11, 642.4], [1345.04, 650.22], [1340.3, 645.95], [1331.26, 637.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1314.16, 791.95], [1329.39, 775.83], [1350.28, 795.04], [1335.94, 811.39], [1314.16, 791.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1364.21, 839.98], [1377.44, 824.8], [1390.34, 836.12], [1377.09, 851.12], [1364.21, 839.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1393.7, 856.68], [1410.26, 837.99], [1419.92, 846.48], [1403.35, 865.18], [1393.7, 856.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1417.98, 878.04], [1434.09, 859.85], [1443.56, 868.17], [1427.44, 886.36], [1417.98, 878.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-85.06, 108.94], [-78.88, 102.5], [-71.02, 109.99], [-77.19, 116.42], [-85.06, 108.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[930.98, 716.94], [968.51, 674.95], [978.52, 683.05], [987.26, 673.84], [977.63, 665.34], [982.56, 660.13], [1016.09, 690.56], [1013.99, 692.57], [1024.23, 701.83], [1028.81, 697.8], [1058.73, 725.21], [1051.52, 733.02], [1054.33, 735.47], [1062.11, 727.26], [1113.57, 776.29], [1096.48, 794.7], [1099.29, 797.15], [1095.3, 801.36], [1092.89, 799.08], [1090.79, 800.89], [1080.56, 791.84], [1081.89, 790.23], [1058.2, 768.68], [1043.59, 784.89], [1024.53, 767.69], [1048.29, 741.36], [1050.89, 738.49], [1048.49, 736.61], [1045.83, 739.41], [1027.37, 722.78], [986.59, 767.98], [930.98, 716.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[892.73, 617.93], [860.22, 653.46], [916.38, 702.91], [951.19, 664.94], [951.21, 662.9], [943.02, 655.49], [950.28, 647.67], [908.46, 609.74], [906.23, 610.13], [901.08, 610.91], [899.1, 611.31], [895.07, 615.43], [892.73, 617.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[889.85, 765.34], [918.3, 733.96], [976.02, 786.25], [970.87, 791.69], [976.32, 796.82], [982.01, 791.38], [1020.68, 826.76], [994.36, 854.08], [980.17, 842.83], [921.49, 793.58], [906.52, 780.46], [900.06, 787.08], [914.92, 800.89], [911.68, 804.09], [938.8, 829.24], [910.32, 859.48], [888.03, 839.06], [898.67, 828.04], [911.71, 839.55], [923.08, 826.96], [905.41, 810.31], [893.35, 823.44], [882.07, 835.71], [864.17, 819.83], [875.02, 807.66], [870.6, 803.69], [898.29, 772.9], [889.85, 765.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[826.02, 780.6], [842.25, 762.17], [851.5, 770.25], [835.27, 788.69], [826.02, 780.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1009.06, 421.04], [988.05, 444.31], [998.95, 454.08], [1025.6, 424.55], [1014.7, 414.79], [1009.06, 421.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[988.05, 444.31], [972.65, 430.5], [988.79, 412.8], [993.84, 407.26], [1009.06, 421.04], [988.05, 444.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[769.91, 295.24], [771.99, 292.97], [776.72, 287.82], [782.22, 281.82], [784.57, 279.27], [794.11, 287.96], [796.81, 290.41], [795.11, 292.26], [813.72, 309.22], [815.71, 307.05], [828.62, 318.8], [813.67, 335.09], [769.91, 295.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[969.27, 913.34], [965.86, 910.56], [964.62, 904.49], [970.9, 897.69], [962.6, 890.39], [965.55, 886.71], [967.21, 888.1], [980.13, 873.93], [983.07, 876.36], [985.67, 872.7], [997.39, 882.58], [969.27, 913.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[997.83, 882.89], [1012.96, 896.67], [983.83, 928.4], [968.94, 914.84], [997.83, 882.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[947.55, 564.5], [962.13, 548.53], [994.2, 577.58], [979.63, 593.56], [947.55, 564.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[889.8, 488.3], [902.22, 474.57], [940.92, 509.32], [936.37, 514.35], [928.5, 523.05], [889.8, 488.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[725.54, 258.33], [732.24, 264.41], [734.57, 266.51], [750.44, 280.88], [758.43, 272.21], [767.89, 261.94], [771.36, 258.19], [758.99, 246.9], [756.43, 249.71], [752.53, 253.99], [751.07, 252.66], [749.83, 254.01], [747.5, 251.91], [751.53, 247.48], [743.76, 240.45], [742.71, 239.49], [739.96, 242.52], [725.54, 258.33]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[1243.19, 673.59], [1247.18, 669.34], [1258.57, 680.01], [1254.57, 684.26], [1243.19, 673.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1251.76, 666.98], [1256.7, 661.5], [1261.99, 666.23], [1257.05, 671.71], [1251.76, 666.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1261.4, 654.14], [1264.89, 650.19], [1265.65, 650.87], [1268.92, 647.17], [1274.19, 651.8], [1270.84, 655.6], [1271.5, 656.17], [1264.81, 663.73], [1261.34, 660.68], [1260.89, 661.19], [1258.76, 659.32], [1259.6, 658.36], [1259.02, 657.86], [1261.9, 654.59], [1261.4, 654.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1265.63, 665.58], [1269.51, 661.22], [1270.49, 662.09], [1277.17, 654.59], [1279.35, 656.53], [1278.74, 657.22], [1281.66, 659.8], [1271.72, 670.97], [1265.63, 665.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1272.24, 671.3], [1282.24, 659.94], [1287.11, 664.2], [1276.09, 676.7], [1274.66, 675.44], [1275.67, 674.29], [1272.24, 671.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1280.49, 675.39], [1282.88, 672.7], [1282.16, 672.07], [1289.43, 663.91], [1296.5, 670.16], [1288.85, 678.75], [1287.96, 677.96], [1285.95, 680.21], [1280.49, 675.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1287.42, 685.41], [1298.56, 672.45], [1304.64, 677.64], [1293.5, 690.59], [1287.42, 685.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1299.54, 688.97], [1307.43, 680.15], [1313.12, 685.21], [1305.21, 694.02], [1299.54, 688.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1305.18, 694.87], [1314.29, 685.04], [1319.35, 689.69], [1310.23, 699.51], [1305.18, 694.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1319.0, 722.68], [1315.79, 726.3], [1314.75, 727.48], [1324.99, 736.49], [1329.24, 731.69], [1328.22, 730.79], [1319.0, 722.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1362.53, 751.55], [1374.42, 738.97], [1378.63, 742.93], [1371.83, 750.12], [1373.05, 751.27], [1367.96, 756.66], [1362.53, 751.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1360.8, 752.03], [1355.14, 746.67], [1367.64, 733.54], [1373.3, 738.89], [1360.8, 752.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1347.76, 737.46], [1358.91, 725.06], [1365.2, 730.67], [1354.05, 743.07], [1347.76, 737.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1345.26, 811.96], [1350.52, 805.88], [1358.68, 812.89], [1353.41, 818.97], [1345.26, 811.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1340.9, 809.13], [1346.08, 813.78], [1342.02, 818.28], [1340.21, 816.65], [1336.83, 813.61], [1340.9, 809.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1360.88, 809.83], [1353.89, 803.2], [1359.33, 797.51], [1366.31, 804.14], [1360.88, 809.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1361.84, 794.61], [1363.74, 792.6], [1362.72, 791.65], [1367.35, 786.73], [1375.27, 794.13], [1370.65, 799.03], [1367.62, 796.2], [1365.71, 798.22], [1361.84, 794.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1381.32, 824.29], [1383.1, 822.28], [1383.77, 822.88], [1386.72, 819.55], [1396.03, 827.71], [1392.68, 831.51], [1392.44, 831.3], [1390.82, 833.14], [1381.8, 825.22], [1382.05, 824.94], [1381.32, 824.29]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[1394.66, 811.01], [1394.01, 811.71], [1392.37, 810.2], [1388.95, 813.92], [1390.6, 815.43], [1389.75, 816.35], [1398.54, 824.36], [1403.44, 819.02], [1394.66, 811.01]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1392.58, 841.56], [1402.0, 831.24], [1407.27, 836.03], [1397.85, 846.34], [1392.58, 841.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1490.75, 882.51], [1493.03, 880.0], [1492.56, 879.58], [1496.74, 874.97], [1496.16, 874.46], [1499.83, 870.42], [1500.43, 870.96], [1503.23, 867.87], [1508.66, 872.76], [1505.97, 875.73], [1506.71, 876.39], [1502.93, 880.55], [1502.45, 880.11], [1498.33, 884.65], [1495.39, 882.0], [1493.05, 884.58], [1490.75, 882.51]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1501.91, 885.85], [1507.95, 891.33], [1514.9, 883.73], [1514.27, 883.16], [1517.86, 879.24], [1512.62, 874.48], [1508.7, 878.77], [1508.09, 878.22], [1505.1, 881.51], [1505.53, 881.88], [1501.91, 885.85]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1513.16, 887.54], [1518.24, 881.96], [1519.08, 882.72], [1521.78, 879.77], [1528.1, 885.48], [1518.86, 895.64], [1514.4, 891.61], [1515.88, 890.0], [1513.16, 887.54]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1546.52, 908.66], [1544.28, 906.67], [1543.16, 907.91], [1543.9, 908.57], [1537.32, 915.92], [1536.52, 915.21], [1532.47, 919.75], [1533.07, 920.28], [1526.39, 927.75], [1508.13, 911.56], [1514.99, 903.89], [1517.84, 906.41], [1523.81, 899.74], [1521.1, 897.34], [1524.96, 893.02], [1524.49, 892.6], [1529.62, 886.86], [1530.4, 887.55], [1533.18, 884.44], [1543.54, 893.64], [1543.99, 893.15], [1551.69, 899.99], [1551.86, 902.69], [1546.52, 908.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1554.62, 930.68], [1567.17, 916.55], [1567.8, 916.06], [1568.56, 915.83], [1569.29, 915.84], [1569.98, 916.09], [1576.62, 921.93], [1562.61, 937.71], [1554.62, 930.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1562.61, 937.71], [1569.24, 943.55], [1583.24, 927.76], [1576.62, 921.93], [1562.61, 937.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1557.61, 877.22], [1567.32, 885.92], [1579.71, 872.22], [1570.58, 864.03], [1561.41, 874.19], [1560.81, 873.66], [1557.61, 877.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1568.59, 858.67], [1573.79, 852.89], [1586.68, 864.38], [1581.48, 870.17], [1568.59, 858.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1608.21, 873.56], [1652.25, 913.09], [1643.26, 923.06], [1637.42, 917.83], [1622.15, 934.77], [1610.65, 924.48], [1610.13, 925.05], [1583.16, 901.0], [1608.21, 873.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1605.28, 948.54], [1612.99, 955.4], [1600.81, 968.99], [1598.76, 971.28], [1591.04, 964.42], [1605.28, 948.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1608.34, 968.97], [1614.94, 961.66], [1621.47, 967.35], [1620.53, 968.43], [1623.49, 971.01], [1616.6, 978.86], [1611.76, 974.64], [1613.09, 973.11], [1608.34, 968.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1600.81, 968.99], [1604.95, 972.71], [1608.34, 968.97], [1614.94, 961.66], [1617.19, 959.17], [1612.99, 955.4], [1600.81, 968.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1312.21, 643.19], [1320.52, 633.93], [1324.09, 637.1], [1322.7, 638.65], [1325.67, 641.29], [1315.45, 652.7], [1310.3, 648.11], [1313.6, 644.42], [1312.21, 643.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1317.08, 656.91], [1321.19, 652.46], [1319.02, 650.47], [1322.85, 646.33], [1324.75, 648.08], [1326.47, 646.22], [1327.92, 647.55], [1332.32, 642.8], [1336.39, 646.53], [1333.86, 649.27], [1334.38, 649.74], [1322.86, 662.21], [1317.08, 656.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1331.87, 668.12], [1332.86, 669.03], [1331.81, 670.16], [1335.74, 673.81], [1347.73, 661.02], [1344.3, 657.83], [1339.51, 662.93], [1338.02, 661.55], [1331.87, 668.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1331.85, 608.23], [1337.49, 613.32], [1332.68, 618.61], [1327.05, 613.52], [1331.85, 608.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1350.47, 622.37], [1355.69, 616.98], [1358.82, 620.0], [1353.6, 625.38], [1350.47, 622.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1368.54, 632.24], [1371.89, 635.39], [1367.33, 640.21], [1363.98, 637.05], [1368.54, 632.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1369.64, 622.76], [1378.07, 613.72], [1377.93, 613.58], [1378.96, 612.47], [1375.15, 608.93], [1374.1, 610.05], [1373.77, 609.73], [1364.82, 619.31], [1367.43, 621.72], [1367.93, 621.17], [1369.64, 622.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1371.64, 622.51], [1378.74, 614.8], [1380.97, 616.84], [1382.46, 615.22], [1386.28, 618.71], [1379.81, 625.75], [1377.76, 623.87], [1375.64, 626.18], [1371.64, 622.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1377.43, 632.85], [1381.72, 628.04], [1382.84, 629.03], [1388.35, 622.87], [1393.15, 627.12], [1383.35, 638.1], [1377.43, 632.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1385.49, 636.41], [1394.82, 626.06], [1400.58, 631.22], [1397.37, 634.79], [1397.79, 635.16], [1393.98, 639.39], [1392.97, 638.48], [1390.68, 641.04], [1385.49, 636.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1338.93, 676.3], [1340.48, 674.59], [1340.09, 674.23], [1345.35, 668.46], [1350.6, 673.2], [1344.82, 679.57], [1342.55, 677.52], [1341.53, 678.65], [1338.93, 676.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1344.89, 681.86], [1351.44, 674.53], [1357.86, 680.22], [1351.31, 687.55], [1344.89, 681.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1355.94, 688.43], [1358.7, 685.38], [1358.38, 685.08], [1361.66, 681.47], [1361.97, 681.76], [1364.38, 679.11], [1365.44, 680.07], [1366.88, 678.48], [1370.25, 681.5], [1368.81, 683.1], [1369.38, 683.62], [1360.94, 692.94], [1355.94, 688.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1364.85, 689.47], [1361.37, 693.26], [1367.54, 698.87], [1371.06, 695.04], [1369.05, 693.22], [1375.03, 686.69], [1376.32, 687.86], [1379.73, 684.14], [1377.79, 682.37], [1374.82, 685.6], [1371.96, 683.0], [1365.49, 690.06], [1364.85, 689.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1375.39, 706.72], [1384.58, 696.98], [1378.19, 690.99], [1368.99, 700.73], [1375.39, 706.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1400.54, 649.92], [1404.1, 646.13], [1403.45, 645.52], [1408.79, 639.82], [1408.51, 639.56], [1409.88, 638.11], [1405.67, 634.19], [1398.08, 642.29], [1399.67, 643.76], [1396.99, 646.62], [1400.54, 649.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1399.55, 652.74], [1411.97, 639.07], [1412.83, 639.85], [1414.19, 641.08], [1415.13, 641.93], [1413.05, 644.23], [1415.46, 646.41], [1405.14, 657.77], [1399.55, 652.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1304.7, 609.43], [1309.94, 603.97], [1318.99, 612.58], [1315.6, 616.11], [1316.29, 616.76], [1314.42, 618.7], [1304.7, 609.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1317.9, 611.11], [1320.38, 608.53], [1325.03, 612.94], [1322.55, 615.53], [1317.9, 611.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1311.43, 599.69], [1316.54, 594.04], [1320.28, 597.4], [1320.78, 596.84], [1328.5, 603.76], [1322.89, 609.96], [1311.43, 599.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1308.15, 568.53], [1310.95, 565.49], [1311.89, 566.35], [1315.83, 562.05], [1315.06, 561.36], [1318.27, 557.85], [1312.67, 552.74], [1305.68, 560.37], [1307.01, 561.58], [1304.07, 564.8], [1308.15, 568.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1227.72, 574.0], [1250.7, 548.71], [1265.64, 562.2], [1262.92, 565.2], [1263.25, 565.5], [1261.64, 567.28], [1258.96, 570.22], [1258.69, 569.97], [1255.0, 574.01], [1255.14, 575.25], [1260.67, 580.23], [1259.42, 581.61], [1264.51, 586.2], [1254.03, 597.74], [1246.95, 591.34], [1245.72, 592.69], [1236.22, 584.1], [1237.12, 583.1], [1233.85, 580.14], [1233.29, 580.76], [1230.69, 578.41], [1231.56, 577.46], [1227.72, 574.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1293.09, 558.03], [1296.28, 554.62], [1295.76, 554.14], [1299.25, 550.42], [1299.77, 550.9], [1304.96, 545.35], [1312.11, 551.99], [1300.47, 564.44], [1298.29, 562.41], [1297.17, 563.6], [1293.4, 560.09], [1294.28, 559.14], [1293.09, 558.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1291.85, 553.17], [1300.82, 543.53], [1294.98, 538.13], [1286.01, 547.76], [1291.85, 553.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1277.26, 539.45], [1281.17, 535.28], [1281.4, 535.5], [1287.15, 529.37], [1293.14, 534.95], [1283.47, 545.24], [1277.26, 539.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-382.97, -253.13], [-402.57, -231.47], [-400.61, -229.72], [-404.35, -225.56], [-399.67, -221.37], [-399.97, -220.74], [-387.05, -209.22], [-388.25, -207.86], [-369.49, -191.03], [-363.58, -197.62], [-362.13, -196.32], [-357.09, -201.92], [-362.29, -206.57], [-352.26, -217.73], [-347.08, -213.12], [-341.69, -219.11], [-347.28, -224.28], [-348.25, -223.2], [-358.2, -232.12], [-372.97, -215.79], [-387.15, -228.51], [-374.93, -242.03], [-376.05, -243.04], [-372.93, -246.51], [-378.09, -251.14], [-379.28, -249.82], [-382.97, -253.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-378.93, -177.67], [-404.6, -200.69], [-393.71, -212.75], [-388.25, -207.86], [-369.49, -191.03], [-368.04, -189.73], [-378.93, -177.67]], "holes": []}, "height": 35.0}, {"shape": {"outer": [[-497.28, 283.59], [-500.22, 286.82], [-500.58, 286.49], [-512.69, 299.83], [-504.98, 306.79], [-492.2, 292.73], [-495.72, 289.57], [-493.44, 287.06], [-497.28, 283.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-532.23, 232.47], [-526.29, 225.74], [-524.71, 227.13], [-524.06, 227.05], [-522.82, 228.13], [-522.7, 228.78], [-510.68, 239.31], [-516.67, 246.09], [-532.23, 232.47]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-520.52, 221.92], [-513.53, 213.99], [-504.01, 222.31], [-506.09, 224.67], [-503.35, 227.07], [-508.17, 232.54], [-510.93, 230.11], [-511.98, 231.31], [-518.66, 225.47], [-517.7, 224.38], [-520.52, 221.92]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-404.28, 394.66], [-390.75, 379.83], [-387.95, 382.37], [-387.63, 382.03], [-384.49, 384.88], [-388.92, 389.72], [-387.96, 390.6], [-394.25, 397.48], [-394.81, 399.12], [-396.09, 400.29], [-397.77, 400.71], [-399.46, 400.26], [-400.73, 399.06], [-401.25, 397.4], [-404.28, 394.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-366.13, 385.48], [-357.65, 376.06], [-351.01, 382.01], [-353.07, 384.3], [-348.76, 388.16], [-355.18, 395.28], [-366.13, 385.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-335.61, 412.2], [-330.51, 406.75], [-325.03, 411.83], [-330.12, 417.28], [-335.61, 412.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-305.35, 406.58], [-297.71, 398.46], [-288.49, 407.08], [-296.13, 415.19], [-305.35, 406.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-337.51, 386.78], [-332.1, 380.97], [-329.5, 383.37], [-323.55, 376.97], [-331.61, 369.52], [-342.97, 381.74], [-337.51, 386.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-607.73, 174.17], [-603.49, 169.61], [-607.5, 165.9], [-608.31, 165.33], [-611.97, 169.42], [-612.36, 169.89], [-607.73, 174.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-280.34, 326.15], [-275.78, 321.18], [-270.71, 325.8], [-275.26, 330.76], [-280.34, 326.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-319.96, 334.52], [-315.66, 329.79], [-314.81, 330.55], [-309.31, 324.52], [-304.62, 328.76], [-303.49, 327.52], [-301.86, 328.98], [-304.87, 332.3], [-304.35, 332.77], [-307.71, 336.45], [-306.45, 337.58], [-313.5, 345.32], [-316.07, 342.99], [-317.71, 344.8], [-322.68, 340.3], [-318.58, 335.77], [-319.96, 334.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-303.65, 357.12], [-289.11, 341.28], [-296.67, 334.38], [-307.37, 346.04], [-306.82, 346.53], [-307.2, 347.54], [-307.33, 348.61], [-307.18, 349.72], [-306.76, 350.75], [-308.53, 352.67], [-303.65, 357.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-296.96, 360.04], [-285.53, 347.71], [-278.45, 354.24], [-292.15, 369.01], [-297.44, 364.14], [-296.06, 362.64], [-296.81, 361.94], [-296.96, 360.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-281.19, 373.92], [-273.66, 365.52], [-272.24, 366.78], [-271.45, 365.9], [-260.83, 375.35], [-269.15, 384.64], [-269.83, 384.02], [-271.45, 385.84], [-278.76, 379.33], [-277.14, 377.53], [-281.19, 373.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-273.44, 355.1], [-265.64, 346.6], [-248.62, 362.13], [-256.43, 370.62], [-273.44, 355.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-249.97, 269.58], [-239.7, 258.51], [-230.01, 267.43], [-240.28, 278.5], [-249.97, 269.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-230.99, 289.16], [-226.79, 284.66], [-226.29, 285.12], [-224.72, 283.43], [-225.47, 282.74], [-223.48, 280.61], [-222.72, 281.32], [-221.1, 279.58], [-221.26, 279.43], [-218.3, 276.26], [-213.9, 276.08], [-212.67, 302.84], [-214.81, 304.16], [-230.99, 289.16]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-233.37, 288.17], [-239.95, 281.91], [-238.61, 280.49], [-238.84, 280.28], [-223.52, 264.26], [-222.09, 264.28], [-220.79, 265.51], [-219.92, 264.6], [-217.63, 264.5], [-215.69, 266.35], [-215.45, 268.64], [-216.9, 270.16], [-215.84, 271.16], [-221.73, 277.31], [-222.0, 277.05], [-228.18, 283.5], [-228.55, 283.14], [-233.37, 288.17]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-262.63, 256.31], [-251.08, 244.12], [-256.88, 238.67], [-268.43, 250.85], [-268.16, 251.11], [-269.65, 252.68], [-264.39, 257.63], [-262.9, 256.06], [-262.63, 256.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-273.56, 244.32], [-274.34, 245.18], [-274.1, 245.4], [-274.02, 246.76], [-272.23, 248.39], [-271.36, 248.36], [-272.49, 249.58], [-270.0, 251.87], [-267.88, 249.56], [-268.11, 249.35], [-264.77, 245.73], [-263.54, 245.25], [-260.53, 241.97], [-260.47, 241.07], [-259.62, 240.14], [-259.39, 240.35], [-256.45, 237.16], [-261.88, 232.19], [-273.28, 244.57], [-273.56, 244.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-234.03, 245.57], [-216.93, 244.62], [-215.52, 244.54], [-214.71, 258.71], [-229.42, 259.52], [-233.24, 259.74], [-234.03, 245.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-334.58, 127.63], [-331.47, 124.16], [-332.79, 122.99], [-330.09, 119.99], [-328.66, 121.26], [-325.54, 117.78], [-324.03, 119.12], [-323.75, 118.81], [-314.49, 127.06], [-314.09, 126.6], [-309.03, 131.11], [-319.27, 142.52], [-324.38, 137.96], [-323.76, 137.27], [-334.58, 127.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-326.27, 150.63], [-320.95, 144.82], [-334.81, 132.25], [-339.23, 137.08], [-335.97, 140.04], [-336.86, 141.02], [-326.27, 150.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-359.69, 154.65], [-351.59, 145.83], [-335.93, 160.11], [-336.41, 160.65], [-335.13, 161.81], [-337.86, 164.78], [-339.14, 163.61], [-341.06, 165.7], [-345.6, 161.56], [-346.67, 162.74], [-351.96, 157.92], [-353.85, 159.98], [-359.69, 154.65]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-347.58, 147.05], [-345.27, 144.41], [-346.1, 143.7], [-343.77, 141.04], [-342.95, 141.75], [-340.95, 139.46], [-328.5, 150.25], [-328.76, 150.55], [-327.01, 152.08], [-332.17, 157.99], [-333.32, 157.0], [-334.52, 158.37], [-339.01, 154.47], [-339.34, 154.85], [-343.78, 151.0], [-343.46, 150.63], [-347.58, 147.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-376.83, 156.41], [-368.02, 146.42], [-367.6, 146.77], [-365.47, 144.37], [-359.24, 149.83], [-362.41, 153.43], [-361.42, 154.29], [-367.43, 161.11], [-369.56, 159.25], [-371.31, 161.23], [-376.83, 156.41]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-364.63, 167.95], [-357.58, 159.79], [-349.07, 167.1], [-350.84, 169.14], [-346.76, 172.65], [-351.36, 177.98], [-353.25, 176.35], [-353.93, 177.14], [-364.63, 167.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-257.97, 346.43], [-250.55, 338.43], [-243.08, 345.3], [-241.44, 343.53], [-235.81, 348.71], [-244.86, 358.48], [-257.97, 346.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-258.28, 323.19], [-247.4, 311.0], [-239.85, 317.7], [-242.9, 321.12], [-240.84, 322.95], [-246.87, 329.71], [-249.31, 327.55], [-251.1, 329.54], [-258.28, 323.19]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-265.72, 314.93], [-263.04, 311.98], [-263.48, 311.59], [-253.68, 300.78], [-247.26, 306.56], [-259.74, 320.32], [-265.72, 314.93]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-238.64, 341.71], [-232.41, 334.82], [-235.72, 331.86], [-234.5, 330.5], [-234.94, 330.12], [-228.98, 323.51], [-219.2, 332.29], [-226.47, 340.34], [-227.08, 339.79], [-230.07, 343.11], [-230.38, 342.83], [-233.53, 346.3], [-238.64, 341.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-639.69, 51.0], [-633.41, 44.28], [-632.33, 45.28], [-628.65, 41.34], [-623.42, 46.19], [-633.38, 56.86], [-635.07, 55.28], [-636.7, 57.03], [-639.98, 53.99], [-638.35, 52.24], [-639.69, 51.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2192.62, 1298.57], [2197.28, 1302.33], [2201.5, 1297.13], [2196.83, 1293.38], [2192.62, 1298.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2222.03, 1265.85], [2227.02, 1270.28], [2230.73, 1266.13], [2225.75, 1261.7], [2222.03, 1265.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2281.87, 1179.51], [2288.3, 1185.75], [2298.32, 1175.49], [2291.89, 1169.25], [2281.87, 1179.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2241.04, 1265.68], [2250.34, 1274.69], [2255.84, 1269.06], [2246.54, 1260.05], [2241.04, 1265.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2185.0, 1264.07], [2193.22, 1272.05], [2199.05, 1266.08], [2190.82, 1258.11], [2185.0, 1264.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2269.96, 1177.9], [2274.15, 1181.7], [2277.72, 1177.8], [2273.52, 1174.0], [2269.96, 1177.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2270.92, 1227.25], [2277.32, 1233.46], [2283.74, 1226.89], [2277.33, 1220.68], [2270.92, 1227.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2181.78, 1303.05], [2184.55, 1305.82], [2187.63, 1302.76], [2184.86, 1299.99], [2181.78, 1303.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2248.09, 1256.17], [2258.13, 1265.91], [2264.05, 1259.84], [2254.01, 1250.11], [2248.09, 1256.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2177.27, 1274.14], [2184.95, 1281.58], [2191.0, 1275.37], [2183.32, 1267.94], [2177.27, 1274.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2191.8, 1317.04], [2201.31, 1326.25], [2206.75, 1320.68], [2197.25, 1311.46], [2191.8, 1317.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2275.16, 1214.89], [2280.98, 1220.53], [2287.12, 1214.24], [2281.02, 1208.98], [2275.16, 1214.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2216.51, 1228.39], [2226.69, 1238.26], [2233.54, 1231.24], [2223.36, 1221.37], [2216.51, 1228.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2202.6, 1270.9], [2206.6, 1274.51], [2209.31, 1271.53], [2205.3, 1267.92], [2202.6, 1270.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2256.96, 1245.47], [2267.95, 1256.12], [2273.82, 1250.11], [2262.83, 1239.46], [2256.96, 1245.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2201.47, 1313.21], [2207.56, 1319.11], [2214.35, 1312.15], [2208.26, 1306.25], [2201.47, 1313.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2237.01, 1235.48], [2243.03, 1240.66], [2247.49, 1235.52], [2241.47, 1230.34], [2237.01, 1235.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2282.92, 1200.26], [2285.72, 1202.98], [2288.91, 1206.07], [2293.83, 1201.03], [2287.83, 1195.22], [2282.92, 1200.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2224.99, 1244.79], [2229.51, 1248.96], [2233.67, 1244.5], [2229.15, 1240.32], [2224.99, 1244.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2245.6, 1200.99], [2252.22, 1207.4], [2258.21, 1201.26], [2251.6, 1194.85], [2245.6, 1200.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2272.68, 1245.73], [2279.14, 1239.11], [2272.15, 1232.34], [2265.69, 1238.95], [2272.68, 1245.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2218.11, 1270.19], [2223.32, 1274.5], [2226.63, 1270.54], [2221.42, 1266.22], [2218.11, 1270.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2272.47, 1168.93], [2278.95, 1175.21], [2288.47, 1165.46], [2281.99, 1159.17], [2272.47, 1168.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2245.88, 1238.49], [2250.39, 1242.62], [2255.2, 1237.4], [2250.7, 1233.27], [2245.88, 1238.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2284.99, 1190.4], [2290.12, 1195.19], [2295.79, 1189.17], [2292.11, 1185.72], [2290.67, 1184.37], [2284.99, 1190.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2235.78, 1211.11], [2245.17, 1220.22], [2252.02, 1213.21], [2242.61, 1204.1], [2235.78, 1211.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2197.37, 1293.05], [2201.4, 1296.72], [2205.37, 1292.39], [2201.32, 1288.72], [2197.37, 1293.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2259.66, 1183.71], [2268.44, 1192.21], [2274.51, 1186.0], [2265.72, 1177.49], [2259.66, 1183.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2220.25, 1292.53], [2225.96, 1298.06], [2231.68, 1292.21], [2225.97, 1286.68], [2220.25, 1292.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2233.64, 1252.89], [2238.48, 1257.44], [2242.41, 1253.31], [2237.58, 1248.76], [2233.64, 1252.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2299.25, 1178.4], [2292.11, 1185.72], [2295.79, 1189.17], [2298.62, 1191.83], [2305.67, 1184.61], [2299.25, 1178.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2193.0, 1255.69], [2202.42, 1264.82], [2208.49, 1258.61], [2200.27, 1250.65], [2199.58, 1251.36], [2198.38, 1250.18], [2193.0, 1255.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2226.48, 1217.8], [2237.34, 1228.32], [2244.0, 1221.5], [2234.57, 1212.35], [2231.81, 1215.19], [2230.38, 1213.8], [2226.48, 1217.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2211.27, 1238.46], [2216.79, 1243.81], [2218.62, 1241.92], [2221.14, 1244.36], [2224.52, 1240.91], [2216.48, 1233.12], [2211.27, 1238.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2209.66, 1255.94], [2216.52, 1248.91], [2208.3, 1240.94], [2207.57, 1241.7], [2206.05, 1240.21], [2199.91, 1246.49], [2209.66, 1255.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2169.22, 1282.79], [2179.5, 1292.75], [2185.65, 1286.46], [2177.33, 1278.4], [2175.33, 1280.45], [2173.36, 1278.55], [2169.22, 1282.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2215.73, 1294.83], [2209.84, 1300.87], [2216.15, 1306.99], [2218.64, 1304.43], [2220.15, 1305.9], [2223.55, 1302.41], [2215.73, 1294.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2225.54, 1284.09], [2230.35, 1288.76], [2231.72, 1287.35], [2233.32, 1288.91], [2237.16, 1284.98], [2230.74, 1278.76], [2225.54, 1284.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2234.68, 1274.61], [2242.58, 1282.27], [2244.69, 1280.12], [2245.52, 1280.93], [2248.85, 1277.5], [2248.02, 1276.7], [2249.17, 1275.53], [2241.27, 1267.86], [2234.68, 1274.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2262.01, 1200.85], [2264.12, 1198.69], [2265.8, 1200.32], [2268.22, 1197.85], [2266.53, 1196.21], [2268.32, 1194.38], [2258.93, 1185.27], [2252.62, 1191.74], [2262.01, 1200.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[94.35, -2177.16], [100.67, -2180.19], [104.46, -2172.3], [107.37, -2173.7], [117.64, -2152.36], [108.41, -2147.95], [94.35, -2177.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[106.47, -2194.93], [111.25, -2197.7], [111.71, -2196.91], [113.5, -2197.94], [116.85, -2192.18], [114.11, -2190.59], [113.75, -2191.22], [112.52, -2190.51], [114.93, -2186.38], [118.59, -2188.5], [125.56, -2176.56], [117.32, -2171.79], [107.91, -2187.96], [109.87, -2189.1], [106.47, -2194.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[113.72, -2204.75], [122.92, -2211.14], [127.79, -2204.16], [118.59, -2197.79], [113.72, -2204.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[119.97, -2195.81], [123.12, -2198.01], [123.54, -2197.4], [127.09, -2199.87], [129.3, -2196.73], [131.64, -2198.37], [138.77, -2188.23], [129.73, -2181.91], [119.97, -2195.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[132.3, -2204.56], [140.21, -2211.57], [149.4, -2201.31], [141.5, -2194.28], [132.3, -2204.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[154.17, -2225.03], [160.58, -2232.14], [168.84, -2224.72], [162.42, -2217.63], [154.17, -2225.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[149.03, -2208.5], [154.79, -2214.96], [146.13, -2222.65], [144.63, -2220.97], [142.32, -2223.03], [138.05, -2218.25], [149.03, -2208.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[143.63, -2236.02], [150.1, -2243.34], [141.07, -2251.27], [134.59, -2243.95], [143.63, -2236.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[158.23, -2239.34], [164.97, -2244.93], [166.43, -2243.19], [169.59, -2245.82], [172.5, -2242.34], [174.24, -2243.79], [183.29, -2232.96], [173.94, -2225.21], [168.0, -2232.32], [165.69, -2230.4], [158.23, -2239.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[186.23, -2235.45], [172.56, -2251.12], [179.49, -2257.12], [193.16, -2241.45], [186.23, -2235.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[186.05, -2251.56], [188.57, -2254.01], [183.94, -2258.76], [181.42, -2256.3], [186.05, -2251.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[167.16, -2298.44], [164.48, -2295.13], [165.25, -2294.52], [162.68, -2291.35], [172.73, -2283.26], [179.02, -2291.02], [169.41, -2298.75], [168.37, -2297.47], [167.16, -2298.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[160.97, -2280.0], [166.56, -2286.2], [180.72, -2273.55], [170.54, -2262.24], [164.61, -2267.54], [166.79, -2269.97], [165.51, -2271.11], [167.91, -2273.79], [160.97, -2280.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[186.21, -2280.34], [190.8, -2285.32], [198.45, -2278.32], [189.73, -2268.85], [183.83, -2274.23], [187.98, -2278.74], [186.21, -2280.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[199.52, -2262.62], [206.91, -2270.09], [212.35, -2264.76], [210.31, -2262.69], [215.24, -2257.85], [209.89, -2252.44], [199.52, -2262.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[187.54, -2250.45], [195.35, -2257.76], [204.49, -2248.07], [196.68, -2240.76], [187.54, -2250.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[211.41, -2240.58], [213.62, -2242.87], [217.67, -2238.98], [215.46, -2236.69], [211.41, -2240.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[216.2, -2244.27], [218.62, -2246.82], [222.88, -2242.79], [220.47, -2240.26], [216.2, -2244.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[17.6, -2089.9], [35.69, -2101.43], [31.93, -2107.29], [54.75, -2121.83], [48.75, -2131.19], [51.07, -2132.67], [55.12, -2135.25], [60.72, -2126.52], [65.75, -2129.73], [66.72, -2128.22], [69.19, -2124.38], [75.12, -2128.16], [78.79, -2122.46], [82.24, -2124.66], [83.11, -2123.29], [87.6, -2116.3], [44.93, -2089.08], [52.13, -2077.86], [32.87, -2065.57], [28.81, -2071.89], [28.02, -2071.39], [23.51, -2078.43], [24.54, -2079.09], [17.6, -2089.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[404.63, -3080.94], [413.4, -3088.99], [417.03, -3085.2], [422.19, -3089.63], [430.66, -3080.7], [440.61, -3088.4], [444.05, -3084.79], [449.03, -3088.64], [458.31, -3078.76], [436.37, -3058.84], [432.11, -3057.16], [428.79, -3057.06], [426.83, -3057.2], [423.25, -3059.05], [404.63, -3080.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2162.38, -916.29], [-2162.76, -925.33], [-2144.77, -926.07], [-2144.4, -917.04], [-2162.38, -916.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2161.51, -903.88], [-2161.91, -912.62], [-2147.19, -913.29], [-2147.16, -912.53], [-2144.76, -912.64], [-2144.42, -905.27], [-2146.82, -905.16], [-2146.79, -904.56], [-2161.51, -903.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1936.79, -918.64], [-1937.04, -927.85], [-1936.44, -927.87], [-1936.49, -929.89], [-1929.41, -930.09], [-1929.36, -928.07], [-1928.26, -928.1], [-1928.0, -918.9], [-1928.69, -918.88], [-1928.62, -916.33], [-1935.75, -916.13], [-1935.83, -918.67], [-1936.79, -918.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1896.08, -895.04], [-1885.67, -895.33], [-1885.69, -896.18], [-1883.57, -896.24], [-1883.83, -905.3], [-1885.95, -905.24], [-1885.98, -906.18], [-1896.39, -905.89], [-1896.38, -905.53], [-1897.55, -905.5], [-1897.26, -895.59], [-1896.1, -895.62], [-1896.08, -895.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2315.76, -918.13], [-2311.94, -922.56], [-2304.76, -916.41], [-2308.57, -911.98], [-2315.76, -918.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2057.31, -905.0], [-2057.44, -911.25], [-2049.64, -911.42], [-2049.51, -905.16], [-2057.31, -905.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2296.05, -910.85], [-2299.22, -913.4], [-2303.7, -907.84], [-2300.52, -905.29], [-2296.05, -910.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2256.04, -912.94], [-2256.32, -922.13], [-2243.99, -922.51], [-2243.7, -913.32], [-2256.04, -912.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2393.77, -881.77], [-2390.76, -879.12], [-2385.59, -884.95], [-2388.6, -887.61], [-2393.77, -881.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1912.0, -892.75], [-1904.1, -892.95], [-1904.35, -902.49], [-1912.26, -902.29], [-1912.0, -892.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2026.59, -906.32], [-2026.38, -897.54], [-2011.86, -897.91], [-2012.07, -906.68], [-2026.59, -906.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2058.83, -916.06], [-2059.07, -927.06], [-2052.37, -927.2], [-2052.13, -916.2], [-2058.83, -916.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2390.21, -878.4], [-2384.88, -884.41], [-2379.84, -879.98], [-2385.17, -873.96], [-2390.21, -878.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2345.36, -866.06], [-2337.58, -863.56], [-2334.88, -861.21], [-2328.11, -868.77], [-2346.99, -884.87], [-2345.36, -866.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1982.97, -912.38], [-1970.12, -912.71], [-1970.25, -917.85], [-1973.12, -917.78], [-1973.42, -929.8], [-1983.39, -929.55], [-1982.97, -912.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1901.17, -920.44], [-1901.33, -931.05], [-1896.02, -931.14], [-1896.04, -932.0], [-1886.43, -932.15], [-1886.41, -931.28], [-1880.62, -931.37], [-1880.45, -920.76], [-1901.17, -920.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2380.64, -906.2], [-2387.65, -897.98], [-2383.91, -894.82], [-2383.04, -895.85], [-2380.12, -893.38], [-2373.25, -901.42], [-2375.92, -903.68], [-2376.65, -902.82], [-2380.64, -906.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2048.97, -916.65], [-2049.14, -924.53], [-2045.74, -924.61], [-2045.76, -925.46], [-2043.22, -925.52], [-2043.21, -924.66], [-2040.36, -924.73], [-2040.19, -916.86], [-2048.97, -916.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2330.79, -917.59], [-2338.26, -909.08], [-2331.9, -903.53], [-2324.43, -912.04], [-2327.54, -914.75], [-2326.86, -915.53], [-2328.64, -917.09], [-2329.33, -916.31], [-2330.79, -917.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2026.63, -914.61], [-2026.94, -925.58], [-2014.85, -925.93], [-2014.75, -922.22], [-2013.25, -922.26], [-2013.14, -918.65], [-2014.64, -918.61], [-2014.54, -914.96], [-2026.63, -914.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2378.18, -890.21], [-2372.0, -897.28], [-2370.48, -895.97], [-2368.75, -897.95], [-2363.79, -893.66], [-2365.58, -891.61], [-2365.1, -891.2], [-2371.23, -884.17], [-2378.18, -890.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2319.38, -895.26], [-2313.55, -890.18], [-2307.93, -896.57], [-2308.49, -897.07], [-2306.13, -899.76], [-2310.91, -903.92], [-2313.28, -901.23], [-2313.76, -901.65], [-2319.38, -895.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1553.84, -1813.86], [-1549.31, -1821.73], [-1544.66, -1819.07], [-1542.64, -1822.57], [-1536.32, -1818.97], [-1535.34, -1820.67], [-1530.83, -1818.1], [-1534.7, -1811.37], [-1536.11, -1812.18], [-1537.22, -1810.23], [-1539.49, -1811.52], [-1540.23, -1810.22], [-1545.97, -1813.5], [-1547.77, -1810.4], [-1553.84, -1813.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1554.03, -1833.88], [-1550.48, -1840.42], [-1543.62, -1836.72], [-1547.18, -1830.18], [-1554.03, -1833.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1521.68, -1858.85], [-1517.31, -1866.53], [-1511.62, -1863.31], [-1512.77, -1861.29], [-1508.52, -1858.9], [-1511.74, -1853.24], [-1521.68, -1858.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1526.35, -1848.31], [-1518.98, -1844.31], [-1517.39, -1847.21], [-1516.12, -1846.53], [-1514.19, -1850.05], [-1515.45, -1850.73], [-1514.51, -1852.45], [-1521.89, -1856.46], [-1526.35, -1848.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1542.73, -1829.33], [-1538.57, -1837.34], [-1526.92, -1831.33], [-1527.15, -1830.9], [-1524.98, -1829.78], [-1526.83, -1826.19], [-1525.59, -1825.56], [-1527.66, -1821.58], [-1542.73, -1829.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1581.31, -1681.61], [-1588.38, -1681.38], [-1588.36, -1680.84], [-1594.49, -1680.64], [-1594.62, -1684.36], [-1601.2, -1684.16], [-1601.97, -1708.92], [-1582.19, -1709.55], [-1581.31, -1681.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-36.18, 319.56], [-25.7, 328.98], [-23.0, 326.0], [-24.17, 324.96], [-21.58, 322.08], [-30.89, 313.71], [-36.18, 319.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1629.28, -1356.73], [-1644.33, -1347.55], [-1644.01, -1336.48], [-1628.88, -1345.75], [-1629.28, -1356.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[327.84, 59.16], [314.75, 47.54], [353.17, 4.56], [366.27, 16.18], [327.84, 59.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[161.07, -8.04], [147.56, 6.56], [157.78, 15.96], [164.23, 8.99], [166.71, 11.27], [173.77, 3.65], [161.07, -8.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-525.91, -886.01], [-488.5, -927.46], [-486.23, -929.97], [-473.94, -918.96], [-513.61, -874.99], [-525.91, -886.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1503.97, 2416.54], [1564.8, 2409.85], [1597.01, 2710.32], [1568.15, 2713.73], [1568.6, 2721.53], [1575.24, 2721.34], [1576.96, 2748.49], [1570.08, 2748.92], [1570.57, 2757.9], [1584.09, 2757.28], [1583.14, 2748.8], [1601.16, 2747.81], [1614.08, 2869.51], [1594.15, 2870.07], [1592.69, 2843.38], [1525.15, 2847.65], [1524.53, 2833.94], [1525.42, 2833.42], [1524.33, 2813.22], [1512.28, 2813.99], [1509.89, 2760.1], [1534.96, 2758.87], [1533.28, 2723.14], [1561.07, 2721.93], [1560.71, 2714.47], [1536.15, 2717.18], [1530.9, 2669.07], [1518.4, 2670.43], [1516.66, 2654.96], [1513.79, 2655.05], [1513.21, 2650.04], [1516.3, 2649.84], [1514.48, 2633.49], [1526.83, 2632.14], [1503.97, 2416.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1923.97, -1077.86], [-1900.27, -1078.29], [-1900.51, -1091.78], [-1908.73, -1091.64], [-1908.76, -1092.72], [-1915.8, -1092.59], [-1915.78, -1091.5], [-1924.21, -1091.35], [-1923.97, -1077.86]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-605.28, -2145.2], [-589.17, -2147.21], [-590.39, -2159.21], [-606.63, -2157.02], [-605.28, -2145.2]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-579.59, -2132.36], [-589.75, -2130.96], [-591.35, -2145.12], [-581.56, -2146.85], [-579.59, -2132.36]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2429.44, -192.9], [-2376.77, -194.95], [-2375.96, -174.38], [-2375.13, -153.15], [-2394.46, -152.4], [-2428.05, -151.1], [-2428.63, -166.17], [-2429.16, -166.16], [-2429.63, -178.13], [-2428.87, -178.16], [-2429.44, -192.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1817.31, -311.86], [-1841.4, -310.79], [-1840.7, -295.21], [-1831.67, -295.62], [-1831.11, -283.09], [-1832.62, -283.02], [-1832.49, -280.21], [-1836.86, -280.01], [-1836.47, -271.27], [-1832.37, -271.46], [-1832.13, -266.18], [-1815.31, -266.93], [-1817.31, -311.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1814.73, -312.89], [-1786.25, -314.47], [-1785.96, -307.87], [-1785.45, -307.89], [-1785.43, -307.49], [-1774.58, -307.77], [-1772.87, -278.64], [-1782.26, -278.15], [-1779.34, -275.51], [-1783.27, -271.6], [-1783.19, -268.77], [-1790.65, -268.55], [-1790.58, -266.75], [-1805.44, -266.15], [-1805.47, -267.11], [-1808.09, -267.1], [-1809.05, -291.26], [-1813.95, -291.12], [-1814.73, -312.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[274.41, 40.17], [259.54, 56.13], [258.75, 55.4], [250.96, 63.76], [253.56, 66.16], [236.1, 84.91], [244.47, 92.65], [247.94, 88.93], [252.8, 83.71], [258.67, 77.4], [261.11, 74.78], [262.79, 72.98], [260.85, 71.18], [262.35, 69.58], [265.9, 65.77], [267.48, 64.07], [268.29, 64.82], [271.86, 60.99], [275.67, 56.9], [279.52, 52.75], [281.8, 50.31], [283.45, 48.54], [274.41, 40.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[302.91, 61.29], [301.72, 62.41], [301.33, 64.06], [289.5, 76.55], [311.39, 96.03], [311.45, 98.4], [314.41, 98.39], [316.94, 100.91], [330.3, 86.51], [327.26, 83.65], [327.41, 81.28], [325.04, 81.49], [318.88, 75.49], [319.44, 74.83], [317.44, 72.94], [317.02, 73.39], [305.7, 63.23], [305.75, 62.36], [304.78, 61.24], [302.91, 61.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[321.23, 120.61], [300.8, 143.17], [318.57, 159.15], [339.0, 136.59], [321.23, 120.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[141.74, 0.71], [125.36, -14.1], [158.97, -51.0], [174.75, -36.74], [176.61, -35.05], [171.74, -29.71], [172.59, -28.95], [169.98, -26.09], [167.88, -27.98], [141.74, 0.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1266.53, -76.7], [-1266.13, -68.25], [-1265.28, -50.6], [-1265.17, -48.82], [-1265.05, -46.33], [-1264.93, -43.87], [-1272.23, -43.51], [-1272.35, -45.97], [-1272.37, -46.45], [-1274.24, -46.37], [-1278.7, -46.15], [-1278.68, -45.65], [-1285.57, -45.31], [-1285.69, -47.83], [-1286.91, -72.66], [-1287.86, -72.61], [-1288.88, -72.57], [-1289.08, -76.61], [-1289.1, -77.14], [-1288.92, -77.45], [-1288.59, -77.58], [-1287.78, -77.62], [-1267.32, -78.62], [-1267.28, -77.84], [-1267.23, -76.67], [-1266.53, -76.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1266.53, -76.7], [-1265.49, -76.75], [-1260.44, -76.99], [-1260.02, -68.39], [-1259.11, -49.39], [-1262.69, -49.22], [-1263.3, -49.19], [-1263.37, -50.69], [-1265.28, -50.6], [-1266.13, -68.25], [-1266.53, -76.7]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-1260.44, -76.99], [-1258.56, -77.07], [-1256.5, -77.16], [-1248.02, -77.57], [-1246.25, -77.66], [-1245.42, -60.36], [-1244.64, -44.18], [-1262.4, -43.33], [-1262.69, -49.22], [-1259.11, -49.39], [-1260.02, -68.39], [-1260.44, -76.99]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1226.21, -78.62], [-1225.02, -78.67], [-1220.6, -78.88], [-1219.17, -78.94], [-1216.64, -79.06], [-1214.34, -79.16], [-1213.31, -79.21], [-1212.39, -79.25], [-1207.08, -79.49], [-1205.76, -79.55], [-1205.45, -72.88], [-1206.6, -72.83], [-1205.79, -55.16], [-1211.28, -54.91], [-1212.83, -54.84], [-1212.73, -51.76], [-1212.65, -50.06], [-1217.84, -49.81], [-1223.34, -49.56], [-1223.39, -50.56], [-1224.5, -50.51], [-1224.67, -54.2], [-1223.43, -54.26], [-1224.32, -73.75], [-1225.98, -73.68], [-1226.21, -78.62]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1205.76, -79.55], [-1205.02, -79.52], [-1204.2, -79.56], [-1204.26, -81.0], [-1201.27, -81.15], [-1199.72, -81.23], [-1195.53, -81.43], [-1195.46, -80.01], [-1195.01, -80.03], [-1194.53, -70.98], [-1193.21, -45.71], [-1198.66, -45.43], [-1204.01, -45.14], [-1204.34, -51.99], [-1205.45, -72.88], [-1205.76, -79.55]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1243.84, -60.44], [-1244.47, -74.29], [-1244.98, -74.28], [-1245.14, -77.75], [-1236.55, -78.16], [-1236.14, -78.17], [-1229.98, -78.44], [-1226.21, -78.62], [-1225.98, -73.68], [-1224.32, -73.75], [-1223.43, -54.26], [-1224.67, -54.2], [-1224.5, -50.51], [-1224.46, -49.5], [-1224.06, -40.83], [-1230.45, -40.55], [-1231.37, -40.5], [-1232.29, -40.46], [-1234.43, -40.37], [-1235.09, -40.34], [-1241.11, -40.07], [-1242.92, -39.98], [-1244.46, -39.92], [-1244.58, -42.73], [-1244.64, -44.18], [-1245.42, -60.36], [-1244.57, -60.41], [-1243.84, -60.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[50.41, -382.01], [53.7, -385.65], [59.12, -391.62], [63.11, -396.04], [75.83, -410.15], [87.99, -398.45], [113.09, -375.69], [97.89, -358.14], [91.29, -351.45], [87.86, -347.63], [85.86, -349.39], [70.74, -362.61], [68.6, -360.2], [67.2, -360.95], [65.93, -361.92], [64.61, -363.41], [63.44, -365.39], [62.79, -366.91], [62.36, -368.54], [62.19, -369.65], [62.81, -370.4], [60.54, -372.44], [53.44, -379.23], [50.41, -382.01]], "holes": []}, "height": 45.5}, {"shape": {"outer": [[68.6, -360.2], [61.94, -352.61], [66.14, -348.93], [62.87, -345.21], [69.27, -339.61], [71.94, -342.65], [76.44, -338.71], [85.86, -349.39], [70.74, -362.61], [68.6, -360.2]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[53.44, -379.23], [47.46, -372.76], [44.41, -375.58], [37.51, -368.11], [25.15, -379.46], [45.23, -401.18], [42.88, -403.35], [47.85, -408.74], [48.38, -408.24], [64.33, -425.35], [77.64, -412.01], [75.83, -410.15], [63.11, -396.04], [59.12, -391.62], [53.7, -385.65], [50.41, -382.01], [53.44, -379.23]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-117.41, -546.45], [-137.37, -524.44], [-132.19, -519.75], [-118.04, -507.03], [-113.25, -502.73], [-112.0, -501.6], [-91.05, -524.7], [-93.12, -526.56], [-94.05, -525.54], [-99.31, -530.27], [-97.92, -531.79], [-113.2, -545.55], [-114.65, -543.96], [-117.41, -546.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[37.64, -119.88], [36.9, -119.05], [24.66, -105.11], [35.4, -95.57], [48.3, -109.71], [37.64, -119.88]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[24.66, -105.11], [19.32, -109.78], [29.83, -121.74], [31.74, -123.92], [36.9, -119.05], [24.66, -105.11]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-3.64, -103.19], [-27.41, -77.2], [-2.01, -54.62], [16.2, -74.84], [16.08, -77.63], [18.96, -77.75], [18.77, -83.28], [16.03, -83.27], [15.81, -86.03], [-0.33, -100.44], [-3.64, -103.19]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-3.64, -103.19], [-38.21, -134.59], [-52.02, -119.06], [-47.8, -115.07], [-49.53, -113.24], [-48.9, -112.66], [-45.05, -109.22], [-42.86, -111.62], [-33.43, -103.05], [-36.53, -99.67], [-37.57, -100.61], [-40.18, -97.75], [-31.15, -89.55], [-32.99, -87.55], [-29.15, -84.05], [-31.82, -81.12], [-27.41, -77.2], [-3.64, -103.19]], "holes": []}, "height": 38.1}, {"shape": {"outer": [[19.32, -109.78], [13.74, -114.97], [19.49, -121.74], [21.9, -124.48], [25.86, -125.19], [29.83, -121.74], [19.32, -109.78]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[13.74, -114.97], [9.36, -118.69], [11.87, -122.43], [11.74, -124.67], [13.28, -124.77], [12.46, -141.47], [18.5, -141.71], [19.33, -125.06], [19.49, -121.74], [13.74, -114.97]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[39.97, -142.57], [40.69, -122.27], [51.69, -112.61], [59.18, -121.19], [52.65, -126.7], [48.74, -126.68], [48.25, -142.9], [39.97, -142.57]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[39.97, -142.57], [31.85, -142.25], [32.68, -125.54], [35.14, -125.62], [35.18, -124.31], [40.69, -122.27], [39.97, -142.57]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[32.68, -125.54], [31.42, -125.47], [19.33, -125.06], [18.5, -141.71], [31.85, -142.25], [32.68, -125.54]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[9.36, -118.69], [5.26, -122.24], [6.34, -123.99], [5.37, -141.25], [12.46, -141.47], [13.28, -124.77], [11.74, -124.67], [11.87, -122.43], [9.36, -118.69]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[5.37, -141.25], [-9.98, -140.62], [-10.93, -140.24], [-11.43, -139.46], [-11.83, -138.51], [-11.81, -137.67], [-11.48, -136.86], [-10.26, -135.59], [5.26, -122.24], [6.34, -123.99], [5.37, -141.25]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[46.77, -193.81], [34.51, -180.03], [35.32, -162.56], [41.32, -162.84], [47.52, -163.14], [46.91, -176.24], [55.6, -186.01], [46.77, -193.81]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[35.32, -162.56], [9.99, -161.39], [8.87, -185.54], [17.45, -195.14], [34.51, -180.03], [35.32, -162.56]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[17.45, -195.14], [29.72, -208.9], [46.77, -193.81], [34.51, -180.03], [17.45, -195.14]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[8.87, -185.54], [-9.66, -164.41], [-8.23, -160.54], [9.99, -161.39], [8.87, -185.54]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[47.52, -163.14], [55.94, -163.54], [55.42, -174.38], [61.29, -180.99], [55.6, -186.01], [46.91, -176.24], [47.52, -163.14]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[55.94, -163.54], [76.06, -164.5], [76.88, -165.0], [77.04, -165.54], [77.06, -166.58], [76.81, -167.3], [61.29, -180.99], [55.42, -174.38], [55.94, -163.54]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[95.4, -176.07], [105.08, -186.94], [102.11, -189.5], [102.65, -190.24], [102.22, -190.87], [111.67, -201.65], [119.85, -194.36], [122.65, -191.85], [120.32, -189.09], [128.89, -179.27], [129.32, -166.74], [108.01, -165.67], [102.99, -169.46], [95.4, -176.07]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-328.55, -503.56], [-313.36, -520.65], [-256.13, -468.5], [-271.55, -451.57], [-328.55, -503.56]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-255.09, -358.64], [-244.8, -369.58], [-243.54, -351.62], [-246.12, -350.25], [-255.09, -358.64]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-255.09, -358.64], [-265.29, -368.0], [-245.84, -388.86], [-244.8, -369.58], [-255.09, -358.64]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-265.29, -368.0], [-274.76, -376.72], [-253.26, -399.84], [-247.72, -394.73], [-249.79, -392.51], [-245.84, -388.86], [-265.29, -368.0]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-288.45, -389.39], [-267.69, -411.82], [-272.58, -416.32], [-293.34, -393.88], [-288.45, -389.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-288.45, -389.39], [-284.09, -385.36], [-264.56, -406.44], [-263.29, -407.81], [-267.69, -411.82], [-288.45, -389.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-284.09, -385.36], [-274.76, -376.72], [-253.26, -399.84], [-258.26, -404.45], [-260.17, -402.39], [-264.56, -406.44], [-284.09, -385.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1720.26, -1004.03], [-1643.1, -1006.19], [-1642.05, -965.7], [-1719.57, -963.64], [-1720.26, -1004.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-942.0, -128.1], [-941.02, -112.66], [-955.78, -111.73], [-957.56, -113.4], [-943.71, -128.0], [-942.0, -128.1]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-929.2, -145.55], [-913.29, -163.79], [-900.71, -152.9], [-914.73, -136.82], [-916.34, -134.97], [-916.93, -134.93], [-929.2, -145.55]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-906.69, -135.56], [-906.51, -132.55], [-905.47, -114.88], [-906.13, -114.86], [-906.9, -113.95], [-908.89, -113.82], [-909.72, -114.68], [-911.24, -114.58], [-912.02, -113.62], [-914.07, -113.5], [-914.89, -114.3], [-915.68, -114.25], [-916.88, -134.06], [-916.93, -134.93], [-916.34, -134.97], [-908.93, -135.42], [-906.69, -135.56]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-942.16, -130.67], [-934.51, -139.72], [-929.58, -131.01], [-928.85, -129.74], [-927.83, -113.49], [-941.02, -112.66], [-942.0, -128.1], [-942.16, -130.67]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-934.51, -139.72], [-933.81, -140.46], [-933.77, -141.03], [-932.8, -142.04], [-932.25, -142.16], [-931.54, -142.92], [-931.41, -143.49], [-930.55, -144.38], [-930.05, -144.53], [-929.2, -145.55], [-916.93, -134.93], [-916.88, -134.06], [-922.77, -133.69], [-924.71, -132.02], [-924.66, -131.31], [-929.58, -131.01], [-934.51, -139.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2695.97, -605.89], [-2696.29, -615.97], [-2688.23, -616.22], [-2688.25, -616.9], [-2683.02, -617.06], [-2682.99, -616.4], [-2677.34, -616.57], [-2677.05, -607.48], [-2691.03, -607.03], [-2691.0, -606.04], [-2695.97, -605.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2782.81, -846.21], [-2788.72, -846.02], [-2788.75, -847.19], [-2790.8, -847.13], [-2791.16, -857.92], [-2789.71, -857.96], [-2789.95, -865.31], [-2785.09, -865.47], [-2784.85, -858.12], [-2783.21, -858.18], [-2782.81, -846.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2721.71, -368.27], [-2711.81, -368.51], [-2711.9, -372.42], [-2710.86, -373.15], [-2710.92, -375.7], [-2712.01, -376.71], [-2712.12, -381.51], [-2721.03, -381.3], [-2720.81, -372.26], [-2721.81, -372.24], [-2721.71, -368.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2726.04, -706.9], [-2730.35, -706.75], [-2730.32, -705.81], [-2735.41, -705.63], [-2736.14, -727.04], [-2726.73, -727.35], [-2726.44, -718.92], [-2724.53, -718.99], [-2724.41, -715.39], [-2726.32, -715.33], [-2726.04, -706.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2712.13, -349.1], [-2720.69, -348.89], [-2721.13, -365.91], [-2712.56, -366.13], [-2712.55, -365.48], [-2709.37, -365.56], [-2709.21, -359.52], [-2710.69, -359.49], [-2710.55, -353.99], [-2712.25, -353.94], [-2712.13, -349.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2686.31, -515.78], [-2686.36, -517.34], [-2688.51, -517.29], [-2688.63, -521.91], [-2686.49, -521.98], [-2686.54, -523.86], [-2673.17, -524.25], [-2673.08, -521.11], [-2669.76, -521.2], [-2669.62, -516.25], [-2686.31, -515.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2720.72, -331.05], [-2720.9, -336.49], [-2720.25, -336.51], [-2720.49, -343.48], [-2708.2, -343.89], [-2708.06, -339.47], [-2700.95, -339.71], [-2700.73, -332.97], [-2707.83, -332.73], [-2707.8, -331.48], [-2720.72, -331.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2689.37, -454.11], [-2689.45, -457.88], [-2690.46, -457.86], [-2690.54, -461.28], [-2689.53, -461.31], [-2689.6, -463.71], [-2671.64, -464.14], [-2671.5, -458.51], [-2669.98, -458.54], [-2669.9, -455.55], [-2671.43, -455.52], [-2671.41, -454.54], [-2689.37, -454.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2687.75, -485.27], [-2674.81, -485.57], [-2674.94, -491.5], [-2672.27, -491.56], [-2672.46, -500.1], [-2675.14, -500.04], [-2675.26, -505.37], [-2688.2, -505.08], [-2688.12, -501.31], [-2690.86, -501.25], [-2690.57, -488.62], [-2687.82, -488.69], [-2687.75, -485.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2891.61, -843.31], [-2891.96, -853.31], [-2885.3, -853.54], [-2885.4, -856.33], [-2880.45, -856.49], [-2880.18, -848.49], [-2881.03, -848.45], [-2880.87, -843.66], [-2884.03, -843.56], [-2883.96, -841.63], [-2888.28, -841.48], [-2888.35, -843.42], [-2891.61, -843.31]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2684.09, -525.66], [-2672.33, -526.03], [-2672.35, -526.59], [-2669.69, -526.68], [-2669.82, -530.59], [-2672.48, -530.51], [-2672.91, -544.38], [-2670.21, -544.46], [-2670.33, -548.33], [-2673.03, -548.25], [-2673.05, -548.93], [-2684.81, -548.55], [-2684.09, -525.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2689.59, -678.32], [-2680.75, -678.59], [-2680.99, -686.44], [-2679.02, -686.5], [-2679.12, -689.54], [-2681.09, -689.49], [-2681.11, -690.29], [-2689.95, -690.02], [-2689.91, -688.89], [-2692.25, -688.81], [-2692.06, -682.99], [-2689.73, -683.07], [-2689.59, -678.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2854.27, -796.36], [-2848.85, -796.55], [-2848.88, -797.07], [-2846.77, -797.14], [-2846.8, -797.86], [-2843.16, -797.99], [-2843.52, -808.19], [-2847.81, -808.05], [-2847.89, -810.5], [-2854.17, -810.28], [-2854.08, -807.82], [-2854.68, -807.81], [-2854.27, -796.36]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2860.21, -844.75], [-2860.45, -854.96], [-2859.53, -854.98], [-2859.56, -856.48], [-2853.71, -856.62], [-2853.68, -855.12], [-2850.35, -855.2], [-2850.1, -844.97], [-2851.04, -844.96], [-2850.98, -842.71], [-2859.45, -842.51], [-2859.5, -844.77], [-2860.21, -844.75]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2728.34, -614.81], [-2717.01, -615.11], [-2717.03, -615.98], [-2710.32, -616.15], [-2710.5, -622.9], [-2717.2, -622.72], [-2717.28, -625.72], [-2728.62, -625.43], [-2728.59, -624.4], [-2730.35, -624.35], [-2730.16, -616.84], [-2728.39, -616.88], [-2728.34, -614.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2695.19, -388.4], [-2695.41, -395.53], [-2691.57, -395.65], [-2691.51, -393.9], [-2689.44, -393.96], [-2689.71, -403.04], [-2680.56, -403.32], [-2680.49, -401.23], [-2675.88, -401.36], [-2675.77, -397.7], [-2674.9, -397.72], [-2674.77, -393.42], [-2675.64, -393.4], [-2675.51, -388.99], [-2695.19, -388.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2683.88, -368.37], [-2673.72, -368.72], [-2673.89, -373.6], [-2672.07, -373.66], [-2672.19, -377.04], [-2674.01, -376.97], [-2674.18, -381.53], [-2677.05, -381.42], [-2677.19, -385.32], [-2684.48, -385.06], [-2684.22, -377.89], [-2685.7, -377.84], [-2685.39, -369.3], [-2683.92, -369.35], [-2683.88, -368.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2683.53, -353.96], [-2678.5, -354.1], [-2678.42, -351.38], [-2674.71, -351.49], [-2674.79, -354.21], [-2673.48, -354.25], [-2673.56, -357.07], [-2672.25, -357.11], [-2672.36, -360.81], [-2673.67, -360.77], [-2673.75, -363.66], [-2675.39, -363.61], [-2675.47, -366.44], [-2686.39, -366.13], [-2686.29, -362.86], [-2683.78, -362.93], [-2683.53, -353.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2711.18, -686.48], [-2705.4, -686.64], [-2705.74, -698.5], [-2711.52, -698.34], [-2711.18, -686.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2687.78, -425.81], [-2688.22, -436.14], [-2671.35, -436.85], [-2670.92, -426.51], [-2687.78, -425.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2731.51, -529.08], [-2723.11, -529.36], [-2723.58, -543.61], [-2731.98, -543.34], [-2731.51, -529.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2846.43, -785.86], [-2841.01, -786.05], [-2841.24, -792.73], [-2846.66, -792.55], [-2846.43, -785.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2721.94, -705.12], [-2722.1, -710.77], [-2716.15, -710.94], [-2715.99, -705.29], [-2721.94, -705.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2687.43, -757.39], [-2687.68, -766.05], [-2678.41, -766.31], [-2678.16, -757.66], [-2687.43, -757.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2799.44, -868.95], [-2799.65, -876.35], [-2793.81, -876.52], [-2793.6, -869.12], [-2799.44, -868.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2695.9, -571.0], [-2701.63, -570.83], [-2701.95, -582.09], [-2696.22, -582.26], [-2695.9, -571.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2764.6, -844.84], [-2760.1, -845.0], [-2760.06, -843.77], [-2757.24, -843.88], [-2757.28, -844.78], [-2756.34, -844.81], [-2756.99, -861.87], [-2765.24, -861.57], [-2764.6, -844.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2729.67, -501.05], [-2729.95, -509.75], [-2711.6, -510.34], [-2711.33, -501.63], [-2729.67, -501.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2874.1, -844.67], [-2874.42, -851.9], [-2874.18, -851.92], [-2874.27, -853.87], [-2870.03, -854.05], [-2869.95, -852.1], [-2863.71, -852.37], [-2863.39, -845.15], [-2874.1, -844.67]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2693.23, -279.25], [-2687.56, -279.42], [-2687.72, -285.18], [-2693.4, -285.02], [-2693.23, -279.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2814.01, -876.56], [-2818.73, -876.33], [-2819.02, -882.43], [-2814.29, -882.64], [-2814.01, -876.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2854.24, -860.79], [-2854.32, -867.31], [-2847.76, -867.39], [-2847.69, -860.87], [-2854.24, -860.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2736.8, -767.73], [-2736.89, -771.74], [-2729.96, -771.89], [-2729.87, -767.88], [-2736.8, -767.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2717.23, -526.23], [-2711.29, -526.44], [-2711.56, -533.62], [-2717.49, -533.41], [-2717.23, -526.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2693.68, -784.55], [-2693.44, -776.23], [-2681.92, -776.56], [-2682.16, -784.88], [-2693.68, -784.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2726.75, -464.75], [-2719.0, -464.91], [-2719.18, -474.21], [-2726.95, -474.05], [-2726.75, -464.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2693.69, -788.36], [-2693.96, -796.59], [-2682.49, -796.97], [-2682.22, -788.74], [-2693.69, -788.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2773.48, -805.01], [-2762.35, -805.28], [-2762.61, -816.04], [-2773.74, -815.76], [-2773.48, -805.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2882.33, -748.95], [-2873.76, -749.33], [-2874.19, -759.38], [-2882.77, -759.01], [-2882.33, -748.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2684.27, -302.04], [-2684.61, -311.36], [-2666.66, -312.0], [-2666.33, -302.68], [-2684.27, -302.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2879.84, -766.98], [-2880.08, -776.44], [-2869.38, -776.72], [-2869.13, -767.25], [-2879.84, -766.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2867.8, -749.36], [-2868.06, -756.78], [-2857.19, -757.15], [-2856.94, -749.73], [-2867.8, -749.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2696.63, -592.92], [-2702.2, -592.76], [-2702.36, -598.26], [-2696.79, -598.42], [-2696.63, -592.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2840.99, -868.02], [-2835.43, -868.15], [-2835.59, -875.1], [-2841.15, -874.96], [-2840.99, -868.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2780.22, -844.2], [-2771.53, -844.32], [-2771.71, -856.83], [-2773.02, -856.82], [-2773.04, -858.17], [-2773.89, -858.16], [-2773.95, -862.67], [-2779.91, -862.58], [-2779.83, -857.4], [-2779.31, -857.42], [-2779.29, -856.54], [-2780.42, -856.53], [-2780.22, -844.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2707.68, -490.62], [-2700.23, -490.75], [-2700.4, -500.06], [-2707.84, -499.93], [-2707.68, -490.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2776.5, -867.31], [-2776.62, -874.52], [-2769.32, -874.65], [-2769.19, -867.44], [-2776.5, -867.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2729.57, -489.84], [-2729.73, -498.47], [-2717.88, -498.7], [-2717.72, -490.07], [-2729.57, -489.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2818.09, -843.38], [-2807.56, -843.64], [-2807.96, -860.28], [-2818.48, -860.03], [-2818.09, -843.38]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2714.2, -781.56], [-2714.31, -785.53], [-2708.36, -785.7], [-2708.25, -781.74], [-2714.2, -781.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2715.51, -792.8], [-2715.65, -797.81], [-2708.71, -798.01], [-2708.57, -793.0], [-2715.51, -792.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2881.15, -780.18], [-2871.7, -780.3], [-2871.84, -792.81], [-2881.29, -792.7], [-2881.15, -780.18]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2727.83, -566.82], [-2728.21, -577.19], [-2710.2, -577.84], [-2709.82, -567.49], [-2727.83, -566.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2877.4, -887.91], [-2877.65, -899.12], [-2876.97, -899.14], [-2877.03, -902.03], [-2869.42, -902.2], [-2869.35, -899.3], [-2868.67, -899.32], [-2868.44, -889.59], [-2872.6, -889.5], [-2872.56, -888.02], [-2877.4, -887.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2708.01, -570.27], [-2708.24, -576.31], [-2702.61, -576.53], [-2702.38, -570.49], [-2708.01, -570.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2708.29, -798.4], [-2704.29, -798.47], [-2704.41, -804.3], [-2708.4, -804.22], [-2708.29, -798.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2726.68, -452.07], [-2726.98, -462.41], [-2714.47, -462.77], [-2714.17, -452.43], [-2726.68, -452.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2730.04, -629.75], [-2730.31, -638.83], [-2711.52, -639.37], [-2711.26, -630.29], [-2730.04, -629.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2707.83, -786.21], [-2707.96, -790.78], [-2700.97, -790.98], [-2700.84, -786.41], [-2707.83, -786.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2807.18, -799.57], [-2807.62, -812.42], [-2798.34, -812.74], [-2797.9, -799.89], [-2807.18, -799.57]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2727.06, -476.84], [-2715.74, -477.04], [-2715.92, -487.11], [-2727.24, -486.9], [-2727.06, -476.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2872.48, -801.72], [-2872.71, -809.89], [-2882.44, -809.61], [-2882.2, -801.44], [-2872.48, -801.72]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2685.74, -318.72], [-2686.02, -329.76], [-2673.45, -330.07], [-2673.18, -319.03], [-2685.74, -318.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2729.54, -604.33], [-2729.75, -611.65], [-2714.18, -612.1], [-2714.04, -607.18], [-2717.05, -607.09], [-2716.98, -604.69], [-2729.54, -604.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2836.65, -796.66], [-2830.7, -796.89], [-2830.81, -799.49], [-2827.54, -799.63], [-2828.01, -811.28], [-2837.23, -810.91], [-2836.65, -796.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2728.51, -641.01], [-2718.1, -641.42], [-2718.22, -644.35], [-2715.51, -644.46], [-2715.81, -651.91], [-2728.91, -651.39], [-2728.51, -641.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2728.36, -668.84], [-2728.46, -672.76], [-2731.32, -672.69], [-2731.44, -677.0], [-2719.19, -677.33], [-2718.97, -669.1], [-2728.36, -668.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2672.36, -333.06], [-2682.01, -332.85], [-2682.38, -348.59], [-2673.29, -348.8], [-2673.21, -345.46], [-2672.65, -345.47], [-2672.36, -333.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2729.62, -512.53], [-2729.91, -522.7], [-2718.23, -523.04], [-2717.98, -514.5], [-2719.62, -514.45], [-2719.57, -512.82], [-2729.62, -512.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2742.98, -843.37], [-2743.5, -858.26], [-2733.14, -858.62], [-2732.69, -846.13], [-2734.09, -846.08], [-2734.0, -843.68], [-2742.98, -843.37]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2714.78, -798.33], [-2708.46, -798.46], [-2708.58, -804.18], [-2712.52, -804.09], [-2712.48, -801.75], [-2714.85, -801.7], [-2714.78, -798.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2729.51, -802.69], [-2734.43, -802.5], [-2734.54, -805.37], [-2737.97, -805.24], [-2738.37, -815.97], [-2730.0, -816.28], [-2729.51, -802.69]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2732.74, -693.05], [-2732.95, -697.72], [-2730.07, -697.85], [-2730.27, -702.44], [-2716.9, -703.05], [-2716.48, -693.78], [-2732.74, -693.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2680.96, -804.23], [-2691.65, -803.97], [-2691.99, -817.6], [-2679.21, -817.92], [-2679.09, -813.36], [-2681.19, -813.31], [-2680.96, -804.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2725.5, -753.31], [-2725.95, -765.8], [-2702.5, -766.63], [-2702.13, -756.33], [-2716.41, -755.81], [-2716.34, -753.64], [-2725.5, -753.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2731.16, -655.03], [-2731.4, -663.67], [-2713.93, -664.18], [-2713.82, -660.42], [-2714.86, -660.39], [-2714.72, -655.51], [-2731.16, -655.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2735.53, -772.78], [-2725.87, -773.06], [-2725.97, -776.76], [-2724.06, -776.81], [-2724.2, -781.65], [-2726.11, -781.6], [-2726.15, -782.97], [-2735.82, -782.69], [-2735.53, -772.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2821.25, -842.97], [-2826.31, -842.84], [-2826.38, -845.43], [-2828.39, -845.38], [-2828.37, -844.69], [-2831.02, -844.61], [-2831.32, -855.93], [-2826.28, -856.06], [-2826.36, -858.58], [-2821.68, -858.72], [-2821.25, -842.97]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2721.07, -809.51], [-2721.34, -817.19], [-2711.94, -817.52], [-2711.68, -809.84], [-2714.52, -809.74], [-2714.42, -806.89], [-2719.06, -806.73], [-2719.16, -809.58], [-2721.07, -809.51]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2690.86, -625.04], [-2691.21, -636.57], [-2679.8, -636.92], [-2679.75, -635.29], [-2676.5, -635.39], [-2676.23, -626.63], [-2679.48, -626.53], [-2679.44, -625.39], [-2690.86, -625.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2697.68, -528.96], [-2698.23, -547.19], [-2687.82, -547.51], [-2687.27, -529.27], [-2688.3, -529.24], [-2688.25, -527.62], [-2691.86, -527.5], [-2691.9, -529.13], [-2697.68, -528.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2727.69, -440.02], [-2727.95, -448.99], [-2710.21, -449.5], [-2710.15, -447.27], [-2707.36, -447.35], [-2707.23, -442.67], [-2710.01, -442.59], [-2709.95, -440.53], [-2727.69, -440.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2697.31, -690.64], [-2697.6, -697.54], [-2701.19, -697.39], [-2701.35, -701.31], [-2697.77, -701.46], [-2697.81, -702.47], [-2679.04, -703.25], [-2678.53, -691.43], [-2697.31, -690.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2690.06, -465.64], [-2690.23, -470.58], [-2691.14, -470.55], [-2691.28, -474.79], [-2690.38, -474.83], [-2690.41, -475.68], [-2671.8, -476.34], [-2671.44, -466.3], [-2690.06, -465.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2868.23, -798.04], [-2858.52, -798.36], [-2858.58, -800.11], [-2855.75, -800.21], [-2855.97, -807.0], [-2858.81, -806.91], [-2858.9, -809.73], [-2868.6, -809.41], [-2868.23, -798.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2803.17, -844.5], [-2803.41, -859.89], [-2800.29, -859.93], [-2800.31, -861.21], [-2795.73, -861.29], [-2795.71, -860.01], [-2794.81, -860.03], [-2794.57, -844.64], [-2803.17, -844.5]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2715.27, -578.51], [-2727.72, -578.08], [-2727.84, -581.35], [-2726.69, -581.38], [-2726.98, -590.04], [-2716.76, -590.38], [-2716.53, -583.48], [-2715.44, -583.51], [-2715.27, -578.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2705.79, -806.64], [-2706.16, -819.36], [-2696.45, -819.64], [-2696.08, -806.92], [-2700.83, -806.78], [-2700.79, -805.41], [-2704.83, -805.3], [-2704.86, -806.66], [-2705.79, -806.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2718.12, -316.21], [-2709.76, -316.4], [-2709.89, -321.83], [-2706.81, -321.91], [-2706.94, -327.09], [-2720.48, -326.76], [-2720.33, -320.29], [-2718.22, -320.34], [-2718.12, -316.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2727.27, -755.2], [-2728.85, -755.17], [-2728.78, -752.37], [-2733.59, -752.26], [-2733.65, -755.06], [-2736.97, -754.98], [-2737.2, -764.73], [-2727.49, -764.95], [-2727.27, -755.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2729.5, -690.79], [-2729.25, -679.9], [-2718.11, -680.17], [-2718.19, -683.55], [-2715.87, -683.61], [-2715.98, -688.07], [-2718.29, -688.02], [-2718.36, -691.06], [-2729.5, -690.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2755.25, -842.81], [-2755.63, -853.07], [-2754.8, -853.11], [-2755.01, -858.83], [-2747.95, -859.09], [-2747.77, -854.21], [-2749.02, -854.16], [-2749.0, -853.47], [-2746.59, -853.56], [-2746.2, -843.15], [-2755.25, -842.81]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2821.53, -797.62], [-2817.81, -797.73], [-2817.75, -795.85], [-2811.5, -796.02], [-2811.89, -809.75], [-2817.54, -809.59], [-2817.52, -808.73], [-2821.84, -808.62], [-2821.53, -797.62]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2689.4, -639.62], [-2676.96, -639.98], [-2677.26, -650.6], [-2689.71, -650.24], [-2689.66, -648.44], [-2690.47, -648.41], [-2690.31, -642.71], [-2689.49, -642.73], [-2689.4, -639.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2692.33, -657.53], [-2680.1, -657.95], [-2680.65, -673.99], [-2692.88, -673.58], [-2692.66, -667.19], [-2695.0, -667.11], [-2694.89, -663.85], [-2692.55, -663.93], [-2692.33, -657.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2735.91, -786.41], [-2736.07, -795.63], [-2725.5, -795.81], [-2725.48, -794.96], [-2723.36, -794.99], [-2723.24, -787.54], [-2725.35, -787.5], [-2725.34, -786.6], [-2735.91, -786.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2847.28, -855.26], [-2847.02, -844.58], [-2836.4, -844.85], [-2836.66, -855.41], [-2838.5, -855.37], [-2838.57, -858.53], [-2844.97, -858.37], [-2844.89, -855.32], [-2847.28, -855.26]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2683.09, -441.4], [-2683.49, -451.43], [-2673.34, -451.83], [-2673.31, -451.0], [-2671.02, -451.09], [-2670.69, -442.6], [-2672.97, -442.52], [-2672.94, -441.8], [-2683.09, -441.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2729.58, -591.46], [-2729.84, -600.19], [-2716.56, -600.57], [-2716.44, -596.65], [-2715.43, -596.68], [-2715.31, -592.44], [-2716.32, -592.41], [-2716.31, -591.85], [-2729.58, -591.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2722.13, -385.98], [-2713.04, -386.28], [-2713.17, -390.25], [-2711.03, -390.32], [-2711.28, -397.92], [-2715.42, -397.79], [-2715.5, -400.42], [-2722.59, -400.2], [-2722.13, -385.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2726.27, -844.54], [-2718.09, -844.81], [-2718.52, -857.7], [-2726.7, -857.43], [-2726.57, -853.51], [-2729.65, -853.41], [-2729.39, -845.46], [-2726.3, -845.56], [-2726.27, -844.54]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2884.49, -868.3], [-2892.22, -868.16], [-2892.25, -869.78], [-2894.77, -869.73], [-2894.94, -878.65], [-2892.42, -878.7], [-2892.43, -879.38], [-2884.7, -879.52], [-2884.49, -868.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2683.83, -273.75], [-2683.93, -277.78], [-2685.22, -277.74], [-2685.31, -281.61], [-2684.04, -281.64], [-2684.06, -282.81], [-2667.48, -283.23], [-2667.25, -274.17], [-2683.83, -273.75]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-2834.43, -862.01], [-2834.68, -868.65], [-2834.13, -868.67], [-2834.3, -873.32], [-2830.31, -873.46], [-2830.15, -868.81], [-2827.69, -868.9], [-2827.44, -862.26], [-2834.43, -862.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2712.96, -845.41], [-2713.18, -853.79], [-2710.84, -853.85], [-2710.9, -856.06], [-2706.81, -856.17], [-2706.75, -853.95], [-2705.91, -853.97], [-2705.69, -845.61], [-2712.96, -845.41]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2710.45, -530.12], [-2711.03, -546.62], [-2701.94, -546.94], [-2701.37, -530.44], [-2702.82, -530.39], [-2702.76, -528.85], [-2708.98, -528.64], [-2709.04, -530.17], [-2710.45, -530.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2774.81, -787.82], [-2774.87, -789.34], [-2776.69, -789.28], [-2776.84, -793.08], [-2775.02, -793.15], [-2775.18, -797.08], [-2764.26, -797.51], [-2763.9, -788.25], [-2774.81, -787.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2707.69, -711.42], [-2716.39, -711.22], [-2716.71, -725.21], [-2715.91, -725.22], [-2715.99, -728.6], [-2710.2, -728.73], [-2710.12, -725.35], [-2708.0, -725.4], [-2707.69, -711.42]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1009.18, -222.32], [-1013.06, -225.87], [-1019.63, -218.85], [-1019.08, -218.43], [-1024.33, -212.62], [-1026.67, -214.87], [-1027.84, -213.7], [-1037.04, -221.9], [-1036.14, -222.77], [-1039.16, -225.24], [-1033.34, -232.13], [-1040.6, -238.74], [-1058.8, -218.5], [-1055.16, -215.07], [-1057.06, -212.99], [-1064.74, -204.57], [-1070.87, -197.88], [-1093.1, -218.15], [-1080.16, -232.26], [-1077.25, -235.56], [-1066.32, -247.87], [-1081.46, -262.0], [-1087.47, -267.09], [-1080.17, -267.33], [-1080.29, -268.98], [-1044.11, -270.51], [-1044.05, -269.67], [-1039.11, -268.99], [-1034.39, -267.71], [-1029.5, -265.6], [-1025.7, -263.41], [-1024.66, -264.77], [-994.65, -237.7], [-1009.18, -222.32]], "holes": []}, "height": 42.0}, {"shape": {"outer": [[-802.55, -119.85], [-784.87, -120.72], [-785.32, -129.39], [-786.01, -142.79], [-786.14, -145.42], [-803.8, -144.52], [-802.55, -119.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-784.87, -120.72], [-775.07, -121.14], [-776.0, -137.64], [-784.15, -137.18], [-783.78, -130.82], [-785.32, -129.39], [-784.87, -120.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-775.07, -121.14], [-767.48, -121.51], [-768.54, -141.32], [-773.87, -146.19], [-776.48, -146.04], [-776.18, -140.73], [-776.0, -137.64], [-775.07, -121.14]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-767.48, -121.51], [-761.03, -121.85], [-750.72, -122.4], [-748.74, -122.51], [-749.34, -133.88], [-750.16, -149.31], [-748.16, -151.49], [-759.5, -161.83], [-773.87, -146.19], [-768.54, -141.32], [-767.48, -121.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-748.74, -122.51], [-736.86, -123.09], [-738.0, -142.38], [-741.92, -145.8], [-743.63, -143.68], [-743.11, -133.97], [-749.34, -133.88], [-748.74, -122.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-749.34, -133.88], [-750.16, -149.31], [-748.16, -151.49], [-741.92, -145.8], [-743.63, -143.68], [-743.11, -133.97], [-749.34, -133.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-736.86, -123.09], [-720.46, -123.8], [-719.6, -126.24], [-738.0, -142.38], [-736.86, -123.09]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1022.69, -89.94], [-1022.4, -83.07], [-1023.33, -83.04], [-1022.34, -59.8], [-1030.67, -59.45], [-1030.82, -63.14], [-1031.33, -63.11], [-1032.45, -89.53], [-1022.69, -89.94]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1021.67, -65.8], [-1006.1, -66.47], [-1007.12, -90.61], [-1022.69, -89.94], [-1022.4, -83.07], [-1021.67, -65.8]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-1007.12, -90.61], [-996.94, -91.04], [-995.78, -63.38], [-1005.95, -62.95], [-1006.1, -66.47], [-1007.12, -90.61]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-996.94, -91.04], [-987.55, -91.41], [-986.24, -59.93], [-986.13, -57.43], [-989.43, -53.58], [-994.31, -53.38], [-995.38, -54.13], [-995.78, -63.38], [-996.94, -91.04]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-746.48, -89.19], [-747.1, -103.2], [-731.77, -103.92], [-731.14, -91.25], [-739.14, -81.97], [-746.48, -89.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-790.44, -79.71], [-809.88, -97.45], [-809.1, -99.03], [-808.48, -100.29], [-785.51, -101.37], [-784.79, -85.94], [-790.44, -79.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-784.79, -85.94], [-780.42, -82.01], [-779.5, -83.02], [-778.63, -82.25], [-785.25, -74.97], [-790.44, -79.71], [-784.79, -85.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-785.51, -101.37], [-778.06, -101.69], [-777.35, -87.35], [-777.27, -85.69], [-779.5, -83.02], [-780.42, -82.01], [-784.79, -85.94], [-785.51, -101.37]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-777.35, -87.35], [-775.37, -87.44], [-775.29, -85.83], [-775.14, -82.58], [-768.41, -82.88], [-768.46, -84.03], [-768.63, -88.24], [-769.29, -102.17], [-778.06, -101.69], [-777.35, -87.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-769.29, -102.17], [-754.53, -102.88], [-753.85, -88.95], [-760.53, -88.62], [-768.63, -88.24], [-769.29, -102.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-785.25, -74.97], [-778.63, -82.25], [-775.29, -85.83], [-775.14, -82.58], [-768.41, -82.88], [-768.46, -84.03], [-760.27, -84.41], [-747.0, -72.51], [-761.83, -56.0], [-763.03, -54.68], [-763.95, -55.53], [-785.25, -74.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-753.85, -88.95], [-760.53, -88.62], [-745.58, -74.95], [-739.14, -81.97], [-746.48, -89.19], [-747.1, -103.2], [-754.53, -102.88], [-753.85, -88.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-692.69, -47.34], [-706.33, -59.94], [-707.52, -61.04], [-719.22, -71.85], [-720.14, -72.7], [-738.63, -53.17], [-734.64, -49.61], [-716.11, -33.61], [-710.1, -28.4], [-692.69, -47.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-716.11, -33.61], [-718.9, -30.58], [-721.35, -32.81], [-725.88, -27.58], [-726.82, -27.49], [-729.57, -29.81], [-729.73, -30.99], [-727.49, -33.42], [-739.54, -44.07], [-734.64, -49.61], [-716.11, -33.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-711.82, -82.62], [-697.45, -69.26], [-678.86, -88.88], [-692.06, -101.54], [-692.89, -101.7], [-693.9, -101.58], [-694.85, -101.3], [-696.69, -99.8], [-711.82, -82.62]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-707.52, -61.04], [-701.97, -66.71], [-707.06, -71.71], [-706.17, -72.69], [-699.92, -66.89], [-697.45, -69.26], [-711.82, -82.62], [-715.69, -78.22], [-714.57, -77.21], [-719.22, -71.85], [-707.52, -61.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-331.93, -264.96], [-374.63, -303.9], [-346.99, -333.99], [-346.08, -333.15], [-337.08, -324.94], [-323.26, -312.34], [-315.52, -305.31], [-317.98, -302.61], [-315.15, -300.0], [-311.14, -296.38], [-317.34, -289.58], [-318.36, -288.53], [-313.96, -284.51], [-331.93, -264.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-320.18, -273.14], [-329.22, -262.95], [-313.88, -249.5], [-304.88, -259.47], [-320.18, -273.14]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-304.88, -259.47], [-295.57, -269.91], [-310.75, -283.63], [-320.18, -273.14], [-304.88, -259.47]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-295.57, -269.91], [-287.09, -279.22], [-308.67, -298.75], [-312.86, -302.52], [-315.15, -300.0], [-311.14, -296.38], [-317.34, -289.58], [-310.75, -283.63], [-295.57, -269.91]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-346.08, -333.15], [-334.36, -346.05], [-296.62, -311.97], [-297.69, -310.79], [-307.03, -300.56], [-321.83, -313.92], [-323.26, -312.34], [-337.08, -324.94], [-346.08, -333.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-290.65, -363.18], [-313.67, -337.59], [-317.19, -333.68], [-295.09, -313.64], [-273.52, -294.1], [-266.72, -301.55], [-246.0, -324.23], [-258.79, -335.38], [-290.65, -363.18]], "holes": []}, "height": 31.5}, {"shape": {"outer": [[-313.67, -337.59], [-330.22, -352.66], [-307.22, -378.16], [-290.65, -363.18], [-313.67, -337.59]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[-1602.95, -1722.0], [-1603.09, -1734.0], [-1580.31, -1734.27], [-1580.17, -1722.27], [-1602.95, -1722.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1595.12, -1814.72], [-1595.3, -1820.86], [-1593.51, -1820.8], [-1586.23, -1840.42], [-1567.92, -1831.24], [-1574.91, -1818.49], [-1578.24, -1818.52], [-1578.5, -1815.2], [-1595.12, -1814.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1611.91, -1920.76], [-1601.74, -1915.22], [-1602.01, -1914.72], [-1605.33, -1908.66], [-1599.1, -1905.26], [-1597.2, -1908.71], [-1592.87, -1906.35], [-1598.8, -1895.56], [-1608.99, -1901.12], [-1613.22, -1893.42], [-1623.78, -1899.17], [-1611.91, -1920.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1602.61, -2013.0], [-1598.91, -2020.15], [-1587.81, -2014.46], [-1591.51, -2007.32], [-1602.61, -2013.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1647.49, -2013.14], [-1638.28, -2029.81], [-1622.42, -2021.11], [-1631.64, -2004.44], [-1647.49, -2013.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1655.08, -2001.61], [-1663.73, -1985.12], [-1645.79, -1975.79], [-1637.14, -1992.28], [-1655.08, -2001.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1640.23, -1971.94], [-1632.54, -1986.35], [-1621.56, -1980.54], [-1629.25, -1966.13], [-1640.23, -1971.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1620.36, -1972.39], [-1625.06, -1963.36], [-1615.74, -1958.56], [-1611.05, -1967.6], [-1620.36, -1972.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1581.93, -2054.27], [-1572.77, -2049.24], [-1590.37, -2017.41], [-1599.53, -2022.44], [-1581.93, -2054.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1539.45, -1858.22], [-1534.21, -1855.19], [-1535.87, -1852.34], [-1541.12, -1855.38], [-1539.45, -1858.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1543.83, -1841.99], [-1540.88, -1847.32], [-1547.18, -1850.79], [-1550.14, -1845.46], [-1543.83, -1841.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1535.38, -1840.35], [-1531.27, -1847.71], [-1521.13, -1842.09], [-1524.27, -1836.47], [-1526.96, -1837.96], [-1527.93, -1836.23], [-1535.38, -1840.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1826.9, -1897.89], [-1812.28, -1883.57], [-1823.06, -1872.07], [-1827.98, -1872.0], [-1836.64, -1863.7], [-1833.16, -1859.48], [-1833.79, -1854.81], [-1838.97, -1854.74], [-1839.39, -1856.71], [-1842.17, -1860.57], [-1842.12, -1870.25], [-1839.06, -1870.18], [-1838.89, -1886.19], [-1833.03, -1886.26], [-1826.9, -1897.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1055.18, -87.23], [-1054.66, -76.31], [-1053.58, -53.78], [-1043.03, -54.29], [-1043.66, -67.62], [-1044.62, -87.74], [-1055.18, -87.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1043.66, -67.62], [-1034.81, -68.05], [-1035.78, -88.17], [-1044.62, -87.74], [-1043.66, -67.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1053.58, -53.78], [-1053.53, -52.94], [-1061.52, -52.56], [-1061.93, -61.18], [-1062.37, -61.16], [-1062.4, -61.66], [-1063.28, -80.15], [-1064.01, -80.12], [-1064.32, -86.79], [-1056.48, -87.17], [-1055.18, -87.23], [-1054.66, -76.31], [-1053.58, -53.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1062.4, -61.66], [-1070.17, -61.28], [-1070.26, -63.12], [-1071.56, -63.06], [-1071.94, -70.97], [-1072.42, -70.95], [-1072.71, -76.93], [-1072.37, -76.96], [-1072.81, -86.39], [-1064.32, -86.79], [-1064.01, -80.12], [-1063.28, -80.15], [-1062.4, -61.66]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-3266.66, -1267.12], [-3260.27, -1274.87], [-3259.74, -1274.43], [-3257.89, -1276.67], [-3248.97, -1269.38], [-3250.81, -1267.14], [-3250.0, -1266.48], [-3255.39, -1259.93], [-3258.73, -1262.66], [-3259.72, -1261.45], [-3266.66, -1267.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3257.4, -1162.0], [-3253.04, -1158.35], [-3254.45, -1156.68], [-3252.37, -1154.94], [-3259.57, -1146.41], [-3261.0, -1147.61], [-3263.37, -1144.8], [-3266.43, -1147.37], [-3267.66, -1145.91], [-3271.43, -1149.07], [-3267.28, -1153.97], [-3265.46, -1152.46], [-3257.4, -1162.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3250.5, -1193.07], [-3242.8, -1201.68], [-3238.27, -1197.67], [-3240.29, -1195.42], [-3238.34, -1193.69], [-3240.28, -1191.51], [-3238.16, -1189.62], [-3241.26, -1186.16], [-3243.38, -1188.04], [-3244.03, -1187.32], [-3246.2, -1189.25], [-3246.77, -1188.61], [-3248.13, -1189.81], [-3247.55, -1190.45], [-3250.5, -1193.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3238.32, -1129.67], [-3232.19, -1124.43], [-3224.37, -1133.53], [-3230.49, -1138.76], [-3238.32, -1129.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3234.13, -1189.57], [-3230.84, -1186.78], [-3225.47, -1193.04], [-3228.75, -1195.84], [-3234.13, -1189.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3240.37, -1206.32], [-3243.57, -1209.1], [-3239.92, -1213.28], [-3236.72, -1210.52], [-3240.37, -1206.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3235.68, -1196.89], [-3232.1, -1200.84], [-3228.33, -1197.45], [-3231.92, -1193.49], [-3235.68, -1196.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3251.64, -1129.06], [-3254.61, -1131.55], [-3250.92, -1135.95], [-3247.94, -1133.46], [-3251.64, -1129.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3255.73, -1144.79], [-3249.76, -1151.87], [-3243.58, -1146.7], [-3249.55, -1139.62], [-3255.73, -1144.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3264.98, -1224.02], [-3260.24, -1220.3], [-3256.76, -1224.7], [-3261.5, -1228.42], [-3264.98, -1224.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3265.99, -1137.68], [-3261.16, -1133.81], [-3256.47, -1139.6], [-3261.29, -1143.49], [-3265.99, -1137.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3271.74, -1239.15], [-3266.74, -1245.08], [-3261.35, -1240.58], [-3266.35, -1234.65], [-3271.74, -1239.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3269.83, -1155.49], [-3276.37, -1161.07], [-3269.13, -1169.49], [-3262.59, -1163.92], [-3269.83, -1155.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3266.45, -1245.55], [-3261.12, -1241.26], [-3256.93, -1246.44], [-3262.25, -1250.73], [-3266.45, -1245.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3243.46, -1121.97], [-3239.89, -1126.19], [-3235.57, -1122.55], [-3239.15, -1118.34], [-3243.46, -1121.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3270.17, -1286.54], [-3264.56, -1281.9], [-3271.67, -1273.35], [-3268.49, -1270.72], [-3273.67, -1264.5], [-3282.47, -1271.76], [-3270.17, -1286.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3245.74, -1138.6], [-3240.51, -1144.93], [-3238.61, -1143.37], [-3237.62, -1144.56], [-3235.05, -1142.45], [-3236.03, -1141.26], [-3234.08, -1139.66], [-3239.31, -1133.33], [-3245.74, -1138.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3272.59, -1210.47], [-3267.55, -1216.53], [-3264.79, -1214.25], [-3264.04, -1215.15], [-3262.55, -1213.92], [-3261.45, -1215.24], [-3257.84, -1212.25], [-3264.73, -1203.97], [-3272.59, -1210.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3261.15, -1203.0], [-3253.25, -1212.32], [-3245.24, -1205.58], [-3253.14, -1196.26], [-3253.95, -1196.95], [-3255.15, -1195.54], [-3261.47, -1200.84], [-3260.27, -1202.26], [-3261.15, -1203.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1531.35, 775.32], [1543.54, 761.92], [1538.67, 757.5], [1538.15, 757.03], [1537.67, 756.62], [1532.81, 761.97], [1532.26, 761.46], [1524.93, 769.53], [1526.19, 770.66], [1524.66, 772.33], [1528.0, 775.34], [1529.52, 773.66], [1531.35, 775.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1524.9, 765.31], [1533.6, 755.84], [1527.05, 749.87], [1518.36, 759.34], [1524.9, 765.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1517.52, 759.34], [1526.64, 749.41], [1526.07, 748.89], [1525.41, 748.28], [1520.79, 744.08], [1511.67, 754.02], [1512.14, 754.44], [1511.14, 755.54], [1515.78, 759.77], [1516.78, 758.67], [1517.52, 759.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1506.69, 756.1], [1519.53, 742.16], [1513.21, 736.38], [1509.73, 740.17], [1509.45, 739.91], [1500.09, 750.08], [1506.69, 756.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1501.57, 747.73], [1511.81, 736.62], [1505.64, 730.97], [1502.46, 734.42], [1502.29, 734.26], [1498.86, 737.98], [1499.03, 738.14], [1495.4, 742.08], [1501.57, 747.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1492.06, 741.11], [1503.1, 728.98], [1497.21, 723.67], [1486.17, 735.8], [1492.06, 741.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1490.04, 730.64], [1499.62, 720.05], [1493.31, 714.38], [1483.73, 724.98], [1490.04, 730.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1481.36, 724.18], [1492.17, 712.62], [1491.27, 711.79], [1489.77, 710.4], [1485.65, 706.58], [1474.85, 718.13], [1481.36, 724.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1479.88, 738.37], [1486.23, 731.34], [1474.42, 720.73], [1469.76, 725.9], [1473.38, 729.16], [1471.69, 731.03], [1479.88, 738.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[444.2, 817.98], [437.23, 811.71], [447.35, 800.53], [447.89, 801.03], [449.06, 799.74], [454.85, 804.95], [453.52, 806.42], [454.16, 806.98], [444.2, 817.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[430.88, 805.33], [433.53, 802.28], [432.56, 801.44], [436.35, 797.07], [437.37, 797.95], [440.22, 794.65], [441.53, 795.77], [442.81, 794.29], [447.73, 798.53], [439.89, 807.55], [438.92, 806.72], [436.16, 809.89], [430.88, 805.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1618.89, 1878.14], [1627.64, 1886.5], [1614.88, 1899.74], [1624.01, 1908.49], [1620.93, 1911.69], [1625.6, 1916.16], [1628.68, 1912.95], [1635.2, 1919.19], [1647.96, 1905.95], [1654.8, 1912.49], [1671.96, 1894.69], [1670.33, 1893.14], [1680.45, 1882.64], [1686.23, 1888.17], [1699.83, 1874.07], [1659.76, 1835.74], [1618.89, 1878.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1713.02, 1832.07], [1719.99, 1824.75], [1730.84, 1834.98], [1723.87, 1842.31], [1713.02, 1832.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1820.56, 1804.62], [1829.78, 1813.66], [1848.48, 1794.7], [1839.25, 1785.67], [1820.56, 1804.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1695.61, 1843.17], [1687.98, 1835.71], [1699.38, 1824.13], [1691.0, 1815.93], [1699.77, 1807.02], [1715.79, 1822.69], [1695.61, 1843.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-807.84, -2628.63], [-803.05, -2617.5], [-763.9, -2634.25], [-768.69, -2645.37], [-772.05, -2643.94], [-774.93, -2650.63], [-768.07, -2653.56], [-768.75, -2655.15], [-773.97, -2655.94], [-778.53, -2666.35], [-781.21, -2665.2], [-779.21, -2660.52], [-804.07, -2649.88], [-796.93, -2633.29], [-807.84, -2628.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-720.43, -2697.24], [-728.22, -2696.35], [-730.55, -2716.64], [-722.75, -2717.53], [-720.43, -2697.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-801.75, -2819.85], [-782.89, -2826.82], [-764.66, -2777.78], [-783.52, -2770.81], [-801.75, -2819.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-930.27, -2912.14], [-911.92, -2919.82], [-889.82, -2891.08], [-896.62, -2888.1], [-903.27, -2884.93], [-915.78, -2879.7], [-916.82, -2882.16], [-917.51, -2881.87], [-930.27, -2912.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-837.71, -2677.53], [-845.47, -2694.59], [-824.06, -2704.25], [-816.3, -2687.19], [-837.71, -2677.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-764.91, -2762.22], [-767.56, -2769.62], [-759.08, -2772.65], [-756.43, -2765.26], [-764.91, -2762.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-986.56, -2898.61], [-961.14, -2896.47], [-960.41, -2905.22], [-957.98, -2905.01], [-956.8, -2919.05], [-949.48, -2918.44], [-947.56, -2941.2], [-982.72, -2944.13], [-986.56, -2898.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1399.22, -2857.76], [-1399.38, -2861.29], [-1403.11, -2861.13], [-1403.67, -2873.73], [-1382.3, -2874.67], [-1382.04, -2868.81], [-1380.05, -2868.9], [-1379.88, -2864.94], [-1381.87, -2864.85], [-1381.59, -2858.53], [-1399.22, -2857.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1083.24, -2873.29], [-1075.2, -2872.94], [-1075.11, -2875.0], [-1065.07, -2874.56], [-1064.42, -2889.02], [-1082.52, -2889.81], [-1082.89, -2881.4], [-1085.9, -2881.53], [-1086.13, -2876.4], [-1083.12, -2876.27], [-1083.24, -2873.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1531.38, -2763.78], [-1536.23, -2771.63], [-1534.71, -2772.56], [-1536.59, -2775.6], [-1535.24, -2776.42], [-1537.67, -2780.38], [-1531.2, -2784.35], [-1529.16, -2781.05], [-1527.76, -2781.91], [-1525.59, -2778.4], [-1522.85, -2780.08], [-1517.9, -2772.07], [-1531.38, -2763.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-963.03, -2829.58], [-963.31, -2843.6], [-946.56, -2844.36], [-949.27, -2850.53], [-957.07, -2869.16], [-949.11, -2873.12], [-937.13, -2845.15], [-940.89, -2845.0], [-940.51, -2835.58], [-953.46, -2834.9], [-953.46, -2829.72], [-963.03, -2829.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1043.33, -2939.95], [-1031.35, -2941.43], [-1031.29, -2940.9], [-1028.98, -2941.19], [-1029.29, -2943.61], [-1022.71, -2944.42], [-1021.4, -2933.89], [-1027.82, -2933.1], [-1028.22, -2936.32], [-1031.05, -2935.97], [-1030.65, -2932.75], [-1032.05, -2932.58], [-1031.7, -2929.82], [-1041.91, -2928.55], [-1043.33, -2939.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1232.91, -2729.92], [-1233.78, -2759.11], [-1226.93, -2759.48], [-1227.14, -2765.4], [-1220.71, -2765.63], [-1220.5, -2759.71], [-1211.29, -2760.03], [-1210.88, -2748.41], [-1199.41, -2748.81], [-1179.65, -2749.33], [-1182.68, -2727.29], [-1190.86, -2727.22], [-1191.22, -2728.01], [-1210.55, -2727.98], [-1211.03, -2730.18], [-1232.91, -2729.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1194.1, -2800.01], [-1190.99, -2799.48], [-1191.88, -2794.24], [-1177.58, -2791.8], [-1177.4, -2792.87], [-1175.26, -2792.51], [-1174.68, -2795.84], [-1176.83, -2796.2], [-1176.69, -2797.03], [-1175.24, -2796.79], [-1168.35, -2836.81], [-1169.79, -2837.06], [-1169.01, -2841.63], [-1167.57, -2841.39], [-1166.29, -2848.82], [-1167.86, -2849.1], [-1167.05, -2853.8], [-1182.94, -2856.51], [-1183.75, -2851.8], [-1185.16, -2852.04], [-1186.34, -2845.16], [-1183.12, -2844.62], [-1184.02, -2839.37], [-1187.24, -2839.92], [-1194.1, -2800.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1542.44, -2822.1], [-1540.02, -2818.87], [-1543.23, -2816.47], [-1532.74, -2802.5], [-1529.53, -2804.88], [-1523.69, -2797.1], [-1505.89, -2810.36], [-1504.0, -2807.85], [-1497.54, -2812.66], [-1495.39, -2809.4], [-1495.3, -2805.59], [-1444.58, -2807.99], [-1448.08, -2821.06], [-1427.54, -2821.71], [-1431.89, -2839.43], [-1429.18, -2840.1], [-1432.39, -2853.19], [-1429.59, -2853.87], [-1432.36, -2865.18], [-1448.58, -2861.52], [-1449.02, -2863.57], [-1496.09, -2852.32], [-1495.61, -2850.91], [-1500.88, -2849.62], [-1501.75, -2852.03], [-1511.31, -2849.54], [-1518.74, -2843.88], [-1517.04, -2841.7], [-1542.44, -2822.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1106.2, -2798.43], [-1102.59, -2809.94], [-1078.05, -2802.3], [-1081.65, -2790.79], [-1106.2, -2798.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1060.13, -3101.55], [-1061.04, -3113.86], [-1027.06, -3116.37], [-1026.15, -3104.04], [-1060.13, -3101.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1029.05, -2903.0], [-1029.77, -2912.52], [-1009.92, -2914.01], [-1009.2, -2904.49], [-1029.05, -2903.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1499.82, -3004.05], [-1492.23, -3005.17], [-1493.59, -3014.39], [-1501.18, -3013.27], [-1499.82, -3004.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1126.3, -2713.63], [-1107.85, -2708.91], [-1103.92, -2724.16], [-1122.37, -2728.88], [-1126.3, -2713.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1106.04, -2741.3], [-1085.1, -2735.77], [-1079.52, -2756.73], [-1100.46, -2762.26], [-1106.04, -2741.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1064.59, -2905.35], [-1046.69, -2904.85], [-1045.79, -2936.52], [-1063.69, -2937.02], [-1064.59, -2905.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1073.29, -2790.71], [-1070.78, -2800.07], [-1056.69, -2796.34], [-1059.19, -2786.97], [-1073.29, -2790.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-982.78, -2856.85], [-972.98, -2857.19], [-973.47, -2871.26], [-983.26, -2870.91], [-982.78, -2856.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1050.52, -2883.48], [-1049.8, -2901.97], [-1013.91, -2900.61], [-1014.62, -2882.11], [-1050.52, -2883.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-996.24, -3078.92], [-996.7, -3089.9], [-979.55, -3090.61], [-979.09, -3079.63], [-996.24, -3078.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1107.38, -2788.1], [-1104.57, -2797.1], [-1075.61, -2788.12], [-1077.64, -2781.65], [-1075.44, -2780.98], [-1076.23, -2778.44], [-1107.38, -2788.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1520.93, -2765.28], [-1527.04, -2761.05], [-1525.52, -2758.86], [-1527.61, -2757.41], [-1519.56, -2745.87], [-1511.35, -2751.56], [-1520.93, -2765.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1113.22, -2766.81], [-1109.77, -2784.32], [-1094.63, -2780.56], [-1075.24, -2775.48], [-1079.85, -2758.06], [-1113.22, -2766.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1392.17, -2714.5], [-1374.96, -2715.26], [-1377.77, -2779.11], [-1394.98, -2778.35], [-1393.96, -2755.08], [-1396.24, -2754.98], [-1395.48, -2737.79], [-1393.21, -2737.89], [-1392.17, -2714.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1390.11, -2642.34], [-1373.31, -2643.03], [-1375.89, -2706.57], [-1392.69, -2705.89], [-1391.75, -2682.49], [-1394.27, -2682.39], [-1393.59, -2665.86], [-1391.07, -2665.96], [-1390.11, -2642.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1376.95, -2787.86], [-1393.84, -2787.18], [-1394.78, -2810.34], [-1397.66, -2810.22], [-1398.34, -2827.2], [-1395.47, -2827.31], [-1396.41, -2850.49], [-1379.52, -2851.19], [-1376.95, -2787.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1086.37, -2836.48], [-1086.26, -2839.4], [-1089.21, -2839.5], [-1088.89, -2848.51], [-1085.94, -2848.4], [-1085.83, -2851.68], [-1050.09, -2850.44], [-1050.63, -2835.25], [-1086.37, -2836.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-853.58, -2992.6], [-854.48, -3001.09], [-845.39, -3002.06], [-844.35, -2992.4], [-847.34, -2992.08], [-847.2, -2990.86], [-849.93, -2990.57], [-850.06, -2991.79], [-850.71, -2991.72], [-850.83, -2992.89], [-853.58, -2992.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-995.19, -3061.78], [-994.36, -3054.67], [-988.43, -3055.36], [-988.26, -3054.0], [-979.3, -3055.04], [-979.53, -3057.0], [-977.7, -3057.21], [-978.34, -3062.65], [-980.16, -3062.43], [-980.29, -3063.5], [-995.19, -3061.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-886.29, -3079.9], [-879.48, -3080.92], [-879.72, -3082.5], [-869.28, -3084.04], [-870.34, -3091.09], [-880.92, -3089.52], [-881.45, -3093.14], [-888.12, -3092.16], [-887.59, -3088.64], [-888.4, -3088.52], [-888.09, -3086.46], [-887.29, -3086.57], [-886.29, -3079.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-825.55, -3088.2], [-825.59, -3089.04], [-827.77, -3088.93], [-827.91, -3091.71], [-825.73, -3091.82], [-825.97, -3096.46], [-821.18, -3096.7], [-821.23, -3097.69], [-811.2, -3098.2], [-810.75, -3089.52], [-820.26, -3089.03], [-820.22, -3088.47], [-825.55, -3088.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-958.83, -3024.98], [-951.91, -3025.93], [-952.86, -3032.92], [-954.62, -3032.68], [-954.84, -3034.32], [-952.97, -3034.57], [-953.98, -3041.86], [-956.51, -3041.51], [-956.8, -3043.57], [-960.63, -3043.05], [-960.34, -3040.99], [-961.02, -3040.89], [-960.59, -3037.78], [-962.14, -3037.57], [-961.68, -3034.36], [-960.15, -3034.57], [-958.83, -3024.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-863.3, -3067.27], [-863.55, -3072.23], [-856.34, -3072.58], [-856.1, -3067.63], [-863.3, -3067.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-881.16, -3047.54], [-880.89, -3040.49], [-870.3, -3040.9], [-870.57, -3047.95], [-881.16, -3047.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-928.47, -3031.37], [-929.53, -3038.03], [-921.53, -3039.29], [-920.48, -3032.63], [-928.47, -3031.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-909.78, -2996.62], [-902.05, -2997.45], [-903.09, -3007.0], [-910.81, -3006.17], [-909.78, -2996.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-821.55, -3086.59], [-820.93, -3077.44], [-809.64, -3078.21], [-810.26, -3087.36], [-821.55, -3086.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-781.43, -3090.46], [-781.86, -3099.4], [-768.43, -3100.05], [-768.0, -3091.12], [-781.43, -3090.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-876.26, -3024.91], [-876.62, -3033.82], [-863.9, -3034.33], [-863.53, -3025.43], [-876.26, -3024.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-922.55, -3059.54], [-923.02, -3068.17], [-914.23, -3068.63], [-913.77, -3060.0], [-922.55, -3059.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-928.46, -3071.18], [-928.97, -3077.44], [-912.17, -3078.78], [-911.66, -3072.54], [-928.46, -3071.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-884.33, -3070.43], [-883.7, -3061.45], [-870.18, -3062.38], [-870.8, -3071.36], [-884.33, -3070.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-788.5, -3128.56], [-779.32, -3128.76], [-779.08, -3118.2], [-788.26, -3117.99], [-788.5, -3128.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-763.25, -3022.14], [-773.42, -3021.46], [-774.37, -3035.71], [-764.2, -3036.38], [-763.25, -3022.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-821.01, -3036.99], [-821.47, -3043.82], [-814.55, -3044.3], [-814.08, -3037.47], [-821.01, -3036.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-821.27, -3065.2], [-822.48, -3074.23], [-811.71, -3075.68], [-810.48, -3066.66], [-821.27, -3065.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-780.5, -3067.45], [-771.92, -3068.07], [-772.56, -3076.97], [-781.13, -3076.36], [-780.5, -3067.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-929.3, -3039.41], [-929.89, -3044.56], [-922.81, -3045.36], [-922.22, -3040.21], [-929.3, -3039.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-835.38, -3088.43], [-835.67, -3093.35], [-828.85, -3093.76], [-828.55, -3088.85], [-835.38, -3088.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-769.35, -2994.46], [-769.63, -2999.39], [-758.39, -3000.03], [-758.11, -2995.1], [-769.35, -2994.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-850.01, -3118.85], [-850.41, -3125.51], [-839.61, -3126.16], [-839.21, -3119.48], [-850.01, -3118.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-888.72, -3113.27], [-889.25, -3121.87], [-874.47, -3122.78], [-873.93, -3114.18], [-888.72, -3113.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-826.13, -3021.16], [-826.45, -3026.07], [-818.87, -3026.56], [-818.55, -3021.66], [-826.13, -3021.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-885.07, -3049.18], [-885.78, -3056.63], [-872.68, -3057.89], [-871.96, -3050.44], [-885.07, -3049.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-914.85, -3020.66], [-914.47, -3012.61], [-905.29, -3013.04], [-905.66, -3021.07], [-914.85, -3020.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-866.9, -3055.34], [-867.26, -3060.78], [-859.95, -3061.27], [-859.59, -3055.83], [-866.9, -3055.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-813.27, -3016.79], [-813.62, -3025.12], [-800.67, -3025.64], [-800.33, -3017.32], [-813.27, -3016.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-914.62, -3022.56], [-905.45, -3023.91], [-906.73, -3032.55], [-915.9, -3031.19], [-914.62, -3022.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-777.51, -3055.65], [-778.09, -3064.6], [-763.76, -3065.52], [-763.19, -3056.57], [-777.51, -3055.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-803.92, -2987.86], [-805.27, -2997.27], [-794.71, -2998.77], [-793.36, -2989.36], [-803.92, -2987.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-777.63, -3052.0], [-776.99, -3043.42], [-768.56, -3044.04], [-768.69, -3045.88], [-766.28, -3046.06], [-766.77, -3052.8], [-777.63, -3052.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-770.38, -3007.21], [-761.36, -3007.6], [-761.71, -3015.6], [-763.2, -3015.53], [-763.36, -3019.14], [-770.88, -3018.8], [-770.38, -3007.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-924.42, -3052.68], [-923.89, -3048.37], [-919.59, -3048.91], [-918.98, -3043.98], [-909.13, -3045.19], [-910.28, -3054.43], [-924.42, -3052.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-934.95, -3110.7], [-935.18, -3114.95], [-938.24, -3114.79], [-938.42, -3117.99], [-935.36, -3118.16], [-935.43, -3119.68], [-922.88, -3120.36], [-922.39, -3111.39], [-934.95, -3110.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-876.15, -3001.01], [-877.17, -3009.89], [-863.87, -3011.42], [-862.85, -3002.53], [-864.47, -3002.35], [-863.66, -2995.24], [-871.5, -2994.34], [-872.32, -3001.45], [-876.15, -3001.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-816.55, -3123.82], [-819.16, -3123.54], [-818.89, -3121.01], [-821.3, -3120.75], [-821.58, -3123.28], [-824.3, -3122.98], [-825.75, -3136.34], [-818.02, -3137.19], [-816.55, -3123.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-877.32, -3012.57], [-877.43, -3014.21], [-878.35, -3014.15], [-878.54, -3017.08], [-877.61, -3017.14], [-877.9, -3021.7], [-863.6, -3022.59], [-863.03, -3013.46], [-877.32, -3012.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-823.79, -3052.12], [-825.01, -3061.11], [-817.22, -3062.15], [-817.02, -3060.7], [-811.39, -3061.46], [-810.51, -3054.93], [-816.13, -3054.17], [-816.0, -3053.16], [-823.79, -3052.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-831.8, -2988.0], [-825.57, -2988.59], [-826.07, -2993.73], [-815.36, -2994.75], [-816.21, -3003.65], [-827.41, -3002.59], [-827.32, -3001.58], [-833.05, -3001.04], [-831.8, -2988.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-815.4, -3028.17], [-815.53, -3030.51], [-818.74, -3030.33], [-819.03, -3035.4], [-812.87, -3035.76], [-812.95, -3037.1], [-802.75, -3037.69], [-802.25, -3028.92], [-815.4, -3028.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1235.11, -2453.01], [-1227.21, -2453.29], [-1227.49, -2461.39], [-1235.39, -2461.11], [-1235.11, -2453.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1567.51, -2521.65], [-1574.99, -2521.28], [-1575.16, -2524.81], [-1578.89, -2524.63], [-1579.24, -2531.75], [-1574.75, -2531.98], [-1575.04, -2537.96], [-1570.02, -2538.21], [-1569.72, -2532.22], [-1568.04, -2532.31], [-1567.51, -2521.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1584.57, -2748.41], [-1578.77, -2738.33], [-1578.15, -2738.68], [-1576.7, -2736.16], [-1572.06, -2738.81], [-1573.51, -2741.34], [-1570.13, -2743.26], [-1571.9, -2746.33], [-1570.57, -2747.09], [-1574.6, -2754.1], [-1584.57, -2748.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1631.84, -2530.66], [-1631.52, -2534.67], [-1632.22, -2534.73], [-1631.81, -2539.92], [-1623.21, -2539.23], [-1622.95, -2542.48], [-1616.33, -2541.96], [-1616.63, -2538.15], [-1618.37, -2538.29], [-1619.06, -2529.65], [-1631.84, -2530.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1608.03, -2653.91], [-1615.27, -2654.48], [-1615.02, -2657.69], [-1620.14, -2658.09], [-1619.49, -2666.38], [-1612.75, -2665.85], [-1612.5, -2669.09], [-1604.24, -2668.45], [-1604.68, -2662.94], [-1607.3, -2663.15], [-1608.03, -2653.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1616.22, -2672.74], [-1608.7, -2672.24], [-1608.33, -2677.77], [-1604.82, -2677.53], [-1604.46, -2682.84], [-1607.97, -2683.07], [-1607.74, -2686.54], [-1617.42, -2687.19], [-1618.04, -2677.9], [-1615.88, -2677.75], [-1616.22, -2672.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1615.97, -2598.9], [-1624.53, -2599.58], [-1624.12, -2604.67], [-1625.89, -2604.81], [-1625.2, -2613.52], [-1614.87, -2612.7], [-1615.23, -2608.18], [-1610.76, -2607.83], [-1611.41, -2599.63], [-1615.88, -2599.98], [-1615.97, -2598.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1602.87, -2748.72], [-1602.4, -2753.26], [-1593.69, -2752.37], [-1594.15, -2747.83], [-1602.87, -2748.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1554.43, -2683.57], [-1545.37, -2686.03], [-1542.56, -2675.79], [-1551.62, -2673.33], [-1554.43, -2683.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1601.2, -2699.21], [-1600.53, -2705.79], [-1593.23, -2705.04], [-1593.9, -2698.48], [-1601.2, -2699.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1531.82, -2630.44], [-1540.39, -2628.98], [-1542.03, -2638.52], [-1533.45, -2639.99], [-1531.82, -2630.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1538.87, -2529.44], [-1539.08, -2534.27], [-1547.16, -2533.94], [-1546.96, -2529.1], [-1538.87, -2529.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1601.98, -2740.52], [-1601.3, -2747.37], [-1594.4, -2746.69], [-1595.07, -2739.84], [-1601.98, -2740.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1602.94, -2718.77], [-1602.43, -2724.21], [-1595.25, -2723.55], [-1595.76, -2718.1], [-1602.94, -2718.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1554.37, -2664.27], [-1552.48, -2656.52], [-1541.3, -2659.23], [-1543.19, -2666.99], [-1554.37, -2664.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1530.23, -2611.27], [-1538.71, -2610.35], [-1539.97, -2621.85], [-1531.49, -2622.78], [-1530.23, -2611.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1598.73, -2535.07], [-1591.0, -2535.42], [-1591.31, -2542.64], [-1599.04, -2542.31], [-1598.73, -2535.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1539.73, -2559.47], [-1539.39, -2550.46], [-1528.25, -2550.89], [-1528.6, -2559.9], [-1539.73, -2559.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1536.27, -2562.68], [-1527.72, -2563.11], [-1528.21, -2572.79], [-1536.77, -2572.36], [-1536.27, -2562.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1580.71, -2717.38], [-1584.49, -2724.88], [-1577.91, -2728.18], [-1574.14, -2720.68], [-1580.71, -2717.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1582.27, -2727.96], [-1585.05, -2733.46], [-1578.97, -2736.53], [-1576.18, -2731.02], [-1582.27, -2727.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1543.47, -2644.27], [-1534.89, -2646.16], [-1536.96, -2655.52], [-1545.54, -2653.63], [-1543.47, -2644.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1610.25, -2517.65], [-1600.85, -2516.67], [-1600.08, -2524.11], [-1609.48, -2525.07], [-1610.25, -2517.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1546.73, -2586.18], [-1546.99, -2591.22], [-1539.67, -2591.59], [-1539.42, -2586.55], [-1546.73, -2586.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1529.65, -2596.9], [-1529.96, -2605.53], [-1538.37, -2605.23], [-1538.07, -2596.61], [-1529.65, -2596.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1574.06, -2691.11], [-1575.57, -2694.92], [-1568.96, -2697.52], [-1567.45, -2693.71], [-1574.06, -2691.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1614.27, -2581.06], [-1613.93, -2585.44], [-1606.62, -2584.89], [-1606.96, -2580.5], [-1614.27, -2581.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1581.0, -2708.55], [-1574.25, -2712.01], [-1571.18, -2706.05], [-1577.93, -2702.6], [-1581.0, -2708.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1540.86, -2593.05], [-1540.94, -2596.81], [-1548.48, -2596.65], [-1548.4, -2592.89], [-1540.86, -2593.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1558.31, -2679.52], [-1559.6, -2683.86], [-1565.72, -2682.05], [-1564.43, -2677.71], [-1558.31, -2679.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1546.3, -2571.3], [-1546.46, -2575.47], [-1539.63, -2575.73], [-1539.48, -2571.55], [-1546.3, -2571.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1535.67, -2531.98], [-1535.97, -2539.57], [-1526.14, -2539.95], [-1525.84, -2532.37], [-1535.67, -2531.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1571.23, -2540.76], [-1563.49, -2541.03], [-1563.85, -2551.52], [-1571.58, -2551.27], [-1571.23, -2540.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1565.2, -2662.55], [-1566.38, -2667.13], [-1560.14, -2668.72], [-1558.97, -2664.14], [-1565.2, -2662.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1634.01, -2517.03], [-1633.07, -2527.4], [-1621.35, -2526.35], [-1619.95, -2524.05], [-1614.47, -2523.56], [-1615.21, -2515.35], [-1634.01, -2517.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1544.46, -2577.75], [-1544.72, -2585.11], [-1536.86, -2585.38], [-1536.97, -2588.23], [-1528.99, -2588.52], [-1528.62, -2578.3], [-1544.46, -2577.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1608.46, -2634.79], [-1622.89, -2636.09], [-1622.35, -2642.05], [-1620.72, -2641.9], [-1619.83, -2651.7], [-1607.03, -2650.54], [-1608.46, -2634.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1604.95, -2708.69], [-1614.88, -2709.73], [-1614.18, -2716.3], [-1614.81, -2716.36], [-1614.21, -2721.92], [-1603.66, -2720.81], [-1604.95, -2708.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1559.11, -2700.03], [-1549.33, -2703.32], [-1545.21, -2691.12], [-1555.91, -2687.54], [-1557.58, -2692.49], [-1556.67, -2692.79], [-1559.11, -2700.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1553.23, -2517.31], [-1553.51, -2524.35], [-1538.26, -2524.94], [-1538.34, -2527.3], [-1526.02, -2527.77], [-1525.66, -2518.38], [-1553.23, -2517.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1595.53, -2519.05], [-1595.95, -2528.22], [-1593.56, -2528.32], [-1593.7, -2531.47], [-1582.94, -2531.96], [-1582.37, -2519.64], [-1595.53, -2519.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1617.15, -2691.72], [-1604.76, -2690.63], [-1604.33, -2695.45], [-1608.13, -2695.79], [-1607.56, -2702.04], [-1616.15, -2702.81], [-1617.15, -2691.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1627.79, -2578.58], [-1628.47, -2571.31], [-1626.8, -2571.16], [-1627.09, -2568.03], [-1609.91, -2566.43], [-1608.94, -2576.83], [-1627.79, -2578.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1624.03, -2619.31], [-1614.38, -2618.45], [-1613.13, -2632.33], [-1618.7, -2632.82], [-1619.03, -2629.1], [-1623.13, -2629.46], [-1624.03, -2619.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1566.03, -2712.52], [-1555.63, -2717.04], [-1552.21, -2709.24], [-1553.4, -2708.73], [-1552.49, -2706.63], [-1561.7, -2702.62], [-1566.03, -2712.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1627.55, -2548.25], [-1613.94, -2547.33], [-1612.96, -2561.74], [-1629.08, -2562.83], [-1629.53, -2556.34], [-1627.01, -2556.17], [-1627.55, -2548.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1589.94, -2781.93], [-1596.89, -2778.2], [-1587.01, -2759.91], [-1580.06, -2763.64], [-1585.61, -2773.92], [-1584.69, -2774.41], [-1587.01, -2778.71], [-1587.93, -2778.22], [-1589.94, -2781.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1626.12, -2585.22], [-1616.25, -2584.5], [-1616.12, -2586.45], [-1612.17, -2586.17], [-1611.81, -2591.2], [-1615.75, -2591.47], [-1615.4, -2596.26], [-1625.27, -2596.97], [-1626.12, -2585.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1542.49, -2478.03], [-1542.9, -2485.0], [-1533.19, -2485.58], [-1533.4, -2489.17], [-1526.33, -2489.6], [-1526.11, -2485.77], [-1525.12, -2485.82], [-1524.72, -2479.08], [-1542.49, -2478.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1613.55, -2728.69], [-1603.34, -2727.95], [-1603.17, -2730.25], [-1599.29, -2729.97], [-1598.83, -2736.29], [-1602.71, -2736.57], [-1602.45, -2740.02], [-1612.67, -2740.76], [-1613.55, -2728.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1611.73, -2754.67], [-1603.16, -2753.96], [-1602.94, -2756.48], [-1597.97, -2756.07], [-1599.66, -2762.06], [-1602.46, -2762.3], [-1601.98, -2768.04], [-1610.55, -2768.76], [-1611.73, -2754.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1567.14, -2718.86], [-1559.09, -2722.89], [-1560.18, -2725.05], [-1559.39, -2725.44], [-1561.13, -2728.88], [-1561.91, -2728.49], [-1563.2, -2731.05], [-1571.25, -2727.02], [-1567.14, -2718.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-929.8, -2785.74], [-919.59, -2786.14], [-919.88, -2793.93], [-918.65, -2793.98], [-918.75, -2796.59], [-919.98, -2796.54], [-920.11, -2799.83], [-922.75, -2799.73], [-922.9, -2803.76], [-930.47, -2803.48], [-929.8, -2785.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-873.52, -2560.41], [-873.75, -2568.57], [-866.55, -2568.78], [-866.84, -2579.06], [-861.93, -2579.2], [-861.45, -2562.33], [-864.23, -2562.25], [-864.16, -2559.53], [-871.31, -2559.33], [-871.34, -2560.47], [-873.52, -2560.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-917.16, -2554.02], [-917.56, -2563.25], [-915.05, -2563.35], [-915.28, -2568.88], [-908.12, -2569.18], [-907.83, -2562.36], [-907.18, -2562.39], [-906.93, -2556.4], [-912.99, -2556.14], [-912.9, -2554.2], [-917.16, -2554.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-974.85, -2669.55], [-975.32, -2678.67], [-970.74, -2678.9], [-970.86, -2681.27], [-965.88, -2681.53], [-965.3, -2670.04], [-968.58, -2669.87], [-968.53, -2668.93], [-971.09, -2668.8], [-971.14, -2669.74], [-974.85, -2669.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-775.02, -2500.48], [-775.35, -2508.55], [-766.62, -2508.9], [-766.67, -2510.17], [-761.63, -2510.38], [-761.6, -2509.89], [-759.89, -2509.97], [-759.73, -2505.95], [-761.44, -2505.88], [-761.25, -2501.04], [-775.02, -2500.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1006.21, -2668.93], [-1006.6, -2679.98], [-1004.24, -2680.07], [-1004.29, -2681.61], [-1001.56, -2681.7], [-1001.5, -2680.16], [-998.35, -2680.27], [-997.87, -2666.73], [-1003.12, -2666.55], [-1003.21, -2669.04], [-1006.21, -2668.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-896.81, -2717.57], [-887.84, -2717.93], [-888.15, -2725.73], [-889.94, -2725.67], [-890.07, -2729.05], [-888.65, -2729.1], [-888.75, -2731.82], [-890.17, -2731.77], [-890.24, -2733.41], [-897.41, -2733.14], [-896.81, -2717.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-912.65, -2739.89], [-907.7, -2740.09], [-907.94, -2745.8], [-903.69, -2745.97], [-904.01, -2753.96], [-906.97, -2753.84], [-907.01, -2754.83], [-909.57, -2754.72], [-909.54, -2753.73], [-913.2, -2753.59], [-912.65, -2739.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-992.86, -2737.98], [-993.09, -2744.52], [-995.1, -2744.44], [-995.41, -2753.32], [-989.61, -2753.52], [-989.54, -2751.35], [-989.08, -2751.38], [-988.92, -2746.82], [-983.71, -2747.01], [-983.42, -2738.3], [-992.86, -2737.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-809.72, -2525.25], [-809.94, -2532.65], [-801.69, -2532.88], [-801.6, -2529.71], [-800.34, -2529.74], [-800.28, -2527.56], [-801.53, -2527.53], [-801.46, -2524.89], [-805.72, -2524.76], [-805.73, -2525.36], [-809.72, -2525.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-929.23, -2745.04], [-929.78, -2755.98], [-924.38, -2756.25], [-924.33, -2755.11], [-921.04, -2755.27], [-920.97, -2753.9], [-919.45, -2753.97], [-919.03, -2745.55], [-922.8, -2745.36], [-922.75, -2744.43], [-925.1, -2744.31], [-925.15, -2745.24], [-929.23, -2745.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1001.91, -2626.93], [-1002.27, -2634.36], [-999.26, -2634.52], [-999.33, -2635.86], [-997.31, -2635.95], [-997.24, -2634.62], [-992.78, -2634.83], [-992.42, -2627.4], [-994.65, -2627.29], [-994.58, -2625.91], [-997.47, -2625.76], [-997.54, -2627.15], [-1001.91, -2626.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-962.03, -2784.2], [-962.53, -2796.41], [-958.66, -2796.57], [-958.76, -2798.88], [-954.18, -2799.06], [-954.08, -2796.76], [-953.41, -2796.79], [-952.92, -2784.57], [-953.95, -2784.53], [-953.86, -2782.36], [-961.13, -2782.06], [-961.21, -2784.24], [-962.03, -2784.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1086.6, -2693.21], [-1080.21, -2693.48], [-1080.36, -2696.92], [-1078.33, -2697.01], [-1078.44, -2699.57], [-1080.47, -2699.49], [-1080.54, -2701.36], [-1086.93, -2701.09], [-1086.82, -2698.33], [-1088.78, -2698.25], [-1088.66, -2695.63], [-1086.7, -2695.71], [-1086.6, -2693.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1016.71, -2622.91], [-1017.24, -2634.03], [-1016.13, -2634.08], [-1016.24, -2636.33], [-1010.68, -2636.6], [-1010.57, -2634.3], [-1009.32, -2634.36], [-1008.79, -2623.29], [-1012.39, -2623.12], [-1012.29, -2620.84], [-1015.5, -2620.69], [-1015.62, -2622.97], [-1016.71, -2622.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-947.02, -2784.01], [-947.4, -2792.99], [-945.74, -2793.06], [-945.83, -2795.23], [-940.48, -2795.45], [-940.39, -2793.28], [-939.49, -2793.33], [-939.11, -2784.33], [-939.65, -2784.32], [-939.58, -2782.54], [-944.0, -2782.35], [-944.07, -2784.13], [-947.02, -2784.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-809.4, -2497.67], [-804.44, -2497.85], [-804.45, -2498.3], [-800.37, -2498.44], [-800.47, -2501.47], [-799.34, -2501.51], [-799.41, -2503.64], [-800.55, -2503.59], [-800.66, -2506.83], [-804.57, -2506.69], [-804.62, -2508.14], [-810.22, -2507.94], [-809.92, -2499.29], [-809.46, -2499.31], [-809.4, -2497.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1120.38, -2494.49], [-1115.28, -2494.7], [-1115.49, -2499.92], [-1120.59, -2499.72], [-1120.38, -2494.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1157.76, -2455.85], [-1150.57, -2456.18], [-1150.88, -2462.97], [-1158.06, -2462.65], [-1157.76, -2455.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-991.47, -2780.66], [-992.16, -2791.68], [-982.45, -2792.28], [-981.76, -2781.27], [-991.47, -2780.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-991.37, -2833.64], [-992.2, -2842.38], [-982.28, -2843.32], [-981.45, -2834.58], [-991.37, -2833.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-776.33, -2439.26], [-768.0, -2439.59], [-768.46, -2451.61], [-776.8, -2451.29], [-776.33, -2439.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1032.44, -2622.49], [-1032.74, -2633.04], [-1026.02, -2633.23], [-1025.72, -2622.68], [-1032.44, -2622.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-886.79, -2673.09], [-887.08, -2680.83], [-879.88, -2681.09], [-879.6, -2673.36], [-886.79, -2673.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-889.16, -2629.45], [-889.45, -2639.74], [-883.83, -2639.9], [-883.53, -2629.61], [-889.16, -2629.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-786.3, -2589.36], [-788.38, -2594.49], [-798.1, -2590.57], [-796.03, -2585.44], [-786.3, -2589.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-942.46, -2731.69], [-942.85, -2739.62], [-934.33, -2740.03], [-933.95, -2732.1], [-942.46, -2731.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1089.66, -2543.63], [-1081.68, -2544.05], [-1082.25, -2554.98], [-1090.23, -2554.56], [-1089.66, -2543.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-848.74, -2557.59], [-849.11, -2565.03], [-840.43, -2565.46], [-840.06, -2558.02], [-848.74, -2557.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1202.83, -2453.26], [-1202.97, -2459.65], [-1210.23, -2459.5], [-1210.1, -2453.11], [-1202.83, -2453.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1071.2, -2575.03], [-1064.77, -2575.26], [-1065.03, -2582.5], [-1071.46, -2582.27], [-1071.2, -2575.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-937.9, -2613.53], [-930.73, -2613.69], [-930.9, -2621.41], [-938.06, -2621.26], [-937.9, -2613.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1030.16, -2544.92], [-1030.7, -2555.42], [-1022.34, -2555.84], [-1021.8, -2545.36], [-1030.16, -2544.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1102.15, -2497.8], [-1102.86, -2511.73], [-1093.58, -2512.21], [-1092.88, -2498.28], [-1102.15, -2497.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-900.86, -2671.82], [-901.23, -2679.85], [-892.01, -2680.27], [-891.64, -2672.25], [-900.86, -2671.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1160.75, -2549.23], [-1154.09, -2549.48], [-1153.7, -2539.48], [-1160.36, -2539.21], [-1160.75, -2549.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-921.77, -2722.91], [-916.67, -2723.07], [-916.88, -2730.25], [-921.98, -2730.11], [-921.77, -2722.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-754.17, -2576.23], [-748.84, -2577.86], [-751.0, -2584.93], [-756.34, -2583.3], [-754.17, -2576.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1113.07, -2558.5], [-1108.68, -2558.7], [-1109.15, -2569.04], [-1113.56, -2568.83], [-1113.07, -2558.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-737.15, -2446.99], [-737.47, -2457.99], [-729.33, -2458.22], [-729.02, -2447.23], [-737.15, -2446.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1125.79, -2446.15], [-1126.02, -2452.58], [-1119.14, -2452.83], [-1118.91, -2446.4], [-1125.79, -2446.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1007.73, -2739.21], [-1008.22, -2750.99], [-998.02, -2751.4], [-997.52, -2739.63], [-1007.73, -2739.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1163.18, -2551.82], [-1170.99, -2551.43], [-1170.34, -2538.38], [-1162.53, -2538.77], [-1163.18, -2551.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1072.52, -2607.88], [-1072.72, -2612.17], [-1066.27, -2612.45], [-1066.07, -2608.18], [-1072.52, -2607.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-912.71, -2721.86], [-905.94, -2722.17], [-906.29, -2729.63], [-913.06, -2729.3], [-912.71, -2721.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-901.71, -2697.72], [-896.59, -2697.96], [-896.9, -2704.65], [-902.02, -2704.4], [-901.71, -2697.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1076.78, -2559.95], [-1070.3, -2560.27], [-1070.84, -2571.47], [-1077.32, -2571.16], [-1076.78, -2559.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1025.83, -2739.93], [-1017.21, -2740.33], [-1017.64, -2749.52], [-1026.27, -2749.12], [-1025.83, -2739.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1102.36, -2542.67], [-1092.37, -2543.12], [-1092.96, -2556.12], [-1102.95, -2555.67], [-1102.36, -2542.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1064.55, -2719.27], [-1064.44, -2724.75], [-1056.8, -2724.59], [-1056.91, -2719.12], [-1064.55, -2719.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1215.71, -2452.67], [-1211.01, -2452.77], [-1211.13, -2458.91], [-1215.84, -2458.82], [-1215.71, -2452.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-962.69, -2803.98], [-953.95, -2804.43], [-954.77, -2820.2], [-963.5, -2819.75], [-962.69, -2803.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-978.79, -2602.35], [-978.98, -2608.19], [-965.49, -2608.63], [-965.3, -2602.77], [-978.79, -2602.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-790.93, -2611.89], [-786.63, -2613.68], [-788.98, -2619.27], [-793.28, -2617.48], [-790.93, -2611.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1104.65, -2456.33], [-1112.27, -2455.97], [-1112.68, -2464.29], [-1105.05, -2464.66], [-1104.65, -2456.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-757.44, -2491.56], [-750.04, -2492.01], [-750.45, -2498.75], [-757.85, -2498.3], [-757.44, -2491.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-827.12, -2556.34], [-827.5, -2564.79], [-817.78, -2565.22], [-817.4, -2556.79], [-827.12, -2556.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1151.48, -2549.15], [-1143.53, -2549.47], [-1143.22, -2541.97], [-1151.17, -2541.63], [-1151.48, -2549.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1090.0, -2663.5], [-1083.52, -2663.64], [-1083.73, -2673.7], [-1090.22, -2673.56], [-1090.0, -2663.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-876.34, -2626.55], [-867.87, -2626.75], [-868.07, -2635.51], [-876.54, -2635.32], [-876.34, -2626.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1069.02, -2719.94], [-1074.09, -2713.56], [-1066.22, -2707.36], [-1061.15, -2713.73], [-1069.02, -2719.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-935.16, -2718.66], [-929.75, -2718.85], [-930.06, -2727.66], [-935.46, -2727.48], [-935.16, -2718.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-875.21, -2682.73], [-869.89, -2682.93], [-870.14, -2689.63], [-875.46, -2689.43], [-875.21, -2682.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1057.92, -2550.42], [-1058.64, -2563.76], [-1049.8, -2564.23], [-1049.08, -2550.88], [-1057.92, -2550.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-777.93, -2600.66], [-771.93, -2602.92], [-774.06, -2608.53], [-780.06, -2606.27], [-777.93, -2600.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-841.36, -2591.94], [-838.09, -2584.98], [-827.03, -2590.14], [-830.3, -2597.1], [-841.36, -2591.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-800.21, -2484.15], [-808.18, -2483.76], [-808.6, -2492.58], [-800.63, -2492.97], [-800.21, -2484.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-834.88, -2560.05], [-831.34, -2560.23], [-831.68, -2566.65], [-835.22, -2566.46], [-834.88, -2560.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-991.67, -2499.97], [-986.2, -2500.25], [-986.58, -2507.64], [-992.04, -2507.36], [-991.67, -2499.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1085.64, -2482.29], [-1085.9, -2488.45], [-1079.51, -2488.73], [-1079.25, -2482.56], [-1085.64, -2482.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-875.32, -2672.42], [-875.79, -2680.34], [-866.42, -2680.88], [-865.95, -2672.96], [-875.32, -2672.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1009.77, -2811.32], [-1010.17, -2819.05], [-1002.07, -2819.46], [-1001.68, -2811.71], [-1009.77, -2811.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1234.82, -2331.23], [-1229.46, -2331.38], [-1229.64, -2337.69], [-1235.0, -2337.54], [-1234.82, -2331.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-913.81, -2627.96], [-914.36, -2640.38], [-921.19, -2640.08], [-920.64, -2627.66], [-913.81, -2627.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1053.49, -2714.15], [-1053.63, -2720.39], [-1047.74, -2720.53], [-1047.59, -2714.3], [-1053.49, -2714.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-891.19, -2706.52], [-884.61, -2706.76], [-884.4, -2700.83], [-890.97, -2700.59], [-891.19, -2706.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-995.26, -2816.02], [-1000.47, -2815.77], [-1000.17, -2809.48], [-994.95, -2809.73], [-995.26, -2816.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1087.25, -2570.93], [-1082.23, -2571.17], [-1082.55, -2577.64], [-1087.57, -2577.4], [-1087.25, -2570.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-803.9, -2598.77], [-807.03, -2606.18], [-793.95, -2611.67], [-790.83, -2604.27], [-803.9, -2598.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-979.44, -2740.27], [-970.5, -2740.7], [-971.17, -2754.57], [-980.11, -2754.14], [-979.44, -2740.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1113.5, -2615.27], [-1120.53, -2615.09], [-1120.88, -2628.87], [-1113.84, -2629.03], [-1113.5, -2615.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1265.78, -2306.01], [-1259.61, -2306.24], [-1259.91, -2314.24], [-1266.09, -2314.0], [-1265.78, -2306.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-942.73, -2744.7], [-943.17, -2753.2], [-933.84, -2753.67], [-933.39, -2745.18], [-942.73, -2744.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1244.74, -2375.53], [-1232.95, -2376.12], [-1233.64, -2389.93], [-1245.42, -2389.35], [-1244.74, -2375.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-996.41, -2681.27], [-992.96, -2681.39], [-993.13, -2686.44], [-996.58, -2686.33], [-996.41, -2681.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1073.18, -2657.82], [-1080.49, -2657.66], [-1080.76, -2670.78], [-1073.44, -2670.93], [-1073.18, -2657.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1027.33, -2502.98], [-1034.19, -2502.64], [-1033.81, -2494.98], [-1026.95, -2495.32], [-1027.33, -2502.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1049.2, -2443.35], [-1053.92, -2443.14], [-1054.16, -2448.52], [-1049.44, -2448.74], [-1049.2, -2443.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1229.15, -2372.18], [-1217.08, -2372.74], [-1217.92, -2390.59], [-1230.0, -2390.02], [-1229.15, -2372.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1126.42, -2476.08], [-1126.72, -2482.14], [-1134.58, -2481.76], [-1134.28, -2475.69], [-1126.42, -2476.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-912.15, -2699.5], [-916.81, -2699.28], [-917.08, -2704.93], [-912.41, -2705.15], [-912.15, -2699.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1113.71, -2655.12], [-1114.09, -2662.63], [-1101.48, -2663.25], [-1101.1, -2655.76], [-1113.71, -2655.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1162.34, -2498.42], [-1170.97, -2498.04], [-1171.4, -2507.73], [-1162.77, -2508.12], [-1162.34, -2498.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-849.06, -2593.9], [-847.34, -2590.23], [-841.51, -2592.96], [-843.24, -2596.62], [-849.06, -2593.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1174.93, -2456.07], [-1169.06, -2456.37], [-1169.43, -2463.38], [-1175.3, -2463.08], [-1174.93, -2456.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-976.89, -2614.43], [-968.11, -2614.74], [-968.39, -2622.63], [-977.18, -2622.32], [-976.89, -2614.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-976.34, -2681.54], [-969.39, -2681.86], [-969.72, -2689.1], [-976.67, -2688.78], [-976.34, -2681.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-979.09, -2834.42], [-974.55, -2834.82], [-975.04, -2840.36], [-979.58, -2839.96], [-979.09, -2834.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1041.65, -2664.21], [-1048.75, -2663.93], [-1049.2, -2675.4], [-1042.1, -2675.69], [-1041.65, -2664.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1011.65, -2665.83], [-1018.43, -2665.51], [-1018.99, -2677.59], [-1012.2, -2677.91], [-1011.65, -2665.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1070.03, -2497.79], [-1066.45, -2497.92], [-1066.65, -2503.25], [-1070.24, -2503.12], [-1070.03, -2497.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1269.6, -2305.07], [-1275.14, -2304.85], [-1275.5, -2313.87], [-1269.97, -2314.1], [-1269.6, -2305.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-769.52, -2528.65], [-777.99, -2528.16], [-778.5, -2536.74], [-770.02, -2537.24], [-769.52, -2528.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1066.72, -2663.5], [-1067.01, -2673.62], [-1057.24, -2673.9], [-1056.95, -2663.78], [-1066.72, -2663.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-753.64, -2444.07], [-759.31, -2443.81], [-759.84, -2455.23], [-754.19, -2455.49], [-753.64, -2444.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-774.53, -2512.2], [-775.15, -2523.8], [-759.21, -2524.63], [-758.6, -2513.04], [-774.53, -2512.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-750.56, -2470.84], [-757.02, -2470.49], [-757.39, -2477.13], [-750.93, -2477.48], [-750.56, -2470.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1001.06, -2693.73], [-994.23, -2694.0], [-994.52, -2701.13], [-1001.35, -2700.86], [-1001.06, -2693.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-884.75, -2582.36], [-889.8, -2582.19], [-890.07, -2589.8], [-885.03, -2589.98], [-884.75, -2582.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-999.59, -2793.29], [-994.93, -2793.63], [-995.38, -2799.5], [-1000.04, -2799.16], [-999.59, -2793.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-754.85, -2552.19], [-757.62, -2558.15], [-750.82, -2561.27], [-748.06, -2555.33], [-754.85, -2552.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1053.72, -2691.08], [-1046.54, -2691.23], [-1046.71, -2699.23], [-1053.88, -2699.08], [-1053.72, -2691.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1189.86, -2500.7], [-1190.22, -2509.58], [-1197.69, -2509.28], [-1197.33, -2500.4], [-1189.86, -2500.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-987.74, -2714.93], [-993.86, -2714.72], [-994.15, -2722.93], [-988.03, -2723.14], [-987.74, -2714.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1005.01, -2781.97], [-1005.37, -2790.08], [-998.49, -2790.38], [-998.13, -2782.27], [-1005.01, -2781.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1103.34, -2459.99], [-1098.15, -2460.26], [-1098.48, -2466.62], [-1103.67, -2466.35], [-1103.34, -2459.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-779.84, -2541.35], [-783.17, -2548.88], [-768.02, -2555.56], [-764.67, -2548.03], [-779.84, -2541.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1012.79, -2683.96], [-1009.25, -2684.09], [-1009.46, -2689.81], [-1013.01, -2689.69], [-1012.79, -2683.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1010.08, -2615.01], [-1005.85, -2615.2], [-1006.14, -2621.35], [-1010.37, -2621.15], [-1010.08, -2615.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1045.76, -2620.83], [-1037.06, -2621.21], [-1037.73, -2636.0], [-1046.41, -2635.6], [-1045.76, -2620.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-774.34, -2487.97], [-774.64, -2495.13], [-765.34, -2495.53], [-765.23, -2492.83], [-763.06, -2492.93], [-762.88, -2488.46], [-774.34, -2487.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-851.42, -2640.39], [-854.0, -2640.31], [-854.03, -2641.77], [-856.91, -2641.7], [-856.62, -2630.66], [-851.17, -2630.8], [-851.42, -2640.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-886.51, -2557.6], [-886.92, -2567.92], [-879.94, -2568.21], [-879.88, -2566.73], [-877.58, -2566.82], [-877.23, -2557.96], [-886.51, -2557.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-783.28, -2558.41], [-786.23, -2565.57], [-778.6, -2568.68], [-777.48, -2565.99], [-775.67, -2566.73], [-773.83, -2562.27], [-783.28, -2558.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1119.66, -2541.95], [-1120.1, -2551.8], [-1109.18, -2552.28], [-1108.69, -2540.96], [-1114.86, -2540.7], [-1114.92, -2542.17], [-1119.66, -2541.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-749.0, -2444.99], [-749.53, -2459.86], [-745.14, -2460.01], [-745.05, -2457.66], [-742.41, -2457.76], [-741.95, -2445.24], [-749.0, -2444.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1136.1, -2545.35], [-1136.28, -2550.43], [-1127.76, -2550.72], [-1127.45, -2541.75], [-1133.9, -2541.52], [-1134.03, -2545.42], [-1136.1, -2545.35]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-838.97, -2577.19], [-836.84, -2572.23], [-833.87, -2573.49], [-832.93, -2571.29], [-823.04, -2575.51], [-826.11, -2582.68], [-838.97, -2577.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-905.58, -2628.55], [-905.95, -2641.3], [-896.07, -2641.59], [-895.61, -2625.96], [-900.8, -2625.8], [-900.89, -2628.69], [-905.58, -2628.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1028.99, -2781.39], [-1029.21, -2788.96], [-1026.42, -2789.04], [-1026.53, -2792.79], [-1020.68, -2792.96], [-1020.36, -2781.64], [-1028.99, -2781.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-938.16, -2668.64], [-931.59, -2668.91], [-932.05, -2679.88], [-933.33, -2679.83], [-933.56, -2685.34], [-938.85, -2685.12], [-938.16, -2668.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1092.35, -2615.11], [-1084.44, -2615.45], [-1085.04, -2629.75], [-1088.88, -2629.59], [-1088.99, -2632.19], [-1093.06, -2632.02], [-1092.35, -2615.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1108.58, -2612.28], [-1099.01, -2612.54], [-1099.32, -2624.34], [-1101.62, -2624.28], [-1101.74, -2629.16], [-1109.02, -2628.97], [-1108.58, -2612.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1032.54, -2662.73], [-1027.3, -2662.99], [-1027.62, -2669.59], [-1024.78, -2669.72], [-1025.12, -2676.77], [-1033.21, -2676.38], [-1032.54, -2662.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1210.59, -2310.77], [-1203.27, -2311.07], [-1203.86, -2325.46], [-1210.59, -2325.19], [-1210.41, -2320.65], [-1210.99, -2320.62], [-1210.59, -2310.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-809.51, -2509.22], [-799.55, -2509.64], [-799.95, -2519.11], [-803.63, -2518.94], [-803.57, -2517.59], [-809.85, -2517.32], [-809.51, -2509.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1015.2, -2549.33], [-1015.94, -2566.54], [-1004.18, -2567.04], [-1003.49, -2550.74], [-1009.23, -2550.48], [-1009.19, -2549.59], [-1015.2, -2549.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-975.82, -2783.89], [-976.21, -2792.97], [-968.12, -2793.3], [-967.71, -2783.39], [-970.61, -2783.26], [-970.64, -2784.11], [-975.82, -2783.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-848.41, -2601.59], [-851.09, -2607.46], [-846.46, -2609.56], [-848.41, -2613.84], [-841.87, -2616.8], [-837.24, -2606.65], [-848.41, -2601.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1062.33, -2620.79], [-1054.23, -2621.1], [-1054.73, -2634.47], [-1061.67, -2634.21], [-1061.58, -2631.72], [-1062.73, -2631.68], [-1062.33, -2620.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1011.6, -2827.98], [-1011.96, -2835.54], [-999.97, -2836.09], [-999.63, -2828.53], [-1011.6, -2827.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-934.41, -2551.34], [-926.14, -2551.61], [-926.56, -2564.42], [-931.22, -2564.28], [-931.13, -2561.86], [-934.75, -2561.73], [-934.41, -2551.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1183.84, -2559.73], [-1175.07, -2560.04], [-1174.32, -2539.61], [-1182.96, -2539.3], [-1183.28, -2548.14], [-1185.85, -2548.05], [-1186.13, -2555.58], [-1183.84, -2559.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1076.41, -2630.61], [-1075.97, -2616.84], [-1068.71, -2617.07], [-1069.15, -2630.84], [-1071.53, -2630.76], [-1071.6, -2633.03], [-1074.66, -2632.93], [-1074.59, -2630.67], [-1076.41, -2630.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1048.56, -2729.53], [-1040.75, -2729.77], [-1041.29, -2746.68], [-1041.72, -2746.66], [-1041.78, -2748.7], [-1048.66, -2748.49], [-1048.6, -2746.52], [-1049.1, -2746.51], [-1048.56, -2729.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1224.72, -2312.99], [-1225.07, -2322.2], [-1215.14, -2322.57], [-1214.84, -2314.75], [-1213.98, -2314.79], [-1213.84, -2311.35], [-1222.25, -2311.04], [-1222.32, -2313.08], [-1224.72, -2312.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1045.27, -2549.47], [-1045.7, -2557.9], [-1035.71, -2558.4], [-1035.28, -2549.97], [-1038.84, -2549.79], [-1038.71, -2547.45], [-1041.72, -2547.3], [-1041.83, -2549.64], [-1045.27, -2549.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-839.07, -2567.38], [-839.16, -2568.03], [-841.91, -2567.64], [-842.64, -2572.89], [-839.24, -2573.37], [-838.95, -2571.3], [-833.61, -2572.03], [-833.09, -2568.21], [-839.07, -2567.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1210.63, -2378.1], [-1202.44, -2378.53], [-1203.04, -2389.95], [-1204.35, -2389.88], [-1204.47, -2392.19], [-1210.2, -2391.9], [-1210.08, -2389.58], [-1211.24, -2389.52], [-1210.63, -2378.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-790.13, -2571.01], [-790.56, -2572.01], [-792.65, -2571.13], [-794.71, -2575.97], [-792.6, -2576.85], [-793.07, -2577.95], [-781.52, -2582.79], [-778.59, -2575.86], [-790.13, -2571.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1249.23, -2370.38], [-1254.94, -2370.17], [-1255.22, -2377.77], [-1259.16, -2377.62], [-1259.62, -2389.92], [-1251.42, -2390.22], [-1250.98, -2378.31], [-1249.52, -2378.36], [-1249.23, -2370.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1239.12, -2311.35], [-1235.26, -2311.49], [-1235.18, -2309.41], [-1231.19, -2309.57], [-1231.27, -2311.65], [-1230.41, -2311.68], [-1230.84, -2322.94], [-1239.56, -2322.6], [-1239.12, -2311.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1252.59, -2310.46], [-1244.4, -2310.75], [-1244.71, -2319.4], [-1252.89, -2319.11], [-1252.8, -2316.61], [-1256.43, -2316.49], [-1256.24, -2310.93], [-1252.61, -2311.06], [-1252.59, -2310.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-926.86, -2670.1], [-927.29, -2681.74], [-918.84, -2682.06], [-918.41, -2670.41], [-921.35, -2670.3], [-921.31, -2669.34], [-923.39, -2669.26], [-923.42, -2670.22], [-926.86, -2670.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-903.56, -2558.06], [-903.94, -2569.38], [-894.54, -2569.69], [-894.18, -2558.38], [-897.17, -2558.27], [-897.14, -2557.03], [-900.35, -2556.92], [-900.4, -2558.17], [-903.56, -2558.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-818.0, -2517.2], [-812.02, -2517.41], [-812.21, -2523.06], [-818.18, -2522.86], [-818.15, -2522.15], [-820.38, -2522.08], [-820.24, -2517.89], [-818.02, -2517.97], [-818.0, -2517.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1015.37, -2781.58], [-1015.71, -2792.65], [-1006.98, -2792.94], [-1006.63, -2781.85], [-1008.07, -2781.81], [-1008.01, -2779.92], [-1010.69, -2779.84], [-1010.74, -2781.72], [-1015.37, -2781.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-972.39, -2624.86], [-972.81, -2635.19], [-972.2, -2635.22], [-972.28, -2637.06], [-965.3, -2637.35], [-965.22, -2635.5], [-964.4, -2635.53], [-963.99, -2625.2], [-972.39, -2624.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-913.67, -2670.59], [-913.98, -2677.91], [-913.01, -2677.94], [-913.14, -2681.02], [-908.54, -2681.22], [-908.41, -2678.14], [-905.74, -2678.25], [-905.43, -2670.93], [-913.67, -2670.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1229.47, -2093.5], [-1229.56, -2095.36], [-1230.78, -2095.3], [-1231.25, -2105.47], [-1221.34, -2105.93], [-1221.11, -2100.97], [-1220.11, -2101.02], [-1219.75, -2093.04], [-1226.08, -2092.75], [-1226.12, -2093.66], [-1229.47, -2093.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1243.34, -2095.43], [-1243.49, -2099.26], [-1246.87, -2099.13], [-1247.17, -2107.13], [-1243.8, -2107.26], [-1243.83, -2108.05], [-1240.2, -2108.18], [-1240.27, -2110.17], [-1234.55, -2110.39], [-1234.0, -2095.79], [-1243.34, -2095.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1384.01, -2134.59], [-1374.28, -2134.87], [-1374.39, -2138.4], [-1373.63, -2138.43], [-1373.84, -2145.82], [-1374.27, -2145.81], [-1374.47, -2152.84], [-1378.3, -2152.73], [-1378.12, -2146.41], [-1384.34, -2146.23], [-1384.01, -2134.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1211.2, -2117.6], [-1211.41, -2122.39], [-1207.05, -2122.58], [-1207.28, -2127.81], [-1194.53, -2128.36], [-1194.33, -2123.84], [-1196.48, -2123.75], [-1196.17, -2116.73], [-1201.17, -2116.51], [-1201.24, -2118.04], [-1211.2, -2117.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1354.74, -2139.05], [-1355.19, -2150.12], [-1352.97, -2150.21], [-1353.03, -2151.63], [-1348.44, -2151.82], [-1348.39, -2150.4], [-1346.19, -2150.48], [-1345.88, -2142.92], [-1347.79, -2142.84], [-1347.65, -2139.35], [-1354.74, -2139.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1218.4, -2150.68], [-1218.84, -2160.47], [-1212.22, -2160.77], [-1212.13, -2159.02], [-1208.83, -2159.17], [-1208.47, -2151.13], [-1210.82, -2151.01], [-1210.69, -2148.27], [-1217.02, -2147.99], [-1217.15, -2150.73], [-1218.4, -2150.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1234.37, -2150.44], [-1234.8, -2159.58], [-1223.18, -2160.12], [-1222.75, -2150.98], [-1223.93, -2150.93], [-1223.81, -2148.19], [-1227.52, -2148.01], [-1227.46, -2146.74], [-1232.81, -2146.5], [-1232.99, -2150.51], [-1234.37, -2150.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1375.16, -2100.59], [-1371.03, -2104.76], [-1368.96, -2102.71], [-1367.53, -2104.14], [-1369.67, -2106.26], [-1365.25, -2110.72], [-1359.28, -2104.84], [-1363.21, -2100.89], [-1360.85, -2098.57], [-1361.42, -2098.0], [-1359.77, -2096.36], [-1365.27, -2090.84], [-1375.16, -2100.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1324.78, -2144.56], [-1324.98, -2150.06], [-1322.36, -2150.17], [-1322.46, -2152.86], [-1317.15, -2153.07], [-1317.26, -2155.99], [-1313.53, -2156.13], [-1313.09, -2145.01], [-1314.29, -2144.97], [-1314.09, -2139.61], [-1318.35, -2139.44], [-1318.56, -2144.8], [-1324.78, -2144.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1276.68, -2097.76], [-1277.16, -2107.71], [-1274.43, -2107.83], [-1274.64, -2112.32], [-1268.69, -2112.6], [-1268.48, -2108.12], [-1267.34, -2108.17], [-1267.18, -2104.6], [-1265.79, -2104.66], [-1265.57, -2099.91], [-1270.54, -2099.67], [-1270.46, -2098.06], [-1276.68, -2097.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1338.94, -2107.84], [-1335.18, -2107.94], [-1335.37, -2115.33], [-1339.12, -2115.24], [-1338.94, -2107.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1385.38, -2119.74], [-1385.67, -2127.85], [-1377.92, -2128.12], [-1377.63, -2120.02], [-1385.38, -2119.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1308.42, -2114.74], [-1304.5, -2114.85], [-1304.71, -2122.36], [-1308.65, -2122.24], [-1308.42, -2114.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1408.6, -2086.89], [-1415.1, -2090.5], [-1410.79, -2098.21], [-1404.29, -2094.58], [-1408.6, -2086.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1304.03, -2099.25], [-1304.27, -2107.84], [-1295.8, -2108.08], [-1295.56, -2099.49], [-1304.03, -2099.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1355.41, -2107.36], [-1350.82, -2107.46], [-1350.98, -2114.75], [-1355.56, -2114.66], [-1355.41, -2107.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1402.15, -2094.37], [-1399.96, -2098.05], [-1393.9, -2094.47], [-1396.09, -2090.79], [-1402.15, -2094.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1318.29, -2099.17], [-1318.58, -2107.79], [-1310.87, -2108.05], [-1310.59, -2099.43], [-1318.29, -2099.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1346.34, -2134.14], [-1341.1, -2134.34], [-1341.32, -2140.05], [-1346.56, -2139.86], [-1346.34, -2134.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1297.17, -2143.37], [-1306.74, -2142.89], [-1307.39, -2155.95], [-1297.81, -2156.41], [-1297.17, -2143.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1319.85, -2115.57], [-1323.99, -2115.45], [-1324.23, -2123.56], [-1320.08, -2123.67], [-1319.85, -2115.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1209.61, -2106.87], [-1209.88, -2114.3], [-1202.5, -2114.55], [-1202.24, -2107.13], [-1209.61, -2106.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1339.23, -2137.78], [-1335.67, -2137.96], [-1335.92, -2143.28], [-1339.49, -2143.1], [-1339.23, -2137.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1391.35, -2106.72], [-1389.05, -2110.82], [-1384.49, -2108.28], [-1386.8, -2104.18], [-1391.35, -2106.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1226.44, -2135.36], [-1226.74, -2142.0], [-1219.91, -2142.31], [-1219.61, -2135.67], [-1226.44, -2135.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1272.01, -2118.68], [-1264.87, -2118.98], [-1265.19, -2126.49], [-1272.33, -2126.18], [-1272.01, -2118.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1217.88, -2107.72], [-1222.17, -2107.53], [-1222.46, -2113.67], [-1218.17, -2113.87], [-1217.88, -2107.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1262.99, -2114.67], [-1259.0, -2114.79], [-1259.25, -2122.2], [-1263.24, -2122.06], [-1262.99, -2114.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1214.85, -2089.57], [-1205.74, -2089.91], [-1206.23, -2102.86], [-1215.34, -2102.52], [-1214.85, -2089.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1371.06, -2132.73], [-1366.42, -2132.86], [-1366.63, -2140.15], [-1371.27, -2140.02], [-1371.06, -2132.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1200.76, -2131.22], [-1201.13, -2137.98], [-1194.58, -2138.33], [-1194.22, -2131.58], [-1200.76, -2131.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1216.66, -2125.32], [-1216.85, -2129.49], [-1210.08, -2129.81], [-1209.89, -2125.63], [-1216.66, -2125.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1294.29, -2115.87], [-1294.48, -2121.65], [-1288.36, -2121.85], [-1288.18, -2116.08], [-1294.29, -2115.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1294.5, -2126.51], [-1294.74, -2131.78], [-1288.63, -2132.06], [-1288.39, -2126.79], [-1294.5, -2126.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1277.5, -2137.77], [-1267.34, -2138.28], [-1268.34, -2157.97], [-1278.5, -2157.46], [-1277.5, -2137.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1387.83, -2088.85], [-1382.54, -2098.54], [-1369.1, -2091.25], [-1374.91, -2080.63], [-1386.19, -2086.75], [-1385.69, -2087.68], [-1387.83, -2088.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1351.28, -2098.66], [-1351.5, -2106.23], [-1340.68, -2106.53], [-1340.41, -2097.06], [-1347.35, -2096.86], [-1347.41, -2098.77], [-1351.28, -2098.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1368.47, -2141.21], [-1368.98, -2150.63], [-1359.54, -2151.13], [-1358.85, -2138.19], [-1363.75, -2137.93], [-1363.93, -2141.45], [-1368.47, -2141.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1202.5, -2148.91], [-1203.09, -2159.9], [-1198.16, -2160.17], [-1198.01, -2157.46], [-1192.46, -2157.75], [-1192.02, -2149.46], [-1202.5, -2148.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1261.22, -2148.21], [-1261.6, -2157.94], [-1252.97, -2158.29], [-1252.43, -2144.41], [-1256.96, -2144.24], [-1257.12, -2148.37], [-1261.22, -2148.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1398.25, -2088.06], [-1402.86, -2079.69], [-1390.92, -2073.18], [-1391.66, -2071.82], [-1387.0, -2069.28], [-1381.65, -2079.0], [-1398.25, -2088.06]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1335.93, -2096.98], [-1336.15, -2104.86], [-1327.09, -2105.12], [-1326.89, -2098.27], [-1330.06, -2098.18], [-1330.03, -2097.15], [-1335.93, -2096.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1248.86, -2148.04], [-1249.31, -2157.54], [-1241.29, -2157.91], [-1241.17, -2155.48], [-1237.83, -2155.63], [-1237.5, -2148.57], [-1248.86, -2148.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1293.32, -2136.55], [-1294.44, -2156.83], [-1284.35, -2157.39], [-1283.22, -2137.12], [-1284.96, -2137.03], [-1284.76, -2133.49], [-1291.26, -2133.12], [-1291.46, -2136.66], [-1293.32, -2136.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1396.22, -2058.41], [-1392.58, -2065.12], [-1389.55, -2063.48], [-1387.9, -2066.52], [-1393.76, -2069.66], [-1394.87, -2067.61], [-1403.66, -2072.32], [-1407.82, -2064.64], [-1396.22, -2058.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1335.79, -2145.5], [-1336.08, -2153.59], [-1333.4, -2153.69], [-1333.38, -2152.86], [-1328.9, -2153.02], [-1328.48, -2141.59], [-1334.78, -2141.37], [-1334.93, -2145.53], [-1335.79, -2145.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1260.7, -2096.18], [-1261.02, -2104.17], [-1251.14, -2104.55], [-1251.03, -2101.63], [-1249.02, -2101.71], [-1248.89, -2098.44], [-1250.89, -2098.36], [-1250.83, -2096.58], [-1260.7, -2096.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1199.68, -2090.17], [-1200.13, -2103.64], [-1194.19, -2103.84], [-1194.02, -2098.6], [-1189.36, -2098.75], [-1189.03, -2088.79], [-1193.89, -2088.63], [-1193.95, -2090.35], [-1199.68, -2090.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1416.36, -2109.71], [-1406.26, -2103.98], [-1394.55, -2124.49], [-1395.45, -2125.0], [-1392.31, -2130.52], [-1400.45, -2135.14], [-1401.25, -2133.74], [-1402.31, -2134.34], [-1416.36, -2109.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1290.35, -2099.56], [-1290.53, -2107.58], [-1280.15, -2107.8], [-1279.97, -2099.79], [-1282.61, -2099.74], [-1282.57, -2097.55], [-1287.37, -2097.44], [-1287.42, -2099.63], [-1290.35, -2099.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-945.65, -2113.99], [-946.0, -2121.0], [-943.68, -2121.13], [-944.03, -2128.02], [-942.06, -2128.12], [-942.17, -2130.33], [-938.43, -2130.51], [-938.31, -2128.3], [-935.89, -2128.43], [-935.2, -2114.51], [-945.65, -2113.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-809.66, -2120.18], [-810.15, -2132.17], [-808.03, -2132.25], [-808.13, -2134.64], [-809.86, -2134.57], [-810.16, -2141.65], [-803.58, -2141.93], [-803.18, -2132.46], [-800.99, -2132.55], [-800.48, -2120.56], [-809.66, -2120.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1091.3, -2151.18], [-1091.89, -2165.61], [-1082.75, -2165.99], [-1082.09, -2149.91], [-1085.33, -2149.78], [-1085.4, -2151.42], [-1086.87, -2151.35], [-1086.82, -2149.99], [-1090.21, -2149.86], [-1090.27, -2151.22], [-1091.3, -2151.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-793.53, -2119.19], [-793.8, -2126.66], [-793.48, -2126.68], [-793.76, -2134.43], [-791.95, -2134.49], [-792.07, -2137.86], [-788.63, -2137.98], [-788.51, -2134.61], [-785.33, -2134.72], [-784.79, -2119.5], [-793.53, -2119.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-917.96, -2173.17], [-910.17, -2173.49], [-909.88, -2166.48], [-908.29, -2166.55], [-908.1, -2162.14], [-909.7, -2162.08], [-909.48, -2156.85], [-918.42, -2156.47], [-918.83, -2166.32], [-917.68, -2166.37], [-917.96, -2173.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1136.61, -2154.44], [-1137.41, -2162.58], [-1135.46, -2162.77], [-1135.54, -2163.64], [-1128.66, -2164.32], [-1127.48, -2152.32], [-1129.32, -2152.13], [-1131.74, -2151.89], [-1131.83, -2152.88], [-1132.04, -2154.9], [-1136.61, -2154.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1152.34, -2153.26], [-1152.72, -2162.14], [-1151.72, -2162.18], [-1151.77, -2163.39], [-1143.27, -2163.75], [-1142.85, -2153.66], [-1143.79, -2153.62], [-1143.69, -2151.16], [-1149.19, -2150.93], [-1149.29, -2153.39], [-1152.34, -2153.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-930.34, -2114.76], [-930.75, -2122.94], [-928.04, -2123.08], [-928.28, -2127.67], [-927.32, -2127.72], [-927.39, -2128.98], [-925.09, -2129.1], [-925.02, -2127.83], [-920.54, -2128.06], [-919.89, -2115.29], [-930.34, -2114.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1162.61, -2129.81], [-1162.25, -2122.18], [-1155.79, -2122.48], [-1155.51, -2116.5], [-1144.79, -2117.0], [-1145.34, -2128.64], [-1147.18, -2128.56], [-1147.24, -2129.89], [-1150.24, -2129.76], [-1150.27, -2130.38], [-1162.61, -2129.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-824.69, -2118.48], [-825.28, -2131.09], [-820.24, -2131.33], [-820.41, -2134.8], [-815.95, -2135.01], [-815.49, -2125.12], [-813.49, -2125.21], [-813.24, -2119.88], [-815.24, -2119.79], [-815.2, -2118.92], [-824.69, -2118.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-858.32, -2164.06], [-858.74, -2176.99], [-850.84, -2177.25], [-850.75, -2174.67], [-846.73, -2174.8], [-846.57, -2169.84], [-845.17, -2169.88], [-844.86, -2160.43], [-852.07, -2160.2], [-852.2, -2164.26], [-858.32, -2164.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1050.15, -2126.76], [-1050.59, -2135.66], [-1049.75, -2135.71], [-1049.78, -2136.44], [-1042.61, -2136.79], [-1042.13, -2127.14], [-1046.33, -2126.95], [-1046.3, -2126.18], [-1048.15, -2126.09], [-1048.19, -2126.85], [-1050.15, -2126.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1102.52, -2096.67], [-1102.87, -2104.52], [-1100.62, -2104.62], [-1100.76, -2107.85], [-1092.15, -2108.23], [-1091.66, -2097.14], [-1095.6, -2096.97], [-1095.55, -2095.86], [-1098.83, -2095.72], [-1098.88, -2096.83], [-1102.52, -2096.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-754.4, -2125.66], [-754.73, -2135.31], [-745.89, -2135.61], [-745.54, -2125.91], [-746.1, -2125.89], [-745.96, -2121.77], [-750.33, -2121.62], [-750.42, -2124.29], [-753.36, -2124.19], [-753.41, -2125.7], [-754.4, -2125.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-755.86, -2168.45], [-756.11, -2177.31], [-753.27, -2177.39], [-753.3, -2178.54], [-748.34, -2178.68], [-748.05, -2168.67], [-749.79, -2168.62], [-749.73, -2166.39], [-754.65, -2166.25], [-754.71, -2168.48], [-755.86, -2168.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-767.09, -2120.78], [-762.5, -2121.0], [-762.45, -2120.0], [-759.39, -2120.15], [-760.0, -2132.94], [-763.26, -2132.78], [-763.18, -2131.02], [-765.7, -2130.9], [-765.68, -2130.45], [-767.54, -2130.36], [-767.09, -2120.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-870.23, -2115.01], [-864.22, -2115.16], [-864.24, -2116.0], [-861.77, -2116.06], [-861.92, -2121.99], [-859.02, -2122.06], [-859.12, -2126.09], [-862.02, -2126.02], [-862.09, -2129.26], [-871.92, -2129.01], [-871.72, -2120.96], [-870.38, -2120.99], [-870.23, -2115.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-855.99, -2115.68], [-856.3, -2124.2], [-855.19, -2124.24], [-855.32, -2127.88], [-851.55, -2128.02], [-851.42, -2124.38], [-848.91, -2124.47], [-848.98, -2126.33], [-844.95, -2126.48], [-844.84, -2123.47], [-843.87, -2123.51], [-843.59, -2116.15], [-855.99, -2115.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1055.67, -2154.14], [-1056.21, -2167.94], [-1045.53, -2168.36], [-1044.98, -2154.4], [-1045.43, -2154.39], [-1045.34, -2151.98], [-1047.7, -2151.88], [-1047.66, -2150.8], [-1052.51, -2150.62], [-1052.62, -2153.37], [-1054.23, -2153.31], [-1054.28, -2154.21], [-1055.67, -2154.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-978.64, -2110.57], [-979.06, -2119.38], [-978.02, -2119.42], [-978.36, -2126.8], [-976.21, -2126.89], [-976.35, -2129.82], [-970.58, -2130.08], [-970.52, -2128.59], [-968.17, -2128.69], [-967.76, -2119.91], [-966.09, -2119.99], [-965.67, -2111.17], [-978.64, -2110.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1038.78, -2105.5], [-1039.21, -2116.6], [-1036.0, -2116.73], [-1035.93, -2114.9], [-1032.87, -2115.03], [-1032.99, -2118.19], [-1026.28, -2118.45], [-1026.06, -2112.71], [-1028.5, -2112.62], [-1028.27, -2106.73], [-1032.69, -2106.56], [-1032.63, -2105.05], [-1035.93, -2104.92], [-1035.95, -2105.61], [-1038.78, -2105.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-870.11, -2160.39], [-870.26, -2164.91], [-873.78, -2164.79], [-874.01, -2171.43], [-870.49, -2171.55], [-870.59, -2174.47], [-866.52, -2174.61], [-866.59, -2176.19], [-863.69, -2176.28], [-863.63, -2174.7], [-861.85, -2174.77], [-861.37, -2160.7], [-862.26, -2160.66], [-862.12, -2156.55], [-866.38, -2156.41], [-866.52, -2160.52], [-870.11, -2160.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1164.85, -2142.2], [-1158.61, -2142.49], [-1159.0, -2150.58], [-1154.98, -2150.77], [-1155.31, -2157.89], [-1156.12, -2157.86], [-1156.48, -2165.61], [-1161.29, -2165.38], [-1161.2, -2163.57], [-1165.26, -2163.37], [-1165.02, -2158.41], [-1165.99, -2157.33], [-1165.89, -2155.21], [-1164.82, -2154.01], [-1164.63, -2149.99], [-1165.22, -2149.96], [-1164.85, -2142.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-811.86, -2167.61], [-812.21, -2176.38], [-803.21, -2176.75], [-802.85, -2167.98], [-811.86, -2167.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-825.96, -2167.75], [-826.3, -2175.95], [-817.73, -2176.3], [-817.39, -2168.11], [-825.96, -2167.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1145.39, -2104.83], [-1152.09, -2104.59], [-1152.34, -2111.46], [-1145.64, -2111.71], [-1145.39, -2104.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1136.1, -2101.05], [-1131.91, -2101.25], [-1132.16, -2106.58], [-1136.36, -2106.38], [-1136.1, -2101.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-805.36, -2148.9], [-805.68, -2155.04], [-798.42, -2155.4], [-798.1, -2149.27], [-805.36, -2148.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-741.63, -2141.92], [-741.89, -2148.63], [-736.16, -2148.85], [-735.9, -2142.14], [-741.63, -2141.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1105.43, -2112.11], [-1098.51, -2112.41], [-1098.82, -2119.53], [-1105.74, -2119.24], [-1105.43, -2112.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-933.61, -2131.45], [-927.61, -2131.74], [-927.97, -2139.04], [-933.97, -2138.75], [-933.61, -2131.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-796.52, -2138.58], [-796.82, -2146.79], [-789.95, -2147.04], [-789.64, -2138.83], [-796.52, -2138.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-841.62, -2167.12], [-841.94, -2175.19], [-833.06, -2175.55], [-832.73, -2167.48], [-841.62, -2167.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-964.98, -2143.18], [-965.38, -2151.54], [-956.98, -2151.95], [-956.58, -2143.59], [-964.98, -2143.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-972.58, -2133.71], [-965.34, -2134.07], [-965.72, -2141.68], [-972.96, -2141.32], [-972.58, -2133.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-949.48, -2136.27], [-949.82, -2142.46], [-943.54, -2142.79], [-943.21, -2136.61], [-949.48, -2136.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-961.05, -2112.85], [-961.44, -2122.57], [-952.16, -2122.94], [-951.77, -2113.23], [-961.05, -2112.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1094.91, -2123.87], [-1095.24, -2133.11], [-1079.68, -2133.66], [-1079.35, -2124.42], [-1094.91, -2123.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-925.11, -2153.03], [-920.57, -2153.2], [-920.79, -2159.02], [-925.33, -2158.85], [-925.11, -2153.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-884.62, -2145.44], [-884.8, -2151.7], [-878.41, -2151.89], [-878.23, -2145.62], [-884.62, -2145.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-782.81, -2138.74], [-783.16, -2147.22], [-770.77, -2147.74], [-770.41, -2139.25], [-782.81, -2138.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1146.83, -2136.17], [-1147.25, -2143.84], [-1138.79, -2144.29], [-1138.37, -2136.62], [-1146.83, -2136.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-878.19, -2159.46], [-888.11, -2159.26], [-888.41, -2173.9], [-878.5, -2174.1], [-878.19, -2159.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-827.85, -2147.6], [-822.43, -2147.72], [-822.63, -2156.38], [-828.04, -2156.26], [-827.85, -2147.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-949.99, -2157.71], [-946.72, -2157.84], [-946.95, -2163.87], [-950.21, -2163.75], [-949.99, -2157.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-750.98, -2140.14], [-751.27, -2148.04], [-744.17, -2148.3], [-743.88, -2140.39], [-750.98, -2140.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-835.75, -2147.06], [-836.03, -2153.17], [-829.42, -2153.47], [-829.15, -2147.36], [-835.75, -2147.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1088.63, -2099.84], [-1079.83, -2100.24], [-1080.28, -2110.52], [-1089.08, -2110.12], [-1088.63, -2099.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1051.08, -2138.27], [-1042.41, -2138.58], [-1042.71, -2146.92], [-1051.38, -2146.62], [-1051.08, -2138.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1027.17, -2139.17], [-1035.1, -2138.73], [-1035.53, -2146.34], [-1027.61, -2146.79], [-1027.17, -2139.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1138.68, -2126.43], [-1139.0, -2132.92], [-1131.14, -2133.31], [-1130.83, -2126.82], [-1138.68, -2126.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-749.96, -2158.98], [-745.48, -2159.23], [-745.8, -2164.99], [-750.29, -2164.74], [-749.96, -2158.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-991.89, -2111.1], [-992.23, -2118.72], [-982.63, -2119.15], [-982.28, -2111.53], [-991.89, -2111.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1131.42, -2134.65], [-1123.09, -2135.07], [-1123.63, -2145.76], [-1131.97, -2145.33], [-1131.42, -2134.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1112.88, -2145.46], [-1108.45, -2145.71], [-1108.78, -2151.59], [-1113.21, -2151.34], [-1112.88, -2145.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-776.93, -2148.3], [-777.24, -2154.58], [-770.53, -2154.91], [-770.22, -2148.63], [-776.93, -2148.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1002.86, -2148.97], [-996.64, -2149.3], [-997.0, -2155.97], [-1003.21, -2155.64], [-1002.86, -2148.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-988.1, -2127.82], [-980.73, -2128.15], [-981.17, -2137.83], [-988.54, -2137.5], [-988.1, -2127.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-759.89, -2136.39], [-756.18, -2136.5], [-756.36, -2142.76], [-760.07, -2142.66], [-759.89, -2136.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1107.38, -2146.11], [-1103.72, -2146.36], [-1104.11, -2152.17], [-1107.77, -2151.93], [-1107.38, -2146.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1111.69, -2134.85], [-1104.88, -2135.17], [-1104.55, -2128.06], [-1111.36, -2127.76], [-1111.69, -2134.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-914.05, -2135.7], [-906.96, -2135.96], [-907.24, -2143.82], [-914.33, -2143.56], [-914.05, -2135.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-789.11, -2148.27], [-789.41, -2154.78], [-783.13, -2155.07], [-782.83, -2148.56], [-789.11, -2148.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-964.65, -2131.59], [-956.31, -2131.98], [-956.73, -2141.17], [-965.08, -2140.78], [-964.65, -2131.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-797.18, -2166.51], [-797.62, -2177.02], [-786.22, -2177.51], [-785.76, -2167.0], [-797.18, -2166.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1082.54, -2137.43], [-1082.83, -2144.42], [-1090.75, -2144.08], [-1090.46, -2137.09], [-1082.54, -2137.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1133.05, -2087.9], [-1133.33, -2097.64], [-1123.0, -2097.94], [-1122.72, -2088.2], [-1133.05, -2087.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-842.35, -2137.11], [-835.85, -2137.46], [-836.22, -2144.38], [-842.73, -2144.02], [-842.35, -2137.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-932.21, -2162.12], [-932.65, -2174.19], [-924.95, -2174.47], [-924.62, -2165.24], [-927.84, -2165.13], [-927.74, -2162.28], [-932.21, -2162.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1024.16, -2160.27], [-1024.54, -2169.1], [-1016.62, -2169.44], [-1016.16, -2158.53], [-1020.09, -2158.36], [-1020.18, -2160.44], [-1024.16, -2160.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1041.84, -2105.53], [-1050.46, -2105.33], [-1050.54, -2108.66], [-1052.27, -2108.63], [-1052.43, -2115.63], [-1042.08, -2115.87], [-1041.84, -2105.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-944.69, -2161.68], [-944.84, -2165.16], [-946.6, -2165.08], [-946.93, -2172.49], [-938.46, -2172.88], [-937.97, -2161.98], [-944.69, -2161.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-827.34, -2145.85], [-827.06, -2138.81], [-821.88, -2139.03], [-821.91, -2139.7], [-817.63, -2139.87], [-817.89, -2146.23], [-827.34, -2145.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-782.11, -2165.3], [-774.58, -2165.59], [-775.03, -2177.52], [-780.22, -2177.33], [-780.26, -2178.55], [-782.61, -2178.46], [-782.11, -2165.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1022.61, -2107.45], [-1023.07, -2117.08], [-1012.05, -2117.62], [-1011.52, -2106.83], [-1018.07, -2106.51], [-1018.13, -2107.67], [-1022.61, -2107.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-995.02, -2155.77], [-995.74, -2170.07], [-986.71, -2170.53], [-986.55, -2167.36], [-983.3, -2167.52], [-982.74, -2156.4], [-995.02, -2155.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1118.49, -2091.26], [-1119.1, -2107.01], [-1113.27, -2107.24], [-1113.03, -2100.98], [-1108.28, -2101.16], [-1107.91, -2091.67], [-1118.49, -2091.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-915.6, -2115.35], [-905.2, -2115.81], [-905.83, -2129.83], [-909.08, -2129.69], [-909.2, -2132.36], [-916.35, -2132.04], [-915.6, -2115.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-779.55, -2120.37], [-779.84, -2127.4], [-777.39, -2127.5], [-777.52, -2130.41], [-770.83, -2130.69], [-770.43, -2120.73], [-779.55, -2120.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-767.63, -2165.42], [-768.07, -2178.09], [-760.59, -2178.35], [-760.15, -2165.68], [-761.03, -2165.65], [-760.93, -2162.65], [-766.44, -2162.47], [-766.54, -2165.46], [-767.63, -2165.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-839.55, -2116.64], [-840.12, -2129.67], [-831.92, -2130.04], [-831.55, -2121.63], [-828.74, -2121.76], [-828.56, -2117.57], [-834.66, -2117.3], [-834.65, -2116.86], [-839.55, -2116.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-741.07, -2122.91], [-741.4, -2131.16], [-738.26, -2131.28], [-738.4, -2134.65], [-734.14, -2134.81], [-734.01, -2131.45], [-733.27, -2131.48], [-732.93, -2123.23], [-741.07, -2122.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1152.28, -2087.24], [-1161.17, -2086.89], [-1161.59, -2097.41], [-1157.96, -2097.56], [-1158.1, -2101.28], [-1154.66, -2101.41], [-1154.58, -2099.37], [-1152.77, -2099.44], [-1152.28, -2087.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-745.15, -2160.83], [-739.19, -2161.09], [-739.43, -2166.8], [-736.59, -2166.92], [-737.03, -2176.93], [-744.38, -2176.61], [-744.2, -2172.39], [-745.65, -2172.33], [-745.15, -2160.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-884.0, -2114.66], [-874.69, -2114.98], [-874.87, -2120.65], [-876.02, -2120.61], [-876.35, -2130.34], [-883.18, -2130.11], [-882.99, -2124.45], [-884.33, -2124.4], [-884.0, -2114.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-979.61, -2158.21], [-970.74, -2158.71], [-970.86, -2160.83], [-967.91, -2161.0], [-968.35, -2168.67], [-971.29, -2168.5], [-971.44, -2171.14], [-980.32, -2170.64], [-979.61, -2158.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1103.97, -2154.91], [-1095.67, -2155.37], [-1096.32, -2166.72], [-1097.12, -2166.68], [-1097.27, -2169.19], [-1103.82, -2168.83], [-1103.68, -2166.31], [-1104.61, -2166.26], [-1103.97, -2154.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-963.03, -2163.12], [-963.55, -2171.73], [-954.87, -2172.25], [-954.78, -2170.54], [-952.79, -2170.65], [-952.49, -2165.65], [-954.48, -2165.53], [-954.36, -2163.64], [-963.03, -2163.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1137.32, -2088.27], [-1145.58, -2087.98], [-1145.87, -2096.2], [-1144.91, -2096.22], [-1145.08, -2101.22], [-1143.96, -2101.26], [-1144.09, -2104.82], [-1137.91, -2105.03], [-1137.32, -2088.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1008.08, -2110.04], [-1008.76, -2124.09], [-997.46, -2124.64], [-996.79, -2110.58], [-999.73, -2110.44], [-999.67, -2109.17], [-1002.41, -2109.04], [-1002.47, -2110.3], [-1008.08, -2110.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1121.89, -2156.83], [-1122.2, -2165.31], [-1120.4, -2165.38], [-1120.5, -2168.04], [-1115.81, -2168.22], [-1115.77, -2167.24], [-1113.25, -2167.34], [-1112.88, -2157.17], [-1121.89, -2156.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1009.98, -2161.23], [-1010.32, -2169.58], [-1001.04, -2169.95], [-1000.7, -2161.6], [-1002.4, -2161.53], [-1002.28, -2158.47], [-1005.71, -2158.33], [-1005.83, -2161.4], [-1009.98, -2161.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1040.51, -2156.05], [-1041.08, -2168.63], [-1031.09, -2169.08], [-1030.44, -2154.76], [-1033.14, -2154.64], [-1033.02, -2152.07], [-1039.43, -2151.78], [-1039.63, -2156.09], [-1040.51, -2156.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-873.18, -2506.67], [-873.28, -2508.86], [-874.27, -2508.81], [-874.39, -2511.45], [-876.99, -2511.32], [-877.49, -2521.92], [-868.48, -2522.35], [-867.99, -2512.04], [-867.42, -2512.07], [-867.17, -2506.96], [-873.18, -2506.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-761.46, -2308.73], [-762.01, -2313.44], [-756.7, -2314.05], [-757.34, -2319.59], [-749.4, -2320.5], [-748.9, -2316.12], [-748.05, -2316.21], [-747.74, -2313.52], [-748.59, -2313.41], [-748.22, -2310.26], [-761.46, -2308.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-761.44, -2326.79], [-762.27, -2333.32], [-749.28, -2334.97], [-749.19, -2334.25], [-748.27, -2334.36], [-747.96, -2331.88], [-748.87, -2331.77], [-748.4, -2328.1], [-758.28, -2326.85], [-758.32, -2327.19], [-761.44, -2326.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1004.03, -2316.66], [-996.42, -2316.92], [-996.49, -2318.75], [-992.59, -2318.89], [-992.78, -2324.26], [-993.41, -2324.24], [-993.66, -2331.39], [-998.05, -2331.23], [-998.12, -2333.19], [-1004.6, -2332.96], [-1004.03, -2316.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1284.64, -2357.47], [-1281.69, -2362.44], [-1277.46, -2359.94], [-1275.39, -2363.45], [-1271.94, -2361.41], [-1268.41, -2367.37], [-1262.05, -2363.63], [-1265.94, -2357.07], [-1261.9, -2354.69], [-1266.57, -2346.83], [-1284.64, -2357.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1294.92, -2190.25], [-1295.36, -2199.98], [-1289.19, -2200.26], [-1289.05, -2197.12], [-1286.27, -2197.24], [-1285.97, -2190.65], [-1289.32, -2190.5], [-1289.28, -2189.41], [-1292.0, -2189.3], [-1292.06, -2190.37], [-1294.92, -2190.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-718.44, -2274.67], [-718.3, -2269.47], [-714.34, -2269.58], [-714.27, -2267.02], [-704.93, -2267.29], [-704.97, -2268.53], [-700.87, -2268.65], [-700.97, -2272.46], [-701.53, -2272.45], [-701.59, -2275.13], [-718.44, -2274.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-936.6, -2208.33], [-937.01, -2216.27], [-935.47, -2216.35], [-935.49, -2216.87], [-927.87, -2217.25], [-927.79, -2215.77], [-927.03, -2215.8], [-926.53, -2205.94], [-931.94, -2205.67], [-932.09, -2208.56], [-936.6, -2208.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1108.25, -2199.41], [-1108.78, -2210.92], [-1106.0, -2211.05], [-1106.08, -2212.82], [-1099.79, -2213.11], [-1099.18, -2199.83], [-1100.0, -2199.79], [-1099.9, -2197.61], [-1107.26, -2197.26], [-1107.36, -2199.45], [-1108.25, -2199.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1390.83, -2190.26], [-1376.98, -2182.62], [-1378.88, -2179.19], [-1381.97, -2177.79], [-1388.25, -2177.59], [-1388.8, -2177.73], [-1389.19, -2177.98], [-1389.51, -2178.4], [-1389.68, -2178.88], [-1391.45, -2185.01], [-1390.83, -2190.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1092.94, -2201.96], [-1093.51, -2215.15], [-1087.59, -2215.41], [-1087.38, -2210.43], [-1085.5, -2210.52], [-1085.15, -2202.3], [-1087.17, -2202.22], [-1088.96, -2200.51], [-1091.57, -2200.39], [-1091.64, -2202.02], [-1092.94, -2201.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1298.43, -2262.43], [-1298.84, -2272.69], [-1291.1, -2273.0], [-1291.02, -2271.07], [-1288.38, -2271.18], [-1288.06, -2262.83], [-1292.49, -2262.66], [-1292.32, -2258.51], [-1297.46, -2258.31], [-1297.61, -2262.46], [-1298.43, -2262.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-726.5, -2346.58], [-717.62, -2347.14], [-717.86, -2350.71], [-713.67, -2350.98], [-714.06, -2356.98], [-727.11, -2356.15], [-727.07, -2355.56], [-729.38, -2355.41], [-728.84, -2346.82], [-726.53, -2346.98], [-726.5, -2346.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-713.64, -2243.22], [-713.67, -2243.76], [-714.17, -2243.73], [-714.55, -2249.72], [-713.89, -2249.76], [-714.01, -2251.6], [-701.39, -2252.39], [-700.91, -2244.71], [-707.21, -2244.3], [-707.18, -2243.63], [-713.64, -2243.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1162.73, -2267.57], [-1162.85, -2272.46], [-1162.03, -2272.48], [-1162.15, -2276.83], [-1165.81, -2276.74], [-1165.83, -2277.37], [-1168.07, -2277.32], [-1168.05, -2276.69], [-1170.17, -2276.63], [-1169.93, -2267.39], [-1162.73, -2267.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1264.55, -2191.67], [-1265.03, -2201.94], [-1259.61, -2202.19], [-1259.43, -2198.45], [-1256.06, -2198.62], [-1255.76, -2192.09], [-1258.6, -2191.95], [-1258.55, -2190.79], [-1261.39, -2190.66], [-1261.44, -2191.83], [-1264.55, -2191.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1055.14, -2206.66], [-1055.77, -2221.49], [-1054.65, -2221.54], [-1054.86, -2226.38], [-1049.24, -2226.63], [-1049.03, -2221.78], [-1048.14, -2221.81], [-1047.55, -2208.17], [-1051.81, -2207.98], [-1051.76, -2206.8], [-1055.14, -2206.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1056.82, -2264.12], [-1049.8, -2264.41], [-1050.05, -2270.7], [-1053.05, -2270.58], [-1053.18, -2273.84], [-1050.58, -2273.94], [-1050.91, -2282.29], [-1060.06, -2281.91], [-1059.73, -2273.55], [-1057.2, -2273.65], [-1056.82, -2264.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1141.66, -2266.73], [-1142.19, -2277.49], [-1138.51, -2277.67], [-1138.56, -2278.63], [-1136.31, -2278.74], [-1136.27, -2277.78], [-1132.53, -2277.97], [-1132.0, -2267.2], [-1133.91, -2267.1], [-1133.81, -2265.04], [-1139.0, -2264.79], [-1139.1, -2266.85], [-1141.66, -2266.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1307.5, -2256.72], [-1312.21, -2256.55], [-1312.36, -2260.62], [-1314.33, -2260.55], [-1314.66, -2269.75], [-1313.98, -2269.77], [-1314.05, -2271.85], [-1308.71, -2272.05], [-1308.66, -2270.41], [-1304.54, -2270.55], [-1304.29, -2263.64], [-1307.74, -2263.52], [-1307.5, -2256.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-765.1, -2345.42], [-765.39, -2348.28], [-768.82, -2347.94], [-769.42, -2353.91], [-765.98, -2354.25], [-766.16, -2356.05], [-753.19, -2357.33], [-753.11, -2356.53], [-750.96, -2356.74], [-750.09, -2347.98], [-752.24, -2347.78], [-752.14, -2346.7], [-765.1, -2345.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-727.95, -2364.5], [-719.17, -2365.1], [-719.53, -2370.2], [-717.66, -2370.34], [-717.91, -2373.92], [-719.78, -2373.79], [-719.84, -2374.7], [-728.61, -2374.09], [-728.55, -2373.19], [-730.61, -2373.06], [-730.05, -2364.93], [-727.99, -2365.06], [-727.95, -2364.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1249.04, -2192.11], [-1249.23, -2198.7], [-1247.48, -2198.75], [-1247.56, -2201.75], [-1242.7, -2201.89], [-1242.62, -2198.89], [-1240.7, -2198.94], [-1240.51, -2192.36], [-1243.3, -2192.28], [-1243.26, -2191.03], [-1246.33, -2190.95], [-1246.36, -2192.19], [-1249.04, -2192.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-764.96, -2389.73], [-765.01, -2390.34], [-767.22, -2390.14], [-767.69, -2395.57], [-765.48, -2395.77], [-765.78, -2399.16], [-757.36, -2399.89], [-757.14, -2397.36], [-755.55, -2397.5], [-755.34, -2395.05], [-755.93, -2395.0], [-755.54, -2390.54], [-764.96, -2389.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-750.32, -2209.78], [-750.43, -2213.04], [-749.76, -2213.06], [-749.84, -2215.24], [-748.73, -2215.27], [-748.95, -2221.82], [-738.96, -2222.16], [-738.92, -2220.78], [-736.47, -2220.86], [-736.19, -2212.55], [-738.63, -2212.47], [-738.56, -2210.17], [-750.32, -2209.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1027.19, -2272.95], [-1027.39, -2276.76], [-1028.48, -2276.7], [-1028.78, -2282.54], [-1026.07, -2282.68], [-1026.12, -2283.77], [-1021.97, -2283.99], [-1021.92, -2282.89], [-1019.6, -2283.01], [-1018.9, -2269.03], [-1024.54, -2268.75], [-1024.76, -2273.06], [-1027.19, -2272.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1123.04, -2199.15], [-1114.77, -2199.47], [-1115.14, -2209.03], [-1116.89, -2208.96], [-1117.01, -2212.28], [-1115.92, -2212.32], [-1116.01, -2214.71], [-1113.69, -2214.8], [-1113.83, -2218.4], [-1119.52, -2218.19], [-1119.39, -2214.82], [-1123.65, -2214.66], [-1123.04, -2199.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1153.48, -2210.16], [-1152.94, -2199.23], [-1150.71, -2199.33], [-1150.65, -2198.22], [-1147.75, -2198.36], [-1147.81, -2199.47], [-1145.38, -2199.6], [-1145.45, -2201.17], [-1142.43, -2201.33], [-1142.74, -2207.46], [-1148.52, -2207.18], [-1148.67, -2210.4], [-1153.48, -2210.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-927.8, -2250.15], [-931.39, -2250.03], [-931.46, -2251.67], [-936.07, -2251.51], [-936.09, -2252.13], [-937.79, -2252.07], [-937.91, -2255.35], [-938.42, -2255.33], [-938.68, -2262.56], [-936.46, -2262.63], [-936.54, -2264.69], [-934.72, -2264.75], [-934.76, -2266.13], [-928.37, -2266.35], [-927.8, -2250.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-729.5, -2400.66], [-734.31, -2400.58], [-734.35, -2402.57], [-734.96, -2402.55], [-735.01, -2405.49], [-736.3, -2405.47], [-736.32, -2407.03], [-737.69, -2407.01], [-737.83, -2414.84], [-729.74, -2414.98], [-729.63, -2407.96], [-729.14, -2407.96], [-729.05, -2402.71], [-729.53, -2402.71], [-729.5, -2400.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1042.91, -2215.55], [-1043.35, -2228.42], [-1037.14, -2228.63], [-1037.11, -2227.9], [-1034.12, -2227.99], [-1033.98, -2223.68], [-1033.1, -2223.72], [-1032.94, -2218.93], [-1033.81, -2218.9], [-1033.71, -2215.86], [-1034.6, -2215.83], [-1034.51, -2213.41], [-1041.56, -2213.18], [-1041.64, -2215.59], [-1042.91, -2215.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-965.16, -2320.19], [-965.49, -2328.17], [-958.67, -2328.47], [-956.94, -2330.34], [-957.31, -2338.94], [-951.9, -2339.17], [-951.81, -2337.04], [-948.12, -2337.19], [-947.79, -2329.24], [-948.47, -2329.22], [-948.13, -2321.2], [-955.19, -2320.9], [-955.14, -2319.69], [-959.88, -2319.48], [-959.92, -2320.4], [-965.16, -2320.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1044.16, -2269.61], [-1041.11, -2269.73], [-1040.71, -2259.04], [-1037.03, -2259.18], [-1037.13, -2262.08], [-1033.74, -2262.21], [-1033.94, -2267.72], [-1032.2, -2267.78], [-1032.47, -2274.91], [-1036.97, -2274.74], [-1037.13, -2279.16], [-1037.91, -2279.12], [-1038.05, -2283.1], [-1044.65, -2282.85], [-1044.51, -2278.89], [-1045.48, -2278.85], [-1045.29, -2273.68], [-1044.31, -2273.72], [-1044.16, -2269.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-962.64, -2362.54], [-962.92, -2369.92], [-950.64, -2370.39], [-950.36, -2363.0], [-962.64, -2362.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-971.81, -2377.24], [-972.06, -2383.46], [-967.31, -2383.65], [-967.06, -2377.43], [-971.81, -2377.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1061.84, -2358.44], [-1061.99, -2365.45], [-1053.74, -2365.64], [-1053.59, -2358.62], [-1061.84, -2358.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-716.9, -2373.96], [-717.3, -2379.1], [-710.68, -2379.63], [-710.28, -2374.47], [-716.9, -2373.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1335.62, -2253.68], [-1338.59, -2248.32], [-1332.93, -2245.21], [-1329.96, -2250.59], [-1335.62, -2253.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1008.21, -2317.46], [-1017.43, -2317.04], [-1018.1, -2331.84], [-1008.88, -2332.26], [-1008.21, -2317.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1177.9, -2383.04], [-1178.25, -2392.05], [-1168.32, -2392.45], [-1167.97, -2383.43], [-1177.9, -2383.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1030.95, -2237.44], [-1027.45, -2237.51], [-1027.54, -2242.78], [-1031.05, -2242.73], [-1030.95, -2237.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-911.68, -2514.62], [-911.9, -2522.62], [-919.93, -2522.39], [-919.71, -2514.39], [-911.68, -2514.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1132.14, -2253.62], [-1128.6, -2253.75], [-1128.82, -2259.9], [-1132.37, -2259.77], [-1132.14, -2253.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1060.48, -2335.55], [-1060.58, -2338.93], [-1055.93, -2339.06], [-1055.84, -2335.69], [-1060.48, -2335.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-909.67, -2474.81], [-909.88, -2478.93], [-903.39, -2479.28], [-903.17, -2475.16], [-909.67, -2474.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-699.73, -2265.26], [-699.9, -2268.95], [-693.74, -2269.23], [-693.56, -2265.54], [-699.73, -2265.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1128.49, -2261.79], [-1124.73, -2261.96], [-1125.03, -2268.59], [-1128.79, -2268.43], [-1128.49, -2261.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-780.44, -2403.01], [-776.31, -2403.09], [-776.42, -2408.75], [-780.54, -2408.67], [-780.44, -2403.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-851.47, -2515.68], [-842.23, -2516.1], [-842.73, -2527.09], [-851.97, -2526.67], [-851.47, -2515.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1045.88, -2243.61], [-1046.1, -2247.27], [-1040.64, -2247.59], [-1040.43, -2243.93], [-1045.88, -2243.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-717.48, -2255.12], [-718.07, -2263.82], [-706.77, -2264.58], [-706.19, -2255.87], [-717.48, -2255.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1240.39, -2249.0], [-1247.89, -2248.73], [-1247.64, -2241.45], [-1240.12, -2241.72], [-1240.39, -2249.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1095.64, -2253.68], [-1089.68, -2253.95], [-1089.99, -2260.69], [-1095.93, -2260.43], [-1095.64, -2253.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1237.86, -2219.94], [-1238.05, -2226.47], [-1227.45, -2226.77], [-1227.27, -2220.24], [-1237.86, -2219.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1257.1, -2203.52], [-1253.09, -2203.59], [-1253.18, -2208.71], [-1257.18, -2208.64], [-1257.1, -2203.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1276.21, -2244.17], [-1283.91, -2243.95], [-1283.64, -2234.32], [-1275.93, -2234.54], [-1276.21, -2244.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-968.34, -2213.48], [-968.81, -2221.21], [-956.59, -2221.95], [-956.12, -2214.2], [-968.34, -2213.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1209.38, -2252.49], [-1209.69, -2258.85], [-1202.98, -2259.18], [-1202.66, -2252.82], [-1209.38, -2252.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1169.26, -2380.54], [-1175.73, -2380.29], [-1175.51, -2374.36], [-1169.05, -2374.61], [-1169.26, -2380.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1236.86, -2263.43], [-1237.3, -2273.53], [-1229.49, -2273.86], [-1229.06, -2263.76], [-1236.86, -2263.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1102.41, -2216.44], [-1096.84, -2216.63], [-1097.09, -2223.54], [-1102.66, -2223.35], [-1102.41, -2216.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-973.45, -2220.71], [-982.19, -2220.4], [-981.86, -2211.16], [-973.12, -2211.46], [-973.45, -2220.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-764.68, -2284.92], [-757.9, -2285.36], [-758.19, -2289.88], [-764.97, -2289.44], [-764.68, -2284.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-694.15, -2277.65], [-695.12, -2289.0], [-689.13, -2289.5], [-688.17, -2278.16], [-694.15, -2277.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-765.73, -2234.12], [-765.85, -2240.83], [-771.26, -2240.72], [-771.14, -2234.01], [-765.73, -2234.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1207.3, -2238.62], [-1198.51, -2239.28], [-1199.22, -2248.62], [-1208.0, -2247.97], [-1207.3, -2238.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-720.16, -2295.55], [-721.24, -2304.9], [-709.86, -2306.2], [-708.77, -2296.85], [-720.16, -2295.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-710.33, -2328.29], [-710.61, -2333.64], [-704.69, -2333.95], [-704.4, -2328.6], [-710.33, -2328.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-857.26, -2499.88], [-853.26, -2499.96], [-853.38, -2506.22], [-857.38, -2506.14], [-857.26, -2499.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-717.93, -2278.79], [-719.07, -2289.24], [-699.89, -2291.31], [-698.76, -2280.86], [-717.93, -2278.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1159.0, -2260.15], [-1162.84, -2259.92], [-1163.25, -2266.54], [-1159.41, -2266.79], [-1159.0, -2260.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-768.33, -2215.85], [-772.65, -2215.66], [-772.95, -2222.74], [-768.63, -2222.93], [-768.33, -2215.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-905.59, -2521.71], [-896.93, -2522.03], [-896.49, -2510.34], [-905.15, -2510.0], [-905.59, -2521.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1159.67, -2348.74], [-1159.79, -2352.28], [-1150.78, -2352.59], [-1150.66, -2349.05], [-1159.67, -2348.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-778.66, -2381.11], [-770.67, -2381.77], [-771.34, -2389.81], [-779.33, -2389.15], [-778.66, -2381.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-759.83, -2268.76], [-760.17, -2273.61], [-753.68, -2274.06], [-753.34, -2269.21], [-759.83, -2268.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1101.68, -2260.64], [-1098.37, -2260.79], [-1098.67, -2267.75], [-1101.98, -2267.6], [-1101.68, -2260.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-940.95, -2283.75], [-941.36, -2289.85], [-935.91, -2290.21], [-935.49, -2284.11], [-940.95, -2283.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-997.6, -2338.1], [-991.19, -2338.3], [-991.48, -2347.34], [-997.89, -2347.13], [-997.6, -2338.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1143.11, -2312.5], [-1143.49, -2320.06], [-1133.67, -2320.56], [-1133.29, -2313.0], [-1143.11, -2312.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-694.79, -2260.76], [-694.53, -2256.86], [-686.29, -2257.43], [-686.56, -2261.33], [-694.79, -2260.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1133.14, -2367.16], [-1124.64, -2367.51], [-1124.29, -2358.95], [-1132.79, -2358.6], [-1133.14, -2367.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-958.65, -2343.15], [-958.94, -2347.19], [-952.67, -2347.64], [-952.38, -2343.59], [-958.65, -2343.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1166.46, -2213.5], [-1166.73, -2218.87], [-1158.43, -2219.29], [-1158.16, -2213.93], [-1166.46, -2213.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-825.63, -2523.71], [-825.95, -2529.25], [-833.21, -2528.83], [-832.89, -2523.29], [-825.63, -2523.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-751.87, -2259.67], [-741.82, -2260.0], [-742.23, -2272.57], [-752.27, -2272.24], [-751.87, -2259.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-720.68, -2309.91], [-721.46, -2317.62], [-713.12, -2318.46], [-712.34, -2310.75], [-720.68, -2309.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1125.73, -2312.14], [-1119.78, -2312.36], [-1120.29, -2325.53], [-1126.24, -2325.31], [-1125.73, -2312.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-942.62, -2248.84], [-942.9, -2258.37], [-953.55, -2258.07], [-953.28, -2248.54], [-942.62, -2248.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-951.08, -2208.09], [-951.37, -2216.59], [-940.83, -2216.95], [-940.54, -2208.44], [-951.08, -2208.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1338.18, -2266.74], [-1338.47, -2273.33], [-1327.61, -2273.8], [-1327.31, -2267.21], [-1338.18, -2266.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-728.89, -2385.95], [-729.6, -2393.0], [-723.61, -2393.61], [-722.9, -2386.56], [-728.89, -2385.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1135.39, -2218.18], [-1135.65, -2225.38], [-1128.22, -2225.65], [-1127.97, -2218.45], [-1135.39, -2218.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1156.79, -2375.72], [-1150.78, -2375.9], [-1151.04, -2384.34], [-1157.06, -2384.15], [-1156.79, -2375.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1095.61, -2218.39], [-1095.85, -2224.72], [-1090.12, -2224.93], [-1089.87, -2218.61], [-1095.61, -2218.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1025.39, -2316.25], [-1032.65, -2315.95], [-1033.19, -2329.27], [-1025.93, -2329.57], [-1025.39, -2316.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-878.6, -2498.89], [-878.9, -2505.46], [-872.62, -2505.75], [-872.31, -2499.18], [-878.6, -2498.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-753.63, -2248.52], [-753.86, -2256.83], [-740.15, -2257.23], [-739.91, -2248.91], [-753.63, -2248.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-768.4, -2318.07], [-769.06, -2323.68], [-762.42, -2324.46], [-761.75, -2318.86], [-768.4, -2318.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-976.21, -2362.63], [-969.76, -2362.82], [-969.98, -2370.21], [-976.42, -2370.03], [-976.21, -2362.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1110.5, -2224.88], [-1110.74, -2231.69], [-1103.65, -2231.94], [-1103.4, -2225.14], [-1110.5, -2224.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-879.45, -2505.74], [-883.56, -2505.57], [-883.78, -2511.56], [-879.67, -2511.72], [-879.45, -2505.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1170.98, -2348.74], [-1170.51, -2338.9], [-1162.05, -2339.31], [-1162.52, -2349.15], [-1170.98, -2348.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1243.98, -2258.05], [-1253.81, -2257.62], [-1254.47, -2272.72], [-1244.64, -2273.15], [-1243.98, -2258.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1036.01, -2232.78], [-1031.6, -2232.95], [-1031.99, -2242.69], [-1036.4, -2242.52], [-1036.01, -2232.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1012.71, -2204.72], [-1013.22, -2215.47], [-1000.93, -2216.05], [-1000.42, -2205.29], [-1012.71, -2204.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1227.59, -2204.82], [-1222.59, -2205.01], [-1222.81, -2211.1], [-1227.82, -2210.91], [-1227.59, -2204.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1009.9, -2337.63], [-1005.79, -2337.78], [-1006.07, -2345.49], [-1010.17, -2345.34], [-1009.9, -2337.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1058.24, -2232.09], [-1058.44, -2239.22], [-1051.78, -2239.41], [-1051.57, -2232.28], [-1058.24, -2232.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1001.15, -2259.87], [-996.61, -2260.06], [-996.91, -2266.87], [-1001.45, -2266.66], [-1001.15, -2259.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-896.05, -2440.17], [-896.66, -2453.28], [-884.27, -2453.85], [-883.66, -2440.75], [-896.05, -2440.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1132.5, -2329.36], [-1135.55, -2329.21], [-1135.91, -2336.27], [-1132.87, -2336.43], [-1132.5, -2329.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1029.9, -2254.2], [-1025.13, -2254.4], [-1025.58, -2264.64], [-1030.35, -2264.42], [-1029.9, -2254.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-917.66, -2483.68], [-926.55, -2483.29], [-926.93, -2491.78], [-918.04, -2492.18], [-917.66, -2483.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-708.56, -2230.14], [-699.5, -2230.94], [-700.26, -2239.38], [-709.31, -2238.56], [-708.56, -2230.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1221.53, -2204.99], [-1216.57, -2205.13], [-1216.73, -2211.06], [-1221.7, -2210.92], [-1221.53, -2204.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-769.34, -2332.1], [-769.85, -2335.32], [-763.48, -2336.32], [-762.97, -2333.09], [-769.34, -2332.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1325.73, -2264.1], [-1321.65, -2264.26], [-1321.93, -2271.01], [-1326.01, -2270.85], [-1325.73, -2264.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-979.83, -2269.45], [-986.18, -2269.11], [-985.84, -2262.8], [-979.49, -2263.15], [-979.83, -2269.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1233.11, -2240.9], [-1233.46, -2249.43], [-1223.2, -2249.85], [-1222.85, -2241.31], [-1233.11, -2240.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1126.27, -2224.11], [-1119.62, -2224.34], [-1120.01, -2235.36], [-1126.66, -2235.12], [-1126.27, -2224.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-988.22, -2320.08], [-979.66, -2320.41], [-980.09, -2331.72], [-988.65, -2331.4], [-988.22, -2320.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1149.16, -2376.86], [-1143.1, -2377.03], [-1143.28, -2383.52], [-1149.34, -2383.34], [-1149.16, -2376.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1062.82, -2343.96], [-1056.42, -2344.02], [-1056.53, -2355.07], [-1062.93, -2355.01], [-1062.82, -2343.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-773.71, -2341.59], [-774.26, -2346.48], [-766.92, -2347.33], [-766.35, -2342.42], [-773.71, -2341.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1208.56, -2261.73], [-1199.72, -2262.02], [-1200.1, -2273.28], [-1208.93, -2273.0], [-1208.56, -2261.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1363.94, -2245.39], [-1356.89, -2258.44], [-1340.43, -2249.62], [-1345.83, -2239.63], [-1343.57, -2238.42], [-1345.21, -2235.36], [-1363.94, -2245.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-999.8, -2274.01], [-1000.2, -2283.21], [-995.64, -2283.41], [-995.67, -2284.06], [-989.59, -2284.33], [-989.15, -2274.47], [-999.8, -2274.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-893.3, -2514.1], [-893.6, -2518.86], [-891.07, -2519.02], [-891.32, -2522.99], [-882.72, -2523.53], [-882.17, -2514.81], [-893.3, -2514.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-766.05, -2403.42], [-773.96, -2403.2], [-774.1, -2408.17], [-774.89, -2408.15], [-775.06, -2414.26], [-766.36, -2414.5], [-766.05, -2403.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-997.64, -2240.47], [-987.32, -2240.85], [-986.95, -2230.98], [-988.55, -2230.93], [-988.47, -2228.83], [-997.19, -2228.5], [-997.64, -2240.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1311.78, -2189.3], [-1312.12, -2196.95], [-1307.22, -2197.16], [-1307.37, -2200.61], [-1303.32, -2200.79], [-1302.83, -2189.7], [-1311.78, -2189.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1283.46, -2256.21], [-1284.18, -2271.25], [-1273.1, -2271.77], [-1272.61, -2261.64], [-1277.85, -2261.39], [-1277.62, -2256.5], [-1283.46, -2256.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-823.16, -2446.78], [-823.59, -2454.34], [-827.32, -2454.14], [-827.52, -2457.92], [-835.7, -2457.47], [-835.06, -2446.11], [-823.16, -2446.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1220.74, -2263.56], [-1221.16, -2272.01], [-1217.98, -2272.17], [-1218.11, -2274.87], [-1213.16, -2275.11], [-1212.61, -2263.95], [-1220.74, -2263.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1126.38, -2270.12], [-1126.78, -2278.31], [-1118.65, -2278.71], [-1118.12, -2267.8], [-1122.48, -2267.58], [-1122.62, -2270.3], [-1126.38, -2270.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1172.86, -2311.95], [-1164.82, -2312.28], [-1164.9, -2314.05], [-1164.05, -2314.09], [-1164.51, -2325.27], [-1173.39, -2324.9], [-1172.86, -2311.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1268.64, -2260.61], [-1268.97, -2272.04], [-1259.36, -2272.31], [-1259.14, -2264.48], [-1264.38, -2264.33], [-1264.28, -2260.73], [-1268.64, -2260.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-725.37, -2338.69], [-724.63, -2329.12], [-711.61, -2330.13], [-712.13, -2336.75], [-715.99, -2336.45], [-716.21, -2339.39], [-725.37, -2338.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1159.87, -2312.02], [-1160.24, -2324.76], [-1148.88, -2325.08], [-1148.54, -2313.0], [-1151.05, -2312.93], [-1151.03, -2312.27], [-1159.87, -2312.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-760.26, -2293.25], [-760.84, -2299.03], [-755.99, -2299.51], [-756.23, -2301.86], [-745.87, -2302.9], [-745.05, -2294.78], [-760.26, -2293.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1279.2, -2191.55], [-1279.37, -2197.56], [-1276.15, -2197.65], [-1276.28, -2202.16], [-1270.32, -2202.33], [-1269.97, -2190.05], [-1276.14, -2189.87], [-1276.19, -2191.64], [-1279.2, -2191.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-980.78, -2270.73], [-981.85, -2287.44], [-976.42, -2287.78], [-976.27, -2285.43], [-973.53, -2285.59], [-972.61, -2271.24], [-980.78, -2270.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1146.28, -2385.06], [-1146.58, -2393.6], [-1136.16, -2393.97], [-1136.0, -2389.24], [-1138.66, -2389.14], [-1138.53, -2385.33], [-1146.28, -2385.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-767.39, -2298.91], [-760.35, -2299.55], [-761.07, -2307.42], [-764.3, -2307.12], [-764.22, -2306.18], [-768.02, -2305.82], [-767.39, -2298.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1167.0, -2220.94], [-1154.62, -2221.55], [-1154.97, -2228.61], [-1157.11, -2228.51], [-1157.44, -2235.26], [-1167.68, -2234.77], [-1167.0, -2220.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1211.42, -2221.56], [-1211.89, -2231.15], [-1198.14, -2231.82], [-1198.0, -2229.03], [-1195.36, -2229.16], [-1195.03, -2222.37], [-1211.42, -2221.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1165.99, -2238.22], [-1166.09, -2240.83], [-1168.43, -2240.74], [-1168.72, -2248.6], [-1156.83, -2249.05], [-1156.43, -2238.58], [-1165.99, -2238.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1111.98, -2313.71], [-1112.41, -2324.99], [-1107.62, -2325.17], [-1107.69, -2327.11], [-1099.44, -2327.43], [-1098.93, -2314.2], [-1111.98, -2313.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-711.9, -2388.39], [-717.07, -2387.95], [-717.27, -2390.26], [-720.23, -2390.0], [-721.08, -2399.86], [-712.96, -2400.57], [-711.9, -2388.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1131.29, -2386.58], [-1131.62, -2394.32], [-1121.44, -2394.75], [-1121.28, -2390.87], [-1123.59, -2390.77], [-1123.43, -2386.91], [-1131.29, -2386.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1371.03, -2232.48], [-1368.65, -2237.01], [-1356.34, -2230.58], [-1355.72, -2231.77], [-1349.44, -2228.49], [-1352.44, -2222.77], [-1371.03, -2232.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1338.74, -2187.22], [-1339.4, -2199.48], [-1330.51, -2199.96], [-1329.85, -2187.68], [-1332.15, -2187.56], [-1332.03, -2185.25], [-1336.67, -2185.01], [-1336.79, -2187.32], [-1338.74, -2187.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1289.51, -2373.9], [-1287.49, -2378.36], [-1285.94, -2379.11], [-1268.77, -2371.4], [-1267.91, -2370.02], [-1269.99, -2365.43], [-1271.65, -2364.63], [-1289.12, -2372.48], [-1289.51, -2373.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1095.54, -2342.18], [-1105.36, -2341.95], [-1105.54, -2350.12], [-1108.34, -2350.05], [-1108.46, -2355.5], [-1102.02, -2355.65], [-1101.94, -2351.89], [-1095.76, -2352.03], [-1095.54, -2342.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1325.22, -2187.97], [-1325.58, -2197.0], [-1315.81, -2197.39], [-1315.44, -2188.36], [-1318.77, -2188.22], [-1318.73, -2187.15], [-1321.46, -2187.04], [-1321.51, -2188.12], [-1325.22, -2187.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1367.15, -2239.81], [-1364.32, -2245.09], [-1357.59, -2241.52], [-1357.92, -2240.9], [-1352.38, -2237.93], [-1354.71, -2233.59], [-1360.46, -2236.66], [-1360.63, -2236.34], [-1367.15, -2239.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-764.99, -2208.08], [-756.4, -2208.24], [-756.64, -2221.13], [-758.97, -2221.09], [-759.01, -2223.61], [-763.32, -2223.52], [-763.28, -2221.01], [-765.23, -2220.98], [-764.99, -2208.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-755.44, -2229.61], [-742.55, -2229.9], [-742.76, -2239.12], [-755.64, -2238.83], [-755.6, -2236.91], [-759.59, -2236.82], [-759.44, -2230.12], [-755.44, -2230.21], [-755.44, -2229.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1062.05, -2317.1], [-1062.33, -2325.37], [-1058.6, -2325.5], [-1058.68, -2327.53], [-1054.91, -2327.66], [-1054.83, -2325.63], [-1052.81, -2325.7], [-1052.53, -2317.43], [-1062.05, -2317.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-864.15, -2513.57], [-864.76, -2524.52], [-856.8, -2524.95], [-856.18, -2514.02], [-857.88, -2513.92], [-857.71, -2510.91], [-862.93, -2510.62], [-863.1, -2513.64], [-864.15, -2513.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1108.11, -2266.13], [-1102.69, -2266.29], [-1103.12, -2279.66], [-1112.83, -2279.35], [-1112.67, -2274.18], [-1110.22, -2274.26], [-1110.12, -2271.12], [-1108.27, -2271.18], [-1108.11, -2266.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1164.42, -2385.04], [-1164.7, -2392.93], [-1157.06, -2393.19], [-1156.77, -2385.31], [-1158.58, -2385.24], [-1158.44, -2381.25], [-1163.96, -2381.06], [-1164.11, -2385.04], [-1164.42, -2385.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1155.49, -2265.84], [-1155.85, -2276.88], [-1147.56, -2277.16], [-1147.18, -2266.11], [-1148.61, -2266.07], [-1148.52, -2263.35], [-1153.81, -2263.17], [-1153.9, -2265.89], [-1155.49, -2265.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1046.84, -2317.48], [-1047.31, -2326.87], [-1045.58, -2326.96], [-1045.67, -2328.7], [-1041.8, -2328.89], [-1041.7, -2327.15], [-1039.73, -2327.25], [-1039.26, -2317.86], [-1046.84, -2317.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1097.42, -2229.03], [-1097.53, -2231.87], [-1098.86, -2231.82], [-1099.12, -2238.8], [-1085.28, -2239.33], [-1085.04, -2233.15], [-1088.17, -2233.03], [-1088.03, -2229.39], [-1097.42, -2229.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1139.95, -2199.86], [-1140.32, -2209.36], [-1130.17, -2209.76], [-1129.79, -2200.26], [-1133.12, -2200.14], [-1133.06, -2198.49], [-1135.74, -2198.39], [-1135.8, -2200.03], [-1139.95, -2199.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1094.19, -2267.75], [-1089.04, -2267.92], [-1089.13, -2270.93], [-1086.02, -2271.03], [-1086.4, -2282.34], [-1092.3, -2282.14], [-1092.22, -2279.74], [-1094.58, -2279.66], [-1094.19, -2267.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-969.64, -2285.82], [-969.31, -2277.59], [-967.41, -2277.67], [-967.32, -2275.37], [-959.94, -2275.67], [-960.4, -2287.2], [-965.21, -2287.01], [-965.16, -2285.99], [-969.64, -2285.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1026.81, -2218.88], [-1027.39, -2233.98], [-1017.23, -2234.37], [-1016.65, -2219.25], [-1017.7, -2219.21], [-1017.59, -2216.39], [-1023.82, -2216.16], [-1023.92, -2218.98], [-1026.81, -2218.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-758.88, -2279.51], [-759.18, -2284.9], [-756.84, -2285.03], [-756.89, -2285.72], [-745.14, -2286.38], [-744.6, -2276.82], [-752.47, -2276.38], [-752.66, -2279.85], [-758.88, -2279.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1114.31, -2385.21], [-1114.72, -2393.85], [-1113.84, -2393.89], [-1113.95, -2396.12], [-1107.62, -2396.43], [-1107.51, -2394.18], [-1106.04, -2394.26], [-1105.63, -2385.62], [-1114.31, -2385.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1234.03, -2192.76], [-1234.29, -2199.26], [-1225.34, -2199.63], [-1225.07, -2193.13], [-1228.02, -2193.01], [-1227.98, -2191.76], [-1231.84, -2191.6], [-1231.9, -2192.85], [-1234.03, -2192.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-860.36, -2444.97], [-851.86, -2445.4], [-852.58, -2459.42], [-855.36, -2459.27], [-855.5, -2461.88], [-860.41, -2461.63], [-860.02, -2453.8], [-860.81, -2453.76], [-860.36, -2444.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1016.08, -2274.24], [-1016.38, -2282.98], [-1014.35, -2283.05], [-1014.4, -2284.62], [-1009.16, -2284.8], [-1009.1, -2283.23], [-1004.85, -2283.38], [-1004.56, -2274.64], [-1016.08, -2274.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1216.14, -2192.41], [-1216.4, -2199.83], [-1207.5, -2200.14], [-1207.25, -2192.72], [-1211.67, -2192.56], [-1211.63, -2191.57], [-1215.12, -2191.45], [-1215.16, -2192.44], [-1216.14, -2192.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1159.34, -2197.45], [-1167.03, -2197.08], [-1167.25, -2201.49], [-1167.78, -2201.46], [-1168.05, -2206.9], [-1167.52, -2206.92], [-1167.7, -2210.52], [-1160.01, -2210.91], [-1159.34, -2197.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1377.13, -2222.16], [-1373.35, -2229.21], [-1363.07, -2223.73], [-1363.44, -2223.06], [-1361.33, -2221.93], [-1364.52, -2215.98], [-1366.63, -2217.11], [-1366.86, -2216.69], [-1377.13, -2222.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1383.95, -2210.81], [-1380.0, -2217.97], [-1370.54, -2212.8], [-1371.25, -2211.5], [-1363.81, -2207.43], [-1366.39, -2202.72], [-1373.84, -2206.79], [-1374.47, -2205.63], [-1383.95, -2210.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-767.95, -2374.5], [-766.84, -2366.81], [-753.03, -2368.79], [-753.98, -2375.37], [-757.83, -2374.81], [-758.08, -2376.59], [-763.04, -2375.88], [-762.94, -2375.22], [-767.95, -2374.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1353.13, -2262.12], [-1347.79, -2271.32], [-1335.9, -2264.48], [-1336.48, -2263.47], [-1332.35, -2261.08], [-1336.44, -2254.03], [-1340.58, -2256.41], [-1341.24, -2255.27], [-1353.13, -2262.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1102.67, -2385.46], [-1102.99, -2394.79], [-1093.93, -2395.11], [-1093.66, -2387.38], [-1091.97, -2387.44], [-1091.78, -2381.96], [-1100.85, -2381.66], [-1100.98, -2385.52], [-1102.67, -2385.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1203.96, -2192.81], [-1197.42, -2193.14], [-1197.51, -2194.95], [-1194.88, -2195.09], [-1195.14, -2200.22], [-1196.28, -2200.16], [-1196.64, -2207.09], [-1204.69, -2206.67], [-1203.96, -2192.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1392.94, -2194.21], [-1386.56, -2205.77], [-1378.76, -2201.49], [-1376.81, -2205.02], [-1370.85, -2201.76], [-1372.8, -2198.22], [-1354.25, -2188.05], [-1358.8, -2179.82], [-1365.55, -2179.19], [-1392.94, -2194.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1826.58, -2087.14], [-1832.95, -2093.17], [-1828.97, -2097.34], [-1829.74, -2098.07], [-1819.66, -2108.63], [-1811.82, -2101.2], [-1816.17, -2096.64], [-1815.63, -2096.13], [-1820.69, -2090.83], [-1821.94, -2092.01], [-1826.58, -2087.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1826.4, -1971.22], [-1824.86, -1974.13], [-1826.81, -1975.14], [-1824.93, -1978.72], [-1823.39, -1977.91], [-1821.67, -1981.17], [-1813.51, -1976.9], [-1818.29, -1967.82], [-1821.74, -1969.62], [-1822.09, -1968.96], [-1826.4, -1971.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1484.61, -1976.27], [-1497.99, -1983.59], [-1497.24, -1984.95], [-1497.74, -1985.22], [-1494.89, -1990.38], [-1493.29, -1990.99], [-1491.12, -1990.73], [-1486.1, -1987.97], [-1482.3, -1994.88], [-1476.2, -1991.55], [-1484.61, -1976.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1748.38, -2119.43], [-1737.29, -2113.67], [-1735.23, -2117.61], [-1733.93, -2116.92], [-1731.95, -2120.7], [-1733.25, -2121.39], [-1730.03, -2127.53], [-1744.01, -2134.8], [-1746.29, -2130.42], [-1743.41, -2128.92], [-1748.38, -2119.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1570.27, -2392.34], [-1570.26, -2402.67], [-1560.72, -2402.66], [-1560.71, -2403.86], [-1554.69, -2403.86], [-1554.7, -2395.93], [-1557.99, -2395.94], [-1557.99, -2393.89], [-1561.13, -2393.89], [-1561.13, -2392.34], [-1570.27, -2392.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1677.39, -2264.08], [-1674.06, -2270.63], [-1669.62, -2268.39], [-1668.77, -2270.07], [-1664.78, -2268.06], [-1663.21, -2271.17], [-1656.0, -2267.53], [-1660.33, -2259.0], [-1668.31, -2263.03], [-1669.74, -2260.22], [-1677.39, -2264.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1628.66, -2224.17], [-1634.73, -2229.34], [-1629.85, -2235.04], [-1629.15, -2234.45], [-1626.87, -2237.11], [-1621.49, -2232.52], [-1623.04, -2230.72], [-1620.08, -2228.2], [-1624.34, -2223.23], [-1627.3, -2225.75], [-1628.66, -2224.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1466.72, -1966.6], [-1463.39, -1972.95], [-1454.75, -1968.45], [-1455.26, -1967.48], [-1453.11, -1966.37], [-1455.93, -1960.98], [-1459.3, -1962.73], [-1460.25, -1960.94], [-1464.52, -1963.17], [-1463.58, -1964.95], [-1466.72, -1966.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1680.95, -2324.43], [-1677.53, -2334.61], [-1669.03, -2331.77], [-1671.15, -2325.48], [-1669.92, -2325.07], [-1671.23, -2321.19], [-1675.76, -2322.7], [-1677.05, -2318.87], [-1681.31, -2320.3], [-1680.03, -2324.12], [-1680.95, -2324.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1502.11, -1900.14], [-1504.61, -1895.34], [-1502.27, -1894.13], [-1503.37, -1892.02], [-1494.31, -1887.35], [-1492.97, -1889.92], [-1494.27, -1890.6], [-1491.64, -1895.66], [-1499.24, -1899.59], [-1499.62, -1898.85], [-1502.11, -1900.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1309.9, -2461.36], [-1306.04, -2467.91], [-1296.53, -2462.34], [-1297.46, -2460.76], [-1289.34, -2456.25], [-1284.76, -2453.7], [-1292.93, -2439.18], [-1299.17, -2443.0], [-1295.12, -2450.3], [-1295.61, -2450.67], [-1296.55, -2449.05], [-1306.25, -2454.57], [-1304.23, -2458.04], [-1309.9, -2461.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1587.15, -2398.71], [-1587.23, -2406.63], [-1582.64, -2406.67], [-1582.62, -2404.2], [-1573.22, -2404.29], [-1573.14, -2396.22], [-1572.69, -2396.22], [-1572.67, -2393.51], [-1578.69, -2393.45], [-1578.71, -2395.99], [-1583.68, -2395.95], [-1583.72, -2398.74], [-1587.15, -2398.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1571.94, -2245.36], [-1572.29, -2253.98], [-1568.64, -2254.13], [-1568.68, -2254.96], [-1565.51, -2255.09], [-1565.48, -2254.26], [-1562.18, -2254.38], [-1561.85, -2245.76], [-1563.54, -2245.69], [-1563.34, -2240.69], [-1570.72, -2240.4], [-1570.91, -2245.4], [-1571.94, -2245.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1658.14, -2188.22], [-1652.79, -2197.8], [-1642.52, -2192.1], [-1647.87, -2182.52], [-1651.03, -2184.27], [-1651.78, -2182.94], [-1649.5, -2181.68], [-1652.86, -2175.68], [-1659.06, -2179.12], [-1655.63, -2185.25], [-1655.05, -2184.94], [-1654.39, -2186.13], [-1658.14, -2188.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1441.32, -2014.11], [-1439.38, -2017.14], [-1440.91, -2018.11], [-1439.16, -2020.84], [-1436.04, -2018.85], [-1433.71, -2022.48], [-1427.79, -2018.72], [-1429.57, -2015.93], [-1428.63, -2015.34], [-1430.46, -2012.48], [-1429.34, -2011.77], [-1431.74, -2008.01], [-1441.32, -2014.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1639.99, -2472.62], [-1639.08, -2478.8], [-1637.07, -2478.5], [-1636.49, -2482.39], [-1629.68, -2481.39], [-1629.13, -2485.09], [-1621.86, -2484.02], [-1622.75, -2477.98], [-1623.97, -2478.16], [-1625.28, -2469.35], [-1633.88, -2470.61], [-1633.72, -2471.7], [-1639.99, -2472.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1542.65, -2389.29], [-1543.05, -2397.77], [-1534.4, -2398.17], [-1534.3, -2395.94], [-1530.86, -2396.09], [-1530.97, -2398.32], [-1519.9, -2398.84], [-1519.46, -2389.38], [-1530.5, -2388.87], [-1530.6, -2390.76], [-1533.71, -2390.62], [-1533.66, -2389.7], [-1542.65, -2389.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1643.15, -2455.14], [-1630.8, -2452.91], [-1628.89, -2463.37], [-1633.42, -2464.18], [-1633.28, -2464.92], [-1634.82, -2465.19], [-1634.54, -2466.72], [-1640.84, -2467.86], [-1641.72, -2463.07], [-1642.94, -2463.29], [-1643.59, -2459.75], [-1642.36, -2459.53], [-1643.15, -2455.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1465.14, -1943.74], [-1473.48, -1948.04], [-1472.44, -1950.03], [-1475.59, -1951.65], [-1472.68, -1957.24], [-1467.31, -1954.46], [-1465.52, -1957.89], [-1459.4, -1954.73], [-1461.45, -1950.79], [-1462.41, -1951.28], [-1464.55, -1947.18], [-1463.6, -1946.68], [-1465.14, -1943.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1704.46, -2247.07], [-1715.81, -2253.24], [-1712.79, -2258.75], [-1710.86, -2257.71], [-1707.61, -2263.63], [-1702.77, -2260.99], [-1701.86, -2262.63], [-1697.28, -2260.14], [-1698.44, -2258.04], [-1694.54, -2255.92], [-1697.91, -2249.79], [-1701.81, -2251.9], [-1704.46, -2247.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1608.75, -2292.25], [-1608.56, -2303.62], [-1604.51, -2303.56], [-1604.46, -2306.64], [-1600.14, -2306.56], [-1600.19, -2303.48], [-1599.21, -2303.46], [-1599.39, -2292.1], [-1602.3, -2292.15], [-1602.32, -2290.78], [-1605.38, -2290.83], [-1605.36, -2292.19], [-1608.75, -2292.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1727.24, -2220.12], [-1720.92, -2232.18], [-1714.28, -2228.73], [-1716.45, -2224.6], [-1708.59, -2220.52], [-1710.45, -2216.96], [-1704.6, -2213.92], [-1709.29, -2204.97], [-1716.49, -2208.71], [-1714.91, -2211.73], [-1721.08, -2214.95], [-1720.27, -2216.49], [-1727.24, -2220.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1578.29, -2291.01], [-1573.43, -2291.25], [-1573.38, -2290.34], [-1571.09, -2290.45], [-1571.14, -2291.37], [-1569.63, -2291.44], [-1570.39, -2306.68], [-1565.93, -2306.89], [-1566.25, -2313.41], [-1570.86, -2313.18], [-1570.61, -2308.32], [-1575.79, -2308.07], [-1575.71, -2306.46], [-1579.04, -2306.3], [-1578.29, -2291.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1699.57, -2283.7], [-1702.72, -2276.85], [-1701.56, -2276.31], [-1704.35, -2270.23], [-1695.64, -2266.26], [-1694.39, -2268.97], [-1691.91, -2267.83], [-1690.37, -2271.2], [-1684.67, -2268.6], [-1681.52, -2275.44], [-1693.62, -2280.98], [-1692.33, -2283.77], [-1696.9, -2285.86], [-1698.19, -2283.07], [-1699.57, -2283.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1800.23, -2126.96], [-1792.92, -2121.19], [-1785.75, -2130.22], [-1787.7, -2131.77], [-1785.9, -2134.05], [-1784.25, -2132.76], [-1781.88, -2135.74], [-1787.56, -2140.22], [-1791.74, -2134.95], [-1793.06, -2135.99], [-1795.12, -2133.4], [-1796.2, -2134.26], [-1800.29, -2129.12], [-1799.2, -2128.26], [-1800.23, -2126.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1520.84, -2424.78], [-1530.09, -2424.38], [-1530.57, -2435.31], [-1521.32, -2435.71], [-1520.84, -2424.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1707.74, -2051.91], [-1701.88, -2048.71], [-1696.01, -2059.38], [-1701.87, -2062.58], [-1707.74, -2051.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1595.97, -2457.16], [-1590.79, -2457.41], [-1591.14, -2464.65], [-1596.33, -2464.39], [-1595.97, -2457.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1589.06, -2117.76], [-1579.36, -2125.04], [-1571.63, -2114.8], [-1581.34, -2107.53], [-1589.06, -2117.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1611.89, -2334.79], [-1604.0, -2333.46], [-1602.75, -2340.78], [-1610.64, -2342.12], [-1611.89, -2334.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1593.36, -2290.77], [-1593.46, -2298.47], [-1583.08, -2298.61], [-1582.98, -2290.91], [-1593.36, -2290.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1685.26, -2045.57], [-1679.84, -2055.48], [-1664.9, -2047.36], [-1670.33, -2037.45], [-1685.26, -2045.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1686.84, -2138.41], [-1680.82, -2149.04], [-1665.58, -2140.47], [-1671.6, -2129.85], [-1686.84, -2138.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1687.9, -2307.29], [-1684.93, -2315.69], [-1675.72, -2312.47], [-1678.68, -2304.07], [-1687.9, -2307.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1378.53, -2333.52], [-1372.88, -2343.5], [-1353.5, -2332.62], [-1359.14, -2322.63], [-1378.53, -2333.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1561.14, -2291.86], [-1561.9, -2306.19], [-1548.2, -2306.9], [-1547.45, -2292.58], [-1561.14, -2291.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1728.17, -2066.62], [-1722.82, -2076.2], [-1710.49, -2069.36], [-1715.83, -2059.79], [-1728.17, -2066.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1339.06, -2363.83], [-1348.93, -2369.29], [-1337.54, -2389.72], [-1327.67, -2384.25], [-1339.06, -2363.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1579.07, -2135.36], [-1568.86, -2141.67], [-1562.21, -2130.97], [-1572.43, -2124.67], [-1579.07, -2135.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1638.52, -2195.99], [-1640.64, -2192.47], [-1635.32, -2189.3], [-1633.21, -2192.82], [-1638.52, -2195.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1589.53, -2472.05], [-1589.99, -2481.98], [-1577.71, -2482.55], [-1577.25, -2472.61], [-1589.53, -2472.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1774.58, -1981.21], [-1778.32, -1974.04], [-1769.05, -1969.25], [-1765.32, -1976.41], [-1774.58, -1981.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1596.17, -2305.13], [-1596.12, -2312.61], [-1588.63, -2312.56], [-1588.69, -2305.06], [-1596.17, -2305.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1662.32, -2132.76], [-1657.03, -2129.81], [-1651.27, -2140.05], [-1656.57, -2143.0], [-1662.32, -2132.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1657.94, -2301.56], [-1655.03, -2309.71], [-1643.38, -2305.58], [-1646.29, -2297.42], [-1657.94, -2301.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1527.66, -2340.45], [-1520.94, -2340.68], [-1521.14, -2346.77], [-1527.85, -2346.55], [-1527.66, -2340.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1696.7, -2258.18], [-1694.5, -2262.26], [-1686.34, -2257.85], [-1688.54, -2253.78], [-1696.7, -2258.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1563.46, -2315.53], [-1563.76, -2323.29], [-1552.57, -2323.73], [-1552.27, -2315.97], [-1563.46, -2315.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1709.83, -2075.2], [-1720.03, -2080.68], [-1711.88, -2095.77], [-1701.68, -2090.31], [-1709.83, -2075.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1566.06, -2148.77], [-1556.2, -2152.43], [-1550.54, -2137.3], [-1560.42, -2133.64], [-1566.06, -2148.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1592.7, -2187.68], [-1588.24, -2190.1], [-1594.43, -2201.42], [-1598.87, -2199.01], [-1592.7, -2187.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1759.36, -2123.34], [-1766.07, -2126.99], [-1760.74, -2136.75], [-1754.02, -2133.12], [-1759.36, -2123.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1659.13, -2146.74], [-1655.55, -2152.88], [-1647.05, -2147.94], [-1650.63, -2141.82], [-1659.13, -2146.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1750.5, -1983.75], [-1744.14, -1980.25], [-1740.39, -1987.01], [-1746.75, -1990.51], [-1750.5, -1983.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1364.68, -2384.23], [-1360.39, -2392.03], [-1344.12, -2383.15], [-1348.41, -2375.35], [-1364.68, -2384.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1822.57, -1983.21], [-1818.8, -1990.51], [-1807.83, -1984.89], [-1811.59, -1977.59], [-1822.57, -1983.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1581.39, -2222.0], [-1573.08, -2222.41], [-1573.47, -2230.24], [-1581.78, -2229.83], [-1581.39, -2222.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1527.86, -2289.98], [-1528.4, -2299.23], [-1513.84, -2300.08], [-1513.29, -2290.84], [-1527.86, -2289.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1694.14, -2094.11], [-1708.91, -2102.18], [-1702.89, -2113.13], [-1688.12, -2105.08], [-1694.14, -2094.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1631.83, -2343.96], [-1630.4, -2351.52], [-1622.37, -2350.0], [-1623.8, -2342.46], [-1631.83, -2343.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1739.44, -2137.75], [-1727.31, -2131.26], [-1720.1, -2144.64], [-1732.22, -2151.13], [-1739.44, -2137.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1660.91, -2149.58], [-1677.19, -2158.47], [-1667.84, -2175.46], [-1651.56, -2166.57], [-1660.91, -2149.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1757.19, -1975.07], [-1754.69, -1979.91], [-1748.75, -1976.85], [-1751.25, -1972.03], [-1757.19, -1975.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1782.4, -1948.25], [-1778.46, -1955.96], [-1787.54, -1960.56], [-1791.47, -1952.85], [-1782.4, -1948.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1344.83, -2387.85], [-1342.39, -2386.51], [-1340.84, -2389.33], [-1343.27, -2390.67], [-1344.83, -2387.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1853.72, -2014.59], [-1850.26, -2021.24], [-1842.72, -2017.33], [-1846.17, -2010.7], [-1853.72, -2014.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1780.14, -2075.91], [-1776.87, -2081.88], [-1785.53, -2086.59], [-1788.8, -2080.62], [-1780.14, -2075.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1562.09, -2233.34], [-1557.16, -2233.55], [-1557.46, -2240.19], [-1562.39, -2239.97], [-1562.09, -2233.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1531.51, -2303.17], [-1531.71, -2307.44], [-1525.05, -2307.73], [-1524.85, -2303.47], [-1531.51, -2303.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1684.53, -2094.11], [-1678.65, -2090.88], [-1672.52, -2101.97], [-1678.41, -2105.19], [-1684.53, -2094.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1635.79, -2209.39], [-1643.4, -2213.6], [-1638.7, -2222.03], [-1631.09, -2217.81], [-1635.79, -2209.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1637.17, -2358.52], [-1635.45, -2367.25], [-1622.53, -2364.73], [-1624.25, -2356.01], [-1637.17, -2358.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1809.13, -2006.15], [-1805.37, -2013.07], [-1794.04, -2006.97], [-1797.8, -2000.05], [-1809.13, -2006.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1530.67, -2325.24], [-1531.14, -2336.39], [-1515.29, -2337.05], [-1514.83, -2325.91], [-1530.67, -2325.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1771.34, -2087.28], [-1766.46, -2096.16], [-1752.3, -2088.46], [-1757.18, -2079.57], [-1771.34, -2087.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1727.94, -1934.26], [-1735.31, -1938.16], [-1731.58, -1945.15], [-1724.22, -1941.25], [-1727.94, -1934.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1880.49, -2017.27], [-1876.91, -2023.09], [-1870.06, -2018.91], [-1873.63, -2013.09], [-1880.49, -2017.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1514.91, -2309.13], [-1523.56, -2308.66], [-1524.14, -2319.32], [-1515.48, -2319.79], [-1514.91, -2309.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1672.14, -2118.05], [-1665.27, -2114.33], [-1661.53, -2121.2], [-1668.4, -2124.91], [-1672.14, -2118.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1555.86, -2200.49], [-1563.31, -2200.25], [-1563.55, -2207.74], [-1556.11, -2207.99], [-1555.86, -2200.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1664.83, -2368.52], [-1662.3, -2377.82], [-1646.77, -2373.62], [-1649.3, -2364.33], [-1664.83, -2368.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1817.12, -2008.42], [-1823.72, -2011.92], [-1820.56, -2017.85], [-1813.95, -2014.33], [-1817.12, -2008.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1744.47, -1939.38], [-1742.2, -1943.68], [-1736.38, -1940.63], [-1738.65, -1936.33], [-1744.47, -1939.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1545.46, -2293.0], [-1545.7, -2298.89], [-1533.78, -2299.37], [-1533.55, -2293.47], [-1545.46, -2293.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1677.73, -2225.39], [-1685.36, -2229.16], [-1680.65, -2238.61], [-1673.03, -2234.84], [-1677.73, -2225.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1553.41, -2189.79], [-1553.87, -2198.68], [-1539.46, -2199.42], [-1539.0, -2190.54], [-1553.41, -2189.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1621.3, -2473.24], [-1613.39, -2472.02], [-1612.21, -2479.58], [-1620.11, -2480.81], [-1621.3, -2473.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1832.05, -2075.57], [-1828.02, -2072.23], [-1823.41, -2077.73], [-1827.44, -2081.07], [-1832.05, -2075.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1817.78, -2022.94], [-1813.91, -2021.0], [-1811.61, -2025.54], [-1815.47, -2027.48], [-1817.78, -2022.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1763.5, -1962.63], [-1766.11, -1957.88], [-1760.77, -1954.98], [-1758.17, -1959.73], [-1763.5, -1962.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1511.62, -1881.72], [-1507.07, -1889.93], [-1495.87, -1883.77], [-1500.43, -1875.55], [-1511.62, -1881.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1546.33, -2205.18], [-1546.78, -2213.14], [-1539.64, -2213.55], [-1539.19, -2205.58], [-1546.33, -2205.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1812.06, -2066.62], [-1803.06, -2061.83], [-1795.65, -2075.66], [-1804.64, -2080.44], [-1812.06, -2066.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1816.44, -2005.73], [-1818.1, -2002.52], [-1822.63, -2004.85], [-1820.98, -2008.04], [-1816.44, -2005.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1633.79, -2137.14], [-1627.85, -2147.96], [-1613.8, -2140.31], [-1619.75, -2129.49], [-1633.79, -2137.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1520.24, -1885.95], [-1526.4, -1889.48], [-1522.86, -1895.63], [-1516.7, -1892.1], [-1520.24, -1885.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1441.64, -2032.78], [-1448.67, -2036.74], [-1443.36, -2046.09], [-1436.33, -2042.14], [-1441.64, -2032.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1628.06, -2462.39], [-1627.19, -2467.42], [-1619.83, -2466.16], [-1620.7, -2461.13], [-1628.06, -2462.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1796.41, -2058.46], [-1790.32, -2069.53], [-1780.0, -2063.89], [-1786.09, -2052.82], [-1796.41, -2058.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1618.88, -2155.09], [-1611.32, -2150.73], [-1604.36, -2162.7], [-1611.92, -2167.07], [-1618.88, -2155.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1475.72, -1967.05], [-1481.87, -1970.16], [-1478.92, -1975.96], [-1472.77, -1972.86], [-1475.72, -1967.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1468.83, -1976.56], [-1475.76, -1980.36], [-1472.03, -1987.15], [-1465.09, -1983.37], [-1468.83, -1976.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1553.43, -2337.59], [-1553.68, -2344.09], [-1539.02, -2344.66], [-1538.76, -2338.16], [-1553.43, -2337.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1711.17, -2028.45], [-1705.04, -2025.29], [-1701.63, -2031.87], [-1707.75, -2035.03], [-1711.17, -2028.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1481.22, -1947.46], [-1478.96, -1951.73], [-1488.44, -1956.74], [-1490.71, -1952.47], [-1481.22, -1947.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1600.86, -2396.79], [-1592.83, -2396.96], [-1593.0, -2404.74], [-1601.03, -2404.57], [-1600.86, -2396.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1625.97, -2154.77], [-1632.32, -2158.76], [-1628.25, -2165.2], [-1621.9, -2161.21], [-1625.97, -2154.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1721.2, -1969.7], [-1717.42, -1977.02], [-1705.7, -1971.02], [-1709.48, -1963.69], [-1721.2, -1969.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1729.31, -1959.79], [-1725.38, -1967.08], [-1711.43, -1959.6], [-1715.36, -1952.31], [-1729.31, -1959.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1717.32, -2035.07], [-1711.04, -2031.63], [-1707.46, -2038.1], [-1713.73, -2041.55], [-1717.32, -2035.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1606.95, -2407.33], [-1601.74, -2407.36], [-1601.77, -2414.38], [-1606.98, -2414.35], [-1606.95, -2407.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1695.49, -1925.81], [-1691.41, -1933.25], [-1682.2, -1928.23], [-1686.28, -1920.79], [-1695.49, -1925.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1681.94, -1948.74], [-1677.68, -1956.17], [-1669.84, -1951.72], [-1674.11, -1944.28], [-1681.94, -1948.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1651.95, -2319.38], [-1647.37, -2317.91], [-1645.36, -2324.12], [-1649.94, -2325.59], [-1651.95, -2319.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1756.37, -2166.12], [-1752.51, -2170.03], [-1747.33, -2164.96], [-1751.21, -2161.04], [-1756.37, -2166.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1609.74, -2416.52], [-1613.95, -2415.42], [-1615.67, -2422.02], [-1611.47, -2423.11], [-1609.74, -2416.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1579.83, -2347.16], [-1580.21, -2356.16], [-1568.36, -2356.66], [-1567.98, -2347.67], [-1579.83, -2347.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1672.23, -2350.34], [-1661.91, -2347.19], [-1664.78, -2337.89], [-1675.1, -2341.04], [-1672.23, -2350.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1704.08, -1912.6], [-1708.06, -1905.17], [-1694.85, -1898.15], [-1690.87, -1905.58], [-1704.08, -1912.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1690.98, -2000.04], [-1699.92, -2005.02], [-1687.37, -2027.41], [-1678.42, -2022.43], [-1690.98, -2000.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1675.55, -2246.69], [-1671.56, -2254.04], [-1664.17, -2250.06], [-1668.17, -2242.71], [-1675.55, -2246.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1641.41, -2296.86], [-1639.55, -2304.93], [-1629.59, -2302.66], [-1631.46, -2294.58], [-1641.41, -2296.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1765.23, -2156.51], [-1773.58, -2162.93], [-1765.79, -2173.01], [-1757.43, -2166.59], [-1765.23, -2156.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1543.92, -2467.14], [-1536.94, -2467.5], [-1537.32, -2474.94], [-1544.29, -2474.59], [-1543.92, -2467.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1874.34, -2027.91], [-1870.75, -2034.43], [-1864.32, -2030.92], [-1867.91, -2024.39], [-1874.34, -2027.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1581.93, -2336.19], [-1576.95, -2336.71], [-1577.63, -2343.17], [-1582.6, -2342.66], [-1581.93, -2336.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1433.05, -2042.24], [-1440.01, -2046.22], [-1436.31, -2052.63], [-1429.35, -2048.65], [-1433.05, -2042.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1652.64, -2102.87], [-1646.86, -2113.73], [-1632.77, -2106.29], [-1638.54, -2095.44], [-1652.64, -2102.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1496.62, -1901.22], [-1489.08, -1897.1], [-1484.62, -1905.24], [-1492.15, -1909.35], [-1496.62, -1901.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1626.01, -2311.15], [-1621.48, -2310.57], [-1620.52, -2317.98], [-1625.04, -2318.56], [-1626.01, -2311.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1609.17, -2227.84], [-1604.88, -2228.22], [-1605.4, -2234.13], [-1609.69, -2233.75], [-1609.17, -2227.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1544.32, -2414.6], [-1551.96, -2414.29], [-1552.21, -2420.59], [-1544.58, -2420.91], [-1544.32, -2414.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1737.82, -2025.88], [-1747.82, -2031.17], [-1741.9, -2042.27], [-1731.91, -2037.0], [-1737.82, -2025.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1595.27, -2334.56], [-1594.87, -2342.5], [-1584.41, -2341.98], [-1584.81, -2334.04], [-1595.27, -2334.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1430.32, -2042.31], [-1427.24, -2040.66], [-1425.63, -2043.64], [-1428.71, -2045.3], [-1430.32, -2042.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1768.44, -2065.58], [-1761.91, -2061.97], [-1757.02, -2070.78], [-1763.55, -2074.38], [-1768.44, -2065.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1661.54, -2087.73], [-1655.43, -2098.94], [-1641.26, -2091.28], [-1647.38, -2080.07], [-1661.54, -2087.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1629.82, -2450.43], [-1630.87, -2445.19], [-1624.08, -2443.84], [-1623.03, -2449.08], [-1629.82, -2450.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1679.13, -1930.87], [-1673.7, -1927.94], [-1670.95, -1933.01], [-1676.37, -1935.95], [-1679.13, -1930.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1735.53, -2194.88], [-1744.19, -2200.94], [-1736.51, -2211.84], [-1727.85, -2205.78], [-1735.53, -2194.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1544.5, -2422.47], [-1551.78, -2422.15], [-1552.12, -2429.88], [-1544.83, -2430.2], [-1544.5, -2422.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1735.17, -2046.68], [-1728.39, -2042.94], [-1724.49, -2049.97], [-1731.27, -2053.71], [-1735.17, -2046.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1608.34, -2084.8], [-1585.93, -2072.16], [-1575.89, -2089.81], [-1598.31, -2102.46], [-1608.34, -2084.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1590.39, -2348.4], [-1599.63, -2349.58], [-1598.54, -2358.12], [-1589.29, -2356.95], [-1590.39, -2348.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1678.85, -2061.82], [-1662.26, -2052.69], [-1652.72, -2069.91], [-1669.31, -2079.03], [-1678.85, -2061.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1689.11, -2113.21], [-1699.41, -2118.91], [-1690.89, -2134.2], [-1680.59, -2128.49], [-1689.11, -2113.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1644.82, -2438.77], [-1635.76, -2437.07], [-1633.68, -2448.09], [-1644.29, -2450.07], [-1645.75, -2442.31], [-1644.2, -2442.02], [-1644.82, -2438.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1775.67, -1984.83], [-1770.06, -1981.76], [-1768.14, -1985.26], [-1763.23, -1982.58], [-1759.7, -1988.97], [-1770.22, -1994.72], [-1775.67, -1984.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1547.12, -2348.08], [-1547.56, -2357.9], [-1542.13, -2358.15], [-1542.18, -2359.09], [-1531.72, -2359.57], [-1531.23, -2348.8], [-1547.12, -2348.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1769.87, -1995.84], [-1763.72, -1992.49], [-1761.64, -1996.28], [-1760.45, -1995.63], [-1756.96, -2001.98], [-1764.3, -2005.99], [-1769.87, -1995.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1542.35, -2250.02], [-1542.62, -2256.33], [-1553.76, -2255.86], [-1553.37, -2246.89], [-1545.73, -2247.22], [-1545.84, -2249.87], [-1542.35, -2250.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1833.9, -2018.74], [-1828.21, -2015.61], [-1825.54, -2020.45], [-1823.29, -2019.22], [-1817.85, -2029.06], [-1825.79, -2033.41], [-1833.9, -2018.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1759.34, -2101.67], [-1755.57, -2108.84], [-1743.28, -2102.42], [-1744.56, -2099.98], [-1745.48, -2100.47], [-1747.97, -2095.74], [-1759.34, -2101.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1520.51, -2405.4], [-1529.69, -2405.06], [-1530.01, -2413.62], [-1533.95, -2413.48], [-1534.14, -2418.46], [-1521.0, -2418.95], [-1520.51, -2405.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1745.77, -1931.39], [-1742.76, -1937.17], [-1730.11, -1930.62], [-1734.35, -1922.48], [-1741.52, -1926.2], [-1740.3, -1928.56], [-1745.77, -1931.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1689.53, -2200.44], [-1697.84, -2204.86], [-1689.01, -2221.31], [-1683.86, -2218.57], [-1684.38, -2217.6], [-1681.23, -2215.93], [-1689.53, -2200.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1622.21, -2242.32], [-1612.88, -2247.22], [-1608.75, -2239.41], [-1609.9, -2238.81], [-1608.24, -2235.67], [-1616.42, -2231.38], [-1622.21, -2242.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1781.53, -2050.02], [-1778.53, -2055.75], [-1777.54, -2055.23], [-1774.56, -2060.9], [-1765.11, -2055.97], [-1771.09, -2044.57], [-1781.53, -2050.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1878.38, -2012.22], [-1882.78, -2004.14], [-1869.46, -1996.93], [-1868.9, -1997.94], [-1865.68, -1996.21], [-1861.84, -2003.27], [-1878.38, -2012.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1712.94, -2012.4], [-1706.36, -2024.52], [-1698.25, -2020.14], [-1705.34, -2007.11], [-1712.8, -2011.13], [-1712.31, -2012.05], [-1712.94, -2012.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1733.66, -1948.7], [-1730.06, -1955.59], [-1719.19, -1949.98], [-1720.24, -1947.96], [-1718.9, -1947.27], [-1721.44, -1942.38], [-1733.66, -1948.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1850.76, -1990.46], [-1847.36, -1996.86], [-1842.17, -1994.12], [-1841.58, -1995.2], [-1838.56, -1993.61], [-1842.54, -1986.13], [-1850.76, -1990.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1487.8, -1923.42], [-1481.18, -1919.79], [-1479.86, -1922.19], [-1478.08, -1921.2], [-1474.36, -1927.95], [-1482.77, -1932.55], [-1487.8, -1923.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1562.42, -2458.82], [-1557.38, -2458.85], [-1557.43, -2466.21], [-1565.8, -2466.15], [-1565.78, -2461.53], [-1562.44, -2461.54], [-1562.42, -2458.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1626.57, -2293.53], [-1625.15, -2304.98], [-1622.88, -2304.7], [-1622.44, -2308.26], [-1614.09, -2307.23], [-1615.94, -2292.24], [-1626.57, -2293.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1759.21, -2180.9], [-1748.81, -2173.66], [-1743.26, -2181.57], [-1742.05, -2180.72], [-1736.84, -2188.15], [-1750.39, -2197.59], [-1755.73, -2189.99], [-1753.78, -2188.62], [-1759.21, -2180.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1535.69, -2471.29], [-1528.18, -2471.68], [-1528.09, -2469.87], [-1523.95, -2470.08], [-1523.4, -2459.55], [-1536.77, -2458.85], [-1537.06, -2464.46], [-1535.34, -2464.55], [-1535.69, -2471.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1619.59, -2349.72], [-1617.56, -2361.17], [-1613.95, -2360.54], [-1613.81, -2361.36], [-1608.31, -2360.4], [-1608.46, -2359.57], [-1605.17, -2358.99], [-1607.2, -2347.54], [-1619.59, -2349.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1778.88, -1959.58], [-1786.35, -1963.51], [-1782.1, -1971.53], [-1774.62, -1967.6], [-1775.95, -1965.09], [-1773.15, -1963.62], [-1775.82, -1958.58], [-1778.62, -1960.06], [-1778.88, -1959.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1817.34, -1997.03], [-1815.37, -2000.52], [-1812.18, -1998.76], [-1810.56, -2001.64], [-1801.11, -1996.38], [-1805.39, -1988.74], [-1809.38, -1990.96], [-1808.67, -1992.21], [-1817.34, -1997.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1358.58, -2341.28], [-1350.48, -2336.48], [-1345.26, -2345.24], [-1353.37, -2350.03], [-1353.92, -2349.11], [-1357.48, -2351.21], [-1361.68, -2344.17], [-1358.12, -2342.06], [-1358.58, -2341.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1642.61, -2197.43], [-1651.24, -2202.19], [-1646.36, -2210.98], [-1637.72, -2206.23], [-1638.47, -2204.87], [-1634.66, -2202.78], [-1637.87, -2196.99], [-1641.68, -2199.09], [-1642.61, -2197.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1572.73, -2472.25], [-1573.11, -2482.71], [-1569.19, -2482.86], [-1569.23, -2483.82], [-1559.82, -2484.17], [-1559.32, -2470.56], [-1565.18, -2470.33], [-1565.26, -2472.53], [-1572.73, -2472.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1882.28, -2041.46], [-1874.94, -2054.28], [-1873.2, -2053.29], [-1871.36, -2056.51], [-1865.54, -2053.2], [-1867.38, -2049.98], [-1864.45, -2048.32], [-1871.77, -2035.49], [-1882.28, -2041.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1571.21, -2186.07], [-1573.07, -2194.66], [-1572.4, -2194.81], [-1573.21, -2198.53], [-1563.6, -2200.59], [-1562.68, -2196.36], [-1559.81, -2196.98], [-1558.06, -2188.9], [-1571.21, -2186.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1717.11, -2149.93], [-1727.41, -2155.47], [-1724.06, -2161.64], [-1724.55, -2161.91], [-1723.01, -2164.75], [-1722.52, -2164.49], [-1719.26, -2170.52], [-1708.96, -2164.98], [-1717.11, -2149.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1837.98, -2088.11], [-1844.13, -2080.82], [-1841.81, -2078.88], [-1842.12, -2078.5], [-1840.42, -2077.08], [-1840.11, -2077.45], [-1836.36, -2074.31], [-1830.22, -2081.61], [-1837.98, -2088.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1757.85, -1939.64], [-1753.97, -1946.78], [-1746.92, -1943.0], [-1750.8, -1935.84], [-1753.75, -1937.43], [-1754.53, -1935.99], [-1756.29, -1936.93], [-1755.5, -1938.37], [-1757.85, -1939.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1706.31, -2169.95], [-1715.27, -2174.77], [-1712.91, -2179.14], [-1715.96, -2180.76], [-1710.72, -2190.45], [-1705.67, -2187.73], [-1706.78, -2185.69], [-1699.83, -2181.96], [-1706.31, -2169.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1565.41, -2347.59], [-1565.76, -2356.74], [-1552.64, -2357.22], [-1552.29, -2348.07], [-1556.54, -2347.92], [-1556.39, -2344.03], [-1563.64, -2343.77], [-1563.78, -2347.65], [-1565.41, -2347.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1581.83, -2460.4], [-1581.93, -2467.87], [-1573.89, -2467.97], [-1573.79, -2460.51], [-1575.04, -2460.49], [-1575.01, -2457.85], [-1580.68, -2457.76], [-1580.72, -2460.41], [-1581.83, -2460.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1670.45, -2353.01], [-1666.66, -2366.09], [-1658.97, -2363.87], [-1660.1, -2359.96], [-1658.61, -2359.53], [-1658.83, -2358.76], [-1653.62, -2357.27], [-1656.05, -2348.87], [-1670.45, -2353.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1583.98, -2180.54], [-1588.22, -2188.47], [-1586.41, -2189.44], [-1588.05, -2192.51], [-1582.33, -2195.54], [-1580.7, -2192.48], [-1579.12, -2193.31], [-1574.87, -2185.38], [-1583.98, -2180.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1463.45, -1977.37], [-1459.37, -1985.11], [-1448.41, -1979.38], [-1450.36, -1975.68], [-1447.86, -1974.37], [-1450.3, -1969.75], [-1460.89, -1975.28], [-1460.57, -1975.88], [-1463.45, -1977.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1465.4, -2063.25], [-1460.82, -2071.39], [-1451.44, -2066.15], [-1450.28, -2068.2], [-1444.09, -2064.74], [-1448.21, -2057.41], [-1443.96, -2055.03], [-1445.58, -2052.16], [-1465.4, -2063.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1434.72, -2029.6], [-1431.27, -2035.47], [-1426.32, -2032.57], [-1425.87, -2033.34], [-1418.19, -2028.86], [-1422.26, -2021.94], [-1429.89, -2026.39], [-1429.72, -2026.69], [-1434.72, -2029.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1589.37, -2241.32], [-1582.69, -2241.63], [-1582.75, -2242.98], [-1576.51, -2243.27], [-1577.09, -2255.51], [-1586.02, -2255.09], [-1585.94, -2253.58], [-1589.94, -2253.39], [-1589.37, -2241.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1481.4, -1933.64], [-1473.54, -1929.5], [-1471.76, -1932.84], [-1470.51, -1932.18], [-1468.94, -1935.11], [-1470.2, -1935.78], [-1468.85, -1938.33], [-1476.71, -1942.47], [-1481.4, -1933.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1423.18, -2037.01], [-1418.28, -2045.75], [-1417.27, -2045.19], [-1415.93, -2047.59], [-1410.65, -2044.65], [-1411.99, -2042.25], [-1410.83, -2041.61], [-1415.73, -2032.87], [-1423.18, -2037.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1605.42, -2165.87], [-1615.09, -2176.82], [-1608.06, -2182.99], [-1603.93, -2178.31], [-1596.83, -2184.54], [-1590.46, -2177.33], [-1601.67, -2167.5], [-1602.49, -2168.44], [-1605.42, -2165.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1485.22, -1907.59], [-1493.57, -1912.2], [-1490.15, -1918.35], [-1492.01, -1919.36], [-1490.66, -1921.78], [-1488.81, -1920.76], [-1488.23, -1921.8], [-1479.87, -1917.18], [-1485.22, -1907.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1443.47, -1988.34], [-1447.27, -1990.47], [-1451.22, -1983.5], [-1458.16, -1987.39], [-1453.56, -1995.52], [-1451.7, -1994.46], [-1444.08, -2007.94], [-1435.21, -2002.96], [-1443.47, -1988.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1733.49, -2023.45], [-1724.72, -2018.79], [-1717.16, -2032.93], [-1719.71, -2034.29], [-1718.76, -2036.08], [-1722.13, -2037.86], [-1723.08, -2036.08], [-1725.93, -2037.58], [-1733.49, -2023.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1807.75, -2017.29], [-1805.01, -2022.09], [-1802.76, -2020.81], [-1801.45, -2023.12], [-1789.77, -2016.5], [-1791.82, -2012.9], [-1790.22, -2012.0], [-1792.22, -2008.5], [-1807.75, -2017.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1688.78, -1937.7], [-1682.12, -1934.26], [-1677.91, -1942.33], [-1678.87, -1942.83], [-1677.89, -1944.72], [-1682.85, -1947.29], [-1683.83, -1945.39], [-1684.58, -1945.78], [-1688.78, -1937.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1624.63, -2403.87], [-1621.92, -2414.54], [-1614.87, -2412.76], [-1615.51, -2410.25], [-1610.83, -2409.08], [-1613.37, -2399.07], [-1619.92, -2400.72], [-1619.45, -2402.56], [-1624.63, -2403.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1787.16, -2145.48], [-1778.08, -2138.37], [-1775.33, -2141.86], [-1773.41, -2140.36], [-1766.65, -2148.93], [-1770.52, -2151.95], [-1768.78, -2154.15], [-1775.92, -2159.74], [-1787.16, -2145.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1302.03, -2466.33], [-1299.04, -2471.28], [-1296.67, -2469.95], [-1295.26, -2472.54], [-1285.22, -2466.7], [-1286.12, -2465.08], [-1284.46, -2464.3], [-1282.17, -2468.58], [-1277.61, -2465.82], [-1284.76, -2453.7], [-1289.34, -2456.25], [-1288.03, -2458.39], [-1302.03, -2466.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1652.38, -2408.92], [-1643.99, -2406.97], [-1640.01, -2423.9], [-1648.39, -2425.86], [-1650.84, -2415.47], [-1652.09, -2415.76], [-1652.73, -2413.03], [-1651.48, -2412.75], [-1652.38, -2408.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1855.09, -2026.08], [-1848.02, -2022.48], [-1839.63, -2038.83], [-1845.26, -2041.7], [-1846.66, -2038.96], [-1849.26, -2040.29], [-1853.41, -2032.2], [-1852.26, -2031.61], [-1855.09, -2026.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1608.45, -2469.71], [-1608.81, -2478.86], [-1605.09, -2479.01], [-1605.18, -2481.49], [-1596.44, -2481.84], [-1596.35, -2479.36], [-1594.49, -2479.43], [-1594.13, -2470.28], [-1608.45, -2469.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1606.1, -2243.19], [-1606.54, -2250.89], [-1593.0, -2251.65], [-1592.18, -2237.08], [-1602.47, -2236.49], [-1602.67, -2240.02], [-1604.93, -2239.89], [-1605.12, -2243.25], [-1606.1, -2243.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1702.37, -1915.68], [-1698.59, -1922.57], [-1684.34, -1914.82], [-1683.04, -1917.17], [-1677.91, -1914.38], [-1681.27, -1908.25], [-1688.77, -1912.34], [-1690.48, -1909.21], [-1702.37, -1915.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1805.9, -2105.4], [-1813.93, -2112.53], [-1811.59, -2115.14], [-1812.64, -2116.07], [-1809.13, -2119.98], [-1808.09, -2119.06], [-1803.92, -2123.71], [-1795.89, -2116.58], [-1805.9, -2105.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1525.06, -2352.42], [-1525.62, -2362.26], [-1508.8, -2363.23], [-1508.45, -2357.09], [-1509.17, -2357.04], [-1509.07, -2355.2], [-1509.97, -2354.1], [-1519.52, -2353.55], [-1519.47, -2352.75], [-1525.06, -2352.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-542.7, -2082.2], [-551.5, -2081.57], [-551.82, -2086.08], [-553.5, -2085.95], [-553.93, -2091.93], [-550.09, -2092.21], [-550.43, -2096.87], [-540.18, -2097.6], [-539.21, -2084.07], [-542.81, -2083.81], [-542.7, -2082.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-558.65, -2127.13], [-559.01, -2131.35], [-557.92, -2131.45], [-558.43, -2137.63], [-548.96, -2138.42], [-548.12, -2128.53], [-543.57, -2128.91], [-543.14, -2123.84], [-548.85, -2123.36], [-549.24, -2127.92], [-558.65, -2127.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-598.0, -2113.23], [-597.59, -2107.86], [-594.51, -2108.09], [-594.37, -2106.23], [-592.61, -2106.37], [-592.55, -2105.56], [-583.93, -2106.19], [-584.17, -2109.36], [-582.19, -2109.51], [-582.56, -2114.37], [-598.0, -2113.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-470.32, -2363.75], [-477.11, -2363.49], [-477.4, -2371.06], [-477.86, -2371.04], [-478.32, -2382.84], [-476.47, -2382.91], [-476.48, -2383.33], [-470.53, -2383.56], [-470.05, -2371.22], [-470.61, -2371.2], [-470.32, -2363.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-481.88, -2321.73], [-482.38, -2332.43], [-476.17, -2332.73], [-475.93, -2327.9], [-474.38, -2327.98], [-474.11, -2322.1], [-474.66, -2322.07], [-474.56, -2319.8], [-481.16, -2319.49], [-481.27, -2321.76], [-481.88, -2321.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-572.03, -2015.71], [-581.71, -2014.58], [-582.77, -2023.66], [-574.49, -2024.64], [-574.29, -2023.01], [-573.2, -2023.13], [-572.91, -2020.74], [-574.0, -2020.6], [-573.81, -2018.93], [-572.43, -2019.09], [-572.03, -2015.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-552.92, -2067.73], [-553.31, -2075.41], [-551.88, -2075.48], [-551.94, -2076.53], [-541.03, -2077.08], [-540.88, -2074.06], [-538.21, -2074.19], [-538.0, -2069.96], [-540.66, -2069.82], [-540.59, -2068.36], [-552.92, -2067.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-607.97, -2361.9], [-602.51, -2362.07], [-602.61, -2365.21], [-599.21, -2365.32], [-599.45, -2373.48], [-603.15, -2373.36], [-603.32, -2378.64], [-601.99, -2378.68], [-602.13, -2383.21], [-608.63, -2383.01], [-607.97, -2361.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-556.3, -2100.25], [-546.89, -2101.19], [-547.5, -2107.25], [-544.51, -2107.55], [-544.97, -2112.17], [-538.1, -2112.85], [-538.7, -2118.78], [-545.3, -2118.13], [-544.98, -2114.85], [-557.63, -2113.6], [-556.3, -2100.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-530.04, -2314.64], [-530.61, -2325.08], [-526.84, -2325.29], [-526.7, -2322.79], [-524.58, -2322.91], [-524.8, -2327.17], [-523.89, -2327.21], [-524.0, -2329.23], [-519.91, -2329.46], [-519.8, -2327.44], [-519.16, -2327.47], [-518.5, -2315.26], [-530.04, -2314.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-553.32, -2371.67], [-548.9, -2371.84], [-548.98, -2373.9], [-544.27, -2374.08], [-544.52, -2380.61], [-547.03, -2380.52], [-547.19, -2384.67], [-551.95, -2384.49], [-551.89, -2383.06], [-555.31, -2382.93], [-555.1, -2377.54], [-553.55, -2377.61], [-553.32, -2371.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-514.66, -2090.66], [-514.8, -2094.62], [-518.2, -2094.5], [-518.33, -2098.13], [-511.87, -2098.36], [-511.95, -2100.64], [-499.01, -2101.1], [-498.66, -2091.23], [-501.94, -2091.11], [-501.75, -2085.7], [-507.87, -2085.49], [-508.06, -2090.89], [-514.66, -2090.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-514.61, -2118.69], [-514.77, -2122.25], [-511.48, -2122.39], [-511.57, -2124.36], [-514.86, -2124.21], [-515.1, -2129.54], [-511.81, -2129.69], [-511.86, -2130.88], [-499.74, -2131.42], [-499.36, -2122.83], [-509.29, -2122.39], [-509.14, -2118.94], [-514.61, -2118.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-547.86, -2144.02], [-559.28, -2143.21], [-559.3, -2143.55], [-560.62, -2143.46], [-561.04, -2149.3], [-559.72, -2149.4], [-560.28, -2157.09], [-553.84, -2157.55], [-553.65, -2154.84], [-552.63, -2154.91], [-552.38, -2151.34], [-548.4, -2151.62], [-547.86, -2144.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-549.39, -2043.49], [-549.53, -2046.38], [-551.31, -2046.28], [-551.57, -2051.4], [-549.79, -2051.48], [-549.83, -2052.31], [-537.08, -2052.95], [-536.97, -2050.76], [-534.34, -2050.89], [-534.14, -2046.92], [-536.78, -2046.79], [-536.64, -2044.13], [-549.39, -2043.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-586.14, -2315.16], [-582.44, -2315.37], [-582.42, -2315.08], [-581.08, -2313.53], [-578.57, -2313.67], [-577.24, -2315.36], [-577.25, -2315.65], [-576.63, -2315.69], [-577.43, -2330.15], [-580.28, -2329.99], [-580.45, -2333.13], [-584.15, -2332.92], [-583.98, -2329.79], [-586.93, -2329.63], [-586.14, -2315.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-605.14, -2310.8], [-605.2, -2312.5], [-605.92, -2312.48], [-606.26, -2322.76], [-605.54, -2322.78], [-605.65, -2325.87], [-601.37, -2326.01], [-601.46, -2328.66], [-596.06, -2328.84], [-595.84, -2322.14], [-597.6, -2322.08], [-597.29, -2313.06], [-597.91, -2313.04], [-597.84, -2311.04], [-605.14, -2310.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-638.71, -2311.11], [-633.39, -2311.35], [-633.58, -2315.61], [-632.26, -2315.67], [-632.51, -2321.22], [-633.83, -2321.16], [-633.99, -2324.86], [-634.41, -2324.85], [-634.57, -2328.3], [-640.15, -2328.05], [-639.84, -2321.16], [-641.38, -2321.08], [-641.11, -2315.1], [-638.9, -2315.19], [-638.71, -2311.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-516.6, -2149.1], [-516.92, -2157.83], [-513.79, -2157.94], [-513.82, -2158.99], [-511.47, -2159.07], [-511.53, -2160.85], [-503.58, -2161.14], [-503.51, -2159.43], [-500.9, -2159.52], [-500.65, -2152.72], [-503.26, -2152.62], [-503.22, -2151.37], [-510.2, -2151.12], [-510.13, -2149.34], [-516.6, -2149.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-503.1, -2241.11], [-503.6, -2248.91], [-503.15, -2248.94], [-503.39, -2252.67], [-499.05, -2252.95], [-498.96, -2251.56], [-497.67, -2251.64], [-497.53, -2249.54], [-493.61, -2249.8], [-493.5, -2248.01], [-491.06, -2248.17], [-490.74, -2243.24], [-493.42, -2243.08], [-493.39, -2242.53], [-498.26, -2242.22], [-498.21, -2241.43], [-503.1, -2241.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-517.24, -2020.54], [-517.51, -2027.02], [-511.29, -2027.29], [-511.02, -2020.8], [-517.24, -2020.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-564.76, -2372.33], [-557.49, -2372.74], [-558.15, -2384.42], [-565.42, -2384.02], [-564.76, -2372.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-534.52, -2173.95], [-528.74, -2174.23], [-529.41, -2188.1], [-535.18, -2187.83], [-534.52, -2173.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-607.88, -2335.84], [-600.6, -2336.22], [-601.07, -2344.98], [-608.35, -2344.59], [-607.88, -2335.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-579.47, -2351.54], [-579.62, -2355.69], [-573.24, -2355.93], [-573.08, -2351.78], [-579.47, -2351.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-549.69, -2055.95], [-550.1, -2063.99], [-540.78, -2064.47], [-540.35, -2056.44], [-549.69, -2055.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-486.93, -2257.04], [-487.18, -2262.16], [-479.33, -2262.55], [-479.08, -2257.43], [-486.93, -2257.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-544.32, -2167.03], [-538.49, -2167.33], [-539.52, -2187.9], [-545.36, -2187.6], [-544.32, -2167.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-582.68, -2039.87], [-576.81, -2040.45], [-577.66, -2049.03], [-583.53, -2048.45], [-582.68, -2039.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-616.02, -2339.42], [-616.3, -2344.87], [-609.54, -2345.23], [-609.25, -2339.78], [-616.02, -2339.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-609.13, -2351.03], [-601.77, -2351.28], [-602.04, -2358.69], [-609.4, -2358.42], [-609.13, -2351.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-519.09, -2023.71], [-525.49, -2023.13], [-526.13, -2029.97], [-519.73, -2030.55], [-519.09, -2023.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-548.81, -2315.36], [-549.29, -2325.33], [-537.89, -2325.87], [-537.41, -2315.89], [-548.81, -2315.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-641.09, -2350.31], [-641.4, -2357.57], [-634.19, -2357.87], [-633.88, -2350.61], [-641.09, -2350.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-486.46, -2250.12], [-486.63, -2256.32], [-480.63, -2256.49], [-480.45, -2250.29], [-486.46, -2250.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-590.63, -2332.52], [-584.44, -2332.89], [-584.84, -2339.53], [-591.04, -2339.15], [-590.63, -2332.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-510.45, -2353.73], [-510.82, -2360.89], [-501.27, -2361.37], [-500.9, -2354.21], [-510.45, -2353.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-560.93, -2159.15], [-566.82, -2158.63], [-567.62, -2167.48], [-561.73, -2168.01], [-560.93, -2159.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-634.92, -2337.04], [-628.19, -2337.32], [-628.49, -2344.23], [-635.22, -2343.94], [-634.92, -2337.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-626.68, -2354.89], [-621.0, -2355.05], [-621.22, -2362.71], [-626.9, -2362.55], [-626.68, -2354.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-568.15, -2316.79], [-559.62, -2317.11], [-560.09, -2329.51], [-568.62, -2329.19], [-568.15, -2316.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-511.54, -2060.97], [-512.02, -2071.15], [-498.38, -2071.78], [-497.9, -2061.6], [-511.54, -2060.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-589.91, -2065.32], [-590.72, -2073.6], [-580.02, -2074.65], [-579.19, -2066.37], [-589.91, -2065.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-546.93, -2017.91], [-547.3, -2024.42], [-538.57, -2024.9], [-538.21, -2018.39], [-546.93, -2017.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-570.96, -2169.28], [-571.41, -2179.07], [-560.4, -2179.57], [-559.95, -2169.78], [-570.96, -2169.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-489.68, -2318.97], [-498.19, -2318.69], [-498.57, -2329.95], [-490.05, -2330.23], [-489.68, -2318.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-506.68, -2044.59], [-497.49, -2045.08], [-498.08, -2056.18], [-507.27, -2055.69], [-506.68, -2044.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-580.41, -2003.27], [-581.28, -2011.08], [-573.01, -2012.01], [-572.14, -2004.2], [-580.41, -2003.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-491.09, -2360.97], [-486.03, -2361.33], [-486.46, -2367.58], [-491.52, -2367.23], [-491.09, -2360.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-629.37, -2272.87], [-626.0, -2273.0], [-626.23, -2278.88], [-629.6, -2278.75], [-629.37, -2272.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-512.84, -2168.64], [-513.09, -2173.34], [-504.86, -2173.79], [-504.59, -2169.09], [-512.84, -2168.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-510.48, -2135.81], [-500.27, -2136.1], [-500.57, -2146.66], [-510.78, -2146.36], [-510.48, -2135.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-521.17, -2142.91], [-521.49, -2148.24], [-513.89, -2148.69], [-513.58, -2143.36], [-521.17, -2142.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-594.34, -1992.55], [-594.82, -1996.69], [-589.8, -1997.27], [-589.33, -1993.13], [-594.34, -1992.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-599.81, -2096.4], [-600.22, -2099.86], [-595.49, -2100.43], [-595.07, -2096.97], [-599.81, -2096.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-593.26, -1964.43], [-593.76, -1968.86], [-587.88, -1969.51], [-587.38, -1965.08], [-593.26, -1964.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-601.36, -2101.15], [-601.95, -2105.98], [-595.35, -2106.77], [-594.77, -2101.94], [-601.36, -2101.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-501.46, -2219.74], [-491.72, -2220.14], [-492.53, -2239.84], [-502.27, -2239.44], [-501.46, -2219.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-583.89, -2028.46], [-584.26, -2031.74], [-589.18, -2031.18], [-589.72, -2035.98], [-575.1, -2037.63], [-574.19, -2029.55], [-583.89, -2028.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-506.15, -2031.59], [-506.54, -2040.7], [-501.86, -2040.9], [-501.93, -2042.37], [-495.31, -2042.66], [-494.85, -2032.08], [-506.15, -2031.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-508.39, -2371.7], [-508.72, -2380.05], [-498.18, -2380.46], [-497.69, -2367.81], [-505.12, -2367.53], [-505.28, -2371.83], [-508.39, -2371.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-548.97, -2040.51], [-548.64, -2031.62], [-539.74, -2031.96], [-539.87, -2035.37], [-537.0, -2035.47], [-537.21, -2040.96], [-548.97, -2040.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-491.24, -2282.92], [-491.46, -2289.69], [-481.52, -2290.0], [-481.22, -2280.5], [-486.82, -2280.32], [-486.9, -2283.05], [-491.24, -2282.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-582.37, -1988.69], [-582.88, -1993.42], [-579.45, -1993.78], [-579.85, -1997.5], [-571.62, -1998.39], [-570.71, -1989.95], [-582.37, -1988.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-533.16, -2372.03], [-525.33, -2372.37], [-525.9, -2385.55], [-533.13, -2385.25], [-533.05, -2383.58], [-533.66, -2383.57], [-533.16, -2372.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-509.09, -2106.33], [-500.61, -2106.66], [-500.74, -2110.33], [-498.85, -2110.4], [-499.12, -2117.29], [-509.5, -2116.89], [-509.09, -2106.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-529.91, -2355.56], [-520.91, -2355.99], [-521.34, -2365.08], [-524.45, -2364.93], [-524.59, -2368.19], [-530.47, -2367.92], [-529.91, -2355.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-621.32, -2366.37], [-627.1, -2366.1], [-627.82, -2381.43], [-616.62, -2381.95], [-616.24, -2373.96], [-621.66, -2373.7], [-621.32, -2366.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-528.01, -2175.77], [-522.88, -2175.95], [-523.23, -2185.99], [-520.64, -2186.07], [-520.78, -2189.88], [-523.36, -2189.79], [-523.49, -2193.47], [-528.62, -2193.29], [-528.01, -2175.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-586.7, -2052.55], [-577.69, -2053.43], [-577.97, -2056.45], [-576.81, -2056.56], [-577.08, -2059.33], [-578.25, -2059.22], [-578.53, -2062.12], [-587.55, -2061.24], [-586.7, -2052.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-547.39, -1996.82], [-548.0, -2004.28], [-538.8, -2005.03], [-538.39, -1999.91], [-536.34, -2000.08], [-536.09, -1997.02], [-542.06, -1996.54], [-542.12, -1997.24], [-547.39, -1996.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-503.56, -2013.81], [-495.28, -2014.13], [-495.43, -2017.96], [-494.43, -2018.0], [-494.53, -2020.67], [-495.53, -2020.63], [-495.69, -2024.52], [-503.97, -2024.2], [-503.56, -2013.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-633.16, -2369.67], [-633.52, -2379.81], [-634.88, -2379.76], [-634.94, -2381.78], [-639.91, -2381.61], [-639.84, -2379.59], [-642.8, -2379.49], [-642.45, -2369.35], [-633.16, -2369.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-584.81, -2364.29], [-575.98, -2364.61], [-576.54, -2380.22], [-579.36, -2380.13], [-579.4, -2381.34], [-582.24, -2381.24], [-582.17, -2379.3], [-585.34, -2379.18], [-584.81, -2364.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-506.19, -2280.87], [-506.45, -2288.67], [-503.03, -2288.77], [-503.06, -2289.62], [-500.76, -2289.69], [-500.73, -2288.86], [-497.01, -2288.99], [-496.75, -2281.2], [-506.19, -2280.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-481.25, -2374.22], [-489.82, -2373.85], [-489.92, -2376.15], [-488.77, -2376.2], [-489.05, -2382.95], [-490.2, -2382.89], [-490.32, -2385.6], [-481.75, -2385.97], [-481.25, -2374.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-589.49, -2079.7], [-589.57, -2080.52], [-594.09, -2080.13], [-594.6, -2085.88], [-590.08, -2086.29], [-590.19, -2087.48], [-581.08, -2088.28], [-580.39, -2080.51], [-589.49, -2079.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-643.14, -2276.56], [-639.38, -2276.71], [-639.36, -2276.27], [-631.01, -2276.61], [-631.36, -2285.05], [-634.72, -2284.91], [-634.77, -2286.06], [-643.51, -2285.71], [-643.14, -2276.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-621.09, -2309.62], [-613.25, -2309.83], [-613.62, -2323.47], [-614.75, -2323.44], [-614.9, -2329.16], [-620.64, -2329.0], [-620.43, -2321.4], [-621.4, -2321.37], [-621.09, -2309.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-510.97, -2176.2], [-511.46, -2186.39], [-507.48, -2186.58], [-507.56, -2188.24], [-502.97, -2188.46], [-502.84, -2185.86], [-502.2, -2185.89], [-501.76, -2176.64], [-510.97, -2176.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-592.84, -2090.92], [-593.3, -2095.9], [-590.15, -2096.19], [-590.53, -2100.25], [-581.1, -2101.14], [-580.45, -2094.29], [-589.45, -2093.44], [-589.24, -2091.26], [-592.84, -2090.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-504.22, -2259.2], [-496.96, -2259.53], [-497.31, -2267.25], [-504.57, -2266.92], [-504.53, -2265.85], [-506.53, -2265.76], [-506.3, -2260.69], [-504.29, -2260.79], [-504.22, -2259.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-254.17, -2350.61], [-254.48, -2356.81], [-253.21, -2356.88], [-253.42, -2360.93], [-243.2, -2361.43], [-242.85, -2354.17], [-243.73, -2354.12], [-243.54, -2350.33], [-248.07, -2350.1], [-248.11, -2350.91], [-254.17, -2350.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-251.23, -2190.04], [-251.5, -2198.34], [-241.2, -2198.69], [-241.0, -2192.67], [-243.83, -2192.57], [-243.75, -2190.29], [-247.32, -2190.17], [-247.24, -2188.05], [-250.25, -2187.94], [-250.32, -2190.07], [-251.23, -2190.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-195.6, -2323.38], [-164.63, -2324.76], [-165.47, -2343.76], [-162.23, -2343.91], [-161.74, -2332.94], [-138.59, -2333.98], [-138.85, -2339.72], [-124.45, -2340.36], [-124.71, -2346.16], [-123.24, -2346.22], [-123.57, -2353.5], [-125.07, -2353.44], [-125.35, -2359.59], [-163.02, -2357.89], [-162.78, -2352.72], [-165.87, -2352.59], [-167.89, -2397.63], [-198.87, -2396.25], [-195.6, -2323.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-180.43, -2176.23], [-182.28, -2177.38], [-184.04, -2175.13], [-186.55, -2173.42], [-188.82, -2172.44], [-190.94, -2171.88], [-190.78, -2169.98], [-219.04, -2168.63], [-219.67, -2182.83], [-210.5, -2183.09], [-210.61, -2187.17], [-200.13, -2187.61], [-197.3, -2189.89], [-194.56, -2191.49], [-191.23, -2192.74], [-185.61, -2201.68], [-182.34, -2199.63], [-177.38, -2207.52], [-175.73, -2206.47], [-174.93, -2207.75], [-166.47, -2202.47], [-167.27, -2201.2], [-165.45, -2200.06], [-180.43, -2176.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-256.31, -2333.2], [-256.68, -2343.37], [-245.8, -2343.75], [-245.44, -2333.58], [-256.31, -2333.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-238.0, -2329.89], [-230.2, -2330.17], [-230.47, -2337.89], [-238.28, -2337.62], [-238.0, -2329.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-236.17, -2186.55], [-236.59, -2198.69], [-227.75, -2198.99], [-227.32, -2186.86], [-236.17, -2186.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-253.19, -2312.3], [-253.79, -2323.96], [-244.52, -2324.43], [-243.91, -2312.78], [-253.19, -2312.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-238.47, -2286.53], [-232.6, -2286.75], [-232.82, -2292.46], [-238.68, -2292.23], [-238.47, -2286.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-237.83, -2233.4], [-230.71, -2233.7], [-231.03, -2241.31], [-238.15, -2241.01], [-237.83, -2233.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-132.84, -2375.73], [-133.98, -2402.05], [-97.19, -2403.64], [-96.05, -2377.32], [-132.84, -2375.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-258.2, -2384.51], [-258.49, -2392.38], [-244.89, -2392.88], [-244.61, -2385.0], [-258.2, -2384.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-148.33, -2565.95], [-160.2, -2550.27], [-110.61, -2513.01], [-98.73, -2528.69], [-148.33, -2565.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-249.86, -2147.69], [-250.36, -2158.61], [-239.39, -2159.11], [-238.98, -2150.22], [-244.01, -2149.98], [-243.91, -2147.96], [-249.86, -2147.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-242.85, -2263.73], [-247.24, -2263.54], [-247.32, -2265.49], [-251.11, -2265.33], [-251.49, -2274.21], [-243.32, -2274.56], [-242.85, -2263.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-239.05, -2167.2], [-235.18, -2167.37], [-235.31, -2170.15], [-234.1, -2170.2], [-234.36, -2175.74], [-239.43, -2175.52], [-239.05, -2167.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-211.16, -2228.25], [-217.3, -2228.0], [-217.72, -2237.99], [-218.22, -2237.98], [-218.91, -2254.27], [-212.27, -2254.55], [-211.16, -2228.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-116.86, -2435.61], [-117.28, -2446.0], [-123.13, -2446.59], [-121.67, -2459.53], [-85.27, -2456.12], [-86.45, -2446.46], [-80.67, -2446.7], [-80.28, -2437.08], [-116.86, -2435.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-258.02, -2372.4], [-258.22, -2380.99], [-244.59, -2381.32], [-244.51, -2378.27], [-243.37, -2378.31], [-243.28, -2374.77], [-244.43, -2374.74], [-244.38, -2372.73], [-258.02, -2372.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-254.78, -2295.16], [-255.13, -2303.4], [-243.17, -2303.9], [-243.13, -2302.95], [-240.34, -2303.07], [-240.12, -2297.78], [-242.91, -2297.67], [-242.83, -2295.66], [-254.78, -2295.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-251.66, -2277.98], [-251.96, -2285.62], [-239.77, -2286.08], [-239.49, -2278.44], [-242.77, -2278.31], [-242.74, -2277.56], [-247.87, -2277.37], [-247.9, -2278.12], [-251.66, -2277.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-235.71, -2147.62], [-226.75, -2147.88], [-227.15, -2161.43], [-229.39, -2161.37], [-229.44, -2162.95], [-233.21, -2162.84], [-233.16, -2161.26], [-236.11, -2161.17], [-235.71, -2147.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-251.28, -2237.58], [-241.46, -2237.97], [-242.12, -2254.77], [-247.26, -2254.57], [-247.37, -2257.51], [-252.78, -2257.3], [-252.49, -2250.12], [-251.78, -2250.15], [-251.28, -2237.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-388.89, -2332.19], [-388.99, -2335.19], [-387.89, -2335.23], [-388.09, -2340.93], [-383.04, -2341.09], [-382.97, -2338.93], [-378.65, -2339.07], [-378.72, -2341.24], [-372.35, -2341.45], [-372.07, -2332.75], [-388.89, -2332.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-395.94, -2420.19], [-396.47, -2435.31], [-391.09, -2435.49], [-391.0, -2432.76], [-387.86, -2432.87], [-387.42, -2420.49], [-390.71, -2420.39], [-390.64, -2418.36], [-395.56, -2418.18], [-395.62, -2420.21], [-395.94, -2420.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-470.77, -2415.08], [-471.04, -2420.16], [-471.4, -2420.14], [-471.67, -2425.49], [-466.54, -2425.74], [-466.5, -2424.99], [-461.78, -2425.22], [-461.25, -2414.92], [-464.69, -2414.75], [-464.73, -2415.38], [-470.77, -2415.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-294.91, -2334.64], [-295.24, -2342.69], [-288.95, -2342.94], [-289.02, -2344.68], [-280.96, -2345.01], [-280.79, -2340.78], [-282.34, -2340.71], [-282.13, -2335.62], [-289.72, -2335.32], [-289.7, -2334.85], [-294.91, -2334.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-485.03, -2416.39], [-485.45, -2425.55], [-484.86, -2425.58], [-484.99, -2428.3], [-480.57, -2428.5], [-480.49, -2426.9], [-476.17, -2427.1], [-475.67, -2416.2], [-478.68, -2416.07], [-478.7, -2416.68], [-485.03, -2416.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-418.93, -2416.64], [-419.43, -2426.76], [-411.97, -2427.13], [-411.79, -2423.37], [-410.97, -2423.4], [-410.66, -2417.05], [-412.69, -2416.95], [-412.61, -2415.35], [-415.99, -2415.18], [-416.07, -2416.79], [-418.93, -2416.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-453.97, -2370.46], [-454.22, -2376.6], [-452.91, -2376.66], [-453.25, -2385.47], [-445.39, -2385.78], [-445.19, -2380.83], [-444.75, -2380.84], [-444.53, -2375.19], [-447.16, -2375.08], [-446.98, -2370.73], [-453.97, -2370.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-314.75, -2384.34], [-315.36, -2396.68], [-286.54, -2398.1], [-286.5, -2397.26], [-284.86, -2397.34], [-284.72, -2394.54], [-282.84, -2394.63], [-282.61, -2389.95], [-284.49, -2389.86], [-284.29, -2385.85], [-314.75, -2384.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-389.7, -2319.68], [-389.96, -2326.16], [-387.97, -2326.24], [-388.02, -2327.27], [-384.45, -2327.41], [-384.5, -2328.57], [-377.45, -2328.86], [-377.32, -2325.75], [-375.67, -2325.82], [-375.56, -2323.1], [-377.2, -2323.03], [-377.09, -2320.21], [-389.7, -2319.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-418.47, -2374.36], [-418.94, -2385.7], [-416.88, -2385.79], [-416.94, -2387.22], [-408.61, -2387.56], [-408.41, -2382.51], [-410.16, -2382.43], [-409.85, -2374.76], [-410.25, -2374.75], [-410.12, -2371.61], [-417.69, -2371.31], [-417.82, -2374.38], [-418.47, -2374.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-388.12, -2343.09], [-388.15, -2343.75], [-390.46, -2343.65], [-390.77, -2350.78], [-388.45, -2350.87], [-388.49, -2351.54], [-376.97, -2352.03], [-376.94, -2351.36], [-375.26, -2351.43], [-375.11, -2347.9], [-376.78, -2347.82], [-376.6, -2343.59], [-388.12, -2343.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-347.15, -2424.25], [-347.48, -2431.38], [-344.78, -2431.5], [-344.91, -2434.36], [-340.76, -2434.56], [-340.63, -2431.69], [-337.94, -2431.82], [-337.84, -2430.04], [-332.82, -2430.27], [-332.54, -2424.24], [-337.75, -2423.99], [-337.79, -2424.68], [-347.15, -2424.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-388.56, -2355.26], [-388.58, -2355.74], [-390.97, -2355.64], [-391.28, -2363.01], [-388.89, -2363.11], [-388.92, -2363.87], [-377.87, -2364.32], [-377.84, -2363.45], [-375.8, -2363.53], [-375.52, -2356.94], [-377.56, -2356.86], [-377.51, -2355.72], [-388.56, -2355.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-310.27, -2497.96], [-310.64, -2505.62], [-306.12, -2505.84], [-306.09, -2505.07], [-304.28, -2505.17], [-304.37, -2506.86], [-293.11, -2507.4], [-292.97, -2504.58], [-291.66, -2504.64], [-291.38, -2498.81], [-303.93, -2498.21], [-304.04, -2500.33], [-306.05, -2500.24], [-305.96, -2498.18], [-310.27, -2497.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-443.51, -2375.03], [-443.7, -2379.81], [-443.15, -2379.83], [-443.31, -2384.02], [-441.29, -2384.09], [-441.35, -2385.51], [-436.22, -2385.7], [-436.05, -2381.35], [-435.17, -2381.39], [-434.9, -2374.16], [-435.31, -2374.15], [-435.22, -2371.72], [-442.4, -2371.44], [-442.54, -2375.06], [-443.51, -2375.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-390.17, -2376.79], [-390.13, -2376.03], [-392.41, -2375.94], [-392.15, -2370.2], [-391.56, -2370.23], [-391.5, -2368.84], [-389.8, -2368.91], [-389.72, -2367.17], [-376.44, -2367.77], [-376.58, -2370.92], [-373.69, -2371.06], [-373.97, -2377.17], [-376.86, -2377.05], [-376.87, -2377.4], [-390.17, -2376.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-506.14, -2413.88], [-513.78, -2413.55], [-513.89, -2415.82], [-514.48, -2415.79], [-515.03, -2428.45], [-512.19, -2428.58], [-512.29, -2430.92], [-508.03, -2431.1], [-507.93, -2428.76], [-506.04, -2428.84], [-505.92, -2426.0], [-504.98, -2426.04], [-504.75, -2420.77], [-505.69, -2420.73], [-505.5, -2416.33], [-506.24, -2416.3], [-506.14, -2413.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-430.38, -2358.72], [-430.62, -2365.39], [-437.93, -2365.13], [-437.69, -2358.45], [-430.38, -2358.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-326.82, -2425.75], [-327.05, -2435.12], [-320.05, -2435.29], [-319.83, -2425.92], [-326.82, -2425.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-376.4, -2310.43], [-376.69, -2316.82], [-390.45, -2316.22], [-390.16, -2309.81], [-376.4, -2310.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-506.39, -2434.16], [-506.68, -2438.97], [-499.92, -2439.38], [-499.63, -2434.57], [-506.39, -2434.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-317.49, -2461.54], [-317.69, -2466.94], [-310.58, -2467.2], [-310.39, -2461.78], [-317.49, -2461.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-442.08, -2341.77], [-442.36, -2348.01], [-435.2, -2348.32], [-434.93, -2342.08], [-442.08, -2341.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-299.48, -2457.76], [-299.89, -2465.43], [-290.61, -2465.92], [-290.2, -2458.26], [-299.48, -2457.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-421.44, -2342.31], [-421.75, -2349.38], [-430.01, -2349.01], [-429.69, -2341.95], [-421.44, -2342.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-371.04, -2347.66], [-371.28, -2354.57], [-363.7, -2354.85], [-363.45, -2347.93], [-371.04, -2347.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-493.42, -2439.32], [-497.68, -2439.2], [-497.55, -2434.58], [-493.29, -2434.7], [-493.42, -2439.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-326.54, -2368.53], [-331.16, -2368.32], [-331.44, -2374.41], [-326.82, -2374.62], [-326.54, -2368.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-306.16, -2435.93], [-306.46, -2442.39], [-300.68, -2442.66], [-300.37, -2436.2], [-306.16, -2435.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-375.67, -2445.22], [-376.09, -2452.12], [-369.21, -2452.54], [-368.8, -2445.64], [-375.67, -2445.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-447.76, -2442.86], [-453.09, -2442.73], [-453.28, -2449.81], [-447.94, -2449.94], [-447.76, -2442.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-394.41, -2454.72], [-387.23, -2455.08], [-387.61, -2462.74], [-394.79, -2462.38], [-394.41, -2454.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-430.45, -2374.67], [-423.43, -2375.24], [-424.52, -2388.55], [-431.54, -2387.98], [-430.45, -2374.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-418.51, -2356.71], [-418.74, -2361.71], [-412.35, -2362.0], [-412.13, -2357.0], [-418.51, -2356.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-418.04, -2444.36], [-418.22, -2448.88], [-411.5, -2449.15], [-411.31, -2444.63], [-418.04, -2444.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-324.02, -2374.1], [-316.38, -2374.43], [-317.17, -2392.66], [-324.81, -2392.33], [-324.02, -2374.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-388.63, -2296.57], [-388.98, -2305.41], [-377.67, -2305.84], [-377.33, -2297.0], [-388.63, -2296.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-344.68, -2470.34], [-344.9, -2476.41], [-337.8, -2476.65], [-337.59, -2470.6], [-344.68, -2470.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-314.91, -2472.66], [-315.11, -2478.33], [-307.85, -2478.59], [-307.64, -2472.92], [-314.91, -2472.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-446.01, -2442.3], [-440.51, -2442.55], [-440.81, -2449.39], [-446.31, -2449.16], [-446.01, -2442.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-373.66, -2380.48], [-373.99, -2388.03], [-366.29, -2388.36], [-365.97, -2380.81], [-373.66, -2380.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-461.57, -2362.87], [-461.29, -2358.05], [-455.83, -2358.37], [-456.11, -2363.19], [-461.57, -2362.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-380.6, -2453.42], [-380.8, -2457.25], [-373.7, -2457.62], [-373.51, -2453.79], [-380.6, -2453.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-335.32, -2469.31], [-335.67, -2476.67], [-328.4, -2477.02], [-328.06, -2469.66], [-335.32, -2469.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-366.58, -2319.15], [-366.77, -2323.34], [-360.66, -2323.6], [-360.47, -2319.42], [-366.58, -2319.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-300.28, -2469.86], [-300.7, -2477.76], [-291.08, -2478.25], [-290.68, -2470.36], [-300.28, -2469.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-423.8, -2416.63], [-430.52, -2416.41], [-430.89, -2427.5], [-424.17, -2427.73], [-423.8, -2416.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-392.83, -2381.54], [-393.22, -2390.78], [-378.75, -2391.41], [-378.35, -2382.17], [-392.83, -2381.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-291.23, -2348.48], [-291.46, -2354.9], [-283.19, -2355.2], [-282.95, -2348.78], [-291.23, -2348.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-334.37, -2480.39], [-334.82, -2491.43], [-322.54, -2491.94], [-322.08, -2480.89], [-334.37, -2480.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-488.32, -2417.56], [-496.45, -2417.37], [-496.7, -2428.11], [-488.57, -2428.3], [-488.32, -2417.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-300.88, -2328.09], [-301.02, -2332.72], [-305.82, -2332.58], [-305.69, -2327.95], [-300.88, -2328.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-371.41, -2372.53], [-371.66, -2379.36], [-364.4, -2379.62], [-364.16, -2372.79], [-371.41, -2372.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-340.33, -2374.84], [-348.22, -2374.55], [-348.72, -2388.64], [-340.84, -2388.93], [-340.33, -2374.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-479.84, -2436.99], [-474.92, -2437.19], [-475.17, -2443.72], [-480.1, -2443.52], [-479.84, -2436.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-429.13, -2359.24], [-424.6, -2359.37], [-424.78, -2365.52], [-429.31, -2365.4], [-429.13, -2359.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-297.78, -2448.75], [-298.02, -2455.46], [-291.69, -2455.69], [-291.44, -2448.98], [-297.78, -2448.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-336.7, -2383.92], [-337.03, -2391.36], [-329.65, -2391.68], [-329.34, -2384.24], [-336.7, -2383.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-302.55, -2484.07], [-302.83, -2492.57], [-291.36, -2492.96], [-291.08, -2484.45], [-302.55, -2484.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-417.55, -2342.2], [-409.59, -2342.47], [-409.92, -2352.04], [-417.88, -2351.77], [-417.55, -2342.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-453.43, -2321.74], [-443.34, -2322.1], [-443.78, -2334.17], [-447.48, -2334.04], [-447.53, -2335.57], [-453.92, -2335.34], [-453.43, -2321.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-414.38, -2320.86], [-408.26, -2321.12], [-408.89, -2335.69], [-415.47, -2335.41], [-414.95, -2323.5], [-414.5, -2323.51], [-414.38, -2320.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-466.4, -2374.09], [-455.96, -2374.61], [-456.4, -2383.23], [-458.25, -2383.14], [-458.45, -2386.92], [-467.02, -2386.48], [-466.4, -2374.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-394.57, -2465.78], [-395.06, -2473.32], [-388.42, -2473.76], [-388.5, -2474.92], [-368.35, -2476.23], [-367.79, -2467.51], [-394.57, -2465.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-339.47, -2299.62], [-339.56, -2302.59], [-340.93, -2302.55], [-341.01, -2305.6], [-329.17, -2305.96], [-328.99, -2299.94], [-339.47, -2299.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-444.99, -2415.18], [-445.41, -2426.72], [-435.13, -2427.1], [-434.72, -2415.98], [-439.63, -2415.8], [-439.61, -2415.37], [-444.99, -2415.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-349.64, -2477.55], [-349.98, -2485.47], [-346.54, -2485.61], [-346.6, -2486.98], [-338.27, -2487.33], [-337.87, -2478.05], [-349.64, -2477.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-340.71, -2333.5], [-340.75, -2334.38], [-342.73, -2334.29], [-342.94, -2339.02], [-340.96, -2339.11], [-341.09, -2341.98], [-331.26, -2342.42], [-330.88, -2333.94], [-340.71, -2333.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-454.27, -2413.69], [-446.09, -2413.99], [-446.17, -2416.1], [-445.8, -2416.12], [-446.23, -2428.09], [-455.13, -2427.77], [-454.7, -2415.8], [-454.35, -2415.81], [-454.27, -2413.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-428.69, -2321.22], [-429.4, -2336.91], [-420.46, -2337.3], [-420.29, -2333.4], [-419.56, -2333.43], [-419.09, -2323.04], [-423.02, -2322.86], [-422.96, -2321.48], [-428.69, -2321.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-380.05, -2420.65], [-380.54, -2432.29], [-377.38, -2432.43], [-377.44, -2433.77], [-372.14, -2434.0], [-371.52, -2418.91], [-379.38, -2418.58], [-379.47, -2420.67], [-380.05, -2420.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-344.43, -2345.2], [-344.76, -2354.06], [-333.35, -2354.49], [-333.28, -2352.81], [-329.07, -2352.96], [-328.85, -2347.2], [-333.07, -2347.05], [-333.02, -2345.63], [-344.43, -2345.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-296.34, -2427.28], [-296.64, -2434.12], [-283.08, -2434.71], [-282.93, -2431.12], [-285.08, -2431.03], [-284.9, -2426.84], [-293.31, -2426.48], [-293.35, -2427.41], [-296.34, -2427.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-288.74, -2302.95], [-280.73, -2303.23], [-280.76, -2303.83], [-278.25, -2303.91], [-278.49, -2311.04], [-281.0, -2310.95], [-281.03, -2311.74], [-289.04, -2311.45], [-288.74, -2302.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-465.27, -2320.37], [-465.88, -2336.11], [-462.02, -2336.26], [-461.92, -2333.8], [-459.53, -2333.89], [-459.49, -2332.68], [-457.44, -2332.76], [-456.97, -2320.68], [-465.27, -2320.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-316.72, -2442.22], [-315.47, -2442.28], [-315.38, -2440.43], [-312.54, -2440.57], [-312.63, -2442.41], [-307.12, -2442.67], [-307.68, -2454.47], [-317.28, -2454.02], [-316.72, -2442.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-291.12, -2315.57], [-291.35, -2323.4], [-289.38, -2323.46], [-289.47, -2326.67], [-283.63, -2326.84], [-283.54, -2323.63], [-281.52, -2323.68], [-281.29, -2315.85], [-291.12, -2315.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-438.62, -2323.63], [-438.97, -2331.98], [-431.16, -2332.31], [-430.81, -2323.96], [-432.01, -2323.91], [-431.92, -2321.77], [-437.67, -2321.52], [-437.75, -2323.66], [-438.62, -2323.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-307.63, -2024.26], [-318.29, -2023.84], [-318.52, -2029.42], [-315.34, -2029.54], [-315.51, -2033.7], [-308.02, -2034.01], [-307.89, -2030.9], [-306.41, -2030.95], [-306.28, -2027.59], [-307.76, -2027.53], [-307.63, -2024.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-428.45, -2179.53], [-428.61, -2183.44], [-429.31, -2183.4], [-429.66, -2191.98], [-419.32, -2192.4], [-419.1, -2187.31], [-418.11, -2187.35], [-417.85, -2181.29], [-421.57, -2181.12], [-421.52, -2179.83], [-428.45, -2179.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-370.81, -2228.09], [-371.43, -2243.78], [-366.4, -2243.99], [-366.2, -2238.99], [-361.41, -2239.19], [-360.98, -2228.48], [-363.88, -2228.37], [-363.83, -2227.17], [-367.1, -2227.04], [-367.15, -2228.24], [-370.81, -2228.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-274.65, -2186.67], [-268.86, -2186.83], [-268.92, -2188.95], [-268.09, -2188.98], [-268.34, -2197.63], [-278.39, -2197.34], [-278.2, -2190.87], [-275.31, -2190.95], [-275.26, -2188.93], [-274.71, -2188.95], [-274.65, -2186.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-356.24, -2186.85], [-356.57, -2195.28], [-353.64, -2195.39], [-353.67, -2196.38], [-350.62, -2196.51], [-350.57, -2195.52], [-347.85, -2195.64], [-347.4, -2184.89], [-351.39, -2184.73], [-351.49, -2187.04], [-356.24, -2186.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-456.67, -2174.47], [-456.83, -2178.05], [-458.15, -2177.99], [-458.67, -2189.47], [-456.13, -2189.59], [-456.17, -2190.64], [-449.96, -2190.92], [-449.72, -2185.43], [-443.67, -2185.7], [-443.19, -2175.06], [-456.67, -2174.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-461.48, -2226.11], [-462.12, -2242.07], [-456.99, -2242.27], [-456.9, -2239.92], [-452.69, -2240.08], [-452.15, -2226.49], [-452.85, -2226.46], [-452.75, -2223.98], [-460.62, -2223.67], [-460.72, -2226.15], [-461.48, -2226.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-339.7, -2229.41], [-340.41, -2245.56], [-333.87, -2245.85], [-333.72, -2242.61], [-329.11, -2242.82], [-328.54, -2229.91], [-331.95, -2229.75], [-331.88, -2228.21], [-335.75, -2228.03], [-335.82, -2229.59], [-339.7, -2229.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-288.98, -2188.5], [-289.28, -2197.19], [-285.93, -2197.31], [-285.99, -2198.86], [-282.82, -2198.96], [-282.77, -2197.42], [-282.02, -2197.44], [-281.71, -2188.75], [-283.99, -2188.67], [-283.89, -2185.59], [-288.25, -2185.45], [-288.36, -2188.51], [-288.98, -2188.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-402.68, -2226.43], [-411.3, -2226.12], [-411.48, -2231.08], [-413.96, -2230.99], [-413.92, -2229.92], [-419.47, -2229.72], [-419.76, -2237.78], [-414.22, -2237.98], [-414.17, -2236.43], [-411.68, -2236.52], [-411.81, -2239.93], [-403.18, -2240.24], [-402.68, -2226.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-373.77, -2094.27], [-373.79, -2094.87], [-375.44, -2094.8], [-375.61, -2099.21], [-373.97, -2099.27], [-373.99, -2099.93], [-366.23, -2100.24], [-366.28, -2101.39], [-358.93, -2101.69], [-358.8, -2098.59], [-356.01, -2098.71], [-355.86, -2094.99], [-373.77, -2094.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-319.69, -2037.38], [-320.07, -2046.27], [-316.46, -2046.43], [-316.48, -2047.14], [-312.12, -2047.33], [-312.09, -2046.61], [-308.28, -2046.77], [-308.24, -2045.81], [-305.58, -2045.92], [-305.27, -2038.74], [-307.94, -2038.63], [-307.91, -2037.87], [-319.69, -2037.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-309.31, -2083.52], [-318.61, -2083.03], [-318.67, -2084.3], [-322.47, -2084.09], [-322.77, -2089.69], [-318.97, -2089.89], [-319.08, -2091.89], [-309.78, -2092.39], [-309.66, -2090.14], [-308.23, -2090.23], [-308.04, -2086.58], [-309.47, -2086.5], [-309.31, -2083.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-374.16, -2081.11], [-363.31, -2081.47], [-363.39, -2083.56], [-361.67, -2083.62], [-361.85, -2088.67], [-363.56, -2088.61], [-363.63, -2091.0], [-374.48, -2090.63], [-374.43, -2089.02], [-376.74, -2088.94], [-376.5, -2081.87], [-374.19, -2081.95], [-374.16, -2081.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-470.14, -2030.92], [-470.16, -2031.67], [-471.67, -2031.63], [-471.89, -2038.18], [-469.14, -2038.27], [-469.17, -2039.16], [-459.56, -2039.48], [-459.48, -2036.93], [-456.56, -2037.03], [-456.38, -2031.64], [-459.27, -2031.55], [-459.23, -2029.98], [-465.12, -2029.78], [-465.17, -2031.07], [-470.14, -2030.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-279.71, -2274.69], [-287.41, -2274.47], [-287.44, -2275.5], [-289.9, -2275.43], [-289.96, -2277.5], [-292.09, -2277.43], [-292.23, -2282.12], [-287.63, -2282.25], [-287.66, -2283.28], [-279.97, -2283.5], [-279.89, -2280.84], [-277.59, -2280.9], [-277.5, -2277.53], [-279.79, -2277.46], [-279.71, -2274.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-420.15, -2083.47], [-420.52, -2093.22], [-413.05, -2093.51], [-413.17, -2096.49], [-408.7, -2096.67], [-408.58, -2093.68], [-403.38, -2093.87], [-403.07, -2086.06], [-406.73, -2085.92], [-406.66, -2084.0], [-412.13, -2083.78], [-411.99, -2080.53], [-418.82, -2080.27], [-418.95, -2083.51], [-420.15, -2083.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-417.57, -2136.91], [-418.01, -2144.84], [-408.03, -2145.4], [-407.58, -2137.46], [-417.57, -2136.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-434.13, -2246.64], [-434.28, -2254.37], [-426.71, -2254.52], [-426.54, -2246.79], [-434.13, -2246.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-453.15, -2076.1], [-453.34, -2080.34], [-446.62, -2080.64], [-446.43, -2076.41], [-453.15, -2076.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-421.98, -2147.95], [-422.41, -2156.63], [-409.81, -2157.25], [-409.37, -2148.58], [-421.98, -2147.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-457.04, -2054.86], [-457.14, -2059.81], [-449.55, -2059.97], [-449.45, -2055.02], [-457.04, -2054.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-429.95, -2155.34], [-430.21, -2160.25], [-423.31, -2160.62], [-423.05, -2155.72], [-429.95, -2155.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-376.13, -2056.45], [-376.39, -2065.55], [-361.54, -2065.97], [-361.28, -2056.88], [-376.13, -2056.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-342.52, -2189.09], [-342.81, -2197.22], [-334.36, -2197.53], [-334.06, -2189.39], [-342.52, -2189.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-438.77, -2098.52], [-438.95, -2102.35], [-432.73, -2102.63], [-432.56, -2098.8], [-438.77, -2098.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-303.96, -2229.78], [-304.3, -2238.24], [-290.11, -2238.8], [-289.77, -2230.34], [-303.96, -2229.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-378.71, -2156.42], [-378.97, -2162.92], [-370.18, -2163.28], [-369.91, -2156.79], [-378.71, -2156.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-327.11, -2100.17], [-326.96, -2096.11], [-332.96, -2095.88], [-333.12, -2099.94], [-327.11, -2100.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-358.99, -2054.73], [-359.19, -2059.86], [-352.26, -2060.13], [-352.06, -2055.01], [-358.99, -2054.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-341.84, -2260.0], [-342.12, -2267.03], [-329.62, -2267.52], [-329.34, -2260.49], [-341.84, -2260.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-286.44, -2263.28], [-279.24, -2263.53], [-279.52, -2271.26], [-286.72, -2271.01], [-286.44, -2263.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-322.71, -2182.41], [-319.05, -2182.52], [-319.21, -2188.01], [-322.87, -2187.91], [-322.71, -2182.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-368.33, -2183.42], [-359.78, -2183.79], [-360.27, -2194.99], [-368.83, -2194.62], [-368.33, -2183.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-330.33, -2189.0], [-330.58, -2197.82], [-322.61, -2198.04], [-322.36, -2189.22], [-330.33, -2189.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-373.92, -2195.53], [-380.71, -2195.2], [-380.26, -2185.58], [-373.47, -2185.89], [-373.92, -2195.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-335.96, -2111.68], [-336.17, -2118.81], [-327.97, -2119.04], [-327.77, -2111.91], [-335.96, -2111.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-288.04, -2144.73], [-288.27, -2151.6], [-275.16, -2152.03], [-274.94, -2145.16], [-288.04, -2144.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-335.27, -2180.26], [-330.66, -2180.43], [-330.88, -2186.42], [-335.5, -2186.24], [-335.27, -2180.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-346.05, -2155.4], [-352.4, -2155.03], [-352.83, -2162.42], [-346.47, -2162.79], [-346.05, -2155.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-288.86, -2159.85], [-289.15, -2170.24], [-278.51, -2170.54], [-278.21, -2160.15], [-288.86, -2159.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-302.2, -2269.31], [-302.58, -2276.05], [-295.0, -2276.49], [-294.61, -2269.74], [-302.2, -2269.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-327.46, -2010.64], [-327.78, -2019.42], [-334.93, -2019.16], [-334.62, -2010.38], [-327.46, -2010.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-378.37, -2146.63], [-378.48, -2153.72], [-365.97, -2153.91], [-365.86, -2146.82], [-378.37, -2146.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-366.47, -2277.29], [-366.78, -2281.55], [-360.3, -2282.02], [-359.99, -2277.76], [-366.47, -2277.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-348.89, -2099.44], [-341.78, -2099.78], [-342.19, -2108.37], [-349.29, -2108.03], [-348.89, -2099.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-328.51, -2020.68], [-328.73, -2025.3], [-322.89, -2025.58], [-322.68, -2020.95], [-328.51, -2020.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-261.34, -2146.5], [-254.68, -2146.75], [-254.91, -2153.11], [-261.58, -2152.86], [-261.34, -2146.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-475.48, -2136.35], [-475.93, -2146.89], [-460.27, -2147.56], [-459.81, -2137.02], [-475.48, -2136.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-341.01, -2142.9], [-333.08, -2143.13], [-333.29, -2150.79], [-341.22, -2150.58], [-341.01, -2142.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-378.7, -2131.16], [-379.06, -2139.96], [-366.51, -2140.49], [-366.14, -2131.67], [-378.7, -2131.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-468.67, -2006.42], [-468.8, -2013.15], [-459.6, -2013.32], [-459.46, -2006.59], [-468.67, -2006.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-452.35, -2144.82], [-452.66, -2151.26], [-445.88, -2151.58], [-445.59, -2145.13], [-452.35, -2144.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-460.06, -2070.79], [-460.31, -2075.13], [-454.42, -2075.47], [-454.17, -2071.12], [-460.06, -2070.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-469.87, -2267.16], [-465.15, -2267.38], [-465.53, -2275.57], [-470.25, -2275.36], [-469.87, -2267.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-388.0, -2283.52], [-388.38, -2292.21], [-378.82, -2292.63], [-378.45, -2283.93], [-388.0, -2283.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-340.62, -2133.22], [-335.27, -2133.37], [-335.48, -2140.88], [-340.83, -2140.73], [-340.62, -2133.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-275.63, -2231.02], [-283.09, -2230.7], [-283.41, -2238.09], [-275.95, -2238.41], [-275.63, -2231.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-461.88, -2271.01], [-465.11, -2270.87], [-465.47, -2279.38], [-462.23, -2279.52], [-461.88, -2271.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-264.23, -2189.47], [-257.24, -2189.66], [-257.48, -2198.2], [-264.47, -2198.01], [-264.23, -2189.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-457.57, -2245.91], [-457.76, -2252.06], [-450.55, -2252.28], [-450.36, -2246.13], [-457.57, -2245.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-450.92, -2106.55], [-451.12, -2110.33], [-441.78, -2110.81], [-441.58, -2107.04], [-450.92, -2106.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-433.47, -2262.62], [-433.65, -2266.91], [-427.76, -2267.16], [-427.57, -2262.88], [-433.47, -2262.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-364.17, -2017.25], [-373.33, -2016.64], [-374.11, -2028.55], [-364.95, -2029.15], [-364.17, -2017.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-366.52, -2259.97], [-366.71, -2264.17], [-359.28, -2264.49], [-359.1, -2260.29], [-366.52, -2259.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-258.05, -2181.91], [-253.85, -2182.03], [-254.02, -2187.9], [-258.22, -2187.78], [-258.05, -2181.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-419.67, -2120.74], [-420.06, -2129.86], [-408.28, -2130.36], [-407.89, -2121.23], [-419.67, -2120.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-377.92, -2244.96], [-378.06, -2248.43], [-386.25, -2248.09], [-386.11, -2244.63], [-377.92, -2244.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-323.11, -2146.02], [-323.38, -2153.27], [-309.67, -2153.77], [-309.41, -2146.52], [-323.11, -2146.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-289.96, -2287.03], [-290.34, -2294.66], [-277.95, -2295.28], [-277.57, -2287.65], [-289.96, -2287.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-428.75, -2038.19], [-428.87, -2042.44], [-422.81, -2042.61], [-422.69, -2038.36], [-428.75, -2038.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-454.37, -2024.79], [-454.5, -2029.75], [-446.36, -2029.96], [-446.23, -2025.0], [-454.37, -2024.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-365.65, -2265.24], [-365.87, -2269.27], [-358.88, -2269.63], [-358.66, -2265.62], [-365.65, -2265.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-475.18, -2152.53], [-475.48, -2161.73], [-463.91, -2162.11], [-463.61, -2152.92], [-475.18, -2152.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-326.62, -2244.33], [-320.16, -2244.62], [-320.46, -2251.37], [-326.92, -2251.07], [-326.62, -2244.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-341.25, -2163.1], [-333.79, -2163.36], [-334.07, -2171.58], [-341.54, -2171.31], [-341.25, -2163.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-318.37, -2173.82], [-318.51, -2177.38], [-312.78, -2177.59], [-312.63, -2174.04], [-318.37, -2173.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-341.07, -2275.61], [-341.43, -2283.03], [-331.12, -2283.55], [-330.75, -2276.12], [-341.07, -2275.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-312.52, -2229.15], [-321.0, -2228.74], [-321.53, -2239.84], [-313.06, -2240.25], [-312.52, -2229.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-480.82, -2273.76], [-481.01, -2278.19], [-484.4, -2278.03], [-484.2, -2273.61], [-480.82, -2273.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-446.48, -2265.39], [-440.25, -2265.6], [-440.51, -2273.38], [-446.74, -2273.17], [-446.48, -2265.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-458.36, -2160.86], [-458.58, -2166.64], [-452.08, -2166.89], [-451.87, -2161.1], [-458.36, -2160.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-327.21, -2045.98], [-327.22, -2049.33], [-333.12, -2049.32], [-333.11, -2045.97], [-327.21, -2045.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-328.07, -2091.83], [-328.23, -2095.47], [-322.49, -2095.74], [-322.32, -2092.11], [-328.07, -2091.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-321.96, -2264.83], [-315.48, -2265.12], [-315.77, -2271.59], [-322.25, -2271.3], [-321.96, -2264.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-365.53, -2245.05], [-359.37, -2245.27], [-359.57, -2251.04], [-365.74, -2250.82], [-365.53, -2245.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-317.94, -2189.41], [-310.56, -2189.82], [-311.01, -2198.03], [-318.39, -2197.62], [-317.94, -2189.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-471.39, -2085.6], [-471.11, -2077.72], [-460.05, -2078.11], [-460.07, -2078.55], [-455.45, -2078.72], [-455.72, -2086.17], [-471.39, -2085.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-477.84, -2276.79], [-469.55, -2277.1], [-470.06, -2290.49], [-475.29, -2290.3], [-475.2, -2288.0], [-478.26, -2287.89], [-477.84, -2276.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-309.27, -2070.73], [-309.49, -2075.01], [-308.56, -2075.06], [-308.69, -2077.61], [-321.74, -2076.94], [-321.39, -2070.1], [-309.27, -2070.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-324.36, -1997.65], [-324.81, -2008.48], [-319.16, -2008.7], [-319.24, -2010.81], [-312.51, -2011.09], [-311.97, -1998.16], [-324.36, -1997.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-323.96, -2115.56], [-324.14, -2120.83], [-328.01, -2120.71], [-328.16, -2125.35], [-311.11, -2125.91], [-310.78, -2115.99], [-323.96, -2115.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-376.47, -2035.76], [-376.98, -2045.49], [-370.52, -2045.83], [-370.43, -2044.12], [-365.27, -2044.39], [-364.85, -2036.36], [-376.47, -2035.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-474.15, -2107.83], [-474.64, -2118.17], [-469.11, -2118.43], [-468.99, -2115.72], [-465.07, -2115.9], [-464.71, -2108.26], [-474.15, -2107.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-385.96, -2259.31], [-373.2, -2259.82], [-373.4, -2264.6], [-375.91, -2264.49], [-376.08, -2268.7], [-386.33, -2268.28], [-385.96, -2259.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-377.48, -2228.18], [-384.98, -2227.85], [-385.43, -2237.68], [-375.83, -2238.12], [-375.51, -2231.15], [-377.61, -2231.06], [-377.48, -2228.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-414.85, -2043.54], [-415.27, -2054.53], [-403.37, -2054.98], [-402.88, -2042.0], [-408.24, -2041.8], [-408.31, -2043.79], [-414.85, -2043.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-373.9, -2118.12], [-373.94, -2119.2], [-377.24, -2119.07], [-377.53, -2126.5], [-364.8, -2127.01], [-364.46, -2118.5], [-373.9, -2118.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-437.82, -2224.63], [-438.61, -2240.41], [-429.85, -2240.84], [-429.69, -2237.6], [-430.64, -2237.55], [-430.03, -2225.02], [-437.82, -2224.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-462.32, -2280.66], [-462.73, -2290.54], [-460.74, -2290.62], [-460.77, -2291.52], [-454.19, -2291.8], [-453.61, -2277.77], [-457.93, -2277.59], [-458.06, -2280.84], [-462.32, -2280.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-448.56, -2226.92], [-448.95, -2236.13], [-440.42, -2236.47], [-440.05, -2227.27], [-440.65, -2227.24], [-440.55, -2224.88], [-447.63, -2224.6], [-447.72, -2226.95], [-448.56, -2226.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-320.37, -2053.31], [-320.73, -2062.74], [-308.77, -2063.19], [-308.7, -2061.37], [-306.3, -2061.46], [-306.07, -2055.1], [-308.46, -2055.01], [-308.42, -2053.76], [-320.37, -2053.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-372.04, -1990.91], [-367.11, -1991.05], [-367.19, -1993.77], [-361.94, -1993.92], [-362.16, -2001.38], [-371.4, -2001.11], [-371.33, -1998.93], [-372.28, -1998.9], [-372.04, -1990.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-405.25, -2276.51], [-413.78, -2276.14], [-414.42, -2291.16], [-413.49, -2291.2], [-413.61, -2293.96], [-407.22, -2294.23], [-407.1, -2291.47], [-405.9, -2291.53], [-405.25, -2276.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-470.27, -2045.23], [-470.42, -2048.83], [-472.1, -2048.76], [-472.28, -2053.26], [-458.68, -2053.84], [-458.51, -2049.92], [-462.25, -2049.76], [-462.08, -2045.57], [-470.27, -2045.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-450.41, -2280.78], [-450.79, -2291.92], [-448.43, -2292.0], [-448.46, -2292.81], [-445.52, -2292.91], [-445.45, -2291.22], [-441.16, -2291.37], [-440.81, -2281.11], [-450.41, -2280.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-476.88, -2175.53], [-477.63, -2189.85], [-469.19, -2190.29], [-468.43, -2175.97], [-469.56, -2175.91], [-469.38, -2172.38], [-475.55, -2172.05], [-475.73, -2175.58], [-476.88, -2175.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-319.14, -2098.49], [-319.48, -2107.29], [-309.33, -2107.68], [-309.3, -2106.99], [-307.23, -2107.07], [-306.98, -2100.55], [-309.04, -2100.46], [-308.98, -2098.89], [-319.14, -2098.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-321.6, -2129.18], [-310.52, -2129.56], [-310.85, -2139.3], [-321.93, -2138.92], [-321.89, -2137.68], [-325.84, -2137.54], [-325.58, -2129.93], [-321.63, -2130.06], [-321.6, -2129.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-425.07, -2162.45], [-425.21, -2165.13], [-428.99, -2164.94], [-429.26, -2170.49], [-425.47, -2170.68], [-425.55, -2172.4], [-411.2, -2173.08], [-410.72, -2163.14], [-425.07, -2162.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-478.73, -2224.93], [-479.19, -2234.91], [-474.0, -2235.16], [-474.15, -2238.4], [-468.8, -2238.65], [-468.65, -2235.4], [-467.77, -2235.45], [-467.31, -2225.47], [-478.73, -2224.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-320.54, -2161.41], [-320.78, -2169.17], [-312.1, -2169.43], [-312.09, -2169.12], [-310.05, -2169.19], [-309.83, -2162.06], [-311.87, -2161.99], [-311.86, -2161.67], [-320.54, -2161.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-339.48, -2287.2], [-339.75, -2294.51], [-322.41, -2295.16], [-322.21, -2289.82], [-316.34, -2290.04], [-316.17, -2285.44], [-327.53, -2285.02], [-327.63, -2287.64], [-339.48, -2287.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-462.76, -2123.25], [-462.98, -2128.26], [-461.47, -2128.33], [-461.62, -2132.14], [-463.14, -2132.07], [-463.22, -2134.01], [-475.57, -2133.5], [-475.1, -2122.72], [-462.76, -2123.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-438.56, -2284.32], [-438.91, -2292.55], [-437.12, -2292.63], [-437.19, -2294.49], [-432.4, -2294.7], [-432.32, -2292.83], [-430.11, -2292.92], [-429.77, -2284.69], [-438.56, -2284.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-470.67, -2061.23], [-470.98, -2068.86], [-461.79, -2069.23], [-461.75, -2068.18], [-459.29, -2068.28], [-459.18, -2065.35], [-461.63, -2065.25], [-461.48, -2061.61], [-470.67, -2061.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-467.74, -2015.95], [-458.45, -2016.21], [-458.74, -2026.29], [-468.03, -2026.02], [-467.95, -2023.51], [-469.05, -2023.48], [-468.95, -2020.11], [-467.86, -2020.15], [-467.74, -2015.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-472.18, -2092.17], [-472.6, -2102.39], [-459.69, -2102.93], [-459.63, -2101.41], [-457.74, -2101.48], [-457.51, -2095.94], [-459.4, -2095.87], [-459.27, -2092.7], [-472.18, -2092.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-386.81, -2271.53], [-387.1, -2279.72], [-374.71, -2280.19], [-374.64, -2278.41], [-369.47, -2278.6], [-369.3, -2274.26], [-374.49, -2274.06], [-374.41, -2271.99], [-386.81, -2271.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-415.9, -2104.32], [-416.0, -2107.11], [-417.14, -2107.07], [-417.27, -2110.56], [-416.13, -2110.6], [-416.25, -2113.82], [-403.74, -2114.28], [-403.39, -2104.77], [-415.9, -2104.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-417.9, -2067.11], [-418.01, -2070.13], [-424.18, -2069.9], [-424.43, -2076.45], [-413.85, -2076.87], [-413.8, -2075.42], [-402.93, -2075.84], [-402.61, -2067.71], [-417.9, -2067.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-416.09, -2282.96], [-423.35, -2282.75], [-423.59, -2290.97], [-422.82, -2290.99], [-422.89, -2293.54], [-417.32, -2293.7], [-417.25, -2291.15], [-416.32, -2291.17], [-416.09, -2282.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-354.56, -1990.06], [-355.09, -2001.49], [-345.37, -2001.95], [-344.89, -1991.7], [-347.57, -1991.58], [-347.54, -1990.96], [-350.72, -1990.81], [-350.69, -1990.24], [-354.56, -1990.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1558.42, -1567.55], [-1558.69, -1576.16], [-1545.36, -1576.59], [-1545.26, -1573.75], [-1543.1, -1573.82], [-1542.91, -1568.05], [-1548.59, -1567.87], [-1548.56, -1567.03], [-1553.92, -1566.86], [-1553.94, -1567.7], [-1558.42, -1567.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1559.89, -1762.02], [-1559.95, -1765.93], [-1562.69, -1765.89], [-1562.75, -1769.47], [-1550.07, -1769.7], [-1550.06, -1769.06], [-1547.22, -1769.12], [-1547.12, -1763.28], [-1549.96, -1763.23], [-1549.94, -1762.2], [-1559.89, -1762.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1557.31, -1463.8], [-1557.35, -1465.32], [-1559.77, -1465.26], [-1559.87, -1469.45], [-1557.45, -1469.51], [-1557.48, -1470.86], [-1556.54, -1470.89], [-1556.63, -1474.75], [-1544.96, -1475.02], [-1544.7, -1464.11], [-1557.31, -1463.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1642.94, -1289.17], [-1643.1, -1296.4], [-1641.21, -1296.45], [-1641.24, -1298.01], [-1635.08, -1298.14], [-1635.05, -1296.64], [-1629.73, -1296.76], [-1629.61, -1290.99], [-1634.92, -1290.88], [-1634.89, -1289.35], [-1642.94, -1289.17]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1555.46, -1794.52], [-1555.54, -1796.8], [-1559.68, -1796.65], [-1559.89, -1802.35], [-1555.76, -1802.5], [-1555.8, -1803.55], [-1551.06, -1803.73], [-1551.02, -1802.67], [-1543.15, -1802.96], [-1542.97, -1797.96], [-1543.78, -1797.93], [-1543.67, -1794.95], [-1555.46, -1794.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1554.23, -1398.38], [-1554.29, -1400.44], [-1557.13, -1400.36], [-1557.29, -1405.75], [-1554.45, -1405.83], [-1554.49, -1407.1], [-1543.24, -1407.42], [-1543.22, -1406.86], [-1540.81, -1406.93], [-1540.58, -1399.31], [-1543.33, -1399.24], [-1543.31, -1398.69], [-1554.23, -1398.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1564.36, -1478.86], [-1564.65, -1486.99], [-1553.46, -1487.38], [-1553.48, -1488.14], [-1549.41, -1488.28], [-1549.32, -1485.7], [-1546.95, -1485.79], [-1546.93, -1485.13], [-1543.74, -1485.24], [-1543.57, -1480.4], [-1546.76, -1480.29], [-1546.73, -1479.46], [-1549.4, -1479.38], [-1549.35, -1477.71], [-1551.64, -1477.63], [-1551.7, -1479.3], [-1564.36, -1478.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1572.78, -1867.02], [-1576.76, -1859.96], [-1562.37, -1851.93], [-1558.4, -1859.0], [-1572.78, -1867.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1673.04, -1276.49], [-1663.61, -1276.79], [-1664.39, -1302.03], [-1673.82, -1301.74], [-1673.04, -1276.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1564.7, -1794.5], [-1569.15, -1794.41], [-1569.26, -1799.91], [-1564.8, -1800.0], [-1564.7, -1794.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1565.74, -1722.15], [-1573.45, -1721.8], [-1573.87, -1730.88], [-1566.16, -1731.23], [-1565.74, -1722.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1642.05, -1306.51], [-1631.03, -1306.41], [-1630.97, -1313.43], [-1641.97, -1313.54], [-1642.05, -1306.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1562.18, -1702.82], [-1562.36, -1712.16], [-1550.56, -1712.39], [-1550.38, -1703.04], [-1562.18, -1702.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1655.11, -1306.63], [-1659.04, -1306.48], [-1659.29, -1313.44], [-1655.36, -1313.59], [-1655.11, -1306.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1548.1, -1640.41], [-1548.26, -1649.05], [-1563.28, -1648.78], [-1563.13, -1640.14], [-1548.1, -1640.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1557.43, -1542.42], [-1557.68, -1550.15], [-1545.23, -1550.56], [-1544.98, -1542.83], [-1557.43, -1542.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1572.96, -1792.96], [-1579.79, -1792.71], [-1580.03, -1799.3], [-1573.2, -1799.55], [-1572.96, -1792.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1603.2, -1656.07], [-1603.15, -1662.21], [-1592.72, -1662.13], [-1592.76, -1655.99], [-1603.2, -1656.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1567.65, -1596.56], [-1576.44, -1596.29], [-1576.97, -1613.24], [-1568.17, -1613.52], [-1567.65, -1596.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1571.97, -1675.73], [-1572.27, -1681.69], [-1578.38, -1681.39], [-1578.09, -1675.42], [-1571.97, -1675.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1568.25, -1468.02], [-1575.12, -1467.91], [-1575.35, -1476.58], [-1568.37, -1476.68], [-1568.25, -1468.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1558.79, -1721.98], [-1559.27, -1732.86], [-1551.96, -1733.19], [-1551.48, -1722.3], [-1558.79, -1721.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1572.24, -1687.66], [-1572.36, -1691.74], [-1578.2, -1691.58], [-1578.08, -1687.49], [-1572.24, -1687.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1564.77, -1663.6], [-1565.16, -1672.11], [-1548.89, -1672.84], [-1548.51, -1664.33], [-1564.77, -1663.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1563.09, -1452.03], [-1571.91, -1451.87], [-1571.81, -1446.42], [-1562.99, -1446.59], [-1563.09, -1452.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1575.35, -1476.58], [-1568.37, -1476.68], [-1566.87, -1476.79], [-1567.14, -1487.77], [-1575.64, -1487.55], [-1575.35, -1476.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1573.16, -1400.15], [-1566.33, -1400.33], [-1566.55, -1408.44], [-1573.37, -1408.26], [-1573.16, -1400.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1545.77, -1591.38], [-1554.23, -1591.17], [-1554.52, -1603.26], [-1546.06, -1603.47], [-1545.77, -1591.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1588.89, -1583.89], [-1579.93, -1584.15], [-1580.38, -1599.71], [-1589.33, -1599.45], [-1588.89, -1583.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1571.74, -1870.86], [-1567.78, -1878.57], [-1559.9, -1874.55], [-1563.87, -1866.84], [-1571.74, -1870.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1590.89, -1764.56], [-1581.48, -1764.8], [-1581.79, -1777.8], [-1591.21, -1777.57], [-1590.89, -1764.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1663.17, -1687.13], [-1663.41, -1696.37], [-1636.48, -1697.1], [-1636.24, -1687.85], [-1663.17, -1687.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1567.86, -1518.89], [-1574.84, -1518.78], [-1574.95, -1525.44], [-1567.97, -1525.56], [-1567.86, -1518.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1565.41, -1882.8], [-1560.88, -1890.97], [-1551.22, -1885.63], [-1555.76, -1877.48], [-1565.41, -1882.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1593.73, -1764.32], [-1601.32, -1764.11], [-1601.62, -1774.82], [-1594.03, -1775.04], [-1593.73, -1764.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1571.72, -1667.53], [-1578.67, -1667.28], [-1578.93, -1674.43], [-1571.98, -1674.68], [-1571.72, -1667.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1560.46, -1529.98], [-1560.79, -1538.48], [-1545.24, -1539.09], [-1544.9, -1530.59], [-1560.46, -1529.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1555.89, -1429.47], [-1555.95, -1434.05], [-1552.36, -1434.11], [-1552.46, -1440.78], [-1544.25, -1440.9], [-1544.09, -1429.66], [-1555.89, -1429.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1561.96, -1774.5], [-1562.38, -1791.44], [-1547.2, -1791.82], [-1546.99, -1782.98], [-1553.32, -1782.82], [-1553.12, -1774.72], [-1561.96, -1774.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1582.26, -1397.97], [-1576.9, -1398.05], [-1577.23, -1417.76], [-1585.53, -1417.61], [-1585.3, -1404.49], [-1582.37, -1404.54], [-1582.26, -1397.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1561.91, -1678.11], [-1562.24, -1686.99], [-1550.04, -1687.44], [-1549.83, -1681.87], [-1547.88, -1681.95], [-1547.76, -1678.62], [-1561.91, -1678.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1560.03, -1416.72], [-1560.11, -1425.21], [-1543.99, -1425.37], [-1543.88, -1413.74], [-1552.93, -1413.65], [-1552.95, -1416.79], [-1560.03, -1416.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1561.8, -1689.49], [-1562.18, -1698.43], [-1550.23, -1698.92], [-1550.0, -1693.47], [-1548.27, -1693.54], [-1548.12, -1690.06], [-1561.8, -1689.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1559.0, -1555.28], [-1559.31, -1563.51], [-1545.72, -1564.03], [-1545.55, -1559.61], [-1547.57, -1559.53], [-1547.42, -1555.72], [-1559.0, -1555.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1558.14, -1652.1], [-1549.9, -1652.38], [-1550.02, -1655.95], [-1545.08, -1656.11], [-1545.26, -1661.41], [-1558.43, -1660.98], [-1558.14, -1652.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1598.42, -1457.74], [-1579.07, -1458.19], [-1579.28, -1466.48], [-1580.78, -1466.44], [-1581.08, -1477.84], [-1598.99, -1477.37], [-1598.42, -1457.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1559.0, -1518.38], [-1559.36, -1527.65], [-1542.55, -1528.29], [-1542.23, -1520.06], [-1544.25, -1519.98], [-1544.21, -1518.95], [-1559.0, -1518.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1559.41, -1447.38], [-1546.73, -1447.55], [-1546.91, -1459.85], [-1555.21, -1459.74], [-1555.19, -1457.94], [-1559.55, -1457.88], [-1559.41, -1447.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1571.36, -1763.97], [-1575.08, -1763.87], [-1575.1, -1764.63], [-1578.38, -1764.54], [-1578.83, -1780.15], [-1571.83, -1780.35], [-1571.36, -1763.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1644.93, -1273.91], [-1645.14, -1282.72], [-1628.71, -1283.11], [-1628.5, -1274.31], [-1634.78, -1274.16], [-1634.76, -1273.32], [-1640.55, -1273.19], [-1640.56, -1274.02], [-1644.93, -1273.91]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1663.05, -1706.31], [-1663.22, -1715.81], [-1658.02, -1715.9], [-1657.96, -1712.26], [-1651.57, -1712.36], [-1651.64, -1716.01], [-1639.24, -1716.22], [-1639.07, -1706.72], [-1663.05, -1706.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1600.72, -1556.33], [-1601.06, -1576.19], [-1590.37, -1576.37], [-1590.39, -1577.32], [-1580.11, -1577.51], [-1579.71, -1554.39], [-1594.35, -1554.13], [-1594.39, -1556.45], [-1600.72, -1556.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1560.83, -1580.29], [-1560.93, -1585.25], [-1559.38, -1585.28], [-1559.48, -1590.4], [-1543.76, -1590.73], [-1543.63, -1584.68], [-1545.43, -1584.64], [-1545.35, -1580.61], [-1560.83, -1580.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1018.49, 1280.29], [1027.61, 1270.23], [1034.0, 1275.75], [1024.52, 1285.79], [1018.49, 1280.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1058.27, 1181.34], [1069.95, 1168.51], [1078.7, 1176.13], [1067.15, 1188.97], [1058.27, 1181.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1098.64, -687.1], [-1064.66, -631.73], [-1023.52, -673.82], [-1061.87, -710.55], [-1098.64, -687.1]], "holes": []}, "height": 38.5}, {"shape": {"outer": [[-2820.35, -749.98], [-2820.73, -765.81], [-2819.87, -765.84], [-2819.9, -767.29], [-2818.11, -767.33], [-2818.14, -768.58], [-2810.49, -768.75], [-2810.42, -766.07], [-2810.03, -766.08], [-2809.66, -750.24], [-2820.35, -749.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2774.91, -747.81], [-2774.95, -749.61], [-2775.76, -749.59], [-2775.86, -754.21], [-2775.06, -754.24], [-2775.13, -757.31], [-2765.21, -757.55], [-2765.2, -756.81], [-2762.48, -756.87], [-2762.29, -748.76], [-2765.01, -748.7], [-2764.99, -748.05], [-2774.91, -747.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2842.43, -751.41], [-2842.63, -763.83], [-2844.9, -763.78], [-2844.92, -765.0], [-2849.51, -764.92], [-2849.49, -763.72], [-2852.24, -763.67], [-2852.05, -751.25], [-2846.88, -751.33], [-2846.84, -748.81], [-2843.89, -748.85], [-2843.93, -751.37], [-2842.43, -751.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2835.31, -751.47], [-2835.56, -762.12], [-2833.15, -762.18], [-2833.22, -765.03], [-2828.8, -765.14], [-2828.73, -762.28], [-2825.12, -762.36], [-2824.87, -751.71], [-2825.97, -751.68], [-2825.92, -749.38], [-2830.21, -749.28], [-2830.2, -748.72], [-2834.14, -748.63], [-2834.21, -751.49], [-2835.31, -751.47]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2776.15, -773.78], [-2776.17, -774.49], [-2776.89, -774.47], [-2776.96, -776.86], [-2776.24, -776.88], [-2776.27, -778.08], [-2778.0, -778.03], [-2778.12, -782.15], [-2766.29, -782.5], [-2766.26, -781.59], [-2763.83, -781.66], [-2763.64, -775.02], [-2766.07, -774.95], [-2766.05, -774.07], [-2776.15, -773.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2861.37, -700.24], [-2861.5, -706.53], [-2854.84, -706.67], [-2854.7, -700.38], [-2861.37, -700.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2846.77, -654.86], [-2856.11, -654.58], [-2856.55, -669.16], [-2847.21, -669.44], [-2846.77, -654.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2813.05, -782.2], [-2808.82, -782.29], [-2808.94, -788.43], [-2813.17, -788.35], [-2813.05, -782.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2862.11, -668.8], [-2856.86, -668.99], [-2857.09, -675.35], [-2862.34, -675.16], [-2862.11, -668.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2779.17, -692.71], [-2779.35, -701.94], [-2760.85, -702.3], [-2760.67, -693.07], [-2779.17, -692.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2870.9, -758.01], [-2873.91, -757.89], [-2874.14, -764.1], [-2871.14, -764.21], [-2870.9, -758.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2828.47, -774.97], [-2828.62, -783.26], [-2822.61, -783.37], [-2822.46, -775.08], [-2828.47, -774.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2868.44, -712.34], [-2868.76, -721.56], [-2878.15, -721.23], [-2877.82, -712.02], [-2868.44, -712.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2777.78, -769.35], [-2777.65, -761.53], [-2774.16, -761.59], [-2774.15, -760.5], [-2762.34, -760.72], [-2762.5, -769.63], [-2777.78, -769.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2799.44, -659.74], [-2800.1, -678.03], [-2807.29, -677.77], [-2807.23, -676.14], [-2814.52, -675.87], [-2813.92, -659.22], [-2799.44, -659.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2805.22, -705.6], [-2805.66, -718.4], [-2795.7, -718.74], [-2795.4, -710.2], [-2800.83, -710.01], [-2800.68, -705.75], [-2805.22, -705.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2851.64, -702.38], [-2851.99, -715.15], [-2834.79, -715.64], [-2834.52, -705.91], [-2842.78, -705.68], [-2842.7, -702.63], [-2851.64, -702.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2771.8, -675.79], [-2762.81, -675.99], [-2763.01, -685.13], [-2764.98, -685.08], [-2765.05, -688.35], [-2769.25, -688.26], [-2769.19, -684.99], [-2772.0, -684.93], [-2771.8, -675.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2878.5, -675.82], [-2869.65, -675.99], [-2869.83, -685.57], [-2880.82, -685.36], [-2880.74, -681.06], [-2879.66, -681.08], [-2879.63, -679.41], [-2878.56, -679.43], [-2878.5, -675.82]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2772.34, -658.89], [-2772.36, -659.74], [-2774.18, -659.7], [-2774.34, -667.15], [-2772.53, -667.19], [-2772.59, -669.72], [-2762.22, -669.97], [-2761.97, -659.14], [-2772.34, -658.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2877.52, -700.71], [-2868.84, -701.06], [-2869.23, -710.74], [-2877.92, -710.39], [-2877.87, -709.03], [-2880.43, -708.92], [-2880.25, -704.47], [-2877.68, -704.58], [-2877.52, -700.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2831.76, -658.89], [-2832.44, -678.33], [-2823.39, -678.64], [-2822.71, -659.21], [-2823.74, -659.18], [-2823.64, -656.28], [-2831.01, -656.01], [-2831.11, -658.92], [-2831.76, -658.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2803.22, -752.89], [-2803.51, -763.67], [-2802.6, -763.68], [-2802.69, -767.17], [-2797.34, -767.31], [-2797.25, -763.82], [-2791.99, -763.97], [-2791.7, -753.2], [-2803.22, -752.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2870.52, -655.3], [-2880.91, -655.01], [-2881.3, -669.07], [-2876.26, -669.2], [-2876.4, -674.0], [-2868.76, -674.22], [-2868.63, -669.44], [-2870.91, -669.37], [-2870.52, -655.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2879.26, -688.34], [-2879.52, -698.39], [-2866.3, -698.75], [-2866.27, -697.81], [-2863.15, -697.9], [-2862.97, -691.51], [-2864.7, -691.46], [-2864.62, -688.74], [-2879.26, -688.34]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2779.44, -705.11], [-2779.52, -707.99], [-2781.04, -707.95], [-2781.2, -713.34], [-2779.68, -713.38], [-2779.72, -714.79], [-2761.53, -715.31], [-2761.26, -705.63], [-2779.44, -705.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2845.14, -655.77], [-2836.65, -656.03], [-2837.21, -675.08], [-2839.87, -675.0], [-2839.83, -673.59], [-2844.7, -673.44], [-2844.52, -667.23], [-2845.48, -667.2], [-2845.14, -655.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2818.28, -710.61], [-2818.4, -714.93], [-2820.5, -714.87], [-2820.65, -720.67], [-2808.03, -721.02], [-2807.7, -709.4], [-2811.85, -709.3], [-2811.9, -710.78], [-2818.28, -710.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2779.97, -717.99], [-2780.09, -720.99], [-2781.26, -720.94], [-2781.48, -726.11], [-2780.3, -726.15], [-2780.36, -727.55], [-2761.85, -728.31], [-2761.47, -718.75], [-2779.97, -717.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2798.63, -617.08], [-2790.31, -617.31], [-2790.58, -627.19], [-2791.18, -627.17], [-2791.27, -630.48], [-2791.63, -630.47], [-2791.69, -632.44], [-2798.49, -632.25], [-2798.43, -630.29], [-2799.0, -630.27], [-2798.63, -617.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2814.17, -615.22], [-2814.59, -628.35], [-2813.95, -628.36], [-2813.98, -629.43], [-2811.57, -629.5], [-2809.51, -630.65], [-2806.83, -630.74], [-2804.97, -629.56], [-2804.89, -627.22], [-2805.67, -627.19], [-2805.54, -623.25], [-2805.09, -623.26], [-2804.95, -618.81], [-2805.4, -618.8], [-2805.3, -615.5], [-2814.17, -615.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2771.76, -621.11], [-2771.8, -622.94], [-2773.07, -622.92], [-2773.11, -624.78], [-2776.63, -624.71], [-2776.67, -626.5], [-2777.82, -626.48], [-2777.93, -632.15], [-2775.84, -632.18], [-2775.86, -633.2], [-2772.25, -633.27], [-2772.23, -632.26], [-2760.63, -632.5], [-2760.61, -631.4], [-2758.08, -631.45], [-2758.01, -628.19], [-2756.51, -628.22], [-2756.46, -626.1], [-2757.97, -626.06], [-2757.89, -622.31], [-2760.43, -622.26], [-2760.41, -621.34], [-2771.76, -621.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2788.33, -618.39], [-2788.48, -624.5], [-2782.2, -624.65], [-2782.05, -618.53], [-2788.33, -618.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2801.81, -598.97], [-2807.98, -598.84], [-2808.12, -605.65], [-2801.96, -605.77], [-2801.81, -598.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2833.97, -348.34], [-2822.47, -348.77], [-2822.64, -353.29], [-2821.11, -353.34], [-2821.24, -357.05], [-2822.78, -356.98], [-2822.92, -360.57], [-2836.71, -360.05], [-2836.5, -354.57], [-2834.21, -354.65], [-2833.97, -348.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2864.66, -418.81], [-2855.72, -419.03], [-2855.95, -428.44], [-2858.98, -428.37], [-2859.07, -432.1], [-2866.92, -431.9], [-2866.84, -428.58], [-2869.35, -428.52], [-2869.22, -423.19], [-2864.77, -423.3], [-2864.66, -418.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2853.47, -485.05], [-2853.65, -491.84], [-2856.43, -491.77], [-2856.63, -499.27], [-2843.2, -499.62], [-2842.82, -485.34], [-2846.84, -485.23], [-2846.82, -484.2], [-2849.93, -484.11], [-2849.95, -485.16], [-2853.47, -485.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2847.07, -402.97], [-2856.4, -391.16], [-2851.46, -387.29], [-2853.2, -385.08], [-2849.91, -382.5], [-2848.17, -384.71], [-2842.55, -380.3], [-2835.83, -388.81], [-2845.45, -396.36], [-2842.85, -399.65], [-2847.07, -402.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2815.46, -273.27], [-2815.68, -282.29], [-2800.64, -282.66], [-2800.47, -275.45], [-2803.6, -275.38], [-2803.55, -273.57], [-2806.67, -273.49], [-2806.53, -267.99], [-2813.38, -267.81], [-2813.51, -273.32], [-2815.46, -273.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2817.93, -411.08], [-2814.85, -415.33], [-2818.69, -418.1], [-2813.07, -425.86], [-2808.19, -422.36], [-2809.91, -419.99], [-2801.69, -414.08], [-2806.51, -407.43], [-2807.07, -407.82], [-2809.24, -404.82], [-2817.93, -411.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2834.76, -314.11], [-2835.31, -328.01], [-2829.89, -328.23], [-2830.05, -332.38], [-2824.3, -332.6], [-2824.09, -327.43], [-2823.29, -327.45], [-2823.19, -324.69], [-2821.8, -324.75], [-2821.4, -314.63], [-2834.76, -314.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2842.57, -613.43], [-2832.85, -613.67], [-2833.19, -627.55], [-2834.33, -627.52], [-2834.37, -628.94], [-2835.92, -629.72], [-2838.27, -629.66], [-2839.56, -628.81], [-2842.34, -628.75], [-2842.31, -627.32], [-2842.9, -627.32], [-2842.57, -613.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2819.59, -469.18], [-2820.07, -480.13], [-2818.07, -480.22], [-2818.19, -482.93], [-2814.07, -483.11], [-2813.95, -480.4], [-2807.68, -480.67], [-2807.54, -477.55], [-2804.8, -477.67], [-2804.53, -471.42], [-2807.26, -471.29], [-2807.19, -469.73], [-2819.59, -469.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2863.5, -519.05], [-2875.02, -518.64], [-2875.16, -522.64], [-2877.94, -522.54], [-2878.24, -531.02], [-2875.46, -531.13], [-2875.6, -534.97], [-2864.08, -535.38], [-2863.94, -531.46], [-2863.1, -531.48], [-2862.78, -522.34], [-2863.62, -522.32], [-2863.5, -519.05]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-2757.2, -366.41], [-2767.41, -366.07], [-2767.62, -372.8], [-2771.4, -372.68], [-2771.61, -379.04], [-2767.83, -379.16], [-2767.93, -382.12], [-2757.72, -382.46], [-2757.53, -376.68], [-2755.21, -376.76], [-2755.01, -370.45], [-2757.33, -370.37], [-2757.2, -366.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2826.87, -615.83], [-2817.28, -616.1], [-2817.4, -620.73], [-2815.89, -620.77], [-2815.99, -624.25], [-2817.5, -624.2], [-2817.62, -628.5], [-2818.95, -628.46], [-2819.03, -631.18], [-2826.24, -630.99], [-2826.16, -628.27], [-2827.22, -628.24], [-2826.87, -615.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2866.4, -401.59], [-2859.58, -401.78], [-2859.68, -405.37], [-2857.5, -405.43], [-2857.62, -409.58], [-2858.76, -409.54], [-2858.85, -412.64], [-2859.89, -412.61], [-2859.93, -413.91], [-2869.48, -413.64], [-2869.18, -403.46], [-2866.46, -403.54], [-2866.4, -401.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2769.79, -585.17], [-2769.95, -589.18], [-2776.95, -588.89], [-2777.18, -594.48], [-2771.19, -594.73], [-2771.24, -595.99], [-2770.24, -596.03], [-2770.28, -596.99], [-2759.58, -597.43], [-2759.52, -595.99], [-2757.12, -596.09], [-2756.75, -587.01], [-2759.14, -586.91], [-2759.09, -585.61], [-2769.79, -585.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2840.56, -482.29], [-2840.88, -491.41], [-2836.1, -491.57], [-2836.22, -494.94], [-2830.19, -495.16], [-2830.01, -490.1], [-2825.85, -490.24], [-2825.74, -486.94], [-2822.43, -487.06], [-2822.16, -479.43], [-2825.4, -479.32], [-2825.37, -478.61], [-2836.97, -478.19], [-2837.12, -482.41], [-2840.56, -482.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2809.34, -318.09], [-2809.85, -333.14], [-2804.94, -333.3], [-2805.0, -335.02], [-2799.7, -335.2], [-2799.64, -333.48], [-2793.07, -333.7], [-2792.97, -330.69], [-2789.78, -330.8], [-2789.55, -323.73], [-2794.86, -323.54], [-2794.7, -318.59], [-2798.65, -318.45], [-2798.56, -315.58], [-2804.62, -315.37], [-2804.72, -318.26], [-2809.34, -318.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2828.85, -270.69], [-2825.09, -270.78], [-2825.05, -269.16], [-2824.69, -269.17], [-2824.58, -264.21], [-2817.92, -264.36], [-2818.05, -270.15], [-2819.84, -270.11], [-2819.95, -275.47], [-2818.8, -275.49], [-2818.86, -278.49], [-2820.01, -278.46], [-2820.09, -281.79], [-2827.47, -281.63], [-2827.43, -279.49], [-2830.79, -279.42], [-2830.7, -275.06], [-2828.95, -275.1], [-2828.85, -270.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2858.16, -413.32], [-2858.22, -418.06], [-2850.91, -418.17], [-2850.84, -413.42], [-2858.16, -413.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2822.36, -598.3], [-2822.6, -605.54], [-2829.16, -605.32], [-2828.91, -598.09], [-2822.36, -598.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2867.34, -434.06], [-2867.4, -441.27], [-2859.15, -441.34], [-2859.08, -434.14], [-2867.34, -434.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2847.55, -409.32], [-2844.39, -404.64], [-2837.79, -409.08], [-2840.96, -413.76], [-2847.55, -409.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2814.14, -345.82], [-2806.04, -345.98], [-2806.18, -353.01], [-2814.29, -352.84], [-2814.14, -345.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2807.04, -590.69], [-2807.17, -597.27], [-2800.68, -597.4], [-2800.54, -590.84], [-2807.04, -590.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2857.76, -578.88], [-2857.91, -583.77], [-2850.82, -584.0], [-2850.67, -579.11], [-2857.76, -578.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2820.25, -368.02], [-2812.88, -370.96], [-2817.88, -383.4], [-2825.24, -380.45], [-2820.25, -368.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2780.28, -363.57], [-2780.49, -368.24], [-2786.77, -367.96], [-2786.56, -363.28], [-2780.28, -363.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2835.41, -598.38], [-2835.57, -604.09], [-2829.4, -604.27], [-2829.24, -598.56], [-2835.41, -598.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2771.12, -495.15], [-2771.51, -504.18], [-2756.12, -504.84], [-2755.73, -495.81], [-2771.12, -495.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2857.93, -526.73], [-2858.27, -538.37], [-2848.38, -538.65], [-2848.05, -527.01], [-2857.93, -526.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2802.65, -390.63], [-2806.15, -385.85], [-2814.86, -392.18], [-2811.35, -396.97], [-2802.65, -390.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2782.2, -600.84], [-2782.47, -606.86], [-2789.67, -606.56], [-2789.41, -600.52], [-2782.2, -600.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2860.25, -511.12], [-2860.46, -517.11], [-2853.47, -517.34], [-2853.27, -511.37], [-2860.25, -511.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2829.06, -589.82], [-2829.27, -597.03], [-2839.75, -596.73], [-2839.54, -589.51], [-2829.06, -589.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2781.85, -440.71], [-2777.85, -449.45], [-2765.67, -443.92], [-2769.67, -435.18], [-2781.85, -440.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2879.37, -597.55], [-2879.8, -607.59], [-2864.63, -608.25], [-2864.19, -598.19], [-2879.37, -597.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2788.34, -572.52], [-2780.98, -572.69], [-2781.17, -580.97], [-2788.54, -580.79], [-2788.34, -572.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2873.52, -489.57], [-2873.84, -499.63], [-2860.55, -500.04], [-2860.24, -489.98], [-2873.52, -489.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2780.23, -285.82], [-2775.62, -285.91], [-2775.51, -280.35], [-2780.12, -280.26], [-2780.23, -285.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2818.86, -568.52], [-2819.26, -582.34], [-2812.93, -582.52], [-2812.86, -580.35], [-2807.84, -580.49], [-2807.5, -568.85], [-2818.86, -568.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2804.26, -529.03], [-2804.47, -535.12], [-2801.95, -535.2], [-2802.06, -538.28], [-2790.54, -538.69], [-2790.22, -529.54], [-2804.26, -529.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2877.02, -586.18], [-2877.27, -594.88], [-2867.06, -595.18], [-2866.97, -592.14], [-2864.95, -592.19], [-2864.79, -586.53], [-2877.02, -586.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2800.61, -454.39], [-2799.76, -463.07], [-2793.55, -462.47], [-2793.15, -466.57], [-2787.6, -466.05], [-2788.83, -453.26], [-2800.61, -454.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2796.35, -272.88], [-2796.83, -283.35], [-2789.12, -283.7], [-2788.98, -280.67], [-2786.88, -280.76], [-2786.53, -273.33], [-2796.35, -272.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2836.48, -429.14], [-2835.11, -443.47], [-2823.85, -442.4], [-2825.13, -429.04], [-2831.01, -429.59], [-2831.1, -428.62], [-2836.48, -429.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2803.38, -568.91], [-2803.67, -577.56], [-2802.51, -577.61], [-2802.59, -580.16], [-2791.89, -580.52], [-2791.51, -569.31], [-2803.38, -568.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2797.95, -400.61], [-2790.14, -410.7], [-2786.07, -407.57], [-2784.82, -409.18], [-2778.77, -404.52], [-2787.83, -392.84], [-2797.95, -400.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2840.37, -450.36], [-2839.77, -456.86], [-2834.32, -456.37], [-2834.46, -454.99], [-2831.22, -454.71], [-2831.69, -449.58], [-2840.37, -450.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2856.48, -612.84], [-2847.16, -613.1], [-2847.68, -631.5], [-2853.24, -631.34], [-2853.15, -628.13], [-2856.91, -628.03], [-2856.48, -612.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2867.39, -612.26], [-2857.23, -612.56], [-2857.6, -625.28], [-2858.64, -625.25], [-2858.79, -630.37], [-2867.9, -630.11], [-2867.39, -612.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2765.6, -455.83], [-2756.42, -456.12], [-2756.8, -467.89], [-2758.04, -467.85], [-2758.13, -470.54], [-2764.95, -470.32], [-2764.86, -467.63], [-2765.98, -467.6], [-2765.6, -455.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2770.44, -478.04], [-2770.73, -488.19], [-2755.11, -488.63], [-2754.83, -478.48], [-2755.86, -478.45], [-2755.79, -476.13], [-2760.48, -476.01], [-2760.55, -478.33], [-2770.44, -478.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2830.42, -524.94], [-2830.59, -530.87], [-2827.76, -530.95], [-2827.89, -535.74], [-2830.73, -535.66], [-2830.75, -536.55], [-2840.69, -536.27], [-2840.36, -524.66], [-2830.42, -524.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2870.53, -612.12], [-2874.48, -612.0], [-2874.45, -610.75], [-2878.98, -610.62], [-2879.02, -611.87], [-2880.52, -611.83], [-2881.03, -629.58], [-2871.04, -629.86], [-2870.53, -612.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2770.31, -530.25], [-2770.66, -540.05], [-2758.78, -540.47], [-2758.74, -539.49], [-2756.51, -539.58], [-2756.24, -531.85], [-2758.47, -531.77], [-2758.43, -530.66], [-2770.31, -530.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2868.13, -573.58], [-2876.21, -573.35], [-2876.51, -583.64], [-2868.43, -583.87], [-2868.38, -582.12], [-2865.54, -582.21], [-2865.41, -577.74], [-2868.25, -577.66], [-2868.13, -573.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2870.4, -445.63], [-2866.84, -445.63], [-2866.83, -443.81], [-2862.34, -443.81], [-2862.36, -456.47], [-2864.92, -456.46], [-2864.91, -459.41], [-2870.41, -459.4], [-2870.4, -445.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2849.89, -568.32], [-2850.22, -578.61], [-2848.82, -578.66], [-2848.96, -582.66], [-2839.46, -582.97], [-2839.32, -578.96], [-2838.37, -579.0], [-2838.04, -568.7], [-2849.89, -568.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2821.34, -525.49], [-2821.69, -537.68], [-2820.49, -537.71], [-2820.57, -540.33], [-2812.76, -540.56], [-2812.68, -537.94], [-2811.54, -537.97], [-2811.19, -525.79], [-2821.34, -525.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2755.13, -514.02], [-2755.41, -523.71], [-2774.28, -523.16], [-2774.24, -522.0], [-2775.17, -521.98], [-2775.08, -518.82], [-2774.15, -518.85], [-2774.0, -513.46], [-2755.13, -514.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2754.22, -348.41], [-2766.11, -347.98], [-2766.15, -349.16], [-2768.29, -349.08], [-2768.57, -356.65], [-2766.43, -356.72], [-2766.65, -362.84], [-2754.76, -363.27], [-2754.22, -348.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2876.15, -561.7], [-2876.39, -571.38], [-2862.58, -571.72], [-2862.34, -562.05], [-2868.5, -561.89], [-2868.44, -559.18], [-2874.78, -559.03], [-2874.84, -561.73], [-2876.15, -561.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2856.95, -443.83], [-2857.03, -451.79], [-2844.32, -451.91], [-2844.25, -443.95], [-2849.37, -443.9], [-2849.36, -442.77], [-2852.36, -442.74], [-2852.37, -443.87], [-2856.95, -443.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2777.37, -380.09], [-2778.96, -383.92], [-2782.74, -382.37], [-2785.1, -388.09], [-2772.8, -400.15], [-2765.92, -394.85], [-2761.7, -396.58], [-2758.15, -387.99], [-2777.37, -380.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2833.15, -567.62], [-2833.72, -581.02], [-2827.47, -581.28], [-2827.33, -577.99], [-2821.08, -578.26], [-2820.54, -565.29], [-2828.45, -564.96], [-2828.57, -567.81], [-2833.15, -567.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2772.23, -567.74], [-2772.47, -575.21], [-2768.41, -575.33], [-2768.45, -576.67], [-2763.21, -576.84], [-2763.16, -575.51], [-2756.64, -575.72], [-2756.4, -568.26], [-2772.23, -567.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2769.4, -316.94], [-2769.83, -327.6], [-2769.35, -327.62], [-2769.57, -333.05], [-2770.04, -333.04], [-2770.37, -341.41], [-2769.76, -341.44], [-2769.82, -343.06], [-2760.61, -343.43], [-2760.5, -340.83], [-2760.03, -340.84], [-2759.72, -333.06], [-2760.2, -333.05], [-2760.08, -330.28], [-2754.48, -330.5], [-2753.9, -315.99], [-2758.53, -315.81], [-2758.59, -317.36], [-2769.4, -316.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2936.76, -334.61], [-2934.85, -346.62], [-2922.74, -344.7], [-2923.15, -342.12], [-2918.4, -341.38], [-2919.09, -337.1], [-2923.42, -337.79], [-2923.78, -335.54], [-2928.21, -336.25], [-2928.68, -333.34], [-2936.76, -334.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2916.46, -364.55], [-2914.3, -378.1], [-2902.26, -376.2], [-2902.99, -371.6], [-2899.29, -371.02], [-2900.45, -363.74], [-2904.38, -364.36], [-2903.96, -366.99], [-2910.0, -367.95], [-2910.69, -363.64], [-2916.46, -364.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2906.58, -265.71], [-2903.72, -283.86], [-2903.16, -283.78], [-2902.75, -286.37], [-2897.29, -285.51], [-2897.7, -282.92], [-2894.12, -282.37], [-2897.35, -261.88], [-2903.29, -262.81], [-2902.92, -265.14], [-2906.58, -265.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2899.08, -361.09], [-2895.7, -368.39], [-2893.45, -367.35], [-2890.21, -374.37], [-2886.22, -372.54], [-2885.55, -373.97], [-2881.22, -371.98], [-2881.89, -370.54], [-2877.94, -368.72], [-2883.21, -357.33], [-2889.44, -360.19], [-2890.79, -357.27], [-2899.08, -361.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2872.73, -316.14], [-2872.75, -316.96], [-2874.5, -316.91], [-2874.73, -324.85], [-2872.98, -324.9], [-2873.15, -330.61], [-2864.03, -330.88], [-2863.65, -317.66], [-2860.81, -317.74], [-2860.69, -313.44], [-2867.57, -313.25], [-2867.66, -316.29], [-2872.73, -316.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2915.07, -328.3], [-2910.69, -327.62], [-2910.92, -326.19], [-2906.72, -325.52], [-2908.32, -315.49], [-2910.23, -315.8], [-2910.58, -313.6], [-2917.87, -314.74], [-2918.94, -316.01], [-2918.43, -319.23], [-2917.0, -320.2], [-2916.5, -323.35], [-2915.87, -323.25], [-2915.07, -328.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2907.12, -312.27], [-2901.42, -311.51], [-2900.66, -317.18], [-2895.13, -316.45], [-2894.37, -322.14], [-2892.92, -321.95], [-2892.24, -327.01], [-2897.41, -327.69], [-2896.81, -332.14], [-2902.69, -332.92], [-2904.2, -321.67], [-2905.12, -321.8], [-2905.49, -319.07], [-2906.2, -319.16], [-2907.12, -312.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2890.03, -266.35], [-2890.54, -282.41], [-2888.9, -282.45], [-2888.97, -284.4], [-2884.05, -284.55], [-2883.99, -282.62], [-2880.44, -282.73], [-2880.51, -284.7], [-2875.78, -284.84], [-2875.72, -282.88], [-2873.81, -282.94], [-2873.29, -266.89], [-2881.59, -266.61], [-2881.74, -271.39], [-2882.25, -271.38], [-2882.1, -266.6], [-2890.03, -266.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2873.44, -236.58], [-2873.77, -245.86], [-2855.75, -246.49], [-2855.43, -237.21], [-2873.44, -236.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2927.54, -322.08], [-2923.13, -321.38], [-2922.16, -327.51], [-2926.57, -328.21], [-2927.54, -322.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2885.2, -335.33], [-2890.25, -335.28], [-2890.32, -341.48], [-2885.27, -341.53], [-2885.2, -335.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2926.95, -271.81], [-2925.14, -284.07], [-2924.53, -283.97], [-2924.25, -285.86], [-2914.76, -284.47], [-2915.04, -282.58], [-2914.46, -282.5], [-2916.27, -270.24], [-2926.95, -271.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2929.21, -317.52], [-2932.53, -317.95], [-2932.64, -317.23], [-2935.36, -317.59], [-2934.71, -322.33], [-2936.47, -322.56], [-2935.8, -327.53], [-2928.0, -326.48], [-2929.21, -317.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2931.69, -360.76], [-2929.62, -360.4], [-2930.05, -357.94], [-2924.21, -356.92], [-2923.77, -359.38], [-2920.65, -358.83], [-2918.1, -373.34], [-2929.13, -375.28], [-2931.69, -360.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2870.0, -251.6], [-2870.22, -258.62], [-2870.9, -258.6], [-2871.06, -263.44], [-2870.39, -263.46], [-2870.41, -264.19], [-2856.71, -264.64], [-2856.3, -252.05], [-2870.0, -251.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2882.5, -357.56], [-2875.1, -368.14], [-2864.73, -360.92], [-2872.13, -350.35], [-2872.97, -350.94], [-2875.05, -347.99], [-2880.79, -351.99], [-2878.73, -354.94], [-2882.5, -357.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3028.45, -242.72], [-3020.89, -241.52], [-3019.78, -248.56], [-3018.91, -248.42], [-3017.98, -254.26], [-3018.85, -254.4], [-3017.73, -261.52], [-3023.28, -262.4], [-3023.67, -259.91], [-3025.68, -260.22], [-3028.45, -242.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3181.0, -306.57], [-3177.44, -305.99], [-3177.52, -305.52], [-3172.06, -304.62], [-3168.91, -323.47], [-3171.74, -323.93], [-3171.37, -326.14], [-3177.05, -327.08], [-3177.42, -324.88], [-3177.93, -324.97], [-3181.0, -306.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3195.38, -309.27], [-3193.03, -308.89], [-3193.43, -306.38], [-3186.45, -305.26], [-3183.17, -325.55], [-3186.42, -326.08], [-3185.95, -329.0], [-3191.18, -329.84], [-3191.66, -326.92], [-3192.51, -327.05], [-3195.38, -309.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3226.1, -277.35], [-3223.69, -292.77], [-3220.84, -292.33], [-3220.43, -294.98], [-3215.62, -294.22], [-3216.04, -291.59], [-3214.52, -291.34], [-3217.35, -273.21], [-3222.98, -274.09], [-3222.56, -276.81], [-3226.1, -277.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3091.2, -302.15], [-3084.07, -301.03], [-3082.02, -313.85], [-3082.58, -313.95], [-3082.28, -315.8], [-3088.1, -316.71], [-3088.4, -314.87], [-3089.15, -314.98], [-3089.67, -311.74], [-3090.66, -311.89], [-3091.58, -306.15], [-3090.59, -305.99], [-3091.2, -302.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3147.71, -310.32], [-3146.2, -319.66], [-3135.87, -317.99], [-3137.39, -308.67], [-3147.71, -310.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3236.56, -312.82], [-3232.66, -337.74], [-3218.7, -335.57], [-3222.6, -310.65], [-3236.56, -312.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3214.24, -275.47], [-3205.33, -273.88], [-3202.84, -287.78], [-3211.75, -289.37], [-3214.24, -275.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3027.06, -291.51], [-3017.63, -289.77], [-3015.47, -301.45], [-3024.89, -303.19], [-3027.06, -291.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3074.78, -251.13], [-3082.87, -252.32], [-3080.47, -268.49], [-3072.39, -267.3], [-3074.78, -251.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3145.67, -292.48], [-3144.96, -296.69], [-3138.86, -295.66], [-3139.57, -291.45], [-3145.67, -292.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3128.13, -282.97], [-3134.06, -283.9], [-3133.05, -290.27], [-3127.13, -289.34], [-3128.13, -282.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3140.77, -284.94], [-3134.56, -283.86], [-3133.49, -289.94], [-3139.71, -291.01], [-3140.77, -284.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2995.24, -239.62], [-3009.95, -241.97], [-3006.94, -260.63], [-2992.23, -258.28], [-2995.24, -239.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3150.38, -265.03], [-3140.84, -263.47], [-3138.58, -277.21], [-3144.05, -278.11], [-3143.66, -280.49], [-3147.74, -281.16], [-3150.38, -265.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3073.25, -295.64], [-3066.38, -294.52], [-3064.01, -308.79], [-3071.82, -310.08], [-3073.07, -302.59], [-3072.13, -302.43], [-3073.25, -295.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3200.59, -319.3], [-3211.02, -321.06], [-3208.87, -333.72], [-3201.35, -332.45], [-3201.72, -330.25], [-3198.81, -329.76], [-3200.59, -319.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3040.51, -246.84], [-3038.06, -246.46], [-3038.26, -245.12], [-3034.09, -244.48], [-3033.88, -245.82], [-3031.49, -245.44], [-3028.52, -264.5], [-3037.54, -265.9], [-3040.51, -246.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3015.13, -290.31], [-3013.46, -300.66], [-3011.79, -300.4], [-3011.41, -302.79], [-3003.76, -301.57], [-3004.15, -299.17], [-3002.76, -298.96], [-3004.42, -288.59], [-3015.13, -290.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3056.0, -248.19], [-3065.31, -249.74], [-3062.82, -264.69], [-3060.98, -264.39], [-3060.65, -266.39], [-3056.76, -265.74], [-3057.09, -263.74], [-3053.51, -263.16], [-3056.0, -248.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3130.86, -311.24], [-3129.53, -319.8], [-3127.79, -319.53], [-3127.45, -321.76], [-3120.94, -320.75], [-3121.29, -318.53], [-3114.65, -317.5], [-3115.98, -308.95], [-3130.86, -311.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3203.58, -271.42], [-3194.73, -269.8], [-3192.65, -281.07], [-3193.54, -281.24], [-3193.27, -282.69], [-3198.38, -283.62], [-3198.65, -282.17], [-3201.5, -282.7], [-3203.58, -271.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[925.52, 2088.6], [933.36, 2081.58], [937.71, 2077.77], [942.87, 2083.85], [946.93, 2080.26], [953.44, 2087.7], [946.13, 2093.68], [937.37, 2101.42], [936.72, 2100.8], [928.23, 2091.46], [925.52, 2088.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1037.13, 1068.86], [1042.53, 1073.86], [1049.64, 1066.25], [1044.24, 1061.24], [1037.13, 1068.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2014.17, 1870.01], [2019.71, 1875.29], [2027.01, 1867.67], [2025.56, 1866.29], [2028.44, 1863.28], [2024.35, 1859.37], [2021.57, 1862.27], [2021.23, 1861.94], [2017.84, 1865.47], [2018.19, 1865.8], [2014.17, 1870.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1916.59, 1770.54], [1911.27, 1765.21], [1914.69, 1761.83], [1914.2, 1761.33], [1917.87, 1757.7], [1918.37, 1758.2], [1921.99, 1754.62], [1926.14, 1758.77], [1924.82, 1760.08], [1926.0, 1761.25], [1916.59, 1770.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1999.78, 1849.47], [2002.51, 1846.7], [2001.98, 1846.18], [2006.09, 1841.97], [2007.87, 1843.7], [2009.57, 1841.96], [2012.63, 1844.95], [2010.94, 1846.68], [2011.9, 1847.62], [2005.07, 1854.6], [1999.78, 1849.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1931.39, 1704.33], [1932.02, 1704.97], [1928.89, 1708.09], [1932.7, 1711.87], [1935.83, 1708.74], [1937.31, 1710.21], [1941.53, 1705.99], [1940.7, 1705.17], [1944.77, 1701.1], [1939.68, 1696.05], [1931.39, 1704.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2081.08, 1850.13], [2086.12, 1855.02], [2088.11, 1852.99], [2088.72, 1853.58], [2094.12, 1848.06], [2091.36, 1845.39], [2092.45, 1844.27], [2090.05, 1841.94], [2088.96, 1843.06], [2088.46, 1842.58], [2081.08, 1850.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1836.2, 1696.75], [1841.67, 1690.85], [1842.72, 1691.81], [1848.02, 1686.08], [1849.49, 1687.44], [1848.28, 1688.75], [1851.94, 1692.12], [1845.11, 1699.5], [1844.2, 1698.67], [1841.49, 1701.6], [1836.2, 1696.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1933.63, 1787.81], [1928.26, 1782.56], [1932.35, 1778.4], [1931.72, 1777.8], [1935.11, 1774.36], [1935.73, 1774.96], [1938.05, 1772.61], [1939.34, 1773.86], [1940.27, 1772.91], [1944.36, 1776.9], [1933.63, 1787.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2063.67, 1831.4], [2069.91, 1824.77], [2072.59, 1827.27], [2073.89, 1825.89], [2077.96, 1829.7], [2070.42, 1837.72], [2067.56, 1835.04], [2065.17, 1837.58], [2061.79, 1834.41], [2064.18, 1831.88], [2063.67, 1831.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1978.67, 1755.85], [1973.54, 1751.05], [1976.65, 1747.76], [1975.9, 1747.06], [1976.57, 1746.36], [1975.98, 1745.81], [1979.0, 1742.61], [1979.58, 1743.16], [1982.45, 1740.13], [1988.69, 1745.98], [1982.18, 1752.88], [1981.8, 1752.53], [1978.67, 1755.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1973.2, 1822.8], [1976.29, 1819.69], [1975.63, 1819.02], [1978.57, 1816.07], [1979.24, 1816.73], [1980.95, 1815.01], [1986.57, 1820.57], [1978.82, 1828.36], [1978.19, 1827.73], [1976.44, 1829.49], [1972.08, 1825.19], [1973.83, 1823.42], [1973.2, 1822.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1952.95, 1803.08], [1947.1, 1797.51], [1949.89, 1794.59], [1949.43, 1794.15], [1952.6, 1790.84], [1953.06, 1791.28], [1955.06, 1789.2], [1957.34, 1791.36], [1958.99, 1789.65], [1962.02, 1792.54], [1960.38, 1794.26], [1960.91, 1794.77], [1952.95, 1803.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1997.66, 1774.53], [1991.23, 1768.22], [1998.35, 1761.01], [1998.97, 1761.61], [2001.82, 1758.73], [2002.21, 1759.12], [2003.72, 1757.59], [2008.57, 1762.34], [2007.05, 1763.88], [2007.63, 1764.44], [2003.8, 1768.32], [2004.13, 1768.65], [2000.51, 1772.33], [2000.16, 1771.99], [1997.66, 1774.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2035.66, 1582.8], [2038.9, 1579.63], [2040.05, 1580.79], [2046.19, 1574.8], [2046.8, 1575.41], [2063.01, 1559.56], [2060.99, 1557.52], [2065.76, 1552.85], [2068.69, 1555.81], [2070.04, 1554.5], [2075.16, 1559.7], [2079.65, 1564.26], [2078.29, 1565.58], [2081.38, 1568.73], [2080.77, 1569.32], [2093.28, 1582.03], [2062.05, 1607.82], [2049.98, 1595.55], [2053.29, 1592.33], [2047.53, 1586.47], [2043.32, 1590.58], [2035.66, 1582.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2004.63, 1773.09], [2012.04, 1765.8], [2017.65, 1771.47], [2010.25, 1778.76], [2004.63, 1773.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1961.27, 1750.66], [1957.49, 1747.29], [1962.52, 1741.67], [1966.31, 1745.03], [1961.27, 1750.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2032.16, 1818.78], [2036.12, 1822.58], [2040.04, 1818.53], [2036.08, 1814.73], [2032.16, 1818.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1974.57, 1745.82], [1968.39, 1739.81], [1975.27, 1732.79], [1981.45, 1738.8], [1974.57, 1745.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1926.8, 1745.07], [1931.88, 1739.85], [1937.11, 1744.91], [1932.03, 1750.14], [1926.8, 1745.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2083.88, 1875.91], [2079.13, 1880.91], [2071.22, 1873.46], [2075.97, 1868.45], [2083.88, 1875.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1862.59, 1688.45], [1865.33, 1685.36], [1869.86, 1689.38], [1867.12, 1692.46], [1862.59, 1688.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2063.78, 1786.4], [2056.99, 1780.17], [2064.99, 1771.5], [2071.78, 1777.74], [2063.78, 1786.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2019.72, 1786.33], [2025.25, 1780.79], [2018.71, 1774.3], [2013.17, 1779.83], [2019.72, 1786.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2001.18, 1825.12], [2006.2, 1820.27], [2011.04, 1825.25], [2006.02, 1830.09], [2001.18, 1825.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1900.26, 1595.71], [1893.44, 1589.24], [1901.71, 1580.57], [1908.53, 1587.04], [1900.26, 1595.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1901.77, 1683.37], [1907.31, 1677.79], [1898.82, 1669.42], [1893.28, 1675.0], [1901.77, 1683.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2061.76, 1831.51], [2055.42, 1825.4], [2064.71, 1815.84], [2071.06, 1821.95], [2061.76, 1831.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2035.23, 1758.14], [2030.0, 1752.88], [2034.41, 1748.51], [2039.64, 1753.77], [2035.23, 1758.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2102.83, 1856.52], [2096.58, 1850.63], [2089.43, 1858.16], [2095.68, 1864.05], [2102.83, 1856.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2020.71, 1799.29], [2015.13, 1794.1], [2026.4, 1782.06], [2031.98, 1787.25], [2020.71, 1799.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1891.4, 1585.62], [1883.94, 1578.64], [1894.92, 1567.0], [1902.37, 1573.99], [1891.4, 1585.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1891.81, 1558.57], [1888.03, 1555.04], [1892.67, 1550.13], [1896.44, 1553.66], [1891.81, 1558.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2046.32, 1831.68], [2050.15, 1835.16], [2054.34, 1830.58], [2050.5, 1827.1], [2046.32, 1831.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2025.21, 1743.5], [2030.62, 1748.61], [2037.09, 1741.78], [2031.68, 1736.69], [2025.21, 1743.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2038.39, 1890.15], [2033.46, 1885.34], [2041.3, 1877.38], [2046.24, 1882.2], [2038.39, 1890.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1837.62, 1674.27], [1833.74, 1670.38], [1836.51, 1667.63], [1840.39, 1671.53], [1837.62, 1674.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2060.83, 1887.76], [2063.73, 1884.85], [2068.07, 1889.14], [2065.16, 1892.05], [2060.83, 1887.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1817.37, 1679.11], [1823.92, 1671.93], [1829.91, 1677.37], [1823.37, 1684.54], [1817.37, 1679.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1972.51, 1766.69], [1967.84, 1771.55], [1972.39, 1775.89], [1977.06, 1771.03], [1972.51, 1766.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1846.25, 1705.67], [1851.35, 1700.09], [1857.9, 1706.05], [1852.8, 1711.62], [1846.25, 1705.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1944.21, 1720.7], [1938.42, 1715.04], [1948.59, 1704.71], [1954.38, 1710.36], [1944.21, 1720.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1961.14, 1786.34], [1957.13, 1782.61], [1961.79, 1777.63], [1965.81, 1781.37], [1961.14, 1786.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1945.83, 1724.55], [1941.88, 1720.83], [1939.23, 1723.63], [1943.18, 1727.35], [1945.83, 1724.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1973.45, 1794.3], [1968.37, 1789.26], [1973.46, 1784.15], [1978.55, 1789.19], [1973.45, 1794.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1867.28, 1684.56], [1869.48, 1682.07], [1874.18, 1686.18], [1871.99, 1688.67], [1867.28, 1684.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2064.89, 1789.3], [2070.36, 1794.46], [2077.84, 1786.57], [2072.38, 1781.42], [2064.89, 1789.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1994.51, 1784.05], [1992.2, 1781.84], [1996.29, 1777.59], [1998.59, 1779.8], [1994.51, 1784.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1882.42, 1671.45], [1880.15, 1675.37], [1876.09, 1673.04], [1878.37, 1669.11], [1882.42, 1671.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2082.26, 1804.28], [2089.63, 1796.65], [2080.71, 1788.09], [2073.33, 1795.72], [2082.26, 1804.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1961.86, 1767.44], [1966.71, 1771.88], [1970.94, 1767.3], [1966.11, 1762.86], [1961.86, 1767.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2045.99, 1899.88], [2039.33, 1893.37], [2049.99, 1882.52], [2056.67, 1889.02], [2045.99, 1899.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1920.29, 1611.85], [1927.05, 1618.18], [1935.7, 1609.01], [1928.95, 1602.69], [1920.29, 1611.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2099.33, 1811.41], [2093.69, 1816.97], [2101.78, 1825.12], [2107.42, 1819.56], [2099.33, 1811.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1919.68, 1771.66], [1925.98, 1765.47], [1932.28, 1771.81], [1925.98, 1778.02], [1919.68, 1771.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1917.28, 1610.84], [1910.66, 1604.52], [1918.51, 1596.35], [1925.14, 1602.68], [1917.28, 1610.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2027.97, 1797.6], [2033.77, 1803.27], [2042.05, 1794.86], [2036.24, 1789.17], [2027.97, 1797.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1948.94, 1766.12], [1945.11, 1762.5], [1949.78, 1757.58], [1953.62, 1761.21], [1948.94, 1766.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2007.07, 1729.64], [2001.74, 1724.72], [2007.09, 1718.97], [2012.42, 1723.89], [2007.07, 1729.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2030.42, 1810.52], [2026.93, 1807.14], [2022.47, 1811.73], [2025.97, 1815.1], [2030.42, 1810.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1815.45, 1628.56], [1819.15, 1623.32], [1826.93, 1628.77], [1823.23, 1634.01], [1815.45, 1628.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2077.38, 1846.75], [2070.56, 1840.34], [2078.09, 1832.39], [2084.91, 1838.81], [2077.38, 1846.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1850.48, 1685.3], [1847.43, 1682.33], [1850.77, 1678.91], [1853.82, 1681.88], [1850.48, 1685.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1944.97, 1622.26], [1942.06, 1619.43], [1945.5, 1615.9], [1948.43, 1618.74], [1944.97, 1622.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1867.6, 1614.21], [1876.39, 1604.53], [1898.76, 1624.7], [1889.98, 1634.37], [1867.6, 1614.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1941.62, 1737.79], [1938.73, 1735.1], [1943.03, 1730.52], [1945.91, 1733.21], [1941.62, 1737.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1942.71, 1794.09], [1936.93, 1788.89], [1943.37, 1781.79], [1943.7, 1782.09], [1945.81, 1779.75], [1951.26, 1784.66], [1942.71, 1794.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2050.33, 1824.86], [2044.34, 1819.01], [2051.07, 1812.16], [2051.55, 1812.63], [2055.49, 1808.63], [2061.0, 1814.01], [2050.33, 1824.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1987.65, 1841.06], [1993.64, 1847.07], [1995.3, 1845.44], [1995.72, 1845.87], [2001.99, 1839.66], [1995.56, 1833.22], [1987.65, 1841.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1959.93, 1812.94], [1954.31, 1807.52], [1962.1, 1799.5], [1964.81, 1802.11], [1966.55, 1800.3], [1969.47, 1803.11], [1959.93, 1812.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1833.32, 1694.65], [1827.75, 1689.76], [1835.33, 1681.21], [1838.3, 1683.82], [1836.7, 1685.62], [1839.3, 1687.91], [1833.32, 1694.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1855.38, 1714.12], [1861.08, 1708.38], [1867.08, 1714.29], [1865.07, 1716.31], [1866.3, 1717.51], [1862.61, 1721.23], [1855.38, 1714.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1986.3, 1839.38], [1978.95, 1832.21], [1990.34, 1820.61], [1993.27, 1823.47], [1991.99, 1824.77], [1996.41, 1829.08], [1986.3, 1839.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1763.59, 1618.97], [1772.04, 1609.69], [1790.47, 1626.33], [1782.87, 1634.68], [1773.88, 1626.55], [1773.03, 1627.5], [1763.59, 1618.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1898.93, 1754.19], [1893.45, 1749.01], [1897.49, 1744.77], [1896.89, 1744.21], [1900.92, 1739.99], [1906.99, 1745.73], [1898.93, 1754.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1877.73, 1692.7], [1885.17, 1699.91], [1888.4, 1696.59], [1887.05, 1695.3], [1889.72, 1692.57], [1883.62, 1686.66], [1877.73, 1692.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1907.26, 1602.15], [1902.23, 1597.43], [1912.95, 1586.08], [1918.81, 1591.57], [1912.14, 1598.64], [1911.31, 1597.86], [1907.26, 1602.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1867.1, 1709.72], [1862.54, 1705.6], [1862.98, 1705.12], [1859.66, 1702.11], [1863.73, 1697.64], [1871.61, 1704.76], [1867.1, 1709.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1806.72, 1669.61], [1809.91, 1666.17], [1812.33, 1668.4], [1815.05, 1665.47], [1820.49, 1670.47], [1814.58, 1676.84], [1806.72, 1669.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2026.08, 1875.46], [2031.6, 1880.73], [2039.45, 1872.56], [2038.06, 1871.24], [2039.41, 1869.82], [2035.98, 1866.55], [2034.63, 1867.95], [2033.93, 1867.3], [2026.08, 1875.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1956.23, 1734.01], [1965.04, 1724.4], [1972.37, 1731.06], [1963.56, 1740.68], [1963.14, 1740.3], [1961.86, 1741.68], [1955.42, 1735.82], [1956.69, 1734.44], [1956.23, 1734.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1883.62, 1576.01], [1878.14, 1570.85], [1880.59, 1568.29], [1880.05, 1567.78], [1883.34, 1564.32], [1883.88, 1564.81], [1886.66, 1561.88], [1892.13, 1567.04], [1883.62, 1576.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2072.03, 1886.79], [2065.36, 1880.54], [2070.97, 1874.59], [2077.64, 1880.84], [2077.14, 1881.36], [2078.97, 1883.08], [2074.29, 1888.03], [2072.47, 1886.33], [2072.03, 1886.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1988.52, 1766.71], [1981.42, 1759.75], [1992.12, 1748.89], [1992.8, 1749.55], [1993.52, 1748.83], [1995.48, 1750.74], [1994.76, 1751.46], [1999.24, 1755.84], [1988.52, 1766.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1869.1, 1700.89], [1874.78, 1694.96], [1881.29, 1701.15], [1880.41, 1702.06], [1882.02, 1703.59], [1878.0, 1707.79], [1876.39, 1706.27], [1875.61, 1707.08], [1869.1, 1700.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2041.04, 1813.1], [2035.56, 1807.85], [2038.05, 1805.27], [2037.69, 1804.92], [2040.88, 1801.61], [2041.24, 1801.97], [2044.9, 1798.18], [2050.38, 1803.43], [2041.04, 1813.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1909.26, 1760.65], [1903.45, 1754.98], [1912.38, 1745.9], [1914.16, 1747.65], [1915.17, 1746.63], [1918.06, 1749.45], [1917.06, 1750.47], [1918.18, 1751.57], [1909.26, 1760.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2007.68, 1856.39], [2013.22, 1850.81], [2019.25, 1856.77], [2013.72, 1862.34], [2013.06, 1861.69], [2011.15, 1863.61], [2006.6, 1859.12], [2008.5, 1857.2], [2007.68, 1856.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1883.1, 1681.88], [1889.48, 1675.66], [1897.8, 1684.14], [1896.9, 1685.02], [1898.71, 1686.87], [1893.88, 1691.58], [1892.06, 1689.73], [1891.42, 1690.35], [1883.1, 1681.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2053.25, 1907.3], [2046.49, 1900.55], [2057.81, 1889.3], [2058.8, 1890.29], [2059.87, 1889.23], [2064.5, 1893.87], [2063.45, 1894.92], [2064.56, 1896.04], [2053.25, 1907.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1947.64, 1725.52], [1954.37, 1731.59], [1963.45, 1721.59], [1960.12, 1718.58], [1960.71, 1717.93], [1958.47, 1715.92], [1957.88, 1716.57], [1956.71, 1715.52], [1947.64, 1725.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2008.36, 1730.27], [2012.22, 1734.08], [2012.96, 1733.32], [2014.34, 1734.68], [2017.35, 1731.65], [2023.76, 1737.98], [2027.92, 1733.79], [2016.26, 1722.3], [2008.36, 1730.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1968.97, 1821.49], [1963.66, 1816.36], [1967.55, 1812.35], [1967.09, 1811.9], [1970.49, 1808.42], [1970.94, 1808.86], [1974.26, 1805.46], [1979.57, 1810.58], [1968.97, 1821.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1934.36, 1613.42], [1929.83, 1618.52], [1931.93, 1620.37], [1931.24, 1621.15], [1933.18, 1622.87], [1933.88, 1622.09], [1935.75, 1623.75], [1940.29, 1618.64], [1934.36, 1613.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1935.14, 1631.85], [1939.22, 1627.3], [1944.01, 1631.56], [1944.85, 1630.62], [1945.98, 1631.62], [1946.64, 1630.88], [1951.26, 1635.01], [1945.67, 1641.23], [1935.14, 1631.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1905.54, 1856.51], [1903.69, 1854.73], [1901.53, 1856.95], [1898.59, 1854.12], [1900.74, 1851.89], [1898.91, 1850.14], [1908.52, 1840.2], [1911.6, 1843.16], [1913.25, 1841.47], [1916.8, 1844.87], [1905.54, 1856.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1834.28, 1880.29], [1842.25, 1872.17], [1845.17, 1875.01], [1844.26, 1875.93], [1847.69, 1879.28], [1840.63, 1886.48], [1839.99, 1885.86], [1838.55, 1887.33], [1833.77, 1882.67], [1835.22, 1881.2], [1834.28, 1880.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1851.78, 1880.95], [1856.24, 1876.29], [1861.05, 1880.84], [1859.66, 1882.29], [1860.19, 1882.8], [1858.43, 1884.64], [1859.16, 1885.33], [1848.49, 1896.5], [1843.62, 1891.87], [1852.98, 1882.08], [1851.78, 1880.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1810.01, 1818.6], [1820.0, 1828.85], [1825.34, 1823.67], [1815.35, 1813.43], [1815.1, 1813.68], [1813.96, 1812.51], [1810.94, 1815.45], [1810.0, 1814.48], [1808.58, 1815.85], [1809.52, 1816.82], [1809.16, 1817.17], [1810.29, 1818.34], [1810.01, 1818.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1861.7, 1814.26], [1859.69, 1812.29], [1858.4, 1813.59], [1854.63, 1809.9], [1855.92, 1808.58], [1855.48, 1808.16], [1865.15, 1798.36], [1867.76, 1800.92], [1869.25, 1799.41], [1872.34, 1802.43], [1870.86, 1803.94], [1871.37, 1804.45], [1861.7, 1814.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1866.68, 1813.12], [1873.45, 1806.1], [1873.85, 1806.48], [1875.21, 1805.07], [1881.63, 1811.23], [1880.13, 1812.78], [1880.68, 1813.31], [1874.07, 1820.18], [1872.83, 1819.0], [1871.41, 1820.47], [1868.42, 1817.61], [1869.85, 1816.14], [1866.68, 1813.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1911.54, 1852.31], [1917.08, 1846.65], [1918.9, 1848.42], [1919.48, 1847.84], [1921.55, 1849.85], [1920.97, 1850.45], [1922.86, 1852.27], [1917.32, 1857.93], [1916.47, 1857.1], [1915.41, 1858.16], [1910.92, 1853.8], [1911.98, 1852.73], [1911.54, 1852.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1966.11, 1970.43], [1974.21, 1978.12], [1987.55, 1964.16], [1989.65, 1966.16], [1994.42, 1961.18], [1990.95, 1957.88], [1994.79, 1953.87], [1982.74, 1942.44], [1987.39, 1937.58], [1976.51, 1927.25], [1971.86, 1932.12], [1961.07, 1921.87], [1951.19, 1932.21], [1978.18, 1957.81], [1966.11, 1970.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1953.99, 1971.92], [1944.48, 1962.67], [1943.85, 1963.32], [1941.42, 1960.96], [1942.06, 1960.31], [1937.2, 1955.58], [1946.4, 1946.18], [1963.21, 1962.53], [1953.99, 1971.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1911.71, 1912.02], [1921.25, 1902.15], [1925.1, 1905.83], [1925.99, 1904.91], [1929.33, 1908.12], [1928.22, 1909.26], [1932.88, 1913.73], [1931.96, 1914.68], [1935.94, 1918.5], [1936.67, 1917.72], [1940.85, 1921.73], [1939.86, 1922.75], [1944.88, 1927.56], [1943.54, 1928.96], [1945.9, 1931.22], [1936.32, 1941.13], [1932.64, 1937.61], [1934.05, 1936.16], [1931.42, 1933.63], [1933.75, 1931.21], [1932.64, 1930.15], [1932.08, 1930.73], [1929.16, 1927.93], [1927.98, 1929.16], [1921.83, 1923.26], [1923.17, 1921.88], [1920.49, 1919.31], [1922.17, 1917.58], [1921.06, 1916.52], [1920.11, 1917.51], [1917.35, 1914.87], [1916.06, 1916.2], [1911.71, 1912.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1877.31, 1922.84], [1871.06, 1916.74], [1879.49, 1908.14], [1885.75, 1914.23], [1877.31, 1922.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1849.31, 1870.89], [1852.19, 1868.1], [1856.02, 1872.01], [1853.13, 1874.81], [1849.31, 1870.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1930.32, 1872.53], [1924.86, 1867.34], [1930.99, 1860.94], [1936.45, 1866.14], [1930.32, 1872.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1880.96, 1902.92], [1885.47, 1907.17], [1891.47, 1900.86], [1886.95, 1896.6], [1880.96, 1902.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1831.04, 1864.16], [1833.7, 1866.67], [1837.42, 1862.76], [1834.75, 1860.25], [1831.04, 1864.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1916.98, 1872.74], [1911.69, 1867.82], [1923.67, 1855.03], [1928.96, 1859.93], [1916.98, 1872.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1806.18, 1842.04], [1809.77, 1838.4], [1814.31, 1842.84], [1810.73, 1846.49], [1806.18, 1842.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1913.55, 1888.72], [1908.96, 1884.2], [1904.29, 1888.9], [1908.88, 1893.43], [1913.55, 1888.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1877.39, 1896.18], [1874.58, 1893.54], [1878.22, 1889.7], [1881.03, 1892.36], [1877.39, 1896.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1899.73, 1845.13], [1893.8, 1839.32], [1901.98, 1831.03], [1907.91, 1836.84], [1899.73, 1845.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1863.85, 1883.36], [1866.67, 1886.12], [1870.71, 1881.99], [1867.89, 1879.24], [1863.85, 1883.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1799.32, 1826.14], [1804.99, 1820.52], [1813.38, 1828.92], [1807.7, 1834.54], [1799.32, 1826.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1891.05, 1865.3], [1885.77, 1860.54], [1891.91, 1853.77], [1897.19, 1858.55], [1891.05, 1865.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1902.53, 1865.64], [1906.17, 1869.47], [1910.8, 1865.09], [1907.15, 1861.26], [1902.53, 1865.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1860.54, 1879.53], [1863.72, 1882.59], [1868.8, 1877.34], [1865.63, 1874.29], [1860.54, 1879.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1827.03, 1873.55], [1832.2, 1878.57], [1840.8, 1869.8], [1836.03, 1865.16], [1833.33, 1867.93], [1832.93, 1867.53], [1827.03, 1873.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1879.79, 1829.26], [1873.25, 1823.07], [1881.94, 1813.95], [1884.94, 1816.8], [1886.77, 1814.89], [1890.31, 1818.23], [1879.79, 1829.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1824.1, 1870.02], [1822.15, 1868.15], [1820.76, 1869.59], [1816.49, 1865.5], [1826.69, 1854.93], [1832.91, 1860.9], [1824.1, 1870.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1853.13, 1805.32], [1849.98, 1802.37], [1848.43, 1804.01], [1845.36, 1801.14], [1857.31, 1788.48], [1863.52, 1794.31], [1853.13, 1805.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1823.73, 1853.42], [1820.53, 1850.52], [1821.97, 1848.94], [1820.36, 1847.49], [1823.22, 1844.36], [1828.02, 1848.73], [1823.73, 1853.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1860.83, 1909.38], [1872.52, 1897.46], [1873.89, 1898.8], [1876.12, 1896.52], [1879.82, 1900.13], [1875.5, 1904.53], [1876.53, 1905.52], [1866.93, 1915.32], [1860.83, 1909.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1799.05, 1842.78], [1792.64, 1836.7], [1794.18, 1835.09], [1792.36, 1833.36], [1795.73, 1829.85], [1797.53, 1831.58], [1798.21, 1830.87], [1804.62, 1836.97], [1799.05, 1842.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1935.57, 1883.98], [1929.74, 1878.57], [1933.32, 1874.74], [1932.89, 1874.34], [1936.29, 1870.71], [1936.71, 1871.1], [1940.74, 1866.79], [1946.57, 1872.21], [1935.57, 1883.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1883.91, 1830.92], [1893.97, 1820.44], [1900.48, 1826.66], [1890.42, 1837.13], [1889.14, 1835.9], [1888.01, 1837.08], [1884.54, 1833.76], [1885.66, 1832.59], [1883.91, 1830.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1852.97, 1898.41], [1861.1, 1890.11], [1867.08, 1895.93], [1858.95, 1904.23], [1858.54, 1903.83], [1857.05, 1905.35], [1852.01, 1900.44], [1853.5, 1898.92], [1852.97, 1898.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2236.71, 1859.64], [2234.11, 1855.42], [2234.65, 1855.1], [2233.14, 1852.64], [2225.09, 1857.58], [2221.25, 1851.35], [2229.64, 1846.2], [2231.04, 1848.46], [2250.98, 1836.23], [2257.55, 1846.86], [2236.71, 1859.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2280.3, 1825.75], [2291.36, 1818.97], [2287.12, 1812.13], [2281.86, 1815.36], [2279.16, 1810.98], [2286.42, 1806.52], [2282.08, 1799.5], [2269.06, 1807.48], [2271.48, 1811.39], [2270.19, 1812.19], [2275.26, 1820.39], [2276.52, 1819.61], [2280.3, 1825.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2317.21, 1826.73], [2320.86, 1833.09], [2329.98, 1827.89], [2326.32, 1821.53], [2317.21, 1826.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2261.11, 1723.0], [2266.71, 1724.41], [2272.07, 1703.42], [2266.48, 1702.0], [2261.11, 1723.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2227.02, 1840.41], [2222.82, 1833.49], [2226.31, 1831.39], [2225.77, 1830.51], [2235.92, 1824.4], [2240.65, 1832.19], [2227.02, 1840.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2327.54, 1820.4], [2331.77, 1827.01], [2339.38, 1822.15], [2339.06, 1821.66], [2345.85, 1817.32], [2341.92, 1811.22], [2327.54, 1820.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2295.23, 1869.79], [2300.63, 1878.44], [2331.94, 1859.03], [2310.65, 1824.95], [2308.57, 1826.23], [2301.82, 1815.42], [2288.59, 1823.63], [2289.42, 1824.97], [2273.79, 1834.66], [2279.63, 1844.01], [2298.4, 1832.36], [2314.38, 1857.91], [2295.23, 1869.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2349.64, 1957.46], [2341.28, 1943.76], [2360.08, 1932.38], [2368.44, 1946.08], [2349.64, 1957.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2344.58, 1936.73], [2340.73, 1930.38], [2350.23, 1924.68], [2354.08, 1931.04], [2344.58, 1936.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2314.03, 1887.11], [2318.19, 1893.8], [2331.87, 1885.33], [2327.71, 1878.65], [2314.03, 1887.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2340.89, 1926.86], [2336.4, 1919.53], [2348.54, 1912.13], [2353.04, 1919.46], [2340.89, 1926.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2297.71, 1864.13], [2292.98, 1856.41], [2305.26, 1848.62], [2310.11, 1856.44], [2297.71, 1864.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2323.56, 1903.39], [2318.6, 1895.95], [2327.42, 1890.1], [2332.39, 1897.55], [2323.56, 1903.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2314.79, 1879.51], [2310.91, 1873.48], [2322.31, 1866.22], [2326.17, 1872.23], [2314.79, 1879.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2332.0, 1912.37], [2336.1, 1918.93], [2344.76, 1913.56], [2340.27, 1906.38], [2336.6, 1908.67], [2336.97, 1909.27], [2332.0, 1912.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2330.76, 1910.39], [2330.62, 1910.15], [2328.83, 1911.27], [2325.52, 1905.98], [2327.3, 1904.88], [2327.04, 1904.46], [2335.63, 1899.1], [2339.35, 1905.04], [2330.76, 1910.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2129.14, 1599.15], [2125.01, 1592.61], [2140.24, 1583.03], [2141.05, 1584.31], [2143.32, 1582.88], [2146.64, 1588.16], [2139.38, 1592.72], [2138.37, 1591.12], [2136.98, 1592.0], [2137.99, 1593.59], [2129.14, 1599.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2192.87, 1614.68], [2191.26, 1621.8], [2194.35, 1622.49], [2193.95, 1624.2], [2205.37, 1626.76], [2206.5, 1621.75], [2204.36, 1621.28], [2205.31, 1617.09], [2195.97, 1615.0], [2195.89, 1615.35], [2192.87, 1614.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2256.72, 1675.07], [2256.83, 1674.64], [2254.29, 1674.01], [2255.3, 1669.92], [2257.85, 1670.55], [2258.59, 1667.57], [2275.26, 1671.68], [2273.64, 1678.23], [2266.94, 1676.58], [2266.71, 1677.53], [2256.72, 1675.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2341.61, 1836.75], [2337.89, 1830.72], [2340.35, 1829.21], [2339.87, 1828.42], [2347.73, 1823.6], [2348.13, 1824.25], [2350.44, 1822.82], [2353.83, 1828.31], [2351.51, 1829.73], [2351.94, 1830.43], [2341.61, 1836.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2309.54, 1642.22], [2330.44, 1647.16], [2329.57, 1650.83], [2334.15, 1651.91], [2332.94, 1656.98], [2328.37, 1655.89], [2325.51, 1667.88], [2331.0, 1669.18], [2329.63, 1674.92], [2324.07, 1673.61], [2324.0, 1673.9], [2303.17, 1668.97], [2309.54, 1642.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2252.72, 1686.43], [2252.83, 1685.97], [2250.34, 1685.36], [2251.4, 1681.01], [2253.9, 1681.62], [2254.46, 1679.31], [2272.39, 1683.65], [2270.65, 1690.77], [2264.84, 1689.37], [2264.67, 1690.06], [2259.5, 1688.8], [2259.68, 1688.11], [2252.72, 1686.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2370.32, 1813.83], [2370.52, 1812.97], [2368.78, 1812.56], [2370.25, 1806.29], [2371.99, 1806.69], [2372.12, 1806.16], [2384.87, 1809.13], [2383.07, 1816.8], [2379.31, 1815.92], [2379.19, 1816.43], [2374.61, 1815.37], [2374.74, 1814.86], [2370.32, 1813.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2234.72, 1597.56], [2232.68, 1604.41], [2237.41, 1605.8], [2237.2, 1606.53], [2240.71, 1607.55], [2240.46, 1608.38], [2245.14, 1609.76], [2245.67, 1607.99], [2248.47, 1608.81], [2250.3, 1602.65], [2247.25, 1601.76], [2247.52, 1600.81], [2241.79, 1599.12], [2241.65, 1599.6], [2234.72, 1597.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2273.3, 1661.49], [2278.66, 1662.85], [2278.79, 1662.33], [2281.01, 1662.9], [2280.88, 1663.41], [2286.34, 1664.8], [2287.77, 1659.22], [2288.83, 1659.49], [2290.06, 1654.7], [2289.0, 1654.43], [2289.7, 1651.68], [2276.67, 1648.38], [2274.33, 1657.48], [2273.99, 1657.39], [2273.24, 1660.31], [2273.58, 1660.4], [2273.3, 1661.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2252.42, 1656.12], [2253.56, 1651.63], [2252.46, 1651.35], [2254.26, 1644.25], [2255.19, 1644.48], [2255.58, 1642.93], [2273.26, 1647.4], [2272.55, 1650.19], [2274.07, 1650.58], [2272.83, 1655.42], [2271.23, 1655.02], [2270.74, 1656.91], [2271.27, 1657.05], [2270.35, 1660.65], [2264.65, 1659.21], [2264.73, 1658.84], [2262.43, 1658.26], [2262.33, 1658.63], [2252.42, 1656.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2278.66, 1630.92], [2280.01, 1625.42], [2279.01, 1625.18], [2280.11, 1620.72], [2281.11, 1620.97], [2281.96, 1617.5], [2287.53, 1618.85], [2287.33, 1619.66], [2289.58, 1620.21], [2289.77, 1619.4], [2294.97, 1620.67], [2293.99, 1624.67], [2295.19, 1624.96], [2294.2, 1629.02], [2292.99, 1628.72], [2291.67, 1634.09], [2286.36, 1632.8], [2286.44, 1632.48], [2284.07, 1631.9], [2283.99, 1632.22], [2278.66, 1630.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2260.98, 1626.47], [2262.34, 1620.97], [2261.34, 1620.72], [2262.44, 1616.27], [2263.43, 1616.51], [2264.29, 1613.04], [2269.85, 1614.39], [2269.65, 1615.2], [2271.91, 1615.75], [2272.1, 1614.94], [2277.3, 1616.21], [2276.31, 1620.21], [2277.51, 1620.51], [2276.52, 1624.56], [2275.31, 1624.27], [2273.99, 1629.64], [2268.68, 1628.34], [2268.76, 1628.03], [2266.39, 1627.45], [2266.32, 1627.76], [2260.98, 1626.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2402.69, 1834.78], [2399.55, 1829.53], [2408.87, 1823.99], [2412.02, 1829.23], [2402.69, 1834.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2348.32, 1848.38], [2344.44, 1841.99], [2357.11, 1834.34], [2361.0, 1840.72], [2348.32, 1848.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2182.44, 1591.45], [2183.82, 1585.99], [2191.87, 1588.02], [2190.48, 1593.48], [2182.44, 1591.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2392.73, 1848.62], [2387.19, 1839.75], [2398.03, 1833.03], [2403.57, 1841.89], [2392.73, 1848.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2433.34, 1767.72], [2426.07, 1765.79], [2418.81, 1763.86], [2418.98, 1761.38], [2419.94, 1747.6], [2421.35, 1747.69], [2421.58, 1744.58], [2420.22, 1744.49], [2420.58, 1739.14], [2421.96, 1739.3], [2422.53, 1732.65], [2421.02, 1732.57], [2421.86, 1720.76], [2432.13, 1721.8], [2434.09, 1723.1], [2440.53, 1727.36], [2440.04, 1733.23], [2439.41, 1733.21], [2439.23, 1735.49], [2438.52, 1744.4], [2439.63, 1744.52], [2438.3, 1748.76], [2433.34, 1767.72]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[2355.45, 1853.4], [2351.98, 1847.49], [2360.53, 1842.51], [2364.0, 1848.43], [2355.45, 1853.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2156.77, 1643.68], [2153.56, 1638.49], [2163.21, 1632.56], [2166.42, 1637.75], [2156.77, 1643.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2377.98, 1825.61], [2374.66, 1820.63], [2380.65, 1816.65], [2383.98, 1821.63], [2377.98, 1825.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2194.3, 1568.54], [2195.39, 1564.61], [2204.45, 1567.13], [2203.35, 1571.06], [2194.3, 1568.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2387.58, 1808.22], [2388.4, 1804.3], [2392.44, 1805.14], [2391.62, 1809.06], [2387.58, 1808.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2346.72, 1863.97], [2343.66, 1859.13], [2349.64, 1855.38], [2352.69, 1860.23], [2346.72, 1863.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2139.59, 1616.56], [2143.65, 1623.12], [2158.01, 1614.29], [2153.95, 1607.72], [2139.59, 1616.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2117.42, 1575.17], [2111.43, 1565.52], [2132.7, 1552.46], [2136.43, 1558.49], [2138.68, 1562.12], [2117.42, 1575.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2170.03, 1624.37], [2178.43, 1619.22], [2173.05, 1610.5], [2164.65, 1615.65], [2170.03, 1624.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2139.01, 1614.54], [2130.14, 1600.26], [2157.65, 1583.3], [2166.52, 1597.6], [2139.01, 1614.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2410.66, 1847.34], [2408.41, 1843.52], [2413.47, 1840.57], [2415.72, 1844.39], [2410.66, 1847.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2342.78, 1842.49], [2340.33, 1838.67], [2335.04, 1842.02], [2337.49, 1845.85], [2342.78, 1842.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2186.53, 1585.46], [2187.73, 1580.77], [2194.25, 1582.43], [2193.04, 1587.12], [2186.53, 1585.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2194.09, 1631.89], [2186.71, 1635.93], [2191.31, 1644.27], [2198.69, 1640.23], [2194.09, 1631.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2307.62, 1775.92], [2311.52, 1760.24], [2355.63, 1771.13], [2351.74, 1786.81], [2307.62, 1775.92]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[2395.32, 1853.41], [2404.8, 1848.3], [2409.36, 1856.69], [2399.89, 1861.82], [2395.32, 1853.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2324.32, 1839.85], [2329.76, 1836.49], [2326.34, 1831.0], [2320.91, 1834.38], [2324.32, 1839.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2138.85, 1551.82], [2153.04, 1543.5], [2148.0, 1534.95], [2152.0, 1532.6], [2148.96, 1527.44], [2146.61, 1525.73], [2143.03, 1520.9], [2140.9, 1519.11], [2142.13, 1517.77], [2140.45, 1516.13], [2137.75, 1514.66], [2135.55, 1513.9], [2133.45, 1515.13], [2132.8, 1514.02], [2133.25, 1513.75], [2130.83, 1509.65], [2127.82, 1511.42], [2123.7, 1504.44], [2119.35, 1506.99], [2117.83, 1504.41], [2114.86, 1506.15], [2112.02, 1501.35], [2109.29, 1502.94], [2108.1, 1500.96], [2104.68, 1504.02], [2102.93, 1506.84], [2101.73, 1508.99], [2100.21, 1513.09], [2099.36, 1515.97], [2094.05, 1519.12], [2094.68, 1520.18], [2088.01, 1524.14], [2090.2, 1527.86], [2095.93, 1537.59], [2102.6, 1533.68], [2103.05, 1534.42], [2107.32, 1531.91], [2105.9, 1529.52], [2108.11, 1528.22], [2108.92, 1529.58], [2120.38, 1522.85], [2124.71, 1530.19], [2126.39, 1529.21], [2127.94, 1531.83], [2126.26, 1532.81], [2129.61, 1538.5], [2131.56, 1537.36], [2132.93, 1539.68], [2130.99, 1540.83], [2132.94, 1544.14], [2133.97, 1543.54], [2138.85, 1551.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2107.97, 1555.14], [2120.2, 1548.01], [2122.27, 1551.54], [2119.4, 1553.22], [2121.36, 1556.57], [2112.0, 1562.02], [2107.97, 1555.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2194.11, 1612.45], [2196.33, 1603.96], [2209.99, 1607.5], [2208.0, 1615.14], [2206.23, 1614.68], [2206.0, 1615.53], [2194.11, 1612.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2226.29, 1631.45], [2227.31, 1627.4], [2228.34, 1627.66], [2229.4, 1623.39], [2242.15, 1626.54], [2240.06, 1634.88], [2226.29, 1631.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2251.12, 1796.79], [2244.79, 1786.56], [2269.76, 1771.2], [2272.91, 1776.3], [2272.05, 1776.82], [2275.23, 1781.97], [2251.12, 1796.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2198.75, 1600.78], [2200.66, 1593.52], [2202.28, 1593.94], [2207.37, 1592.74], [2212.61, 1594.09], [2210.09, 1603.73], [2198.75, 1600.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2155.62, 1632.61], [2150.34, 1624.13], [2163.08, 1616.25], [2165.35, 1619.88], [2164.35, 1620.5], [2167.37, 1625.35], [2155.62, 1632.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2347.12, 1687.71], [2340.07, 1686.13], [2343.1, 1672.7], [2334.9, 1670.86], [2338.51, 1654.92], [2353.76, 1658.34], [2347.12, 1687.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2259.55, 1809.02], [2253.64, 1799.52], [2274.0, 1786.94], [2276.66, 1791.23], [2289.43, 1783.34], [2292.68, 1788.55], [2259.55, 1809.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2158.09, 1646.53], [2166.89, 1641.04], [2174.64, 1653.39], [2180.09, 1649.99], [2182.74, 1654.23], [2168.5, 1663.11], [2158.09, 1646.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2123.57, 1590.03], [2118.83, 1582.51], [2126.6, 1577.64], [2127.36, 1578.86], [2138.33, 1571.98], [2142.3, 1578.29], [2123.57, 1590.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2311.52, 1760.24], [2312.45, 1756.52], [2300.28, 1753.51], [2292.91, 1783.16], [2305.08, 1786.17], [2307.62, 1775.92], [2311.52, 1760.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2200.73, 1580.2], [2199.1, 1586.09], [2200.39, 1586.45], [2200.04, 1587.71], [2213.21, 1591.33], [2213.41, 1590.65], [2215.18, 1591.13], [2216.98, 1584.67], [2200.73, 1580.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2406.45, 1802.22], [2399.27, 1800.56], [2402.59, 1786.37], [2409.77, 1788.04], [2408.39, 1793.92], [2409.53, 1794.19], [2408.4, 1799.0], [2407.27, 1798.75], [2406.45, 1802.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2205.09, 1576.88], [2207.22, 1568.89], [2218.36, 1571.85], [2218.26, 1572.24], [2220.4, 1572.8], [2218.52, 1579.83], [2216.4, 1579.27], [2216.26, 1579.83], [2205.09, 1576.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2421.48, 1805.63], [2411.58, 1803.04], [2413.7, 1794.96], [2414.65, 1795.21], [2416.85, 1786.85], [2415.91, 1786.6], [2416.65, 1783.8], [2426.55, 1786.39], [2421.48, 1805.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2383.5, 1834.54], [2378.43, 1825.98], [2391.08, 1818.55], [2396.15, 1827.11], [2395.72, 1827.36], [2397.61, 1830.55], [2388.12, 1836.14], [2386.22, 1832.95], [2383.5, 1834.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2229.78, 1615.07], [2228.18, 1620.51], [2229.9, 1621.02], [2229.71, 1621.63], [2238.06, 1624.09], [2239.99, 1617.6], [2231.91, 1615.22], [2231.78, 1615.66], [2229.78, 1615.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2107.02, 1553.26], [2105.41, 1550.71], [2104.48, 1551.3], [2102.98, 1548.92], [2103.91, 1548.33], [2101.91, 1545.16], [2114.2, 1537.45], [2119.31, 1545.57], [2107.02, 1553.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2217.52, 1659.16], [2219.68, 1650.82], [2236.71, 1655.19], [2236.22, 1657.08], [2237.62, 1657.44], [2236.63, 1661.28], [2235.22, 1660.92], [2234.55, 1663.53], [2217.52, 1659.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2161.79, 1831.0], [2164.49, 1834.33], [2161.93, 1836.38], [2182.19, 1862.26], [2185.52, 1859.19], [2187.04, 1861.09], [2206.16, 1845.97], [2196.11, 1833.37], [2184.5, 1818.83], [2183.61, 1819.68], [2180.38, 1815.74], [2161.79, 1831.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2114.27, 1767.17], [2131.35, 1754.08], [2137.39, 1761.91], [2133.91, 1764.57], [2139.72, 1772.09], [2136.98, 1774.2], [2139.43, 1777.38], [2139.93, 1776.64], [2143.69, 1779.67], [2142.34, 1781.15], [2142.89, 1781.87], [2149.56, 1775.13], [2160.72, 1784.77], [2159.13, 1786.51], [2165.08, 1791.95], [2145.47, 1812.46], [2128.15, 1790.0], [2130.49, 1788.2], [2114.27, 1767.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2056.58, 1705.21], [2051.46, 1700.21], [2050.35, 1700.7], [2046.9, 1697.2], [2043.81, 1694.08], [2045.11, 1692.8], [2041.82, 1689.49], [2055.3, 1676.18], [2056.43, 1677.32], [2059.71, 1674.06], [2053.34, 1667.71], [2052.62, 1667.0], [2067.32, 1652.36], [2069.53, 1654.55], [2070.83, 1653.25], [2087.56, 1669.73], [2083.71, 1673.62], [2085.76, 1675.63], [2056.58, 1705.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1528.72, -2185.91], [-1503.7, -2186.89], [-1504.1, -2197.75], [-1505.22, -2197.71], [-1505.32, -2200.38], [-1508.16, -2200.34], [-1508.53, -2210.38], [-1505.08, -2210.57], [-1505.24, -2214.59], [-1504.4, -2214.62], [-1504.54, -2218.28], [-1505.75, -2218.23], [-1506.3, -2232.37], [-1505.94, -2232.39], [-1506.25, -2240.27], [-1510.17, -2240.32], [-1510.51, -2250.23], [-1507.73, -2250.35], [-1507.86, -2253.03], [-1506.66, -2253.1], [-1507.01, -2261.26], [-1509.08, -2261.16], [-1509.21, -2263.81], [-1516.9, -2263.42], [-1516.75, -2256.2], [-1520.46, -2255.98], [-1520.37, -2252.93], [-1525.94, -2252.83], [-1525.93, -2250.33], [-1530.62, -2250.14], [-1530.49, -2247.37], [-1531.96, -2247.29], [-1531.79, -2244.19], [-1532.26, -2244.21], [-1530.8, -2211.08], [-1530.45, -2203.3], [-1529.92, -2203.32], [-1529.61, -2196.51], [-1531.31, -2196.37], [-1530.96, -2188.54], [-1528.75, -2188.6], [-1528.72, -2185.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1402.66, -2250.45], [-1436.17, -2268.56], [-1415.95, -2305.7], [-1414.46, -2308.44], [-1411.88, -2313.19], [-1381.55, -2296.82], [-1383.66, -2292.96], [-1380.47, -2291.22], [-1402.66, -2250.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1985.54, 1579.53], [1979.65, 1585.3], [1987.99, 1593.72], [1988.87, 1592.85], [1990.17, 1594.16], [1994.76, 1589.64], [1993.46, 1588.33], [1993.87, 1587.94], [1985.54, 1579.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1989.09, 1578.65], [1993.67, 1574.21], [2000.88, 1581.58], [1998.99, 1583.42], [2000.39, 1584.84], [1997.7, 1587.45], [1989.09, 1578.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2006.57, 1559.04], [2001.31, 1564.08], [2009.75, 1572.82], [2015.01, 1567.78], [2006.57, 1559.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2010.64, 1552.4], [2011.26, 1551.78], [2010.02, 1550.54], [2013.52, 1547.1], [2014.76, 1548.35], [2016.17, 1546.95], [2018.73, 1549.55], [2019.04, 1549.24], [2022.44, 1552.67], [2022.12, 1552.97], [2024.9, 1555.77], [2024.63, 1556.02], [2026.06, 1557.46], [2021.0, 1562.42], [2019.66, 1561.07], [2019.45, 1561.28], [2016.74, 1558.54], [2016.18, 1559.09], [2012.71, 1555.59], [2013.27, 1555.04], [2010.64, 1552.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2017.62, 1544.17], [2023.58, 1538.1], [2035.04, 1549.26], [2029.08, 1555.33], [2017.62, 1544.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2029.86, 1538.43], [2035.38, 1532.5], [2043.62, 1540.1], [2038.1, 1546.04], [2029.86, 1538.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2002.24, 1580.96], [2005.45, 1577.81], [2002.78, 1575.11], [2003.5, 1574.4], [1999.24, 1570.09], [1995.32, 1573.96], [2002.24, 1580.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2272.99, 2431.36], [2277.01, 2427.44], [2275.36, 2425.78], [2275.88, 2425.29], [2266.66, 2415.91], [2260.62, 2421.81], [2269.77, 2431.1], [2270.43, 2430.47], [2271.36, 2431.41], [2272.22, 2430.58], [2272.99, 2431.36]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1786.24, 1839.77], [1782.38, 1843.82], [1784.08, 1845.43], [1783.58, 1845.93], [1793.13, 1854.98], [1798.95, 1848.86], [1789.48, 1839.91], [1788.84, 1840.56], [1787.87, 1839.65], [1787.04, 1840.51], [1786.24, 1839.77]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1909.98, 1246.46], [1919.47, 1257.82], [1942.17, 1238.98], [1932.67, 1227.62], [1909.98, 1246.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2666.73, 2596.73], [2668.14, 2598.04], [2673.78, 2591.96], [2683.69, 2580.8], [2679.0, 2576.11], [2675.92, 2579.92], [2673.92, 2577.5], [2671.9, 2579.34], [2669.63, 2577.2], [2665.34, 2577.32], [2663.2, 2579.44], [2661.26, 2579.64], [2658.92, 2576.11], [2657.46, 2573.16], [2655.51, 2572.21], [2652.35, 2572.64], [2648.99, 2575.5], [2640.31, 2584.26], [2650.8, 2594.58], [2648.2, 2597.2], [2654.48, 2603.37], [2657.56, 2600.25], [2660.78, 2603.43], [2663.47, 2600.71], [2664.26, 2601.49], [2666.65, 2599.06], [2665.52, 2597.96], [2666.73, 2596.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2141.24, -1800.43], [-2149.05, -1800.23], [-2149.24, -1808.01], [-2141.43, -1808.21], [-2141.24, -1800.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2156.3, -1792.61], [-2167.02, -1792.17], [-2167.25, -1797.7], [-2169.92, -1797.59], [-2170.56, -1813.31], [-2161.12, -1813.69], [-2160.86, -1807.13], [-2158.22, -1807.24], [-2158.08, -1803.93], [-2156.77, -1803.98], [-2156.3, -1792.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2153.12, -1780.02], [-2153.32, -1790.44], [-2143.19, -1790.62], [-2143.1, -1785.84], [-2144.05, -1785.83], [-2143.94, -1780.2], [-2153.12, -1780.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2138.66, -1768.11], [-2150.17, -1767.8], [-2150.31, -1773.06], [-2153.23, -1772.97], [-2153.37, -1778.03], [-2138.93, -1778.41], [-2138.66, -1768.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2147.48, -1755.63], [-2147.49, -1756.89], [-2152.15, -1756.83], [-2152.22, -1762.7], [-2147.49, -1762.76], [-2147.53, -1765.89], [-2137.68, -1766.0], [-2137.56, -1755.75], [-2147.48, -1755.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2143.07, -1743.41], [-2143.22, -1752.8], [-2137.37, -1752.9], [-2137.4, -1754.76], [-2131.31, -1754.86], [-2131.12, -1743.61], [-2143.07, -1743.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2169.02, -1742.48], [-2169.12, -1750.4], [-2160.51, -1750.5], [-2160.42, -1742.59], [-2169.02, -1742.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2099.49, -1847.78], [-2104.28, -1847.67], [-2104.31, -1849.07], [-2105.79, -1849.04], [-2105.84, -1850.84], [-2111.93, -1850.68], [-2112.16, -1859.87], [-2109.96, -1859.92], [-2110.42, -1878.21], [-2106.19, -1878.32], [-2106.25, -1880.11], [-2098.4, -1880.31], [-2098.37, -1878.76], [-2092.85, -1878.89], [-2092.15, -1851.07], [-2099.57, -1850.88], [-2099.49, -1847.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1784.4, -1563.65], [-1784.61, -1569.52], [-1790.05, -1569.32], [-1789.85, -1563.47], [-1784.4, -1563.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1793.42, -1549.64], [-1793.72, -1555.86], [-1788.41, -1556.13], [-1788.11, -1549.9], [-1793.42, -1549.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1787.04, -1549.71], [-1787.1, -1555.97], [-1782.78, -1556.01], [-1782.72, -1549.75], [-1787.04, -1549.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1807.67, -1544.72], [-1807.78, -1552.18], [-1800.88, -1552.28], [-1800.78, -1544.82], [-1807.67, -1544.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1807.08, -1517.11], [-1807.47, -1531.34], [-1802.57, -1531.47], [-1802.49, -1528.77], [-1799.78, -1528.85], [-1799.47, -1517.33], [-1807.08, -1517.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1768.16, -1547.01], [-1780.82, -1546.68], [-1780.99, -1553.29], [-1768.33, -1553.62], [-1768.16, -1547.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1798.5, -1565.73], [-1798.89, -1574.57], [-1791.73, -1574.88], [-1791.34, -1566.05], [-1798.5, -1565.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1775.44, -1564.28], [-1775.62, -1571.66], [-1766.82, -1571.87], [-1766.65, -1564.49], [-1775.44, -1564.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1741.55, -1551.09], [-1741.65, -1558.81], [-1727.91, -1558.99], [-1727.8, -1551.28], [-1741.55, -1551.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1726.01, -1535.66], [-1726.48, -1543.8], [-1718.1, -1544.27], [-1717.63, -1536.15], [-1726.01, -1535.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1731.12, -1538.46], [-1741.89, -1538.3], [-1742.0, -1545.84], [-1731.23, -1546.01], [-1731.12, -1538.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1737.02, -1526.77], [-1737.02, -1533.1], [-1727.36, -1533.09], [-1727.37, -1526.75], [-1737.02, -1526.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1726.79, -1516.23], [-1726.72, -1526.93], [-1718.49, -1526.87], [-1718.55, -1516.18], [-1726.79, -1516.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1729.81, -1516.65], [-1729.8, -1521.96], [-1735.7, -1521.97], [-1735.7, -1523.51], [-1741.92, -1523.52], [-1741.94, -1515.1], [-1736.18, -1515.09], [-1736.18, -1516.65], [-1729.81, -1516.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1777.41, -1534.59], [-1777.52, -1541.72], [-1765.97, -1541.9], [-1765.87, -1534.75], [-1771.94, -1534.67], [-1771.93, -1533.19], [-1775.98, -1533.14], [-1776.0, -1534.61], [-1777.41, -1534.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1773.17, -1516.98], [-1773.47, -1527.64], [-1764.29, -1527.9], [-1764.0, -1517.25], [-1773.17, -1516.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1794.1, -1519.36], [-1794.4, -1529.79], [-1785.06, -1530.06], [-1784.76, -1519.63], [-1794.1, -1519.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1952.1, -1513.26], [-1952.33, -1530.73], [-1951.08, -1530.75], [-1951.11, -1533.56], [-1945.88, -1533.62], [-1945.85, -1531.12], [-1944.13, -1531.14], [-1943.95, -1516.29], [-1947.12, -1516.25], [-1947.08, -1513.32], [-1952.1, -1513.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1957.71, -1537.18], [-1957.8, -1542.41], [-1953.35, -1542.48], [-1953.26, -1537.25], [-1957.71, -1537.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1942.04, -1540.09], [-1942.31, -1546.39], [-1936.29, -1546.64], [-1936.02, -1540.34], [-1942.04, -1540.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1912.59, -1541.2], [-1912.73, -1549.38], [-1894.12, -1549.73], [-1894.05, -1545.94], [-1896.42, -1545.9], [-1896.34, -1541.5], [-1912.59, -1541.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1926.58, -1549.63], [-1926.72, -1553.13], [-1933.0, -1552.89], [-1932.87, -1549.4], [-1926.58, -1549.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1945.05, -1546.85], [-1952.53, -1546.7], [-1952.66, -1552.87], [-1945.17, -1553.03], [-1945.05, -1546.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1941.97, -1513.62], [-1942.26, -1524.3], [-1932.91, -1524.55], [-1932.62, -1513.88], [-1941.97, -1513.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1960.4, -1513.05], [-1960.38, -1518.3], [-1961.69, -1518.3], [-1961.67, -1525.28], [-1960.43, -1525.28], [-1960.43, -1526.95], [-1956.58, -1526.94], [-1956.59, -1525.51], [-1953.79, -1525.5], [-1953.83, -1513.03], [-1960.4, -1513.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1829.33, -1547.02], [-1829.46, -1552.94], [-1820.12, -1553.15], [-1819.99, -1547.23], [-1829.33, -1547.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1856.66, -1548.16], [-1856.75, -1554.32], [-1851.2, -1554.4], [-1851.11, -1548.24], [-1856.66, -1548.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1858.81, -1544.16], [-1869.76, -1543.98], [-1869.89, -1551.89], [-1866.68, -1551.94], [-1866.71, -1553.76], [-1858.96, -1553.88], [-1858.81, -1544.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1665.54, -1715.54], [-1665.68, -1727.73], [-1673.48, -1727.64], [-1673.33, -1715.44], [-1665.54, -1715.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1682.35, -1718.84], [-1682.43, -1726.84], [-1675.29, -1726.92], [-1675.21, -1718.91], [-1682.35, -1718.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1684.84, -1729.45], [-1684.12, -1710.28], [-1688.77, -1710.12], [-1688.93, -1714.24], [-1690.41, -1714.18], [-1690.97, -1729.22], [-1684.84, -1729.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1702.43, -1711.42], [-1702.5, -1714.67], [-1706.43, -1714.6], [-1706.67, -1727.82], [-1694.67, -1728.04], [-1694.43, -1714.82], [-1697.95, -1714.76], [-1697.89, -1711.5], [-1702.43, -1711.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1709.71, -1716.69], [-1718.02, -1716.55], [-1718.19, -1727.43], [-1714.35, -1727.49], [-1714.38, -1729.75], [-1709.91, -1729.82], [-1709.71, -1716.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1728.34, -1729.41], [-1728.07, -1714.49], [-1720.55, -1714.63], [-1720.72, -1723.77], [-1721.58, -1723.76], [-1721.68, -1729.54], [-1728.34, -1729.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1743.3, -1715.45], [-1743.39, -1727.82], [-1731.42, -1727.9], [-1731.34, -1715.53], [-1743.3, -1715.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1847.38, 785.46], [1857.19, 774.5], [1850.85, 768.87], [1841.05, 779.83], [1847.38, 785.46]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[1843.1, 775.14], [1851.83, 765.14], [1845.45, 759.61], [1836.72, 769.6], [1843.1, 775.14]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1529.45, 686.87], [1535.88, 680.09], [1531.59, 676.05], [1525.16, 682.84], [1529.45, 686.87]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[1849.72, 787.69], [1859.98, 776.35], [1867.12, 782.76], [1856.86, 794.1], [1849.72, 787.69]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1945.81, 1376.98], [1952.91, 1383.2], [1958.87, 1377.42], [1951.92, 1370.86], [1945.81, 1376.98]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[1939.72, 1360.78], [1944.36, 1365.62], [1950.63, 1359.51], [1945.97, 1354.35], [1939.72, 1360.78]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[1978.03, 1337.06], [1979.41, 1320.15], [1987.53, 1313.5], [2005.18, 1315.73], [2003.98, 1331.33], [2005.58, 1333.31], [2002.74, 1336.07], [2007.11, 1341.53], [2009.62, 1339.9], [2021.29, 1354.55], [2014.23, 1359.39], [2006.43, 1349.76], [2003.0, 1352.28], [1993.89, 1340.43], [1978.03, 1337.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2720.59, 1840.44], [2724.9, 1821.64], [2737.98, 1824.61], [2733.67, 1843.41], [2720.59, 1840.44]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[2720.59, 1840.44], [2711.68, 1838.41], [2715.98, 1819.61], [2724.9, 1821.64], [2720.59, 1840.44]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[2694.74, 1834.45], [2702.79, 1836.36], [2706.73, 1819.98], [2706.21, 1819.85], [2706.7, 1817.82], [2700.88, 1816.44], [2700.35, 1818.67], [2698.63, 1818.26], [2696.61, 1826.69], [2694.74, 1834.45]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[2694.74, 1834.45], [2696.61, 1826.69], [2693.85, 1826.03], [2693.1, 1829.16], [2687.71, 1827.88], [2686.59, 1832.51], [2694.74, 1834.45]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2873.42, -506.12], [-2867.31, -506.3], [-2867.43, -510.65], [-2873.77, -510.47], [-2873.42, -506.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1865.47, 802.74], [1876.29, 790.95], [1869.43, 784.71], [1858.74, 796.37], [1860.46, 797.93], [1858.68, 799.87], [1861.46, 802.41], [1863.12, 800.6], [1865.47, 802.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1873.68, 813.29], [1884.79, 800.84], [1876.8, 793.76], [1866.04, 805.82], [1868.41, 807.93], [1866.69, 809.86], [1870.73, 813.44], [1872.1, 811.89], [1873.68, 813.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1893.05, 822.76], [1900.29, 814.54], [1899.03, 813.43], [1901.33, 810.82], [1897.37, 807.35], [1895.16, 809.86], [1893.4, 808.32], [1886.07, 816.64], [1893.05, 822.76]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1832.7, 772.03], [1842.75, 761.2], [1840.92, 759.5], [1843.11, 757.15], [1839.06, 753.42], [1836.83, 755.83], [1835.15, 754.28], [1825.14, 765.06], [1832.7, 772.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1825.77, 762.45], [1834.34, 752.94], [1828.53, 747.75], [1819.96, 757.26], [1825.77, 762.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1817.9, 758.93], [1828.18, 747.26], [1821.24, 741.2], [1810.96, 752.86], [1817.9, 758.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1810.17, 751.79], [1820.64, 740.26], [1819.51, 739.23], [1818.02, 737.89], [1813.71, 734.01], [1803.24, 745.54], [1810.17, 751.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1803.51, 740.24], [1806.47, 737.03], [1808.38, 738.79], [1811.31, 735.62], [1808.9, 733.41], [1810.14, 732.06], [1806.58, 728.78], [1799.44, 736.5], [1803.51, 740.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1794.97, 739.5], [1807.27, 726.32], [1806.06, 725.2], [1804.51, 723.76], [1799.53, 719.15], [1787.22, 732.33], [1794.97, 739.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1785.74, 725.37], [1794.65, 715.66], [1787.25, 708.9], [1778.33, 718.61], [1785.74, 725.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1769.95, 716.28], [1780.74, 704.26], [1771.78, 696.27], [1761.0, 708.29], [1769.95, 716.28]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[2813.88, 1906.27], [2818.47, 1887.59], [2810.27, 1885.45], [2805.75, 1904.06], [2813.88, 1906.27]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[2808.01, 1886.47], [2804.13, 1901.75], [2796.07, 1899.71], [2799.95, 1884.44], [2808.01, 1886.47]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[2797.01, 1882.09], [2793.97, 1895.4], [2787.24, 1893.88], [2790.28, 1880.57], [2797.01, 1882.09]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[2780.03, 1876.77], [2777.65, 1886.45], [2771.29, 1884.91], [2773.74, 1875.17], [2780.03, 1876.77]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[2773.74, 1875.17], [2771.29, 1884.91], [2770.65, 1887.42], [2764.79, 1885.95], [2765.13, 1884.61], [2762.0, 1883.81], [2763.06, 1879.58], [2757.7, 1878.24], [2759.38, 1871.58], [2773.74, 1875.17]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2997.21, -653.81], [-2997.51, -663.99], [-2995.32, -664.05], [-2995.36, -665.68], [-2990.13, -665.83], [-2990.08, -664.2], [-2987.35, -664.28], [-2987.23, -660.19], [-2984.78, -660.26], [-2984.6, -654.18], [-2997.21, -653.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2952.01, -653.43], [-2952.52, -667.9], [-2947.21, -668.08], [-2947.14, -666.27], [-2943.73, -666.39], [-2943.27, -653.74], [-2943.99, -653.71], [-2943.91, -651.62], [-2950.79, -651.37], [-2950.87, -653.46], [-2952.01, -653.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2972.73, -697.42], [-2973.27, -712.9], [-2968.44, -713.07], [-2968.36, -710.72], [-2963.97, -710.87], [-2963.51, -697.74], [-2964.21, -697.71], [-2964.1, -694.47], [-2968.58, -694.31], [-2968.69, -697.56], [-2972.73, -697.42]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3044.57, -696.52], [-3037.43, -696.71], [-3037.6, -702.83], [-3033.37, -702.95], [-3033.59, -710.72], [-3037.73, -710.61], [-3037.76, -711.43], [-3044.38, -711.25], [-3044.26, -706.9], [-3045.79, -706.85], [-3045.64, -701.86], [-3044.72, -701.87], [-3044.57, -696.52]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3028.01, -652.87], [-3024.19, -653.01], [-3024.11, -650.99], [-3020.23, -651.15], [-3020.31, -653.17], [-3018.91, -653.23], [-3019.5, -668.02], [-3021.99, -667.93], [-3022.08, -670.27], [-3026.01, -670.11], [-3025.92, -667.77], [-3028.6, -667.66], [-3028.01, -652.87]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-2952.4, -698.92], [-2952.75, -707.8], [-2955.42, -707.69], [-2955.65, -713.54], [-2949.32, -713.79], [-2949.39, -715.34], [-2945.94, -715.47], [-2945.88, -713.92], [-2942.22, -714.06], [-2941.83, -704.14], [-2944.94, -704.02], [-2944.76, -699.22], [-2952.4, -698.92]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-3009.82, -697.5], [-3010.06, -707.71], [-3004.4, -707.85], [-3004.43, -708.92], [-2997.11, -709.1], [-2997.05, -706.98], [-2994.38, -707.05], [-2994.18, -698.62], [-2996.7, -698.55], [-2996.68, -697.81], [-3003.29, -697.65], [-3003.25, -696.52], [-3008.77, -696.4], [-3008.8, -697.52], [-3009.82, -697.5]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3057.45, -647.42], [-3048.88, -647.81], [-3049.34, -657.9], [-3051.67, -657.79], [-3051.74, -659.2], [-3049.68, -660.55], [-3049.8, -663.27], [-3051.98, -664.37], [-3052.07, -666.28], [-3053.54, -666.22], [-3053.6, -667.57], [-3057.97, -667.37], [-3057.85, -664.8], [-3060.2, -664.7], [-3059.94, -658.88], [-3057.98, -658.97], [-3057.45, -647.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3023.35, -697.51], [-3023.86, -709.06], [-3012.83, -709.55], [-3012.33, -697.99], [-3023.35, -697.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2998.33, -673.65], [-2991.62, -673.85], [-2991.81, -680.59], [-2998.53, -680.4], [-2998.33, -673.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2926.81, -699.55], [-2926.92, -703.32], [-2919.01, -703.57], [-2918.88, -699.8], [-2926.81, -699.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3005.9, -674.37], [-3006.07, -681.18], [-2999.9, -681.33], [-2999.73, -674.53], [-3005.9, -674.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2992.7, -683.12], [-2992.87, -690.94], [-2984.63, -691.12], [-2984.46, -683.3], [-2992.7, -683.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2974.14, -674.19], [-2969.33, -674.32], [-2969.57, -682.64], [-2974.38, -682.5], [-2974.14, -674.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2974.3, -687.34], [-2970.88, -687.45], [-2971.1, -694.96], [-2974.52, -694.86], [-2974.3, -687.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2945.79, -691.5], [-2945.53, -686.21], [-2939.8, -686.48], [-2940.06, -691.77], [-2945.79, -691.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2919.45, -671.86], [-2910.11, -672.2], [-2910.47, -682.26], [-2919.81, -681.91], [-2919.45, -671.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2937.5, -665.66], [-2931.68, -665.92], [-2932.15, -676.52], [-2937.97, -676.26], [-2937.5, -665.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2964.24, -674.82], [-2968.1, -674.68], [-2968.38, -682.88], [-2964.53, -683.01], [-2964.24, -674.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3043.44, -648.01], [-3034.2, -648.38], [-3034.97, -667.53], [-3044.2, -667.15], [-3043.44, -648.01]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2941.46, -667.0], [-2937.69, -667.13], [-2937.89, -672.9], [-2941.66, -672.77], [-2941.46, -667.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2922.42, -706.14], [-2922.63, -711.59], [-2923.33, -711.56], [-2923.52, -716.49], [-2911.35, -716.95], [-2910.96, -706.58], [-2922.42, -706.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3048.49, -690.15], [-3048.27, -683.39], [-3044.66, -683.51], [-3044.55, -680.25], [-3033.35, -680.64], [-3033.7, -690.65], [-3048.49, -690.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2982.25, -654.4], [-2982.5, -663.05], [-2975.96, -663.24], [-2976.04, -666.02], [-2971.12, -666.16], [-2970.79, -654.73], [-2982.25, -654.4]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2926.57, -654.77], [-2926.78, -662.36], [-2921.09, -662.52], [-2921.12, -663.53], [-2911.57, -663.8], [-2911.26, -652.75], [-2919.42, -652.52], [-2919.48, -654.97], [-2926.57, -654.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2991.04, -698.46], [-2991.27, -708.08], [-2977.28, -708.44], [-2977.03, -698.82], [-2983.86, -698.65], [-2983.83, -697.41], [-2988.41, -697.3], [-2988.45, -698.54], [-2991.04, -698.46]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3078.79, -642.96], [-3079.08, -653.28], [-3065.73, -653.66], [-3065.7, -652.76], [-3061.82, -652.87], [-3061.59, -644.88], [-3065.47, -644.76], [-3065.43, -643.34], [-3078.79, -642.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2966.17, -652.83], [-2966.95, -670.13], [-2957.82, -670.53], [-2957.04, -653.24], [-2958.34, -653.19], [-2958.23, -650.66], [-2964.84, -650.36], [-2964.95, -652.89], [-2966.17, -652.83]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3012.27, -653.21], [-3012.63, -663.68], [-3006.42, -663.9], [-3006.33, -661.49], [-3002.29, -661.63], [-3001.98, -652.5], [-3009.08, -652.26], [-3009.11, -653.32], [-3012.27, -653.21]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2936.9, -706.81], [-2937.16, -714.85], [-2934.39, -714.95], [-2934.42, -716.16], [-2927.26, -716.38], [-2926.89, -704.94], [-2931.07, -704.79], [-2931.14, -707.0], [-2936.9, -706.81]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2918.05, -686.17], [-2910.15, -686.42], [-2910.48, -697.29], [-2912.22, -697.24], [-2912.28, -699.28], [-2917.52, -699.11], [-2917.46, -697.08], [-2918.39, -697.06], [-2918.05, -686.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3120.21, -656.26], [-3124.2, -663.77], [-3119.43, -666.28], [-3121.39, -669.98], [-3115.23, -673.24], [-3114.15, -671.21], [-3107.56, -674.69], [-3103.41, -666.89], [-3109.24, -663.82], [-3108.51, -662.43], [-3120.21, -656.26]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3137.16, -693.49], [-3136.99, -688.78], [-3125.68, -689.19], [-3125.83, -692.95], [-3123.95, -693.03], [-3124.19, -699.5], [-3126.05, -699.43], [-3126.13, -701.5], [-3134.65, -701.2], [-3134.38, -693.59], [-3137.16, -693.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3100.98, -685.1], [-3094.2, -685.34], [-3094.45, -692.18], [-3090.01, -692.34], [-3090.15, -696.07], [-3087.94, -696.15], [-3087.98, -697.38], [-3084.26, -697.52], [-3084.47, -703.23], [-3088.18, -703.09], [-3088.23, -704.24], [-3099.83, -703.82], [-3099.51, -694.92], [-3101.77, -694.85], [-3101.67, -692.0], [-3101.24, -692.02], [-3100.98, -685.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3138.1, -670.52], [-3144.15, -670.09], [-3144.55, -675.57], [-3138.5, -676.01], [-3138.1, -670.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3142.23, -646.6], [-3142.7, -659.25], [-3141.09, -659.31], [-3141.19, -662.15], [-3130.18, -662.57], [-3129.97, -657.03], [-3129.17, -657.05], [-3128.8, -647.09], [-3142.23, -646.6]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3007.11, -501.23], [-3007.21, -503.66], [-3009.86, -503.55], [-3010.15, -510.24], [-3005.42, -510.44], [-3005.55, -513.46], [-2995.13, -513.9], [-2994.61, -501.77], [-2996.34, -501.7], [-2996.22, -498.96], [-3002.33, -498.69], [-3002.44, -501.43], [-3007.11, -501.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3134.3, -554.97], [-3124.21, -560.6], [-3122.27, -557.15], [-3121.59, -557.54], [-3121.21, -556.86], [-3117.93, -558.69], [-3114.92, -553.32], [-3118.2, -551.49], [-3117.47, -550.19], [-3129.31, -543.59], [-3133.16, -550.45], [-3132.1, -551.04], [-3134.3, -554.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3126.13, -537.47], [-3118.88, -544.75], [-3118.21, -544.07], [-3114.89, -547.4], [-3111.88, -544.41], [-3107.59, -548.72], [-3102.77, -543.94], [-3107.06, -539.64], [-3105.89, -538.5], [-3116.45, -527.9], [-3120.69, -532.09], [-3120.19, -532.59], [-3121.66, -534.05], [-3122.17, -533.55], [-3126.13, -537.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3091.47, -507.22], [-3081.88, -498.14], [-3074.94, -505.43], [-3077.14, -507.52], [-3074.21, -510.6], [-3072.42, -508.92], [-3067.79, -513.78], [-3072.23, -517.98], [-3073.29, -516.87], [-3078.0, -521.34], [-3081.35, -517.83], [-3082.22, -518.65], [-3088.87, -511.67], [-3088.54, -511.35], [-3090.59, -509.22], [-3090.05, -508.7], [-3091.47, -507.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3092.86, -598.17], [-3087.19, -607.89], [-3083.16, -605.55], [-3082.63, -606.46], [-3079.59, -604.7], [-3080.11, -603.8], [-3075.63, -601.2], [-3079.88, -593.9], [-3081.23, -594.67], [-3082.42, -592.61], [-3084.34, -593.73], [-3084.55, -593.36], [-3086.43, -594.44], [-3087.28, -592.97], [-3090.6, -594.9], [-3089.74, -596.36], [-3092.86, -598.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3125.97, -606.93], [-3120.94, -600.13], [-3119.42, -601.24], [-3117.85, -599.12], [-3117.21, -599.59], [-3116.74, -598.97], [-3111.44, -597.36], [-3110.03, -602.01], [-3113.25, -602.67], [-3115.15, -605.23], [-3111.67, -607.79], [-3112.01, -608.23], [-3109.26, -610.26], [-3112.97, -615.27], [-3115.72, -613.26], [-3116.29, -614.03], [-3119.8, -611.45], [-3120.27, -612.1], [-3122.55, -610.42], [-3122.07, -609.78], [-3125.97, -606.93]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3053.26, -535.49], [-3049.46, -531.6], [-3044.69, -536.22], [-3048.48, -540.11], [-3053.26, -535.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3075.05, -597.96], [-3080.02, -590.69], [-3070.73, -584.37], [-3065.75, -591.65], [-3075.05, -597.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3046.42, -507.98], [-3058.28, -512.13], [-3055.11, -521.13], [-3043.24, -516.97], [-3046.42, -507.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3077.97, -496.06], [-3072.03, -504.92], [-3060.2, -497.02], [-3066.14, -488.17], [-3077.97, -496.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3070.05, -530.38], [-3064.75, -536.14], [-3056.5, -528.6], [-3061.81, -522.83], [-3070.05, -530.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3084.63, -537.59], [-3080.41, -533.23], [-3075.57, -537.89], [-3079.8, -542.24], [-3084.63, -537.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3068.2, -579.1], [-3059.92, -571.37], [-3050.54, -581.33], [-3058.81, -589.06], [-3068.2, -579.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3104.8, -604.08], [-3103.31, -609.02], [-3105.19, -609.59], [-3103.58, -614.9], [-3096.22, -612.7], [-3096.64, -611.3], [-3091.74, -609.83], [-3094.4, -600.98], [-3104.8, -604.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3053.77, -558.94], [-3059.98, -564.52], [-3052.14, -573.18], [-3050.75, -571.93], [-3048.42, -574.51], [-3045.2, -571.62], [-3047.53, -569.05], [-3045.94, -567.61], [-3053.77, -558.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3046.95, -549.5], [-3040.18, -543.43], [-3029.0, -555.78], [-3035.77, -561.86], [-3041.5, -555.51], [-3042.59, -556.48], [-3045.02, -553.79], [-3043.94, -552.82], [-3046.95, -549.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3101.91, -519.12], [-3092.33, -528.51], [-3083.32, -519.39], [-3092.9, -509.99], [-3095.59, -512.71], [-3096.43, -511.88], [-3099.58, -515.07], [-3098.74, -515.9], [-3101.91, -519.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3136.99, -584.35], [-3129.1, -582.64], [-3126.66, -593.78], [-3129.25, -594.34], [-3128.59, -597.4], [-3132.71, -598.3], [-3133.34, -595.4], [-3134.52, -595.66], [-3136.99, -584.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2982.89, -433.12], [-2975.05, -450.46], [-2969.59, -448.02], [-2971.76, -443.2], [-2968.63, -441.79], [-2968.01, -443.16], [-2962.93, -440.87], [-2967.63, -430.48], [-2973.05, -432.91], [-2974.63, -429.41], [-2982.89, -433.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3055.87, -422.54], [-3055.42, -433.83], [-3043.21, -433.35], [-3043.26, -432.18], [-3038.72, -432.0], [-3039.13, -421.88], [-3041.73, -421.99], [-3041.85, -419.08], [-3051.86, -419.48], [-3051.75, -422.39], [-3055.87, -422.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3116.59, -476.56], [-3115.48, -477.63], [-3117.77, -479.99], [-3113.51, -484.11], [-3103.17, -473.51], [-3108.78, -468.09], [-3111.94, -471.34], [-3113.34, -469.99], [-3116.76, -473.52], [-3115.15, -475.09], [-3116.59, -476.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2957.85, -427.06], [-2948.96, -424.02], [-2948.2, -426.17], [-2946.3, -426.99], [-2945.65, -428.87], [-2943.54, -429.77], [-2942.1, -433.95], [-2943.2, -435.96], [-2942.65, -437.54], [-2943.74, -439.08], [-2952.65, -442.14], [-2957.85, -427.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3133.23, -488.78], [-3127.01, -495.03], [-3122.16, -490.24], [-3122.73, -489.67], [-3121.3, -488.26], [-3118.99, -490.58], [-3114.74, -486.38], [-3122.7, -478.38], [-3126.05, -481.7], [-3128.71, -479.03], [-3134.41, -484.67], [-3131.76, -487.33], [-3133.23, -488.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3025.71, -448.74], [-3027.22, -455.7], [-3010.75, -459.26], [-3009.96, -455.65], [-3006.64, -456.36], [-3004.73, -447.56], [-3007.27, -447.01], [-3008.51, -445.77], [-3012.08, -445.0], [-3013.24, -445.73], [-3018.74, -444.53], [-3019.92, -450.0], [-3025.71, -448.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3148.99, -498.7], [-3148.61, -499.31], [-3149.87, -500.06], [-3147.73, -503.59], [-3146.46, -502.82], [-3143.44, -507.79], [-3134.31, -502.26], [-3139.85, -493.17], [-3141.6, -494.23], [-3146.83, -485.68], [-3151.6, -488.56], [-3146.39, -497.11], [-3148.99, -498.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3174.7, -455.81], [-3173.48, -458.19], [-3174.42, -458.67], [-3173.78, -459.92], [-3178.57, -462.35], [-3175.14, -469.06], [-3170.35, -466.62], [-3169.88, -467.53], [-3156.35, -460.64], [-3160.68, -452.19], [-3163.89, -453.83], [-3165.32, -451.04], [-3174.7, -455.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2926.61, -412.17], [-2926.31, -413.93], [-2928.54, -414.3], [-2927.02, -423.23], [-2925.01, -422.88], [-2924.61, -425.25], [-2918.56, -424.24], [-2919.34, -419.65], [-2915.79, -419.05], [-2916.01, -417.76], [-2913.77, -417.38], [-2914.73, -411.66], [-2916.98, -412.04], [-2917.22, -410.59], [-2926.61, -412.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3102.59, -420.71], [-3101.72, -433.05], [-3101.17, -433.01], [-3100.89, -436.96], [-3091.11, -436.28], [-3091.34, -432.88], [-3088.97, -432.72], [-3086.74, -430.71], [-3086.94, -427.92], [-3089.48, -425.56], [-3089.88, -419.82], [-3091.73, -419.95], [-3091.94, -417.05], [-3101.68, -417.73], [-3101.47, -420.63], [-3102.59, -420.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2931.09, -463.22], [-2931.22, -472.04], [-2919.54, -472.22], [-2919.4, -463.39], [-2931.09, -463.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2912.01, -409.76], [-2910.62, -418.32], [-2897.94, -416.29], [-2899.33, -407.73], [-2912.01, -409.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2908.19, -440.08], [-2900.38, -440.31], [-2900.66, -449.99], [-2908.47, -449.77], [-2908.19, -440.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2899.62, -455.85], [-2909.18, -455.57], [-2909.46, -465.37], [-2899.9, -465.64], [-2899.62, -455.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2958.72, -464.49], [-2956.32, -471.16], [-2950.25, -468.99], [-2952.65, -462.32], [-2958.72, -464.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2930.17, -431.34], [-2924.11, -431.48], [-2924.28, -439.42], [-2930.34, -439.28], [-2930.17, -431.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2937.97, -436.39], [-2931.76, -436.48], [-2931.84, -443.28], [-2938.05, -443.2], [-2937.97, -436.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3081.92, -458.33], [-3086.48, -452.52], [-3077.98, -445.9], [-3073.43, -451.71], [-3081.92, -458.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2980.39, -465.5], [-2978.0, -472.38], [-2976.33, -471.81], [-2974.68, -476.56], [-2966.15, -473.61], [-2970.18, -461.98], [-2980.39, -465.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2971.01, -482.23], [-2965.3, -480.27], [-2964.3, -483.18], [-2960.34, -481.83], [-2955.82, -494.96], [-2965.49, -498.28], [-2971.01, -482.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3106.97, -462.37], [-3100.84, -469.07], [-3093.34, -462.25], [-3096.28, -459.04], [-3093.88, -456.86], [-3097.07, -453.38], [-3106.97, -462.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3083.52, -420.77], [-3083.99, -428.0], [-3067.14, -429.09], [-3066.51, -419.4], [-3079.44, -418.57], [-3079.6, -421.01], [-3083.52, -420.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3142.38, -438.5], [-3136.11, -449.04], [-3137.96, -450.12], [-3135.01, -455.08], [-3127.99, -450.94], [-3129.89, -447.73], [-3123.46, -443.94], [-3130.75, -431.65], [-3142.38, -438.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3176.08, -555.01], [-3176.5, -563.37], [-3174.84, -563.45], [-3175.05, -567.74], [-3173.99, -567.8], [-3174.15, -570.88], [-3166.12, -571.28], [-3165.96, -568.03], [-3165.21, -568.06], [-3164.6, -555.56], [-3176.08, -555.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3225.4, -594.38], [-3225.72, -603.68], [-3213.66, -604.09], [-3213.59, -602.19], [-3210.76, -602.28], [-3210.56, -596.2], [-3213.39, -596.09], [-3213.34, -594.79], [-3219.54, -594.58], [-3219.5, -593.43], [-3224.48, -593.26], [-3224.51, -594.42], [-3225.4, -594.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3228.49, -590.67], [-3231.12, -590.52], [-3230.88, -586.02], [-3236.16, -585.73], [-3236.41, -590.23], [-3240.91, -589.98], [-3241.2, -595.28], [-3237.1, -595.51], [-3237.51, -602.92], [-3238.6, -602.86], [-3238.79, -606.54], [-3232.55, -606.88], [-3232.38, -603.8], [-3229.23, -603.97], [-3228.49, -590.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3187.11, -574.37], [-3179.15, -574.65], [-3179.44, -582.7], [-3187.39, -582.42], [-3187.11, -574.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3208.94, -601.97], [-3209.32, -610.16], [-3196.54, -610.74], [-3196.17, -602.55], [-3208.94, -601.97]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3185.86, -603.33], [-3186.28, -611.0], [-3175.42, -611.6], [-3174.92, -602.69], [-3182.19, -602.28], [-3182.26, -603.54], [-3185.86, -603.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3196.37, -565.08], [-3196.05, -558.97], [-3193.17, -559.12], [-3192.9, -554.02], [-3181.69, -554.62], [-3182.28, -565.82], [-3196.37, -565.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3229.97, -558.32], [-3220.26, -558.6], [-3220.53, -568.12], [-3226.49, -577.7], [-3231.79, -573.9], [-3227.58, -568.18], [-3230.25, -567.84], [-3229.97, -558.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3210.82, -553.57], [-3211.3, -561.95], [-3207.71, -562.17], [-3207.84, -564.45], [-3203.87, -564.69], [-3203.73, -562.39], [-3200.29, -562.59], [-3199.81, -554.2], [-3210.82, -553.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3172.32, -592.28], [-3163.66, -590.77], [-3161.41, -603.63], [-3162.16, -603.76], [-3161.51, -607.49], [-3168.07, -608.64], [-3168.73, -604.9], [-3170.07, -605.13], [-3172.32, -592.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3155.62, -645.74], [-3156.07, -656.52], [-3155.69, -656.53], [-3155.81, -659.32], [-3150.37, -659.55], [-3150.25, -656.77], [-3145.78, -656.95], [-3145.31, -646.2], [-3146.09, -646.16], [-3145.96, -643.04], [-3152.05, -642.79], [-3152.19, -645.89], [-3155.62, -645.74]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3170.7, -683.77], [-3171.22, -696.07], [-3158.98, -696.59], [-3158.46, -684.29], [-3159.38, -684.25], [-3159.28, -681.89], [-3164.47, -681.67], [-3164.57, -684.03], [-3170.7, -683.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2918.75, -558.71], [-2906.09, -559.17], [-2906.24, -563.21], [-2904.48, -563.27], [-2904.67, -568.5], [-2906.43, -568.42], [-2906.58, -572.44], [-2919.23, -571.98], [-2919.03, -566.38], [-2920.56, -566.32], [-2920.33, -559.85], [-2918.79, -559.91], [-2918.75, -558.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3038.72, -604.07], [-3031.07, -610.81], [-3038.47, -619.15], [-3040.05, -617.76], [-3040.43, -618.18], [-3046.79, -620.24], [-3048.48, -614.42], [-3045.88, -613.37], [-3046.9, -612.49], [-3045.09, -610.45], [-3043.91, -611.49], [-3041.17, -608.41], [-3041.96, -607.72], [-3038.72, -604.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2921.63, -615.09], [-2921.65, -615.68], [-2923.32, -615.62], [-2923.45, -619.27], [-2922.99, -619.3], [-2923.14, -623.21], [-2921.93, -623.24], [-2921.95, -624.04], [-2908.35, -624.53], [-2908.32, -623.52], [-2907.01, -623.57], [-2906.73, -615.62], [-2908.42, -615.56], [-2908.36, -614.07], [-2918.9, -613.69], [-2918.96, -615.18], [-2921.63, -615.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2934.61, -515.73], [-2929.82, -522.41], [-2919.44, -515.04], [-2924.24, -508.35], [-2934.61, -515.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2918.69, -577.82], [-2919.11, -590.13], [-2907.04, -590.54], [-2906.63, -578.22], [-2918.69, -577.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2911.27, -518.87], [-2902.2, -519.11], [-2902.5, -530.46], [-2911.58, -530.22], [-2911.27, -518.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2901.81, -496.41], [-2910.39, -496.15], [-2910.73, -507.58], [-2902.15, -507.84], [-2901.81, -496.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2955.34, -531.36], [-2950.37, -538.09], [-2939.02, -529.78], [-2943.98, -523.05], [-2955.34, -531.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2972.22, -592.22], [-2979.16, -591.92], [-2979.5, -599.49], [-2972.55, -599.8], [-2972.22, -592.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3007.17, -610.55], [-3007.7, -621.39], [-2996.79, -621.93], [-2996.26, -611.08], [-3007.17, -610.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2964.44, -531.86], [-2957.68, -539.85], [-2969.37, -549.68], [-2976.14, -541.69], [-2964.44, -531.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3016.56, -581.71], [-3008.95, -589.54], [-3000.93, -581.8], [-3008.54, -573.98], [-3016.56, -581.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3005.42, -568.41], [-2997.84, -576.46], [-2994.36, -573.21], [-2992.49, -575.19], [-2987.87, -570.88], [-2989.75, -568.89], [-2987.79, -567.07], [-2995.36, -559.01], [-3005.42, -568.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2970.83, -604.52], [-2971.14, -619.94], [-2960.27, -620.16], [-2959.94, -603.47], [-2967.15, -603.33], [-2967.18, -604.6], [-2970.83, -604.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3023.84, -606.96], [-3015.32, -607.31], [-3015.8, -619.33], [-3022.32, -619.07], [-3022.15, -614.8], [-3024.15, -614.72], [-3023.84, -606.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2952.8, -609.12], [-2953.18, -620.47], [-2938.49, -620.95], [-2938.07, -608.05], [-2944.8, -607.83], [-2944.75, -606.42], [-2948.9, -606.29], [-2949.0, -609.24], [-2952.8, -609.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2919.86, -607.36], [-2919.36, -596.32], [-2907.52, -596.86], [-2907.7, -600.68], [-2905.63, -600.77], [-2905.89, -606.32], [-2907.96, -606.23], [-2908.03, -607.9], [-2919.86, -607.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2990.1, -607.88], [-2983.14, -608.19], [-2983.33, -612.49], [-2980.73, -612.61], [-2981.02, -619.18], [-2983.62, -619.07], [-2983.76, -622.11], [-2990.73, -621.8], [-2990.1, -607.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2918.62, -551.84], [-2918.38, -543.85], [-2899.54, -544.4], [-2899.78, -552.4], [-2909.97, -552.09], [-2910.0, -553.08], [-2915.41, -552.93], [-2915.38, -551.94], [-2918.62, -551.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2978.55, -380.47], [-2976.8, -390.8], [-2960.77, -388.11], [-2962.52, -377.78], [-2967.33, -378.58], [-2967.56, -377.23], [-2971.88, -377.95], [-2972.09, -376.67], [-2977.56, -377.59], [-2977.12, -380.23], [-2978.55, -380.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3026.01, -382.48], [-3023.29, -398.78], [-3021.21, -398.44], [-3020.78, -401.03], [-3014.38, -399.98], [-3014.81, -397.37], [-3012.63, -397.02], [-3015.36, -380.72], [-3017.04, -380.99], [-3017.54, -378.06], [-3024.86, -379.27], [-3024.37, -382.21], [-3026.01, -382.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3020.08, -331.38], [-3012.06, -330.11], [-3009.96, -343.23], [-3017.97, -344.5], [-3020.08, -331.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2982.74, -333.58], [-2981.13, -343.67], [-2968.02, -341.59], [-2969.62, -331.51], [-2982.74, -333.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2995.34, -342.26], [-2988.49, -341.29], [-2987.13, -350.86], [-2993.97, -351.83], [-2995.34, -342.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2965.64, -358.25], [-2975.84, -359.66], [-2974.21, -371.31], [-2964.01, -369.9], [-2965.64, -358.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3162.79, -373.74], [-3157.83, -372.97], [-3158.62, -367.94], [-3163.58, -368.71], [-3162.79, -373.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3055.65, -372.44], [-3064.66, -373.07], [-3063.75, -385.92], [-3054.74, -385.29], [-3055.65, -372.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3049.07, -338.14], [-3047.71, -347.04], [-3037.25, -345.47], [-3038.61, -336.56], [-3049.07, -338.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3037.46, -356.94], [-3033.7, -356.34], [-3032.82, -361.74], [-3036.57, -362.36], [-3037.46, -356.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3114.75, -375.07], [-3113.55, -385.37], [-3100.34, -383.85], [-3101.53, -373.54], [-3114.75, -375.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3010.0, -350.43], [-3008.63, -357.63], [-3000.66, -356.11], [-3002.04, -348.93], [-3010.0, -350.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3033.28, -354.12], [-3027.54, -353.13], [-3026.18, -360.89], [-3031.92, -361.89], [-3033.28, -354.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3007.73, -329.41], [-2999.07, -328.09], [-2996.79, -343.01], [-3001.14, -343.66], [-3001.69, -340.02], [-3006.01, -340.68], [-3007.73, -329.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3158.23, -354.45], [-3156.46, -367.15], [-3151.6, -366.49], [-3151.89, -364.38], [-3142.89, -363.14], [-3144.36, -352.53], [-3158.23, -354.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3081.2, -346.79], [-3080.92, -348.82], [-3084.3, -349.27], [-3083.37, -356.17], [-3070.39, -354.42], [-3071.6, -345.5], [-3081.2, -346.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3138.01, -348.63], [-3134.14, -356.64], [-3123.32, -351.45], [-3123.71, -350.66], [-3121.06, -349.39], [-3124.08, -343.15], [-3126.72, -344.42], [-3127.2, -343.44], [-3138.01, -348.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3087.15, -382.62], [-3087.85, -372.05], [-3077.73, -371.4], [-3077.48, -375.16], [-3073.75, -374.92], [-3073.21, -383.12], [-3082.61, -383.73], [-3082.7, -382.32], [-3087.15, -382.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3006.04, -386.8], [-3004.38, -396.05], [-2991.99, -393.85], [-2992.69, -389.97], [-2989.89, -389.47], [-2991.67, -379.48], [-3002.09, -381.34], [-3001.27, -385.95], [-3006.04, -386.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3032.71, -336.1], [-3030.3, -350.73], [-3021.48, -349.29], [-3023.89, -334.66], [-3024.75, -334.79], [-3025.13, -332.5], [-3032.21, -333.66], [-3031.83, -335.95], [-3032.71, -336.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3064.58, -344.29], [-3062.99, -354.12], [-3051.74, -352.31], [-3053.32, -342.49], [-3058.35, -343.29], [-3058.97, -339.47], [-3063.47, -340.19], [-3062.85, -344.02], [-3064.58, -344.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3172.12, -381.77], [-3169.98, -396.15], [-3168.76, -395.98], [-3168.5, -397.72], [-3164.93, -397.2], [-3165.2, -395.45], [-3157.41, -394.31], [-3159.15, -382.61], [-3159.88, -382.72], [-3160.4, -379.24], [-3169.08, -380.51], [-3168.96, -381.3], [-3172.12, -381.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3248.28, -363.97], [-3247.06, -370.97], [-3244.37, -370.5], [-3243.81, -373.77], [-3230.69, -371.49], [-3230.98, -369.87], [-3229.63, -369.65], [-3228.97, -373.41], [-3223.48, -372.46], [-3224.49, -366.72], [-3231.32, -367.9], [-3232.49, -361.23], [-3248.28, -363.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3238.75, -414.95], [-3237.01, -424.67], [-3226.46, -422.8], [-3228.2, -413.08], [-3238.75, -414.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3203.69, -364.57], [-3213.06, -366.28], [-3210.46, -380.45], [-3201.09, -378.75], [-3203.69, -364.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3221.57, -405.85], [-3220.25, -414.71], [-3207.59, -412.84], [-3209.27, -401.53], [-3218.29, -402.86], [-3217.92, -405.32], [-3221.57, -405.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3203.41, -404.03], [-3201.9, -414.01], [-3193.02, -412.67], [-3193.17, -411.65], [-3189.86, -411.15], [-3190.89, -404.42], [-3194.19, -404.91], [-3194.54, -402.68], [-3203.41, -404.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3187.19, -400.93], [-3185.62, -411.36], [-3174.04, -409.63], [-3174.3, -407.9], [-3171.16, -407.44], [-3172.18, -400.69], [-3175.32, -401.17], [-3175.61, -399.19], [-3187.19, -400.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3241.42, -730.03], [-3241.48, -731.33], [-3243.71, -731.23], [-3244.17, -741.23], [-3241.95, -741.34], [-3241.99, -742.13], [-3229.61, -742.7], [-3229.4, -738.53], [-3228.31, -738.59], [-3227.95, -730.65], [-3241.42, -730.03]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3206.92, -689.53], [-3207.27, -699.06], [-3194.75, -699.51], [-3194.83, -701.68], [-3187.81, -701.93], [-3187.39, -690.24], [-3196.72, -689.91], [-3196.63, -687.63], [-3202.85, -687.41], [-3202.94, -689.68], [-3206.92, -689.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3140.13, -739.5], [-3140.41, -746.84], [-3139.13, -746.89], [-3139.29, -751.03], [-3132.8, -751.28], [-3132.64, -747.14], [-3124.9, -747.44], [-3124.48, -736.41], [-3137.09, -735.92], [-3137.24, -739.61], [-3140.13, -739.5]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3207.49, -782.38], [-3207.94, -790.69], [-3194.55, -791.4], [-3194.5, -790.5], [-3192.34, -790.62], [-3192.0, -784.37], [-3194.17, -784.27], [-3194.11, -783.09], [-3196.4, -782.97], [-3196.09, -777.26], [-3203.9, -776.85], [-3204.21, -782.55], [-3207.49, -782.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3243.41, -748.28], [-3243.47, -749.43], [-3245.89, -749.32], [-3246.46, -761.27], [-3244.04, -761.4], [-3244.1, -762.72], [-3229.92, -763.39], [-3229.65, -757.76], [-3227.21, -757.87], [-3226.96, -752.75], [-3229.4, -752.64], [-3229.23, -748.95], [-3243.41, -748.28]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3092.58, -792.03], [-3092.87, -799.56], [-3084.87, -799.87], [-3084.9, -800.85], [-3080.38, -801.02], [-3080.33, -800.04], [-3076.94, -800.18], [-3076.59, -790.97], [-3084.09, -790.68], [-3084.16, -792.37], [-3086.61, -792.27], [-3086.54, -790.42], [-3088.89, -790.33], [-3088.96, -792.18], [-3092.58, -792.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3213.26, -738.08], [-3213.67, -746.66], [-3208.16, -746.93], [-3208.37, -751.18], [-3202.53, -751.46], [-3202.32, -747.22], [-3200.26, -747.32], [-3199.84, -738.74], [-3204.26, -738.52], [-3204.23, -737.76], [-3206.49, -737.65], [-3206.43, -736.5], [-3212.02, -736.22], [-3212.12, -738.13], [-3213.26, -738.08]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3224.52, -746.41], [-3224.82, -754.96], [-3215.32, -755.29], [-3215.02, -746.74], [-3224.52, -746.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3228.12, -784.74], [-3228.67, -793.39], [-3213.73, -794.33], [-3213.19, -785.67], [-3228.12, -784.74]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3098.27, -739.87], [-3098.63, -747.9], [-3091.65, -748.2], [-3091.28, -740.19], [-3098.27, -739.87]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3135.0, -775.48], [-3125.2, -776.0], [-3125.68, -785.08], [-3135.49, -784.56], [-3135.0, -775.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3192.4, -667.13], [-3187.32, -667.28], [-3187.5, -673.64], [-3192.58, -673.5], [-3192.4, -667.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3104.9, -785.74], [-3098.93, -785.99], [-3099.29, -794.64], [-3105.26, -794.39], [-3104.9, -785.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3229.78, -770.41], [-3233.74, -770.22], [-3234.11, -777.45], [-3230.15, -777.65], [-3229.78, -770.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3096.59, -785.82], [-3091.73, -785.96], [-3091.88, -790.91], [-3096.74, -790.77], [-3096.59, -785.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3235.53, -777.74], [-3245.31, -777.28], [-3245.89, -789.24], [-3236.1, -789.7], [-3235.53, -777.74]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3193.93, -738.39], [-3194.77, -753.34], [-3181.65, -754.07], [-3181.2, -746.14], [-3178.35, -746.3], [-3177.95, -739.29], [-3193.93, -738.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3090.04, -753.73], [-3090.5, -763.31], [-3078.73, -763.88], [-3078.56, -760.55], [-3076.26, -760.66], [-3075.96, -754.4], [-3090.04, -753.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3189.88, -645.5], [-3177.75, -646.16], [-3178.45, -659.16], [-3186.48, -658.71], [-3186.18, -653.22], [-3190.29, -653.0], [-3189.88, -645.5]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-3125.02, -778.44], [-3114.91, -778.93], [-3115.14, -783.54], [-3111.84, -783.7], [-3112.5, -796.98], [-3125.9, -796.32], [-3125.02, -778.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3222.35, -765.8], [-3222.62, -772.14], [-3211.38, -772.63], [-3211.07, -765.32], [-3216.69, -765.07], [-3216.73, -766.04], [-3222.35, -765.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3241.25, -638.88], [-3241.71, -652.78], [-3233.69, -653.05], [-3233.6, -650.25], [-3228.13, -650.43], [-3227.77, -639.33], [-3241.25, -638.88]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3175.13, -752.47], [-3174.57, -740.32], [-3167.58, -740.64], [-3167.7, -743.29], [-3164.9, -743.43], [-3164.92, -743.9], [-3156.49, -744.27], [-3156.9, -753.29], [-3175.13, -752.47]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-3173.5, -782.9], [-3174.03, -792.74], [-3163.06, -793.33], [-3162.32, -779.48], [-3167.98, -779.18], [-3168.11, -781.47], [-3170.52, -781.35], [-3170.61, -783.05], [-3173.5, -782.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3154.8, -785.85], [-3155.25, -794.96], [-3143.84, -795.52], [-3143.39, -786.41], [-3145.73, -786.3], [-3145.28, -777.26], [-3152.16, -776.93], [-3152.61, -785.96], [-3154.8, -785.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3207.31, -644.05], [-3207.67, -653.69], [-3204.8, -653.79], [-3204.91, -656.9], [-3197.06, -657.2], [-3196.94, -654.09], [-3194.73, -654.17], [-3194.37, -644.54], [-3207.31, -644.05]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3241.62, -691.47], [-3242.22, -703.89], [-3228.78, -704.52], [-3228.72, -703.36], [-3225.78, -703.5], [-3225.3, -693.39], [-3227.05, -693.31], [-3227.0, -692.17], [-3241.62, -691.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3082.48, -738.21], [-3083.05, -749.26], [-3073.01, -749.76], [-3072.44, -738.71], [-3076.43, -738.51], [-3076.39, -737.62], [-3081.03, -737.38], [-3081.07, -738.28], [-3082.48, -738.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3118.25, -741.29], [-3118.75, -751.93], [-3114.53, -752.13], [-3114.78, -757.35], [-3107.92, -757.67], [-3107.67, -752.41], [-3106.8, -752.45], [-3106.29, -741.85], [-3118.25, -741.29]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3114.55, -834.67], [-3104.66, -835.03], [-3104.71, -836.23], [-3103.45, -836.28], [-3103.88, -847.69], [-3115.02, -847.28], [-3114.89, -843.89], [-3118.47, -843.76], [-3118.25, -837.78], [-3114.67, -837.91], [-3114.55, -834.67]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3067.88, -926.87], [-3068.45, -937.33], [-3062.99, -937.62], [-3063.14, -940.41], [-3056.27, -940.79], [-3055.55, -927.54], [-3062.18, -927.18], [-3062.08, -925.14], [-3067.14, -924.87], [-3067.26, -926.9], [-3067.88, -926.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2972.82, -929.1], [-2971.7, -936.62], [-2967.24, -935.96], [-2967.37, -935.08], [-2958.27, -933.74], [-2960.1, -921.49], [-2967.86, -922.64], [-2967.45, -925.44], [-2970.13, -925.84], [-2969.71, -928.64], [-2972.82, -929.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3006.21, -927.27], [-3006.13, -936.43], [-3004.23, -936.42], [-3004.19, -941.32], [-2997.34, -941.26], [-2997.41, -933.07], [-2994.66, -933.05], [-2994.7, -928.52], [-2997.45, -928.54], [-2997.46, -927.2], [-3006.21, -927.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3123.89, -941.84], [-3118.76, -941.64], [-3118.71, -942.98], [-3114.49, -942.81], [-3114.35, -946.25], [-3116.8, -946.34], [-3116.73, -948.03], [-3116.35, -948.01], [-3115.85, -960.51], [-3123.13, -960.8], [-3123.89, -941.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3198.02, -829.13], [-3206.24, -828.74], [-3206.45, -833.14], [-3208.85, -833.03], [-3209.2, -840.37], [-3199.07, -840.86], [-3199.27, -845.14], [-3196.02, -845.29], [-3195.7, -838.62], [-3198.46, -838.48], [-3198.02, -829.13]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-3020.28, -928.44], [-3020.57, -936.88], [-3019.82, -936.91], [-3019.97, -941.19], [-3011.82, -941.46], [-3011.69, -937.18], [-3009.6, -937.25], [-3009.24, -926.88], [-3015.53, -926.67], [-3015.59, -928.6], [-3020.28, -928.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3181.32, -871.22], [-3181.67, -882.13], [-3180.37, -882.18], [-3180.42, -883.5], [-3179.2, -883.54], [-3179.24, -884.65], [-3171.17, -884.92], [-3171.08, -882.3], [-3168.95, -882.37], [-3168.59, -871.65], [-3181.32, -871.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3210.24, -987.66], [-3207.23, -995.31], [-3203.89, -994.0], [-3203.58, -994.8], [-3202.93, -994.55], [-3201.24, -998.87], [-3196.74, -997.11], [-3198.43, -992.79], [-3197.42, -992.4], [-3201.53, -981.94], [-3206.11, -983.73], [-3205.32, -985.74], [-3210.24, -987.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3148.53, -929.91], [-3147.93, -931.14], [-3150.32, -932.3], [-3148.53, -935.96], [-3146.14, -934.79], [-3144.82, -937.49], [-3142.37, -936.3], [-3140.5, -940.15], [-3131.12, -935.59], [-3133.42, -930.88], [-3135.14, -931.72], [-3138.42, -925.01], [-3148.53, -929.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3020.35, -838.49], [-3020.43, -840.4], [-3022.0, -840.34], [-3022.16, -844.47], [-3020.6, -844.54], [-3020.68, -846.56], [-3017.05, -846.71], [-3017.11, -848.21], [-3013.89, -848.34], [-3013.83, -846.83], [-3010.93, -846.95], [-3010.6, -838.88], [-3020.35, -838.49]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3242.78, -954.26], [-3242.99, -962.89], [-3239.31, -962.97], [-3239.34, -963.89], [-3235.79, -963.97], [-3235.76, -963.06], [-3231.58, -963.16], [-3231.55, -962.26], [-3228.85, -962.33], [-3228.72, -957.15], [-3231.43, -957.08], [-3231.37, -954.53], [-3242.78, -954.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3117.98, -882.11], [-3118.38, -891.18], [-3109.59, -891.55], [-3109.53, -890.33], [-3106.39, -890.47], [-3106.19, -885.79], [-3109.33, -885.66], [-3109.19, -882.48], [-3112.46, -882.35], [-3112.41, -881.41], [-3116.13, -881.25], [-3116.17, -882.19], [-3117.98, -882.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2928.99, -841.89], [-2925.56, -842.01], [-2925.47, -839.63], [-2920.94, -839.79], [-2921.02, -842.17], [-2920.52, -842.19], [-2920.7, -847.25], [-2919.9, -847.27], [-2920.03, -850.79], [-2926.29, -850.58], [-2926.39, -853.31], [-2929.39, -853.2], [-2928.99, -841.89]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2954.16, -922.42], [-2952.9, -925.77], [-2955.22, -926.64], [-2953.45, -931.38], [-2951.12, -930.51], [-2950.93, -931.03], [-2940.75, -927.24], [-2941.76, -924.55], [-2939.82, -923.83], [-2941.68, -918.87], [-2943.61, -919.59], [-2943.97, -918.64], [-2954.16, -922.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3165.17, -959.93], [-3157.94, -958.87], [-3157.15, -964.24], [-3154.88, -963.91], [-3154.62, -965.69], [-3149.08, -964.88], [-3148.61, -968.11], [-3147.95, -968.02], [-3146.6, -977.17], [-3160.95, -979.27], [-3162.65, -967.75], [-3163.99, -967.94], [-3165.17, -959.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3237.3, -870.18], [-3235.54, -870.25], [-3235.45, -867.6], [-3230.37, -867.78], [-3230.47, -870.43], [-3229.46, -870.47], [-3229.6, -874.59], [-3225.14, -874.75], [-3225.34, -880.32], [-3221.62, -880.45], [-3221.82, -886.09], [-3237.84, -885.52], [-3237.3, -870.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3022.88, -881.57], [-3017.9, -881.73], [-3017.94, -883.05], [-3016.51, -883.09], [-3016.59, -885.6], [-3012.99, -885.7], [-3013.3, -896.34], [-3014.12, -896.32], [-3014.19, -898.85], [-3022.28, -898.61], [-3022.19, -896.08], [-3023.33, -896.04], [-3022.88, -881.57]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3184.98, -973.73], [-3180.85, -979.87], [-3180.47, -979.62], [-3175.81, -986.55], [-3170.82, -983.23], [-3174.2, -978.19], [-3171.05, -976.09], [-3171.65, -975.19], [-3169.13, -973.51], [-3173.13, -967.57], [-3175.65, -969.25], [-3176.46, -968.04], [-3184.98, -973.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3253.16, -919.72], [-3253.47, -931.69], [-3252.05, -931.74], [-3252.11, -934.09], [-3246.76, -934.22], [-3246.7, -931.87], [-3244.78, -931.92], [-3244.48, -919.95], [-3245.28, -919.93], [-3245.23, -917.64], [-3249.48, -917.53], [-3249.54, -919.81], [-3253.16, -919.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3147.72, -881.0], [-3147.89, -886.4], [-3148.9, -886.36], [-3149.03, -890.55], [-3144.56, -890.69], [-3144.48, -888.26], [-3136.98, -888.5], [-3136.7, -879.7], [-3137.68, -879.67], [-3137.61, -877.5], [-3144.92, -877.26], [-3145.02, -880.33], [-3146.54, -880.27], [-3146.57, -881.04], [-3147.72, -881.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3095.94, -880.16], [-3097.41, -881.75], [-3097.49, -884.58], [-3096.54, -885.74], [-3096.75, -892.98], [-3093.8, -893.07], [-3093.81, -893.33], [-3082.01, -893.67], [-3081.95, -891.61], [-3079.06, -891.69], [-3078.85, -884.4], [-3081.74, -884.32], [-3081.68, -882.03], [-3090.47, -881.78], [-3090.43, -880.31], [-3095.94, -880.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3028.97, -947.52], [-3022.12, -947.84], [-3022.44, -954.57], [-3029.28, -954.26], [-3028.97, -947.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2946.51, -861.81], [-2946.32, -857.86], [-2938.45, -858.25], [-2938.65, -862.19], [-2946.51, -861.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2971.02, -851.41], [-2967.52, -851.54], [-2967.75, -857.37], [-2971.24, -857.23], [-2971.02, -851.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3153.68, -870.19], [-3163.94, -869.62], [-3165.02, -889.24], [-3154.76, -889.81], [-3153.68, -870.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2996.13, -867.84], [-3000.99, -867.7], [-3001.17, -873.69], [-2996.31, -873.83], [-2996.13, -867.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2959.75, -875.8], [-2962.92, -875.67], [-2962.75, -871.8], [-2959.59, -871.94], [-2959.75, -875.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3155.69, -854.57], [-3149.99, -854.8], [-3150.23, -860.73], [-3155.93, -860.51], [-3155.69, -854.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2938.38, -917.84], [-2934.82, -917.77], [-2934.66, -924.51], [-2938.22, -924.59], [-2938.38, -917.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3225.92, -950.61], [-3226.09, -957.99], [-3215.7, -958.24], [-3215.52, -950.85], [-3225.92, -950.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3127.67, -854.79], [-3133.73, -854.61], [-3133.9, -860.76], [-3127.85, -860.94], [-3127.67, -854.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2995.27, -851.04], [-2991.73, -851.17], [-2991.94, -856.67], [-2995.48, -856.53], [-2995.27, -851.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3149.48, -853.24], [-3149.83, -860.74], [-3139.95, -861.19], [-3139.61, -853.69], [-3149.48, -853.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3191.7, -999.04], [-3188.95, -1005.17], [-3182.85, -1002.46], [-3185.61, -996.33], [-3191.7, -999.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3238.96, -948.7], [-3239.06, -952.07], [-3233.98, -952.22], [-3233.88, -948.84], [-3238.96, -948.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3166.31, -830.42], [-3174.41, -830.03], [-3174.95, -841.07], [-3166.85, -841.46], [-3166.31, -830.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3209.87, -996.86], [-3206.31, -995.48], [-3204.15, -1001.0], [-3207.71, -1002.38], [-3209.87, -996.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3076.61, -956.67], [-3069.85, -956.92], [-3070.11, -963.64], [-3076.86, -963.38], [-3076.61, -956.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3256.57, -959.27], [-3256.8, -967.0], [-3247.3, -967.28], [-3247.07, -959.56], [-3256.57, -959.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2987.87, -927.34], [-2987.41, -936.1], [-2978.02, -935.62], [-2978.47, -926.86], [-2987.87, -927.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3146.63, -830.29], [-3136.93, -830.71], [-3137.55, -844.69], [-3147.26, -844.26], [-3146.63, -830.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3088.25, -865.35], [-3088.49, -873.78], [-3079.48, -874.04], [-3079.24, -865.61], [-3088.25, -865.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3003.98, -942.95], [-3007.9, -942.87], [-3008.02, -948.76], [-3004.1, -948.84], [-3003.98, -942.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3097.89, -879.22], [-3103.19, -879.0], [-3103.46, -885.46], [-3098.17, -885.69], [-3097.89, -879.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2955.95, -840.68], [-2956.36, -849.15], [-2947.99, -849.54], [-2947.58, -841.09], [-2955.95, -840.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3042.12, -950.2], [-3036.77, -950.35], [-3036.98, -957.96], [-3042.33, -957.8], [-3042.12, -950.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2951.99, -870.09], [-2947.18, -870.34], [-2947.54, -877.3], [-2952.35, -877.05], [-2951.99, -870.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3190.96, -862.46], [-3198.13, -867.84], [-3192.94, -874.71], [-3185.78, -869.34], [-3190.96, -862.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3003.97, -850.31], [-3007.3, -850.19], [-3007.5, -855.9], [-3004.17, -856.02], [-3003.97, -850.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2958.66, -852.57], [-2955.4, -852.68], [-2955.58, -858.06], [-2958.84, -857.96], [-2958.66, -852.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3023.62, -867.75], [-3028.26, -867.61], [-3028.41, -872.9], [-3023.77, -873.03], [-3023.62, -867.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3011.85, -849.85], [-3007.47, -850.05], [-3007.75, -856.03], [-3012.13, -855.83], [-3011.85, -849.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3100.43, -956.03], [-3093.06, -956.35], [-3093.39, -963.73], [-3100.75, -963.41], [-3100.43, -956.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2983.27, -851.16], [-2979.62, -851.31], [-2979.86, -857.13], [-2983.51, -856.98], [-2983.27, -851.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3254.3, -861.09], [-3254.44, -865.77], [-3247.28, -865.97], [-3247.14, -861.3], [-3254.3, -861.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2943.21, -851.67], [-2946.88, -851.52], [-2947.09, -857.18], [-2943.43, -857.32], [-2943.21, -851.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3256.73, -1004.34], [-3254.61, -1011.12], [-3245.45, -1008.27], [-3247.59, -1001.48], [-3256.73, -1004.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3254.82, -869.89], [-3243.6, -870.27], [-3243.99, -882.02], [-3255.22, -881.64], [-3254.82, -869.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2935.09, -913.68], [-2926.2, -908.79], [-2921.08, -918.02], [-2929.98, -922.91], [-2935.09, -913.68]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3256.21, -954.06], [-3256.08, -949.47], [-3249.8, -949.65], [-3249.93, -954.24], [-3256.21, -954.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3090.6, -923.58], [-3091.07, -934.84], [-3088.43, -934.96], [-3088.85, -944.96], [-3078.48, -945.39], [-3077.59, -924.12], [-3090.6, -923.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2995.66, -881.79], [-2986.52, -882.11], [-2987.05, -897.19], [-2989.21, -897.12], [-2989.27, -898.84], [-2996.25, -898.59], [-2995.66, -881.79]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3160.91, -834.91], [-3161.09, -844.63], [-3151.86, -844.81], [-3151.61, -831.52], [-3158.65, -831.4], [-3158.72, -834.95], [-3160.91, -834.91]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3240.76, -998.81], [-3237.77, -1007.52], [-3229.32, -1004.64], [-3233.07, -993.7], [-3240.86, -996.36], [-3240.09, -998.58], [-3240.76, -998.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3226.08, -827.94], [-3226.28, -835.98], [-3211.48, -836.35], [-3211.26, -827.7], [-3217.54, -827.54], [-3217.56, -828.15], [-3226.08, -827.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3195.62, -982.57], [-3192.58, -988.55], [-3189.63, -987.06], [-3187.43, -991.39], [-3181.4, -988.34], [-3186.63, -978.04], [-3195.62, -982.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3209.61, -921.8], [-3210.09, -934.74], [-3201.41, -935.05], [-3200.83, -919.46], [-3207.22, -919.22], [-3207.32, -921.89], [-3209.61, -921.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3122.59, -926.69], [-3114.52, -926.31], [-3113.78, -941.71], [-3118.44, -941.93], [-3118.6, -938.63], [-3122.01, -938.79], [-3122.59, -926.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3192.43, -830.43], [-3192.8, -838.94], [-3182.05, -839.41], [-3181.62, -829.51], [-3187.89, -829.23], [-3187.95, -830.63], [-3192.43, -830.43]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-3034.53, -928.91], [-3024.75, -929.3], [-3025.08, -937.45], [-3028.18, -937.33], [-3028.41, -943.05], [-3035.09, -942.78], [-3034.53, -928.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2980.42, -839.92], [-2980.81, -848.09], [-2972.63, -848.49], [-2972.1, -837.67], [-2976.47, -837.45], [-2976.59, -840.1], [-2980.42, -839.92]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2959.27, -880.48], [-2959.79, -892.65], [-2951.12, -893.02], [-2950.67, -882.63], [-2953.72, -882.5], [-2953.64, -880.72], [-2959.27, -880.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3004.18, -838.71], [-3004.55, -847.1], [-3001.71, -847.22], [-3001.89, -851.2], [-2996.97, -851.42], [-2996.43, -839.05], [-3004.18, -838.71]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3133.91, -881.57], [-3134.16, -890.39], [-3125.31, -890.64], [-3125.29, -889.72], [-3122.01, -889.82], [-3121.78, -881.92], [-3133.91, -881.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3224.88, -919.9], [-3225.09, -929.55], [-3220.07, -929.66], [-3220.17, -934.23], [-3214.99, -934.35], [-3214.63, -918.72], [-3222.14, -918.55], [-3222.17, -919.96], [-3224.88, -919.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2992.4, -839.24], [-2984.08, -839.58], [-2984.43, -848.18], [-2985.51, -848.14], [-2985.68, -852.36], [-2990.7, -852.16], [-2990.53, -847.94], [-2992.75, -847.85], [-2992.4, -839.24]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-3225.18, -993.8], [-3223.83, -993.28], [-3224.98, -990.33], [-3218.71, -987.91], [-3217.55, -990.87], [-3216.43, -990.44], [-3212.06, -1001.72], [-3220.8, -1005.1], [-3225.18, -993.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3110.36, -926.99], [-3110.78, -940.16], [-3109.69, -940.2], [-3109.73, -941.27], [-3098.28, -941.64], [-3098.18, -938.67], [-3097.52, -938.69], [-3097.14, -927.43], [-3110.36, -926.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2928.83, -859.0], [-2920.69, -859.23], [-2920.94, -867.66], [-2921.7, -867.64], [-2921.77, -869.93], [-2925.7, -869.81], [-2925.63, -867.53], [-2929.07, -867.43], [-2928.83, -859.0]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-3052.09, -884.84], [-3052.6, -894.79], [-3048.66, -894.99], [-3048.8, -897.65], [-3042.97, -897.96], [-3042.23, -883.53], [-3047.58, -883.26], [-3047.68, -885.07], [-3052.09, -884.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3008.05, -886.2], [-3008.53, -898.53], [-3000.3, -898.85], [-2999.8, -886.53], [-3000.62, -886.49], [-3000.5, -883.37], [-3006.66, -883.13], [-3006.79, -886.25], [-3008.05, -886.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3129.22, -832.33], [-3121.47, -832.61], [-3121.63, -837.06], [-3119.86, -837.12], [-3120.11, -843.97], [-3123.36, -843.85], [-3123.41, -845.16], [-3129.67, -844.94], [-3129.22, -832.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3091.57, -840.42], [-3080.72, -840.86], [-3080.86, -844.36], [-3079.43, -844.42], [-3079.76, -852.81], [-3081.19, -852.76], [-3081.35, -856.69], [-3092.2, -856.25], [-3091.57, -840.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3036.18, -883.74], [-3026.37, -884.11], [-3026.82, -896.14], [-3027.71, -896.11], [-3027.81, -898.63], [-3036.16, -898.32], [-3036.06, -895.8], [-3036.63, -895.78], [-3036.18, -883.74]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3196.98, -922.64], [-3189.07, -922.89], [-3189.23, -927.59], [-3186.76, -927.67], [-3186.88, -931.75], [-3188.08, -931.71], [-3188.33, -939.42], [-3197.5, -939.12], [-3196.98, -922.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2944.15, -840.86], [-2944.46, -848.67], [-2933.54, -849.08], [-2933.24, -841.28], [-2936.79, -841.14], [-2936.71, -839.24], [-2940.7, -839.09], [-2940.77, -840.99], [-2944.15, -840.86]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-3139.6, -941.41], [-3138.42, -947.61], [-3135.03, -946.97], [-3135.53, -944.32], [-3132.35, -943.72], [-3133.34, -938.57], [-3137.24, -939.32], [-3136.93, -940.9], [-3139.6, -941.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2944.35, -877.77], [-2942.72, -880.02], [-2945.2, -881.81], [-2942.07, -886.13], [-2928.55, -876.38], [-2931.67, -872.08], [-2934.38, -874.03], [-2936.02, -871.77], [-2944.35, -877.77]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2968.27, -840.41], [-2968.73, -848.97], [-2960.28, -849.42], [-2959.82, -840.87], [-2960.55, -840.82], [-2960.43, -838.49], [-2964.19, -838.28], [-2964.32, -840.63], [-2968.27, -840.41]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2983.87, -885.83], [-2975.64, -886.16], [-2975.77, -889.39], [-2973.78, -889.47], [-2973.94, -893.33], [-2975.92, -893.24], [-2976.03, -895.93], [-2984.26, -895.59], [-2983.87, -885.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3048.29, -926.51], [-3039.1, -926.84], [-3039.54, -939.19], [-3041.04, -940.87], [-3044.15, -940.76], [-3045.51, -938.98], [-3047.38, -938.91], [-3047.28, -935.89], [-3048.62, -935.84], [-3048.29, -926.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2971.35, -884.67], [-2971.83, -895.14], [-2970.41, -896.16], [-2967.24, -896.3], [-2966.16, -895.39], [-2963.23, -895.53], [-2962.7, -883.89], [-2967.61, -883.67], [-2967.67, -884.84], [-2971.35, -884.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2862.01, -945.32], [-2862.24, -955.04], [-2856.89, -955.16], [-2856.97, -958.71], [-2852.41, -958.81], [-2852.46, -960.9], [-2841.36, -961.15], [-2841.24, -955.89], [-2834.81, -956.04], [-2834.58, -945.94], [-2862.01, -945.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2893.42, -1003.17], [-2884.49, -1003.47], [-2884.84, -1013.6], [-2893.77, -1013.28], [-2893.73, -1012.31], [-2894.45, -1012.29], [-2894.38, -1010.11], [-2895.7, -1010.06], [-2895.5, -1004.07], [-2893.45, -1004.14], [-2893.42, -1003.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2830.72, -935.31], [-2827.27, -942.69], [-2817.28, -938.05], [-2817.66, -937.23], [-2815.44, -936.19], [-2818.36, -929.93], [-2821.53, -931.39], [-2822.03, -930.32], [-2829.78, -933.92], [-2829.41, -934.71], [-2830.72, -935.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2891.07, -948.75], [-2887.09, -948.87], [-2887.24, -954.2], [-2891.22, -954.08], [-2891.07, -948.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2871.82, -1023.25], [-2864.39, -1023.42], [-2864.63, -1034.66], [-2872.06, -1034.5], [-2871.82, -1023.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2873.07, -961.66], [-2866.36, -961.76], [-2866.51, -972.74], [-2873.22, -972.65], [-2873.07, -961.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2893.59, -1016.28], [-2881.87, -1016.65], [-2882.06, -1022.76], [-2883.48, -1022.72], [-2883.59, -1025.94], [-2893.89, -1025.61], [-2893.59, -1016.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2896.68, -1029.16], [-2896.99, -1039.77], [-2878.21, -1040.31], [-2878.01, -1033.61], [-2879.54, -1033.57], [-2879.43, -1029.66], [-2896.68, -1029.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2886.2, -960.14], [-2877.78, -960.37], [-2878.03, -969.67], [-2880.89, -969.58], [-2880.94, -971.89], [-2885.74, -971.77], [-2885.68, -969.47], [-2886.45, -969.46], [-2886.2, -960.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2842.72, -988.86], [-2842.74, -989.83], [-2844.92, -989.78], [-2845.01, -993.88], [-2846.03, -993.85], [-2846.18, -1000.49], [-2830.43, -1000.86], [-2830.17, -989.15], [-2842.72, -988.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2898.21, -955.17], [-2891.09, -955.33], [-2891.2, -960.77], [-2890.05, -960.81], [-2890.24, -969.21], [-2893.74, -969.14], [-2893.81, -971.99], [-2898.58, -971.89], [-2898.21, -955.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2811.86, -1060.59], [-2804.57, -1054.65], [-2797.81, -1062.87], [-2798.41, -1063.37], [-2795.94, -1066.37], [-2796.66, -1066.96], [-2795.15, -1068.79], [-2799.93, -1072.68], [-2803.89, -1067.86], [-2805.08, -1068.83], [-2811.86, -1060.59]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2729.68, -1010.15], [-2739.9, -998.35], [-2733.19, -992.58], [-2722.97, -1004.37], [-2729.68, -1010.15]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2794.22, -1068.78], [-2789.72, -1065.13], [-2785.78, -1069.96], [-2790.29, -1073.61], [-2794.22, -1068.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2727.09, -1029.08], [-2732.93, -1022.48], [-2721.18, -1012.14], [-2715.34, -1018.73], [-2727.09, -1029.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2747.16, -999.01], [-2752.12, -1003.28], [-2740.34, -1016.86], [-2735.38, -1012.6], [-2745.8, -1000.57], [-2747.16, -999.01]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2791.89, -1037.4], [-2803.48, -1047.22], [-2788.82, -1064.41], [-2785.57, -1061.66], [-2780.14, -1068.02], [-2771.81, -1060.96], [-2791.89, -1037.4]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2745.8, -1000.57], [-2735.38, -1012.6], [-2733.39, -1014.9], [-2728.91, -1011.04], [-2729.68, -1010.15], [-2739.9, -998.35], [-2741.32, -996.72], [-2745.8, -1000.57]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2568.48, -979.08], [-2576.15, -985.74], [-2573.92, -988.3], [-2574.87, -989.12], [-2569.11, -995.71], [-2560.48, -988.22], [-2562.68, -985.72], [-2560.77, -984.06], [-2564.55, -979.73], [-2566.47, -981.38], [-2568.48, -979.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2509.83, -928.23], [-2511.81, -929.92], [-2512.52, -929.09], [-2516.49, -932.48], [-2515.78, -933.3], [-2517.82, -935.04], [-2507.2, -947.42], [-2506.1, -946.47], [-2504.65, -948.16], [-2499.02, -943.38], [-2500.47, -941.68], [-2499.2, -940.6], [-2509.83, -928.23]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2525.11, -943.56], [-2519.46, -950.22], [-2513.59, -945.28], [-2519.24, -938.62], [-2525.11, -943.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2572.34, -908.34], [-2577.51, -913.0], [-2572.36, -918.68], [-2567.2, -914.04], [-2572.34, -908.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2561.74, -920.2], [-2567.38, -925.12], [-2559.56, -934.0], [-2553.93, -929.08], [-2561.74, -920.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2536.22, -964.01], [-2530.34, -970.66], [-2521.92, -963.28], [-2527.82, -956.62], [-2536.22, -964.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2601.56, -959.5], [-2599.2, -962.2], [-2600.12, -963.0], [-2597.68, -965.78], [-2596.78, -965.01], [-2594.95, -967.09], [-2582.85, -956.61], [-2589.47, -949.02], [-2601.56, -959.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2553.62, -914.99], [-2560.46, -920.98], [-2554.12, -928.16], [-2547.28, -922.17], [-2553.62, -914.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2534.15, -946.3], [-2527.91, -953.63], [-2537.4, -961.66], [-2543.65, -954.33], [-2534.15, -946.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2605.54, -948.38], [-2599.66, -955.09], [-2592.75, -949.07], [-2598.63, -942.37], [-2605.54, -948.38]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2571.74, -1007.02], [-2566.56, -1012.8], [-2559.83, -1006.83], [-2565.01, -1001.03], [-2571.74, -1007.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2511.0, -970.3], [-2514.9, -965.76], [-2510.01, -961.59], [-2506.12, -966.12], [-2511.0, -970.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2527.8, -970.56], [-2521.16, -964.62], [-2515.18, -971.25], [-2518.06, -973.84], [-2516.36, -975.72], [-2520.11, -979.08], [-2527.8, -970.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2552.34, -912.79], [-2546.17, -920.11], [-2545.27, -919.36], [-2543.74, -921.18], [-2538.85, -917.09], [-2540.4, -915.27], [-2539.27, -914.32], [-2545.45, -907.01], [-2552.34, -912.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2394.94, -960.61], [-2401.23, -965.87], [-2395.29, -972.9], [-2394.58, -972.3], [-2393.65, -973.41], [-2391.59, -971.68], [-2390.62, -972.83], [-2387.59, -970.3], [-2389.24, -968.35], [-2388.75, -967.94], [-2394.94, -960.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2471.17, -968.97], [-2464.41, -963.37], [-2458.44, -970.51], [-2460.0, -971.8], [-2459.32, -972.62], [-2460.6, -973.68], [-2459.58, -974.91], [-2462.91, -977.67], [-2464.62, -975.63], [-2465.21, -976.11], [-2471.17, -968.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2462.41, -960.58], [-2459.55, -958.12], [-2460.35, -957.19], [-2456.9, -954.21], [-2449.67, -962.53], [-2452.28, -964.78], [-2450.37, -966.97], [-2453.4, -969.59], [-2455.3, -967.4], [-2455.98, -967.98], [-2462.41, -960.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2411.62, -974.31], [-2406.08, -980.8], [-2399.75, -975.45], [-2401.02, -973.97], [-2399.32, -972.52], [-2403.09, -968.09], [-2404.8, -969.54], [-2405.3, -968.96], [-2406.5, -969.97], [-2407.99, -968.21], [-2412.45, -972.0], [-2410.96, -973.75], [-2411.62, -974.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2377.15, -942.93], [-2383.72, -948.95], [-2374.34, -959.12], [-2367.77, -953.11], [-2377.15, -942.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2433.16, -941.02], [-2427.99, -946.74], [-2421.8, -941.19], [-2426.97, -935.48], [-2433.16, -941.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2415.45, -1007.39], [-2411.04, -1003.6], [-2407.6, -1007.58], [-2412.01, -1011.37], [-2415.45, -1007.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2459.53, -887.58], [-2452.85, -882.08], [-2445.97, -890.38], [-2452.66, -895.88], [-2459.53, -887.58]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2386.05, -951.16], [-2392.83, -957.11], [-2382.97, -968.25], [-2376.19, -962.3], [-2386.05, -951.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2356.83, -924.3], [-2350.58, -918.98], [-2341.82, -929.2], [-2348.07, -934.52], [-2356.83, -924.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2468.66, -946.13], [-2464.31, -942.52], [-2460.71, -946.81], [-2465.06, -950.42], [-2468.66, -946.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2334.4, -934.85], [-2338.18, -938.12], [-2334.42, -942.43], [-2330.65, -939.15], [-2334.4, -934.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2413.68, -923.57], [-2407.79, -930.41], [-2401.6, -925.13], [-2407.49, -918.28], [-2413.68, -923.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2418.31, -1019.07], [-2422.35, -1014.59], [-2415.48, -1008.42], [-2411.44, -1012.89], [-2418.31, -1019.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2412.29, -898.14], [-2407.47, -903.83], [-2418.29, -912.94], [-2423.12, -907.26], [-2412.29, -898.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2463.96, -942.31], [-2459.26, -938.32], [-2455.53, -942.69], [-2460.23, -946.67], [-2463.96, -942.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2450.25, -881.17], [-2440.99, -891.97], [-2437.07, -888.64], [-2439.38, -885.95], [-2436.66, -883.63], [-2443.61, -875.52], [-2450.25, -881.17]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2394.4, -908.37], [-2389.62, -913.96], [-2386.16, -911.0], [-2383.92, -913.61], [-2381.41, -911.48], [-2388.42, -903.3], [-2394.4, -908.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2438.88, -999.58], [-2433.39, -1005.68], [-2426.89, -999.87], [-2429.31, -997.19], [-2427.67, -995.72], [-2430.75, -992.3], [-2438.88, -999.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2447.9, -944.22], [-2454.99, -950.47], [-2445.89, -960.74], [-2445.48, -960.39], [-2444.03, -962.02], [-2437.74, -956.5], [-2439.2, -954.86], [-2438.79, -954.5], [-2447.9, -944.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2419.54, -981.64], [-2413.99, -987.89], [-2407.13, -981.85], [-2412.61, -975.67], [-2412.88, -975.91], [-2413.82, -974.85], [-2416.33, -977.05], [-2415.46, -978.05], [-2419.54, -981.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2376.21, -940.83], [-2368.95, -949.04], [-2362.81, -943.66], [-2363.46, -942.93], [-2361.49, -941.21], [-2365.81, -936.31], [-2367.77, -938.04], [-2370.08, -935.43], [-2376.21, -940.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2407.73, -912.0], [-2403.03, -908.05], [-2399.99, -911.63], [-2398.12, -910.07], [-2391.69, -917.66], [-2394.07, -919.66], [-2395.04, -918.52], [-2399.23, -922.04], [-2407.73, -912.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2368.95, -967.69], [-2365.27, -971.87], [-2360.98, -968.12], [-2360.0, -969.24], [-2355.99, -965.73], [-2359.44, -961.83], [-2363.43, -965.32], [-2364.66, -963.93], [-2368.95, -967.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2479.93, -978.94], [-2474.26, -985.5], [-2473.75, -985.07], [-2472.82, -986.15], [-2470.91, -984.52], [-2471.85, -983.44], [-2467.26, -979.5], [-2472.93, -972.92], [-2476.31, -975.83], [-2477.6, -974.32], [-2480.47, -976.79], [-2479.17, -978.28], [-2479.93, -978.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2456.06, -1026.85], [-2451.84, -1023.18], [-2447.55, -1028.07], [-2451.76, -1031.74], [-2456.06, -1026.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2435.21, -1032.93], [-2438.76, -1028.79], [-2433.78, -1024.53], [-2430.22, -1028.66], [-2435.21, -1032.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2458.55, -1052.3], [-2464.2, -1045.83], [-2453.32, -1036.4], [-2447.68, -1042.86], [-2458.55, -1052.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2504.42, -1000.8], [-2509.91, -994.4], [-2501.21, -986.99], [-2495.72, -993.39], [-2504.42, -1000.8]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2498.67, -969.46], [-2493.32, -964.85], [-2488.88, -969.95], [-2494.23, -974.57], [-2498.67, -969.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2481.29, -980.82], [-2476.12, -986.32], [-2482.82, -992.57], [-2487.99, -987.07], [-2481.29, -980.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2492.97, -964.68], [-2487.87, -960.21], [-2483.48, -965.19], [-2488.57, -969.65], [-2492.97, -964.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2501.48, -1002.11], [-2498.57, -1005.52], [-2500.75, -1007.37], [-2498.31, -1010.23], [-2487.52, -1001.1], [-2492.88, -994.84], [-2501.48, -1002.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2456.69, -1012.74], [-2447.75, -1023.15], [-2440.73, -1017.15], [-2449.67, -1006.75], [-2450.32, -1007.31], [-2451.77, -1005.62], [-2457.82, -1010.77], [-2456.37, -1012.46], [-2456.69, -1012.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2476.32, -1034.63], [-2470.81, -1041.1], [-2464.65, -1035.89], [-2470.16, -1029.42], [-2472.31, -1031.23], [-2474.45, -1028.72], [-2477.82, -1031.57], [-2475.68, -1034.09], [-2476.32, -1034.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2517.77, -983.56], [-2511.16, -991.19], [-2501.92, -983.24], [-2504.41, -980.36], [-2503.25, -979.36], [-2505.5, -976.77], [-2506.66, -977.77], [-2508.53, -975.61], [-2517.77, -983.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2467.52, -1022.25], [-2461.97, -1028.55], [-2458.38, -1025.39], [-2457.13, -1026.81], [-2454.93, -1024.88], [-2456.18, -1023.47], [-2455.29, -1022.69], [-2460.85, -1016.4], [-2467.52, -1022.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2302.87, -926.53], [-2296.76, -926.69], [-2296.93, -933.11], [-2303.04, -932.96], [-2302.87, -926.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2282.31, -952.86], [-2288.1, -958.1], [-2296.94, -948.36], [-2291.15, -943.14], [-2282.31, -952.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2256.05, -936.84], [-2244.92, -937.16], [-2245.16, -945.82], [-2256.3, -945.5], [-2256.05, -936.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2295.87, -932.28], [-2296.42, -939.64], [-2291.98, -939.89], [-2281.87, -945.55], [-2281.62, -932.98], [-2295.87, -932.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2257.88, -971.55], [-2258.08, -980.44], [-2245.08, -980.73], [-2244.97, -975.81], [-2242.83, -975.85], [-2242.74, -971.88], [-2257.88, -971.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2313.26, -965.1], [-2306.83, -972.71], [-2302.79, -969.31], [-2304.68, -967.07], [-2302.1, -964.91], [-2306.63, -959.54], [-2313.26, -965.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2305.04, -956.18], [-2297.37, -949.73], [-2290.64, -957.68], [-2293.02, -959.68], [-2292.39, -960.44], [-2295.07, -962.7], [-2295.71, -961.94], [-2298.32, -964.13], [-2305.04, -956.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2253.58, -947.81], [-2253.75, -953.63], [-2245.72, -953.86], [-2245.7, -953.16], [-2240.13, -953.32], [-2240.0, -948.85], [-2245.57, -948.69], [-2245.55, -948.04], [-2253.58, -947.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2254.34, -958.89], [-2243.19, -959.13], [-2243.36, -966.97], [-2254.51, -966.73], [-2254.49, -966.12], [-2256.93, -966.07], [-2256.8, -959.61], [-2254.35, -959.66], [-2254.34, -958.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1947.68, -919.6], [-1947.83, -928.53], [-1941.71, -928.63], [-1941.7, -928.06], [-1939.57, -928.1], [-1939.43, -919.73], [-1941.73, -919.7], [-1941.68, -916.86], [-1946.1, -916.79], [-1946.15, -919.62], [-1947.68, -919.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1913.07, -918.36], [-1913.37, -930.48], [-1905.24, -930.68], [-1904.94, -918.56], [-1913.07, -918.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2113.67, -915.98], [-2113.8, -924.72], [-2102.57, -924.89], [-2102.44, -916.15], [-2113.67, -915.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2091.45, -912.32], [-2083.04, -912.57], [-2083.47, -926.23], [-2091.88, -925.96], [-2091.45, -912.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2114.34, -912.03], [-2114.31, -908.68], [-2114.93, -908.67], [-2114.9, -902.61], [-2104.74, -902.67], [-2104.79, -912.09], [-2114.34, -912.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2069.98, -915.72], [-2070.27, -925.95], [-2063.94, -926.13], [-2063.88, -924.07], [-2062.41, -924.11], [-2062.17, -915.95], [-2069.98, -915.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1959.28, -916.06], [-1959.67, -929.82], [-1950.83, -930.08], [-1950.43, -916.32], [-1953.22, -916.24], [-1953.18, -914.87], [-1956.78, -914.77], [-1956.82, -916.13], [-1959.28, -916.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2080.95, -913.01], [-2072.31, -913.33], [-2072.74, -924.52], [-2073.46, -924.5], [-2073.52, -926.18], [-2080.45, -925.93], [-2080.39, -924.24], [-2081.37, -924.2], [-2080.95, -913.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1923.83, -918.08], [-1915.96, -918.33], [-1916.3, -928.88], [-1918.0, -928.83], [-1918.06, -930.48], [-1922.53, -930.34], [-1922.48, -928.68], [-1924.16, -928.63], [-1923.83, -918.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2033.9, -872.83], [-2039.6, -872.65], [-2039.89, -881.3], [-2034.19, -881.48], [-2033.9, -872.83]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2064.56, -872.03], [-2064.98, -882.74], [-2045.21, -883.49], [-2045.08, -880.02], [-2040.39, -880.19], [-2040.12, -872.95], [-2064.56, -872.03]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1857.67, -1151.69], [-1857.86, -1158.2], [-1860.81, -1158.11], [-1861.08, -1167.78], [-1843.51, -1168.29], [-1843.68, -1174.31], [-1829.5, -1174.7], [-1828.87, -1152.07], [-1841.37, -1151.72], [-1841.39, -1152.14], [-1857.67, -1151.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1935.7, -1025.1], [-1944.49, -1024.83], [-1944.57, -1027.69], [-1946.65, -1027.62], [-1946.79, -1032.3], [-1944.72, -1032.36], [-1944.81, -1035.52], [-1943.72, -1035.55], [-1943.91, -1042.01], [-1936.21, -1042.24], [-1935.7, -1025.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1766.39, -1053.49], [-1766.14, -1045.72], [-1753.59, -1046.11], [-1753.2, -1033.71], [-1781.82, -1032.8], [-1782.21, -1045.19], [-1769.31, -1045.61], [-1769.55, -1053.41], [-1781.53, -1053.03], [-1781.94, -1065.73], [-1754.15, -1066.6], [-1753.74, -1053.9], [-1766.39, -1053.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1949.39, -1050.83], [-1947.91, -1050.88], [-1947.64, -1044.34], [-1940.92, -1044.61], [-1941.14, -1050.03], [-1943.99, -1049.91], [-1944.04, -1051.03], [-1940.6, -1051.18], [-1941.21, -1065.93], [-1945.31, -1065.76], [-1945.23, -1064.0], [-1949.91, -1063.81], [-1949.39, -1050.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1898.49, -1055.64], [-1888.02, -1055.95], [-1888.15, -1060.27], [-1886.56, -1060.32], [-1886.65, -1063.36], [-1888.23, -1063.32], [-1888.36, -1067.59], [-1892.7, -1067.46], [-1892.71, -1068.01], [-1898.85, -1067.84], [-1898.75, -1064.34], [-1900.0, -1064.3], [-1899.82, -1057.88], [-1898.56, -1057.92], [-1898.49, -1055.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1857.3, -1200.26], [-1857.32, -1200.95], [-1859.02, -1200.88], [-1859.22, -1206.32], [-1857.53, -1206.39], [-1857.56, -1207.31], [-1853.3, -1207.46], [-1853.33, -1208.39], [-1846.29, -1208.65], [-1846.26, -1207.74], [-1844.72, -1207.8], [-1844.51, -1202.49], [-1845.44, -1202.47], [-1845.38, -1201.01], [-1848.14, -1200.9], [-1848.13, -1200.61], [-1857.3, -1200.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1939.08, -1087.72], [-1933.07, -1087.85], [-1933.06, -1087.33], [-1926.34, -1087.46], [-1926.43, -1091.39], [-1925.34, -1091.41], [-1925.36, -1092.52], [-1921.95, -1092.59], [-1922.04, -1096.75], [-1924.2, -1096.7], [-1924.23, -1098.26], [-1925.48, -1098.24], [-1925.53, -1100.3], [-1922.27, -1100.37], [-1922.32, -1103.2], [-1921.4, -1103.21], [-1921.5, -1107.57], [-1923.89, -1107.52], [-1923.94, -1109.73], [-1922.66, -1109.76], [-1922.72, -1112.8], [-1924.0, -1112.77], [-1924.04, -1114.7], [-1921.78, -1114.75], [-1921.88, -1119.08], [-1924.87, -1119.02], [-1924.9, -1119.82], [-1931.61, -1119.67], [-1931.59, -1118.89], [-1938.54, -1118.75], [-1938.22, -1104.02], [-1939.43, -1104.0], [-1939.08, -1087.72]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1819.98, -1031.53], [-1809.7, -1031.94], [-1811.07, -1065.45], [-1821.34, -1065.03], [-1819.98, -1031.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1800.67, -1032.21], [-1790.07, -1032.57], [-1791.19, -1066.16], [-1801.79, -1065.82], [-1800.67, -1032.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1930.2, -1040.73], [-1930.51, -1051.67], [-1914.85, -1052.12], [-1914.53, -1041.18], [-1930.2, -1040.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1834.33, -1201.08], [-1828.57, -1201.25], [-1828.73, -1207.08], [-1834.51, -1206.9], [-1834.33, -1201.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1913.53, -1023.19], [-1906.75, -1023.38], [-1906.93, -1029.52], [-1913.7, -1029.33], [-1913.53, -1023.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1899.39, -1094.63], [-1899.69, -1104.36], [-1886.77, -1104.75], [-1886.48, -1095.03], [-1899.39, -1094.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1916.68, -1055.11], [-1916.84, -1062.12], [-1907.61, -1062.33], [-1907.45, -1055.32], [-1916.68, -1055.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1857.13, -1180.47], [-1849.43, -1180.72], [-1849.5, -1182.95], [-1844.14, -1183.13], [-1844.45, -1192.59], [-1857.51, -1192.17], [-1857.13, -1180.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1904.03, -1109.14], [-1904.46, -1119.65], [-1888.59, -1120.29], [-1888.16, -1109.8], [-1898.37, -1109.37], [-1898.31, -1107.8], [-1903.49, -1107.58], [-1903.56, -1109.17], [-1904.03, -1109.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1979.43, -1041.38], [-1979.83, -1059.23], [-1967.24, -1059.51], [-1966.84, -1041.66], [-1967.96, -1041.63], [-1967.75, -1032.08], [-1976.16, -1031.9], [-1976.37, -1041.45], [-1979.43, -1041.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1895.76, -1038.51], [-1885.59, -1038.93], [-1885.92, -1047.14], [-1887.32, -1047.09], [-1887.4, -1049.0], [-1888.85, -1048.95], [-1889.01, -1053.06], [-1896.33, -1052.77], [-1895.76, -1038.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1931.33, -1024.86], [-1922.61, -1025.14], [-1922.64, -1025.97], [-1920.26, -1026.05], [-1920.42, -1031.0], [-1922.79, -1030.93], [-1923.06, -1039.18], [-1931.79, -1038.89], [-1931.33, -1024.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1899.49, -1022.97], [-1899.55, -1025.82], [-1902.13, -1025.76], [-1902.22, -1029.18], [-1899.64, -1029.24], [-1899.69, -1031.64], [-1885.54, -1031.97], [-1885.34, -1023.3], [-1899.49, -1022.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1897.66, -1079.04], [-1885.01, -1079.24], [-1885.19, -1091.49], [-1888.58, -1091.44], [-1888.59, -1092.88], [-1894.27, -1092.8], [-1894.25, -1091.35], [-1897.85, -1091.29], [-1897.66, -1079.04]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2992.8, -1591.81], [-2997.7, -1595.93], [-2993.54, -1600.85], [-2989.23, -1597.23], [-2980.58, -1607.46], [-2972.83, -1600.96], [-2982.69, -1589.29], [-2989.85, -1595.31], [-2992.8, -1591.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3006.21, -1607.0], [-2997.82, -1600.06], [-2989.8, -1609.67], [-2992.59, -1611.98], [-2990.17, -1614.88], [-2995.78, -1619.52], [-3006.21, -1607.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2981.53, -1617.32], [-2987.72, -1622.8], [-2982.95, -1628.15], [-2976.76, -1622.68], [-2981.53, -1617.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3009.92, -1609.09], [-3022.03, -1619.41], [-3015.89, -1626.56], [-3003.79, -1616.24], [-3009.92, -1609.09]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-3037.84, -1630.67], [-3028.01, -1622.79], [-3022.86, -1629.17], [-3025.28, -1631.1], [-3023.31, -1633.54], [-3027.53, -1636.93], [-3029.25, -1634.81], [-3032.44, -1637.36], [-3037.84, -1630.67]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-3008.38, -1562.99], [-3010.18, -1564.44], [-3008.56, -1566.43], [-3012.49, -1569.61], [-3014.38, -1567.26], [-3016.2, -1568.72], [-3024.5, -1558.51], [-3016.96, -1552.43], [-3008.38, -1562.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3030.33, -1581.14], [-3019.19, -1570.92], [-3025.04, -1564.59], [-3036.18, -1574.8], [-3030.33, -1581.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3041.73, -1589.66], [-3035.59, -1584.6], [-3040.54, -1578.63], [-3042.54, -1580.28], [-3043.67, -1578.91], [-3048.08, -1582.54], [-3046.62, -1584.3], [-3048.4, -1585.76], [-3041.73, -1589.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3058.04, -1587.9], [-3049.06, -1598.17], [-3056.36, -1604.51], [-3065.34, -1594.25], [-3058.04, -1587.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3071.48, -1583.95], [-3079.36, -1590.36], [-3074.93, -1595.77], [-3067.04, -1589.36], [-3071.48, -1583.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3077.39, -1606.29], [-3069.37, -1615.56], [-3060.4, -1607.85], [-3068.43, -1598.58], [-3077.39, -1606.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3083.76, -1606.87], [-3092.53, -1614.36], [-3085.76, -1622.24], [-3076.99, -1614.77], [-3083.76, -1606.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2948.13, -1642.04], [-2942.79, -1636.73], [-2953.15, -1626.37], [-2958.5, -1631.68], [-2948.13, -1642.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2955.71, -1562.01], [-2962.56, -1568.86], [-2951.39, -1579.96], [-2944.54, -1573.11], [-2955.71, -1562.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2921.54, -1598.95], [-2930.12, -1606.82], [-2920.33, -1617.41], [-2911.76, -1609.53], [-2921.54, -1598.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2907.94, -1597.91], [-2902.89, -1603.81], [-2893.11, -1595.51], [-2902.32, -1584.73], [-2907.1, -1588.77], [-2902.93, -1593.66], [-2907.94, -1597.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2927.4, -1589.92], [-2923.17, -1594.83], [-2928.1, -1599.05], [-2932.33, -1594.13], [-2927.4, -1589.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2920.89, -1584.01], [-2926.06, -1588.65], [-2921.4, -1593.78], [-2916.24, -1589.14], [-2920.89, -1584.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2984.36, -1525.79], [-2990.87, -1531.45], [-2982.41, -1541.1], [-2981.07, -1539.92], [-2979.59, -1541.61], [-2975.92, -1538.42], [-2978.09, -1535.95], [-2976.6, -1534.65], [-2984.36, -1525.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[455.59, 1131.18], [444.88, 1121.49], [447.22, 1118.91], [441.39, 1113.64], [438.96, 1116.32], [435.91, 1113.55], [411.03, 1140.88], [414.23, 1143.76], [412.15, 1146.06], [417.8, 1151.17], [419.66, 1149.13], [422.9, 1152.07], [421.86, 1153.21], [424.95, 1156.01], [425.99, 1154.86], [454.09, 1180.27], [465.37, 1167.89], [458.75, 1161.92], [457.17, 1163.65], [449.35, 1156.58], [454.07, 1151.4], [451.14, 1148.75], [450.74, 1149.2], [449.31, 1147.89], [448.79, 1148.45], [447.38, 1147.17], [445.78, 1148.93], [442.3, 1145.77], [455.59, 1131.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[495.97, 1032.98], [508.88, 1044.92], [504.48, 1049.63], [491.58, 1037.69], [495.97, 1032.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[500.63, 1027.8], [513.42, 1039.75], [517.87, 1035.04], [505.07, 1023.07], [500.63, 1027.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[497.84, 1052.22], [494.78, 1049.4], [498.96, 1044.91], [502.02, 1047.75], [497.84, 1052.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[483.04, 1065.56], [492.42, 1055.47], [488.49, 1051.84], [488.27, 1052.08], [486.62, 1050.56], [483.56, 1053.85], [482.59, 1052.97], [480.03, 1055.72], [479.16, 1054.92], [475.62, 1058.72], [481.02, 1063.69], [480.13, 1064.65], [481.93, 1066.31], [482.82, 1065.35], [483.04, 1065.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[491.86, 1073.48], [503.5, 1061.02], [497.46, 1055.41], [485.81, 1067.87], [491.86, 1073.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[496.12, 1081.44], [491.65, 1077.28], [507.41, 1060.43], [515.24, 1067.71], [501.49, 1082.42], [498.12, 1079.29], [496.12, 1081.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[523.14, 1077.89], [515.91, 1071.3], [502.98, 1085.38], [509.79, 1091.6], [511.69, 1089.53], [512.1, 1089.91], [523.14, 1077.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[520.3, 1099.59], [517.48, 1097.0], [517.82, 1096.64], [515.1, 1094.13], [516.91, 1092.19], [516.19, 1091.54], [521.02, 1086.33], [521.26, 1086.56], [524.28, 1083.3], [527.49, 1086.27], [529.64, 1083.96], [532.72, 1086.8], [530.58, 1089.12], [530.82, 1089.34], [521.6, 1099.27], [521.06, 1098.78], [520.3, 1099.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[309.18, 1038.85], [300.86, 1047.78], [300.02, 1048.01], [298.75, 1049.22], [298.79, 1051.16], [299.76, 1052.07], [298.28, 1053.66], [303.29, 1058.31], [305.18, 1056.27], [305.47, 1056.54], [316.04, 1045.19], [309.18, 1038.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[314.79, 1064.53], [313.73, 1063.54], [311.62, 1065.82], [306.27, 1060.87], [307.95, 1059.06], [307.17, 1058.33], [316.42, 1048.41], [323.61, 1055.06], [314.79, 1064.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[327.65, 1104.76], [335.4, 1095.52], [328.22, 1089.53], [323.67, 1094.94], [323.18, 1094.54], [319.97, 1098.37], [327.65, 1104.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[343.31, 1100.22], [350.85, 1092.36], [337.38, 1079.54], [329.84, 1087.42], [343.31, 1100.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[353.8, 1081.17], [351.83, 1083.3], [352.14, 1083.58], [348.86, 1087.11], [345.8, 1084.3], [345.45, 1084.67], [338.83, 1078.58], [339.12, 1078.26], [337.58, 1076.85], [339.41, 1074.87], [340.12, 1075.53], [343.03, 1072.39], [345.96, 1075.09], [346.53, 1074.48], [353.8, 1081.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[328.44, 1048.49], [322.98, 1043.6], [320.05, 1046.85], [325.51, 1051.74], [328.44, 1048.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[334.34, 1039.65], [322.59, 1029.19], [316.42, 1036.08], [328.04, 1046.42], [328.37, 1046.06], [330.54, 1048.0], [335.94, 1041.97], [333.89, 1040.14], [334.34, 1039.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[336.78, 1041.26], [342.03, 1035.38], [337.82, 1031.65], [338.24, 1031.17], [334.26, 1027.64], [333.87, 1028.08], [330.69, 1025.26], [325.4, 1031.18], [336.78, 1041.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[268.39, 1026.0], [261.51, 1019.52], [270.27, 1010.27], [272.05, 1011.95], [272.94, 1011.02], [278.04, 1015.82], [268.39, 1026.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[287.96, 940.55], [279.38, 932.69], [285.81, 925.74], [294.37, 933.6], [287.96, 940.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[298.67, 963.54], [306.63, 954.84], [303.76, 952.24], [305.68, 950.15], [301.47, 946.32], [291.59, 957.12], [298.67, 963.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[284.76, 944.39], [278.45, 951.25], [266.4, 940.24], [269.47, 936.89], [268.73, 936.21], [271.96, 932.7], [277.56, 937.81], [277.82, 937.52], [281.92, 941.26], [281.66, 941.56], [284.76, 944.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2152.58, -1040.29], [-2143.61, -1040.46], [-2143.62, -1041.02], [-2141.23, -1041.06], [-2141.36, -1048.03], [-2143.72, -1047.98], [-2143.74, -1048.74], [-2152.74, -1048.57], [-2152.67, -1044.83], [-2154.54, -1044.79], [-2154.48, -1041.91], [-2152.61, -1041.95], [-2152.58, -1040.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2117.12, -1054.18], [-2117.37, -1061.7], [-2105.85, -1062.09], [-2105.6, -1054.57], [-2117.12, -1054.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2105.09, -1030.16], [-2113.13, -1029.93], [-2113.38, -1038.36], [-2105.33, -1038.6], [-2105.09, -1030.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2079.07, -1047.98], [-2086.12, -1047.78], [-2086.5, -1061.16], [-2079.46, -1061.37], [-2079.07, -1047.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2076.62, -1041.73], [-2073.01, -1041.87], [-2073.19, -1046.63], [-2076.81, -1046.49], [-2076.62, -1041.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2080.34, -1035.14], [-2076.96, -1035.24], [-2077.11, -1040.63], [-2080.5, -1040.53], [-2080.34, -1035.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2086.75, -1031.62], [-2078.9, -1031.82], [-2078.65, -1021.59], [-2086.5, -1021.39], [-2086.75, -1031.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2152.65, -1051.41], [-2152.73, -1060.16], [-2143.38, -1060.25], [-2143.3, -1051.49], [-2152.65, -1051.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2112.14, -1018.71], [-2112.41, -1027.98], [-2096.42, -1028.45], [-2096.14, -1019.17], [-2112.14, -1018.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2074.99, -1023.97], [-2075.24, -1034.29], [-2065.17, -1034.52], [-2065.03, -1028.51], [-2064.34, -1028.52], [-2064.24, -1024.22], [-2074.99, -1023.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2075.12, -1049.85], [-2075.39, -1062.05], [-2068.02, -1062.22], [-2067.75, -1050.02], [-2069.13, -1049.99], [-2069.1, -1048.41], [-2073.62, -1048.31], [-2073.66, -1049.88], [-2075.12, -1049.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2154.99, -1018.08], [-2155.03, -1019.77], [-2156.47, -1019.73], [-2156.6, -1025.02], [-2155.16, -1025.05], [-2155.21, -1027.17], [-2142.21, -1027.49], [-2141.99, -1018.4], [-2154.99, -1018.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2113.65, -1041.92], [-2113.69, -1043.33], [-2115.36, -1043.3], [-2115.52, -1049.98], [-2113.85, -1050.03], [-2113.87, -1050.77], [-2101.3, -1051.08], [-2101.09, -1042.23], [-2113.65, -1041.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2153.67, -1029.13], [-2153.71, -1030.86], [-2156.35, -1030.79], [-2156.46, -1035.05], [-2153.81, -1035.1], [-2153.87, -1037.38], [-2142.34, -1037.65], [-2142.15, -1029.4], [-2153.67, -1029.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[530.05, 1037.63], [532.81, 1034.6], [533.28, 1035.03], [540.22, 1027.47], [539.97, 1027.24], [541.57, 1025.5], [534.3, 1018.88], [523.0, 1031.22], [530.05, 1037.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[534.62, 1053.36], [528.13, 1047.37], [536.51, 1038.33], [544.63, 1045.82], [538.67, 1052.24], [537.05, 1050.74], [534.62, 1053.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[550.04, 1068.56], [541.8, 1061.13], [547.08, 1055.32], [546.25, 1054.57], [547.67, 1053.0], [548.51, 1053.75], [550.56, 1051.5], [558.79, 1058.92], [550.04, 1068.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[569.89, 1065.29], [565.82, 1061.49], [570.85, 1056.14], [570.26, 1055.6], [574.53, 1051.06], [580.61, 1056.73], [576.66, 1060.94], [575.24, 1059.61], [569.89, 1065.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[580.45, 1072.99], [575.68, 1068.66], [576.82, 1067.39], [574.71, 1065.47], [581.44, 1058.1], [588.35, 1064.36], [580.45, 1072.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[565.81, 1065.92], [559.52, 1072.86], [570.44, 1082.69], [576.72, 1075.75], [565.81, 1065.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[563.78, 1090.87], [570.09, 1084.04], [558.48, 1073.38], [552.18, 1080.2], [563.78, 1090.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[554.73, 1099.24], [560.12, 1092.75], [550.7, 1084.99], [545.31, 1091.47], [554.73, 1099.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[534.18, 1094.12], [536.77, 1096.41], [537.08, 1096.06], [540.9, 1099.44], [532.71, 1108.6], [529.47, 1105.72], [528.85, 1106.42], [525.69, 1103.6], [534.18, 1094.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[533.1, 1110.01], [539.23, 1103.44], [546.02, 1109.74], [539.78, 1116.43], [536.1, 1113.02], [536.21, 1112.9], [533.1, 1110.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[576.02, 1155.11], [587.88, 1142.14], [594.51, 1148.18], [583.18, 1160.55], [582.3, 1159.74], [581.76, 1160.32], [576.02, 1155.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[569.1, 1147.94], [574.03, 1152.55], [583.57, 1142.42], [578.64, 1137.82], [569.1, 1147.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[599.88, 1171.47], [608.15, 1162.41], [602.0, 1156.84], [599.43, 1159.66], [599.23, 1159.47], [595.92, 1163.11], [596.11, 1163.28], [593.73, 1165.9], [599.88, 1171.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[601.72, 1156.32], [595.49, 1162.93], [588.11, 1156.02], [594.34, 1149.41], [601.72, 1156.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[609.11, 1176.95], [604.77, 1173.06], [614.84, 1161.91], [615.73, 1162.72], [616.51, 1161.85], [619.95, 1164.94], [609.11, 1176.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[616.12, 1182.57], [611.0, 1177.76], [612.31, 1176.38], [611.86, 1175.96], [621.0, 1166.31], [626.57, 1171.56], [621.76, 1176.62], [622.12, 1176.95], [617.78, 1181.52], [617.43, 1181.19], [616.12, 1182.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[624.37, 1190.3], [636.39, 1176.86], [632.03, 1172.99], [620.01, 1186.44], [624.37, 1190.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[627.43, 1198.15], [622.87, 1194.1], [631.29, 1184.69], [632.31, 1185.6], [633.57, 1184.19], [636.17, 1186.49], [634.9, 1187.9], [635.85, 1188.74], [627.43, 1198.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[561.97, 1129.31], [569.65, 1136.06], [565.44, 1140.82], [557.74, 1134.07], [561.97, 1129.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[567.61, 1122.71], [572.18, 1117.8], [576.07, 1121.39], [576.75, 1120.66], [582.08, 1125.58], [576.83, 1131.22], [567.61, 1122.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[575.57, 1116.52], [582.0, 1109.44], [591.91, 1118.41], [585.48, 1125.47], [575.57, 1116.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[581.88, 1107.4], [585.67, 1103.22], [586.27, 1103.76], [587.5, 1102.4], [597.18, 1111.13], [592.16, 1116.67], [581.88, 1107.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[589.45, 1099.22], [594.53, 1093.67], [602.55, 1100.98], [597.46, 1106.52], [589.45, 1099.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[606.39, 1079.81], [612.46, 1085.52], [605.56, 1092.79], [599.49, 1087.09], [606.39, 1079.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[612.94, 1110.0], [614.56, 1108.16], [615.46, 1108.94], [624.2, 1099.02], [621.55, 1096.71], [622.41, 1095.73], [620.08, 1093.68], [619.22, 1094.66], [618.17, 1093.75], [607.81, 1105.52], [612.94, 1110.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[614.99, 1112.77], [620.91, 1106.33], [621.37, 1106.75], [624.88, 1102.93], [630.51, 1108.07], [627.76, 1111.06], [628.25, 1111.51], [624.26, 1115.86], [623.77, 1115.4], [620.79, 1118.64], [615.88, 1114.15], [616.17, 1113.83], [614.99, 1112.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[623.24, 1130.25], [637.49, 1114.62], [631.66, 1109.35], [617.41, 1124.98], [623.24, 1130.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[641.79, 1140.57], [635.27, 1134.44], [643.07, 1126.22], [643.37, 1126.49], [646.36, 1123.33], [652.57, 1129.19], [641.79, 1140.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[740.47, 1162.41], [732.75, 1155.55], [745.26, 1141.54], [752.99, 1148.39], [740.47, 1162.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[729.15, 1154.35], [739.79, 1142.38], [733.12, 1136.5], [722.48, 1148.48], [729.15, 1154.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[721.43, 1144.06], [729.5, 1134.87], [729.0, 1134.42], [730.59, 1132.61], [727.4, 1129.83], [726.86, 1130.46], [723.98, 1127.95], [722.88, 1129.21], [722.55, 1128.92], [714.53, 1138.07], [716.01, 1139.37], [714.95, 1140.59], [716.82, 1142.22], [717.9, 1141.0], [721.43, 1144.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[713.08, 1137.43], [712.77, 1137.15], [712.24, 1137.74], [710.82, 1136.52], [711.35, 1135.9], [706.13, 1131.36], [712.49, 1124.11], [713.0, 1124.56], [720.33, 1116.22], [726.78, 1121.83], [713.08, 1137.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1778.1, -1686.79], [-1768.55, -1687.09], [-1769.01, -1701.83], [-1778.56, -1701.53], [-1778.1, -1686.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1869.18, -1574.13], [-1863.44, -1574.25], [-1863.64, -1583.71], [-1870.61, -1583.57], [-1870.47, -1576.73], [-1869.24, -1576.75], [-1869.18, -1574.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1854.36, -1564.82], [-1854.55, -1570.0], [-1848.38, -1570.24], [-1848.19, -1565.05], [-1854.36, -1564.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1870.44, -1561.63], [-1860.62, -1561.86], [-1860.84, -1571.49], [-1870.67, -1571.26], [-1870.44, -1561.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1819.61, -1595.55], [-1819.97, -1604.83], [-1830.18, -1604.43], [-1829.82, -1595.15], [-1819.61, -1595.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1832.88, -1578.74], [-1833.22, -1591.85], [-1824.31, -1592.08], [-1823.98, -1578.96], [-1832.88, -1578.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2114.61, -1743.69], [-2104.9, -1743.98], [-2105.14, -1752.2], [-2114.86, -1751.91], [-2114.61, -1743.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2096.2, -1746.42], [-2092.53, -1746.5], [-2092.73, -1755.17], [-2096.39, -1755.1], [-2096.2, -1746.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2089.96, -1744.56], [-2090.23, -1751.54], [-2087.57, -1751.64], [-2087.58, -1751.85], [-2078.13, -1752.21], [-2077.81, -1743.94], [-2087.27, -1743.58], [-2087.31, -1744.65], [-2089.96, -1744.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2114.28, -1755.77], [-2114.48, -1764.15], [-2101.0, -1764.48], [-2100.8, -1756.1], [-2114.28, -1755.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2111.45, -1811.07], [-2111.69, -1819.46], [-2088.48, -1820.12], [-2088.24, -1811.74], [-2111.45, -1811.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2113.3, -1768.07], [-2105.33, -1768.39], [-2105.29, -1767.4], [-2096.5, -1767.74], [-2096.54, -1768.73], [-2088.75, -1769.03], [-2089.13, -1778.56], [-2091.18, -1778.48], [-2091.41, -1784.57], [-2089.36, -1784.65], [-2089.76, -1794.73], [-2091.86, -1794.65], [-2091.98, -1797.47], [-2089.87, -1797.55], [-2090.09, -1803.19], [-2093.12, -1803.07], [-2093.39, -1809.88], [-2110.75, -1809.2], [-2110.48, -1802.4], [-2114.64, -1802.23], [-2114.41, -1796.39], [-2112.57, -1796.47], [-2112.46, -1793.92], [-2114.31, -1793.84], [-2114.09, -1788.12], [-2112.21, -1788.2], [-2112.14, -1786.24], [-2114.01, -1786.17], [-2113.61, -1775.94], [-2111.87, -1776.02], [-2111.79, -1774.16], [-2113.53, -1774.09], [-2113.3, -1768.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2074.16, -1747.47], [-2074.42, -1753.08], [-2075.04, -1753.05], [-2075.48, -1762.63], [-2074.86, -1762.66], [-2075.18, -1769.6], [-2065.04, -1770.07], [-2064.97, -1768.35], [-2060.27, -1768.56], [-2060.35, -1770.28], [-2053.92, -1770.58], [-2053.81, -1768.46], [-2044.76, -1768.87], [-2044.86, -1770.99], [-2034.79, -1771.46], [-2033.77, -1749.31], [-2038.32, -1749.1], [-2038.24, -1747.27], [-2048.06, -1746.82], [-2048.14, -1748.66], [-2051.74, -1748.49], [-2051.66, -1746.69], [-2057.78, -1746.4], [-2057.86, -1748.21], [-2059.83, -1748.12], [-2059.75, -1746.23], [-2069.78, -1745.77], [-2069.87, -1747.67], [-2074.16, -1747.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1739.76, -1474.45], [-1739.9, -1485.77], [-1730.12, -1485.88], [-1729.99, -1474.56], [-1731.89, -1474.54], [-1731.87, -1472.23], [-1736.98, -1472.16], [-1736.99, -1473.37], [-1738.93, -1473.35], [-1738.94, -1474.46], [-1739.76, -1474.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2453.48, 2167.49], [2447.19, 2157.44], [2440.01, 2162.42], [2443.44, 2167.88], [2447.59, 2171.58], [2453.48, 2167.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1955.82, 743.35], [1961.42, 748.41], [1964.12, 745.6], [1966.01, 743.64], [1969.7, 739.8], [1964.1, 734.73], [1955.82, 743.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1951.43, 746.63], [1944.97, 740.98], [1957.16, 727.85], [1961.09, 731.66], [1959.65, 733.17], [1960.37, 733.83], [1961.29, 734.67], [1961.85, 735.17], [1951.43, 746.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1947.98, 753.15], [1952.01, 748.68], [1956.38, 752.74], [1952.36, 757.27], [1947.98, 753.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1940.4, 729.95], [1945.16, 734.29], [1944.52, 734.95], [1946.48, 736.75], [1954.49, 728.36], [1947.49, 722.18], [1940.4, 729.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1932.0, 726.87], [1934.08, 728.61], [1936.2, 726.37], [1939.21, 728.79], [1947.85, 719.24], [1941.4, 713.38], [1939.84, 715.03], [1932.6, 722.71], [1934.33, 724.41], [1932.0, 726.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1925.01, 717.05], [1931.9, 723.28], [1939.84, 715.03], [1939.08, 714.36], [1940.25, 713.2], [1934.36, 707.54], [1932.97, 708.93], [1932.53, 708.57], [1925.01, 717.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1937.65, 745.61], [1949.65, 756.06], [1945.79, 760.0], [1944.5, 761.32], [1943.75, 762.08], [1932.37, 751.5], [1937.65, 745.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1924.28, 762.88], [1929.62, 756.93], [1940.72, 767.02], [1935.32, 772.91], [1924.28, 762.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1915.52, 788.31], [1922.23, 794.47], [1929.25, 786.86], [1927.0, 784.8], [1927.7, 784.05], [1923.24, 779.96], [1915.52, 788.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1907.44, 780.51], [1914.45, 786.73], [1921.5, 778.72], [1919.48, 776.95], [1920.35, 776.04], [1916.45, 772.49], [1915.47, 773.6], [1914.49, 772.74], [1907.44, 780.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1907.23, 777.49], [1912.2, 772.11], [1910.44, 770.27], [1912.22, 768.2], [1910.01, 766.37], [1911.79, 764.18], [1908.1, 761.19], [1899.08, 771.16], [1907.23, 777.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1899.2, 698.16], [1900.36, 696.87], [1900.97, 697.28], [1909.99, 687.62], [1902.54, 681.08], [1893.69, 690.85], [1894.2, 691.27], [1892.87, 692.68], [1899.2, 698.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1885.91, 684.1], [1893.25, 690.49], [1903.57, 679.04], [1896.4, 672.38], [1885.91, 684.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1844.46, 645.59], [1852.04, 637.59], [1849.23, 634.68], [1849.65, 634.12], [1844.49, 629.31], [1836.43, 638.08], [1844.46, 645.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1851.61, 659.16], [1859.19, 651.11], [1850.23, 643.09], [1842.48, 651.36], [1851.61, 659.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1805.64, 673.95], [1811.58, 679.17], [1810.42, 680.52], [1811.95, 682.37], [1807.44, 687.24], [1799.75, 679.99], [1805.64, 673.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1815.85, 667.78], [1820.3, 662.82], [1818.17, 660.91], [1819.18, 659.91], [1810.34, 652.21], [1805.72, 657.41], [1807.91, 659.3], [1807.33, 660.03], [1815.85, 667.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1811.68, 692.3], [1812.0, 691.79], [1811.04, 690.95], [1811.79, 690.17], [1810.61, 689.21], [1813.74, 685.87], [1814.74, 686.65], [1818.58, 683.07], [1825.31, 689.24], [1817.98, 696.95], [1815.69, 694.95], [1815.15, 695.45], [1811.68, 692.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1833.5, 712.63], [1839.89, 718.22], [1852.85, 703.48], [1852.07, 702.47], [1853.17, 701.24], [1849.53, 697.7], [1848.09, 699.26], [1846.7, 698.0], [1833.5, 712.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2157.04, -1384.17], [-2157.36, -1398.11], [-2150.9, -1398.38], [-2150.87, -1395.62], [-2147.06, -1395.64], [-2146.66, -1384.43], [-2157.04, -1384.17]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[2248.22, -3157.45], [2242.18, -3153.36], [2247.27, -3145.92], [2253.31, -3150.02], [2248.22, -3157.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2537.59, -1026.48], [-2536.54, -1025.59], [-2537.14, -1024.9], [-2533.61, -1021.91], [-2533.01, -1022.6], [-2530.46, -1020.44], [-2527.19, -1024.28], [-2525.15, -1022.55], [-2521.3, -1027.05], [-2523.31, -1028.76], [-2522.68, -1029.49], [-2529.0, -1034.84], [-2530.11, -1033.55], [-2530.95, -1034.25], [-2537.59, -1026.48]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2544.51, -1006.44], [-2550.99, -1012.03], [-2548.41, -1015.0], [-2549.77, -1016.16], [-2550.27, -1015.58], [-2551.43, -1016.57], [-2549.99, -1018.22], [-2549.23, -1017.57], [-2545.39, -1022.01], [-2537.16, -1014.94], [-2539.01, -1012.79], [-2537.83, -1011.78], [-2541.31, -1007.76], [-2542.49, -1008.77], [-2544.51, -1006.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2255.31, -984.67], [-2255.33, -985.38], [-2257.51, -985.32], [-2257.7, -991.74], [-2255.51, -991.8], [-2255.53, -992.4], [-2245.97, -992.67], [-2245.71, -983.42], [-2254.12, -983.18], [-2254.16, -984.7], [-2255.31, -984.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2232.63, -1097.93], [-2241.47, -1097.67], [-2241.79, -1108.54], [-2232.94, -1108.8], [-2232.63, -1097.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2263.82, -1093.87], [-2260.0, -1093.96], [-2259.97, -1092.59], [-2255.59, -1092.71], [-2255.71, -1097.42], [-2242.11, -1097.76], [-2242.51, -1113.44], [-2264.3, -1112.88], [-2263.82, -1093.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2260.57, -1083.19], [-2260.64, -1090.96], [-2249.28, -1091.08], [-2249.2, -1083.29], [-2260.57, -1083.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2259.49, -1074.45], [-2259.51, -1075.42], [-2261.46, -1075.4], [-2261.53, -1081.11], [-2259.57, -1081.14], [-2259.59, -1081.96], [-2256.38, -1081.99], [-2256.39, -1082.64], [-2250.03, -1082.71], [-2249.94, -1074.55], [-2259.49, -1074.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2257.14, -1048.42], [-2257.29, -1056.04], [-2253.62, -1056.12], [-2253.64, -1056.99], [-2247.9, -1057.11], [-2247.88, -1056.23], [-2246.58, -1056.26], [-2246.54, -1054.23], [-2245.39, -1054.26], [-2245.32, -1050.29], [-2246.46, -1050.26], [-2246.43, -1048.64], [-2257.14, -1048.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2259.36, -1037.52], [-2259.53, -1044.95], [-2245.89, -1045.26], [-2245.7, -1037.83], [-2259.36, -1037.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2256.59, -1026.99], [-2246.93, -1027.29], [-2247.19, -1035.62], [-2256.85, -1035.31], [-2256.83, -1034.61], [-2258.8, -1034.54], [-2258.58, -1027.52], [-2256.61, -1027.59], [-2256.59, -1026.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2256.22, -1017.55], [-2256.26, -1024.52], [-2245.22, -1024.58], [-2245.18, -1017.61], [-2256.22, -1017.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2297.25, -1037.04], [-2288.14, -1037.37], [-2288.43, -1045.57], [-2291.97, -1045.45], [-2292.02, -1046.95], [-2295.74, -1046.82], [-2295.68, -1045.32], [-2297.54, -1045.26], [-2297.25, -1037.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2296.67, -1026.83], [-2287.55, -1027.12], [-2287.65, -1030.29], [-2285.24, -1030.36], [-2285.38, -1034.45], [-2287.79, -1034.37], [-2287.8, -1034.9], [-2296.93, -1034.6], [-2296.88, -1033.21], [-2297.76, -1033.19], [-2297.56, -1027.17], [-2296.68, -1027.21], [-2296.67, -1026.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2296.09, -1016.25], [-2296.16, -1023.85], [-2287.64, -1023.93], [-2287.57, -1016.33], [-2296.09, -1016.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2295.75, -1002.23], [-2291.21, -1002.37], [-2291.16, -1000.8], [-2287.28, -1000.92], [-2287.33, -1002.49], [-2286.5, -1002.52], [-2286.79, -1011.66], [-2296.04, -1011.36], [-2295.75, -1002.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2315.52, -1019.17], [-2309.8, -1026.09], [-2305.19, -1022.29], [-2306.52, -1020.69], [-2304.41, -1018.95], [-2305.85, -1017.22], [-2305.4, -1016.85], [-2308.35, -1013.28], [-2315.52, -1019.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2311.63, -1031.92], [-2306.12, -1038.93], [-2303.65, -1037.0], [-2303.69, -1031.79], [-2306.65, -1028.03], [-2311.63, -1031.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2318.38, -1021.59], [-2324.89, -1027.36], [-2318.96, -1034.01], [-2312.45, -1028.24], [-2318.38, -1021.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2333.37, -1034.88], [-2327.46, -1041.73], [-2324.4, -1039.1], [-2323.24, -1040.46], [-2319.71, -1037.43], [-2326.78, -1029.23], [-2333.37, -1034.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2319.42, -1044.49], [-2323.19, -1047.7], [-2317.0, -1054.96], [-2315.94, -1054.05], [-2315.38, -1049.22], [-2319.42, -1044.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2325.49, -1057.93], [-2320.79, -1063.42], [-2315.52, -1058.93], [-2320.22, -1053.45], [-2325.49, -1057.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2348.3, -1047.53], [-2342.3, -1042.56], [-2335.65, -1050.54], [-2336.52, -1051.26], [-2335.2, -1052.85], [-2338.05, -1055.21], [-2339.37, -1053.61], [-2341.65, -1055.5], [-2348.3, -1047.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2353.18, -1047.11], [-2359.58, -1052.63], [-2350.73, -1062.83], [-2344.33, -1057.32], [-2353.18, -1047.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2368.65, -1063.93], [-2362.93, -1059.48], [-2357.3, -1066.66], [-2363.02, -1071.12], [-2368.65, -1063.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2381.04, -1074.84], [-2375.17, -1069.77], [-2366.93, -1079.21], [-2372.8, -1084.3], [-2381.04, -1074.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2360.22, -1088.46], [-2356.44, -1088.56], [-2356.42, -1087.43], [-2352.54, -1087.53], [-2352.57, -1088.66], [-2349.17, -1088.74], [-2349.69, -1108.28], [-2352.92, -1108.2], [-2352.95, -1109.57], [-2357.15, -1109.46], [-2357.12, -1108.09], [-2360.72, -1107.99], [-2360.22, -1088.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2362.6, -1091.77], [-2375.35, -1091.4], [-2375.82, -1107.53], [-2371.86, -1107.64], [-2371.9, -1109.08], [-2367.48, -1109.21], [-2367.44, -1107.77], [-2363.07, -1107.89], [-2362.6, -1091.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2330.57, -955.93], [-2335.81, -960.49], [-2330.65, -966.38], [-2325.41, -961.83], [-2330.57, -955.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2323.17, -973.26], [-2317.52, -979.57], [-2310.5, -973.34], [-2316.14, -967.02], [-2323.17, -973.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2336.39, -976.84], [-2326.66, -988.32], [-2319.6, -982.39], [-2329.33, -970.9], [-2336.39, -976.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2340.28, -987.7], [-2338.05, -990.4], [-2340.16, -992.14], [-2337.15, -995.77], [-2329.03, -989.1], [-2334.27, -982.77], [-2340.28, -987.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2347.89, -964.95], [-2345.69, -967.46], [-2340.45, -962.88], [-2342.66, -960.39], [-2347.89, -964.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2352.61, -973.38], [-2346.09, -967.86], [-2341.23, -973.54], [-2347.74, -979.07], [-2352.61, -973.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2361.42, -981.57], [-2357.0, -986.62], [-2351.06, -981.45], [-2355.48, -976.4], [-2361.42, -981.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2351.85, -996.29], [-2344.7, -1004.86], [-2336.9, -998.42], [-2344.06, -989.83], [-2351.85, -996.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2359.09, -1003.32], [-2353.35, -1009.95], [-2347.26, -1004.72], [-2353.0, -998.09], [-2359.09, -1003.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2368.01, -999.73], [-2375.35, -1006.22], [-2363.7, -1019.29], [-2356.36, -1012.8], [-2368.01, -999.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2388.73, -1003.36], [-2383.95, -999.17], [-2379.35, -1004.38], [-2384.12, -1008.57], [-2388.73, -1003.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2379.57, -1020.21], [-2372.63, -1014.07], [-2365.16, -1022.46], [-2371.43, -1028.0], [-2372.4, -1026.92], [-2373.07, -1027.51], [-2379.57, -1020.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2388.04, -1028.84], [-2382.49, -1035.39], [-2381.72, -1034.73], [-2380.18, -1036.53], [-2374.75, -1031.97], [-2376.28, -1030.15], [-2375.5, -1029.5], [-2381.04, -1022.95], [-2388.04, -1028.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2397.35, -1034.4], [-2390.37, -1042.44], [-2383.56, -1036.58], [-2390.54, -1028.53], [-2397.35, -1034.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2416.08, -1027.97], [-2411.41, -1024.0], [-2406.6, -1029.64], [-2411.28, -1033.61], [-2416.08, -1027.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2407.74, -1043.5], [-2401.22, -1037.77], [-2394.39, -1045.48], [-2395.02, -1046.04], [-2393.52, -1047.74], [-2398.93, -1052.51], [-2400.44, -1050.8], [-2400.91, -1051.21], [-2407.74, -1043.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2412.18, -1044.03], [-2418.61, -1049.46], [-2410.67, -1058.8], [-2408.73, -1057.16], [-2407.37, -1058.77], [-2402.88, -1054.97], [-2412.18, -1044.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2426.2, -1035.73], [-2420.85, -1031.06], [-2416.08, -1036.48], [-2421.44, -1041.15], [-2426.2, -1035.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2442.73, -1048.62], [-2439.73, -1046.01], [-2436.02, -1050.24], [-2439.02, -1052.86], [-2442.73, -1048.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2427.58, -1056.92], [-2420.75, -1051.23], [-2412.71, -1060.79], [-2414.94, -1062.64], [-2415.18, -1064.15], [-2417.85, -1066.38], [-2419.53, -1066.48], [-2427.58, -1056.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2438.79, -1045.93], [-2435.07, -1050.16], [-2430.36, -1046.05], [-2434.08, -1041.82], [-2438.79, -1045.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2454.4, -1056.7], [-2447.02, -1050.43], [-2445.2, -1052.55], [-2443.26, -1050.89], [-2440.62, -1053.98], [-2442.56, -1055.63], [-2442.13, -1056.13], [-2449.51, -1062.41], [-2454.4, -1056.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2437.62, -1075.53], [-2432.64, -1081.22], [-2425.25, -1074.79], [-2430.22, -1069.11], [-2437.62, -1075.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2439.86, -1060.44], [-2446.47, -1065.99], [-2440.58, -1072.94], [-2433.97, -1067.4], [-2435.87, -1065.15], [-2434.49, -1063.99], [-2437.06, -1060.95], [-2438.44, -1062.11], [-2439.86, -1060.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2541.95, -1088.41], [-2533.83, -1097.88], [-2527.13, -1092.18], [-2535.25, -1082.7], [-2535.75, -1083.13], [-2536.95, -1081.74], [-2542.58, -1086.54], [-2541.39, -1087.94], [-2541.95, -1088.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2533.17, -1078.66], [-2526.66, -1073.09], [-2518.72, -1082.31], [-2525.24, -1087.88], [-2533.17, -1078.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2524.08, -1069.82], [-2517.1, -1078.15], [-2509.18, -1071.55], [-2509.67, -1070.97], [-2507.03, -1068.78], [-2511.87, -1063.01], [-2519.7, -1069.55], [-2521.37, -1067.56], [-2524.08, -1069.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2495.09, -1114.22], [-2488.24, -1122.06], [-2497.21, -1129.86], [-2504.71, -1121.29], [-2501.35, -1118.37], [-2500.7, -1119.1], [-2495.09, -1114.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2493.01, -1093.51], [-2489.28, -1090.49], [-2485.48, -1095.16], [-2489.21, -1098.18], [-2493.01, -1093.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2496.46, -1106.52], [-2489.22, -1100.31], [-2475.69, -1115.99], [-2482.92, -1122.2], [-2496.46, -1106.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2466.86, -1149.56], [-2460.72, -1156.96], [-2450.7, -1148.7], [-2451.86, -1147.3], [-2451.25, -1146.79], [-2454.55, -1142.81], [-2452.25, -1140.92], [-2456.21, -1136.16], [-2459.31, -1138.71], [-2457.82, -1140.5], [-2463.87, -1145.49], [-2463.08, -1146.44], [-2466.86, -1149.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2448.11, -1139.28], [-2444.34, -1139.4], [-2444.27, -1137.4], [-2440.67, -1137.52], [-2440.73, -1139.52], [-2437.25, -1139.62], [-2437.56, -1149.79], [-2448.43, -1149.45], [-2448.11, -1139.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2477.52, -1092.76], [-2477.26, -1093.06], [-2478.79, -1094.36], [-2475.74, -1097.93], [-2475.37, -1097.62], [-2473.12, -1100.25], [-2465.65, -1093.93], [-2466.23, -1093.26], [-2464.63, -1091.9], [-2467.35, -1088.7], [-2468.96, -1090.07], [-2471.21, -1087.41], [-2477.52, -1092.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2479.95, -1091.74], [-2484.56, -1086.27], [-2477.4, -1080.27], [-2472.79, -1085.73], [-2479.95, -1091.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2506.01, -1060.9], [-2503.22, -1064.16], [-2503.73, -1064.6], [-2499.58, -1069.44], [-2499.07, -1068.99], [-2497.03, -1071.36], [-2490.79, -1066.05], [-2492.8, -1063.72], [-2492.03, -1063.05], [-2496.58, -1057.74], [-2496.97, -1058.06], [-2499.37, -1055.26], [-2499.62, -1055.46], [-2501.05, -1053.8], [-2507.29, -1059.11], [-2505.86, -1060.77], [-2506.01, -1060.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2227.64, -942.41], [-2227.96, -956.15], [-2216.28, -956.44], [-2215.95, -942.69], [-2227.64, -942.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2177.83, -941.26], [-2171.64, -941.46], [-2171.91, -949.73], [-2178.1, -949.52], [-2177.83, -941.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2186.56, -941.86], [-2194.37, -941.68], [-2194.39, -942.68], [-2195.29, -942.67], [-2195.5, -951.25], [-2193.1, -951.31], [-2193.22, -956.21], [-2186.35, -956.37], [-2186.16, -948.22], [-2186.71, -948.22], [-2186.56, -941.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2209.46, -941.24], [-2201.92, -941.42], [-2202.27, -955.69], [-2209.81, -955.51], [-2209.64, -948.69], [-2210.55, -948.67], [-2210.44, -944.53], [-2209.55, -944.56], [-2209.46, -941.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2234.35, -983.87], [-2230.6, -984.04], [-2230.89, -990.35], [-2234.64, -990.19], [-2234.35, -983.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2229.43, -987.74], [-2226.1, -987.83], [-2226.13, -989.11], [-2221.12, -989.25], [-2220.79, -977.26], [-2229.13, -977.02], [-2229.43, -987.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2217.38, -975.15], [-2209.94, -975.39], [-2210.08, -979.66], [-2209.25, -979.69], [-2209.59, -990.35], [-2213.93, -990.22], [-2213.91, -989.47], [-2217.84, -989.35], [-2217.38, -975.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2206.09, -980.42], [-2206.33, -990.15], [-2204.26, -990.19], [-2204.31, -992.19], [-2199.83, -992.31], [-2199.78, -990.31], [-2197.86, -990.35], [-2197.63, -980.62], [-2200.15, -980.56], [-2200.05, -976.51], [-2204.37, -976.4], [-2204.47, -980.46], [-2206.09, -980.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2198.71, -970.51], [-2195.4, -970.67], [-2195.68, -976.32], [-2198.99, -976.16], [-2198.71, -970.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2195.17, -978.29], [-2194.62, -978.3], [-2194.59, -975.83], [-2188.6, -975.93], [-2188.71, -983.22], [-2185.72, -983.26], [-2185.84, -991.14], [-2190.88, -991.08], [-2190.86, -989.87], [-2192.66, -989.85], [-2192.67, -990.54], [-2195.35, -990.5], [-2195.17, -978.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2183.03, -983.34], [-2183.19, -991.08], [-2179.63, -991.15], [-2179.63, -991.71], [-2177.67, -991.76], [-2177.66, -991.19], [-2174.7, -991.25], [-2174.53, -983.53], [-2179.45, -983.43], [-2179.4, -981.27], [-2182.61, -981.2], [-2182.65, -983.36], [-2183.03, -983.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2171.34, -981.82], [-2164.28, -981.9], [-2164.4, -992.84], [-2171.46, -992.77], [-2171.34, -981.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2155.13, -985.89], [-2155.25, -995.05], [-2142.09, -995.22], [-2141.97, -986.06], [-2155.13, -985.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2143.19, -974.15], [-2143.27, -981.77], [-2154.86, -981.64], [-2154.78, -974.03], [-2143.19, -974.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2171.71, -966.52], [-2171.83, -972.44], [-2164.4, -972.6], [-2164.28, -966.68], [-2171.71, -966.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2154.56, -961.82], [-2154.6, -963.2], [-2156.1, -963.18], [-2156.16, -966.17], [-2154.65, -966.2], [-2154.73, -970.32], [-2142.82, -970.54], [-2142.66, -962.04], [-2154.56, -961.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2160.32, -950.96], [-2160.55, -958.56], [-2145.86, -959.0], [-2145.64, -951.41], [-2150.33, -951.27], [-2150.32, -950.92], [-2155.94, -950.74], [-2155.95, -951.1], [-2160.32, -950.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2160.37, -940.1], [-2160.4, -940.98], [-2161.79, -940.94], [-2161.9, -944.92], [-2160.52, -944.96], [-2160.6, -947.83], [-2146.35, -948.26], [-2146.2, -943.08], [-2145.06, -942.28], [-2146.92, -939.67], [-2148.06, -940.48], [-2151.61, -940.37], [-2151.59, -939.71], [-2155.08, -939.61], [-2155.1, -940.27], [-2160.37, -940.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1376.28, -189.5], [-1376.59, -194.88], [-1376.89, -200.09], [-1377.08, -203.59], [-1378.16, -224.53], [-1378.96, -224.3], [-1379.57, -224.13], [-1380.6, -224.46], [-1381.63, -224.21], [-1381.29, -225.02], [-1381.7, -226.07], [-1381.38, -227.15], [-1381.8, -228.5], [-1381.49, -229.79], [-1381.93, -231.33], [-1381.6, -232.47], [-1382.05, -234.19], [-1381.72, -235.27], [-1382.17, -237.09], [-1381.85, -238.24], [-1382.29, -239.92], [-1381.97, -240.94], [-1382.4, -242.61], [-1382.08, -243.82], [-1382.53, -245.48], [-1382.19, -246.39], [-1382.61, -247.3], [-1381.71, -246.95], [-1380.65, -247.47], [-1379.65, -247.05], [-1377.92, -247.69], [-1376.84, -247.18], [-1375.21, -247.91], [-1373.92, -247.31], [-1372.65, -248.13], [-1372.68, -249.18], [-1372.72, -250.49], [-1369.3, -250.66], [-1369.32, -251.09], [-1354.21, -251.95], [-1336.75, -252.95], [-1336.35, -252.97], [-1336.28, -251.01], [-1323.46, -251.43], [-1322.15, -251.48], [-1322.23, -239.95], [-1322.49, -225.88], [-1322.48, -223.89], [-1325.93, -223.76], [-1325.91, -223.23], [-1325.9, -222.64], [-1325.54, -216.09], [-1325.28, -211.13], [-1324.56, -193.87], [-1324.48, -192.06], [-1335.03, -191.53], [-1366.73, -189.94], [-1367.74, -189.89], [-1376.28, -189.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2696.21, -3176.3], [2719.39, -3175.5], [2719.95, -3191.36], [2696.77, -3192.18], [2696.21, -3176.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2453.9, -1599.64], [-2440.74, -1585.42], [-2442.71, -1583.76], [-2440.16, -1581.09], [-2438.47, -1582.57], [-2436.33, -1580.11], [-2431.05, -1584.65], [-2427.41, -1580.28], [-2418.04, -1588.05], [-2422.32, -1593.18], [-2422.13, -1598.22], [-2418.78, -1601.05], [-2420.81, -1603.42], [-2428.94, -1612.95], [-2430.89, -1615.24], [-2434.54, -1612.14], [-2439.68, -1612.4], [-2443.08, -1616.45], [-2452.51, -1608.6], [-2448.59, -1604.36], [-2453.9, -1599.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2337.74, -1772.3], [-2314.9, -1747.12], [-2326.13, -1737.14], [-2327.23, -1738.1], [-2334.34, -1731.95], [-2337.8, -1735.65], [-2341.35, -1739.43], [-2342.31, -1738.49], [-2347.79, -1738.99], [-2351.4, -1743.26], [-2350.98, -1748.96], [-2346.7, -1752.89], [-2353.1, -1759.31], [-2340.7, -1769.79], [-2337.74, -1772.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2394.33, -1137.06], [-2394.53, -1149.46], [-2391.28, -1149.51], [-2391.31, -1151.49], [-2388.29, -1151.53], [-2388.32, -1153.11], [-2384.01, -1153.17], [-2383.96, -1150.07], [-2383.09, -1150.09], [-2382.88, -1137.26], [-2394.33, -1137.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2379.87, -1141.64], [-2380.04, -1150.92], [-2373.55, -1151.04], [-2373.51, -1149.71], [-2369.91, -1149.77], [-2369.93, -1150.97], [-2365.86, -1151.04], [-2365.71, -1142.38], [-2369.04, -1142.32], [-2369.03, -1141.84], [-2379.87, -1141.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2362.27, -1141.85], [-2362.38, -1150.61], [-2352.69, -1150.73], [-2352.66, -1148.23], [-2350.39, -1148.26], [-2350.33, -1143.08], [-2353.15, -1143.06], [-2353.14, -1141.97], [-2362.27, -1141.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2347.45, -1142.63], [-2347.68, -1151.81], [-2337.64, -1152.05], [-2337.58, -1149.84], [-2335.36, -1149.89], [-2335.22, -1144.02], [-2341.39, -1143.86], [-2341.36, -1142.77], [-2347.45, -1142.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2330.16, -1177.11], [-2333.56, -1176.98], [-2333.77, -1182.25], [-2330.37, -1182.38], [-2330.16, -1177.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2342.19, -1171.2], [-2342.23, -1176.46], [-2334.09, -1176.54], [-2334.05, -1171.28], [-2342.19, -1171.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2326.84, -1167.73], [-2320.89, -1167.9], [-2321.08, -1174.48], [-2327.03, -1174.31], [-2326.84, -1167.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2327.31, -1144.6], [-2320.19, -1144.82], [-2320.31, -1148.54], [-2319.35, -1148.56], [-2319.58, -1156.34], [-2320.55, -1156.31], [-2320.59, -1157.5], [-2327.7, -1157.28], [-2327.61, -1154.15], [-2328.42, -1154.13], [-2328.23, -1148.2], [-2327.42, -1148.22], [-2327.31, -1144.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2304.49, -1141.37], [-2304.53, -1142.45], [-2305.45, -1142.43], [-2305.6, -1147.65], [-2304.68, -1147.67], [-2304.7, -1148.65], [-2299.08, -1148.81], [-2299.2, -1152.79], [-2293.03, -1152.97], [-2292.92, -1149.27], [-2291.23, -1149.32], [-2291.07, -1143.87], [-2292.76, -1143.83], [-2292.7, -1141.7], [-2297.61, -1141.56], [-2297.6, -1141.02], [-2301.04, -1140.92], [-2301.06, -1141.46], [-2304.49, -1141.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2306.39, -1155.97], [-2306.72, -1166.71], [-2302.75, -1166.83], [-2302.78, -1167.97], [-2298.09, -1168.11], [-2298.05, -1166.98], [-2292.09, -1167.17], [-2291.75, -1156.43], [-2306.39, -1155.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2299.89, -1173.13], [-2300.05, -1180.68], [-2297.92, -1180.73], [-2297.98, -1183.43], [-2292.46, -1183.56], [-2292.24, -1173.29], [-2299.89, -1173.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2302.15, -1189.22], [-2302.36, -1197.16], [-2292.54, -1197.42], [-2292.32, -1189.49], [-2293.96, -1189.44], [-2293.91, -1187.56], [-2297.47, -1187.47], [-2297.51, -1189.34], [-2302.15, -1189.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2317.02, -1191.31], [-2309.57, -1191.69], [-2309.95, -1199.14], [-2317.41, -1198.76], [-2317.02, -1191.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2308.75, -1199.98], [-2308.88, -1203.43], [-2303.42, -1203.65], [-2303.29, -1200.21], [-2308.75, -1199.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2300.92, -1202.34], [-2292.79, -1202.52], [-2292.96, -1210.49], [-2301.1, -1210.32], [-2301.04, -1207.45], [-2301.95, -1207.44], [-2301.85, -1203.08], [-2300.95, -1203.1], [-2300.92, -1202.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2302.32, -1219.62], [-2302.49, -1227.4], [-2293.1, -1227.61], [-2292.93, -1219.83], [-2302.32, -1219.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2317.23, -1218.99], [-2317.35, -1224.17], [-2314.14, -1224.25], [-2314.2, -1226.43], [-2307.24, -1226.59], [-2307.13, -1221.68], [-2305.13, -1221.73], [-2305.08, -1219.27], [-2317.23, -1218.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2327.06, -1215.31], [-2319.52, -1215.48], [-2319.74, -1225.31], [-2324.17, -1225.21], [-2324.2, -1226.44], [-2326.39, -1226.39], [-2326.35, -1225.15], [-2327.28, -1225.13], [-2327.06, -1215.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2338.96, -1214.97], [-2339.11, -1224.64], [-2330.87, -1224.77], [-2330.71, -1215.09], [-2331.43, -1215.08], [-2331.4, -1213.57], [-2335.28, -1213.52], [-2335.3, -1215.03], [-2338.96, -1214.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2350.67, -1214.39], [-2342.77, -1214.6], [-2343.09, -1226.38], [-2351.0, -1226.18], [-2350.67, -1214.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2358.04, -1203.19], [-2366.14, -1203.03], [-2365.99, -1195.78], [-2357.89, -1195.94], [-2358.04, -1203.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2352.98, -1214.13], [-2354.89, -1214.08], [-2354.83, -1211.73], [-2360.18, -1211.58], [-2360.34, -1217.45], [-2362.8, -1217.38], [-2363.07, -1226.8], [-2353.35, -1227.08], [-2352.98, -1214.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2381.35, -1208.14], [-2377.3, -1208.26], [-2377.41, -1211.66], [-2373.42, -1211.79], [-2373.45, -1212.9], [-2371.76, -1212.96], [-2371.81, -1214.43], [-2369.9, -1214.5], [-2370.2, -1223.66], [-2376.31, -1223.46], [-2376.27, -1221.96], [-2380.32, -1221.84], [-2380.18, -1217.54], [-2381.65, -1217.49], [-2381.35, -1208.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2386.83, -1204.67], [-2382.69, -1204.75], [-2382.81, -1210.09], [-2386.94, -1210.01], [-2386.83, -1204.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2411.66, -1208.76], [-2405.85, -1208.88], [-2405.88, -1210.78], [-2403.93, -1210.81], [-2403.96, -1212.29], [-2403.09, -1212.31], [-2403.12, -1213.85], [-2400.93, -1213.89], [-2401.14, -1224.37], [-2410.93, -1224.18], [-2410.79, -1217.16], [-2409.36, -1217.19], [-2409.3, -1214.2], [-2411.76, -1214.15], [-2411.66, -1208.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2398.5, -1211.88], [-2396.26, -1211.93], [-2396.19, -1209.2], [-2390.07, -1209.34], [-2390.15, -1212.63], [-2389.02, -1212.65], [-2389.15, -1218.31], [-2390.29, -1218.28], [-2390.39, -1222.45], [-2391.1, -1222.44], [-2391.14, -1224.15], [-2398.79, -1223.96], [-2398.5, -1211.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2403.78, -1182.28], [-2402.45, -1182.31], [-2402.41, -1180.43], [-2397.11, -1180.54], [-2397.15, -1182.42], [-2396.18, -1182.43], [-2396.35, -1191.02], [-2407.94, -1190.8], [-2407.81, -1183.7], [-2403.82, -1183.78], [-2403.78, -1182.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2408.14, -1169.94], [-2399.56, -1170.02], [-2399.63, -1177.86], [-2408.21, -1177.78], [-2408.14, -1169.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2177.32, -1047.6], [-2177.6, -1057.28], [-2176.94, -1057.3], [-2176.98, -1058.89], [-2169.78, -1059.09], [-2169.73, -1057.51], [-2168.86, -1057.53], [-2168.58, -1047.85], [-2170.66, -1047.79], [-2170.62, -1046.6], [-2173.35, -1046.52], [-2173.39, -1047.71], [-2177.32, -1047.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1426.53, -2325.47], [-1426.75, -2331.4], [-1467.99, -2329.4], [-1478.3, -2328.91], [-1479.77, -2360.78], [-1473.16, -2360.86], [-1473.32, -2366.56], [-1433.2, -2368.25], [-1401.43, -2369.59], [-1400.51, -2352.85], [-1415.58, -2325.77], [-1423.33, -2325.55], [-1426.09, -2325.49], [-1426.53, -2325.47]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-519.02, -517.99], [-525.23, -511.52], [-526.87, -513.08], [-520.7, -519.52], [-519.02, -517.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-520.7, -519.52], [-519.02, -517.99], [-501.64, -502.12], [-489.18, -490.67], [-492.31, -486.57], [-486.48, -481.23], [-477.01, -491.93], [-465.05, -505.44], [-461.05, -509.94], [-521.73, -565.71], [-544.48, -541.03], [-520.7, -519.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1007.8, 374.0], [1002.6, 369.11], [1003.81, 367.84], [1003.52, 367.56], [1010.5, 360.21], [1010.84, 360.54], [1014.64, 356.53], [1018.92, 360.57], [1015.13, 364.56], [1016.71, 366.05], [1013.06, 369.9], [1012.33, 369.22], [1007.8, 374.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1024.9, 393.61], [1031.45, 386.51], [1036.12, 390.79], [1029.58, 397.89], [1024.9, 393.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1042.42, 399.52], [1047.97, 404.54], [1053.43, 398.55], [1054.8, 399.8], [1060.81, 393.21], [1052.77, 385.93], [1048.21, 390.93], [1049.33, 391.94], [1042.42, 399.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-737.45, -1174.43], [-741.29, -1177.0], [-740.61, -1178.13], [-744.45, -1180.26], [-747.42, -1181.91], [-747.06, -1182.55], [-754.64, -1186.93], [-791.48, -1127.82], [-774.02, -1116.94], [-771.83, -1115.27], [-768.15, -1112.01], [-770.18, -1110.38], [-774.54, -1105.6], [-759.01, -1091.22], [-744.39, -1107.74], [-746.76, -1110.02], [-759.19, -1121.55], [-760.5, -1120.06], [-768.29, -1125.11], [-737.45, -1174.43]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-3059.88, 123.01], [-3060.85, 103.32], [-3045.79, 102.76], [-3046.54, 82.45], [-3041.07, 82.25], [-3041.84, 61.72], [-3034.5, 61.45], [-3034.71, 55.59], [-3025.58, 55.25], [-3025.76, 50.56], [-3018.48, 50.28], [-3018.6, 46.86], [-3010.69, 46.52], [-3007.75, 120.79], [-3059.88, 123.01]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[20.92, 214.38], [30.12, 204.3], [12.11, 187.98], [2.91, 198.06], [20.92, 214.38]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[42.52, 187.9], [37.13, 193.8], [35.6, 192.41], [32.23, 196.1], [23.51, 188.2], [32.28, 178.61], [42.52, 187.9]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2363.09, -1668.84], [-2361.97, -1669.24], [-2362.73, -1671.26], [-2352.83, -1674.95], [-2353.44, -1676.58], [-2349.01, -1678.23], [-2348.34, -1676.44], [-2341.46, -1679.0], [-2340.56, -1676.58], [-2334.93, -1678.68], [-2331.36, -1669.2], [-2338.71, -1666.46], [-2339.35, -1668.16], [-2353.37, -1662.92], [-2352.85, -1661.54], [-2358.63, -1659.37], [-2359.63, -1662.03], [-2360.42, -1661.74], [-2363.09, -1668.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2421.97, -1629.33], [-2423.91, -1631.39], [-2425.41, -1632.97], [-2420.04, -1638.01], [-2419.0, -1636.91], [-2416.6, -1634.38], [-2421.97, -1629.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2458.05, -1620.2], [-2454.92, -1622.89], [-2452.92, -1620.57], [-2448.8, -1624.11], [-2451.04, -1626.71], [-2445.41, -1631.56], [-2446.34, -1632.63], [-2448.55, -1635.19], [-2461.43, -1624.11], [-2458.05, -1620.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2490.19, -1628.53], [-2480.5, -1628.76], [-2480.68, -1635.82], [-2490.36, -1635.59], [-2490.19, -1628.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2506.21, -1629.16], [-2502.78, -1634.89], [-2497.83, -1643.14], [-2493.95, -1643.59], [-2490.44, -1646.71], [-2488.22, -1647.27], [-2487.63, -1651.52], [-2490.86, -1654.19], [-2495.41, -1652.73], [-2497.41, -1654.68], [-2501.57, -1650.75], [-2510.02, -1658.78], [-2511.9, -1660.53], [-2520.33, -1651.81], [-2518.23, -1649.08], [-2523.31, -1644.62], [-2506.21, -1629.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2463.71, -1675.49], [-2452.17, -1680.87], [-2454.31, -1684.74], [-2465.89, -1679.54], [-2464.34, -1676.66], [-2463.71, -1675.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2415.63, -1660.39], [-2417.39, -1668.15], [-2415.85, -1668.51], [-2414.26, -1668.86], [-2411.87, -1669.4], [-2410.1, -1661.64], [-2413.84, -1660.8], [-2415.63, -1660.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2434.28, -1799.74], [-2431.35, -1809.53], [-2417.63, -1805.45], [-2420.56, -1795.67], [-2434.28, -1799.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2454.02, -1846.77], [-2456.42, -1849.71], [-2452.21, -1851.31], [-2450.07, -1854.53], [-2447.34, -1851.59], [-2450.0, -1848.45], [-2454.02, -1846.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2328.79, -1767.76], [-2321.45, -1774.08], [-2323.61, -1776.57], [-2319.46, -1780.15], [-2317.31, -1777.69], [-2314.47, -1780.13], [-2304.0, -1768.03], [-2315.62, -1758.03], [-2319.18, -1762.14], [-2321.9, -1759.8], [-2328.79, -1767.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2256.48, -1823.9], [-2252.89, -1816.25], [-2282.29, -1803.37], [-2283.72, -1803.83], [-2284.42, -1806.74], [-2284.6, -1807.5], [-2284.21, -1808.51], [-2282.42, -1809.44], [-2283.51, -1812.11], [-2267.16, -1819.25], [-2256.48, -1823.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2237.58, -1833.0], [-2238.84, -1836.12], [-2243.35, -1847.01], [-2243.88, -1848.28], [-2232.49, -1852.97], [-2229.15, -1854.31], [-2223.94, -1841.33], [-2226.34, -1837.53], [-2237.58, -1833.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-136.6, 53.73], [-133.92, 55.88], [-128.01, 55.47], [-118.93, 54.95], [-118.19, 61.75], [-127.87, 62.55], [-134.36, 63.11], [-140.31, 57.72], [-136.6, 53.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1896.33, -956.2], [-1896.49, -964.88], [-1881.25, -965.16], [-1881.09, -956.49], [-1896.33, -956.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1895.86, -945.48], [-1896.12, -954.22], [-1883.27, -954.59], [-1883.24, -953.81], [-1880.64, -953.89], [-1880.41, -945.92], [-1895.86, -945.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2347.52, -1812.74], [-2334.04, -1811.04], [-2331.87, -1810.77], [-2331.83, -1807.56], [-2330.78, -1803.46], [-2328.43, -1800.27], [-2329.51, -1799.38], [-2324.61, -1794.06], [-2327.96, -1791.03], [-2328.55, -1790.49], [-2329.68, -1791.72], [-2337.15, -1785.15], [-2342.06, -1790.06], [-2342.92, -1789.33], [-2345.13, -1791.65], [-2347.58, -1791.07], [-2349.72, -1797.64], [-2351.33, -1801.98], [-2346.24, -1803.26], [-2347.52, -1812.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[133.32, -167.31], [139.58, -167.63], [138.9, -191.47], [132.98, -191.3], [133.32, -167.31]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[137.11, -202.94], [132.45, -197.93], [127.72, -202.31], [116.69, -212.49], [121.36, -217.5], [132.64, -207.07], [137.11, -202.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-640.02, -81.93], [-634.87, -87.28], [-635.88, -108.93], [-649.54, -108.21], [-648.47, -93.77], [-650.66, -91.22], [-640.02, -81.93]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-637.71, -79.92], [-628.16, -90.79], [-629.33, -109.27], [-635.88, -108.93], [-634.87, -87.28], [-640.02, -81.93], [-637.71, -79.92]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-637.71, -79.92], [-631.72, -74.68], [-622.04, -85.22], [-628.16, -90.79], [-637.71, -79.92]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-619.71, -64.62], [-602.78, -83.58], [-603.0, -88.74], [-605.96, -88.63], [-605.94, -86.76], [-608.22, -84.74], [-609.52, -85.72], [-624.17, -68.57], [-619.71, -64.62]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-589.28, -37.65], [-564.54, -64.65], [-553.92, -76.56], [-536.16, -95.96], [-492.27, -56.8], [-491.76, -56.31], [-511.18, -34.76], [-525.5, -18.88], [-545.32, 3.11], [-589.28, -37.65]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[-73.07, -275.71], [-61.6, -265.22], [-59.51, -267.81], [-56.07, -264.64], [-58.52, -262.05], [-43.02, -248.41], [-44.72, -246.6], [-61.47, -227.47], [-72.84, -214.83], [-73.78, -215.57], [-84.6, -203.36], [-85.41, -202.52], [-88.57, -205.82], [-91.76, -209.87], [-93.57, -212.37], [-114.64, -230.84], [-73.07, -275.71]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-73.07, -275.71], [-59.6, -290.24], [-29.7, -262.89], [-40.89, -250.67], [-56.07, -264.64], [-59.51, -267.81], [-61.6, -265.22], [-73.07, -275.71]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[-40.89, -250.67], [-43.02, -248.41], [-44.72, -246.6], [-8.83, -215.45], [-8.15, -216.17], [-5.77, -214.0], [-0.31, -219.61], [-1.02, -220.15], [0.96, -222.17], [1.67, -221.63], [4.92, -222.86], [6.24, -223.64], [6.99, -224.31], [7.52, -225.21], [7.88, -226.46], [7.91, -228.12], [7.65, -229.64], [-9.65, -245.04], [-29.7, -262.89], [-40.89, -250.67]], "holes": []}, "height": 35.0}, {"shape": {"outer": [[-61.15, -182.28], [-60.43, -183.13], [-39.49, -162.43], [-8.86, -195.91], [-35.3, -218.92], [-42.99, -210.42], [-61.47, -227.47], [-72.84, -214.83], [-73.78, -215.57], [-84.6, -203.36], [-61.15, -182.28]], "holes": []}, "height": 31.5}, {"shape": {"outer": [[-8.86, -195.91], [-1.5, -203.91], [13.71, -220.42], [15.45, -222.42], [7.65, -229.64], [7.91, -228.12], [7.88, -226.46], [7.52, -225.21], [6.99, -224.31], [6.24, -223.64], [4.92, -222.86], [1.67, -221.63], [0.96, -222.17], [-1.02, -220.15], [-0.31, -219.61], [-5.77, -214.0], [-8.15, -216.17], [-8.83, -215.45], [-44.72, -246.6], [-61.47, -227.47], [-42.99, -210.42], [-35.3, -218.92], [-8.86, -195.91]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[1678.07, 686.73], [1671.72, 681.04], [1662.09, 691.72], [1668.44, 697.41], [1678.07, 686.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1785.48, -1677.99], [-1785.36, -1673.53], [-1780.76, -1673.65], [-1780.69, -1671.12], [-1777.42, -1671.21], [-1777.37, -1669.58], [-1769.79, -1669.79], [-1770.02, -1678.41], [-1785.48, -1677.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1781.57, -1657.13], [-1781.67, -1662.13], [-1769.21, -1662.37], [-1769.12, -1657.37], [-1781.57, -1657.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1782.94, -1646.45], [-1775.43, -1646.53], [-1775.5, -1652.95], [-1783.01, -1652.87], [-1782.94, -1646.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1779.47, -1638.04], [-1779.57, -1642.29], [-1768.44, -1642.55], [-1768.22, -1633.29], [-1774.59, -1633.14], [-1774.71, -1638.16], [-1779.47, -1638.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1800.5, -1635.94], [-1800.74, -1645.82], [-1787.8, -1646.15], [-1787.56, -1636.25], [-1800.5, -1635.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1812.06, -1635.46], [-1819.24, -1635.28], [-1819.66, -1651.55], [-1812.49, -1651.73], [-1812.06, -1635.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1830.42, -1636.78], [-1837.42, -1636.55], [-1837.83, -1648.95], [-1830.83, -1649.19], [-1830.42, -1636.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1840.68, -1668.69], [-1840.73, -1675.57], [-1846.8, -1675.51], [-1846.74, -1668.64], [-1840.68, -1668.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1873.54, -1670.19], [-1873.7, -1676.41], [-1862.94, -1676.7], [-1862.78, -1670.47], [-1873.54, -1670.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1873.24, -1657.06], [-1873.29, -1663.12], [-1862.23, -1663.2], [-1862.18, -1657.13], [-1873.24, -1657.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1873.39, -1635.76], [-1873.44, -1638.64], [-1871.51, -1638.67], [-1871.6, -1644.15], [-1866.46, -1644.24], [-1866.43, -1642.49], [-1863.1, -1642.55], [-1863.08, -1640.74], [-1858.55, -1640.81], [-1858.47, -1636.01], [-1873.39, -1635.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1846.58, -1636.86], [-1846.81, -1645.02], [-1843.58, -1645.11], [-1843.75, -1651.04], [-1839.22, -1651.17], [-1839.05, -1645.29], [-1838.26, -1645.32], [-1838.02, -1637.11], [-1846.58, -1636.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1856.02, -1636.42], [-1856.09, -1642.44], [-1854.1, -1642.45], [-1854.15, -1646.94], [-1853.82, -1646.94], [-1853.85, -1649.38], [-1848.06, -1649.45], [-1847.92, -1636.51], [-1851.21, -1636.48], [-1851.19, -1634.94], [-1854.85, -1634.9], [-1854.86, -1636.43], [-1856.02, -1636.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[293.72, -80.51], [302.13, -89.63], [295.41, -93.71], [274.41, -112.92], [267.04, -104.92], [293.72, -80.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[277.09, -68.04], [280.0, -71.11], [282.7, -73.95], [285.74, -77.16], [273.37, -88.8], [264.72, -79.69], [277.09, -68.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[253.02, -115.95], [261.03, -124.99], [240.61, -142.99], [232.57, -134.05], [253.02, -115.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[232.57, -134.05], [253.02, -115.95], [251.23, -113.8], [248.06, -110.24], [243.25, -114.48], [242.35, -113.45], [226.71, -127.24], [232.57, -134.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[214.14, -109.82], [214.64, -110.39], [212.76, -112.05], [217.65, -117.53], [219.54, -115.86], [219.6, -116.13], [235.33, -102.22], [233.55, -100.22], [229.77, -95.99], [214.14, -109.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1079.61, 1403.33], [1084.3, 1407.35], [1086.28, 1405.06], [1088.58, 1407.04], [1093.91, 1400.87], [1092.28, 1399.48], [1095.25, 1396.05], [1089.87, 1391.43], [1079.61, 1403.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1870.14, -1514.47], [-1870.32, -1520.62], [-1868.62, -1520.67], [-1868.75, -1524.97], [-1869.46, -1524.95], [-1869.57, -1528.97], [-1868.37, -1529.0], [-1868.44, -1531.51], [-1864.18, -1531.64], [-1864.11, -1529.13], [-1861.54, -1529.2], [-1861.13, -1514.73], [-1870.14, -1514.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1857.0, -1511.91], [-1857.36, -1525.35], [-1849.16, -1525.58], [-1848.81, -1512.14], [-1857.0, -1511.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1846.34, -1516.5], [-1846.39, -1523.07], [-1842.13, -1523.11], [-1842.16, -1526.51], [-1837.5, -1526.55], [-1837.4, -1514.52], [-1844.24, -1514.47], [-1845.14, -1513.54], [-1847.25, -1515.57], [-1846.34, -1516.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1830.12, -1515.03], [-1830.44, -1524.47], [-1828.1, -1524.55], [-1828.19, -1527.46], [-1823.2, -1527.62], [-1823.15, -1526.04], [-1820.49, -1526.14], [-1820.08, -1513.95], [-1825.43, -1513.76], [-1825.48, -1515.18], [-1830.12, -1515.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1696.35, -1586.97], [-1690.46, -1587.14], [-1690.64, -1593.4], [-1696.53, -1593.24], [-1696.35, -1586.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1684.72, -1568.14], [-1679.84, -1568.25], [-1680.0, -1575.7], [-1684.88, -1575.6], [-1684.72, -1568.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1677.47, -1594.0], [-1671.69, -1594.16], [-1672.03, -1607.22], [-1677.82, -1607.07], [-1677.47, -1594.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1688.95, -1591.65], [-1681.75, -1591.88], [-1682.23, -1606.57], [-1689.43, -1606.34], [-1688.95, -1591.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1705.65, -1591.51], [-1705.72, -1595.96], [-1704.56, -1595.98], [-1704.73, -1606.06], [-1696.72, -1606.2], [-1696.53, -1595.28], [-1698.88, -1595.25], [-1698.82, -1591.63], [-1705.65, -1591.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1715.8, -1594.15], [-1716.02, -1604.26], [-1707.99, -1604.43], [-1707.77, -1594.33], [-1710.12, -1594.28], [-1710.08, -1592.67], [-1714.23, -1592.58], [-1714.27, -1594.18], [-1715.8, -1594.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1740.58, -1587.63], [-1738.17, -1587.7], [-1738.11, -1585.45], [-1733.14, -1585.61], [-1733.21, -1587.84], [-1731.03, -1587.9], [-1731.56, -1605.58], [-1735.73, -1605.45], [-1735.82, -1608.46], [-1741.18, -1608.31], [-1740.58, -1587.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1743.25, -1564.29], [-1743.38, -1571.45], [-1727.16, -1571.76], [-1727.03, -1564.59], [-1743.25, -1564.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1725.97, -1593.8], [-1726.16, -1606.25], [-1717.63, -1606.38], [-1717.43, -1593.94], [-1719.72, -1593.91], [-1719.61, -1586.98], [-1724.91, -1586.9], [-1725.02, -1593.82], [-1725.97, -1593.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1714.42, -1567.02], [-1710.12, -1567.04], [-1710.14, -1573.63], [-1714.45, -1573.61], [-1714.42, -1567.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1847.03, -1588.59], [-1854.81, -1588.43], [-1855.16, -1605.09], [-1847.37, -1605.25], [-1847.03, -1588.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1872.7, -1592.38], [-1864.94, -1592.53], [-1865.2, -1605.21], [-1872.95, -1605.05], [-1872.7, -1592.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1800.15, -1593.09], [-1791.89, -1593.28], [-1792.08, -1602.15], [-1796.42, -1602.06], [-1796.44, -1603.42], [-1799.28, -1603.36], [-1799.25, -1601.99], [-1800.34, -1601.97], [-1800.15, -1593.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1791.27, -1590.52], [-1782.75, -1590.77], [-1783.1, -1602.95], [-1791.62, -1602.71], [-1791.27, -1590.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1778.39, -1593.01], [-1767.81, -1593.22], [-1768.05, -1605.3], [-1778.63, -1605.09], [-1778.39, -1593.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1776.89, -1575.62], [-1776.91, -1576.34], [-1779.71, -1576.25], [-1779.83, -1579.95], [-1777.03, -1580.04], [-1777.17, -1584.85], [-1769.09, -1585.09], [-1768.81, -1575.87], [-1776.89, -1575.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1790.6, -1578.3], [-1784.59, -1578.5], [-1784.83, -1585.79], [-1790.84, -1585.6], [-1790.6, -1578.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1812.24, -1572.89], [-1819.11, -1572.75], [-1818.94, -1565.0], [-1812.08, -1565.15], [-1812.24, -1572.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1807.8, -1564.67], [-1800.92, -1564.87], [-1801.25, -1576.57], [-1808.13, -1576.37], [-1807.8, -1564.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1872.09, -1683.83], [-1872.24, -1691.91], [-1860.07, -1692.13], [-1859.96, -1686.33], [-1861.92, -1686.3], [-1861.88, -1684.01], [-1872.09, -1683.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1872.11, -1694.38], [-1861.97, -1694.63], [-1862.18, -1703.18], [-1872.32, -1702.93], [-1872.32, -1702.34], [-1874.09, -1702.29], [-1873.92, -1695.06], [-1872.13, -1695.1], [-1872.11, -1694.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1874.87, -1715.39], [-1866.8, -1715.52], [-1866.84, -1718.01], [-1864.8, -1718.05], [-1864.88, -1722.57], [-1866.91, -1722.53], [-1866.96, -1724.9], [-1868.03, -1724.89], [-1868.07, -1727.01], [-1873.91, -1726.91], [-1873.87, -1724.79], [-1875.03, -1724.77], [-1874.87, -1715.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1874.07, -1706.31], [-1874.16, -1714.32], [-1864.27, -1714.44], [-1864.18, -1706.43], [-1874.07, -1706.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1856.01, -1723.22], [-1855.51, -1708.34], [-1844.48, -1708.71], [-1844.98, -1723.59], [-1856.01, -1723.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1797.81, -1696.68], [-1792.07, -1696.93], [-1792.38, -1703.63], [-1798.11, -1703.37], [-1797.81, -1696.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1840.37, -1714.92], [-1840.51, -1720.18], [-1839.7, -1720.2], [-1839.83, -1725.21], [-1833.22, -1725.4], [-1833.07, -1719.76], [-1832.33, -1719.78], [-1832.2, -1715.15], [-1833.37, -1715.11], [-1833.3, -1712.59], [-1839.36, -1712.43], [-1839.43, -1714.95], [-1840.37, -1714.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1830.02, -1712.2], [-1830.44, -1726.23], [-1823.27, -1726.44], [-1822.85, -1712.41], [-1830.02, -1712.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1819.21, -1709.19], [-1814.24, -1709.34], [-1814.3, -1711.29], [-1812.34, -1711.35], [-1812.49, -1716.68], [-1813.42, -1716.65], [-1813.53, -1720.57], [-1814.56, -1720.54], [-1814.69, -1724.84], [-1815.29, -1724.82], [-1815.35, -1726.89], [-1820.42, -1726.74], [-1820.37, -1724.94], [-1820.81, -1724.93], [-1820.55, -1715.69], [-1819.4, -1715.72], [-1819.21, -1709.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1802.94, -1709.79], [-1803.15, -1722.02], [-1801.66, -1722.06], [-1801.67, -1723.06], [-1798.39, -1723.12], [-1798.38, -1722.12], [-1793.24, -1722.2], [-1793.08, -1712.61], [-1797.94, -1712.53], [-1797.89, -1709.88], [-1802.94, -1709.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1787.4, -1723.85], [-1781.48, -1724.11], [-1781.25, -1718.83], [-1787.18, -1718.57], [-1787.4, -1723.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1769.96, -1718.23], [-1770.04, -1726.37], [-1778.78, -1726.29], [-1778.7, -1718.14], [-1769.96, -1718.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1780.78, -1703.93], [-1781.02, -1712.43], [-1772.2, -1712.69], [-1772.19, -1712.18], [-1769.26, -1712.26], [-1769.11, -1706.78], [-1769.85, -1706.76], [-1769.8, -1704.92], [-1771.99, -1704.86], [-1771.97, -1704.17], [-1780.78, -1703.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1745.04, -1671.42], [-1745.17, -1679.27], [-1732.88, -1679.49], [-1732.75, -1671.62], [-1738.55, -1671.52], [-1738.51, -1669.0], [-1743.7, -1668.91], [-1743.75, -1671.44], [-1745.04, -1671.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1744.8, -1654.81], [-1745.03, -1662.75], [-1743.83, -1662.78], [-1743.89, -1665.06], [-1738.6, -1665.21], [-1738.54, -1662.92], [-1731.1, -1663.14], [-1730.97, -1658.73], [-1733.03, -1658.67], [-1732.94, -1655.15], [-1744.8, -1654.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1739.19, -1638.44], [-1739.6, -1652.89], [-1731.6, -1653.12], [-1731.18, -1638.67], [-1733.21, -1638.61], [-1733.15, -1636.67], [-1737.41, -1636.55], [-1737.47, -1638.49], [-1739.19, -1638.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1726.83, -1640.7], [-1718.65, -1640.87], [-1718.84, -1649.9], [-1727.03, -1649.73], [-1726.83, -1640.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1717.01, -1640.4], [-1717.25, -1651.37], [-1708.95, -1651.55], [-1708.71, -1640.58], [-1717.01, -1640.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1698.34, -1638.61], [-1698.54, -1648.1], [-1690.68, -1648.28], [-1690.53, -1641.06], [-1694.45, -1640.97], [-1694.4, -1638.69], [-1698.34, -1638.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1689.35, -1639.82], [-1689.5, -1649.62], [-1681.2, -1649.75], [-1681.04, -1639.95], [-1682.25, -1639.94], [-1682.22, -1638.03], [-1687.95, -1637.94], [-1687.97, -1639.85], [-1689.35, -1639.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1675.08, -1639.9], [-1667.27, -1640.03], [-1667.44, -1650.27], [-1670.78, -1650.21], [-1670.8, -1651.59], [-1674.19, -1651.53], [-1674.17, -1650.15], [-1675.26, -1650.13], [-1675.08, -1639.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1676.46, -1671.08], [-1668.71, -1671.3], [-1668.93, -1679.02], [-1676.68, -1678.8], [-1676.46, -1671.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1686.39, -1667.71], [-1686.56, -1675.16], [-1679.14, -1675.33], [-1678.96, -1667.89], [-1686.39, -1667.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1697.44, -1669.01], [-1691.61, -1669.1], [-1691.73, -1676.4], [-1697.56, -1676.3], [-1697.44, -1669.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1726.73, -1666.92], [-1718.87, -1667.14], [-1719.11, -1675.41], [-1726.97, -1675.18], [-1726.73, -1666.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1703.67, -1697.31], [-1703.77, -1701.01], [-1700.83, -1701.09], [-1700.72, -1697.39], [-1703.67, -1697.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1682.74, -1695.51], [-1673.67, -1695.77], [-1673.88, -1703.06], [-1682.95, -1702.81], [-1682.74, -1695.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1718.07, -1688.84], [-1718.44, -1695.99], [-1708.62, -1696.48], [-1708.25, -1689.33], [-1718.07, -1688.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1744.77, -1685.9], [-1745.0, -1693.95], [-1732.55, -1694.3], [-1732.32, -1686.25], [-1744.77, -1685.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1745.2, -1697.42], [-1745.45, -1706.02], [-1728.85, -1706.49], [-1728.61, -1697.9], [-1745.2, -1697.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1677.17, -1449.17], [-1685.58, -1448.92], [-1685.86, -1458.94], [-1677.45, -1459.18], [-1677.17, -1449.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1685.53, -1470.17], [-1678.0, -1470.44], [-1678.17, -1475.28], [-1676.9, -1475.33], [-1677.27, -1485.82], [-1686.08, -1485.5], [-1685.53, -1470.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1676.42, -1472.78], [-1668.56, -1473.08], [-1669.02, -1485.58], [-1672.41, -1485.45], [-1672.43, -1486.05], [-1676.91, -1485.87], [-1676.42, -1472.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1835.12, -1229.41], [-1829.6, -1229.54], [-1829.77, -1237.18], [-1835.3, -1237.06], [-1835.12, -1229.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1858.92, -1229.15], [-1859.39, -1241.25], [-1848.02, -1241.68], [-1847.93, -1239.48], [-1846.31, -1239.54], [-1846.06, -1232.87], [-1848.51, -1232.77], [-1848.38, -1229.56], [-1858.92, -1229.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1858.95, -1217.98], [-1859.23, -1225.31], [-1854.14, -1225.5], [-1854.19, -1226.81], [-1846.72, -1227.09], [-1846.56, -1223.03], [-1845.34, -1223.08], [-1845.22, -1219.91], [-1846.45, -1219.86], [-1846.4, -1218.45], [-1852.84, -1218.21], [-1852.77, -1216.44], [-1858.07, -1216.24], [-1858.13, -1218.02], [-1858.95, -1217.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1135.42, 98.37], [-1170.3, 100.11], [-1169.77, 110.5], [-1191.69, 111.59], [-1192.03, 104.72], [-1192.77, 104.76], [-1192.87, 102.71], [-1193.29, 94.13], [-1169.74, 92.99], [-1163.15, 89.11], [-1163.74, 77.43], [-1158.57, 77.17], [-1140.7, 76.28], [-1136.54, 76.07], [-1135.42, 98.37]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2110.29, -1100.09], [-2117.72, -1099.88], [-2118.08, -1112.61], [-2110.66, -1112.82], [-2110.29, -1100.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2107.01, -1103.6], [-2107.27, -1113.1], [-2097.77, -1113.36], [-2097.58, -1106.6], [-2100.2, -1106.54], [-2100.13, -1103.79], [-2107.01, -1103.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2095.18, -1096.8], [-2086.12, -1097.11], [-2086.67, -1113.36], [-2095.73, -1113.05], [-2095.18, -1096.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2083.09, -1102.01], [-2075.65, -1102.23], [-2075.72, -1104.35], [-2075.26, -1104.37], [-2075.47, -1110.84], [-2075.91, -1110.83], [-2075.98, -1112.79], [-2076.78, -1112.77], [-2076.84, -1115.11], [-2082.75, -1114.93], [-2082.67, -1112.58], [-2083.42, -1112.56], [-2083.09, -1102.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2073.7, -1102.72], [-2073.81, -1106.42], [-2074.68, -1106.39], [-2074.84, -1112.06], [-2071.89, -1112.14], [-2071.94, -1113.61], [-2068.12, -1113.72], [-2068.07, -1112.25], [-2065.84, -1112.32], [-2065.57, -1102.96], [-2066.6, -1102.93], [-2066.56, -1101.46], [-2070.55, -1101.35], [-2070.59, -1102.81], [-2073.7, -1102.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2071.43, -1074.97], [-2065.03, -1075.09], [-2065.17, -1081.74], [-2071.56, -1081.61], [-2071.43, -1074.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1953.1, -1080.38], [-1947.53, -1080.52], [-1947.66, -1086.18], [-1953.23, -1086.05], [-1953.1, -1080.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1980.66, -1100.58], [-1990.08, -1100.27], [-1990.52, -1113.93], [-1981.1, -1114.24], [-1980.66, -1100.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1953.17, -1100.7], [-1953.46, -1113.74], [-1944.51, -1113.94], [-1944.29, -1104.59], [-1946.43, -1104.54], [-1946.35, -1100.85], [-1953.17, -1100.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1966.16, -1104.17], [-1957.19, -1104.55], [-1957.63, -1114.93], [-1958.64, -1114.89], [-1958.72, -1116.85], [-1965.76, -1116.54], [-1965.68, -1114.6], [-1966.59, -1114.56], [-1966.16, -1104.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1977.58, -1080.96], [-1977.9, -1092.78], [-1968.78, -1093.03], [-1968.45, -1081.21], [-1969.11, -1081.19], [-1969.06, -1079.46], [-1976.49, -1079.26], [-1976.53, -1080.99], [-1977.58, -1080.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1965.8, -1078.81], [-1957.44, -1079.03], [-1957.83, -1094.7], [-1966.2, -1094.48], [-1965.8, -1078.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2223.02, -1018.76], [-2223.39, -1030.31], [-2230.81, -1030.08], [-2230.44, -1018.52], [-2229.92, -1018.54], [-2229.85, -1016.45], [-2223.6, -1016.65], [-2223.67, -1018.75], [-2223.02, -1018.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2176.88, -1020.29], [-2177.23, -1029.74], [-2168.88, -1030.04], [-2168.52, -1020.6], [-2176.88, -1020.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2188.28, -1031.78], [-2182.44, -1031.94], [-2182.41, -1031.05], [-2181.3, -1031.08], [-2181.25, -1029.39], [-2180.07, -1029.42], [-2179.79, -1019.22], [-2187.93, -1018.99], [-2188.28, -1031.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2198.06, -1029.33], [-2197.67, -1018.49], [-2189.78, -1018.77], [-2190.17, -1029.6], [-2192.6, -1029.52], [-2192.65, -1031.04], [-2196.97, -1030.89], [-2196.91, -1029.36], [-2198.06, -1029.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2209.61, -1016.58], [-2200.88, -1016.95], [-2201.42, -1029.41], [-2210.15, -1029.04], [-2209.61, -1016.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2219.7, -1016.54], [-2213.21, -1016.8], [-2213.73, -1029.15], [-2220.22, -1028.88], [-2219.7, -1016.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2220.47, -1045.76], [-2211.45, -1046.03], [-2211.77, -1056.34], [-2212.26, -1056.33], [-2212.32, -1058.24], [-2220.39, -1058.0], [-2220.32, -1055.93], [-2220.77, -1055.92], [-2220.47, -1045.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2209.62, -1046.22], [-2201.2, -1046.58], [-2201.71, -1058.71], [-2210.14, -1058.35], [-2209.62, -1046.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2198.42, -1046.67], [-2198.97, -1058.66], [-2191.0, -1059.02], [-2190.46, -1047.03], [-2193.96, -1046.87], [-2193.89, -1045.28], [-2196.34, -1045.17], [-2196.41, -1046.76], [-2198.42, -1046.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2188.17, -1047.33], [-2179.99, -1047.65], [-2180.36, -1056.79], [-2181.13, -1056.76], [-2181.21, -1058.66], [-2188.03, -1058.38], [-2187.95, -1056.48], [-2188.54, -1056.46], [-2188.17, -1047.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2229.27, -1097.77], [-2220.95, -1098.08], [-2221.46, -1111.35], [-2229.78, -1111.03], [-2229.27, -1097.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2219.24, -1098.34], [-2215.95, -1098.42], [-2215.96, -1099.13], [-2213.91, -1099.19], [-2213.93, -1100.01], [-2212.03, -1100.05], [-2212.31, -1111.51], [-2219.55, -1111.33], [-2219.24, -1098.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2210.5, -1095.04], [-2200.7, -1095.44], [-2201.03, -1103.31], [-2198.2, -1103.43], [-2198.41, -1108.34], [-2211.03, -1107.82], [-2210.5, -1095.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2185.36, -1100.72], [-2185.64, -1110.4], [-2178.27, -1110.61], [-2177.99, -1100.93], [-2185.36, -1100.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2174.51, -1095.75], [-2165.95, -1096.05], [-2166.53, -1112.53], [-2175.09, -1112.23], [-2174.51, -1095.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2156.67, -1100.0], [-2157.11, -1115.99], [-2139.04, -1116.48], [-2138.6, -1100.49], [-2156.67, -1100.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2151.53, -1085.29], [-2142.53, -1085.55], [-2142.62, -1088.72], [-2140.68, -1088.77], [-2140.83, -1094.16], [-2142.77, -1094.1], [-2142.8, -1094.91], [-2151.8, -1094.66], [-2151.53, -1085.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2160.1, -1075.14], [-2156.55, -1075.27], [-2156.83, -1082.89], [-2160.37, -1082.76], [-2160.1, -1075.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2156.04, -1073.83], [-2152.59, -1073.93], [-2152.78, -1080.83], [-2156.23, -1080.75], [-2156.04, -1073.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2150.95, -1072.74], [-2142.39, -1073.04], [-2142.43, -1074.17], [-2141.2, -1074.22], [-2141.4, -1080.04], [-2142.64, -1080.0], [-2142.7, -1081.79], [-2151.26, -1081.5], [-2150.95, -1072.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2183.66, -1073.7], [-2184.06, -1083.15], [-2176.09, -1083.49], [-2175.69, -1074.04], [-2176.51, -1074.01], [-2176.43, -1072.09], [-2182.81, -1071.81], [-2182.9, -1073.73], [-2183.66, -1073.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2229.51, -1070.23], [-2229.98, -1082.41], [-2238.55, -1082.07], [-2238.07, -1069.89], [-2229.51, -1070.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2223.84, -1070.54], [-2215.98, -1070.76], [-2216.29, -1081.53], [-2219.18, -1081.45], [-2219.22, -1082.86], [-2224.19, -1082.72], [-2223.84, -1070.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2206.91, -1071.73], [-2207.14, -1079.68], [-2191.11, -1080.15], [-2190.88, -1072.18], [-2206.91, -1071.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2276.99, -1707.24], [-2277.28, -1711.01], [-2279.12, -1710.87], [-2279.5, -1715.88], [-2267.38, -1716.8], [-2266.72, -1708.02], [-2276.99, -1707.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2261.39, -1704.31], [-2261.48, -1707.37], [-2255.64, -1707.53], [-2255.55, -1704.48], [-2261.39, -1704.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2253.89, -1706.98], [-2254.17, -1716.38], [-2240.51, -1716.78], [-2240.24, -1707.39], [-2253.89, -1706.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2239.86, -1692.9], [-2240.01, -1697.36], [-2241.56, -1697.31], [-2241.67, -1700.37], [-2242.91, -1700.32], [-2243.0, -1703.03], [-2251.74, -1702.73], [-2251.39, -1692.52], [-2239.86, -1692.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2280.13, -1692.78], [-2280.45, -1702.21], [-2269.04, -1702.59], [-2268.79, -1695.02], [-2271.29, -1694.94], [-2271.23, -1693.08], [-2280.13, -1692.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2249.39, -1678.83], [-2239.98, -1679.07], [-2240.2, -1687.28], [-2242.38, -1687.22], [-2242.47, -1690.64], [-2247.27, -1690.51], [-2247.18, -1687.06], [-2249.6, -1686.99], [-2249.39, -1678.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2282.11, -1681.21], [-2282.44, -1689.62], [-2270.92, -1690.07], [-2270.59, -1681.64], [-2282.11, -1681.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2280.1, -1667.07], [-2280.38, -1675.09], [-2270.44, -1675.43], [-2270.17, -1667.41], [-2280.1, -1667.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2255.36, -1665.34], [-2255.43, -1668.17], [-2252.74, -1668.25], [-2252.97, -1676.49], [-2238.44, -1676.89], [-2238.2, -1668.27], [-2244.94, -1668.08], [-2244.92, -1667.48], [-2249.02, -1667.37], [-2248.97, -1665.52], [-2255.36, -1665.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2249.67, -1651.94], [-2249.94, -1663.4], [-2239.18, -1663.66], [-2238.91, -1652.2], [-2249.67, -1651.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2278.97, -1652.19], [-2278.99, -1652.95], [-2280.84, -1652.89], [-2281.07, -1660.84], [-2279.22, -1660.9], [-2279.24, -1661.76], [-2266.63, -1662.13], [-2266.35, -1652.55], [-2278.97, -1652.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2281.5, -1641.36], [-2281.74, -1649.61], [-2269.4, -1649.97], [-2269.15, -1641.72], [-2281.5, -1641.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2278.02, -1625.1], [-2278.17, -1633.24], [-2268.56, -1633.4], [-2268.41, -1625.26], [-2278.02, -1625.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2251.16, -1629.6], [-2251.3, -1634.2], [-2254.62, -1634.09], [-2254.84, -1641.21], [-2247.74, -1641.44], [-2247.54, -1634.88], [-2239.31, -1635.13], [-2239.03, -1625.96], [-2248.86, -1625.66], [-2248.98, -1629.68], [-2251.16, -1629.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2248.94, -1611.45], [-2249.32, -1621.11], [-2244.86, -1621.28], [-2244.78, -1619.28], [-2242.86, -1619.36], [-2242.95, -1621.36], [-2238.84, -1621.52], [-2238.35, -1608.93], [-2244.3, -1608.7], [-2244.42, -1611.62], [-2248.94, -1611.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2277.49, -1613.02], [-2277.74, -1620.46], [-2266.48, -1620.83], [-2266.26, -1613.92], [-2269.21, -1613.82], [-2269.03, -1608.38], [-2274.9, -1608.19], [-2275.06, -1613.1], [-2277.49, -1613.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2277.52, -1593.87], [-2277.72, -1603.6], [-2265.65, -1603.86], [-2265.45, -1594.13], [-2277.52, -1593.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2257.77, -1600.96], [-2257.98, -1606.59], [-2251.65, -1606.83], [-2251.44, -1601.2], [-2257.77, -1600.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2246.81, -1594.69], [-2247.09, -1603.47], [-2235.47, -1603.84], [-2235.19, -1595.07], [-2246.81, -1594.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2249.87, -1578.27], [-2250.01, -1581.32], [-2245.96, -1581.5], [-2246.38, -1590.97], [-2235.26, -1591.47], [-2234.82, -1581.75], [-2241.96, -1581.43], [-2241.83, -1578.63], [-2249.87, -1578.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2276.33, -1579.41], [-2268.7, -1579.53], [-2268.84, -1587.96], [-2271.33, -1587.92], [-2271.36, -1589.28], [-2274.25, -1589.23], [-2274.22, -1587.87], [-2276.47, -1587.84], [-2276.33, -1579.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2263.91, -1586.62], [-2259.1, -1586.64], [-2259.12, -1590.77], [-2263.92, -1590.76], [-2263.91, -1586.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2267.46, -1576.66], [-2267.54, -1579.66], [-2261.81, -1579.83], [-2261.72, -1576.83], [-2267.46, -1576.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2278.73, -1563.92], [-2278.91, -1572.75], [-2263.82, -1573.07], [-2263.67, -1566.13], [-2265.6, -1566.1], [-2265.57, -1564.19], [-2278.73, -1563.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2276.26, -1548.48], [-2276.3, -1549.73], [-2277.99, -1549.68], [-2278.19, -1556.59], [-2276.5, -1556.64], [-2276.53, -1557.62], [-2263.8, -1557.98], [-2263.54, -1548.84], [-2276.26, -1548.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2263.37, -1557.18], [-2263.53, -1560.99], [-2257.54, -1561.26], [-2257.36, -1557.46], [-2263.37, -1557.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2245.35, -1554.78], [-2235.54, -1555.17], [-2235.62, -1557.0], [-2233.95, -1557.06], [-2234.17, -1562.56], [-2235.83, -1562.49], [-2235.91, -1564.22], [-2239.62, -1564.07], [-2239.83, -1569.2], [-2247.44, -1568.89], [-2247.22, -1563.45], [-2245.7, -1563.52], [-2245.35, -1554.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2244.24, -1543.85], [-2236.31, -1544.15], [-2236.63, -1552.89], [-2244.56, -1552.61], [-2244.24, -1543.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2243.92, -1531.89], [-2235.92, -1532.13], [-2236.2, -1541.27], [-2244.2, -1541.03], [-2244.14, -1539.02], [-2245.88, -1538.96], [-2245.77, -1535.64], [-2244.04, -1535.7], [-2243.92, -1531.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2277.38, -1533.91], [-2277.77, -1542.9], [-2266.74, -1543.38], [-2266.35, -1534.39], [-2277.38, -1533.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2275.52, -1522.58], [-2275.72, -1527.71], [-2270.09, -1527.93], [-2269.89, -1522.8], [-2275.52, -1522.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2242.4, -1522.75], [-2236.9, -1522.88], [-2237.03, -1528.16], [-2242.51, -1528.03], [-2242.4, -1522.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2242.78, -1506.51], [-2233.71, -1506.82], [-2234.07, -1517.05], [-2236.12, -1516.98], [-2236.21, -1519.8], [-2240.75, -1519.64], [-2240.65, -1516.82], [-2243.14, -1516.74], [-2242.78, -1506.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2254.04, -1505.5], [-2254.54, -1517.85], [-2255.52, -1517.81], [-2255.73, -1522.85], [-2245.52, -1523.26], [-2244.82, -1505.87], [-2245.85, -1505.83], [-2245.78, -1503.95], [-2252.99, -1503.66], [-2253.07, -1505.54], [-2254.04, -1505.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2251.13, -1524.04], [-2256.59, -1523.88], [-2256.71, -1527.97], [-2251.25, -1528.12], [-2251.13, -1524.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2260.7, -1518.14], [-2256.77, -1518.28], [-2256.99, -1524.27], [-2260.91, -1524.12], [-2260.7, -1518.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2266.22, -1503.24], [-2257.72, -1503.61], [-2258.23, -1515.35], [-2263.23, -1515.14], [-2263.29, -1516.64], [-2266.79, -1516.48], [-2266.22, -1503.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2278.11, -1502.81], [-2278.48, -1517.34], [-2268.82, -1517.59], [-2268.45, -1503.06], [-2278.11, -1502.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1978.11, -1775.41], [-1978.25, -1779.18], [-1973.02, -1779.38], [-1972.88, -1775.59], [-1978.11, -1775.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1969.82, -1780.86], [-1961.98, -1781.08], [-1962.21, -1788.92], [-1970.03, -1788.7], [-1969.82, -1780.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1945.4, -1789.07], [-1945.14, -1781.76], [-1952.56, -1781.5], [-1952.82, -1788.81], [-1945.4, -1789.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1944.07, -1782.74], [-1937.05, -1783.01], [-1937.29, -1789.43], [-1944.31, -1789.16], [-1944.07, -1782.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2029.19, -1748.43], [-2029.47, -1756.66], [-2018.34, -1757.06], [-2018.13, -1750.57], [-2021.01, -1750.47], [-2020.95, -1748.73], [-2021.14, -1748.72], [-2021.04, -1745.84], [-2023.9, -1745.75], [-2024.0, -1748.62], [-2029.19, -1748.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2003.95, -1748.73], [-2012.47, -1748.42], [-2012.61, -1752.02], [-2013.68, -1751.98], [-2013.93, -1758.92], [-2012.86, -1758.96], [-2012.99, -1762.57], [-2004.47, -1762.88], [-2003.95, -1748.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1999.64, -1753.22], [-2000.13, -1765.57], [-1991.01, -1765.92], [-1990.53, -1753.58], [-1991.52, -1753.54], [-1991.42, -1750.92], [-1998.35, -1750.65], [-1998.46, -1753.27], [-1999.64, -1753.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1981.6, -1750.8], [-1981.64, -1752.66], [-1983.74, -1752.62], [-1983.81, -1755.96], [-1981.72, -1756.01], [-1981.81, -1759.93], [-1972.64, -1760.13], [-1972.43, -1750.99], [-1981.6, -1750.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1968.86, -1752.3], [-1969.25, -1763.42], [-1960.9, -1763.72], [-1960.51, -1752.59], [-1961.16, -1752.57], [-1961.07, -1750.14], [-1968.01, -1749.9], [-1968.09, -1752.33], [-1968.86, -1752.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1954.5, -1752.1], [-1954.96, -1766.22], [-1947.7, -1766.46], [-1947.24, -1752.34], [-1949.73, -1752.26], [-1949.67, -1750.62], [-1953.55, -1750.5], [-1953.61, -1752.12], [-1954.5, -1752.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1942.33, -1751.42], [-1933.1, -1751.69], [-1933.43, -1763.23], [-1934.35, -1763.2], [-1934.46, -1766.84], [-1941.94, -1766.63], [-1941.84, -1762.99], [-1942.66, -1762.96], [-1942.33, -1751.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1930.5, -1752.85], [-1921.3, -1753.17], [-1921.62, -1762.91], [-1930.84, -1762.59], [-1930.5, -1752.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1919.63, -1754.8], [-1911.05, -1755.0], [-1911.3, -1765.67], [-1919.89, -1765.46], [-1919.63, -1754.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1908.78, -1755.39], [-1900.14, -1755.63], [-1900.46, -1766.67], [-1909.09, -1766.43], [-1908.78, -1755.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1920.55, -1767.95], [-1920.81, -1776.93], [-1912.68, -1777.16], [-1912.42, -1768.19], [-1920.55, -1767.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1914.32, -1781.08], [-1914.61, -1788.89], [-1906.44, -1789.19], [-1906.15, -1781.39], [-1914.32, -1781.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2205.11, -1508.43], [-2195.15, -1508.65], [-2195.3, -1515.55], [-2198.75, -1515.47], [-2198.83, -1519.35], [-2204.98, -1519.21], [-2204.89, -1515.52], [-2205.26, -1515.51], [-2205.11, -1508.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2190.22, -1510.29], [-2180.41, -1510.48], [-2180.64, -1522.99], [-2190.46, -1522.81], [-2190.22, -1510.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2174.26, -1513.68], [-2167.48, -1513.87], [-2167.51, -1514.9], [-2165.07, -1514.96], [-2165.5, -1529.94], [-2174.71, -1529.68], [-2174.26, -1513.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2161.64, -1507.09], [-2161.8, -1516.72], [-2152.46, -1516.88], [-2152.31, -1508.26], [-2158.64, -1508.15], [-2158.63, -1507.14], [-2161.64, -1507.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2149.5, -1507.75], [-2149.73, -1516.57], [-2140.88, -1516.8], [-2140.74, -1511.7], [-2139.24, -1511.73], [-2139.11, -1506.61], [-2144.56, -1506.47], [-2144.59, -1507.89], [-2149.5, -1507.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2135.94, -1507.05], [-2127.0, -1507.34], [-2127.41, -1519.85], [-2136.36, -1519.55], [-2135.94, -1507.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2131.52, -1529.38], [-2139.0, -1529.16], [-2139.16, -1534.54], [-2142.54, -1534.44], [-2142.69, -1539.83], [-2130.37, -1540.2], [-2130.21, -1534.71], [-2131.68, -1534.67], [-2131.52, -1529.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2146.57, -1544.53], [-2146.8, -1552.47], [-2131.84, -1552.9], [-2131.62, -1544.96], [-2146.57, -1544.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2148.16, -1556.76], [-2148.34, -1565.26], [-2142.43, -1565.38], [-2142.47, -1567.07], [-2134.03, -1567.26], [-2134.02, -1566.39], [-2131.77, -1566.44], [-2131.6, -1558.93], [-2133.86, -1558.88], [-2133.83, -1558.1], [-2139.94, -1557.97], [-2139.92, -1556.94], [-2148.16, -1556.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2176.5, -1555.87], [-2176.75, -1562.25], [-2167.2, -1562.62], [-2166.87, -1554.13], [-2175.0, -1553.81], [-2175.08, -1555.92], [-2176.5, -1555.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2176.04, -1543.65], [-2182.56, -1543.41], [-2182.8, -1549.78], [-2176.28, -1550.03], [-2176.04, -1543.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2189.97, -1551.6], [-2190.42, -1563.21], [-2181.3, -1563.56], [-2180.85, -1551.95], [-2182.81, -1551.87], [-2182.75, -1550.31], [-2187.33, -1550.13], [-2187.39, -1551.7], [-2189.97, -1551.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2201.68, -1552.59], [-2194.17, -1552.87], [-2194.6, -1564.03], [-2202.11, -1563.73], [-2201.68, -1552.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2206.04, -1550.95], [-2215.72, -1550.59], [-2216.24, -1564.39], [-2211.56, -1564.56], [-2211.43, -1561.27], [-2206.43, -1561.45], [-2206.04, -1550.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2197.5, -1542.14], [-2191.63, -1542.19], [-2191.68, -1547.86], [-2197.55, -1547.8], [-2197.5, -1542.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2212.75, -1530.76], [-2212.81, -1534.24], [-2215.1, -1534.2], [-2215.2, -1539.15], [-2205.55, -1539.33], [-2205.54, -1538.76], [-2198.86, -1538.89], [-2198.75, -1532.92], [-2202.46, -1532.85], [-2202.42, -1530.95], [-2212.75, -1530.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2214.66, -1523.18], [-2214.69, -1529.09], [-2207.86, -1529.12], [-2207.83, -1523.22], [-2214.66, -1523.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2214.52, -1508.59], [-2206.21, -1508.8], [-2206.51, -1521.32], [-2209.57, -1521.24], [-2209.6, -1522.24], [-2212.66, -1522.16], [-2212.64, -1521.16], [-2214.82, -1521.11], [-2214.52, -1508.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2145.08, -1571.38], [-2145.2, -1575.6], [-2143.55, -1575.65], [-2143.69, -1580.26], [-2132.5, -1580.58], [-2132.24, -1571.76], [-2145.08, -1571.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2144.29, -1591.57], [-2144.11, -1585.18], [-2134.55, -1585.45], [-2134.56, -1586.01], [-2132.88, -1586.06], [-2133.03, -1591.24], [-2134.71, -1591.19], [-2134.73, -1591.84], [-2144.29, -1591.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2161.66, -1581.04], [-2161.73, -1585.31], [-2155.56, -1585.42], [-2155.48, -1581.16], [-2161.66, -1581.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2176.16, -1584.49], [-2176.5, -1593.81], [-2167.93, -1594.12], [-2167.58, -1584.8], [-2168.84, -1584.75], [-2168.78, -1582.97], [-2174.89, -1582.75], [-2174.95, -1584.53], [-2176.16, -1584.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2188.11, -1582.54], [-2180.89, -1582.66], [-2181.04, -1592.07], [-2188.26, -1591.95], [-2188.25, -1591.37], [-2192.25, -1591.3], [-2192.14, -1584.7], [-2188.15, -1584.76], [-2188.11, -1582.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2213.56, -1580.43], [-2213.58, -1581.14], [-2215.9, -1581.09], [-2216.06, -1587.94], [-2213.74, -1588.0], [-2213.75, -1588.42], [-2202.76, -1588.68], [-2202.77, -1589.3], [-2193.53, -1589.52], [-2193.37, -1582.64], [-2199.33, -1582.5], [-2199.41, -1585.79], [-2202.88, -1585.7], [-2202.76, -1580.69], [-2213.56, -1580.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2216.04, -1590.65], [-2216.05, -1591.2], [-2217.78, -1591.18], [-2217.8, -1594.62], [-2216.08, -1594.63], [-2216.11, -1597.19], [-2215.77, -1597.19], [-2215.83, -1602.53], [-2207.57, -1602.6], [-2207.5, -1594.93], [-2201.43, -1594.99], [-2201.39, -1591.34], [-2207.47, -1591.28], [-2207.46, -1590.74], [-2216.04, -1590.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2206.82, -1611.43], [-2206.9, -1615.62], [-2201.15, -1615.73], [-2201.07, -1611.53], [-2206.82, -1611.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2215.39, -1604.13], [-2215.41, -1604.78], [-2217.48, -1604.72], [-2217.6, -1608.92], [-2215.52, -1608.96], [-2215.64, -1613.16], [-2207.34, -1613.39], [-2207.09, -1604.36], [-2215.39, -1604.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2215.41, -1616.29], [-2215.67, -1626.73], [-2210.84, -1626.85], [-2210.78, -1624.46], [-2206.89, -1624.56], [-2206.84, -1622.46], [-2202.78, -1622.56], [-2202.62, -1616.3], [-2207.65, -1616.18], [-2207.65, -1616.48], [-2215.41, -1616.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2199.44, -1615.85], [-2193.69, -1615.91], [-2193.76, -1624.57], [-2199.52, -1624.51], [-2199.44, -1615.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2193.05, -1604.66], [-2188.3, -1604.8], [-2188.47, -1610.45], [-2193.21, -1610.32], [-2193.05, -1604.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2188.97, -1613.61], [-2189.29, -1623.72], [-2187.17, -1623.78], [-2187.25, -1626.16], [-2182.0, -1626.33], [-2181.93, -1623.96], [-2181.15, -1623.98], [-2180.83, -1613.86], [-2188.97, -1613.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2179.11, -1616.11], [-2179.47, -1624.27], [-2178.64, -1624.31], [-2178.69, -1625.54], [-2172.63, -1625.8], [-2172.58, -1624.56], [-2171.34, -1624.61], [-2170.98, -1616.46], [-2171.97, -1616.42], [-2171.84, -1613.34], [-2178.0, -1613.08], [-2178.14, -1616.15], [-2179.11, -1616.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2143.22, -1593.82], [-2133.87, -1594.17], [-2133.92, -1595.85], [-2132.49, -1595.9], [-2132.72, -1602.26], [-2134.16, -1602.21], [-2134.21, -1603.58], [-2143.57, -1603.24], [-2143.39, -1598.57], [-2144.2, -1598.54], [-2144.05, -1594.51], [-2143.24, -1594.54], [-2143.22, -1593.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2147.38, -1614.77], [-2147.34, -1613.16], [-2149.24, -1613.11], [-2149.18, -1610.45], [-2147.28, -1610.49], [-2147.19, -1607.0], [-2134.82, -1607.29], [-2134.85, -1608.12], [-2132.79, -1608.17], [-2132.94, -1614.32], [-2134.99, -1614.28], [-2135.01, -1615.05], [-2147.38, -1614.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2162.2, -1611.43], [-2156.69, -1611.8], [-2157.07, -1617.5], [-2162.59, -1617.13], [-2162.2, -1611.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2146.96, -1618.89], [-2146.98, -1619.65], [-2150.28, -1619.54], [-2150.49, -1625.86], [-2147.18, -1625.96], [-2147.24, -1627.66], [-2132.66, -1628.14], [-2132.37, -1619.36], [-2146.96, -1618.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2154.28, -1626.42], [-2154.53, -1631.04], [-2149.03, -1631.35], [-2148.77, -1626.72], [-2154.28, -1626.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2147.88, -1632.69], [-2148.11, -1641.9], [-2135.71, -1642.2], [-2135.48, -1632.99], [-2147.88, -1632.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2147.73, -1645.77], [-2148.02, -1655.94], [-2135.9, -1656.29], [-2135.79, -1652.76], [-2134.21, -1652.8], [-2134.11, -1649.42], [-2135.7, -1649.38], [-2135.6, -1646.11], [-2147.73, -1645.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2143.69, -1657.32], [-2143.89, -1664.89], [-2135.47, -1665.12], [-2135.46, -1664.75], [-2133.51, -1664.79], [-2133.35, -1658.65], [-2135.29, -1658.59], [-2135.26, -1657.55], [-2143.69, -1657.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2144.99, -1671.06], [-2145.03, -1672.42], [-2147.55, -1672.34], [-2147.72, -1677.72], [-2145.2, -1677.8], [-2145.24, -1678.84], [-2133.72, -1679.2], [-2133.47, -1671.43], [-2144.99, -1671.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2178.17, -1645.1], [-2173.96, -1645.2], [-2173.98, -1645.83], [-2172.78, -1645.86], [-2172.77, -1645.32], [-2168.72, -1645.42], [-2168.94, -1655.18], [-2178.4, -1654.96], [-2178.17, -1645.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2191.64, -1644.16], [-2192.09, -1657.72], [-2190.83, -1657.76], [-2190.88, -1659.33], [-2187.77, -1659.43], [-2187.72, -1657.87], [-2183.21, -1658.01], [-2182.77, -1644.45], [-2191.64, -1644.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2194.94, -1659.82], [-2190.97, -1659.97], [-2191.19, -1666.0], [-2195.17, -1665.86], [-2194.94, -1659.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2202.92, -1659.86], [-2203.19, -1664.94], [-2196.2, -1665.3], [-2195.94, -1660.23], [-2202.92, -1659.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2208.09, -1655.78], [-2208.23, -1658.68], [-2206.36, -1658.77], [-2206.49, -1661.57], [-2208.36, -1661.49], [-2208.38, -1661.8], [-2216.51, -1661.42], [-2216.22, -1655.4], [-2208.09, -1655.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2201.23, -1644.94], [-2195.33, -1645.11], [-2195.52, -1651.8], [-2201.43, -1651.63], [-2201.23, -1644.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2216.29, -1642.16], [-2216.53, -1650.65], [-2204.68, -1650.99], [-2204.44, -1642.5], [-2216.29, -1642.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2149.96, -1683.36], [-2150.2, -1692.63], [-2132.7, -1693.07], [-2132.55, -1686.87], [-2133.76, -1686.85], [-2133.69, -1683.76], [-2149.96, -1683.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2148.49, -1694.69], [-2141.36, -1694.86], [-2141.51, -1701.31], [-2148.64, -1701.14], [-2148.49, -1694.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2142.21, -1703.04], [-2142.62, -1717.21], [-2133.28, -1717.48], [-2132.87, -1703.32], [-2137.54, -1703.18], [-2137.47, -1700.51], [-2141.23, -1700.4], [-2141.31, -1703.07], [-2142.21, -1703.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2174.05, -1666.95], [-2182.24, -1666.8], [-2182.29, -1669.38], [-2183.15, -1669.37], [-2183.3, -1677.34], [-2174.24, -1677.52], [-2174.05, -1666.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2168.7, -1705.34], [-2168.92, -1714.37], [-2165.09, -1714.46], [-2165.16, -1717.38], [-2158.92, -1717.52], [-2158.86, -1714.6], [-2157.67, -1714.64], [-2157.45, -1705.61], [-2168.7, -1705.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2168.24, -1692.98], [-2159.22, -1693.24], [-2159.46, -1701.4], [-2168.47, -1701.14], [-2168.24, -1692.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2183.06, -1691.68], [-2171.29, -1691.94], [-2171.64, -1707.49], [-2170.8, -1707.5], [-2170.94, -1713.79], [-2177.57, -1713.64], [-2177.55, -1712.69], [-2183.52, -1712.56], [-2183.06, -1691.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2201.44, -1700.52], [-2201.76, -1712.39], [-2189.69, -1712.72], [-2189.37, -1700.83], [-2191.14, -1700.78], [-2191.06, -1697.61], [-2198.7, -1697.4], [-2198.78, -1700.59], [-2201.44, -1700.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2213.67, -1668.29], [-2213.83, -1677.82], [-2196.07, -1678.12], [-2195.91, -1668.59], [-2213.67, -1668.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2191.59, -1674.63], [-2184.19, -1674.85], [-2184.48, -1684.87], [-2186.51, -1684.81], [-2186.7, -1691.27], [-2195.48, -1691.02], [-2195.28, -1684.01], [-2191.87, -1684.11], [-2191.59, -1674.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1986.94, -1589.76], [-1987.26, -1600.58], [-1985.76, -1600.62], [-1985.83, -1602.9], [-1979.93, -1603.06], [-1979.87, -1600.79], [-1978.42, -1600.84], [-1978.06, -1588.75], [-1982.47, -1588.62], [-1982.51, -1589.9], [-1986.94, -1589.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1974.44, -1591.18], [-1974.78, -1603.36], [-1964.01, -1603.65], [-1963.68, -1591.48], [-1964.34, -1591.46], [-1964.3, -1590.0], [-1970.69, -1589.81], [-1970.73, -1591.29], [-1974.44, -1591.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1956.55, -1576.11], [-1956.7, -1580.56], [-1951.07, -1580.74], [-1950.93, -1576.31], [-1956.55, -1576.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1961.48, -1587.6], [-1956.02, -1587.81], [-1956.1, -1589.85], [-1952.01, -1590.01], [-1952.56, -1604.01], [-1962.11, -1603.63], [-1961.48, -1587.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1938.57, -1587.28], [-1945.56, -1587.07], [-1945.72, -1592.45], [-1947.68, -1592.4], [-1947.94, -1601.09], [-1945.1, -1601.18], [-1945.12, -1602.17], [-1939.01, -1602.35], [-1938.57, -1587.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1934.22, -1590.82], [-1925.98, -1591.05], [-1926.09, -1595.08], [-1924.89, -1595.12], [-1925.02, -1599.79], [-1926.33, -1599.76], [-1926.46, -1604.22], [-1930.12, -1604.11], [-1930.15, -1605.09], [-1933.97, -1604.98], [-1933.82, -1599.54], [-1934.47, -1599.52], [-1934.22, -1590.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1922.56, -1584.88], [-1922.76, -1589.9], [-1916.43, -1590.16], [-1916.23, -1585.14], [-1922.56, -1584.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1918.98, -1577.86], [-1919.16, -1583.96], [-1912.01, -1584.16], [-1911.83, -1578.06], [-1918.98, -1577.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1910.68, -1598.95], [-1902.21, -1599.15], [-1902.3, -1603.11], [-1900.6, -1603.15], [-1900.71, -1608.21], [-1910.89, -1607.99], [-1910.82, -1604.88], [-1911.83, -1604.86], [-1911.76, -1601.76], [-1910.74, -1601.78], [-1910.68, -1598.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1911.96, -1588.03], [-1912.14, -1596.44], [-1894.51, -1596.83], [-1894.31, -1588.42], [-1911.96, -1588.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1907.1, -1576.62], [-1907.21, -1579.51], [-1911.24, -1579.35], [-1911.42, -1583.88], [-1907.39, -1584.04], [-1907.4, -1584.45], [-1898.24, -1584.81], [-1897.92, -1576.98], [-1898.47, -1576.97], [-1898.35, -1574.12], [-1904.09, -1573.88], [-1904.2, -1576.74], [-1907.1, -1576.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1906.14, -1564.42], [-1903.74, -1564.51], [-1903.65, -1561.99], [-1898.46, -1562.18], [-1898.56, -1564.7], [-1897.59, -1564.73], [-1897.87, -1572.54], [-1906.42, -1572.23], [-1906.14, -1564.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1912.62, -1551.47], [-1912.86, -1559.71], [-1899.86, -1560.08], [-1899.84, -1559.4], [-1897.36, -1559.47], [-1897.16, -1552.4], [-1899.64, -1552.33], [-1899.62, -1551.85], [-1912.62, -1551.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1949.86, -1560.8], [-1950.21, -1569.04], [-1941.48, -1569.41], [-1941.13, -1561.16], [-1949.86, -1560.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1973.64, -1559.27], [-1973.75, -1566.89], [-1965.11, -1567.0], [-1965.01, -1559.39], [-1973.64, -1559.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1971.53, -1538.62], [-1971.77, -1546.88], [-1964.29, -1547.11], [-1964.04, -1538.83], [-1971.53, -1538.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1981.19, -1512.25], [-1981.61, -1524.08], [-1981.0, -1524.1], [-1981.04, -1525.21], [-1977.11, -1525.35], [-1977.07, -1524.24], [-1973.22, -1524.38], [-1972.8, -1512.55], [-1981.19, -1512.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1971.1, -1512.43], [-1962.47, -1512.65], [-1962.76, -1524.68], [-1963.42, -1524.66], [-1963.44, -1525.67], [-1966.07, -1525.6], [-1966.05, -1524.59], [-1971.4, -1524.46], [-1971.1, -1512.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1907.74, -1511.6], [-1907.99, -1518.6], [-1904.64, -1518.72], [-1904.66, -1519.29], [-1894.14, -1519.65], [-1893.88, -1512.08], [-1907.74, -1511.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1908.13, -1520.63], [-1908.43, -1528.3], [-1905.16, -1528.43], [-1905.19, -1529.22], [-1894.72, -1529.64], [-1894.38, -1521.18], [-1908.13, -1520.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1905.36, -1529.79], [-1905.56, -1535.75], [-1901.05, -1535.91], [-1901.06, -1536.34], [-1896.95, -1536.49], [-1896.94, -1536.08], [-1894.92, -1536.15], [-1894.72, -1530.45], [-1896.73, -1530.38], [-1896.73, -1530.09], [-1905.36, -1529.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-22.15, 644.4], [-32.39, 655.53], [-32.78, 657.92], [-33.89, 659.01], [-34.63, 661.34], [-35.93, 662.49], [-38.56, 662.17], [-44.99, 651.92], [-45.99, 647.49], [-45.88, 641.66], [-44.25, 635.85], [-41.23, 630.58], [-37.35, 628.52], [-35.47, 629.44], [-22.15, 644.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1734.93, -1416.78], [-1723.63, -1417.1], [-1723.88, -1425.7], [-1735.18, -1425.37], [-1735.16, -1424.77], [-1737.24, -1424.72], [-1737.04, -1417.7], [-1734.96, -1417.76], [-1734.93, -1416.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1733.89, -1395.51], [-1733.95, -1405.38], [-1724.06, -1405.45], [-1724.0, -1395.57], [-1733.89, -1395.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1716.58, -1397.23], [-1707.78, -1397.34], [-1708.0, -1415.85], [-1710.32, -1415.82], [-1710.35, -1418.04], [-1714.6, -1417.98], [-1714.58, -1415.77], [-1716.79, -1415.74], [-1716.58, -1397.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1700.8, -1400.21], [-1698.5, -1400.28], [-1698.48, -1399.56], [-1693.13, -1399.73], [-1693.15, -1400.45], [-1691.39, -1400.51], [-1691.91, -1417.1], [-1701.32, -1416.81], [-1700.8, -1400.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1686.95, -1396.46], [-1678.53, -1396.61], [-1678.78, -1411.21], [-1687.2, -1411.05], [-1686.95, -1396.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1675.06, -1400.24], [-1675.43, -1417.09], [-1666.96, -1417.28], [-1666.59, -1400.43], [-1667.79, -1400.4], [-1667.74, -1397.65], [-1673.41, -1397.53], [-1673.47, -1400.28], [-1675.06, -1400.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1686.21, -1437.01], [-1686.02, -1430.06], [-1676.84, -1430.31], [-1677.03, -1437.27], [-1686.21, -1437.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1674.87, -1427.86], [-1667.75, -1428.16], [-1668.08, -1436.15], [-1675.2, -1435.85], [-1674.87, -1427.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1702.58, -1429.95], [-1694.49, -1430.13], [-1694.66, -1437.85], [-1702.75, -1437.69], [-1702.58, -1429.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1735.34, -1429.13], [-1735.58, -1437.56], [-1724.88, -1437.86], [-1724.71, -1431.82], [-1726.29, -1431.78], [-1726.22, -1429.39], [-1735.34, -1429.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1720.75, -1470.67], [-1715.48, -1470.84], [-1715.28, -1464.86], [-1720.56, -1464.7], [-1720.75, -1470.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1710.04, -1447.0], [-1706.17, -1447.02], [-1706.2, -1451.7], [-1710.06, -1451.68], [-1710.04, -1447.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1736.47, -1444.67], [-1736.69, -1453.69], [-1724.62, -1453.98], [-1724.4, -1444.96], [-1736.47, -1444.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1735.1, -1455.81], [-1729.31, -1455.94], [-1729.48, -1463.88], [-1735.27, -1463.76], [-1735.1, -1455.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1737.02, -1465.04], [-1737.11, -1471.28], [-1730.29, -1471.39], [-1730.19, -1465.14], [-1737.02, -1465.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1727.59, -1470.38], [-1727.9, -1486.27], [-1720.2, -1486.41], [-1719.93, -1472.25], [-1723.35, -1472.18], [-1723.32, -1470.46], [-1727.59, -1470.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1716.01, -1484.02], [-1714.7, -1484.05], [-1714.74, -1485.9], [-1707.87, -1486.03], [-1707.65, -1473.67], [-1715.82, -1473.51], [-1716.01, -1484.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1695.39, -1472.12], [-1704.02, -1471.95], [-1704.28, -1484.39], [-1703.51, -1484.4], [-1703.54, -1486.02], [-1701.58, -1486.06], [-1701.56, -1485.2], [-1699.15, -1485.25], [-1699.14, -1484.49], [-1697.83, -1484.52], [-1697.74, -1480.13], [-1695.56, -1480.18], [-1695.39, -1472.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2058.91, -1588.6], [-2059.12, -1599.15], [-2054.86, -1599.24], [-2054.82, -1597.12], [-2050.67, -1597.2], [-2050.47, -1587.46], [-2053.91, -1587.39], [-2053.94, -1588.69], [-2058.91, -1588.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2046.9, -1588.08], [-2038.71, -1588.36], [-2039.05, -1598.7], [-2042.38, -1598.58], [-2042.41, -1599.65], [-2044.43, -1599.59], [-2044.4, -1598.51], [-2047.23, -1598.42], [-2046.9, -1588.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2036.13, -1560.08], [-2036.13, -1564.52], [-2029.08, -1564.5], [-2029.08, -1560.06], [-2036.13, -1560.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2036.5, -1584.36], [-2036.72, -1602.08], [-2030.33, -1602.16], [-2030.33, -1601.07], [-2026.87, -1601.12], [-2026.67, -1584.47], [-2029.51, -1584.44], [-2029.42, -1577.57], [-2035.59, -1577.49], [-2035.66, -1584.36], [-2036.5, -1584.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2004.2, -1557.51], [-2011.06, -1557.47], [-2011.1, -1564.49], [-2004.24, -1564.53], [-2004.2, -1557.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2020.83, -1565.64], [-2020.5, -1559.39], [-2011.6, -1559.86], [-2011.94, -1566.11], [-2020.83, -1565.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2022.03, -1587.83], [-2022.26, -1599.04], [-2021.72, -1599.04], [-2021.78, -1602.2], [-2014.41, -1602.34], [-2014.35, -1599.19], [-2013.62, -1599.21], [-2013.4, -1588.0], [-2014.22, -1587.99], [-2014.19, -1586.51], [-2018.56, -1586.42], [-2018.59, -1587.9], [-2022.03, -1587.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2009.71, -1583.49], [-2003.37, -1583.7], [-2003.53, -1588.78], [-2001.98, -1588.84], [-2002.14, -1593.84], [-2003.21, -1593.81], [-2003.4, -1599.87], [-2010.22, -1599.65], [-2009.71, -1583.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1994.76, -1574.24], [-1988.09, -1574.4], [-1988.29, -1582.45], [-1994.95, -1582.29], [-1994.76, -1574.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1998.42, -1585.4], [-1993.22, -1585.59], [-1993.46, -1591.75], [-1990.33, -1591.86], [-1990.63, -1600.17], [-1998.95, -1599.86], [-1998.42, -1585.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2072.11, -1587.33], [-2072.39, -1597.19], [-2071.68, -1597.21], [-2071.75, -1599.69], [-2064.16, -1599.9], [-2064.09, -1597.42], [-2063.11, -1597.44], [-2062.83, -1587.58], [-2063.76, -1587.56], [-2063.67, -1584.35], [-2071.26, -1584.13], [-2071.35, -1587.35], [-2072.11, -1587.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2087.77, -1597.65], [-2087.59, -1592.43], [-2085.21, -1592.51], [-2085.13, -1589.72], [-2074.58, -1590.07], [-2074.85, -1598.07], [-2087.77, -1597.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2110.0, -1589.41], [-2110.21, -1600.16], [-2090.65, -1600.53], [-2090.45, -1589.79], [-2095.74, -1589.68], [-2095.68, -1586.75], [-2104.47, -1586.59], [-2104.53, -1589.52], [-2110.0, -1589.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2106.17, -1570.88], [-2106.37, -1580.39], [-2093.26, -1580.65], [-2093.07, -1571.14], [-2106.17, -1570.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2107.03, -1556.24], [-2107.29, -1565.88], [-2092.87, -1566.28], [-2092.85, -1565.59], [-2090.78, -1565.65], [-2090.65, -1561.03], [-2092.39, -1560.98], [-2092.34, -1559.07], [-2093.06, -1559.05], [-2092.99, -1556.63], [-2107.03, -1556.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2079.07, -1563.15], [-2079.14, -1567.96], [-2072.6, -1568.05], [-2072.53, -1563.25], [-2079.07, -1563.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2090.06, -1552.06], [-2090.14, -1556.02], [-2084.51, -1556.13], [-2084.44, -1552.17], [-2090.06, -1552.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2104.25, -1544.21], [-2104.28, -1545.07], [-2105.97, -1545.01], [-2106.14, -1549.96], [-2104.46, -1550.01], [-2104.5, -1551.1], [-2092.92, -1551.51], [-2092.68, -1544.61], [-2104.25, -1544.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2104.67, -1531.91], [-2104.95, -1540.21], [-2094.57, -1540.57], [-2094.54, -1539.6], [-2091.38, -1539.71], [-2091.17, -1533.46], [-2094.33, -1533.35], [-2094.29, -1532.26], [-2104.67, -1531.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2106.24, -1506.34], [-2099.78, -1506.5], [-2099.84, -1508.76], [-2096.94, -1508.83], [-2097.3, -1524.52], [-2106.65, -1524.3], [-2106.24, -1506.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2093.0, -1507.55], [-2084.91, -1507.66], [-2085.06, -1518.54], [-2093.15, -1518.43], [-2093.0, -1507.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2081.72, -1508.79], [-2073.36, -1508.99], [-2073.71, -1524.04], [-2080.55, -1523.88], [-2080.45, -1519.82], [-2081.98, -1519.79], [-2081.72, -1508.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2070.8, -1511.27], [-2063.19, -1511.35], [-2063.32, -1525.24], [-2070.93, -1525.16], [-2070.8, -1511.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2059.1, -1508.59], [-2059.45, -1520.17], [-2051.71, -1520.41], [-2051.35, -1508.83], [-2059.1, -1508.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2049.31, -1509.01], [-2041.43, -1509.08], [-2041.52, -1519.86], [-2049.4, -1519.79], [-2049.31, -1509.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2036.41, -1525.21], [-2043.54, -1524.99], [-2043.77, -1532.94], [-2036.65, -1533.15], [-2036.41, -1525.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2022.8, -1516.34], [-2022.86, -1521.04], [-2021.06, -1521.07], [-2021.05, -1520.24], [-2016.22, -1520.31], [-2016.17, -1517.14], [-2012.48, -1517.19], [-2012.36, -1508.39], [-2021.27, -1508.27], [-2021.38, -1516.36], [-2022.8, -1516.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2009.64, -1511.89], [-2006.68, -1511.93], [-2006.65, -1509.21], [-2002.27, -1509.27], [-2002.31, -1512.0], [-2000.63, -1512.03], [-2000.66, -1514.04], [-1998.47, -1514.07], [-1998.58, -1521.09], [-2000.76, -1521.06], [-2000.85, -1527.75], [-2006.17, -1527.68], [-2006.15, -1525.93], [-2009.15, -1525.89], [-2009.09, -1522.08], [-2009.79, -1522.07], [-2009.64, -1511.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1989.09, -1545.07], [-1988.93, -1539.47], [-1982.43, -1539.66], [-1982.59, -1545.26], [-1989.09, -1545.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1992.35, -1514.3], [-1992.63, -1525.83], [-1991.71, -1525.85], [-1991.75, -1527.49], [-1983.87, -1527.67], [-1983.83, -1526.04], [-1982.9, -1526.07], [-1982.63, -1514.54], [-1983.29, -1514.52], [-1983.24, -1512.37], [-1991.32, -1512.19], [-1991.37, -1514.33], [-1992.35, -1514.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2028.84, -1523.28], [-2023.24, -1523.41], [-2023.41, -1530.92], [-2029.02, -1530.79], [-2028.84, -1523.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2041.41, -1544.48], [-2041.38, -1552.4], [-2033.89, -1552.38], [-2033.92, -1544.46], [-2034.75, -1544.46], [-2034.75, -1542.92], [-2040.61, -1542.94], [-2040.6, -1544.47], [-2041.41, -1544.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1998.11, -1549.23], [-1998.25, -1556.67], [-2009.4, -1556.46], [-2009.26, -1549.02], [-1998.11, -1549.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1662.69, -1285.02], [-1656.95, -1285.18], [-1656.74, -1277.67], [-1662.47, -1277.51], [-1662.69, -1285.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1687.16, -1276.91], [-1687.36, -1289.9], [-1678.46, -1290.04], [-1678.25, -1277.06], [-1679.07, -1277.04], [-1679.04, -1275.43], [-1686.31, -1275.31], [-1686.33, -1276.92], [-1687.16, -1276.91]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-1699.11, -1276.51], [-1699.37, -1286.38], [-1698.68, -1286.4], [-1698.76, -1289.05], [-1695.26, -1289.14], [-1695.19, -1286.49], [-1690.59, -1286.62], [-1690.45, -1281.01], [-1691.43, -1280.98], [-1691.31, -1276.73], [-1691.84, -1276.71], [-1691.8, -1274.98], [-1698.63, -1274.79], [-1698.68, -1276.53], [-1699.11, -1276.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1723.33, -1274.41], [-1723.57, -1287.65], [-1718.56, -1287.74], [-1718.59, -1289.44], [-1710.8, -1289.57], [-1710.8, -1289.96], [-1704.1, -1290.09], [-1703.83, -1274.68], [-1710.66, -1274.56], [-1710.68, -1276.09], [-1716.52, -1275.99], [-1716.5, -1274.54], [-1723.33, -1274.41]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-1727.09, -1274.68], [-1733.2, -1274.5], [-1733.48, -1284.23], [-1732.73, -1284.25], [-1732.77, -1285.79], [-1727.41, -1285.94], [-1727.09, -1274.68]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-1734.15, -1292.23], [-1725.13, -1292.36], [-1725.19, -1296.34], [-1723.54, -1296.38], [-1723.61, -1301.04], [-1734.29, -1300.88], [-1734.15, -1292.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1682.95, -1357.13], [-1671.21, -1357.46], [-1671.49, -1367.2], [-1679.62, -1366.97], [-1679.48, -1361.9], [-1683.08, -1361.8], [-1682.95, -1357.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1733.3, -1309.69], [-1724.18, -1309.74], [-1724.23, -1317.2], [-1729.32, -1317.16], [-1729.31, -1316.4], [-1733.34, -1316.37], [-1733.34, -1315.91], [-1735.29, -1315.89], [-1735.26, -1310.12], [-1733.3, -1310.14], [-1733.3, -1309.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1733.8, -1321.75], [-1733.95, -1332.04], [-1721.99, -1332.22], [-1721.96, -1330.58], [-1719.58, -1330.62], [-1719.51, -1325.61], [-1721.89, -1325.58], [-1721.83, -1321.92], [-1733.8, -1321.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1674.71, -1327.97], [-1669.69, -1328.21], [-1670.01, -1334.84], [-1675.02, -1334.61], [-1674.71, -1327.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1693.98, -1353.15], [-1685.32, -1353.51], [-1685.7, -1362.29], [-1686.9, -1362.24], [-1687.01, -1364.78], [-1693.45, -1364.51], [-1693.34, -1361.96], [-1694.35, -1361.92], [-1693.98, -1353.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1693.05, -1345.19], [-1697.8, -1345.13], [-1697.86, -1351.34], [-1693.11, -1351.39], [-1693.05, -1345.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1710.71, -1352.86], [-1702.89, -1352.99], [-1703.08, -1364.47], [-1710.89, -1364.35], [-1710.71, -1352.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1723.98, -1352.39], [-1724.2, -1364.12], [-1715.84, -1364.29], [-1715.62, -1352.56], [-1716.43, -1352.54], [-1716.4, -1350.64], [-1722.9, -1350.51], [-1722.94, -1352.41], [-1723.98, -1352.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1736.07, -1351.36], [-1734.09, -1351.39], [-1734.04, -1348.17], [-1727.23, -1348.3], [-1727.52, -1363.5], [-1736.3, -1363.33], [-1736.07, -1351.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1684.07, -1517.37], [-1709.67, -1516.81], [-1710.05, -1534.14], [-1710.47, -1534.13], [-1710.59, -1539.56], [-1710.04, -1539.58], [-1710.1, -1541.98], [-1710.65, -1541.96], [-1710.77, -1547.24], [-1710.32, -1547.25], [-1710.36, -1549.43], [-1710.83, -1549.41], [-1710.95, -1554.7], [-1710.55, -1554.7], [-1710.62, -1558.3], [-1687.99, -1558.8], [-1687.88, -1553.46], [-1686.0, -1553.5], [-1685.91, -1549.91], [-1685.32, -1549.93], [-1685.22, -1544.98], [-1685.87, -1544.96], [-1685.8, -1542.08], [-1676.19, -1542.3], [-1676.22, -1543.52], [-1668.0, -1543.7], [-1667.96, -1542.18], [-1664.75, -1542.25], [-1664.65, -1537.8], [-1644.8, -1538.23], [-1644.82, -1539.08], [-1644.87, -1541.48], [-1636.46, -1541.66], [-1636.43, -1540.21], [-1633.9, -1540.27], [-1633.41, -1517.9], [-1649.72, -1517.53], [-1649.68, -1515.74], [-1660.93, -1515.49], [-1660.97, -1517.25], [-1673.48, -1516.98], [-1673.5, -1517.92], [-1676.66, -1517.85], [-1676.9, -1528.68], [-1684.32, -1528.51], [-1684.07, -1517.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1987.74, -969.39], [-1987.94, -976.75], [-1977.42, -977.05], [-1977.35, -974.67], [-1970.35, -974.87], [-1970.12, -966.94], [-1977.06, -966.74], [-1977.15, -969.69], [-1987.74, -969.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1914.83, -984.66], [-1914.98, -990.45], [-1909.52, -990.59], [-1909.37, -984.81], [-1914.83, -984.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1919.33, -984.69], [-1926.79, -984.52], [-1927.09, -996.81], [-1919.63, -996.99], [-1919.33, -984.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1930.54, -988.75], [-1938.51, -988.57], [-1938.7, -997.49], [-1930.74, -997.68], [-1930.54, -988.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1949.27, -984.31], [-1940.49, -984.4], [-1940.63, -996.87], [-1949.4, -996.77], [-1949.27, -984.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1950.93, -987.0], [-1957.99, -986.97], [-1958.02, -990.92], [-1961.22, -990.9], [-1961.25, -997.23], [-1958.05, -997.26], [-1958.05, -998.14], [-1951.0, -998.17], [-1950.93, -987.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1972.1, -985.92], [-1963.91, -985.98], [-1963.98, -997.36], [-1968.74, -997.32], [-1968.74, -998.24], [-1975.13, -998.2], [-1975.09, -992.32], [-1972.14, -992.34], [-1972.1, -985.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1986.31, -985.9], [-1986.64, -997.48], [-1978.28, -997.72], [-1977.9, -984.29], [-1981.33, -984.19], [-1981.39, -986.04], [-1986.31, -985.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1983.48, -978.61], [-1983.58, -982.32], [-1978.12, -982.47], [-1978.02, -978.75], [-1983.48, -978.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1898.06, -993.2], [-1898.31, -1004.45], [-1888.91, -1004.65], [-1888.89, -1003.51], [-1886.85, -1003.56], [-1886.66, -994.77], [-1888.7, -994.72], [-1888.67, -993.41], [-1898.06, -993.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1894.96, -982.7], [-1895.05, -986.72], [-1895.96, -986.7], [-1896.05, -990.56], [-1885.04, -990.82], [-1884.97, -987.77], [-1883.62, -987.8], [-1883.56, -985.19], [-1884.91, -985.16], [-1884.85, -982.93], [-1894.96, -982.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1895.58, -970.21], [-1895.77, -979.65], [-1883.94, -979.88], [-1883.88, -976.86], [-1882.7, -976.88], [-1882.63, -973.29], [-1883.81, -973.27], [-1883.75, -970.44], [-1888.48, -970.34], [-1888.47, -969.69], [-1890.87, -969.64], [-1890.88, -970.3], [-1895.58, -970.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1902.88, -945.85], [-1903.0, -951.44], [-1897.54, -951.57], [-1897.46, -947.59], [-1898.23, -947.57], [-1898.19, -945.95], [-1902.88, -945.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1914.11, -947.62], [-1914.44, -958.94], [-1907.12, -959.15], [-1906.72, -945.17], [-1911.03, -945.05], [-1911.11, -947.71], [-1914.11, -947.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1926.0, -946.76], [-1926.26, -956.08], [-1916.96, -956.35], [-1916.7, -947.03], [-1917.59, -947.0], [-1917.53, -944.75], [-1925.39, -944.52], [-1925.46, -946.78], [-1926.0, -946.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1936.93, -946.54], [-1936.32, -946.55], [-1936.26, -944.43], [-1929.22, -944.64], [-1929.28, -946.76], [-1928.73, -946.77], [-1929.02, -956.83], [-1932.47, -956.74], [-1932.55, -959.51], [-1936.09, -959.41], [-1936.01, -956.63], [-1937.21, -956.6], [-1936.93, -946.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1948.16, -945.99], [-1948.6, -961.23], [-1944.02, -961.36], [-1943.96, -959.28], [-1940.3, -959.39], [-1939.92, -946.23], [-1940.85, -946.2], [-1940.8, -944.35], [-1947.24, -944.16], [-1947.29, -946.02], [-1948.16, -945.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1959.92, -945.73], [-1951.3, -945.96], [-1951.71, -961.04], [-1960.32, -960.8], [-1959.92, -945.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1970.06, -945.48], [-1970.31, -956.67], [-1962.5, -956.84], [-1962.25, -945.64], [-1963.24, -945.63], [-1963.19, -943.43], [-1968.92, -943.31], [-1968.97, -945.5], [-1970.06, -945.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1981.6, -945.07], [-1980.98, -945.08], [-1980.93, -943.22], [-1974.0, -943.37], [-1974.05, -945.24], [-1973.24, -945.26], [-1973.5, -956.35], [-1981.85, -956.15], [-1981.6, -945.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1990.76, -943.25], [-1982.31, -943.51], [-1982.84, -959.95], [-1991.29, -959.67], [-1990.76, -943.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1857.54, -1030.75], [-1857.65, -1039.62], [-1855.74, -1039.65], [-1855.75, -1040.65], [-1850.66, -1040.72], [-1850.64, -1039.77], [-1837.64, -1039.94], [-1837.65, -1040.38], [-1836.25, -1040.4], [-1836.13, -1031.03], [-1857.54, -1030.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1938.11, -1706.22], [-1938.66, -1721.3], [-1932.7, -1721.51], [-1932.61, -1719.16], [-1930.43, -1719.24], [-1930.51, -1721.6], [-1925.46, -1721.78], [-1924.89, -1706.71], [-1938.11, -1706.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1910.13, -1720.13], [-1910.29, -1727.05], [-1901.29, -1727.26], [-1901.29, -1726.98], [-1899.72, -1727.02], [-1899.57, -1720.66], [-1901.14, -1720.62], [-1901.14, -1720.34], [-1910.13, -1720.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1914.33, -1707.9], [-1914.5, -1713.89], [-1899.48, -1714.32], [-1899.31, -1708.33], [-1914.33, -1707.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1923.14, -1704.77], [-1919.87, -1704.86], [-1919.97, -1708.28], [-1923.24, -1708.19], [-1923.14, -1704.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1913.58, -1687.45], [-1898.38, -1687.73], [-1898.67, -1703.35], [-1913.86, -1703.07], [-1913.74, -1696.19], [-1912.38, -1696.22], [-1912.37, -1695.88], [-1908.87, -1695.93], [-1908.86, -1694.94], [-1912.31, -1694.88], [-1912.31, -1694.48], [-1913.7, -1694.45], [-1913.58, -1687.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1912.64, -1679.7], [-1900.14, -1680.05], [-1900.29, -1685.27], [-1910.83, -1684.97], [-1910.8, -1683.88], [-1912.76, -1683.83], [-1912.64, -1679.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1930.39, -1630.82], [-1928.57, -1630.87], [-1928.52, -1629.15], [-1922.68, -1629.3], [-1922.72, -1631.02], [-1920.57, -1631.09], [-1920.97, -1646.16], [-1930.79, -1645.9], [-1930.39, -1630.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1919.96, -1656.61], [-1926.78, -1656.46], [-1926.99, -1665.7], [-1920.17, -1665.86], [-1919.96, -1656.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1914.27, -1674.89], [-1914.07, -1669.93], [-1899.71, -1670.51], [-1899.73, -1671.13], [-1898.39, -1671.19], [-1898.55, -1675.18], [-1899.9, -1675.12], [-1899.92, -1675.47], [-1914.27, -1674.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1909.79, -1650.67], [-1909.93, -1654.72], [-1914.65, -1654.56], [-1914.85, -1660.48], [-1902.26, -1660.91], [-1901.93, -1650.94], [-1909.79, -1650.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1900.8, -1633.2], [-1901.18, -1646.69], [-1910.53, -1646.42], [-1910.13, -1632.93], [-1908.61, -1632.97], [-1908.52, -1629.96], [-1902.35, -1630.14], [-1902.43, -1633.15], [-1900.8, -1633.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2020.12, -1701.93], [-2010.2, -1702.3], [-2010.72, -1716.27], [-2020.64, -1715.91], [-2020.12, -1701.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2025.9, -1685.92], [-2026.39, -1699.45], [-2012.77, -1699.94], [-2012.28, -1686.41], [-2025.9, -1685.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2268.54, -1429.56], [-2268.64, -1433.8], [-2269.88, -1433.77], [-2269.96, -1437.14], [-2268.72, -1437.18], [-2268.83, -1441.58], [-2257.88, -1441.84], [-2257.78, -1437.76], [-2255.55, -1437.81], [-2255.39, -1431.17], [-2257.62, -1431.12], [-2257.59, -1429.82], [-2268.54, -1429.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2265.41, -1415.6], [-2265.42, -1416.52], [-2268.22, -1416.49], [-2268.32, -1424.43], [-2265.51, -1424.47], [-2265.53, -1425.72], [-2254.93, -1425.85], [-2254.81, -1415.73], [-2265.41, -1415.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2254.2, -1403.89], [-2254.39, -1413.04], [-2267.49, -1412.77], [-2267.3, -1403.62], [-2254.2, -1403.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2269.15, -1382.66], [-2265.16, -1382.77], [-2265.23, -1384.96], [-2261.31, -1385.08], [-2261.33, -1385.92], [-2252.54, -1386.17], [-2252.71, -1392.17], [-2261.51, -1391.91], [-2261.65, -1396.59], [-2269.55, -1396.36], [-2269.15, -1382.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2244.08, -1383.04], [-2237.65, -1383.22], [-2237.71, -1385.55], [-2236.84, -1385.58], [-2237.13, -1395.54], [-2244.99, -1395.31], [-2244.7, -1385.15], [-2244.14, -1385.17], [-2244.08, -1383.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2234.98, -1383.36], [-2227.14, -1383.5], [-2227.39, -1397.65], [-2235.21, -1397.52], [-2234.98, -1383.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2245.78, -1462.84], [-2257.7, -1462.44], [-2257.89, -1468.19], [-2254.14, -1468.32], [-2254.26, -1471.78], [-2251.37, -1471.88], [-2251.34, -1470.9], [-2246.05, -1471.07], [-2245.78, -1462.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2233.76, -1455.73], [-2242.5, -1455.58], [-2242.74, -1468.86], [-2240.34, -1468.91], [-2240.36, -1470.19], [-2236.37, -1470.26], [-2236.35, -1468.97], [-2234.0, -1469.02], [-2233.76, -1455.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2240.16, -1429.72], [-2240.1, -1436.85], [-2231.25, -1436.78], [-2231.3, -1429.65], [-2240.16, -1429.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2229.67, -1457.19], [-2221.1, -1457.36], [-2221.39, -1471.41], [-2229.95, -1471.23], [-2229.67, -1457.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2218.33, -1463.35], [-2218.48, -1471.42], [-2214.69, -1471.5], [-2214.73, -1473.82], [-2208.96, -1473.92], [-2208.78, -1463.51], [-2209.81, -1463.49], [-2209.73, -1458.49], [-2215.24, -1458.4], [-2215.33, -1463.4], [-2218.33, -1463.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2223.72, -1386.01], [-2223.86, -1395.92], [-2215.9, -1396.04], [-2215.75, -1386.13], [-2216.5, -1386.12], [-2216.46, -1383.93], [-2219.79, -1383.88], [-2219.83, -1386.07], [-2223.72, -1386.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2211.75, -1385.84], [-2211.98, -1395.44], [-2208.06, -1395.54], [-2208.17, -1399.89], [-2205.7, -1399.97], [-2205.65, -1397.84], [-2203.78, -1397.89], [-2203.74, -1396.05], [-2201.55, -1396.11], [-2201.3, -1386.11], [-2211.75, -1385.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2204.21, -1401.0], [-2198.46, -1401.1], [-2198.57, -1406.59], [-2204.31, -1406.49], [-2204.21, -1401.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2193.8, -1460.07], [-2202.04, -1459.93], [-2202.27, -1473.92], [-2194.04, -1474.06], [-2193.8, -1460.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2192.04, -1461.97], [-2184.21, -1462.17], [-2184.45, -1471.7], [-2184.88, -1471.69], [-2184.93, -1473.7], [-2192.03, -1473.52], [-2191.98, -1471.5], [-2192.29, -1471.5], [-2192.04, -1461.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2196.25, -1385.8], [-2187.3, -1386.06], [-2187.92, -1408.7], [-2189.67, -1408.66], [-2189.75, -1411.9], [-2196.59, -1411.71], [-2196.49, -1408.18], [-2196.87, -1408.17], [-2196.25, -1385.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2172.18, -1394.15], [-2179.24, -1394.06], [-2179.12, -1383.93], [-2172.06, -1384.03], [-2172.18, -1394.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2159.81, -1383.72], [-2168.21, -1383.63], [-2168.35, -1395.87], [-2159.94, -1395.97], [-2159.81, -1383.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2182.07, -1461.84], [-2174.15, -1461.92], [-2174.24, -1470.83], [-2174.93, -1470.82], [-2174.94, -1471.64], [-2178.1, -1471.61], [-2178.09, -1470.79], [-2182.16, -1470.75], [-2182.07, -1461.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2175.02, -1454.74], [-2171.56, -1454.81], [-2171.68, -1461.06], [-2175.14, -1460.98], [-2175.02, -1454.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2170.44, -1472.16], [-2170.41, -1469.02], [-2170.86, -1469.02], [-2170.79, -1461.51], [-2163.66, -1461.58], [-2163.76, -1472.23], [-2164.61, -1472.21], [-2164.63, -1474.37], [-2170.08, -1474.32], [-2170.06, -1472.17], [-2170.44, -1472.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2150.86, -1460.59], [-2159.17, -1460.44], [-2159.36, -1470.73], [-2151.05, -1470.88], [-2150.86, -1460.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2159.3, -1443.5], [-2159.64, -1450.55], [-2151.34, -1450.94], [-2151.0, -1443.89], [-2159.3, -1443.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2173.89, -1436.03], [-2174.12, -1441.36], [-2167.19, -1441.66], [-2166.96, -1436.33], [-2173.89, -1436.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2162.21, -1431.41], [-2162.76, -1438.5], [-2160.94, -1438.64], [-2161.05, -1439.98], [-2150.83, -1440.79], [-2150.16, -1432.36], [-2162.21, -1431.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2174.68, -1420.48], [-2174.79, -1425.67], [-2181.4, -1425.54], [-2181.29, -1420.35], [-2174.68, -1420.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2161.66, -1420.58], [-2161.69, -1423.15], [-2162.49, -1423.14], [-2162.58, -1428.62], [-2161.77, -1428.64], [-2161.79, -1429.38], [-2147.64, -1429.6], [-2147.51, -1420.8], [-2161.66, -1420.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2181.16, -1413.99], [-2181.19, -1418.53], [-2174.2, -1418.56], [-2174.17, -1414.02], [-2181.16, -1413.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2161.51, -1410.15], [-2161.56, -1412.26], [-2162.65, -1412.24], [-2162.77, -1416.86], [-2161.68, -1416.89], [-2161.73, -1418.99], [-2147.36, -1419.35], [-2147.14, -1410.49], [-2161.51, -1410.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2161.03, -1399.86], [-2161.29, -1408.95], [-2147.58, -1409.35], [-2147.32, -1400.25], [-2161.03, -1399.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[655.74, 630.25], [685.61, 597.66], [670.99, 584.37], [641.13, 616.97], [655.74, 630.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[720.33, 522.66], [690.94, 496.05], [708.1, 476.62], [737.7, 503.65], [720.33, 522.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1975.57, -1709.27], [-1983.65, -1708.97], [-1984.11, -1721.53], [-1976.05, -1721.84], [-1975.57, -1709.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1999.09, -1708.11], [-1990.57, -1708.35], [-1990.9, -1719.88], [-1991.95, -1719.85], [-1992.04, -1723.01], [-1998.58, -1722.82], [-1998.49, -1719.66], [-1999.42, -1719.63], [-1999.09, -1708.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2049.18, -1705.03], [-2050.75, -1705.0], [-2050.72, -1703.43], [-2053.72, -1703.37], [-2053.75, -1704.95], [-2056.81, -1704.88], [-2057.06, -1717.61], [-2049.43, -1717.76], [-2049.18, -1705.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2035.57, -1691.41], [-2030.6, -1691.54], [-2030.81, -1699.06], [-2035.77, -1698.93], [-2035.57, -1691.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2043.24, -1700.08], [-2033.94, -1700.29], [-2034.38, -1719.34], [-2043.68, -1719.13], [-2043.24, -1700.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1973.38, -1633.73], [-1973.93, -1647.98], [-1968.2, -1648.2], [-1967.65, -1633.95], [-1968.23, -1633.92], [-1968.16, -1632.06], [-1972.63, -1631.89], [-1972.7, -1633.75], [-1973.38, -1633.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1954.63, -1714.69], [-1957.51, -1714.63], [-1957.4, -1708.95], [-1954.51, -1709.01], [-1954.63, -1714.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1968.08, -1711.76], [-1968.15, -1722.0], [-1959.08, -1722.07], [-1959.04, -1715.27], [-1958.0, -1715.27], [-1957.98, -1712.16], [-1959.06, -1712.15], [-1959.06, -1711.83], [-1968.08, -1711.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1966.04, -1631.42], [-1958.41, -1631.61], [-1958.72, -1644.31], [-1966.37, -1644.12], [-1966.04, -1631.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1956.18, -1633.74], [-1956.46, -1644.44], [-1948.81, -1644.64], [-1948.67, -1639.17], [-1946.84, -1639.21], [-1946.65, -1632.18], [-1955.15, -1631.96], [-1955.2, -1633.77], [-1956.18, -1633.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1956.36, -1673.66], [-1956.18, -1667.24], [-1949.56, -1667.43], [-1949.75, -1673.85], [-1956.36, -1673.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1947.33, -1679.26], [-1953.29, -1679.12], [-1953.56, -1690.44], [-1947.61, -1690.59], [-1947.33, -1679.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1953.06, -1708.31], [-1953.45, -1720.14], [-1941.99, -1720.52], [-1941.59, -1708.7], [-1944.11, -1708.61], [-1943.99, -1704.84], [-1950.75, -1704.62], [-1950.88, -1708.39], [-1953.06, -1708.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2024.59, -1632.56], [-2024.98, -1645.91], [-2015.59, -1646.19], [-2015.2, -1632.83], [-2015.97, -1632.81], [-2015.9, -1630.5], [-2023.6, -1630.28], [-2023.67, -1632.59], [-2024.59, -1632.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2012.89, -1632.28], [-2013.06, -1648.18], [-2003.72, -1648.29], [-2003.55, -1632.4], [-2004.64, -1632.38], [-2004.62, -1630.79], [-2011.83, -1630.71], [-2011.85, -1632.3], [-2012.89, -1632.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2000.56, -1643.93], [-1993.86, -1644.07], [-1993.63, -1632.88], [-1996.45, -1632.82], [-1996.42, -1631.17], [-2000.29, -1631.09], [-2000.56, -1643.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1993.08, -1633.15], [-1985.7, -1633.33], [-1985.94, -1643.58], [-1993.32, -1643.42], [-1993.08, -1633.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1985.52, -1633.39], [-1984.67, -1633.42], [-1984.61, -1631.43], [-1977.73, -1631.6], [-1977.94, -1639.69], [-1979.21, -1639.65], [-1979.37, -1645.72], [-1984.56, -1645.58], [-1984.4, -1639.51], [-1985.68, -1639.49], [-1985.52, -1633.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[778.28, 1289.06], [774.0, 1293.8], [780.95, 1300.02], [785.22, 1295.28], [778.28, 1289.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2234.17, 1132.74], [2228.21, 1127.14], [2234.48, 1120.19], [2240.43, 1125.96], [2234.17, 1132.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2242.06, 1127.48], [2247.75, 1132.53], [2241.81, 1139.21], [2236.12, 1133.92], [2242.06, 1127.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2251.88, 1136.03], [2259.11, 1142.52], [2253.29, 1149.07], [2245.93, 1142.47], [2251.88, 1136.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2237.91, 1148.13], [2245.18, 1155.75], [2239.34, 1161.3], [2231.97, 1154.58], [2237.91, 1148.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2163.99, 933.03], [2154.47, 942.3], [2159.11, 946.93], [2169.27, 937.63], [2163.99, 933.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2175.44, 953.84], [2171.22, 959.96], [2177.13, 964.93], [2181.88, 959.91], [2175.44, 953.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2182.26, 964.4], [2177.02, 970.17], [2183.84, 975.98], [2189.8, 969.07], [2182.26, 964.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2190.7, 972.41], [2180.46, 983.08], [2186.1, 988.48], [2196.11, 977.86], [2190.7, 972.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2169.87, 989.51], [2177.42, 995.89], [2171.57, 1002.83], [2163.92, 995.78], [2169.87, 989.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2217.11, 1097.81], [2210.57, 1105.09], [2219.86, 1112.62], [2226.58, 1106.18], [2217.11, 1097.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2208.03, 1104.83], [2203.38, 1111.6], [2210.06, 1117.77], [2214.9, 1111.94], [2208.03, 1104.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2200.34, 1114.05], [2195.02, 1120.55], [2203.96, 1129.03], [2209.37, 1123.19], [2200.34, 1114.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2191.75, 1122.92], [2186.33, 1129.23], [2192.91, 1135.12], [2198.78, 1128.99], [2191.75, 1122.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2183.83, 1132.23], [2177.84, 1138.66], [2185.12, 1145.77], [2190.99, 1139.43], [2183.83, 1132.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2174.12, 1140.82], [2169.12, 1146.76], [2177.61, 1155.11], [2182.76, 1148.87], [2174.12, 1140.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2156.22, 1158.69], [2151.0, 1165.66], [2159.67, 1174.43], [2165.81, 1168.0], [2156.22, 1158.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2149.65, 1167.5], [2143.02, 1174.79], [2152.31, 1183.48], [2159.24, 1176.81], [2149.65, 1167.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2142.86, 1176.53], [2136.23, 1183.83], [2145.53, 1192.51], [2152.46, 1185.84], [2142.86, 1176.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2134.94, 1185.53], [2128.3, 1192.82], [2142.66, 1204.99], [2148.2, 1198.05], [2134.94, 1185.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2125.88, 1195.4], [2119.24, 1202.69], [2130.89, 1212.11], [2136.67, 1205.81], [2125.88, 1195.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2117.5, 1204.34], [2110.86, 1211.64], [2122.52, 1221.05], [2128.29, 1214.76], [2117.5, 1204.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2109.45, 1214.23], [2102.81, 1221.53], [2111.93, 1229.12], [2117.52, 1222.74], [2109.45, 1214.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2101.96, 1221.94], [2095.32, 1229.22], [2105.02, 1236.8], [2110.81, 1231.08], [2101.96, 1221.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2120.37, 1234.4], [2113.74, 1241.69], [2119.63, 1245.77], [2125.81, 1240.13], [2120.37, 1234.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2140.69, 1256.84], [2134.06, 1264.12], [2141.6, 1270.35], [2147.76, 1264.04], [2140.69, 1256.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2146.01, 1247.08], [2139.67, 1253.69], [2149.34, 1262.03], [2155.5, 1255.85], [2146.01, 1247.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2155.15, 1239.6], [2148.81, 1246.2], [2157.82, 1253.32], [2163.14, 1248.41], [2155.15, 1239.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2163.77, 1233.71], [2158.72, 1238.96], [2166.41, 1246.44], [2171.38, 1241.06], [2163.77, 1233.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2170.54, 1221.15], [2164.18, 1227.42], [2173.24, 1236.02], [2179.65, 1228.61], [2170.54, 1221.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2182.5, 1213.8], [2177.79, 1219.37], [2183.81, 1225.9], [2189.42, 1220.0], [2182.5, 1213.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2188.33, 1205.97], [2183.61, 1211.53], [2189.63, 1218.07], [2195.25, 1212.17], [2188.33, 1205.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2196.68, 1196.66], [2191.96, 1202.22], [2197.98, 1208.76], [2203.6, 1202.85], [2196.68, 1196.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2206.84, 1187.13], [2200.48, 1193.24], [2206.86, 1200.59], [2214.1, 1193.82], [2206.84, 1187.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2214.88, 1178.5], [2209.51, 1184.4], [2215.49, 1189.96], [2221.29, 1184.22], [2214.88, 1178.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2215.86, 1176.72], [2222.14, 1181.99], [2228.59, 1175.87], [2222.66, 1171.09], [2215.86, 1176.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2227.53, 1164.94], [2233.81, 1170.21], [2240.26, 1164.08], [2234.33, 1159.3], [2227.53, 1164.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2242.77, 1149.0], [2246.12, 1152.84], [2249.76, 1149.43], [2246.49, 1145.58], [2242.77, 1149.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[482.99, 1234.91], [490.14, 1227.16], [479.32, 1217.23], [472.16, 1224.98], [482.99, 1234.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[491.05, 1249.76], [500.46, 1244.67], [493.34, 1231.59], [483.92, 1236.68], [485.09, 1238.83], [483.23, 1239.84], [488.06, 1248.7], [489.93, 1247.7], [491.05, 1249.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[462.35, 1249.28], [468.03, 1255.44], [475.59, 1248.51], [469.91, 1242.36], [462.35, 1249.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[446.03, 1271.71], [451.18, 1276.95], [457.88, 1270.39], [452.73, 1265.16], [446.03, 1271.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[493.13, 1266.63], [498.79, 1263.85], [499.07, 1264.41], [507.78, 1260.12], [502.04, 1248.55], [487.67, 1255.63], [493.13, 1266.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[504.61, 1275.69], [504.16, 1274.08], [511.47, 1272.02], [509.24, 1264.18], [495.93, 1267.93], [498.61, 1277.38], [504.61, 1275.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[516.29, 1287.29], [512.7, 1276.57], [500.87, 1280.51], [498.3, 1283.45], [500.83, 1291.01], [503.12, 1290.26], [503.55, 1291.53], [516.29, 1287.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[508.1, 1304.74], [504.91, 1295.06], [521.51, 1289.65], [524.69, 1299.33], [508.1, 1304.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[526.13, 1315.67], [523.39, 1306.79], [507.07, 1311.81], [509.81, 1320.69], [526.13, 1315.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[512.99, 1334.27], [509.97, 1324.96], [524.4, 1320.45], [527.37, 1329.63], [512.99, 1334.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[532.83, 1345.38], [529.32, 1334.01], [518.68, 1337.29], [520.5, 1343.16], [519.34, 1345.21], [520.0, 1347.94], [522.01, 1348.71], [532.83, 1345.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[522.4, 1366.17], [519.66, 1356.98], [534.91, 1352.46], [538.95, 1366.02], [530.87, 1368.41], [531.84, 1371.67], [525.1, 1373.66], [523.96, 1369.81], [526.29, 1369.13], [525.17, 1365.36], [522.4, 1366.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[535.56, 1390.64], [546.27, 1387.38], [542.88, 1376.28], [532.17, 1379.54], [535.56, 1390.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[539.38, 1403.25], [536.43, 1393.55], [548.5, 1389.9], [548.99, 1391.49], [551.23, 1390.81], [553.08, 1396.91], [551.06, 1397.52], [551.68, 1399.55], [539.38, 1403.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[536.65, 1411.43], [555.61, 1405.26], [558.61, 1414.4], [539.64, 1420.57], [536.65, 1411.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[550.66, 1435.14], [561.55, 1431.95], [556.9, 1418.2], [545.69, 1421.75], [550.66, 1435.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[556.3, 1462.9], [569.95, 1458.68], [569.0, 1455.66], [570.35, 1455.25], [569.11, 1451.24], [567.74, 1451.65], [564.87, 1442.46], [556.98, 1444.9], [558.96, 1451.26], [553.22, 1453.03], [556.3, 1462.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[563.38, 1477.84], [574.7, 1474.22], [571.37, 1463.83], [560.04, 1467.46], [563.38, 1477.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[569.69, 1491.51], [566.17, 1480.59], [576.22, 1477.37], [579.74, 1488.28], [569.69, 1491.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[570.78, 1495.12], [570.32, 1493.59], [580.14, 1490.59], [584.07, 1503.36], [566.46, 1508.74], [563.0, 1497.5], [570.78, 1495.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[578.33, 1521.89], [588.29, 1518.82], [584.48, 1506.55], [574.52, 1509.63], [578.33, 1521.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[565.36, 1561.7], [563.78, 1556.64], [579.33, 1551.79], [580.91, 1556.85], [565.36, 1561.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[581.81, 1548.4], [579.09, 1539.51], [597.31, 1533.99], [599.06, 1539.75], [596.64, 1540.49], [597.59, 1543.62], [581.81, 1548.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[578.78, 1535.76], [578.26, 1533.98], [576.84, 1533.34], [574.81, 1533.94], [572.7, 1526.74], [589.31, 1521.93], [590.63, 1526.46], [592.59, 1525.89], [594.17, 1531.3], [578.78, 1535.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[585.29, 1560.8], [600.55, 1556.06], [598.13, 1548.35], [582.87, 1553.09], [585.29, 1560.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[586.2, 1562.56], [603.56, 1557.32], [606.45, 1566.83], [599.34, 1568.97], [599.89, 1570.77], [589.63, 1573.86], [586.2, 1562.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[606.16, 1570.2], [610.22, 1582.09], [600.95, 1585.24], [596.89, 1573.34], [606.16, 1570.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[611.9, 1599.69], [608.27, 1588.13], [599.17, 1590.97], [602.8, 1602.53], [611.9, 1599.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[613.35, 1620.35], [614.04, 1622.54], [623.44, 1619.6], [619.37, 1606.71], [611.05, 1609.31], [610.75, 1610.58], [609.46, 1611.23], [609.24, 1611.77], [609.31, 1612.59], [608.26, 1613.25], [610.76, 1621.16], [613.35, 1620.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[608.46, 1635.67], [606.11, 1628.62], [609.0, 1627.66], [608.82, 1627.1], [622.61, 1622.54], [626.26, 1633.52], [612.62, 1638.03], [612.32, 1637.11], [611.21, 1637.47], [610.4, 1635.03], [608.46, 1635.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[623.67, 1669.64], [635.31, 1659.43], [630.6, 1654.09], [627.64, 1654.55], [626.03, 1643.91], [622.01, 1644.5], [620.64, 1644.12], [619.52, 1640.11], [614.24, 1641.59], [614.76, 1643.45], [610.56, 1644.62], [612.97, 1653.09], [612.53, 1654.65], [612.94, 1657.48], [623.67, 1669.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[628.04, 1673.71], [630.08, 1671.99], [629.49, 1671.29], [638.24, 1663.91], [638.74, 1664.5], [640.18, 1663.28], [642.28, 1665.75], [643.01, 1665.73], [643.79, 1666.67], [645.37, 1665.36], [648.1, 1668.6], [635.86, 1678.82], [635.51, 1678.42], [633.48, 1680.13], [628.04, 1673.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[642.63, 1693.89], [645.45, 1691.53], [646.18, 1692.4], [655.71, 1684.44], [646.88, 1673.96], [638.08, 1681.32], [638.96, 1682.37], [635.42, 1685.32], [642.63, 1693.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[653.28, 1706.01], [645.07, 1696.55], [656.68, 1686.56], [664.88, 1696.02], [653.28, 1706.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[663.94, 1717.04], [665.58, 1717.44], [673.91, 1709.57], [664.02, 1699.19], [655.03, 1707.68], [663.94, 1717.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[679.78, 1741.64], [692.65, 1731.18], [683.96, 1720.56], [685.05, 1719.68], [682.15, 1716.14], [676.07, 1721.08], [678.85, 1724.47], [670.97, 1730.86], [679.78, 1741.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[676.95, 1767.45], [672.27, 1762.05], [677.76, 1757.35], [682.43, 1762.75], [676.95, 1767.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[690.07, 1751.67], [701.37, 1741.83], [694.84, 1734.39], [683.55, 1744.23], [690.07, 1751.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[692.92, 1756.06], [706.16, 1744.38], [713.54, 1752.69], [700.3, 1764.38], [692.92, 1756.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[710.52, 1804.91], [705.55, 1798.82], [713.45, 1792.42], [718.42, 1798.52], [710.52, 1804.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[684.68, 1816.16], [691.96, 1809.2], [697.34, 1814.8], [690.05, 1821.75], [684.68, 1816.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[717.8, 1775.35], [725.52, 1768.8], [733.92, 1778.61], [727.26, 1784.26], [727.88, 1786.71], [725.61, 1789.49], [723.08, 1789.74], [720.88, 1788.53], [719.98, 1785.49], [723.75, 1782.3], [717.8, 1775.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[737.37, 1814.99], [744.18, 1809.46], [742.23, 1807.08], [752.22, 1798.95], [749.15, 1795.2], [750.42, 1794.17], [746.81, 1789.76], [745.64, 1790.72], [742.49, 1786.88], [733.73, 1794.01], [737.11, 1798.11], [734.97, 1799.85], [738.1, 1803.66], [732.09, 1808.55], [737.37, 1814.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[730.75, 1823.78], [736.12, 1819.66], [739.72, 1824.35], [743.69, 1821.3], [747.94, 1826.81], [738.59, 1833.96], [730.75, 1823.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1317.94, 1960.09], [1333.49, 1947.05], [1326.07, 1938.24], [1326.98, 1937.48], [1324.79, 1934.89], [1325.22, 1934.53], [1316.99, 1924.77], [1316.56, 1925.13], [1304.16, 1910.42], [1304.82, 1909.87], [1296.61, 1900.12], [1295.94, 1900.68], [1293.55, 1897.85], [1292.9, 1898.39], [1285.4, 1889.5], [1269.57, 1902.76], [1279.27, 1914.25], [1280.12, 1913.53], [1284.11, 1918.27], [1283.4, 1918.86], [1286.61, 1922.67], [1287.25, 1922.15], [1289.62, 1924.96], [1288.98, 1925.49], [1298.75, 1937.06], [1299.43, 1936.49], [1301.85, 1939.37], [1301.18, 1939.95], [1304.2, 1943.53], [1304.92, 1942.93], [1309.09, 1947.87], [1308.24, 1948.59], [1317.94, 1960.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1285.94, 1986.54], [1283.51, 1984.45], [1282.96, 1985.07], [1279.29, 1981.9], [1279.84, 1981.27], [1277.15, 1978.95], [1276.15, 1980.09], [1237.09, 1946.35], [1238.08, 1945.2], [1228.99, 1937.34], [1242.38, 1921.96], [1253.66, 1931.7], [1252.86, 1932.62], [1264.06, 1942.29], [1264.47, 1941.82], [1276.33, 1952.05], [1275.91, 1952.53], [1287.01, 1962.13], [1287.82, 1961.21], [1299.33, 1971.15], [1285.94, 1986.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1312.41, 2025.83], [1328.06, 2025.66], [1328.05, 2024.56], [1331.45, 2024.52], [1331.45, 2025.12], [1344.75, 2024.97], [1344.75, 2024.32], [1351.49, 2024.25], [1351.49, 2024.89], [1364.85, 2024.73], [1364.84, 2024.01], [1368.29, 2023.97], [1368.3, 2025.2], [1383.43, 2025.03], [1383.2, 2004.16], [1371.1, 2004.29], [1371.08, 2002.96], [1324.23, 2003.47], [1324.24, 2004.84], [1312.19, 2004.97], [1312.41, 2025.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1380.15, 2116.87], [1400.92, 2112.65], [1386.81, 2043.62], [1366.03, 2047.84], [1380.15, 2116.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1347.12, 2133.48], [1367.93, 2125.44], [1333.8, 2037.64], [1312.99, 2045.68], [1347.12, 2133.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1136.02, 2165.02], [1125.51, 2169.05], [1114.8, 2173.17], [1117.32, 2179.71], [1138.55, 2171.58], [1136.02, 2165.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1145.71, 2168.43], [1167.03, 2160.63], [1173.72, 2178.78], [1152.23, 2186.64], [1155.17, 2194.65], [1185.26, 2183.64], [1173.17, 2150.8], [1143.25, 2161.75], [1145.71, 2168.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1149.85, 2196.51], [1147.26, 2189.48], [1125.69, 2197.39], [1128.29, 2204.42], [1149.85, 2196.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1140.3, 2236.59], [1147.86, 2233.69], [1139.48, 2211.98], [1131.91, 2214.89], [1140.3, 2236.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1158.29, 2261.76], [1155.95, 2262.63], [1151.0, 2264.28], [1143.48, 2242.63], [1150.77, 2240.11], [1158.29, 2261.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1158.66, 2269.86], [1180.8, 2261.59], [1178.08, 2254.36], [1158.29, 2261.76], [1155.95, 2262.63], [1158.66, 2269.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1178.04, 2225.57], [1186.04, 2222.72], [1182.18, 2211.96], [1178.36, 2201.32], [1186.86, 2198.29], [1199.36, 2193.83], [1202.95, 2203.84], [1206.62, 2214.06], [1212.85, 2211.83], [1205.11, 2190.26], [1198.72, 2192.54], [1197.11, 2188.04], [1175.33, 2195.8], [1177.03, 2200.53], [1169.96, 2203.05], [1178.04, 2225.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1184.96, 2254.17], [1191.84, 2251.61], [1187.91, 2241.15], [1183.83, 2230.27], [1176.96, 2232.84], [1184.96, 2254.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1219.88, 2240.76], [1227.04, 2238.08], [1218.91, 2216.55], [1211.75, 2219.23], [1215.96, 2230.36], [1219.88, 2240.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1234.44, 2227.96], [1241.4, 2231.48], [1252.06, 2210.55], [1245.1, 2207.03], [1234.44, 2227.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1224.83, 2164.05], [1223.35, 2170.91], [1212.57, 2168.61], [1200.75, 2166.07], [1201.92, 2160.65], [1195.99, 2159.37], [1200.78, 2137.14], [1207.68, 2138.61], [1208.86, 2133.13], [1219.25, 2135.35], [1230.45, 2137.76], [1228.93, 2144.78], [1217.78, 2142.38], [1206.8, 2140.03], [1202.64, 2159.28], [1224.83, 2164.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1237.01, 2140.04], [1238.72, 2132.24], [1259.2, 2136.67], [1264.06, 2114.44], [1271.95, 2116.16], [1267.07, 2138.46], [1261.08, 2137.16], [1259.39, 2144.9], [1247.82, 2142.38], [1237.01, 2140.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1245.54, 2204.55], [1252.82, 2206.15], [1257.94, 2182.86], [1251.33, 2181.42], [1252.52, 2176.01], [1240.64, 2173.42], [1228.78, 2170.83], [1227.05, 2178.68], [1250.13, 2183.72], [1245.54, 2204.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1292.43, 2193.06], [1313.24, 2197.63], [1314.87, 2190.29], [1292.27, 2185.33], [1290.7, 2192.44], [1285.98, 2191.4], [1281.01, 2213.82], [1287.51, 2215.25], [1292.43, 2193.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1231.45, 2290.97], [1236.81, 2288.61], [1239.3, 2294.25], [1260.35, 2285.02], [1257.65, 2278.89], [1262.29, 2276.85], [1252.87, 2255.5], [1246.16, 2258.44], [1250.83, 2269.04], [1255.28, 2279.09], [1246.31, 2283.02], [1237.91, 2286.71], [1233.5, 2276.74], [1228.69, 2265.85], [1221.71, 2268.9], [1231.45, 2290.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1197.08, 2286.49], [1194.39, 2279.73], [1215.81, 2271.26], [1218.5, 2278.02], [1197.08, 2286.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1170.31, 2302.43], [1165.22, 2302.57], [1162.53, 2295.74], [1163.74, 2292.57], [1188.29, 2283.05], [1194.42, 2298.73], [1185.38, 2302.24], [1184.29, 2299.43], [1177.81, 2301.95], [1176.99, 2299.84], [1170.31, 2302.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1210.16, 2314.78], [1209.96, 2307.02], [1247.01, 2306.1], [1247.2, 2313.85], [1210.16, 2314.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1260.37, 2412.24], [1297.09, 2392.54], [1291.78, 2382.7], [1255.06, 2402.4], [1260.37, 2412.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1252.03, 2394.48], [1261.96, 2389.24], [1247.25, 2361.6], [1237.32, 2366.85], [1252.03, 2394.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1262.09, 2328.65], [1267.37, 2338.3], [1226.76, 2360.39], [1221.48, 2350.73], [1262.09, 2328.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1202.26, 2364.64], [1214.35, 2358.2], [1247.35, 2419.96], [1235.27, 2426.37], [1229.68, 2415.92], [1218.82, 2395.6], [1202.26, 2364.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1297.86, 2382.61], [1307.74, 2377.4], [1274.8, 2315.47], [1264.92, 2320.69], [1297.86, 2382.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1290.36, 2319.85], [1299.78, 2315.02], [1326.86, 2367.52], [1317.43, 2372.35], [1290.36, 2319.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1369.84, 2367.0], [1364.67, 2357.42], [1304.21, 2389.79], [1309.37, 2399.38], [1369.84, 2367.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1312.86, 2405.54], [1322.03, 2400.65], [1349.88, 2452.64], [1340.32, 2457.64], [1312.86, 2405.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1306.31, 2477.43], [1317.86, 2471.57], [1296.93, 2431.87], [1284.58, 2438.17], [1306.31, 2477.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1273.02, 2487.02], [1285.54, 2480.7], [1267.31, 2444.8], [1254.12, 2451.46], [1261.1, 2465.22], [1252.04, 2469.78], [1258.24, 2481.99], [1267.98, 2477.08], [1273.02, 2487.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1316.45, 2580.23], [1372.58, 2560.64], [1366.47, 2543.22], [1310.33, 2562.81], [1316.45, 2580.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1371.78, 2515.47], [1390.71, 2509.03], [1394.81, 2520.98], [1375.88, 2527.43], [1371.78, 2515.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1335.2, 2520.46], [1348.02, 2516.25], [1354.34, 2535.35], [1341.52, 2539.57], [1335.2, 2520.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1335.95, 2502.77], [1323.65, 2507.99], [1315.83, 2489.65], [1328.14, 2484.43], [1335.95, 2502.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1352.72, 2441.59], [1387.86, 2423.04], [1382.89, 2413.69], [1347.75, 2432.25], [1352.72, 2441.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1401.89, 2435.85], [1411.5, 2430.78], [1379.17, 2369.86], [1369.56, 2374.92], [1401.89, 2435.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1334.05, 2407.04], [1369.34, 2388.65], [1363.68, 2377.87], [1328.39, 2396.26], [1334.05, 2407.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1365.49, 2317.47], [1376.02, 2317.24], [1376.88, 2356.63], [1366.36, 2356.86], [1365.49, 2317.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1310.75, 2331.49], [1359.66, 2331.07], [1359.57, 2320.26], [1310.66, 2320.67], [1310.75, 2331.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1416.91, 2423.93], [1413.55, 2414.1], [1460.21, 2398.24], [1463.57, 2408.07], [1416.91, 2423.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1406.92, 2368.17], [1446.92, 2366.9], [1446.58, 2356.15], [1441.04, 2356.33], [1421.46, 2356.95], [1406.58, 2357.42], [1406.92, 2368.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1383.76, 2316.35], [1394.24, 2316.02], [1395.48, 2356.13], [1385.01, 2356.46], [1383.76, 2316.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1398.73, 2319.54], [1467.72, 2316.6], [1468.17, 2327.18], [1399.19, 2330.12], [1398.73, 2319.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1452.22, 2333.13], [1462.99, 2333.61], [1460.24, 2393.16], [1449.47, 2392.67], [1452.22, 2333.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1396.47, 2362.4], [1419.51, 2405.13], [1410.14, 2410.14], [1387.12, 2367.41], [1396.47, 2362.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1379.96, 2223.69], [1377.14, 2224.77], [1381.11, 2234.83], [1398.18, 2228.51], [1401.67, 2221.91], [1393.31, 2198.61], [1396.14, 2197.7], [1386.12, 2169.13], [1381.89, 2155.73], [1374.48, 2154.28], [1365.33, 2156.04], [1361.69, 2163.81], [1372.89, 2192.69], [1368.93, 2194.63], [1379.96, 2223.69]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1399.26, 2166.08], [1405.72, 2169.74], [1427.69, 2162.62], [1429.05, 2166.77], [1465.81, 2154.86], [1466.7, 2157.58], [1477.84, 2153.97], [1472.09, 2136.34], [1465.3, 2133.2], [1434.17, 2142.87], [1432.92, 2138.88], [1414.27, 2144.67], [1413.19, 2141.2], [1393.4, 2147.35], [1399.26, 2166.08]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1462.24, 2246.62], [1462.05, 2235.27], [1465.42, 2235.2], [1464.78, 2196.95], [1468.51, 2196.89], [1468.1, 2172.82], [1473.96, 2167.15], [1491.79, 2166.88], [1491.93, 2176.77], [1489.22, 2176.81], [1489.7, 2208.42], [1486.65, 2208.46], [1487.08, 2235.83], [1484.04, 2235.88], [1484.21, 2246.25], [1462.24, 2246.62]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1389.27, 2249.4], [1389.23, 2246.52], [1378.69, 2246.69], [1378.98, 2266.08], [1385.14, 2270.91], [1414.35, 2270.02], [1414.5, 2274.83], [1445.17, 2273.89], [1445.28, 2277.7], [1458.87, 2277.28], [1458.26, 2257.68], [1452.09, 2252.52], [1427.13, 2252.88], [1427.07, 2248.84], [1389.27, 2249.4]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1322.02, 2283.43], [1324.48, 2278.53], [1330.97, 2281.97], [1342.15, 2262.13], [1335.49, 2258.29], [1338.73, 2253.03], [1317.94, 2242.17], [1314.19, 2249.61], [1334.01, 2260.43], [1325.46, 2276.32], [1305.14, 2264.79], [1301.06, 2272.16], [1322.02, 2283.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1272.69, 2263.76], [1276.38, 2256.47], [1298.79, 2267.7], [1295.1, 2275.01], [1272.69, 2263.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1440.1, 2105.94], [1454.78, 2102.84], [1453.83, 2098.36], [1457.27, 2093.51], [1461.52, 2092.63], [1458.37, 2077.82], [1454.09, 2078.73], [1449.22, 2075.28], [1448.32, 2071.09], [1433.5, 2074.22], [1434.39, 2078.43], [1430.69, 2083.61], [1426.67, 2084.46], [1429.82, 2099.29], [1433.8, 2098.45], [1439.34, 2102.38], [1440.1, 2105.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1439.47, 2003.05], [1433.78, 1999.17], [1433.08, 1995.52], [1418.2, 1998.35], [1419.07, 2002.93], [1415.68, 2007.85], [1411.72, 2008.6], [1414.57, 2023.53], [1418.51, 2022.78], [1424.1, 2026.6], [1424.77, 2030.11], [1439.49, 2027.32], [1438.68, 2023.08], [1442.31, 2017.81], [1446.34, 2017.05], [1443.52, 2002.28], [1439.47, 2003.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1469.96, 2068.17], [1466.94, 2052.95], [1468.18, 2052.7], [1460.31, 2013.01], [1459.49, 2013.17], [1454.99, 1990.46], [1466.19, 1988.25], [1465.61, 1985.33], [1468.19, 1984.83], [1468.08, 1984.25], [1476.43, 1982.6], [1476.65, 1983.72], [1480.97, 1982.87], [1482.74, 1991.83], [1483.33, 1991.71], [1484.99, 2000.07], [1481.56, 2000.74], [1483.05, 2008.29], [1476.67, 2009.54], [1484.62, 2049.67], [1485.76, 2049.45], [1488.48, 2063.16], [1485.39, 2063.77], [1485.87, 2066.2], [1477.6, 2067.83], [1477.39, 2066.7], [1469.96, 2068.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1396.3, 1947.53], [1400.78, 1968.71], [1436.06, 1961.3], [1435.49, 1958.59], [1469.05, 1951.55], [1464.35, 1929.28], [1427.57, 1937.0], [1428.37, 1940.8], [1396.3, 1947.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1334.16, 1886.04], [1361.02, 1911.03], [1362.68, 1909.26], [1388.73, 1933.47], [1405.01, 1916.1], [1375.76, 1888.89], [1372.34, 1892.54], [1348.69, 1870.54], [1334.16, 1886.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1343.89, 1856.27], [1360.08, 1871.22], [1386.08, 1843.24], [1383.17, 1840.57], [1406.09, 1815.92], [1390.29, 1801.32], [1364.31, 1829.28], [1366.83, 1831.59], [1343.89, 1856.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1420.28, 1888.45], [1422.62, 1885.96], [1447.6, 1909.23], [1463.28, 1892.5], [1435.34, 1866.47], [1433.15, 1868.8], [1409.81, 1847.08], [1393.98, 1863.95], [1420.28, 1888.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[528.7, 1170.16], [537.51, 1159.64], [543.3, 1164.46], [534.49, 1174.97], [528.7, 1170.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[518.7, 1174.31], [527.78, 1182.9], [533.82, 1176.57], [524.76, 1167.97], [518.7, 1174.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[516.18, 1179.07], [519.06, 1181.56], [519.74, 1180.79], [522.57, 1183.22], [523.62, 1182.0], [526.75, 1184.69], [522.68, 1189.38], [521.8, 1188.63], [519.44, 1191.35], [516.49, 1188.81], [516.08, 1189.28], [512.64, 1186.32], [514.23, 1184.48], [512.67, 1183.13], [516.18, 1179.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[525.37, 1206.18], [519.85, 1198.68], [527.73, 1192.92], [529.27, 1195.0], [530.77, 1193.9], [533.2, 1197.2], [531.75, 1198.26], [533.3, 1200.37], [525.37, 1206.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[545.93, 1183.29], [556.27, 1171.96], [550.26, 1166.53], [539.94, 1177.85], [545.93, 1183.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[555.37, 1190.91], [549.64, 1185.61], [559.54, 1175.01], [565.26, 1180.32], [555.37, 1190.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[555.69, 1201.84], [564.73, 1210.61], [558.85, 1216.63], [549.8, 1207.87], [555.69, 1201.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[547.9, 1216.28], [553.98, 1221.78], [558.35, 1217.0], [552.27, 1211.49], [547.9, 1216.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[541.07, 1233.53], [547.81, 1225.86], [538.87, 1218.04], [532.11, 1225.72], [541.07, 1233.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[528.12, 1217.12], [539.51, 1208.57], [536.84, 1205.04], [534.69, 1206.65], [532.9, 1204.28], [523.66, 1211.21], [528.12, 1217.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[540.37, 1251.08], [550.12, 1240.05], [546.2, 1236.61], [544.59, 1238.44], [542.72, 1236.81], [534.59, 1246.01], [540.37, 1251.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[540.45, 1255.91], [549.9, 1245.69], [555.67, 1250.98], [546.22, 1261.21], [540.45, 1255.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[546.91, 1266.88], [560.94, 1262.78], [564.01, 1273.19], [549.96, 1277.29], [546.91, 1266.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[562.02, 1305.32], [557.75, 1291.49], [566.73, 1288.73], [568.53, 1294.54], [572.65, 1293.27], [572.93, 1294.17], [576.57, 1293.06], [578.38, 1298.92], [574.62, 1300.08], [574.88, 1300.88], [571.4, 1301.95], [571.54, 1302.39], [562.02, 1305.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[607.3, 1294.4], [611.35, 1290.1], [606.86, 1285.91], [602.82, 1290.2], [607.3, 1294.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[599.48, 1293.82], [602.38, 1290.55], [607.01, 1294.63], [604.1, 1297.9], [599.48, 1293.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[625.2, 1321.1], [629.52, 1316.11], [619.22, 1307.25], [614.9, 1312.23], [625.2, 1321.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[579.97, 1329.98], [576.98, 1320.79], [565.12, 1324.61], [565.49, 1325.76], [562.7, 1326.66], [564.99, 1333.7], [567.45, 1332.9], [567.77, 1333.92], [579.97, 1329.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[566.41, 1319.07], [563.43, 1309.32], [575.28, 1305.72], [576.83, 1310.76], [572.0, 1312.22], [573.44, 1316.93], [566.41, 1319.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[574.62, 1319.41], [580.83, 1317.54], [579.76, 1313.97], [573.54, 1315.84], [574.62, 1319.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[577.44, 1366.52], [586.29, 1363.79], [584.89, 1359.3], [589.84, 1357.77], [589.16, 1355.57], [595.46, 1353.62], [592.75, 1344.89], [582.55, 1348.05], [582.4, 1347.56], [579.78, 1348.37], [579.25, 1346.67], [571.96, 1348.93], [577.44, 1366.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[601.05, 1329.6], [602.69, 1327.78], [600.77, 1326.06], [604.8, 1321.58], [606.73, 1323.3], [607.47, 1322.47], [615.4, 1329.57], [608.98, 1336.7], [601.05, 1329.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[616.19, 1327.9], [620.9, 1322.8], [614.84, 1317.23], [610.13, 1322.34], [616.19, 1327.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[631.19, 1314.82], [636.58, 1309.01], [632.49, 1305.25], [632.67, 1305.07], [625.64, 1298.61], [620.09, 1304.62], [631.19, 1314.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[629.95, 1300.26], [636.44, 1293.59], [643.82, 1300.71], [637.33, 1307.38], [629.95, 1300.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[652.09, 1281.29], [664.01, 1268.56], [669.88, 1274.03], [657.97, 1286.75], [652.09, 1281.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[641.35, 1277.49], [655.11, 1262.58], [648.58, 1256.61], [639.1, 1266.89], [640.82, 1268.46], [636.55, 1273.1], [641.35, 1277.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[638.92, 1249.19], [646.04, 1255.73], [636.48, 1266.06], [629.36, 1259.51], [638.92, 1249.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[635.01, 1252.88], [640.88, 1246.79], [634.83, 1240.99], [628.96, 1247.09], [635.01, 1252.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[620.89, 1240.05], [624.74, 1243.49], [626.18, 1241.89], [628.7, 1244.14], [631.47, 1241.06], [629.17, 1239.02], [631.41, 1236.52], [627.33, 1232.88], [620.89, 1240.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[627.19, 1232.03], [622.4, 1227.68], [618.52, 1231.92], [617.27, 1230.78], [613.75, 1234.65], [615.98, 1236.67], [614.95, 1237.8], [618.77, 1241.26], [627.19, 1232.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[602.66, 1231.83], [611.67, 1222.01], [617.47, 1227.29], [608.46, 1237.11], [602.66, 1231.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[556.93, 1190.99], [565.23, 1198.35], [573.67, 1188.89], [565.37, 1181.54], [556.93, 1190.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[586.23, 1198.85], [577.01, 1209.42], [571.25, 1204.42], [580.47, 1193.86], [586.23, 1198.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[579.92, 1210.17], [586.19, 1215.49], [593.67, 1206.77], [587.41, 1201.43], [579.92, 1210.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[587.79, 1219.65], [593.63, 1224.7], [605.12, 1211.49], [599.28, 1206.44], [587.79, 1219.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[594.34, 1335.51], [601.73, 1333.26], [599.6, 1326.3], [592.21, 1328.56], [594.34, 1335.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[601.46, 1229.34], [605.73, 1224.72], [601.68, 1221.01], [597.41, 1225.63], [601.46, 1229.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[677.18, 1327.14], [665.28, 1316.47], [672.52, 1308.47], [684.41, 1319.13], [677.18, 1327.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[664.03, 1319.53], [671.54, 1326.14], [665.4, 1333.07], [657.88, 1326.46], [664.03, 1319.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[667.55, 1347.17], [672.96, 1351.94], [679.49, 1344.59], [674.07, 1339.82], [667.55, 1347.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[688.42, 1354.14], [682.23, 1348.93], [674.48, 1358.06], [680.68, 1363.27], [688.42, 1354.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[683.35, 1367.29], [693.6, 1356.12], [699.27, 1361.28], [689.03, 1372.45], [683.35, 1367.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[701.88, 1381.52], [703.91, 1383.33], [702.5, 1384.9], [707.15, 1389.05], [718.59, 1376.34], [711.91, 1370.37], [701.88, 1381.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[729.64, 1408.98], [733.42, 1412.35], [742.43, 1402.33], [725.25, 1387.0], [716.14, 1397.13], [719.92, 1400.5], [721.8, 1398.41], [731.42, 1407.0], [729.64, 1408.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[742.13, 1417.62], [751.65, 1407.32], [745.68, 1401.83], [736.16, 1412.12], [742.13, 1417.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[752.63, 1411.15], [759.39, 1417.15], [750.0, 1427.65], [743.24, 1421.65], [752.63, 1411.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[688.4, 1288.6], [693.38, 1292.94], [686.1, 1301.25], [681.11, 1296.91], [688.4, 1288.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[694.79, 1314.34], [703.37, 1304.92], [695.97, 1298.21], [687.38, 1307.62], [694.79, 1314.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[697.43, 1318.45], [704.42, 1325.0], [715.93, 1312.79], [711.55, 1308.69], [707.49, 1313.01], [704.87, 1310.56], [697.43, 1318.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[693.47, 1340.94], [700.26, 1346.25], [708.87, 1335.33], [702.08, 1330.01], [693.47, 1340.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[733.37, 1342.28], [739.6, 1334.32], [747.01, 1340.08], [740.78, 1348.03], [733.37, 1342.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[731.06, 1329.13], [737.29, 1334.5], [729.84, 1343.08], [723.61, 1337.71], [731.06, 1329.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[743.38, 1359.19], [754.06, 1347.64], [748.81, 1342.82], [738.13, 1354.37], [743.38, 1359.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[752.72, 1368.86], [763.71, 1356.36], [757.41, 1350.85], [746.42, 1363.36], [752.72, 1368.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[755.45, 1371.24], [761.47, 1376.37], [771.33, 1364.88], [765.31, 1359.74], [755.45, 1371.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[748.61, 1394.11], [754.29, 1399.29], [759.54, 1393.56], [753.86, 1388.38], [748.61, 1394.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[757.62, 1430.51], [762.78, 1424.79], [769.54, 1430.84], [764.39, 1436.56], [757.62, 1430.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[772.35, 1444.12], [780.37, 1435.26], [788.29, 1442.39], [786.38, 1444.49], [787.64, 1445.62], [783.76, 1449.89], [782.08, 1448.39], [779.84, 1450.85], [772.35, 1444.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[787.28, 1427.12], [793.2, 1420.99], [800.4, 1427.89], [794.48, 1434.02], [787.28, 1427.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[784.88, 1416.61], [790.15, 1410.54], [784.77, 1405.91], [779.51, 1411.98], [784.88, 1416.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[803.01, 1424.58], [791.31, 1413.7], [798.25, 1406.29], [809.95, 1417.17], [803.01, 1424.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[776.14, 1400.95], [781.31, 1395.31], [787.02, 1400.52], [781.85, 1406.15], [776.14, 1400.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[798.52, 1390.29], [803.78, 1395.03], [798.46, 1400.91], [793.19, 1396.17], [798.52, 1390.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[799.77, 1404.45], [806.06, 1397.5], [816.71, 1407.07], [810.42, 1414.02], [799.77, 1404.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[772.02, 1383.29], [781.44, 1391.45], [789.39, 1382.34], [779.97, 1374.18], [772.02, 1383.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[773.65, 1369.84], [778.81, 1374.21], [772.13, 1382.05], [766.97, 1377.69], [773.65, 1369.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[692.43, 1372.18], [697.62, 1376.6], [706.21, 1366.6], [701.03, 1362.16], [692.43, 1372.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[717.3, 1365.37], [722.0, 1359.89], [712.95, 1352.17], [708.24, 1357.66], [717.3, 1365.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[678.51, 1400.68], [685.29, 1392.85], [679.6, 1387.97], [672.82, 1395.78], [678.51, 1400.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[675.47, 1409.39], [688.05, 1396.02], [695.08, 1402.59], [685.99, 1412.24], [684.51, 1410.87], [681.02, 1414.58], [675.47, 1409.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[673.63, 1409.12], [677.69, 1404.36], [674.6, 1401.74], [670.54, 1406.51], [673.63, 1409.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[674.67, 1422.63], [666.5, 1415.02], [671.98, 1409.18], [680.15, 1416.78], [674.67, 1422.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[662.45, 1419.34], [670.97, 1426.82], [665.96, 1432.49], [657.44, 1425.01], [662.45, 1419.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[648.45, 1419.68], [651.27, 1416.48], [657.04, 1421.53], [654.22, 1424.73], [648.45, 1419.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[663.26, 1431.92], [663.05, 1432.53], [665.34, 1433.33], [663.46, 1438.7], [662.27, 1438.28], [661.84, 1439.51], [660.69, 1439.11], [660.21, 1440.49], [653.25, 1438.06], [656.25, 1429.49], [663.26, 1431.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[621.01, 1435.54], [618.48, 1426.94], [629.63, 1423.67], [632.17, 1432.27], [621.01, 1435.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[599.16, 1434.93], [611.59, 1430.83], [613.74, 1437.34], [601.32, 1441.43], [599.16, 1434.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[593.65, 1423.68], [596.3, 1431.51], [610.16, 1426.85], [607.52, 1419.02], [593.65, 1423.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[592.37, 1404.79], [588.4, 1406.2], [591.94, 1416.05], [600.19, 1413.1], [595.15, 1399.07], [590.86, 1400.61], [592.37, 1404.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[604.68, 1402.62], [603.42, 1401.45], [601.42, 1403.62], [592.26, 1395.21], [598.42, 1388.54], [608.85, 1398.12], [604.68, 1402.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[609.19, 1394.93], [615.47, 1387.99], [606.76, 1380.05], [600.29, 1387.35], [609.19, 1394.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[613.04, 1369.68], [625.0, 1380.26], [619.29, 1386.67], [607.33, 1376.09], [613.04, 1369.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[637.77, 1362.4], [644.0, 1355.34], [637.52, 1349.67], [631.3, 1356.73], [637.77, 1362.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[621.66, 1363.14], [627.43, 1356.89], [637.6, 1366.22], [631.83, 1372.47], [621.66, 1363.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[643.44, 1369.05], [645.12, 1367.38], [643.35, 1365.62], [641.68, 1367.28], [643.44, 1369.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[658.18, 1384.7], [662.98, 1379.89], [665.03, 1379.89], [665.03, 1377.94], [663.35, 1374.81], [661.46, 1372.9], [659.91, 1374.42], [659.34, 1373.85], [659.97, 1373.22], [657.8, 1371.04], [651.1, 1377.63], [658.18, 1384.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[645.81, 1372.5], [650.12, 1367.27], [653.85, 1370.34], [649.54, 1375.55], [645.81, 1372.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[629.5, 1403.11], [634.41, 1407.41], [636.71, 1404.81], [636.01, 1404.2], [643.52, 1395.69], [636.52, 1389.57], [629.96, 1397.01], [632.73, 1399.43], [629.5, 1403.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[610.92, 1440.44], [613.65, 1448.75], [603.56, 1452.04], [600.83, 1443.73], [610.92, 1440.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[606.79, 1463.79], [622.19, 1458.86], [619.5, 1450.53], [604.1, 1455.47], [606.79, 1463.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[607.77, 1474.99], [622.1, 1470.44], [619.74, 1463.09], [607.39, 1467.0], [608.16, 1469.4], [606.19, 1470.03], [607.77, 1474.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[612.82, 1484.34], [611.1, 1478.16], [615.04, 1477.07], [614.51, 1475.13], [620.88, 1473.36], [623.14, 1481.48], [612.82, 1484.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[619.69, 1491.92], [620.07, 1493.19], [627.56, 1490.94], [624.91, 1482.12], [617.32, 1484.38], [617.79, 1485.96], [610.6, 1488.12], [612.4, 1494.1], [619.69, 1491.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[620.81, 1514.73], [618.3, 1506.22], [631.82, 1502.26], [634.32, 1510.77], [620.81, 1514.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[642.13, 1528.56], [639.96, 1521.83], [625.42, 1526.49], [627.59, 1533.22], [642.13, 1528.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[632.78, 1541.91], [630.26, 1533.18], [646.0, 1528.66], [648.53, 1537.38], [632.78, 1541.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[634.64, 1551.81], [632.38, 1544.22], [641.29, 1541.58], [643.55, 1549.17], [634.64, 1551.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[640.19, 1563.94], [637.59, 1554.6], [652.65, 1550.43], [655.25, 1559.78], [640.19, 1563.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[649.37, 1564.36], [639.65, 1567.49], [642.22, 1575.38], [651.94, 1572.24], [649.37, 1564.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[644.54, 1583.7], [652.6, 1581.25], [652.38, 1580.5], [655.28, 1579.62], [655.2, 1579.34], [656.26, 1579.01], [656.12, 1578.52], [656.72, 1577.2], [659.18, 1576.45], [658.88, 1575.47], [659.31, 1574.51], [658.49, 1571.81], [654.78, 1572.94], [654.65, 1572.53], [650.28, 1573.87], [650.18, 1573.54], [642.17, 1575.97], [644.54, 1583.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[655.06, 1590.53], [653.0, 1583.37], [644.39, 1585.83], [646.45, 1592.98], [655.06, 1590.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[668.05, 1528.56], [674.52, 1526.19], [672.32, 1520.21], [665.84, 1522.59], [668.05, 1528.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[663.31, 1515.77], [666.48, 1514.57], [668.81, 1520.66], [665.65, 1521.86], [663.31, 1515.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[676.5, 1510.44], [687.99, 1506.07], [684.56, 1497.11], [673.08, 1501.47], [676.5, 1510.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[666.97, 1505.61], [665.54, 1502.02], [671.26, 1499.75], [672.7, 1503.33], [666.97, 1505.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[654.81, 1510.89], [652.93, 1505.15], [665.1, 1501.21], [666.97, 1506.94], [654.81, 1510.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[655.29, 1502.1], [652.89, 1494.91], [660.68, 1492.31], [663.09, 1499.5], [655.29, 1502.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[652.41, 1492.15], [659.75, 1489.74], [657.03, 1481.51], [649.69, 1483.93], [652.41, 1492.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[662.5, 1493.96], [661.05, 1490.4], [666.43, 1488.23], [667.88, 1491.79], [662.5, 1493.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[669.12, 1489.31], [680.6, 1485.11], [683.21, 1492.22], [680.77, 1493.11], [681.61, 1495.39], [672.57, 1498.69], [669.12, 1489.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[668.52, 1487.32], [665.31, 1478.66], [675.59, 1474.86], [678.8, 1483.53], [668.52, 1487.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[660.02, 1464.95], [668.32, 1461.81], [664.8, 1452.56], [656.51, 1455.69], [660.02, 1464.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[652.81, 1468.44], [657.42, 1466.71], [658.85, 1470.49], [654.25, 1472.22], [652.81, 1468.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[672.47, 1473.1], [669.44, 1464.5], [659.51, 1468.32], [662.7, 1476.78], [672.47, 1473.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[654.99, 1452.67], [663.42, 1449.68], [660.33, 1441.04], [651.9, 1444.04], [654.99, 1452.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[643.31, 1444.32], [638.84, 1446.06], [636.15, 1439.2], [640.62, 1437.46], [643.31, 1444.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[638.86, 1451.86], [633.85, 1453.03], [631.74, 1443.98], [636.76, 1442.82], [638.86, 1451.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[655.12, 1535.62], [664.82, 1532.98], [667.09, 1541.24], [657.4, 1543.89], [655.12, 1535.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[678.76, 1522.12], [677.21, 1517.91], [678.68, 1517.37], [677.12, 1513.11], [689.52, 1508.59], [692.63, 1517.06], [678.76, 1522.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[681.07, 1544.26], [676.1, 1531.64], [697.7, 1523.2], [702.67, 1535.82], [681.07, 1544.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[684.78, 1555.46], [678.45, 1557.78], [677.71, 1555.78], [675.44, 1556.62], [669.8, 1541.27], [671.66, 1540.6], [671.03, 1538.86], [675.51, 1537.22], [676.22, 1539.13], [678.47, 1538.31], [684.78, 1555.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[636.88, 1455.6], [639.26, 1462.48], [649.47, 1458.96], [647.07, 1452.09], [636.88, 1455.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[690.07, 1445.78], [691.68, 1443.74], [693.03, 1444.81], [694.97, 1442.36], [695.76, 1442.97], [696.75, 1441.73], [699.36, 1443.79], [698.18, 1445.26], [701.81, 1448.11], [696.02, 1455.4], [690.58, 1451.11], [691.75, 1449.63], [689.94, 1448.2], [691.18, 1446.65], [690.07, 1445.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[699.71, 1441.57], [701.73, 1439.22], [706.42, 1443.24], [704.4, 1445.57], [699.71, 1441.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[702.76, 1448.15], [705.73, 1450.73], [709.89, 1445.98], [706.94, 1443.4], [702.76, 1448.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[693.06, 1462.42], [700.09, 1454.34], [707.18, 1460.45], [700.15, 1468.54], [693.06, 1462.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[708.33, 1463.72], [697.15, 1476.63], [703.54, 1482.13], [714.73, 1469.22], [708.33, 1463.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[708.67, 1494.3], [715.01, 1486.76], [709.13, 1481.85], [704.25, 1487.66], [706.92, 1489.89], [705.46, 1491.62], [708.67, 1494.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[709.38, 1495.26], [712.08, 1491.94], [716.52, 1495.51], [713.83, 1498.84], [709.38, 1495.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[724.87, 1509.27], [712.33, 1498.46], [707.9, 1503.58], [710.05, 1505.43], [709.39, 1506.19], [717.86, 1513.49], [718.3, 1512.99], [720.21, 1514.65], [724.87, 1509.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[727.37, 1507.65], [733.33, 1501.09], [723.69, 1492.4], [722.83, 1493.33], [721.48, 1492.11], [719.33, 1494.49], [720.52, 1495.55], [717.56, 1498.82], [727.37, 1507.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[722.19, 1490.32], [724.51, 1487.51], [720.02, 1483.84], [717.71, 1486.65], [722.19, 1490.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[735.15, 1499.22], [740.87, 1492.5], [730.55, 1483.78], [724.82, 1490.5], [735.15, 1499.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[742.29, 1490.08], [732.41, 1481.42], [735.09, 1478.38], [736.4, 1479.51], [738.73, 1476.87], [747.32, 1484.39], [742.29, 1490.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[732.65, 1471.83], [737.22, 1475.57], [739.29, 1473.07], [734.73, 1469.32], [732.65, 1471.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[746.62, 1466.37], [743.6, 1469.77], [746.18, 1472.05], [743.78, 1474.74], [748.52, 1478.96], [753.95, 1472.88], [746.62, 1466.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[751.01, 1465.73], [757.87, 1458.35], [765.07, 1465.01], [758.22, 1472.38], [751.01, 1465.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[740.6, 1459.53], [734.73, 1453.93], [741.18, 1447.21], [747.06, 1452.81], [740.6, 1459.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[731.75, 1451.28], [725.29, 1445.5], [732.98, 1436.97], [739.44, 1442.75], [731.75, 1451.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[711.0, 1446.72], [713.15, 1444.22], [716.55, 1447.12], [714.4, 1449.61], [711.0, 1446.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[701.4, 1434.84], [710.02, 1442.7], [714.82, 1437.48], [706.2, 1429.62], [701.4, 1434.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[714.36, 1421.03], [722.17, 1428.19], [721.34, 1429.08], [723.5, 1431.05], [718.85, 1436.09], [708.87, 1426.97], [714.36, 1421.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[673.62, 1644.39], [680.6, 1651.82], [691.05, 1642.08], [684.08, 1634.65], [673.62, 1644.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[691.23, 1631.36], [689.12, 1629.06], [692.85, 1625.66], [694.96, 1627.95], [691.23, 1631.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[669.97, 1640.6], [663.33, 1633.08], [670.63, 1626.68], [677.27, 1634.2], [669.97, 1640.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[676.27, 1625.79], [674.13, 1623.42], [676.8, 1621.01], [678.95, 1623.38], [676.27, 1625.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[685.04, 1630.17], [681.17, 1625.79], [685.62, 1621.87], [689.5, 1626.25], [685.04, 1630.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[655.45, 1622.84], [661.11, 1628.92], [669.97, 1620.73], [664.33, 1614.65], [655.45, 1622.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[677.3, 1617.77], [672.99, 1613.14], [678.49, 1608.08], [682.79, 1612.71], [677.3, 1617.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[675.25, 1603.5], [682.65, 1595.46], [691.93, 1603.93], [691.22, 1604.71], [692.56, 1605.94], [688.67, 1610.16], [687.53, 1609.12], [684.74, 1612.16], [675.25, 1603.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[689.61, 1593.33], [694.01, 1597.36], [695.01, 1596.27], [698.27, 1599.26], [707.85, 1588.87], [699.37, 1581.12], [690.23, 1591.04], [691.03, 1591.77], [689.61, 1593.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[708.2, 1568.28], [709.9, 1570.03], [710.1, 1569.85], [720.81, 1580.87], [714.1, 1587.34], [703.5, 1576.42], [704.63, 1575.33], [702.82, 1573.48], [708.2, 1568.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[720.26, 1597.99], [715.65, 1593.23], [720.36, 1588.71], [724.97, 1593.47], [720.26, 1597.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[731.12, 1617.86], [733.95, 1615.5], [730.28, 1611.1], [727.44, 1613.45], [731.12, 1617.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[742.23, 1610.95], [745.14, 1608.43], [741.23, 1603.93], [738.31, 1606.45], [742.23, 1610.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[748.94, 1602.67], [752.41, 1599.68], [748.06, 1594.68], [744.6, 1597.67], [748.94, 1602.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[726.04, 1586.23], [730.41, 1582.26], [733.38, 1585.51], [729.01, 1589.48], [726.04, 1586.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[721.99, 1633.02], [728.21, 1627.77], [736.99, 1638.1], [730.77, 1643.35], [721.99, 1633.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[703.01, 1634.24], [706.27, 1631.29], [711.43, 1636.95], [708.17, 1639.9], [703.01, 1634.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[686.42, 1660.84], [694.72, 1653.6], [705.93, 1666.35], [697.62, 1673.59], [686.42, 1660.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[695.1, 1650.78], [690.27, 1645.13], [700.25, 1636.66], [705.08, 1642.3], [695.1, 1650.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[703.02, 1651.68], [710.14, 1645.13], [717.97, 1653.6], [717.07, 1654.42], [718.63, 1656.1], [713.79, 1660.54], [711.92, 1658.51], [710.53, 1659.79], [703.02, 1651.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[721.91, 1652.46], [729.45, 1645.98], [720.98, 1636.2], [717.59, 1639.1], [718.3, 1639.91], [714.14, 1643.48], [721.91, 1652.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[748.45, 1629.51], [736.85, 1616.33], [743.77, 1610.28], [755.37, 1623.46], [748.45, 1629.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[739.11, 1638.01], [746.57, 1631.34], [735.14, 1618.63], [731.54, 1621.85], [730.5, 1620.69], [727.2, 1623.64], [728.32, 1624.88], [727.75, 1625.39], [739.11, 1638.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[757.27, 1621.04], [748.18, 1610.61], [754.9, 1604.79], [762.08, 1613.03], [759.69, 1615.09], [760.58, 1616.12], [759.55, 1617.01], [760.58, 1618.19], [757.27, 1621.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[764.73, 1597.96], [757.14, 1604.44], [763.87, 1612.27], [773.14, 1604.37], [768.78, 1599.29], [767.09, 1600.71], [764.73, 1597.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[766.88, 1596.0], [773.38, 1590.52], [779.69, 1597.96], [779.1, 1598.46], [780.54, 1600.15], [775.25, 1604.61], [773.83, 1602.93], [773.2, 1603.46], [766.88, 1596.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[782.96, 1580.84], [792.1, 1591.1], [785.02, 1597.35], [775.89, 1587.09], [782.96, 1580.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[791.24, 1587.2], [799.26, 1580.29], [790.18, 1569.85], [789.32, 1570.6], [786.75, 1567.64], [780.22, 1573.27], [782.76, 1576.18], [782.13, 1576.74], [791.24, 1587.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[776.65, 1577.89], [779.81, 1575.06], [776.11, 1570.95], [772.94, 1573.78], [776.65, 1577.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[778.86, 1566.29], [774.26, 1561.45], [779.84, 1556.18], [784.44, 1561.02], [778.86, 1566.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[799.25, 1547.43], [802.19, 1544.78], [806.14, 1549.11], [803.2, 1551.76], [799.25, 1547.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[802.83, 1581.06], [792.92, 1570.01], [800.61, 1563.14], [810.53, 1574.21], [802.83, 1581.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[811.28, 1572.82], [819.37, 1565.38], [808.26, 1553.37], [800.16, 1560.81], [811.28, 1572.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[819.63, 1562.19], [813.26, 1555.03], [820.81, 1548.37], [826.92, 1555.25], [825.37, 1556.62], [826.88, 1558.32], [822.33, 1562.33], [821.08, 1560.91], [819.63, 1562.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[829.77, 1555.85], [836.34, 1549.74], [827.24, 1540.01], [820.67, 1546.12], [829.77, 1555.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[777.61, 1537.61], [780.85, 1533.87], [786.12, 1538.42], [782.87, 1542.16], [777.61, 1537.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[799.69, 1540.04], [805.26, 1535.22], [800.06, 1529.26], [794.49, 1534.06], [799.69, 1540.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[785.9, 1528.45], [789.14, 1525.17], [794.27, 1530.21], [791.04, 1533.49], [785.9, 1528.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[817.53, 1531.54], [813.44, 1527.33], [816.07, 1524.8], [820.15, 1529.01], [817.53, 1531.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[829.7, 1535.78], [831.83, 1533.94], [829.17, 1530.89], [833.91, 1526.8], [846.6, 1541.41], [839.73, 1547.34], [829.7, 1535.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[825.24, 1533.07], [829.35, 1529.82], [826.26, 1525.93], [822.14, 1529.18], [825.24, 1533.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[838.95, 1512.8], [842.37, 1517.07], [845.52, 1514.56], [842.1, 1510.3], [838.95, 1512.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[840.62, 1530.08], [848.81, 1539.7], [855.58, 1533.99], [844.86, 1521.39], [840.23, 1525.3], [841.82, 1527.15], [840.77, 1528.04], [841.71, 1529.16], [840.62, 1530.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[857.35, 1513.74], [864.02, 1507.76], [871.34, 1515.86], [864.68, 1521.84], [857.35, 1513.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[846.89, 1518.46], [852.58, 1513.73], [863.98, 1527.34], [858.29, 1532.07], [846.89, 1518.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[842.4, 1508.08], [832.74, 1499.08], [840.57, 1490.72], [850.24, 1499.72], [842.4, 1508.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[839.33, 1488.19], [827.76, 1501.22], [820.53, 1494.85], [830.14, 1484.03], [833.04, 1486.59], [835.01, 1484.38], [839.33, 1488.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[829.29, 1480.72], [818.77, 1492.48], [811.6, 1486.12], [822.12, 1474.35], [829.29, 1480.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[734.8, 1568.39], [739.04, 1564.54], [744.46, 1570.48], [740.23, 1574.32], [734.8, 1568.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[744.71, 1561.35], [750.18, 1566.66], [754.83, 1561.9], [749.36, 1556.58], [744.71, 1561.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[757.94, 1557.88], [764.74, 1564.08], [770.47, 1557.85], [763.67, 1551.64], [757.94, 1557.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[770.83, 1549.84], [772.91, 1547.25], [775.86, 1549.63], [773.77, 1552.2], [770.83, 1549.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[709.33, 1567.53], [716.32, 1561.22], [725.68, 1571.51], [718.68, 1577.82], [709.33, 1567.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[732.01, 1562.47], [723.99, 1553.22], [718.0, 1558.38], [726.2, 1567.83], [726.58, 1567.49], [729.07, 1570.37], [734.07, 1566.08], [731.4, 1563.0], [732.01, 1562.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[735.92, 1559.49], [742.29, 1552.48], [733.29, 1544.36], [731.31, 1546.54], [729.55, 1544.96], [725.16, 1549.79], [735.92, 1559.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[745.3, 1551.06], [751.24, 1544.38], [741.47, 1535.75], [735.53, 1542.44], [745.3, 1551.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[749.56, 1521.63], [759.99, 1530.79], [753.14, 1538.53], [742.7, 1529.37], [749.56, 1521.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[762.21, 1531.16], [768.41, 1524.31], [757.47, 1514.5], [751.28, 1521.36], [762.21, 1531.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[768.82, 1522.33], [775.66, 1514.65], [767.05, 1507.05], [766.52, 1507.64], [764.7, 1506.04], [759.15, 1512.28], [760.88, 1513.8], [760.12, 1514.64], [768.82, 1522.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[777.25, 1510.73], [769.79, 1503.98], [772.37, 1501.14], [771.35, 1500.23], [771.23, 1498.52], [772.98, 1496.64], [774.66, 1496.54], [775.78, 1497.56], [776.81, 1496.44], [784.43, 1503.33], [783.96, 1503.85], [788.82, 1508.25], [784.94, 1512.51], [780.91, 1508.88], [778.8, 1511.21], [777.71, 1510.23], [777.25, 1510.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[786.34, 1504.46], [776.74, 1495.96], [777.2, 1495.44], [775.87, 1494.27], [780.18, 1489.42], [781.54, 1490.61], [783.7, 1490.43], [783.8, 1491.61], [789.29, 1496.44], [789.33, 1497.72], [795.0, 1502.72], [791.64, 1506.49], [787.66, 1502.98], [786.34, 1504.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[795.52, 1500.23], [790.22, 1495.59], [793.48, 1491.89], [798.79, 1496.53], [795.52, 1500.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[807.8, 1475.8], [813.7, 1481.07], [820.2, 1473.85], [814.3, 1468.58], [807.8, 1475.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[804.36, 1458.29], [811.56, 1464.38], [804.12, 1473.13], [796.92, 1467.05], [804.36, 1458.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[786.3, 1483.84], [790.73, 1487.81], [795.64, 1482.36], [791.22, 1478.39], [786.3, 1483.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[639.16, 1175.37], [645.67, 1168.34], [651.3, 1173.49], [644.79, 1180.53], [639.16, 1175.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[651.46, 1190.38], [646.02, 1185.58], [642.33, 1189.73], [641.93, 1189.38], [636.64, 1195.34], [642.48, 1200.48], [651.46, 1190.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[652.66, 1201.82], [642.67, 1213.07], [636.36, 1207.5], [646.34, 1196.25], [652.66, 1201.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[646.0, 1213.01], [652.69, 1205.17], [653.08, 1205.51], [654.58, 1203.76], [658.5, 1207.08], [656.89, 1208.97], [659.71, 1211.36], [655.99, 1215.72], [654.9, 1214.79], [652.05, 1218.13], [646.0, 1213.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[657.73, 1226.85], [651.46, 1221.06], [663.48, 1208.13], [670.44, 1214.56], [662.83, 1222.74], [662.41, 1222.35], [659.46, 1225.5], [659.21, 1225.26], [657.73, 1226.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[679.24, 1222.99], [672.43, 1216.96], [668.43, 1221.44], [668.31, 1221.34], [665.09, 1224.95], [665.45, 1225.27], [662.3, 1228.81], [668.87, 1234.62], [679.24, 1222.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[671.89, 1237.19], [677.99, 1242.6], [686.99, 1232.49], [680.88, 1227.09], [678.38, 1229.9], [677.94, 1229.51], [674.4, 1233.48], [674.85, 1233.87], [671.89, 1237.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[690.24, 1233.16], [697.38, 1239.42], [687.07, 1251.1], [685.47, 1249.7], [684.55, 1250.73], [679.01, 1245.88], [690.24, 1233.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[691.99, 1222.65], [697.95, 1216.21], [710.43, 1227.68], [705.2, 1233.34], [704.43, 1232.64], [703.7, 1233.43], [691.99, 1222.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[683.59, 1216.94], [691.08, 1209.17], [685.09, 1203.43], [677.6, 1211.21], [683.59, 1216.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[700.93, 1213.25], [706.98, 1206.54], [718.88, 1217.15], [712.83, 1223.88], [700.93, 1213.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[719.48, 1209.18], [725.59, 1214.86], [733.62, 1206.28], [733.19, 1205.87], [736.94, 1201.88], [731.26, 1196.6], [719.48, 1209.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[716.28, 1212.2], [711.39, 1207.78], [715.37, 1203.42], [720.25, 1207.84], [716.28, 1212.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[713.28, 1201.52], [709.82, 1205.31], [711.83, 1207.13], [715.29, 1203.33], [713.28, 1201.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[704.92, 1195.21], [715.33, 1183.87], [718.12, 1186.41], [719.8, 1184.59], [724.34, 1188.73], [722.68, 1190.54], [722.99, 1190.82], [712.56, 1202.19], [704.92, 1195.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[707.82, 1176.9], [715.17, 1183.65], [702.34, 1197.51], [695.0, 1190.76], [707.82, 1176.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[694.4, 1187.94], [688.14, 1182.21], [699.6, 1169.81], [700.15, 1170.32], [701.03, 1169.36], [706.17, 1174.07], [705.29, 1175.03], [705.85, 1175.55], [694.4, 1187.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[688.75, 1178.42], [683.58, 1173.84], [693.69, 1162.51], [698.85, 1167.09], [688.75, 1178.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[675.38, 1166.54], [684.09, 1156.85], [690.13, 1162.24], [687.33, 1165.36], [687.86, 1165.82], [684.5, 1169.55], [683.98, 1169.08], [681.41, 1171.94], [680.37, 1171.01], [679.39, 1172.1], [676.75, 1169.73], [677.72, 1168.64], [675.38, 1166.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[672.78, 1165.51], [683.44, 1153.93], [677.15, 1148.18], [666.49, 1159.78], [672.78, 1165.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[669.2, 1143.06], [663.09, 1150.12], [663.76, 1150.69], [662.29, 1152.37], [665.89, 1155.48], [667.24, 1153.92], [669.47, 1155.84], [675.69, 1148.66], [675.15, 1148.19], [675.66, 1147.59], [673.71, 1145.93], [673.2, 1146.51], [669.2, 1143.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[648.08, 1147.25], [652.32, 1142.81], [652.82, 1143.29], [657.22, 1138.69], [656.72, 1138.22], [658.51, 1136.33], [653.18, 1131.27], [642.74, 1142.19], [648.08, 1147.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[651.26, 1160.49], [647.83, 1157.54], [644.59, 1161.3], [648.02, 1164.24], [651.26, 1160.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[657.27, 1186.62], [662.55, 1191.53], [667.44, 1186.33], [662.15, 1181.41], [657.27, 1186.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[663.35, 1141.93], [667.32, 1137.79], [663.22, 1133.89], [652.75, 1144.8], [656.93, 1148.78], [659.36, 1146.25], [660.85, 1147.69], [664.93, 1143.44], [663.35, 1141.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[829.78, 1442.1], [837.69, 1433.29], [832.5, 1428.66], [824.59, 1437.47], [829.78, 1442.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[838.26, 1437.66], [844.36, 1443.21], [838.28, 1449.85], [832.17, 1444.29], [838.26, 1437.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[853.26, 1438.15], [849.45, 1434.87], [853.85, 1429.79], [857.66, 1433.08], [853.26, 1438.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[849.04, 1460.91], [842.1, 1454.59], [851.37, 1444.47], [858.32, 1450.77], [849.04, 1460.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[853.36, 1460.68], [860.16, 1466.63], [867.7, 1458.03], [860.91, 1452.1], [853.36, 1460.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[860.44, 1470.57], [868.87, 1460.81], [876.12, 1467.03], [867.7, 1476.8], [860.44, 1470.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[877.58, 1484.77], [875.63, 1483.05], [874.86, 1483.92], [871.92, 1481.32], [872.7, 1480.45], [871.0, 1478.96], [879.67, 1469.22], [886.25, 1475.04], [877.58, 1484.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[886.23, 1493.9], [880.08, 1488.7], [885.74, 1482.04], [891.89, 1487.24], [886.23, 1493.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[887.64, 1494.19], [894.2, 1486.58], [901.29, 1492.66], [895.08, 1499.87], [890.49, 1495.95], [890.16, 1496.34], [887.64, 1494.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[896.96, 1504.65], [901.38, 1508.66], [902.97, 1506.93], [905.69, 1509.4], [915.92, 1498.22], [913.63, 1496.14], [914.37, 1495.33], [910.88, 1492.17], [910.14, 1492.98], [908.77, 1491.73], [896.96, 1504.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[906.38, 1509.92], [914.71, 1500.77], [923.03, 1508.3], [914.71, 1517.43], [906.38, 1509.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[916.82, 1518.75], [921.69, 1513.36], [923.69, 1515.16], [926.02, 1512.57], [931.24, 1517.24], [924.03, 1525.23], [920.22, 1521.8], [919.82, 1522.25], [917.94, 1520.57], [918.34, 1520.12], [916.82, 1518.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[956.53, 1469.21], [969.26, 1480.62], [948.19, 1503.98], [935.45, 1492.57], [956.53, 1469.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[930.19, 1534.71], [931.49, 1533.3], [932.42, 1534.14], [938.99, 1526.92], [931.91, 1520.52], [925.48, 1527.58], [927.1, 1529.04], [925.66, 1530.62], [930.19, 1534.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[934.5, 1536.31], [941.28, 1529.36], [944.61, 1532.58], [945.31, 1531.86], [947.49, 1533.98], [946.8, 1534.7], [948.03, 1535.9], [941.26, 1542.86], [938.71, 1540.4], [937.52, 1541.62], [933.79, 1538.02], [934.99, 1536.79], [934.5, 1536.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[941.61, 1548.19], [949.04, 1540.17], [957.69, 1548.13], [950.26, 1556.15], [941.61, 1548.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[959.4, 1534.35], [961.15, 1532.29], [959.62, 1531.0], [964.73, 1524.99], [973.91, 1532.73], [967.06, 1540.82], [959.4, 1534.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[977.18, 1480.65], [989.1, 1467.45], [1012.66, 1488.57], [1000.74, 1501.76], [977.18, 1480.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[864.1, 1445.25], [860.98, 1442.45], [865.07, 1437.91], [868.2, 1440.71], [864.1, 1445.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[864.78, 1445.01], [867.85, 1447.77], [872.24, 1442.91], [869.16, 1440.15], [864.78, 1445.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[884.47, 1543.25], [896.15, 1556.73], [903.43, 1550.45], [891.75, 1536.98], [884.47, 1543.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[875.77, 1550.88], [889.39, 1566.16], [894.83, 1561.37], [881.22, 1546.07], [875.77, 1550.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[864.94, 1559.94], [872.39, 1553.26], [881.04, 1562.84], [873.6, 1569.52], [864.94, 1559.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[887.14, 1575.35], [890.96, 1572.21], [887.78, 1568.39], [883.97, 1571.53], [887.14, 1575.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[883.77, 1587.34], [879.92, 1582.82], [882.48, 1580.41], [885.83, 1577.81], [889.69, 1582.33], [883.77, 1587.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[875.12, 1578.46], [878.55, 1575.65], [882.48, 1580.41], [879.05, 1583.22], [875.12, 1578.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[855.94, 1567.8], [868.08, 1581.71], [874.97, 1575.73], [871.39, 1571.62], [872.38, 1570.76], [863.84, 1560.96], [855.94, 1567.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[857.65, 1586.61], [847.67, 1575.15], [855.19, 1568.67], [863.34, 1578.05], [860.98, 1580.1], [862.79, 1582.18], [857.65, 1586.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[842.07, 1584.51], [840.16, 1586.11], [848.25, 1595.72], [855.16, 1589.94], [845.12, 1578.0], [840.11, 1582.17], [842.07, 1584.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[837.38, 1602.15], [845.12, 1595.39], [838.63, 1588.01], [830.88, 1594.76], [837.38, 1602.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[839.07, 1609.8], [841.89, 1607.55], [844.4, 1610.68], [841.58, 1612.93], [839.07, 1609.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[821.58, 1602.46], [828.37, 1596.56], [834.48, 1603.53], [827.7, 1609.43], [821.58, 1602.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[815.49, 1607.45], [812.5, 1610.2], [822.76, 1621.28], [829.81, 1614.81], [817.87, 1601.93], [813.83, 1605.65], [815.49, 1607.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[827.78, 1628.07], [830.48, 1625.79], [827.13, 1621.87], [824.43, 1624.15], [827.78, 1628.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[832.0, 1633.46], [837.01, 1629.25], [833.02, 1624.52], [828.0, 1628.73], [832.0, 1633.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[818.59, 1628.48], [823.41, 1624.32], [827.66, 1629.21], [822.85, 1633.37], [818.59, 1628.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[823.1, 1641.93], [819.94, 1638.06], [823.24, 1635.39], [826.38, 1639.26], [823.1, 1641.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[809.27, 1644.61], [812.45, 1641.68], [808.45, 1637.35], [805.26, 1640.29], [809.27, 1644.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[796.38, 1655.36], [792.29, 1650.58], [795.62, 1647.74], [799.72, 1652.53], [796.38, 1655.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[800.79, 1651.94], [803.99, 1649.18], [800.11, 1644.73], [796.92, 1647.48], [800.79, 1651.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[803.86, 1655.75], [809.17, 1651.18], [806.38, 1647.97], [801.08, 1652.55], [803.86, 1655.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[791.68, 1660.98], [796.12, 1657.33], [800.13, 1662.17], [795.69, 1665.82], [791.68, 1660.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[783.24, 1669.18], [788.05, 1664.84], [792.35, 1669.59], [787.53, 1673.91], [783.24, 1669.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[809.24, 1625.64], [817.12, 1618.71], [810.96, 1611.76], [809.07, 1613.44], [807.58, 1611.76], [803.65, 1615.23], [805.06, 1616.82], [803.02, 1618.61], [809.24, 1625.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[802.12, 1633.98], [808.77, 1628.25], [801.33, 1619.68], [800.28, 1620.58], [799.44, 1619.61], [798.03, 1620.83], [797.21, 1619.89], [793.02, 1623.5], [802.12, 1633.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[794.84, 1641.9], [801.54, 1635.96], [791.21, 1624.39], [784.52, 1630.32], [794.84, 1641.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[783.73, 1651.71], [773.36, 1639.97], [780.27, 1633.92], [790.64, 1645.66], [783.73, 1651.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[784.21, 1658.85], [780.25, 1654.16], [783.13, 1651.74], [787.09, 1656.43], [784.21, 1658.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[772.42, 1641.44], [780.48, 1651.33], [777.03, 1654.13], [779.29, 1656.91], [774.41, 1660.86], [764.09, 1648.2], [772.42, 1641.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[763.83, 1665.87], [755.77, 1657.02], [763.41, 1650.11], [771.46, 1658.96], [763.83, 1665.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[756.04, 1675.04], [746.64, 1664.43], [753.5, 1658.4], [761.09, 1666.97], [757.45, 1670.16], [759.26, 1672.21], [756.04, 1675.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[767.52, 1681.95], [763.02, 1676.64], [768.85, 1671.73], [773.35, 1677.04], [767.52, 1681.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[743.31, 1668.7], [751.33, 1677.24], [746.55, 1681.69], [738.53, 1673.14], [743.31, 1668.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[749.12, 1697.65], [745.8, 1694.01], [750.76, 1689.51], [754.08, 1693.15], [749.12, 1697.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[762.78, 1694.64], [758.83, 1689.8], [764.18, 1685.47], [768.13, 1690.3], [762.78, 1694.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[732.29, 1689.99], [719.16, 1701.02], [712.96, 1693.7], [726.1, 1682.67], [732.29, 1689.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[729.52, 1712.03], [742.21, 1700.94], [735.56, 1693.39], [724.77, 1702.81], [726.89, 1705.22], [724.99, 1706.87], [729.52, 1712.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[741.95, 1720.88], [749.36, 1714.26], [743.44, 1707.67], [736.03, 1714.28], [741.95, 1720.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[750.79, 1736.46], [754.67, 1733.04], [752.88, 1731.03], [763.16, 1721.97], [764.86, 1723.88], [768.81, 1720.4], [759.66, 1710.09], [741.55, 1726.06], [750.79, 1736.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[762.59, 1701.36], [766.97, 1697.46], [768.5, 1699.16], [770.82, 1697.09], [779.3, 1706.52], [772.6, 1712.49], [762.59, 1701.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[771.47, 1693.5], [777.06, 1688.76], [778.31, 1690.22], [780.41, 1688.44], [788.75, 1698.21], [781.06, 1704.73], [771.47, 1693.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[791.27, 1693.62], [797.2, 1688.69], [789.78, 1679.83], [783.84, 1684.77], [791.27, 1693.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[793.95, 1677.79], [801.5, 1686.39], [807.78, 1680.92], [800.24, 1672.32], [793.95, 1677.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[811.1, 1678.5], [817.44, 1672.8], [809.1, 1663.58], [802.76, 1669.27], [811.1, 1678.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[817.62, 1671.24], [825.48, 1664.14], [818.4, 1656.36], [819.43, 1655.03], [822.34, 1658.52], [829.78, 1652.99], [822.74, 1644.89], [815.08, 1652.7], [813.19, 1650.62], [805.33, 1657.73], [817.62, 1671.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[836.31, 1653.66], [839.81, 1650.69], [838.53, 1649.18], [840.77, 1647.28], [833.31, 1638.55], [827.56, 1643.43], [836.31, 1653.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[847.8, 1647.46], [836.66, 1634.97], [843.31, 1629.07], [854.45, 1641.57], [847.8, 1647.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[855.29, 1640.46], [846.01, 1629.92], [846.96, 1629.1], [844.94, 1626.8], [849.37, 1622.93], [851.7, 1625.56], [854.06, 1623.5], [863.02, 1633.7], [855.29, 1640.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[850.38, 1608.18], [854.93, 1604.71], [851.08, 1599.7], [846.53, 1603.17], [850.38, 1608.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[908.6, 1590.03], [902.47, 1582.96], [909.27, 1577.12], [915.4, 1584.19], [908.6, 1590.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[897.41, 1582.51], [898.51, 1583.81], [899.9, 1582.64], [908.25, 1592.45], [900.16, 1599.28], [890.71, 1588.17], [897.41, 1582.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[883.03, 1596.2], [889.88, 1590.4], [898.63, 1600.68], [891.78, 1606.48], [883.03, 1596.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[883.08, 1614.62], [889.97, 1608.66], [882.1, 1599.64], [875.21, 1605.6], [883.08, 1614.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[921.03, 1579.87], [926.12, 1575.58], [921.87, 1570.58], [916.77, 1574.87], [921.03, 1579.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[779.22, 1670.34], [782.15, 1667.75], [777.74, 1662.8], [774.82, 1665.38], [779.22, 1670.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[873.01, 1609.21], [879.86, 1617.25], [874.22, 1622.02], [867.37, 1613.98], [873.01, 1609.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[918.49, 1566.64], [923.55, 1561.3], [935.18, 1572.26], [930.12, 1577.59], [918.49, 1566.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[776.23, 1745.81], [766.87, 1754.76], [774.23, 1762.42], [783.6, 1753.46], [776.23, 1745.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[783.37, 1759.95], [790.1, 1767.38], [781.43, 1775.17], [774.7, 1767.74], [783.37, 1759.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[783.17, 1778.02], [796.91, 1766.25], [803.55, 1773.95], [789.81, 1785.72], [783.17, 1778.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[789.9, 1761.37], [794.47, 1766.56], [799.34, 1762.3], [794.77, 1757.11], [789.9, 1761.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[790.43, 1787.09], [803.43, 1775.74], [811.78, 1785.24], [798.77, 1796.59], [790.43, 1787.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[818.69, 1788.93], [825.43, 1782.82], [814.53, 1770.9], [807.79, 1777.03], [818.69, 1788.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[820.18, 1774.25], [826.76, 1781.64], [834.89, 1774.44], [827.0, 1765.6], [823.67, 1768.56], [824.96, 1770.02], [820.18, 1774.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[837.71, 1771.61], [846.25, 1763.92], [835.88, 1752.49], [827.35, 1760.17], [837.71, 1771.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[849.65, 1759.36], [853.85, 1755.77], [855.53, 1757.74], [859.44, 1754.39], [849.58, 1742.93], [841.48, 1749.85], [849.65, 1759.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[861.0, 1749.79], [862.72, 1748.31], [864.43, 1750.27], [869.49, 1745.91], [858.56, 1733.33], [851.78, 1739.18], [861.0, 1749.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[872.76, 1742.83], [879.96, 1737.03], [869.23, 1723.78], [862.02, 1729.58], [872.76, 1742.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[882.27, 1730.04], [883.49, 1728.99], [885.67, 1731.55], [893.21, 1725.15], [890.76, 1722.3], [891.31, 1721.83], [885.1, 1714.57], [875.79, 1722.48], [882.27, 1730.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[896.29, 1716.86], [899.75, 1713.82], [901.24, 1715.5], [904.19, 1712.9], [897.51, 1705.34], [891.09, 1710.98], [896.29, 1716.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[907.25, 1711.6], [914.9, 1704.83], [904.58, 1693.26], [896.93, 1700.05], [907.25, 1711.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[885.96, 1698.09], [880.98, 1702.5], [876.77, 1697.76], [881.74, 1693.36], [885.96, 1698.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[889.66, 1693.37], [895.48, 1688.5], [891.07, 1683.28], [885.24, 1688.15], [889.66, 1693.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[886.45, 1685.25], [890.89, 1681.35], [886.13, 1675.96], [881.69, 1679.86], [886.45, 1685.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[891.11, 1680.95], [895.01, 1677.37], [890.18, 1672.15], [886.28, 1675.73], [891.11, 1680.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[917.92, 1699.27], [907.63, 1688.44], [914.04, 1682.39], [925.31, 1694.24], [920.27, 1699.0], [919.29, 1697.97], [917.92, 1699.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[928.38, 1689.51], [930.12, 1687.96], [932.08, 1690.14], [938.54, 1684.38], [928.88, 1673.61], [925.98, 1676.21], [924.75, 1674.84], [919.45, 1679.56], [928.38, 1689.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[942.34, 1682.08], [949.71, 1675.32], [946.49, 1671.83], [947.51, 1670.89], [939.07, 1661.75], [930.67, 1669.45], [942.34, 1682.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[953.33, 1671.16], [942.68, 1659.09], [950.43, 1652.3], [961.07, 1664.37], [953.33, 1671.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[955.33, 1652.38], [963.79, 1659.96], [973.3, 1649.4], [966.68, 1643.47], [959.61, 1651.33], [957.77, 1649.68], [955.33, 1652.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[977.85, 1648.12], [961.52, 1633.56], [967.09, 1627.35], [983.43, 1641.91], [977.85, 1648.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[958.96, 1636.54], [949.37, 1627.59], [944.77, 1632.49], [954.37, 1641.43], [958.96, 1636.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[955.66, 1631.76], [950.2, 1626.91], [955.74, 1620.73], [961.19, 1625.58], [955.66, 1631.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[946.83, 1628.28], [952.89, 1622.84], [948.55, 1618.04], [942.49, 1623.49], [946.83, 1628.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[951.45, 1615.9], [955.09, 1620.11], [952.85, 1622.04], [949.2, 1617.85], [951.45, 1615.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[965.4, 1620.39], [970.26, 1615.39], [965.71, 1610.99], [960.84, 1615.99], [965.4, 1620.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[987.72, 1636.17], [995.07, 1628.1], [981.2, 1615.58], [976.07, 1621.23], [980.49, 1625.22], [978.28, 1627.65], [987.72, 1636.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[997.76, 1625.16], [1005.31, 1616.83], [995.99, 1608.46], [993.07, 1611.69], [991.4, 1610.21], [986.79, 1615.32], [997.76, 1625.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[994.72, 1603.17], [1007.59, 1615.21], [1014.78, 1607.59], [1003.43, 1596.96], [1003.95, 1596.41], [998.76, 1591.56], [992.93, 1597.74], [996.6, 1601.18], [994.72, 1603.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1016.72, 1604.17], [1022.62, 1597.49], [1011.35, 1587.61], [1005.45, 1594.29], [1016.72, 1604.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1009.07, 1586.53], [1003.55, 1581.6], [1007.63, 1577.07], [1013.15, 1582.0], [1009.07, 1586.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1017.07, 1583.35], [1027.38, 1592.87], [1034.21, 1585.53], [1022.25, 1574.49], [1018.24, 1578.8], [1019.88, 1580.32], [1017.07, 1583.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1016.24, 1573.75], [1019.88, 1569.84], [1014.64, 1564.99], [1011.0, 1568.89], [1016.24, 1573.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1027.38, 1573.97], [1033.75, 1566.71], [1040.9, 1572.95], [1040.26, 1573.69], [1042.35, 1575.52], [1037.47, 1581.08], [1035.81, 1579.64], [1034.98, 1580.6], [1027.38, 1573.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1037.58, 1552.62], [1049.75, 1562.73], [1043.58, 1570.1], [1031.41, 1559.98], [1037.58, 1552.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1010.78, 1561.3], [1013.3, 1558.6], [1017.73, 1562.74], [1015.23, 1565.42], [1010.78, 1561.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1024.16, 1545.62], [1030.06, 1550.51], [1025.29, 1556.23], [1019.38, 1551.34], [1024.16, 1545.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1015.7, 1543.71], [1019.98, 1539.03], [1024.81, 1543.41], [1020.53, 1548.1], [1015.7, 1543.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1052.17, 1560.51], [1059.24, 1552.57], [1050.94, 1545.23], [1043.87, 1553.16], [1052.17, 1560.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1038.88, 1541.24], [1044.33, 1535.24], [1038.16, 1529.67], [1032.71, 1535.68], [1038.88, 1541.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1053.72, 1533.52], [1057.53, 1529.08], [1070.44, 1540.12], [1062.78, 1549.01], [1057.19, 1544.24], [1058.51, 1542.7], [1056.48, 1540.96], [1058.99, 1538.03], [1053.72, 1533.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1062.55, 1527.38], [1068.96, 1520.55], [1080.65, 1531.43], [1074.26, 1538.26], [1062.55, 1527.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1062.11, 1515.54], [1056.2, 1509.82], [1049.52, 1516.68], [1055.43, 1522.4], [1062.11, 1515.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1036.88, 1504.29], [1042.24, 1498.47], [1050.04, 1505.58], [1048.2, 1507.58], [1050.1, 1509.32], [1046.58, 1513.15], [1036.88, 1504.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1026.11, 1517.11], [1026.72, 1516.42], [1024.82, 1514.77], [1029.86, 1509.07], [1031.81, 1510.78], [1032.37, 1510.14], [1042.35, 1518.9], [1036.14, 1525.92], [1026.11, 1517.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1031.65, 1534.69], [1036.04, 1530.19], [1030.82, 1525.12], [1026.42, 1529.62], [1031.65, 1534.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1026.11, 1531.02], [1023.69, 1528.65], [1025.73, 1526.59], [1021.36, 1522.3], [1013.36, 1530.38], [1020.15, 1537.06], [1026.11, 1531.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1009.65, 1550.1], [1015.96, 1542.82], [1006.3, 1534.49], [999.98, 1541.76], [1009.65, 1550.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1000.64, 1559.9], [1003.46, 1556.78], [1005.01, 1558.17], [1008.88, 1553.88], [998.21, 1544.3], [991.52, 1551.7], [1000.64, 1559.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[987.28, 1572.24], [991.24, 1568.79], [993.71, 1566.35], [987.66, 1559.8], [981.23, 1565.7], [987.28, 1572.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[990.69, 1579.26], [996.22, 1574.16], [991.24, 1568.79], [985.7, 1573.89], [990.69, 1579.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[987.5, 1582.75], [990.62, 1580.06], [986.8, 1575.65], [983.68, 1578.33], [987.5, 1582.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[975.48, 1583.04], [982.61, 1576.73], [980.04, 1573.84], [981.94, 1572.16], [977.5, 1567.19], [968.47, 1575.15], [975.48, 1583.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[966.24, 1593.53], [973.44, 1587.17], [965.84, 1578.63], [958.64, 1584.99], [966.24, 1593.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[971.37, 1601.61], [974.56, 1598.93], [970.32, 1593.91], [967.13, 1596.59], [971.37, 1601.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[956.95, 1604.43], [964.74, 1597.37], [956.35, 1588.18], [955.26, 1589.17], [953.26, 1586.98], [947.13, 1592.53], [948.89, 1594.47], [948.33, 1594.99], [956.95, 1604.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[945.06, 1610.37], [947.01, 1608.69], [948.73, 1610.69], [952.71, 1607.28], [948.62, 1602.55], [950.29, 1601.12], [947.38, 1597.75], [939.79, 1604.27], [945.06, 1610.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[932.56, 1617.06], [933.87, 1615.93], [936.66, 1619.16], [942.26, 1614.32], [936.38, 1607.56], [929.47, 1613.51], [932.56, 1617.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[920.73, 1619.54], [932.46, 1632.28], [933.93, 1630.94], [935.09, 1632.18], [938.71, 1628.88], [937.15, 1627.19], [938.1, 1626.32], [927.52, 1614.83], [925.83, 1613.94], [924.98, 1613.74], [924.09, 1613.77], [922.76, 1614.41], [922.29, 1615.32], [922.2, 1616.04], [922.44, 1616.71], [920.58, 1618.32], [920.73, 1619.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[931.72, 1644.06], [935.38, 1640.94], [930.98, 1635.82], [927.33, 1638.95], [931.72, 1644.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[924.98, 1631.86], [916.58, 1622.02], [909.81, 1627.75], [918.21, 1637.59], [924.98, 1631.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[900.26, 1635.63], [906.16, 1630.52], [916.74, 1642.64], [910.85, 1647.75], [900.26, 1635.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[898.69, 1653.52], [905.71, 1647.25], [898.87, 1639.65], [898.29, 1640.17], [896.83, 1638.55], [890.95, 1643.8], [892.46, 1645.47], [891.9, 1645.97], [898.69, 1653.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[890.56, 1661.62], [892.6, 1659.81], [894.2, 1661.61], [897.87, 1658.38], [896.06, 1656.33], [896.89, 1655.59], [888.37, 1646.01], [884.06, 1649.82], [885.8, 1651.77], [883.56, 1653.76], [890.56, 1661.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[872.82, 1659.32], [880.79, 1668.33], [888.58, 1661.48], [880.62, 1652.47], [872.82, 1659.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[870.82, 1676.84], [878.24, 1670.29], [870.52, 1661.61], [863.1, 1668.15], [870.82, 1676.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[863.5, 1685.07], [866.53, 1682.45], [867.76, 1683.87], [870.73, 1681.29], [869.21, 1679.56], [870.34, 1678.58], [863.51, 1670.75], [862.99, 1671.2], [861.72, 1669.75], [855.93, 1674.77], [857.13, 1676.14], [856.32, 1676.85], [863.5, 1685.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[844.35, 1683.93], [851.68, 1677.57], [860.1, 1687.21], [852.77, 1693.56], [844.35, 1683.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[836.4, 1691.3], [842.47, 1685.98], [851.05, 1695.69], [844.97, 1701.02], [836.4, 1691.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[828.37, 1698.01], [834.6, 1693.05], [845.62, 1706.8], [839.39, 1711.76], [828.37, 1698.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[828.16, 1717.27], [831.47, 1714.7], [829.85, 1712.63], [831.5, 1711.35], [823.82, 1701.52], [817.97, 1706.06], [826.17, 1716.54], [827.05, 1715.86], [828.16, 1717.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[839.41, 1726.09], [844.52, 1721.82], [840.73, 1717.31], [835.61, 1721.59], [839.41, 1726.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[833.61, 1721.6], [835.64, 1723.79], [833.62, 1725.65], [831.59, 1723.46], [833.61, 1721.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[843.51, 1734.01], [849.75, 1729.31], [845.82, 1724.13], [839.58, 1728.83], [843.51, 1734.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[808.63, 1736.05], [812.21, 1732.89], [820.41, 1742.13], [816.83, 1745.28], [808.63, 1736.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[808.85, 1753.96], [812.03, 1750.81], [807.1, 1745.88], [803.92, 1749.03], [808.85, 1753.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[815.76, 1724.95], [821.37, 1720.3], [823.13, 1722.42], [826.44, 1719.68], [822.0, 1714.37], [819.97, 1716.05], [815.69, 1710.92], [808.8, 1716.61], [815.76, 1724.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[800.69, 1723.01], [808.66, 1732.03], [814.74, 1726.7], [806.76, 1717.68], [800.69, 1723.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[797.68, 1725.39], [805.57, 1733.79], [798.82, 1740.08], [790.93, 1731.68], [797.68, 1725.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[783.79, 1741.95], [789.96, 1736.05], [796.09, 1742.44], [789.86, 1748.25], [783.79, 1741.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[799.45, 1754.79], [803.31, 1759.21], [800.29, 1761.83], [796.43, 1757.41], [799.45, 1754.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[900.43, 1664.51], [904.86, 1660.37], [908.95, 1664.73], [904.52, 1668.86], [900.43, 1664.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1271.71, 2507.52], [1285.65, 2500.52], [1281.81, 2492.91], [1267.86, 2499.9], [1271.71, 2507.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1279.7, 2522.88], [1274.73, 2513.01], [1282.23, 2509.27], [1288.2, 2521.12], [1282.47, 2523.99], [1281.46, 2521.98], [1279.7, 2522.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1287.09, 2540.05], [1296.75, 2535.19], [1292.89, 2527.58], [1283.23, 2532.43], [1287.09, 2540.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1303.87, 2536.43], [1305.6, 2539.66], [1308.13, 2538.31], [1310.79, 2543.28], [1314.83, 2541.13], [1319.23, 2549.35], [1313.34, 2552.48], [1309.68, 2545.66], [1291.62, 2555.26], [1286.49, 2545.68], [1303.87, 2536.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1366.29, 2473.64], [1344.92, 2481.01], [1350.57, 2497.3], [1371.95, 2489.94], [1366.29, 2473.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1371.93, 2471.98], [1393.28, 2464.85], [1398.65, 2480.84], [1377.3, 2487.97], [1371.93, 2471.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1430.06, 2474.04], [1425.97, 2462.52], [1447.45, 2454.95], [1451.53, 2466.47], [1430.06, 2474.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1176.81, 2333.91], [1193.35, 2326.21], [1190.18, 2319.44], [1181.82, 2323.32], [1182.53, 2324.84], [1174.34, 2328.65], [1176.81, 2333.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1177.06, 2336.83], [1178.62, 2336.09], [1178.24, 2335.29], [1187.65, 2330.88], [1190.65, 2337.22], [1179.68, 2342.37], [1177.06, 2336.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1373.4, 2637.54], [1398.74, 2629.46], [1393.17, 2612.11], [1367.82, 2620.2], [1373.4, 2637.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1475.56, 2633.07], [1474.64, 2620.12], [1435.81, 2622.88], [1436.73, 2635.83], [1475.56, 2633.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1447.08, 2710.47], [1430.93, 2711.04], [1429.34, 2666.52], [1445.31, 2665.95], [1445.6, 2674.24], [1463.89, 2673.59], [1463.6, 2665.49], [1480.21, 2664.89], [1481.24, 2693.85], [1464.52, 2702.98], [1464.36, 2698.39], [1446.67, 2699.02], [1447.08, 2710.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1422.56, 2741.38], [1429.24, 2737.98], [1415.37, 2710.9], [1398.22, 2719.62], [1403.79, 2730.5], [1405.83, 2729.46], [1407.8, 2733.3], [1416.23, 2729.02], [1422.56, 2741.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1385.68, 2685.97], [1389.34, 2693.08], [1374.35, 2700.75], [1370.69, 2693.64], [1385.68, 2685.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1396.12, 2701.58], [1395.89, 2696.02], [1403.49, 2695.7], [1403.72, 2701.26], [1396.12, 2701.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1381.44, 2710.14], [1390.57, 2705.75], [1392.93, 2710.63], [1391.8, 2711.17], [1392.55, 2712.7], [1384.54, 2716.55], [1381.44, 2710.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1399.0, 2706.15], [1398.89, 2702.57], [1401.76, 2702.48], [1401.86, 2706.06], [1399.0, 2706.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1330.11, 2604.88], [1325.29, 2595.34], [1334.73, 2590.61], [1339.55, 2600.13], [1330.11, 2604.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1345.27, 2597.41], [1352.01, 2595.33], [1349.72, 2587.93], [1342.98, 2590.01], [1345.27, 2597.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1361.19, 2592.32], [1380.69, 2585.92], [1377.6, 2576.58], [1358.1, 2582.99], [1361.19, 2592.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1341.85, 2627.98], [1354.69, 2621.87], [1350.84, 2613.85], [1338.01, 2619.96], [1341.85, 2627.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1349.66, 2647.27], [1344.78, 2638.64], [1361.23, 2629.43], [1366.1, 2638.05], [1349.66, 2647.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1358.49, 2665.78], [1353.72, 2656.01], [1362.36, 2651.82], [1367.14, 2661.59], [1358.49, 2665.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1369.54, 2682.32], [1381.89, 2675.65], [1376.81, 2666.32], [1371.11, 2669.41], [1372.56, 2672.07], [1365.92, 2675.66], [1369.54, 2682.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1406.85, 2628.96], [1414.42, 2626.74], [1412.57, 2620.5], [1405.01, 2622.71], [1406.85, 2628.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1382.01, 2640.48], [1382.65, 2643.12], [1379.71, 2643.83], [1379.06, 2641.2], [1382.01, 2640.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1063.46, 2191.0], [1075.62, 2181.49], [1072.58, 2177.63], [1071.2, 2178.71], [1069.39, 2176.43], [1075.22, 2171.87], [1070.82, 2166.29], [1065.05, 2170.81], [1066.72, 2172.92], [1060.46, 2177.82], [1062.63, 2180.56], [1062.16, 2181.97], [1062.84, 2182.83], [1059.24, 2185.65], [1063.46, 2191.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1080.12, 2184.33], [1084.75, 2190.97], [1082.52, 2192.52], [1085.89, 2197.34], [1074.44, 2205.29], [1066.44, 2193.83], [1080.12, 2184.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1077.99, 2220.2], [1092.19, 2211.75], [1085.85, 2201.17], [1071.65, 2209.63], [1077.99, 2220.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1095.61, 2230.18], [1091.85, 2222.5], [1095.48, 2220.74], [1093.32, 2216.36], [1074.68, 2225.44], [1080.58, 2237.5], [1095.61, 2230.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1079.93, 2252.51], [1100.82, 2246.21], [1098.74, 2239.33], [1095.39, 2240.35], [1094.64, 2237.9], [1090.44, 2239.17], [1089.55, 2236.22], [1076.21, 2240.25], [1079.93, 2252.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1075.96, 2267.75], [1074.94, 2257.4], [1079.83, 2256.93], [1079.72, 2255.76], [1090.51, 2254.7], [1090.41, 2253.62], [1097.72, 2252.9], [1098.59, 2261.64], [1086.52, 2262.83], [1086.9, 2266.69], [1075.96, 2267.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1079.07, 2288.5], [1094.58, 2287.49], [1094.04, 2279.29], [1101.62, 2278.79], [1101.12, 2271.23], [1085.92, 2272.24], [1086.12, 2275.17], [1078.22, 2275.69], [1079.07, 2288.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1077.19, 2299.75], [1077.28, 2301.37], [1087.99, 2300.82], [1087.9, 2299.14], [1094.54, 2298.8], [1094.18, 2291.77], [1065.66, 2293.22], [1066.02, 2300.32], [1077.19, 2299.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1040.59, 2351.84], [1055.68, 2359.46], [1064.95, 2341.25], [1049.85, 2333.63], [1040.59, 2351.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1028.15, 2375.93], [1038.92, 2381.23], [1044.48, 2370.02], [1048.64, 2372.07], [1052.96, 2363.36], [1038.03, 2356.02], [1028.15, 2375.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1055.29, 2326.45], [1063.7, 2330.91], [1068.76, 2321.4], [1081.49, 2319.56], [1080.48, 2312.7], [1067.31, 2314.62], [1062.6, 2312.48], [1060.3, 2317.49], [1058.1, 2317.55], [1056.44, 2320.26], [1057.6, 2322.11], [1055.29, 2326.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1110.58, 2337.93], [1117.79, 2335.08], [1115.33, 2328.87], [1120.79, 2326.71], [1114.52, 2310.95], [1101.84, 2315.96], [1110.58, 2337.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1118.3, 2357.14], [1126.93, 2352.53], [1119.51, 2338.72], [1110.88, 2343.33], [1118.3, 2357.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1032.19, 2433.1], [1035.34, 2424.44], [1029.81, 2422.54], [1032.88, 2413.93], [1016.43, 2407.32], [1015.18, 2411.67], [1006.91, 2409.31], [1004.33, 2410.16], [1003.31, 2412.86], [1004.66, 2415.97], [1003.34, 2420.55], [1001.74, 2420.1], [1001.76, 2427.31], [1032.19, 2433.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1001.42, 2448.54], [1001.65, 2439.07], [1004.47, 2439.14], [1004.59, 2434.6], [1016.16, 2434.87], [1016.14, 2435.69], [1030.33, 2436.04], [1030.13, 2444.16], [1027.29, 2444.08], [1027.06, 2453.76], [1015.26, 2453.48], [1015.31, 2451.34], [1009.34, 2451.2], [1009.4, 2448.72], [1001.42, 2448.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1005.32, 2464.39], [1005.59, 2458.79], [1020.24, 2459.47], [1020.01, 2464.4], [1021.82, 2464.49], [1021.53, 2470.59], [1019.22, 2470.48], [1018.71, 2481.16], [1010.04, 2480.75], [1010.3, 2475.43], [1008.97, 2475.36], [1009.26, 2469.31], [1008.13, 2469.25], [1008.35, 2464.53], [1005.32, 2464.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1002.56, 2510.83], [1016.75, 2510.84], [1016.77, 2499.75], [1020.66, 2499.75], [1020.68, 2488.79], [1002.89, 2488.77], [1002.88, 2500.74], [1000.6, 2503.35], [1000.25, 2508.75], [1002.56, 2510.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[997.58, 2537.45], [996.94, 2532.78], [998.68, 2533.04], [1000.27, 2531.16], [999.47, 2524.46], [998.53, 2523.87], [998.26, 2521.44], [1000.13, 2519.15], [1015.35, 2517.39], [1017.05, 2532.01], [1020.77, 2533.23], [1021.88, 2540.85], [1004.7, 2543.35], [1001.64, 2541.27], [999.62, 2544.21], [997.79, 2544.87], [995.53, 2544.12], [994.26, 2542.93], [994.12, 2541.2], [994.58, 2539.87], [997.58, 2537.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1003.76, 2573.92], [1020.28, 2570.04], [1018.7, 2563.36], [1015.21, 2564.18], [1012.65, 2553.34], [1016.29, 2552.49], [1015.19, 2547.83], [998.52, 2551.75], [1003.76, 2573.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1032.36, 2592.78], [1021.66, 2595.7], [1022.2, 2597.63], [1020.15, 2598.18], [1020.74, 2600.34], [1016.8, 2601.42], [1015.55, 2596.87], [1011.5, 2597.96], [1006.65, 2580.26], [1016.68, 2577.52], [1017.81, 2581.66], [1021.2, 2580.74], [1023.29, 2588.33], [1030.58, 2586.33], [1032.36, 2592.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1037.25, 2651.86], [1038.68, 2655.36], [1042.18, 2653.94], [1040.79, 2650.53], [1057.05, 2643.94], [1054.14, 2636.82], [1035.19, 2644.51], [1031.05, 2634.38], [1023.29, 2637.53], [1030.29, 2654.68], [1037.25, 2651.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1072.14, 2669.56], [1068.41, 2661.16], [1059.52, 2665.08], [1055.52, 2656.08], [1040.18, 2662.84], [1042.6, 2668.31], [1044.52, 2667.46], [1049.81, 2679.38], [1072.14, 2669.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1069.76, 2693.07], [1066.48, 2686.73], [1071.65, 2684.08], [1069.25, 2679.42], [1077.65, 2675.11], [1084.99, 2689.29], [1089.35, 2687.06], [1091.98, 2692.14], [1082.71, 2696.89], [1080.31, 2692.26], [1076.0, 2694.47], [1074.12, 2690.83], [1069.76, 2693.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1089.53, 2741.44], [1104.43, 2734.25], [1096.93, 2718.81], [1093.33, 2720.54], [1087.63, 2708.81], [1076.33, 2714.27], [1089.53, 2741.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1107.97, 2795.21], [1104.61, 2795.38], [1104.1, 2785.25], [1133.11, 2783.78], [1133.63, 2794.02], [1122.65, 2794.57], [1123.13, 2804.25], [1108.46, 2804.99], [1107.97, 2795.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1108.47, 2775.7], [1120.27, 2775.39], [1120.0, 2765.06], [1108.2, 2765.37], [1108.47, 2775.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1178.13, 2768.29], [1173.98, 2768.53], [1173.61, 2761.9], [1204.58, 2760.16], [1205.23, 2771.61], [1191.59, 2772.37], [1178.13, 2768.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1232.61, 2761.2], [1241.2, 2761.02], [1241.04, 2752.88], [1232.44, 2753.05], [1232.61, 2761.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1220.59, 2777.66], [1221.53, 2773.12], [1219.81, 2772.75], [1220.73, 2768.42], [1230.4, 2770.42], [1231.23, 2766.46], [1238.11, 2767.89], [1237.25, 2771.98], [1241.12, 2772.78], [1239.43, 2780.86], [1235.86, 2780.13], [1235.47, 2782.03], [1232.55, 2781.42], [1231.93, 2782.26], [1231.13, 2782.83], [1229.66, 2782.82], [1228.65, 2782.57], [1227.98, 2781.76], [1227.64, 2780.85], [1227.99, 2779.19], [1220.59, 2777.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1249.05, 2782.31], [1255.93, 2782.05], [1255.89, 2780.91], [1259.13, 2780.78], [1258.56, 2765.39], [1244.67, 2765.92], [1244.95, 2773.37], [1248.71, 2773.22], [1249.05, 2782.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1287.16, 2780.87], [1297.79, 2780.36], [1297.42, 2772.56], [1294.15, 2772.72], [1293.76, 2764.61], [1286.39, 2764.96], [1287.16, 2780.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1303.35, 2779.96], [1302.36, 2762.65], [1310.19, 2762.21], [1310.57, 2768.85], [1316.76, 2768.48], [1317.38, 2779.16], [1303.35, 2779.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1266.74, 2781.0], [1281.58, 2780.66], [1281.25, 2766.41], [1266.41, 2766.75], [1266.74, 2781.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1355.49, 2768.18], [1368.99, 2767.54], [1369.64, 2781.53], [1370.5, 2781.49], [1370.89, 2789.91], [1356.55, 2790.58], [1355.49, 2768.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1364.47, 2761.12], [1364.07, 2753.14], [1350.3, 2753.84], [1350.7, 2761.82], [1364.47, 2761.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1346.63, 2757.04], [1346.5, 2748.76], [1338.32, 2748.9], [1338.45, 2757.17], [1346.63, 2757.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1322.06, 2778.28], [1321.79, 2770.17], [1336.58, 2769.68], [1336.85, 2777.8], [1322.06, 2778.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1334.22, 2742.12], [1340.67, 2741.46], [1341.07, 2745.32], [1334.62, 2745.97], [1334.22, 2742.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1346.94, 2744.01], [1357.45, 2743.05], [1357.28, 2741.29], [1359.35, 2741.09], [1358.54, 2732.35], [1345.97, 2733.49], [1346.94, 2744.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1320.05, 2717.52], [1320.38, 2727.27], [1341.95, 2726.56], [1341.62, 2716.81], [1320.05, 2717.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[701.18, 1270.71], [708.46, 1262.38], [709.99, 1263.7], [709.66, 1264.08], [722.91, 1275.55], [723.3, 1275.1], [724.35, 1276.0], [717.19, 1284.2], [713.35, 1280.87], [714.32, 1279.76], [706.63, 1273.1], [705.47, 1274.42], [701.18, 1270.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[720.63, 1285.29], [723.77, 1288.16], [728.05, 1283.53], [724.91, 1280.64], [720.63, 1285.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[733.83, 1291.88], [746.64, 1278.09], [740.63, 1272.54], [727.82, 1286.33], [733.83, 1291.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[715.53, 1255.9], [727.09, 1266.39], [724.98, 1268.69], [726.41, 1270.0], [722.22, 1274.58], [709.24, 1262.79], [715.53, 1255.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[720.98, 1257.87], [721.91, 1256.72], [720.63, 1255.68], [723.76, 1251.81], [725.38, 1253.12], [726.55, 1251.66], [737.02, 1260.09], [733.33, 1264.63], [732.14, 1263.68], [731.31, 1264.69], [730.17, 1263.76], [729.43, 1264.67], [720.98, 1257.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[733.9, 1241.67], [743.06, 1249.74], [748.5, 1243.58], [739.35, 1235.53], [733.9, 1241.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[732.24, 1244.98], [734.3, 1246.83], [735.21, 1245.82], [739.35, 1249.53], [738.44, 1250.55], [740.9, 1252.76], [736.26, 1257.9], [727.6, 1250.12], [732.24, 1244.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[743.63, 1229.02], [743.64, 1227.82], [750.41, 1220.33], [760.82, 1229.69], [750.0, 1241.65], [744.36, 1236.6], [746.57, 1234.16], [743.79, 1231.66], [745.03, 1230.28], [743.63, 1229.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[771.46, 1251.95], [764.93, 1246.05], [773.52, 1236.6], [780.05, 1242.49], [771.46, 1251.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[771.97, 1255.39], [782.23, 1244.4], [786.53, 1248.38], [784.98, 1250.02], [786.89, 1251.79], [778.16, 1261.13], [771.97, 1255.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[793.43, 1278.98], [804.89, 1266.82], [798.59, 1260.93], [787.14, 1273.09], [793.43, 1278.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[769.05, 1289.37], [776.59, 1281.12], [775.37, 1280.01], [781.69, 1273.1], [775.58, 1267.54], [772.8, 1270.57], [772.28, 1270.1], [766.63, 1276.27], [767.55, 1277.11], [766.6, 1278.15], [767.82, 1279.25], [763.32, 1284.17], [769.05, 1289.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[748.16, 1280.71], [754.7, 1286.43], [744.31, 1298.21], [737.77, 1292.48], [748.16, 1280.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[783.52, 1339.62], [793.07, 1328.77], [801.05, 1335.74], [791.5, 1346.59], [783.52, 1339.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[781.12, 1338.74], [790.35, 1328.49], [783.42, 1322.29], [774.19, 1332.53], [781.12, 1338.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[773.19, 1327.61], [782.81, 1317.1], [776.58, 1311.43], [766.96, 1321.95], [773.19, 1327.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[781.18, 1312.88], [785.68, 1316.84], [790.43, 1311.49], [785.92, 1307.52], [781.18, 1312.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[764.91, 1316.93], [770.25, 1310.27], [762.7, 1304.26], [757.35, 1310.92], [764.91, 1316.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[803.52, 1358.56], [796.64, 1352.56], [807.33, 1340.42], [814.2, 1346.42], [803.52, 1358.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[853.11, 1372.48], [857.14, 1367.99], [854.06, 1365.25], [857.34, 1361.59], [854.17, 1358.76], [846.86, 1366.91], [853.11, 1372.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[939.72, 1410.36], [963.07, 1431.84], [975.05, 1418.92], [951.69, 1397.43], [939.72, 1410.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[911.46, 1404.12], [927.07, 1417.24], [914.98, 1431.51], [899.38, 1418.4], [911.46, 1404.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[922.8, 1372.03], [926.67, 1375.44], [923.79, 1378.69], [925.78, 1380.46], [922.3, 1384.38], [919.99, 1382.33], [918.06, 1384.49], [919.82, 1386.05], [916.94, 1389.3], [911.62, 1384.6], [922.8, 1372.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[910.94, 1381.92], [921.27, 1370.85], [915.27, 1365.3], [904.95, 1376.38], [910.94, 1381.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[900.67, 1372.6], [910.28, 1361.46], [903.88, 1355.97], [894.27, 1367.11], [900.67, 1372.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[854.44, 1402.53], [862.87, 1410.52], [870.56, 1402.46], [862.12, 1394.46], [854.44, 1402.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[872.6, 1400.1], [878.73, 1393.0], [870.14, 1385.63], [864.01, 1392.74], [872.6, 1400.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[885.81, 1420.44], [895.89, 1408.89], [887.08, 1401.25], [877.0, 1412.81], [885.81, 1420.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[876.03, 1381.57], [885.81, 1390.38], [891.15, 1384.5], [881.36, 1375.69], [876.03, 1381.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[811.71, 1363.41], [818.77, 1355.7], [823.55, 1360.04], [816.49, 1367.75], [811.71, 1363.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[825.99, 1381.36], [838.49, 1367.52], [831.45, 1361.22], [818.96, 1375.04], [825.99, 1381.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1950.76, 2268.21], [1940.32, 2258.69], [1946.01, 2252.48], [1955.15, 2260.81], [1952.2, 2264.04], [1953.5, 2265.22], [1950.76, 2268.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1958.45, 2278.96], [1954.39, 2275.28], [1958.81, 2270.45], [1962.87, 2274.14], [1958.45, 2278.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1948.56, 2270.34], [1940.25, 2262.47], [1933.83, 2269.19], [1942.14, 2277.07], [1948.56, 2270.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1952.69, 2283.93], [1957.8, 2278.84], [1954.39, 2275.28], [1949.13, 2280.38], [1952.69, 2283.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1957.11, 2291.54], [1952.65, 2287.23], [1963.08, 2276.5], [1967.55, 2280.81], [1957.11, 2291.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1968.01, 2268.26], [1972.36, 2263.68], [1967.32, 2258.92], [1962.97, 2263.51], [1968.01, 2268.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1960.32, 2255.96], [1962.02, 2254.16], [1963.49, 2255.54], [1965.98, 2252.89], [1964.74, 2251.72], [1966.32, 2250.03], [1955.36, 2239.78], [1950.85, 2244.57], [1954.26, 2247.75], [1952.98, 2249.1], [1960.32, 2255.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1966.78, 2247.94], [1967.74, 2246.96], [1968.86, 2248.05], [1971.62, 2245.21], [1970.38, 2244.01], [1972.24, 2242.11], [1964.77, 2234.9], [1959.2, 2240.62], [1966.78, 2247.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1977.33, 2239.52], [1968.37, 2230.89], [1974.05, 2225.04], [1983.01, 2233.67], [1977.33, 2239.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1985.66, 2228.86], [1987.63, 2226.85], [1988.83, 2228.02], [1991.63, 2225.15], [1990.67, 2224.22], [1991.63, 2223.24], [1983.36, 2215.22], [1977.63, 2221.08], [1985.66, 2228.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2329.63, 1966.73], [2299.6, 1985.07], [2309.35, 2000.92], [2339.37, 1982.58], [2329.63, 1966.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2386.43, 1883.52], [2374.94, 1890.4], [2371.13, 1884.08], [2373.69, 1882.57], [2373.13, 1881.63], [2377.38, 1879.09], [2377.8, 1879.8], [2382.5, 1876.99], [2386.43, 1883.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2365.24, 1871.67], [2369.49, 1878.85], [2378.23, 1873.72], [2377.72, 1872.85], [2379.84, 1871.59], [2378.23, 1868.88], [2376.15, 1870.11], [2374.02, 1866.51], [2365.24, 1871.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2353.78, 1863.7], [2358.5, 1871.34], [2360.98, 1869.82], [2361.63, 1870.88], [2374.22, 1863.15], [2368.84, 1854.45], [2353.78, 1863.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2419.13, 1957.31], [2423.04, 1963.98], [2424.87, 1962.91], [2425.21, 1963.48], [2433.83, 1958.45], [2433.45, 1957.8], [2435.75, 1956.46], [2431.71, 1949.56], [2429.12, 1951.07], [2428.74, 1950.43], [2420.4, 1955.3], [2420.96, 1956.25], [2419.13, 1957.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2407.06, 2039.62], [2410.93, 2045.5], [2422.5, 2037.96], [2418.64, 2032.07], [2407.06, 2039.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2418.49, 2055.66], [2420.0, 2054.74], [2420.24, 2055.11], [2428.04, 2050.36], [2423.72, 2043.32], [2414.41, 2049.0], [2418.49, 2055.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2498.15, 2187.35], [2502.57, 2194.38], [2512.99, 2187.87], [2508.57, 2180.85], [2498.15, 2187.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2494.65, 2183.31], [2503.62, 2177.82], [2501.84, 2174.94], [2504.39, 2173.38], [2501.32, 2168.39], [2498.83, 2169.92], [2497.86, 2168.36], [2490.0, 2173.17], [2491.08, 2174.93], [2489.92, 2175.64], [2494.65, 2183.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2495.5, 2153.5], [2478.13, 2164.1], [2484.34, 2174.2], [2501.71, 2163.6], [2495.5, 2153.5]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[2476.33, 2127.63], [2481.46, 2135.81], [2472.03, 2141.7], [2466.89, 2133.5], [2476.33, 2127.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2450.15, 2108.98], [2446.06, 2102.28], [2459.15, 2094.35], [2460.59, 2096.71], [2462.57, 2095.53], [2465.21, 2099.85], [2450.15, 2108.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2445.28, 2097.6], [2444.59, 2096.49], [2442.33, 2097.88], [2439.18, 2092.79], [2441.5, 2091.37], [2440.75, 2090.15], [2451.72, 2083.4], [2456.32, 2090.82], [2445.28, 2097.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2446.83, 2081.45], [2436.58, 2087.63], [2432.64, 2081.15], [2442.89, 2074.97], [2446.83, 2081.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2449.7, 2061.42], [2452.22, 2065.48], [2456.39, 2062.9], [2453.86, 2058.85], [2449.7, 2061.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2429.55, 2052.63], [2434.78, 2061.16], [2419.42, 2070.53], [2414.19, 2062.0], [2429.55, 2052.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2398.6, 2081.21], [2397.28, 2082.55], [2399.6, 2084.79], [2393.18, 2091.4], [2387.41, 2085.84], [2395.15, 2077.88], [2398.6, 2081.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2403.47, 2089.06], [2402.25, 2090.24], [2404.8, 2092.88], [2396.94, 2100.47], [2394.71, 2098.18], [2394.33, 2098.54], [2391.13, 2095.26], [2400.61, 2086.12], [2403.47, 2089.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2406.05, 2094.8], [2409.36, 2098.1], [2407.92, 2099.53], [2410.33, 2101.92], [2403.93, 2108.31], [2403.56, 2107.93], [2402.2, 2109.29], [2397.35, 2104.46], [2398.67, 2103.14], [2398.18, 2102.66], [2406.05, 2094.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2411.73, 2104.72], [2415.43, 2108.13], [2414.22, 2109.44], [2416.35, 2111.39], [2410.08, 2118.18], [2409.6, 2117.74], [2408.28, 2119.17], [2403.72, 2114.98], [2405.12, 2113.48], [2404.31, 2112.74], [2411.73, 2104.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2419.67, 2113.86], [2418.5, 2114.58], [2418.14, 2114.01], [2410.03, 2119.02], [2413.96, 2125.35], [2421.68, 2120.59], [2421.36, 2120.08], [2422.93, 2119.11], [2419.67, 2113.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2423.58, 2121.03], [2414.71, 2126.76], [2418.55, 2132.66], [2427.42, 2126.93], [2423.58, 2121.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2429.79, 2131.65], [2423.46, 2135.8], [2427.56, 2142.0], [2433.89, 2137.84], [2429.79, 2131.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2480.27, 2080.6], [2485.11, 2087.62], [2480.47, 2090.8], [2475.63, 2083.78], [2480.27, 2080.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2508.55, 2076.3], [2498.12, 2082.92], [2502.47, 2089.72], [2512.9, 2083.09], [2508.55, 2076.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2491.51, 2073.32], [2495.5, 2079.73], [2505.54, 2073.47], [2501.7, 2066.93], [2491.51, 2073.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2486.27, 2046.97], [2491.32, 2054.71], [2482.82, 2060.23], [2477.77, 2052.48], [2486.27, 2046.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2471.55, 2042.84], [2475.74, 2049.68], [2488.03, 2042.2], [2483.83, 2035.36], [2471.55, 2042.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2469.12, 2016.39], [2473.05, 2022.81], [2463.63, 2028.52], [2459.41, 2021.61], [2465.8, 2017.75], [2466.09, 2018.23], [2469.12, 2016.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2477.07, 2026.09], [2481.08, 2032.84], [2467.8, 2040.7], [2463.77, 2033.94], [2477.07, 2026.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2463.29, 2050.69], [2468.68, 2047.38], [2466.37, 2043.64], [2460.97, 2046.95], [2463.29, 2050.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2464.37, 2005.8], [2462.82, 2006.75], [2462.49, 2006.2], [2454.71, 2010.91], [2458.63, 2017.32], [2467.95, 2011.67], [2464.37, 2005.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2432.89, 1989.89], [2437.69, 1997.63], [2451.93, 1988.87], [2447.5, 1981.73], [2442.22, 1984.97], [2441.85, 1984.37], [2432.89, 1989.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2433.83, 1976.5], [2432.93, 1975.06], [2435.4, 1973.51], [2436.19, 1974.76], [2439.37, 1972.78], [2439.77, 1973.41], [2441.76, 1972.17], [2445.68, 1978.44], [2443.76, 1979.64], [2444.12, 1980.22], [2435.7, 1985.44], [2434.63, 1983.73], [2432.68, 1984.94], [2429.19, 1979.37], [2433.83, 1976.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2435.9, 1961.47], [2440.58, 1968.89], [2427.57, 1977.03], [2422.54, 1969.04], [2432.14, 1963.04], [2432.49, 1963.6], [2435.9, 1961.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2386.02, 1964.05], [2392.35, 1974.29], [2397.97, 1970.85], [2397.63, 1970.31], [2399.13, 1969.39], [2393.13, 1959.69], [2386.02, 1964.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2427.78, 2005.91], [2431.12, 2011.26], [2436.02, 2008.23], [2432.68, 2002.88], [2427.78, 2005.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2422.16, 1994.16], [2428.87, 1990.01], [2424.71, 1983.34], [2418.01, 1987.5], [2422.16, 1994.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2411.29, 2004.0], [2415.89, 2012.08], [2422.61, 2008.27], [2419.25, 2002.37], [2417.5, 2003.35], [2416.26, 2001.19], [2411.29, 2004.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2405.0, 1995.04], [2410.22, 1991.57], [2414.72, 1998.3], [2409.5, 2001.76], [2405.0, 1995.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2391.6, 1978.69], [2394.05, 1982.85], [2400.41, 1979.12], [2397.96, 1974.97], [2391.6, 1978.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2399.59, 1983.96], [2403.54, 1990.67], [2408.84, 1987.58], [2404.89, 1980.87], [2399.59, 1983.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2399.72, 1996.92], [2404.19, 2004.19], [2399.91, 2006.79], [2400.3, 2007.42], [2396.1, 2009.99], [2395.74, 2009.4], [2390.47, 2012.61], [2387.23, 2007.32], [2389.22, 2006.1], [2387.98, 2004.07], [2399.72, 1996.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2380.03, 1996.46], [2383.04, 2001.22], [2384.74, 2000.16], [2386.09, 2002.31], [2397.79, 1994.98], [2393.43, 1988.07], [2380.03, 1996.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2384.03, 1979.97], [2371.59, 1987.34], [2373.42, 1990.41], [2375.37, 1989.25], [2377.45, 1992.74], [2387.94, 1986.53], [2384.03, 1979.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2364.51, 1976.04], [2366.74, 1979.79], [2368.25, 1978.9], [2369.64, 1981.24], [2369.17, 1981.51], [2369.97, 1982.85], [2382.37, 1975.53], [2377.96, 1968.1], [2364.51, 1976.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2263.97, 1864.06], [2261.93, 1865.24], [2261.42, 1864.36], [2221.36, 1887.51], [2232.17, 1906.09], [2236.52, 1903.57], [2237.84, 1905.83], [2245.27, 1901.53], [2243.96, 1899.27], [2246.98, 1897.53], [2248.01, 1899.29], [2251.35, 1897.36], [2250.32, 1895.6], [2255.77, 1892.45], [2257.85, 1896.02], [2256.02, 1897.09], [2258.18, 1900.82], [2260.02, 1899.75], [2261.43, 1902.17], [2259.69, 1903.17], [2261.76, 1906.74], [2263.51, 1905.73], [2266.63, 1911.1], [2265.12, 1911.98], [2267.44, 1915.96], [2269.23, 1914.92], [2274.13, 1923.34], [2272.71, 1924.16], [2277.12, 1931.75], [2278.89, 1930.73], [2280.93, 1934.24], [2292.39, 1927.63], [2291.62, 1926.3], [2297.88, 1922.67], [2281.71, 1894.89], [2279.71, 1896.04], [2278.43, 1893.83], [2280.19, 1892.82], [2276.15, 1885.87], [2274.39, 1886.9], [2273.18, 1884.82], [2274.83, 1883.87], [2270.77, 1876.87], [2269.11, 1877.82], [2268.09, 1876.07], [2270.24, 1874.84], [2263.97, 1864.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2251.18, 1957.02], [2273.96, 1986.39], [2287.87, 1975.67], [2277.75, 1962.62], [2279.79, 1961.05], [2267.13, 1944.73], [2251.18, 1957.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2068.28, -1648.57], [-2066.01, -1648.61], [-2066.06, -1651.82], [-2068.33, -1651.79], [-2068.28, -1648.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2074.63, -1664.69], [-2072.15, -1664.73], [-2072.19, -1668.0], [-2074.66, -1667.96], [-2074.63, -1664.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2049.73, -1688.17], [-2047.4, -1688.2], [-2047.45, -1691.47], [-2049.76, -1691.44], [-2049.73, -1688.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2074.06, -1698.14], [-2068.15, -1698.24], [-2068.22, -1702.51], [-2062.68, -1702.61], [-2062.91, -1715.29], [-2063.91, -1715.27], [-2063.94, -1716.76], [-2072.45, -1716.6], [-2072.37, -1712.12], [-2073.3, -1712.1], [-2073.22, -1707.65], [-2074.23, -1707.63], [-2074.06, -1698.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2088.89, -1707.92], [-2077.06, -1708.17], [-2077.27, -1718.57], [-2081.14, -1718.48], [-2081.19, -1720.8], [-2085.45, -1720.71], [-2085.4, -1718.39], [-2089.11, -1718.32], [-2088.89, -1707.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2089.55, -1707.8], [-2089.76, -1713.01], [-2095.31, -1712.79], [-2095.1, -1707.58], [-2089.55, -1707.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2101.12, -1707.46], [-2101.29, -1712.8], [-2095.78, -1712.98], [-2095.6, -1707.64], [-2101.12, -1707.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2111.53, -1708.84], [-2101.37, -1709.17], [-2101.78, -1721.2], [-2111.92, -1720.86], [-2111.53, -1708.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2111.27, -1698.73], [-2111.48, -1706.25], [-2103.5, -1706.47], [-2103.22, -1695.85], [-2108.78, -1695.7], [-2108.86, -1698.79], [-2111.27, -1698.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2093.37, -1689.05], [-2086.25, -1689.23], [-2086.38, -1694.35], [-2093.5, -1694.17], [-2093.37, -1689.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2112.48, -1684.96], [-2112.53, -1691.36], [-2101.44, -1691.45], [-2101.39, -1685.05], [-2112.48, -1684.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2109.8, -1674.66], [-2109.82, -1677.54], [-2111.83, -1677.53], [-2111.86, -1683.12], [-2099.31, -1683.2], [-2099.25, -1674.73], [-2109.8, -1674.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2109.58, -1658.76], [-2109.59, -1659.25], [-2111.91, -1659.22], [-2112.02, -1666.35], [-2109.7, -1666.39], [-2109.71, -1666.99], [-2108.13, -1667.01], [-2108.15, -1668.29], [-2104.45, -1668.34], [-2104.43, -1667.07], [-2097.71, -1667.17], [-2097.59, -1658.94], [-2109.58, -1658.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2109.77, -1646.63], [-2109.94, -1655.74], [-2100.07, -1655.93], [-2100.04, -1654.85], [-2093.53, -1654.97], [-2093.4, -1647.83], [-2097.05, -1647.75], [-2097.04, -1647.37], [-2099.55, -1647.32], [-2099.54, -1646.83], [-2109.77, -1646.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2089.09, -1650.37], [-2089.37, -1658.43], [-2080.53, -1658.74], [-2080.25, -1650.68], [-2089.09, -1650.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2109.48, -1635.55], [-2109.5, -1644.25], [-2100.54, -1644.27], [-2100.51, -1633.87], [-2104.44, -1633.86], [-2104.45, -1635.56], [-2109.48, -1635.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2110.17, -1623.15], [-2110.4, -1632.14], [-2097.73, -1632.47], [-2097.5, -1623.48], [-2110.17, -1623.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2089.57, -1623.67], [-2081.04, -1623.86], [-2081.15, -1628.38], [-2077.98, -1628.45], [-2078.17, -1636.73], [-2082.76, -1636.63], [-2082.68, -1632.92], [-2089.78, -1632.76], [-2089.57, -1623.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2073.47, -1630.58], [-2073.78, -1639.45], [-2064.06, -1639.79], [-2063.66, -1628.14], [-2067.52, -1628.01], [-2067.54, -1628.72], [-2070.81, -1628.61], [-2070.88, -1630.68], [-2073.47, -1630.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2059.09, -1649.49], [-2050.51, -1649.68], [-2050.72, -1658.88], [-2059.3, -1658.68], [-2059.09, -1649.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2061.21, -1631.28], [-2061.27, -1640.09], [-2057.68, -1640.11], [-2057.7, -1642.33], [-2052.82, -1642.37], [-2052.73, -1631.34], [-2053.36, -1631.33], [-2053.34, -1628.82], [-2059.56, -1628.78], [-2059.59, -1631.29], [-2061.21, -1631.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2049.23, -1629.5], [-2041.06, -1629.64], [-2041.3, -1642.75], [-2043.28, -1642.72], [-2043.37, -1647.57], [-2049.55, -1647.46], [-2049.23, -1629.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2045.19, -1652.72], [-2038.74, -1652.98], [-2038.99, -1659.08], [-2045.44, -1658.82], [-2045.19, -1652.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2033.8, -1654.74], [-2033.91, -1662.93], [-2020.14, -1663.11], [-2020.02, -1653.62], [-2026.9, -1653.53], [-2026.91, -1654.82], [-2033.8, -1654.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2037.55, -1628.92], [-2026.75, -1629.33], [-2027.2, -1641.08], [-2028.6, -1641.03], [-2028.75, -1644.99], [-2036.39, -1644.7], [-2036.25, -1640.74], [-2037.99, -1640.67], [-2037.55, -1628.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1985.4, -1464.4], [-1993.88, -1464.25], [-1994.07, -1475.61], [-1993.71, -1475.61], [-1993.75, -1478.16], [-1986.14, -1478.29], [-1986.09, -1475.74], [-1985.59, -1475.74], [-1985.4, -1464.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1989.01, -1448.06], [-1982.93, -1448.17], [-1983.1, -1457.75], [-1989.18, -1457.64], [-1989.01, -1448.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1997.7, -1421.62], [-1988.72, -1421.81], [-1989.0, -1435.42], [-1997.99, -1435.22], [-1997.7, -1421.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1997.24, -1389.64], [-1989.34, -1389.82], [-1989.45, -1394.36], [-1988.47, -1394.38], [-1988.55, -1397.65], [-1985.61, -1397.72], [-1985.77, -1404.44], [-1997.59, -1404.16], [-1997.24, -1389.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1483.59, 145.26], [-1482.74, 138.51], [-1473.87, 139.39], [-1474.73, 146.24], [-1483.59, 145.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1447.97, 141.61], [-1448.08, 136.21], [-1446.17, 136.03], [-1442.62, 135.99], [-1439.03, 136.35], [-1439.55, 141.89], [-1441.37, 141.75], [-1444.83, 141.6], [-1447.97, 141.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1504.64, 136.34], [-1504.02, 136.32], [-1502.64, 136.27], [-1499.33, 136.18], [-1498.11, 135.8], [-1497.01, 134.75], [-1497.33, 126.96], [-1505.03, 127.2], [-1504.64, 136.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2706.05, -703.64], [-2706.24, -709.14], [-2700.78, -709.32], [-2700.59, -703.82], [-2706.05, -703.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1408.67, 2595.07], [1441.93, 2593.52], [1441.9, 2592.91], [1471.61, 2591.52], [1471.04, 2579.39], [1472.84, 2579.31], [1472.52, 2572.43], [1470.69, 2572.51], [1469.19, 2540.48], [1471.15, 2540.39], [1470.8, 2532.82], [1462.31, 2533.22], [1462.42, 2535.41], [1445.35, 2536.22], [1447.04, 2572.29], [1440.84, 2572.58], [1440.86, 2572.95], [1427.36, 2573.58], [1427.31, 2572.55], [1424.3, 2560.05], [1424.54, 2560.0], [1422.76, 2552.59], [1416.01, 2554.21], [1416.19, 2554.93], [1407.72, 2556.95], [1408.76, 2561.25], [1404.91, 2562.17], [1408.24, 2575.99], [1408.74, 2586.88], [1408.28, 2586.9], [1408.67, 2595.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-550.25, 128.89], [-550.98, 128.21], [-553.27, 130.65], [-560.77, 123.69], [-559.06, 121.86], [-559.91, 121.06], [-555.72, 116.59], [-555.29, 116.99], [-551.11, 112.51], [-549.84, 113.7], [-546.61, 110.26], [-545.65, 111.15], [-544.72, 110.17], [-540.86, 113.76], [-541.77, 114.76], [-540.62, 115.82], [-540.98, 116.21], [-539.69, 117.42], [-542.37, 120.28], [-541.84, 120.77], [-546.21, 125.45], [-546.65, 125.04], [-550.25, 128.89]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[2704.83, -2161.07], [2710.09, -2160.74], [2710.56, -2168.09], [2705.31, -2168.44], [2705.11, -2165.43], [2704.83, -2161.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1533.21, 2264.13], [1533.04, 2257.65], [1553.54, 2257.14], [1553.71, 2263.61], [1533.21, 2264.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1528.66, 2284.17], [1528.55, 2273.31], [1553.19, 2273.05], [1553.31, 2283.91], [1528.66, 2284.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1516.75, 2305.88], [1516.57, 2293.0], [1555.7, 2292.42], [1555.89, 2305.3], [1516.75, 2305.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1510.12, 2314.7], [1510.31, 2321.02], [1559.68, 2319.49], [1559.49, 2313.17], [1510.12, 2314.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1150.03, 737.43], [1148.62, 735.72], [1147.34, 733.65], [1146.75, 732.18], [1146.15, 730.09], [1145.96, 727.72], [1146.09, 724.94], [1146.17, 723.1], [1145.94, 720.96], [1145.08, 719.29], [1143.64, 717.61], [1146.08, 715.6], [1148.73, 713.4], [1150.13, 715.1], [1151.36, 717.08], [1152.13, 719.35], [1152.54, 721.64], [1152.35, 724.13], [1152.22, 725.78], [1152.26, 727.97], [1152.74, 730.18], [1153.55, 731.6], [1154.81, 733.2], [1152.39, 735.35], [1150.03, 737.43]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[184.68, 39.87], [202.63, 20.32], [183.54, 2.93], [165.59, 22.47], [184.68, 39.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[461.82, 517.34], [404.59, 581.33], [433.71, 607.18], [429.58, 611.8], [441.36, 622.26], [502.71, 553.64], [475.49, 529.47], [461.82, 517.34]], "holes": []}, "height": 48.2}, {"shape": {"outer": [[581.1, 463.11], [594.12, 448.67], [575.18, 431.71], [569.56, 437.89], [575.36, 443.15], [571.99, 446.84], [578.71, 452.92], [574.7, 457.32], [581.1, 463.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1432.7, 2820.29], [1440.68, 2816.11], [1439.74, 2814.32], [1443.01, 2812.6], [1443.79, 2814.07], [1452.69, 2809.39], [1456.1, 2815.85], [1485.9, 2872.35], [1492.76, 2885.35], [1489.81, 2886.89], [1491.14, 2889.41], [1492.1, 2913.09], [1483.59, 2917.3], [1465.78, 2883.36], [1432.7, 2820.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1000.48, -425.45], [-989.09, -437.79], [-1033.52, -478.47], [-1044.91, -466.13], [-1000.48, -425.45]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[1895.16, 1232.43], [1900.52, 1239.0], [1911.62, 1230.01], [1906.26, 1223.44], [1895.16, 1232.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[605.77, 743.14], [596.59, 734.07], [595.36, 735.18], [593.53, 733.8], [590.04, 737.66], [540.01, 693.53], [541.89, 689.89], [540.81, 689.09], [537.22, 686.22], [551.42, 670.43], [549.79, 669.01], [548.84, 668.18], [536.45, 681.79], [529.82, 676.6], [533.8, 671.3], [492.99, 634.61], [487.55, 639.43], [478.32, 631.08], [480.58, 628.5], [475.6, 624.16], [490.8, 607.77], [489.85, 606.37], [497.36, 598.26], [499.01, 599.11], [512.27, 584.57], [510.99, 583.89], [515.86, 577.83], [517.32, 578.69], [522.37, 572.62], [534.0, 582.7], [581.45, 624.93], [576.06, 631.43], [578.08, 633.37], [581.6, 636.76], [582.95, 635.55], [585.8, 638.1], [588.85, 640.82], [589.23, 640.38], [592.28, 643.3], [594.88, 640.27], [600.52, 645.59], [602.04, 644.37], [650.3, 688.77], [631.85, 709.21], [633.11, 710.37], [615.49, 729.91], [611.37, 734.37], [612.68, 735.78], [605.77, 743.14]], "holes": []}, "height": 48.1}, {"shape": {"outer": [[-2302.3, -1819.22], [-2300.12, -1822.83], [-2298.21, -1825.76], [-2296.42, -1824.42], [-2295.25, -1825.98], [-2295.62, -1828.15], [-2292.45, -1829.77], [-2291.04, -1829.81], [-2291.44, -1831.69], [-2289.92, -1832.37], [-2289.38, -1830.84], [-2287.99, -1831.3], [-2285.73, -1825.99], [-2287.47, -1825.37], [-2284.83, -1823.84], [-2285.0, -1823.22], [-2285.15, -1822.71], [-2283.72, -1821.78], [-2287.97, -1815.72], [-2291.75, -1818.06], [-2292.09, -1817.6], [-2294.59, -1814.27], [-2302.3, -1819.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2777.18, 2652.11], [2772.24, 2644.5], [2775.29, 2644.0], [2775.34, 2642.52], [2785.21, 2640.59], [2784.69, 2636.98], [2792.18, 2635.37], [2794.31, 2648.61], [2789.78, 2649.71], [2789.49, 2648.39], [2780.75, 2649.7], [2781.13, 2651.26], [2777.18, 2652.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2711.64, 2629.16], [2713.12, 2625.15], [2699.5, 2602.8], [2688.28, 2585.81], [2657.74, 2617.84], [2671.52, 2631.87], [2682.27, 2621.09], [2687.28, 2625.89], [2697.66, 2615.21], [2711.64, 2629.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2756.53, 2758.58], [2762.87, 2739.23], [2780.13, 2744.84], [2773.79, 2764.19], [2756.53, 2758.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2082.85, -1542.74], [-2082.64, -1535.44], [-2072.72, -1535.73], [-2072.93, -1543.02], [-2082.85, -1542.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1978.86, -1462.74], [-1978.98, -1466.49], [-1979.8, -1466.71], [-1980.11, -1477.16], [-1978.99, -1477.19], [-1979.03, -1478.64], [-1970.28, -1478.91], [-1970.23, -1477.39], [-1969.41, -1477.41], [-1969.06, -1466.52], [-1973.24, -1466.39], [-1973.12, -1462.92], [-1978.86, -1462.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2015.59, -1435.9], [-2009.07, -1436.06], [-2009.02, -1434.02], [-2005.73, -1434.09], [-2005.78, -1435.71], [-2003.38, -1435.77], [-2003.48, -1440.1], [-2000.61, -1440.16], [-2000.75, -1445.97], [-2003.93, -1445.89], [-2003.97, -1447.54], [-2010.72, -1447.36], [-2010.69, -1446.49], [-2011.64, -1446.46], [-2011.56, -1443.28], [-2016.43, -1443.17], [-2016.36, -1440.11], [-2015.68, -1440.13], [-2015.59, -1435.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1859.68, -1044.06], [-1860.29, -1073.19], [-1854.22, -1073.32], [-1854.34, -1078.81], [-1859.92, -1078.7], [-1860.8, -1120.63], [-1829.21, -1121.29], [-1828.82, -1102.83], [-1840.32, -1102.59], [-1839.81, -1077.76], [-1838.38, -1077.8], [-1838.25, -1071.44], [-1839.49, -1071.03], [-1839.17, -1055.41], [-1834.91, -1055.5], [-1834.68, -1044.59], [-1859.68, -1044.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1824.56, -1155.65], [-1825.84, -1222.81], [-1826.55, -1222.79], [-1826.68, -1229.43], [-1825.84, -1229.46], [-1826.04, -1238.49], [-1825.64, -1238.49], [-1825.67, -1240.5], [-1824.48, -1240.52], [-1824.49, -1241.09], [-1815.56, -1241.25], [-1811.96, -1241.32], [-1811.96, -1241.73], [-1806.13, -1241.8], [-1806.11, -1240.64], [-1796.19, -1240.76], [-1796.06, -1228.88], [-1806.75, -1228.75], [-1806.72, -1225.58], [-1806.71, -1224.34], [-1806.14, -1174.5], [-1786.01, -1174.74], [-1785.8, -1156.79], [-1804.3, -1156.57], [-1804.27, -1154.84], [-1809.84, -1154.76], [-1809.86, -1155.93], [-1812.68, -1155.87], [-1824.56, -1155.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-763.52, -959.47], [-719.54, -1006.97], [-728.36, -1015.08], [-732.62, -1010.48], [-737.54, -1014.99], [-764.49, -985.87], [-794.57, -1013.52], [-800.72, -1006.88], [-804.09, -1009.97], [-810.7, -1002.84], [-763.52, -959.47]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-962.3, 198.53], [-952.34, 187.6], [-940.62, 198.23], [-934.23, 191.23], [-946.24, 180.35], [-936.45, 169.63], [-915.94, 188.22], [-918.15, 190.65], [-904.35, 203.15], [-913.14, 212.78], [-918.86, 207.6], [-921.7, 210.72], [-915.44, 216.39], [-927.12, 229.19], [-945.24, 212.77], [-943.2, 210.54], [-945.09, 208.83], [-947.74, 211.72], [-962.3, 198.53]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-934.76, 166.13], [-924.83, 155.0], [-912.03, 166.35], [-921.95, 177.47], [-934.76, 166.13]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1738.17, -496.47], [-1742.07, -496.31], [-1742.02, -495.05], [-1759.8, -494.29], [-1759.21, -480.6], [-1758.88, -480.61], [-1758.71, -476.83], [-1754.27, -477.03], [-1754.24, -476.26], [-1739.2, -476.92], [-1739.86, -492.29], [-1737.99, -492.38], [-1738.17, -496.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[556.58, 536.22], [583.62, 562.84], [605.22, 540.01], [607.78, 542.03], [634.3, 513.16], [648.8, 496.88], [623.07, 471.82], [607.76, 488.97], [600.02, 482.96], [585.01, 501.52], [570.95, 513.84], [574.28, 516.87], [556.58, 536.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[594.1, 564.44], [605.76, 575.17], [607.82, 572.95], [615.16, 579.71], [621.0, 573.42], [621.94, 574.29], [641.49, 553.21], [639.36, 551.26], [645.25, 544.91], [648.15, 547.58], [671.42, 522.46], [668.02, 519.33], [670.4, 516.77], [656.59, 504.06], [645.54, 515.97], [643.78, 514.36], [630.75, 528.42], [629.01, 526.82], [594.1, 564.44]], "holes": []}, "height": 28.0}, {"shape": {"outer": [[-1925.29, -1389.83], [-1925.07, -1405.45], [-1917.57, -1405.35], [-1917.79, -1389.73], [-1925.29, -1389.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1934.46, -1391.55], [-1934.92, -1405.93], [-1926.73, -1406.19], [-1926.27, -1391.81], [-1934.46, -1391.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1906.9, -1406.13], [-1907.03, -1415.46], [-1892.15, -1415.69], [-1892.0, -1406.35], [-1906.9, -1406.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1906.5, -1421.73], [-1906.86, -1429.2], [-1893.06, -1429.88], [-1892.7, -1422.42], [-1906.5, -1421.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1907.59, -1437.09], [-1907.84, -1444.46], [-1895.34, -1444.88], [-1895.09, -1437.52], [-1907.59, -1437.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1906.59, -1451.76], [-1907.07, -1462.7], [-1895.76, -1463.19], [-1895.29, -1452.25], [-1906.59, -1451.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1937.46, -1471.36], [-1937.72, -1480.53], [-1928.91, -1480.79], [-1928.65, -1471.61], [-1937.46, -1471.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1954.7, -1470.92], [-1954.72, -1480.92], [-1942.9, -1480.95], [-1942.9, -1479.15], [-1941.21, -1479.16], [-1941.19, -1472.89], [-1943.37, -1472.89], [-1943.36, -1470.94], [-1954.7, -1470.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1963.74, -1468.32], [-1964.18, -1477.96], [-1956.91, -1478.29], [-1956.46, -1468.65], [-1963.74, -1468.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1951.15, -1449.17], [-1951.63, -1456.01], [-1946.81, -1456.34], [-1946.33, -1449.51], [-1951.15, -1449.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1909.56, -1468.35], [-1909.74, -1477.34], [-1895.5, -1477.63], [-1895.31, -1468.63], [-1909.56, -1468.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1940.07, -1452.09], [-1940.42, -1460.88], [-1931.4, -1461.23], [-1931.06, -1452.45], [-1940.07, -1452.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1971.31, -1455.55], [-1971.7, -1462.11], [-1965.7, -1462.47], [-1965.31, -1455.91], [-1971.31, -1455.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1906.47, -1317.78], [-1906.6, -1331.69], [-1896.22, -1331.79], [-1896.1, -1317.87], [-1906.47, -1317.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-647.75, -411.58], [-609.16, -452.5], [-617.82, -460.54], [-615.88, -462.62], [-625.09, -471.18], [-629.4, -466.59], [-624.98, -462.48], [-638.15, -448.41], [-659.43, -425.67], [-654.11, -420.73], [-654.98, -419.76], [-655.75, -418.9], [-647.75, -411.58]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-659.31, -422.17], [-662.35, -418.89], [-668.82, -411.92], [-670.88, -411.31], [-672.36, -409.64], [-672.41, -407.79], [-672.35, -405.5], [-671.45, -404.66], [-671.34, -402.53], [-670.33, -384.54], [-668.43, -382.76], [-665.17, -379.69], [-664.57, -377.74], [-663.76, -376.24], [-662.42, -375.3], [-661.21, -374.9], [-659.46, -374.84], [-656.79, -372.88], [-612.88, -333.66], [-610.27, -331.33], [-608.67, -329.9], [-604.12, -335.03], [-601.39, -334.9], [-597.8, -339.46], [-598.25, -342.05], [-597.44, -343.04], [-591.69, -337.59], [-588.95, -340.47], [-589.58, -341.01], [-594.09, -344.81], [-592.11, -346.96], [-592.16, -349.86], [-603.73, -360.15], [-607.78, -355.83], [-641.31, -386.93], [-642.37, -399.83], [-642.55, -401.9], [-645.79, -405.08], [-650.11, -409.34], [-647.75, -411.58], [-655.75, -418.9], [-659.31, -422.17]], "holes": []}, "height": 41.1}, {"shape": {"outer": [[-2600.46, -896.34], [-2611.78, -883.06], [-2603.05, -875.52], [-2591.58, -889.03], [-2600.46, -896.34]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3072.89, -1283.01], [-3071.04, -1281.46], [-3066.9, -1286.39], [-3068.75, -1287.92], [-3067.88, -1288.96], [-3076.01, -1295.73], [-3081.49, -1289.2], [-3073.37, -1282.43], [-3072.89, -1283.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3061.24, -1294.47], [-3053.77, -1303.33], [-3058.23, -1307.05], [-3059.55, -1305.49], [-3060.99, -1306.7], [-3067.46, -1299.01], [-3067.01, -1298.63], [-3068.23, -1297.18], [-3064.43, -1293.99], [-3062.87, -1295.84], [-3061.24, -1294.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3061.0, -1307.05], [-3060.43, -1310.93], [-3066.43, -1311.79], [-3067.0, -1307.91], [-3061.0, -1307.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3086.0, -1294.22], [-3084.89, -1295.47], [-3082.53, -1293.42], [-3078.1, -1298.46], [-3081.04, -1301.03], [-3077.21, -1305.38], [-3081.58, -1309.2], [-3082.68, -1307.94], [-3085.74, -1310.61], [-3094.01, -1301.21], [-3086.0, -1294.22]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3101.65, -1307.02], [-3099.85, -1309.15], [-3099.26, -1308.65], [-3092.63, -1316.49], [-3091.57, -1317.74], [-3095.15, -1320.74], [-3099.72, -1324.57], [-3107.3, -1315.6], [-3106.66, -1315.07], [-3108.56, -1312.82], [-3101.65, -1307.02]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3090.86, -1315.0], [-3085.78, -1321.02], [-3091.13, -1325.5], [-3095.15, -1320.74], [-3091.57, -1317.74], [-3092.63, -1316.49], [-3090.86, -1315.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3115.29, -1317.91], [-3109.41, -1325.02], [-3113.69, -1328.54], [-3110.93, -1331.88], [-3116.07, -1336.1], [-3124.71, -1325.67], [-3115.29, -1317.91]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3135.4, -1334.67], [-3128.06, -1328.64], [-3121.72, -1336.3], [-3129.07, -1342.33], [-3135.4, -1334.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3131.88, -1351.3], [-3124.67, -1359.98], [-3118.85, -1355.19], [-3126.05, -1346.5], [-3131.88, -1351.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3139.33, -1334.42], [-3131.17, -1344.07], [-3134.78, -1347.1], [-3134.03, -1348.0], [-3135.42, -1349.18], [-3136.22, -1348.23], [-3138.18, -1349.87], [-3146.3, -1340.27], [-3139.33, -1334.42]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3147.96, -1341.44], [-3139.82, -1351.24], [-3143.75, -1354.47], [-3142.65, -1355.78], [-3145.12, -1357.81], [-3154.34, -1346.7], [-3147.96, -1341.44]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[221.13, 62.11], [220.46, 62.87], [224.49, 66.44], [225.93, 64.83], [229.41, 67.91], [236.89, 59.54], [224.79, 48.81], [222.28, 51.61], [220.97, 50.46], [218.9, 52.78], [220.17, 53.92], [216.5, 58.01], [221.13, 62.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[232.95, 84.01], [223.09, 75.18], [237.9, 58.74], [247.76, 67.56], [232.95, 84.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[290.01, 37.41], [279.83, 28.32], [296.87, 9.39], [307.05, 18.5], [290.01, 37.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[309.5, 16.98], [302.51, 10.75], [302.21, 11.08], [294.86, 4.53], [300.01, -1.22], [300.89, -0.43], [301.42, -1.03], [305.91, 2.98], [305.3, 3.66], [307.42, 5.55], [308.77, 4.05], [312.52, 7.4], [311.63, 8.4], [314.73, 11.17], [309.5, 16.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[319.68, 6.32], [310.5, -1.61], [314.23, -5.89], [323.41, 2.04], [319.68, 6.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[325.99, 2.65], [329.64, -1.54], [324.21, -6.24], [324.61, -6.7], [321.62, -9.29], [316.91, -3.89], [323.54, 1.85], [324.2, 1.09], [325.99, 2.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[332.42, -6.68], [338.08, -13.03], [330.75, -19.51], [328.87, -17.39], [327.88, -18.27], [324.1, -14.03], [332.42, -6.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[350.25, -54.21], [345.17, -58.77], [332.01, -44.29], [335.26, -41.36], [337.24, -43.53], [339.07, -41.9], [350.25, -54.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[328.86, -40.78], [332.01, -44.29], [345.17, -58.77], [339.98, -63.31], [325.94, -47.92], [323.69, -45.41], [328.86, -40.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[339.98, -63.31], [326.61, -75.51], [312.51, -60.15], [325.94, -47.92], [339.98, -63.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[326.61, -75.51], [321.56, -80.11], [306.42, -63.62], [311.47, -59.02], [312.51, -60.15], [326.61, -75.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[263.01, 43.48], [258.63, 39.48], [252.47, 46.17], [256.85, 50.17], [263.01, 43.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[218.89, 115.97], [226.39, 107.64], [214.97, 97.43], [207.47, 105.76], [218.89, 115.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[207.31, 125.09], [207.93, 124.44], [209.85, 126.24], [215.14, 120.65], [213.26, 118.89], [213.84, 118.28], [204.04, 109.08], [197.56, 115.93], [207.31, 125.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[206.66, 132.11], [199.66, 126.08], [200.51, 125.1], [195.21, 120.52], [189.19, 127.45], [201.49, 138.06], [206.66, 132.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[186.33, 138.42], [187.06, 137.63], [186.0, 136.66], [187.66, 134.84], [184.7, 132.17], [186.53, 130.17], [187.51, 131.05], [188.48, 129.99], [190.67, 131.98], [191.2, 131.39], [199.96, 139.35], [194.24, 145.6], [186.33, 138.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[187.59, 153.24], [172.67, 139.75], [178.25, 133.61], [193.18, 147.09], [192.63, 147.69], [193.7, 148.66], [189.46, 153.33], [188.39, 152.36], [187.59, 153.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[178.8, 148.25], [179.19, 147.81], [175.67, 144.67], [170.96, 149.94], [173.88, 152.54], [173.47, 152.98], [180.43, 159.16], [185.14, 153.9], [178.8, 148.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[161.82, 179.77], [155.77, 174.31], [162.36, 167.06], [162.02, 166.74], [165.26, 163.19], [172.21, 169.46], [168.64, 173.38], [168.08, 172.87], [161.82, 179.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[152.42, 170.82], [159.31, 162.94], [157.81, 161.64], [160.78, 158.24], [156.44, 154.48], [153.58, 157.75], [153.26, 157.47], [146.26, 165.47], [146.67, 165.82], [145.22, 167.49], [150.59, 172.15], [152.05, 170.5], [152.42, 170.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[143.83, 159.27], [150.47, 151.69], [145.57, 147.43], [146.02, 146.91], [142.9, 144.21], [138.31, 149.48], [138.93, 150.02], [136.45, 152.85], [143.83, 159.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[145.44, 141.92], [150.49, 136.33], [139.74, 126.7], [134.69, 132.29], [145.44, 141.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[159.62, 142.11], [162.58, 138.78], [158.28, 134.97], [155.32, 138.29], [159.62, 142.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[168.0, 122.98], [175.16, 115.07], [157.64, 99.34], [150.48, 107.25], [168.0, 122.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[151.0, 133.51], [141.63, 124.64], [148.35, 117.58], [157.74, 126.46], [151.0, 133.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[169.01, 125.5], [163.93, 120.85], [158.57, 126.67], [163.65, 131.32], [169.01, 125.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[161.29, 120.32], [157.33, 116.72], [154.06, 120.3], [158.02, 123.9], [161.29, 120.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[166.9, 93.11], [168.3, 91.53], [166.87, 90.26], [171.21, 85.38], [172.85, 86.83], [186.31, 71.73], [195.62, 79.96], [195.1, 80.52], [176.86, 100.77], [176.37, 101.45], [166.9, 93.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[176.86, 100.77], [180.06, 103.64], [177.29, 106.72], [177.59, 106.98], [174.55, 110.36], [189.47, 123.71], [210.76, 100.06], [208.8, 98.32], [211.33, 95.51], [211.29, 94.65], [208.3, 91.83], [207.32, 91.84], [206.52, 92.71], [203.32, 89.86], [201.37, 92.03], [195.49, 86.77], [198.44, 83.51], [195.1, 80.52], [176.86, 100.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1166.72, 713.3], [1168.06, 711.82], [1166.64, 710.54], [1165.3, 712.02], [1166.72, 713.3]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[1399.25, 1045.97], [1401.14, 1045.4], [1400.57, 1043.55], [1398.68, 1044.12], [1399.25, 1045.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[313.57, 823.64], [319.18, 817.72], [314.24, 813.07], [314.64, 812.66], [310.68, 808.93], [310.22, 809.4], [307.08, 806.43], [301.52, 812.29], [313.57, 823.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[312.02, 824.3], [300.59, 813.87], [295.03, 819.94], [301.94, 826.25], [301.34, 826.9], [303.62, 828.97], [304.07, 828.48], [306.2, 830.43], [306.82, 829.76], [307.78, 830.63], [312.61, 825.37], [311.76, 824.59], [312.02, 824.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[316.5, 836.91], [320.18, 832.8], [320.6, 833.18], [323.55, 829.89], [323.05, 829.45], [325.92, 826.26], [319.97, 820.95], [310.46, 831.52], [316.5, 836.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[319.18, 842.1], [322.39, 844.99], [325.57, 841.46], [326.99, 842.74], [333.3, 835.77], [326.81, 829.93], [320.63, 836.77], [322.49, 838.44], [319.18, 842.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[336.65, 837.03], [334.23, 839.54], [333.7, 839.02], [326.76, 846.21], [332.03, 851.27], [341.4, 841.59], [336.65, 837.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[337.15, 854.37], [338.13, 853.29], [336.84, 852.12], [338.02, 850.82], [336.97, 849.88], [339.01, 847.64], [337.77, 846.53], [342.71, 841.09], [349.63, 847.33], [341.44, 856.34], [340.04, 855.09], [339.09, 856.13], [337.15, 854.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[346.27, 862.86], [355.01, 852.82], [349.73, 848.26], [338.78, 860.83], [343.98, 865.32], [345.1, 864.04], [344.65, 863.65], [345.73, 862.41], [346.27, 862.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[350.75, 876.07], [366.7, 858.42], [360.73, 853.05], [348.6, 866.46], [350.42, 868.1], [346.59, 872.34], [350.75, 876.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[363.38, 871.39], [365.22, 869.37], [368.01, 871.9], [374.12, 865.23], [367.42, 859.14], [359.46, 867.82], [363.38, 871.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[365.09, 874.67], [367.58, 871.97], [365.23, 869.81], [362.74, 872.52], [365.09, 874.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[376.31, 878.61], [375.94, 878.28], [376.76, 877.39], [373.15, 874.13], [372.85, 874.44], [370.95, 872.73], [370.28, 873.46], [369.54, 872.78], [361.53, 881.61], [368.17, 887.59], [376.31, 878.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[383.6, 882.4], [383.35, 881.99], [384.94, 880.21], [380.15, 875.94], [378.64, 877.62], [378.07, 877.12], [372.02, 883.84], [373.13, 884.84], [369.94, 888.38], [373.94, 891.96], [377.23, 888.29], [377.82, 888.82], [383.6, 882.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[380.23, 902.91], [377.12, 900.06], [380.58, 896.33], [378.95, 894.83], [384.97, 888.33], [386.24, 889.5], [392.95, 882.25], [396.65, 885.66], [390.06, 892.78], [390.63, 893.3], [384.59, 899.82], [383.78, 899.07], [380.23, 902.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[381.28, 903.75], [385.25, 907.41], [388.67, 903.74], [389.88, 904.85], [396.05, 898.2], [390.88, 893.43], [381.28, 903.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[396.06, 916.44], [392.39, 913.11], [395.31, 909.91], [394.22, 908.91], [401.56, 900.86], [406.34, 905.18], [396.06, 916.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[403.11, 920.74], [399.19, 917.19], [402.06, 914.05], [402.53, 914.48], [408.13, 908.35], [412.94, 912.72], [406.95, 919.29], [405.57, 918.05], [403.11, 920.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[404.23, 922.11], [402.42, 920.47], [400.12, 923.02], [401.93, 924.66], [404.23, 922.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[416.56, 954.48], [401.36, 940.81], [424.72, 915.03], [439.92, 928.7], [416.56, 954.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[416.25, 923.7], [414.78, 922.36], [412.2, 925.15], [408.89, 922.12], [416.77, 913.58], [421.56, 917.96], [416.25, 923.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[356.75, 914.44], [361.43, 909.33], [354.31, 902.87], [349.62, 907.98], [356.75, 914.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[355.83, 884.63], [348.35, 892.51], [344.29, 888.69], [351.77, 880.81], [355.83, 884.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[330.6, 882.49], [324.66, 877.21], [319.61, 882.84], [325.54, 888.12], [330.6, 882.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[320.77, 871.61], [317.51, 868.64], [313.06, 873.48], [316.32, 876.46], [320.77, 871.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[316.75, 868.74], [311.81, 864.17], [307.34, 868.94], [312.28, 873.53], [316.75, 868.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[314.72, 865.87], [309.84, 861.74], [314.01, 856.86], [318.88, 860.99], [314.72, 865.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[293.11, 844.49], [294.52, 842.91], [296.37, 844.55], [300.07, 840.42], [297.07, 837.76], [298.76, 835.86], [289.02, 827.23], [282.22, 834.83], [293.11, 844.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[274.86, 840.29], [275.75, 841.11], [275.48, 841.39], [282.18, 847.53], [283.49, 846.1], [287.01, 849.32], [290.11, 845.96], [286.61, 842.76], [287.04, 842.3], [280.4, 836.23], [280.02, 836.64], [279.04, 835.75], [274.86, 840.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[261.72, 856.38], [262.98, 857.54], [267.34, 852.8], [271.2, 856.34], [260.96, 867.46], [255.83, 862.77], [261.72, 856.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[275.16, 883.56], [285.27, 872.77], [278.73, 866.69], [268.61, 877.48], [275.16, 883.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[283.41, 891.27], [288.31, 895.83], [293.55, 890.24], [293.01, 889.73], [297.84, 884.58], [293.49, 880.53], [283.41, 891.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[284.56, 889.41], [278.91, 884.23], [283.02, 879.76], [282.52, 879.29], [285.37, 876.2], [285.91, 876.7], [289.78, 872.5], [295.4, 877.63], [284.56, 889.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[299.44, 902.75], [309.77, 891.39], [302.76, 885.05], [292.42, 896.42], [299.44, 902.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[300.16, 903.3], [311.18, 890.87], [317.54, 896.48], [306.52, 908.91], [300.16, 903.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[320.64, 906.9], [317.32, 910.46], [318.85, 911.87], [315.09, 915.91], [307.7, 909.08], [311.33, 905.18], [312.27, 906.06], [315.73, 902.36], [320.64, 906.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[346.78, 924.57], [335.39, 936.95], [329.23, 931.32], [340.62, 918.95], [346.78, 924.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[348.97, 924.42], [355.02, 929.83], [342.68, 943.54], [336.63, 938.13], [348.97, 924.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[345.57, 942.6], [349.04, 938.66], [350.71, 940.11], [353.22, 937.25], [357.57, 941.04], [351.44, 948.04], [349.26, 946.13], [348.41, 947.09], [346.8, 945.69], [347.8, 944.55], [345.57, 942.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[353.45, 949.47], [360.34, 941.91], [366.83, 947.79], [359.95, 955.36], [353.45, 949.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[366.49, 962.61], [365.93, 962.09], [365.14, 962.94], [359.77, 957.99], [360.85, 956.83], [360.27, 956.29], [371.06, 944.68], [375.45, 948.74], [371.35, 953.15], [373.46, 955.11], [366.49, 962.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[358.87, 906.48], [362.05, 909.37], [365.91, 905.14], [362.73, 902.25], [358.87, 906.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[369.66, 926.19], [374.55, 921.16], [369.85, 916.63], [364.96, 921.66], [369.66, 926.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[376.91, 923.05], [382.45, 916.57], [390.19, 923.14], [384.66, 929.62], [376.91, 923.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[389.35, 924.86], [396.37, 931.1], [392.2, 935.75], [385.19, 929.51], [389.35, 924.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[369.1, 963.05], [370.42, 964.27], [369.8, 964.95], [374.87, 969.6], [383.35, 960.43], [382.78, 959.9], [383.81, 958.78], [379.01, 954.37], [378.64, 954.78], [377.62, 953.84], [369.1, 963.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[381.12, 975.11], [384.48, 971.43], [385.48, 972.34], [389.44, 968.0], [382.64, 961.83], [375.31, 969.84], [381.12, 975.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[388.03, 984.03], [389.37, 982.53], [389.8, 982.92], [392.31, 980.11], [392.65, 980.41], [400.54, 971.61], [393.76, 965.57], [383.45, 977.06], [384.11, 977.64], [382.66, 979.25], [388.03, 984.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[406.28, 959.97], [404.54, 958.39], [401.52, 961.75], [395.33, 956.2], [398.39, 952.8], [397.92, 952.37], [400.08, 949.98], [401.81, 951.55], [403.36, 949.83], [410.03, 955.81], [406.28, 959.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[165.45, 686.4], [170.56, 680.81], [158.1, 669.51], [152.99, 675.1], [154.92, 676.85], [165.45, 686.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[185.95, 758.22], [180.87, 753.63], [184.67, 749.47], [189.74, 754.05], [185.95, 758.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[710.83, 873.74], [711.98, 873.33], [720.09, 864.57], [721.23, 865.52], [723.28, 863.42], [637.38, 787.11], [635.32, 785.36], [634.11, 783.58], [633.89, 781.65], [633.69, 779.17], [632.31, 755.6], [633.76, 751.65], [651.46, 732.29], [655.14, 731.92], [677.96, 730.93], [679.54, 731.07], [679.18, 726.16], [677.67, 726.17], [677.56, 721.92], [648.13, 723.65], [625.27, 749.65], [626.68, 779.54], [624.59, 779.55], [624.97, 795.82], [710.83, 873.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[764.81, 789.44], [767.03, 787.01], [763.76, 784.02], [761.53, 786.45], [764.81, 789.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[771.97, 796.76], [774.61, 793.97], [769.49, 789.15], [766.85, 791.94], [771.97, 796.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[885.65, 732.69], [898.65, 718.45], [882.78, 704.05], [883.33, 703.46], [878.23, 698.84], [877.65, 699.46], [861.66, 684.94], [848.67, 699.15], [885.65, 732.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[361.1, 771.35], [362.49, 769.84], [363.53, 770.8], [365.34, 768.83], [364.37, 767.94], [365.97, 766.18], [356.36, 757.4], [351.55, 762.63], [361.1, 771.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[373.05, 740.24], [380.32, 747.11], [385.76, 741.4], [377.02, 733.14], [373.43, 736.92], [374.9, 738.31], [373.05, 740.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[389.8, 748.18], [394.57, 752.59], [390.36, 757.1], [385.6, 752.69], [389.8, 748.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[383.43, 750.1], [386.05, 747.31], [388.32, 749.42], [385.7, 752.21], [383.43, 750.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[367.15, 783.06], [362.38, 778.56], [365.32, 775.47], [370.09, 779.96], [367.15, 783.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[368.94, 771.05], [371.9, 767.75], [376.74, 772.08], [373.78, 775.37], [368.94, 771.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[410.36, 769.0], [411.86, 767.4], [406.11, 762.04], [395.44, 773.41], [400.77, 778.38], [402.52, 776.52], [403.69, 777.6], [411.1, 769.69], [410.36, 769.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[406.1, 778.88], [412.67, 784.77], [419.73, 776.97], [413.16, 771.08], [406.1, 778.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[364.49, 823.41], [358.95, 818.14], [362.11, 814.84], [361.55, 814.31], [369.46, 806.05], [375.56, 811.85], [364.49, 823.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[381.33, 842.96], [386.31, 837.5], [386.15, 835.61], [387.57, 834.05], [388.02, 834.46], [391.28, 830.88], [390.16, 829.88], [391.89, 827.99], [384.26, 821.07], [382.68, 822.8], [372.0, 834.51], [381.33, 842.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[388.13, 850.53], [382.3, 845.39], [389.57, 837.22], [390.02, 837.62], [397.6, 829.13], [402.61, 833.55], [395.09, 842.0], [395.45, 842.31], [388.13, 850.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[388.19, 850.91], [393.71, 855.9], [404.58, 843.97], [403.48, 842.98], [404.29, 842.07], [402.75, 840.67], [405.65, 837.49], [403.03, 835.12], [388.95, 850.58], [388.69, 850.35], [388.19, 850.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[402.27, 864.19], [394.78, 857.34], [408.57, 842.39], [416.06, 849.24], [402.27, 864.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[412.13, 868.44], [413.04, 867.45], [413.42, 867.79], [422.37, 858.04], [416.08, 852.32], [413.42, 855.22], [413.01, 854.84], [409.27, 858.92], [409.74, 859.35], [406.28, 863.12], [412.13, 868.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[418.65, 875.22], [420.0, 873.78], [420.43, 874.19], [426.92, 867.29], [426.25, 866.67], [429.16, 863.58], [425.52, 860.18], [423.08, 862.76], [422.16, 861.9], [421.48, 862.63], [420.71, 861.91], [417.64, 865.18], [418.41, 865.9], [415.04, 869.5], [415.38, 869.81], [414.2, 871.07], [418.65, 875.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[421.7, 877.79], [426.67, 882.31], [436.28, 871.8], [435.67, 871.25], [436.71, 870.1], [433.29, 866.98], [429.71, 870.9], [428.78, 870.06], [421.7, 877.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[431.15, 889.78], [441.52, 878.41], [435.76, 873.19], [425.39, 884.57], [431.15, 889.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[438.92, 893.52], [439.93, 892.38], [440.24, 892.66], [443.02, 889.55], [443.91, 890.34], [445.93, 888.07], [446.42, 888.51], [449.02, 885.6], [448.31, 884.97], [448.99, 884.21], [444.45, 880.18], [442.16, 882.75], [441.3, 882.27], [435.69, 888.58], [435.94, 888.8], [434.91, 889.97], [438.92, 893.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[440.28, 898.34], [454.23, 910.77], [455.14, 911.05], [455.94, 910.9], [466.0, 900.04], [455.05, 890.0], [451.22, 886.52], [451.03, 886.35], [440.28, 898.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[455.05, 890.0], [462.78, 881.38], [458.92, 877.95], [451.22, 886.52], [455.05, 890.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[462.54, 880.46], [464.8, 877.89], [461.17, 874.73], [458.91, 877.29], [462.54, 880.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[466.24, 879.84], [465.18, 878.9], [467.68, 876.08], [468.98, 877.23], [471.98, 873.83], [480.61, 881.43], [474.85, 887.94], [466.05, 880.2], [466.24, 879.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[471.41, 871.66], [474.67, 867.88], [476.33, 869.29], [478.79, 866.43], [486.17, 872.71], [480.44, 879.37], [471.41, 871.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[480.06, 864.96], [485.82, 858.46], [495.49, 866.96], [489.73, 873.46], [480.06, 864.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[487.61, 855.97], [489.13, 854.23], [485.13, 850.77], [490.48, 844.59], [498.1, 851.14], [499.8, 849.18], [504.27, 853.02], [498.44, 859.74], [499.8, 860.92], [497.58, 863.49], [496.14, 862.26], [495.61, 862.86], [487.61, 855.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[491.39, 841.02], [487.28, 837.38], [488.17, 836.4], [486.26, 834.7], [485.49, 835.57], [485.04, 835.17], [476.58, 844.67], [483.03, 850.39], [491.39, 841.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[474.61, 843.96], [485.04, 832.51], [478.43, 826.52], [468.0, 837.98], [474.61, 843.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[469.5, 820.3], [468.48, 819.37], [469.87, 817.85], [464.61, 813.07], [463.16, 814.65], [462.51, 814.06], [455.61, 821.59], [458.27, 824.01], [457.57, 824.77], [460.16, 827.12], [460.88, 826.33], [462.58, 827.87], [469.5, 820.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[467.32, 837.52], [478.21, 825.56], [472.85, 820.71], [471.3, 822.41], [470.59, 821.78], [462.54, 830.61], [464.43, 832.3], [463.13, 833.73], [467.32, 837.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[446.35, 818.05], [452.42, 823.49], [462.78, 812.02], [458.35, 808.05], [457.58, 808.91], [455.94, 807.43], [446.35, 818.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[425.51, 797.05], [430.2, 801.48], [438.55, 792.73], [438.12, 792.33], [439.22, 791.19], [435.06, 787.24], [433.83, 788.52], [433.5, 788.21], [430.89, 790.96], [430.24, 790.34], [427.1, 793.63], [427.97, 794.47], [425.51, 797.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[421.97, 795.51], [423.15, 794.24], [423.99, 795.0], [430.3, 788.12], [429.49, 787.39], [431.99, 784.66], [427.25, 780.35], [418.36, 790.03], [420.18, 791.67], [419.07, 792.87], [421.97, 795.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[384.12, 792.37], [389.02, 796.74], [398.54, 786.14], [393.64, 781.78], [384.12, 792.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[394.42, 791.32], [400.05, 796.38], [395.25, 801.67], [389.63, 796.62], [394.42, 791.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[403.78, 800.23], [410.55, 806.53], [406.24, 811.15], [399.45, 804.86], [403.78, 800.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[449.93, 843.84], [454.66, 848.05], [450.69, 852.48], [445.95, 848.28], [449.93, 843.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[449.01, 841.85], [445.81, 838.83], [441.22, 843.64], [444.42, 846.66], [449.01, 841.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[458.75, 850.72], [463.9, 855.59], [459.59, 860.11], [454.44, 855.23], [458.75, 850.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[474.15, 860.56], [478.83, 855.08], [472.82, 849.97], [468.14, 855.44], [474.15, 860.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[472.08, 859.43], [467.06, 855.02], [461.43, 861.39], [466.46, 865.8], [472.08, 859.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3262.37, -1108.31], [-3261.29, -1109.61], [-3262.62, -1110.7], [-3259.14, -1114.86], [-3257.84, -1113.77], [-3256.4, -1115.51], [-3248.57, -1109.0], [-3250.98, -1106.11], [-3249.57, -1104.93], [-3252.68, -1101.23], [-3254.35, -1102.63], [-3254.84, -1102.05], [-3262.37, -1108.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3273.34, -1102.7], [-3270.14, -1106.55], [-3267.47, -1104.34], [-3265.53, -1106.67], [-3255.47, -1098.36], [-3260.61, -1092.19], [-3273.34, -1102.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[331.98, 1017.89], [339.38, 1009.84], [351.2, 1020.63], [343.8, 1028.69], [331.98, 1017.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[363.36, 999.19], [363.62, 999.44], [365.39, 997.53], [369.31, 1001.09], [367.77, 1002.77], [368.44, 1003.37], [368.56, 1005.0], [367.52, 1006.07], [366.85, 1006.09], [366.64, 1006.31], [366.87, 1006.53], [366.07, 1007.4], [366.47, 1007.76], [363.03, 1011.52], [362.35, 1010.9], [359.8, 1013.7], [359.34, 1013.29], [358.76, 1013.93], [354.34, 1009.91], [355.04, 1009.16], [354.6, 1008.76], [363.36, 999.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[355.93, 1006.76], [363.37, 998.57], [362.86, 998.1], [364.41, 996.4], [358.41, 990.99], [356.87, 992.69], [356.36, 992.24], [348.83, 1000.53], [350.74, 1002.25], [350.25, 1002.79], [354.62, 1006.73], [355.19, 1006.11], [355.93, 1006.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[347.15, 1000.88], [356.3, 991.13], [349.32, 984.62], [340.17, 994.37], [347.15, 1000.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[337.23, 992.46], [340.92, 988.29], [342.65, 989.82], [348.56, 983.18], [342.22, 977.58], [340.22, 979.81], [339.92, 979.55], [335.89, 984.08], [336.72, 984.81], [333.83, 988.05], [333.53, 987.78], [332.83, 988.57], [337.23, 992.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[325.99, 990.11], [340.03, 974.7], [331.48, 966.98], [317.44, 982.37], [325.99, 990.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[319.21, 972.14], [327.25, 963.32], [320.08, 956.82], [312.03, 965.64], [319.21, 972.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[285.96, 994.97], [292.1, 988.59], [278.72, 975.77], [272.57, 982.13], [285.96, 994.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[296.06, 1003.47], [303.11, 995.58], [312.29, 1003.71], [305.23, 1011.61], [296.06, 1003.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[292.45, 1016.64], [299.57, 1008.96], [293.95, 1003.78], [286.82, 1011.46], [292.45, 1016.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[279.37, 1019.95], [286.35, 1012.37], [297.23, 1022.32], [290.26, 1029.9], [279.37, 1019.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[339.54, 1002.88], [342.37, 999.78], [337.45, 995.31], [334.61, 998.41], [339.54, 1002.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[322.47, 1009.75], [333.15, 998.01], [327.91, 993.29], [317.24, 1005.03], [322.47, 1009.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[477.33, 932.15], [470.17, 925.9], [483.8, 910.42], [490.96, 916.66], [477.33, 932.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[485.24, 926.27], [487.33, 923.92], [486.9, 923.54], [488.59, 921.63], [488.25, 921.33], [491.93, 917.16], [492.28, 917.46], [493.96, 915.54], [499.62, 920.46], [490.5, 930.87], [489.95, 930.39], [489.51, 930.88], [487.8, 929.36], [488.21, 928.9], [485.24, 926.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[492.77, 940.11], [493.95, 938.85], [494.19, 939.08], [499.42, 933.53], [500.07, 934.13], [505.47, 928.41], [504.58, 927.57], [505.11, 927.01], [503.26, 925.27], [502.81, 925.75], [501.24, 924.29], [496.04, 929.8], [495.55, 929.34], [490.03, 935.2], [490.27, 935.42], [489.1, 936.67], [492.77, 940.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[510.64, 924.89], [514.08, 921.19], [511.91, 919.18], [512.72, 918.3], [509.79, 915.6], [505.54, 920.18], [510.64, 924.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[504.09, 933.71], [511.43, 940.47], [521.5, 929.62], [514.15, 922.86], [504.09, 933.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[507.96, 951.45], [510.23, 953.58], [511.3, 952.45], [511.55, 952.69], [520.67, 943.05], [514.7, 937.44], [508.5, 943.99], [509.26, 944.7], [506.18, 947.94], [508.87, 950.48], [507.96, 951.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[512.01, 955.99], [515.39, 959.08], [515.63, 958.83], [518.85, 961.78], [524.52, 955.64], [521.22, 952.62], [521.88, 951.9], [518.58, 948.88], [512.01, 955.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[519.41, 962.57], [520.67, 961.2], [520.17, 960.75], [527.21, 953.13], [533.42, 958.82], [526.45, 966.36], [525.97, 965.92], [524.64, 967.37], [519.41, 962.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[531.66, 973.57], [535.95, 968.98], [536.28, 969.29], [539.89, 965.41], [535.43, 961.27], [532.27, 964.64], [530.54, 963.03], [525.79, 968.12], [531.66, 973.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[535.71, 976.17], [540.37, 980.34], [541.25, 979.37], [542.01, 980.06], [544.64, 977.14], [545.0, 977.47], [548.66, 973.42], [548.37, 973.15], [553.04, 968.01], [546.99, 962.57], [542.25, 967.8], [541.85, 967.44], [538.47, 971.18], [538.89, 971.56], [536.04, 974.72], [536.58, 975.2], [535.71, 976.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[544.41, 981.8], [550.21, 987.14], [557.44, 979.33], [556.78, 978.73], [559.74, 975.53], [558.8, 974.66], [559.42, 973.99], [558.61, 973.23], [557.93, 973.97], [555.44, 971.68], [553.77, 973.48], [552.88, 972.66], [544.41, 981.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[567.17, 981.2], [560.13, 989.36], [559.53, 988.84], [556.33, 992.55], [555.66, 991.98], [554.75, 993.02], [550.83, 989.67], [551.77, 988.57], [551.15, 988.05], [553.98, 984.75], [553.48, 984.32], [556.94, 980.33], [559.32, 982.37], [563.23, 977.84], [567.17, 981.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[566.27, 987.57], [566.8, 988.04], [570.82, 983.43], [574.54, 986.66], [570.32, 991.49], [571.86, 992.83], [565.4, 1000.24], [559.6, 995.21], [566.27, 987.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[573.28, 993.68], [574.6, 992.25], [578.28, 995.6], [576.95, 997.04], [579.11, 999.01], [570.25, 1008.69], [563.98, 1002.99], [572.86, 993.29], [573.28, 993.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[572.64, 1010.82], [573.62, 1011.7], [573.58, 1012.39], [574.88, 1013.56], [575.61, 1013.4], [576.13, 1013.86], [575.72, 1014.33], [577.9, 1016.28], [578.29, 1015.83], [578.76, 1016.24], [587.05, 1007.05], [586.23, 1006.32], [587.72, 1004.65], [584.32, 1001.61], [584.05, 1001.91], [583.11, 1001.07], [583.29, 1000.87], [581.66, 999.41], [578.73, 1002.66], [579.43, 1003.28], [572.64, 1010.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[579.02, 1016.81], [579.38, 1017.15], [577.95, 1018.69], [582.86, 1023.19], [584.21, 1021.73], [584.73, 1022.21], [587.58, 1019.14], [588.35, 1019.85], [592.56, 1015.31], [592.18, 1014.95], [595.43, 1011.46], [594.83, 1010.9], [596.14, 1009.5], [592.96, 1006.57], [591.6, 1008.03], [591.37, 1007.83], [591.39, 1007.5], [588.93, 1005.25], [581.36, 1013.48], [581.76, 1013.83], [579.02, 1016.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[584.53, 1025.77], [591.41, 1031.94], [603.85, 1018.75], [596.8, 1012.55], [584.53, 1025.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[594.19, 1029.65], [598.48, 1033.59], [600.43, 1031.47], [601.46, 1032.41], [607.35, 1026.03], [602.03, 1021.16], [594.19, 1029.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[600.86, 1037.79], [610.88, 1026.85], [616.1, 1031.6], [613.61, 1034.32], [614.66, 1035.26], [608.87, 1041.58], [605.36, 1041.88], [600.86, 1037.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[625.17, 1020.69], [629.87, 1015.6], [620.85, 1007.32], [616.14, 1012.41], [625.17, 1020.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[631.17, 1014.02], [636.22, 1008.37], [629.84, 1002.72], [629.49, 1003.11], [627.04, 1000.94], [622.7, 1005.79], [625.07, 1007.88], [624.7, 1008.29], [631.17, 1014.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[629.97, 1001.22], [630.23, 1000.86], [628.91, 999.66], [632.01, 996.35], [633.32, 997.55], [635.64, 994.97], [643.87, 1002.58], [638.51, 1008.69], [629.97, 1001.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[636.78, 993.78], [637.07, 993.47], [635.54, 992.1], [638.78, 988.54], [640.27, 989.89], [642.34, 987.61], [648.96, 993.57], [648.76, 993.8], [650.46, 995.34], [645.34, 1000.98], [643.65, 999.46], [643.39, 999.75], [636.78, 993.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[639.48, 981.74], [640.34, 980.8], [639.96, 980.45], [642.5, 977.64], [642.87, 977.97], [645.39, 975.16], [658.95, 987.33], [653.02, 993.9], [639.48, 981.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[630.49, 986.92], [631.53, 985.79], [632.39, 986.58], [640.06, 978.2], [638.61, 976.88], [639.9, 975.47], [637.24, 973.05], [636.08, 974.32], [634.75, 973.11], [625.92, 982.75], [630.49, 986.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[620.64, 979.78], [624.8, 975.15], [625.08, 975.39], [630.11, 969.79], [629.53, 969.28], [630.83, 967.83], [627.26, 964.64], [626.22, 965.79], [625.31, 964.97], [619.58, 971.34], [620.16, 971.84], [616.42, 976.01], [620.64, 979.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[614.39, 973.27], [623.43, 963.49], [618.46, 958.92], [609.42, 968.7], [614.39, 973.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[607.22, 968.88], [617.45, 958.15], [612.18, 953.15], [604.9, 960.79], [606.12, 961.95], [603.18, 965.04], [607.22, 968.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[600.14, 960.12], [606.52, 953.12], [604.7, 951.48], [607.13, 948.83], [603.01, 945.09], [596.44, 952.28], [596.86, 952.66], [595.76, 953.87], [597.94, 955.86], [596.81, 957.1], [600.14, 960.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[594.43, 953.79], [601.69, 945.94], [600.04, 944.43], [602.22, 942.06], [597.86, 938.05], [596.72, 939.29], [596.52, 939.1], [588.22, 948.09], [594.43, 953.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[586.34, 947.0], [589.65, 943.28], [588.89, 942.61], [595.39, 935.27], [590.95, 931.36], [579.5, 944.29], [582.48, 946.9], [584.12, 945.06], [586.34, 947.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[576.05, 940.55], [576.96, 939.55], [577.88, 940.36], [581.82, 935.96], [580.63, 934.9], [586.97, 927.84], [582.1, 923.5], [575.02, 931.38], [575.28, 931.61], [572.05, 935.21], [572.31, 935.44], [571.43, 936.43], [576.05, 940.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[575.61, 919.76], [567.95, 912.83], [562.31, 919.0], [561.6, 918.36], [560.69, 919.36], [561.46, 920.06], [552.99, 929.34], [558.32, 934.17], [558.99, 933.43], [561.26, 935.49], [575.61, 919.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[554.65, 921.05], [564.89, 909.73], [552.51, 898.6], [542.26, 909.92], [554.65, 921.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[543.42, 889.39], [532.92, 900.87], [532.19, 900.2], [531.51, 900.94], [529.63, 899.24], [530.25, 898.57], [526.03, 894.74], [536.53, 883.26], [537.3, 883.96], [539.1, 882.0], [542.54, 885.13], [540.8, 887.02], [543.42, 889.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[520.52, 889.73], [525.76, 883.81], [522.85, 881.25], [525.42, 878.33], [522.43, 875.69], [519.8, 878.67], [518.62, 877.62], [518.38, 877.9], [516.67, 876.41], [513.41, 880.11], [515.01, 881.52], [513.33, 883.42], [520.52, 889.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[512.1, 907.78], [512.36, 907.5], [513.36, 908.38], [518.06, 903.09], [516.95, 902.11], [517.18, 901.84], [509.11, 894.7], [508.46, 895.07], [503.42, 890.64], [498.68, 895.98], [512.1, 907.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[504.72, 914.75], [511.14, 907.7], [499.8, 897.46], [499.54, 897.74], [498.36, 896.67], [492.91, 902.66], [494.24, 903.86], [494.04, 904.09], [497.05, 906.82], [496.56, 907.37], [504.72, 914.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[513.73, 909.08], [519.59, 902.43], [524.46, 906.69], [518.6, 913.35], [513.73, 909.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[565.41, 954.81], [570.34, 949.65], [564.98, 944.55], [560.05, 949.72], [565.41, 954.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[561.69, 965.2], [566.26, 969.44], [572.06, 963.24], [567.49, 958.99], [561.69, 965.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[574.44, 975.45], [579.21, 970.07], [572.89, 964.5], [568.11, 969.87], [574.44, 975.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[576.29, 975.0], [580.88, 979.05], [585.07, 974.32], [580.48, 970.28], [576.29, 975.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[583.36, 961.83], [586.99, 962.4], [587.82, 957.12], [584.19, 956.56], [583.36, 961.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[584.73, 972.22], [588.76, 967.74], [592.0, 970.62], [587.97, 975.11], [584.73, 972.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[597.14, 983.31], [603.27, 988.73], [609.06, 982.24], [602.93, 976.82], [597.14, 983.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[541.96, 849.73], [546.71, 854.1], [547.01, 853.77], [549.71, 856.26], [550.91, 854.96], [551.35, 855.37], [556.69, 849.61], [552.77, 846.0], [552.21, 846.61], [548.25, 842.95], [541.96, 849.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[558.7, 848.5], [561.69, 845.09], [566.53, 849.29], [563.55, 852.71], [558.7, 848.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[551.16, 838.65], [559.83, 846.6], [565.32, 840.68], [561.15, 836.86], [560.34, 837.74], [557.02, 834.69], [555.23, 834.25], [551.16, 838.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[576.19, 833.3], [573.61, 831.13], [573.92, 830.76], [568.26, 825.99], [566.05, 828.6], [563.76, 826.67], [560.25, 830.8], [568.03, 837.36], [569.91, 835.15], [572.18, 837.06], [573.34, 835.71], [573.81, 836.1], [576.19, 833.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[580.31, 833.13], [585.14, 827.67], [579.57, 822.78], [574.75, 828.23], [580.31, 833.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[584.12, 822.01], [587.12, 818.61], [586.29, 817.89], [588.68, 815.18], [584.41, 811.43], [583.76, 812.16], [579.58, 808.51], [576.61, 811.88], [577.38, 812.56], [575.89, 814.26], [579.07, 817.04], [578.8, 817.36], [584.12, 822.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[590.33, 814.65], [601.33, 802.94], [598.99, 800.76], [599.33, 800.39], [596.99, 798.21], [596.52, 798.71], [593.57, 795.95], [585.33, 804.71], [585.98, 805.32], [583.34, 808.14], [590.33, 814.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[606.54, 817.09], [605.19, 815.9], [607.89, 812.86], [603.92, 809.35], [596.15, 818.09], [597.99, 819.71], [597.51, 820.26], [598.48, 821.12], [597.71, 821.98], [600.35, 824.31], [601.79, 822.7], [601.65, 822.59], [606.54, 817.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[624.72, 827.63], [618.58, 834.23], [612.75, 828.86], [618.72, 822.45], [619.04, 822.75], [620.64, 821.04], [625.83, 825.84], [624.43, 827.36], [624.72, 827.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[634.29, 832.92], [628.24, 827.51], [620.34, 836.29], [626.38, 841.71], [634.29, 832.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[631.83, 850.12], [639.51, 841.47], [633.74, 836.39], [626.07, 845.04], [631.83, 850.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[642.15, 843.46], [642.55, 843.81], [644.04, 842.18], [648.52, 846.21], [647.0, 847.89], [647.38, 848.22], [641.34, 854.89], [640.63, 854.25], [638.92, 856.14], [635.13, 852.74], [636.93, 850.74], [636.18, 850.06], [642.15, 843.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[656.83, 854.04], [650.54, 848.2], [640.13, 859.34], [643.88, 862.82], [644.63, 862.01], [647.18, 864.37], [656.83, 854.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[646.49, 868.48], [650.19, 864.47], [650.66, 864.91], [657.53, 857.47], [658.18, 858.05], [659.47, 856.65], [663.47, 860.32], [662.17, 861.72], [662.75, 862.25], [655.17, 870.47], [653.83, 869.24], [653.54, 869.56], [652.53, 868.63], [649.83, 871.55], [646.49, 868.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[656.76, 873.13], [659.64, 875.9], [657.24, 878.39], [663.49, 884.37], [674.68, 872.79], [668.28, 866.66], [667.93, 867.01], [665.2, 864.39], [656.76, 873.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[673.58, 884.0], [676.36, 886.5], [675.47, 887.49], [677.51, 889.33], [678.32, 888.43], [679.38, 889.39], [685.51, 882.63], [684.96, 882.13], [686.33, 880.61], [681.49, 876.26], [680.15, 877.74], [679.66, 877.3], [673.58, 884.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[684.61, 897.21], [679.22, 892.35], [680.73, 890.68], [680.5, 890.48], [686.52, 883.86], [692.42, 889.18], [686.44, 895.77], [686.15, 895.51], [684.61, 897.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[690.68, 902.17], [692.22, 900.48], [693.62, 901.76], [699.41, 895.41], [698.95, 894.99], [700.19, 893.62], [697.73, 891.39], [696.39, 892.86], [694.01, 890.71], [688.39, 896.87], [688.95, 897.37], [687.33, 899.15], [690.68, 902.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[719.67, 916.71], [720.16, 916.18], [721.49, 917.43], [725.95, 912.65], [724.54, 911.34], [724.93, 910.93], [718.12, 904.62], [712.79, 910.32], [719.67, 916.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[713.24, 923.78], [713.54, 923.46], [714.82, 924.65], [719.64, 919.49], [718.32, 918.27], [718.56, 918.01], [711.7, 911.67], [706.35, 917.41], [713.24, 923.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[704.12, 918.62], [707.01, 915.38], [702.36, 911.26], [699.47, 914.49], [704.12, 918.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[706.79, 931.06], [707.12, 930.68], [708.46, 931.9], [712.58, 927.41], [711.2, 926.16], [711.49, 925.86], [703.98, 919.0], [702.24, 920.9], [701.1, 919.87], [699.05, 922.11], [700.06, 923.03], [699.12, 924.05], [706.79, 931.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[696.7, 925.99], [699.43, 923.07], [694.85, 918.82], [692.13, 921.74], [696.7, 925.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[699.56, 938.69], [704.79, 933.06], [697.98, 926.77], [696.67, 928.2], [695.61, 927.22], [691.69, 931.43], [699.56, 938.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[689.51, 932.82], [692.76, 929.26], [688.54, 925.44], [685.28, 929.0], [689.51, 932.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[692.81, 945.97], [693.15, 945.59], [694.61, 946.9], [698.93, 942.12], [697.62, 940.94], [697.91, 940.63], [690.99, 934.42], [690.52, 934.93], [688.53, 933.14], [684.53, 937.58], [686.66, 939.48], [686.18, 940.02], [692.81, 945.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[690.6, 948.71], [692.74, 950.64], [688.77, 955.03], [686.67, 953.16], [686.37, 953.49], [678.77, 946.67], [678.95, 946.46], [677.78, 945.4], [680.53, 942.36], [681.53, 943.26], [683.17, 941.45], [690.89, 948.39], [690.6, 948.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[675.61, 947.37], [678.14, 944.74], [674.26, 941.06], [671.75, 943.69], [675.61, 947.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[678.59, 961.69], [678.9, 961.36], [680.37, 962.73], [684.94, 957.87], [683.47, 956.5], [683.81, 956.15], [676.98, 949.76], [675.63, 951.19], [674.93, 950.53], [671.31, 954.37], [672.0, 955.0], [671.74, 955.28], [678.59, 961.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[671.83, 969.8], [672.4, 969.21], [673.73, 970.46], [678.1, 965.89], [676.62, 964.49], [677.05, 964.05], [670.32, 957.66], [670.05, 957.94], [668.96, 956.9], [665.35, 960.67], [666.23, 961.51], [664.73, 963.07], [671.83, 969.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[664.79, 960.6], [668.62, 956.47], [665.03, 953.16], [661.2, 957.3], [664.79, 960.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[646.44, 943.82], [651.59, 948.42], [652.99, 946.87], [653.53, 947.35], [659.44, 940.77], [653.28, 935.26], [647.25, 941.97], [647.72, 942.39], [646.44, 943.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[640.46, 938.51], [644.78, 942.38], [652.91, 933.37], [650.91, 931.57], [652.18, 930.17], [649.11, 927.42], [647.82, 928.85], [646.86, 927.99], [639.83, 935.78], [641.54, 937.32], [640.46, 938.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[637.23, 935.65], [645.35, 927.09], [643.9, 925.71], [644.76, 924.81], [642.18, 922.38], [641.32, 923.3], [639.31, 921.41], [631.19, 929.96], [637.23, 935.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[630.34, 926.12], [639.75, 915.72], [627.98, 905.15], [618.57, 915.56], [630.34, 926.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[614.84, 915.43], [622.55, 906.82], [616.11, 901.11], [608.4, 909.72], [614.84, 915.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[607.28, 908.88], [615.18, 900.27], [614.52, 899.67], [616.65, 897.35], [613.52, 894.51], [610.73, 897.54], [609.27, 896.22], [602.61, 903.45], [605.39, 905.99], [604.81, 906.61], [607.28, 908.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[593.31, 896.27], [601.16, 887.61], [601.62, 888.02], [603.17, 886.31], [606.54, 889.35], [604.89, 891.16], [607.94, 893.9], [600.18, 902.45], [593.31, 896.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[592.37, 895.18], [601.89, 884.79], [601.14, 884.11], [603.14, 881.93], [600.49, 879.53], [598.64, 881.55], [595.73, 878.9], [586.06, 889.44], [592.37, 895.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[584.86, 888.5], [592.03, 880.66], [590.8, 879.54], [591.38, 878.9], [586.05, 874.07], [578.31, 882.56], [584.86, 888.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[576.64, 880.31], [577.97, 878.85], [578.43, 879.26], [588.22, 868.52], [584.05, 864.73], [583.06, 865.83], [580.96, 863.93], [572.07, 873.7], [572.59, 874.17], [571.35, 875.53], [576.64, 880.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[567.16, 868.3], [574.68, 859.94], [573.3, 858.7], [576.44, 855.21], [570.1, 849.53], [559.42, 861.38], [567.16, 868.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[606.03, 867.43], [609.28, 870.22], [613.18, 865.7], [609.93, 862.92], [606.03, 867.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[604.77, 867.5], [609.42, 862.31], [606.55, 859.76], [601.91, 864.96], [604.77, 867.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[609.46, 859.18], [614.29, 853.95], [609.08, 849.17], [604.26, 854.41], [609.46, 859.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[612.98, 881.41], [616.47, 884.58], [621.07, 879.55], [617.57, 876.38], [612.98, 881.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[616.91, 884.82], [621.39, 879.89], [624.57, 882.76], [620.09, 887.69], [616.91, 884.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[628.35, 876.73], [632.74, 880.87], [637.43, 875.95], [633.04, 871.79], [628.35, 876.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[633.57, 881.59], [637.55, 876.59], [640.69, 879.07], [636.72, 884.07], [633.57, 881.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[652.41, 913.08], [658.47, 906.46], [654.98, 903.28], [648.92, 909.91], [652.41, 913.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[650.87, 922.11], [653.91, 924.73], [657.73, 920.7], [654.81, 917.89], [650.87, 922.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[664.12, 908.7], [667.92, 904.16], [670.77, 906.51], [666.97, 911.07], [664.12, 908.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[662.04, 907.48], [666.72, 902.53], [663.57, 899.58], [658.9, 904.55], [662.04, 907.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[667.2, 923.77], [671.41, 919.01], [676.17, 923.18], [671.97, 927.95], [667.2, 923.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[673.07, 928.48], [677.92, 923.35], [684.02, 929.07], [679.18, 934.19], [673.07, 928.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[679.99, 910.71], [684.76, 914.9], [688.83, 910.3], [684.06, 906.11], [679.99, 910.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2718.12, -980.79], [-2710.96, -974.91], [-2707.58, -979.01], [-2706.91, -978.45], [-2706.67, -978.75], [-2704.49, -976.95], [-2697.96, -984.86], [-2702.72, -988.75], [-2703.87, -987.34], [-2709.53, -991.99], [-2717.18, -982.72], [-2716.79, -982.4], [-2718.12, -980.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2707.34, -967.82], [-2700.21, -961.79], [-2687.46, -976.74], [-2689.76, -978.69], [-2689.12, -979.45], [-2692.55, -982.36], [-2693.31, -981.47], [-2694.7, -982.64], [-2707.34, -967.82]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2689.87, -955.4], [-2688.04, -957.54], [-2687.55, -957.14], [-2681.32, -964.42], [-2684.06, -966.74], [-2683.16, -967.79], [-2687.22, -971.24], [-2688.03, -970.28], [-2688.94, -971.06], [-2695.37, -963.52], [-2694.74, -962.99], [-2696.46, -960.98], [-2689.87, -955.4]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2627.46, -895.37], [-2609.67, -916.24], [-2604.11, -922.77], [-2635.75, -950.95], [-2655.0, -927.34], [-2655.16, -925.96], [-2658.32, -922.15], [-2627.46, -895.37]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-2666.82, -937.74], [-2660.14, -945.31], [-2667.05, -951.37], [-2673.67, -943.87], [-2672.91, -943.21], [-2673.74, -942.28], [-2668.34, -937.55], [-2667.59, -938.4], [-2666.82, -937.74]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2689.76, -949.61], [-2679.39, -940.81], [-2667.68, -954.51], [-2678.07, -963.31], [-2689.76, -949.61]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2723.53, -1032.66], [-2718.78, -1038.11], [-2712.01, -1032.25], [-2716.77, -1026.81], [-2723.53, -1032.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2707.9, -1037.45], [-2699.48, -1047.21], [-2706.57, -1053.3], [-2715.0, -1043.55], [-2707.9, -1037.45]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2699.21, -1044.47], [-2698.85, -1044.17], [-2697.37, -1045.93], [-2692.16, -1041.53], [-2693.49, -1039.96], [-2691.44, -1038.24], [-2694.62, -1034.48], [-2693.49, -1033.53], [-2696.36, -1030.15], [-2697.23, -1030.87], [-2698.85, -1028.96], [-2706.74, -1035.6], [-2699.21, -1044.47]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2704.99, -1020.88], [-2701.17, -1025.51], [-2706.58, -1029.96], [-2710.41, -1025.32], [-2704.99, -1020.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2703.51, -1014.86], [-2698.53, -1020.72], [-2693.16, -1016.19], [-2698.14, -1010.34], [-2703.51, -1014.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2696.74, -1021.98], [-2694.01, -1025.28], [-2690.81, -1022.66], [-2689.28, -1024.52], [-2688.99, -1024.28], [-2682.71, -1031.91], [-2685.55, -1034.23], [-2684.8, -1035.14], [-2687.91, -1037.69], [-2688.5, -1036.97], [-2688.99, -1037.37], [-2699.68, -1024.39], [-2696.74, -1021.98]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2696.55, -1009.34], [-2692.13, -1014.63], [-2686.57, -1010.03], [-2690.98, -1004.73], [-2696.55, -1009.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2681.59, -1013.45], [-2680.36, -1014.88], [-2680.05, -1014.61], [-2673.06, -1022.81], [-2673.69, -1023.33], [-2672.41, -1024.83], [-2678.82, -1030.24], [-2680.08, -1028.76], [-2680.78, -1029.35], [-2687.77, -1021.15], [-2687.5, -1020.92], [-2688.72, -1019.49], [-2681.59, -1013.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2679.07, -1007.93], [-2676.82, -1010.58], [-2678.18, -1011.73], [-2676.61, -1013.58], [-2677.06, -1013.97], [-2671.38, -1020.68], [-2664.3, -1014.72], [-2664.84, -1014.09], [-2662.59, -1012.18], [-2666.09, -1008.06], [-2668.33, -1009.95], [-2670.02, -1007.96], [-2670.43, -1008.3], [-2674.2, -1003.84], [-2679.07, -1007.93]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2680.56, -999.27], [-2676.67, -996.18], [-2672.3, -1001.67], [-2676.19, -1004.75], [-2680.56, -999.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2660.67, -998.66], [-2652.73, -1008.22], [-2659.43, -1013.73], [-2667.36, -1004.17], [-2660.67, -998.66]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2659.07, -994.2], [-2651.08, -1003.81], [-2642.31, -996.58], [-2650.3, -986.97], [-2659.07, -994.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2656.11, -978.99], [-2651.71, -984.15], [-2647.89, -980.93], [-2652.29, -975.77], [-2656.11, -978.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2642.77, -981.83], [-2641.77, -982.94], [-2640.86, -982.13], [-2633.93, -989.88], [-2634.67, -990.53], [-2633.71, -991.62], [-2635.26, -993.0], [-2634.75, -993.57], [-2635.96, -994.63], [-2636.45, -994.08], [-2638.42, -995.83], [-2639.74, -994.35], [-2640.2, -994.76], [-2646.93, -987.23], [-2645.07, -985.57], [-2645.91, -984.63], [-2642.77, -981.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2628.96, -973.63], [-2622.96, -980.99], [-2623.36, -981.31], [-2622.34, -982.55], [-2629.27, -988.17], [-2630.58, -986.55], [-2630.9, -986.8], [-2636.6, -979.81], [-2628.96, -973.63]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2614.39, -973.49], [-2613.28, -974.81], [-2619.28, -979.81], [-2620.49, -978.37], [-2621.04, -978.82], [-2628.26, -970.2], [-2626.44, -968.69], [-2627.05, -967.95], [-2624.97, -966.21], [-2624.37, -966.92], [-2621.12, -964.22], [-2613.77, -972.97], [-2614.39, -973.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2611.96, -971.22], [-2611.37, -970.72], [-2610.14, -972.17], [-2604.17, -967.22], [-2605.38, -965.78], [-2604.79, -965.29], [-2611.85, -956.85], [-2612.59, -957.46], [-2613.74, -956.08], [-2616.89, -958.7], [-2615.74, -960.06], [-2619.02, -962.78], [-2611.96, -971.22]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2617.81, -947.57], [-2613.56, -952.37], [-2610.13, -949.37], [-2614.38, -944.56], [-2617.81, -947.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2609.01, -948.95], [-2605.93, -952.49], [-2610.46, -956.41], [-2613.54, -952.85], [-2609.01, -948.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2814.95, -1118.12], [-2813.86, -1119.39], [-2812.32, -1118.05], [-2810.4, -1120.26], [-2811.83, -1121.49], [-2810.29, -1123.26], [-2813.66, -1126.16], [-2812.77, -1127.17], [-2820.39, -1133.72], [-2820.98, -1133.04], [-2822.51, -1134.37], [-2827.38, -1128.76], [-2822.37, -1124.44], [-2822.7, -1124.07], [-2818.56, -1120.5], [-2818.19, -1120.92], [-2814.95, -1118.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2811.84, -1144.95], [-2811.02, -1145.9], [-2807.35, -1142.74], [-2806.72, -1143.48], [-2801.82, -1139.25], [-2808.34, -1131.73], [-2812.27, -1135.1], [-2811.98, -1135.45], [-2812.5, -1135.9], [-2812.79, -1135.56], [-2816.42, -1138.69], [-2816.09, -1139.07], [-2817.54, -1140.32], [-2812.81, -1145.79], [-2811.84, -1144.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2810.72, -1105.22], [-2805.4, -1100.77], [-2801.77, -1105.07], [-2807.09, -1109.52], [-2810.72, -1105.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2786.98, -1126.6], [-2791.16, -1121.81], [-2791.7, -1122.26], [-2793.08, -1120.67], [-2801.7, -1128.14], [-2796.99, -1133.54], [-2795.46, -1132.22], [-2792.8, -1135.28], [-2786.7, -1130.01], [-2788.51, -1127.93], [-2786.98, -1126.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2782.68, -1116.3], [-2779.24, -1113.44], [-2784.2, -1107.51], [-2784.39, -1107.68], [-2786.36, -1105.33], [-2790.59, -1108.84], [-2787.54, -1112.48], [-2791.98, -1116.17], [-2784.75, -1124.8], [-2784.44, -1124.55], [-2783.51, -1125.65], [-2781.57, -1124.04], [-2782.08, -1123.43], [-2778.91, -1120.79], [-2782.68, -1116.3]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2790.63, -1094.29], [-2785.71, -1100.16], [-2792.19, -1105.56], [-2797.12, -1099.7], [-2790.63, -1094.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2782.79, -1081.61], [-2778.8, -1086.32], [-2773.77, -1082.08], [-2777.76, -1077.38], [-2782.79, -1081.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2772.14, -1090.43], [-2762.66, -1101.62], [-2763.1, -1101.99], [-2762.02, -1103.25], [-2767.88, -1108.19], [-2769.08, -1106.76], [-2769.84, -1107.41], [-2776.19, -1099.92], [-2775.15, -1099.04], [-2777.51, -1096.26], [-2774.94, -1094.09], [-2775.58, -1093.32], [-2772.14, -1090.43]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2766.38, -1090.74], [-2759.05, -1099.27], [-2757.73, -1098.14], [-2756.21, -1099.91], [-2748.79, -1093.56], [-2750.25, -1091.88], [-2749.26, -1091.04], [-2756.66, -1082.43], [-2766.38, -1090.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2737.94, -1080.09], [-2738.78, -1080.8], [-2736.93, -1082.97], [-2744.05, -1089.01], [-2745.68, -1087.11], [-2746.31, -1087.64], [-2753.89, -1078.76], [-2748.95, -1074.56], [-2749.71, -1073.66], [-2747.04, -1071.39], [-2746.16, -1072.43], [-2745.18, -1071.6], [-2737.94, -1080.09]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2760.31, -1062.18], [-2756.61, -1066.5], [-2761.89, -1071.0], [-2765.59, -1066.68], [-2760.31, -1062.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2725.44, -1069.64], [-2725.93, -1070.04], [-2724.19, -1072.07], [-2731.59, -1078.31], [-2733.38, -1076.2], [-2734.01, -1076.73], [-2740.39, -1069.21], [-2737.77, -1066.99], [-2738.64, -1065.97], [-2736.44, -1064.12], [-2735.6, -1065.1], [-2731.92, -1061.99], [-2725.44, -1069.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2843.16, -1153.74], [-2832.93, -1165.49], [-2836.07, -1168.21], [-2835.17, -1169.25], [-2837.7, -1171.44], [-2838.58, -1170.43], [-2839.14, -1170.92], [-2849.36, -1159.19], [-2846.34, -1156.59], [-2847.15, -1155.66], [-2844.41, -1153.31], [-2843.66, -1154.17], [-2843.16, -1153.74]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2862.13, -1168.02], [-2859.19, -1165.53], [-2857.47, -1167.54], [-2856.71, -1166.89], [-2854.11, -1169.93], [-2853.67, -1169.55], [-2850.8, -1172.91], [-2851.06, -1173.13], [-2848.94, -1175.62], [-2849.35, -1175.96], [-2848.43, -1177.03], [-2850.29, -1178.61], [-2849.99, -1178.98], [-2853.83, -1182.23], [-2860.03, -1174.99], [-2859.19, -1174.27], [-2861.8, -1171.21], [-2860.41, -1170.04], [-2862.13, -1168.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2875.6, -1162.01], [-2868.99, -1156.58], [-2863.75, -1162.92], [-2870.36, -1168.34], [-2875.6, -1162.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2883.83, -1168.79], [-2878.97, -1174.6], [-2884.55, -1179.23], [-2889.41, -1173.42], [-2883.83, -1168.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2890.1, -1173.79], [-2886.18, -1178.64], [-2890.94, -1182.46], [-2894.86, -1177.6], [-2890.1, -1173.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2874.65, -1178.11], [-2867.21, -1187.07], [-2866.1, -1186.16], [-2862.93, -1189.98], [-2865.28, -1191.91], [-2864.57, -1192.76], [-2866.83, -1194.62], [-2867.29, -1194.05], [-2870.64, -1196.81], [-2876.77, -1189.42], [-2875.56, -1188.42], [-2877.82, -1185.7], [-2876.9, -1184.94], [-2879.35, -1181.98], [-2874.65, -1178.11]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2876.96, -1193.52], [-2875.22, -1195.65], [-2876.74, -1196.88], [-2875.78, -1198.05], [-2875.16, -1198.07], [-2874.31, -1199.03], [-2874.47, -1200.71], [-2875.65, -1201.76], [-2876.26, -1201.66], [-2877.77, -1202.89], [-2877.51, -1203.2], [-2882.24, -1207.02], [-2885.02, -1203.62], [-2885.45, -1203.95], [-2888.92, -1199.7], [-2887.68, -1198.7], [-2890.27, -1195.53], [-2885.33, -1191.54], [-2883.8, -1193.42], [-2881.28, -1191.37], [-2880.21, -1192.68], [-2879.99, -1192.51], [-2878.29, -1194.59], [-2876.96, -1193.52]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2899.19, -1181.66], [-2895.14, -1186.26], [-2899.99, -1190.49], [-2904.03, -1185.89], [-2899.19, -1181.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2904.57, -1186.44], [-2900.58, -1191.06], [-2905.92, -1195.64], [-2909.91, -1191.02], [-2904.57, -1186.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2897.47, -1200.83], [-2886.66, -1213.47], [-2892.95, -1218.81], [-2896.83, -1214.26], [-2897.34, -1214.69], [-2900.6, -1210.88], [-2900.11, -1210.46], [-2904.59, -1205.21], [-2901.42, -1202.52], [-2900.6, -1203.48], [-2897.47, -1200.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2901.38, -1223.63], [-2899.85, -1225.48], [-2904.05, -1228.94], [-2905.31, -1227.41], [-2906.11, -1228.08], [-2909.83, -1223.59], [-2910.95, -1224.53], [-2914.06, -1220.79], [-2912.66, -1219.64], [-2915.11, -1216.69], [-2910.12, -1212.58], [-2907.83, -1215.34], [-2907.18, -1214.8], [-2900.47, -1222.88], [-2901.38, -1223.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2918.31, -1197.71], [-2913.63, -1203.26], [-2924.35, -1212.21], [-2924.65, -1211.85], [-2926.54, -1213.44], [-2930.61, -1208.61], [-2928.8, -1207.09], [-2929.1, -1206.73], [-2918.31, -1197.71]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[630.35, 1064.21], [631.26, 1063.21], [631.47, 1063.41], [641.54, 1052.35], [634.82, 1046.28], [627.75, 1054.04], [628.3, 1054.54], [624.4, 1058.82], [630.35, 1064.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[632.66, 1064.01], [633.88, 1062.63], [635.99, 1061.65], [640.5, 1056.54], [643.44, 1059.11], [644.2, 1058.26], [647.0, 1060.71], [646.25, 1061.55], [646.59, 1061.86], [644.48, 1064.24], [645.2, 1064.87], [643.63, 1066.64], [644.33, 1067.24], [641.42, 1070.54], [640.01, 1069.3], [639.44, 1069.94], [632.66, 1064.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[646.69, 1079.98], [651.67, 1074.69], [652.33, 1075.31], [656.52, 1070.84], [655.98, 1070.35], [657.14, 1069.13], [656.71, 1068.73], [659.05, 1066.23], [657.95, 1065.2], [659.14, 1063.92], [654.58, 1059.69], [650.11, 1064.45], [649.27, 1063.66], [639.89, 1073.65], [646.69, 1079.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[657.5, 1089.01], [658.61, 1087.79], [658.95, 1088.09], [669.22, 1076.81], [668.62, 1076.28], [670.55, 1074.16], [665.33, 1069.44], [663.46, 1071.5], [662.33, 1070.48], [659.66, 1073.4], [660.31, 1073.98], [658.2, 1076.3], [657.63, 1075.78], [654.43, 1079.3], [654.92, 1079.75], [652.44, 1082.46], [652.74, 1082.73], [651.75, 1083.82], [657.5, 1089.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[667.92, 1095.86], [660.17, 1088.78], [670.01, 1078.1], [670.29, 1078.36], [676.13, 1083.88], [673.41, 1086.74], [673.4, 1087.49], [672.69, 1088.27], [673.89, 1089.37], [667.92, 1095.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[669.15, 1097.71], [669.42, 1097.94], [668.61, 1098.82], [673.95, 1103.68], [674.93, 1102.61], [675.26, 1102.9], [678.09, 1099.82], [678.42, 1100.12], [682.04, 1096.16], [681.67, 1095.83], [683.91, 1093.4], [683.33, 1092.87], [684.79, 1091.3], [679.9, 1086.83], [678.62, 1088.22], [678.2, 1087.85], [669.15, 1097.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[684.22, 1114.5], [685.73, 1112.88], [686.02, 1113.15], [697.21, 1101.08], [690.79, 1095.16], [686.43, 1099.85], [686.06, 1099.51], [682.12, 1103.75], [682.46, 1104.08], [679.56, 1107.19], [679.83, 1107.44], [678.33, 1109.06], [684.22, 1114.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[687.86, 1117.07], [689.3, 1115.55], [688.74, 1115.05], [695.48, 1107.88], [697.84, 1110.08], [699.06, 1108.77], [703.3, 1112.73], [695.24, 1121.3], [694.66, 1120.76], [693.34, 1122.17], [687.86, 1117.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[698.36, 1126.36], [699.64, 1124.93], [699.19, 1124.54], [701.94, 1121.46], [701.43, 1121.0], [705.33, 1116.66], [705.98, 1117.24], [708.21, 1114.74], [708.67, 1115.15], [712.02, 1111.42], [716.32, 1115.24], [714.32, 1117.48], [714.59, 1117.72], [704.34, 1129.15], [703.85, 1128.71], [702.59, 1130.11], [698.36, 1126.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[748.02, 1171.76], [750.06, 1169.53], [750.34, 1169.79], [758.96, 1160.35], [756.01, 1157.68], [757.53, 1156.02], [754.23, 1153.03], [752.55, 1154.88], [752.32, 1154.66], [743.42, 1164.43], [743.84, 1164.8], [741.85, 1166.98], [744.8, 1169.65], [745.2, 1169.21], [748.02, 1171.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[754.37, 1173.1], [755.43, 1171.93], [759.02, 1175.18], [766.51, 1166.93], [765.68, 1166.17], [768.59, 1162.96], [762.25, 1157.28], [751.76, 1168.81], [752.49, 1169.41], [751.5, 1170.51], [754.37, 1173.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[762.53, 1145.53], [767.28, 1140.65], [772.09, 1145.31], [767.34, 1150.18], [762.53, 1145.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[781.92, 1148.89], [787.6, 1142.49], [776.6, 1132.78], [772.05, 1137.9], [773.02, 1138.75], [771.88, 1140.02], [781.92, 1148.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[789.3, 1139.11], [789.6, 1138.77], [790.88, 1139.9], [795.23, 1135.01], [793.97, 1133.9], [794.3, 1133.52], [786.12, 1126.32], [781.15, 1131.93], [789.3, 1139.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[797.47, 1129.57], [803.13, 1123.36], [792.49, 1113.75], [786.84, 1119.96], [797.47, 1129.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[762.12, 1113.2], [763.26, 1111.98], [766.35, 1114.86], [778.39, 1102.04], [773.75, 1097.7], [772.65, 1096.68], [771.83, 1095.92], [759.67, 1108.88], [760.51, 1109.67], [759.5, 1110.75], [762.12, 1113.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[759.8, 1104.57], [769.9, 1093.52], [762.38, 1086.71], [752.29, 1097.75], [759.8, 1104.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[746.75, 1098.93], [749.24, 1096.22], [749.9, 1096.83], [758.83, 1087.11], [758.57, 1086.88], [760.13, 1085.17], [753.94, 1079.52], [752.39, 1081.2], [752.09, 1080.94], [743.0, 1090.85], [744.55, 1092.26], [742.22, 1094.79], [746.75, 1098.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[736.24, 1081.07], [743.16, 1073.13], [743.42, 1073.34], [744.87, 1071.67], [750.78, 1076.78], [749.04, 1078.76], [749.27, 1078.97], [742.58, 1086.63], [742.29, 1086.38], [741.38, 1087.42], [735.57, 1082.38], [736.51, 1081.3], [736.24, 1081.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[739.05, 1071.91], [738.57, 1071.48], [739.85, 1070.06], [734.95, 1065.65], [733.62, 1067.12], [733.24, 1066.78], [726.86, 1073.8], [726.31, 1073.3], [724.81, 1074.95], [725.42, 1075.5], [724.97, 1076.0], [727.45, 1078.23], [726.71, 1079.04], [728.84, 1080.96], [729.6, 1080.14], [730.68, 1081.12], [739.05, 1071.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[722.06, 1069.89], [729.95, 1061.27], [721.94, 1054.0], [714.06, 1062.61], [722.06, 1069.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[713.66, 1061.54], [718.23, 1056.67], [714.97, 1053.63], [710.4, 1058.5], [713.66, 1061.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[705.03, 1053.94], [708.2, 1050.51], [708.64, 1050.91], [709.78, 1049.66], [709.35, 1049.25], [712.37, 1045.99], [706.12, 1040.24], [698.77, 1048.19], [705.03, 1053.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[706.2, 1060.71], [700.57, 1055.96], [695.07, 1062.45], [700.7, 1067.19], [706.2, 1060.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[703.87, 1035.54], [695.99, 1028.45], [688.55, 1036.65], [696.43, 1043.74], [703.87, 1035.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[680.14, 1028.5], [688.89, 1019.13], [681.24, 1012.05], [672.5, 1021.41], [680.14, 1028.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[671.03, 1019.56], [679.56, 1010.36], [672.62, 1003.99], [664.1, 1013.19], [671.03, 1019.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[650.36, 1030.56], [656.66, 1023.65], [669.31, 1035.11], [663.01, 1042.02], [650.36, 1030.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[639.21, 1038.82], [643.09, 1034.46], [644.06, 1035.31], [646.39, 1032.68], [653.75, 1039.15], [647.54, 1046.15], [639.21, 1038.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[700.59, 1089.98], [705.11, 1085.03], [700.27, 1080.63], [695.75, 1085.58], [700.59, 1089.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[715.56, 1091.78], [718.03, 1089.02], [720.47, 1091.17], [717.99, 1093.95], [715.56, 1091.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[719.61, 1096.02], [725.42, 1089.52], [732.92, 1096.18], [727.1, 1102.68], [719.61, 1096.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[712.32, 1102.99], [717.26, 1097.47], [725.9, 1105.14], [720.94, 1110.66], [712.32, 1102.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[741.9, 1115.82], [746.35, 1110.67], [741.69, 1106.68], [737.25, 1111.82], [741.9, 1115.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[765.27, 1118.46], [767.76, 1120.63], [770.37, 1117.65], [767.88, 1115.48], [765.27, 1118.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[745.76, 1120.01], [751.67, 1125.36], [756.12, 1120.47], [750.21, 1115.13], [745.76, 1120.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[745.22, 1120.35], [750.17, 1124.76], [745.91, 1129.5], [740.96, 1125.09], [745.22, 1120.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[765.53, 1128.33], [760.21, 1123.52], [755.52, 1128.66], [760.85, 1133.48], [765.53, 1128.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[463.85, 947.06], [470.41, 953.07], [459.16, 965.27], [452.6, 959.26], [463.85, 947.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[452.03, 959.48], [463.59, 946.68], [456.45, 940.28], [444.89, 953.08], [452.03, 959.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[450.27, 974.97], [456.55, 968.2], [445.4, 957.94], [439.13, 964.72], [450.27, 974.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[443.3, 982.98], [449.67, 976.09], [441.02, 968.17], [440.58, 968.64], [436.11, 964.54], [430.19, 970.97], [443.3, 982.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[462.17, 965.59], [472.32, 954.51], [478.94, 960.54], [468.79, 971.62], [462.17, 965.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[460.76, 979.82], [464.89, 975.16], [459.94, 970.8], [455.81, 975.46], [460.76, 979.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-475.68, -116.78], [-480.31, -116.56], [-481.4, -116.5], [-480.36, -94.78], [-478.18, -92.81], [-481.05, -89.66], [-469.09, -78.8], [-468.97, -78.69], [-464.58, -83.48], [-462.06, -86.24], [-462.57, -86.71], [-462.02, -87.29], [-474.82, -98.93], [-475.68, -116.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-478.08, -68.96], [-469.09, -78.8], [-481.05, -89.66], [-478.18, -92.81], [-480.36, -94.78], [-481.4, -116.5], [-481.41, -116.85], [-494.69, -116.21], [-494.66, -115.69], [-493.78, -97.06], [-500.3, -89.9], [-500.7, -89.47], [-479.97, -70.69], [-478.08, -68.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-524.46, -112.19], [-523.9, -114.29], [-519.05, -114.52], [-508.15, -115.02], [-506.22, -115.1], [-505.28, -94.52], [-507.59, -96.65], [-519.66, -107.77], [-524.46, -112.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-493.78, -97.06], [-499.82, -96.77], [-500.7, -115.34], [-499.92, -115.38], [-499.96, -116.31], [-497.82, -116.41], [-495.76, -116.51], [-495.72, -115.64], [-494.66, -115.69], [-493.78, -97.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-506.22, -115.1], [-505.03, -115.15], [-501.72, -115.3], [-500.7, -115.34], [-499.82, -96.77], [-493.78, -97.06], [-500.3, -89.9], [-500.84, -89.95], [-501.08, -90.15], [-502.28, -91.17], [-502.79, -91.21], [-505.11, -93.31], [-505.45, -93.61], [-504.92, -94.19], [-505.28, -94.52], [-506.22, -115.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-510.67, -134.65], [-510.67, -134.2], [-517.05, -133.92], [-517.06, -134.23], [-517.58, -145.92], [-517.62, -146.73], [-512.66, -152.05], [-511.45, -152.09], [-510.67, -134.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-517.06, -134.23], [-528.12, -133.74], [-528.17, -135.09], [-518.44, -145.88], [-517.58, -145.92], [-517.06, -134.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[319.58, 67.15], [321.55, 64.99], [322.41, 65.78], [324.23, 63.79], [323.27, 62.92], [324.67, 61.39], [317.93, 55.27], [318.88, 54.23], [313.74, 49.56], [307.59, 56.27], [319.58, 67.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[290.46, 95.39], [291.32, 94.46], [292.29, 95.35], [297.04, 90.17], [286.8, 80.81], [285.85, 81.85], [285.42, 81.45], [285.22, 81.67], [284.09, 80.63], [281.72, 83.21], [282.69, 84.1], [281.4, 85.49], [284.89, 88.68], [284.08, 89.56], [290.46, 95.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[283.59, 101.44], [287.45, 97.32], [287.01, 96.9], [288.83, 94.96], [280.81, 87.51], [280.35, 88.0], [279.26, 86.98], [274.42, 92.14], [275.5, 93.16], [275.12, 93.56], [283.59, 101.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[263.88, 105.77], [264.54, 106.38], [263.48, 107.52], [266.59, 110.42], [267.67, 109.27], [271.79, 113.11], [275.89, 108.75], [277.58, 110.33], [277.94, 109.94], [280.38, 112.2], [282.83, 109.59], [280.43, 107.35], [281.54, 106.16], [278.2, 103.04], [278.6, 102.61], [277.39, 101.47], [277.69, 101.15], [276.05, 99.63], [275.75, 99.95], [274.67, 98.94], [274.31, 99.32], [272.3, 97.45], [268.66, 101.33], [268.33, 101.02], [263.88, 105.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[288.33, 131.44], [295.87, 123.29], [290.99, 118.79], [291.55, 118.19], [287.1, 114.1], [283.51, 117.97], [282.7, 117.23], [280.54, 119.56], [281.1, 120.07], [280.1, 121.16], [283.59, 124.37], [282.24, 125.83], [288.33, 131.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[343.51, 129.94], [349.26, 123.54], [343.97, 118.83], [344.35, 118.4], [335.22, 110.26], [329.09, 117.09], [343.51, 129.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[356.75, 115.2], [351.0, 121.6], [345.72, 116.89], [345.33, 117.32], [336.2, 109.18], [342.34, 102.34], [356.75, 115.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[357.07, 115.15], [362.37, 109.25], [357.91, 105.28], [358.68, 104.43], [353.18, 99.53], [352.45, 100.33], [349.82, 97.99], [349.73, 97.38], [347.82, 95.51], [347.09, 95.53], [345.54, 94.15], [340.18, 100.12], [357.07, 115.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[364.72, 105.72], [369.83, 100.08], [358.01, 89.45], [352.89, 95.11], [364.72, 105.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2899.87, -1052.58], [-2876.67, -1053.29], [-2852.89, -1033.23], [-2859.76, -1026.48], [-2851.03, -1017.65], [-2826.97, -1018.34], [-2827.41, -1033.59], [-2824.48, -1037.19], [-2878.78, -1081.02], [-2897.61, -1080.04], [-2900.45, -1076.4], [-2899.87, -1052.58]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-2270.93, -1884.2], [-2268.83, -1883.79], [-2267.28, -1881.48], [-2267.82, -1881.12], [-2264.75, -1876.52], [-2259.33, -1880.11], [-2260.29, -1881.54], [-2259.84, -1884.49], [-2262.65, -1884.91], [-2266.38, -1891.02], [-2270.04, -1888.8], [-2270.93, -1884.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2372.3, -1772.68], [-2367.07, -1769.6], [-2362.53, -1777.22], [-2367.77, -1780.32], [-2372.3, -1772.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2381.98, -1778.76], [-2376.73, -1775.43], [-2371.8, -1783.13], [-2377.05, -1786.46], [-2381.98, -1778.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2307.2, -1828.94], [-2307.5, -1834.4], [-2320.79, -1829.57], [-2315.11, -1826.0], [-2307.2, -1828.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2239.05, -1861.78], [-2236.55, -1867.09], [-2231.54, -1864.93], [-2233.77, -1859.91], [-2239.05, -1861.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[699.18, 376.32], [743.12, 416.19], [690.14, 474.15], [677.83, 487.63], [642.68, 455.74], [650.53, 447.13], [641.74, 439.16], [693.29, 382.76], [699.18, 376.32]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-3220.97, -1166.65], [-3211.36, -1158.81], [-3210.21, -1160.21], [-3208.31, -1158.66], [-3205.12, -1162.56], [-3207.19, -1164.24], [-3205.9, -1165.81], [-3211.29, -1170.2], [-3210.38, -1171.32], [-3212.44, -1173.01], [-3213.38, -1171.87], [-3215.35, -1173.48], [-3220.97, -1166.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3224.61, -1176.81], [-3220.07, -1182.14], [-3216.45, -1179.09], [-3221.0, -1173.75], [-3224.61, -1176.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3235.25, -1178.18], [-3228.38, -1186.19], [-3221.97, -1180.73], [-3228.53, -1173.06], [-3229.05, -1173.5], [-3230.38, -1171.95], [-3235.76, -1176.53], [-3234.72, -1177.73], [-3235.25, -1178.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3209.81, -1174.7], [-3202.47, -1183.53], [-3199.09, -1180.74], [-3198.53, -1181.41], [-3197.57, -1180.61], [-3195.92, -1182.61], [-3190.98, -1178.53], [-3192.46, -1176.75], [-3191.86, -1176.26], [-3198.2, -1168.64], [-3203.11, -1172.69], [-3204.85, -1170.6], [-3209.81, -1174.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3207.85, -1196.72], [-3203.55, -1193.05], [-3200.08, -1197.08], [-3204.36, -1200.76], [-3207.85, -1196.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3197.34, -1206.56], [-3194.73, -1209.65], [-3193.85, -1208.91], [-3188.04, -1215.8], [-3180.32, -1209.34], [-3186.87, -1201.59], [-3188.97, -1203.36], [-3190.85, -1201.13], [-3197.34, -1206.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3188.14, -1195.34], [-3181.53, -1189.94], [-3180.42, -1191.27], [-3179.92, -1190.86], [-3171.32, -1201.31], [-3171.89, -1201.78], [-3170.75, -1203.17], [-3177.02, -1208.29], [-3178.39, -1206.62], [-3179.14, -1207.24], [-3187.55, -1197.03], [-3187.06, -1196.65], [-3188.14, -1195.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3208.93, -1215.33], [-3198.95, -1227.18], [-3190.62, -1220.23], [-3199.3, -1209.93], [-3202.34, -1212.48], [-3203.65, -1210.92], [-3208.93, -1215.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3219.74, -1227.51], [-3217.96, -1229.64], [-3218.69, -1230.24], [-3216.31, -1233.09], [-3215.63, -1232.52], [-3213.16, -1235.47], [-3212.23, -1234.69], [-3210.68, -1236.54], [-3203.57, -1230.63], [-3205.19, -1228.68], [-3204.37, -1227.99], [-3210.91, -1220.18], [-3219.74, -1227.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3234.07, -1232.05], [-3228.29, -1227.14], [-3227.04, -1228.61], [-3226.07, -1227.8], [-3223.88, -1230.36], [-3224.71, -1231.06], [-3217.87, -1239.05], [-3218.67, -1239.74], [-3217.59, -1241.0], [-3224.09, -1246.53], [-3225.05, -1245.41], [-3225.83, -1246.09], [-3233.06, -1237.63], [-3230.44, -1235.4], [-3231.24, -1234.45], [-3231.69, -1234.83], [-3234.07, -1232.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3243.81, -1232.91], [-3240.42, -1230.15], [-3236.55, -1234.86], [-3239.95, -1237.63], [-3243.81, -1232.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3244.38, -1245.45], [-3242.3, -1247.95], [-3241.39, -1247.2], [-3235.23, -1254.59], [-3228.07, -1248.67], [-3235.42, -1239.84], [-3236.13, -1240.43], [-3238.13, -1238.03], [-3241.61, -1240.91], [-3240.5, -1242.24], [-3244.38, -1245.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3226.33, -1211.41], [-3221.33, -1217.77], [-3214.85, -1212.73], [-3219.85, -1206.36], [-3226.33, -1211.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3194.54, -1186.72], [-3190.84, -1190.9], [-3185.51, -1186.22], [-3189.2, -1182.03], [-3194.54, -1186.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3253.94, -1057.55], [-3250.36, -1061.84], [-3251.13, -1062.47], [-3248.14, -1066.04], [-3240.44, -1059.65], [-3243.2, -1056.34], [-3243.73, -1056.78], [-3247.54, -1052.24], [-3253.94, -1057.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3245.0, -1069.32], [-3244.52, -1069.9], [-3246.04, -1071.17], [-3241.0, -1077.16], [-3239.15, -1075.61], [-3238.7, -1076.16], [-3229.83, -1068.76], [-3233.22, -1064.74], [-3233.86, -1065.26], [-3235.59, -1063.22], [-3237.04, -1064.43], [-3237.9, -1063.4], [-3245.0, -1069.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3238.8, -1054.79], [-3235.74, -1058.63], [-3230.77, -1054.68], [-3233.84, -1050.85], [-3238.8, -1054.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3233.75, -1057.17], [-3229.61, -1062.28], [-3224.51, -1058.2], [-3228.63, -1053.09], [-3233.75, -1057.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3233.6, -1081.6], [-3227.25, -1088.78], [-3220.87, -1083.19], [-3224.07, -1079.57], [-3222.96, -1078.6], [-3225.07, -1076.22], [-3226.54, -1077.51], [-3227.59, -1076.31], [-3233.6, -1081.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3221.04, -1096.6], [-3214.81, -1091.13], [-3219.61, -1085.69], [-3225.84, -1091.15], [-3221.04, -1096.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3219.6, -1101.61], [-3208.86, -1114.43], [-3208.3, -1113.96], [-3206.48, -1116.14], [-3200.19, -1110.9], [-3202.17, -1108.54], [-3201.61, -1108.06], [-3212.16, -1095.49], [-3217.21, -1099.69], [-3217.98, -1098.76], [-3219.91, -1100.38], [-3219.18, -1101.25], [-3219.6, -1101.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3200.49, -1082.57], [-3193.78, -1076.98], [-3198.54, -1071.3], [-3205.25, -1076.89], [-3200.49, -1082.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3200.69, -1083.3], [-3207.16, -1088.65], [-3212.47, -1082.27], [-3206.0, -1076.91], [-3200.69, -1083.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3197.99, -1109.01], [-3187.86, -1100.86], [-3195.26, -1091.74], [-3199.1, -1094.83], [-3197.3, -1097.06], [-3201.01, -1100.04], [-3199.23, -1102.24], [-3201.81, -1104.31], [-3197.99, -1109.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3185.53, -1099.03], [-3177.72, -1092.54], [-3178.37, -1091.75], [-3176.31, -1090.03], [-3180.6, -1084.91], [-3181.03, -1085.27], [-3184.47, -1081.16], [-3187.75, -1083.89], [-3185.21, -1086.92], [-3191.38, -1092.04], [-3185.53, -1099.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3192.86, -1066.28], [-3187.82, -1062.17], [-3183.74, -1067.14], [-3188.78, -1071.24], [-3192.86, -1066.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3183.8, -1074.03], [-3172.41, -1087.7], [-3171.26, -1086.75], [-3169.88, -1088.39], [-3165.57, -1084.82], [-3166.98, -1083.13], [-3165.77, -1082.14], [-3177.14, -1068.51], [-3183.8, -1074.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3161.02, -1080.11], [-3157.29, -1076.9], [-3158.56, -1075.45], [-3154.07, -1071.58], [-3160.32, -1064.38], [-3162.68, -1066.43], [-3164.44, -1064.4], [-3163.91, -1063.95], [-3164.93, -1062.77], [-3164.49, -1062.38], [-3166.0, -1060.64], [-3166.37, -1060.96], [-3166.8, -1060.45], [-3172.83, -1065.64], [-3168.41, -1070.73], [-3168.85, -1071.11], [-3161.02, -1080.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3161.94, -1064.08], [-3158.97, -1061.43], [-3162.87, -1057.07], [-3165.84, -1059.72], [-3161.94, -1064.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3160.65, -1054.95], [-3148.24, -1069.96], [-3141.52, -1064.44], [-3151.38, -1052.53], [-3153.6, -1054.36], [-3156.16, -1051.27], [-3160.65, -1054.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3147.58, -1048.22], [-3140.65, -1042.5], [-3130.84, -1054.27], [-3137.77, -1060.01], [-3147.58, -1048.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3120.23, -1046.89], [-3125.96, -1051.66], [-3137.62, -1037.74], [-3130.71, -1031.98], [-3120.19, -1044.55], [-3121.37, -1045.53], [-3120.23, -1046.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3124.68, -1031.02], [-3119.61, -1027.0], [-3124.74, -1020.59], [-3129.81, -1024.62], [-3124.68, -1031.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3119.95, -1027.78], [-3115.97, -1024.54], [-3114.1, -1026.83], [-3110.25, -1023.68], [-3104.18, -1031.07], [-3112.0, -1037.45], [-3119.95, -1027.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-928.86, -1316.69], [-922.18, -1310.74], [-913.39, -1320.52], [-920.11, -1326.52], [-928.86, -1316.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-940.76, -1297.71], [-946.57, -1303.53], [-936.0, -1314.03], [-930.19, -1308.23], [-940.76, -1297.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-919.25, -335.59], [-904.99, -322.73], [-880.47, -349.72], [-908.42, -374.93], [-922.87, -359.04], [-914.37, -351.38], [-912.99, -349.67], [-912.21, -347.62], [-912.1, -345.45], [-912.67, -343.33], [-913.87, -341.51], [-919.25, -335.59]], "holes": []}, "height": 42.0}, {"shape": {"outer": [[-883.58, -365.87], [-874.62, -357.71], [-869.04, -363.81], [-863.37, -358.64], [-883.25, -336.96], [-885.03, -338.57], [-900.65, -321.52], [-844.13, -270.09], [-820.29, -296.1], [-852.72, -325.61], [-826.09, -354.67], [-863.03, -388.28], [-883.58, -365.87]], "holes": []}, "height": 42.0}, {"shape": {"outer": [[376.63, 688.81], [377.64, 689.74], [392.37, 673.7], [391.67, 673.07], [395.49, 668.9], [397.3, 670.54], [401.38, 666.08], [400.11, 664.92], [415.04, 648.62], [413.88, 647.55], [418.66, 642.34], [415.6, 639.56], [417.13, 637.89], [410.92, 632.23], [409.82, 633.44], [406.45, 630.37], [400.8, 636.52], [399.86, 635.66], [398.78, 636.83], [395.93, 634.24], [396.95, 633.13], [394.25, 630.67], [393.18, 631.83], [390.01, 628.93], [391.18, 627.66], [390.08, 626.64], [395.36, 620.89], [392.22, 618.02], [393.35, 616.81], [387.38, 611.37], [386.3, 612.56], [383.09, 609.62], [377.67, 615.52], [376.5, 614.46], [375.44, 615.61], [372.67, 613.09], [373.85, 611.8], [371.22, 609.41], [369.92, 610.81], [366.52, 607.72], [367.63, 606.5], [366.76, 605.7], [372.17, 599.79], [368.85, 596.77], [369.96, 595.55], [364.03, 590.16], [362.91, 591.38], [359.63, 588.42], [354.25, 594.3], [353.1, 593.27], [352.1, 594.35], [349.47, 591.96], [350.86, 590.44], [347.95, 587.79], [346.52, 589.36], [343.54, 586.66], [344.65, 585.45], [343.53, 584.43], [348.98, 578.46], [345.81, 575.59], [346.76, 574.55], [340.76, 569.12], [339.68, 570.31], [337.52, 568.35], [338.52, 567.26], [337.39, 566.25], [331.69, 572.49], [330.39, 571.32], [327.55, 574.44], [328.11, 574.95], [325.43, 577.89], [324.88, 577.41], [320.69, 582.02], [323.3, 584.38], [322.35, 585.43], [328.7, 591.15], [329.75, 589.99], [332.19, 592.2], [331.02, 593.48], [337.19, 599.02], [338.22, 597.89], [341.45, 600.79], [327.56, 616.13], [324.15, 613.06], [315.75, 622.35], [318.58, 624.9], [312.22, 631.93], [313.17, 632.78], [308.31, 638.14], [311.62, 641.13], [310.48, 642.37], [317.69, 648.89], [318.71, 647.77], [321.71, 650.49], [327.5, 644.14], [330.12, 646.52], [329.53, 647.18], [332.79, 650.14], [333.45, 649.41], [339.12, 654.59], [333.54, 660.67], [336.65, 663.5], [335.63, 664.62], [342.41, 670.81], [343.28, 669.87], [346.57, 672.88], [352.16, 666.8], [354.67, 669.08], [354.09, 669.71], [357.38, 672.72], [358.17, 671.85], [363.8, 677.0], [358.31, 682.96], [361.54, 685.93], [360.57, 686.98], [366.98, 692.83], [367.94, 691.78], [371.18, 694.74], [376.63, 688.81]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-3014.71, -509.25], [-3011.03, -513.38], [-3009.97, -512.44], [-3001.23, -522.21], [-3002.13, -523.01], [-3000.03, -525.34], [-3007.49, -531.97], [-3011.64, -527.33], [-3012.91, -528.46], [-3016.47, -524.48], [-3019.69, -520.89], [-3017.13, -518.62], [-3020.73, -514.59], [-3014.71, -509.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3138.16, -563.56], [-3125.91, -564.39], [-3126.78, -577.22], [-3130.3, -576.98], [-3130.53, -580.29], [-3138.16, -579.77], [-3137.94, -576.54], [-3139.05, -576.46], [-3138.16, -563.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3154.37, -1308.95], [-3162.9, -1316.32], [-3172.89, -1304.84], [-3164.37, -1297.47], [-3154.37, -1308.95]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2880.68, -1252.92], [-2877.78, -1256.64], [-2875.95, -1255.2], [-2868.45, -1264.81], [-2873.97, -1269.12], [-2875.67, -1266.92], [-2877.91, -1268.66], [-2886.59, -1257.54], [-2880.68, -1252.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2728.28, -1291.52], [-2717.7, -1303.78], [-2720.79, -1306.45], [-2718.89, -1308.65], [-2725.01, -1313.92], [-2733.65, -1303.9], [-2736.24, -1306.14], [-2741.73, -1299.76], [-2733.52, -1292.68], [-2731.85, -1294.61], [-2728.28, -1291.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2733.83, -1390.26], [-2738.99, -1394.35], [-2740.63, -1392.31], [-2744.45, -1395.34], [-2751.91, -1386.03], [-2742.93, -1378.88], [-2733.83, -1390.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3072.47, -1536.6], [-3066.84, -1543.32], [-3064.78, -1545.78], [-3070.43, -1550.51], [-3072.49, -1548.05], [-3076.65, -1551.53], [-3082.28, -1544.81], [-3078.05, -1541.27], [-3078.79, -1540.38], [-3076.51, -1538.47], [-3075.76, -1539.36], [-3072.47, -1536.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3031.37, -1436.13], [-3037.37, -1441.4], [-3044.29, -1433.51], [-3041.6, -1431.15], [-3043.15, -1429.39], [-3039.83, -1426.48], [-3031.37, -1436.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3182.87, -1269.71], [-3188.97, -1262.66], [-3188.65, -1262.43], [-3189.05, -1261.9], [-3190.13, -1260.59], [-3189.74, -1260.27], [-3183.67, -1254.99], [-3182.14, -1256.83], [-3181.11, -1255.97], [-3175.07, -1263.2], [-3176.09, -1264.05], [-3182.87, -1269.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2770.4, -1314.55], [-2775.72, -1319.6], [-2780.92, -1314.13], [-2775.6, -1309.07], [-2770.4, -1314.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2954.63, -1501.32], [-2951.38, -1505.14], [-2949.07, -1503.2], [-2942.99, -1510.38], [-2952.14, -1518.09], [-2953.65, -1516.32], [-2956.65, -1518.84], [-2958.67, -1516.45], [-2961.82, -1519.1], [-2964.99, -1515.37], [-2961.73, -1512.62], [-2964.25, -1509.64], [-2963.76, -1509.23], [-2964.81, -1508.0], [-2964.19, -1507.48], [-2965.03, -1506.47], [-2962.17, -1504.08], [-2961.53, -1504.83], [-2959.03, -1502.72], [-2957.89, -1504.07], [-2954.63, -1501.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2779.43, -1370.75], [-2785.89, -1376.41], [-2792.66, -1368.68], [-2786.19, -1363.02], [-2779.43, -1370.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2599.78, -1300.56], [-2606.49, -1306.3], [-2611.58, -1300.35], [-2604.87, -1294.62], [-2599.78, -1300.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2843.58, -1278.93], [-2836.63, -1273.07], [-2826.94, -1284.93], [-2833.55, -1289.6], [-2834.64, -1288.12], [-2837.03, -1287.34], [-2838.86, -1288.62], [-2842.91, -1283.98], [-2840.86, -1282.4], [-2843.58, -1278.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2989.85, -1027.94], [-2989.71, -1031.42], [-2988.1, -1031.36], [-2987.57, -1044.67], [-2999.49, -1045.15], [-3000.18, -1028.36], [-2989.85, -1027.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2575.47, -1323.08], [-2584.36, -1330.82], [-2592.61, -1321.34], [-2583.71, -1313.6], [-2575.47, -1323.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2739.79, -1142.22], [-2746.15, -1148.16], [-2754.68, -1139.09], [-2748.31, -1133.15], [-2739.79, -1142.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3052.59, -1330.79], [-3043.05, -1340.95], [-3054.08, -1351.24], [-3061.96, -1342.87], [-3060.31, -1341.33], [-3065.01, -1336.32], [-3060.21, -1331.84], [-3057.18, -1335.06], [-3052.59, -1330.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2948.09, -1370.75], [-2944.63, -1374.62], [-2942.18, -1372.42], [-2937.15, -1378.05], [-2946.41, -1386.33], [-2954.89, -1376.84], [-2948.09, -1370.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2792.54, -1221.04], [-2788.53, -1225.91], [-2793.96, -1230.39], [-2793.6, -1230.82], [-2798.47, -1234.81], [-2802.77, -1229.59], [-2800.97, -1228.12], [-2802.7, -1226.01], [-2799.1, -1223.05], [-2797.43, -1225.06], [-2792.54, -1221.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3027.78, -1391.98], [-3034.91, -1398.15], [-3046.22, -1385.16], [-3036.91, -1377.11], [-3027.0, -1388.5], [-3029.18, -1390.39], [-3027.78, -1391.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2904.88, -1536.43], [-2912.07, -1542.52], [-2920.67, -1532.37], [-2919.92, -1531.74], [-2921.11, -1530.28], [-2917.23, -1527.16], [-2914.55, -1527.18], [-2913.5, -1526.29], [-2904.88, -1536.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2781.35, -1283.49], [-2778.65, -1286.53], [-2776.28, -1284.45], [-2772.04, -1289.24], [-2774.39, -1291.3], [-2770.63, -1295.55], [-2777.75, -1301.84], [-2788.44, -1289.75], [-2781.35, -1283.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2970.23, -1515.67], [-2966.88, -1519.84], [-2964.79, -1518.16], [-2960.59, -1523.4], [-2962.66, -1525.07], [-2962.02, -1525.88], [-2969.66, -1532.27], [-2970.86, -1530.83], [-2972.85, -1532.54], [-2976.74, -1528.02], [-2976.16, -1527.57], [-2976.82, -1526.79], [-2975.25, -1525.5], [-2976.23, -1524.41], [-2972.75, -1521.58], [-2974.63, -1519.38], [-2974.46, -1516.88], [-2972.71, -1515.52], [-2970.23, -1515.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3125.42, -1141.02], [-3131.61, -1146.39], [-3135.73, -1141.71], [-3129.54, -1136.34], [-3125.42, -1141.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2992.82, -1374.92], [-2999.8, -1381.33], [-3007.83, -1372.58], [-3000.85, -1366.18], [-2992.82, -1374.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2994.7, -1508.79], [-3001.17, -1514.29], [-3006.72, -1507.82], [-3000.24, -1502.3], [-2994.7, -1508.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3180.27, -1313.29], [-3178.66, -1311.9], [-3178.02, -1312.65], [-3175.26, -1310.27], [-3174.99, -1310.58], [-3174.61, -1310.24], [-3169.26, -1316.41], [-3169.62, -1316.72], [-3168.87, -1317.58], [-3171.87, -1320.16], [-3171.17, -1320.96], [-3174.31, -1323.66], [-3175.29, -1322.53], [-3174.84, -1322.15], [-3180.45, -1315.68], [-3182.85, -1317.74], [-3188.03, -1311.76], [-3184.35, -1308.58], [-3180.27, -1313.29]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2921.35, -1031.58], [-2921.33, -1043.24], [-2926.94, -1043.26], [-2926.95, -1039.96], [-2931.18, -1039.97], [-2931.19, -1031.61], [-2921.35, -1031.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2958.26, -1350.36], [-2963.14, -1354.57], [-2967.77, -1349.2], [-2962.89, -1344.99], [-2958.26, -1350.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2835.57, -1468.82], [-2842.41, -1474.57], [-2847.44, -1468.63], [-2840.61, -1462.89], [-2835.57, -1468.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2832.85, -1240.56], [-2838.68, -1245.65], [-2844.26, -1239.27], [-2838.39, -1234.13], [-2832.85, -1240.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3170.7, -1384.27], [-3173.64, -1386.79], [-3174.22, -1386.11], [-3177.0, -1388.49], [-3187.79, -1375.92], [-3179.83, -1369.13], [-3169.06, -1381.69], [-3171.29, -1383.6], [-3170.7, -1384.27]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-3140.79, -1408.9], [-3138.09, -1412.09], [-3135.27, -1409.71], [-3133.68, -1411.58], [-3133.32, -1411.28], [-3131.86, -1413.0], [-3130.52, -1411.88], [-3128.73, -1413.99], [-3130.03, -1415.09], [-3128.69, -1416.67], [-3129.02, -1416.95], [-3127.98, -1418.17], [-3135.1, -1424.15], [-3139.66, -1418.77], [-3140.8, -1419.72], [-3146.19, -1413.35], [-3144.33, -1411.78], [-3144.92, -1411.08], [-3142.76, -1409.26], [-3142.12, -1410.01], [-3140.79, -1408.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2776.51, -1230.63], [-2774.96, -1232.61], [-2773.47, -1231.44], [-2770.38, -1235.38], [-2780.98, -1243.7], [-2786.3, -1236.93], [-2782.31, -1233.79], [-2784.04, -1231.58], [-2777.16, -1226.19], [-2774.76, -1229.25], [-2776.51, -1230.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2700.39, -1228.0], [-2696.81, -1231.85], [-2705.92, -1240.13], [-2709.61, -1235.98], [-2700.39, -1228.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2706.99, -1362.36], [-2718.55, -1371.84], [-2725.09, -1363.92], [-2713.55, -1354.44], [-2706.99, -1362.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2755.5, -1334.18], [-2745.29, -1346.26], [-2756.1, -1355.34], [-2766.32, -1343.26], [-2755.5, -1334.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2579.39, -1293.82], [-2574.8, -1299.09], [-2572.96, -1297.49], [-2568.13, -1303.03], [-2570.87, -1305.42], [-2567.84, -1308.9], [-2574.29, -1314.52], [-2582.7, -1304.87], [-2580.88, -1303.29], [-2584.93, -1298.64], [-2579.39, -1293.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3111.84, -1581.41], [-3118.7, -1587.13], [-3126.33, -1577.78], [-3122.8, -1574.87], [-3123.63, -1573.85], [-3120.42, -1571.21], [-3119.57, -1572.22], [-3111.84, -1581.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2834.78, -1393.54], [-2829.84, -1399.22], [-2827.6, -1397.3], [-2819.39, -1406.72], [-2827.09, -1413.37], [-2834.62, -1404.71], [-2835.89, -1405.79], [-2841.49, -1399.34], [-2834.78, -1393.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2799.17, -1431.25], [-2797.33, -1433.45], [-2795.21, -1431.7], [-2789.54, -1438.48], [-2791.28, -1439.92], [-2790.53, -1440.82], [-2799.98, -1448.65], [-2808.24, -1438.77], [-2799.17, -1431.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2943.76, -1050.27], [-2951.32, -1050.15], [-2951.24, -1045.02], [-2943.67, -1045.13], [-2943.76, -1050.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3249.91, -1313.43], [-3248.45, -1315.17], [-3248.01, -1314.82], [-3242.66, -1321.22], [-3239.63, -1324.83], [-3245.74, -1329.94], [-3248.39, -1326.78], [-3248.91, -1327.21], [-3251.04, -1328.99], [-3255.15, -1324.07], [-3253.02, -1322.28], [-3254.64, -1320.36], [-3254.26, -1320.04], [-3255.72, -1318.28], [-3249.91, -1313.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2739.46, -1312.04], [-2743.99, -1315.96], [-2748.77, -1310.46], [-2744.24, -1306.53], [-2739.46, -1312.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2854.05, -1261.04], [-2859.63, -1265.73], [-2864.28, -1260.26], [-2858.7, -1255.56], [-2854.05, -1261.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3095.38, -1388.31], [-3102.33, -1394.18], [-3114.36, -1380.03], [-3107.41, -1374.16], [-3095.38, -1388.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3152.57, -1388.57], [-3158.04, -1393.38], [-3162.96, -1387.83], [-3157.49, -1383.02], [-3152.57, -1388.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3147.27, -1418.49], [-3141.63, -1425.58], [-3148.09, -1430.66], [-3146.61, -1432.53], [-3149.67, -1434.95], [-3150.87, -1433.43], [-3152.19, -1434.47], [-3159.02, -1425.85], [-3154.98, -1422.67], [-3154.05, -1423.84], [-3147.27, -1418.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3215.68, -1329.0], [-3223.87, -1336.11], [-3227.87, -1331.49], [-3219.69, -1324.38], [-3215.68, -1329.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2739.33, -1211.07], [-2745.36, -1216.81], [-2748.51, -1213.51], [-2750.28, -1215.21], [-2753.59, -1211.73], [-2751.1, -1209.36], [-2754.9, -1205.37], [-2749.57, -1200.3], [-2739.33, -1211.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2749.61, -1171.61], [-2755.54, -1177.16], [-2760.9, -1171.44], [-2754.97, -1165.89], [-2749.61, -1171.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2936.15, -1559.58], [-2935.0, -1560.94], [-2931.62, -1558.04], [-2928.78, -1561.38], [-2932.15, -1564.26], [-2931.7, -1564.8], [-2938.45, -1570.44], [-2947.36, -1559.26], [-2944.57, -1556.84], [-2945.49, -1555.62], [-2939.75, -1550.83], [-2934.12, -1557.74], [-2936.15, -1559.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3020.25, -1684.43], [-3010.17, -1696.39], [-3020.38, -1704.97], [-3026.23, -1697.89], [-3022.29, -1694.58], [-3024.12, -1692.41], [-3021.49, -1690.2], [-3023.91, -1687.46], [-3020.25, -1684.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3045.41, -1155.84], [-3052.12, -1162.34], [-3058.75, -1155.53], [-3052.04, -1149.02], [-3045.41, -1155.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2956.31, -1246.55], [-2952.18, -1251.47], [-2950.74, -1250.27], [-2944.75, -1257.41], [-2946.57, -1258.92], [-2947.59, -1259.77], [-2946.98, -1260.51], [-2951.39, -1264.2], [-2956.76, -1257.81], [-2958.26, -1259.06], [-2957.7, -1259.72], [-2959.06, -1260.85], [-2960.07, -1261.7], [-2960.63, -1261.02], [-2961.07, -1261.38], [-2966.43, -1254.99], [-2956.31, -1246.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2876.88, -1239.07], [-2870.03, -1246.96], [-2868.39, -1245.54], [-2862.29, -1252.57], [-2867.58, -1257.16], [-2870.64, -1253.64], [-2872.99, -1255.7], [-2882.89, -1244.29], [-2876.88, -1239.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3257.6, -1374.73], [-3260.67, -1377.36], [-3264.65, -1372.72], [-3261.57, -1370.09], [-3257.6, -1374.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3052.13, -1314.45], [-3057.5, -1319.08], [-3060.65, -1315.43], [-3055.29, -1310.8], [-3052.13, -1314.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2634.41, -1182.81], [-2629.8, -1188.45], [-2627.13, -1186.28], [-2622.07, -1192.49], [-2634.47, -1202.59], [-2639.95, -1195.86], [-2636.32, -1192.9], [-2640.49, -1187.77], [-2634.41, -1182.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3237.46, -1320.01], [-3244.77, -1311.31], [-3245.47, -1310.45], [-3243.18, -1308.53], [-3242.46, -1309.37], [-3237.22, -1304.99], [-3230.19, -1313.93], [-3237.46, -1320.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2886.58, -1304.52], [-2877.11, -1315.39], [-2887.66, -1324.58], [-2898.58, -1312.05], [-2900.33, -1313.57], [-2903.48, -1309.97], [-2897.36, -1304.63], [-2892.76, -1309.91], [-2886.58, -1304.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3247.67, -1387.02], [-3257.81, -1395.02], [-3259.91, -1392.37], [-3261.66, -1393.75], [-3265.46, -1388.96], [-3253.57, -1379.58], [-3247.67, -1387.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3164.49, -1143.41], [-3162.18, -1146.0], [-3161.41, -1145.31], [-3156.04, -1151.35], [-3159.27, -1154.21], [-3156.21, -1157.64], [-3161.58, -1162.39], [-3164.85, -1158.72], [-3166.21, -1159.91], [-3167.91, -1158.01], [-3170.68, -1160.46], [-3176.45, -1154.0], [-3164.49, -1143.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3031.1, -1539.95], [-3037.67, -1545.35], [-3044.6, -1537.37], [-3038.03, -1531.98], [-3031.1, -1539.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2749.18, -1403.04], [-2756.71, -1409.64], [-2764.65, -1400.58], [-2757.12, -1393.98], [-2749.18, -1403.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3213.84, -1286.17], [-3211.46, -1288.98], [-3211.16, -1288.74], [-3209.01, -1291.29], [-3209.29, -1291.54], [-3206.94, -1294.31], [-3211.6, -1298.27], [-3209.22, -1301.06], [-3212.23, -1303.62], [-3214.6, -1300.82], [-3215.13, -1301.26], [-3222.03, -1293.12], [-3213.84, -1286.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2955.69, -1323.07], [-2962.13, -1328.91], [-2970.1, -1320.19], [-2963.65, -1314.35], [-2955.69, -1323.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3142.9, -1177.13], [-3149.37, -1182.59], [-3150.85, -1180.78], [-3151.69, -1181.48], [-3158.2, -1173.68], [-3149.92, -1166.9], [-3143.66, -1174.6], [-3144.55, -1175.4], [-3142.9, -1177.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3100.18, -1112.48], [-3095.94, -1117.79], [-3093.71, -1116.02], [-3088.4, -1122.67], [-3090.58, -1124.39], [-3089.46, -1125.79], [-3092.91, -1128.53], [-3092.16, -1129.47], [-3092.83, -1130.01], [-3091.78, -1131.33], [-3094.76, -1133.7], [-3095.79, -1132.41], [-3096.48, -1132.96], [-3105.81, -1121.27], [-3102.61, -1118.74], [-3104.74, -1116.09], [-3100.18, -1112.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3106.8, -1367.25], [-3101.12, -1362.54], [-3095.7, -1369.02], [-3097.91, -1370.85], [-3093.72, -1375.85], [-3089.97, -1372.74], [-3087.69, -1375.47], [-3091.43, -1378.58], [-3089.77, -1380.56], [-3096.15, -1385.87], [-3104.71, -1375.65], [-3101.8, -1373.22], [-3106.8, -1367.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2722.4, -1424.38], [-2728.8, -1430.36], [-2734.15, -1424.64], [-2727.77, -1418.66], [-2722.4, -1424.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3116.81, -1260.75], [-3108.21, -1271.31], [-3116.39, -1277.82], [-3125.01, -1267.28], [-3124.52, -1266.88], [-3125.97, -1265.08], [-3122.69, -1262.47], [-3121.25, -1264.28], [-3116.81, -1260.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3089.0, -1096.21], [-3085.13, -1092.89], [-3080.47, -1098.31], [-3084.34, -1101.62], [-3089.0, -1096.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3005.39, -1030.04], [-3005.03, -1033.8], [-3004.0, -1033.69], [-3002.92, -1044.69], [-3015.68, -1045.94], [-3016.37, -1038.86], [-3013.69, -1038.6], [-3014.44, -1030.92], [-3005.39, -1030.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2629.22, -1211.59], [-2635.26, -1217.0], [-2639.28, -1212.54], [-2633.23, -1207.12], [-2629.22, -1211.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2743.96, -1318.19], [-2749.93, -1323.36], [-2754.8, -1317.74], [-2748.83, -1312.57], [-2743.96, -1318.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2692.18, -1142.43], [-2697.79, -1147.14], [-2701.86, -1142.27], [-2696.25, -1137.57], [-2692.18, -1142.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3060.93, -1437.96], [-3070.3, -1445.09], [-3078.0, -1434.94], [-3068.64, -1427.83], [-3060.93, -1437.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2614.63, -1357.1], [-2619.56, -1361.32], [-2621.37, -1359.19], [-2622.49, -1360.14], [-2630.74, -1350.5], [-2624.7, -1345.33], [-2614.63, -1357.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3177.05, -1366.84], [-3170.28, -1360.73], [-3161.53, -1370.71], [-3165.21, -1373.93], [-3164.58, -1374.63], [-3168.85, -1378.38], [-3169.47, -1377.67], [-3169.91, -1378.06], [-3178.79, -1368.36], [-3177.05, -1366.84]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2670.46, -1378.96], [-2675.0, -1383.21], [-2679.97, -1377.92], [-2675.43, -1373.66], [-2670.46, -1378.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2777.92, -1480.57], [-2774.25, -1484.46], [-2776.65, -1486.72], [-2775.07, -1488.39], [-2782.89, -1495.72], [-2789.33, -1488.87], [-2781.83, -1481.86], [-2780.65, -1483.11], [-2777.92, -1480.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2986.79, -1390.39], [-2992.41, -1395.1], [-2997.04, -1389.57], [-2991.43, -1384.86], [-2986.79, -1390.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2851.16, -1285.81], [-2857.79, -1291.65], [-2867.61, -1280.49], [-2860.98, -1274.65], [-2851.16, -1285.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2716.97, -1249.1], [-2724.39, -1240.78], [-2722.29, -1238.79], [-2724.57, -1236.14], [-2720.15, -1232.25], [-2717.7, -1234.88], [-2713.82, -1231.58], [-2709.86, -1235.96], [-2712.21, -1238.28], [-2708.85, -1242.16], [-2716.97, -1249.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2671.12, -1404.82], [-2678.7, -1411.52], [-2687.05, -1402.14], [-2683.38, -1398.9], [-2684.63, -1397.5], [-2680.71, -1394.03], [-2671.12, -1404.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2808.56, -1269.46], [-2818.32, -1277.97], [-2819.89, -1276.18], [-2822.23, -1278.22], [-2826.83, -1272.99], [-2824.69, -1271.12], [-2827.04, -1268.45], [-2821.82, -1263.88], [-2824.9, -1260.39], [-2820.17, -1256.26], [-2808.56, -1269.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2631.44, -1177.1], [-2637.4, -1182.69], [-2645.99, -1173.53], [-2640.02, -1167.93], [-2631.44, -1177.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3052.07, -1413.23], [-3061.06, -1420.58], [-3063.52, -1417.57], [-3065.51, -1419.19], [-3073.28, -1409.74], [-3065.85, -1403.67], [-3068.08, -1400.96], [-3064.54, -1398.07], [-3052.07, -1413.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3204.8, -1413.27], [-3212.94, -1420.19], [-3221.46, -1410.21], [-3208.15, -1398.92], [-3202.65, -1405.36], [-3207.82, -1409.74], [-3204.8, -1413.27]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2673.97, -1156.79], [-2680.75, -1162.77], [-2691.83, -1150.18], [-2685.06, -1144.2], [-2673.97, -1156.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3155.47, -1494.28], [-3166.18, -1503.05], [-3173.94, -1493.59], [-3163.24, -1484.82], [-3155.47, -1494.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2956.88, -1059.39], [-2957.48, -1073.07], [-2967.95, -1072.61], [-2967.87, -1070.85], [-2970.07, -1070.75], [-2969.76, -1063.67], [-2967.64, -1063.76], [-2967.57, -1062.15], [-2960.6, -1062.45], [-2960.46, -1059.23], [-2956.88, -1059.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2682.71, -1276.8], [-2673.49, -1288.06], [-2682.75, -1295.76], [-2692.13, -1284.37], [-2682.71, -1276.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2682.98, -1128.76], [-2685.68, -1133.73], [-2690.42, -1131.16], [-2687.73, -1126.19], [-2682.98, -1128.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2613.93, -1309.23], [-2619.73, -1302.61], [-2616.19, -1299.45], [-2610.2, -1306.16], [-2613.93, -1309.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2782.62, -1346.55], [-2787.31, -1350.31], [-2791.7, -1344.83], [-2787.01, -1341.08], [-2782.62, -1346.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2791.12, -1168.24], [-2783.57, -1161.93], [-2771.52, -1175.22], [-2778.99, -1181.8], [-2791.12, -1168.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2843.99, -1400.99], [-2849.44, -1405.54], [-2854.77, -1399.16], [-2849.33, -1394.6], [-2843.99, -1400.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2567.84, -1274.96], [-2573.08, -1279.18], [-2574.5, -1277.42], [-2575.87, -1278.52], [-2584.1, -1268.32], [-2576.61, -1262.27], [-2568.66, -1272.14], [-2569.55, -1272.85], [-2567.84, -1274.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2970.66, -1477.24], [-2965.2, -1472.67], [-2960.91, -1478.05], [-2966.47, -1482.46], [-2970.66, -1477.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2919.72, -1294.11], [-2927.81, -1301.42], [-2937.28, -1291.01], [-2929.18, -1283.7], [-2919.72, -1294.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3169.86, -1278.9], [-3174.92, -1272.62], [-3168.08, -1267.16], [-3163.05, -1273.43], [-3169.86, -1278.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2650.64, -1306.54], [-2644.93, -1313.6], [-2648.13, -1316.18], [-2646.83, -1317.79], [-2651.33, -1321.43], [-2653.39, -1318.87], [-2657.98, -1322.56], [-2664.14, -1314.93], [-2653.84, -1306.62], [-2652.62, -1308.14], [-2650.64, -1306.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2697.78, -1177.05], [-2705.79, -1184.32], [-2712.24, -1177.21], [-2709.23, -1174.47], [-2712.77, -1170.58], [-2707.77, -1166.05], [-2697.78, -1177.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2607.26, -1213.41], [-2601.67, -1219.81], [-2604.46, -1222.24], [-2603.37, -1223.48], [-2613.01, -1231.91], [-2620.71, -1223.09], [-2613.78, -1217.04], [-2612.77, -1218.22], [-2607.26, -1213.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2948.84, -1466.88], [-2957.48, -1474.03], [-2961.33, -1469.36], [-2952.69, -1462.23], [-2948.84, -1466.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2716.65, -1168.2], [-2720.48, -1171.83], [-2727.88, -1164.0], [-2724.05, -1160.38], [-2716.65, -1168.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2918.21, -1546.24], [-2925.49, -1552.35], [-2927.38, -1550.11], [-2929.01, -1551.42], [-2935.51, -1543.9], [-2926.52, -1536.35], [-2918.21, -1546.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2571.61, -1257.44], [-2579.42, -1264.26], [-2585.07, -1257.81], [-2587.21, -1259.69], [-2589.59, -1256.98], [-2587.38, -1255.04], [-2589.55, -1252.56], [-2579.32, -1243.6], [-2572.72, -1251.14], [-2575.21, -1253.32], [-2571.61, -1257.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3050.68, -1391.38], [-3045.54, -1397.64], [-3048.0, -1399.65], [-3045.82, -1402.3], [-3053.42, -1408.5], [-3061.72, -1398.4], [-3053.9, -1392.02], [-3052.93, -1393.2], [-3050.68, -1391.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2760.55, -1159.57], [-2767.77, -1165.94], [-2776.19, -1156.47], [-2768.97, -1150.1], [-2760.55, -1159.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3099.27, -1588.71], [-3095.01, -1594.16], [-3099.17, -1597.42], [-3106.93, -1603.98], [-3112.07, -1597.48], [-3104.27, -1590.92], [-3103.44, -1591.98], [-3099.27, -1588.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2910.29, -1331.16], [-2907.62, -1334.46], [-2905.12, -1332.45], [-2897.36, -1342.03], [-2905.72, -1348.76], [-2916.16, -1335.88], [-2910.29, -1331.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3063.95, -1328.21], [-3069.23, -1333.33], [-3073.8, -1328.61], [-3068.51, -1323.49], [-3063.95, -1328.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2787.39, -1419.09], [-2780.62, -1426.56], [-2779.81, -1425.83], [-2773.64, -1432.64], [-2780.93, -1439.25], [-2793.88, -1424.98], [-2787.39, -1419.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2965.17, -1329.37], [-2970.71, -1334.42], [-2977.57, -1326.95], [-2972.03, -1321.9], [-2965.17, -1329.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2733.33, -1186.11], [-2738.62, -1190.82], [-2742.91, -1186.01], [-2737.62, -1181.29], [-2733.33, -1186.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2739.07, -1416.04], [-2744.21, -1420.54], [-2745.59, -1418.95], [-2746.74, -1419.96], [-2754.34, -1411.27], [-2748.05, -1405.77], [-2739.07, -1416.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2642.08, -1187.01], [-2645.21, -1189.78], [-2654.25, -1179.53], [-2649.2, -1175.08], [-2641.03, -1184.33], [-2642.95, -1186.03], [-2642.08, -1187.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2867.34, -1416.01], [-2872.18, -1420.52], [-2875.89, -1416.56], [-2871.05, -1412.06], [-2867.34, -1416.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3029.13, -1443.29], [-3023.07, -1449.87], [-3031.13, -1457.24], [-3038.77, -1448.93], [-3034.98, -1445.46], [-3033.39, -1447.18], [-3029.13, -1443.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2940.47, -1346.72], [-2945.26, -1351.12], [-2948.79, -1347.29], [-2944.01, -1342.88], [-2940.47, -1346.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3202.26, -1446.53], [-3208.4, -1452.03], [-3212.61, -1447.34], [-3206.49, -1441.82], [-3202.26, -1446.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3143.44, -1116.84], [-3150.21, -1122.72], [-3160.56, -1110.79], [-3153.8, -1104.92], [-3143.44, -1116.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2733.33, -1334.3], [-2740.69, -1340.38], [-2748.64, -1330.84], [-2741.27, -1324.76], [-2733.33, -1334.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2769.8, -1364.4], [-2776.88, -1370.01], [-2783.94, -1361.15], [-2776.86, -1355.55], [-2769.8, -1364.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2607.02, -1341.94], [-2613.07, -1347.61], [-2615.08, -1345.47], [-2618.28, -1348.46], [-2623.79, -1342.58], [-2612.91, -1332.38], [-2607.16, -1338.51], [-2608.79, -1340.05], [-2607.02, -1341.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3004.76, -1408.75], [-3010.96, -1413.65], [-3016.05, -1407.2], [-3009.85, -1402.31], [-3004.76, -1408.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2905.15, -1479.86], [-2915.89, -1488.42], [-2918.59, -1485.02], [-2922.43, -1488.07], [-2927.57, -1481.63], [-2919.62, -1475.29], [-2921.2, -1473.3], [-2914.58, -1468.03], [-2905.15, -1479.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2714.08, -1443.11], [-2721.6, -1449.59], [-2728.74, -1441.29], [-2721.22, -1434.82], [-2714.08, -1443.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2944.7, -1027.64], [-2945.31, -1041.4], [-2955.2, -1040.96], [-2954.6, -1027.2], [-2944.7, -1027.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2727.26, -1375.61], [-2724.68, -1373.36], [-2720.85, -1377.72], [-2725.94, -1382.17], [-2724.28, -1384.07], [-2725.25, -1384.93], [-2724.7, -1385.55], [-2729.26, -1389.54], [-2739.51, -1377.9], [-2731.45, -1370.86], [-2727.26, -1375.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3191.36, -1311.92], [-3197.9, -1317.47], [-3202.66, -1311.91], [-3196.12, -1306.35], [-3191.36, -1311.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2825.66, -1454.28], [-2819.52, -1461.85], [-2825.23, -1466.44], [-2826.34, -1465.08], [-2830.63, -1468.52], [-2837.06, -1460.58], [-2830.71, -1455.46], [-2829.3, -1457.21], [-2825.66, -1454.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3183.43, -1413.49], [-3188.13, -1417.48], [-3194.18, -1410.36], [-3189.47, -1406.37], [-3183.43, -1413.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2888.67, -1417.44], [-2893.07, -1421.67], [-2895.72, -1418.92], [-2897.28, -1420.43], [-2903.04, -1414.45], [-2897.08, -1408.71], [-2888.67, -1417.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3002.72, -1478.77], [-2999.71, -1482.44], [-2998.2, -1481.22], [-2990.69, -1490.4], [-2998.43, -1496.69], [-3001.48, -1492.95], [-3002.29, -1493.62], [-3009.77, -1484.49], [-3002.72, -1478.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2714.39, -1124.61], [-2721.63, -1131.1], [-2731.09, -1120.61], [-2723.84, -1114.12], [-2714.39, -1124.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2658.74, -1373.65], [-2657.02, -1375.57], [-2655.86, -1374.53], [-2653.61, -1377.03], [-2652.12, -1375.7], [-2644.19, -1384.52], [-2648.5, -1388.4], [-2650.87, -1385.77], [-2654.91, -1389.41], [-2664.46, -1378.8], [-2658.74, -1373.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3196.83, -1328.73], [-3191.96, -1334.32], [-3195.14, -1337.07], [-3193.82, -1338.58], [-3199.41, -1343.42], [-3207.43, -1334.2], [-3201.9, -1329.41], [-3200.05, -1331.53], [-3196.83, -1328.73]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2853.88, -1561.15], [-2865.29, -1571.02], [-2871.45, -1563.91], [-2867.55, -1560.53], [-2870.1, -1557.58], [-2862.61, -1551.08], [-2853.88, -1561.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2708.3, -1415.85], [-2713.41, -1420.08], [-2719.5, -1412.74], [-2714.38, -1408.49], [-2708.3, -1415.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2609.36, -1282.41], [-2618.08, -1289.47], [-2624.66, -1281.34], [-2615.94, -1274.28], [-2609.36, -1282.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3232.32, -1346.51], [-3241.1, -1353.48], [-3246.15, -1347.13], [-3237.37, -1340.15], [-3232.32, -1346.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3160.2, -1256.1], [-3162.73, -1258.59], [-3164.15, -1257.14], [-3168.37, -1261.28], [-3176.94, -1252.56], [-3174.74, -1250.39], [-3176.66, -1248.43], [-3171.21, -1243.07], [-3164.34, -1250.07], [-3165.25, -1250.96], [-3160.2, -1256.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2827.54, -1513.75], [-2834.16, -1519.24], [-2840.75, -1511.29], [-2834.13, -1505.8], [-2827.54, -1513.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2989.03, -1674.46], [-2992.83, -1677.54], [-3001.2, -1667.42], [-2993.32, -1661.01], [-2986.6, -1669.11], [-2990.68, -1672.42], [-2989.03, -1674.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2790.13, -1464.14], [-2795.48, -1468.04], [-2799.48, -1462.57], [-2788.16, -1454.31], [-2784.78, -1458.93], [-2790.76, -1463.29], [-2790.13, -1464.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2838.31, -1392.95], [-2844.26, -1397.89], [-2849.79, -1391.24], [-2843.84, -1386.3], [-2838.31, -1392.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2830.6, -1223.04], [-2836.88, -1228.37], [-2845.12, -1218.9], [-2842.06, -1216.3], [-2844.55, -1213.37], [-2839.16, -1208.79], [-2837.86, -1207.67], [-2827.66, -1219.39], [-2831.14, -1222.41], [-2830.6, -1223.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3036.39, -1034.99], [-3036.09, -1037.13], [-3033.39, -1036.75], [-3032.43, -1043.36], [-3045.79, -1045.29], [-3047.05, -1036.53], [-3036.39, -1034.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3005.27, -1361.49], [-3012.22, -1367.39], [-3019.33, -1359.0], [-3009.52, -1350.68], [-3005.22, -1355.74], [-3008.08, -1358.17], [-3005.27, -1361.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3031.52, -1429.28], [-3036.1, -1429.87], [-3036.95, -1423.24], [-3032.37, -1422.65], [-3031.52, -1429.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2752.43, -1277.53], [-2749.7, -1280.74], [-2748.67, -1279.86], [-2744.13, -1285.19], [-2755.0, -1294.44], [-2767.41, -1279.85], [-2756.58, -1270.63], [-2751.43, -1276.68], [-2752.43, -1277.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2913.48, -1289.32], [-2917.34, -1292.71], [-2926.4, -1282.48], [-2919.28, -1276.23], [-2911.37, -1285.18], [-2914.62, -1288.03], [-2913.48, -1289.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3189.82, -1441.83], [-3195.91, -1447.39], [-3202.2, -1440.5], [-3196.12, -1434.94], [-3189.82, -1441.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3190.31, -1418.58], [-3196.25, -1423.28], [-3200.37, -1418.06], [-3194.44, -1413.36], [-3190.31, -1418.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2683.95, -1209.12], [-2678.19, -1204.33], [-2673.96, -1209.37], [-2672.93, -1208.56], [-2668.63, -1213.89], [-2675.37, -1219.47], [-2683.95, -1209.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3124.11, -1096.68], [-3130.77, -1102.46], [-3138.45, -1093.59], [-3131.78, -1087.83], [-3124.11, -1096.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3088.56, -1107.5], [-3086.62, -1109.77], [-3084.88, -1108.28], [-3084.16, -1109.13], [-3082.97, -1108.11], [-3076.15, -1116.08], [-3084.64, -1123.29], [-3087.83, -1119.55], [-3085.9, -1117.91], [-3089.49, -1113.72], [-3088.9, -1113.23], [-3091.6, -1110.07], [-3088.56, -1107.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2887.32, -1542.12], [-2890.61, -1545.4], [-2895.97, -1540.01], [-2892.69, -1536.74], [-2887.32, -1542.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2787.38, -1352.85], [-2796.31, -1360.77], [-2800.46, -1356.09], [-2802.44, -1357.84], [-2805.62, -1354.25], [-2794.71, -1344.58], [-2787.38, -1352.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3170.71, -1417.48], [-3176.16, -1422.19], [-3180.15, -1417.58], [-3174.69, -1412.86], [-3170.71, -1417.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2887.79, -1432.45], [-2895.92, -1439.28], [-2900.34, -1434.02], [-2892.21, -1427.19], [-2887.79, -1432.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2613.34, -1329.85], [-2618.52, -1323.98], [-2614.9, -1320.99], [-2609.8, -1326.77], [-2613.34, -1329.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3153.93, -1434.84], [-3168.01, -1446.9], [-3174.07, -1439.87], [-3168.85, -1435.4], [-3169.39, -1434.77], [-3160.53, -1427.19], [-3153.93, -1434.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3006.98, -1500.55], [-3013.4, -1506.09], [-3015.64, -1503.49], [-3017.43, -1505.03], [-3025.39, -1495.8], [-3014.7, -1486.58], [-3006.57, -1496.02], [-3009.05, -1498.16], [-3006.98, -1500.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2846.52, -1266.03], [-2841.51, -1261.14], [-2837.18, -1265.79], [-2842.31, -1270.56], [-2846.52, -1266.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3070.9, -1075.71], [-3078.39, -1082.1], [-3083.55, -1075.91], [-3076.07, -1069.54], [-3074.3, -1068.05], [-3070.37, -1072.74], [-3072.15, -1074.22], [-3070.9, -1075.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2810.44, -1456.42], [-2813.93, -1459.27], [-2815.39, -1457.48], [-2816.6, -1458.47], [-2822.97, -1450.68], [-2812.84, -1442.45], [-2806.42, -1450.3], [-2811.84, -1454.71], [-2810.44, -1456.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2809.68, -1497.56], [-2814.55, -1501.87], [-2819.01, -1496.87], [-2814.13, -1492.54], [-2809.68, -1497.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3203.2, -1388.1], [-3201.26, -1390.58], [-3199.94, -1389.55], [-3192.88, -1398.58], [-3200.3, -1404.33], [-3209.29, -1392.83], [-3203.2, -1388.1]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2880.57, -1440.35], [-2878.79, -1442.49], [-2878.75, -1442.46], [-2873.62, -1448.42], [-2875.37, -1449.86], [-2874.75, -1450.61], [-2875.32, -1451.08], [-2874.15, -1452.38], [-2882.42, -1459.79], [-2888.12, -1453.43], [-2886.17, -1451.67], [-2889.46, -1447.72], [-2880.57, -1440.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2667.4, -1136.66], [-2660.77, -1144.06], [-2669.33, -1151.74], [-2678.45, -1141.57], [-2673.95, -1137.53], [-2671.46, -1140.32], [-2667.4, -1136.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2897.47, -1530.0], [-2901.28, -1533.29], [-2910.54, -1522.55], [-2902.16, -1515.31], [-2894.09, -1524.67], [-2898.66, -1528.62], [-2897.47, -1530.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2975.7, -1059.28], [-2975.86, -1062.48], [-2973.59, -1062.59], [-2974.15, -1073.99], [-2981.84, -1073.61], [-2981.76, -1071.8], [-2984.86, -1071.66], [-2984.36, -1061.4], [-2980.46, -1061.59], [-2980.34, -1059.06], [-2975.7, -1059.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2918.69, -1461.58], [-2933.45, -1473.81], [-2938.86, -1467.33], [-2924.09, -1455.1], [-2918.69, -1461.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3192.84, -1456.8], [-3186.43, -1464.7], [-3189.38, -1467.09], [-3190.24, -1466.03], [-3193.87, -1468.99], [-3198.34, -1463.48], [-3200.21, -1465.0], [-3202.58, -1462.09], [-3198.14, -1458.48], [-3196.86, -1460.06], [-3192.84, -1456.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2915.31, -1356.48], [-2918.88, -1359.83], [-2927.96, -1350.26], [-2920.8, -1343.52], [-2912.63, -1352.14], [-2916.21, -1355.53], [-2915.31, -1356.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2673.49, -1232.5], [-2676.88, -1235.77], [-2681.84, -1230.64], [-2678.46, -1227.37], [-2673.49, -1232.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3087.44, -1549.34], [-3082.44, -1555.3], [-3085.19, -1557.44], [-3082.51, -1560.76], [-3086.38, -1564.13], [-3087.89, -1562.36], [-3088.46, -1562.9], [-3089.65, -1561.51], [-3092.9, -1564.2], [-3098.27, -1557.56], [-3094.71, -1554.79], [-3096.03, -1553.23], [-3092.71, -1550.58], [-3091.17, -1552.41], [-3087.44, -1549.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2838.59, -1297.47], [-2843.1, -1301.16], [-2845.48, -1298.24], [-2849.13, -1301.22], [-2854.62, -1294.53], [-2846.46, -1287.85], [-2838.59, -1297.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2699.27, -1107.49], [-2709.07, -1115.71], [-2716.52, -1106.83], [-2706.73, -1098.61], [-2699.27, -1107.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2695.95, -1112.65], [-2691.24, -1118.53], [-2698.35, -1124.24], [-2703.25, -1118.13], [-2705.29, -1119.77], [-2707.32, -1117.23], [-2696.19, -1108.3], [-2693.98, -1111.06], [-2695.95, -1112.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3080.19, -1472.94], [-3073.65, -1480.39], [-3072.35, -1479.25], [-3065.83, -1486.67], [-3077.03, -1496.51], [-3084.11, -1488.46], [-3082.91, -1487.4], [-3084.89, -1485.13], [-3081.71, -1482.35], [-3085.71, -1477.8], [-3080.19, -1472.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3138.67, -1296.07], [-3146.71, -1286.26], [-3145.82, -1285.53], [-3147.27, -1283.77], [-3146.36, -1283.04], [-3146.55, -1282.8], [-3142.28, -1279.33], [-3140.73, -1281.22], [-3139.45, -1280.19], [-3131.33, -1290.11], [-3138.67, -1296.07]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2741.73, -1469.65], [-2751.72, -1477.86], [-2755.28, -1473.53], [-2752.82, -1471.52], [-2756.09, -1467.53], [-2748.55, -1461.35], [-2741.73, -1469.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2932.65, -1028.2], [-2933.2, -1045.06], [-2943.06, -1044.73], [-2942.5, -1027.87], [-2932.65, -1028.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2603.35, -1319.92], [-2599.83, -1324.04], [-2597.06, -1321.66], [-2586.07, -1334.49], [-2594.19, -1341.45], [-2605.33, -1328.45], [-2604.56, -1327.8], [-2607.94, -1323.86], [-2603.35, -1319.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2842.03, -1488.1], [-2851.92, -1496.57], [-2857.03, -1490.62], [-2847.13, -1482.14], [-2842.03, -1488.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3102.88, -1561.35], [-3100.83, -1563.88], [-3098.69, -1562.27], [-3094.65, -1567.28], [-3096.91, -1569.11], [-3095.74, -1570.6], [-3106.12, -1578.81], [-3113.17, -1569.78], [-3109.61, -1566.86], [-3110.54, -1565.72], [-3107.19, -1562.97], [-3106.24, -1564.11], [-3102.88, -1561.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3059.08, -1542.29], [-3067.53, -1532.18], [-3064.41, -1529.54], [-3065.64, -1528.09], [-3058.17, -1521.75], [-3048.5, -1533.33], [-3059.08, -1542.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3222.9, -1366.99], [-3228.03, -1371.45], [-3230.13, -1369.03], [-3231.08, -1369.86], [-3238.48, -1361.38], [-3229.36, -1353.47], [-3222.19, -1361.67], [-3225.24, -1364.31], [-3222.9, -1366.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3049.23, -1046.16], [-3057.64, -1046.98], [-3058.92, -1033.99], [-3050.52, -1033.15], [-3049.23, -1046.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3197.74, -1292.81], [-3200.27, -1290.02], [-3201.72, -1291.3], [-3203.78, -1293.1], [-3204.47, -1292.33], [-3205.5, -1291.13], [-3213.5, -1281.49], [-3206.41, -1275.49], [-3204.58, -1277.52], [-3203.57, -1276.75], [-3193.53, -1288.99], [-3193.89, -1289.31], [-3197.74, -1292.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2784.59, -1248.38], [-2794.21, -1256.71], [-2800.8, -1249.13], [-2794.87, -1244.0], [-2797.55, -1240.93], [-2791.79, -1235.94], [-2787.6, -1240.75], [-2789.68, -1242.55], [-2784.59, -1248.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2643.57, -1257.23], [-2651.68, -1248.09], [-2644.72, -1242.11], [-2640.72, -1246.39], [-2638.95, -1244.92], [-2636.31, -1247.92], [-2638.29, -1249.78], [-2636.92, -1251.35], [-2643.57, -1257.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3164.94, -1125.31], [-3170.99, -1130.58], [-3175.31, -1125.64], [-3169.25, -1120.38], [-3164.94, -1125.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2855.81, -1473.46], [-2853.83, -1475.81], [-2852.56, -1474.74], [-2848.7, -1479.29], [-2858.85, -1487.9], [-2864.7, -1481.0], [-2855.81, -1473.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3022.21, -1044.73], [-3021.91, -1046.7], [-3016.95, -1045.93], [-3016.02, -1051.94], [-3022.88, -1053.0], [-3023.8, -1047.04], [-3027.85, -1047.66], [-3029.8, -1035.08], [-3027.11, -1034.67], [-3027.43, -1032.6], [-3021.3, -1031.67], [-3019.34, -1044.28], [-3022.21, -1044.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3160.69, -1286.0], [-3167.1, -1291.75], [-3172.53, -1285.72], [-3166.11, -1279.96], [-3160.69, -1286.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2988.33, -1464.7], [-2985.98, -1467.51], [-2983.44, -1465.39], [-2979.91, -1469.59], [-2982.46, -1471.7], [-2981.11, -1473.32], [-2990.73, -1481.35], [-2997.97, -1472.74], [-2988.33, -1464.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3265.09, -1397.52], [-3271.7, -1403.02], [-3283.15, -1389.27], [-3276.55, -1383.77], [-3265.09, -1397.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3105.2, -1474.56], [-3115.85, -1483.92], [-3118.65, -1480.73], [-3114.72, -1477.26], [-3118.33, -1473.16], [-3111.62, -1467.26], [-3105.2, -1474.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3011.52, -1376.46], [-3019.13, -1382.93], [-3029.98, -1370.29], [-3022.37, -1363.82], [-3011.52, -1376.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3074.59, -1426.08], [-3081.82, -1432.04], [-3091.07, -1420.81], [-3083.84, -1414.86], [-3074.59, -1426.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2661.76, -1201.68], [-2665.61, -1205.33], [-2674.28, -1196.16], [-2665.68, -1188.03], [-2658.53, -1195.58], [-2663.28, -1200.07], [-2661.76, -1201.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2795.04, -1257.34], [-2805.12, -1266.32], [-2806.08, -1265.26], [-2808.41, -1267.34], [-2813.3, -1261.88], [-2810.69, -1259.57], [-2814.9, -1254.87], [-2805.09, -1246.13], [-2795.04, -1257.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2757.99, -1477.38], [-2765.53, -1484.41], [-2773.81, -1475.6], [-2770.77, -1472.77], [-2772.43, -1471.0], [-2767.94, -1466.79], [-2757.99, -1477.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3130.85, -1265.77], [-3127.69, -1269.54], [-3126.74, -1268.74], [-3123.89, -1272.14], [-3123.73, -1272.01], [-3121.4, -1274.79], [-3121.72, -1275.05], [-3119.33, -1277.89], [-3120.51, -1278.87], [-3119.33, -1280.26], [-3123.9, -1284.07], [-3125.14, -1282.59], [-3127.84, -1284.85], [-3131.81, -1280.12], [-3131.45, -1279.83], [-3135.02, -1275.57], [-3131.74, -1272.83], [-3134.86, -1269.12], [-3130.85, -1265.77]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2813.87, -1249.34], [-2820.23, -1254.82], [-2825.57, -1248.6], [-2819.22, -1243.14], [-2813.87, -1249.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2886.37, -1331.68], [-2893.27, -1337.56], [-2894.92, -1335.65], [-2895.77, -1336.38], [-2906.71, -1323.64], [-2898.95, -1317.03], [-2886.37, -1331.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3057.63, -1353.03], [-3066.4, -1360.9], [-3074.13, -1352.34], [-3065.35, -1344.47], [-3057.63, -1353.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2885.34, -1502.31], [-2882.05, -1506.16], [-2881.48, -1505.67], [-2878.08, -1509.64], [-2878.66, -1510.13], [-2876.23, -1512.96], [-2878.61, -1515.04], [-2874.74, -1519.61], [-2877.46, -1522.25], [-2877.9, -1521.73], [-2878.77, -1522.46], [-2880.24, -1520.73], [-2881.12, -1521.52], [-2892.77, -1508.28], [-2885.34, -1502.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2951.26, -1454.06], [-2959.01, -1460.94], [-2968.3, -1450.56], [-2965.28, -1447.87], [-2966.19, -1446.84], [-2961.46, -1442.64], [-2951.26, -1454.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2752.17, -1154.71], [-2750.98, -1156.0], [-2753.61, -1158.38], [-2756.5, -1155.23], [-2758.6, -1157.12], [-2766.72, -1148.22], [-2758.05, -1140.37], [-2748.23, -1151.14], [-2752.17, -1154.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2986.68, -1519.23], [-2992.13, -1523.79], [-2995.42, -1519.85], [-2989.98, -1515.3], [-2986.68, -1519.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2790.7, -1336.89], [-2796.32, -1341.51], [-2802.99, -1333.38], [-2797.37, -1328.78], [-2790.7, -1336.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3255.2, -1373.11], [-3256.98, -1374.66], [-3261.17, -1369.83], [-3258.72, -1367.7], [-3255.13, -1371.83], [-3254.53, -1372.53], [-3255.2, -1373.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2971.42, -1029.62], [-2972.59, -1045.47], [-2984.48, -1044.59], [-2983.31, -1028.73], [-2971.42, -1029.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2690.06, -1332.6], [-2686.88, -1336.46], [-2684.95, -1334.87], [-2681.0, -1339.65], [-2690.13, -1347.18], [-2691.63, -1345.36], [-2695.09, -1348.21], [-2699.0, -1343.46], [-2695.63, -1340.68], [-2697.34, -1338.59], [-2690.06, -1332.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2661.81, -1396.93], [-2666.76, -1401.13], [-2675.59, -1390.77], [-2667.37, -1383.79], [-2659.88, -1392.57], [-2663.17, -1395.35], [-2661.81, -1396.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2822.26, -1376.99], [-2806.9, -1395.58], [-2814.43, -1401.81], [-2820.11, -1394.94], [-2822.52, -1396.93], [-2827.57, -1390.81], [-2825.09, -1388.77], [-2829.72, -1383.15], [-2822.26, -1376.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3047.58, -1563.8], [-3052.56, -1567.92], [-3054.85, -1565.11], [-3049.87, -1561.0], [-3047.58, -1563.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3038.17, -1418.39], [-3043.12, -1422.8], [-3045.96, -1419.6], [-3041.0, -1415.2], [-3038.17, -1418.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2970.95, -1251.58], [-2980.89, -1259.82], [-2985.08, -1254.8], [-2975.13, -1246.55], [-2970.95, -1251.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2845.45, -1428.43], [-2852.41, -1434.69], [-2861.07, -1425.13], [-2854.12, -1418.86], [-2845.45, -1428.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2733.41, -1173.53], [-2739.7, -1179.2], [-2744.55, -1173.81], [-2738.25, -1168.15], [-2733.41, -1173.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2721.71, -1324.69], [-2728.75, -1330.11], [-2738.07, -1318.08], [-2731.03, -1312.66], [-2721.71, -1324.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3083.73, -1493.99], [-3078.69, -1499.92], [-3086.91, -1506.89], [-3086.76, -1507.08], [-3089.94, -1509.79], [-3097.63, -1500.73], [-3093.99, -1497.64], [-3092.37, -1499.56], [-3087.43, -1495.36], [-3086.56, -1496.39], [-3083.73, -1493.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3012.91, -1427.8], [-3006.5, -1434.68], [-3009.12, -1437.09], [-3006.12, -1440.3], [-3013.71, -1447.31], [-3016.16, -1444.67], [-3017.88, -1446.26], [-3025.22, -1438.37], [-3021.29, -1434.73], [-3022.7, -1433.22], [-3018.33, -1429.19], [-3016.52, -1431.14], [-3012.91, -1427.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2913.41, -1416.23], [-2910.95, -1419.14], [-2915.58, -1423.06], [-2919.91, -1417.96], [-2921.46, -1419.27], [-2923.64, -1416.69], [-2922.46, -1415.69], [-2926.72, -1410.66], [-2918.76, -1403.91], [-2910.45, -1413.72], [-2913.41, -1416.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3104.56, -1394.61], [-3110.47, -1399.58], [-3120.83, -1387.26], [-3114.93, -1382.3], [-3104.56, -1394.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2615.79, -1310.9], [-2621.56, -1316.0], [-2627.71, -1308.92], [-2622.03, -1304.0], [-2615.79, -1310.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2802.9, -1489.92], [-2809.07, -1494.91], [-2814.56, -1488.12], [-2808.38, -1483.13], [-2802.9, -1489.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2975.47, -1472.17], [-2982.29, -1463.55], [-2980.78, -1462.37], [-2983.04, -1459.53], [-2976.96, -1454.76], [-2968.33, -1465.65], [-2972.33, -1468.81], [-2971.89, -1469.36], [-2975.47, -1472.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2919.04, -1496.31], [-2923.24, -1499.69], [-2924.64, -1497.96], [-2927.52, -1500.29], [-2933.25, -1493.24], [-2926.17, -1487.53], [-2919.04, -1496.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2720.52, -1402.47], [-2725.21, -1406.55], [-2729.48, -1401.63], [-2724.64, -1397.42], [-2720.52, -1402.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2914.19, -1567.13], [-2917.57, -1569.97], [-2921.03, -1565.86], [-2917.64, -1563.03], [-2914.19, -1567.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3193.43, -1323.16], [-3186.69, -1317.76], [-3179.17, -1327.08], [-3179.67, -1327.48], [-3178.62, -1328.78], [-3184.87, -1333.78], [-3193.43, -1323.16]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2591.97, -1306.5], [-2589.18, -1304.14], [-2584.88, -1309.16], [-2587.76, -1311.53], [-2591.97, -1306.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2875.72, -1366.82], [-2870.15, -1372.8], [-2865.27, -1368.28], [-2855.6, -1378.65], [-2861.54, -1384.15], [-2869.45, -1375.66], [-2871.73, -1377.76], [-2868.87, -1380.82], [-2872.55, -1384.22], [-2882.72, -1373.3], [-2875.72, -1366.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3081.4, -1356.5], [-3072.34, -1366.49], [-3079.93, -1373.34], [-3090.57, -1361.62], [-3084.82, -1356.44], [-3083.24, -1358.16], [-3081.4, -1356.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3045.27, -1058.91], [-3046.0, -1052.24], [-3039.58, -1051.55], [-3038.84, -1058.22], [-3045.27, -1058.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2665.73, -1219.17], [-2661.3, -1215.54], [-2657.11, -1220.47], [-2661.61, -1224.15], [-2665.73, -1219.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3056.52, -1089.05], [-3050.53, -1096.83], [-3060.32, -1104.63], [-3066.44, -1096.98], [-3066.88, -1096.42], [-3063.35, -1093.6], [-3062.91, -1094.16], [-3056.52, -1089.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2953.41, -1343.38], [-2958.51, -1347.71], [-2963.06, -1342.34], [-2957.96, -1338.01], [-2953.41, -1343.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2897.62, -1399.21], [-2907.24, -1408.02], [-2915.35, -1399.21], [-2912.88, -1396.96], [-2914.27, -1395.45], [-2907.12, -1388.9], [-2897.62, -1399.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2806.67, -1521.04], [-2812.25, -1525.8], [-2816.1, -1521.3], [-2817.25, -1522.29], [-2823.14, -1515.39], [-2816.41, -1509.63], [-2806.67, -1521.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3035.76, -1464.43], [-3044.69, -1472.28], [-3052.2, -1463.75], [-3048.44, -1460.45], [-3051.63, -1456.82], [-3046.46, -1452.26], [-3035.76, -1464.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3228.78, -1432.88], [-3234.74, -1425.64], [-3232.84, -1423.98], [-3235.71, -1420.65], [-3229.95, -1415.88], [-3221.62, -1426.1], [-3219.96, -1424.55], [-3215.65, -1429.66], [-3220.74, -1433.62], [-3224.41, -1429.69], [-3228.78, -1432.88]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2935.81, -1444.97], [-2943.63, -1451.33], [-2945.14, -1449.48], [-2948.53, -1452.25], [-2958.33, -1440.2], [-2942.7, -1427.5], [-2936.93, -1434.6], [-2941.32, -1438.17], [-2935.81, -1444.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3129.28, -1494.98], [-3134.53, -1499.3], [-3139.08, -1493.76], [-3133.84, -1489.45], [-3129.28, -1494.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2701.58, -1407.35], [-2699.27, -1410.14], [-2696.13, -1407.56], [-2692.5, -1411.93], [-2695.44, -1414.35], [-2693.43, -1416.78], [-2692.36, -1415.91], [-2687.16, -1422.17], [-2695.33, -1428.9], [-2708.49, -1413.04], [-2701.58, -1407.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3087.06, -1050.68], [-3081.26, -1057.55], [-3082.84, -1058.89], [-3082.46, -1059.33], [-3085.27, -1061.69], [-3084.23, -1062.98], [-3089.12, -1067.12], [-3089.33, -1066.86], [-3090.99, -1068.26], [-3095.95, -1062.36], [-3094.28, -1060.96], [-3096.63, -1058.17], [-3088.93, -1051.67], [-3088.63, -1052.01], [-3087.06, -1050.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2786.29, -1500.88], [-2793.97, -1507.5], [-2797.31, -1503.66], [-2799.41, -1505.47], [-2804.35, -1499.74], [-2792.52, -1489.56], [-2787.9, -1494.89], [-2788.59, -1495.49], [-2786.74, -1497.63], [-2788.09, -1498.79], [-2786.29, -1500.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3098.18, -1458.93], [-3091.89, -1453.74], [-3087.24, -1458.98], [-3093.3, -1464.3], [-3098.18, -1458.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3114.54, -1514.46], [-3108.29, -1520.83], [-3116.98, -1529.36], [-3125.74, -1520.44], [-3119.53, -1514.33], [-3117.02, -1516.9], [-3114.54, -1514.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2695.29, -1263.05], [-2692.73, -1266.03], [-2689.87, -1263.59], [-2684.82, -1269.49], [-2696.14, -1279.2], [-2701.61, -1272.83], [-2701.19, -1272.46], [-2703.35, -1269.95], [-2695.29, -1263.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2847.22, -1407.25], [-2843.34, -1411.53], [-2839.33, -1407.93], [-2830.89, -1417.24], [-2836.72, -1422.48], [-2838.81, -1420.16], [-2839.79, -1421.04], [-2841.43, -1419.23], [-2844.58, -1422.06], [-2853.15, -1412.58], [-2847.22, -1407.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3259.7, -1356.9], [-3264.37, -1360.95], [-3269.09, -1355.5], [-3264.42, -1351.45], [-3259.7, -1356.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2792.84, -1296.19], [-2791.03, -1298.33], [-2788.95, -1296.58], [-2781.05, -1305.93], [-2786.55, -1310.57], [-2785.43, -1311.9], [-2791.53, -1317.05], [-2802.36, -1304.22], [-2792.84, -1296.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3036.95, -1321.09], [-3030.04, -1328.11], [-3039.36, -1337.23], [-3049.47, -1326.97], [-3045.51, -1323.09], [-3042.31, -1326.34], [-3036.95, -1321.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3110.55, -1459.87], [-3115.43, -1464.07], [-3118.0, -1461.1], [-3120.54, -1463.29], [-3129.98, -1452.39], [-3122.55, -1446.0], [-3110.55, -1459.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3153.07, -1139.64], [-3158.4, -1144.1], [-3163.58, -1137.96], [-3158.25, -1133.5], [-3153.07, -1139.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2753.81, -1457.74], [-2758.62, -1461.87], [-2760.68, -1459.45], [-2761.9, -1460.5], [-2769.67, -1451.45], [-2762.3, -1445.11], [-2755.05, -1453.57], [-2756.4, -1454.73], [-2753.81, -1457.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2777.64, -1465.72], [-2783.67, -1470.91], [-2787.78, -1466.12], [-2781.75, -1460.94], [-2777.64, -1465.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3180.28, -1457.33], [-3186.65, -1462.34], [-3192.1, -1455.42], [-3185.73, -1450.41], [-3180.28, -1457.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3012.07, -1285.02], [-3016.55, -1279.86], [-3005.24, -1270.05], [-3000.79, -1275.54], [-3012.07, -1285.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2876.12, -1533.83], [-2880.63, -1537.61], [-2885.62, -1531.64], [-2881.14, -1528.01], [-2876.12, -1533.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3248.04, -1362.33], [-3240.96, -1370.5], [-3237.78, -1367.76], [-3232.61, -1373.74], [-3243.26, -1382.89], [-3254.17, -1370.29], [-3250.04, -1366.74], [-3251.38, -1365.2], [-3248.04, -1362.33]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2725.26, -1138.82], [-2722.01, -1142.22], [-2727.69, -1146.98], [-2731.62, -1142.28], [-2726.17, -1137.73], [-2725.26, -1138.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2993.16, -1301.58], [-3000.56, -1292.81], [-3000.34, -1292.62], [-3004.33, -1287.89], [-2996.58, -1281.39], [-2985.17, -1294.9], [-2993.16, -1301.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2978.26, -1390.28], [-2974.81, -1394.18], [-2972.48, -1392.13], [-2966.55, -1398.84], [-2969.74, -1401.64], [-2967.29, -1404.42], [-2975.11, -1411.28], [-2979.18, -1406.68], [-2983.29, -1410.28], [-2982.81, -1410.83], [-2983.64, -1411.55], [-2981.21, -1414.3], [-2981.35, -1414.42], [-2980.77, -1415.08], [-2985.09, -1418.87], [-2985.76, -1418.11], [-2986.5, -1418.77], [-2988.96, -1415.98], [-2989.93, -1416.83], [-2993.34, -1412.98], [-2994.26, -1413.79], [-2997.49, -1410.13], [-2986.47, -1400.46], [-2987.95, -1398.78], [-2978.26, -1390.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2653.15, -1264.03], [-2660.05, -1269.91], [-2671.19, -1256.83], [-2664.28, -1250.95], [-2653.15, -1264.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2703.59, -1152.78], [-2709.12, -1157.33], [-2713.43, -1152.09], [-2707.91, -1147.54], [-2703.59, -1152.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3115.97, -1087.9], [-3123.72, -1094.22], [-3131.22, -1085.05], [-3123.47, -1078.75], [-3115.97, -1087.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2616.0, -1200.66], [-2610.91, -1207.05], [-2621.38, -1215.38], [-2623.54, -1212.67], [-2625.09, -1213.9], [-2628.81, -1209.22], [-2619.27, -1201.63], [-2618.47, -1202.63], [-2616.0, -1200.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3108.87, -1081.28], [-3112.77, -1084.55], [-3113.18, -1084.07], [-3119.06, -1077.04], [-3111.44, -1070.66], [-3105.56, -1077.68], [-3109.28, -1080.79], [-3108.87, -1081.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2973.85, -1282.88], [-2980.48, -1288.73], [-2983.0, -1285.9], [-2984.56, -1287.29], [-2991.01, -1280.04], [-2982.22, -1272.28], [-2975.75, -1279.54], [-2976.34, -1280.07], [-2973.85, -1282.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2957.22, -1031.89], [-2957.45, -1037.91], [-2960.02, -1037.82], [-2960.25, -1043.99], [-2970.01, -1043.61], [-2969.47, -1029.76], [-2960.34, -1030.12], [-2960.41, -1031.77], [-2957.22, -1031.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2794.99, -1318.2], [-2799.1, -1321.72], [-2801.33, -1319.13], [-2805.41, -1322.62], [-2813.89, -1312.73], [-2805.7, -1305.71], [-2794.99, -1318.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3254.72, -1344.42], [-3258.35, -1347.56], [-3262.32, -1343.0], [-3258.7, -1339.85], [-3254.72, -1344.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3101.82, -1504.76], [-3094.81, -1513.39], [-3102.99, -1520.04], [-3109.73, -1511.75], [-3107.24, -1509.73], [-3108.38, -1508.33], [-3104.89, -1505.49], [-3104.03, -1506.56], [-3101.82, -1504.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2882.5, -1389.71], [-2888.71, -1395.25], [-2890.77, -1392.95], [-2892.95, -1394.88], [-2899.57, -1387.5], [-2888.62, -1377.74], [-2882.71, -1384.34], [-2885.28, -1386.62], [-2882.5, -1389.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3078.29, -1341.35], [-3083.96, -1346.14], [-3088.35, -1340.94], [-3082.68, -1336.15], [-3078.29, -1341.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2957.8, -1272.2], [-2964.62, -1278.15], [-2971.54, -1270.28], [-2973.48, -1271.97], [-2978.01, -1266.83], [-2969.24, -1259.18], [-2957.8, -1272.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3158.11, -1291.2], [-3155.79, -1293.96], [-3150.68, -1289.68], [-3148.3, -1292.5], [-3147.97, -1292.22], [-3145.7, -1294.92], [-3146.06, -1295.21], [-3143.85, -1297.83], [-3145.1, -1298.87], [-3144.16, -1300.0], [-3150.7, -1305.46], [-3152.34, -1303.52], [-3153.17, -1304.22], [-3161.64, -1294.16], [-3158.11, -1291.2]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-3114.72, -1363.56], [-3109.32, -1370.34], [-3116.18, -1375.81], [-3117.97, -1373.55], [-3123.35, -1377.84], [-3127.74, -1372.35], [-3122.63, -1368.28], [-3121.87, -1369.25], [-3114.72, -1363.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3139.49, -1276.82], [-3143.59, -1271.86], [-3140.44, -1269.21], [-3136.35, -1274.26], [-3139.49, -1276.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2863.75, -1231.96], [-2854.06, -1243.68], [-2859.59, -1248.25], [-2863.9, -1243.04], [-2865.49, -1244.34], [-2870.87, -1237.83], [-2863.75, -1231.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3211.79, -1353.84], [-3214.36, -1355.96], [-3215.27, -1354.85], [-3216.46, -1355.83], [-3215.86, -1356.56], [-3218.36, -1358.62], [-3224.17, -1351.64], [-3217.72, -1346.31], [-3212.51, -1352.58], [-3212.7, -1352.74], [-3211.79, -1353.84]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2622.98, -1297.61], [-2630.9, -1304.35], [-2639.46, -1294.29], [-2631.53, -1287.55], [-2622.98, -1297.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3060.87, -1563.63], [-3066.71, -1568.4], [-3072.18, -1561.64], [-3066.34, -1556.87], [-3060.87, -1563.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2730.53, -1133.02], [-2736.88, -1138.83], [-2744.61, -1130.44], [-2738.26, -1124.63], [-2730.53, -1133.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2624.37, -1238.24], [-2631.08, -1243.7], [-2639.0, -1233.99], [-2632.29, -1228.53], [-2624.37, -1238.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3140.77, -1505.91], [-3146.71, -1510.95], [-3152.05, -1504.66], [-3146.1, -1499.62], [-3140.77, -1505.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3151.2, -1125.09], [-3158.16, -1130.76], [-3169.48, -1117.76], [-3162.51, -1112.08], [-3151.2, -1125.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3179.68, -1125.76], [-3174.01, -1132.23], [-3184.01, -1141.07], [-3184.36, -1140.69], [-3186.4, -1142.59], [-3191.4, -1136.7], [-3189.39, -1134.96], [-3190.06, -1134.22], [-3186.77, -1131.53], [-3187.34, -1130.83], [-3184.43, -1128.44], [-3183.85, -1129.15], [-3179.68, -1125.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2881.75, -1564.96], [-2869.27, -1579.52], [-2876.39, -1585.6], [-2888.87, -1570.89], [-2881.75, -1564.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2684.8, -1166.47], [-2692.8, -1173.42], [-2704.03, -1160.51], [-2696.03, -1153.55], [-2684.8, -1166.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2699.89, -1220.74], [-2692.84, -1214.93], [-2686.72, -1222.37], [-2688.83, -1224.19], [-2687.24, -1225.99], [-2692.11, -1229.9], [-2699.89, -1220.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2921.36, -1365.83], [-2929.01, -1372.8], [-2934.75, -1366.54], [-2933.48, -1365.39], [-2940.35, -1357.91], [-2933.96, -1352.1], [-2921.36, -1365.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2945.35, -1072.03], [-2943.39, -1072.1], [-2943.6, -1078.07], [-2956.8, -1077.6], [-2956.03, -1055.93], [-2945.23, -1056.31], [-2945.8, -1072.0], [-2945.35, -1072.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3126.13, -1148.35], [-3121.87, -1153.34], [-3124.15, -1155.27], [-3123.49, -1156.03], [-3131.54, -1162.85], [-3137.47, -1155.88], [-3130.2, -1149.74], [-3129.18, -1150.94], [-3126.13, -1148.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3095.74, -1073.36], [-3100.09, -1076.94], [-3107.75, -1067.6], [-3100.88, -1061.94], [-3094.56, -1069.59], [-3097.07, -1071.68], [-3095.74, -1073.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3202.58, -1346.74], [-3207.66, -1350.98], [-3209.22, -1349.12], [-3211.47, -1351.02], [-3216.43, -1345.15], [-3213.3, -1342.53], [-3217.85, -1337.15], [-3213.65, -1333.62], [-3202.58, -1346.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3118.86, -1534.69], [-3131.36, -1545.95], [-3138.83, -1536.7], [-3135.48, -1534.01], [-3136.82, -1532.35], [-3127.38, -1524.85], [-3118.86, -1534.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3067.76, -1104.03], [-3065.63, -1102.25], [-3061.56, -1107.08], [-3069.84, -1114.0], [-3080.97, -1100.79], [-3078.52, -1098.74], [-3078.87, -1098.33], [-3075.16, -1095.24], [-3067.76, -1104.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3139.09, -1241.38], [-3136.89, -1243.74], [-3134.64, -1241.64], [-3129.58, -1247.08], [-3141.86, -1258.49], [-3147.52, -1252.41], [-3143.57, -1248.74], [-3145.16, -1247.04], [-3139.09, -1241.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2831.77, -1497.63], [-2841.99, -1506.27], [-2848.64, -1498.39], [-2838.42, -1489.76], [-2831.77, -1497.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2933.58, -1344.91], [-2937.22, -1348.23], [-2941.5, -1343.54], [-2937.86, -1340.22], [-2933.58, -1344.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3166.22, -1268.64], [-3160.39, -1263.56], [-3155.23, -1269.59], [-3161.1, -1274.61], [-3166.22, -1268.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3194.68, -1265.53], [-3193.13, -1267.38], [-3192.1, -1266.51], [-3183.77, -1276.45], [-3187.79, -1279.82], [-3187.46, -1280.23], [-3189.25, -1281.73], [-3190.04, -1281.7], [-3190.9, -1281.66], [-3198.89, -1272.21], [-3198.65, -1272.0], [-3200.2, -1270.15], [-3194.68, -1265.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2931.63, -1302.15], [-2938.31, -1308.0], [-2945.78, -1299.54], [-2939.1, -1293.67], [-2931.63, -1302.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2902.44, -1281.38], [-2907.5, -1285.87], [-2917.32, -1274.79], [-2909.31, -1267.68], [-2900.51, -1277.59], [-2903.47, -1280.22], [-2902.44, -1281.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2748.32, -1299.67], [-2754.04, -1304.74], [-2759.47, -1298.61], [-2753.74, -1293.54], [-2748.32, -1299.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2982.88, -1662.4], [-2990.81, -1653.27], [-2985.23, -1648.42], [-2986.61, -1646.84], [-2982.53, -1643.29], [-2981.1, -1644.9], [-2972.9, -1637.78], [-2972.45, -1638.3], [-2969.95, -1636.13], [-2964.11, -1643.0], [-2966.82, -1645.36], [-2965.29, -1647.13], [-2982.88, -1662.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2814.81, -1528.96], [-2821.77, -1534.69], [-2828.77, -1526.18], [-2821.81, -1520.46], [-2814.81, -1528.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2708.25, -1418.65], [-2700.51, -1427.39], [-2705.72, -1431.95], [-2706.91, -1430.6], [-2711.18, -1434.37], [-2715.95, -1428.99], [-2716.66, -1429.61], [-2719.7, -1426.17], [-2712.55, -1419.89], [-2711.29, -1421.33], [-2708.25, -1418.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2821.95, -1254.92], [-2826.84, -1259.18], [-2832.02, -1253.22], [-2827.13, -1248.96], [-2821.95, -1254.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3271.26, -1331.06], [-3270.01, -1332.52], [-3269.29, -1331.91], [-3262.31, -1340.1], [-3269.12, -1345.75], [-3275.93, -1337.56], [-3275.53, -1337.23], [-3276.77, -1335.77], [-3271.26, -1331.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2648.2, -1189.73], [-2653.51, -1194.39], [-2660.35, -1186.58], [-2655.04, -1181.92], [-2648.2, -1189.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3098.96, -1134.79], [-3099.72, -1135.43], [-3098.44, -1136.94], [-3105.3, -1142.75], [-3106.63, -1141.19], [-3107.34, -1141.79], [-3114.05, -1133.92], [-3110.02, -1130.5], [-3111.74, -1128.47], [-3107.83, -1125.16], [-3106.13, -1127.16], [-3105.74, -1126.82], [-3098.96, -1134.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3080.41, -1566.57], [-3075.47, -1572.82], [-3081.47, -1577.55], [-3086.95, -1570.62], [-3083.86, -1568.17], [-3083.31, -1568.85], [-3080.41, -1566.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2815.1, -1321.9], [-2806.5, -1331.35], [-2813.39, -1337.61], [-2823.94, -1326.01], [-2819.58, -1322.05], [-2817.63, -1324.19], [-2815.1, -1321.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2822.79, -1199.81], [-2817.6, -1205.68], [-2827.81, -1214.71], [-2834.48, -1207.14], [-2827.13, -1200.64], [-2825.63, -1202.33], [-2822.79, -1199.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2715.17, -1192.73], [-2721.44, -1198.02], [-2731.85, -1185.68], [-2723.51, -1178.65], [-2720.48, -1182.25], [-2722.54, -1183.99], [-2715.17, -1192.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3108.44, -1457.17], [-3116.17, -1447.68], [-3115.34, -1447.01], [-3116.98, -1444.65], [-3110.93, -1439.79], [-3101.19, -1450.97], [-3108.44, -1457.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3015.44, -1398.21], [-3020.14, -1402.75], [-3024.87, -1397.87], [-3019.91, -1393.07], [-3020.84, -1392.09], [-3017.48, -1388.83], [-3013.0, -1393.46], [-3016.63, -1396.98], [-3015.44, -1398.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3170.64, -1449.55], [-3177.65, -1455.15], [-3186.6, -1444.02], [-3179.58, -1438.42], [-3170.64, -1449.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3148.95, -1400.48], [-3154.77, -1405.57], [-3159.25, -1400.45], [-3153.2, -1395.43], [-3148.95, -1400.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3136.57, -1478.45], [-3145.23, -1485.47], [-3153.08, -1475.85], [-3144.42, -1468.83], [-3136.57, -1478.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2992.48, -1062.06], [-2992.46, -1064.48], [-2988.87, -1064.46], [-2988.81, -1074.14], [-2993.97, -1074.17], [-2993.98, -1072.74], [-3000.38, -1072.78], [-3000.44, -1062.09], [-2992.48, -1062.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2961.11, -1233.81], [-2957.32, -1238.54], [-2962.98, -1243.04], [-2966.78, -1238.31], [-2961.11, -1233.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2951.26, -1357.88], [-2956.72, -1362.83], [-2961.13, -1357.97], [-2955.67, -1353.01], [-2951.26, -1357.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3132.69, -1165.43], [-3140.27, -1171.96], [-3143.21, -1168.58], [-3145.15, -1170.25], [-3149.99, -1164.67], [-3147.32, -1162.36], [-3147.69, -1161.93], [-3140.85, -1156.03], [-3132.69, -1165.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2870.57, -1544.11], [-2875.49, -1548.23], [-2878.68, -1544.07], [-2873.79, -1540.1], [-2870.57, -1544.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3118.11, -1112.59], [-3122.71, -1116.4], [-3128.18, -1109.81], [-3123.58, -1106.01], [-3118.11, -1112.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3163.47, -1413.53], [-3168.83, -1417.85], [-3173.52, -1412.01], [-3168.17, -1407.71], [-3163.47, -1413.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2794.25, -1515.57], [-2801.4, -1522.09], [-2814.41, -1507.9], [-2807.25, -1501.38], [-2794.25, -1515.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3130.84, -1460.08], [-3125.45, -1466.73], [-3131.37, -1471.5], [-3129.29, -1474.05], [-3133.71, -1477.61], [-3142.12, -1467.24], [-3135.19, -1461.67], [-3134.24, -1462.81], [-3130.84, -1460.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2707.19, -1263.9], [-2713.02, -1257.06], [-2696.98, -1243.48], [-2691.94, -1249.56], [-2699.91, -1256.58], [-2698.51, -1258.24], [-2702.86, -1262.09], [-2703.82, -1260.94], [-2707.19, -1263.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2759.56, -1356.45], [-2767.27, -1362.82], [-2777.09, -1351.02], [-2769.37, -1344.65], [-2759.56, -1356.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2724.8, -1200.78], [-2731.96, -1207.11], [-2733.4, -1205.49], [-2735.92, -1207.72], [-2738.89, -1204.37], [-2736.67, -1202.42], [-2740.06, -1198.57], [-2732.58, -1191.97], [-2724.8, -1200.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2952.8, -1304.87], [-2945.86, -1312.33], [-2944.13, -1310.72], [-2941.49, -1313.55], [-2946.9, -1318.57], [-2948.67, -1316.67], [-2952.81, -1320.5], [-2960.62, -1312.09], [-2952.8, -1304.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2974.38, -1339.76], [-2982.71, -1347.49], [-2990.27, -1339.33], [-2981.93, -1331.61], [-2974.38, -1339.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3192.74, -1378.87], [-3188.67, -1384.28], [-3185.9, -1382.22], [-3181.42, -1388.17], [-3191.6, -1395.76], [-3200.14, -1384.38], [-3192.74, -1378.87]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-3000.69, -1417.51], [-2997.79, -1421.02], [-2996.19, -1419.72], [-2991.81, -1425.04], [-2997.43, -1429.64], [-2999.21, -1427.47], [-3003.62, -1431.08], [-3009.12, -1424.4], [-3000.69, -1417.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2680.2, -1380.49], [-2685.66, -1385.04], [-2688.01, -1382.21], [-2682.57, -1377.66], [-2680.2, -1380.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3144.72, -1095.7], [-3143.28, -1097.4], [-3142.73, -1096.93], [-3136.1, -1104.76], [-3143.07, -1110.65], [-3149.69, -1102.81], [-3149.01, -1102.24], [-3150.45, -1100.55], [-3144.72, -1095.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2594.74, -1276.6], [-2601.98, -1282.68], [-2612.26, -1270.45], [-2605.02, -1264.37], [-2594.74, -1276.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2681.26, -1392.38], [-2685.76, -1396.53], [-2691.19, -1390.65], [-2686.69, -1386.49], [-2681.26, -1392.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3250.97, -1329.85], [-3258.67, -1336.9], [-3266.15, -1328.75], [-3258.45, -1321.69], [-3250.97, -1329.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2669.46, -1357.1], [-2678.03, -1364.81], [-2687.51, -1354.27], [-2678.94, -1346.56], [-2669.46, -1357.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3063.24, -1156.09], [-3062.02, -1157.58], [-3061.36, -1157.06], [-3054.28, -1165.68], [-3054.65, -1165.98], [-3052.36, -1168.75], [-3054.86, -1170.79], [-3057.16, -1167.98], [-3061.15, -1171.23], [-3069.44, -1161.16], [-3063.24, -1156.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2645.27, -1208.83], [-2650.85, -1213.61], [-2655.81, -1207.82], [-2650.23, -1203.04], [-2645.27, -1208.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3147.27, -1228.48], [-3142.92, -1233.71], [-3145.53, -1235.89], [-3143.45, -1238.38], [-3147.21, -1241.51], [-3145.67, -1243.37], [-3152.56, -1249.09], [-3161.26, -1238.63], [-3150.77, -1229.9], [-3150.04, -1230.78], [-3147.27, -1228.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2516.83, -1255.49], [-2517.51, -1271.2], [-2528.19, -1270.74], [-2527.52, -1255.03], [-2516.83, -1255.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2603.93, -1096.72], [-2612.02, -1103.9], [-2619.66, -1095.36], [-2611.57, -1088.18], [-2603.93, -1096.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2532.63, -1035.86], [-2544.38, -1045.74], [-2549.67, -1039.48], [-2537.93, -1029.61], [-2532.63, -1035.86]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2588.56, -1043.5], [-2586.28, -1046.35], [-2584.74, -1045.1], [-2580.03, -1050.96], [-2585.25, -1055.14], [-2590.26, -1048.89], [-2589.37, -1048.18], [-2591.33, -1045.73], [-2588.56, -1043.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2607.31, -1044.62], [-2609.9, -1051.47], [-2615.37, -1049.4], [-2612.77, -1042.56], [-2607.31, -1044.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2622.65, -1105.73], [-2630.12, -1112.25], [-2639.32, -1101.77], [-2631.86, -1095.25], [-2622.65, -1105.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2446.35, -1253.54], [-2446.33, -1255.69], [-2442.44, -1255.66], [-2442.36, -1264.21], [-2454.87, -1264.33], [-2454.94, -1256.58], [-2451.59, -1256.56], [-2451.62, -1253.59], [-2446.35, -1253.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2586.01, -1056.55], [-2591.42, -1061.09], [-2591.72, -1060.73], [-2594.02, -1062.62], [-2598.83, -1057.2], [-2596.4, -1055.12], [-2596.69, -1054.77], [-2591.36, -1049.88], [-2586.01, -1056.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2659.65, -1073.11], [-2666.3, -1079.19], [-2673.95, -1070.89], [-2667.3, -1064.8], [-2659.65, -1073.11]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2593.43, -1169.35], [-2598.97, -1173.97], [-2605.95, -1165.62], [-2600.42, -1160.99], [-2593.43, -1169.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2468.09, -1207.49], [-2468.59, -1222.63], [-2478.03, -1222.33], [-2477.61, -1209.46], [-2472.73, -1209.62], [-2472.66, -1207.34], [-2468.09, -1207.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2528.93, -1222.76], [-2544.89, -1222.83], [-2544.95, -1209.62], [-2528.99, -1209.56], [-2528.93, -1222.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2496.29, -1285.79], [-2486.15, -1286.08], [-2486.39, -1294.57], [-2496.53, -1294.26], [-2496.29, -1285.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2530.69, -1155.85], [-2537.87, -1162.71], [-2545.99, -1154.21], [-2538.82, -1147.36], [-2530.69, -1155.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2594.97, -1149.43], [-2602.18, -1155.68], [-2610.05, -1146.67], [-2605.89, -1143.07], [-2607.38, -1141.34], [-2604.34, -1138.7], [-2594.97, -1149.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2582.68, -1144.94], [-2590.49, -1151.45], [-2601.88, -1137.89], [-2594.07, -1131.38], [-2582.68, -1144.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2439.32, -1210.63], [-2440.05, -1220.59], [-2445.18, -1220.21], [-2445.37, -1222.78], [-2452.38, -1222.27], [-2451.88, -1215.52], [-2458.47, -1215.04], [-2457.88, -1206.99], [-2448.19, -1207.7], [-2448.36, -1209.97], [-2439.32, -1210.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2537.95, -1100.43], [-2544.68, -1106.0], [-2553.25, -1095.7], [-2546.51, -1090.14], [-2537.95, -1100.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2544.72, -1256.37], [-2532.74, -1256.72], [-2533.18, -1270.98], [-2545.23, -1270.57], [-2544.72, -1256.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2465.0, -1161.13], [-2473.13, -1168.15], [-2481.52, -1158.44], [-2471.95, -1150.17], [-2466.82, -1156.09], [-2468.28, -1157.35], [-2465.0, -1161.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2461.75, -1277.88], [-2461.88, -1281.79], [-2468.8, -1281.56], [-2468.67, -1277.65], [-2461.75, -1277.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2549.82, -1109.74], [-2556.21, -1115.99], [-2560.92, -1111.22], [-2560.23, -1110.55], [-2563.99, -1106.75], [-2558.28, -1101.16], [-2549.82, -1109.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2651.02, -1065.72], [-2657.9, -1071.56], [-2664.98, -1063.26], [-2658.1, -1057.43], [-2651.02, -1065.72]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2594.66, -1002.69], [-2592.27, -1005.47], [-2591.44, -1004.76], [-2586.06, -1011.0], [-2593.28, -1017.18], [-2602.01, -1007.05], [-2596.92, -1002.69], [-2595.96, -1003.81], [-2594.66, -1002.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2511.31, -1286.43], [-2501.88, -1286.72], [-2502.11, -1293.13], [-2511.52, -1292.84], [-2511.31, -1286.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2614.91, -1032.76], [-2622.19, -1038.81], [-2629.34, -1030.28], [-2624.44, -1026.21], [-2625.93, -1024.44], [-2623.55, -1022.45], [-2614.91, -1032.76]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2566.69, -1143.63], [-2573.15, -1149.2], [-2577.37, -1144.3], [-2570.92, -1138.73], [-2566.69, -1143.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2533.84, -1281.57], [-2534.31, -1290.68], [-2543.91, -1290.19], [-2543.45, -1281.08], [-2533.84, -1281.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2584.23, -1030.98], [-2587.81, -1034.32], [-2592.29, -1029.53], [-2588.72, -1026.18], [-2584.23, -1030.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2541.82, -1272.58], [-2534.68, -1272.81], [-2534.91, -1279.89], [-2542.08, -1279.64], [-2541.82, -1272.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2569.66, -1194.21], [-2577.76, -1201.02], [-2588.04, -1188.79], [-2579.93, -1181.97], [-2569.66, -1194.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2510.48, -1270.29], [-2512.23, -1270.23], [-2511.9, -1261.01], [-2505.45, -1261.24], [-2505.3, -1257.24], [-2502.04, -1257.36], [-2502.22, -1262.1], [-2504.31, -1262.03], [-2504.48, -1267.0], [-2501.5, -1267.1], [-2501.62, -1270.57], [-2504.93, -1270.45], [-2505.14, -1276.31], [-2510.69, -1276.12], [-2510.48, -1270.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2497.05, -1188.84], [-2501.14, -1192.22], [-2503.51, -1189.35], [-2504.64, -1190.29], [-2509.48, -1184.44], [-2507.67, -1182.94], [-2508.3, -1182.19], [-2502.94, -1177.76], [-2502.31, -1178.53], [-2498.39, -1182.91], [-2498.44, -1182.95], [-2497.35, -1184.27], [-2499.42, -1185.97], [-2497.05, -1188.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2590.33, -1084.62], [-2598.99, -1091.54], [-2605.11, -1083.93], [-2596.45, -1077.01], [-2590.33, -1084.62]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2574.22, -1170.23], [-2570.11, -1174.41], [-2569.47, -1173.77], [-2559.47, -1183.88], [-2565.92, -1190.25], [-2575.45, -1180.6], [-2574.29, -1179.46], [-2578.86, -1174.82], [-2574.22, -1170.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2496.35, -1259.56], [-2485.74, -1259.94], [-2486.36, -1277.9], [-2487.19, -1277.87], [-2487.27, -1279.83], [-2492.31, -1279.64], [-2492.25, -1277.76], [-2495.51, -1277.64], [-2495.35, -1273.73], [-2496.78, -1273.67], [-2496.35, -1259.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2537.06, -1112.77], [-2540.13, -1115.81], [-2544.77, -1111.11], [-2541.7, -1108.07], [-2537.06, -1112.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2642.94, -1057.61], [-2649.22, -1062.87], [-2655.51, -1055.42], [-2646.36, -1047.75], [-2642.28, -1052.57], [-2645.16, -1054.98], [-2642.94, -1057.61]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2461.39, -1286.86], [-2461.64, -1294.27], [-2469.53, -1294.01], [-2469.29, -1286.6], [-2461.39, -1286.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2442.05, -1268.58], [-2442.24, -1282.21], [-2449.48, -1282.1], [-2449.44, -1278.77], [-2451.08, -1278.74], [-2450.93, -1268.46], [-2442.05, -1268.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2438.53, -1185.81], [-2439.33, -1197.75], [-2449.17, -1197.1], [-2448.37, -1185.15], [-2438.53, -1185.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2502.31, -1111.04], [-2508.44, -1116.41], [-2512.86, -1111.37], [-2506.87, -1105.99], [-2502.31, -1111.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2576.47, -1150.15], [-2581.19, -1154.72], [-2585.87, -1149.89], [-2581.16, -1145.31], [-2576.47, -1150.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2439.43, -1165.05], [-2439.49, -1169.13], [-2438.41, -1169.15], [-2438.54, -1177.65], [-2447.72, -1177.51], [-2447.57, -1168.61], [-2443.29, -1168.68], [-2443.24, -1165.0], [-2439.43, -1165.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2568.39, -1011.51], [-2572.33, -1014.69], [-2576.68, -1009.3], [-2572.91, -1006.26], [-2568.39, -1011.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2561.37, -1061.51], [-2568.47, -1068.05], [-2578.3, -1057.45], [-2575.89, -1055.23], [-2577.5, -1053.49], [-2572.81, -1049.17], [-2561.37, -1061.51]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2622.35, -1084.55], [-2627.63, -1089.1], [-2631.91, -1084.16], [-2626.62, -1079.6], [-2622.35, -1084.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2511.62, -1224.13], [-2524.63, -1223.9], [-2524.44, -1212.9], [-2511.43, -1213.13], [-2511.62, -1224.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2540.29, -1166.46], [-2547.25, -1172.75], [-2558.19, -1160.66], [-2551.23, -1154.37], [-2540.29, -1166.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2508.78, -1122.68], [-2500.64, -1130.9], [-2515.38, -1145.51], [-2525.57, -1135.23], [-2516.3, -1126.05], [-2514.26, -1128.11], [-2508.78, -1122.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2575.93, -1003.74], [-2581.48, -1008.58], [-2583.68, -1006.07], [-2585.04, -1007.27], [-2593.08, -998.12], [-2586.16, -992.09], [-2575.93, -1003.74]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2579.87, -1023.99], [-2584.16, -1028.24], [-2588.76, -1023.61], [-2584.46, -1019.36], [-2579.87, -1023.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2596.98, -1017.11], [-2603.9, -1022.7], [-2611.11, -1013.83], [-2604.2, -1008.24], [-2596.98, -1017.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2576.18, -1071.9], [-2585.02, -1079.94], [-2592.01, -1072.3], [-2587.97, -1068.63], [-2588.87, -1067.63], [-2587.58, -1066.46], [-2591.22, -1062.46], [-2587.72, -1059.29], [-2576.18, -1071.9]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2440.62, -1160.59], [-2435.22, -1160.79], [-2435.36, -1164.77], [-2440.74, -1164.57], [-2440.62, -1160.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2651.63, -1115.46], [-2643.32, -1108.79], [-2633.0, -1120.93], [-2640.04, -1126.7], [-2644.19, -1121.79], [-2645.65, -1122.93], [-2651.63, -1115.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2508.79, -1195.81], [-2515.57, -1201.68], [-2522.25, -1193.96], [-2515.47, -1188.08], [-2508.79, -1195.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2578.1, -1121.34], [-2567.78, -1112.3], [-2561.1, -1119.87], [-2572.72, -1130.06], [-2577.66, -1124.46], [-2576.35, -1123.32], [-2578.1, -1121.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2668.82, -1081.39], [-2675.7, -1087.45], [-2683.25, -1078.89], [-2676.38, -1072.84], [-2668.82, -1081.39]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2629.44, -1089.26], [-2634.8, -1093.81], [-2638.83, -1089.07], [-2633.46, -1084.51], [-2629.44, -1089.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2471.89, -1254.64], [-2472.72, -1272.38], [-2484.14, -1271.85], [-2483.31, -1254.11], [-2471.89, -1254.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2576.61, -1133.73], [-2582.93, -1139.36], [-2591.43, -1129.88], [-2585.12, -1124.25], [-2576.61, -1133.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2605.78, -1158.84], [-2612.6, -1164.58], [-2620.76, -1154.89], [-2613.93, -1149.15], [-2605.78, -1158.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2442.71, -1284.13], [-2442.89, -1295.21], [-2451.12, -1295.08], [-2451.04, -1290.69], [-2455.8, -1290.61], [-2455.73, -1285.99], [-2452.61, -1286.05], [-2452.58, -1283.97], [-2442.71, -1284.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2482.9, -1213.99], [-2483.3, -1222.71], [-2493.6, -1222.23], [-2493.06, -1210.75], [-2486.55, -1211.06], [-2486.68, -1213.81], [-2482.9, -1213.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2519.91, -1147.3], [-2528.16, -1154.88], [-2535.64, -1146.72], [-2527.38, -1139.15], [-2519.91, -1147.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2480.35, -1168.72], [-2487.95, -1175.08], [-2489.4, -1173.34], [-2491.65, -1175.28], [-2494.84, -1171.53], [-2492.49, -1169.62], [-2493.11, -1168.88], [-2485.52, -1162.57], [-2480.35, -1168.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2613.9, -1058.7], [-2617.81, -1054.56], [-2614.26, -1051.4], [-2610.26, -1055.54], [-2613.9, -1058.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2548.01, -1175.51], [-2555.15, -1181.65], [-2556.85, -1179.68], [-2558.61, -1181.19], [-2564.89, -1173.89], [-2560.53, -1170.14], [-2563.2, -1167.04], [-2558.66, -1163.13], [-2548.01, -1175.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2625.17, -1043.37], [-2633.85, -1051.47], [-2639.73, -1045.23], [-2638.75, -1044.31], [-2640.81, -1042.13], [-2633.11, -1034.94], [-2625.17, -1043.37]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2504.51, -1222.44], [-2507.71, -1222.42], [-2507.64, -1215.33], [-2504.44, -1215.36], [-2504.42, -1213.31], [-2501.95, -1213.33], [-2501.92, -1210.4], [-2496.74, -1210.45], [-2496.85, -1221.79], [-2504.51, -1221.71], [-2504.51, -1222.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2558.9, -1037.89], [-2553.48, -1044.32], [-2552.74, -1043.71], [-2548.58, -1048.65], [-2555.78, -1054.68], [-2565.36, -1043.29], [-2558.9, -1037.89]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2662.88, -1096.56], [-2667.69, -1091.56], [-2663.56, -1087.85], [-2658.75, -1092.84], [-2662.88, -1096.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2615.16, -1016.07], [-2613.2, -1018.36], [-2611.5, -1016.93], [-2603.33, -1026.56], [-2607.95, -1030.44], [-2608.87, -1029.36], [-2612.52, -1032.43], [-2619.51, -1024.19], [-2618.17, -1023.06], [-2620.38, -1020.47], [-2615.16, -1016.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2402.76, -872.95], [-2407.13, -867.7], [-2406.48, -855.05], [-2402.69, -855.18], [-2403.38, -866.49], [-2399.98, -870.27], [-2402.76, -872.95]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2395.39, -855.58], [-2388.94, -855.82], [-2389.22, -863.23], [-2395.69, -862.99], [-2395.39, -855.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2406.67, -1408.24], [-2407.4, -1418.07], [-2411.28, -1417.78], [-2411.45, -1420.1], [-2418.34, -1419.59], [-2418.16, -1417.14], [-2419.84, -1417.02], [-2419.25, -1408.98], [-2416.25, -1409.21], [-2416.12, -1407.54], [-2406.67, -1408.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2407.72, -1454.68], [-2408.28, -1461.13], [-2418.32, -1460.26], [-2418.01, -1456.76], [-2419.49, -1456.63], [-2418.97, -1450.7], [-2412.02, -1451.31], [-2412.28, -1454.28], [-2407.72, -1454.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2413.69, -854.68], [-2406.83, -854.99], [-2407.57, -870.77], [-2414.42, -870.45], [-2413.69, -854.68]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2402.35, -855.14], [-2395.91, -855.52], [-2396.56, -866.68], [-2402.99, -866.3], [-2402.35, -855.14]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2423.92, -854.14], [-2414.11, -854.53], [-2414.79, -871.42], [-2424.59, -871.02], [-2423.92, -854.14]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2374.6, -1439.48], [-2375.29, -1448.4], [-2377.52, -1448.22], [-2377.72, -1450.83], [-2379.2, -1450.71], [-2379.51, -1454.67], [-2384.92, -1454.26], [-2384.09, -1443.36], [-2387.59, -1443.08], [-2387.08, -1436.41], [-2381.3, -1436.86], [-2381.47, -1438.95], [-2374.6, -1439.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2344.46, -1449.46], [-2345.89, -1463.53], [-2357.65, -1462.32], [-2356.21, -1448.27], [-2344.46, -1449.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2388.73, -855.85], [-2382.62, -856.07], [-2382.79, -860.68], [-2385.2, -862.61], [-2388.97, -862.5], [-2388.73, -855.85]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-2393.21, -1450.99], [-2393.83, -1456.14], [-2391.34, -1456.43], [-2392.05, -1462.37], [-2399.77, -1461.45], [-2399.57, -1459.78], [-2402.42, -1459.45], [-2402.04, -1456.33], [-2403.34, -1456.19], [-2402.89, -1452.44], [-2400.17, -1452.78], [-2399.86, -1450.18], [-2393.21, -1450.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2164.84, -1322.59], [-2165.05, -1328.94], [-2168.3, -1328.84], [-2168.1, -1322.49], [-2164.84, -1322.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1912.12, -1146.94], [-1912.01, -1151.75], [-1910.22, -1151.71], [-1910.06, -1158.81], [-1917.76, -1158.98], [-1917.83, -1155.98], [-1919.39, -1156.01], [-1919.53, -1150.05], [-1917.6, -1150.0], [-1917.67, -1147.07], [-1912.12, -1146.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2146.08, -1331.14], [-2146.57, -1341.69], [-2145.36, -1341.74], [-2145.72, -1349.54], [-2156.57, -1349.03], [-2155.76, -1331.69], [-2151.2, -1331.91], [-2151.16, -1330.91], [-2146.08, -1331.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2056.78, -1269.72], [-2057.01, -1275.74], [-2056.08, -1275.77], [-2056.44, -1285.18], [-2064.32, -1284.87], [-2063.78, -1270.87], [-2062.73, -1270.91], [-2062.68, -1269.48], [-2056.78, -1269.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2118.69, -1354.47], [-2126.77, -1354.43], [-2126.7, -1340.78], [-2118.63, -1340.82], [-2118.69, -1354.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1948.18, -1165.76], [-1953.81, -1165.6], [-1953.42, -1151.03], [-1944.18, -1151.27], [-1944.52, -1163.86], [-1948.13, -1163.75], [-1948.18, -1165.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1795.19, -1398.21], [-1786.13, -1398.58], [-1786.72, -1413.58], [-1795.57, -1413.33], [-1795.19, -1398.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2231.33, -1180.07], [-2235.96, -1179.93], [-2235.79, -1173.78], [-2231.15, -1173.92], [-2231.33, -1180.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2061.34, -1469.05], [-2065.08, -1468.99], [-2064.92, -1459.05], [-2056.78, -1459.18], [-2056.88, -1465.48], [-2058.65, -1465.45], [-2058.69, -1468.02], [-2061.32, -1467.97], [-2061.34, -1469.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1816.14, -1273.46], [-1816.71, -1290.64], [-1821.27, -1290.5], [-1821.16, -1287.08], [-1822.78, -1287.02], [-1822.84, -1288.65], [-1826.42, -1288.53], [-1825.91, -1273.14], [-1816.14, -1273.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1794.92, -1342.37], [-1795.66, -1357.6], [-1798.11, -1357.48], [-1798.2, -1359.48], [-1803.54, -1359.22], [-1803.45, -1357.35], [-1805.52, -1357.25], [-1804.77, -1341.9], [-1794.92, -1342.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1907.14, -1267.0], [-1893.68, -1267.43], [-1894.17, -1280.93], [-1907.74, -1280.44], [-1907.69, -1278.32], [-1916.86, -1277.99], [-1916.57, -1270.07], [-1907.28, -1270.43], [-1907.14, -1267.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1954.54, -1238.67], [-1954.25, -1230.7], [-1948.04, -1230.92], [-1948.15, -1233.8], [-1945.95, -1233.87], [-1946.17, -1238.94], [-1954.54, -1238.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2217.7, -1347.23], [-2228.43, -1347.36], [-2228.59, -1335.02], [-2222.63, -1334.94], [-2222.64, -1333.96], [-2217.88, -1333.89], [-2217.7, -1347.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1956.62, -1302.49], [-1943.54, -1302.96], [-1943.76, -1309.42], [-1956.85, -1308.95], [-1956.62, -1302.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2176.91, -1173.79], [-2177.11, -1179.85], [-2181.67, -1179.7], [-2181.47, -1173.64], [-2176.91, -1173.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2025.33, -1222.95], [-2025.94, -1234.42], [-2034.96, -1233.94], [-2034.34, -1222.47], [-2025.33, -1222.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2043.7, -1385.64], [-2043.85, -1388.48], [-2043.38, -1388.51], [-2044.05, -1401.1], [-2048.23, -1400.88], [-2048.11, -1398.61], [-2051.45, -1398.44], [-2050.83, -1386.72], [-2050.11, -1386.76], [-2050.03, -1385.31], [-2043.7, -1385.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2103.68, -1429.99], [-2103.89, -1436.44], [-2110.7, -1436.23], [-2110.49, -1429.76], [-2103.68, -1429.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2232.35, -1300.36], [-2232.18, -1294.3], [-2225.26, -1294.5], [-2225.31, -1300.56], [-2232.35, -1300.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2075.98, -1459.84], [-2076.63, -1474.98], [-2085.56, -1474.59], [-2084.91, -1459.45], [-2075.98, -1459.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2111.01, -1314.45], [-2111.35, -1320.5], [-2122.12, -1319.9], [-2122.1, -1319.56], [-2124.64, -1319.42], [-2124.2, -1311.68], [-2113.4, -1312.29], [-2113.51, -1314.32], [-2111.01, -1314.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1977.69, -1147.91], [-1978.46, -1168.75], [-1989.19, -1168.37], [-1988.43, -1147.53], [-1977.69, -1147.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1844.16, -1305.07], [-1844.54, -1311.66], [-1861.63, -1310.69], [-1861.25, -1304.1], [-1844.16, -1305.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2017.01, -1298.89], [-2017.49, -1308.57], [-2034.58, -1307.72], [-2034.11, -1298.04], [-2017.01, -1298.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1913.2, -1349.72], [-1913.68, -1357.69], [-1915.58, -1357.57], [-1915.7, -1359.55], [-1923.46, -1359.07], [-1923.24, -1355.5], [-1924.06, -1355.45], [-1923.67, -1349.08], [-1913.2, -1349.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1973.87, -1275.06], [-1962.04, -1275.49], [-1962.58, -1290.76], [-1974.42, -1290.33], [-1973.87, -1275.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2189.09, -1263.93], [-2190.1, -1279.87], [-2197.12, -1279.43], [-2196.9, -1276.02], [-2198.32, -1275.94], [-2197.55, -1263.87], [-2197.08, -1263.9], [-2196.89, -1260.98], [-2189.18, -1261.47], [-2189.33, -1263.91], [-2189.09, -1263.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2200.75, -1264.15], [-2199.53, -1264.24], [-2200.33, -1276.19], [-2208.87, -1275.62], [-2208.08, -1263.91], [-2206.42, -1264.02], [-2206.34, -1262.87], [-2200.68, -1263.24], [-2200.75, -1264.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2057.46, -1396.81], [-2057.7, -1403.48], [-2066.46, -1403.16], [-2066.3, -1398.94], [-2071.12, -1398.77], [-2070.67, -1386.59], [-2065.57, -1386.77], [-2065.64, -1388.63], [-2063.99, -1388.68], [-2064.29, -1396.56], [-2057.46, -1396.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2067.35, -1195.8], [-2067.54, -1201.9], [-2071.5, -1201.77], [-2071.31, -1195.68], [-2067.35, -1195.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1808.36, -1342.03], [-1809.66, -1356.82], [-1819.49, -1355.96], [-1817.95, -1338.42], [-1811.62, -1338.98], [-1811.87, -1341.72], [-1808.36, -1342.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2037.44, -1226.12], [-2037.91, -1234.14], [-2045.79, -1233.67], [-2045.06, -1221.22], [-2037.92, -1221.64], [-2038.17, -1226.08], [-2037.44, -1226.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2145.09, -1192.28], [-2145.69, -1199.31], [-2147.96, -1199.11], [-2148.06, -1200.25], [-2162.45, -1199.05], [-2161.67, -1189.79], [-2147.7, -1190.96], [-2147.79, -1192.06], [-2145.09, -1192.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2201.79, -1344.63], [-2212.13, -1344.76], [-2212.26, -1334.73], [-2201.91, -1334.6], [-2201.79, -1344.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2035.13, -1407.08], [-2035.61, -1419.3], [-2042.67, -1419.02], [-2042.18, -1406.8], [-2035.13, -1407.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1774.29, -1347.05], [-1774.84, -1361.46], [-1782.93, -1361.15], [-1782.38, -1346.74], [-1774.29, -1347.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1824.43, -1397.36], [-1816.21, -1397.67], [-1816.71, -1411.79], [-1824.94, -1411.57], [-1824.43, -1397.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2178.47, -1221.83], [-2179.08, -1230.58], [-2186.85, -1230.04], [-2185.9, -1216.31], [-2179.06, -1216.78], [-2179.41, -1221.77], [-2178.47, -1221.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2157.63, -1215.35], [-2157.67, -1220.62], [-2157.19, -1220.63], [-2157.26, -1230.13], [-2166.07, -1230.07], [-2166.0, -1220.45], [-2164.94, -1220.45], [-2164.92, -1217.31], [-2163.94, -1217.31], [-2163.93, -1215.3], [-2157.63, -1215.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2222.33, -1263.49], [-2222.9, -1281.0], [-2231.86, -1280.71], [-2231.29, -1263.2], [-2222.33, -1263.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1912.35, -1215.9], [-1919.23, -1215.7], [-1919.13, -1212.1], [-1912.25, -1212.3], [-1912.35, -1215.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2145.18, -1310.86], [-2145.47, -1318.51], [-2148.79, -1318.38], [-2148.9, -1321.24], [-2164.12, -1320.65], [-2163.92, -1315.38], [-2168.69, -1315.2], [-2168.51, -1310.55], [-2164.61, -1310.69], [-2164.6, -1310.13], [-2145.18, -1310.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2256.27, -1167.71], [-2262.87, -1167.58], [-2262.75, -1161.39], [-2256.15, -1161.53], [-2256.27, -1167.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2071.43, -1269.0], [-2071.55, -1271.42], [-2069.72, -1271.51], [-2070.47, -1287.4], [-2078.09, -1287.03], [-2077.3, -1270.6], [-2076.03, -1270.65], [-2075.94, -1268.78], [-2071.43, -1269.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2053.5, -1315.04], [-2054.12, -1321.62], [-2057.68, -1321.29], [-2057.06, -1314.7], [-2053.5, -1315.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1987.64, -1299.05], [-1993.87, -1298.91], [-1993.22, -1271.71], [-1981.18, -1271.99], [-1981.29, -1276.57], [-1983.04, -1276.53], [-1983.47, -1295.15], [-1987.55, -1295.06], [-1987.64, -1299.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2046.77, -1448.91], [-2047.12, -1457.29], [-2058.25, -1456.82], [-2057.89, -1448.43], [-2046.77, -1448.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1892.69, -1336.39], [-1893.09, -1345.46], [-1907.82, -1344.81], [-1907.42, -1335.74], [-1892.69, -1336.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1985.89, -1234.42], [-1995.54, -1234.34], [-1995.44, -1221.05], [-1985.78, -1221.14], [-1985.89, -1234.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1911.28, -1228.7], [-1911.71, -1236.92], [-1921.63, -1236.4], [-1921.2, -1228.18], [-1911.28, -1228.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2190.56, -1217.11], [-2190.6, -1220.47], [-2187.77, -1220.52], [-2187.92, -1230.81], [-2197.64, -1230.66], [-2197.44, -1217.01], [-2190.56, -1217.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2239.77, -1313.36], [-2239.62, -1308.18], [-2234.18, -1308.34], [-2234.34, -1313.53], [-2239.77, -1313.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1930.94, -1165.34], [-1937.82, -1165.23], [-1937.6, -1151.14], [-1930.72, -1151.24], [-1930.94, -1165.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1777.0, -1395.43], [-1777.01, -1397.17], [-1773.55, -1397.18], [-1773.59, -1406.8], [-1778.7, -1406.78], [-1778.71, -1409.37], [-1782.0, -1409.35], [-1781.95, -1395.41], [-1777.0, -1395.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1906.25, -1301.73], [-1891.41, -1302.25], [-1891.76, -1312.21], [-1906.62, -1311.73], [-1906.25, -1301.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1957.32, -1275.75], [-1942.66, -1276.28], [-1943.12, -1289.43], [-1957.79, -1288.9], [-1957.32, -1275.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2098.28, -1465.47], [-2096.13, -1465.7], [-2095.63, -1461.11], [-2093.11, -1461.38], [-2092.87, -1459.31], [-2086.64, -1459.99], [-2087.95, -1471.93], [-2089.45, -1471.77], [-2089.71, -1474.17], [-2096.51, -1473.42], [-2096.3, -1471.58], [-2098.86, -1471.3], [-2098.48, -1467.89], [-2100.28, -1467.69], [-2100.87, -1473.03], [-2108.23, -1472.22], [-2106.72, -1458.5], [-2100.08, -1459.23], [-2100.37, -1461.85], [-2097.92, -1462.12], [-2098.28, -1465.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1797.7, -1422.81], [-1798.07, -1430.98], [-1803.24, -1430.75], [-1802.94, -1424.16], [-1801.33, -1424.22], [-1801.25, -1422.64], [-1797.7, -1422.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2026.03, -1334.69], [-2017.56, -1334.99], [-2017.72, -1340.92], [-2026.24, -1340.61], [-2026.03, -1334.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1816.62, -1450.11], [-1823.96, -1450.2], [-1824.04, -1443.68], [-1816.7, -1443.59], [-1816.62, -1450.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2102.51, -1174.86], [-2103.14, -1183.97], [-2115.31, -1183.14], [-2114.68, -1174.04], [-2102.51, -1174.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2179.4, -1261.63], [-2180.06, -1276.94], [-2188.16, -1276.58], [-2187.63, -1264.19], [-2185.94, -1264.28], [-2185.81, -1261.36], [-2179.4, -1261.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1978.86, -1193.89], [-1979.04, -1203.13], [-1992.76, -1202.84], [-1992.72, -1201.11], [-1994.74, -1201.06], [-1994.63, -1195.5], [-1991.85, -1195.56], [-1991.81, -1193.63], [-1978.86, -1193.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1790.17, -1350.94], [-1790.08, -1348.3], [-1784.31, -1348.45], [-1784.84, -1363.13], [-1791.82, -1362.89], [-1791.67, -1358.74], [-1793.1, -1358.68], [-1792.88, -1350.84], [-1790.17, -1350.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1792.32, -1321.86], [-1792.51, -1327.85], [-1802.2, -1327.52], [-1802.01, -1321.55], [-1792.32, -1321.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2071.4, -1298.67], [-2071.59, -1305.54], [-2076.96, -1305.38], [-2076.76, -1298.52], [-2071.4, -1298.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2188.17, -1198.19], [-2195.13, -1197.97], [-2194.92, -1191.47], [-2187.96, -1191.69], [-2188.17, -1198.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1946.5, -1223.64], [-1941.59, -1223.83], [-1941.75, -1229.74], [-1942.54, -1229.71], [-1942.63, -1232.37], [-1947.43, -1232.2], [-1947.19, -1225.37], [-1946.55, -1225.4], [-1946.5, -1223.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2011.82, -1146.82], [-2012.33, -1162.54], [-2021.62, -1162.24], [-2021.1, -1146.52], [-2011.82, -1146.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1823.4, -1299.95], [-1829.9, -1300.0], [-1829.94, -1293.72], [-1823.44, -1293.67], [-1823.4, -1299.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2045.29, -1456.18], [-2039.13, -1456.4], [-2039.7, -1472.57], [-2045.79, -1472.36], [-2045.54, -1465.27], [-2047.01, -1465.22], [-2046.87, -1461.31], [-2045.46, -1461.35], [-2045.29, -1456.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2144.53, -1265.05], [-2145.05, -1280.86], [-2147.09, -1280.79], [-2147.16, -1282.82], [-2152.77, -1282.63], [-2152.69, -1279.95], [-2154.15, -1279.91], [-2153.65, -1264.76], [-2144.53, -1265.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1803.03, -1283.81], [-1807.92, -1283.76], [-1807.8, -1272.43], [-1795.99, -1272.56], [-1796.06, -1279.28], [-1802.98, -1279.21], [-1803.03, -1283.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2262.6, -1189.62], [-2253.44, -1189.94], [-2253.62, -1195.76], [-2250.79, -1195.86], [-2250.96, -1200.53], [-2253.49, -1200.52], [-2253.53, -1201.58], [-2262.95, -1201.24], [-2262.6, -1189.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2108.73, -1204.06], [-2109.08, -1214.73], [-2118.69, -1214.41], [-2118.57, -1210.83], [-2121.26, -1210.75], [-2121.01, -1202.93], [-2117.17, -1203.05], [-2117.2, -1203.78], [-2108.73, -1204.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1892.55, -1190.79], [-1903.47, -1190.75], [-1903.43, -1178.1], [-1892.51, -1178.12], [-1892.55, -1190.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2159.4, -1171.05], [-2159.65, -1178.14], [-2164.18, -1177.97], [-2163.92, -1170.89], [-2159.4, -1171.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2198.33, -1311.85], [-2198.54, -1319.38], [-2207.93, -1319.11], [-2207.71, -1311.57], [-2198.33, -1311.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2112.78, -1429.09], [-2128.11, -1429.24], [-2128.19, -1420.95], [-2112.86, -1420.8], [-2112.78, -1429.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1782.31, -1272.14], [-1782.4, -1274.88], [-1781.09, -1274.93], [-1781.39, -1284.38], [-1790.84, -1284.07], [-1790.52, -1274.26], [-1786.21, -1274.41], [-1786.14, -1272.01], [-1782.31, -1272.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1928.54, -1219.61], [-1922.94, -1219.81], [-1923.16, -1226.18], [-1928.78, -1226.0], [-1928.54, -1219.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1807.37, -1468.11], [-1807.5, -1470.76], [-1804.96, -1470.88], [-1805.48, -1481.95], [-1807.41, -1481.86], [-1807.49, -1483.36], [-1813.94, -1483.06], [-1813.84, -1480.96], [-1815.22, -1480.89], [-1814.71, -1470.21], [-1813.2, -1470.29], [-1813.08, -1467.84], [-1807.37, -1468.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1764.48, -1396.67], [-1764.59, -1400.79], [-1762.17, -1400.86], [-1762.29, -1405.25], [-1765.49, -1405.17], [-1765.62, -1410.01], [-1772.15, -1409.83], [-1771.79, -1396.48], [-1764.48, -1396.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2077.78, -1178.22], [-2078.01, -1185.24], [-2084.33, -1185.03], [-2084.1, -1178.01], [-2077.78, -1178.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1919.07, -1169.8], [-1911.33, -1170.08], [-1911.54, -1175.97], [-1919.28, -1175.7], [-1919.07, -1169.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2053.43, -1145.77], [-2053.47, -1148.15], [-2052.53, -1148.17], [-2052.75, -1161.71], [-2062.6, -1161.55], [-2062.36, -1146.96], [-2060.41, -1147.0], [-2060.39, -1145.66], [-2053.43, -1145.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2231.05, -1207.35], [-2241.89, -1207.16], [-2241.81, -1203.14], [-2230.98, -1203.33], [-2231.05, -1207.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2021.37, -1422.77], [-2021.86, -1430.25], [-2033.06, -1429.52], [-2032.57, -1422.04], [-2021.37, -1422.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2062.99, -1354.12], [-2071.57, -1354.07], [-2071.47, -1338.33], [-2062.89, -1338.39], [-2062.99, -1354.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1786.12, -1322.85], [-1786.49, -1330.51], [-1791.03, -1330.29], [-1790.66, -1322.63], [-1786.12, -1322.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2073.22, -1203.55], [-2080.53, -1203.23], [-2080.19, -1195.24], [-2072.88, -1195.55], [-2073.22, -1203.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1823.6, -1344.46], [-1823.91, -1353.74], [-1838.07, -1353.28], [-1837.77, -1344.0], [-1823.6, -1344.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2264.97, -1258.54], [-2247.55, -1259.16], [-2247.89, -1268.51], [-2265.3, -1267.89], [-2264.97, -1258.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1925.6, -1342.76], [-1926.07, -1357.01], [-1932.9, -1356.79], [-1932.44, -1342.54], [-1925.6, -1342.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1889.08, -1158.45], [-1905.62, -1158.3], [-1905.53, -1147.63], [-1888.99, -1147.76], [-1889.08, -1158.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2230.71, -1173.79], [-2224.43, -1174.02], [-2224.64, -1180.18], [-2230.92, -1179.97], [-2230.71, -1173.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2043.71, -1433.72], [-2038.58, -1433.94], [-2038.98, -1443.24], [-2044.1, -1443.04], [-2043.71, -1433.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2147.6, -1323.97], [-2147.73, -1327.88], [-2155.79, -1327.62], [-2155.66, -1323.71], [-2147.6, -1323.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2108.52, -1340.25], [-2108.61, -1347.91], [-2108.43, -1347.92], [-2108.52, -1355.91], [-2116.15, -1355.82], [-2116.08, -1348.22], [-2116.49, -1348.21], [-2116.42, -1341.64], [-2113.3, -1341.68], [-2113.29, -1340.19], [-2108.52, -1340.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2066.14, -1195.69], [-2058.06, -1195.98], [-2058.3, -1202.56], [-2066.38, -1202.28], [-2066.14, -1195.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2118.99, -1400.38], [-2126.78, -1400.21], [-2126.46, -1385.47], [-2123.03, -1385.54], [-2122.99, -1383.39], [-2118.62, -1383.49], [-2118.99, -1400.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2089.63, -1267.83], [-2089.79, -1270.83], [-2088.69, -1270.88], [-2089.24, -1281.51], [-2092.31, -1281.36], [-2092.34, -1281.95], [-2097.96, -1281.65], [-2097.31, -1269.04], [-2095.2, -1269.15], [-2095.11, -1267.54], [-2089.63, -1267.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2053.17, -1337.9], [-2054.01, -1351.07], [-2060.83, -1350.64], [-2060.68, -1348.28], [-2062.34, -1348.17], [-2061.92, -1341.75], [-2061.43, -1341.77], [-2061.16, -1337.38], [-2053.17, -1337.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2252.53, -1314.36], [-2252.32, -1307.44], [-2244.55, -1307.66], [-2244.75, -1314.58], [-2252.53, -1314.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1900.23, -1214.88], [-1900.19, -1216.7], [-1889.68, -1216.48], [-1889.51, -1224.88], [-1895.38, -1225.0], [-1895.34, -1226.59], [-1899.71, -1226.69], [-1899.77, -1223.76], [-1904.11, -1223.86], [-1904.19, -1220.05], [-1906.24, -1220.1], [-1906.35, -1215.0], [-1900.23, -1214.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2246.97, -1328.91], [-2247.08, -1333.27], [-2244.01, -1333.34], [-2244.33, -1346.47], [-2248.84, -1346.36], [-2248.86, -1347.61], [-2253.2, -1347.51], [-2252.75, -1328.77], [-2246.97, -1328.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2145.88, -1144.78], [-2146.24, -1153.16], [-2159.46, -1152.6], [-2159.11, -1144.22], [-2145.88, -1144.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2167.24, -1172.13], [-2167.49, -1179.83], [-2175.44, -1179.57], [-2175.19, -1171.87], [-2167.24, -1172.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1765.43, -1441.11], [-1765.6, -1449.63], [-1774.91, -1449.44], [-1774.89, -1448.46], [-1778.78, -1448.38], [-1778.62, -1440.85], [-1765.43, -1441.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2034.19, -1337.69], [-2034.27, -1340.72], [-2032.4, -1340.77], [-2032.72, -1353.16], [-2040.46, -1352.95], [-2040.12, -1339.96], [-2038.64, -1339.99], [-2038.58, -1337.57], [-2034.19, -1337.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2254.45, -1308.66], [-2254.66, -1314.93], [-2261.09, -1314.72], [-2260.89, -1308.45], [-2254.45, -1308.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1762.05, -1344.63], [-1762.31, -1348.82], [-1770.55, -1348.31], [-1770.29, -1344.13], [-1762.05, -1344.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1830.4, -1288.11], [-1840.43, -1288.07], [-1840.35, -1270.8], [-1830.33, -1270.84], [-1830.4, -1288.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1866.28, -1268.89], [-1847.92, -1269.55], [-1848.23, -1278.12], [-1866.59, -1277.46], [-1866.28, -1268.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1852.49, -1464.55], [-1852.82, -1470.7], [-1857.25, -1470.47], [-1857.31, -1471.67], [-1866.67, -1471.18], [-1868.96, -1471.06], [-1868.6, -1464.19], [-1866.71, -1464.29], [-1866.63, -1462.82], [-1857.11, -1463.32], [-1857.15, -1464.29], [-1852.49, -1464.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1845.98, -1396.82], [-1846.26, -1405.22], [-1866.29, -1404.56], [-1866.02, -1396.17], [-1845.98, -1396.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2232.69, -1261.2], [-2233.32, -1270.63], [-2241.83, -1270.06], [-2241.19, -1260.62], [-2232.69, -1261.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1980.1, -1181.88], [-1980.3, -1189.58], [-1987.51, -1189.4], [-1987.49, -1188.31], [-1990.98, -1188.21], [-1990.67, -1176.06], [-1977.4, -1176.41], [-1977.54, -1181.94], [-1980.1, -1181.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2079.23, -1270.55], [-2080.09, -1285.47], [-2085.09, -1285.18], [-2084.91, -1282.14], [-2087.38, -1282.0], [-2086.62, -1268.74], [-2081.95, -1269.01], [-2082.03, -1270.39], [-2079.23, -1270.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1936.0, -1224.76], [-1931.58, -1224.92], [-1931.66, -1227.09], [-1930.22, -1227.14], [-1930.38, -1231.51], [-1926.77, -1231.63], [-1927.06, -1239.61], [-1938.07, -1239.21], [-1937.53, -1225.79], [-1936.03, -1225.83], [-1936.0, -1224.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1804.87, -1406.29], [-1813.03, -1406.22], [-1812.94, -1395.87], [-1804.78, -1395.94], [-1804.87, -1406.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2202.85, -1140.75], [-2202.93, -1143.03], [-2202.11, -1143.05], [-2202.27, -1147.86], [-2200.31, -1147.93], [-2200.44, -1151.91], [-2201.58, -1151.88], [-2201.72, -1156.03], [-2210.59, -1155.74], [-2210.11, -1141.0], [-2208.73, -1141.05], [-2208.71, -1140.56], [-2202.85, -1140.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2072.17, -1391.65], [-2072.78, -1401.34], [-2081.52, -1400.8], [-2080.49, -1384.12], [-2073.05, -1384.58], [-2073.49, -1391.57], [-2072.17, -1391.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2145.12, -1168.44], [-2157.09, -1168.21], [-2156.94, -1160.02], [-2144.96, -1160.25], [-2145.12, -1168.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2231.98, -1141.05], [-2232.48, -1153.47], [-2242.14, -1153.08], [-2241.63, -1140.66], [-2231.98, -1141.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2109.58, -1385.9], [-2110.27, -1397.37], [-2117.54, -1396.93], [-2116.84, -1385.46], [-2109.58, -1385.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2258.44, -1342.65], [-2266.57, -1342.67], [-2266.59, -1328.24], [-2258.45, -1328.23], [-2258.44, -1342.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1831.29, -1396.0], [-1831.59, -1405.45], [-1839.98, -1405.18], [-1839.67, -1395.73], [-1831.29, -1396.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2109.79, -1459.87], [-2110.17, -1471.83], [-2112.94, -1471.74], [-2113.04, -1474.76], [-2119.55, -1474.54], [-2119.07, -1459.56], [-2109.79, -1459.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1936.36, -1276.41], [-1932.07, -1276.56], [-1932.03, -1275.45], [-1925.82, -1275.67], [-1926.23, -1292.3], [-1936.94, -1291.92], [-1936.36, -1276.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1760.08, -1321.26], [-1760.41, -1329.68], [-1773.68, -1329.16], [-1773.35, -1320.75], [-1760.08, -1321.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2100.6, -1266.3], [-2101.1, -1276.56], [-2110.34, -1276.12], [-2109.84, -1265.86], [-2100.6, -1266.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2120.69, -1475.12], [-2129.18, -1474.89], [-2128.72, -1458.27], [-2120.23, -1458.5], [-2120.69, -1475.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2221.34, -1229.99], [-2230.63, -1229.84], [-2230.45, -1219.41], [-2221.16, -1219.56], [-2221.34, -1229.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1846.26, -1474.02], [-1846.54, -1481.29], [-1853.05, -1481.05], [-1853.08, -1481.94], [-1867.73, -1481.38], [-1867.46, -1474.07], [-1854.39, -1474.56], [-1854.36, -1473.71], [-1846.26, -1474.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1992.73, -1319.8], [-1980.3, -1320.25], [-1980.54, -1326.92], [-1992.97, -1326.48], [-1992.73, -1319.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2258.59, -1217.68], [-2258.95, -1228.67], [-2260.01, -1228.63], [-2260.08, -1230.83], [-2266.76, -1230.61], [-2266.33, -1217.42], [-2258.59, -1217.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2072.68, -1341.25], [-2072.85, -1346.14], [-2073.58, -1346.12], [-2073.75, -1351.65], [-2080.84, -1351.42], [-2080.5, -1341.16], [-2078.87, -1341.21], [-2078.78, -1338.36], [-2073.49, -1338.54], [-2073.58, -1341.23], [-2072.68, -1341.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1953.02, -1319.48], [-1953.59, -1326.63], [-1960.52, -1326.09], [-1959.95, -1318.93], [-1953.02, -1319.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2178.83, -1143.82], [-2179.16, -1153.99], [-2187.79, -1153.71], [-2187.48, -1144.18], [-2185.2, -1144.26], [-2185.07, -1140.43], [-2180.1, -1140.59], [-2180.21, -1143.77], [-2178.83, -1143.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1892.03, -1287.01], [-1892.44, -1296.26], [-1906.77, -1295.63], [-1906.36, -1286.38], [-1892.03, -1287.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1828.38, -1322.39], [-1828.72, -1329.64], [-1834.87, -1329.37], [-1834.77, -1327.23], [-1837.94, -1327.09], [-1837.65, -1320.83], [-1834.15, -1320.98], [-1834.2, -1322.12], [-1828.38, -1322.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1974.3, -1338.58], [-1962.56, -1339.0], [-1963.15, -1355.55], [-1974.89, -1355.13], [-1974.3, -1338.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1919.17, -1302.23], [-1912.68, -1302.46], [-1912.93, -1309.59], [-1919.38, -1309.34], [-1919.17, -1302.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2255.78, -1179.41], [-2262.78, -1179.36], [-2262.7, -1168.32], [-2252.75, -1168.38], [-2252.8, -1177.75], [-2255.76, -1177.73], [-2255.78, -1179.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2109.49, -1144.6], [-2109.66, -1149.81], [-2108.99, -1149.84], [-2109.32, -1159.17], [-2110.07, -1159.15], [-2110.2, -1162.91], [-2117.8, -1162.64], [-2117.77, -1162.04], [-2118.77, -1162.01], [-2118.23, -1144.32], [-2109.49, -1144.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2075.21, -1315.67], [-2071.94, -1315.76], [-2072.13, -1322.18], [-2075.39, -1322.09], [-2075.21, -1315.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1916.28, -1329.03], [-1923.54, -1329.05], [-1923.55, -1317.43], [-1916.3, -1317.42], [-1916.28, -1329.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1812.51, -1327.88], [-1818.0, -1327.77], [-1817.88, -1321.42], [-1812.39, -1321.53], [-1812.51, -1327.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2119.93, -1404.72], [-2120.02, -1408.28], [-2115.85, -1408.4], [-2116.09, -1417.45], [-2126.35, -1417.18], [-2126.02, -1404.55], [-2119.93, -1404.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2097.85, -1336.68], [-2098.03, -1340.34], [-2097.59, -1340.36], [-2098.08, -1350.28], [-2105.82, -1349.9], [-2105.31, -1339.52], [-2103.73, -1339.59], [-2103.58, -1336.4], [-2097.85, -1336.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2214.23, -1299.87], [-2221.48, -1299.79], [-2221.41, -1293.18], [-2214.16, -1293.25], [-2214.23, -1299.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1761.86, -1275.32], [-1761.92, -1277.94], [-1760.54, -1277.97], [-1760.72, -1286.05], [-1767.28, -1285.9], [-1767.4, -1291.05], [-1774.85, -1290.88], [-1774.7, -1284.44], [-1773.87, -1284.47], [-1773.66, -1275.05], [-1761.86, -1275.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1966.92, -1148.57], [-1967.12, -1153.51], [-1965.68, -1153.57], [-1965.97, -1160.79], [-1974.67, -1160.45], [-1974.22, -1149.21], [-1970.72, -1149.35], [-1970.68, -1148.41], [-1966.92, -1148.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1826.7, -1425.36], [-1819.28, -1425.55], [-1819.57, -1433.54], [-1826.96, -1433.46], [-1826.7, -1425.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2180.98, -1293.02], [-2181.38, -1300.34], [-2187.41, -1300.01], [-2187.01, -1292.69], [-2180.98, -1293.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2146.39, -1291.98], [-2146.5, -1295.06], [-2148.94, -1294.99], [-2149.21, -1303.13], [-2156.13, -1302.9], [-2156.04, -1300.3], [-2158.49, -1300.22], [-2158.2, -1291.59], [-2146.39, -1291.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2092.05, -1411.94], [-2101.12, -1411.89], [-2101.07, -1402.68], [-2092.0, -1402.74], [-2092.05, -1411.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2018.98, -1392.16], [-2019.23, -1397.38], [-2020.27, -1397.33], [-2020.61, -1404.31], [-2029.29, -1403.88], [-2028.55, -1388.59], [-2020.86, -1388.95], [-2021.0, -1392.06], [-2018.98, -1392.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2243.8, -1289.28], [-2244.12, -1299.38], [-2252.35, -1299.11], [-2252.38, -1300.17], [-2261.58, -1299.87], [-2261.57, -1299.54], [-2265.65, -1299.41], [-2265.33, -1289.72], [-2260.69, -1289.87], [-2260.67, -1289.38], [-2253.02, -1289.64], [-2253.0, -1288.98], [-2243.8, -1289.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1947.28, -1199.5], [-1941.57, -1199.69], [-1941.81, -1207.05], [-1947.52, -1206.86], [-1947.28, -1199.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2028.8, -1353.17], [-2028.42, -1342.72], [-2018.73, -1343.07], [-2018.99, -1350.84], [-2020.9, -1350.76], [-2021.01, -1353.49], [-2028.8, -1353.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1766.52, -1457.3], [-1766.59, -1460.56], [-1763.23, -1460.63], [-1763.36, -1466.89], [-1776.66, -1466.61], [-1776.56, -1461.22], [-1773.45, -1461.29], [-1773.37, -1457.16], [-1766.52, -1457.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1847.41, -1287.3], [-1847.74, -1294.84], [-1862.88, -1294.18], [-1862.67, -1289.31], [-1863.4, -1289.28], [-1863.18, -1284.3], [-1853.02, -1284.74], [-1853.12, -1287.06], [-1847.41, -1287.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2067.81, -1472.0], [-2075.29, -1471.91], [-2075.2, -1464.09], [-2067.72, -1464.18], [-2067.81, -1472.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2023.24, -1269.65], [-2023.37, -1276.46], [-2021.37, -1276.49], [-2021.43, -1279.66], [-2022.9, -1279.63], [-2023.03, -1286.77], [-2030.64, -1286.63], [-2030.32, -1269.52], [-2023.24, -1269.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2045.38, -1291.11], [-2050.26, -1291.12], [-2050.29, -1281.99], [-2045.41, -1281.97], [-2045.38, -1291.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2169.61, -1328.84], [-2175.8, -1328.73], [-2175.69, -1322.89], [-2169.5, -1323.01], [-2169.61, -1328.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2111.51, -1306.04], [-2122.75, -1305.83], [-2122.58, -1296.66], [-2111.34, -1296.87], [-2111.51, -1306.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2229.01, -1315.63], [-2233.2, -1315.58], [-2233.12, -1309.48], [-2228.93, -1309.54], [-2229.01, -1315.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2200.31, -1163.54], [-2200.49, -1169.67], [-2206.99, -1169.49], [-2206.8, -1163.36], [-2200.31, -1163.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2190.83, -1149.06], [-2191.08, -1153.53], [-2198.86, -1153.1], [-2198.23, -1141.39], [-2191.45, -1141.76], [-2191.84, -1149.01], [-2190.83, -1149.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1936.15, -1317.6], [-1936.67, -1325.99], [-1942.97, -1325.6], [-1942.45, -1317.22], [-1936.15, -1317.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1758.68, -1350.9], [-1759.21, -1364.43], [-1768.97, -1364.05], [-1768.88, -1361.73], [-1771.41, -1361.64], [-1770.98, -1350.41], [-1758.68, -1350.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1979.87, -1307.44], [-1986.85, -1307.29], [-1986.7, -1300.45], [-1979.73, -1300.59], [-1979.87, -1307.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2166.29, -1153.68], [-2176.53, -1153.51], [-2176.36, -1143.41], [-2166.12, -1143.57], [-2166.29, -1153.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1851.73, -1455.66], [-1851.92, -1461.2], [-1858.18, -1460.99], [-1858.21, -1461.81], [-1868.88, -1461.46], [-1868.82, -1459.66], [-1867.85, -1459.7], [-1867.73, -1456.11], [-1864.96, -1456.2], [-1864.94, -1455.39], [-1857.44, -1455.64], [-1857.43, -1455.47], [-1851.73, -1455.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2037.49, -1271.84], [-2037.98, -1280.5], [-2047.64, -1279.95], [-2047.19, -1272.08], [-2044.83, -1272.22], [-2044.64, -1268.89], [-2039.04, -1269.2], [-2039.19, -1271.73], [-2037.49, -1271.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1974.43, -1223.05], [-1974.89, -1234.61], [-1983.37, -1234.28], [-1982.95, -1223.75], [-1980.82, -1223.84], [-1980.72, -1221.46], [-1975.94, -1221.64], [-1975.99, -1223.0], [-1974.43, -1223.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1836.02, -1297.99], [-1842.54, -1297.95], [-1842.5, -1291.76], [-1835.98, -1291.8], [-1836.02, -1297.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1835.46, -1471.27], [-1835.76, -1480.71], [-1843.01, -1480.48], [-1842.7, -1471.03], [-1835.46, -1471.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2065.93, -1448.89], [-2066.23, -1455.49], [-2071.23, -1455.25], [-2070.94, -1448.66], [-2065.93, -1448.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2109.18, -1166.32], [-2109.37, -1173.0], [-2118.61, -1172.62], [-2118.37, -1165.95], [-2109.18, -1166.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2244.81, -1140.29], [-2245.6, -1158.34], [-2252.35, -1158.05], [-2252.24, -1155.45], [-2253.21, -1155.41], [-2252.56, -1140.27], [-2251.43, -1140.31], [-2251.41, -1140.01], [-2244.81, -1140.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1976.91, -1301.32], [-1964.09, -1301.79], [-1964.35, -1309.16], [-1977.18, -1308.7], [-1976.91, -1301.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2044.35, -1342.1], [-2044.83, -1352.02], [-2045.53, -1351.99], [-2045.63, -1354.12], [-2050.93, -1353.87], [-2050.8, -1351.25], [-2051.44, -1351.22], [-2050.97, -1341.77], [-2044.35, -1342.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2048.22, -1223.24], [-2048.56, -1233.74], [-2055.4, -1233.51], [-2055.06, -1223.02], [-2048.22, -1223.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2068.14, -1222.83], [-2059.25, -1223.14], [-2059.41, -1227.78], [-2057.84, -1227.85], [-2057.97, -1231.7], [-2059.46, -1231.64], [-2059.53, -1233.92], [-2059.56, -1234.7], [-2068.56, -1234.38], [-2068.14, -1222.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1907.1, -1163.06], [-1888.7, -1163.68], [-1888.8, -1166.76], [-1887.71, -1166.8], [-1887.83, -1170.05], [-1888.92, -1170.01], [-1889.01, -1172.46], [-1907.42, -1171.84], [-1907.39, -1170.95], [-1909.85, -1170.86], [-1909.65, -1164.85], [-1907.17, -1164.94], [-1907.1, -1163.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2155.81, -1159.44], [-2164.36, -1159.25], [-2164.26, -1154.64], [-2155.71, -1154.84], [-2155.81, -1159.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1920.74, -1181.12], [-1921.22, -1188.76], [-1939.45, -1187.6], [-1938.96, -1179.96], [-1920.74, -1181.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2252.16, -1270.76], [-2252.63, -1280.25], [-2264.84, -1279.64], [-2264.78, -1278.42], [-2267.13, -1278.29], [-2266.73, -1270.03], [-2252.16, -1270.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2047.77, -1320.73], [-2052.29, -1320.64], [-2052.17, -1314.7], [-2047.66, -1314.78], [-2047.77, -1320.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2206.52, -1215.78], [-2206.64, -1219.29], [-2205.42, -1219.32], [-2205.79, -1230.81], [-2214.58, -1230.52], [-2214.2, -1218.55], [-2212.73, -1218.59], [-2212.63, -1215.58], [-2206.52, -1215.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1776.03, -1292.46], [-1782.25, -1292.37], [-1782.16, -1286.03], [-1775.94, -1286.12], [-1776.03, -1292.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2158.18, -1330.44], [-2158.76, -1351.72], [-2165.54, -1351.52], [-2165.48, -1349.45], [-2169.06, -1349.36], [-2168.62, -1333.72], [-2164.3, -1333.83], [-2164.21, -1330.28], [-2158.18, -1330.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2179.05, -1315.98], [-2178.88, -1310.43], [-2172.96, -1310.6], [-2173.12, -1316.15], [-2179.05, -1315.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1956.82, -1199.42], [-1953.97, -1199.52], [-1954.19, -1206.56], [-1957.07, -1206.47], [-1956.82, -1199.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2067.04, -1179.1], [-2067.31, -1185.45], [-2073.14, -1185.21], [-2072.87, -1178.85], [-2067.04, -1179.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1894.82, -1207.24], [-1904.18, -1207.22], [-1904.15, -1197.64], [-1890.62, -1197.67], [-1890.64, -1205.27], [-1894.81, -1205.26], [-1894.82, -1207.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1848.1, -1326.06], [-1848.38, -1336.03], [-1861.57, -1335.66], [-1861.35, -1327.77], [-1860.56, -1327.8], [-1860.5, -1325.71], [-1848.1, -1326.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2019.78, -1315.17], [-2020.13, -1329.52], [-2030.07, -1329.27], [-2029.89, -1322.16], [-2032.88, -1322.09], [-2032.72, -1315.36], [-2029.52, -1315.43], [-2029.51, -1314.93], [-2019.78, -1315.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1784.24, -1424.94], [-1784.56, -1431.32], [-1796.88, -1430.71], [-1796.41, -1421.19], [-1785.94, -1421.7], [-1786.09, -1424.85], [-1784.24, -1424.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2158.69, -1290.72], [-2161.45, -1290.67], [-2161.06, -1283.77], [-2164.2, -1283.6], [-2164.04, -1280.8], [-2165.56, -1280.71], [-2164.52, -1262.71], [-2161.52, -1262.88], [-2161.57, -1263.68], [-2156.21, -1263.97], [-2156.81, -1274.44], [-2155.93, -1274.49], [-2156.17, -1278.69], [-2154.91, -1278.77], [-2155.56, -1290.09], [-2158.64, -1289.91], [-2158.69, -1290.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2171.4, -1300.76], [-2179.28, -1300.68], [-2179.21, -1293.51], [-2171.33, -1293.59], [-2171.4, -1300.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1770.12, -1422.7], [-1770.08, -1428.88], [-1767.4, -1428.86], [-1767.34, -1436.82], [-1777.19, -1436.9], [-1777.22, -1432.9], [-1780.24, -1432.92], [-1780.31, -1422.77], [-1770.12, -1422.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1834.67, -1443.08], [-1834.97, -1449.91], [-1840.45, -1449.67], [-1840.15, -1442.83], [-1834.67, -1443.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2087.37, -1331.81], [-2087.52, -1336.37], [-2083.29, -1336.5], [-2083.85, -1353.68], [-2092.73, -1353.39], [-2092.14, -1335.48], [-2091.73, -1335.49], [-2091.61, -1331.67], [-2087.37, -1331.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1825.67, -1466.13], [-1826.62, -1482.72], [-1834.61, -1482.27], [-1833.67, -1465.67], [-1825.67, -1466.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1993.37, -1338.26], [-1981.1, -1338.7], [-1981.67, -1354.57], [-1993.94, -1354.13], [-1993.37, -1338.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2244.71, -1230.2], [-2253.86, -1229.97], [-2253.59, -1219.22], [-2244.44, -1219.45], [-2244.71, -1230.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2025.55, -1454.91], [-2026.09, -1462.13], [-2024.6, -1462.24], [-2025.18, -1470.12], [-2031.35, -1469.67], [-2030.93, -1464.03], [-2032.12, -1463.94], [-2031.78, -1459.3], [-2029.49, -1459.46], [-2029.13, -1454.64], [-2025.55, -1454.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2229.71, -1142.89], [-2222.04, -1143.17], [-2222.1, -1144.71], [-2221.39, -1144.73], [-2221.49, -1147.32], [-2220.97, -1147.33], [-2221.13, -1151.84], [-2221.74, -1151.82], [-2221.82, -1153.52], [-2226.14, -1153.36], [-2226.18, -1154.63], [-2230.18, -1154.46], [-2229.71, -1142.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2089.36, -1316.88], [-2083.0, -1317.06], [-2083.18, -1323.26], [-2089.54, -1323.06], [-2089.36, -1316.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1760.7, -1332.74], [-1761.02, -1340.98], [-1774.41, -1340.47], [-1774.29, -1337.59], [-1776.68, -1337.5], [-1776.52, -1333.44], [-1774.43, -1333.52], [-1774.37, -1332.21], [-1760.7, -1332.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2168.7, -1280.9], [-2178.32, -1280.62], [-2177.78, -1261.64], [-2168.15, -1261.92], [-2168.7, -1280.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2168.8, -1219.02], [-2168.82, -1224.79], [-2167.56, -1224.79], [-2167.59, -1232.04], [-2174.27, -1232.01], [-2174.25, -1228.38], [-2174.97, -1228.37], [-2174.96, -1224.91], [-2173.89, -1224.92], [-2173.87, -1219.0], [-2168.8, -1219.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2097.81, -1390.33], [-2098.2, -1399.36], [-2106.25, -1399.01], [-2105.59, -1383.87], [-2099.25, -1384.15], [-2099.52, -1390.25], [-2097.81, -1390.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1946.26, -1338.67], [-1946.63, -1347.78], [-1949.68, -1347.65], [-1950.0, -1355.43], [-1959.86, -1355.01], [-1959.56, -1347.72], [-1961.57, -1347.64], [-1961.38, -1343.0], [-1959.26, -1343.09], [-1958.86, -1333.32], [-1951.2, -1333.64], [-1951.4, -1338.45], [-1946.26, -1338.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1924.96, -1318.28], [-1925.51, -1327.47], [-1932.31, -1327.07], [-1931.76, -1317.87], [-1924.96, -1318.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1757.54, -1303.47], [-1758.17, -1311.46], [-1773.15, -1310.27], [-1772.95, -1307.63], [-1780.52, -1307.04], [-1780.04, -1301.05], [-1771.26, -1301.75], [-1771.31, -1302.39], [-1757.54, -1303.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1959.28, -1201.57], [-1965.51, -1201.72], [-1965.65, -1195.98], [-1959.42, -1195.83], [-1959.28, -1201.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2036.73, -1301.21], [-2037.01, -1305.37], [-2040.95, -1305.12], [-2041.06, -1306.77], [-2051.57, -1306.08], [-2051.05, -1298.4], [-2040.34, -1299.11], [-2040.46, -1300.96], [-2036.73, -1301.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1798.12, -1443.06], [-1798.47, -1451.44], [-1806.1, -1451.12], [-1805.75, -1442.73], [-1798.12, -1443.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2053.82, -1299.12], [-2054.13, -1306.13], [-2058.73, -1305.92], [-2058.42, -1298.92], [-2053.82, -1299.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2099.54, -1219.76], [-2099.97, -1232.96], [-2100.95, -1232.93], [-2100.99, -1234.15], [-2107.83, -1233.92], [-2107.78, -1232.54], [-2108.68, -1232.51], [-2108.26, -1219.48], [-2099.54, -1219.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2088.37, -1296.84], [-2088.69, -1303.15], [-2092.6, -1302.95], [-2092.73, -1305.35], [-2099.86, -1304.98], [-2099.42, -1296.28], [-2088.37, -1296.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1902.85, -1227.36], [-1903.32, -1234.2], [-1908.27, -1233.85], [-1907.8, -1227.02], [-1902.85, -1227.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2112.52, -1436.63], [-2112.71, -1442.25], [-2119.96, -1442.01], [-2120.17, -1448.68], [-2126.77, -1448.47], [-2126.33, -1434.87], [-2116.88, -1435.18], [-2116.92, -1436.48], [-2112.52, -1436.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2039.05, -1144.58], [-2039.15, -1147.07], [-2038.48, -1147.1], [-2039.03, -1161.24], [-2048.88, -1160.85], [-2048.32, -1146.36], [-2046.77, -1146.42], [-2046.69, -1144.29], [-2039.05, -1144.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1892.64, -1347.09], [-1893.07, -1359.96], [-1904.96, -1359.58], [-1904.54, -1346.71], [-1892.64, -1347.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2064.17, -1150.43], [-2064.64, -1160.13], [-2066.68, -1160.03], [-2066.74, -1161.54], [-2074.89, -1161.15], [-2074.13, -1145.45], [-2066.36, -1145.81], [-2066.58, -1150.32], [-2064.17, -1150.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2084.8, -1233.32], [-2093.13, -1233.1], [-2092.79, -1220.23], [-2084.46, -1220.45], [-2084.8, -1233.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1936.06, -1343.39], [-1936.63, -1356.01], [-1943.66, -1355.69], [-1943.09, -1343.08], [-1936.06, -1343.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2233.18, -1333.5], [-2233.59, -1344.31], [-2240.21, -1344.06], [-2240.27, -1345.73], [-2242.22, -1345.67], [-2241.62, -1330.19], [-2235.52, -1330.42], [-2235.64, -1333.41], [-2233.18, -1333.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2187.1, -1320.82], [-2197.08, -1320.15], [-2196.72, -1311.89], [-2186.74, -1312.55], [-2187.1, -1320.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2012.76, -1196.83], [-2013.1, -1202.3], [-2016.35, -1202.1], [-2016.38, -1202.67], [-2027.39, -1201.99], [-2026.87, -1193.45], [-2016.01, -1194.12], [-2016.16, -1196.63], [-2012.76, -1196.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2112.6, -1275.16], [-2122.04, -1275.08], [-2121.94, -1264.65], [-2116.57, -1264.7], [-2116.56, -1263.52], [-2112.5, -1263.56], [-2112.6, -1275.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1766.69, -1477.12], [-1766.97, -1483.86], [-1777.18, -1483.42], [-1776.76, -1473.43], [-1768.45, -1473.78], [-1768.59, -1477.05], [-1766.69, -1477.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2148.55, -1283.9], [-2148.93, -1290.65], [-2154.82, -1290.31], [-2154.43, -1283.57], [-2148.55, -1283.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2108.85, -1324.92], [-2108.91, -1326.77], [-2107.99, -1326.8], [-2108.16, -1332.33], [-2123.97, -1331.84], [-2123.75, -1324.46], [-2108.85, -1324.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2096.86, -1143.47], [-2097.58, -1160.81], [-2105.44, -1160.47], [-2104.7, -1143.13], [-2096.86, -1143.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2063.53, -1323.48], [-2070.56, -1323.38], [-2070.45, -1315.32], [-2063.43, -1315.41], [-2063.53, -1323.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2205.94, -1189.48], [-2206.09, -1192.73], [-2213.3, -1192.52], [-2213.21, -1189.27], [-2205.94, -1189.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2220.64, -1142.17], [-2213.18, -1142.49], [-2213.4, -1148.64], [-2212.0, -1148.69], [-2212.16, -1153.39], [-2213.38, -1153.34], [-2213.49, -1156.31], [-2221.12, -1156.04], [-2220.64, -1142.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1958.72, -1223.73], [-1959.12, -1235.86], [-1967.34, -1235.59], [-1966.94, -1223.46], [-1958.72, -1223.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2210.01, -1263.07], [-2210.6, -1273.82], [-2219.1, -1273.35], [-2218.51, -1262.61], [-2210.01, -1263.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2188.7, -1334.39], [-2188.68, -1337.77], [-2184.67, -1337.75], [-2184.61, -1348.25], [-2194.63, -1348.3], [-2194.67, -1340.12], [-2196.34, -1340.13], [-2196.37, -1334.43], [-2188.7, -1334.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1958.33, -1180.9], [-1958.51, -1186.41], [-1964.85, -1186.19], [-1964.67, -1180.7], [-1958.33, -1180.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1907.39, -1181.96], [-1907.74, -1188.55], [-1915.8, -1188.12], [-1915.44, -1181.53], [-1907.39, -1181.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2069.75, -1218.75], [-2070.77, -1235.03], [-2080.63, -1234.4], [-2079.61, -1218.13], [-2069.75, -1218.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2142.55, -1221.22], [-2142.86, -1230.66], [-2153.61, -1230.32], [-2153.31, -1221.11], [-2152.41, -1221.14], [-2152.29, -1217.39], [-2146.42, -1217.58], [-2146.54, -1221.08], [-2142.55, -1221.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1940.35, -1302.08], [-1927.93, -1302.52], [-1928.19, -1309.86], [-1940.61, -1309.42], [-1940.35, -1302.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2171.07, -1338.79], [-2171.5, -1349.43], [-2181.11, -1349.04], [-2180.7, -1339.03], [-2178.75, -1339.11], [-2178.65, -1336.57], [-2172.8, -1336.81], [-2172.88, -1338.72], [-2171.07, -1338.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2084.31, -1145.19], [-2084.33, -1145.84], [-2075.87, -1146.04], [-2076.22, -1161.08], [-2084.5, -1160.9], [-2084.52, -1161.98], [-2093.41, -1161.76], [-2093.03, -1144.99], [-2084.31, -1145.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1932.12, -1198.54], [-1932.31, -1204.9], [-1938.54, -1204.72], [-1938.35, -1198.36], [-1932.12, -1198.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1831.39, -1300.4], [-1831.84, -1306.74], [-1839.39, -1306.21], [-1838.94, -1299.86], [-1831.39, -1300.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1852.77, -1336.51], [-1852.92, -1343.6], [-1847.52, -1343.72], [-1847.75, -1354.58], [-1862.43, -1354.26], [-1862.2, -1343.4], [-1858.25, -1343.48], [-1858.1, -1336.39], [-1852.77, -1336.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2113.31, -1284.8], [-2113.71, -1293.14], [-2122.58, -1292.7], [-2122.19, -1284.69], [-2117.88, -1284.9], [-2117.87, -1284.58], [-2113.31, -1284.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2032.94, -1388.2], [-2033.27, -1398.29], [-2041.74, -1398.01], [-2041.41, -1387.92], [-2032.94, -1388.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2110.1, -1234.2], [-2120.8, -1233.91], [-2120.42, -1219.74], [-2109.71, -1220.03], [-2110.1, -1234.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2058.54, -1186.78], [-2066.37, -1186.59], [-2066.2, -1179.31], [-2058.38, -1179.49], [-2058.54, -1186.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1974.07, -1319.62], [-1961.77, -1320.01], [-1962.01, -1326.74], [-1974.22, -1326.37], [-1974.07, -1319.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1851.83, -1441.35], [-1852.14, -1448.07], [-1864.55, -1447.49], [-1864.25, -1440.77], [-1851.83, -1441.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2021.78, -1210.52], [-2017.35, -1210.68], [-2017.51, -1215.19], [-2015.87, -1215.25], [-2016.03, -1219.86], [-2014.55, -1219.91], [-2015.24, -1239.1], [-2022.66, -1238.83], [-2021.78, -1210.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2230.19, -1211.66], [-2230.53, -1217.68], [-2234.26, -1217.46], [-2235.0, -1230.21], [-2243.09, -1229.75], [-2242.34, -1216.75], [-2235.29, -1217.17], [-2234.95, -1211.37], [-2230.19, -1211.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2201.62, -1280.23], [-2198.29, -1280.33], [-2198.45, -1286.01], [-2201.78, -1285.92], [-2201.62, -1280.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2249.91, -1190.98], [-2244.03, -1191.18], [-2244.23, -1197.43], [-2250.14, -1197.26], [-2249.91, -1190.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2253.5, -1142.31], [-2254.46, -1155.08], [-2257.2, -1154.88], [-2257.36, -1157.05], [-2262.99, -1156.63], [-2262.79, -1153.91], [-2263.68, -1153.84], [-2262.76, -1141.62], [-2253.5, -1142.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2144.16, -1173.23], [-2144.69, -1182.67], [-2159.09, -1181.86], [-2158.57, -1172.43], [-2144.16, -1173.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2082.47, -1386.92], [-2083.05, -1397.1], [-2090.52, -1396.67], [-2089.95, -1386.49], [-2082.47, -1386.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[136.91, -3134.5], [143.47, -3135.4], [141.64, -3148.77], [135.08, -3147.87], [136.91, -3134.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[569.32, 252.81], [576.0, 258.76], [582.46, 251.58], [575.78, 245.62], [569.32, 252.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[614.27, 271.5], [623.32, 261.36], [603.99, 244.24], [598.62, 250.26], [602.39, 253.6], [598.71, 257.72], [614.27, 271.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[664.96, 333.41], [672.67, 323.37], [683.49, 331.62], [680.92, 334.97], [691.13, 342.76], [685.99, 349.43], [664.96, 333.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[352.79, 1172.54], [355.05, 1170.06], [355.4, 1170.38], [369.23, 1155.23], [364.97, 1151.37], [362.13, 1154.49], [360.2, 1152.74], [358.11, 1155.05], [355.74, 1152.9], [347.36, 1162.1], [352.17, 1166.46], [349.42, 1169.48], [352.79, 1172.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[382.08, 1102.87], [390.66, 1110.62], [398.46, 1102.05], [389.87, 1094.29], [382.08, 1102.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1089.2, 378.61], [1081.66, 372.2], [1076.86, 377.81], [1084.4, 384.21], [1089.2, 378.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[411.23, 1061.61], [413.92, 1058.56], [409.61, 1054.78], [406.92, 1057.82], [411.23, 1061.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[398.45, 1081.07], [408.8, 1090.58], [416.09, 1082.7], [405.75, 1073.19], [398.45, 1081.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1087.92, 272.59], [1080.22, 265.71], [1079.06, 266.98], [1075.15, 263.48], [1071.66, 267.37], [1072.25, 267.9], [1070.75, 269.56], [1073.3, 271.84], [1072.81, 272.38], [1076.93, 276.07], [1077.49, 275.44], [1081.85, 279.33], [1087.92, 272.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1198.82, 360.65], [1207.22, 351.3], [1202.51, 347.11], [1198.3, 351.79], [1194.1, 348.04], [1189.9, 352.7], [1198.82, 360.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[342.3, 1120.36], [348.77, 1112.67], [342.95, 1107.81], [336.48, 1115.52], [342.3, 1120.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1149.82, 296.85], [1155.89, 302.3], [1169.29, 287.52], [1163.22, 282.06], [1149.82, 296.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1012.45, 354.44], [1014.76, 351.94], [1013.61, 350.88], [1016.41, 347.83], [1013.32, 345.01], [1013.71, 344.59], [1009.77, 340.99], [1009.37, 341.42], [1004.69, 337.14], [999.58, 342.7], [1012.45, 354.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[404.54, 1057.19], [408.74, 1052.52], [409.06, 1052.82], [412.67, 1048.8], [412.35, 1048.51], [416.37, 1044.03], [410.57, 1038.85], [406.54, 1043.33], [406.04, 1042.89], [402.44, 1046.88], [402.94, 1047.32], [398.73, 1052.01], [404.54, 1057.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1111.03, 288.19], [1113.28, 290.24], [1115.49, 287.82], [1113.23, 285.76], [1111.03, 288.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1123.64, 429.56], [1115.68, 423.1], [1111.41, 428.32], [1119.37, 434.79], [1123.64, 429.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[394.74, 1022.77], [387.93, 1016.74], [377.39, 1028.56], [379.73, 1030.63], [379.13, 1031.32], [381.73, 1033.63], [382.34, 1032.93], [384.2, 1034.59], [394.74, 1022.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1142.25, 288.56], [1155.78, 273.6], [1151.45, 269.72], [1149.83, 271.51], [1147.35, 269.29], [1135.45, 282.46], [1142.25, 288.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[423.66, 1049.76], [424.8, 1048.5], [422.04, 1046.01], [421.17, 1046.96], [420.07, 1045.98], [412.07, 1054.84], [429.55, 1070.51], [433.66, 1065.96], [434.54, 1066.75], [437.12, 1063.9], [436.46, 1063.32], [437.62, 1062.05], [436.85, 1061.35], [437.65, 1060.47], [434.8, 1057.91], [433.88, 1058.91], [423.66, 1049.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1073.39, 366.07], [1076.27, 362.93], [1074.32, 361.16], [1075.14, 360.27], [1069.92, 355.54], [1065.4, 360.5], [1071.13, 365.69], [1071.97, 364.78], [1073.39, 366.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1136.39, 418.79], [1129.46, 412.67], [1125.08, 417.61], [1132.0, 423.72], [1136.39, 418.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1159.03, 302.35], [1165.69, 308.35], [1176.12, 296.88], [1169.47, 290.87], [1159.03, 302.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[366.75, 1049.38], [362.92, 1053.66], [363.92, 1054.55], [361.99, 1056.7], [365.91, 1060.19], [366.36, 1059.67], [367.59, 1060.77], [372.89, 1054.84], [366.75, 1049.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1099.17, 412.85], [1096.03, 410.2], [1093.56, 413.13], [1096.7, 415.79], [1099.17, 412.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1184.54, 303.1], [1177.06, 296.52], [1161.88, 313.66], [1163.57, 315.15], [1162.44, 316.43], [1165.93, 319.5], [1166.29, 319.1], [1168.58, 321.13], [1171.19, 318.18], [1171.51, 318.46], [1180.49, 308.32], [1180.17, 308.04], [1184.54, 303.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[370.06, 1070.02], [366.95, 1067.28], [367.32, 1066.86], [356.26, 1057.15], [351.74, 1062.25], [361.12, 1070.48], [361.21, 1070.38], [366.02, 1074.6], [370.06, 1070.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[358.94, 1080.07], [360.59, 1078.2], [361.48, 1078.97], [363.59, 1076.59], [361.23, 1074.52], [360.86, 1074.94], [356.66, 1071.27], [358.13, 1069.61], [349.86, 1062.37], [344.82, 1068.1], [357.69, 1079.37], [357.89, 1079.14], [358.94, 1080.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1114.23, 274.46], [1108.81, 269.73], [1104.26, 274.91], [1109.68, 279.63], [1114.23, 274.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1012.47, 328.54], [1007.16, 334.24], [1011.21, 337.97], [1010.79, 338.41], [1016.99, 344.14], [1022.71, 338.0], [1012.47, 328.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1139.9, 308.7], [1146.48, 314.52], [1150.56, 309.95], [1143.98, 304.13], [1139.9, 308.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[372.32, 1133.63], [377.45, 1128.01], [372.05, 1123.1], [372.53, 1122.57], [368.8, 1119.18], [368.31, 1119.7], [361.89, 1113.86], [359.1, 1116.91], [360.3, 1117.99], [357.94, 1120.56], [363.5, 1125.62], [363.05, 1126.12], [367.4, 1130.09], [367.87, 1129.59], [372.32, 1133.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[375.97, 1099.36], [370.75, 1094.75], [366.25, 1099.81], [371.47, 1104.42], [375.97, 1099.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[427.88, 1073.56], [415.7, 1062.69], [413.15, 1065.53], [411.89, 1064.41], [409.72, 1066.82], [410.87, 1067.86], [408.62, 1070.37], [419.63, 1080.2], [423.75, 1075.62], [425.02, 1076.74], [427.88, 1073.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1096.15, 351.49], [1089.44, 345.36], [1089.05, 345.78], [1087.21, 344.1], [1084.27, 347.31], [1083.65, 346.75], [1081.43, 349.17], [1082.79, 350.42], [1080.76, 352.63], [1089.51, 360.63], [1092.85, 357.01], [1093.43, 357.54], [1097.32, 353.31], [1095.78, 351.91], [1096.15, 351.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1194.5, 316.0], [1189.3, 311.32], [1187.43, 313.37], [1184.16, 310.43], [1179.71, 315.35], [1179.35, 315.02], [1172.07, 323.04], [1176.31, 326.86], [1175.81, 327.4], [1180.4, 331.54], [1194.5, 316.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[387.76, 1060.38], [383.57, 1056.63], [380.09, 1060.49], [384.28, 1064.24], [387.76, 1060.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[391.82, 1041.88], [392.27, 1042.28], [390.85, 1043.83], [394.58, 1047.19], [396.41, 1045.19], [399.53, 1048.02], [407.01, 1039.81], [406.16, 1039.05], [408.2, 1036.79], [401.76, 1030.97], [391.82, 1041.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[382.33, 1123.84], [388.05, 1117.32], [386.21, 1115.72], [387.49, 1114.26], [377.46, 1105.51], [372.43, 1111.23], [373.78, 1112.4], [370.93, 1115.63], [379.43, 1123.04], [380.29, 1122.06], [382.33, 1123.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1175.15, 338.03], [1179.51, 333.19], [1174.78, 328.93], [1170.42, 333.77], [1175.15, 338.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[362.95, 1112.26], [358.87, 1108.48], [355.35, 1112.26], [359.44, 1116.03], [362.95, 1112.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1133.13, 313.23], [1137.91, 308.36], [1132.29, 302.88], [1127.52, 307.76], [1133.13, 313.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1054.27, 357.51], [1048.4, 352.27], [1043.84, 357.33], [1049.71, 362.58], [1054.27, 357.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1117.44, 267.41], [1130.87, 252.67], [1125.15, 247.5], [1122.29, 250.64], [1120.71, 249.2], [1115.32, 255.12], [1115.78, 255.54], [1111.07, 260.72], [1113.01, 262.47], [1112.54, 262.98], [1117.44, 267.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[360.43, 1142.92], [352.51, 1135.88], [343.78, 1145.62], [344.05, 1145.85], [341.67, 1148.5], [349.32, 1155.32], [360.43, 1142.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[348.73, 1135.97], [347.28, 1134.67], [348.24, 1133.61], [343.64, 1129.48], [342.69, 1130.54], [340.62, 1128.68], [333.07, 1137.01], [333.79, 1137.65], [332.17, 1139.44], [339.18, 1145.74], [341.16, 1143.55], [341.55, 1143.9], [348.73, 1135.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1127.22, 276.08], [1128.61, 277.34], [1127.91, 278.11], [1129.38, 279.43], [1130.07, 278.68], [1131.3, 279.8], [1134.02, 276.81], [1136.13, 278.72], [1145.68, 268.24], [1137.42, 260.76], [1127.33, 271.81], [1129.41, 273.69], [1127.22, 276.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[390.39, 1042.0], [393.23, 1038.95], [393.48, 1039.19], [400.0, 1032.2], [394.63, 1027.23], [388.42, 1033.88], [389.81, 1035.17], [386.66, 1038.53], [390.39, 1042.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1100.0, 260.07], [1091.26, 252.07], [1090.46, 252.95], [1089.13, 251.74], [1084.62, 256.64], [1094.67, 265.84], [1100.0, 260.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[988.66, 1373.84], [983.13, 1369.45], [980.33, 1372.99], [981.27, 1373.73], [979.12, 1376.45], [983.71, 1380.09], [988.66, 1373.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[975.29, 1279.13], [965.36, 1289.94], [972.87, 1296.83], [982.8, 1286.02], [975.29, 1279.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[758.28, 1252.77], [753.37, 1248.48], [746.5, 1256.34], [751.41, 1260.63], [758.28, 1252.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1220.68, 1315.05], [1214.28, 1309.46], [1206.74, 1318.12], [1211.83, 1322.56], [1210.52, 1324.05], [1216.1, 1328.91], [1220.3, 1324.09], [1218.32, 1322.35], [1220.34, 1320.04], [1218.06, 1318.06], [1220.68, 1315.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1011.04, 1123.33], [1005.24, 1117.81], [995.32, 1128.2], [1001.12, 1133.73], [1011.04, 1123.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[908.66, 1222.45], [903.06, 1217.43], [893.87, 1227.68], [899.48, 1232.7], [908.66, 1222.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[878.14, 1193.72], [874.42, 1190.32], [872.97, 1191.91], [870.52, 1189.69], [862.57, 1198.42], [868.73, 1204.04], [878.14, 1193.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1115.69, 1320.26], [1119.91, 1315.64], [1114.45, 1310.65], [1110.23, 1315.27], [1115.69, 1320.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[977.13, 1173.55], [985.19, 1164.84], [983.94, 1163.69], [985.8, 1161.67], [980.51, 1156.77], [970.13, 1168.0], [970.32, 1168.19], [968.36, 1170.31], [969.98, 1171.82], [972.42, 1169.18], [977.13, 1173.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[852.59, 1176.42], [848.03, 1172.29], [839.59, 1181.59], [844.14, 1185.73], [852.59, 1176.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[842.09, 1198.84], [838.74, 1195.74], [827.8, 1207.53], [833.54, 1212.86], [838.93, 1207.05], [836.53, 1204.84], [842.09, 1198.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1373.69, 1680.38], [1363.15, 1671.48], [1357.62, 1678.03], [1368.15, 1686.92], [1373.69, 1680.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1071.8, 1235.93], [1065.63, 1230.52], [1053.31, 1244.58], [1059.49, 1249.98], [1071.8, 1235.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[964.22, 1214.45], [957.69, 1208.13], [949.53, 1216.58], [956.06, 1222.9], [964.22, 1214.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[971.25, 1147.57], [965.55, 1142.35], [954.34, 1154.59], [960.05, 1159.81], [971.25, 1147.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1247.94, 1341.52], [1242.73, 1336.75], [1234.75, 1345.47], [1239.97, 1350.25], [1247.94, 1341.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1149.51, 1405.87], [1167.6, 1386.61], [1160.36, 1379.81], [1155.09, 1385.41], [1157.88, 1388.03], [1152.64, 1393.6], [1150.05, 1391.17], [1143.7, 1397.93], [1147.28, 1401.29], [1146.04, 1402.61], [1149.51, 1405.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1224.42, 1441.02], [1221.05, 1437.83], [1218.16, 1440.93], [1215.36, 1438.06], [1206.1, 1447.76], [1206.64, 1448.35], [1205.72, 1449.37], [1211.96, 1454.96], [1224.42, 1441.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[863.77, 1110.46], [856.77, 1103.8], [851.81, 1109.01], [858.82, 1115.67], [863.77, 1110.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[854.59, 1251.22], [849.07, 1246.1], [841.82, 1253.88], [847.33, 1259.0], [854.59, 1251.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1139.83, 1520.21], [1142.88, 1517.02], [1144.81, 1518.87], [1149.52, 1513.93], [1145.64, 1510.22], [1148.38, 1507.35], [1145.08, 1504.19], [1137.39, 1512.25], [1138.42, 1513.24], [1135.62, 1516.18], [1139.83, 1520.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1221.76, 1230.6], [1217.27, 1235.6], [1232.74, 1249.47], [1233.46, 1248.66], [1234.3, 1249.41], [1235.81, 1247.72], [1235.0, 1247.0], [1237.25, 1244.49], [1221.76, 1230.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1234.02, 1550.71], [1223.25, 1540.09], [1216.88, 1546.55], [1227.65, 1557.17], [1234.02, 1550.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[844.06, 1212.25], [839.65, 1208.24], [835.24, 1213.09], [839.65, 1217.1], [844.06, 1212.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1029.32, 1422.42], [1037.98, 1430.53], [1047.44, 1420.44], [1038.79, 1412.33], [1029.32, 1422.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[979.0, 1156.21], [972.63, 1150.36], [962.71, 1161.19], [964.82, 1163.13], [963.25, 1164.83], [967.52, 1168.74], [979.0, 1156.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[812.98, 1176.29], [808.63, 1172.35], [809.97, 1170.87], [800.51, 1162.3], [796.07, 1167.2], [805.2, 1175.49], [805.51, 1175.15], [810.18, 1179.39], [812.98, 1176.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1056.42, 1358.21], [1050.16, 1352.29], [1041.72, 1361.14], [1044.58, 1363.85], [1041.56, 1367.01], [1044.96, 1370.24], [1056.42, 1358.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1349.02, 1632.11], [1353.51, 1627.3], [1326.79, 1602.58], [1322.3, 1607.39], [1349.02, 1632.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1285.97, 1568.0], [1280.1, 1562.8], [1273.38, 1570.33], [1279.25, 1575.53], [1285.97, 1568.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1254.72, 1430.76], [1251.87, 1428.19], [1247.4, 1433.15], [1250.3, 1435.77], [1254.72, 1430.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1146.54, 1328.94], [1141.93, 1324.68], [1138.91, 1327.94], [1143.52, 1332.2], [1146.54, 1328.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1062.98, 1132.4], [1060.95, 1130.48], [1060.13, 1131.36], [1056.89, 1128.33], [1051.35, 1134.23], [1061.21, 1143.51], [1066.46, 1137.92], [1061.86, 1133.6], [1062.98, 1132.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1092.84, 1188.47], [1084.1, 1180.87], [1073.42, 1193.16], [1082.16, 1200.76], [1092.84, 1188.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1225.9, 1336.42], [1230.34, 1331.24], [1231.03, 1331.84], [1236.61, 1325.34], [1228.92, 1318.74], [1222.78, 1325.91], [1224.32, 1327.23], [1220.44, 1331.75], [1225.9, 1336.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1080.83, 1381.15], [1075.27, 1376.22], [1071.74, 1380.19], [1070.43, 1379.02], [1063.9, 1386.38], [1064.2, 1386.64], [1061.14, 1390.07], [1065.92, 1394.31], [1069.33, 1390.48], [1070.21, 1391.26], [1072.86, 1388.27], [1073.79, 1389.09], [1080.83, 1381.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[976.58, 1097.57], [972.65, 1094.0], [966.97, 1100.25], [970.89, 1103.81], [976.58, 1097.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[787.08, 1201.47], [795.24, 1192.88], [787.4, 1185.44], [782.3, 1190.82], [783.43, 1191.9], [778.7, 1196.88], [782.56, 1200.54], [784.23, 1198.77], [787.08, 1201.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1027.47, 1133.16], [1023.31, 1129.79], [1022.03, 1131.37], [1020.2, 1129.89], [1011.88, 1140.15], [1018.62, 1145.6], [1022.36, 1140.99], [1021.61, 1140.39], [1027.47, 1133.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1095.05, 1329.48], [1089.92, 1324.87], [1079.19, 1336.72], [1084.33, 1341.34], [1095.05, 1329.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1196.84, 1293.78], [1190.67, 1288.11], [1183.18, 1296.21], [1189.35, 1301.87], [1196.84, 1293.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1025.31, 1378.95], [1020.54, 1374.47], [1015.23, 1380.12], [1020.0, 1384.61], [1025.31, 1378.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1188.94, 1492.96], [1197.2, 1484.08], [1191.58, 1478.81], [1183.33, 1487.68], [1188.94, 1492.96]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[1218.96, 1510.08], [1212.49, 1504.11], [1204.64, 1512.62], [1206.32, 1514.17], [1205.11, 1515.48], [1209.91, 1519.91], [1218.96, 1510.08]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1347.78, 1678.41], [1352.8, 1673.4], [1348.86, 1669.45], [1343.84, 1674.46], [1347.78, 1678.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1143.0, 1502.93], [1136.75, 1497.1], [1128.97, 1505.45], [1135.23, 1511.28], [1143.0, 1502.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[872.11, 1348.12], [876.1, 1343.69], [871.02, 1339.11], [866.62, 1344.0], [865.27, 1342.78], [858.25, 1350.57], [866.66, 1358.15], [874.1, 1349.91], [872.11, 1348.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1078.66, 1243.05], [1072.84, 1238.19], [1069.81, 1241.82], [1068.52, 1240.75], [1066.25, 1243.46], [1067.37, 1244.39], [1064.85, 1247.41], [1070.84, 1252.41], [1078.66, 1243.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1212.75, 1544.57], [1218.55, 1538.12], [1209.28, 1529.92], [1203.85, 1536.55], [1212.75, 1544.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1128.95, 1213.15], [1124.59, 1209.19], [1120.25, 1213.95], [1124.62, 1217.92], [1128.95, 1213.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1048.49, 1156.75], [1042.71, 1150.79], [1036.87, 1156.46], [1037.32, 1156.92], [1033.66, 1160.47], [1038.99, 1165.97], [1048.49, 1156.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[916.83, 1175.6], [910.44, 1169.85], [905.21, 1175.64], [911.6, 1181.4], [916.83, 1175.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1327.75, 1659.98], [1337.39, 1668.7], [1342.03, 1663.18], [1332.39, 1654.46], [1327.75, 1659.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[889.49, 1078.2], [884.98, 1073.87], [879.11, 1079.97], [889.22, 1089.7], [893.77, 1084.97], [888.17, 1079.57], [889.49, 1078.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1202.55, 1228.66], [1200.25, 1226.6], [1195.79, 1231.57], [1197.77, 1233.35], [1197.24, 1233.94], [1203.62, 1239.65], [1208.1, 1234.65], [1202.04, 1229.23], [1202.55, 1228.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1170.87, 1320.52], [1161.26, 1312.17], [1156.13, 1318.06], [1165.75, 1326.42], [1170.87, 1320.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[937.65, 1030.06], [931.05, 1024.05], [926.24, 1029.35], [932.84, 1035.34], [937.65, 1030.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1238.91, 1406.81], [1249.82, 1394.81], [1244.91, 1390.34], [1243.74, 1391.63], [1238.04, 1386.46], [1225.66, 1400.1], [1232.62, 1406.43], [1235.28, 1403.51], [1238.91, 1406.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1047.88, 1292.06], [1042.55, 1286.81], [1033.93, 1295.57], [1039.27, 1300.81], [1047.88, 1292.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1267.72, 1269.26], [1259.38, 1261.87], [1252.22, 1269.96], [1260.56, 1277.35], [1267.72, 1269.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1056.61, 1298.17], [1051.8, 1293.85], [1048.85, 1297.14], [1047.45, 1295.88], [1045.34, 1298.24], [1046.27, 1299.08], [1042.36, 1303.44], [1047.63, 1308.17], [1056.61, 1298.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1061.5, 1280.35], [1063.57, 1282.04], [1067.28, 1277.97], [1065.06, 1276.12], [1061.5, 1280.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[954.94, 1049.71], [960.43, 1043.56], [949.6, 1033.88], [944.11, 1040.01], [954.94, 1049.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[818.14, 1161.09], [811.42, 1154.94], [806.58, 1160.24], [815.01, 1167.93], [818.41, 1164.2], [816.71, 1162.65], [818.14, 1161.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[969.14, 1349.38], [961.93, 1342.76], [952.22, 1353.33], [959.42, 1359.94], [969.14, 1349.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1393.9, 1655.62], [1390.11, 1652.32], [1388.15, 1654.54], [1385.9, 1652.59], [1384.13, 1654.61], [1383.66, 1654.21], [1381.15, 1657.06], [1392.77, 1667.19], [1398.15, 1661.06], [1393.03, 1656.6], [1393.9, 1655.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1008.87, 1406.74], [1011.82, 1403.39], [1013.39, 1404.78], [1017.11, 1400.55], [1011.65, 1395.73], [1004.97, 1403.3], [1008.87, 1406.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1197.57, 1192.37], [1175.69, 1216.05], [1189.8, 1230.17], [1212.24, 1205.89], [1197.57, 1192.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[939.66, 1266.23], [934.5, 1261.57], [927.98, 1268.8], [936.16, 1276.2], [940.59, 1271.28], [937.56, 1268.54], [939.66, 1266.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[833.17, 1225.46], [828.83, 1221.38], [825.16, 1225.28], [824.17, 1224.35], [820.99, 1227.73], [822.82, 1229.44], [819.53, 1232.95], [823.95, 1237.1], [828.13, 1232.64], [827.22, 1231.79], [833.17, 1225.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[994.89, 1110.66], [988.54, 1105.02], [981.62, 1112.81], [987.97, 1118.45], [994.89, 1110.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1072.3, 1423.02], [1061.67, 1413.85], [1057.44, 1418.75], [1068.08, 1427.93], [1072.3, 1423.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1372.34, 1642.98], [1368.91, 1646.69], [1368.18, 1646.02], [1363.93, 1650.62], [1370.42, 1656.55], [1378.09, 1648.23], [1372.34, 1642.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1047.18, 1385.55], [1053.04, 1390.93], [1060.96, 1382.38], [1055.09, 1377.0], [1047.18, 1385.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1227.94, 1510.38], [1217.69, 1521.51], [1223.9, 1527.23], [1234.15, 1516.12], [1227.94, 1510.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[931.49, 1037.4], [925.03, 1031.06], [920.3, 1035.87], [926.78, 1042.21], [931.49, 1037.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[984.89, 1104.98], [978.22, 1099.11], [972.36, 1105.77], [979.03, 1111.64], [984.89, 1104.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1158.54, 1324.86], [1156.48, 1323.02], [1156.18, 1323.35], [1154.93, 1322.24], [1149.58, 1328.23], [1157.76, 1335.54], [1162.33, 1330.44], [1157.46, 1326.07], [1158.54, 1324.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1381.36, 1674.96], [1370.81, 1665.87], [1365.97, 1671.47], [1376.53, 1680.56], [1381.36, 1674.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[953.11, 1260.04], [944.84, 1252.8], [940.48, 1257.77], [941.57, 1258.72], [938.28, 1262.46], [946.54, 1269.69], [951.35, 1264.21], [950.28, 1263.27], [953.11, 1260.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1284.97, 1650.8], [1293.49, 1658.57], [1303.4, 1647.76], [1313.7, 1636.52], [1305.17, 1628.76], [1284.97, 1650.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1017.02, 1131.6], [1011.39, 1126.61], [1002.82, 1136.29], [1008.45, 1141.28], [1017.02, 1131.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[942.93, 1061.71], [937.36, 1056.8], [935.81, 1058.55], [933.7, 1056.7], [927.28, 1063.98], [934.95, 1070.75], [942.93, 1061.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[857.49, 1116.72], [850.97, 1110.67], [846.42, 1115.55], [852.95, 1121.6], [857.49, 1116.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1062.33, 1307.18], [1056.52, 1301.67], [1047.92, 1310.75], [1053.72, 1316.24], [1062.33, 1307.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1018.53, 1122.87], [1020.74, 1120.45], [1022.15, 1121.73], [1023.43, 1120.34], [1025.43, 1122.17], [1035.97, 1110.61], [1030.3, 1105.43], [1020.62, 1116.03], [1016.45, 1112.22], [1012.1, 1117.0], [1018.53, 1122.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[919.73, 1251.69], [927.84, 1242.79], [911.07, 1227.53], [902.66, 1236.75], [901.34, 1235.56], [892.88, 1244.86], [895.51, 1247.24], [895.02, 1247.86], [899.79, 1252.21], [900.68, 1251.15], [905.55, 1255.59], [904.86, 1256.34], [909.91, 1260.94], [910.62, 1260.16], [912.88, 1262.22], [921.23, 1253.05], [919.73, 1251.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[888.25, 1116.35], [880.53, 1108.86], [874.48, 1115.1], [882.21, 1122.6], [888.25, 1116.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1076.86, 1316.95], [1071.83, 1312.09], [1063.37, 1320.85], [1065.51, 1322.91], [1063.51, 1324.98], [1066.4, 1327.77], [1076.86, 1316.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1005.16, 1174.64], [999.12, 1168.96], [990.24, 1179.39], [996.28, 1184.97], [1005.16, 1174.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1237.4, 1460.39], [1232.54, 1455.47], [1228.84, 1459.13], [1226.98, 1457.25], [1221.81, 1462.35], [1225.49, 1466.07], [1224.91, 1466.64], [1227.96, 1469.71], [1237.4, 1460.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1032.52, 1414.88], [1026.02, 1409.32], [1023.83, 1411.88], [1024.39, 1412.37], [1019.8, 1417.74], [1025.74, 1422.82], [1032.52, 1414.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[864.6, 1144.24], [870.04, 1149.17], [878.15, 1140.3], [872.72, 1135.36], [864.6, 1144.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1191.66, 1418.37], [1186.44, 1413.52], [1175.74, 1425.06], [1180.96, 1429.9], [1191.66, 1418.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1388.28, 1665.72], [1382.33, 1660.42], [1376.49, 1666.97], [1382.45, 1672.27], [1388.28, 1665.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1011.76, 1187.63], [1012.85, 1188.57], [1012.61, 1188.85], [1017.2, 1192.76], [1024.62, 1184.11], [1018.92, 1179.27], [1011.76, 1187.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1219.34, 1260.95], [1213.44, 1255.8], [1207.69, 1262.39], [1213.6, 1267.54], [1219.34, 1260.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[951.8, 1149.23], [954.45, 1146.44], [955.58, 1147.52], [963.08, 1139.63], [957.42, 1134.25], [950.39, 1141.65], [951.18, 1142.41], [948.07, 1145.69], [951.8, 1149.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[983.8, 1363.68], [978.5, 1359.02], [970.13, 1368.45], [975.43, 1373.12], [983.8, 1363.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1242.44, 1600.55], [1232.36, 1590.93], [1228.69, 1594.78], [1231.48, 1597.43], [1229.8, 1599.2], [1237.08, 1606.15], [1242.44, 1600.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1019.15, 1096.89], [1014.13, 1092.52], [1009.06, 1098.34], [1014.08, 1102.71], [1019.15, 1096.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1002.09, 1379.68], [997.72, 1375.97], [989.01, 1386.26], [991.19, 1388.12], [990.49, 1388.95], [995.47, 1393.17], [1003.66, 1383.49], [1000.87, 1381.12], [1002.09, 1379.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1171.01, 1399.23], [1165.83, 1394.23], [1160.37, 1399.89], [1165.54, 1404.89], [1171.01, 1399.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[958.95, 1074.51], [955.45, 1071.37], [952.98, 1074.12], [951.21, 1072.51], [944.58, 1079.88], [949.84, 1084.61], [958.95, 1074.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1034.11, 1139.68], [1028.49, 1134.47], [1023.28, 1140.08], [1024.71, 1141.4], [1020.67, 1145.75], [1026.61, 1151.27], [1033.34, 1144.02], [1031.58, 1142.38], [1034.11, 1139.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1039.76, 1401.61], [1035.81, 1398.14], [1031.77, 1402.75], [1035.73, 1406.21], [1039.76, 1401.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[993.71, 1201.94], [992.97, 1202.78], [989.25, 1199.53], [986.2, 1202.98], [997.08, 1212.49], [1000.35, 1208.76], [999.65, 1208.15], [1000.16, 1207.57], [993.71, 1201.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[927.11, 1263.61], [920.41, 1257.01], [916.75, 1260.73], [923.45, 1267.32], [927.11, 1263.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[952.7, 1131.74], [947.61, 1126.91], [940.73, 1134.15], [945.81, 1138.98], [952.7, 1131.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1174.69, 1510.61], [1178.44, 1506.58], [1171.18, 1499.82], [1167.43, 1503.84], [1174.69, 1510.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1060.71, 1219.89], [1055.99, 1215.44], [1053.03, 1218.59], [1051.4, 1217.06], [1046.95, 1221.78], [1048.94, 1223.66], [1048.04, 1224.61], [1052.42, 1228.72], [1060.71, 1219.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1152.08, 1446.73], [1146.32, 1441.58], [1137.88, 1451.04], [1143.65, 1456.18], [1152.08, 1446.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1026.64, 1332.22], [1020.09, 1326.41], [1011.13, 1336.44], [1012.33, 1337.51], [1011.29, 1338.67], [1016.66, 1343.42], [1026.64, 1332.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[850.44, 1166.6], [849.79, 1165.99], [848.49, 1164.8], [843.83, 1160.47], [829.77, 1175.66], [836.4, 1181.79], [850.44, 1166.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[984.89, 1225.53], [991.93, 1217.86], [977.5, 1204.64], [973.57, 1208.93], [975.51, 1210.71], [972.42, 1214.09], [984.89, 1225.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1132.21, 1288.52], [1126.58, 1283.29], [1118.28, 1292.19], [1123.9, 1297.42], [1132.21, 1288.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1276.78, 1650.36], [1279.01, 1648.01], [1280.01, 1648.94], [1280.79, 1649.69], [1290.07, 1639.9], [1288.08, 1638.02], [1289.24, 1636.81], [1286.58, 1634.3], [1285.34, 1635.61], [1282.63, 1633.05], [1273.32, 1642.89], [1274.26, 1643.77], [1275.07, 1644.55], [1272.98, 1646.75], [1276.78, 1650.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1208.96, 1459.21], [1216.07, 1465.79], [1229.86, 1450.9], [1222.76, 1444.32], [1208.96, 1459.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1176.65, 1465.18], [1170.56, 1459.75], [1159.29, 1472.38], [1165.37, 1477.82], [1176.65, 1465.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1343.85, 1684.19], [1343.65, 1684.0], [1339.26, 1688.78], [1337.6, 1687.26], [1334.03, 1691.14], [1335.63, 1692.62], [1330.68, 1698.02], [1337.79, 1704.6], [1343.04, 1698.87], [1343.95, 1699.66], [1346.55, 1696.81], [1345.94, 1696.24], [1350.99, 1690.74], [1343.85, 1684.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1186.92, 1474.84], [1182.68, 1470.39], [1181.02, 1471.97], [1178.52, 1469.35], [1173.88, 1473.76], [1174.97, 1474.91], [1169.94, 1479.7], [1173.37, 1483.3], [1172.02, 1484.6], [1176.1, 1488.88], [1182.3, 1482.97], [1180.43, 1481.01], [1186.92, 1474.84]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1126.38, 1247.35], [1127.91, 1245.6], [1128.98, 1246.55], [1137.1, 1237.32], [1134.64, 1235.17], [1136.95, 1232.52], [1133.26, 1229.27], [1131.08, 1231.77], [1129.56, 1230.43], [1119.78, 1241.55], [1126.38, 1247.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1050.89, 1123.62], [1044.66, 1117.91], [1035.88, 1127.44], [1042.11, 1133.17], [1050.89, 1123.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1093.18, 1108.85], [1086.23, 1102.66], [1082.12, 1107.27], [1089.06, 1113.46], [1093.18, 1108.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[878.21, 1093.21], [881.51, 1089.86], [883.31, 1091.65], [886.43, 1088.49], [877.83, 1079.99], [874.32, 1083.53], [876.42, 1085.62], [873.51, 1088.57], [878.21, 1093.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1211.38, 1575.9], [1205.55, 1570.17], [1202.12, 1573.65], [1202.63, 1574.15], [1197.67, 1579.19], [1203.0, 1584.43], [1211.38, 1575.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[811.75, 1201.49], [806.52, 1196.63], [802.96, 1200.45], [801.88, 1199.45], [797.96, 1203.65], [799.12, 1204.73], [795.97, 1208.1], [801.96, 1213.68], [805.75, 1209.61], [806.46, 1210.26], [809.72, 1206.75], [808.18, 1205.32], [811.75, 1201.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1088.02, 1263.47], [1090.71, 1260.53], [1091.16, 1260.94], [1096.3, 1255.31], [1089.27, 1248.88], [1084.02, 1254.62], [1084.82, 1255.36], [1082.24, 1258.19], [1088.02, 1263.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1208.22, 1431.62], [1203.31, 1427.06], [1193.51, 1437.64], [1198.42, 1442.18], [1208.22, 1431.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[901.49, 1156.17], [900.88, 1155.62], [903.33, 1152.95], [896.24, 1146.48], [888.69, 1154.74], [889.62, 1155.59], [887.09, 1158.35], [893.84, 1164.53], [901.49, 1156.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1300.67, 1664.79], [1309.37, 1672.66], [1329.29, 1650.79], [1320.59, 1642.92], [1310.11, 1654.43], [1300.67, 1664.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[917.13, 1151.53], [921.49, 1146.69], [915.94, 1141.71], [911.59, 1146.54], [917.13, 1151.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1183.26, 1411.86], [1179.04, 1407.73], [1175.84, 1411.0], [1174.42, 1409.61], [1171.06, 1413.04], [1172.48, 1414.42], [1168.59, 1418.41], [1172.82, 1422.55], [1183.26, 1411.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1170.11, 1372.63], [1163.5, 1366.27], [1158.55, 1371.41], [1160.43, 1373.22], [1158.48, 1375.26], [1163.2, 1379.8], [1170.11, 1372.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[948.61, 1319.07], [942.35, 1314.01], [936.77, 1320.92], [949.15, 1330.93], [954.11, 1324.78], [947.99, 1319.83], [948.61, 1319.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1151.7, 1299.5], [1145.77, 1294.57], [1138.95, 1302.79], [1140.64, 1304.18], [1139.63, 1305.39], [1145.47, 1310.25], [1151.58, 1302.89], [1149.99, 1301.56], [1151.7, 1299.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[842.86, 1231.0], [838.56, 1227.06], [827.82, 1238.84], [834.73, 1245.15], [844.04, 1234.93], [841.43, 1232.55], [842.86, 1231.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1222.13, 1368.78], [1217.66, 1364.75], [1210.79, 1372.38], [1215.26, 1376.41], [1222.13, 1368.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1207.9, 1255.34], [1202.01, 1249.98], [1195.35, 1257.29], [1201.25, 1262.65], [1207.9, 1255.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1226.66, 1442.01], [1231.13, 1446.12], [1238.57, 1438.02], [1234.11, 1433.91], [1226.66, 1442.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1015.49, 1326.12], [1010.24, 1321.85], [1003.61, 1330.02], [1008.86, 1334.27], [1015.49, 1326.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1194.09, 1401.08], [1190.78, 1397.94], [1185.09, 1403.9], [1188.4, 1407.06], [1194.09, 1401.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1041.39, 1149.67], [1039.82, 1148.24], [1039.7, 1148.37], [1034.8, 1143.86], [1026.54, 1152.83], [1030.07, 1156.08], [1028.69, 1157.58], [1031.62, 1160.28], [1041.39, 1149.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[911.45, 1146.41], [915.8, 1141.58], [910.27, 1136.59], [905.91, 1141.42], [911.45, 1146.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1123.67, 1422.97], [1117.42, 1417.21], [1107.02, 1428.49], [1113.29, 1434.25], [1123.67, 1422.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1338.42, 1652.43], [1347.6, 1660.73], [1362.17, 1644.72], [1352.99, 1636.43], [1338.42, 1652.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1094.1, 1091.0], [1087.74, 1085.34], [1080.82, 1093.13], [1087.18, 1098.79], [1094.1, 1091.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1301.94, 1579.86], [1297.48, 1575.77], [1296.37, 1576.97], [1296.04, 1576.67], [1288.05, 1585.34], [1288.28, 1585.56], [1285.85, 1588.21], [1290.41, 1592.38], [1301.94, 1579.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1214.75, 1571.77], [1218.09, 1567.99], [1219.67, 1569.38], [1225.37, 1562.92], [1213.56, 1552.51], [1206.66, 1560.35], [1209.13, 1562.53], [1207.01, 1564.95], [1214.75, 1571.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1201.55, 1424.55], [1195.56, 1419.11], [1183.32, 1432.63], [1189.31, 1438.05], [1201.55, 1424.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1260.69, 1564.92], [1263.34, 1561.83], [1264.4, 1562.74], [1271.55, 1554.41], [1270.82, 1553.8], [1269.96, 1553.05], [1269.69, 1553.36], [1265.93, 1550.17], [1263.42, 1553.09], [1262.33, 1552.16], [1258.04, 1557.17], [1258.76, 1557.77], [1256.59, 1560.31], [1256.04, 1560.95], [1260.69, 1564.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1067.76, 1225.66], [1062.87, 1221.97], [1054.78, 1231.32], [1059.42, 1235.46], [1067.76, 1225.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1186.42, 1543.4], [1180.86, 1538.13], [1171.75, 1547.75], [1177.3, 1553.01], [1186.42, 1543.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1124.54, 1455.53], [1119.18, 1450.61], [1112.98, 1457.37], [1118.35, 1462.28], [1124.54, 1455.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1176.25, 1213.8], [1192.86, 1195.49], [1189.86, 1192.75], [1195.92, 1185.92], [1182.86, 1173.89], [1176.53, 1180.31], [1174.54, 1178.43], [1157.97, 1197.47], [1176.25, 1213.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1002.61, 1117.66], [996.18, 1111.97], [988.93, 1120.18], [995.35, 1125.87], [1002.61, 1117.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[798.37, 1183.11], [804.92, 1175.66], [795.44, 1167.31], [788.93, 1174.72], [798.37, 1183.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1031.44, 1227.95], [1022.52, 1219.61], [1018.74, 1223.63], [1027.85, 1232.16], [1028.41, 1231.57], [1032.39, 1235.3], [1035.41, 1232.1], [1031.21, 1228.17], [1031.44, 1227.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[966.85, 1366.32], [975.93, 1356.29], [969.73, 1350.66], [960.49, 1360.87], [966.85, 1366.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[965.73, 997.6], [974.44, 1005.43], [988.41, 989.9], [979.7, 982.07], [965.73, 997.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1028.82, 1103.1], [1025.16, 1100.14], [1024.7, 1100.72], [1022.1, 1098.61], [1014.61, 1107.85], [1020.86, 1112.92], [1028.82, 1103.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1109.82, 1478.93], [1097.65, 1467.48], [1091.66, 1473.85], [1103.84, 1485.29], [1109.82, 1478.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1040.63, 1281.87], [1036.32, 1277.73], [1025.69, 1288.79], [1030.0, 1292.94], [1040.63, 1281.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1273.98, 1435.52], [1275.72, 1433.5], [1277.08, 1434.67], [1284.91, 1425.63], [1278.01, 1419.64], [1268.42, 1430.72], [1273.98, 1435.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1101.4, 1346.98], [1111.11, 1355.5], [1117.57, 1348.15], [1115.88, 1346.66], [1119.5, 1342.54], [1114.41, 1338.07], [1109.92, 1343.17], [1107.0, 1340.6], [1101.4, 1346.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[825.22, 1219.78], [819.83, 1215.01], [810.54, 1225.5], [816.57, 1230.84], [822.69, 1223.92], [822.05, 1223.36], [825.22, 1219.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1269.56, 1363.55], [1277.86, 1354.39], [1269.75, 1347.1], [1254.25, 1364.18], [1293.68, 1399.7], [1305.3, 1386.91], [1286.74, 1370.18], [1282.39, 1374.97], [1279.2, 1372.1], [1280.99, 1370.14], [1275.02, 1364.78], [1273.17, 1366.81], [1269.56, 1363.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1249.89, 1586.49], [1243.21, 1579.95], [1239.23, 1583.99], [1245.92, 1590.53], [1249.89, 1586.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1113.0, 1201.98], [1110.03, 1199.32], [1106.82, 1202.89], [1109.79, 1205.55], [1113.0, 1201.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1127.81, 1503.55], [1135.94, 1494.34], [1130.01, 1489.11], [1120.83, 1499.5], [1124.08, 1502.38], [1125.12, 1501.19], [1127.81, 1503.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[908.4, 1167.48], [907.78, 1166.92], [911.66, 1162.58], [906.45, 1157.92], [902.66, 1162.15], [903.15, 1162.6], [896.64, 1169.87], [901.99, 1174.65], [908.4, 1167.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1087.35, 1246.81], [1083.82, 1243.84], [1082.38, 1245.56], [1080.68, 1244.13], [1074.6, 1251.38], [1079.82, 1255.77], [1087.35, 1246.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1179.93, 1535.39], [1174.13, 1530.27], [1164.8, 1540.83], [1170.6, 1545.96], [1179.93, 1535.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1023.42, 1237.11], [1015.75, 1229.93], [1010.71, 1235.27], [1013.6, 1237.99], [1013.1, 1238.52], [1017.87, 1242.99], [1023.42, 1237.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1293.7, 1611.46], [1303.25, 1619.93], [1317.67, 1603.81], [1308.13, 1595.33], [1293.7, 1611.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1308.54, 1588.06], [1308.24, 1587.8], [1308.99, 1587.01], [1304.78, 1583.09], [1304.04, 1583.88], [1303.77, 1583.63], [1294.7, 1593.33], [1299.47, 1597.76], [1308.54, 1588.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[974.59, 1302.59], [963.69, 1292.26], [961.36, 1294.72], [959.59, 1293.05], [955.99, 1296.85], [968.66, 1308.86], [974.59, 1302.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1253.92, 1421.14], [1257.14, 1417.49], [1258.2, 1418.41], [1266.33, 1409.2], [1261.02, 1404.52], [1260.17, 1405.47], [1252.47, 1398.67], [1243.44, 1408.89], [1251.26, 1415.81], [1249.78, 1417.49], [1253.92, 1421.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1207.14, 1368.63], [1213.65, 1361.71], [1209.11, 1357.45], [1209.75, 1356.76], [1206.93, 1354.11], [1200.01, 1361.47], [1201.71, 1363.08], [1199.89, 1365.03], [1202.59, 1367.57], [1204.19, 1365.85], [1207.14, 1368.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[967.54, 1050.1], [962.39, 1045.44], [953.36, 1055.4], [958.5, 1060.07], [967.54, 1050.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[998.71, 1167.37], [992.46, 1161.9], [985.92, 1169.37], [992.18, 1174.84], [998.71, 1167.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[851.69, 1326.35], [847.08, 1321.86], [840.57, 1328.56], [842.58, 1330.52], [839.61, 1333.57], [845.08, 1338.89], [851.77, 1332.01], [848.9, 1329.2], [851.69, 1326.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1102.15, 1223.36], [1103.75, 1221.48], [1104.86, 1222.43], [1112.89, 1213.03], [1105.81, 1206.99], [1098.36, 1215.72], [1099.14, 1216.37], [1096.96, 1218.93], [1102.15, 1223.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1175.15, 1269.67], [1169.63, 1264.58], [1158.04, 1277.14], [1163.56, 1282.23], [1175.15, 1269.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1361.66, 1351.32], [1358.12, 1355.26], [1369.74, 1365.51], [1373.47, 1361.7], [1361.66, 1351.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1128.43, 1365.64], [1122.8, 1360.64], [1115.46, 1368.92], [1121.1, 1373.91], [1128.43, 1365.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1109.48, 1445.57], [1102.02, 1438.75], [1094.54, 1446.94], [1102.01, 1453.75], [1109.48, 1445.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[926.16, 1044.8], [918.57, 1037.52], [913.82, 1042.48], [921.42, 1049.74], [926.16, 1044.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[932.37, 1277.35], [920.76, 1266.66], [913.77, 1274.26], [925.38, 1284.95], [932.37, 1277.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1138.63, 1478.88], [1145.6, 1471.95], [1142.9, 1469.24], [1139.68, 1472.44], [1131.84, 1464.56], [1128.09, 1468.3], [1138.63, 1478.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[822.72, 1319.23], [830.81, 1326.64], [840.08, 1316.52], [832.0, 1309.11], [822.72, 1319.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[954.2, 1205.03], [949.59, 1200.96], [948.03, 1202.72], [945.76, 1200.7], [938.95, 1208.4], [945.84, 1214.48], [954.2, 1205.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[824.14, 1312.09], [827.1, 1308.84], [824.69, 1306.65], [826.65, 1304.5], [820.59, 1299.01], [814.67, 1305.49], [819.84, 1310.19], [820.85, 1309.09], [824.14, 1312.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1266.41, 1637.19], [1272.76, 1630.23], [1260.6, 1619.14], [1254.25, 1626.1], [1266.41, 1637.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[967.13, 1083.46], [961.3, 1078.34], [959.32, 1080.57], [957.11, 1078.63], [951.39, 1085.14], [953.64, 1087.11], [951.47, 1089.57], [957.28, 1094.68], [967.13, 1083.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1161.78, 1537.56], [1167.39, 1530.96], [1160.76, 1525.31], [1155.15, 1531.9], [1161.78, 1537.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1088.59, 1391.91], [1083.27, 1386.66], [1082.4, 1387.53], [1080.04, 1385.21], [1075.92, 1389.38], [1078.28, 1391.71], [1075.24, 1394.78], [1080.57, 1400.03], [1088.59, 1391.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1426.07, 1634.69], [1408.92, 1618.88], [1400.65, 1627.79], [1417.79, 1643.59], [1426.07, 1634.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[942.76, 1344.64], [948.09, 1338.68], [944.4, 1335.41], [946.33, 1333.24], [942.81, 1330.1], [940.85, 1332.29], [935.55, 1327.56], [930.26, 1333.5], [942.76, 1344.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[873.3, 1258.88], [867.59, 1253.71], [858.15, 1264.14], [863.85, 1269.31], [873.3, 1258.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1256.47, 1278.56], [1253.66, 1276.24], [1252.46, 1277.7], [1247.07, 1273.23], [1241.66, 1279.75], [1253.42, 1289.48], [1258.66, 1283.16], [1255.12, 1280.21], [1256.47, 1278.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1122.74, 1357.32], [1117.57, 1352.23], [1112.02, 1357.86], [1112.59, 1358.43], [1106.51, 1364.61], [1111.12, 1369.14], [1122.74, 1357.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[986.16, 1205.37], [981.02, 1200.71], [977.92, 1204.14], [983.07, 1208.8], [986.16, 1205.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1183.56, 1362.87], [1175.04, 1354.63], [1167.38, 1362.55], [1175.9, 1370.79], [1183.56, 1362.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[982.09, 1060.22], [975.31, 1054.36], [964.77, 1066.56], [971.56, 1072.41], [982.09, 1060.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1011.79, 1092.11], [1006.41, 1087.5], [1001.01, 1093.81], [1006.39, 1098.41], [1011.79, 1092.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1081.71, 1109.07], [1062.41, 1091.16], [1052.57, 1101.71], [1066.6, 1114.73], [1073.74, 1107.09], [1078.99, 1111.97], [1081.71, 1109.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1293.81, 1574.08], [1288.8, 1569.4], [1280.76, 1577.97], [1281.3, 1578.46], [1280.15, 1579.69], [1284.62, 1583.85], [1293.81, 1574.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1074.8, 1333.22], [1086.91, 1320.45], [1082.85, 1316.6], [1078.07, 1321.63], [1076.73, 1320.36], [1069.39, 1328.08], [1074.8, 1333.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[817.07, 1148.18], [812.39, 1153.43], [821.27, 1161.28], [822.1, 1160.33], [823.79, 1161.83], [825.86, 1159.5], [824.45, 1158.26], [826.41, 1156.05], [823.66, 1153.62], [825.03, 1152.08], [820.18, 1147.79], [818.62, 1149.55], [817.07, 1148.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1238.77, 1417.24], [1233.07, 1411.95], [1227.24, 1418.23], [1232.94, 1423.53], [1238.77, 1417.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1244.45, 1468.03], [1241.18, 1465.06], [1231.17, 1476.1], [1237.76, 1482.09], [1246.86, 1472.04], [1243.54, 1469.02], [1244.45, 1468.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1076.71, 1094.23], [1079.53, 1090.98], [1080.13, 1091.49], [1086.0, 1084.77], [1080.3, 1079.81], [1074.07, 1086.96], [1075.84, 1088.5], [1073.38, 1091.33], [1076.71, 1094.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1144.91, 1440.21], [1137.7, 1433.57], [1131.04, 1440.81], [1132.15, 1441.82], [1129.98, 1444.18], [1132.08, 1446.11], [1129.61, 1448.8], [1133.63, 1452.48], [1144.91, 1440.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1030.01, 1351.99], [1020.15, 1343.26], [1011.14, 1353.34], [1021.0, 1362.07], [1030.01, 1351.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1013.86, 1192.14], [1004.98, 1184.27], [1000.44, 1189.4], [1010.69, 1198.5], [1013.8, 1195.0], [1012.42, 1193.77], [1013.86, 1192.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1147.99, 1226.93], [1143.02, 1222.67], [1138.33, 1228.14], [1143.3, 1232.4], [1147.99, 1226.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[918.62, 1061.06], [924.37, 1054.71], [909.99, 1041.68], [904.24, 1048.03], [918.62, 1061.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[993.58, 1099.24], [990.45, 1096.52], [986.18, 1101.43], [989.29, 1104.15], [993.58, 1099.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1043.24, 1219.12], [1033.46, 1210.07], [1029.09, 1214.8], [1038.87, 1223.85], [1043.24, 1219.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1073.36, 1082.57], [1079.19, 1076.16], [1073.73, 1071.2], [1067.91, 1077.61], [1073.36, 1082.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[894.83, 1207.83], [888.61, 1202.42], [880.26, 1212.03], [886.48, 1217.44], [894.83, 1207.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1199.51, 1349.01], [1188.81, 1339.94], [1183.29, 1346.45], [1193.99, 1355.52], [1199.51, 1349.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1158.41, 1481.29], [1153.87, 1476.86], [1147.95, 1482.91], [1152.49, 1487.34], [1158.41, 1481.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[879.13, 1272.85], [874.71, 1268.87], [872.25, 1271.57], [868.69, 1268.35], [864.35, 1273.14], [867.76, 1276.23], [866.57, 1277.54], [871.13, 1281.68], [879.13, 1272.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1244.2, 1300.58], [1232.93, 1290.26], [1226.54, 1297.23], [1233.49, 1303.61], [1228.59, 1308.96], [1234.31, 1314.19], [1238.8, 1309.27], [1237.41, 1308.0], [1244.2, 1300.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1248.26, 1289.41], [1241.65, 1283.13], [1236.11, 1288.96], [1242.71, 1295.24], [1248.26, 1289.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[962.87, 1011.84], [968.19, 1005.96], [954.54, 993.34], [949.03, 999.32], [951.63, 1001.71], [950.67, 1002.73], [961.35, 1012.62], [962.32, 1011.41], [962.87, 1011.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1143.38, 1350.18], [1139.88, 1347.1], [1140.54, 1346.34], [1137.62, 1343.77], [1136.58, 1344.94], [1133.42, 1342.16], [1129.26, 1346.87], [1126.04, 1344.02], [1123.68, 1346.7], [1128.04, 1350.55], [1130.03, 1348.3], [1138.48, 1355.74], [1143.38, 1350.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[850.38, 1130.6], [855.76, 1125.04], [851.31, 1120.74], [850.5, 1121.58], [845.51, 1116.77], [840.0, 1122.46], [845.58, 1127.85], [846.52, 1126.88], [850.38, 1130.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[897.83, 1081.09], [900.02, 1078.55], [898.79, 1077.49], [900.81, 1075.14], [890.83, 1066.57], [886.28, 1071.87], [895.48, 1079.78], [895.83, 1079.37], [897.83, 1081.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[951.05, 1070.52], [943.44, 1063.87], [936.33, 1072.01], [943.93, 1078.66], [951.05, 1070.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[927.07, 1199.46], [936.88, 1189.57], [929.87, 1182.62], [923.34, 1189.2], [924.38, 1190.23], [921.57, 1193.06], [923.42, 1194.9], [922.03, 1196.29], [924.74, 1198.99], [925.66, 1198.06], [927.07, 1199.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[877.38, 1094.1], [870.46, 1088.14], [867.54, 1091.51], [867.9, 1091.83], [865.49, 1094.61], [876.46, 1104.07], [879.55, 1100.5], [875.14, 1096.69], [877.38, 1094.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1227.45, 1251.7], [1221.97, 1246.92], [1216.25, 1253.48], [1221.72, 1258.25], [1227.45, 1251.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1287.04, 1262.03], [1281.82, 1257.08], [1278.42, 1260.67], [1277.97, 1260.24], [1270.66, 1267.95], [1276.34, 1273.32], [1287.04, 1262.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1102.88, 1098.1], [1096.92, 1092.81], [1093.79, 1096.34], [1092.39, 1095.11], [1088.69, 1099.28], [1096.06, 1105.81], [1102.88, 1098.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1053.98, 1266.03], [1050.12, 1262.33], [1051.23, 1261.19], [1047.02, 1257.15], [1041.2, 1263.21], [1044.86, 1266.73], [1045.51, 1266.05], [1049.91, 1270.27], [1053.98, 1266.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1262.23, 1418.74], [1267.92, 1423.94], [1275.17, 1416.01], [1269.48, 1410.81], [1262.23, 1418.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1176.24, 1406.2], [1170.98, 1401.37], [1161.42, 1411.79], [1166.68, 1416.61], [1176.24, 1406.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1252.08, 1489.83], [1257.93, 1495.1], [1268.55, 1483.33], [1262.71, 1478.06], [1252.08, 1489.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[946.54, 1198.07], [941.12, 1192.88], [933.45, 1200.87], [934.61, 1201.99], [933.37, 1203.28], [937.63, 1207.37], [946.54, 1198.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1008.12, 1273.36], [1014.23, 1266.79], [1014.65, 1267.18], [1017.89, 1263.68], [1014.69, 1260.71], [1011.76, 1263.86], [1010.67, 1262.84], [1004.24, 1269.76], [1008.12, 1273.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1119.1, 1220.2], [1112.7, 1214.74], [1105.91, 1222.66], [1112.31, 1228.14], [1119.1, 1220.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1014.05, 1390.6], [1010.24, 1387.14], [1008.28, 1389.29], [1004.91, 1386.23], [997.89, 1393.94], [1005.06, 1400.48], [1014.05, 1390.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1283.4, 1325.28], [1277.83, 1331.2], [1302.53, 1352.48], [1307.99, 1346.62], [1283.4, 1325.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1269.84, 1444.24], [1261.63, 1453.36], [1281.44, 1471.22], [1258.44, 1496.3], [1272.13, 1508.86], [1303.0, 1475.22], [1291.09, 1464.29], [1291.56, 1463.77], [1269.84, 1444.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1138.85, 1221.03], [1134.8, 1217.44], [1129.95, 1222.93], [1134.0, 1226.51], [1138.85, 1221.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[922.01, 1122.46], [934.26, 1108.83], [921.98, 1097.78], [909.72, 1111.42], [922.01, 1122.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[964.82, 1308.75], [960.41, 1304.85], [958.92, 1306.54], [952.78, 1301.11], [948.51, 1305.94], [959.07, 1315.27], [964.82, 1308.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[994.14, 1319.46], [998.94, 1314.5], [999.74, 1315.28], [1003.61, 1311.29], [997.3, 1305.16], [992.82, 1309.76], [993.41, 1310.33], [989.21, 1314.67], [994.14, 1319.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1127.85, 1228.34], [1122.08, 1223.33], [1115.59, 1230.79], [1121.36, 1235.81], [1127.85, 1228.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[739.24, 1271.4], [735.14, 1267.96], [729.87, 1274.19], [733.96, 1277.63], [739.24, 1271.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1270.9, 1613.08], [1279.81, 1621.19], [1284.44, 1616.1], [1275.54, 1607.99], [1270.9, 1613.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[881.04, 1154.0], [883.98, 1150.81], [885.54, 1152.25], [889.6, 1147.86], [888.03, 1146.41], [890.41, 1143.84], [883.24, 1137.21], [880.5, 1140.16], [881.13, 1140.75], [877.5, 1144.67], [878.78, 1145.86], [875.77, 1149.12], [881.04, 1154.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[981.55, 1080.28], [984.97, 1076.22], [986.44, 1077.47], [992.8, 1069.93], [982.88, 1061.58], [979.43, 1065.67], [980.31, 1066.42], [974.0, 1073.91], [981.55, 1080.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1172.21, 1286.89], [1176.91, 1281.84], [1177.73, 1282.6], [1180.8, 1279.3], [1175.18, 1274.06], [1167.4, 1282.41], [1172.21, 1286.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1136.14, 1287.18], [1125.87, 1298.38], [1132.51, 1304.14], [1142.5, 1293.1], [1136.14, 1287.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[973.33, 1089.61], [971.1, 1087.54], [969.77, 1088.97], [967.04, 1086.43], [960.52, 1093.43], [965.47, 1098.05], [973.33, 1089.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1018.59, 1279.34], [1032.07, 1264.72], [1026.82, 1259.87], [1013.34, 1274.49], [1018.59, 1279.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1249.86, 1488.98], [1258.38, 1479.81], [1253.63, 1475.39], [1250.79, 1478.44], [1249.52, 1477.26], [1242.71, 1484.59], [1245.49, 1487.19], [1246.63, 1485.97], [1249.86, 1488.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1154.49, 1339.46], [1146.55, 1332.21], [1140.71, 1338.63], [1148.65, 1345.87], [1154.49, 1339.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1196.88, 1549.08], [1189.79, 1542.47], [1182.07, 1550.75], [1184.13, 1552.68], [1181.61, 1555.37], [1186.64, 1560.06], [1196.88, 1549.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1278.84, 1562.18], [1273.73, 1557.62], [1265.69, 1566.55], [1270.79, 1571.11], [1278.84, 1562.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[886.8, 1201.88], [879.75, 1195.51], [872.5, 1203.54], [879.56, 1209.91], [886.8, 1201.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1099.66, 1207.57], [1089.33, 1198.38], [1083.74, 1204.67], [1086.62, 1207.22], [1085.68, 1208.28], [1093.13, 1214.91], [1099.66, 1207.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[956.4, 1018.61], [960.77, 1013.79], [947.13, 1001.41], [941.79, 1007.31], [953.51, 1017.93], [954.47, 1016.87], [956.4, 1018.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[930.5, 1141.08], [922.37, 1132.99], [916.39, 1138.99], [924.52, 1147.09], [930.5, 1141.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[857.5, 1186.59], [854.88, 1184.42], [859.65, 1178.61], [855.18, 1174.93], [847.13, 1184.73], [847.82, 1185.3], [846.07, 1187.43], [852.43, 1192.66], [857.5, 1186.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[817.62, 1212.19], [812.03, 1207.11], [802.77, 1217.28], [808.35, 1222.36], [817.62, 1212.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1229.58, 1377.35], [1223.93, 1372.31], [1220.87, 1375.74], [1219.67, 1374.66], [1215.78, 1379.02], [1222.64, 1385.14], [1229.58, 1377.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1038.02, 1225.38], [1035.63, 1223.14], [1036.24, 1222.51], [1028.44, 1215.17], [1024.17, 1219.7], [1031.89, 1226.97], [1033.91, 1224.82], [1036.37, 1227.14], [1038.02, 1225.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1362.1, 1684.98], [1356.01, 1679.56], [1349.69, 1686.68], [1355.79, 1692.09], [1362.1, 1684.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[858.26, 1197.52], [854.11, 1193.93], [848.81, 1200.04], [852.96, 1203.64], [858.26, 1197.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1091.6, 1461.73], [1085.86, 1456.46], [1082.39, 1460.22], [1079.25, 1457.34], [1072.86, 1464.3], [1081.73, 1472.46], [1091.6, 1461.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1011.45, 1250.61], [1014.88, 1246.5], [1005.76, 1238.89], [1002.45, 1242.85], [1003.43, 1243.66], [1002.03, 1245.35], [1007.89, 1250.23], [1009.16, 1248.7], [1011.45, 1250.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1191.63, 1284.27], [1184.8, 1278.09], [1175.39, 1288.5], [1182.23, 1294.67], [1191.63, 1284.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[851.45, 1350.83], [866.28, 1334.88], [859.51, 1328.58], [844.67, 1344.52], [851.45, 1350.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1156.0, 1231.24], [1151.48, 1227.33], [1147.38, 1232.09], [1151.9, 1236.0], [1156.0, 1231.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1000.5, 1265.09], [1006.35, 1258.4], [998.66, 1251.68], [999.15, 1251.11], [996.88, 1249.13], [989.88, 1257.15], [993.96, 1260.73], [994.63, 1259.96], [1000.5, 1265.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[893.91, 1281.59], [889.08, 1277.17], [885.55, 1281.05], [883.93, 1279.58], [879.56, 1284.36], [880.39, 1285.11], [878.2, 1287.51], [883.83, 1292.64], [893.91, 1281.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[943.44, 1023.69], [935.91, 1016.54], [931.03, 1021.66], [938.57, 1028.82], [943.44, 1023.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[903.46, 1313.37], [910.08, 1306.71], [908.52, 1305.15], [912.63, 1301.01], [906.38, 1294.8], [904.1, 1297.11], [903.58, 1296.59], [895.03, 1305.19], [899.34, 1309.46], [899.43, 1309.37], [903.46, 1313.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[942.38, 1120.0], [935.69, 1113.61], [927.01, 1122.68], [933.7, 1129.07], [942.38, 1120.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[917.25, 1288.36], [920.55, 1284.99], [915.66, 1279.91], [912.11, 1283.4], [917.25, 1288.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1256.12, 1310.68], [1251.96, 1306.76], [1248.16, 1310.81], [1252.33, 1314.72], [1256.12, 1310.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1161.8, 1491.16], [1158.03, 1487.29], [1153.38, 1491.84], [1157.15, 1495.7], [1161.8, 1491.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1069.57, 1313.01], [1063.81, 1307.54], [1054.61, 1317.26], [1060.37, 1322.71], [1069.57, 1313.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1124.75, 1281.61], [1110.7, 1268.07], [1100.07, 1279.1], [1101.09, 1280.07], [1096.02, 1285.33], [1108.34, 1297.21], [1113.53, 1291.82], [1114.25, 1292.51], [1124.75, 1281.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1143.69, 1244.42], [1138.73, 1239.73], [1129.31, 1249.68], [1134.27, 1254.38], [1143.69, 1244.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1053.61, 1149.77], [1059.4, 1143.46], [1050.38, 1135.17], [1047.03, 1138.82], [1045.28, 1137.22], [1044.19, 1138.4], [1042.21, 1136.58], [1039.56, 1139.47], [1046.02, 1145.4], [1047.32, 1143.99], [1053.61, 1149.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[903.47, 1288.4], [898.45, 1283.8], [895.68, 1286.82], [893.94, 1285.23], [887.66, 1292.08], [890.37, 1294.56], [888.2, 1296.93], [892.27, 1300.65], [903.47, 1288.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1314.08, 1681.75], [1323.42, 1689.92], [1334.32, 1677.45], [1324.98, 1669.28], [1314.08, 1681.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1214.01, 1436.86], [1209.18, 1432.37], [1199.4, 1442.87], [1204.22, 1447.37], [1214.01, 1436.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1038.3, 1430.88], [1052.11, 1442.91], [1063.49, 1430.41], [1049.84, 1418.2], [1038.3, 1430.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[917.97, 1190.16], [928.24, 1179.8], [921.73, 1173.36], [911.68, 1183.52], [913.44, 1185.27], [912.05, 1186.67], [915.25, 1189.85], [916.44, 1188.65], [917.97, 1190.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1158.03, 1469.24], [1168.25, 1458.3], [1161.51, 1452.0], [1160.41, 1453.17], [1155.3, 1448.4], [1143.77, 1460.74], [1151.16, 1467.65], [1153.57, 1465.07], [1158.03, 1469.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1157.79, 1249.74], [1147.28, 1261.45], [1157.48, 1270.61], [1167.99, 1258.9], [1157.79, 1249.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1298.49, 1270.21], [1291.62, 1264.02], [1280.68, 1276.17], [1287.55, 1282.36], [1298.49, 1270.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1227.08, 1393.88], [1235.89, 1383.95], [1230.23, 1378.94], [1220.62, 1389.77], [1224.27, 1393.02], [1225.07, 1392.11], [1227.08, 1393.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[895.28, 1132.92], [889.14, 1127.31], [882.53, 1134.57], [888.67, 1140.18], [895.28, 1132.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1153.42, 1251.71], [1148.23, 1246.93], [1138.44, 1257.58], [1143.63, 1262.36], [1153.42, 1251.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1128.43, 1488.63], [1121.69, 1482.46], [1113.69, 1491.2], [1120.43, 1497.37], [1128.43, 1488.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1029.63, 1398.5], [1026.62, 1395.72], [1025.26, 1397.19], [1023.64, 1395.68], [1017.6, 1402.2], [1022.94, 1407.15], [1028.47, 1401.18], [1027.76, 1400.52], [1029.63, 1398.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1198.07, 1360.25], [1193.47, 1356.19], [1187.34, 1363.08], [1191.94, 1367.14], [1198.07, 1360.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1162.39, 1519.68], [1155.87, 1513.44], [1148.62, 1521.0], [1150.81, 1523.09], [1150.17, 1523.76], [1154.51, 1527.92], [1162.39, 1519.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1204.75, 1510.03], [1214.96, 1499.16], [1207.92, 1492.54], [1205.97, 1494.61], [1199.81, 1488.81], [1190.69, 1498.52], [1199.72, 1507.01], [1200.57, 1506.1], [1204.75, 1510.03]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1243.7, 1530.77], [1237.6, 1524.65], [1226.96, 1535.25], [1233.06, 1541.37], [1243.7, 1530.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[897.33, 1100.1], [901.19, 1095.74], [903.31, 1097.63], [907.36, 1093.06], [905.09, 1091.04], [909.57, 1085.99], [905.68, 1082.56], [893.3, 1096.53], [897.33, 1100.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1256.61, 1349.82], [1250.96, 1344.09], [1242.34, 1352.61], [1247.99, 1358.34], [1256.61, 1349.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1340.39, 1628.96], [1325.69, 1615.56], [1318.72, 1623.14], [1324.38, 1628.31], [1323.74, 1629.0], [1323.02, 1629.78], [1326.38, 1632.84], [1327.15, 1632.0], [1327.73, 1631.37], [1333.41, 1636.56], [1340.39, 1628.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[871.58, 1104.67], [863.17, 1097.44], [858.65, 1102.7], [867.05, 1109.93], [871.58, 1104.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[996.82, 1332.63], [999.25, 1329.92], [1000.1, 1330.68], [1008.61, 1321.15], [1002.83, 1315.98], [991.89, 1328.24], [996.82, 1332.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1069.28, 1269.46], [1063.84, 1264.65], [1059.35, 1269.74], [1064.8, 1274.54], [1069.28, 1269.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1116.32, 1448.0], [1121.28, 1442.65], [1122.11, 1443.42], [1131.8, 1432.95], [1124.49, 1426.18], [1114.69, 1436.76], [1117.03, 1438.93], [1112.18, 1444.16], [1116.32, 1448.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[835.23, 1374.94], [843.19, 1382.06], [847.86, 1376.88], [839.9, 1369.76], [835.23, 1374.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[829.99, 1382.7], [836.37, 1388.23], [841.69, 1382.15], [835.31, 1376.61], [829.99, 1382.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1695.07, 590.34], [1700.71, 583.7], [1693.68, 577.72], [1690.71, 581.21], [1691.55, 581.92], [1688.86, 585.06], [1695.07, 590.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1655.85, 593.47], [1651.74, 588.99], [1645.06, 595.06], [1646.0, 596.07], [1643.32, 598.51], [1646.51, 601.98], [1655.85, 593.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1557.11, 985.94], [1552.2, 981.55], [1542.5, 992.34], [1546.99, 996.36], [1547.68, 995.6], [1548.09, 995.96], [1557.11, 985.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1754.31, 978.97], [1748.72, 974.08], [1745.78, 977.44], [1751.37, 982.31], [1754.31, 978.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2146.63, 1001.98], [2154.69, 992.69], [2139.34, 979.26], [2131.41, 988.19], [2146.63, 1001.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2115.73, 937.7], [2117.82, 935.16], [2115.87, 933.54], [2119.67, 928.95], [2110.62, 921.47], [2103.39, 930.21], [2112.34, 937.62], [2113.68, 936.0], [2115.73, 937.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1566.47, 720.17], [1560.07, 714.26], [1547.44, 727.86], [1548.07, 728.43], [1549.31, 729.57], [1553.84, 733.77], [1566.47, 720.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2037.86, 902.15], [2039.97, 899.45], [2041.53, 900.65], [2045.92, 895.01], [2044.96, 894.26], [2046.78, 891.91], [2043.17, 889.1], [2041.6, 891.1], [2040.15, 889.97], [2035.07, 896.52], [2037.59, 898.48], [2035.92, 900.64], [2037.86, 902.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1323.55, 432.82], [1322.78, 432.16], [1324.9, 429.71], [1319.3, 424.91], [1316.94, 427.63], [1316.04, 426.86], [1305.63, 438.89], [1310.32, 442.91], [1309.67, 443.66], [1311.85, 445.52], [1313.48, 443.64], [1313.89, 443.99], [1323.55, 432.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1741.36, 888.01], [1735.5, 882.68], [1729.02, 889.77], [1734.88, 895.1], [1741.36, 888.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2104.23, 946.69], [2107.08, 943.48], [2108.24, 944.5], [2110.15, 942.34], [2109.03, 941.35], [2111.19, 938.93], [2101.81, 930.6], [2094.88, 938.39], [2104.23, 946.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1903.52, 1176.36], [1907.98, 1171.36], [1906.23, 1169.77], [1907.39, 1168.4], [1905.75, 1166.98], [1906.22, 1166.48], [1904.53, 1164.9], [1903.97, 1165.5], [1901.84, 1163.51], [1901.1, 1164.4], [1896.89, 1160.8], [1891.63, 1166.84], [1899.46, 1173.89], [1899.93, 1173.33], [1903.52, 1176.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1947.46, 1206.62], [1941.11, 1197.76], [1937.34, 1200.47], [1938.64, 1202.29], [1936.51, 1203.8], [1941.56, 1210.84], [1947.46, 1206.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1960.67, 1141.87], [1954.06, 1136.08], [1946.21, 1145.05], [1952.82, 1150.83], [1960.67, 1141.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2002.83, 937.96], [1998.1, 933.36], [1993.13, 938.47], [1997.87, 943.07], [2002.83, 937.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1552.04, 1046.41], [1556.65, 1041.46], [1551.02, 1036.26], [1548.91, 1038.51], [1547.73, 1037.41], [1545.5, 1039.81], [1546.73, 1040.94], [1546.45, 1041.23], [1552.04, 1046.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1804.31, 999.51], [1800.22, 995.82], [1793.24, 1003.56], [1797.34, 1007.25], [1804.31, 999.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1877.09, 704.65], [1882.08, 699.08], [1877.49, 694.91], [1872.44, 700.56], [1877.09, 704.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1343.94, 508.85], [1341.78, 511.23], [1340.61, 510.18], [1337.13, 514.03], [1350.24, 525.81], [1350.75, 525.25], [1351.93, 523.94], [1355.88, 519.57], [1343.94, 508.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1796.3, 992.4], [1792.97, 989.08], [1785.7, 996.37], [1789.04, 999.69], [1796.3, 992.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1974.07, 1180.43], [1970.35, 1177.17], [1967.88, 1179.98], [1964.91, 1177.37], [1960.12, 1182.83], [1970.6, 1192.01], [1975.23, 1186.72], [1971.45, 1183.41], [1974.07, 1180.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2088.12, 896.74], [2096.4, 887.58], [2090.33, 882.13], [2082.2, 891.18], [2088.12, 896.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2141.48, 936.42], [2136.68, 932.24], [2132.39, 936.94], [2137.1, 941.08], [2141.48, 936.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1894.72, 1205.03], [1880.48, 1216.78], [1887.4, 1225.11], [1899.75, 1214.92], [1896.95, 1211.55], [1898.84, 1209.99], [1894.72, 1205.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1214.41, 463.71], [1208.41, 458.32], [1205.46, 461.59], [1204.65, 460.85], [1200.32, 465.63], [1201.21, 466.42], [1197.58, 470.43], [1203.52, 475.76], [1214.41, 463.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2142.38, 931.57], [2153.21, 918.66], [2147.27, 913.67], [2134.43, 928.98], [2137.39, 931.47], [2139.4, 929.07], [2142.38, 931.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1611.37, 1029.27], [1605.68, 1024.34], [1595.62, 1035.88], [1601.32, 1040.81], [1611.37, 1029.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1527.8, 1093.02], [1527.66, 1092.9], [1528.66, 1091.8], [1524.12, 1087.72], [1523.11, 1088.82], [1522.84, 1088.57], [1516.93, 1095.11], [1517.17, 1095.32], [1515.28, 1097.42], [1519.99, 1101.65], [1527.8, 1093.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1609.24, 727.65], [1602.33, 721.01], [1597.9, 725.62], [1604.8, 732.26], [1609.24, 727.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1457.8, 553.35], [1454.72, 550.61], [1456.27, 548.87], [1452.65, 545.64], [1451.09, 547.36], [1450.63, 546.95], [1444.05, 554.27], [1451.22, 560.67], [1457.8, 553.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1829.76, 1240.91], [1824.97, 1236.27], [1819.69, 1241.73], [1824.48, 1246.37], [1829.76, 1240.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1514.14, 1057.74], [1507.33, 1051.61], [1501.85, 1057.64], [1509.87, 1064.86], [1515.19, 1058.99], [1513.99, 1057.91], [1514.14, 1057.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1844.92, 814.69], [1840.55, 810.77], [1836.04, 815.77], [1840.41, 819.68], [1844.92, 814.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1986.24, 951.52], [1982.54, 947.98], [1978.56, 952.15], [1982.26, 955.69], [1986.24, 951.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1669.87, 1039.36], [1663.94, 1034.32], [1657.58, 1041.76], [1663.51, 1046.79], [1669.87, 1039.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1220.67, 534.27], [1226.95, 539.95], [1232.43, 533.95], [1226.15, 528.26], [1220.67, 534.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1760.72, 1106.92], [1756.26, 1101.58], [1743.23, 1112.38], [1746.19, 1115.91], [1743.17, 1118.42], [1745.91, 1121.71], [1757.27, 1112.3], [1756.3, 1111.13], [1759.45, 1108.52], [1759.18, 1108.2], [1760.72, 1106.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1786.99, 1138.35], [1781.76, 1133.92], [1777.04, 1139.15], [1776.25, 1138.41], [1773.36, 1141.85], [1774.64, 1143.28], [1770.78, 1147.43], [1775.33, 1151.96], [1786.99, 1138.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1961.08, 929.13], [1957.19, 924.95], [1953.15, 928.72], [1957.04, 932.9], [1961.08, 929.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1663.17, 673.21], [1656.56, 667.48], [1646.5, 678.3], [1647.6, 679.24], [1649.18, 680.61], [1653.45, 684.32], [1663.17, 673.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1854.57, 1228.16], [1849.74, 1222.29], [1840.92, 1229.56], [1845.74, 1235.41], [1854.57, 1228.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1194.5, 446.25], [1189.49, 441.61], [1185.42, 445.98], [1183.81, 444.48], [1179.5, 449.1], [1180.52, 450.04], [1178.59, 452.11], [1183.28, 456.46], [1186.71, 452.78], [1187.63, 453.62], [1194.5, 446.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1760.98, 899.78], [1750.69, 911.24], [1756.84, 916.73], [1763.53, 909.27], [1762.43, 908.28], [1766.02, 904.28], [1760.98, 899.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1175.18, 584.76], [1177.13, 586.5], [1176.3, 587.41], [1180.26, 590.98], [1181.31, 589.83], [1182.05, 590.49], [1194.03, 577.27], [1187.94, 571.78], [1184.33, 575.76], [1183.78, 575.27], [1175.18, 584.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1684.24, 751.13], [1680.99, 748.2], [1679.05, 750.35], [1677.09, 748.58], [1666.8, 759.94], [1673.64, 766.13], [1684.23, 754.41], [1682.6, 752.94], [1684.24, 751.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1503.27, 613.02], [1514.44, 600.56], [1514.15, 600.29], [1515.24, 599.08], [1509.02, 593.54], [1501.13, 602.35], [1501.96, 603.08], [1497.58, 607.96], [1503.27, 613.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1726.56, 931.11], [1721.05, 926.09], [1712.61, 935.3], [1718.12, 940.31], [1720.36, 937.86], [1720.99, 938.43], [1724.49, 934.61], [1723.87, 934.04], [1726.56, 931.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2001.36, 982.54], [2001.95, 977.48], [1992.23, 976.35], [1991.83, 979.69], [1988.67, 979.31], [1987.86, 986.24], [2003.57, 988.09], [2004.19, 982.87], [2001.36, 982.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2091.02, 1042.82], [2086.44, 1038.71], [2081.77, 1043.89], [2086.34, 1048.02], [2091.02, 1042.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1489.83, 923.35], [1485.92, 919.84], [1484.54, 921.37], [1483.65, 920.57], [1475.62, 929.44], [1475.99, 929.78], [1474.64, 931.26], [1480.46, 936.49], [1488.37, 927.75], [1486.98, 926.5], [1489.83, 923.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2075.75, 884.78], [2081.36, 889.95], [2086.19, 884.7], [2080.59, 879.55], [2075.75, 884.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1452.65, 892.11], [1446.25, 886.26], [1436.96, 896.34], [1443.35, 902.2], [1452.65, 892.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1956.47, 941.21], [1949.58, 935.01], [1940.24, 945.34], [1947.12, 951.53], [1956.47, 941.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1683.97, 906.18], [1691.9, 897.52], [1687.13, 893.16], [1683.0, 897.67], [1681.94, 896.71], [1678.13, 900.86], [1679.01, 901.67], [1677.0, 903.87], [1681.4, 907.88], [1683.42, 905.68], [1683.97, 906.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1580.02, 661.35], [1577.42, 658.94], [1575.83, 660.64], [1572.19, 657.26], [1566.15, 663.71], [1571.0, 668.22], [1572.33, 666.79], [1573.73, 668.09], [1580.02, 661.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2010.1, 984.28], [2012.51, 982.43], [2013.12, 983.23], [2019.4, 978.43], [2012.98, 970.04], [2004.29, 976.69], [2010.1, 984.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1551.28, 1282.65], [1565.62, 1267.05], [1561.9, 1263.28], [1573.43, 1250.29], [1558.41, 1235.49], [1546.7, 1248.45], [1543.06, 1245.01], [1539.08, 1249.49], [1537.01, 1247.75], [1525.94, 1259.86], [1551.28, 1282.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1857.65, 657.22], [1867.12, 665.62], [1871.65, 660.88], [1872.27, 661.44], [1875.81, 657.64], [1872.11, 654.3], [1869.77, 652.18], [1865.73, 648.55], [1857.65, 657.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2069.04, 892.36], [2066.54, 890.08], [2062.57, 894.43], [2065.06, 896.71], [2069.04, 892.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1388.79, 427.33], [1383.15, 422.22], [1376.92, 429.04], [1377.37, 429.45], [1376.67, 430.21], [1378.7, 432.05], [1379.4, 431.28], [1382.57, 434.15], [1388.79, 427.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1125.1, 562.36], [1149.57, 535.15], [1142.89, 529.18], [1118.41, 556.38], [1125.1, 562.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1824.91, 1034.63], [1833.83, 1024.89], [1829.11, 1020.56], [1827.54, 1022.28], [1826.52, 1021.34], [1818.04, 1030.58], [1822.3, 1034.5], [1823.43, 1033.27], [1824.91, 1034.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1965.69, 661.24], [1963.26, 659.12], [1958.52, 664.57], [1960.95, 666.68], [1965.69, 661.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1733.83, 835.98], [1728.41, 831.25], [1723.46, 836.87], [1728.87, 841.6], [1733.83, 835.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1866.2, 711.37], [1876.83, 721.1], [1880.81, 716.81], [1879.92, 715.98], [1883.59, 711.86], [1875.17, 704.27], [1872.91, 707.0], [1871.97, 706.2], [1870.1, 706.79], [1866.2, 711.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1737.46, 583.15], [1728.82, 574.28], [1722.0, 580.93], [1730.63, 589.8], [1737.46, 583.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1857.86, 672.21], [1864.1, 677.49], [1868.4, 672.34], [1862.2, 667.07], [1857.86, 672.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1937.33, 878.01], [1932.19, 873.52], [1928.06, 878.21], [1933.2, 882.7], [1937.33, 878.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1795.18, 797.4], [1791.58, 794.12], [1789.21, 796.7], [1787.5, 795.14], [1780.11, 803.17], [1785.41, 808.02], [1795.18, 797.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1768.63, 1055.3], [1763.46, 1050.07], [1760.5, 1053.0], [1759.54, 1052.04], [1756.68, 1054.86], [1757.95, 1056.14], [1754.28, 1059.78], [1759.15, 1064.68], [1768.63, 1055.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1608.31, 1333.95], [1620.52, 1320.49], [1632.56, 1307.27], [1614.91, 1291.08], [1606.78, 1300.08], [1616.27, 1308.26], [1599.48, 1326.0], [1608.31, 1333.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1741.26, 581.83], [1748.25, 574.46], [1744.12, 570.54], [1744.49, 570.15], [1736.64, 562.71], [1733.96, 565.54], [1732.29, 563.96], [1729.53, 566.87], [1730.95, 568.22], [1728.78, 570.51], [1735.05, 576.45], [1735.3, 576.19], [1741.26, 581.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1812.59, 1006.01], [1807.44, 1001.08], [1798.41, 1010.55], [1803.57, 1015.46], [1812.59, 1006.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1800.15, 1176.12], [1805.5, 1171.19], [1800.88, 1166.17], [1802.92, 1164.29], [1799.24, 1160.31], [1788.41, 1170.29], [1793.04, 1175.32], [1796.5, 1172.14], [1800.15, 1176.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1363.79, 389.01], [1360.2, 385.91], [1346.92, 401.17], [1351.11, 404.78], [1356.91, 398.13], [1356.3, 397.6], [1363.79, 389.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1792.35, 934.9], [1786.83, 929.81], [1780.25, 936.89], [1785.77, 941.98], [1792.35, 934.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1495.35, 496.45], [1498.29, 495.78], [1499.94, 492.44], [1499.07, 489.71], [1496.25, 488.19], [1492.74, 489.0], [1491.65, 491.96], [1492.44, 495.2], [1495.35, 496.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1706.04, 910.3], [1701.51, 906.24], [1699.87, 908.06], [1699.05, 907.32], [1693.23, 913.77], [1693.41, 913.95], [1689.4, 918.4], [1693.5, 922.08], [1694.83, 920.61], [1695.36, 921.09], [1698.24, 917.91], [1699.63, 919.15], [1702.92, 915.5], [1702.06, 914.71], [1706.04, 910.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2115.09, 874.33], [2107.1, 867.37], [2105.55, 869.07], [2104.55, 868.14], [2095.96, 878.02], [2096.42, 878.43], [2094.69, 880.45], [2100.44, 885.56], [2099.79, 886.25], [2102.4, 888.48], [2115.09, 874.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1334.11, 742.09], [1336.21, 739.54], [1331.31, 735.52], [1329.21, 738.07], [1334.11, 742.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1584.49, 823.45], [1591.0, 829.43], [1599.46, 820.27], [1598.82, 819.69], [1602.87, 815.31], [1597.37, 810.26], [1593.29, 814.67], [1592.93, 814.33], [1584.49, 823.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1547.19, 964.49], [1538.98, 957.18], [1538.51, 957.69], [1535.51, 955.03], [1530.11, 961.04], [1541.32, 971.02], [1547.19, 964.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1788.7, 897.07], [1784.82, 893.26], [1780.03, 898.08], [1783.9, 901.9], [1788.7, 897.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1318.91, 518.21], [1329.33, 506.65], [1328.61, 506.01], [1330.35, 504.08], [1326.03, 500.22], [1322.99, 503.59], [1322.16, 502.85], [1313.49, 512.46], [1314.34, 513.22], [1313.89, 513.72], [1318.91, 518.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1923.4, 1135.17], [1938.56, 1118.59], [1932.13, 1112.7], [1916.88, 1129.39], [1923.4, 1135.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1651.65, 1088.95], [1646.24, 1083.9], [1648.9, 1081.06], [1643.42, 1075.95], [1640.32, 1079.25], [1641.8, 1080.63], [1639.95, 1082.59], [1642.84, 1085.29], [1640.64, 1087.63], [1647.18, 1093.71], [1651.65, 1088.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1662.48, 1074.4], [1654.49, 1067.25], [1649.84, 1072.42], [1652.52, 1074.81], [1651.73, 1075.69], [1655.49, 1079.06], [1656.29, 1078.17], [1659.12, 1080.71], [1663.33, 1076.03], [1662.04, 1074.88], [1662.48, 1074.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1789.64, 881.95], [1787.41, 887.96], [1794.64, 890.62], [1796.88, 884.6], [1789.64, 881.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1834.44, 657.81], [1830.2, 653.75], [1826.57, 657.78], [1830.77, 661.65], [1834.44, 657.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1572.12, 653.85], [1566.36, 648.37], [1559.47, 655.58], [1560.19, 656.28], [1557.43, 659.18], [1562.47, 663.98], [1572.12, 653.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1987.75, 757.26], [1986.18, 755.71], [1978.44, 763.57], [1984.44, 769.48], [1991.53, 762.28], [1987.1, 757.93], [1987.75, 757.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1993.05, 973.82], [1991.36, 972.3], [1994.21, 969.16], [1990.47, 965.79], [1987.61, 968.94], [1986.07, 967.55], [1976.41, 978.2], [1983.11, 984.23], [1984.64, 982.55], [1984.92, 982.81], [1993.05, 973.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2114.42, 1034.46], [2110.54, 1031.03], [2105.25, 1036.98], [2109.13, 1040.41], [2114.42, 1034.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1932.64, 902.02], [1929.16, 899.03], [1925.02, 903.84], [1928.5, 906.84], [1932.64, 902.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1818.46, 1014.32], [1812.36, 1008.24], [1802.43, 1018.19], [1808.54, 1024.28], [1818.46, 1014.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1666.18, 736.37], [1659.04, 731.03], [1656.59, 734.28], [1654.63, 732.82], [1653.34, 734.53], [1654.09, 735.09], [1647.69, 743.64], [1656.14, 749.97], [1666.18, 736.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1178.76, 564.7], [1176.03, 562.21], [1177.18, 560.97], [1173.21, 557.34], [1166.3, 564.85], [1167.43, 565.88], [1165.36, 568.14], [1168.09, 570.64], [1169.28, 569.35], [1172.11, 571.94], [1178.76, 564.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1331.33, 457.2], [1332.81, 458.54], [1331.8, 459.64], [1335.22, 462.76], [1336.17, 461.73], [1337.37, 462.83], [1349.97, 449.05], [1343.85, 443.5], [1331.33, 457.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1925.18, 641.73], [1930.99, 635.01], [1927.32, 631.94], [1921.55, 638.66], [1925.18, 641.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1299.66, 453.41], [1294.72, 449.11], [1288.34, 456.37], [1293.28, 460.67], [1299.66, 453.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1792.55, 988.27], [1788.4, 984.02], [1780.33, 991.89], [1784.48, 996.14], [1792.55, 988.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1747.67, 616.77], [1754.33, 609.3], [1751.93, 607.07], [1753.88, 604.92], [1746.22, 598.01], [1740.84, 603.95], [1742.78, 605.72], [1739.51, 609.37], [1747.67, 616.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1699.0, 634.83], [1692.25, 628.96], [1682.01, 640.65], [1688.75, 646.52], [1699.0, 634.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1917.65, 873.12], [1913.02, 868.8], [1908.42, 873.71], [1913.06, 878.04], [1917.65, 873.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1593.86, 941.59], [1588.42, 936.74], [1586.22, 939.18], [1581.58, 935.04], [1576.58, 940.59], [1577.09, 941.04], [1573.3, 945.26], [1576.1, 947.76], [1577.65, 946.02], [1581.33, 949.3], [1582.82, 947.64], [1585.93, 950.41], [1593.86, 941.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1203.91, 610.23], [1204.88, 609.14], [1205.52, 609.71], [1215.62, 598.36], [1210.29, 593.65], [1206.88, 597.48], [1206.01, 596.71], [1203.1, 599.98], [1203.77, 600.58], [1199.02, 605.91], [1203.91, 610.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1759.9, 898.88], [1752.98, 892.68], [1743.62, 903.07], [1750.54, 909.27], [1759.9, 898.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1436.76, 424.87], [1431.89, 420.51], [1432.92, 419.37], [1427.61, 414.62], [1426.57, 415.77], [1423.49, 413.01], [1418.03, 419.08], [1431.3, 430.94], [1436.76, 424.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1759.71, 750.41], [1765.65, 755.73], [1771.8, 748.9], [1765.86, 743.58], [1759.71, 750.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1400.81, 451.06], [1407.99, 457.53], [1417.44, 447.09], [1410.25, 440.63], [1400.81, 451.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1686.26, 1024.78], [1670.53, 1042.12], [1678.54, 1049.34], [1680.68, 1046.98], [1686.67, 1052.37], [1700.26, 1037.4], [1686.26, 1024.78]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1556.73, 640.45], [1551.12, 635.94], [1543.03, 646.0], [1548.65, 650.52], [1556.73, 640.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1517.43, 786.05], [1521.79, 781.15], [1516.89, 776.82], [1512.53, 781.72], [1517.43, 786.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1924.66, 1167.0], [1939.68, 1180.63], [1945.87, 1173.82], [1930.77, 1160.2], [1924.66, 1167.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1949.66, 1154.9], [1956.24, 1161.1], [1969.68, 1146.64], [1963.05, 1140.55], [1949.66, 1154.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1721.42, 924.51], [1716.24, 919.78], [1715.04, 921.09], [1714.86, 920.92], [1711.74, 924.33], [1711.33, 923.96], [1708.31, 927.25], [1708.72, 927.63], [1707.64, 928.81], [1709.16, 930.19], [1707.83, 931.63], [1712.03, 935.45], [1720.67, 926.02], [1720.32, 925.7], [1721.42, 924.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1687.02, 801.76], [1688.51, 800.12], [1689.65, 801.15], [1693.12, 797.35], [1684.64, 789.68], [1679.68, 795.12], [1687.02, 801.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1720.29, 882.86], [1727.47, 874.68], [1720.26, 868.39], [1712.62, 877.08], [1716.21, 880.22], [1715.06, 881.52], [1717.96, 884.05], [1719.56, 882.22], [1720.29, 882.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1438.86, 728.24], [1428.26, 718.44], [1424.2, 722.8], [1434.81, 732.6], [1438.86, 728.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1606.52, 737.13], [1601.44, 733.0], [1595.99, 739.7], [1601.07, 743.84], [1606.52, 737.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2102.09, 1002.63], [2095.2, 996.26], [2091.79, 999.93], [2091.06, 999.25], [2089.17, 1001.3], [2090.64, 1002.66], [2086.83, 1006.77], [2092.98, 1012.47], [2102.09, 1002.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1682.05, 653.57], [1677.14, 649.1], [1672.2, 654.5], [1677.12, 658.96], [1682.05, 653.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1616.55, 651.69], [1622.28, 656.86], [1631.11, 647.15], [1625.37, 641.98], [1616.55, 651.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1931.3, 838.12], [1921.99, 830.02], [1917.38, 835.29], [1926.42, 843.16], [1926.67, 842.86], [1927.89, 843.93], [1931.41, 839.9], [1930.46, 839.09], [1931.3, 838.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1797.63, 1109.68], [1808.27, 1098.29], [1802.51, 1092.97], [1798.49, 1097.25], [1797.59, 1096.47], [1794.48, 1099.75], [1795.37, 1100.61], [1791.95, 1104.28], [1797.63, 1109.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2094.81, 992.48], [2091.68, 989.48], [2090.08, 991.16], [2086.78, 987.99], [2080.6, 994.45], [2081.06, 994.88], [2077.6, 998.49], [2083.58, 1004.21], [2094.81, 992.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1795.24, 677.45], [1798.1, 674.17], [1800.24, 676.03], [1803.73, 672.04], [1796.56, 665.77], [1794.52, 668.1], [1795.21, 668.71], [1790.9, 673.65], [1795.24, 677.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1997.41, 957.78], [1993.86, 954.58], [1988.47, 960.5], [1992.0, 963.7], [1997.41, 957.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1348.54, 277.61], [1351.49, 280.02], [1355.33, 275.14], [1352.18, 272.71], [1348.54, 277.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1945.63, 1127.62], [1939.4, 1121.95], [1932.59, 1129.41], [1938.82, 1135.1], [1945.63, 1127.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1222.78, 544.66], [1222.41, 544.31], [1222.79, 543.88], [1220.22, 541.55], [1219.78, 542.02], [1216.94, 539.44], [1211.24, 545.69], [1211.6, 546.02], [1206.29, 551.83], [1211.51, 556.56], [1212.74, 555.21], [1212.97, 555.43], [1222.78, 544.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2060.74, 903.43], [2058.95, 905.53], [2054.86, 902.08], [2056.13, 900.57], [2051.19, 896.41], [2043.72, 905.21], [2055.89, 915.48], [2063.88, 906.08], [2060.74, 903.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1856.57, 862.65], [1848.8, 856.14], [1849.26, 855.6], [1847.16, 853.85], [1845.07, 856.33], [1843.97, 855.4], [1842.25, 857.44], [1843.8, 858.73], [1841.89, 861.0], [1844.83, 863.46], [1843.93, 864.53], [1850.76, 870.25], [1853.93, 866.49], [1853.58, 866.2], [1856.57, 862.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1692.22, 971.71], [1686.5, 966.33], [1683.05, 969.99], [1682.84, 969.79], [1679.81, 973.0], [1680.03, 973.22], [1676.35, 977.11], [1682.05, 982.45], [1686.05, 978.24], [1686.33, 978.5], [1689.91, 974.72], [1689.62, 974.46], [1692.22, 971.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2073.59, 919.54], [2066.37, 913.14], [2064.69, 915.04], [2061.83, 912.49], [2056.89, 918.06], [2066.96, 927.0], [2073.59, 919.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1673.58, 634.25], [1684.51, 622.43], [1683.48, 621.48], [1682.15, 620.26], [1678.24, 616.68], [1675.1, 620.08], [1674.7, 619.72], [1666.92, 628.13], [1673.58, 634.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1680.59, 833.49], [1674.35, 827.99], [1671.04, 831.71], [1672.07, 832.62], [1669.14, 835.92], [1674.34, 840.51], [1680.59, 833.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1970.06, 936.29], [1965.35, 932.16], [1961.29, 936.78], [1966.0, 940.92], [1970.06, 936.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1702.44, 980.46], [1697.51, 985.86], [1696.17, 984.65], [1693.42, 987.67], [1693.24, 987.51], [1689.61, 991.5], [1692.88, 994.46], [1690.81, 996.74], [1690.57, 998.52], [1693.05, 1000.77], [1707.43, 984.98], [1702.44, 980.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1408.48, 735.79], [1417.8, 725.09], [1413.61, 721.46], [1410.89, 724.59], [1409.52, 723.41], [1402.92, 730.98], [1403.99, 731.9], [1407.52, 734.95], [1408.48, 735.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1318.34, 495.71], [1314.75, 492.33], [1310.24, 497.1], [1309.58, 496.47], [1306.02, 500.24], [1306.43, 500.62], [1303.89, 503.3], [1304.61, 503.97], [1305.21, 504.53], [1304.03, 505.79], [1308.31, 509.8], [1308.99, 510.44], [1316.15, 502.88], [1313.72, 500.6], [1318.34, 495.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1797.58, 874.5], [1801.66, 878.22], [1799.77, 880.28], [1802.33, 882.63], [1804.15, 880.65], [1808.62, 884.73], [1817.32, 875.26], [1806.21, 865.11], [1797.58, 874.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2009.88, 944.33], [2006.89, 941.48], [2001.75, 946.87], [2004.75, 949.72], [2009.88, 944.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1482.42, 1076.58], [1486.96, 1071.35], [1475.75, 1061.71], [1470.63, 1067.62], [1476.91, 1073.03], [1477.49, 1072.34], [1482.42, 1076.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1543.43, 660.35], [1536.36, 654.36], [1531.91, 659.6], [1538.99, 665.59], [1543.43, 660.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1807.9, 814.52], [1801.95, 808.77], [1794.68, 816.23], [1800.63, 821.99], [1807.9, 814.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1211.61, 540.78], [1211.14, 540.34], [1212.77, 538.58], [1207.16, 533.4], [1197.55, 543.77], [1197.94, 544.12], [1196.89, 545.25], [1198.54, 546.77], [1199.69, 545.54], [1203.08, 548.66], [1206.85, 544.59], [1207.52, 545.2], [1211.61, 540.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1231.67, 655.25], [1219.53, 644.04], [1219.29, 643.83], [1206.47, 658.35], [1218.56, 669.0], [1231.67, 655.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1720.57, 865.38], [1717.09, 862.28], [1716.09, 863.39], [1714.3, 861.79], [1712.45, 863.85], [1711.79, 863.26], [1706.08, 869.62], [1712.03, 874.91], [1720.57, 865.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2019.54, 944.63], [2030.42, 933.17], [2024.18, 927.25], [2010.84, 941.27], [2014.29, 944.55], [2016.74, 941.97], [2019.54, 944.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1718.49, 834.15], [1713.13, 829.25], [1708.0, 834.81], [1713.36, 839.72], [1718.49, 834.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2034.07, 880.56], [2028.18, 875.44], [2026.16, 877.76], [2024.97, 876.74], [2021.78, 880.42], [2022.66, 881.2], [2019.69, 884.63], [2025.87, 890.01], [2034.07, 880.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1859.1, 684.06], [1849.94, 675.36], [1846.54, 679.08], [1842.62, 675.45], [1837.94, 680.66], [1838.43, 681.12], [1835.46, 684.61], [1840.86, 689.55], [1838.95, 691.65], [1843.08, 695.16], [1852.48, 684.49], [1855.84, 687.5], [1859.1, 684.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1591.53, 767.88], [1602.12, 755.98], [1598.11, 752.41], [1594.07, 756.94], [1592.32, 755.38], [1588.95, 759.16], [1589.91, 760.03], [1586.72, 763.61], [1591.53, 767.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1648.29, 586.9], [1642.32, 581.15], [1635.97, 587.7], [1638.6, 590.24], [1636.79, 592.1], [1640.13, 595.32], [1648.29, 586.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2081.45, 1034.57], [2076.86, 1030.67], [2072.54, 1035.76], [2077.13, 1039.66], [2081.45, 1034.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1794.93, 1154.59], [1791.49, 1149.87], [1785.22, 1154.43], [1785.98, 1155.48], [1779.19, 1160.42], [1781.88, 1164.1], [1794.93, 1154.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1367.51, 498.51], [1370.11, 495.65], [1371.36, 496.77], [1385.17, 481.55], [1380.13, 477.0], [1379.11, 476.08], [1378.27, 475.32], [1376.38, 477.39], [1376.03, 477.08], [1364.04, 490.3], [1364.7, 490.9], [1362.16, 493.7], [1367.51, 498.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1785.75, 795.14], [1784.97, 794.43], [1788.96, 790.04], [1785.04, 786.51], [1781.04, 790.9], [1779.66, 789.65], [1773.09, 796.89], [1779.17, 802.38], [1785.75, 795.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1481.12, 567.59], [1473.64, 560.89], [1471.58, 563.17], [1471.09, 562.74], [1463.37, 571.31], [1471.49, 578.59], [1479.2, 570.04], [1479.04, 569.89], [1481.12, 567.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1608.23, 629.64], [1604.52, 626.02], [1595.48, 635.2], [1599.18, 638.82], [1608.23, 629.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1828.83, 949.58], [1821.19, 943.06], [1818.13, 946.65], [1817.52, 946.12], [1814.91, 949.16], [1825.2, 957.94], [1829.42, 952.99], [1827.4, 951.26], [1828.83, 949.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1826.33, 1227.37], [1820.65, 1221.56], [1813.38, 1228.67], [1819.06, 1234.48], [1826.33, 1227.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1823.21, 901.41], [1821.18, 899.6], [1823.49, 897.04], [1819.32, 893.31], [1817.01, 895.88], [1814.64, 893.76], [1808.96, 900.07], [1817.53, 907.72], [1823.21, 901.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1917.09, 886.88], [1911.88, 881.97], [1907.16, 886.93], [1912.36, 891.84], [1917.09, 886.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1617.92, 633.19], [1612.21, 628.32], [1602.76, 639.35], [1608.47, 644.21], [1617.92, 633.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1992.41, 782.93], [1989.76, 780.67], [1985.89, 785.2], [1988.53, 787.46], [1992.41, 782.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1578.02, 1006.26], [1575.8, 1004.19], [1573.78, 1006.35], [1570.75, 1003.54], [1564.42, 1010.31], [1564.69, 1010.56], [1563.26, 1012.1], [1564.85, 1013.57], [1566.14, 1012.18], [1569.53, 1015.33], [1578.02, 1006.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1914.33, 1100.32], [1909.27, 1095.35], [1906.55, 1098.13], [1905.22, 1096.82], [1902.24, 1099.85], [1902.86, 1100.45], [1899.44, 1103.93], [1905.21, 1109.6], [1914.33, 1100.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1740.56, 615.03], [1734.49, 609.6], [1726.71, 618.29], [1732.8, 623.73], [1740.56, 615.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1426.75, 739.56], [1420.48, 733.73], [1417.0, 737.45], [1418.22, 738.59], [1415.24, 741.75], [1420.28, 746.46], [1426.75, 739.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1938.92, 739.12], [1935.12, 735.76], [1926.83, 745.11], [1931.93, 749.64], [1935.82, 745.24], [1934.51, 744.08], [1938.92, 739.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1502.32, 628.17], [1496.85, 623.45], [1492.94, 627.95], [1498.41, 632.67], [1502.32, 628.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2071.28, 1025.05], [2068.5, 1022.55], [2064.17, 1027.36], [2066.96, 1029.86], [2071.28, 1025.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1617.87, 733.05], [1611.43, 726.94], [1606.89, 731.73], [1613.33, 737.84], [1617.87, 733.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1706.52, 729.89], [1704.32, 727.87], [1704.68, 727.47], [1705.2, 726.91], [1697.02, 719.43], [1694.88, 721.76], [1693.4, 720.4], [1690.89, 723.13], [1691.71, 723.88], [1689.9, 725.84], [1695.65, 731.12], [1698.69, 733.91], [1700.93, 735.95], [1706.52, 729.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1906.22, 868.1], [1908.97, 864.89], [1910.77, 866.42], [1913.57, 863.12], [1900.71, 852.23], [1897.22, 856.32], [1899.87, 858.56], [1897.82, 860.97], [1906.22, 868.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1751.26, 892.71], [1744.48, 886.68], [1735.94, 896.19], [1742.73, 902.23], [1751.26, 892.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1592.52, 720.88], [1587.8, 716.92], [1584.1, 721.32], [1588.81, 725.29], [1592.52, 720.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1222.15, 603.18], [1216.46, 598.15], [1208.44, 607.17], [1209.41, 608.02], [1207.95, 609.66], [1212.04, 613.29], [1213.45, 611.72], [1214.06, 612.26], [1222.15, 603.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2091.91, 787.34], [2098.76, 778.69], [2095.79, 776.34], [2093.54, 779.17], [2092.14, 778.06], [2087.53, 783.88], [2091.91, 787.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1642.29, 983.68], [1632.75, 994.19], [1631.94, 993.45], [1628.25, 997.52], [1634.19, 1002.86], [1638.72, 997.86], [1639.77, 998.8], [1642.31, 996.0], [1641.43, 995.2], [1647.57, 988.44], [1642.29, 983.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1475.84, 911.71], [1470.5, 906.86], [1459.85, 918.51], [1465.2, 923.36], [1475.84, 911.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1924.42, 866.93], [1918.22, 861.15], [1915.36, 864.19], [1921.56, 869.98], [1924.42, 866.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1637.49, 1063.68], [1632.12, 1059.18], [1626.65, 1065.67], [1632.03, 1070.17], [1637.49, 1063.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2073.87, 995.22], [2074.21, 992.56], [2077.89, 993.02], [2078.49, 988.25], [2081.34, 988.61], [2082.17, 981.96], [2072.67, 980.78], [2072.56, 981.71], [2068.33, 981.19], [2066.96, 992.13], [2070.95, 992.63], [2070.68, 994.83], [2073.87, 995.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1876.01, 1274.52], [1871.37, 1270.28], [1867.31, 1274.72], [1869.64, 1276.85], [1871.94, 1278.95], [1876.01, 1274.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1579.33, 1064.64], [1573.22, 1059.23], [1564.55, 1068.94], [1569.18, 1073.04], [1570.08, 1072.03], [1571.57, 1073.35], [1579.33, 1064.64]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[1847.66, 1217.12], [1840.84, 1210.1], [1835.07, 1215.67], [1841.89, 1222.69], [1847.66, 1217.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1508.03, 646.38], [1500.71, 639.55], [1498.97, 641.4], [1497.49, 640.02], [1493.36, 644.41], [1502.17, 652.62], [1508.03, 646.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2016.02, 821.18], [2007.33, 813.6], [2002.16, 819.52], [2010.84, 827.1], [2016.02, 821.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1466.84, 330.69], [1463.27, 327.44], [1458.8, 332.35], [1462.37, 335.6], [1466.84, 330.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1733.6, 1081.31], [1728.86, 1077.05], [1723.14, 1083.38], [1721.09, 1081.54], [1716.89, 1086.18], [1724.37, 1092.89], [1722.43, 1095.04], [1726.36, 1098.57], [1740.17, 1083.29], [1735.55, 1079.14], [1733.6, 1081.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1481.21, 890.57], [1476.82, 886.73], [1469.41, 895.14], [1473.79, 898.97], [1481.21, 890.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1823.38, 643.74], [1819.74, 640.59], [1814.55, 646.22], [1815.02, 646.65], [1813.21, 648.76], [1816.9, 652.16], [1817.34, 651.69], [1821.26, 655.23], [1821.71, 654.7], [1825.26, 657.84], [1829.75, 652.89], [1829.0, 652.23], [1829.41, 651.8], [1826.13, 648.78], [1827.88, 646.71], [1823.84, 643.21], [1823.38, 643.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2002.21, 854.84], [1997.44, 850.65], [1990.91, 858.12], [1995.69, 862.29], [2002.21, 854.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2139.48, 903.68], [2133.4, 898.19], [2132.04, 899.69], [2130.16, 898.0], [2122.31, 906.69], [2126.63, 910.61], [2124.47, 912.99], [2128.87, 916.98], [2138.73, 906.08], [2137.95, 905.36], [2139.48, 903.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1462.29, 554.92], [1450.7, 567.69], [1458.09, 574.35], [1469.68, 561.58], [1462.29, 554.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1728.1, 948.18], [1735.99, 939.77], [1735.63, 939.43], [1736.88, 938.11], [1731.35, 932.97], [1727.43, 937.16], [1726.89, 936.65], [1723.55, 940.22], [1724.1, 940.73], [1721.51, 943.5], [1725.4, 947.11], [1726.13, 946.33], [1728.1, 948.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1702.27, 977.22], [1695.87, 971.38], [1689.31, 978.54], [1690.3, 979.43], [1686.93, 983.12], [1692.16, 987.88], [1693.58, 986.33], [1693.77, 986.49], [1702.27, 977.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1150.07, 580.63], [1144.51, 575.42], [1140.38, 579.78], [1145.94, 585.0], [1150.07, 580.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2077.08, 862.88], [2087.39, 850.81], [2081.21, 845.53], [2072.27, 855.99], [2073.07, 856.67], [2070.94, 859.15], [2074.68, 862.35], [2075.43, 861.47], [2077.08, 862.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1778.33, 1087.67], [1788.09, 1078.01], [1784.66, 1074.55], [1780.92, 1078.25], [1778.26, 1075.57], [1772.25, 1081.54], [1778.33, 1087.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1765.6, 756.28], [1760.09, 750.89], [1754.09, 756.97], [1759.59, 762.36], [1765.6, 756.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1400.4, 450.77], [1408.68, 441.63], [1400.51, 434.29], [1392.23, 443.43], [1400.4, 450.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1366.41, 485.26], [1376.85, 473.92], [1374.15, 471.45], [1373.49, 472.17], [1369.03, 468.1], [1359.93, 477.99], [1361.43, 479.36], [1359.79, 481.15], [1362.99, 484.07], [1363.95, 483.01], [1366.41, 485.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1406.86, 551.75], [1400.71, 546.18], [1395.19, 552.24], [1401.34, 557.8], [1406.86, 551.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1964.1, 1190.98], [1958.14, 1185.31], [1953.76, 1189.91], [1959.72, 1195.58], [1964.1, 1190.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1824.83, 1020.98], [1819.61, 1016.36], [1814.56, 1022.0], [1816.21, 1023.47], [1814.18, 1025.74], [1817.76, 1028.9], [1824.83, 1020.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1872.54, 1208.08], [1884.54, 1198.33], [1881.22, 1194.28], [1869.21, 1204.02], [1872.54, 1208.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2123.27, 962.72], [2117.28, 957.46], [2112.04, 963.44], [2112.45, 963.8], [2108.5, 968.3], [2114.1, 973.2], [2123.27, 962.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1842.99, 1136.25], [1837.89, 1131.39], [1834.89, 1134.53], [1833.65, 1133.34], [1831.05, 1136.07], [1832.02, 1137.0], [1828.33, 1140.87], [1833.7, 1146.0], [1842.99, 1136.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1939.08, 941.98], [1947.41, 932.79], [1945.04, 930.65], [1946.58, 928.95], [1946.45, 927.33], [1944.05, 925.16], [1942.46, 925.19], [1940.97, 926.84], [1940.81, 926.69], [1930.94, 937.58], [1935.12, 941.34], [1936.59, 939.73], [1939.08, 941.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1570.58, 970.43], [1574.43, 966.24], [1570.11, 962.3], [1566.25, 966.5], [1570.58, 970.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1878.85, 1107.46], [1873.83, 1102.68], [1869.49, 1107.24], [1874.51, 1112.01], [1878.85, 1107.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2019.23, 954.35], [2014.7, 950.46], [2012.44, 953.1], [2016.96, 956.99], [2019.23, 954.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1578.21, 430.92], [1579.7, 429.24], [1577.54, 427.39], [1576.03, 429.1], [1578.21, 430.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1495.18, 1014.57], [1486.74, 1007.13], [1481.86, 1012.62], [1492.76, 1022.23], [1496.24, 1018.31], [1493.78, 1016.14], [1495.18, 1014.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1990.34, 778.61], [1985.56, 774.63], [1981.95, 778.97], [1986.72, 782.94], [1990.34, 778.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1433.91, 700.93], [1427.94, 695.45], [1422.92, 700.87], [1431.09, 708.37], [1435.1, 704.05], [1432.89, 702.02], [1433.91, 700.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1528.72, 1046.62], [1518.91, 1037.45], [1514.39, 1042.26], [1523.27, 1050.57], [1523.94, 1049.86], [1525.19, 1051.03], [1527.55, 1048.53], [1527.22, 1048.22], [1528.72, 1046.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1732.31, 758.28], [1738.0, 752.2], [1727.56, 742.5], [1721.86, 748.58], [1726.25, 752.66], [1725.9, 753.04], [1728.98, 755.91], [1728.17, 756.78], [1730.92, 759.34], [1732.09, 758.09], [1732.31, 758.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1963.6, 812.27], [1966.41, 809.41], [1964.81, 807.83], [1966.18, 806.46], [1956.13, 796.54], [1954.91, 797.79], [1954.02, 796.91], [1950.94, 800.02], [1951.9, 800.97], [1950.02, 802.87], [1952.33, 805.14], [1951.38, 806.09], [1955.56, 810.22], [1957.12, 808.63], [1960.86, 812.34], [1962.24, 810.93], [1963.6, 812.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2096.08, 957.68], [2098.66, 954.39], [2101.43, 956.57], [2104.86, 952.19], [2102.05, 950.0], [2103.11, 948.64], [2093.26, 940.93], [2086.21, 949.95], [2096.08, 957.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1654.55, 729.76], [1649.86, 725.59], [1647.34, 728.43], [1646.28, 727.49], [1643.73, 730.37], [1644.44, 730.99], [1640.95, 734.91], [1645.99, 739.4], [1654.55, 729.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2021.06, 727.65], [2016.52, 722.71], [2011.36, 727.43], [2015.89, 732.39], [2021.06, 727.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1954.35, 812.62], [1946.06, 805.75], [1939.58, 813.58], [1947.87, 820.45], [1954.35, 812.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1495.16, 1053.09], [1488.74, 1047.54], [1483.99, 1053.01], [1490.41, 1058.55], [1495.16, 1053.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1477.86, 618.27], [1475.11, 615.81], [1470.78, 620.63], [1473.53, 623.1], [1477.86, 618.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1470.21, 1052.91], [1464.7, 1047.72], [1459.13, 1053.59], [1464.63, 1058.79], [1470.21, 1052.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1670.17, 1068.12], [1667.03, 1065.32], [1667.69, 1064.6], [1664.47, 1061.74], [1663.82, 1062.46], [1661.0, 1059.96], [1657.08, 1064.34], [1659.83, 1066.78], [1659.17, 1067.51], [1663.0, 1070.91], [1663.64, 1070.19], [1667.69, 1073.78], [1670.96, 1070.14], [1669.51, 1068.85], [1670.17, 1068.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1127.8, 803.35], [1130.67, 805.74], [1134.31, 801.37], [1131.89, 799.11], [1127.8, 803.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1374.6, 425.08], [1384.21, 414.72], [1377.24, 408.3], [1367.64, 418.67], [1374.6, 425.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1834.66, 1130.76], [1830.14, 1126.77], [1826.66, 1130.7], [1824.47, 1128.77], [1821.94, 1131.62], [1823.95, 1133.4], [1820.69, 1137.09], [1825.39, 1141.23], [1834.66, 1130.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1608.18, 1091.18], [1602.97, 1086.54], [1594.4, 1096.08], [1597.78, 1099.09], [1598.97, 1097.77], [1600.8, 1099.4], [1602.92, 1097.03], [1603.83, 1097.84], [1607.02, 1094.29], [1606.11, 1093.48], [1608.18, 1091.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1659.64, 964.31], [1662.54, 966.91], [1662.85, 966.56], [1665.95, 969.32], [1674.54, 959.8], [1668.54, 954.44], [1659.64, 964.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1966.25, 948.72], [1959.42, 942.49], [1949.28, 953.51], [1956.12, 959.76], [1966.25, 948.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2042.79, 811.21], [2037.34, 806.83], [2036.2, 808.25], [2034.62, 806.97], [2029.17, 813.75], [2036.2, 819.41], [2042.79, 811.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1847.77, 1038.81], [1842.47, 1034.06], [1834.78, 1042.66], [1840.09, 1047.4], [1847.77, 1038.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1659.27, 599.68], [1661.48, 597.28], [1659.31, 595.28], [1657.3, 597.45], [1655.29, 595.6], [1646.15, 605.45], [1652.58, 611.37], [1661.51, 601.74], [1659.27, 599.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1965.32, 904.04], [1960.4, 899.73], [1956.43, 904.26], [1961.35, 908.57], [1965.32, 904.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1720.56, 715.0], [1707.7, 702.61], [1703.81, 706.64], [1705.38, 708.15], [1703.97, 709.6], [1715.24, 720.47], [1720.56, 715.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2002.13, 908.85], [1995.74, 903.14], [1985.58, 914.49], [1986.94, 915.7], [1983.23, 919.84], [1988.26, 924.33], [2002.13, 908.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1647.72, 661.78], [1641.62, 656.03], [1632.02, 666.12], [1638.11, 671.87], [1647.72, 661.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2038.99, 884.97], [2035.11, 881.55], [2027.59, 890.08], [2033.85, 895.6], [2039.67, 888.99], [2037.3, 886.9], [2038.99, 884.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1983.32, 891.89], [1976.1, 885.31], [1971.29, 890.58], [1970.8, 890.11], [1968.92, 892.17], [1969.62, 892.8], [1966.13, 896.63], [1973.17, 903.04], [1983.32, 891.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1414.17, 666.49], [1419.81, 671.71], [1432.45, 658.17], [1428.41, 654.42], [1426.89, 656.06], [1425.29, 654.57], [1414.17, 666.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1682.86, 575.85], [1689.68, 568.44], [1688.83, 567.64], [1692.45, 563.62], [1687.54, 559.0], [1683.81, 563.14], [1680.51, 560.2], [1676.98, 564.14], [1677.93, 565.01], [1674.57, 568.68], [1682.86, 575.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1193.28, 518.73], [1188.34, 514.23], [1184.83, 518.07], [1183.76, 517.09], [1181.24, 519.84], [1182.4, 520.9], [1177.91, 525.82], [1179.77, 527.51], [1178.51, 528.89], [1181.5, 531.61], [1193.28, 518.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1974.84, 882.2], [1972.0, 879.64], [1970.93, 880.83], [1967.23, 877.51], [1957.09, 888.79], [1963.63, 894.66], [1974.84, 882.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1677.45, 962.04], [1674.98, 964.71], [1674.64, 964.41], [1671.11, 968.23], [1671.45, 968.55], [1668.11, 972.16], [1674.18, 977.73], [1683.52, 967.6], [1677.45, 962.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1779.32, 1131.85], [1774.29, 1127.58], [1771.74, 1130.58], [1770.33, 1129.38], [1767.09, 1133.18], [1768.5, 1134.38], [1765.48, 1137.94], [1770.52, 1142.22], [1779.32, 1131.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2067.03, 1059.55], [2076.84, 1048.78], [2070.27, 1042.81], [2058.54, 1055.7], [2061.39, 1058.29], [2063.32, 1056.17], [2067.03, 1059.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1832.11, 829.68], [1827.89, 825.95], [1817.97, 837.07], [1823.41, 841.88], [1830.45, 833.99], [1829.23, 832.91], [1832.11, 829.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2105.86, 1054.12], [2117.4, 1064.66], [2120.56, 1061.11], [2118.76, 1059.65], [2121.57, 1056.48], [2111.54, 1047.49], [2105.86, 1054.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1279.54, 451.7], [1272.94, 445.94], [1266.45, 453.33], [1266.01, 452.94], [1255.54, 464.85], [1262.59, 471.0], [1279.54, 451.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1679.11, 1290.76], [1669.84, 1283.12], [1665.15, 1288.2], [1664.39, 1287.54], [1660.3, 1291.93], [1661.06, 1292.64], [1656.48, 1297.61], [1659.97, 1301.12], [1659.34, 1301.84], [1664.62, 1306.34], [1679.11, 1290.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1861.76, 1070.49], [1871.87, 1060.62], [1867.99, 1056.65], [1865.79, 1058.8], [1862.81, 1055.77], [1857.62, 1060.82], [1858.64, 1061.86], [1855.58, 1064.85], [1857.29, 1066.61], [1855.73, 1068.14], [1857.74, 1070.19], [1859.65, 1068.32], [1861.76, 1070.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1672.86, 611.21], [1671.63, 610.11], [1669.36, 608.08], [1668.96, 608.51], [1666.05, 605.9], [1663.98, 608.18], [1663.17, 607.46], [1662.15, 606.54], [1651.85, 617.95], [1656.61, 622.23], [1658.12, 620.55], [1661.81, 623.86], [1669.48, 615.36], [1671.17, 616.87], [1673.45, 614.34], [1671.56, 612.65], [1672.86, 611.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1866.13, 1242.24], [1861.36, 1237.94], [1854.03, 1246.07], [1858.79, 1250.36], [1866.13, 1242.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1853.12, 845.51], [1855.53, 843.17], [1857.14, 844.82], [1861.57, 840.52], [1857.04, 835.9], [1850.2, 842.52], [1853.12, 845.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1979.95, 1182.71], [1993.18, 1168.1], [1986.03, 1161.78], [1972.72, 1176.38], [1979.95, 1182.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1274.16, 788.76], [1270.3, 785.19], [1267.87, 787.82], [1271.73, 791.39], [1274.16, 788.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1827.34, 882.95], [1820.82, 876.97], [1813.22, 885.21], [1816.19, 887.93], [1817.5, 886.51], [1821.04, 889.76], [1827.34, 882.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1390.74, 702.92], [1385.2, 697.99], [1380.39, 703.35], [1380.81, 703.72], [1379.85, 704.78], [1380.71, 705.55], [1378.79, 707.69], [1383.15, 711.58], [1386.42, 707.93], [1386.68, 708.17], [1390.01, 704.45], [1389.66, 704.14], [1390.74, 702.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1504.2, 593.45], [1498.87, 588.79], [1490.24, 598.63], [1492.47, 600.57], [1491.59, 601.58], [1492.76, 602.59], [1493.65, 601.58], [1496.07, 603.7], [1501.22, 597.82], [1500.73, 597.39], [1504.2, 593.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1664.18, 1004.05], [1656.87, 1012.06], [1657.12, 1012.3], [1654.09, 1015.61], [1654.48, 1015.96], [1652.03, 1018.64], [1656.39, 1022.61], [1669.2, 1008.61], [1664.18, 1004.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1898.17, 1176.48], [1888.74, 1165.81], [1883.51, 1170.44], [1892.94, 1181.11], [1898.17, 1176.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1830.05, 1196.46], [1826.34, 1192.52], [1825.52, 1193.29], [1822.36, 1189.94], [1813.93, 1197.87], [1815.09, 1199.11], [1813.34, 1200.76], [1819.04, 1206.82], [1830.05, 1196.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1919.19, 852.87], [1910.9, 845.27], [1910.34, 845.87], [1909.1, 844.72], [1904.06, 850.22], [1913.6, 858.97], [1919.19, 852.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1663.16, 900.16], [1664.9, 901.73], [1665.06, 901.54], [1668.3, 904.47], [1670.2, 902.4], [1671.25, 903.34], [1683.88, 889.55], [1677.87, 884.09], [1663.16, 900.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2053.16, 1001.89], [2046.2, 996.05], [2040.04, 1003.39], [2051.16, 1012.72], [2056.13, 1006.8], [2051.97, 1003.31], [2053.16, 1001.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1675.8, 746.08], [1675.08, 745.42], [1673.71, 744.18], [1668.99, 739.88], [1665.67, 743.53], [1664.28, 742.26], [1660.72, 746.17], [1662.16, 747.5], [1656.06, 754.21], [1662.82, 760.35], [1675.8, 746.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1629.61, 605.98], [1624.8, 601.52], [1618.77, 607.98], [1623.59, 612.44], [1629.61, 605.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1978.38, 833.96], [1974.94, 830.99], [1968.21, 838.79], [1972.52, 842.52], [1976.75, 837.62], [1975.87, 836.85], [1978.38, 833.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1767.39, 634.69], [1760.96, 628.44], [1752.11, 637.52], [1758.54, 643.79], [1767.39, 634.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1884.12, 888.29], [1875.7, 880.41], [1870.85, 885.56], [1872.72, 887.31], [1871.99, 888.1], [1878.52, 894.22], [1884.12, 888.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2187.39, 862.28], [2182.11, 857.41], [2175.13, 864.97], [2180.41, 869.85], [2187.39, 862.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1451.42, 705.92], [1443.92, 699.41], [1438.78, 705.29], [1441.57, 707.71], [1439.29, 710.33], [1445.57, 715.78], [1449.04, 711.81], [1447.47, 710.46], [1451.42, 705.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1194.88, 466.18], [1204.7, 455.22], [1198.87, 450.04], [1196.12, 453.11], [1195.51, 452.58], [1190.89, 457.73], [1191.5, 458.27], [1189.06, 460.99], [1194.88, 466.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2168.19, 1007.89], [2160.38, 1000.67], [2153.97, 1007.89], [2156.45, 1010.12], [2155.61, 1011.03], [2158.68, 1013.7], [2159.49, 1012.77], [2161.78, 1014.73], [2162.69, 1013.77], [2163.18, 1014.21], [2166.11, 1010.98], [2165.74, 1010.59], [2168.19, 1007.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2085.24, 1013.83], [2080.09, 1009.2], [2075.58, 1014.2], [2080.74, 1018.84], [2085.24, 1013.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1929.94, 707.24], [1923.0, 701.06], [1921.01, 703.32], [1920.5, 702.87], [1913.38, 710.95], [1916.07, 713.34], [1917.09, 712.19], [1921.49, 716.1], [1925.67, 711.39], [1926.1, 711.77], [1929.94, 707.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1324.73, 478.15], [1321.57, 475.3], [1316.68, 480.7], [1319.83, 483.54], [1324.73, 478.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1724.68, 964.07], [1719.27, 959.33], [1714.86, 964.33], [1720.27, 969.07], [1724.68, 964.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1229.8, 551.25], [1223.91, 545.67], [1214.57, 555.46], [1220.45, 561.04], [1229.8, 551.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1184.57, 513.16], [1178.99, 507.51], [1173.55, 512.86], [1174.78, 514.1], [1169.57, 519.23], [1173.93, 523.63], [1184.57, 513.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1402.22, 728.42], [1411.48, 718.03], [1407.69, 714.69], [1402.86, 720.11], [1402.31, 719.62], [1397.89, 724.58], [1402.22, 728.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1924.35, 1218.94], [1920.3, 1214.08], [1917.35, 1216.55], [1921.42, 1221.24], [1924.35, 1218.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1563.87, 1003.93], [1571.22, 995.95], [1571.74, 996.42], [1574.7, 993.2], [1569.23, 988.21], [1566.06, 991.66], [1566.57, 992.12], [1559.43, 999.89], [1563.87, 1003.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1405.42, 419.14], [1409.73, 414.47], [1405.29, 410.41], [1400.98, 415.09], [1405.42, 419.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1676.75, 548.28], [1671.38, 543.77], [1669.33, 546.2], [1667.91, 545.0], [1659.65, 554.82], [1666.44, 560.54], [1676.75, 548.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1840.37, 1118.34], [1836.25, 1114.33], [1831.5, 1119.23], [1835.62, 1123.23], [1840.37, 1118.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1589.89, 1101.2], [1582.86, 1094.71], [1574.94, 1103.24], [1581.96, 1109.72], [1589.89, 1101.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1923.57, 1152.49], [1929.31, 1145.88], [1914.51, 1132.66], [1908.86, 1138.98], [1923.57, 1152.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1648.7, 885.23], [1662.69, 869.79], [1656.2, 863.95], [1652.4, 868.14], [1651.95, 867.74], [1641.76, 878.98], [1643.39, 880.44], [1642.61, 881.31], [1645.5, 883.92], [1646.28, 883.05], [1648.7, 885.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1499.86, 1029.71], [1495.11, 1025.34], [1492.22, 1028.46], [1496.97, 1032.83], [1499.86, 1029.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1760.9, 598.63], [1753.31, 590.82], [1747.24, 596.71], [1754.83, 604.52], [1760.9, 598.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1825.42, 1123.76], [1819.58, 1118.44], [1812.6, 1126.1], [1818.44, 1131.41], [1825.42, 1123.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1610.83, 761.46], [1604.58, 755.6], [1592.4, 768.49], [1598.64, 774.35], [1610.83, 761.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1691.24, 836.56], [1687.28, 832.94], [1687.02, 833.21], [1686.01, 832.29], [1683.02, 835.54], [1682.84, 835.36], [1677.27, 841.41], [1678.36, 842.4], [1677.46, 843.4], [1681.54, 847.12], [1683.86, 844.59], [1684.61, 845.3], [1688.75, 840.79], [1688.0, 840.1], [1691.24, 836.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1925.51, 895.52], [1920.49, 891.03], [1916.32, 895.65], [1921.34, 900.14], [1925.51, 895.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1911.7, 899.98], [1904.5, 893.72], [1896.19, 903.24], [1899.26, 905.9], [1897.85, 907.51], [1901.99, 911.1], [1911.7, 899.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1237.48, 483.2], [1233.15, 479.31], [1231.78, 480.83], [1229.77, 479.03], [1225.38, 483.89], [1224.78, 483.34], [1222.15, 486.25], [1222.57, 486.62], [1218.13, 491.53], [1219.64, 492.87], [1218.63, 493.98], [1221.24, 496.33], [1222.2, 495.27], [1224.6, 497.42], [1237.48, 483.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1641.16, 982.33], [1634.84, 976.56], [1622.74, 989.75], [1629.06, 995.5], [1641.16, 982.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1686.65, 1088.76], [1695.5, 1096.81], [1699.31, 1092.63], [1697.68, 1091.08], [1700.73, 1087.57], [1698.96, 1085.96], [1701.12, 1083.56], [1697.61, 1080.29], [1695.47, 1082.58], [1693.85, 1081.15], [1686.65, 1088.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1337.83, 443.48], [1331.58, 438.12], [1328.03, 442.22], [1326.18, 440.63], [1320.15, 447.59], [1322.01, 449.18], [1322.82, 448.25], [1329.05, 453.61], [1337.83, 443.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1600.21, 948.7], [1595.7, 944.6], [1589.81, 951.02], [1590.24, 951.41], [1587.4, 954.5], [1590.74, 957.54], [1593.57, 954.45], [1594.32, 955.13], [1600.21, 948.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1586.35, 744.61], [1581.74, 739.99], [1580.17, 741.57], [1578.39, 739.79], [1575.31, 742.88], [1576.22, 743.78], [1572.71, 747.27], [1578.2, 752.75], [1586.35, 744.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1833.66, 1203.03], [1828.63, 1197.91], [1817.45, 1208.92], [1822.49, 1214.02], [1833.66, 1203.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1828.99, 593.57], [1823.94, 588.64], [1822.14, 590.49], [1820.78, 589.18], [1814.44, 595.67], [1817.24, 598.4], [1816.13, 599.53], [1819.72, 603.05], [1828.99, 593.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1666.12, 641.37], [1659.79, 635.64], [1654.87, 641.05], [1661.21, 646.77], [1666.12, 641.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1797.01, 608.23], [1794.9, 606.4], [1793.26, 604.97], [1790.26, 602.34], [1782.67, 611.02], [1789.41, 616.91], [1797.01, 608.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1773.04, 1165.0], [1768.31, 1160.99], [1763.9, 1166.17], [1768.63, 1170.19], [1773.04, 1165.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2011.21, 963.51], [2007.43, 960.07], [2004.59, 963.17], [2008.37, 966.62], [2011.21, 963.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1884.31, 732.21], [1873.53, 743.85], [1877.89, 747.9], [1878.57, 747.19], [1880.69, 749.27], [1883.86, 745.87], [1884.52, 746.52], [1892.49, 737.82], [1886.18, 731.89], [1885.09, 732.99], [1884.31, 732.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1904.23, 1204.04], [1900.97, 1200.46], [1896.75, 1204.26], [1900.01, 1207.84], [1904.23, 1204.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1462.35, 590.11], [1457.18, 585.45], [1452.04, 591.09], [1457.21, 595.76], [1462.35, 590.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1622.77, 580.07], [1625.07, 577.81], [1629.74, 582.55], [1636.12, 576.3], [1622.34, 562.32], [1616.92, 567.62], [1620.51, 571.28], [1613.17, 578.46], [1619.92, 585.31], [1624.0, 581.31], [1622.77, 580.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2053.92, 878.08], [2046.86, 872.28], [2042.32, 877.8], [2049.38, 883.6], [2053.92, 878.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1617.25, 1342.0], [1629.29, 1328.79], [1620.52, 1320.49], [1608.31, 1333.95], [1617.25, 1342.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1689.83, 674.54], [1686.75, 671.69], [1683.5, 675.19], [1686.58, 678.03], [1689.83, 674.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1971.74, 1175.22], [1984.89, 1160.51], [1977.95, 1154.18], [1964.69, 1168.78], [1971.74, 1175.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1732.58, 1068.09], [1726.36, 1060.35], [1726.19, 1060.53], [1716.52, 1051.25], [1703.81, 1064.4], [1713.74, 1073.91], [1710.92, 1076.82], [1717.81, 1083.43], [1720.32, 1080.81], [1732.58, 1068.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2054.55, 841.79], [2063.03, 832.53], [2051.14, 821.73], [2042.72, 831.1], [2054.55, 841.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2121.44, 978.81], [2133.85, 964.11], [2130.2, 961.01], [2131.74, 959.19], [2128.59, 956.53], [2124.36, 961.54], [2127.65, 964.33], [2126.32, 965.9], [2124.54, 964.39], [2117.77, 972.41], [2120.48, 974.7], [2118.86, 976.63], [2121.44, 978.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1231.62, 506.31], [1237.06, 511.33], [1240.76, 507.35], [1235.33, 502.33], [1231.62, 506.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2033.84, 958.69], [2028.63, 953.65], [2024.21, 958.21], [2029.42, 963.25], [2033.84, 958.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1148.3, 914.86], [1154.73, 920.54], [1158.68, 916.08], [1152.25, 910.41], [1148.3, 914.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2015.22, 833.41], [2012.43, 830.8], [2008.54, 834.97], [2011.33, 837.58], [2015.22, 833.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1590.63, 615.35], [1594.92, 610.46], [1594.11, 609.75], [1595.33, 608.36], [1586.64, 600.79], [1580.25, 608.07], [1588.6, 615.36], [1589.49, 614.35], [1590.63, 615.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1477.53, 903.99], [1473.19, 899.86], [1469.09, 904.13], [1473.43, 908.26], [1477.53, 903.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1754.6, 975.34], [1757.72, 972.06], [1759.48, 973.73], [1768.53, 964.19], [1761.75, 957.8], [1752.56, 967.47], [1753.05, 967.93], [1750.07, 971.07], [1754.6, 975.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1400.56, 397.02], [1394.53, 391.67], [1389.67, 397.28], [1395.45, 402.55], [1400.56, 397.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1219.18, 521.23], [1213.36, 527.61], [1219.49, 533.16], [1225.31, 526.78], [1219.18, 521.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1893.69, 1080.32], [1887.77, 1074.38], [1883.33, 1078.81], [1881.82, 1077.29], [1878.09, 1081.03], [1879.58, 1082.52], [1877.21, 1084.89], [1883.14, 1090.84], [1893.69, 1080.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2005.4, 777.02], [1999.95, 772.32], [1994.83, 778.27], [2000.29, 782.96], [2005.4, 777.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1613.81, 600.06], [1620.45, 592.69], [1605.42, 579.26], [1603.2, 581.72], [1602.66, 581.24], [1600.28, 583.87], [1600.91, 584.43], [1598.86, 586.7], [1613.81, 600.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1804.78, 578.7], [1798.47, 573.22], [1791.87, 580.83], [1799.79, 587.71], [1803.52, 583.41], [1801.9, 582.02], [1804.78, 578.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1647.08, 793.77], [1639.8, 787.23], [1638.79, 788.35], [1636.16, 785.98], [1630.46, 792.32], [1640.38, 801.23], [1647.08, 793.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1789.51, 630.38], [1783.06, 625.01], [1780.96, 627.54], [1778.26, 625.29], [1774.93, 629.31], [1773.31, 627.97], [1770.37, 631.51], [1774.04, 634.56], [1772.47, 636.45], [1779.56, 642.34], [1789.51, 630.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1841.88, 1032.54], [1836.48, 1027.19], [1828.59, 1035.14], [1834.0, 1040.49], [1841.88, 1032.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2049.42, 1023.32], [2042.82, 1017.98], [2032.75, 1030.42], [2036.13, 1033.15], [2034.85, 1034.73], [2038.07, 1037.34], [2049.42, 1023.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1929.26, 1187.2], [1919.51, 1175.16], [1914.48, 1179.24], [1924.22, 1191.28], [1929.26, 1187.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1572.19, 726.93], [1567.12, 722.38], [1559.57, 730.81], [1560.51, 731.66], [1556.18, 736.48], [1562.17, 741.85], [1572.76, 730.04], [1570.89, 728.37], [1572.19, 726.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1894.69, 1119.47], [1885.13, 1109.8], [1879.92, 1114.95], [1891.58, 1126.73], [1896.19, 1122.18], [1894.09, 1120.06], [1894.69, 1119.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1688.65, 1108.84], [1686.52, 1106.76], [1688.3, 1104.96], [1679.57, 1096.47], [1674.91, 1101.22], [1677.47, 1103.71], [1676.5, 1104.69], [1680.78, 1108.85], [1682.27, 1107.33], [1686.3, 1111.25], [1688.65, 1108.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2193.59, 898.98], [2187.68, 893.91], [2179.65, 903.25], [2185.56, 908.32], [2193.59, 898.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1931.78, 1158.57], [1946.88, 1172.35], [1952.22, 1166.76], [1937.04, 1152.84], [1931.78, 1158.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1396.75, 540.53], [1402.85, 533.65], [1397.25, 528.72], [1391.16, 535.59], [1396.75, 540.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1962.4, 873.39], [1957.3, 868.73], [1948.23, 878.64], [1955.15, 884.96], [1962.84, 876.55], [1961.02, 874.89], [1962.4, 873.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1973.71, 911.08], [1970.51, 908.66], [1965.87, 914.77], [1969.06, 917.19], [1973.71, 911.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1550.14, 977.21], [1545.63, 973.2], [1542.24, 976.99], [1541.92, 976.7], [1536.93, 982.25], [1539.87, 984.87], [1538.58, 986.32], [1541.44, 988.86], [1542.73, 987.41], [1542.95, 987.61], [1547.1, 982.97], [1545.92, 981.91], [1550.14, 977.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1250.62, 544.71], [1254.6, 548.3], [1254.25, 548.68], [1258.03, 552.1], [1261.94, 547.79], [1258.86, 545.0], [1259.47, 544.34], [1254.8, 540.13], [1250.62, 544.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1980.59, 679.36], [1984.76, 674.63], [1980.78, 671.12], [1976.61, 675.86], [1980.59, 679.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1868.37, 1092.89], [1863.67, 1088.88], [1857.23, 1096.42], [1861.94, 1100.44], [1868.37, 1092.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1903.53, 870.82], [1894.8, 863.06], [1891.29, 866.99], [1890.6, 866.38], [1888.66, 868.55], [1889.35, 869.16], [1888.79, 869.78], [1897.52, 877.54], [1903.53, 870.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1595.13, 835.2], [1597.69, 832.36], [1593.11, 828.26], [1590.55, 831.1], [1595.13, 835.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1930.66, 915.1], [1923.99, 909.18], [1915.05, 919.18], [1918.24, 922.01], [1916.9, 923.49], [1920.39, 926.6], [1930.66, 915.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2213.16, 922.23], [2207.13, 914.92], [2197.06, 923.23], [2202.12, 929.37], [2201.07, 930.23], [2206.58, 936.91], [2213.38, 931.31], [2210.75, 928.12], [2213.4, 925.92], [2211.49, 923.6], [2213.16, 922.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1821.59, 1055.54], [1816.86, 1050.92], [1812.43, 1055.47], [1817.16, 1060.08], [1821.59, 1055.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2039.29, 1016.32], [2033.0, 1010.93], [2030.44, 1013.91], [2028.35, 1012.11], [2025.11, 1015.88], [2026.76, 1017.3], [2024.1, 1020.41], [2027.83, 1023.62], [2026.33, 1025.36], [2029.33, 1027.93], [2039.29, 1016.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1490.47, 1023.57], [1481.31, 1015.66], [1476.9, 1020.74], [1487.92, 1030.24], [1491.88, 1025.68], [1490.02, 1024.09], [1490.47, 1023.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1463.86, 1029.74], [1459.46, 1034.6], [1470.75, 1044.74], [1475.15, 1039.87], [1463.86, 1029.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1770.47, 1019.05], [1761.37, 1011.4], [1756.45, 1017.24], [1766.92, 1026.04], [1769.87, 1022.54], [1768.51, 1021.39], [1770.47, 1019.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2121.59, 955.1], [2125.08, 950.93], [2116.97, 944.15], [2112.87, 949.06], [2118.17, 953.49], [2118.78, 952.75], [2121.59, 955.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1594.7, 674.34], [1588.7, 669.11], [1581.55, 677.33], [1587.56, 682.56], [1594.7, 674.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2148.41, 941.99], [2142.87, 937.5], [2138.21, 943.25], [2143.75, 947.74], [2148.41, 941.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1887.19, 827.86], [1879.79, 820.61], [1875.28, 825.17], [1882.68, 832.42], [1887.19, 827.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1652.62, 781.31], [1648.74, 777.69], [1647.46, 779.05], [1644.82, 776.57], [1639.73, 782.02], [1649.19, 790.85], [1654.58, 785.09], [1651.65, 782.35], [1652.62, 781.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2039.34, 849.73], [2044.24, 844.32], [2035.11, 835.92], [2030.17, 841.34], [2039.34, 849.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2132.84, 1045.5], [2125.83, 1038.18], [2124.9, 1039.07], [2121.69, 1035.71], [2118.72, 1038.55], [2119.83, 1039.74], [2116.8, 1042.63], [2127.15, 1053.46], [2130.23, 1050.51], [2128.98, 1049.2], [2132.84, 1045.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1909.74, 1203.78], [1913.3, 1200.74], [1912.4, 1199.7], [1913.67, 1198.62], [1906.09, 1189.7], [1899.71, 1195.12], [1907.06, 1203.76], [1908.61, 1202.44], [1909.74, 1203.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2138.52, 1043.07], [2142.55, 1038.99], [2140.08, 1036.55], [2140.76, 1035.88], [2129.35, 1024.62], [2123.28, 1030.78], [2135.22, 1042.56], [2136.59, 1041.16], [2138.52, 1043.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1895.1, 700.43], [1889.91, 695.43], [1888.99, 696.38], [1884.72, 692.26], [1880.59, 696.56], [1890.05, 705.67], [1895.1, 700.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1821.62, 1083.74], [1817.58, 1079.91], [1812.1, 1085.69], [1816.13, 1089.52], [1821.62, 1083.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1796.35, 931.44], [1798.21, 929.37], [1798.57, 929.68], [1801.91, 925.95], [1800.93, 925.08], [1801.94, 923.95], [1795.84, 918.51], [1789.62, 925.44], [1796.35, 931.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1291.65, 474.5], [1286.43, 469.92], [1275.97, 481.75], [1281.72, 486.79], [1283.41, 484.87], [1284.01, 485.4], [1291.19, 477.27], [1290.07, 476.29], [1291.65, 474.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1984.68, 964.21], [1977.96, 958.41], [1975.6, 961.12], [1975.25, 960.82], [1972.48, 964.0], [1972.73, 964.2], [1968.5, 969.07], [1973.4, 973.3], [1972.33, 974.53], [1974.25, 976.19], [1984.68, 964.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1748.42, 984.95], [1739.85, 977.3], [1737.55, 979.86], [1736.41, 978.84], [1733.48, 982.09], [1734.66, 983.14], [1734.44, 983.38], [1742.98, 991.0], [1748.42, 984.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1919.82, 909.1], [1913.3, 903.17], [1911.24, 905.41], [1910.87, 905.07], [1907.75, 908.48], [1908.07, 908.78], [1904.2, 913.01], [1910.52, 918.76], [1912.45, 916.66], [1912.69, 916.88], [1919.82, 909.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1767.01, 1155.07], [1762.94, 1151.27], [1758.88, 1155.62], [1762.94, 1159.43], [1767.01, 1155.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1850.54, 1156.61], [1845.04, 1150.33], [1839.81, 1154.91], [1840.45, 1155.65], [1838.29, 1157.53], [1843.16, 1163.08], [1850.54, 1156.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2111.28, 1067.94], [2100.28, 1058.1], [2094.02, 1065.1], [2106.77, 1076.49], [2110.26, 1072.58], [2108.52, 1071.03], [2111.28, 1067.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1522.67, 1053.53], [1514.81, 1046.53], [1510.36, 1051.49], [1516.81, 1057.23], [1517.05, 1056.97], [1518.46, 1058.23], [1522.67, 1053.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1591.11, 695.07], [1586.18, 690.75], [1580.8, 696.89], [1585.74, 701.21], [1591.11, 695.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1539.91, 717.79], [1548.52, 708.41], [1542.89, 703.23], [1533.34, 713.64], [1536.87, 716.87], [1537.81, 715.86], [1539.91, 717.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1242.38, 506.96], [1244.95, 509.29], [1243.94, 510.4], [1248.74, 514.77], [1249.7, 513.72], [1250.82, 514.73], [1260.08, 504.63], [1251.03, 496.4], [1247.0, 500.82], [1247.55, 501.31], [1242.38, 506.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1527.12, 1105.24], [1533.62, 1098.39], [1528.84, 1093.9], [1522.28, 1100.85], [1522.48, 1101.03], [1520.54, 1103.08], [1523.81, 1106.16], [1525.82, 1104.02], [1527.12, 1105.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1558.33, 679.05], [1555.05, 675.82], [1549.97, 680.96], [1556.79, 687.69], [1560.11, 684.34], [1556.56, 680.84], [1558.33, 679.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1801.58, 771.86], [1806.15, 766.86], [1801.32, 762.47], [1796.76, 767.46], [1801.58, 771.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1939.56, 923.45], [1932.95, 917.54], [1923.74, 927.78], [1927.12, 930.8], [1925.81, 932.26], [1929.03, 935.14], [1939.56, 923.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1700.48, 933.35], [1713.09, 919.59], [1709.63, 916.45], [1711.2, 914.75], [1707.81, 911.66], [1693.63, 927.12], [1700.48, 933.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1624.79, 704.68], [1626.68, 702.33], [1623.22, 699.57], [1619.05, 704.78], [1617.29, 703.38], [1614.74, 706.57], [1618.55, 709.6], [1615.56, 713.34], [1619.48, 716.46], [1627.31, 706.68], [1624.79, 704.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1673.34, 820.25], [1664.56, 812.16], [1664.23, 812.51], [1663.17, 811.53], [1657.53, 817.61], [1658.59, 818.59], [1658.38, 818.81], [1667.17, 826.9], [1669.34, 824.57], [1670.0, 825.18], [1672.88, 822.07], [1672.21, 821.46], [1673.34, 820.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1982.26, 1186.59], [1989.05, 1192.52], [2002.77, 1177.19], [1996.1, 1171.08], [1982.26, 1186.59]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1179.92, 534.52], [1185.56, 539.63], [1199.94, 523.87], [1194.3, 518.76], [1179.92, 534.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1821.38, 1114.72], [1817.39, 1111.03], [1816.8, 1111.67], [1815.27, 1110.25], [1813.12, 1112.58], [1812.16, 1111.69], [1809.22, 1114.87], [1810.54, 1116.08], [1807.9, 1118.92], [1813.07, 1123.7], [1821.38, 1114.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1778.3, 1159.15], [1780.73, 1156.49], [1781.95, 1157.6], [1791.61, 1147.03], [1785.79, 1141.71], [1773.69, 1154.94], [1778.3, 1159.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1609.85, 990.33], [1603.4, 997.23], [1609.28, 1002.68], [1616.25, 995.21], [1612.77, 991.96], [1612.24, 992.53], [1609.85, 990.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1162.89, 551.58], [1162.25, 551.01], [1162.97, 550.2], [1159.22, 546.87], [1158.5, 547.67], [1157.65, 546.92], [1148.03, 557.68], [1153.28, 562.33], [1162.89, 551.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1855.11, 1047.26], [1848.6, 1041.66], [1841.29, 1050.15], [1847.79, 1055.75], [1855.11, 1047.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1956.14, 1200.46], [1950.37, 1191.11], [1944.91, 1194.48], [1946.15, 1196.51], [1944.7, 1197.4], [1949.23, 1204.72], [1956.14, 1200.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1159.65, 544.02], [1153.1, 538.08], [1142.22, 550.01], [1148.77, 555.94], [1159.65, 544.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1734.5, 820.68], [1745.2, 808.97], [1739.62, 803.91], [1737.87, 805.84], [1737.5, 805.49], [1736.25, 806.86], [1735.64, 806.31], [1731.71, 810.63], [1732.32, 811.18], [1730.06, 813.65], [1731.13, 814.63], [1729.63, 816.27], [1734.5, 820.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2048.99, 1043.3], [2058.35, 1032.91], [2056.08, 1030.87], [2057.47, 1029.33], [2054.85, 1026.96], [2053.54, 1028.41], [2051.01, 1026.12], [2040.59, 1037.69], [2043.09, 1039.95], [2044.06, 1038.86], [2048.99, 1043.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1710.48, 987.17], [1708.93, 988.8], [1707.87, 987.81], [1697.29, 998.95], [1697.4, 999.05], [1696.45, 1000.06], [1699.58, 1003.01], [1700.53, 1002.01], [1703.43, 1004.74], [1706.87, 1001.12], [1707.17, 1001.4], [1711.71, 996.62], [1711.14, 996.08], [1713.72, 993.35], [1712.54, 992.24], [1714.11, 990.6], [1710.48, 987.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1778.94, 922.21], [1772.34, 916.14], [1765.44, 923.59], [1772.04, 929.65], [1778.94, 922.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1782.8, 840.92], [1777.22, 835.7], [1775.12, 837.92], [1774.75, 837.57], [1767.74, 844.99], [1769.21, 846.36], [1767.89, 847.76], [1773.01, 852.55], [1774.34, 851.15], [1774.47, 851.28], [1781.62, 843.7], [1780.86, 842.99], [1782.8, 840.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1737.28, 686.47], [1743.51, 681.09], [1744.72, 682.48], [1750.63, 677.36], [1745.83, 671.85], [1744.51, 672.99], [1742.52, 670.7], [1737.33, 675.2], [1738.51, 676.56], [1732.88, 681.42], [1737.28, 686.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1302.25, 501.55], [1312.13, 490.54], [1305.52, 484.64], [1295.63, 495.64], [1302.25, 501.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1613.25, 1133.46], [1633.23, 1111.63], [1618.71, 1098.44], [1598.74, 1120.26], [1613.25, 1133.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1634.35, 807.44], [1639.13, 802.27], [1630.05, 793.88], [1625.48, 798.82], [1628.4, 801.52], [1627.46, 802.54], [1630.6, 805.44], [1631.33, 804.65], [1634.35, 807.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2035.33, 829.92], [2037.33, 827.67], [2038.94, 829.09], [2048.56, 818.23], [2042.85, 813.18], [2032.73, 824.61], [2034.07, 825.79], [2032.57, 827.48], [2035.33, 829.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1564.91, 1097.26], [1570.84, 1090.85], [1565.89, 1086.32], [1565.14, 1087.13], [1564.42, 1086.48], [1561.51, 1089.61], [1561.67, 1089.77], [1559.47, 1092.14], [1560.77, 1093.34], [1559.29, 1094.93], [1561.76, 1097.2], [1563.17, 1095.67], [1564.91, 1097.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1759.8, 1149.14], [1755.49, 1145.11], [1750.81, 1150.12], [1755.11, 1154.15], [1759.8, 1149.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1613.67, 1012.52], [1607.33, 1006.98], [1603.01, 1011.88], [1607.42, 1015.74], [1609.89, 1012.94], [1611.82, 1014.63], [1613.67, 1012.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2079.76, 844.39], [2072.87, 838.42], [2064.85, 847.66], [2071.73, 853.63], [2079.76, 844.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1697.18, 951.37], [1690.98, 945.75], [1687.44, 949.62], [1687.04, 949.26], [1684.14, 952.42], [1689.72, 957.49], [1693.68, 953.16], [1694.7, 954.09], [1697.18, 951.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1817.69, 963.03], [1809.92, 955.41], [1803.95, 961.5], [1811.72, 969.12], [1817.69, 963.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2094.56, 1022.28], [2089.73, 1017.59], [2084.36, 1023.12], [2089.19, 1027.8], [2094.56, 1022.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1998.99, 768.98], [1993.95, 764.15], [1987.22, 771.15], [1992.26, 776.0], [1998.99, 768.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1885.12, 1121.61], [1880.08, 1116.86], [1879.0, 1118.01], [1875.92, 1115.1], [1871.12, 1120.18], [1883.23, 1131.59], [1888.19, 1126.33], [1884.21, 1122.58], [1885.12, 1121.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1593.77, 1077.97], [1588.33, 1073.09], [1580.91, 1081.29], [1586.35, 1086.17], [1593.77, 1077.97]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[1237.76, 619.55], [1232.01, 614.33], [1223.7, 623.44], [1229.46, 628.65], [1237.76, 619.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1714.32, 995.58], [1702.25, 1008.93], [1708.83, 1014.83], [1720.89, 1001.49], [1714.32, 995.58]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[1455.25, 740.14], [1470.06, 753.37], [1474.58, 748.34], [1459.77, 735.12], [1455.25, 740.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2101.0, 1079.08], [2096.82, 1075.53], [2095.44, 1077.16], [2088.2, 1071.01], [2082.62, 1077.58], [2094.03, 1087.27], [2101.0, 1079.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2094.92, 859.45], [2087.57, 867.55], [2094.58, 873.91], [2101.87, 865.88], [2094.92, 859.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1491.13, 617.28], [1487.84, 614.19], [1482.95, 619.35], [1487.51, 623.65], [1490.81, 620.16], [1489.53, 618.96], [1491.13, 617.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1817.27, 587.03], [1810.07, 580.62], [1802.84, 588.74], [1810.02, 595.15], [1817.27, 587.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1631.34, 768.26], [1636.56, 762.32], [1631.0, 757.26], [1625.71, 763.16], [1631.34, 768.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1519.97, 1086.31], [1519.44, 1085.83], [1520.47, 1084.68], [1516.15, 1080.81], [1515.12, 1081.95], [1514.72, 1081.59], [1508.6, 1088.36], [1509.82, 1089.46], [1508.78, 1090.61], [1512.81, 1094.23], [1519.97, 1086.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1813.81, 1183.65], [1812.65, 1182.39], [1816.18, 1179.16], [1812.06, 1174.67], [1805.3, 1180.84], [1810.6, 1186.58], [1813.81, 1183.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1164.57, 516.02], [1172.77, 506.76], [1169.26, 503.67], [1168.81, 504.18], [1166.66, 502.29], [1165.86, 503.21], [1165.16, 502.59], [1164.06, 503.85], [1161.02, 501.18], [1162.34, 499.69], [1159.8, 497.45], [1158.33, 499.12], [1155.03, 496.21], [1151.89, 499.75], [1154.97, 502.46], [1152.48, 505.26], [1155.98, 508.34], [1155.55, 508.82], [1157.74, 510.74], [1157.24, 511.32], [1161.06, 514.68], [1161.92, 513.71], [1164.57, 516.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1593.9, 809.47], [1586.78, 803.09], [1575.36, 815.74], [1582.48, 822.12], [1593.9, 809.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1524.27, 982.16], [1528.65, 977.53], [1519.95, 969.35], [1515.15, 974.43], [1523.08, 981.89], [1523.5, 981.44], [1524.27, 982.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1514.42, 934.75], [1506.59, 927.91], [1500.9, 934.39], [1510.08, 942.4], [1515.39, 936.36], [1514.04, 935.18], [1514.42, 934.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1422.28, 542.64], [1419.16, 539.85], [1415.15, 544.31], [1418.28, 547.1], [1422.28, 542.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1571.57, 1057.45], [1566.22, 1052.7], [1558.63, 1061.16], [1562.02, 1064.19], [1561.86, 1064.37], [1563.81, 1066.11], [1571.57, 1057.45]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[1638.88, 732.69], [1649.04, 721.49], [1641.89, 715.45], [1631.79, 726.48], [1638.88, 732.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1809.94, 781.99], [1804.64, 777.24], [1800.09, 782.27], [1805.39, 787.03], [1809.94, 781.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1746.6, 1046.33], [1759.39, 1032.26], [1752.83, 1026.54], [1741.17, 1039.66], [1742.71, 1041.1], [1741.79, 1042.16], [1746.6, 1046.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1696.11, 825.47], [1692.61, 822.47], [1688.86, 826.83], [1692.36, 829.82], [1696.11, 825.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2113.89, 1008.44], [2110.63, 1005.22], [2108.51, 1007.35], [2106.11, 1004.98], [2096.73, 1014.47], [2098.73, 1016.44], [2097.44, 1017.75], [2101.11, 1021.38], [2113.89, 1008.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1166.66, 481.19], [1171.5, 475.87], [1168.74, 473.38], [1169.81, 472.2], [1165.97, 468.74], [1165.01, 469.81], [1161.78, 466.9], [1156.84, 472.34], [1166.66, 481.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2062.19, 861.28], [2053.66, 853.52], [2048.93, 858.72], [2052.21, 861.7], [2050.23, 863.87], [2055.47, 868.66], [2062.19, 861.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1750.23, 758.57], [1743.47, 752.32], [1736.72, 759.58], [1737.03, 759.87], [1733.5, 763.68], [1734.43, 764.55], [1735.69, 765.7], [1739.94, 769.63], [1750.23, 758.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2167.95, 989.26], [2171.68, 984.96], [2166.07, 979.72], [2162.24, 984.12], [2167.95, 989.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1854.26, 1257.11], [1848.65, 1252.46], [1843.8, 1258.31], [1849.41, 1262.96], [1854.26, 1257.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1790.1, 1099.7], [1803.01, 1085.91], [1798.11, 1081.33], [1792.57, 1087.2], [1793.02, 1087.64], [1785.59, 1095.52], [1790.1, 1099.7]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1491.21, 577.05], [1483.95, 570.71], [1482.3, 572.58], [1481.21, 571.62], [1472.62, 581.39], [1477.93, 586.02], [1476.79, 587.32], [1479.81, 589.95], [1480.94, 588.67], [1481.75, 589.37], [1490.37, 579.56], [1489.6, 578.89], [1491.21, 577.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1764.44, 771.94], [1758.53, 766.86], [1750.88, 775.69], [1756.0, 780.11], [1760.13, 775.35], [1760.9, 776.02], [1764.44, 771.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2127.42, 941.69], [2121.96, 937.11], [2117.72, 942.18], [2123.18, 946.76], [2127.42, 941.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2219.89, 936.45], [2216.16, 932.56], [2207.19, 941.21], [2214.03, 948.31], [2220.52, 942.06], [2218.62, 940.08], [2220.0, 938.74], [2218.81, 937.49], [2219.89, 936.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1950.91, 919.46], [1947.41, 916.19], [1943.52, 920.34], [1947.02, 923.61], [1950.91, 919.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1852.61, 819.25], [1856.47, 814.95], [1848.07, 807.45], [1844.2, 811.75], [1852.61, 819.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1234.84, 561.94], [1228.69, 556.42], [1222.58, 563.16], [1222.97, 563.5], [1221.35, 565.28], [1224.36, 567.99], [1222.92, 569.57], [1224.71, 571.19], [1226.15, 569.6], [1226.45, 569.87], [1228.11, 568.04], [1228.78, 568.64], [1234.84, 561.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2029.26, 965.77], [2019.73, 957.48], [2013.53, 964.61], [2023.06, 972.9], [2029.26, 965.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1826.15, 960.71], [1821.23, 956.21], [1817.38, 960.42], [1822.29, 964.91], [1826.15, 960.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1655.47, 890.77], [1661.31, 884.42], [1661.51, 884.61], [1667.9, 877.68], [1667.24, 877.07], [1668.39, 875.82], [1663.38, 871.23], [1650.04, 885.71], [1650.33, 885.98], [1649.58, 886.81], [1651.31, 888.38], [1652.02, 887.61], [1655.47, 890.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1602.38, 679.31], [1597.02, 674.12], [1588.88, 682.55], [1594.24, 687.73], [1602.38, 679.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1271.28, 553.8], [1266.43, 549.18], [1262.04, 553.75], [1266.9, 558.38], [1271.28, 553.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1991.87, 927.96], [1988.71, 925.19], [1984.13, 930.37], [1987.27, 933.16], [1991.87, 927.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1337.54, 520.1], [1331.72, 526.56], [1334.91, 529.41], [1332.05, 532.56], [1336.35, 536.41], [1345.02, 526.8], [1337.54, 520.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1687.11, 804.6], [1678.5, 796.65], [1672.33, 803.28], [1680.95, 811.24], [1687.11, 804.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1233.27, 634.84], [1235.16, 632.78], [1235.78, 633.34], [1237.69, 631.25], [1237.01, 630.63], [1242.72, 624.35], [1238.08, 620.15], [1228.57, 630.59], [1233.27, 634.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1875.77, 1139.77], [1871.03, 1134.69], [1869.64, 1135.99], [1865.33, 1131.36], [1861.16, 1135.26], [1865.28, 1139.68], [1863.41, 1141.42], [1869.87, 1148.35], [1874.36, 1144.17], [1872.83, 1142.52], [1875.77, 1139.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1726.71, 813.49], [1738.48, 800.37], [1732.28, 794.84], [1720.5, 807.96], [1726.71, 813.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1707.07, 655.44], [1709.79, 652.4], [1709.54, 652.18], [1714.23, 646.95], [1708.18, 641.57], [1698.72, 652.13], [1699.58, 652.89], [1699.31, 653.19], [1704.45, 657.76], [1706.77, 655.18], [1707.07, 655.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1836.82, 783.16], [1833.41, 780.08], [1829.26, 784.63], [1832.67, 787.71], [1836.82, 783.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1850.26, 1077.38], [1844.62, 1071.84], [1839.13, 1077.43], [1844.77, 1082.97], [1850.26, 1077.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1711.68, 777.46], [1704.87, 771.3], [1703.97, 772.3], [1703.59, 771.95], [1701.78, 773.95], [1702.15, 774.28], [1701.45, 775.06], [1699.64, 773.42], [1695.24, 778.23], [1697.35, 780.13], [1695.86, 781.76], [1699.85, 785.37], [1701.21, 783.88], [1703.88, 786.3], [1701.28, 789.15], [1705.15, 792.65], [1711.74, 785.41], [1707.73, 781.78], [1711.68, 777.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1773.34, 911.32], [1767.1, 905.76], [1756.92, 917.11], [1763.15, 922.67], [1773.34, 911.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1199.54, 584.27], [1194.69, 579.9], [1192.76, 582.03], [1191.88, 581.24], [1185.85, 587.89], [1191.59, 593.05], [1199.54, 584.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1804.44, 802.95], [1800.42, 799.18], [1799.79, 799.85], [1798.29, 798.45], [1787.76, 809.58], [1792.19, 813.75], [1793.15, 814.64], [1793.9, 815.34], [1803.81, 804.85], [1803.19, 804.28], [1804.44, 802.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1345.02, 469.69], [1357.82, 455.81], [1357.03, 455.09], [1355.94, 454.09], [1351.84, 450.33], [1339.21, 464.02], [1340.25, 464.97], [1339.05, 466.27], [1342.66, 469.6], [1343.7, 468.48], [1345.02, 469.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1940.13, 1212.97], [1933.42, 1204.12], [1926.3, 1209.53], [1933.02, 1218.37], [1940.13, 1212.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2171.53, 983.1], [2176.02, 987.56], [2179.81, 983.76], [2175.33, 979.29], [2171.53, 983.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1876.21, 843.54], [1866.16, 834.27], [1863.0, 837.68], [1863.7, 838.33], [1860.83, 841.42], [1870.16, 850.04], [1876.21, 843.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1504.46, 950.71], [1510.47, 944.21], [1500.68, 935.23], [1496.71, 939.52], [1497.43, 940.19], [1494.99, 942.83], [1502.47, 949.69], [1502.86, 949.25], [1504.46, 950.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1890.21, 1095.94], [1892.37, 1093.82], [1893.06, 1094.54], [1899.71, 1087.99], [1894.63, 1082.82], [1887.74, 1089.62], [1890.06, 1091.98], [1888.16, 1093.84], [1890.21, 1095.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1744.55, 736.26], [1739.24, 731.15], [1733.04, 737.54], [1744.79, 748.85], [1749.83, 743.66], [1743.39, 737.46], [1744.55, 736.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1777.11, 610.85], [1778.61, 609.22], [1779.55, 610.12], [1786.83, 602.11], [1786.4, 601.69], [1787.96, 600.11], [1781.15, 594.1], [1780.19, 595.15], [1779.55, 594.56], [1776.62, 597.69], [1776.23, 597.3], [1769.94, 604.21], [1777.11, 610.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1975.45, 955.91], [1968.86, 949.96], [1959.43, 960.34], [1962.59, 963.19], [1961.13, 964.8], [1964.57, 967.89], [1975.45, 955.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2125.08, 803.42], [2120.61, 799.3], [2114.6, 805.82], [2119.08, 809.94], [2125.08, 803.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1937.47, 1180.48], [1930.82, 1173.48], [1925.72, 1178.31], [1932.36, 1185.33], [1937.47, 1180.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2064.25, 1006.78], [2061.05, 1004.04], [2058.1, 1007.5], [2061.3, 1010.24], [2064.25, 1006.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1190.11, 598.87], [1195.94, 604.08], [1208.54, 590.05], [1202.47, 584.64], [1200.86, 586.44], [1201.08, 586.64], [1190.11, 598.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1880.5, 835.25], [1873.18, 828.31], [1868.22, 833.49], [1875.54, 840.44], [1880.5, 835.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1586.76, 1013.42], [1581.18, 1008.31], [1578.12, 1011.63], [1577.87, 1011.41], [1572.28, 1017.48], [1578.12, 1022.81], [1586.76, 1013.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1906.32, 883.02], [1901.82, 879.03], [1898.73, 882.47], [1903.23, 886.47], [1906.32, 883.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1911.94, 738.47], [1916.25, 733.6], [1913.06, 730.78], [1908.75, 735.66], [1911.94, 738.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1658.82, 999.69], [1645.79, 1013.92], [1650.56, 1018.25], [1651.88, 1016.81], [1652.18, 1017.07], [1655.95, 1012.95], [1655.06, 1012.14], [1663.0, 1003.48], [1658.82, 999.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1720.89, 1001.49], [1708.83, 1014.83], [1716.44, 1021.66], [1728.51, 1008.31], [1720.89, 1001.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2019.6, 867.81], [2014.58, 863.51], [2013.41, 864.86], [2010.71, 862.54], [2004.76, 869.46], [2012.48, 876.09], [2019.6, 867.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1444.92, 884.03], [1443.41, 882.68], [1441.48, 884.82], [1438.55, 882.21], [1430.6, 891.08], [1435.05, 895.04], [1444.92, 884.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1463.73, 908.86], [1458.63, 904.74], [1453.41, 911.14], [1458.5, 915.26], [1463.73, 908.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1376.36, 395.73], [1373.63, 393.3], [1375.08, 391.7], [1370.73, 387.8], [1369.2, 389.5], [1366.18, 386.8], [1356.44, 397.56], [1366.52, 406.62], [1376.36, 395.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1533.64, 976.57], [1537.22, 972.7], [1537.62, 973.06], [1538.75, 971.84], [1536.42, 969.71], [1537.15, 968.92], [1529.41, 961.81], [1523.98, 967.7], [1533.64, 976.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1795.26, 870.42], [1802.55, 862.43], [1790.41, 851.44], [1783.13, 859.45], [1795.26, 870.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1974.05, 825.16], [1967.55, 819.97], [1962.07, 826.83], [1965.64, 829.68], [1963.6, 832.23], [1966.53, 834.57], [1974.05, 825.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1535.3, 620.41], [1528.8, 614.74], [1528.34, 615.25], [1525.25, 612.56], [1516.65, 622.35], [1526.25, 630.71], [1535.3, 620.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1689.52, 717.84], [1692.47, 714.58], [1692.96, 715.03], [1699.13, 708.25], [1693.25, 702.94], [1692.71, 703.54], [1692.4, 703.24], [1689.6, 706.32], [1689.32, 706.08], [1685.93, 709.81], [1686.33, 710.16], [1683.4, 713.4], [1687.31, 716.91], [1687.84, 716.33], [1689.52, 717.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1866.08, 706.07], [1869.97, 701.69], [1862.74, 695.08], [1858.98, 699.43], [1866.08, 706.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1760.82, 821.39], [1755.74, 816.75], [1753.16, 819.56], [1752.44, 818.9], [1747.16, 824.65], [1747.52, 824.97], [1745.28, 827.42], [1746.52, 828.55], [1745.47, 829.7], [1747.71, 831.75], [1748.77, 830.6], [1751.11, 832.72], [1759.95, 823.08], [1759.58, 822.74], [1760.82, 821.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1714.33, 828.3], [1718.04, 824.19], [1713.66, 820.26], [1709.95, 824.35], [1714.33, 828.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2075.4, 781.78], [2079.29, 777.5], [2075.56, 774.11], [2070.44, 779.76], [2067.66, 777.25], [2064.09, 781.19], [2065.35, 782.33], [2060.85, 787.3], [2067.09, 792.94], [2076.4, 782.68], [2075.4, 781.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2159.48, 957.92], [2152.99, 952.74], [2149.38, 957.26], [2155.88, 962.44], [2159.48, 957.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1673.95, 818.85], [1675.89, 816.74], [1676.69, 817.48], [1679.15, 814.82], [1678.48, 814.2], [1680.08, 812.47], [1671.3, 804.42], [1671.08, 804.65], [1669.92, 803.59], [1668.42, 805.21], [1669.59, 806.27], [1665.3, 810.93], [1673.95, 818.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1480.71, 916.68], [1477.08, 913.3], [1475.72, 914.77], [1474.83, 913.94], [1467.32, 921.96], [1467.94, 922.54], [1466.58, 923.99], [1471.54, 928.61], [1480.36, 919.2], [1479.29, 918.2], [1480.71, 916.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1872.55, 1178.63], [1860.28, 1192.28], [1868.1, 1201.34], [1879.71, 1191.43], [1874.55, 1185.22], [1876.56, 1183.59], [1872.55, 1178.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1506.54, 767.81], [1501.62, 763.68], [1497.67, 768.34], [1502.59, 772.48], [1506.54, 767.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1747.0, 1094.18], [1740.41, 1087.85], [1733.07, 1095.86], [1734.28, 1096.91], [1733.33, 1097.97], [1739.66, 1103.98], [1746.63, 1096.58], [1745.73, 1095.49], [1747.0, 1094.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1555.25, 950.39], [1558.44, 946.89], [1558.35, 946.8], [1559.93, 945.07], [1550.67, 936.73], [1546.3, 941.53], [1547.21, 942.35], [1543.61, 946.3], [1550.38, 952.41], [1553.58, 948.88], [1555.25, 950.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1620.3, 865.67], [1613.33, 873.38], [1628.24, 886.76], [1631.92, 882.69], [1628.47, 879.6], [1631.76, 875.96], [1620.3, 865.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2132.64, 926.23], [2126.99, 921.15], [2121.5, 927.04], [2127.12, 932.44], [2132.64, 926.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2063.22, 848.78], [2071.84, 836.25], [2064.19, 830.99], [2054.84, 844.58], [2058.64, 847.19], [2059.38, 846.13], [2063.22, 848.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1604.75, 815.66], [1599.76, 821.08], [1611.96, 832.23], [1617.58, 826.11], [1607.58, 816.97], [1606.94, 817.66], [1604.75, 815.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2066.76, 1040.5], [2063.31, 1037.68], [2061.57, 1039.81], [2058.09, 1036.95], [2051.78, 1044.64], [2054.53, 1046.88], [2053.85, 1047.71], [2058.04, 1051.15], [2066.76, 1040.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1599.86, 625.89], [1594.14, 620.21], [1586.95, 627.4], [1592.67, 633.09], [1599.86, 625.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1757.31, 766.53], [1751.59, 761.18], [1750.1, 762.76], [1749.28, 762.01], [1745.35, 766.18], [1745.9, 766.7], [1742.09, 770.74], [1748.09, 776.33], [1757.31, 766.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1715.94, 673.44], [1719.53, 669.73], [1720.98, 671.12], [1722.39, 669.67], [1727.36, 674.45], [1733.58, 668.04], [1728.11, 662.77], [1728.53, 662.33], [1723.76, 657.74], [1712.11, 669.75], [1715.94, 673.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1814.89, 1046.88], [1811.45, 1044.01], [1806.96, 1049.38], [1810.39, 1052.25], [1814.89, 1046.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1792.53, 1085.0], [1790.51, 1083.07], [1791.59, 1081.99], [1789.37, 1079.88], [1788.33, 1080.96], [1788.02, 1080.67], [1785.33, 1083.41], [1784.08, 1083.82], [1782.94, 1085.0], [1782.56, 1086.28], [1780.34, 1088.62], [1780.61, 1089.92], [1781.76, 1091.02], [1783.07, 1091.28], [1781.81, 1092.6], [1783.56, 1094.25], [1792.53, 1085.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1763.41, 1044.39], [1758.0, 1039.2], [1754.52, 1042.82], [1753.63, 1041.97], [1750.8, 1044.91], [1751.77, 1045.85], [1748.18, 1049.6], [1753.5, 1054.71], [1763.41, 1044.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2093.63, 858.87], [2087.57, 853.12], [2080.4, 860.67], [2086.46, 866.42], [2093.63, 858.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1195.59, 660.15], [1191.37, 656.35], [1189.7, 658.21], [1188.98, 657.57], [1185.76, 661.14], [1188.39, 663.49], [1184.72, 667.55], [1190.43, 672.67], [1197.02, 665.39], [1193.61, 662.34], [1195.59, 660.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1864.98, 855.47], [1855.69, 847.73], [1849.71, 854.85], [1858.99, 862.59], [1864.98, 855.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2109.43, 805.15], [2111.09, 803.22], [2112.28, 804.24], [2116.0, 799.96], [2114.78, 798.89], [2116.27, 797.19], [2110.96, 792.57], [2104.07, 800.5], [2109.43, 805.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1294.11, 493.91], [1304.14, 481.59], [1299.53, 477.86], [1298.31, 479.36], [1295.55, 477.13], [1288.44, 485.85], [1288.65, 486.02], [1287.15, 487.87], [1288.42, 488.9], [1287.29, 490.29], [1289.31, 491.92], [1290.24, 490.78], [1294.11, 493.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1406.59, 659.56], [1408.04, 660.92], [1407.06, 661.97], [1411.26, 665.88], [1412.32, 664.73], [1413.29, 665.64], [1421.22, 657.16], [1420.49, 656.48], [1424.62, 652.05], [1420.38, 648.12], [1419.26, 649.32], [1418.53, 648.64], [1415.61, 651.78], [1414.67, 650.92], [1406.59, 659.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1396.7, 723.78], [1400.62, 719.45], [1401.16, 719.93], [1404.29, 716.47], [1403.85, 716.07], [1406.23, 713.43], [1401.78, 709.45], [1392.35, 719.87], [1396.7, 723.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1535.1, 1112.75], [1541.56, 1105.67], [1540.74, 1104.93], [1541.84, 1103.73], [1537.55, 1099.85], [1536.5, 1101.0], [1536.06, 1100.6], [1529.83, 1107.41], [1530.01, 1107.57], [1527.92, 1109.88], [1530.96, 1112.63], [1532.77, 1110.64], [1535.1, 1112.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1457.16, 872.63], [1450.02, 866.52], [1444.2, 873.31], [1451.34, 879.42], [1457.16, 872.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1676.95, 1111.71], [1668.76, 1104.34], [1663.66, 1109.95], [1674.09, 1119.36], [1676.5, 1116.71], [1674.26, 1114.68], [1676.95, 1111.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1309.52, 453.43], [1304.95, 449.08], [1300.55, 453.67], [1305.12, 458.02], [1309.52, 453.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1721.97, 788.86], [1716.58, 783.94], [1709.32, 791.85], [1714.71, 796.77], [1721.97, 788.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1982.82, 777.03], [1975.6, 771.05], [1970.68, 776.99], [1978.97, 783.86], [1981.43, 780.89], [1980.35, 780.01], [1982.82, 777.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1815.93, 909.01], [1807.57, 901.4], [1804.89, 904.32], [1803.43, 902.99], [1800.4, 906.3], [1810.22, 915.25], [1815.93, 909.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1771.21, 1079.37], [1779.36, 1070.62], [1777.66, 1069.01], [1779.88, 1066.58], [1777.22, 1064.12], [1774.75, 1066.78], [1774.09, 1066.15], [1766.16, 1074.68], [1771.21, 1079.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1634.9, 1020.75], [1629.84, 1026.26], [1635.4, 1031.33], [1640.46, 1025.82], [1634.9, 1020.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1794.99, 892.09], [1790.8, 896.77], [1795.8, 901.22], [1799.99, 896.54], [1794.99, 892.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1353.79, 648.07], [1351.28, 645.73], [1347.36, 649.9], [1349.87, 652.25], [1353.79, 648.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1839.02, 1081.21], [1833.64, 1076.63], [1830.48, 1080.34], [1835.86, 1084.92], [1839.02, 1081.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2026.16, 797.94], [2020.58, 792.63], [2011.11, 802.56], [2016.7, 807.89], [2026.16, 797.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1889.24, 1184.52], [1881.22, 1174.71], [1876.35, 1178.69], [1884.38, 1188.5], [1889.24, 1184.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1555.89, 1075.07], [1549.89, 1069.82], [1546.33, 1073.88], [1546.94, 1074.41], [1542.4, 1079.58], [1547.78, 1084.29], [1555.89, 1075.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1775.96, 784.29], [1777.28, 782.7], [1773.42, 779.5], [1769.87, 783.73], [1769.69, 783.58], [1764.73, 789.52], [1770.66, 794.46], [1777.84, 785.85], [1775.96, 784.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1834.88, 889.76], [1828.44, 883.95], [1820.87, 892.25], [1824.45, 895.49], [1825.75, 894.04], [1828.62, 896.64], [1834.88, 889.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1782.02, 1003.41], [1774.08, 996.32], [1768.78, 1002.26], [1777.46, 1010.03], [1780.41, 1006.72], [1779.66, 1006.05], [1782.02, 1003.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1981.18, 1195.51], [1975.68, 1190.11], [1971.41, 1194.45], [1976.91, 1199.86], [1981.18, 1195.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1922.31, 1193.31], [1912.95, 1181.71], [1907.21, 1186.36], [1916.57, 1197.95], [1922.31, 1193.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1785.57, 1049.78], [1789.67, 1053.33], [1795.78, 1046.29], [1791.68, 1042.74], [1785.57, 1049.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1589.9, 703.7], [1586.71, 700.9], [1582.65, 705.52], [1585.84, 708.32], [1589.9, 703.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1697.26, 862.62], [1704.79, 854.29], [1700.69, 850.61], [1699.86, 851.53], [1697.57, 849.48], [1689.35, 858.58], [1695.25, 863.87], [1696.77, 862.18], [1697.26, 862.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1883.51, 676.05], [1888.46, 670.65], [1883.88, 666.46], [1885.81, 664.35], [1883.92, 662.62], [1882.67, 661.48], [1880.74, 663.58], [1880.44, 663.3], [1873.49, 670.87], [1874.24, 671.56], [1869.89, 676.3], [1874.53, 680.56], [1877.23, 677.61], [1883.13, 683.03], [1886.78, 679.05], [1884.85, 677.28], [1883.51, 676.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1712.77, 829.19], [1707.88, 824.66], [1702.94, 829.94], [1707.83, 834.48], [1712.77, 829.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1241.58, 491.17], [1238.51, 488.38], [1237.71, 489.26], [1235.52, 487.28], [1228.12, 495.41], [1235.95, 502.49], [1242.97, 494.77], [1240.4, 492.45], [1241.58, 491.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1975.09, 785.02], [1967.62, 777.86], [1962.47, 783.21], [1970.73, 791.13], [1973.71, 788.01], [1972.94, 787.27], [1975.09, 785.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1200.83, 688.56], [1204.64, 684.24], [1202.18, 682.09], [1203.19, 680.95], [1196.56, 675.14], [1190.77, 681.69], [1197.38, 687.48], [1198.34, 686.39], [1200.83, 688.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1262.8, 529.16], [1266.68, 524.98], [1267.3, 525.55], [1270.97, 521.58], [1270.44, 521.09], [1273.51, 517.77], [1267.24, 512.01], [1256.62, 523.47], [1262.8, 529.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2074.9, 1007.0], [2070.09, 1002.76], [2066.15, 1007.23], [2070.97, 1011.47], [2074.9, 1007.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2117.95, 1013.74], [2114.93, 1011.04], [2104.2, 1023.07], [2110.75, 1028.91], [2120.03, 1018.52], [2116.5, 1015.38], [2117.95, 1013.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2162.78, 928.86], [2157.24, 923.64], [2149.31, 932.45], [2150.02, 932.98], [2148.04, 935.11], [2151.44, 938.24], [2153.18, 936.18], [2154.67, 937.63], [2162.78, 928.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1461.03, 891.77], [1467.17, 885.13], [1462.78, 881.11], [1456.64, 887.76], [1461.03, 891.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1999.39, 791.86], [1995.94, 788.43], [1991.42, 792.97], [1994.88, 796.41], [1999.39, 791.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1438.52, 667.27], [1432.51, 661.64], [1422.54, 672.18], [1424.25, 673.79], [1422.88, 675.24], [1425.43, 677.65], [1426.81, 676.19], [1428.55, 677.81], [1438.52, 667.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1727.85, 849.88], [1724.6, 847.01], [1720.74, 851.37], [1723.99, 854.22], [1727.85, 849.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1770.55, 1124.36], [1768.41, 1122.5], [1769.1, 1121.71], [1766.21, 1119.19], [1762.92, 1122.99], [1761.19, 1121.48], [1755.6, 1127.92], [1762.35, 1133.79], [1770.55, 1124.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1772.04, 1015.77], [1776.13, 1011.36], [1766.3, 1002.25], [1764.31, 1004.4], [1766.1, 1006.05], [1763.3, 1009.06], [1769.57, 1014.88], [1770.27, 1014.12], [1772.04, 1015.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1704.94, 599.73], [1716.62, 587.77], [1714.4, 585.6], [1715.91, 584.05], [1710.85, 579.11], [1696.42, 593.88], [1702.1, 599.43], [1703.34, 598.16], [1704.94, 599.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1454.34, 678.89], [1447.92, 673.38], [1437.78, 685.08], [1444.19, 690.6], [1454.34, 678.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1709.73, 796.96], [1706.49, 793.95], [1701.7, 799.09], [1704.94, 802.09], [1709.73, 796.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1567.82, 954.75], [1571.89, 950.32], [1567.62, 946.41], [1563.54, 950.85], [1567.82, 954.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1642.67, 638.3], [1639.46, 635.38], [1634.95, 640.29], [1638.16, 643.21], [1642.67, 638.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1585.97, 618.48], [1577.45, 611.65], [1575.66, 613.87], [1573.69, 612.29], [1569.49, 617.5], [1579.97, 625.91], [1585.97, 618.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1740.1, 1039.0], [1752.38, 1025.41], [1745.29, 1019.08], [1733.03, 1032.57], [1740.1, 1039.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1994.7, 845.68], [1990.51, 842.1], [1981.6, 852.53], [1987.31, 857.41], [1994.89, 848.54], [1993.36, 847.24], [1994.7, 845.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1775.36, 775.85], [1769.28, 770.73], [1764.9, 775.89], [1763.63, 774.82], [1761.28, 777.61], [1761.99, 778.2], [1757.06, 784.0], [1763.7, 789.6], [1775.36, 775.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1879.23, 1072.7], [1881.29, 1070.68], [1878.2, 1067.51], [1876.19, 1069.47], [1874.97, 1068.23], [1871.9, 1071.21], [1870.8, 1070.09], [1868.09, 1072.74], [1868.93, 1073.6], [1866.08, 1076.39], [1871.96, 1082.42], [1880.54, 1074.04], [1879.23, 1072.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1945.87, 886.13], [1941.36, 882.22], [1937.11, 887.08], [1941.63, 891.0], [1945.87, 886.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2056.29, 782.5], [2065.0, 771.86], [2067.85, 774.18], [2072.53, 768.45], [2077.09, 772.18], [2082.72, 765.3], [2078.55, 761.89], [2076.23, 764.73], [2072.72, 761.87], [2066.16, 769.87], [2061.17, 765.79], [2057.55, 770.2], [2055.97, 768.92], [2053.77, 771.6], [2054.69, 772.34], [2050.36, 777.64], [2056.29, 782.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1553.87, 1000.34], [1559.61, 993.55], [1559.13, 993.15], [1562.24, 989.47], [1558.46, 986.3], [1555.59, 989.68], [1555.49, 989.6], [1549.51, 996.67], [1553.87, 1000.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1586.61, 1070.22], [1584.92, 1068.71], [1584.36, 1069.33], [1580.75, 1066.12], [1573.2, 1074.5], [1578.5, 1079.23], [1586.61, 1070.22]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[2011.07, 785.1], [2005.41, 780.16], [2000.82, 785.41], [2006.49, 790.36], [2011.07, 785.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1613.09, 788.55], [1618.43, 782.32], [1618.92, 782.78], [1622.92, 778.29], [1621.03, 776.58], [1622.38, 774.97], [1618.89, 771.97], [1615.39, 775.92], [1614.36, 775.09], [1607.15, 783.25], [1613.09, 788.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1850.63, 1170.25], [1853.31, 1167.63], [1853.71, 1168.03], [1857.11, 1164.69], [1850.22, 1157.72], [1847.16, 1160.73], [1848.46, 1162.05], [1843.75, 1166.67], [1846.63, 1169.59], [1848.32, 1167.93], [1850.63, 1170.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1980.1, 911.36], [1981.92, 909.33], [1983.31, 910.58], [1992.32, 900.57], [1985.43, 894.37], [1976.37, 904.45], [1978.57, 906.43], [1976.8, 908.4], [1980.1, 911.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1870.55, 1254.46], [1875.75, 1249.56], [1869.4, 1242.88], [1858.7, 1252.97], [1861.21, 1255.6], [1863.79, 1253.16], [1865.68, 1255.14], [1863.67, 1257.05], [1866.02, 1259.51], [1870.94, 1254.87], [1870.55, 1254.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1641.53, 954.16], [1648.12, 960.0], [1659.06, 947.76], [1652.48, 941.92], [1641.53, 954.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2007.53, 826.45], [2001.12, 821.07], [1997.85, 824.98], [2004.26, 830.34], [2007.53, 826.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1698.39, 903.49], [1692.17, 897.82], [1682.07, 908.84], [1688.29, 914.5], [1690.79, 911.79], [1691.42, 912.36], [1694.73, 908.75], [1694.09, 908.17], [1698.39, 903.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1542.2, 1029.94], [1536.61, 1024.87], [1527.29, 1035.08], [1531.12, 1038.55], [1533.72, 1035.73], [1535.48, 1037.32], [1542.2, 1029.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1976.48, 1201.21], [1971.57, 1196.89], [1969.39, 1199.38], [1974.29, 1203.7], [1976.48, 1201.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1750.47, 740.77], [1756.31, 734.35], [1744.72, 723.87], [1743.63, 725.06], [1739.64, 729.44], [1738.88, 730.28], [1750.47, 740.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1443.07, 720.21], [1434.56, 712.6], [1429.96, 717.71], [1438.47, 725.32], [1443.07, 720.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2137.28, 975.89], [2131.07, 970.48], [2126.23, 976.01], [2127.42, 977.06], [2123.62, 981.43], [2128.63, 985.81], [2137.28, 975.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2026.6, 873.41], [2020.35, 867.87], [2010.99, 878.45], [2017.24, 883.97], [2026.6, 873.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1813.15, 1029.2], [1809.21, 1025.35], [1805.05, 1029.62], [1808.99, 1033.46], [1813.15, 1029.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1296.14, 436.96], [1301.35, 441.61], [1305.84, 436.6], [1300.63, 431.96], [1296.14, 436.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1750.54, 953.07], [1745.09, 948.01], [1738.16, 955.42], [1743.61, 960.48], [1750.54, 953.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1713.91, 721.33], [1706.33, 714.62], [1705.11, 715.99], [1703.44, 714.52], [1700.47, 717.83], [1702.27, 719.42], [1700.97, 720.88], [1708.44, 727.48], [1713.91, 721.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2011.49, 917.51], [2005.48, 911.89], [2002.25, 915.35], [2000.6, 913.8], [1997.28, 917.34], [1998.8, 918.76], [1995.17, 922.64], [2001.32, 928.39], [2011.49, 917.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1819.37, 815.59], [1813.75, 810.72], [1802.31, 823.83], [1808.85, 829.49], [1814.85, 822.62], [1813.93, 821.83], [1819.37, 815.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1806.54, 1076.8], [1811.54, 1071.48], [1810.77, 1070.77], [1812.02, 1069.43], [1809.76, 1067.33], [1808.5, 1068.66], [1807.04, 1067.29], [1808.27, 1065.98], [1806.04, 1063.89], [1804.8, 1065.21], [1803.93, 1064.4], [1798.95, 1069.71], [1806.54, 1076.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1834.55, 831.04], [1822.08, 844.57], [1829.06, 850.96], [1841.54, 837.43], [1834.55, 831.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2054.61, 1000.88], [2060.43, 996.94], [2061.49, 998.48], [2064.79, 996.25], [2062.91, 993.49], [2063.94, 992.78], [2062.02, 989.94], [2063.87, 988.69], [2060.67, 983.99], [2050.81, 990.68], [2051.55, 991.78], [2049.42, 993.23], [2054.61, 1000.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1443.78, 910.96], [1455.7, 897.83], [1456.19, 898.27], [1461.02, 892.95], [1456.18, 888.59], [1439.43, 907.04], [1443.78, 910.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1816.92, 1104.79], [1811.16, 1099.4], [1806.69, 1104.17], [1805.89, 1103.43], [1803.41, 1106.07], [1804.16, 1106.78], [1800.85, 1110.33], [1806.67, 1115.76], [1816.92, 1104.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1628.03, 742.67], [1624.35, 739.4], [1619.53, 744.84], [1623.21, 748.11], [1628.03, 742.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2077.65, 903.41], [2072.65, 899.27], [2069.11, 903.55], [2074.1, 907.69], [2077.65, 903.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1759.19, 956.94], [1753.31, 951.5], [1751.92, 953.0], [1751.63, 952.73], [1743.94, 960.98], [1749.1, 965.75], [1750.39, 964.37], [1752.13, 965.98], [1758.64, 958.99], [1757.92, 958.31], [1759.19, 956.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2019.91, 925.56], [2012.96, 919.64], [2003.71, 930.49], [2010.66, 936.41], [2019.91, 925.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1805.36, 617.02], [1800.22, 612.28], [1794.74, 618.24], [1799.88, 622.97], [1805.36, 617.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1440.34, 534.15], [1433.64, 527.97], [1426.3, 535.87], [1427.78, 537.23], [1423.6, 541.74], [1428.31, 546.08], [1432.44, 541.64], [1432.95, 542.12], [1440.34, 534.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1690.97, 627.68], [1685.08, 622.43], [1676.95, 631.48], [1682.84, 636.74], [1690.97, 627.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1955.69, 865.53], [1952.34, 862.48], [1951.81, 863.05], [1947.92, 859.5], [1941.03, 867.06], [1941.38, 867.37], [1938.54, 870.48], [1945.44, 876.77], [1955.69, 865.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1808.99, 915.18], [1799.67, 907.04], [1798.17, 908.74], [1797.1, 907.8], [1794.74, 910.48], [1795.91, 911.5], [1793.88, 913.83], [1803.1, 921.88], [1808.99, 915.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2007.15, 803.09], [2009.48, 800.28], [2010.61, 801.21], [2018.53, 791.6], [2012.57, 786.69], [2007.48, 792.86], [2007.79, 793.11], [2004.96, 796.56], [2006.18, 797.57], [2003.87, 800.38], [2007.15, 803.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1750.94, 559.31], [1743.71, 552.88], [1738.27, 559.0], [1738.54, 559.25], [1736.73, 561.29], [1748.24, 571.52], [1752.72, 566.49], [1748.17, 562.44], [1750.94, 559.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1595.99, 1015.7], [1591.15, 1011.19], [1583.07, 1019.81], [1583.3, 1020.01], [1582.46, 1020.91], [1586.9, 1025.03], [1587.73, 1024.13], [1587.93, 1024.32], [1595.99, 1015.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1549.62, 691.85], [1554.11, 687.02], [1541.39, 675.71], [1537.14, 680.4], [1549.62, 691.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1604.48, 1023.32], [1599.35, 1018.72], [1590.08, 1028.99], [1595.54, 1033.89], [1601.9, 1026.85], [1601.57, 1026.54], [1604.48, 1023.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1797.38, 1019.43], [1792.17, 1014.39], [1787.39, 1019.31], [1792.6, 1024.35], [1797.38, 1019.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1777.16, 1061.05], [1774.12, 1057.98], [1772.75, 1059.33], [1769.8, 1056.35], [1767.07, 1059.06], [1766.61, 1058.61], [1763.9, 1061.29], [1765.06, 1062.46], [1761.06, 1066.43], [1766.35, 1071.77], [1777.16, 1061.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1500.78, 990.11], [1491.98, 999.66], [1506.43, 1012.89], [1515.24, 1003.35], [1500.78, 990.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2198.54, 910.2], [2194.08, 905.38], [2186.17, 912.69], [2192.08, 919.08], [2195.74, 915.69], [2194.29, 914.13], [2198.54, 910.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1788.06, 582.24], [1780.33, 574.86], [1774.39, 581.09], [1776.85, 583.43], [1773.77, 586.67], [1779.04, 591.71], [1788.06, 582.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1429.13, 523.5], [1428.68, 523.08], [1429.58, 522.09], [1422.63, 515.78], [1421.15, 517.4], [1420.81, 517.08], [1418.83, 519.25], [1418.65, 519.09], [1413.23, 525.02], [1416.05, 527.59], [1413.61, 530.25], [1418.71, 534.88], [1429.13, 523.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1858.41, 698.99], [1862.35, 694.59], [1857.71, 690.36], [1853.82, 694.79], [1858.41, 698.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1979.72, 1190.44], [1981.21, 1188.63], [1978.64, 1186.31], [1977.13, 1188.09], [1979.72, 1190.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1848.72, 1146.13], [1844.31, 1141.2], [1842.96, 1142.41], [1841.68, 1140.99], [1837.96, 1144.31], [1837.43, 1143.72], [1833.4, 1147.33], [1835.38, 1149.54], [1832.39, 1152.22], [1833.41, 1153.36], [1832.33, 1154.32], [1835.57, 1157.93], [1848.72, 1146.13]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[1594.64, 748.72], [1590.44, 745.13], [1588.92, 746.89], [1587.49, 745.67], [1578.51, 756.17], [1584.16, 760.99], [1594.64, 748.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1733.07, 1148.36], [1717.23, 1133.52], [1723.65, 1126.7], [1724.82, 1127.78], [1728.2, 1124.2], [1718.93, 1115.5], [1710.99, 1123.93], [1714.0, 1126.74], [1712.14, 1128.71], [1711.36, 1127.97], [1703.6, 1136.19], [1724.24, 1155.53], [1726.14, 1153.5], [1727.25, 1154.53], [1733.07, 1148.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2045.66, 944.78], [2042.02, 941.1], [2030.44, 952.58], [2036.6, 958.79], [2046.09, 949.41], [2043.56, 946.86], [2045.66, 944.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1272.45, 538.69], [1284.07, 525.49], [1277.91, 520.12], [1274.19, 524.36], [1273.62, 523.86], [1265.74, 532.83], [1272.45, 538.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1842.52, 629.78], [1834.7, 622.17], [1828.43, 628.63], [1832.07, 632.17], [1829.4, 634.9], [1833.58, 638.96], [1842.52, 629.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2044.23, 1018.03], [2047.78, 1014.17], [2039.85, 1006.84], [2035.65, 1011.39], [2040.85, 1016.2], [2041.5, 1015.51], [2044.23, 1018.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1817.53, 789.17], [1810.84, 783.05], [1806.71, 787.53], [1813.39, 793.66], [1817.53, 789.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1462.45, 685.91], [1456.74, 680.85], [1453.27, 684.74], [1452.92, 684.44], [1449.37, 688.43], [1449.72, 688.73], [1447.6, 691.12], [1453.32, 696.17], [1462.45, 685.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1849.57, 828.07], [1854.03, 823.67], [1848.24, 817.87], [1843.8, 822.27], [1849.57, 828.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1564.39, 647.24], [1558.42, 641.88], [1549.5, 651.8], [1555.47, 657.15], [1564.39, 647.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1896.24, 880.48], [1886.52, 871.83], [1883.88, 874.79], [1882.76, 873.79], [1879.35, 877.6], [1890.19, 887.24], [1896.24, 880.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1993.23, 690.83], [1999.07, 684.15], [1994.32, 680.02], [1993.63, 680.8], [1991.43, 678.75], [1986.24, 684.72], [1993.23, 690.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1777.65, 1181.31], [1780.81, 1177.74], [1783.13, 1179.79], [1787.99, 1174.3], [1781.66, 1168.68], [1773.63, 1177.76], [1777.65, 1181.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1580.14, 734.37], [1574.65, 729.45], [1562.11, 743.43], [1567.6, 748.35], [1580.14, 734.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2092.19, 1059.85], [2087.76, 1055.8], [2083.26, 1060.7], [2087.69, 1064.77], [2092.19, 1059.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1468.78, 693.51], [1462.78, 688.05], [1453.99, 697.68], [1459.98, 703.13], [1468.78, 693.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1523.5, 1023.23], [1528.76, 1017.58], [1522.49, 1011.78], [1515.41, 1019.38], [1519.55, 1023.21], [1521.37, 1021.26], [1523.5, 1023.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1161.52, 485.28], [1152.64, 476.84], [1149.16, 480.47], [1150.18, 481.45], [1147.95, 483.79], [1148.57, 484.39], [1145.98, 487.11], [1145.23, 486.39], [1143.9, 487.79], [1143.04, 486.97], [1140.35, 489.78], [1141.3, 490.68], [1138.62, 493.49], [1142.84, 497.5], [1143.71, 496.6], [1148.12, 500.79], [1152.82, 495.89], [1151.69, 494.81], [1152.92, 493.52], [1151.85, 492.5], [1153.23, 491.06], [1154.44, 492.21], [1156.23, 490.34], [1157.44, 491.5], [1161.38, 487.37], [1160.4, 486.44], [1161.52, 485.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2160.85, 983.55], [2165.11, 978.85], [2152.18, 966.48], [2147.31, 971.73], [2160.85, 983.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1638.46, 711.03], [1635.22, 708.23], [1623.74, 721.55], [1629.03, 726.11], [1639.16, 714.37], [1637.12, 712.6], [1638.46, 711.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1428.19, 732.0], [1424.79, 728.8], [1421.56, 732.22], [1424.96, 735.41], [1428.19, 732.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1787.24, 850.63], [1781.6, 845.47], [1773.39, 854.38], [1775.42, 856.23], [1772.81, 859.06], [1776.43, 862.37], [1787.24, 850.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1619.31, 794.32], [1621.12, 792.46], [1622.56, 793.85], [1630.13, 786.06], [1625.7, 781.76], [1616.32, 791.41], [1619.31, 794.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1786.73, 982.77], [1782.36, 978.54], [1774.74, 986.4], [1779.12, 990.63], [1786.73, 982.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2023.62, 727.72], [2025.51, 725.49], [2026.94, 726.7], [2033.99, 718.4], [2029.44, 714.55], [2025.28, 719.44], [2022.09, 716.73], [2017.32, 722.37], [2023.62, 727.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1655.02, 861.17], [1646.87, 853.58], [1639.36, 861.6], [1637.9, 860.24], [1635.09, 863.24], [1636.55, 864.59], [1635.43, 865.78], [1643.58, 873.37], [1655.02, 861.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1358.33, 462.32], [1355.05, 465.92], [1354.69, 465.6], [1351.35, 469.28], [1351.7, 469.6], [1346.32, 475.51], [1349.06, 477.97], [1348.34, 478.76], [1352.23, 482.29], [1364.95, 468.31], [1358.33, 462.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1227.29, 476.5], [1221.86, 471.72], [1220.8, 472.92], [1214.8, 467.65], [1210.45, 472.55], [1216.22, 477.62], [1215.02, 478.97], [1220.69, 483.95], [1227.29, 476.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2044.73, 730.08], [2040.13, 725.54], [2035.44, 730.29], [2044.49, 739.21], [2048.29, 735.34], [2043.84, 730.97], [2044.73, 730.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1908.43, 735.29], [1912.7, 730.55], [1909.65, 727.81], [1905.38, 732.54], [1908.43, 735.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1540.58, 1059.91], [1534.39, 1054.5], [1532.5, 1056.63], [1530.93, 1055.27], [1525.31, 1061.66], [1526.88, 1063.03], [1524.77, 1065.43], [1530.97, 1070.85], [1540.58, 1059.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1911.07, 746.74], [1915.22, 742.2], [1910.32, 737.75], [1906.3, 742.19], [1911.07, 746.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1788.75, 908.62], [1784.84, 905.18], [1780.41, 910.17], [1784.32, 913.61], [1788.75, 908.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2093.53, 1048.35], [2098.44, 1052.85], [2103.01, 1047.94], [2098.07, 1043.53], [2093.53, 1048.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1664.76, 773.6], [1656.36, 766.1], [1650.14, 773.06], [1658.55, 780.55], [1664.76, 773.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1427.93, 435.67], [1423.68, 431.77], [1424.19, 431.21], [1415.54, 423.28], [1409.54, 429.79], [1422.45, 441.62], [1427.93, 435.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1556.78, 1090.01], [1564.42, 1081.84], [1558.15, 1076.02], [1550.51, 1084.19], [1556.78, 1090.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1744.7, 945.65], [1739.5, 940.73], [1735.58, 944.86], [1734.63, 943.95], [1731.06, 947.71], [1732.05, 948.65], [1729.79, 951.02], [1734.95, 955.9], [1744.7, 945.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1907.49, 1093.13], [1902.34, 1087.99], [1895.43, 1094.9], [1900.58, 1100.05], [1907.49, 1093.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1902.24, 747.36], [1895.51, 741.27], [1892.68, 744.37], [1891.71, 744.29], [1889.1, 747.1], [1889.2, 748.29], [1888.11, 749.52], [1886.64, 749.63], [1885.45, 751.04], [1885.46, 752.7], [1886.45, 753.7], [1887.99, 754.1], [1892.57, 758.4], [1895.89, 754.6], [1896.44, 755.12], [1900.36, 750.55], [1899.89, 750.05], [1902.24, 747.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2025.61, 852.03], [2019.46, 846.51], [2015.05, 851.42], [2021.2, 856.94], [2025.61, 852.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1217.09, 626.23], [1218.18, 624.97], [1218.46, 625.19], [1224.36, 618.33], [1224.75, 618.67], [1229.79, 612.81], [1228.52, 611.73], [1228.91, 611.28], [1227.26, 609.88], [1228.33, 608.65], [1225.58, 606.31], [1224.53, 607.54], [1224.25, 607.31], [1214.62, 618.5], [1215.1, 618.9], [1212.31, 622.14], [1217.09, 626.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1356.85, 491.85], [1350.52, 498.61], [1361.51, 508.83], [1362.29, 508.01], [1363.23, 507.0], [1367.06, 502.91], [1364.03, 500.08], [1364.81, 499.25], [1356.85, 491.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1973.86, 798.34], [1974.98, 797.07], [1963.91, 786.68], [1958.49, 792.9], [1961.85, 796.06], [1961.24, 796.73], [1968.99, 803.38], [1970.63, 801.48], [1972.24, 802.86], [1975.08, 799.54], [1973.86, 798.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1964.78, 1211.82], [1960.2, 1206.58], [1955.29, 1210.84], [1959.87, 1216.08], [1964.78, 1211.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1664.5, 1027.56], [1665.21, 1026.82], [1667.18, 1028.7], [1677.35, 1018.0], [1672.28, 1013.2], [1668.1, 1017.59], [1667.41, 1016.93], [1663.89, 1020.63], [1664.56, 1021.27], [1661.37, 1024.61], [1664.5, 1027.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1861.85, 1232.31], [1858.16, 1227.76], [1846.87, 1237.19], [1850.44, 1241.58], [1861.85, 1232.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1616.27, 607.39], [1610.96, 602.35], [1607.31, 606.17], [1609.77, 608.5], [1608.05, 610.3], [1610.91, 613.01], [1616.27, 607.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1525.03, 608.95], [1517.96, 602.37], [1516.36, 604.08], [1516.21, 603.93], [1507.71, 613.01], [1507.96, 613.23], [1507.03, 614.23], [1509.31, 616.34], [1510.39, 615.18], [1515.1, 619.56], [1525.03, 608.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1537.05, 1023.35], [1531.56, 1018.24], [1523.53, 1026.81], [1529.01, 1031.91], [1537.05, 1023.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1275.37, 478.59], [1286.76, 466.38], [1285.22, 464.96], [1286.72, 463.34], [1283.14, 460.02], [1281.95, 461.29], [1281.76, 461.12], [1281.39, 461.51], [1280.88, 461.04], [1268.52, 474.29], [1272.56, 478.03], [1273.58, 476.94], [1274.1, 477.42], [1274.87, 478.12], [1275.37, 478.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1762.18, 847.67], [1767.84, 841.67], [1765.1, 839.11], [1768.67, 835.33], [1766.59, 833.37], [1767.96, 831.93], [1765.43, 829.57], [1764.03, 831.07], [1762.26, 829.4], [1759.99, 831.81], [1757.91, 829.87], [1752.7, 835.39], [1755.16, 837.7], [1752.36, 840.65], [1756.65, 844.67], [1757.74, 843.51], [1762.18, 847.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1549.8, 953.35], [1546.05, 949.77], [1545.19, 950.67], [1541.1, 946.79], [1536.45, 951.67], [1540.49, 955.49], [1539.97, 956.04], [1543.97, 959.82], [1544.49, 959.28], [1548.53, 963.11], [1552.46, 958.99], [1548.24, 954.99], [1549.8, 953.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1765.58, 598.51], [1771.31, 592.3], [1758.58, 580.44], [1754.59, 584.93], [1753.45, 586.2], [1752.87, 586.86], [1762.54, 595.76], [1761.98, 596.35], [1763.01, 597.3], [1763.78, 598.01], [1764.38, 597.39], [1765.58, 598.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1489.85, 939.32], [1486.02, 935.71], [1481.5, 940.46], [1483.9, 942.73], [1485.32, 944.07], [1489.85, 939.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1714.9, 854.22], [1711.35, 851.1], [1709.68, 852.98], [1707.86, 851.38], [1695.98, 864.77], [1698.48, 866.97], [1698.34, 867.13], [1702.66, 870.93], [1714.76, 857.28], [1713.32, 856.01], [1714.9, 854.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1849.15, 842.4], [1843.76, 837.59], [1830.08, 852.8], [1836.58, 858.61], [1845.06, 849.18], [1843.95, 848.19], [1849.15, 842.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1984.14, 921.72], [1979.04, 917.13], [1974.45, 922.23], [1979.55, 926.83], [1984.14, 921.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1722.3, 602.69], [1714.07, 594.44], [1707.65, 600.83], [1716.56, 609.78], [1719.63, 606.72], [1718.95, 606.03], [1722.3, 602.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1962.68, 820.45], [1959.41, 817.59], [1955.52, 822.02], [1958.8, 824.89], [1962.68, 820.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1619.53, 1036.5], [1614.54, 1032.02], [1604.98, 1042.6], [1609.96, 1047.08], [1619.53, 1036.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1342.27, 276.4], [1348.39, 269.71], [1344.63, 266.16], [1338.39, 273.02], [1342.27, 276.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1990.77, 837.6], [1988.0, 835.16], [1988.97, 834.05], [1985.53, 831.01], [1981.11, 836.02], [1979.16, 834.28], [1976.87, 836.86], [1978.5, 838.3], [1974.94, 842.32], [1977.99, 845.02], [1976.43, 846.8], [1979.91, 849.88], [1990.77, 837.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1722.43, 686.57], [1716.63, 692.85], [1723.3, 698.97], [1721.04, 701.42], [1725.68, 705.68], [1730.37, 700.61], [1731.85, 701.97], [1732.27, 701.51], [1733.13, 700.59], [1735.31, 698.21], [1730.79, 694.06], [1731.89, 692.87], [1727.54, 688.88], [1726.35, 690.17], [1722.43, 686.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1608.84, 689.07], [1602.68, 683.24], [1595.25, 691.1], [1601.41, 696.93], [1608.84, 689.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1604.25, 598.54], [1593.64, 588.38], [1589.02, 593.17], [1591.24, 595.29], [1588.66, 597.97], [1598.18, 607.08], [1603.36, 601.71], [1602.23, 600.63], [1604.25, 598.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2086.08, 1056.71], [2079.98, 1051.29], [2070.27, 1062.25], [2076.37, 1067.66], [2086.08, 1056.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1611.67, 833.15], [1603.14, 825.44], [1598.69, 830.34], [1599.74, 831.3], [1598.25, 832.95], [1605.72, 839.69], [1611.67, 833.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1769.98, 624.7], [1765.88, 619.98], [1761.26, 623.99], [1765.35, 628.71], [1769.98, 624.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1895.56, 1153.22], [1910.85, 1166.94], [1917.35, 1159.6], [1903.54, 1146.62], [1902.94, 1147.29], [1901.88, 1146.29], [1895.56, 1153.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1944.12, 911.17], [1939.96, 907.27], [1935.19, 912.39], [1939.35, 916.27], [1944.12, 911.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2035.16, 803.76], [2030.6, 799.9], [2029.79, 800.86], [2027.4, 798.84], [2019.75, 807.87], [2026.69, 813.74], [2035.16, 803.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2008.76, 857.46], [2004.54, 853.85], [1996.84, 862.86], [2003.44, 868.5], [2009.83, 861.02], [2007.45, 858.98], [2008.76, 857.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1688.29, 855.62], [1690.21, 853.5], [1690.66, 853.91], [1699.61, 844.02], [1697.32, 841.96], [1700.1, 838.89], [1696.91, 836.02], [1693.77, 839.49], [1692.35, 838.22], [1683.96, 847.48], [1684.61, 848.06], [1682.49, 850.4], [1688.29, 855.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1634.34, 1049.99], [1628.96, 1045.04], [1620.24, 1054.45], [1625.61, 1059.4], [1634.34, 1049.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1639.04, 1075.4], [1635.47, 1072.19], [1629.64, 1078.64], [1633.21, 1081.85], [1639.04, 1075.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1662.96, 834.85], [1666.04, 831.44], [1664.8, 830.33], [1666.65, 828.26], [1657.33, 819.92], [1651.43, 826.48], [1660.66, 834.73], [1661.63, 833.66], [1662.96, 834.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2063.27, 1018.53], [2058.49, 1014.85], [2057.2, 1016.52], [2052.4, 1012.83], [2049.87, 1016.12], [2059.46, 1023.49], [2063.27, 1018.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1918.6, 694.52], [1914.68, 691.13], [1914.22, 691.66], [1913.31, 690.87], [1910.19, 694.47], [1908.59, 693.08], [1904.73, 697.53], [1906.53, 699.1], [1903.34, 702.79], [1910.03, 708.58], [1919.99, 697.06], [1917.94, 695.29], [1918.6, 694.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1728.25, 794.47], [1723.33, 790.1], [1717.41, 796.7], [1717.58, 796.86], [1712.88, 802.11], [1717.18, 805.94], [1721.89, 800.69], [1722.33, 801.08], [1728.25, 794.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1833.55, 801.76], [1837.55, 797.34], [1830.54, 791.05], [1826.55, 795.45], [1833.55, 801.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1626.23, 1042.69], [1620.76, 1037.83], [1611.47, 1048.19], [1616.93, 1053.05], [1626.23, 1042.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1786.1, 928.67], [1779.54, 922.78], [1772.71, 930.33], [1779.27, 936.21], [1786.1, 928.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1284.49, 426.59], [1280.18, 422.82], [1273.77, 430.08], [1278.08, 433.85], [1284.49, 426.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1773.3, 649.77], [1766.95, 643.41], [1760.4, 649.95], [1766.74, 656.32], [1773.3, 649.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1173.49, 474.1], [1178.08, 478.51], [1182.19, 474.27], [1177.6, 469.86], [1173.49, 474.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1626.54, 968.92], [1618.72, 977.55], [1622.29, 980.76], [1630.1, 972.14], [1626.54, 968.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1733.51, 994.4], [1736.33, 991.33], [1737.73, 992.61], [1740.3, 989.83], [1730.68, 981.04], [1725.67, 986.48], [1728.88, 989.41], [1728.5, 989.83], [1733.51, 994.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2091.0, 900.2], [2084.24, 894.21], [2077.33, 902.02], [2084.09, 908.0], [2085.97, 909.67], [2091.86, 903.02], [2089.98, 901.35], [2091.0, 900.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1617.71, 697.61], [1610.33, 690.54], [1602.75, 698.43], [1610.13, 705.52], [1617.71, 697.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1953.1, 1134.88], [1948.16, 1130.13], [1941.52, 1137.04], [1946.46, 1141.79], [1953.1, 1134.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2038.01, 940.89], [2032.12, 935.91], [2025.6, 943.65], [2031.49, 948.62], [2038.01, 940.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1659.8, 537.5], [1651.47, 529.03], [1645.15, 535.25], [1647.11, 537.23], [1643.88, 540.41], [1646.82, 543.39], [1646.34, 543.86], [1649.78, 547.36], [1659.8, 537.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1599.47, 1085.77], [1594.36, 1081.13], [1588.08, 1087.99], [1589.98, 1089.71], [1588.87, 1090.93], [1592.07, 1093.84], [1599.47, 1085.77]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[2666.8, 1687.34], [2662.36, 1686.3], [2660.93, 1692.45], [2665.39, 1693.48], [2666.8, 1687.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2483.93, 1320.94], [2481.0, 1317.21], [2476.91, 1320.52], [2479.75, 1324.22], [2483.93, 1320.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2423.88, 1979.54], [2421.78, 1975.87], [2416.04, 1979.14], [2418.13, 1982.82], [2423.88, 1979.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2284.3, 1109.6], [2277.82, 1103.54], [2271.49, 1110.32], [2277.97, 1116.37], [2284.3, 1109.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2635.83, 1625.53], [2636.47, 1622.61], [2631.56, 1621.54], [2630.95, 1624.37], [2628.73, 1623.88], [2625.61, 1638.25], [2635.21, 1640.34], [2638.31, 1626.07], [2635.83, 1625.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2299.29, 1369.44], [2296.17, 1367.25], [2287.09, 1380.17], [2294.19, 1385.16], [2302.06, 1373.95], [2298.09, 1371.16], [2299.29, 1369.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2618.98, 1713.34], [2609.92, 1711.37], [2607.93, 1720.56], [2616.99, 1722.53], [2618.98, 1713.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2358.11, 1289.49], [2351.11, 1281.19], [2347.17, 1284.52], [2354.17, 1292.82], [2358.11, 1289.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2126.65, 1229.14], [2124.11, 1226.77], [2119.96, 1231.21], [2122.49, 1233.58], [2126.65, 1229.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2542.94, 1349.49], [2537.52, 1342.54], [2525.53, 1351.87], [2530.96, 1358.82], [2542.94, 1349.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2666.56, 1673.0], [2657.93, 1671.17], [2655.67, 1681.79], [2664.3, 1683.63], [2666.56, 1673.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2261.09, 1062.14], [2255.94, 1057.56], [2252.5, 1061.43], [2257.66, 1066.01], [2261.09, 1062.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2840.1, 1516.5], [2827.55, 1514.05], [2825.74, 1523.31], [2844.47, 1526.97], [2846.07, 1518.75], [2839.89, 1517.55], [2840.1, 1516.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2683.09, 1549.79], [2683.36, 1537.21], [2677.88, 1537.09], [2677.84, 1539.1], [2674.66, 1539.04], [2674.44, 1549.63], [2683.09, 1549.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2283.14, 1538.72], [2279.81, 1536.49], [2276.37, 1541.63], [2279.7, 1543.86], [2283.14, 1538.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2587.12, 1666.52], [2590.25, 1651.78], [2581.57, 1649.82], [2578.71, 1664.61], [2587.12, 1666.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2423.43, 1375.48], [2424.38, 1374.71], [2424.94, 1375.39], [2427.47, 1373.32], [2424.22, 1369.33], [2421.7, 1371.39], [2423.47, 1373.57], [2422.51, 1374.35], [2423.43, 1375.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2559.28, 1553.75], [2553.87, 1553.69], [2553.79, 1560.41], [2559.2, 1560.47], [2559.28, 1553.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2607.78, 1369.11], [2598.37, 1369.0], [2598.2, 1383.44], [2602.65, 1383.48], [2602.61, 1387.35], [2607.57, 1387.41], [2607.78, 1369.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2502.2, 1461.37], [2501.66, 1453.44], [2492.41, 1454.09], [2492.96, 1462.01], [2502.2, 1461.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2230.87, 1440.09], [2225.38, 1436.37], [2223.77, 1438.75], [2222.19, 1437.68], [2217.71, 1444.27], [2224.78, 1449.08], [2230.87, 1440.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2322.63, 1227.87], [2320.36, 1224.65], [2315.48, 1228.1], [2317.75, 1231.32], [2322.63, 1227.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2374.2, 1201.22], [2369.56, 1194.94], [2359.48, 1202.41], [2364.13, 1208.69], [2374.2, 1201.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2583.75, 1680.23], [2584.97, 1674.6], [2578.45, 1673.06], [2577.19, 1678.68], [2583.75, 1680.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2314.57, 1953.23], [2310.6, 1946.94], [2302.49, 1952.26], [2306.43, 1958.53], [2314.57, 1953.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2502.47, 1346.17], [2500.96, 1344.07], [2499.1, 1345.4], [2498.75, 1344.92], [2493.61, 1348.6], [2496.02, 1351.97], [2501.23, 1348.23], [2500.68, 1347.46], [2502.47, 1346.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2267.25, 1452.51], [2263.95, 1450.38], [2259.74, 1456.92], [2263.04, 1459.04], [2267.25, 1452.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2369.17, 2071.76], [2360.14, 2063.59], [2355.58, 2068.63], [2364.61, 2076.8], [2369.17, 2071.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2392.41, 1337.59], [2390.21, 1335.71], [2385.88, 1340.78], [2388.07, 1342.66], [2392.41, 1337.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2415.59, 1548.08], [2410.13, 1544.08], [2405.38, 1550.56], [2410.86, 1554.56], [2415.59, 1548.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2734.83, 1426.74], [2735.81, 1409.57], [2725.31, 1408.97], [2724.93, 1415.58], [2723.06, 1415.48], [2722.67, 1422.3], [2726.06, 1422.5], [2725.85, 1426.23], [2734.83, 1426.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2370.49, 1302.76], [2368.02, 1298.33], [2362.71, 1301.3], [2365.18, 1305.72], [2370.49, 1302.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2509.29, 2101.98], [2516.05, 2097.99], [2516.25, 2098.32], [2518.96, 2096.72], [2516.2, 2092.03], [2513.91, 2093.38], [2512.18, 2090.44], [2502.83, 2095.95], [2504.75, 2099.2], [2506.91, 2097.94], [2509.29, 2101.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2751.06, 1652.61], [2752.5, 1646.79], [2743.39, 1644.53], [2741.88, 1650.65], [2746.65, 1651.84], [2746.72, 1651.54], [2751.06, 1652.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2122.08, 1338.64], [2127.53, 1330.59], [2119.67, 1325.28], [2118.37, 1327.21], [2117.43, 1326.57], [2114.91, 1330.29], [2116.0, 1331.03], [2114.74, 1332.9], [2116.11, 1333.83], [2115.5, 1334.74], [2118.68, 1336.9], [2118.94, 1336.51], [2122.08, 1338.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1993.28, 1532.08], [1997.65, 1526.89], [1995.84, 1525.36], [1997.46, 1523.44], [1989.15, 1516.44], [1987.47, 1518.42], [1985.92, 1517.11], [1981.94, 1521.83], [1984.33, 1523.84], [1983.68, 1524.61], [1990.38, 1530.26], [1990.68, 1529.9], [1993.28, 1532.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2306.31, 1351.9], [2301.67, 1347.8], [2298.25, 1351.65], [2302.9, 1355.75], [2306.31, 1351.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2229.52, 1399.39], [2223.79, 1394.83], [2219.74, 1399.91], [2225.46, 1404.48], [2229.52, 1399.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2189.98, 1471.76], [2194.29, 1465.24], [2195.28, 1465.9], [2197.43, 1462.65], [2190.77, 1458.23], [2189.11, 1460.75], [2187.79, 1459.87], [2182.98, 1467.13], [2189.98, 1471.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2283.1, 1076.71], [2285.37, 1074.17], [2286.87, 1075.51], [2290.98, 1070.9], [2281.96, 1062.86], [2275.58, 1069.99], [2283.1, 1076.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2206.43, 1423.59], [2201.5, 1420.4], [2200.65, 1421.71], [2199.25, 1420.81], [2194.54, 1428.07], [2196.39, 1429.27], [2194.37, 1432.39], [2200.99, 1436.67], [2207.76, 1426.22], [2205.62, 1424.84], [2206.43, 1423.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2344.9, 1873.6], [2350.26, 1870.11], [2347.21, 1865.22], [2341.65, 1868.65], [2344.9, 1873.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1831.33, 1523.69], [1835.57, 1519.32], [1833.18, 1516.99], [1834.24, 1515.9], [1830.63, 1512.4], [1829.47, 1513.61], [1826.83, 1511.06], [1818.9, 1519.25], [1821.71, 1521.98], [1823.09, 1520.57], [1825.28, 1522.69], [1827.7, 1520.19], [1831.33, 1523.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2624.67, 1750.19], [2617.11, 1748.36], [2614.78, 1757.99], [2617.08, 1758.55], [2616.76, 1759.89], [2622.01, 1761.16], [2624.67, 1750.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2184.5, 1199.37], [2179.93, 1195.02], [2177.69, 1197.37], [2182.27, 1201.72], [2184.5, 1199.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2541.11, 1579.22], [2549.48, 1578.9], [2549.34, 1575.03], [2551.12, 1574.97], [2550.91, 1568.97], [2540.77, 1569.29], [2541.11, 1579.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2639.26, 1686.82], [2634.51, 1685.68], [2632.9, 1692.46], [2637.65, 1693.6], [2639.26, 1686.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1907.42, 1406.94], [1925.63, 1388.53], [1917.84, 1380.83], [1917.03, 1381.64], [1904.35, 1369.08], [1905.5, 1367.91], [1898.16, 1360.65], [1879.89, 1379.11], [1887.59, 1386.73], [1889.1, 1385.2], [1901.05, 1397.04], [1899.25, 1398.85], [1907.42, 1406.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1836.11, 1532.27], [1845.62, 1520.48], [1842.31, 1517.79], [1838.71, 1522.25], [1836.73, 1520.66], [1830.82, 1528.0], [1836.11, 1532.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2402.15, 1924.46], [2393.74, 1909.22], [2387.37, 1912.75], [2395.78, 1927.98], [2402.15, 1924.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2267.04, 1364.29], [2272.18, 1356.08], [2265.51, 1351.91], [2260.72, 1359.57], [2262.47, 1360.67], [2261.55, 1362.14], [2264.06, 1363.71], [2264.64, 1362.79], [2267.04, 1364.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2428.81, 1883.01], [2416.95, 1880.81], [2415.26, 1889.9], [2427.12, 1892.12], [2428.81, 1883.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2391.71, 1565.13], [2392.77, 1563.44], [2393.66, 1563.99], [2397.34, 1558.06], [2396.19, 1557.35], [2397.5, 1555.24], [2392.87, 1552.35], [2391.57, 1554.44], [2390.74, 1553.93], [2385.38, 1562.55], [2387.55, 1563.91], [2388.16, 1562.92], [2391.71, 1565.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2292.24, 1134.63], [2293.92, 1132.79], [2295.46, 1134.18], [2302.33, 1126.57], [2298.43, 1123.03], [2297.9, 1123.6], [2294.88, 1120.88], [2288.89, 1127.5], [2290.97, 1129.39], [2288.93, 1131.64], [2292.24, 1134.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2482.35, 1503.28], [2482.65, 1501.41], [2483.81, 1501.6], [2485.93, 1488.05], [2477.03, 1486.66], [2475.07, 1499.19], [2475.71, 1499.28], [2475.25, 1502.18], [2482.35, 1503.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2267.79, 1094.71], [2259.85, 1087.67], [2253.69, 1094.64], [2261.62, 1101.67], [2267.79, 1094.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2451.36, 1269.13], [2456.39, 1265.49], [2456.95, 1266.26], [2460.12, 1263.96], [2459.33, 1262.87], [2466.94, 1257.37], [2463.66, 1252.85], [2459.74, 1255.68], [2457.4, 1252.44], [2449.77, 1257.96], [2451.06, 1259.75], [2446.8, 1262.83], [2451.36, 1269.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2634.0, 1465.66], [2634.18, 1461.42], [2635.28, 1461.46], [2635.58, 1454.23], [2633.34, 1454.13], [2633.4, 1452.68], [2628.2, 1452.46], [2628.11, 1454.55], [2626.56, 1454.48], [2626.1, 1465.32], [2634.0, 1465.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2418.84, 1507.99], [2412.33, 1503.59], [2406.55, 1512.15], [2413.06, 1516.54], [2418.84, 1507.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2367.42, 1260.32], [2362.42, 1253.75], [2352.42, 1261.39], [2357.43, 1267.94], [2367.42, 1260.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2673.92, 1485.91], [2668.52, 1485.71], [2668.26, 1492.52], [2673.66, 1492.73], [2673.92, 1485.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2636.95, 1390.71], [2637.2, 1378.73], [2629.94, 1378.57], [2629.88, 1381.36], [2628.18, 1381.33], [2627.99, 1390.51], [2636.95, 1390.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2755.48, 1516.09], [2755.55, 1513.43], [2757.18, 1513.46], [2757.42, 1503.45], [2754.63, 1503.39], [2754.67, 1501.78], [2748.34, 1501.63], [2748.0, 1515.91], [2755.48, 1516.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2382.13, 1558.21], [2387.83, 1550.23], [2382.71, 1546.57], [2376.29, 1555.55], [2378.96, 1557.47], [2379.67, 1556.46], [2382.13, 1558.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2385.66, 1613.8], [2381.58, 1611.08], [2377.67, 1616.94], [2381.75, 1619.66], [2385.66, 1613.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2257.92, 1321.38], [2246.42, 1313.48], [2241.86, 1320.12], [2253.36, 1328.01], [2257.92, 1321.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2347.11, 2009.41], [2344.02, 2003.83], [2335.6, 2008.49], [2338.7, 2014.07], [2347.11, 2009.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1851.25, 1545.96], [1853.62, 1543.2], [1854.14, 1543.64], [1856.67, 1540.71], [1857.67, 1541.57], [1862.04, 1536.49], [1858.66, 1533.57], [1857.03, 1535.47], [1854.62, 1533.39], [1852.61, 1535.72], [1851.52, 1534.77], [1849.07, 1537.61], [1850.12, 1538.52], [1846.92, 1542.24], [1851.25, 1545.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2354.16, 1389.56], [2348.11, 1385.01], [2344.56, 1389.72], [2350.62, 1394.27], [2354.16, 1389.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2557.84, 1677.42], [2548.77, 1674.91], [2546.56, 1682.92], [2558.2, 1686.13], [2559.56, 1681.24], [2556.97, 1680.52], [2557.84, 1677.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2194.61, 1404.68], [2195.91, 1402.76], [2198.33, 1404.4], [2201.88, 1399.17], [2187.28, 1389.26], [2182.43, 1396.39], [2194.61, 1404.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2333.5, 1519.98], [2321.11, 1511.17], [2319.06, 1514.07], [2318.16, 1513.43], [2315.68, 1516.92], [2316.96, 1517.82], [2316.03, 1519.13], [2328.04, 1527.67], [2333.5, 1519.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2516.22, 1386.87], [2511.18, 1380.07], [2501.1, 1387.55], [2506.14, 1394.34], [2516.22, 1386.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2407.89, 1517.12], [2401.92, 1513.38], [2398.34, 1519.07], [2404.31, 1522.82], [2407.89, 1517.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1953.71, 1456.66], [1943.69, 1447.09], [1939.4, 1451.57], [1942.27, 1454.32], [1941.34, 1455.29], [1948.49, 1462.12], [1953.71, 1456.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2267.09, 1226.0], [2262.69, 1221.37], [2257.39, 1226.39], [2261.79, 1231.04], [2267.09, 1226.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2654.21, 1513.49], [2654.33, 1502.5], [2655.94, 1502.52], [2655.99, 1498.05], [2648.75, 1497.96], [2648.72, 1500.81], [2646.76, 1500.79], [2646.65, 1510.41], [2647.3, 1510.42], [2647.26, 1513.41], [2654.21, 1513.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1948.41, 1465.12], [1943.85, 1460.13], [1944.12, 1459.89], [1938.16, 1453.35], [1932.36, 1458.65], [1938.59, 1465.49], [1940.38, 1463.85], [1944.65, 1468.54], [1948.41, 1465.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2363.74, 1306.68], [2357.61, 1300.58], [2352.38, 1305.84], [2358.5, 1311.94], [2363.74, 1306.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2760.34, 1699.22], [2751.07, 1697.27], [2748.08, 1711.45], [2757.34, 1713.41], [2760.34, 1699.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2750.87, 1552.84], [2750.97, 1550.75], [2753.61, 1550.89], [2754.26, 1538.65], [2745.8, 1538.2], [2745.03, 1552.53], [2750.87, 1552.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2060.95, 1315.16], [2056.07, 1309.62], [2051.51, 1313.64], [2056.4, 1319.18], [2060.95, 1315.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2635.93, 1787.59], [2629.44, 1786.07], [2627.98, 1792.34], [2634.47, 1793.86], [2635.93, 1787.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1972.65, 1541.83], [1965.64, 1535.04], [1959.61, 1541.28], [1965.75, 1547.23], [1962.82, 1550.26], [1966.69, 1553.99], [1969.79, 1550.79], [1966.78, 1547.89], [1972.65, 1541.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2261.84, 1421.85], [2255.87, 1417.63], [2251.96, 1423.15], [2257.92, 1427.38], [2261.84, 1421.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2425.17, 1580.31], [2418.88, 1575.74], [2414.18, 1582.22], [2420.46, 1586.79], [2425.17, 1580.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2698.11, 1478.99], [2691.78, 1478.39], [2691.25, 1483.88], [2697.58, 1484.48], [2698.11, 1478.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2602.53, 1407.57], [2596.77, 1407.28], [2595.93, 1423.96], [2604.21, 1424.37], [2604.78, 1412.88], [2602.27, 1412.76], [2602.53, 1407.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2403.85, 1181.98], [2398.36, 1174.96], [2390.74, 1180.9], [2396.23, 1187.93], [2403.85, 1181.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2348.49, 1267.89], [2345.93, 1264.64], [2340.49, 1268.93], [2343.06, 1272.17], [2348.49, 1267.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1985.96, 1538.71], [1989.33, 1535.23], [1987.87, 1533.82], [1989.17, 1532.49], [1982.06, 1525.61], [1981.15, 1526.56], [1979.33, 1524.8], [1975.13, 1529.15], [1983.62, 1537.36], [1984.07, 1536.89], [1985.96, 1538.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1955.16, 1452.99], [1956.62, 1451.56], [1957.78, 1452.74], [1959.78, 1450.77], [1958.8, 1449.77], [1960.16, 1448.44], [1951.88, 1440.01], [1947.06, 1444.75], [1955.16, 1452.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2506.14, 1472.06], [2505.67, 1466.9], [2502.76, 1467.16], [2502.65, 1465.95], [2493.98, 1466.74], [2494.76, 1475.35], [2503.44, 1474.56], [2503.24, 1472.32], [2506.14, 1472.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2320.83, 1128.49], [2317.71, 1125.47], [2313.27, 1130.05], [2316.39, 1133.08], [2320.83, 1128.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2817.08, 1482.11], [2807.67, 1481.35], [2807.15, 1487.76], [2816.56, 1488.53], [2817.08, 1482.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2054.26, 1278.53], [2045.95, 1268.31], [2038.84, 1274.1], [2047.93, 1285.28], [2051.36, 1282.5], [2050.57, 1281.53], [2054.26, 1278.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2483.13, 2121.58], [2488.48, 2118.25], [2483.39, 2109.97], [2477.99, 2113.25], [2483.13, 2121.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2082.49, 1382.84], [2075.57, 1378.29], [2068.71, 1388.71], [2075.61, 1393.27], [2082.49, 1382.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2810.64, 1518.39], [2811.36, 1503.37], [2810.41, 1503.31], [2810.52, 1500.89], [2802.15, 1500.48], [2801.85, 1506.71], [2800.62, 1506.65], [2800.33, 1512.67], [2801.19, 1512.71], [2801.02, 1516.38], [2804.8, 1516.56], [2804.73, 1518.1], [2810.64, 1518.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2156.89, 1350.51], [2153.1, 1347.93], [2149.28, 1353.53], [2153.06, 1356.11], [2156.89, 1350.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2138.54, 1241.82], [2133.56, 1236.76], [2128.55, 1241.68], [2133.54, 1246.76], [2138.54, 1241.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2783.52, 1579.65], [2784.13, 1570.07], [2773.45, 1569.39], [2773.2, 1573.25], [2767.86, 1572.92], [2767.49, 1578.63], [2783.52, 1579.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2116.35, 1235.44], [2111.56, 1231.75], [2107.16, 1237.47], [2111.95, 1241.15], [2116.35, 1235.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2537.63, 1457.39], [2530.74, 1457.37], [2530.73, 1464.68], [2537.62, 1464.69], [2537.63, 1457.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2368.77, 1409.39], [2365.56, 1407.13], [2361.49, 1412.93], [2364.7, 1415.18], [2368.77, 1409.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2338.1, 1160.12], [2332.47, 1154.58], [2324.3, 1162.89], [2330.71, 1169.19], [2335.83, 1163.96], [2335.06, 1163.22], [2338.1, 1160.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2368.84, 1176.52], [2365.61, 1179.08], [2365.65, 1179.13], [2363.91, 1180.56], [2367.49, 1184.9], [2372.42, 1180.85], [2368.84, 1176.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2251.56, 1453.56], [2244.55, 1448.35], [2235.68, 1460.29], [2242.7, 1465.5], [2251.56, 1453.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2356.31, 1573.49], [2349.86, 1568.99], [2344.86, 1576.18], [2351.32, 1580.66], [2356.31, 1573.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2535.07, 1421.97], [2535.09, 1421.4], [2539.69, 1421.59], [2540.21, 1407.79], [2528.04, 1407.33], [2527.84, 1412.66], [2530.14, 1412.74], [2530.07, 1414.72], [2528.32, 1414.65], [2528.16, 1419.09], [2529.76, 1419.14], [2529.66, 1421.77], [2535.07, 1421.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2109.58, 1422.34], [2106.47, 1420.06], [2103.01, 1424.77], [2106.13, 1427.06], [2109.58, 1422.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2278.71, 1473.0], [2272.32, 1468.65], [2264.66, 1479.9], [2271.06, 1484.24], [2278.71, 1473.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2445.54, 1273.62], [2442.26, 1268.97], [2438.4, 1271.69], [2441.67, 1276.34], [2445.54, 1273.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2339.71, 1308.96], [2333.69, 1302.43], [2325.11, 1310.35], [2331.12, 1316.87], [2339.71, 1308.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2248.98, 1065.53], [2243.09, 1072.08], [2252.02, 1080.11], [2257.92, 1073.57], [2248.98, 1065.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2606.52, 1553.87], [2616.17, 1554.22], [2616.86, 1534.83], [2607.21, 1534.49], [2606.52, 1553.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2232.37, 1511.56], [2226.72, 1507.66], [2224.49, 1510.9], [2230.07, 1514.75], [2225.29, 1521.68], [2237.25, 1529.92], [2241.25, 1524.1], [2239.94, 1523.2], [2241.54, 1520.89], [2230.96, 1513.61], [2232.37, 1511.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2344.92, 2000.91], [2341.3, 1994.55], [2336.1, 1997.51], [2335.66, 1996.74], [2327.88, 2001.17], [2331.93, 2008.3], [2344.92, 2000.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2377.89, 1207.61], [2375.92, 1204.66], [2367.38, 1210.38], [2371.79, 1216.96], [2379.0, 1212.12], [2376.57, 1208.49], [2377.89, 1207.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2180.22, 1452.01], [2172.6, 1447.42], [2165.69, 1458.92], [2173.32, 1463.49], [2180.22, 1452.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2541.9, 1371.11], [2535.45, 1369.12], [2532.45, 1377.09], [2538.71, 1378.93], [2541.9, 1371.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2775.44, 1549.25], [2769.94, 1548.95], [2769.65, 1554.02], [2775.16, 1554.32], [2775.44, 1549.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2650.82, 1756.8], [2643.29, 1754.54], [2642.71, 1756.45], [2641.84, 1756.19], [2639.2, 1764.92], [2647.61, 1767.46], [2650.82, 1756.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2386.54, 1319.03], [2383.41, 1315.15], [2378.31, 1319.25], [2381.43, 1323.13], [2386.54, 1319.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2754.27, 1718.83], [2747.36, 1717.43], [2745.98, 1724.24], [2752.9, 1725.63], [2754.27, 1718.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2324.03, 1291.45], [2321.15, 1288.42], [2320.03, 1289.48], [2317.16, 1286.44], [2310.27, 1293.0], [2311.32, 1294.1], [2309.39, 1295.93], [2314.11, 1300.89], [2324.03, 1291.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2417.71, 1324.38], [2414.04, 1319.31], [2411.4, 1321.22], [2409.89, 1319.13], [2403.42, 1323.82], [2403.89, 1324.46], [2400.18, 1327.15], [2404.9, 1333.66], [2417.71, 1324.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2027.59, 1536.11], [2031.75, 1531.97], [2026.35, 1526.52], [2022.1, 1530.81], [2027.59, 1536.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2634.34, 1681.61], [2634.85, 1679.23], [2637.99, 1679.91], [2640.86, 1666.64], [2631.2, 1664.54], [2628.24, 1678.17], [2630.04, 1678.55], [2629.6, 1680.59], [2634.34, 1681.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2094.2, 1425.19], [2102.56, 1411.5], [2096.03, 1407.41], [2087.14, 1420.71], [2090.89, 1423.07], [2094.2, 1425.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2274.63, 1216.83], [2270.16, 1212.5], [2267.8, 1214.94], [2272.27, 1219.26], [2274.63, 1216.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2435.88, 1353.3], [2431.22, 1346.55], [2420.92, 1353.66], [2425.58, 1360.41], [2435.88, 1353.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2363.18, 2029.9], [2359.32, 2023.38], [2347.42, 2030.45], [2351.29, 2037.02], [2363.18, 2029.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2657.8, 1783.08], [2644.18, 1780.06], [2643.83, 1781.67], [2641.84, 1781.23], [2641.06, 1784.74], [2643.34, 1785.24], [2642.79, 1787.73], [2656.13, 1790.68], [2657.8, 1783.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2592.18, 1759.84], [2585.33, 1758.4], [2583.83, 1765.56], [2590.68, 1766.99], [2592.18, 1759.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2506.21, 1823.89], [2508.28, 1816.35], [2511.71, 1817.29], [2514.18, 1808.29], [2504.78, 1805.73], [2500.26, 1822.27], [2506.21, 1823.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2276.09, 1460.38], [2273.39, 1458.64], [2270.19, 1463.58], [2272.9, 1465.33], [2276.09, 1460.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2323.37, 1366.66], [2318.9, 1361.92], [2314.84, 1365.74], [2319.32, 1370.49], [2323.37, 1366.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2612.08, 1618.7], [2603.27, 1616.99], [2600.48, 1631.36], [2609.29, 1633.06], [2612.08, 1618.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2405.82, 1411.96], [2396.54, 1404.85], [2394.5, 1407.52], [2393.0, 1406.39], [2389.47, 1411.0], [2400.24, 1419.25], [2405.82, 1411.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2554.55, 2090.48], [2551.95, 2086.14], [2549.88, 2087.37], [2548.24, 2084.64], [2541.7, 2088.58], [2545.94, 2095.64], [2554.55, 2090.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2331.22, 1297.81], [2328.94, 1295.29], [2327.38, 1296.69], [2325.32, 1294.43], [2319.13, 1300.04], [2319.61, 1300.57], [2317.28, 1302.68], [2323.24, 1309.27], [2331.99, 1301.36], [2329.88, 1299.01], [2331.22, 1297.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2310.28, 1428.04], [2304.44, 1423.72], [2296.68, 1434.23], [2302.51, 1438.55], [2310.28, 1428.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2053.79, 1303.6], [2050.4, 1298.94], [2045.5, 1302.5], [2048.9, 1307.16], [2053.79, 1303.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2676.56, 1386.9], [2668.13, 1386.43], [2667.51, 1397.44], [2672.74, 1397.73], [2672.58, 1400.56], [2675.79, 1400.73], [2676.56, 1386.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2700.46, 1457.78], [2690.2, 1457.42], [2689.86, 1467.11], [2700.13, 1467.46], [2700.46, 1457.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2782.41, 1583.46], [2769.27, 1580.37], [2767.34, 1588.63], [2780.47, 1591.72], [2782.41, 1583.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1994.96, 1430.71], [1988.77, 1424.57], [1978.91, 1434.54], [1985.1, 1440.66], [1994.96, 1430.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2720.18, 1703.76], [2720.76, 1700.22], [2721.72, 1700.38], [2723.72, 1688.35], [2717.78, 1687.36], [2717.66, 1688.1], [2714.42, 1687.56], [2714.15, 1689.19], [2713.16, 1689.03], [2711.58, 1698.51], [2714.31, 1698.96], [2713.69, 1702.67], [2720.18, 1703.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2417.38, 1396.29], [2421.03, 1393.8], [2422.32, 1395.69], [2426.33, 1392.96], [2418.05, 1380.85], [2410.4, 1386.09], [2417.38, 1396.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2287.64, 1552.04], [2284.56, 1550.15], [2283.76, 1551.44], [2281.5, 1550.05], [2277.64, 1556.31], [2283.0, 1559.61], [2287.64, 1552.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1852.71, 1531.0], [1847.5, 1526.17], [1839.57, 1534.72], [1844.78, 1539.55], [1852.71, 1531.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2318.68, 1386.32], [2319.97, 1384.43], [2317.26, 1382.59], [2315.85, 1384.68], [2314.21, 1383.57], [2308.09, 1392.59], [2315.22, 1397.43], [2321.48, 1388.22], [2318.68, 1386.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2569.96, 1550.68], [2570.2, 1547.03], [2573.84, 1547.27], [2574.7, 1533.63], [2565.94, 1533.08], [2565.07, 1546.85], [2567.17, 1546.98], [2566.95, 1550.49], [2569.96, 1550.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2473.71, 1443.1], [2472.09, 1439.84], [2464.51, 1443.62], [2466.13, 1446.88], [2473.71, 1443.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2648.87, 1415.94], [2640.2, 1415.68], [2639.88, 1426.58], [2641.93, 1426.64], [2641.87, 1428.71], [2648.49, 1428.91], [2648.87, 1415.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2400.16, 1216.66], [2397.83, 1213.78], [2393.6, 1217.2], [2395.93, 1220.08], [2400.16, 1216.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2589.59, 1388.22], [2583.81, 1387.87], [2583.44, 1393.95], [2589.22, 1394.3], [2589.59, 1388.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2359.52, 1537.43], [2351.89, 1532.08], [2346.18, 1540.22], [2353.81, 1545.57], [2359.52, 1537.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2471.53, 1289.49], [2468.22, 1284.91], [2463.34, 1288.43], [2466.66, 1293.02], [2471.53, 1289.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2494.27, 1901.11], [2493.67, 1888.76], [2485.4, 1889.17], [2486.01, 1901.52], [2494.27, 1901.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2220.35, 1377.98], [2213.81, 1373.61], [2211.86, 1376.52], [2218.41, 1380.89], [2220.35, 1377.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1850.86, 1414.04], [1843.8, 1406.59], [1837.19, 1412.86], [1845.7, 1421.85], [1850.19, 1417.61], [1848.73, 1416.06], [1850.86, 1414.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1799.89, 1499.44], [1807.46, 1490.9], [1801.6, 1485.71], [1792.58, 1495.88], [1796.1, 1499.02], [1797.56, 1497.37], [1799.89, 1499.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2573.07, 1595.5], [2567.55, 1594.13], [2565.9, 1600.83], [2571.41, 1602.19], [2573.07, 1595.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2747.66, 1742.34], [2741.07, 1741.3], [2739.15, 1753.46], [2748.76, 1754.98], [2750.44, 1744.32], [2747.42, 1743.85], [2747.66, 1742.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2363.36, 1537.06], [2367.74, 1531.43], [2372.17, 1534.86], [2373.49, 1533.16], [2377.29, 1536.11], [2380.56, 1531.89], [2377.27, 1529.33], [2375.48, 1531.64], [2370.63, 1527.88], [2369.34, 1529.54], [2357.72, 1520.51], [2351.83, 1528.1], [2363.36, 1537.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2688.17, 1455.42], [2677.91, 1455.22], [2677.67, 1467.52], [2687.93, 1467.72], [2688.17, 1455.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2357.68, 1253.42], [2353.04, 1246.88], [2346.48, 1251.52], [2351.12, 1258.07], [2357.68, 1253.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2727.62, 1775.32], [2721.3, 1774.3], [2720.17, 1781.29], [2726.5, 1782.3], [2727.62, 1775.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2314.96, 1464.99], [2309.56, 1461.14], [2305.18, 1467.27], [2310.57, 1471.13], [2314.96, 1464.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2155.98, 1456.45], [2153.15, 1454.44], [2149.7, 1459.31], [2152.53, 1461.31], [2155.98, 1456.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2475.19, 1900.24], [2475.54, 1898.88], [2479.58, 1899.94], [2482.02, 1890.52], [2479.28, 1889.81], [2479.9, 1887.41], [2476.08, 1886.42], [2475.46, 1888.81], [2471.93, 1887.9], [2469.32, 1898.0], [2473.07, 1898.97], [2472.89, 1899.63], [2475.19, 1900.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2120.82, 1290.0], [2114.75, 1282.71], [2114.1, 1283.25], [2112.16, 1280.9], [2108.14, 1284.25], [2110.04, 1286.53], [2109.1, 1287.32], [2115.2, 1294.67], [2120.82, 1290.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2806.46, 1474.09], [2806.62, 1470.54], [2809.37, 1470.67], [2809.82, 1460.67], [2800.73, 1460.26], [2800.12, 1473.82], [2806.46, 1474.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2537.4, 2066.66], [2533.92, 2060.83], [2526.04, 2065.51], [2529.08, 2070.61], [2528.62, 2070.89], [2530.65, 2074.31], [2536.4, 2070.89], [2534.8, 2068.2], [2537.4, 2066.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2710.43, 1795.32], [2704.77, 1793.94], [2703.38, 1799.62], [2709.04, 1801.01], [2710.43, 1795.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2578.27, 1651.41], [2569.21, 1649.3], [2567.44, 1656.97], [2576.5, 1659.07], [2578.27, 1651.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2415.96, 1255.0], [2410.96, 1248.1], [2402.56, 1254.21], [2407.56, 1261.1], [2415.96, 1255.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2274.62, 1299.45], [2271.84, 1297.14], [2268.69, 1300.94], [2271.46, 1303.24], [2274.62, 1299.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2561.0, 1372.65], [2556.91, 1372.51], [2556.66, 1379.65], [2560.75, 1379.8], [2561.0, 1372.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2326.13, 1210.84], [2323.14, 1206.59], [2318.04, 1210.16], [2317.33, 1209.16], [2314.21, 1211.36], [2315.62, 1213.37], [2312.53, 1215.54], [2313.4, 1216.77], [2312.83, 1217.18], [2313.63, 1218.32], [2310.95, 1220.2], [2314.86, 1225.76], [2326.68, 1217.46], [2323.39, 1212.76], [2326.13, 1210.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2575.18, 1608.88], [2567.51, 1607.27], [2564.19, 1623.13], [2571.86, 1624.73], [2575.18, 1608.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2340.54, 1496.75], [2334.79, 1492.88], [2330.06, 1499.89], [2341.97, 1507.94], [2344.76, 1503.79], [2343.18, 1502.71], [2344.34, 1500.99], [2339.76, 1497.91], [2340.54, 1496.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2349.26, 1310.72], [2345.13, 1306.81], [2333.57, 1319.0], [2340.01, 1325.11], [2350.41, 1314.15], [2348.08, 1311.95], [2349.26, 1310.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2600.07, 1741.08], [2593.98, 1739.65], [2593.64, 1741.1], [2592.29, 1740.78], [2590.16, 1749.9], [2597.61, 1751.64], [2600.07, 1741.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2627.11, 1703.49], [2623.12, 1702.71], [2621.91, 1708.91], [2625.9, 1709.69], [2627.11, 1703.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2020.74, 1306.03], [2025.04, 1302.57], [2025.98, 1303.72], [2027.72, 1302.31], [2017.76, 1290.07], [2011.72, 1294.94], [2020.74, 1306.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1916.6, 1435.25], [1919.09, 1432.67], [1920.21, 1433.75], [1924.13, 1429.69], [1912.27, 1418.26], [1907.6, 1423.1], [1912.43, 1427.76], [1909.88, 1430.42], [1914.19, 1434.58], [1915.01, 1433.72], [1916.6, 1435.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2277.61, 1338.99], [2274.24, 1336.83], [2270.27, 1343.03], [2273.63, 1345.19], [2277.61, 1338.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2551.47, 1708.22], [2554.29, 1693.65], [2543.49, 1691.13], [2541.97, 1697.64], [2545.31, 1698.55], [2543.66, 1706.33], [2551.47, 1708.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2223.79, 1422.14], [2218.35, 1418.38], [2214.75, 1423.58], [2220.19, 1427.34], [2223.79, 1422.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2400.01, 2119.49], [2393.35, 2113.34], [2388.74, 2118.33], [2395.4, 2124.49], [2400.01, 2119.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2381.26, 1325.52], [2376.53, 1321.18], [2372.65, 1325.4], [2377.39, 1329.75], [2381.26, 1325.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2269.15, 1536.59], [2273.64, 1530.04], [2269.72, 1527.01], [2278.41, 1514.59], [2273.46, 1510.98], [2259.93, 1530.4], [2269.15, 1536.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2378.12, 1311.34], [2375.23, 1307.19], [2369.78, 1310.99], [2372.67, 1315.13], [2378.12, 1311.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2637.17, 1777.43], [2629.73, 1775.72], [2628.6, 1780.68], [2636.03, 1782.38], [2637.17, 1777.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1925.88, 1477.27], [1920.73, 1471.66], [1913.86, 1477.97], [1922.24, 1487.1], [1926.36, 1483.32], [1923.13, 1479.8], [1925.88, 1477.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2725.39, 1790.16], [2719.42, 1788.9], [2718.56, 1793.04], [2724.53, 1794.28], [2725.39, 1790.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2454.97, 1677.09], [2475.11, 1649.64], [2445.47, 1629.63], [2431.59, 1649.75], [2421.26, 1643.02], [2434.96, 1622.23], [2419.44, 1611.31], [2404.99, 1633.39], [2402.52, 1631.53], [2398.3, 1638.56], [2454.97, 1677.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2178.15, 1419.03], [2185.53, 1408.32], [2177.48, 1402.78], [2170.37, 1413.1], [2171.12, 1413.62], [2169.74, 1415.62], [2174.15, 1418.65], [2175.26, 1417.03], [2178.15, 1419.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2400.84, 1362.43], [2395.19, 1356.86], [2386.07, 1366.1], [2391.72, 1371.68], [2400.84, 1362.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2547.36, 1425.96], [2547.56, 1422.24], [2550.73, 1422.42], [2551.18, 1414.31], [2543.86, 1413.9], [2543.19, 1425.72], [2547.36, 1425.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2396.41, 1332.51], [2391.11, 1323.68], [2385.98, 1326.75], [2391.28, 1335.59], [2396.41, 1332.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2757.85, 1635.45], [2751.15, 1633.87], [2750.24, 1637.73], [2756.94, 1639.31], [2757.85, 1635.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2380.03, 1540.74], [2373.7, 1536.3], [2368.67, 1543.46], [2370.84, 1544.98], [2368.95, 1547.68], [2370.44, 1548.73], [2369.24, 1550.44], [2373.51, 1553.44], [2379.22, 1545.29], [2377.62, 1544.17], [2380.03, 1540.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2404.75, 1561.46], [2401.33, 1559.23], [2395.17, 1568.62], [2400.76, 1572.28], [2405.45, 1565.13], [2403.28, 1563.7], [2404.75, 1561.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2074.52, 1416.89], [2078.64, 1419.78], [2082.19, 1414.7], [2078.0, 1411.74], [2074.52, 1416.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2687.78, 1484.83], [2682.18, 1484.76], [2682.05, 1493.21], [2687.65, 1493.28], [2687.78, 1484.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2545.02, 1545.86], [2544.97, 1544.31], [2545.95, 1544.27], [2545.56, 1532.57], [2536.38, 1532.87], [2536.79, 1545.07], [2538.92, 1545.0], [2539.02, 1547.79], [2541.39, 1547.71], [2541.34, 1545.99], [2545.02, 1545.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2658.99, 1645.89], [2662.37, 1631.41], [2665.06, 1632.03], [2666.63, 1625.23], [2660.72, 1623.86], [2659.42, 1629.43], [2653.8, 1628.13], [2650.15, 1643.82], [2658.99, 1645.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2691.9, 1605.52], [2675.26, 1605.51], [2675.26, 1608.93], [2676.68, 1608.94], [2676.67, 1613.51], [2681.22, 1613.52], [2681.22, 1614.97], [2691.9, 1614.98], [2691.9, 1605.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2272.5, 1068.46], [2280.88, 1059.4], [2273.41, 1052.47], [2264.97, 1061.58], [2267.44, 1063.86], [2267.48, 1063.81], [2272.5, 1068.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2180.88, 1180.92], [2174.69, 1174.98], [2169.36, 1180.53], [2175.55, 1186.47], [2180.88, 1180.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2735.2, 1751.68], [2735.76, 1747.99], [2737.05, 1748.18], [2737.81, 1743.25], [2736.95, 1743.12], [2737.67, 1738.41], [2729.93, 1737.23], [2729.61, 1739.35], [2728.54, 1739.19], [2727.53, 1745.74], [2728.03, 1745.81], [2727.32, 1750.48], [2735.2, 1751.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2072.2, 1287.66], [2068.98, 1283.6], [2064.35, 1287.28], [2067.57, 1291.33], [2072.2, 1287.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2396.16, 1487.45], [2386.66, 1480.38], [2381.38, 1487.5], [2390.88, 1494.56], [2396.16, 1487.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1973.99, 1428.98], [1975.19, 1427.75], [1976.2, 1428.74], [1979.27, 1425.59], [1978.87, 1425.2], [1982.74, 1421.22], [1982.36, 1420.86], [1985.16, 1417.99], [1982.94, 1415.83], [1984.23, 1414.51], [1982.3, 1412.64], [1981.23, 1413.74], [1979.46, 1412.01], [1976.15, 1415.42], [1974.92, 1414.21], [1972.28, 1416.92], [1973.43, 1418.05], [1969.95, 1421.63], [1973.28, 1424.88], [1971.57, 1426.63], [1973.99, 1428.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2524.75, 1360.43], [2519.48, 1353.4], [2514.45, 1357.18], [2519.72, 1364.21], [2524.75, 1360.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2566.23, 1593.85], [2560.0, 1592.18], [2558.18, 1598.96], [2564.41, 1600.64], [2566.23, 1593.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2161.6, 1454.3], [2162.9, 1452.36], [2165.1, 1453.83], [2169.68, 1447.02], [2167.74, 1445.72], [2169.06, 1443.77], [2165.48, 1441.36], [2164.19, 1443.29], [2162.97, 1442.46], [2157.06, 1451.24], [2161.6, 1454.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2207.2, 1469.91], [2200.35, 1465.43], [2199.41, 1466.88], [2198.11, 1466.04], [2191.88, 1475.58], [2197.02, 1478.94], [2195.79, 1480.84], [2198.78, 1482.79], [2207.2, 1469.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2618.09, 1573.64], [2625.31, 1573.98], [2625.7, 1565.2], [2618.49, 1564.86], [2618.09, 1573.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2479.84, 1329.46], [2474.51, 1322.51], [2461.41, 1332.64], [2466.9, 1339.66], [2479.84, 1329.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2140.57, 1225.36], [2135.88, 1221.34], [2131.31, 1226.66], [2135.99, 1230.68], [2140.57, 1225.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2071.15, 1375.11], [2064.32, 1370.1], [2059.55, 1376.61], [2066.37, 1381.62], [2071.15, 1375.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2739.07, 1486.85], [2732.23, 1486.44], [2731.76, 1494.34], [2738.59, 1494.75], [2739.07, 1486.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2015.42, 1502.02], [2012.78, 1497.29], [2008.91, 1499.44], [2011.55, 1504.17], [2015.42, 1502.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2654.23, 1685.25], [2649.96, 1684.11], [2648.33, 1690.18], [2652.59, 1691.32], [2654.23, 1685.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2601.44, 1721.28], [2604.87, 1707.43], [2600.36, 1706.31], [2599.93, 1708.04], [2596.8, 1707.26], [2593.8, 1719.39], [2601.44, 1721.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2296.95, 1105.85], [2291.29, 1101.12], [2287.13, 1106.09], [2292.79, 1110.82], [2296.95, 1105.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2698.68, 1500.1], [2689.48, 1500.06], [2689.4, 1514.82], [2698.61, 1514.86], [2698.68, 1500.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1926.26, 1517.69], [1922.9, 1514.1], [1920.32, 1516.53], [1923.68, 1520.11], [1926.26, 1517.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2454.61, 1890.97], [2445.87, 1888.66], [2443.42, 1897.98], [2446.44, 1898.78], [2445.85, 1900.98], [2451.57, 1902.49], [2454.61, 1890.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2503.93, 1506.51], [2503.9, 1504.04], [2506.38, 1504.01], [2506.33, 1499.61], [2503.9, 1499.64], [2503.88, 1497.72], [2489.13, 1497.89], [2489.16, 1500.36], [2490.94, 1500.34], [2490.99, 1504.31], [2493.86, 1504.27], [2493.87, 1505.27], [2499.21, 1505.21], [2499.23, 1506.57], [2503.93, 1506.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2383.62, 2054.38], [2380.35, 2049.7], [2378.76, 2050.81], [2377.8, 2049.44], [2370.09, 2054.83], [2374.31, 2060.88], [2383.62, 2054.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2624.06, 1615.98], [2619.26, 1614.77], [2618.78, 1616.8], [2616.89, 1616.4], [2615.65, 1622.22], [2615.1, 1622.06], [2612.44, 1634.07], [2621.07, 1636.22], [2624.79, 1618.69], [2623.5, 1618.32], [2624.06, 1615.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2242.99, 1517.62], [2244.95, 1514.47], [2246.45, 1515.4], [2247.56, 1513.61], [2246.37, 1512.88], [2248.73, 1509.08], [2239.03, 1503.05], [2233.59, 1511.78], [2242.99, 1517.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2319.33, 1116.66], [2312.12, 1111.0], [2308.76, 1115.29], [2312.97, 1118.58], [2312.19, 1119.58], [2315.18, 1121.94], [2319.33, 1116.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2601.83, 1567.7], [2608.33, 1567.96], [2608.6, 1560.44], [2602.17, 1560.18], [2601.83, 1567.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2643.04, 1469.3], [2643.21, 1464.38], [2645.74, 1464.42], [2645.92, 1454.83], [2638.05, 1454.68], [2637.89, 1463.22], [2637.74, 1463.22], [2637.54, 1469.11], [2643.04, 1469.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2266.82, 1336.74], [2261.67, 1333.64], [2258.41, 1339.09], [2263.56, 1342.18], [2266.82, 1336.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2403.52, 1608.65], [2395.64, 1603.36], [2390.05, 1611.68], [2397.92, 1616.98], [2403.52, 1608.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2654.38, 1551.6], [2654.52, 1549.48], [2656.05, 1549.57], [2656.74, 1538.62], [2655.32, 1538.52], [2655.39, 1537.47], [2650.19, 1537.15], [2650.11, 1538.63], [2648.49, 1538.53], [2647.69, 1551.18], [2654.38, 1551.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2472.24, 1962.54], [2471.93, 1955.19], [2462.86, 1955.57], [2463.17, 1962.91], [2472.24, 1962.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2095.95, 1357.09], [2087.87, 1352.11], [2084.61, 1357.41], [2091.85, 1361.87], [2090.79, 1363.6], [2095.92, 1366.76], [2099.06, 1361.66], [2094.76, 1359.01], [2095.95, 1357.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1816.25, 1453.49], [1808.98, 1443.76], [1803.73, 1447.68], [1807.1, 1452.19], [1805.75, 1453.2], [1806.09, 1453.65], [1803.85, 1455.32], [1807.41, 1460.1], [1816.25, 1453.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2597.82, 1687.09], [2589.25, 1684.91], [2587.43, 1692.02], [2596.0, 1694.2], [2597.82, 1687.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2336.52, 1287.42], [2332.46, 1283.55], [2328.18, 1288.04], [2332.25, 1291.91], [2336.52, 1287.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2377.32, 2048.29], [2374.55, 2043.51], [2372.4, 2044.76], [2371.82, 2043.79], [2363.72, 2048.5], [2367.49, 2054.99], [2376.37, 2049.84], [2375.94, 2049.1], [2377.32, 2048.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2350.8, 1385.29], [2353.91, 1381.75], [2354.54, 1382.3], [2357.97, 1378.42], [2357.15, 1377.68], [2359.41, 1375.13], [2356.1, 1372.21], [2358.03, 1370.02], [2354.87, 1367.23], [2344.13, 1379.4], [2350.8, 1385.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2586.23, 1599.22], [2580.54, 1597.63], [2578.79, 1603.92], [2584.48, 1605.51], [2586.23, 1599.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2578.27, 1735.47], [2571.7, 1733.46], [2568.3, 1744.52], [2574.87, 1746.55], [2578.27, 1735.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2094.7, 1290.25], [2090.83, 1285.52], [2086.48, 1289.08], [2090.34, 1293.82], [2094.7, 1290.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2143.02, 1429.29], [2136.15, 1424.92], [2131.31, 1432.53], [2138.19, 1436.89], [2143.02, 1429.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2022.61, 1507.37], [2018.67, 1503.82], [2014.85, 1508.05], [2018.78, 1511.6], [2022.61, 1507.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2385.74, 1409.98], [2381.6, 1407.09], [2377.38, 1413.14], [2381.52, 1416.02], [2385.74, 1409.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2780.39, 1593.85], [2770.23, 1591.73], [2768.37, 1600.62], [2778.53, 1602.75], [2780.39, 1593.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2509.88, 1336.24], [2506.82, 1332.64], [2500.55, 1337.96], [2504.48, 1342.58], [2506.46, 1340.89], [2505.6, 1339.87], [2509.88, 1336.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2433.27, 1464.33], [2435.56, 1460.66], [2432.38, 1458.7], [2430.26, 1462.09], [2428.65, 1461.09], [2422.93, 1470.28], [2430.06, 1474.71], [2435.62, 1465.78], [2433.27, 1464.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2749.07, 1615.17], [2742.34, 1615.15], [2742.33, 1622.43], [2749.05, 1622.46], [2749.07, 1615.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2683.09, 1644.34], [2673.84, 1642.45], [2672.11, 1650.88], [2681.36, 1652.77], [2683.09, 1644.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2767.68, 1540.41], [2758.62, 1540.02], [2758.02, 1553.73], [2767.08, 1554.13], [2767.68, 1540.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2275.12, 1327.09], [2270.21, 1321.87], [2265.52, 1326.29], [2270.43, 1331.5], [2275.12, 1327.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2379.37, 1389.71], [2373.67, 1384.62], [2366.43, 1392.72], [2372.14, 1397.81], [2379.37, 1389.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2226.91, 1133.91], [2222.5, 1129.63], [2219.82, 1132.39], [2224.23, 1136.66], [2226.91, 1133.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2360.54, 1480.38], [2348.28, 1471.77], [2343.6, 1478.44], [2355.86, 1487.05], [2360.54, 1480.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2296.01, 1484.19], [2293.49, 1482.39], [2292.19, 1484.23], [2290.61, 1483.09], [2283.18, 1493.52], [2289.22, 1497.82], [2296.81, 1487.2], [2294.86, 1485.8], [2296.01, 1484.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2775.32, 1562.7], [2769.59, 1560.69], [2767.93, 1565.39], [2773.66, 1567.41], [2775.32, 1562.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2471.13, 1943.0], [2471.03, 1940.73], [2474.58, 1940.57], [2474.09, 1930.3], [2465.91, 1930.69], [2466.42, 1941.18], [2467.47, 1941.13], [2467.56, 1943.17], [2471.13, 1943.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2262.78, 1394.74], [2256.01, 1390.14], [2248.43, 1401.3], [2255.21, 1405.9], [2262.78, 1394.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2682.51, 1421.88], [2678.01, 1421.6], [2677.58, 1428.41], [2682.08, 1428.7], [2682.51, 1421.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2057.17, 1389.6], [2059.03, 1387.21], [2060.32, 1388.22], [2063.5, 1384.14], [2061.71, 1382.76], [2061.93, 1382.49], [2054.6, 1376.77], [2050.12, 1382.52], [2053.47, 1385.12], [2052.7, 1386.11], [2057.17, 1389.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2485.94, 1417.57], [2480.65, 1409.86], [2469.58, 1417.44], [2474.88, 1425.16], [2485.94, 1417.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2667.06, 1600.4], [2660.22, 1599.99], [2660.02, 1603.24], [2660.99, 1603.31], [2660.64, 1609.27], [2666.51, 1609.62], [2667.06, 1600.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2339.41, 1391.64], [2335.52, 1389.04], [2332.16, 1394.08], [2336.05, 1396.67], [2339.41, 1391.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1890.01, 1466.29], [1880.17, 1457.78], [1874.6, 1464.21], [1884.44, 1472.73], [1890.01, 1466.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2092.28, 1272.69], [2089.69, 1269.35], [2084.26, 1273.57], [2086.99, 1277.11], [2085.58, 1278.21], [2087.63, 1280.87], [2091.68, 1277.72], [2089.46, 1274.87], [2092.28, 1272.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2056.07, 1390.95], [2044.7, 1383.62], [2039.88, 1391.09], [2051.25, 1398.42], [2056.07, 1390.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2261.65, 1316.01], [2263.32, 1313.45], [2264.92, 1314.49], [2266.92, 1311.42], [2265.29, 1310.35], [2266.14, 1309.05], [2255.85, 1302.36], [2251.34, 1309.31], [2261.65, 1316.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2441.8, 2071.08], [2439.56, 2067.26], [2437.35, 2068.57], [2436.22, 2066.62], [2426.13, 2072.53], [2430.55, 2080.05], [2440.34, 2074.32], [2439.3, 2072.54], [2441.8, 2071.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2592.4, 1426.12], [2592.38, 1413.5], [2587.62, 1413.5], [2587.63, 1414.89], [2585.0, 1414.88], [2585.0, 1417.76], [2583.35, 1417.76], [2583.37, 1426.13], [2592.4, 1426.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2256.8, 1340.93], [2251.1, 1337.19], [2247.46, 1342.73], [2253.16, 1346.47], [2256.8, 1340.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2082.13, 1254.15], [2075.05, 1246.45], [2073.78, 1247.62], [2072.14, 1245.85], [2066.94, 1250.63], [2078.2, 1262.87], [2083.13, 1258.34], [2080.58, 1255.58], [2082.13, 1254.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2658.74, 1405.91], [2651.15, 1405.54], [2650.8, 1412.43], [2658.4, 1412.8], [2658.74, 1405.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2780.68, 1517.87], [2780.75, 1514.66], [2782.1, 1514.69], [2782.39, 1502.07], [2773.35, 1501.85], [2772.98, 1517.69], [2780.68, 1517.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2762.73, 1478.36], [2752.37, 1477.81], [2751.92, 1486.26], [2762.27, 1486.81], [2762.73, 1478.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2369.79, 1420.52], [2362.86, 1415.57], [2354.87, 1426.74], [2361.8, 1431.69], [2369.79, 1420.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2366.49, 1597.61], [2363.27, 1595.44], [2362.13, 1597.12], [2360.07, 1595.72], [2354.81, 1603.53], [2361.3, 1608.16], [2366.63, 1600.26], [2365.3, 1599.36], [2366.49, 1597.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2564.45, 1732.82], [2555.57, 1731.65], [2554.19, 1742.19], [2563.07, 1743.35], [2564.45, 1732.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2307.78, 1249.44], [2308.87, 1248.24], [2309.92, 1249.2], [2314.18, 1244.47], [2305.94, 1237.03], [2300.6, 1242.96], [2307.78, 1249.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2335.0, 1349.37], [2330.02, 1345.01], [2328.37, 1346.9], [2327.36, 1346.02], [2319.54, 1354.94], [2325.53, 1360.19], [2335.0, 1349.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2525.17, 2046.49], [2523.98, 2039.48], [2514.52, 2041.07], [2515.71, 2048.1], [2525.17, 2046.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2384.49, 2103.27], [2385.61, 2102.11], [2379.17, 2095.62], [2375.43, 2099.28], [2376.43, 2100.26], [2374.25, 2102.52], [2381.7, 2109.7], [2386.25, 2104.97], [2384.49, 2103.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2302.95, 1093.61], [2307.94, 1087.56], [2300.91, 1081.76], [2295.0, 1088.93], [2300.68, 1093.62], [2301.6, 1092.5], [2302.95, 1093.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2565.75, 1711.36], [2565.97, 1709.76], [2568.9, 1710.15], [2569.66, 1704.44], [2567.63, 1704.16], [2568.11, 1700.59], [2560.92, 1699.63], [2560.68, 1701.45], [2559.56, 1701.29], [2558.9, 1706.15], [2559.89, 1706.28], [2559.61, 1708.37], [2561.97, 1708.68], [2561.68, 1710.82], [2565.75, 1711.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2604.3, 1656.19], [2597.92, 1654.57], [2594.98, 1666.06], [2601.36, 1667.69], [2604.3, 1656.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2727.68, 1615.5], [2715.84, 1615.12], [2715.56, 1623.92], [2731.73, 1624.43], [2731.9, 1619.12], [2727.57, 1618.99], [2727.68, 1615.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2752.11, 1670.76], [2752.56, 1668.68], [2755.05, 1669.21], [2756.77, 1661.34], [2755.39, 1661.03], [2756.15, 1657.55], [2747.7, 1655.7], [2745.15, 1667.43], [2746.48, 1667.72], [2746.1, 1669.45], [2752.11, 1670.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2459.62, 1425.36], [2455.84, 1420.06], [2449.2, 1424.79], [2452.97, 1430.09], [2459.62, 1425.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2473.15, 1484.13], [2467.54, 1482.38], [2463.1, 1496.72], [2471.06, 1499.19], [2474.96, 1486.59], [2472.61, 1485.86], [2473.15, 1484.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2741.27, 1787.16], [2741.75, 1785.19], [2744.39, 1785.82], [2745.42, 1781.57], [2742.91, 1780.97], [2743.41, 1778.92], [2735.91, 1777.1], [2733.91, 1785.38], [2741.27, 1787.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2227.13, 1392.89], [2228.3, 1391.16], [2230.64, 1392.74], [2231.81, 1391.02], [2234.06, 1392.54], [2236.8, 1388.49], [2235.07, 1387.32], [2236.41, 1385.35], [2228.71, 1380.16], [2222.3, 1389.63], [2227.13, 1392.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2636.35, 1752.99], [2629.65, 1751.23], [2626.87, 1761.8], [2633.58, 1763.56], [2636.35, 1752.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2308.66, 1346.17], [2317.57, 1335.78], [2311.66, 1330.7], [2302.74, 1341.09], [2304.88, 1342.93], [2304.02, 1343.91], [2306.63, 1346.15], [2307.48, 1345.16], [2308.66, 1346.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2474.12, 1842.32], [2474.4, 1840.94], [2478.66, 1841.83], [2479.61, 1837.25], [2475.96, 1836.48], [2476.8, 1832.46], [2471.69, 1831.4], [2471.04, 1834.53], [2466.53, 1833.59], [2466.01, 1836.06], [2463.62, 1835.58], [2462.7, 1839.95], [2474.12, 1842.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2319.22, 1477.63], [2313.35, 1473.9], [2309.62, 1479.75], [2315.49, 1483.48], [2319.22, 1477.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2349.83, 1144.17], [2351.99, 1141.84], [2354.09, 1143.77], [2361.83, 1135.37], [2360.34, 1134.0], [2361.6, 1132.64], [2356.41, 1127.86], [2345.25, 1139.96], [2349.83, 1144.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2415.37, 1523.09], [2411.13, 1520.02], [2407.84, 1524.56], [2412.08, 1527.63], [2415.37, 1523.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2602.56, 1390.76], [2596.52, 1390.24], [2595.93, 1397.06], [2601.97, 1397.58], [2602.56, 1390.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2149.48, 1316.55], [2137.81, 1308.84], [2133.56, 1315.26], [2145.24, 1322.97], [2149.48, 1316.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2115.48, 1410.05], [2108.41, 1405.74], [2103.91, 1413.12], [2110.98, 1417.42], [2115.48, 1410.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2673.26, 1622.42], [2668.13, 1621.12], [2667.07, 1625.3], [2672.19, 1626.6], [2673.26, 1622.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2474.86, 1398.53], [2468.9, 1390.65], [2461.84, 1396.0], [2469.48, 1406.07], [2474.17, 1402.52], [2472.51, 1400.32], [2474.86, 1398.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2729.27, 1496.38], [2729.59, 1489.67], [2723.11, 1489.39], [2722.84, 1496.11], [2729.27, 1496.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2827.47, 1413.13], [2817.83, 1412.8], [2817.48, 1423.27], [2818.58, 1423.31], [2818.3, 1431.63], [2826.84, 1431.92], [2827.47, 1413.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2370.0, 2037.12], [2366.02, 2030.44], [2358.56, 2034.87], [2362.53, 2041.56], [2370.0, 2037.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2686.37, 1641.05], [2688.27, 1630.66], [2677.27, 1628.66], [2676.84, 1631.04], [2675.02, 1630.7], [2674.26, 1634.9], [2676.01, 1635.22], [2675.32, 1639.04], [2686.37, 1641.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2582.37, 1460.65], [2588.76, 1460.82], [2590.86, 1460.86], [2591.05, 1450.8], [2589.03, 1450.77], [2589.06, 1449.12], [2582.59, 1448.99], [2582.37, 1460.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2319.26, 1144.69], [2312.95, 1139.5], [2305.94, 1148.01], [2312.25, 1153.21], [2319.26, 1144.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2081.87, 1294.48], [2078.16, 1289.67], [2074.07, 1292.83], [2077.78, 1297.64], [2081.87, 1294.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2252.94, 1389.07], [2245.31, 1383.86], [2236.72, 1396.45], [2244.35, 1401.66], [2252.94, 1389.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2764.48, 1516.84], [2764.57, 1514.77], [2767.88, 1514.92], [2768.45, 1501.74], [2763.46, 1501.53], [2763.54, 1499.68], [2759.74, 1499.52], [2759.01, 1516.6], [2764.48, 1516.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2417.86, 1200.39], [2414.71, 1196.55], [2412.87, 1198.06], [2411.44, 1196.31], [2405.13, 1201.48], [2410.42, 1207.95], [2416.67, 1202.83], [2415.95, 1201.96], [2417.86, 1200.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2729.55, 1664.52], [2732.64, 1649.0], [2726.57, 1647.79], [2726.07, 1650.3], [2724.32, 1649.95], [2721.73, 1662.97], [2729.55, 1664.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2506.32, 1305.57], [2502.04, 1300.11], [2499.91, 1301.77], [2499.55, 1301.31], [2486.95, 1311.2], [2493.46, 1319.51], [2503.0, 1312.03], [2501.12, 1309.64], [2506.32, 1305.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2323.32, 1100.79], [2321.09, 1098.86], [2319.9, 1100.22], [2317.42, 1098.07], [2311.76, 1104.6], [2318.85, 1110.76], [2324.24, 1104.55], [2321.85, 1102.47], [2323.32, 1100.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2579.33, 1697.47], [2574.28, 1696.53], [2571.63, 1710.82], [2573.72, 1711.21], [2573.34, 1713.25], [2578.76, 1714.25], [2581.04, 1702.0], [2578.57, 1701.55], [2579.33, 1697.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2294.15, 1118.19], [2288.11, 1112.9], [2282.09, 1119.77], [2288.13, 1125.06], [2294.15, 1118.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1979.45, 1535.31], [1972.18, 1528.17], [1966.78, 1533.67], [1975.49, 1542.23], [1979.13, 1538.53], [1977.69, 1537.1], [1979.45, 1535.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2316.82, 1498.67], [2309.99, 1493.6], [2305.11, 1500.16], [2305.61, 1500.53], [2301.22, 1506.42], [2308.3, 1511.69], [2314.18, 1503.78], [2313.43, 1503.22], [2316.82, 1498.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2440.15, 1537.37], [2436.51, 1534.84], [2431.74, 1541.73], [2435.39, 1544.25], [2440.15, 1537.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2504.08, 1711.64], [2514.95, 1695.22], [2520.07, 1699.15], [2519.2, 1679.47], [2496.75, 1664.25], [2478.26, 1691.77], [2493.35, 1702.27], [2492.54, 1703.6], [2504.08, 1711.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2391.97, 1431.5], [2382.41, 1424.8], [2377.88, 1431.26], [2387.42, 1437.96], [2391.97, 1431.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1851.98, 1496.97], [1845.66, 1491.62], [1838.51, 1500.07], [1844.83, 1505.43], [1851.98, 1496.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2525.1, 1886.21], [2524.67, 1882.02], [2519.17, 1882.59], [2519.6, 1886.78], [2525.1, 1886.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2538.19, 1944.53], [2546.33, 1944.22], [2545.82, 1932.54], [2545.24, 1932.55], [2545.1, 1928.97], [2544.29, 1929.0], [2544.25, 1927.73], [2537.73, 1927.9], [2538.19, 1944.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2173.74, 1335.59], [2167.81, 1331.52], [2160.38, 1342.33], [2166.31, 1346.41], [2173.74, 1335.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2467.8, 1294.41], [2470.29, 1297.54], [2474.72, 1293.82], [2472.14, 1290.75], [2467.8, 1294.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2386.75, 1396.17], [2383.52, 1393.23], [2381.8, 1395.12], [2379.18, 1392.75], [2373.64, 1398.83], [2380.32, 1404.91], [2386.11, 1398.55], [2385.27, 1397.8], [2386.75, 1396.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2547.99, 1553.79], [2547.33, 1546.86], [2542.02, 1547.38], [2542.68, 1554.3], [2547.99, 1553.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2671.3, 1719.93], [2662.01, 1718.18], [2659.13, 1733.5], [2668.41, 1735.25], [2671.3, 1719.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2134.68, 1423.21], [2127.05, 1418.19], [2125.45, 1420.62], [2124.98, 1420.31], [2122.64, 1423.88], [2123.5, 1424.45], [2121.59, 1427.36], [2128.82, 1432.11], [2134.68, 1423.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2219.19, 1362.84], [2209.11, 1356.57], [2205.37, 1362.59], [2206.37, 1363.21], [2204.87, 1365.62], [2214.75, 1371.77], [2218.8, 1365.26], [2217.99, 1364.76], [2219.19, 1362.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1792.7, 1475.44], [1786.57, 1470.08], [1784.6, 1472.34], [1783.91, 1471.72], [1780.62, 1475.48], [1780.52, 1475.38], [1777.46, 1478.87], [1784.39, 1484.95], [1792.7, 1475.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1944.67, 1527.73], [1950.21, 1521.81], [1941.62, 1513.77], [1940.18, 1515.32], [1936.23, 1511.63], [1932.3, 1515.83], [1935.12, 1518.46], [1933.48, 1520.22], [1938.67, 1525.06], [1940.14, 1523.5], [1944.67, 1527.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2692.65, 1553.78], [2685.92, 1553.44], [2685.75, 1556.7], [2692.48, 1557.04], [2692.65, 1553.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2552.05, 1468.85], [2544.4, 1468.81], [2544.34, 1477.17], [2552.0, 1477.22], [2552.05, 1468.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2573.8, 1494.72], [2565.93, 1494.84], [2566.11, 1506.54], [2568.62, 1506.5], [2568.65, 1508.57], [2574.02, 1508.48], [2573.8, 1494.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2222.04, 1433.26], [2218.74, 1430.78], [2217.06, 1433.01], [2211.96, 1429.17], [2205.09, 1438.29], [2213.48, 1444.61], [2222.04, 1433.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2009.34, 1517.75], [2013.55, 1513.21], [2011.04, 1510.89], [2012.2, 1509.63], [2005.16, 1503.1], [2004.16, 1504.17], [2003.32, 1503.38], [2000.39, 1506.53], [1999.57, 1505.76], [1997.36, 1508.15], [2006.2, 1516.35], [2006.95, 1515.54], [2009.34, 1517.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2583.72, 1509.62], [2583.88, 1506.22], [2588.64, 1506.45], [2589.16, 1496.07], [2579.57, 1495.59], [2578.88, 1509.38], [2583.72, 1509.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2642.61, 1403.16], [2637.86, 1403.11], [2637.78, 1410.49], [2642.53, 1410.55], [2642.61, 1403.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2532.63, 1927.37], [2525.71, 1927.47], [2525.95, 1943.54], [2534.25, 1943.41], [2534.09, 1933.08], [2532.71, 1933.1], [2532.63, 1927.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2412.27, 1963.05], [2406.37, 1952.74], [2398.76, 1957.1], [2405.71, 1969.23], [2411.68, 1965.82], [2410.63, 1963.99], [2412.27, 1963.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2593.66, 1553.56], [2589.39, 1553.39], [2589.12, 1560.04], [2593.39, 1560.21], [2593.66, 1553.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2525.73, 1405.45], [2521.67, 1399.02], [2520.19, 1399.95], [2518.7, 1397.59], [2520.96, 1396.16], [2517.75, 1391.08], [2509.25, 1396.46], [2514.75, 1405.18], [2516.22, 1404.26], [2519.46, 1409.41], [2525.73, 1405.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2592.76, 1677.74], [2589.04, 1676.88], [2587.62, 1683.02], [2591.33, 1683.87], [2592.76, 1677.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2271.38, 1420.45], [2272.39, 1418.82], [2273.51, 1419.52], [2277.2, 1413.52], [2277.91, 1413.95], [2280.52, 1409.72], [2272.6, 1404.85], [2270.65, 1408.02], [2271.03, 1408.25], [2265.69, 1416.95], [2271.38, 1420.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2731.67, 1589.02], [2731.65, 1587.79], [2735.56, 1587.75], [2735.55, 1586.82], [2741.58, 1586.74], [2741.49, 1580.18], [2736.54, 1580.24], [2736.53, 1579.67], [2720.39, 1579.89], [2720.42, 1582.07], [2717.89, 1582.11], [2717.98, 1589.21], [2731.67, 1589.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2113.07, 1361.56], [2107.6, 1358.06], [2106.8, 1359.32], [2104.94, 1358.13], [2097.74, 1369.39], [2105.08, 1374.08], [2113.07, 1361.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2354.44, 2017.97], [2350.58, 2010.81], [2340.77, 2016.1], [2344.62, 2023.26], [2354.44, 2017.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2740.69, 1668.08], [2741.15, 1665.78], [2742.48, 1666.05], [2744.73, 1654.91], [2736.46, 1653.24], [2735.88, 1656.1], [2734.93, 1655.91], [2733.27, 1664.12], [2735.34, 1664.54], [2734.86, 1666.91], [2740.69, 1668.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2315.58, 1093.9], [2310.02, 1089.5], [2304.36, 1096.66], [2309.92, 1101.06], [2315.58, 1093.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2726.31, 1738.27], [2722.69, 1737.61], [2722.55, 1738.37], [2718.27, 1737.59], [2716.32, 1748.21], [2725.44, 1749.89], [2727.43, 1739.07], [2726.2, 1738.85], [2726.31, 1738.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2049.3, 1348.96], [2054.03, 1344.94], [2053.04, 1343.79], [2053.82, 1343.14], [2048.19, 1336.5], [2042.3, 1341.5], [2047.85, 1348.04], [2048.24, 1347.7], [2049.3, 1348.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2366.89, 1192.24], [2364.59, 1188.7], [2361.49, 1190.71], [2359.83, 1188.14], [2354.05, 1191.89], [2358.72, 1199.1], [2364.99, 1195.03], [2364.28, 1193.94], [2366.89, 1192.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2640.45, 1730.8], [2640.72, 1728.78], [2642.26, 1728.98], [2643.91, 1716.66], [2638.38, 1715.92], [2638.07, 1718.17], [2634.45, 1717.68], [2633.15, 1727.43], [2637.78, 1728.05], [2637.46, 1730.4], [2640.45, 1730.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2296.65, 1503.87], [2298.35, 1501.48], [2300.62, 1503.08], [2307.81, 1492.93], [2300.15, 1487.51], [2295.73, 1493.76], [2296.48, 1494.3], [2292.02, 1500.59], [2296.65, 1503.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1815.96, 1487.44], [1813.85, 1485.29], [1809.54, 1489.55], [1811.64, 1491.69], [1815.96, 1487.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2299.47, 1466.59], [2295.96, 1464.14], [2292.44, 1469.18], [2295.95, 1471.63], [2299.47, 1466.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2743.57, 1459.73], [2734.13, 1459.35], [2733.59, 1472.73], [2743.04, 1473.11], [2743.57, 1459.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2309.36, 1254.98], [2304.52, 1250.41], [2300.6, 1254.59], [2305.56, 1259.25], [2309.36, 1254.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2464.06, 1951.62], [2463.83, 1947.8], [2457.91, 1948.15], [2458.14, 1951.97], [2464.06, 1951.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2200.86, 1181.11], [2196.8, 1177.31], [2192.13, 1182.3], [2196.19, 1186.1], [2200.86, 1181.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2391.33, 1217.94], [2386.63, 1211.33], [2374.5, 1219.96], [2377.67, 1224.41], [2376.74, 1225.07], [2378.28, 1227.23], [2391.33, 1217.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2472.27, 1305.65], [2468.61, 1301.16], [2464.12, 1304.77], [2467.77, 1309.27], [2472.27, 1305.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2029.95, 1488.13], [2023.8, 1481.51], [2021.9, 1483.27], [2020.84, 1482.14], [2019.09, 1483.75], [2020.44, 1485.19], [2018.52, 1486.97], [2024.4, 1493.29], [2029.95, 1488.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2584.23, 1617.65], [2584.68, 1614.68], [2580.28, 1614.02], [2579.84, 1616.87], [2577.41, 1616.51], [2575.73, 1627.64], [2585.25, 1629.07], [2586.91, 1618.05], [2584.23, 1617.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2487.73, 1941.06], [2487.41, 1931.55], [2481.03, 1931.76], [2481.08, 1932.96], [2479.28, 1933.02], [2479.56, 1941.34], [2487.73, 1941.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2585.93, 1753.13], [2582.01, 1752.1], [2580.4, 1758.16], [2584.33, 1759.19], [2585.93, 1753.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2728.59, 1540.54], [2719.14, 1540.25], [2718.83, 1550.34], [2728.28, 1550.64], [2728.59, 1540.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1974.53, 1494.02], [1980.32, 1488.25], [1975.59, 1483.65], [1976.08, 1483.12], [1967.79, 1475.3], [1966.81, 1476.31], [1966.02, 1475.54], [1962.85, 1478.94], [1963.53, 1479.64], [1961.9, 1481.43], [1974.53, 1494.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2277.77, 1425.88], [2280.21, 1422.34], [2284.68, 1425.42], [2289.8, 1417.99], [2286.3, 1415.57], [2287.18, 1414.29], [2282.71, 1411.22], [2274.28, 1423.47], [2277.77, 1425.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2175.41, 1365.8], [2168.6, 1361.24], [2167.61, 1362.72], [2164.66, 1360.75], [2162.58, 1363.84], [2165.32, 1365.68], [2163.65, 1368.18], [2170.67, 1372.87], [2174.6, 1367.02], [2175.41, 1365.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2143.34, 1381.2], [2136.66, 1376.33], [2134.38, 1379.46], [2134.01, 1379.19], [2131.85, 1382.17], [2132.35, 1382.53], [2130.04, 1385.7], [2131.65, 1386.86], [2129.99, 1389.14], [2134.93, 1392.75], [2143.34, 1381.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2811.24, 1431.55], [2811.48, 1426.46], [2814.4, 1426.59], [2814.72, 1419.71], [2809.99, 1419.5], [2810.13, 1416.66], [2802.65, 1416.32], [2801.96, 1431.12], [2811.24, 1431.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2399.77, 1251.76], [2407.51, 1245.6], [2403.12, 1240.09], [2394.51, 1246.95], [2396.45, 1249.39], [2397.33, 1248.7], [2399.77, 1251.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2505.03, 1944.87], [2500.92, 1944.83], [2500.86, 1951.66], [2504.96, 1951.71], [2505.03, 1944.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2071.5, 1299.15], [2067.71, 1294.19], [2061.58, 1298.87], [2065.37, 1303.83], [2071.5, 1299.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2040.01, 1292.89], [2043.79, 1289.91], [2044.91, 1291.35], [2047.52, 1289.31], [2036.48, 1275.25], [2030.09, 1280.26], [2040.01, 1292.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2001.54, 1540.8], [1996.66, 1536.64], [1993.01, 1540.94], [1997.89, 1545.09], [2001.54, 1540.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2501.8, 1493.39], [2501.81, 1492.22], [2504.49, 1492.25], [2504.54, 1487.54], [2500.79, 1487.5], [2500.79, 1486.36], [2498.64, 1486.33], [2498.63, 1487.74], [2494.93, 1487.69], [2494.89, 1491.66], [2496.17, 1491.67], [2496.15, 1493.33], [2501.8, 1493.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2206.73, 1145.2], [2202.92, 1141.8], [2199.11, 1146.07], [2202.91, 1149.48], [2206.73, 1145.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2485.22, 1279.08], [2479.31, 1271.86], [2468.53, 1280.66], [2474.45, 1287.9], [2485.22, 1279.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2539.86, 1873.08], [2539.45, 1865.79], [2537.86, 1865.88], [2537.79, 1864.71], [2528.3, 1865.25], [2528.77, 1873.71], [2539.86, 1873.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2749.58, 1614.07], [2749.37, 1607.77], [2742.08, 1608.01], [2742.29, 1614.32], [2749.58, 1614.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2272.94, 1208.11], [2268.88, 1204.39], [2266.01, 1207.51], [2270.07, 1211.23], [2272.94, 1208.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2348.12, 1565.77], [2341.38, 1561.35], [2334.18, 1572.35], [2340.92, 1576.76], [2348.12, 1565.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2469.31, 1847.03], [2462.2, 1845.17], [2460.61, 1851.25], [2467.72, 1853.11], [2469.31, 1847.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2748.74, 1490.16], [2744.91, 1489.93], [2744.4, 1498.97], [2748.22, 1499.19], [2748.74, 1490.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2370.42, 1283.42], [2375.32, 1279.44], [2377.24, 1281.82], [2379.31, 1280.14], [2373.49, 1272.94], [2366.5, 1278.58], [2370.42, 1283.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2594.9, 1532.84], [2592.63, 1532.78], [2592.25, 1548.45], [2601.25, 1548.66], [2601.62, 1533.57], [2594.89, 1533.41], [2594.9, 1532.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2542.55, 1388.06], [2535.43, 1387.54], [2534.86, 1395.18], [2542.0, 1395.7], [2542.55, 1388.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2668.52, 1496.68], [2661.99, 1496.34], [2661.25, 1510.71], [2667.77, 1511.05], [2668.52, 1496.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2439.06, 1281.43], [2436.77, 1278.07], [2434.59, 1279.56], [2432.3, 1276.18], [2424.45, 1281.51], [2425.92, 1283.67], [2425.29, 1284.1], [2428.39, 1288.68], [2439.06, 1281.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2689.16, 1575.12], [2689.21, 1573.95], [2690.82, 1574.02], [2690.87, 1572.59], [2692.16, 1572.65], [2692.36, 1567.75], [2689.99, 1567.66], [2690.08, 1565.6], [2675.45, 1564.99], [2675.4, 1566.44], [2671.27, 1566.26], [2671.09, 1570.78], [2672.95, 1570.86], [2672.81, 1574.04], [2674.97, 1574.13], [2674.95, 1574.53], [2689.16, 1575.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2046.68, 1349.53], [2039.98, 1340.8], [2033.39, 1345.87], [2040.08, 1354.59], [2046.68, 1349.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2720.42, 1511.0], [2724.03, 1511.17], [2724.04, 1511.99], [2726.6, 1512.04], [2726.63, 1511.29], [2729.09, 1511.35], [2729.42, 1501.19], [2728.49, 1501.17], [2728.53, 1499.32], [2725.14, 1499.26], [2725.14, 1498.73], [2721.52, 1498.72], [2721.46, 1501.05], [2720.71, 1501.04], [2720.42, 1511.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2270.5, 1050.56], [2262.32, 1043.11], [2253.38, 1052.92], [2261.57, 1060.38], [2270.5, 1050.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2413.52, 1380.1], [2409.82, 1376.44], [2405.54, 1380.77], [2409.23, 1384.42], [2413.52, 1380.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2610.41, 1697.15], [2606.9, 1696.38], [2605.62, 1702.31], [2609.12, 1703.07], [2610.41, 1697.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2550.79, 1366.68], [2554.14, 1359.12], [2555.6, 1359.77], [2557.82, 1354.77], [2548.95, 1350.84], [2543.39, 1363.41], [2550.79, 1366.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2488.79, 1819.04], [2499.82, 1822.0], [2504.12, 1805.8], [2493.11, 1803.05], [2488.79, 1819.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2706.16, 1699.9], [2706.38, 1698.53], [2708.17, 1698.81], [2708.71, 1695.42], [2709.56, 1695.55], [2710.99, 1686.65], [2702.4, 1685.27], [2701.82, 1688.89], [2700.44, 1688.66], [2699.75, 1692.96], [2700.92, 1693.15], [2700.33, 1696.87], [2702.54, 1697.23], [2702.21, 1699.27], [2706.16, 1699.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2277.79, 1089.96], [2274.17, 1086.44], [2269.97, 1090.76], [2273.59, 1094.28], [2277.79, 1089.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2384.61, 1517.98], [2379.74, 1514.44], [2377.75, 1517.2], [2378.69, 1517.89], [2376.62, 1520.76], [2380.55, 1523.6], [2384.61, 1517.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2568.67, 1367.88], [2568.77, 1364.85], [2570.99, 1364.93], [2571.17, 1359.27], [2568.34, 1359.19], [2568.39, 1357.69], [2560.01, 1357.42], [2559.68, 1367.59], [2568.67, 1367.88]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[2398.0, 1377.31], [2399.64, 1375.63], [2401.2, 1377.16], [2409.84, 1368.33], [2408.77, 1367.29], [2410.68, 1365.33], [2407.33, 1362.05], [2405.27, 1364.15], [2403.67, 1362.58], [2398.32, 1368.04], [2398.0, 1367.72], [2394.44, 1371.36], [2395.66, 1372.56], [2394.42, 1373.81], [2398.0, 1377.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2663.37, 1583.76], [2663.39, 1590.11], [2669.69, 1590.23], [2669.77, 1583.87], [2663.37, 1583.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2188.08, 1429.13], [2189.85, 1426.51], [2190.85, 1427.18], [2197.73, 1416.94], [2191.29, 1412.63], [2194.92, 1407.21], [2188.68, 1403.02], [2185.49, 1407.79], [2190.17, 1410.94], [2182.87, 1421.81], [2183.95, 1422.53], [2182.18, 1425.16], [2188.08, 1429.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2333.62, 1479.43], [2328.67, 1475.67], [2324.5, 1481.13], [2329.46, 1484.9], [2333.62, 1479.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2650.27, 1624.99], [2644.56, 1624.01], [2641.54, 1641.49], [2649.13, 1642.8], [2651.14, 1631.16], [2649.26, 1630.83], [2650.27, 1624.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2358.62, 1415.99], [2351.19, 1411.14], [2346.98, 1417.6], [2354.4, 1422.45], [2358.62, 1415.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2300.69, 1281.59], [2302.32, 1279.38], [2303.15, 1279.99], [2307.54, 1273.99], [2306.87, 1273.5], [2309.57, 1269.81], [2306.02, 1267.2], [2304.44, 1269.35], [2302.68, 1268.07], [2301.03, 1270.33], [2300.18, 1269.71], [2294.7, 1277.19], [2300.69, 1281.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2161.91, 1202.76], [2156.83, 1197.92], [2152.16, 1202.84], [2157.23, 1207.67], [2161.91, 1202.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2382.46, 1507.26], [2374.66, 1501.43], [2371.5, 1505.25], [2372.35, 1505.88], [2370.12, 1508.87], [2377.27, 1514.2], [2382.46, 1507.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2466.95, 1890.4], [2458.52, 1888.17], [2456.15, 1897.1], [2462.82, 1898.86], [2462.37, 1900.55], [2466.13, 1901.55], [2467.95, 1894.66], [2465.96, 1894.13], [2466.95, 1890.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2557.71, 1664.61], [2547.76, 1662.08], [2546.36, 1667.58], [2547.46, 1667.86], [2546.59, 1671.3], [2555.44, 1673.55], [2557.71, 1664.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2578.74, 1420.24], [2578.89, 1416.38], [2572.03, 1416.03], [2571.6, 1424.6], [2578.5, 1424.94], [2578.74, 1420.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2744.56, 1725.47], [2738.36, 1724.19], [2737.1, 1730.3], [2743.3, 1731.58], [2744.56, 1725.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2828.28, 1471.56], [2822.09, 1470.53], [2821.12, 1476.47], [2827.3, 1477.49], [2828.28, 1471.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2736.27, 1566.64], [2718.77, 1565.75], [2718.44, 1572.2], [2723.22, 1572.43], [2723.03, 1576.29], [2735.74, 1576.94], [2736.27, 1566.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2394.92, 1295.21], [2390.17, 1288.66], [2380.08, 1295.97], [2384.84, 1302.53], [2394.92, 1295.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2181.97, 1344.04], [2175.73, 1339.62], [2170.2, 1347.44], [2176.45, 1351.85], [2181.97, 1344.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2582.81, 1553.19], [2574.98, 1552.8], [2574.35, 1565.54], [2582.18, 1565.93], [2582.81, 1553.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2773.15, 1629.26], [2762.98, 1627.16], [2761.21, 1635.65], [2773.73, 1638.26], [2775.16, 1631.39], [2772.82, 1630.9], [2773.15, 1629.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2512.7, 1929.82], [2513.11, 1944.69], [2521.24, 1944.46], [2520.95, 1929.58], [2512.7, 1929.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2228.2, 1484.07], [2221.2, 1479.21], [2212.74, 1491.38], [2216.06, 1493.69], [2215.61, 1494.34], [2219.29, 1496.9], [2228.2, 1484.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2796.46, 1421.01], [2796.83, 1416.4], [2791.86, 1416.02], [2791.52, 1420.4], [2786.42, 1420.0], [2785.74, 1428.67], [2789.91, 1429.0], [2789.77, 1430.77], [2799.54, 1431.54], [2800.34, 1421.33], [2796.46, 1421.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2632.23, 1501.95], [2622.54, 1501.38], [2621.88, 1512.61], [2631.57, 1513.18], [2632.23, 1501.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2545.29, 2080.42], [2540.31, 2072.93], [2533.76, 2077.29], [2538.74, 2084.78], [2545.29, 2080.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2400.8, 1492.69], [2396.96, 1490.01], [2392.96, 1495.72], [2396.81, 1498.41], [2400.8, 1492.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2145.7, 1335.56], [2154.01, 1323.35], [2149.47, 1320.26], [2146.16, 1325.12], [2145.62, 1324.76], [2140.62, 1332.1], [2145.7, 1335.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2464.56, 1461.47], [2455.88, 1457.01], [2453.24, 1462.12], [2461.92, 1466.59], [2464.56, 1461.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2392.01, 1601.1], [2385.31, 1596.42], [2379.64, 1604.55], [2386.33, 1609.22], [2392.01, 1601.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2849.69, 1506.83], [2832.1, 1503.15], [2830.51, 1510.79], [2834.44, 1511.61], [2834.03, 1513.6], [2847.68, 1516.45], [2849.69, 1506.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2481.96, 1341.47], [2479.57, 1338.21], [2477.46, 1339.77], [2475.37, 1336.94], [2468.31, 1342.16], [2472.79, 1348.23], [2481.96, 1341.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2757.31, 1461.16], [2748.25, 1460.48], [2747.51, 1470.34], [2756.57, 1471.01], [2757.31, 1461.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2146.27, 1367.86], [2141.95, 1365.12], [2138.65, 1370.33], [2142.97, 1373.06], [2146.27, 1367.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1802.61, 1478.49], [1797.87, 1474.47], [1794.69, 1478.23], [1793.48, 1477.21], [1785.58, 1486.53], [1792.47, 1492.38], [1800.17, 1483.29], [1799.22, 1482.48], [1802.61, 1478.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1842.67, 1422.89], [1836.68, 1416.2], [1835.14, 1417.56], [1833.36, 1415.59], [1828.57, 1419.88], [1837.26, 1429.57], [1840.32, 1426.83], [1839.41, 1425.81], [1842.67, 1422.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2578.8, 1366.4], [2578.95, 1364.1], [2576.41, 1363.93], [2576.3, 1365.45], [2572.64, 1365.21], [2571.54, 1381.48], [2582.19, 1382.19], [2583.24, 1366.69], [2578.8, 1366.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2647.12, 1482.82], [2640.64, 1482.54], [2640.36, 1489.27], [2646.84, 1489.55], [2647.12, 1482.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2341.25, 1401.15], [2334.22, 1396.58], [2332.48, 1399.27], [2331.75, 1398.79], [2329.36, 1402.47], [2329.98, 1402.86], [2326.54, 1408.16], [2333.7, 1412.8], [2341.25, 1401.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2490.09, 1331.67], [2485.98, 1325.86], [2478.46, 1331.21], [2482.57, 1337.01], [2490.09, 1331.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2295.47, 1266.87], [2299.67, 1262.48], [2295.78, 1258.76], [2291.88, 1262.83], [2290.97, 1261.95], [2283.78, 1269.47], [2289.55, 1274.99], [2296.45, 1267.79], [2295.47, 1266.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2438.59, 1581.3], [2433.33, 1577.86], [2431.62, 1580.48], [2429.64, 1579.17], [2422.23, 1590.5], [2429.48, 1595.24], [2438.59, 1581.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2454.91, 1477.12], [2450.95, 1474.5], [2442.21, 1487.66], [2449.19, 1492.3], [2456.75, 1480.92], [2453.72, 1478.91], [2454.91, 1477.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2389.03, 1177.28], [2393.27, 1173.71], [2391.36, 1171.45], [2392.83, 1170.22], [2384.98, 1160.93], [2376.37, 1168.18], [2381.95, 1174.79], [2383.42, 1173.55], [2385.77, 1176.34], [2387.22, 1175.13], [2389.03, 1177.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2491.0, 1975.87], [2490.52, 1968.78], [2487.7, 1968.97], [2487.51, 1966.31], [2472.47, 1966.68], [2472.68, 1976.13], [2491.0, 1975.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2740.53, 1788.81], [2731.17, 1786.89], [2729.68, 1794.16], [2742.24, 1796.74], [2743.59, 1790.15], [2740.38, 1789.49], [2740.53, 1788.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2291.12, 1458.8], [2287.59, 1456.45], [2283.61, 1462.41], [2287.14, 1464.76], [2291.12, 1458.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2791.35, 1490.76], [2785.22, 1490.46], [2784.94, 1496.54], [2791.06, 1496.83], [2791.35, 1490.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2544.08, 1652.23], [2552.3, 1654.43], [2551.97, 1655.67], [2555.79, 1656.69], [2556.12, 1655.47], [2557.24, 1655.77], [2559.95, 1645.65], [2554.91, 1644.3], [2555.01, 1643.92], [2552.01, 1643.12], [2551.93, 1643.43], [2546.81, 1642.06], [2544.08, 1652.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2797.93, 1482.42], [2793.27, 1482.17], [2792.9, 1488.49], [2797.56, 1488.75], [2797.93, 1482.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1973.15, 1496.75], [1962.92, 1487.18], [1957.55, 1492.92], [1967.79, 1502.49], [1973.15, 1496.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2383.14, 1344.8], [2377.35, 1339.45], [2369.44, 1348.0], [2375.23, 1353.36], [2383.14, 1344.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2643.61, 1513.02], [2643.76, 1497.85], [2636.15, 1497.78], [2636.12, 1500.83], [2634.75, 1500.82], [2634.63, 1512.94], [2643.61, 1513.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2611.52, 1743.87], [2603.13, 1741.68], [2599.73, 1754.66], [2608.12, 1756.86], [2611.52, 1743.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2250.73, 1498.54], [2247.94, 1496.65], [2247.15, 1497.81], [2244.9, 1496.28], [2241.06, 1501.97], [2247.94, 1506.62], [2251.8, 1500.92], [2249.96, 1499.67], [2250.73, 1498.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2770.81, 1489.71], [2765.87, 1489.15], [2765.12, 1495.9], [2770.04, 1496.45], [2770.81, 1489.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2419.12, 1241.69], [2416.02, 1237.28], [2411.16, 1240.69], [2414.24, 1245.11], [2419.12, 1241.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2283.4, 1190.64], [2278.21, 1185.56], [2275.69, 1188.14], [2280.88, 1193.21], [2283.4, 1190.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2248.17, 1327.69], [2237.86, 1320.97], [2232.11, 1329.8], [2242.75, 1336.74], [2245.6, 1332.37], [2245.26, 1332.14], [2248.17, 1327.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2695.68, 1552.03], [2696.0, 1538.65], [2694.54, 1538.61], [2694.58, 1537.01], [2688.21, 1536.87], [2688.16, 1539.32], [2685.8, 1539.27], [2685.5, 1551.79], [2695.68, 1552.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2418.11, 1366.41], [2414.49, 1362.69], [2410.04, 1367.02], [2413.67, 1370.74], [2418.11, 1366.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2468.49, 1407.55], [2461.93, 1398.1], [2459.38, 1399.88], [2458.06, 1397.97], [2453.65, 1401.03], [2461.83, 1412.81], [2466.38, 1409.64], [2466.08, 1409.21], [2468.49, 1407.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2578.32, 1483.09], [2573.03, 1482.96], [2572.85, 1490.01], [2578.16, 1490.14], [2578.32, 1483.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2258.75, 1461.87], [2251.79, 1457.1], [2246.84, 1464.32], [2250.16, 1466.6], [2248.55, 1468.95], [2252.18, 1471.43], [2258.75, 1461.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2293.23, 1367.84], [2286.82, 1363.61], [2285.56, 1365.51], [2283.65, 1364.25], [2281.47, 1367.56], [2282.61, 1368.31], [2279.7, 1372.72], [2280.81, 1373.45], [2279.58, 1375.31], [2285.67, 1379.32], [2293.23, 1367.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2103.06, 1348.84], [2095.48, 1343.54], [2090.61, 1350.51], [2098.2, 1355.81], [2103.06, 1348.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2189.66, 1164.77], [2184.93, 1160.82], [2182.44, 1163.81], [2187.16, 1167.76], [2189.66, 1164.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2434.28, 1451.7], [2428.34, 1447.96], [2423.75, 1455.26], [2429.7, 1458.99], [2434.28, 1451.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2180.3, 1164.51], [2165.4, 1150.58], [2158.75, 1157.69], [2173.65, 1171.62], [2180.3, 1164.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2427.63, 1275.66], [2422.94, 1269.09], [2417.42, 1273.04], [2419.54, 1276.01], [2416.98, 1277.84], [2419.54, 1281.44], [2427.63, 1275.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2445.78, 1311.02], [2454.49, 1304.34], [2452.62, 1301.89], [2455.79, 1299.45], [2453.21, 1296.09], [2450.71, 1298.0], [2449.41, 1296.33], [2440.67, 1303.03], [2441.72, 1304.4], [2440.43, 1305.39], [2441.98, 1307.4], [2440.69, 1308.38], [2441.44, 1309.35], [2443.36, 1307.88], [2445.78, 1311.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2094.01, 1313.74], [2086.34, 1303.91], [2079.21, 1309.47], [2086.89, 1319.31], [2094.01, 1313.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2023.42, 1519.09], [2018.59, 1514.23], [2012.83, 1519.94], [2017.66, 1524.81], [2023.42, 1519.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2541.43, 1882.63], [2541.22, 1879.04], [2539.43, 1879.15], [2539.19, 1874.85], [2529.78, 1875.39], [2530.24, 1883.28], [2541.43, 1882.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2559.69, 1533.13], [2549.83, 1532.75], [2549.35, 1545.22], [2559.21, 1545.61], [2559.69, 1533.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2310.83, 1381.35], [2305.13, 1377.38], [2298.17, 1387.36], [2303.87, 1391.34], [2310.83, 1381.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1908.19, 1504.92], [1906.76, 1503.59], [1908.23, 1502.01], [1899.38, 1493.75], [1894.53, 1498.94], [1902.13, 1506.04], [1903.22, 1504.87], [1905.89, 1507.37], [1908.19, 1504.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2696.12, 1485.55], [2689.06, 1485.3], [2688.91, 1489.69], [2695.96, 1489.95], [2696.12, 1485.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2271.58, 1294.2], [2265.73, 1289.02], [2261.46, 1293.84], [2267.3, 1299.01], [2271.58, 1294.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2727.6, 1604.21], [2727.61, 1601.38], [2719.73, 1601.37], [2719.72, 1602.95], [2716.69, 1602.95], [2716.68, 1607.86], [2719.35, 1607.87], [2719.35, 1609.85], [2728.53, 1609.86], [2728.55, 1604.2], [2727.6, 1604.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2036.73, 1297.2], [2032.73, 1292.25], [2034.29, 1290.99], [2027.98, 1283.17], [2020.68, 1289.05], [2027.04, 1296.93], [2028.02, 1296.14], [2031.97, 1301.04], [2036.73, 1297.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2153.41, 1211.31], [2149.19, 1207.76], [2144.71, 1213.09], [2148.93, 1216.64], [2153.41, 1211.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2501.64, 1384.9], [2508.52, 1379.84], [2507.22, 1378.07], [2509.96, 1376.06], [2506.73, 1371.66], [2497.51, 1378.46], [2499.3, 1380.9], [2497.4, 1382.31], [2498.48, 1383.76], [2499.99, 1382.66], [2501.64, 1384.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2630.71, 1534.4], [2623.23, 1534.06], [2622.46, 1550.65], [2629.94, 1550.99], [2630.71, 1534.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2199.11, 1154.04], [2194.71, 1150.25], [2190.71, 1154.89], [2195.11, 1158.68], [2199.11, 1154.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1864.26, 1515.06], [1859.04, 1510.75], [1854.95, 1515.7], [1860.18, 1520.01], [1864.26, 1515.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2774.97, 1616.65], [2775.2, 1615.47], [2778.08, 1616.04], [2779.43, 1609.3], [2763.33, 1606.07], [2761.74, 1614.0], [2774.97, 1616.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2360.89, 2077.01], [2353.61, 2070.11], [2349.12, 2074.85], [2356.4, 2081.75], [2360.89, 2077.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2420.45, 1450.26], [2413.48, 1445.41], [2408.56, 1452.47], [2415.53, 1457.32], [2420.45, 1450.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2700.09, 1420.28], [2700.11, 1418.29], [2702.83, 1418.31], [2702.87, 1412.49], [2700.19, 1412.48], [2700.19, 1411.04], [2687.85, 1410.96], [2687.79, 1420.2], [2700.09, 1420.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2408.55, 2017.53], [2405.49, 2012.91], [2404.04, 2013.87], [2402.26, 2011.18], [2394.24, 2016.46], [2399.07, 2023.79], [2408.55, 2017.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2794.51, 1518.62], [2794.6, 1515.58], [2795.6, 1515.61], [2796.03, 1500.56], [2788.45, 1500.35], [2788.4, 1502.11], [2786.73, 1502.06], [2786.35, 1515.36], [2787.33, 1515.38], [2787.24, 1518.41], [2794.51, 1518.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2216.88, 1476.62], [2211.0, 1472.59], [2209.65, 1474.56], [2208.51, 1473.8], [2203.6, 1481.0], [2210.63, 1485.78], [2216.88, 1476.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2761.52, 1429.64], [2761.68, 1427.45], [2764.5, 1427.67], [2765.04, 1420.63], [2761.47, 1420.36], [2761.79, 1416.1], [2756.71, 1415.71], [2756.48, 1418.76], [2753.83, 1418.55], [2753.03, 1428.99], [2761.52, 1429.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2290.26, 1545.88], [2299.58, 1531.9], [2291.95, 1526.8], [2281.36, 1542.67], [2286.3, 1545.97], [2287.56, 1544.07], [2290.26, 1545.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2614.32, 1602.13], [2603.91, 1600.13], [2602.31, 1608.45], [2612.71, 1610.46], [2614.32, 1602.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2282.94, 1437.36], [2288.97, 1429.03], [2285.71, 1426.67], [2283.37, 1429.89], [2280.33, 1427.69], [2277.46, 1431.62], [2280.59, 1433.89], [2279.75, 1435.05], [2282.94, 1437.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2698.65, 1400.47], [2698.73, 1397.78], [2689.59, 1397.5], [2689.53, 1399.43], [2688.1, 1399.38], [2687.86, 1407.33], [2700.57, 1407.72], [2700.8, 1400.53], [2698.65, 1400.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2408.89, 1463.01], [2415.84, 1467.85], [2419.98, 1461.83], [2413.13, 1457.08], [2408.89, 1463.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2312.59, 1134.09], [2308.97, 1130.75], [2307.73, 1132.09], [2305.0, 1129.56], [2298.41, 1136.68], [2304.76, 1142.55], [2312.59, 1134.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2382.23, 1500.92], [2386.54, 1494.7], [2379.81, 1490.05], [2374.59, 1497.6], [2376.43, 1498.88], [2377.36, 1497.54], [2382.23, 1500.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2105.95, 1275.03], [2101.44, 1268.9], [2099.34, 1270.43], [2098.64, 1269.49], [2093.91, 1272.95], [2094.99, 1274.44], [2093.56, 1275.49], [2097.66, 1281.1], [2105.95, 1275.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2514.55, 1324.19], [2513.13, 1322.45], [2515.87, 1320.21], [2512.33, 1315.87], [2511.13, 1316.85], [2507.88, 1312.86], [2503.55, 1316.39], [2502.27, 1314.82], [2496.65, 1319.4], [2501.26, 1325.06], [2503.96, 1322.87], [2505.65, 1324.95], [2506.66, 1324.12], [2509.84, 1328.03], [2514.55, 1324.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2230.79, 1498.22], [2233.38, 1494.29], [2235.03, 1495.37], [2237.39, 1491.78], [2233.81, 1489.42], [2234.35, 1488.6], [2230.34, 1485.96], [2226.69, 1491.53], [2227.64, 1492.16], [2225.81, 1494.95], [2230.79, 1498.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1775.48, 1468.48], [1771.99, 1462.99], [1769.47, 1464.59], [1767.29, 1461.17], [1760.86, 1465.28], [1767.21, 1475.26], [1773.68, 1471.14], [1772.99, 1470.06], [1775.48, 1468.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2761.81, 1565.78], [2761.59, 1559.06], [2755.28, 1559.27], [2755.5, 1565.99], [2761.81, 1565.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2635.78, 1769.57], [2630.26, 1767.97], [2628.64, 1773.52], [2634.15, 1775.13], [2635.78, 1769.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2084.19, 1322.1], [2075.11, 1310.71], [2071.25, 1313.78], [2072.67, 1315.55], [2070.38, 1317.38], [2078.04, 1326.99], [2084.19, 1322.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2485.74, 1470.38], [2485.62, 1466.53], [2479.63, 1466.73], [2479.77, 1470.58], [2485.74, 1470.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2297.44, 1080.03], [2290.09, 1073.55], [2284.61, 1079.78], [2291.96, 1086.25], [2297.44, 1080.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2331.69, 1394.34], [2324.97, 1389.72], [2318.4, 1399.29], [2325.13, 1403.91], [2331.69, 1394.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2680.18, 1476.72], [2675.51, 1476.62], [2675.38, 1482.45], [2680.05, 1482.55], [2680.18, 1476.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2437.65, 1251.8], [2433.45, 1246.53], [2428.1, 1250.79], [2432.29, 1256.06], [2437.65, 1251.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2017.1, 1537.23], [2019.37, 1534.98], [2019.84, 1535.44], [2021.77, 1533.42], [2017.21, 1528.92], [2013.04, 1533.15], [2017.1, 1537.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2337.18, 1557.91], [2333.11, 1555.09], [2331.47, 1557.47], [2330.4, 1556.73], [2322.98, 1567.46], [2326.61, 1569.97], [2325.94, 1570.93], [2329.32, 1573.27], [2337.86, 1560.93], [2335.98, 1559.63], [2337.18, 1557.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2688.5, 1617.66], [2675.6, 1615.06], [2673.69, 1624.58], [2689.04, 1627.67], [2690.47, 1620.61], [2688.01, 1620.11], [2688.5, 1617.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2526.74, 2062.99], [2531.73, 2059.94], [2530.54, 2058.0], [2532.04, 2057.08], [2527.63, 2049.88], [2519.79, 2054.68], [2523.93, 2061.45], [2525.29, 2060.62], [2526.74, 2062.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2470.92, 1466.43], [2467.79, 1465.4], [2465.78, 1471.54], [2468.92, 1472.56], [2470.92, 1466.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2484.99, 1368.05], [2487.32, 1366.14], [2487.83, 1366.76], [2494.61, 1361.2], [2494.2, 1360.69], [2497.49, 1358.01], [2493.63, 1353.3], [2491.4, 1355.13], [2490.11, 1353.56], [2482.4, 1359.86], [2483.2, 1360.84], [2480.74, 1362.86], [2484.99, 1368.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2686.91, 1393.92], [2679.54, 1393.29], [2678.96, 1400.2], [2686.32, 1400.83], [2686.91, 1393.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2564.65, 1427.47], [2565.45, 1414.65], [2558.28, 1414.2], [2558.16, 1416.21], [2557.03, 1416.14], [2556.35, 1426.94], [2564.65, 1427.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2488.96, 1451.5], [2492.44, 1450.0], [2492.97, 1451.24], [2503.33, 1446.8], [2502.92, 1445.81], [2505.06, 1444.9], [2502.13, 1438.07], [2489.17, 1443.62], [2489.5, 1444.38], [2486.47, 1445.67], [2488.96, 1451.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2472.84, 1306.27], [2468.11, 1309.96], [2472.47, 1315.51], [2477.2, 1311.83], [2472.84, 1306.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2066.08, 1271.4], [2057.7, 1260.25], [2056.88, 1260.86], [2055.88, 1259.53], [2049.91, 1264.01], [2059.28, 1276.5], [2066.08, 1271.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2659.61, 1454.85], [2650.12, 1454.55], [2649.82, 1464.05], [2652.62, 1464.13], [2652.52, 1467.12], [2659.21, 1467.33], [2659.61, 1454.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2596.53, 1616.93], [2589.13, 1615.47], [2586.6, 1628.18], [2594.0, 1629.65], [2596.53, 1616.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2412.09, 1957.72], [2428.28, 1948.29], [2424.15, 1941.2], [2413.97, 1947.13], [2416.04, 1950.69], [2414.48, 1951.6], [2413.2, 1949.39], [2408.74, 1951.98], [2412.09, 1957.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2513.49, 1831.91], [2514.11, 1845.62], [2525.53, 1845.04], [2525.49, 1843.75], [2527.34, 1843.67], [2527.37, 1844.27], [2539.39, 1843.59], [2539.3, 1841.71], [2539.91, 1841.68], [2539.67, 1837.06], [2539.05, 1837.06], [2538.73, 1831.0], [2540.55, 1830.92], [2540.44, 1827.61], [2539.12, 1827.67], [2538.98, 1823.59], [2538.36, 1823.64], [2538.14, 1820.56], [2518.71, 1816.25], [2519.55, 1831.57], [2513.49, 1831.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2666.29, 1475.53], [2662.07, 1475.31], [2661.72, 1481.8], [2665.93, 1482.02], [2666.29, 1475.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2471.21, 1857.56], [2460.42, 1855.43], [2459.21, 1861.56], [2461.06, 1861.93], [2460.66, 1864.01], [2466.02, 1865.06], [2465.68, 1866.8], [2470.58, 1867.77], [2471.12, 1865.0], [2469.79, 1864.73], [2471.21, 1857.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2547.14, 1506.92], [2547.43, 1499.71], [2548.03, 1499.74], [2548.31, 1492.8], [2546.72, 1492.73], [2546.82, 1490.34], [2539.53, 1490.04], [2538.95, 1504.5], [2541.95, 1504.61], [2541.87, 1506.72], [2547.14, 1506.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2384.68, 1905.68], [2381.63, 1899.39], [2378.46, 1900.94], [2377.33, 1898.6], [2374.56, 1899.95], [2378.75, 1908.57], [2384.68, 1905.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2421.65, 1334.16], [2417.12, 1327.99], [2406.56, 1335.72], [2411.08, 1341.89], [2421.65, 1334.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2692.62, 1587.95], [2693.35, 1577.97], [2679.08, 1576.95], [2678.94, 1578.82], [2673.81, 1578.45], [2673.23, 1586.56], [2692.62, 1587.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2553.29, 2041.79], [2552.39, 2035.38], [2538.12, 2037.36], [2539.02, 2043.78], [2553.29, 2041.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2447.98, 1239.56], [2439.76, 1229.34], [2432.63, 1235.08], [2437.72, 1241.4], [2435.9, 1242.88], [2439.02, 1246.76], [2447.98, 1239.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2537.19, 1850.38], [2527.26, 1850.74], [2527.33, 1852.78], [2525.63, 1852.84], [2525.84, 1858.9], [2527.88, 1858.82], [2527.96, 1860.8], [2537.89, 1860.44], [2537.87, 1859.83], [2539.23, 1859.78], [2538.93, 1851.48], [2537.23, 1851.54], [2537.19, 1850.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2328.25, 1149.07], [2323.61, 1145.11], [2316.04, 1153.98], [2322.34, 1159.36], [2328.2, 1152.51], [2326.53, 1151.08], [2328.25, 1149.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2367.66, 1325.73], [2361.24, 1320.17], [2350.2, 1332.93], [2356.61, 1338.49], [2367.66, 1325.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2526.25, 2108.32], [2522.44, 2102.44], [2520.89, 2103.45], [2520.35, 2102.62], [2517.86, 2104.23], [2517.0, 2102.9], [2513.77, 2104.98], [2514.33, 2105.83], [2512.78, 2106.84], [2517.43, 2114.03], [2526.25, 2108.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2028.3, 1517.78], [2034.35, 1524.03], [2046.7, 1512.05], [2040.65, 1505.81], [2028.3, 1517.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2492.39, 1287.97], [2486.66, 1280.9], [2476.2, 1289.36], [2481.94, 1296.45], [2492.39, 1287.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2523.05, 1349.01], [2526.66, 1346.02], [2526.78, 1346.17], [2531.15, 1342.54], [2531.36, 1342.79], [2535.13, 1339.67], [2530.42, 1334.0], [2527.65, 1336.3], [2526.42, 1334.82], [2522.35, 1338.2], [2523.4, 1339.46], [2518.51, 1343.52], [2523.05, 1349.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2168.08, 1377.02], [2158.38, 1371.09], [2154.92, 1376.75], [2156.05, 1377.44], [2155.21, 1378.82], [2165.84, 1385.31], [2169.5, 1379.32], [2167.44, 1378.05], [2168.08, 1377.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2509.9, 1855.41], [2515.83, 1855.19], [2515.64, 1849.74], [2509.7, 1849.93], [2509.9, 1855.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2470.59, 1437.45], [2464.55, 1426.34], [2458.47, 1429.64], [2464.5, 1440.76], [2470.59, 1437.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2602.35, 1573.21], [2606.64, 1573.33], [2606.69, 1569.87], [2602.36, 1569.72], [2602.35, 1573.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2662.65, 1759.07], [2654.46, 1757.27], [2652.07, 1768.13], [2654.4, 1768.64], [2653.77, 1771.48], [2659.64, 1772.77], [2662.65, 1759.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2312.39, 1230.52], [2308.5, 1225.08], [2303.21, 1228.87], [2307.11, 1234.3], [2312.39, 1230.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2112.56, 1346.83], [2113.71, 1344.98], [2115.85, 1346.3], [2117.27, 1344.01], [2115.51, 1342.92], [2117.3, 1340.03], [2108.41, 1334.52], [2106.47, 1337.65], [2105.05, 1336.77], [2102.64, 1340.69], [2112.56, 1346.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2683.75, 1497.25], [2674.69, 1497.1], [2674.43, 1513.59], [2683.48, 1513.73], [2683.75, 1497.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2442.39, 1361.32], [2440.26, 1358.36], [2438.52, 1359.62], [2437.69, 1358.45], [2430.12, 1363.92], [2434.67, 1370.24], [2441.89, 1365.02], [2440.31, 1362.82], [2442.39, 1361.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2731.79, 1709.08], [2732.42, 1705.27], [2734.85, 1705.67], [2737.26, 1690.94], [2728.2, 1689.46], [2725.93, 1703.33], [2727.63, 1703.6], [2726.88, 1708.27], [2731.79, 1709.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2558.66, 1609.25], [2559.23, 1606.49], [2555.26, 1605.69], [2554.66, 1608.7], [2552.45, 1608.25], [2550.27, 1618.98], [2558.85, 1620.73], [2561.09, 1609.75], [2558.66, 1609.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2328.91, 1441.55], [2321.84, 1436.54], [2313.7, 1448.05], [2321.09, 1453.27], [2327.71, 1443.91], [2327.4, 1443.69], [2328.91, 1441.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2243.59, 1426.07], [2237.8, 1422.07], [2232.68, 1429.46], [2238.62, 1433.57], [2238.24, 1434.13], [2243.85, 1438.01], [2247.92, 1432.14], [2242.15, 1428.15], [2243.59, 1426.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2262.48, 1349.51], [2264.09, 1347.24], [2261.16, 1345.16], [2259.49, 1347.53], [2258.34, 1346.71], [2254.34, 1352.34], [2259.81, 1356.22], [2263.87, 1350.49], [2262.48, 1349.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2152.69, 1434.5], [2146.34, 1430.16], [2140.6, 1438.57], [2146.96, 1442.9], [2152.69, 1434.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2379.17, 1419.3], [2374.05, 1415.62], [2369.83, 1421.5], [2374.95, 1425.17], [2379.17, 1419.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2318.94, 1545.6], [2313.09, 1541.83], [2311.85, 1543.76], [2311.05, 1543.24], [2303.94, 1554.27], [2311.8, 1559.34], [2319.4, 1547.55], [2318.19, 1546.76], [2318.94, 1545.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2727.16, 1635.81], [2715.45, 1633.82], [2714.38, 1640.1], [2726.1, 1642.08], [2727.16, 1635.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2373.27, 1271.43], [2366.66, 1263.12], [2364.1, 1265.15], [2365.71, 1267.18], [2360.66, 1271.2], [2365.66, 1277.48], [2373.27, 1271.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2252.27, 1442.08], [2248.8, 1439.29], [2244.87, 1444.18], [2248.33, 1446.97], [2252.27, 1442.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2746.54, 1428.71], [2746.63, 1421.82], [2749.67, 1421.86], [2749.78, 1414.16], [2739.92, 1414.04], [2739.89, 1416.73], [2738.13, 1416.71], [2738.04, 1424.01], [2739.63, 1424.03], [2739.57, 1428.63], [2746.54, 1428.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2503.78, 1485.02], [2503.51, 1476.92], [2494.01, 1477.23], [2494.28, 1485.35], [2503.78, 1485.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2516.66, 1349.06], [2513.08, 1344.38], [2507.49, 1348.67], [2511.07, 1353.35], [2516.66, 1349.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2453.4, 1459.55], [2447.98, 1456.72], [2444.98, 1462.49], [2450.4, 1465.31], [2453.4, 1459.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2365.07, 1577.95], [2360.03, 1574.28], [2353.52, 1583.21], [2356.29, 1585.22], [2354.95, 1587.08], [2359.98, 1590.74], [2364.03, 1585.17], [2362.58, 1584.11], [2364.96, 1580.82], [2363.67, 1579.88], [2365.07, 1577.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2539.24, 1479.14], [2531.38, 1479.17], [2531.4, 1484.66], [2533.92, 1484.66], [2533.94, 1487.07], [2539.27, 1487.04], [2539.24, 1479.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1971.07, 1455.76], [1966.61, 1451.45], [1963.82, 1454.33], [1968.29, 1458.64], [1971.07, 1455.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2497.81, 1339.28], [2493.8, 1333.6], [2488.44, 1337.39], [2492.44, 1343.07], [2497.81, 1339.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2413.27, 1918.28], [2409.31, 1911.65], [2406.68, 1913.22], [2401.94, 1905.29], [2400.6, 1906.09], [2398.48, 1902.54], [2393.68, 1905.39], [2404.5, 1923.48], [2413.27, 1918.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2719.88, 1649.16], [2711.72, 1647.79], [2709.92, 1658.54], [2718.08, 1659.9], [2719.88, 1649.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2205.6, 1386.58], [2195.88, 1380.36], [2192.33, 1385.89], [2202.05, 1392.12], [2205.6, 1386.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2458.78, 2004.21], [2454.67, 1997.16], [2448.14, 2000.97], [2446.9, 1998.85], [2440.84, 2002.39], [2441.22, 2003.03], [2437.69, 2005.1], [2442.65, 2013.6], [2458.78, 2004.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2190.7, 1348.5], [2183.75, 1343.95], [2178.83, 1351.46], [2185.77, 1356.01], [2190.7, 1348.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2552.83, 1729.03], [2544.84, 1728.75], [2544.47, 1739.4], [2552.47, 1739.68], [2552.83, 1729.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2137.02, 1256.67], [2132.1, 1251.75], [2127.63, 1256.21], [2132.55, 1261.13], [2137.02, 1256.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2400.41, 1351.71], [2397.23, 1349.25], [2393.46, 1354.13], [2396.64, 1356.59], [2400.41, 1351.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2303.31, 1556.77], [2300.25, 1554.84], [2297.43, 1559.33], [2300.49, 1561.25], [2303.31, 1556.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2428.59, 1513.95], [2421.76, 1508.99], [2414.24, 1519.32], [2421.07, 1524.29], [2428.59, 1513.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2340.16, 1467.24], [2346.29, 1457.89], [2345.4, 1457.3], [2347.75, 1453.7], [2341.73, 1449.76], [2340.16, 1452.16], [2339.12, 1451.49], [2332.52, 1461.55], [2334.63, 1462.94], [2333.42, 1464.8], [2337.08, 1467.19], [2337.99, 1465.81], [2340.16, 1467.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2504.19, 1365.21], [2499.93, 1360.08], [2496.0, 1363.34], [2495.19, 1362.37], [2488.37, 1368.05], [2494.86, 1375.86], [2501.79, 1370.11], [2500.36, 1368.38], [2504.19, 1365.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2586.14, 1737.29], [2580.0, 1735.53], [2576.89, 1746.41], [2584.23, 1748.5], [2586.6, 1740.19], [2585.42, 1739.85], [2586.14, 1737.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2133.43, 1375.52], [2126.46, 1370.6], [2124.81, 1372.95], [2123.93, 1372.34], [2121.58, 1375.69], [2122.81, 1376.55], [2121.04, 1379.07], [2122.79, 1380.3], [2121.5, 1382.12], [2126.37, 1385.55], [2133.43, 1375.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2398.84, 1238.67], [2395.02, 1233.64], [2388.23, 1238.79], [2392.04, 1243.82], [2398.84, 1238.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2658.39, 1428.15], [2658.5, 1425.46], [2663.3, 1425.65], [2663.63, 1417.39], [2652.76, 1416.96], [2652.4, 1425.91], [2655.81, 1426.04], [2655.74, 1428.05], [2658.39, 1428.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2401.46, 1304.67], [2397.0, 1299.17], [2385.75, 1308.33], [2390.21, 1313.83], [2401.46, 1304.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2287.73, 1475.38], [2284.33, 1472.67], [2282.59, 1474.84], [2281.4, 1473.88], [2273.62, 1483.66], [2280.74, 1489.33], [2288.53, 1479.56], [2286.0, 1477.55], [2287.73, 1475.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2764.4, 1674.44], [2764.88, 1671.89], [2766.54, 1672.2], [2768.42, 1662.3], [2759.54, 1660.62], [2757.85, 1669.53], [2759.35, 1669.83], [2758.68, 1673.36], [2764.4, 1674.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2013.64, 1454.55], [2005.65, 1446.6], [2003.48, 1448.78], [2002.51, 1447.83], [1993.58, 1456.81], [2002.59, 1465.78], [2010.43, 1457.9], [2010.37, 1457.84], [2013.64, 1454.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2673.81, 1706.12], [2667.47, 1704.78], [2666.1, 1711.24], [2672.45, 1712.58], [2673.81, 1706.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2568.59, 1391.43], [2564.33, 1391.23], [2564.0, 1398.46], [2568.27, 1398.66], [2568.59, 1391.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2695.09, 1787.74], [2691.65, 1786.95], [2690.39, 1792.42], [2693.82, 1793.21], [2695.09, 1787.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2430.36, 1428.94], [2425.35, 1425.58], [2420.45, 1432.89], [2428.59, 1438.36], [2432.79, 1432.11], [2429.65, 1430.01], [2430.36, 1428.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2071.07, 1403.26], [2066.36, 1400.32], [2063.74, 1404.52], [2068.45, 1407.45], [2071.07, 1403.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2821.07, 1460.31], [2814.09, 1460.05], [2813.67, 1471.17], [2814.64, 1471.21], [2814.59, 1472.66], [2820.59, 1472.88], [2821.07, 1460.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2650.29, 1553.66], [2645.46, 1553.47], [2645.11, 1562.42], [2649.93, 1562.6], [2650.29, 1553.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2426.65, 1909.1], [2429.75, 1907.31], [2428.54, 1905.24], [2431.98, 1903.25], [2429.96, 1899.77], [2431.34, 1898.98], [2428.89, 1894.78], [2419.53, 1900.2], [2424.39, 1908.54], [2425.83, 1907.71], [2426.65, 1909.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2529.93, 1891.28], [2523.87, 1891.39], [2524.01, 1899.12], [2529.18, 1899.03], [2529.22, 1901.11], [2542.36, 1900.86], [2542.22, 1893.95], [2533.62, 1894.12], [2533.59, 1892.26], [2529.96, 1892.33], [2529.93, 1891.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2660.72, 1475.72], [2656.66, 1475.51], [2656.37, 1481.34], [2660.43, 1481.55], [2660.72, 1475.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2566.95, 1551.85], [2561.17, 1551.54], [2560.83, 1558.28], [2566.6, 1558.58], [2566.95, 1551.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2343.25, 1356.93], [2338.9, 1352.85], [2337.23, 1354.63], [2336.21, 1353.69], [2327.67, 1362.83], [2334.48, 1369.19], [2343.15, 1359.93], [2341.71, 1358.58], [2343.25, 1356.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2797.0, 1476.05], [2797.57, 1461.44], [2794.25, 1461.31], [2794.32, 1459.36], [2790.08, 1459.19], [2789.98, 1461.69], [2788.26, 1461.62], [2787.71, 1475.69], [2797.0, 1476.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2201.11, 1378.66], [2202.64, 1376.16], [2205.41, 1377.84], [2208.93, 1372.08], [2203.0, 1368.47], [2199.9, 1373.57], [2200.44, 1373.91], [2198.51, 1377.08], [2201.11, 1378.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2393.87, 1193.5], [2391.69, 1190.46], [2385.92, 1194.59], [2388.11, 1197.63], [2393.87, 1193.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2494.24, 1491.33], [2487.82, 1490.64], [2487.33, 1495.24], [2493.75, 1495.93], [2494.24, 1491.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2067.08, 1336.33], [2058.35, 1325.77], [2052.75, 1330.41], [2053.96, 1331.87], [2051.68, 1333.75], [2059.2, 1342.84], [2067.08, 1336.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2338.64, 1447.34], [2334.06, 1444.14], [2332.95, 1445.74], [2331.12, 1444.47], [2325.91, 1451.93], [2326.46, 1452.3], [2323.71, 1456.24], [2325.72, 1457.63], [2323.62, 1460.64], [2328.93, 1464.34], [2338.7, 1450.32], [2337.26, 1449.32], [2338.64, 1447.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2159.29, 1439.27], [2156.48, 1437.18], [2155.45, 1438.55], [2153.94, 1437.43], [2148.3, 1444.98], [2155.2, 1450.13], [2161.32, 1441.93], [2158.74, 1440.02], [2159.29, 1439.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2337.82, 1509.85], [2329.29, 1504.41], [2327.77, 1506.8], [2325.77, 1505.52], [2322.93, 1509.97], [2335.25, 1517.83], [2338.15, 1513.29], [2336.36, 1512.14], [2337.82, 1509.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2281.55, 1324.54], [2282.96, 1323.13], [2283.81, 1323.96], [2293.48, 1314.21], [2286.88, 1307.66], [2277.25, 1317.36], [2281.08, 1321.17], [2279.63, 1322.64], [2281.55, 1324.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2631.31, 1717.36], [2631.72, 1715.25], [2628.03, 1714.53], [2627.58, 1716.88], [2622.85, 1715.95], [2620.75, 1726.79], [2630.31, 1728.66], [2632.47, 1717.6], [2631.31, 1717.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2351.03, 1243.48], [2346.88, 1237.65], [2337.83, 1244.11], [2341.99, 1249.94], [2351.03, 1243.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2306.88, 1290.81], [2309.86, 1287.57], [2311.0, 1288.61], [2317.55, 1281.5], [2311.46, 1275.89], [2305.77, 1282.06], [2304.6, 1281.0], [2302.57, 1283.21], [2303.97, 1284.49], [2302.15, 1286.47], [2306.88, 1290.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2317.2, 1353.24], [2321.17, 1348.89], [2321.69, 1349.36], [2328.0, 1342.46], [2322.05, 1337.02], [2311.76, 1348.27], [2317.2, 1353.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2703.56, 1714.5], [2697.21, 1713.3], [2696.39, 1717.66], [2702.73, 1718.86], [2703.56, 1714.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2077.71, 1411.25], [2072.34, 1407.51], [2068.56, 1412.95], [2073.93, 1416.69], [2077.71, 1411.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2366.28, 1467.69], [2356.02, 1460.73], [2350.96, 1468.19], [2363.64, 1476.79], [2366.92, 1471.94], [2364.5, 1470.29], [2366.28, 1467.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2546.6, 1463.71], [2546.55, 1461.27], [2550.28, 1461.19], [2550.1, 1453.62], [2551.42, 1453.59], [2551.26, 1446.55], [2541.11, 1446.79], [2541.52, 1463.83], [2546.6, 1463.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2738.2, 1554.02], [2738.24, 1551.73], [2739.95, 1551.76], [2740.22, 1538.06], [2730.98, 1537.87], [2730.72, 1550.76], [2733.41, 1550.82], [2733.34, 1553.92], [2738.2, 1554.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2353.3, 1586.1], [2350.59, 1584.16], [2347.47, 1588.52], [2350.18, 1590.45], [2353.3, 1586.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2511.47, 1928.26], [2503.22, 1928.24], [2503.16, 1942.2], [2511.42, 1942.23], [2511.47, 1928.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2778.17, 1433.14], [2778.27, 1431.15], [2784.15, 1431.43], [2784.67, 1420.31], [2782.69, 1420.21], [2782.81, 1417.65], [2773.73, 1417.22], [2773.64, 1419.19], [2769.83, 1419.0], [2769.3, 1430.09], [2774.01, 1430.31], [2773.89, 1432.94], [2778.17, 1433.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2217.85, 1125.6], [2211.94, 1120.72], [2210.05, 1122.99], [2215.96, 1127.88], [2217.85, 1125.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2616.97, 1659.52], [2609.56, 1658.06], [2607.08, 1670.68], [2614.49, 1672.13], [2616.97, 1659.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1964.16, 1389.08], [1959.75, 1384.35], [1955.44, 1388.35], [1959.85, 1393.08], [1964.16, 1389.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2622.4, 1702.37], [2618.43, 1701.54], [2617.15, 1707.6], [2621.12, 1708.44], [2622.4, 1702.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2415.39, 1212.68], [2423.72, 1223.22], [2431.89, 1216.78], [2423.56, 1206.22], [2415.39, 1212.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2699.83, 1431.77], [2700.25, 1424.05], [2695.71, 1423.8], [2695.76, 1422.99], [2686.86, 1422.52], [2686.72, 1425.1], [2684.68, 1424.99], [2684.44, 1429.28], [2686.86, 1429.41], [2686.77, 1431.06], [2699.83, 1431.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2003.2, 1441.71], [1998.1, 1436.53], [1988.3, 1446.16], [1989.4, 1447.28], [1984.33, 1452.25], [1988.76, 1456.75], [2001.44, 1444.29], [2001.02, 1443.86], [2003.2, 1441.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2057.39, 1402.8], [2051.76, 1399.67], [2049.91, 1403.0], [2055.54, 1406.13], [2057.39, 1402.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2358.87, 1184.1], [2353.95, 1177.67], [2345.87, 1183.84], [2350.8, 1190.28], [2358.87, 1184.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2729.69, 1458.96], [2721.79, 1458.98], [2721.81, 1468.37], [2723.56, 1468.37], [2723.57, 1471.94], [2729.71, 1471.92], [2729.69, 1458.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2394.05, 1428.16], [2397.36, 1423.55], [2395.33, 1422.09], [2396.3, 1420.73], [2389.47, 1415.84], [2384.54, 1422.73], [2391.4, 1427.65], [2392.05, 1426.73], [2394.05, 1428.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2660.01, 1396.74], [2660.09, 1395.29], [2663.02, 1395.46], [2663.54, 1386.34], [2661.85, 1386.24], [2661.95, 1384.48], [2655.61, 1384.13], [2654.91, 1396.46], [2660.01, 1396.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2299.18, 1097.53], [2294.83, 1093.53], [2290.23, 1098.52], [2294.58, 1102.52], [2299.18, 1097.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2821.02, 1512.54], [2813.72, 1510.65], [2811.54, 1519.0], [2818.84, 1520.91], [2821.02, 1512.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2327.16, 2001.46], [2324.93, 1997.64], [2318.75, 2001.22], [2320.98, 2005.05], [2327.16, 2001.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2783.97, 1471.49], [2784.14, 1459.43], [2781.44, 1459.39], [2781.45, 1458.56], [2774.63, 1458.46], [2774.45, 1471.46], [2777.34, 1471.5], [2777.35, 1470.53], [2781.41, 1470.58], [2781.41, 1471.45], [2783.97, 1471.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2738.42, 1801.03], [2728.94, 1798.96], [2727.19, 1807.01], [2736.66, 1809.08], [2738.42, 1801.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2103.57, 1306.48], [2095.97, 1296.65], [2088.86, 1302.13], [2096.47, 1311.97], [2103.57, 1306.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2351.52, 1366.27], [2345.83, 1361.47], [2338.57, 1370.08], [2344.26, 1374.88], [2351.52, 1366.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2351.92, 1489.1], [2340.26, 1481.85], [2338.94, 1483.98], [2339.81, 1484.52], [2338.49, 1486.66], [2339.58, 1487.33], [2337.85, 1490.11], [2349.24, 1497.2], [2351.81, 1493.04], [2350.12, 1491.99], [2351.92, 1489.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2490.5, 1802.74], [2481.66, 1800.36], [2474.99, 1825.39], [2484.25, 1827.75], [2490.5, 1802.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2535.94, 1476.81], [2535.05, 1467.57], [2528.47, 1468.2], [2529.36, 1477.44], [2535.94, 1476.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2372.54, 1612.71], [2376.34, 1607.16], [2373.84, 1605.44], [2376.25, 1601.9], [2372.04, 1599.02], [2364.89, 1609.44], [2368.62, 1612.01], [2369.55, 1610.66], [2372.54, 1612.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2467.76, 1320.31], [2465.36, 1317.14], [2463.54, 1318.53], [2461.97, 1316.47], [2454.54, 1322.09], [2458.51, 1327.32], [2465.94, 1321.69], [2467.76, 1320.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1981.88, 1470.36], [1979.78, 1468.28], [1978.88, 1469.18], [1977.35, 1467.66], [1971.48, 1473.54], [1983.06, 1485.06], [1988.46, 1479.61], [1980.52, 1471.72], [1981.88, 1470.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1859.15, 1554.15], [1867.88, 1544.44], [1861.92, 1539.07], [1851.7, 1550.41], [1855.52, 1553.85], [1856.99, 1552.21], [1859.15, 1554.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2367.17, 1542.91], [2362.81, 1540.03], [2359.92, 1544.39], [2364.29, 1547.28], [2367.17, 1542.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2210.0, 1412.28], [2206.09, 1409.78], [2202.82, 1414.88], [2206.73, 1417.39], [2210.0, 1412.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2208.79, 1172.41], [2204.71, 1168.37], [2200.17, 1172.93], [2204.25, 1176.98], [2208.79, 1172.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2438.83, 1425.05], [2433.91, 1417.83], [2428.83, 1421.3], [2433.74, 1428.52], [2438.83, 1425.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1878.4, 1450.82], [1889.05, 1460.62], [1894.68, 1454.59], [1892.07, 1452.24], [1892.45, 1451.81], [1884.55, 1444.35], [1878.4, 1450.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1954.7, 1514.91], [1944.42, 1504.84], [1939.89, 1509.46], [1950.17, 1519.54], [1954.7, 1514.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2080.33, 1402.25], [2081.49, 1400.36], [2083.98, 1401.91], [2091.5, 1389.76], [2087.85, 1387.49], [2086.2, 1390.15], [2082.23, 1387.69], [2078.27, 1394.1], [2078.98, 1394.54], [2077.31, 1397.25], [2079.06, 1398.33], [2077.65, 1400.61], [2080.33, 1402.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2259.53, 1416.3], [2261.72, 1413.0], [2263.8, 1414.39], [2272.54, 1401.22], [2265.85, 1396.78], [2257.8, 1408.94], [2257.96, 1409.04], [2257.13, 1410.29], [2258.22, 1411.01], [2256.18, 1414.08], [2259.53, 1416.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2470.33, 1950.75], [2470.06, 1944.6], [2465.11, 1944.83], [2465.39, 1950.98], [2470.33, 1950.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2336.59, 1126.06], [2337.69, 1124.68], [2339.09, 1125.77], [2343.66, 1119.96], [2337.26, 1114.93], [2336.49, 1115.91], [2335.54, 1115.16], [2332.09, 1119.54], [2333.24, 1120.44], [2331.79, 1122.3], [2336.59, 1126.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2549.49, 1602.55], [2548.92, 1594.43], [2541.96, 1594.93], [2542.53, 1602.86], [2538.66, 1603.14], [2539.61, 1616.39], [2549.08, 1615.71], [2548.15, 1602.65], [2549.49, 1602.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2460.3, 2045.07], [2455.77, 2037.64], [2449.04, 2041.75], [2454.45, 2050.63], [2458.33, 2048.26], [2457.44, 2046.81], [2460.3, 2045.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2786.66, 1557.07], [2776.27, 1557.09], [2776.28, 1564.48], [2788.83, 1564.46], [2788.82, 1561.4], [2786.65, 1561.41], [2786.66, 1557.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2235.71, 1457.39], [2243.64, 1446.8], [2240.84, 1444.7], [2242.94, 1441.9], [2240.1, 1439.78], [2238.11, 1442.43], [2236.27, 1441.05], [2228.34, 1451.67], [2230.32, 1453.14], [2229.42, 1454.34], [2232.4, 1456.57], [2233.19, 1455.51], [2235.71, 1457.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2576.1, 1449.63], [2568.49, 1449.07], [2567.36, 1464.27], [2570.63, 1464.51], [2570.32, 1468.83], [2574.65, 1469.15], [2576.1, 1449.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2437.03, 2033.36], [2434.17, 2028.58], [2431.64, 2030.09], [2434.51, 2034.87], [2437.03, 2033.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2494.78, 1426.45], [2492.1, 1422.45], [2490.21, 1423.72], [2487.73, 1420.03], [2484.27, 1422.35], [2483.65, 1421.42], [2480.6, 1423.47], [2481.39, 1424.62], [2477.8, 1427.02], [2482.81, 1434.49], [2494.78, 1426.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2656.41, 1702.39], [2644.43, 1699.68], [2642.99, 1706.07], [2654.97, 1708.78], [2656.41, 1702.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2436.74, 1533.97], [2439.19, 1530.68], [2440.82, 1531.89], [2446.52, 1524.25], [2440.02, 1519.4], [2434.99, 1526.12], [2435.82, 1526.74], [2432.68, 1530.95], [2436.74, 1533.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2428.94, 1565.92], [2424.01, 1563.03], [2420.68, 1568.72], [2425.61, 1571.61], [2428.94, 1565.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2460.64, 1291.4], [2457.19, 1294.16], [2461.14, 1299.08], [2464.59, 1296.31], [2460.64, 1291.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2674.01, 1454.37], [2664.76, 1454.27], [2664.59, 1468.87], [2673.84, 1468.97], [2674.01, 1454.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2566.1, 1448.48], [2557.38, 1448.04], [2556.7, 1461.84], [2565.41, 1462.27], [2566.1, 1448.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2040.9, 1499.81], [2034.96, 1493.69], [2023.24, 1505.05], [2029.18, 1511.18], [2040.9, 1499.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1819.57, 1501.16], [1815.95, 1498.26], [1806.95, 1509.46], [1813.71, 1514.9], [1821.33, 1505.43], [1820.56, 1504.81], [1821.27, 1503.92], [1818.88, 1502.01], [1819.57, 1501.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2592.47, 1383.46], [2592.56, 1381.55], [2595.14, 1381.67], [2595.79, 1367.68], [2587.08, 1367.26], [2586.39, 1381.94], [2590.22, 1382.11], [2590.16, 1383.35], [2592.47, 1383.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2332.56, 1492.53], [2335.05, 1488.44], [2324.98, 1482.31], [2321.54, 1487.96], [2327.14, 1491.38], [2328.1, 1489.81], [2332.56, 1492.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2279.42, 1311.19], [2284.78, 1304.61], [2279.71, 1300.49], [2276.03, 1304.99], [2273.28, 1302.75], [2269.21, 1307.74], [2272.08, 1310.07], [2274.46, 1307.14], [2279.42, 1311.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2307.82, 1329.68], [2310.9, 1326.37], [2307.68, 1323.37], [2304.01, 1327.3], [2302.23, 1325.64], [2295.19, 1333.18], [2301.37, 1338.95], [2309.0, 1330.78], [2307.82, 1329.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2082.92, 1404.99], [2090.91, 1410.7], [2099.04, 1398.86], [2098.24, 1398.28], [2099.3, 1396.81], [2093.09, 1392.67], [2091.96, 1394.35], [2091.0, 1393.66], [2082.92, 1404.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2433.31, 1385.17], [2426.65, 1375.81], [2420.38, 1380.26], [2427.04, 1389.63], [2433.31, 1385.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2824.68, 1492.26], [2819.45, 1491.05], [2818.24, 1496.34], [2823.47, 1497.55], [2824.68, 1492.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2729.18, 1599.92], [2729.14, 1597.6], [2731.34, 1597.56], [2731.26, 1593.48], [2729.61, 1593.51], [2729.58, 1592.13], [2718.23, 1592.33], [2718.37, 1600.12], [2729.18, 1599.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2289.38, 1090.11], [2284.66, 1085.92], [2280.31, 1090.82], [2285.04, 1095.01], [2289.38, 1090.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2399.55, 1203.84], [2395.71, 1199.35], [2390.61, 1203.69], [2394.45, 1208.2], [2399.55, 1203.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2671.13, 1635.64], [2665.75, 1634.6], [2663.52, 1646.25], [2668.9, 1647.28], [2671.13, 1635.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2413.36, 1228.58], [2418.81, 1234.67], [2423.02, 1230.89], [2417.56, 1224.81], [2413.36, 1228.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2559.17, 1493.32], [2559.28, 1490.18], [2555.78, 1490.06], [2555.68, 1492.71], [2553.34, 1492.64], [2552.95, 1503.78], [2561.33, 1504.07], [2561.69, 1493.4], [2559.17, 1493.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2003.64, 1549.71], [1999.81, 1545.3], [1995.78, 1548.81], [1999.61, 1553.21], [2003.64, 1549.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2743.04, 1499.57], [2733.42, 1499.26], [2732.98, 1513.13], [2742.6, 1513.44], [2743.04, 1499.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2375.14, 1518.16], [2363.71, 1510.02], [2359.83, 1515.47], [2362.36, 1517.27], [2361.11, 1519.01], [2370.02, 1525.35], [2375.14, 1518.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2411.35, 1191.44], [2405.93, 1184.65], [2398.75, 1190.38], [2404.16, 1197.18], [2411.35, 1191.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2451.8, 1373.11], [2448.36, 1368.53], [2445.95, 1370.33], [2444.33, 1368.17], [2436.92, 1373.72], [2441.97, 1380.47], [2451.8, 1373.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1778.12, 1466.98], [1780.7, 1465.29], [1781.58, 1466.65], [1783.96, 1465.1], [1782.98, 1463.6], [1784.95, 1462.31], [1777.72, 1451.29], [1770.81, 1455.83], [1778.12, 1466.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2649.25, 1804.67], [2649.58, 1803.04], [2652.88, 1803.73], [2654.56, 1795.64], [2652.74, 1795.27], [2652.5, 1796.41], [2647.47, 1795.36], [2647.79, 1793.84], [2643.46, 1792.94], [2643.15, 1794.44], [2640.49, 1793.88], [2639.47, 1798.78], [2640.65, 1799.02], [2640.25, 1800.96], [2646.3, 1802.21], [2645.94, 1803.99], [2649.25, 1804.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2280.7, 1080.81], [2275.7, 1076.37], [2271.36, 1081.27], [2276.36, 1085.71], [2280.7, 1080.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2659.27, 1718.18], [2650.41, 1716.37], [2647.73, 1729.49], [2656.6, 1731.3], [2659.27, 1718.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2137.31, 1323.19], [2129.67, 1317.85], [2125.52, 1323.79], [2135.63, 1330.86], [2138.68, 1326.48], [2136.22, 1324.76], [2137.31, 1323.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2555.82, 2063.48], [2555.46, 2057.18], [2553.14, 2057.31], [2553.01, 2054.93], [2541.85, 2055.56], [2542.33, 2064.24], [2555.82, 2063.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2546.16, 1971.6], [2545.86, 1965.83], [2533.79, 1966.47], [2534.19, 1974.19], [2543.9, 1973.68], [2543.79, 1971.72], [2546.16, 1971.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2415.11, 1971.52], [2412.88, 1967.57], [2407.5, 1970.6], [2409.73, 1974.55], [2415.11, 1971.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2487.86, 1351.54], [2483.57, 1346.1], [2476.34, 1351.81], [2480.62, 1357.25], [2487.86, 1351.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2482.18, 1301.44], [2487.92, 1308.04], [2500.23, 1297.68], [2494.55, 1290.93], [2489.44, 1295.23], [2489.07, 1294.78], [2485.02, 1298.19], [2485.44, 1298.69], [2482.18, 1301.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2706.05, 1769.9], [2699.34, 1768.39], [2696.52, 1780.94], [2697.45, 1781.15], [2696.66, 1784.71], [2702.43, 1786.0], [2706.05, 1769.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2000.0, 1522.61], [2003.54, 1518.86], [2002.4, 1517.78], [2003.97, 1516.11], [1997.55, 1510.06], [1996.84, 1510.82], [1994.94, 1509.02], [1989.71, 1514.57], [1997.9, 1522.28], [1998.73, 1521.42], [2000.0, 1522.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2553.39, 1592.31], [2553.05, 1584.12], [2543.14, 1584.54], [2543.48, 1592.73], [2553.39, 1592.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2364.22, 1886.42], [2362.27, 1882.83], [2356.48, 1885.99], [2358.43, 1889.58], [2364.22, 1886.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2427.71, 2024.69], [2423.71, 2017.87], [2417.45, 2021.54], [2421.45, 2028.36], [2427.71, 2024.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2271.76, 1425.57], [2268.96, 1423.89], [2264.53, 1431.25], [2267.33, 1432.94], [2271.76, 1425.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2438.32, 1481.42], [2445.36, 1469.45], [2438.1, 1465.17], [2429.88, 1479.15], [2433.8, 1481.45], [2434.98, 1479.46], [2438.32, 1481.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2118.81, 1435.49], [2112.23, 1431.29], [2110.01, 1434.75], [2112.98, 1436.65], [2112.38, 1437.6], [2115.98, 1439.91], [2118.81, 1435.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2165.1, 1328.7], [2158.81, 1324.68], [2153.17, 1333.52], [2159.46, 1337.53], [2165.1, 1328.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2066.97, 1291.98], [2063.52, 1287.86], [2059.02, 1291.63], [2062.48, 1295.76], [2066.97, 1291.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2186.99, 1455.95], [2181.41, 1452.23], [2172.88, 1464.99], [2179.45, 1469.38], [2186.42, 1458.93], [2185.43, 1458.27], [2186.99, 1455.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2457.52, 1411.48], [2451.96, 1403.83], [2448.54, 1406.32], [2447.46, 1404.82], [2443.66, 1407.58], [2450.32, 1416.72], [2457.52, 1411.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2775.46, 1618.17], [2764.2, 1616.4], [2762.83, 1625.1], [2775.68, 1627.13], [2776.82, 1619.97], [2775.21, 1619.71], [2775.46, 1618.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2499.05, 2065.39], [2494.38, 2057.71], [2484.44, 2063.75], [2489.11, 2071.43], [2499.05, 2065.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2539.36, 1962.63], [2545.42, 1962.42], [2544.94, 1952.12], [2539.04, 1952.28], [2539.36, 1962.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2480.64, 1800.01], [2469.77, 1797.17], [2462.67, 1824.15], [2473.54, 1826.99], [2480.64, 1800.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2684.33, 1408.63], [2678.7, 1408.3], [2678.39, 1413.55], [2684.01, 1413.88], [2684.33, 1408.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2445.28, 1261.49], [2440.98, 1255.71], [2436.02, 1259.39], [2440.33, 1265.18], [2445.28, 1261.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2250.02, 1082.98], [2239.48, 1073.58], [2235.02, 1078.59], [2235.67, 1079.17], [2234.06, 1080.98], [2244.79, 1090.54], [2247.4, 1087.61], [2246.56, 1086.86], [2250.02, 1082.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2693.63, 1766.82], [2685.2, 1764.96], [2682.56, 1776.91], [2687.67, 1778.04], [2687.4, 1779.29], [2690.72, 1780.01], [2693.63, 1766.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2411.6, 1615.31], [2404.85, 1610.78], [2399.79, 1618.31], [2406.54, 1622.85], [2411.6, 1615.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2599.36, 1481.62], [2593.7, 1481.23], [2593.3, 1487.09], [2598.97, 1487.48], [2599.36, 1481.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2169.41, 1208.6], [2163.38, 1202.7], [2158.23, 1207.96], [2164.25, 1213.86], [2169.41, 1208.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1885.11, 1553.55], [1878.78, 1547.59], [1873.23, 1553.48], [1875.84, 1555.94], [1873.74, 1558.16], [1877.45, 1561.67], [1885.11, 1553.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2433.04, 1258.18], [2430.47, 1255.08], [2425.91, 1258.83], [2428.48, 1261.95], [2433.04, 1258.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2336.65, 1224.36], [2332.94, 1219.78], [2330.73, 1221.57], [2330.03, 1220.71], [2323.24, 1226.21], [2328.54, 1232.77], [2335.23, 1227.33], [2334.34, 1226.22], [2336.65, 1224.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2429.63, 1344.8], [2424.41, 1337.55], [2414.73, 1344.51], [2419.94, 1351.77], [2429.63, 1344.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2420.06, 1554.38], [2417.25, 1552.67], [2412.4, 1560.63], [2417.14, 1563.53], [2420.87, 1557.41], [2418.94, 1556.24], [2420.06, 1554.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2667.91, 1539.29], [2668.03, 1537.16], [2662.42, 1536.88], [2662.3, 1539.31], [2661.05, 1539.25], [2660.42, 1552.06], [2669.11, 1552.49], [2669.76, 1539.38], [2667.91, 1539.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2335.55, 1241.63], [2342.84, 1236.38], [2343.37, 1237.12], [2346.36, 1234.97], [2343.11, 1230.46], [2340.82, 1232.11], [2337.58, 1227.62], [2329.6, 1233.36], [2335.55, 1241.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2137.82, 1359.17], [2133.44, 1356.48], [2130.15, 1361.84], [2134.52, 1364.53], [2137.82, 1359.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2462.77, 2123.44], [2466.74, 2130.39], [2480.37, 2122.25], [2476.4, 2115.3], [2462.77, 2123.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2499.72, 1931.19], [2491.68, 1931.33], [2491.92, 1944.9], [2494.81, 1944.85], [2494.85, 1947.51], [2500.0, 1947.42], [2499.72, 1931.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2123.04, 1226.78], [2119.23, 1223.21], [2117.52, 1225.03], [2121.34, 1228.59], [2123.04, 1226.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2350.64, 1407.14], [2346.46, 1404.51], [2345.17, 1406.57], [2341.79, 1404.44], [2335.45, 1414.54], [2343.02, 1419.29], [2350.64, 1407.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2791.42, 1542.6], [2783.22, 1542.48], [2783.07, 1551.78], [2791.27, 1551.92], [2791.42, 1542.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2552.52, 1566.51], [2551.76, 1558.3], [2540.56, 1559.34], [2541.32, 1567.55], [2552.52, 1566.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2371.6, 1428.38], [2367.82, 1425.59], [2364.22, 1430.47], [2367.99, 1433.25], [2371.6, 1428.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2357.2, 1321.82], [2350.96, 1316.09], [2342.1, 1325.73], [2348.34, 1331.46], [2357.2, 1321.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2159.1, 1395.64], [2152.57, 1390.76], [2147.55, 1397.48], [2154.08, 1402.36], [2159.1, 1395.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2297.94, 1551.3], [2299.07, 1549.7], [2299.96, 1550.33], [2308.21, 1538.72], [2303.27, 1535.21], [2300.88, 1533.51], [2292.23, 1545.69], [2294.46, 1547.27], [2293.72, 1548.3], [2297.94, 1551.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2770.13, 1462.2], [2761.81, 1461.85], [2761.44, 1470.55], [2769.77, 1470.9], [2770.13, 1462.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2035.88, 1310.41], [2032.25, 1305.83], [2029.03, 1308.37], [2032.67, 1312.95], [2035.88, 1310.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2462.99, 1942.2], [2462.6, 1930.43], [2455.1, 1930.68], [2455.5, 1942.46], [2462.99, 1942.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2258.81, 1477.36], [2260.64, 1474.94], [2262.53, 1476.38], [2269.15, 1467.63], [2264.36, 1464.01], [2264.0, 1464.49], [2262.23, 1463.14], [2254.15, 1473.82], [2258.81, 1477.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2426.48, 1438.63], [2420.44, 1434.66], [2415.83, 1441.66], [2421.86, 1445.63], [2426.48, 1438.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2256.22, 1227.57], [2251.82, 1222.7], [2248.87, 1225.38], [2253.28, 1230.24], [2256.22, 1227.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2412.99, 1349.79], [2407.52, 1342.08], [2402.08, 1345.95], [2404.66, 1349.57], [2405.37, 1349.07], [2408.27, 1353.14], [2412.99, 1349.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2388.81, 1286.73], [2382.77, 1279.03], [2372.62, 1287.0], [2378.67, 1294.7], [2388.81, 1286.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2162.44, 1364.12], [2157.46, 1360.52], [2154.91, 1364.03], [2159.89, 1367.65], [2162.44, 1364.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2289.23, 1525.9], [2281.42, 1520.94], [2278.21, 1525.98], [2279.24, 1526.64], [2276.47, 1531.0], [2283.24, 1535.31], [2289.23, 1525.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2822.13, 1503.56], [2816.18, 1502.12], [2814.43, 1509.33], [2820.39, 1510.76], [2822.13, 1503.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2650.59, 1392.24], [2649.59, 1381.43], [2641.96, 1382.13], [2642.7, 1390.13], [2639.4, 1390.45], [2639.97, 1396.6], [2638.56, 1396.74], [2638.93, 1400.78], [2643.1, 1400.39], [2642.79, 1397.06], [2646.66, 1396.7], [2646.27, 1392.64], [2650.59, 1392.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2594.89, 1509.81], [2594.92, 1509.19], [2599.2, 1509.37], [2599.26, 1507.88], [2601.75, 1507.98], [2602.12, 1499.43], [2593.46, 1499.06], [2593.0, 1509.73], [2594.89, 1509.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2328.35, 1552.55], [2322.62, 1548.36], [2320.93, 1550.66], [2320.59, 1550.4], [2318.92, 1552.69], [2318.2, 1552.16], [2315.67, 1555.62], [2316.61, 1556.31], [2314.53, 1559.14], [2320.78, 1563.71], [2327.43, 1554.62], [2327.05, 1554.35], [2328.35, 1552.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2403.48, 1541.33], [2399.82, 1538.78], [2395.84, 1544.49], [2399.49, 1547.04], [2403.48, 1541.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2303.11, 1320.12], [2299.03, 1315.87], [2297.05, 1317.91], [2294.86, 1315.62], [2287.45, 1322.75], [2293.66, 1329.21], [2303.11, 1320.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2123.72, 1368.98], [2116.16, 1363.66], [2108.87, 1374.01], [2116.43, 1379.33], [2123.72, 1368.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2712.56, 1745.86], [2714.97, 1733.45], [2707.61, 1732.03], [2707.14, 1734.43], [2709.19, 1734.83], [2708.8, 1736.83], [2706.71, 1736.43], [2705.97, 1740.25], [2707.28, 1740.51], [2706.46, 1744.67], [2712.56, 1745.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2231.12, 1117.78], [2228.17, 1114.75], [2223.89, 1118.9], [2226.83, 1121.94], [2231.12, 1117.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2443.58, 1424.74], [2446.28, 1422.85], [2445.44, 1421.63], [2447.89, 1419.92], [2442.46, 1412.14], [2440.16, 1413.75], [2439.09, 1412.21], [2433.73, 1415.93], [2439.42, 1424.08], [2441.02, 1422.95], [2441.59, 1423.78], [2442.48, 1423.17], [2443.58, 1424.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2275.35, 1100.49], [2269.82, 1095.37], [2263.65, 1102.06], [2269.18, 1107.16], [2275.35, 1100.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2309.12, 1445.74], [2310.83, 1443.25], [2312.59, 1444.45], [2319.29, 1434.73], [2313.16, 1430.51], [2311.95, 1432.27], [2310.99, 1431.61], [2305.78, 1439.18], [2307.25, 1440.18], [2305.25, 1443.08], [2309.12, 1445.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2422.1, 1264.78], [2417.32, 1258.48], [2409.96, 1264.06], [2414.74, 1270.36], [2422.1, 1264.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2390.64, 1405.02], [2387.19, 1401.65], [2383.15, 1405.81], [2386.6, 1409.17], [2390.64, 1405.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2258.88, 1212.71], [2255.36, 1208.75], [2252.86, 1210.97], [2256.39, 1214.94], [2258.88, 1212.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2515.98, 1365.08], [2512.45, 1359.95], [2507.72, 1363.22], [2511.25, 1368.35], [2515.98, 1365.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2462.1, 1310.25], [2458.29, 1305.36], [2448.47, 1312.98], [2453.69, 1319.7], [2461.08, 1313.97], [2459.66, 1312.14], [2462.1, 1310.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1902.18, 1450.74], [1904.34, 1448.2], [1906.36, 1449.92], [1909.39, 1446.37], [1905.74, 1443.26], [1907.29, 1441.45], [1899.95, 1435.2], [1893.22, 1443.11], [1902.18, 1450.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2771.39, 1640.94], [2761.57, 1639.01], [2760.03, 1646.84], [2771.15, 1649.03], [2772.15, 1643.98], [2770.84, 1643.72], [2771.39, 1640.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2505.38, 1894.58], [2504.89, 1885.29], [2495.85, 1885.76], [2496.65, 1900.88], [2504.08, 1900.49], [2503.77, 1894.66], [2505.38, 1894.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2587.86, 1532.94], [2578.18, 1532.77], [2577.89, 1550.25], [2587.56, 1550.42], [2587.86, 1532.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2342.21, 1585.72], [2337.93, 1582.89], [2334.1, 1588.68], [2338.37, 1591.51], [2342.21, 1585.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2335.14, 1112.42], [2328.05, 1106.1], [2321.83, 1113.06], [2323.91, 1114.92], [2321.68, 1117.41], [2326.69, 1121.9], [2335.14, 1112.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2441.19, 1569.79], [2435.67, 1566.37], [2432.1, 1572.13], [2437.63, 1575.55], [2441.19, 1569.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1791.3, 1457.63], [1793.63, 1456.13], [1794.38, 1457.28], [1796.65, 1455.81], [1795.6, 1454.19], [1797.76, 1452.8], [1790.44, 1441.43], [1783.67, 1445.79], [1791.3, 1457.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2659.87, 1491.09], [2655.33, 1490.9], [2655.06, 1497.39], [2659.59, 1497.58], [2659.87, 1491.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2144.13, 1398.11], [2145.13, 1396.66], [2145.97, 1397.23], [2152.81, 1387.29], [2144.87, 1381.82], [2138.16, 1391.58], [2138.57, 1391.86], [2137.43, 1393.51], [2144.13, 1398.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2244.13, 1342.06], [2228.36, 1331.52], [2223.78, 1338.36], [2239.55, 1348.9], [2244.13, 1342.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2351.79, 1124.99], [2347.39, 1120.39], [2340.39, 1127.09], [2347.53, 1134.56], [2353.07, 1129.26], [2350.34, 1126.39], [2351.79, 1124.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2653.6, 1669.82], [2645.51, 1667.83], [2642.89, 1678.47], [2650.99, 1680.45], [2653.6, 1669.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2391.36, 1929.36], [2384.58, 1918.28], [2377.49, 1922.62], [2384.26, 1933.7], [2391.36, 1929.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1957.9, 1502.36], [1955.68, 1500.28], [1954.28, 1501.77], [1951.32, 1499.01], [1950.6, 1499.77], [1948.59, 1497.9], [1946.16, 1500.49], [1948.35, 1502.54], [1946.61, 1504.41], [1956.12, 1513.29], [1960.49, 1508.61], [1955.99, 1504.41], [1957.9, 1502.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2073.6, 1261.38], [2067.24, 1253.42], [2060.01, 1259.19], [2066.37, 1267.16], [2073.6, 1261.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2438.75, 1380.47], [2433.93, 1373.67], [2430.51, 1376.09], [2435.34, 1382.89], [2438.75, 1380.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2586.59, 1690.26], [2582.17, 1689.13], [2580.64, 1695.1], [2585.06, 1696.23], [2586.59, 1690.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2488.45, 1859.66], [2481.73, 1858.08], [2480.2, 1864.59], [2486.91, 1866.16], [2488.45, 1859.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2167.01, 1216.73], [2162.02, 1212.06], [2157.31, 1217.09], [2162.31, 1221.76], [2167.01, 1216.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2699.73, 1743.17], [2701.8, 1730.95], [2695.12, 1729.81], [2694.98, 1730.68], [2692.85, 1730.33], [2692.47, 1732.6], [2690.82, 1732.31], [2690.0, 1737.11], [2691.06, 1737.28], [2690.32, 1741.58], [2699.73, 1743.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2371.54, 1382.67], [2368.59, 1379.87], [2367.27, 1381.28], [2363.36, 1377.6], [2356.45, 1384.92], [2363.31, 1391.38], [2371.54, 1382.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1935.64, 1472.99], [1927.03, 1465.35], [1923.22, 1469.63], [1931.84, 1477.27], [1935.64, 1472.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2457.82, 1246.94], [2453.01, 1240.36], [2443.22, 1247.52], [2445.37, 1250.46], [2444.35, 1251.2], [2447.01, 1254.85], [2457.82, 1246.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2249.57, 1243.56], [2245.28, 1239.78], [2243.03, 1242.31], [2247.33, 1246.1], [2249.57, 1243.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2692.41, 1593.37], [2672.82, 1592.41], [2672.63, 1598.11], [2674.35, 1598.15], [2674.33, 1600.92], [2692.04, 1601.73], [2692.41, 1593.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2629.79, 1482.13], [2622.89, 1481.92], [2622.69, 1488.07], [2629.59, 1488.3], [2629.79, 1482.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2284.79, 1360.41], [2278.18, 1356.04], [2271.2, 1366.57], [2271.35, 1366.67], [2270.05, 1368.62], [2276.51, 1372.91], [2284.79, 1360.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2406.2, 1499.31], [2406.57, 1498.75], [2403.44, 1496.67], [2401.64, 1499.4], [2400.28, 1498.5], [2395.44, 1505.8], [2402.73, 1510.64], [2409.01, 1501.18], [2406.2, 1499.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2228.4, 1148.98], [2224.88, 1144.73], [2220.22, 1148.58], [2223.74, 1152.83], [2228.4, 1148.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2073.15, 1273.64], [2069.51, 1268.59], [2066.91, 1270.47], [2070.55, 1275.51], [2073.15, 1273.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2237.98, 1414.01], [2239.07, 1412.19], [2239.73, 1412.57], [2243.13, 1406.86], [2239.54, 1404.71], [2235.03, 1412.24], [2237.98, 1414.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2408.35, 1580.24], [2409.77, 1578.39], [2411.79, 1579.94], [2417.6, 1572.37], [2412.62, 1568.55], [2410.78, 1570.95], [2408.78, 1569.4], [2404.48, 1575.01], [2406.65, 1576.67], [2405.57, 1578.09], [2408.35, 1580.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2656.96, 1398.83], [2651.95, 1398.51], [2651.59, 1404.12], [2656.6, 1404.45], [2656.96, 1398.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2376.77, 1318.78], [2371.97, 1314.74], [2367.56, 1319.96], [2372.36, 1324.02], [2376.77, 1318.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1967.13, 1438.51], [1962.45, 1434.0], [1961.81, 1434.66], [1959.02, 1431.96], [1958.21, 1432.79], [1957.59, 1432.2], [1955.48, 1434.38], [1956.56, 1435.43], [1954.42, 1437.66], [1963.13, 1446.07], [1967.58, 1441.46], [1965.88, 1439.8], [1967.13, 1438.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2047.23, 1532.24], [2042.01, 1526.61], [2036.84, 1531.4], [2042.06, 1537.02], [2047.23, 1532.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2642.48, 1535.36], [2632.84, 1534.96], [2632.2, 1550.32], [2641.85, 1550.72], [2642.48, 1535.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2674.08, 1418.49], [2665.92, 1418.24], [2665.64, 1427.1], [2673.8, 1427.35], [2674.08, 1418.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2378.81, 1408.5], [2374.5, 1404.78], [2370.84, 1409.03], [2375.15, 1412.74], [2378.81, 1408.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2392.35, 1352.94], [2385.83, 1346.78], [2377.67, 1355.42], [2384.2, 1361.57], [2392.35, 1352.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2438.53, 1519.44], [2431.91, 1514.47], [2426.71, 1521.38], [2428.01, 1522.36], [2425.44, 1525.79], [2430.76, 1529.78], [2438.53, 1519.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2601.7, 1452.31], [2601.83, 1449.76], [2597.85, 1449.55], [2597.74, 1451.75], [2594.93, 1451.61], [2594.31, 1463.8], [2596.91, 1463.94], [2596.83, 1465.73], [2602.67, 1466.03], [2603.37, 1452.4], [2601.7, 1452.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2274.84, 1545.43], [2256.96, 1533.87], [2252.42, 1540.88], [2272.42, 1553.82], [2274.21, 1551.05], [2272.09, 1549.68], [2274.84, 1545.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2528.2, 1330.96], [2522.78, 1324.14], [2520.63, 1325.85], [2519.67, 1324.63], [2515.48, 1327.97], [2515.84, 1328.43], [2510.76, 1332.46], [2516.78, 1340.04], [2528.2, 1330.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2408.59, 1313.81], [2404.23, 1307.53], [2392.06, 1315.98], [2397.01, 1323.1], [2407.42, 1315.87], [2406.83, 1315.03], [2408.59, 1313.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1806.95, 1505.35], [1814.81, 1496.95], [1811.38, 1493.73], [1808.06, 1497.28], [1806.75, 1496.05], [1802.2, 1500.92], [1806.95, 1505.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2713.5, 1789.25], [2713.79, 1788.0], [2716.3, 1788.57], [2719.15, 1775.94], [2711.45, 1774.2], [2710.77, 1777.21], [2708.93, 1776.79], [2707.94, 1781.12], [2709.04, 1781.37], [2707.97, 1786.11], [2710.1, 1786.6], [2709.69, 1788.39], [2713.5, 1789.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2816.01, 1490.33], [2811.19, 1490.02], [2810.76, 1496.68], [2815.58, 1496.99], [2816.01, 1490.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2466.72, 2112.99], [2462.2, 2105.42], [2452.13, 2111.42], [2454.06, 2114.66], [2452.5, 2115.58], [2455.08, 2119.92], [2466.72, 2112.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2220.92, 1266.04], [2216.55, 1262.11], [2214.02, 1264.9], [2218.4, 1268.85], [2220.92, 1266.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1914.47, 1490.12], [1907.45, 1483.69], [1902.97, 1488.6], [1906.31, 1491.66], [1905.5, 1492.55], [1912.36, 1498.83], [1916.66, 1494.15], [1913.46, 1491.23], [1914.47, 1490.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2637.47, 1427.6], [2636.3, 1411.28], [2627.5, 1411.9], [2628.43, 1424.91], [2631.86, 1424.66], [2632.1, 1427.99], [2637.47, 1427.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2678.8, 1675.86], [2670.32, 1674.23], [2668.24, 1685.05], [2676.73, 1686.67], [2678.8, 1675.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2748.2, 1695.44], [2739.57, 1693.74], [2737.68, 1703.38], [2746.3, 1705.07], [2748.2, 1695.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2128.42, 1443.12], [2124.01, 1440.45], [2121.12, 1445.19], [2125.53, 1447.87], [2128.42, 1443.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2074.6, 1327.8], [2067.8, 1319.79], [2062.1, 1324.63], [2068.89, 1332.64], [2074.6, 1327.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2111.93, 1298.33], [2102.88, 1287.54], [2097.45, 1292.08], [2106.5, 1302.89], [2111.93, 1298.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2625.51, 1675.44], [2627.85, 1662.76], [2620.97, 1661.49], [2620.06, 1666.45], [2619.01, 1666.26], [2617.93, 1672.14], [2618.09, 1672.17], [2617.75, 1674.02], [2625.51, 1675.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2300.27, 1423.0], [2294.4, 1419.27], [2289.87, 1426.39], [2295.73, 1430.12], [2300.27, 1423.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2206.71, 1492.15], [2203.14, 1489.95], [2199.23, 1496.3], [2207.4, 1501.33], [2210.84, 1495.75], [2206.24, 1492.92], [2206.71, 1492.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2485.67, 1442.61], [2489.02, 1440.92], [2489.56, 1442.0], [2500.43, 1436.51], [2497.09, 1429.91], [2494.96, 1430.98], [2494.43, 1429.94], [2486.23, 1434.08], [2487.01, 1435.62], [2484.64, 1436.82], [2485.34, 1438.2], [2483.82, 1438.96], [2485.67, 1442.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2397.76, 1228.35], [2392.43, 1221.18], [2382.27, 1228.73], [2387.6, 1235.91], [2397.76, 1228.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2270.89, 1074.17], [2265.9, 1069.04], [2258.75, 1076.01], [2263.74, 1081.13], [2270.89, 1074.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2375.94, 1337.83], [2369.66, 1331.92], [2359.84, 1342.33], [2366.12, 1348.24], [2375.94, 1337.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2143.42, 1338.91], [2137.8, 1335.2], [2133.33, 1341.98], [2138.94, 1345.69], [2143.42, 1338.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2325.78, 1141.29], [2330.36, 1135.97], [2334.9, 1139.88], [2338.68, 1135.48], [2331.2, 1129.04], [2322.83, 1138.74], [2325.78, 1141.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2385.37, 1439.65], [2374.15, 1432.28], [2370.0, 1438.58], [2381.22, 1445.96], [2385.37, 1439.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2671.82, 1571.52], [2665.33, 1571.24], [2665.13, 1576.07], [2671.62, 1576.33], [2671.82, 1571.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2296.68, 1560.35], [2291.16, 1556.57], [2287.94, 1561.28], [2293.45, 1565.06], [2296.68, 1560.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2124.64, 1416.35], [2117.7, 1412.05], [2113.64, 1418.61], [2120.58, 1422.91], [2124.64, 1416.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2213.95, 1161.98], [2209.24, 1157.69], [2207.9, 1159.16], [2208.88, 1160.06], [2207.17, 1161.93], [2210.9, 1165.33], [2213.95, 1161.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2085.73, 1917.24], [2081.44, 1912.99], [2074.91, 1919.57], [2075.5, 1920.15], [2072.26, 1923.42], [2077.79, 1928.9], [2086.48, 1920.11], [2084.67, 1918.32], [2085.73, 1917.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2135.9, 2092.69], [2140.7, 2087.84], [2134.09, 2081.31], [2129.3, 2086.15], [2135.9, 2092.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2037.33, 2269.5], [2032.5, 2265.03], [2031.09, 2266.56], [2030.65, 2266.15], [2022.39, 2275.05], [2027.65, 2279.93], [2037.33, 2269.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2067.52, 2069.45], [2061.95, 2063.73], [2056.48, 2069.07], [2062.05, 2074.78], [2067.52, 2069.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2058.54, 2060.39], [2053.19, 2054.34], [2046.78, 2060.01], [2052.13, 2066.07], [2058.54, 2060.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1993.82, 2138.84], [1989.68, 2134.15], [1986.94, 2136.6], [1991.07, 2141.27], [1993.82, 2138.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2115.74, 1914.44], [2110.48, 1909.81], [2104.36, 1916.75], [2109.61, 1921.4], [2115.74, 1914.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1444.41, 2506.72], [1462.74, 2500.42], [1460.3, 2493.34], [1459.14, 2493.74], [1457.21, 2488.12], [1439.57, 2494.19], [1441.23, 2499.05], [1439.23, 2499.74], [1441.69, 2506.88], [1442.97, 2506.44], [1444.41, 2506.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1825.37, 2112.64], [1827.75, 2110.38], [1829.29, 2111.99], [1833.32, 2108.16], [1823.48, 2097.81], [1820.11, 2101.0], [1818.77, 2099.61], [1815.73, 2102.5], [1825.37, 2112.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1197.98, 2630.42], [1194.33, 2624.2], [1195.36, 2623.59], [1190.28, 2614.95], [1188.79, 2615.83], [1185.26, 2609.82], [1176.19, 2615.13], [1179.79, 2621.25], [1178.92, 2621.75], [1182.08, 2627.11], [1186.39, 2624.58], [1191.91, 2633.94], [1197.98, 2630.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1760.34, 1941.35], [1753.75, 1934.91], [1750.36, 1938.4], [1750.97, 1938.99], [1745.13, 1944.97], [1751.09, 1950.79], [1760.34, 1941.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2188.74, 2214.96], [2183.34, 2209.28], [2172.31, 2219.78], [2177.72, 2225.46], [2188.74, 2214.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2166.47, 2172.06], [2161.49, 2167.33], [2157.09, 2171.96], [2162.06, 2176.7], [2166.47, 2172.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2204.85, 1973.61], [2202.36, 1971.12], [2200.33, 1973.15], [2198.94, 1971.76], [2200.43, 1970.26], [2198.21, 1968.04], [2191.09, 1975.19], [2191.7, 1975.81], [2189.12, 1978.4], [2194.62, 1983.88], [2204.85, 1973.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2022.0, 2204.08], [2017.72, 2200.16], [2013.71, 2204.53], [2017.99, 2208.45], [2022.0, 2204.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2164.58, 2084.03], [2158.06, 2077.53], [2146.25, 2089.38], [2152.77, 2095.89], [2164.58, 2084.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2067.97, 2257.42], [2069.63, 2255.67], [2070.51, 2256.52], [2074.16, 2252.68], [2073.41, 2251.96], [2074.2, 2251.12], [2068.88, 2246.06], [2062.77, 2252.48], [2067.97, 2257.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2143.19, 2262.48], [2140.37, 2259.72], [2135.15, 2265.04], [2137.98, 2267.8], [2143.19, 2262.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2063.76, 2092.59], [2059.13, 2087.56], [2055.46, 2090.93], [2054.75, 2090.17], [2047.68, 2096.69], [2053.03, 2102.48], [2063.76, 2092.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1879.38, 1974.27], [1874.97, 1970.23], [1873.14, 1972.22], [1872.13, 1971.29], [1869.74, 1973.9], [1869.01, 1973.23], [1865.81, 1976.74], [1867.5, 1978.3], [1866.04, 1979.9], [1869.68, 1983.24], [1869.36, 1983.58], [1870.83, 1984.92], [1877.93, 1977.18], [1877.27, 1976.57], [1879.38, 1974.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1933.2, 2168.92], [1928.61, 2163.75], [1921.95, 2169.67], [1926.55, 2174.84], [1933.2, 2168.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1692.85, 1951.67], [1686.4, 1945.0], [1680.33, 1950.87], [1686.78, 1957.55], [1692.85, 1951.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2367.95, 2201.13], [2371.16, 2198.17], [2372.23, 2199.31], [2375.44, 2196.36], [2371.22, 2191.8], [2367.62, 2195.12], [2366.54, 2193.95], [2364.25, 2196.07], [2363.05, 2194.77], [2360.03, 2197.57], [2361.27, 2198.91], [2358.13, 2201.81], [2358.84, 2202.59], [2357.56, 2203.77], [2362.13, 2208.71], [2369.04, 2202.33], [2367.95, 2201.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2117.05, 2100.52], [2118.94, 2098.55], [2120.39, 2099.95], [2123.09, 2097.14], [2111.42, 2085.9], [2106.83, 2090.68], [2117.05, 2100.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2180.53, 2185.29], [2177.7, 2182.37], [2170.87, 2189.0], [2173.69, 2191.92], [2180.53, 2185.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2306.56, 2110.2], [2302.08, 2105.5], [2293.17, 2114.02], [2297.64, 2118.71], [2306.56, 2110.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2227.82, 2174.83], [2224.84, 2171.93], [2220.51, 2176.39], [2223.49, 2179.3], [2227.82, 2174.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2289.61, 2075.76], [2284.61, 2070.75], [2283.65, 2071.71], [2282.71, 2070.77], [2275.66, 2077.8], [2281.6, 2083.75], [2289.61, 2075.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1892.05, 2035.94], [1896.85, 2030.9], [1895.97, 2030.06], [1897.45, 2028.5], [1893.7, 2024.93], [1891.38, 2027.38], [1890.57, 2026.6], [1886.88, 2030.47], [1887.89, 2031.44], [1886.87, 2032.51], [1889.77, 2035.28], [1890.52, 2034.49], [1892.05, 2035.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1825.7, 2143.29], [1819.44, 2137.54], [1815.05, 2142.34], [1809.86, 2137.57], [1805.69, 2142.11], [1811.09, 2147.07], [1810.35, 2147.88], [1816.41, 2153.43], [1825.7, 2143.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2424.86, 2232.42], [2420.06, 2227.86], [2415.64, 2232.52], [2420.44, 2237.08], [2424.86, 2232.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1977.06, 2292.62], [1975.15, 2290.64], [1973.88, 2291.87], [1972.34, 2290.27], [1964.86, 2297.48], [1965.82, 2298.47], [1964.51, 2299.73], [1969.34, 2304.75], [1978.35, 2296.05], [1976.02, 2293.64], [1977.06, 2292.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1912.82, 2030.31], [1910.66, 2028.04], [1906.13, 2032.37], [1908.3, 2034.63], [1912.82, 2030.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1849.99, 2121.19], [1844.67, 2115.55], [1836.46, 2123.31], [1841.78, 2128.95], [1849.99, 2121.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2241.79, 2179.77], [2238.02, 2176.05], [2233.36, 2180.77], [2237.13, 2184.5], [2241.79, 2179.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2159.82, 2184.49], [2155.45, 2180.01], [2143.13, 2192.0], [2148.65, 2197.66], [2157.65, 2188.88], [2156.51, 2187.71], [2159.82, 2184.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2071.88, 2444.32], [2065.85, 2439.01], [2060.79, 2444.75], [2063.21, 2446.87], [2059.24, 2451.37], [2062.85, 2454.57], [2071.88, 2444.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2191.74, 2224.75], [2194.69, 2221.53], [2189.88, 2217.13], [2187.06, 2220.24], [2191.74, 2224.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2179.08, 2031.68], [2183.88, 2026.96], [2184.58, 2027.67], [2187.78, 2024.53], [2186.72, 2023.46], [2190.86, 2019.41], [2185.86, 2014.31], [2181.55, 2018.55], [2180.67, 2017.65], [2177.47, 2020.8], [2178.2, 2021.54], [2175.68, 2024.01], [2176.43, 2024.78], [2174.32, 2026.84], [2179.08, 2031.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1970.72, 2148.27], [1964.24, 2142.13], [1958.47, 2148.21], [1964.95, 2154.35], [1970.72, 2148.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1849.21, 2100.56], [1845.6, 2096.86], [1842.55, 2099.85], [1846.15, 2103.55], [1849.21, 2100.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2163.75, 2113.2], [2170.57, 2119.79], [2187.17, 2102.08], [2180.59, 2095.55], [2163.75, 2113.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2154.85, 2546.0], [2149.89, 2541.52], [2146.89, 2544.83], [2151.84, 2549.32], [2154.85, 2546.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1914.12, 2148.23], [1909.09, 2143.43], [1906.98, 2145.64], [1906.6, 2145.27], [1898.66, 2153.6], [1900.41, 2155.27], [1899.78, 2155.93], [1903.92, 2159.9], [1912.39, 2151.02], [1911.9, 2150.56], [1914.12, 2148.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1987.66, 2382.6], [1995.76, 2374.11], [1990.03, 2368.65], [1980.54, 2378.59], [1983.49, 2381.4], [1984.87, 2379.94], [1987.66, 2382.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2121.96, 2488.3], [2116.87, 2483.42], [2114.86, 2485.52], [2114.04, 2484.74], [2107.53, 2491.52], [2114.24, 2497.95], [2121.05, 2490.84], [2120.25, 2490.08], [2121.96, 2488.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1983.18, 2177.84], [1987.73, 2173.25], [1985.38, 2170.92], [1986.46, 2169.83], [1978.99, 2162.41], [1972.57, 2168.88], [1980.82, 2177.07], [1981.61, 2176.28], [1983.18, 2177.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2425.3, 2249.68], [2420.13, 2244.72], [2409.4, 2255.89], [2414.56, 2260.86], [2425.3, 2249.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2079.2, 2038.75], [2073.44, 2032.97], [2067.49, 2038.89], [2073.25, 2044.68], [2079.2, 2038.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2224.88, 1997.3], [2219.92, 1993.08], [2218.4, 1994.87], [2217.67, 1994.25], [2211.76, 2001.22], [2217.45, 2006.05], [2224.88, 1997.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1299.12, 2115.11], [1276.59, 2110.4], [1275.14, 2117.34], [1297.66, 2122.06], [1299.12, 2115.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2217.86, 2194.17], [2214.09, 2190.72], [2211.72, 2193.32], [2215.49, 2196.76], [2217.86, 2194.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1182.03, 2806.29], [1182.26, 2812.49], [1194.47, 2812.02], [1194.24, 2805.81], [1182.03, 2806.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1751.59, 1921.32], [1749.09, 1918.79], [1744.56, 1923.27], [1747.06, 1925.8], [1751.59, 1921.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1880.21, 2046.76], [1883.21, 2043.79], [1883.95, 2044.53], [1886.49, 2042.02], [1880.26, 2035.72], [1874.71, 2041.22], [1880.21, 2046.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1209.09, 2482.07], [1211.14, 2486.62], [1218.08, 2483.49], [1216.02, 2478.94], [1209.09, 2482.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2434.91, 2255.98], [2432.04, 2252.86], [2429.12, 2255.53], [2428.47, 2254.83], [2418.49, 2264.02], [2422.79, 2268.68], [2433.38, 2258.93], [2432.61, 2258.09], [2434.91, 2255.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2131.45, 2570.83], [2121.94, 2561.94], [2119.43, 2564.62], [2121.99, 2567.02], [2118.16, 2571.12], [2125.11, 2577.61], [2131.45, 2570.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1721.05, 1964.45], [1714.83, 1958.57], [1712.62, 1960.9], [1711.57, 1959.91], [1705.27, 1966.57], [1712.56, 1973.45], [1721.05, 1964.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1675.66, 2209.19], [1752.49, 2192.82], [1747.77, 2168.42], [1709.03, 2176.89], [1704.15, 2155.14], [1666.06, 2163.36], [1675.66, 2209.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1906.11, 2021.19], [1900.91, 2015.96], [1896.04, 2020.8], [1901.24, 2026.02], [1906.11, 2021.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2105.7, 2263.21], [2102.7, 2260.01], [2098.03, 2264.41], [2101.03, 2267.6], [2105.7, 2263.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2157.12, 2007.0], [2164.1, 2013.45], [2175.82, 2000.86], [2169.03, 1994.44], [2157.12, 2007.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2090.29, 2030.32], [2087.78, 2027.55], [2084.15, 2030.82], [2086.66, 2033.6], [2090.29, 2030.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1248.69, 2578.43], [1251.99, 2584.19], [1257.25, 2581.16], [1253.95, 2575.42], [1248.69, 2578.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2292.98, 2120.02], [2288.94, 2116.73], [2280.15, 2127.51], [2285.5, 2131.86], [2292.91, 2122.76], [2291.61, 2121.7], [2292.98, 2120.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1738.95, 1981.91], [1734.54, 1977.61], [1726.43, 1985.94], [1730.84, 1990.24], [1738.95, 1981.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1623.82, 2437.21], [1636.91, 2434.46], [1631.23, 2404.61], [1617.3, 2408.5], [1623.82, 2437.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2128.72, 2143.45], [2125.76, 2140.51], [2119.9, 2146.44], [2122.86, 2149.37], [2128.72, 2143.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2148.49, 2254.97], [2158.66, 2244.65], [2152.71, 2238.79], [2141.71, 2249.96], [2143.69, 2251.91], [2144.53, 2251.07], [2148.49, 2254.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2078.49, 2077.22], [2073.08, 2071.53], [2069.85, 2074.6], [2068.46, 2073.14], [2063.56, 2077.81], [2070.37, 2084.96], [2078.49, 2077.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1972.86, 2066.69], [1967.96, 2061.42], [1960.63, 2068.23], [1965.53, 2073.5], [1972.86, 2066.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1269.4, 2722.09], [1269.92, 2734.58], [1275.74, 2734.31], [1275.9, 2737.84], [1274.1, 2737.92], [1274.53, 2747.29], [1284.24, 2746.82], [1283.64, 2735.27], [1284.94, 2735.24], [1284.37, 2721.48], [1282.0, 2721.58], [1281.97, 2720.31], [1273.75, 2720.69], [1273.83, 2721.88], [1269.4, 2722.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2070.8, 2163.83], [2064.77, 2157.89], [2056.83, 2165.97], [2062.85, 2171.9], [2070.8, 2163.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1941.25, 2179.71], [1936.44, 2175.05], [1931.6, 2180.06], [1936.4, 2184.71], [1941.25, 2179.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1889.88, 2052.91], [1894.43, 2048.22], [1889.65, 2043.54], [1885.15, 2048.2], [1889.88, 2052.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2254.09, 2190.76], [2266.92, 2177.54], [2262.03, 2172.94], [2249.48, 2185.92], [2254.09, 2190.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2175.33, 1961.73], [2182.02, 1955.23], [2182.44, 1955.66], [2185.01, 1953.16], [2178.7, 1946.66], [2177.06, 1948.25], [2176.88, 1948.07], [2174.35, 1950.53], [2174.0, 1950.16], [2171.96, 1952.14], [2172.66, 1952.87], [2169.61, 1955.83], [2175.33, 1961.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1970.28, 2133.61], [1968.34, 2131.26], [1966.37, 2132.89], [1964.82, 2131.01], [1959.99, 2134.99], [1963.49, 2139.21], [1970.28, 2133.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1946.13, 2039.32], [1941.19, 2034.5], [1931.63, 2044.28], [1932.09, 2044.72], [1930.57, 2046.28], [1935.05, 2050.65], [1946.13, 2039.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1272.92, 2647.72], [1287.86, 2637.41], [1279.96, 2625.92], [1271.79, 2631.54], [1275.06, 2636.29], [1268.28, 2640.96], [1272.92, 2647.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1955.99, 2048.79], [1950.15, 2043.19], [1940.21, 2053.58], [1946.04, 2059.17], [1955.99, 2048.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1913.42, 2170.72], [1910.26, 2167.65], [1905.92, 2172.12], [1909.08, 2175.19], [1913.42, 2170.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1874.03, 2194.11], [1871.43, 2191.41], [1869.97, 2192.81], [1866.86, 2189.58], [1860.27, 2195.92], [1865.99, 2201.86], [1874.03, 2194.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1806.76, 2132.2], [1809.2, 2129.57], [1810.63, 2130.9], [1813.54, 2127.76], [1812.12, 2126.46], [1812.97, 2125.54], [1802.56, 2115.9], [1799.1, 2119.64], [1799.9, 2120.38], [1798.18, 2122.24], [1798.94, 2122.94], [1797.94, 2124.02], [1806.76, 2132.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2031.53, 2203.52], [2027.25, 2199.59], [2023.57, 2203.61], [2027.85, 2207.54], [2031.53, 2203.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2210.06, 2232.35], [2207.66, 2230.17], [2208.81, 2228.83], [2205.66, 2225.9], [2206.01, 2225.48], [2201.39, 2221.17], [2200.98, 2221.57], [2199.11, 2219.78], [2193.44, 2225.61], [2205.5, 2237.14], [2210.06, 2232.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1709.46, 2306.05], [1726.9, 2302.23], [1728.63, 2310.14], [1747.13, 2306.1], [1733.21, 2242.39], [1720.51, 2245.17], [1718.02, 2233.74], [1686.45, 2240.64], [1694.38, 2276.92], [1691.76, 2277.49], [1700.3, 2316.53], [1711.23, 2314.13], [1709.46, 2306.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1920.1, 2102.42], [1914.48, 2097.3], [1909.36, 2102.93], [1914.98, 2108.05], [1920.1, 2102.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1415.39, 2676.08], [1423.86, 2674.88], [1423.02, 2668.91], [1414.53, 2670.12], [1415.39, 2676.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1241.81, 2590.31], [1248.4, 2586.31], [1246.05, 2582.48], [1243.51, 2584.01], [1237.06, 2573.56], [1230.33, 2577.7], [1231.07, 2578.87], [1228.1, 2580.71], [1229.21, 2582.5], [1228.78, 2582.78], [1229.89, 2584.57], [1230.33, 2584.3], [1231.43, 2586.09], [1230.62, 2586.6], [1232.08, 2588.98], [1232.91, 2588.47], [1234.07, 2590.35], [1239.7, 2586.86], [1241.81, 2590.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2042.49, 2297.22], [2039.15, 2294.1], [2035.06, 2298.47], [2038.4, 2301.59], [2042.49, 2297.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1601.18, 2329.94], [1606.2, 2329.53], [1605.13, 2316.49], [1600.11, 2316.9], [1601.18, 2329.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2228.56, 2042.57], [2233.47, 2037.57], [2229.33, 2033.51], [2227.38, 2035.5], [2223.85, 2032.03], [2219.61, 2036.35], [2223.12, 2039.8], [2224.41, 2038.48], [2228.56, 2042.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2110.05, 2335.8], [2098.05, 2323.59], [2092.09, 2329.43], [2104.11, 2341.64], [2110.05, 2335.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1896.49, 2130.5], [1890.36, 2124.32], [1879.36, 2135.23], [1885.48, 2141.41], [1896.49, 2130.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1904.08, 2081.43], [1897.9, 2075.33], [1889.53, 2083.81], [1890.44, 2084.71], [1888.83, 2086.34], [1894.1, 2091.54], [1904.08, 2081.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2100.69, 1908.93], [2093.95, 1902.15], [2087.3, 1908.76], [2094.05, 1915.54], [2100.69, 1908.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1159.17, 2652.85], [1163.55, 2657.24], [1169.69, 2651.11], [1165.3, 2646.73], [1159.17, 2652.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1925.93, 2233.72], [1917.35, 2225.54], [1912.96, 2230.14], [1915.48, 2232.55], [1914.4, 2233.68], [1920.47, 2239.45], [1925.93, 2233.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2387.31, 2189.48], [2385.09, 2187.19], [2381.01, 2191.15], [2383.23, 2193.44], [2387.31, 2189.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1918.5, 2245.49], [1911.19, 2238.48], [1907.83, 2242.0], [1905.23, 2239.52], [1902.46, 2242.41], [1905.25, 2245.07], [1906.27, 2244.01], [1913.39, 2250.83], [1918.5, 2245.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2230.47, 2008.48], [2225.52, 2004.02], [2217.98, 2012.36], [2219.39, 2013.64], [2218.49, 2014.63], [2220.27, 2016.23], [2218.3, 2018.4], [2222.6, 2022.3], [2227.44, 2016.94], [2224.9, 2014.65], [2230.47, 2008.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1810.33, 1907.94], [1804.61, 1902.19], [1801.7, 1905.08], [1801.19, 1904.58], [1794.86, 1910.88], [1795.99, 1912.03], [1792.86, 1915.14], [1797.94, 1920.25], [1810.33, 1907.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1791.0, 1889.24], [1787.04, 1885.27], [1777.94, 1894.37], [1783.58, 1899.99], [1791.05, 1892.52], [1789.38, 1890.86], [1791.0, 1889.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2159.45, 2111.63], [2156.46, 2109.14], [2152.31, 2114.09], [2155.29, 2116.58], [2159.45, 2111.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2145.97, 2155.15], [2140.92, 2150.43], [2136.42, 2155.22], [2141.48, 2159.95], [2145.97, 2155.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1834.77, 2103.36], [1837.43, 2100.82], [1838.37, 2101.8], [1840.96, 2099.34], [1840.28, 2098.62], [1841.24, 2097.71], [1830.76, 2086.71], [1827.71, 2089.62], [1828.75, 2090.71], [1826.86, 2092.52], [1827.52, 2093.21], [1826.25, 2094.43], [1834.77, 2103.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1874.21, 2182.24], [1871.31, 2179.64], [1867.7, 2183.65], [1870.61, 2186.26], [1874.21, 2182.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1091.64, 2565.57], [1107.62, 2559.78], [1104.4, 2550.61], [1110.47, 2548.46], [1106.37, 2536.86], [1088.75, 2542.99], [1093.44, 2556.14], [1088.88, 2557.79], [1091.64, 2565.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2168.65, 2253.78], [2161.35, 2246.89], [2151.5, 2257.36], [2158.79, 2264.24], [2168.65, 2253.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1892.19, 2186.64], [1887.88, 2182.05], [1883.24, 2186.42], [1887.55, 2191.01], [1892.19, 2186.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1981.78, 2247.66], [1977.29, 2242.58], [1974.31, 2245.21], [1978.8, 2250.29], [1981.78, 2247.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1889.17, 2061.36], [1882.56, 2054.58], [1870.47, 2066.7], [1877.34, 2073.41], [1889.17, 2061.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2438.26, 2245.53], [2433.95, 2241.28], [2429.67, 2245.63], [2433.98, 2249.87], [2438.26, 2245.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1172.59, 2747.99], [1179.71, 2747.64], [1179.36, 2741.37], [1172.24, 2741.72], [1172.59, 2747.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2216.04, 2199.29], [2211.23, 2194.39], [2208.56, 2197.02], [2213.37, 2201.92], [2216.04, 2199.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1758.99, 1998.28], [1754.93, 1993.96], [1752.14, 1996.57], [1751.55, 1995.95], [1743.1, 2003.89], [1746.67, 2007.69], [1745.2, 2009.07], [1748.59, 2012.68], [1759.21, 2002.69], [1756.91, 2000.24], [1758.99, 1998.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2109.35, 2139.51], [2104.94, 2134.95], [2097.46, 2142.17], [2102.81, 2147.71], [2108.87, 2141.85], [2107.93, 2140.89], [2109.35, 2139.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2019.02, 2349.31], [2027.38, 2341.49], [2024.83, 2338.77], [2023.47, 2340.03], [2018.96, 2335.22], [2011.64, 2342.08], [2015.09, 2345.76], [2015.41, 2345.46], [2019.02, 2349.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2135.42, 2549.52], [2130.21, 2544.8], [2128.0, 2547.25], [2133.21, 2551.97], [2135.42, 2549.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2099.33, 2055.36], [2093.85, 2049.71], [2084.36, 2058.91], [2089.84, 2064.57], [2099.33, 2055.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1839.92, 1939.31], [1833.39, 1933.1], [1823.75, 1943.23], [1826.02, 1945.39], [1823.55, 1947.98], [1827.81, 1952.03], [1839.92, 1939.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1803.45, 1927.46], [1800.69, 1924.55], [1796.44, 1928.6], [1799.2, 1931.51], [1803.45, 1927.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1124.39, 2368.1], [1133.05, 2377.72], [1141.28, 2370.34], [1138.2, 2366.93], [1148.93, 2357.27], [1143.34, 2351.07], [1124.39, 2368.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2354.24, 2199.41], [2362.76, 2191.44], [2362.0, 2190.62], [2363.25, 2189.45], [2359.86, 2185.82], [2357.95, 2187.61], [2356.25, 2185.79], [2347.08, 2194.35], [2351.05, 2198.61], [2352.36, 2197.39], [2354.24, 2199.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1809.4, 1982.68], [1807.44, 1980.66], [1805.63, 1982.41], [1803.63, 1980.34], [1796.06, 1987.65], [1796.81, 1988.42], [1793.04, 1992.07], [1798.41, 1997.63], [1810.34, 1986.11], [1808.17, 1983.86], [1809.4, 1982.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1877.18, 2137.81], [1874.46, 2135.32], [1870.46, 2139.69], [1873.18, 2142.18], [1877.18, 2137.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1324.04, 2150.62], [1303.5, 2146.16], [1308.27, 2124.19], [1300.73, 2122.55], [1295.8, 2145.16], [1301.65, 2146.43], [1300.14, 2153.39], [1322.38, 2158.23], [1324.04, 2150.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1199.98, 2730.75], [1199.58, 2723.86], [1189.35, 2724.46], [1188.95, 2723.97], [1186.7, 2724.09], [1186.24, 2724.63], [1183.28, 2724.81], [1183.75, 2734.28], [1195.25, 2733.61], [1195.17, 2731.03], [1199.98, 2730.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2183.12, 2499.09], [2177.09, 2493.51], [2172.98, 2497.98], [2179.01, 2503.54], [2183.12, 2499.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1937.08, 2125.67], [1941.78, 2120.82], [1934.89, 2114.15], [1929.27, 2119.97], [1934.93, 2125.43], [1935.85, 2124.49], [1937.08, 2125.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2034.35, 2207.81], [2035.15, 2206.91], [2036.09, 2207.75], [2038.9, 2204.6], [2041.77, 2207.17], [2046.96, 2201.37], [2040.74, 2195.81], [2031.94, 2205.65], [2034.35, 2207.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1143.95, 2648.95], [1141.59, 2645.78], [1141.12, 2646.14], [1137.57, 2641.38], [1135.91, 2642.64], [1133.09, 2638.86], [1124.0, 2645.7], [1126.57, 2649.14], [1124.96, 2650.31], [1131.14, 2658.56], [1143.48, 2649.29], [1143.95, 2648.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1854.64, 2095.75], [1849.87, 2090.55], [1845.36, 2094.69], [1850.13, 2099.89], [1854.64, 2095.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1875.04, 2112.98], [1869.0, 2106.3], [1862.15, 2112.48], [1868.19, 2119.17], [1875.04, 2112.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2048.63, 2241.48], [2050.12, 2240.11], [2050.7, 2240.72], [2059.26, 2232.85], [2058.7, 2232.25], [2061.51, 2229.67], [2057.87, 2225.73], [2055.03, 2228.33], [2053.14, 2226.29], [2044.52, 2234.21], [2045.73, 2235.52], [2044.33, 2236.81], [2048.63, 2241.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2330.44, 2154.43], [2323.95, 2148.22], [2312.29, 2160.08], [2312.25, 2162.54], [2317.6, 2167.4], [2330.44, 2154.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2108.15, 2104.61], [2110.03, 2102.65], [2111.47, 2104.02], [2113.41, 2102.0], [2112.76, 2101.38], [2113.78, 2100.31], [2105.26, 2092.17], [2100.43, 2097.23], [2108.15, 2104.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1154.69, 2663.85], [1152.66, 2661.81], [1151.76, 2662.7], [1145.58, 2656.46], [1138.6, 2663.28], [1147.11, 2671.89], [1154.08, 2665.06], [1153.78, 2664.75], [1154.69, 2663.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2139.21, 2168.83], [2133.87, 2164.15], [2131.94, 2166.36], [2130.8, 2165.36], [2122.97, 2174.27], [2129.45, 2179.96], [2139.21, 2168.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2161.18, 2269.88], [2169.06, 2277.52], [2178.41, 2267.88], [2170.52, 2260.24], [2161.18, 2269.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1902.9, 2217.89], [1897.07, 2212.13], [1888.4, 2220.88], [1894.23, 2226.65], [1902.9, 2217.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2229.03, 2476.01], [2234.07, 2471.16], [2232.14, 2469.17], [2232.91, 2468.44], [2226.02, 2461.26], [2219.63, 2467.4], [2226.93, 2475.01], [2227.53, 2474.44], [2229.03, 2476.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2134.39, 2156.29], [2130.59, 2152.52], [2126.49, 2156.65], [2130.29, 2160.41], [2134.39, 2156.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2203.58, 2122.57], [2197.44, 2116.61], [2186.61, 2127.77], [2192.75, 2133.73], [2203.58, 2122.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2033.76, 2070.41], [2028.17, 2064.28], [2022.6, 2069.37], [2028.21, 2075.5], [2033.76, 2070.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2127.57, 2065.04], [2139.19, 2075.82], [2149.18, 2065.25], [2137.92, 2054.44], [2127.57, 2065.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1717.58, 1925.25], [1718.87, 1923.82], [1720.08, 1924.92], [1722.62, 1922.13], [1722.94, 1922.41], [1724.52, 1920.67], [1715.39, 1912.35], [1709.96, 1918.29], [1717.58, 1925.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2262.51, 2442.66], [2253.99, 2433.89], [2248.66, 2439.07], [2257.18, 2447.84], [2262.51, 2442.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1840.01, 2110.61], [1836.46, 2106.5], [1833.31, 2109.21], [1836.85, 2113.34], [1840.01, 2110.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2091.88, 1922.46], [2095.86, 1918.2], [2093.05, 1915.38], [2088.96, 1919.73], [2091.88, 1922.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1745.39, 1898.95], [1736.87, 1890.1], [1731.18, 1895.59], [1739.68, 1904.43], [1745.39, 1898.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1796.87, 2060.54], [1792.07, 2056.13], [1788.14, 2060.41], [1792.94, 2064.82], [1796.87, 2060.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2092.51, 2464.16], [2085.71, 2457.25], [2076.63, 2466.21], [2083.43, 2473.11], [2092.51, 2464.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1867.1, 2279.45], [1862.94, 2275.67], [1860.21, 2278.85], [1864.26, 2282.53], [1867.1, 2279.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1991.72, 2240.52], [1986.66, 2235.62], [1983.81, 2238.58], [1988.87, 2243.48], [1991.72, 2240.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2050.0, 2086.81], [2044.09, 2080.84], [2038.55, 2086.34], [2044.46, 2092.31], [2050.0, 2086.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2219.61, 2223.92], [2210.42, 2215.71], [2205.22, 2221.52], [2214.41, 2229.74], [2219.61, 2223.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2128.74, 1886.95], [2119.01, 1877.76], [2113.37, 1883.75], [2120.54, 1890.51], [2119.4, 1891.71], [2121.96, 1894.12], [2128.74, 1886.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2059.35, 1987.02], [2053.65, 1982.33], [2048.39, 1988.74], [2054.09, 1993.42], [2059.35, 1987.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1879.93, 1991.55], [1881.94, 1989.45], [1883.0, 1990.47], [1884.82, 1988.57], [1883.71, 1987.51], [1885.98, 1985.14], [1884.77, 1983.97], [1886.71, 1981.94], [1884.24, 1979.57], [1882.29, 1981.62], [1881.24, 1980.6], [1875.15, 1986.98], [1879.93, 1991.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2097.37, 2267.22], [2094.88, 2264.9], [2093.39, 2266.49], [2089.5, 2262.84], [2082.12, 2270.73], [2084.05, 2272.53], [2082.25, 2274.46], [2086.71, 2278.62], [2097.37, 2267.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2100.38, 2115.58], [2102.82, 2112.8], [2104.76, 2114.49], [2106.75, 2112.21], [2105.5, 2111.11], [2106.62, 2109.82], [2099.17, 2103.3], [2097.33, 2105.4], [2095.62, 2103.9], [2092.99, 2106.92], [2094.79, 2108.5], [2093.71, 2109.74], [2100.38, 2115.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2058.32, 2287.59], [2053.95, 2283.51], [2044.65, 2293.46], [2050.7, 2299.11], [2057.91, 2291.39], [2056.23, 2289.83], [2058.32, 2287.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1976.77, 2369.93], [1983.9, 2362.67], [1971.05, 2350.01], [1963.84, 2357.45], [1976.77, 2369.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2159.63, 2284.97], [2153.14, 2278.71], [2147.76, 2284.3], [2155.61, 2291.86], [2159.84, 2287.46], [2158.49, 2286.15], [2159.63, 2284.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2127.26, 2285.34], [2124.54, 2282.67], [2119.56, 2287.74], [2122.28, 2290.41], [2127.26, 2285.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2002.55, 2380.85], [1998.11, 2376.32], [1988.27, 2385.98], [1994.97, 2392.82], [2003.86, 2384.1], [2001.6, 2381.79], [2002.55, 2380.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1933.81, 2110.13], [1926.76, 2102.55], [1917.83, 2110.84], [1924.12, 2117.61], [1923.93, 2117.79], [1925.34, 2119.29], [1927.69, 2117.11], [1927.05, 2116.42], [1933.81, 2110.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2050.91, 2000.76], [2047.66, 1997.75], [2043.96, 2001.64], [2047.25, 2004.76], [2050.91, 2000.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2000.91, 2095.44], [1995.77, 2090.46], [1988.66, 2097.79], [1990.88, 2099.94], [1989.0, 2101.87], [1991.92, 2104.7], [2000.91, 2095.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2014.04, 2017.44], [2008.81, 2012.71], [2003.91, 2018.15], [2009.13, 2022.87], [2014.04, 2017.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1949.0, 2212.74], [1954.61, 2206.87], [1945.11, 2197.83], [1946.89, 2195.96], [1941.43, 2190.76], [1939.28, 2193.02], [1944.28, 2197.79], [1938.63, 2203.73], [1947.12, 2211.83], [1947.56, 2211.36], [1949.0, 2212.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1106.83, 2527.64], [1110.05, 2526.39], [1108.68, 2522.56], [1105.46, 2523.81], [1106.83, 2527.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2477.5, 2291.63], [2473.59, 2288.08], [2469.74, 2292.33], [2473.65, 2295.87], [2477.5, 2291.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1149.96, 2536.4], [1148.23, 2533.12], [1147.02, 2533.76], [1146.3, 2532.41], [1148.76, 2531.12], [1145.47, 2524.87], [1144.93, 2525.16], [1143.05, 2521.6], [1134.39, 2526.16], [1136.39, 2529.96], [1137.91, 2529.16], [1139.37, 2531.92], [1138.61, 2532.31], [1139.9, 2534.75], [1140.65, 2534.35], [1140.93, 2534.9], [1143.25, 2533.68], [1144.1, 2535.3], [1142.37, 2536.2], [1144.09, 2539.48], [1149.96, 2536.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2114.55, 1962.97], [2121.58, 1969.4], [2132.98, 1957.86], [2126.04, 1951.22], [2114.55, 1962.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1674.77, 1975.88], [1678.22, 1972.2], [1674.11, 1968.35], [1674.75, 1967.67], [1667.85, 1961.21], [1662.56, 1966.88], [1670.65, 1974.45], [1671.86, 1973.16], [1674.77, 1975.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2037.62, 2054.87], [2035.15, 2052.52], [2031.22, 2056.64], [2033.69, 2058.99], [2037.62, 2054.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2161.64, 2526.77], [2155.75, 2520.88], [2147.58, 2529.04], [2153.47, 2534.94], [2161.64, 2526.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2022.82, 2114.69], [2017.22, 2108.84], [2006.76, 2118.82], [2013.1, 2125.47], [2022.12, 2116.87], [2021.37, 2116.08], [2022.82, 2114.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2128.88, 2519.44], [2134.48, 2513.0], [2135.53, 2513.9], [2141.63, 2506.88], [2135.4, 2501.48], [2133.61, 2503.54], [2132.51, 2502.58], [2122.6, 2513.99], [2128.88, 2519.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1770.57, 2009.78], [1764.95, 2004.18], [1763.33, 2005.82], [1762.65, 2005.14], [1754.71, 2013.13], [1761.02, 2019.4], [1770.57, 2009.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2509.56, 2291.65], [2503.66, 2286.62], [2497.29, 2294.09], [2503.19, 2299.12], [2509.56, 2291.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2073.94, 2460.2], [2082.91, 2450.45], [2077.19, 2445.2], [2065.86, 2457.53], [2068.72, 2460.15], [2071.08, 2457.58], [2073.94, 2460.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1218.27, 2533.19], [1206.15, 2539.88], [1212.09, 2550.75], [1224.21, 2544.06], [1218.27, 2533.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2460.1, 2299.07], [2473.56, 2285.14], [2465.39, 2277.18], [2451.94, 2291.26], [2460.1, 2299.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1440.47, 2796.51], [1437.36, 2789.99], [1428.81, 2794.25], [1429.71, 2796.1], [1428.46, 2796.71], [1429.72, 2799.29], [1427.08, 2800.58], [1430.72, 2808.05], [1440.75, 2803.16], [1439.16, 2799.91], [1440.0, 2799.49], [1438.91, 2797.37], [1440.47, 2796.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1131.65, 2514.09], [1136.72, 2511.5], [1137.96, 2510.87], [1135.09, 2505.29], [1133.86, 2505.92], [1130.9, 2500.15], [1121.48, 2504.95], [1122.7, 2507.3], [1117.05, 2510.22], [1119.5, 2515.03], [1122.27, 2513.62], [1124.52, 2518.02], [1122.08, 2519.28], [1124.38, 2523.82], [1134.06, 2518.84], [1131.65, 2514.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2103.74, 2470.82], [2098.32, 2465.39], [2090.1, 2473.6], [2095.53, 2479.04], [2103.74, 2470.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2480.47, 2278.14], [2484.08, 2274.53], [2476.15, 2266.73], [2472.46, 2270.43], [2480.47, 2278.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2060.84, 2386.29], [2066.55, 2380.52], [2059.42, 2373.45], [2055.18, 2377.74], [2056.94, 2379.48], [2054.08, 2382.36], [2057.04, 2385.29], [2058.42, 2383.9], [2060.84, 2386.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2156.82, 2164.09], [2152.15, 2159.25], [2146.52, 2164.66], [2151.19, 2169.51], [2156.82, 2164.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1958.52, 2064.73], [1960.24, 2062.98], [1961.63, 2064.35], [1964.32, 2061.63], [1962.67, 2060.0], [1963.13, 2059.54], [1959.79, 2056.25], [1961.58, 2054.44], [1959.08, 2051.97], [1952.42, 2058.7], [1958.52, 2064.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2106.31, 2197.26], [2101.5, 2192.6], [2091.87, 2202.56], [2099.04, 2209.5], [2106.71, 2201.57], [2104.35, 2199.29], [2106.31, 2197.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2268.07, 2115.21], [2275.31, 2107.11], [2269.02, 2101.5], [2267.32, 2103.42], [2266.57, 2102.75], [2260.32, 2109.75], [2261.32, 2110.65], [2260.46, 2111.6], [2263.28, 2114.12], [2264.87, 2112.36], [2268.07, 2115.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1820.99, 1958.66], [1812.57, 1950.37], [1807.33, 1955.7], [1815.75, 1963.98], [1820.99, 1958.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1960.09, 2137.04], [1955.94, 2132.27], [1947.2, 2139.85], [1952.18, 2145.59], [1957.39, 2141.06], [1956.55, 2140.1], [1960.09, 2137.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1316.43, 2185.24], [1323.06, 2186.73], [1327.78, 2164.29], [1321.15, 2162.8], [1316.43, 2185.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1892.78, 2210.68], [1887.25, 2205.76], [1879.09, 2214.91], [1884.61, 2219.83], [1892.78, 2210.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2099.22, 2039.07], [2096.27, 2036.37], [2092.51, 2040.48], [2095.45, 2043.17], [2099.22, 2039.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2211.92, 2469.11], [2206.95, 2464.39], [2201.37, 2470.26], [2206.34, 2474.98], [2211.92, 2469.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2081.88, 2135.81], [2084.44, 2133.22], [2086.66, 2135.43], [2088.76, 2133.31], [2086.53, 2131.08], [2088.11, 2129.5], [2081.1, 2122.53], [2080.34, 2123.3], [2077.76, 2120.75], [2073.15, 2125.39], [2075.88, 2128.11], [2075.01, 2128.97], [2081.88, 2135.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1297.67, 2721.43], [1297.6, 2720.09], [1292.08, 2720.36], [1292.68, 2731.2], [1297.37, 2730.96], [1297.47, 2733.93], [1295.46, 2734.02], [1295.89, 2742.41], [1305.32, 2741.94], [1304.69, 2730.56], [1307.97, 2730.39], [1307.52, 2720.93], [1297.67, 2721.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1923.73, 2041.22], [1925.98, 2038.98], [1928.0, 2041.02], [1937.23, 2031.82], [1931.03, 2025.58], [1921.56, 2035.01], [1922.65, 2036.1], [1920.63, 2038.1], [1923.73, 2041.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1783.32, 1908.67], [1780.3, 1905.7], [1776.26, 1909.8], [1779.28, 1912.77], [1783.32, 1908.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2387.11, 2217.58], [2390.12, 2214.56], [2387.71, 2212.15], [2385.08, 2214.79], [2382.94, 2212.66], [2374.49, 2221.13], [2379.68, 2226.3], [2387.75, 2218.22], [2387.11, 2217.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1169.44, 2578.08], [1161.18, 2562.78], [1151.69, 2567.87], [1159.95, 2583.19], [1169.44, 2578.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2019.52, 2139.9], [2021.09, 2138.15], [2022.39, 2139.31], [2032.57, 2127.99], [2029.91, 2125.59], [2032.4, 2122.83], [2026.91, 2117.89], [2012.66, 2133.73], [2019.52, 2139.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2241.86, 2089.47], [2249.66, 2081.29], [2244.33, 2076.21], [2237.07, 2083.84], [2236.56, 2083.36], [2234.56, 2085.46], [2237.37, 2088.13], [2238.83, 2086.59], [2241.86, 2089.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1826.23, 2162.54], [1832.09, 2156.59], [1830.66, 2155.18], [1832.15, 2153.66], [1829.31, 2150.86], [1827.87, 2152.3], [1825.38, 2149.84], [1819.28, 2156.02], [1821.31, 2158.04], [1820.62, 2158.75], [1823.46, 2161.55], [1824.34, 2160.67], [1826.23, 2162.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1989.31, 2168.51], [1991.35, 2166.27], [1992.89, 2167.68], [1996.35, 2163.87], [1995.1, 2162.74], [1996.54, 2161.16], [1987.75, 2153.17], [1985.18, 2155.99], [1983.54, 2154.49], [1980.67, 2157.65], [1986.83, 2163.25], [1985.34, 2164.9], [1989.31, 2168.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2024.14, 2051.59], [2021.33, 2048.92], [2017.56, 2052.86], [2020.36, 2055.53], [2024.14, 2051.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2013.99, 2392.84], [2008.8, 2387.6], [2000.52, 2395.83], [2003.06, 2398.39], [2001.21, 2400.22], [2003.87, 2402.9], [2013.99, 2392.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1792.28, 1908.06], [1796.99, 1902.95], [1798.18, 1904.05], [1800.86, 1901.14], [1795.0, 1895.74], [1793.14, 1897.76], [1792.4, 1897.08], [1786.87, 1903.07], [1792.28, 1908.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2087.76, 2476.6], [2084.82, 2473.94], [2076.17, 2483.53], [2079.11, 2486.18], [2087.76, 2476.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1150.82, 2402.43], [1166.73, 2388.7], [1162.05, 2383.29], [1155.63, 2388.83], [1152.59, 2385.28], [1143.09, 2393.47], [1150.82, 2402.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1770.89, 1892.78], [1772.57, 1891.03], [1774.1, 1892.51], [1783.85, 1882.41], [1777.91, 1876.68], [1766.48, 1888.54], [1770.89, 1892.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1994.34, 2030.58], [1991.49, 2027.77], [1984.89, 2034.45], [1990.82, 2040.3], [1995.94, 2035.13], [1992.87, 2032.08], [1994.34, 2030.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1797.85, 1955.73], [1796.2, 1954.01], [1795.15, 1955.02], [1792.48, 1952.22], [1786.93, 1957.55], [1787.91, 1958.56], [1783.77, 1962.52], [1784.64, 1963.42], [1782.75, 1965.22], [1786.18, 1968.8], [1797.43, 1958.01], [1796.5, 1957.04], [1797.85, 1955.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1738.7, 1927.56], [1733.14, 1922.3], [1727.6, 1928.16], [1733.16, 1933.41], [1738.7, 1927.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2112.6, 1961.66], [2121.96, 1951.75], [2115.82, 1946.08], [2106.33, 1955.82], [2112.6, 1961.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1123.53, 2635.81], [1127.03, 2633.99], [1122.4, 2625.12], [1125.94, 2623.27], [1123.81, 2619.17], [1120.26, 2621.03], [1120.06, 2620.65], [1114.87, 2623.36], [1111.91, 2624.91], [1114.65, 2630.17], [1114.5, 2630.26], [1114.37, 2630.38], [1114.24, 2630.5], [1114.12, 2630.63], [1114.01, 2630.78], [1113.92, 2630.92], [1113.84, 2631.08], [1113.77, 2631.25], [1113.72, 2631.42], [1113.69, 2631.6], [1113.66, 2631.78], [1113.65, 2631.95], [1113.67, 2632.13], [1113.69, 2632.31], [1113.73, 2632.49], [1113.78, 2632.65], [1113.85, 2632.82], [1113.94, 2632.98], [1114.03, 2633.12], [1114.14, 2633.26], [1114.26, 2633.39], [1114.39, 2633.52], [1114.53, 2633.63], [1114.68, 2633.73], [1114.84, 2633.81], [1115.0, 2633.87], [1115.17, 2633.93], [1115.35, 2633.97], [1115.52, 2633.99], [1115.7, 2634.01], [1115.88, 2634.0], [1116.06, 2633.98], [1116.23, 2633.94], [1116.4, 2633.89], [1116.57, 2633.83], [1117.02, 2634.69], [1117.81, 2634.28], [1119.66, 2637.83], [1121.84, 2636.69], [1123.53, 2635.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2035.83, 2049.99], [2041.58, 2043.67], [2035.33, 2037.97], [2028.54, 2045.44], [2030.44, 2047.16], [2031.47, 2046.03], [2035.83, 2049.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2185.31, 2192.45], [2181.45, 2187.92], [2175.47, 2193.01], [2179.34, 2197.54], [2185.31, 2192.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2250.09, 2167.18], [2243.85, 2161.03], [2235.76, 2169.24], [2240.45, 2173.86], [2239.31, 2175.02], [2240.86, 2176.54], [2250.09, 2167.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2465.87, 2259.55], [2458.85, 2252.52], [2437.11, 2274.96], [2444.34, 2281.9], [2465.87, 2259.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2271.15, 2407.04], [2267.0, 2403.08], [2264.66, 2405.54], [2268.8, 2409.49], [2271.15, 2407.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2116.23, 1930.72], [2111.84, 1926.62], [2106.71, 1932.11], [2111.1, 1936.21], [2116.23, 1930.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2263.69, 2065.75], [2265.07, 2064.27], [2265.74, 2064.89], [2273.66, 2056.34], [2268.31, 2051.37], [2266.12, 2053.73], [2265.0, 2052.7], [2260.93, 2057.1], [2261.57, 2057.69], [2259.9, 2059.49], [2260.63, 2060.17], [2259.26, 2061.64], [2263.69, 2065.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1755.85, 1883.64], [1751.02, 1879.21], [1741.19, 1889.95], [1749.82, 1897.85], [1754.71, 1892.51], [1750.91, 1889.03], [1755.85, 1883.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1711.54, 1955.55], [1708.33, 1952.23], [1704.06, 1956.36], [1707.27, 1959.68], [1711.54, 1955.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2024.48, 2041.41], [2026.9, 2038.74], [2028.44, 2040.14], [2032.22, 2035.98], [2030.01, 2033.98], [2031.21, 2032.65], [2029.42, 2031.02], [2029.61, 2030.79], [2026.26, 2027.75], [2018.66, 2036.13], [2024.48, 2041.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1840.73, 2005.08], [1836.92, 2001.23], [1832.47, 2005.63], [1836.28, 2009.46], [1840.73, 2005.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2041.87, 2230.14], [2051.62, 2220.09], [2049.95, 2218.53], [2051.48, 2217.05], [2047.06, 2212.82], [2045.5, 2214.29], [2044.4, 2213.22], [2034.67, 2223.31], [2041.87, 2230.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2055.44, 1996.11], [2053.02, 1993.79], [2049.49, 1997.48], [2051.91, 1999.8], [2055.44, 1996.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2080.38, 2222.52], [2076.08, 2218.35], [2071.3, 2223.26], [2075.6, 2227.43], [2080.38, 2222.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2077.91, 2003.94], [2072.48, 1998.15], [2065.99, 2004.24], [2071.42, 2010.03], [2077.91, 2003.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2055.91, 2426.63], [2038.36, 2444.42], [2043.6, 2449.59], [2061.14, 2431.8], [2055.91, 2426.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2290.28, 2413.04], [2280.5, 2403.52], [2274.96, 2409.2], [2284.74, 2418.72], [2290.28, 2413.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2164.86, 1953.63], [2166.81, 1951.64], [2168.27, 1953.08], [2171.37, 1949.91], [2171.02, 1949.56], [2172.62, 1947.92], [2173.55, 1948.84], [2177.29, 1945.01], [2171.0, 1938.84], [2168.07, 1941.85], [2166.97, 1940.77], [2159.51, 1948.38], [2164.86, 1953.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2049.34, 2376.63], [2055.1, 2371.03], [2049.26, 2365.0], [2043.34, 2370.74], [2045.36, 2372.83], [2044.28, 2373.86], [2046.67, 2376.32], [2047.9, 2375.13], [2049.34, 2376.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1843.96, 1964.8], [1838.99, 1960.08], [1833.92, 1965.42], [1838.9, 1970.13], [1843.96, 1964.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2107.66, 2227.85], [2104.77, 2225.1], [2099.96, 2230.17], [2102.85, 2232.91], [2107.66, 2227.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1771.26, 2046.85], [1767.3, 2043.11], [1761.28, 2049.44], [1765.25, 2053.2], [1771.26, 2046.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1912.68, 2088.16], [1909.75, 2085.31], [1900.74, 2094.57], [1905.18, 2098.89], [1910.52, 2093.4], [1909.02, 2091.93], [1912.68, 2088.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2051.51, 1978.65], [2045.34, 1972.96], [2039.57, 1979.21], [2045.74, 1984.9], [2051.51, 1978.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2185.8, 2493.58], [2182.48, 2490.16], [2178.69, 2493.86], [2182.01, 2497.28], [2185.8, 2493.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2074.26, 2303.5], [2072.25, 2301.26], [2064.69, 2308.02], [2070.39, 2314.38], [2075.86, 2309.49], [2072.18, 2305.37], [2074.26, 2303.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2111.42, 1907.66], [2106.97, 1903.7], [2103.86, 1907.18], [2104.38, 1907.64], [2101.55, 1910.8], [2105.48, 1914.31], [2111.42, 1907.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2494.71, 2296.26], [2491.13, 2293.76], [2488.42, 2297.63], [2492.0, 2300.13], [2494.71, 2296.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1197.13, 2335.78], [1204.69, 2332.02], [1203.04, 2328.73], [1195.48, 2332.48], [1197.13, 2335.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1155.69, 2742.93], [1154.64, 2733.54], [1146.21, 2734.49], [1145.47, 2728.07], [1144.88, 2728.14], [1144.1, 2721.37], [1132.72, 2722.7], [1133.7, 2731.34], [1135.17, 2731.14], [1136.48, 2742.62], [1147.22, 2741.4], [1147.51, 2743.85], [1155.69, 2742.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2129.34, 1906.26], [2131.27, 1904.48], [2132.0, 1905.27], [2140.45, 1897.49], [2138.13, 1894.96], [2136.21, 1896.73], [2133.57, 1893.87], [2131.02, 1896.22], [2129.7, 1894.79], [2126.47, 1897.76], [2127.47, 1898.84], [2126.53, 1899.71], [2128.0, 1901.31], [2126.26, 1902.91], [2129.34, 1906.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2023.91, 2063.04], [2018.27, 2056.57], [2012.54, 2061.58], [2018.19, 2068.04], [2023.91, 2063.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2147.72, 2086.21], [2158.06, 2075.52], [2156.0, 2073.53], [2156.75, 2072.74], [2152.31, 2068.52], [2141.26, 2079.94], [2147.72, 2086.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2111.79, 2128.99], [2108.75, 2125.97], [2102.89, 2131.9], [2105.93, 2134.91], [2111.79, 2128.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2086.2, 2204.33], [2081.24, 2199.94], [2076.78, 2204.98], [2078.45, 2206.47], [2074.44, 2211.02], [2077.72, 2213.91], [2086.2, 2204.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1684.64, 1783.4], [1662.26, 1760.83], [1653.72, 1769.3], [1667.94, 1783.64], [1666.57, 1784.99], [1668.93, 1787.38], [1665.47, 1790.81], [1670.79, 1796.16], [1674.22, 1792.75], [1674.71, 1793.25], [1684.64, 1783.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2005.36, 2043.44], [1999.72, 2038.56], [1994.45, 2044.67], [2000.09, 2049.55], [2005.36, 2043.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2204.07, 2139.57], [2212.02, 2131.43], [2205.33, 2124.9], [2195.39, 2135.09], [2199.15, 2138.76], [2201.13, 2136.72], [2204.07, 2139.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2242.99, 2189.48], [2247.31, 2184.84], [2242.29, 2180.17], [2237.97, 2184.81], [2242.99, 2189.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2035.01, 2012.28], [2043.59, 2003.68], [2038.25, 1998.08], [2029.7, 2006.96], [2035.01, 2012.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1876.59, 2129.68], [1885.49, 2120.32], [1879.98, 2115.07], [1871.02, 2124.48], [1872.85, 2126.22], [1871.42, 2127.72], [1873.55, 2129.75], [1875.04, 2128.2], [1876.59, 2129.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2052.36, 2306.76], [2048.44, 2303.3], [2044.28, 2308.0], [2048.2, 2311.47], [2052.36, 2306.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1861.26, 2160.17], [1856.35, 2154.7], [1851.35, 2159.19], [1856.26, 2164.66], [1861.26, 2160.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2044.22, 2161.07], [2040.01, 2157.07], [2034.56, 2162.81], [2038.77, 2166.82], [2044.22, 2161.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1866.69, 1963.02], [1863.33, 1959.62], [1854.01, 1968.85], [1859.82, 1974.73], [1867.82, 1966.8], [1865.37, 1964.32], [1866.69, 1963.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1358.9, 2252.38], [1364.66, 2250.28], [1360.61, 2239.18], [1354.86, 2241.29], [1358.9, 2252.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1921.15, 2323.84], [1928.26, 2330.64], [1939.64, 2318.72], [1932.82, 2311.88], [1921.15, 2323.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1944.26, 2217.87], [1935.39, 2208.37], [1929.9, 2213.49], [1938.78, 2222.99], [1944.26, 2217.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1731.99, 1970.89], [1725.84, 1965.09], [1717.85, 1973.58], [1718.35, 1974.05], [1715.91, 1976.63], [1721.56, 1981.95], [1731.99, 1970.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2152.61, 1962.96], [2155.81, 1966.14], [2159.69, 1962.11], [2156.56, 1959.02], [2152.61, 1962.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2087.02, 2180.97], [2080.81, 2174.87], [2074.14, 2181.65], [2080.36, 2187.76], [2087.02, 2180.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2282.89, 2420.95], [2274.16, 2411.31], [2268.66, 2416.3], [2277.4, 2425.93], [2282.89, 2420.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2052.98, 2458.83], [2046.75, 2453.16], [2041.18, 2459.27], [2047.42, 2464.94], [2052.98, 2458.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1731.43, 1913.51], [1723.27, 1904.5], [1717.19, 1910.02], [1725.35, 1919.02], [1731.43, 1913.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2099.36, 2036.15], [2105.05, 2029.82], [2098.45, 2023.9], [2091.76, 2031.36], [2094.89, 2034.17], [2095.9, 2033.04], [2099.36, 2036.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1908.13, 2320.89], [1924.58, 2304.19], [1914.47, 2294.23], [1912.83, 2295.9], [1910.06, 2293.17], [1893.35, 2310.13], [1903.66, 2320.28], [1905.56, 2318.35], [1908.13, 2320.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1757.27, 2388.2], [1742.98, 2324.84], [1724.07, 2329.1], [1733.92, 2372.8], [1712.02, 2377.74], [1716.45, 2397.41], [1757.27, 2388.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1913.34, 2209.17], [1909.89, 2206.2], [1906.14, 2210.56], [1909.59, 2213.53], [1913.34, 2209.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2093.62, 1945.07], [2103.84, 1934.45], [2103.25, 1933.87], [2104.77, 1932.29], [2099.28, 1927.0], [2097.08, 1929.28], [2096.46, 1928.68], [2093.31, 1931.96], [2093.98, 1932.6], [2086.66, 1940.21], [2091.13, 1944.5], [2092.04, 1943.55], [2093.62, 1945.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1286.0, 2664.55], [1291.4, 2660.89], [1292.55, 2662.63], [1300.16, 2657.54], [1296.68, 2652.33], [1290.91, 2656.23], [1289.63, 2654.34], [1291.68, 2652.94], [1286.49, 2645.25], [1284.44, 2646.64], [1283.43, 2647.31], [1284.11, 2648.32], [1277.88, 2652.51], [1286.0, 2664.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2215.04, 2490.06], [2220.11, 2485.09], [2209.83, 2474.58], [2204.27, 2480.01], [2213.07, 2489.01], [2213.55, 2488.53], [2215.04, 2490.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1242.18, 2537.9], [1250.27, 2533.79], [1246.07, 2525.53], [1237.98, 2529.64], [1242.18, 2537.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2032.36, 1996.45], [2027.06, 1991.73], [2021.84, 1997.59], [2027.15, 2002.3], [2032.36, 1996.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2099.6, 2047.87], [2095.15, 2043.78], [2092.18, 2047.02], [2096.63, 2051.11], [2099.6, 2047.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2129.13, 2499.7], [2122.59, 2493.67], [2116.64, 2500.12], [2123.17, 2506.15], [2129.13, 2499.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2515.33, 2341.12], [2508.52, 2335.27], [2501.8, 2343.11], [2508.61, 2348.95], [2515.33, 2341.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2228.99, 2214.13], [2219.66, 2205.63], [2218.31, 2207.12], [2216.86, 2205.79], [2214.51, 2208.39], [2215.78, 2209.55], [2213.33, 2212.26], [2222.83, 2220.9], [2228.99, 2214.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1853.69, 1971.91], [1850.51, 1968.75], [1846.0, 1973.29], [1849.17, 1976.45], [1853.69, 1971.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1944.1, 2187.75], [1948.95, 2183.14], [1945.28, 2179.26], [1938.76, 2185.46], [1941.01, 2187.84], [1942.68, 2186.26], [1944.1, 2187.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2143.62, 2270.99], [2139.26, 2267.32], [2134.59, 2272.87], [2138.95, 2276.53], [2143.62, 2270.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2243.46, 2019.19], [2236.83, 2012.54], [2228.89, 2020.45], [2235.51, 2027.1], [2243.46, 2019.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2019.34, 2432.5], [2041.8, 2410.56], [2021.71, 2391.08], [2010.75, 2402.05], [2018.64, 2409.52], [2007.22, 2421.22], [2019.34, 2432.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1833.74, 1993.46], [1830.06, 1989.34], [1825.11, 1993.75], [1828.79, 1997.88], [1833.74, 1993.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2303.11, 2096.06], [2300.07, 2093.14], [2299.76, 2093.46], [2296.63, 2090.46], [2289.49, 2097.88], [2295.65, 2103.81], [2303.11, 2096.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2154.43, 1917.1], [2148.09, 1911.74], [2142.29, 1918.59], [2148.64, 1923.94], [2154.43, 1917.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1979.3, 2391.42], [1971.23, 2383.56], [1965.87, 2389.07], [1973.95, 2396.93], [1979.3, 2391.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2411.55, 2218.32], [2408.1, 2215.09], [2403.9, 2219.59], [2407.35, 2222.81], [2411.55, 2218.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2000.42, 2157.55], [2003.04, 2154.93], [2004.17, 2156.06], [2006.45, 2153.79], [1996.65, 2143.99], [1991.17, 2149.46], [1998.88, 2157.18], [1999.47, 2156.6], [2000.42, 2157.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2522.95, 2281.52], [2517.28, 2276.7], [2509.84, 2285.42], [2515.51, 2290.25], [2522.95, 2281.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1127.03, 2609.17], [1124.45, 2602.56], [1114.3, 2606.53], [1112.51, 2601.84], [1104.99, 2604.78], [1109.36, 2616.07], [1110.76, 2619.63], [1117.84, 2616.86], [1116.45, 2613.3], [1127.03, 2609.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2130.11, 1919.46], [2125.25, 1914.92], [2119.44, 1921.13], [2124.3, 1925.67], [2130.11, 1919.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2003.53, 2032.81], [1999.55, 2028.04], [1996.23, 2030.83], [2000.21, 2035.59], [2003.53, 2032.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1950.99, 2113.51], [1947.02, 2109.4], [1942.64, 2113.63], [1946.6, 2117.74], [1950.99, 2113.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2139.09, 2226.51], [2133.41, 2220.67], [2121.03, 2232.71], [2126.71, 2238.55], [2139.09, 2226.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2006.48, 2340.65], [2007.74, 2339.4], [2008.91, 2340.55], [2011.75, 2337.7], [2010.98, 2336.94], [2016.31, 2331.59], [2010.4, 2325.71], [2002.54, 2333.61], [2003.29, 2334.36], [2001.74, 2335.93], [2006.48, 2340.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2143.31, 1993.7], [2145.03, 1991.77], [2148.33, 1994.61], [2153.46, 1988.77], [2151.65, 1987.01], [2155.15, 1983.21], [2149.46, 1977.07], [2137.79, 1988.75], [2143.31, 1993.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1797.75, 2034.93], [1792.94, 2030.86], [1790.64, 2033.56], [1789.03, 2032.19], [1783.34, 2038.89], [1789.76, 2044.34], [1797.75, 2034.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1093.36, 2571.61], [1096.04, 2579.12], [1100.83, 2577.4], [1104.09, 2586.5], [1102.28, 2587.14], [1104.35, 2592.93], [1125.27, 2585.46], [1122.07, 2576.51], [1115.76, 2578.77], [1110.96, 2565.31], [1093.36, 2571.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2218.45, 1991.21], [2213.3, 1986.31], [2209.07, 1990.76], [2207.89, 1989.62], [2205.2, 1992.45], [2206.59, 1993.78], [2205.91, 1994.49], [2210.85, 1999.19], [2218.45, 1991.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1846.76, 2019.76], [1843.37, 2015.99], [1839.98, 2019.02], [1843.36, 2022.8], [1846.76, 2019.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2221.89, 2073.54], [2223.47, 2071.87], [2224.3, 2072.65], [2233.87, 2062.56], [2228.97, 2057.92], [2226.91, 2060.1], [2225.79, 2059.04], [2218.21, 2067.03], [2218.82, 2067.6], [2217.31, 2069.19], [2221.89, 2073.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1762.2, 1957.0], [1769.63, 1948.26], [1766.23, 1945.37], [1763.26, 1948.88], [1760.54, 1946.57], [1756.76, 1951.03], [1757.66, 1951.79], [1756.29, 1953.41], [1760.38, 1956.89], [1761.09, 1956.05], [1762.2, 1957.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2022.4, 2188.87], [2015.97, 2182.86], [2010.85, 2188.35], [2017.27, 2194.36], [2022.4, 2188.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2055.59, 2072.25], [2052.74, 2069.53], [2048.9, 2073.56], [2051.74, 2076.28], [2055.59, 2072.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2069.0, 1992.45], [2065.46, 1989.55], [2063.57, 1991.86], [2062.42, 1990.91], [2057.6, 1996.79], [2064.61, 2002.53], [2069.82, 1996.17], [2067.5, 1994.27], [2069.0, 1992.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1796.2, 1927.56], [1791.23, 1922.63], [1786.9, 1927.01], [1791.88, 1931.94], [1796.2, 1927.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1224.03, 2655.6], [1220.04, 2650.23], [1219.15, 2650.9], [1213.43, 2643.22], [1212.0, 2644.35], [1209.77, 2641.39], [1200.59, 2648.24], [1205.49, 2654.78], [1206.94, 2653.66], [1209.89, 2657.65], [1212.46, 2655.74], [1216.52, 2661.19], [1223.14, 2656.27], [1224.03, 2655.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1819.9, 1996.69], [1815.05, 1992.0], [1804.79, 2002.62], [1809.63, 2007.3], [1819.9, 1996.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2002.6, 2019.82], [2000.17, 2017.32], [1996.56, 2020.85], [1998.99, 2023.35], [2002.6, 2019.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1949.59, 2126.28], [1946.34, 2122.57], [1937.6, 2130.22], [1943.92, 2137.42], [1950.26, 2131.86], [1949.46, 2130.95], [1951.35, 2129.29], [1949.09, 2126.71], [1949.59, 2126.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2097.92, 2189.74], [2091.66, 2183.72], [2085.2, 2190.44], [2087.52, 2192.69], [2085.49, 2194.8], [2089.41, 2198.57], [2097.92, 2189.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1982.97, 2075.45], [1978.79, 2071.66], [1977.15, 2073.47], [1976.03, 2072.45], [1970.22, 2078.87], [1975.52, 2083.67], [1982.97, 2075.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2108.07, 2572.18], [2104.94, 2569.42], [2100.93, 2573.97], [2104.06, 2576.73], [2108.07, 2572.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1807.29, 2044.66], [1801.69, 2039.24], [1799.43, 2041.58], [1798.66, 2040.83], [1791.29, 2048.45], [1797.66, 2054.62], [1807.29, 2044.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2263.93, 2440.05], [2268.96, 2435.45], [2260.06, 2425.73], [2257.36, 2428.2], [2256.77, 2427.56], [2255.3, 2428.9], [2256.54, 2430.25], [2254.98, 2431.67], [2262.06, 2439.4], [2262.75, 2438.77], [2263.93, 2440.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1992.97, 2108.82], [1988.89, 2104.87], [1984.07, 2109.85], [1988.16, 2113.8], [1992.97, 2108.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1822.16, 1984.67], [1819.04, 1981.85], [1814.74, 1986.6], [1817.85, 1989.42], [1822.16, 1984.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1962.46, 2195.59], [1954.78, 2187.96], [1948.52, 2194.26], [1958.14, 2203.83], [1962.84, 2199.09], [1960.9, 2197.16], [1962.46, 2195.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2094.63, 2255.19], [2091.53, 2252.01], [2086.87, 2256.58], [2089.97, 2259.75], [2094.63, 2255.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1787.83, 2050.69], [1785.06, 2047.9], [1780.64, 2052.29], [1783.41, 2055.08], [1787.83, 2050.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2369.03, 2141.76], [2365.53, 2138.05], [2362.84, 2140.59], [2366.34, 2144.31], [2369.03, 2141.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2137.07, 1914.8], [2138.47, 1913.23], [2139.81, 1914.42], [2147.6, 1905.67], [2143.15, 1901.71], [2141.65, 1903.38], [2140.34, 1902.22], [2135.71, 1907.42], [2135.91, 1907.6], [2134.2, 1909.53], [2135.31, 1910.53], [2133.96, 1912.04], [2137.07, 1914.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2228.49, 2147.26], [2226.15, 2144.88], [2219.21, 2151.75], [2220.0, 2152.54], [2215.67, 2156.82], [2220.42, 2161.61], [2230.06, 2152.07], [2226.87, 2148.85], [2228.49, 2147.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2067.72, 2018.37], [2063.87, 2015.21], [2060.93, 2018.8], [2064.76, 2021.96], [2067.72, 2018.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1923.78, 2347.8], [1927.14, 2344.46], [1923.66, 2340.97], [1920.31, 2344.31], [1923.78, 2347.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1968.63, 2095.74], [1966.09, 2093.15], [1961.15, 2097.96], [1963.69, 2100.56], [1968.63, 2095.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2030.02, 2312.58], [2025.33, 2307.86], [2017.77, 2315.33], [2022.46, 2320.04], [2030.02, 2312.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2169.9, 2535.11], [2166.33, 2531.8], [2165.0, 2533.22], [2162.5, 2530.91], [2154.94, 2539.07], [2161.01, 2544.69], [2169.9, 2535.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1821.63, 2129.79], [1816.83, 2125.21], [1814.4, 2127.76], [1819.21, 2132.34], [1821.63, 2129.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2036.43, 2294.76], [2031.58, 2289.99], [2029.72, 2291.89], [2027.35, 2289.54], [2021.26, 2295.72], [2028.48, 2302.85], [2036.43, 2294.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2053.25, 2010.41], [2048.3, 2005.52], [2039.51, 2014.43], [2045.61, 2020.45], [2050.94, 2015.05], [2049.79, 2013.92], [2053.25, 2010.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1847.04, 2151.13], [1838.91, 2144.18], [1835.05, 2148.69], [1843.17, 2155.64], [1847.04, 2151.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2088.07, 2316.31], [2084.79, 2312.92], [2082.53, 2315.11], [2079.36, 2311.84], [2073.24, 2317.77], [2075.27, 2319.86], [2072.37, 2322.67], [2076.81, 2327.25], [2088.07, 2316.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2067.51, 2300.45], [2060.96, 2293.92], [2054.58, 2300.32], [2057.7, 2303.42], [2054.92, 2306.21], [2058.36, 2309.64], [2067.51, 2300.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2110.01, 2122.9], [2105.8, 2118.73], [2102.91, 2121.6], [2107.26, 2125.8], [2110.01, 2122.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2134.44, 2568.07], [2136.85, 2565.6], [2138.71, 2567.42], [2141.35, 2564.7], [2139.63, 2563.01], [2140.77, 2561.83], [2132.27, 2553.54], [2130.47, 2555.38], [2131.47, 2556.36], [2127.07, 2560.86], [2134.44, 2568.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1771.34, 2601.56], [1819.33, 2589.79], [1821.25, 2597.59], [1835.69, 2594.05], [1829.33, 2568.07], [1822.86, 2569.66], [1821.24, 2563.04], [1817.99, 2563.84], [1807.96, 2522.92], [1788.62, 2527.65], [1796.79, 2561.01], [1763.41, 2569.19], [1771.34, 2601.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1076.58, 2469.15], [1087.57, 2458.8], [1089.86, 2461.3], [1094.36, 2457.18], [1095.7, 2455.92], [1087.53, 2447.16], [1086.18, 2448.42], [1084.14, 2446.23], [1078.19, 2451.78], [1076.18, 2449.66], [1066.64, 2458.55], [1076.58, 2469.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2085.13, 2259.67], [2081.05, 2255.36], [2079.28, 2257.04], [2077.95, 2255.62], [2072.97, 2260.33], [2079.51, 2267.24], [2084.57, 2262.46], [2083.44, 2261.27], [2085.13, 2259.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1831.41, 2130.85], [1827.77, 2127.34], [1822.96, 2132.31], [1826.59, 2135.83], [1831.41, 2130.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2274.13, 2074.45], [2281.89, 2066.22], [2278.8, 2063.3], [2277.91, 2064.23], [2274.97, 2061.46], [2268.34, 2068.48], [2269.5, 2069.58], [2268.06, 2071.1], [2271.57, 2074.4], [2272.75, 2073.15], [2274.13, 2074.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2025.61, 1988.52], [2019.0, 1981.27], [2016.51, 1983.54], [2017.17, 1984.27], [2013.37, 1987.73], [2019.32, 1994.26], [2025.61, 1988.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2070.37, 2030.91], [2064.49, 2024.54], [2058.79, 2029.8], [2061.13, 2032.34], [2059.1, 2034.22], [2062.65, 2038.05], [2070.37, 2030.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1222.11, 2679.65], [1223.88, 2676.12], [1228.07, 2678.23], [1231.23, 2671.93], [1230.77, 2671.71], [1231.59, 2670.03], [1228.01, 2668.29], [1229.89, 2664.57], [1224.65, 2661.87], [1221.92, 2667.28], [1221.39, 2667.02], [1220.46, 2666.56], [1219.41, 2668.66], [1220.33, 2669.12], [1218.26, 2673.22], [1218.78, 2673.5], [1220.02, 2674.11], [1218.24, 2677.7], [1222.11, 2679.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2210.89, 1985.46], [2205.18, 1979.27], [2198.65, 1985.3], [2204.36, 1991.48], [2210.89, 1985.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1084.59, 2524.61], [1084.73, 2523.2], [1089.67, 2523.52], [1089.71, 2522.43], [1095.11, 2522.79], [1095.31, 2519.66], [1098.81, 2518.26], [1099.83, 2520.81], [1105.76, 2518.44], [1104.75, 2515.89], [1103.42, 2512.58], [1095.56, 2515.73], [1095.88, 2510.71], [1090.74, 2510.38], [1090.56, 2512.91], [1088.69, 2512.79], [1088.73, 2512.04], [1086.23, 2511.88], [1086.18, 2512.63], [1083.95, 2512.49], [1083.91, 2513.37], [1078.97, 2513.06], [1078.88, 2514.46], [1077.95, 2515.19], [1077.82, 2517.38], [1078.63, 2518.2], [1078.24, 2524.21], [1084.59, 2524.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1857.78, 1954.68], [1854.08, 1950.82], [1850.65, 1954.11], [1849.33, 1952.72], [1845.62, 1956.3], [1847.04, 1957.78], [1844.16, 1960.55], [1849.9, 1966.51], [1858.06, 1958.66], [1855.93, 1956.45], [1857.78, 1954.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2361.98, 2181.89], [2359.62, 2179.07], [2355.02, 2182.9], [2357.38, 2185.72], [2361.98, 2181.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2148.15, 2235.08], [2142.43, 2229.67], [2130.81, 2241.94], [2137.94, 2248.7], [2147.94, 2238.14], [2146.53, 2236.79], [2148.15, 2235.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2222.95, 2052.17], [2225.08, 2050.12], [2223.62, 2048.6], [2221.65, 2050.49], [2218.52, 2047.22], [2211.48, 2053.98], [2212.41, 2054.95], [2209.96, 2057.29], [2215.34, 2062.9], [2224.66, 2053.95], [2222.95, 2052.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2257.37, 2107.83], [2258.77, 2106.32], [2259.53, 2107.01], [2267.09, 2098.82], [2260.89, 2093.09], [2253.55, 2101.02], [2253.87, 2101.32], [2252.24, 2103.09], [2257.37, 2107.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1684.33, 1983.45], [1680.6, 1979.81], [1676.91, 1983.58], [1680.63, 1987.23], [1684.33, 1983.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1770.81, 1868.82], [1765.43, 1863.65], [1757.71, 1871.7], [1763.08, 1876.86], [1770.81, 1868.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2077.42, 2170.42], [2073.0, 2165.51], [2066.39, 2171.46], [2070.81, 2176.36], [2077.42, 2170.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1848.62, 1944.8], [1844.4, 1940.68], [1836.38, 1948.91], [1836.98, 1949.49], [1834.39, 1952.15], [1839.96, 1957.57], [1848.24, 1949.08], [1846.31, 1947.19], [1848.62, 1944.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2073.7, 2341.34], [2069.65, 2336.74], [2066.92, 2339.15], [2070.98, 2343.74], [2073.7, 2341.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2243.52, 2047.76], [2248.34, 2042.99], [2249.32, 2043.99], [2256.65, 2036.73], [2251.33, 2031.36], [2247.81, 2034.85], [2247.03, 2034.06], [2243.21, 2037.84], [2244.24, 2038.88], [2239.44, 2043.64], [2243.52, 2047.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1188.34, 2445.28], [1187.38, 2443.04], [1194.0, 2440.18], [1190.22, 2431.42], [1182.56, 2434.73], [1182.18, 2433.85], [1179.02, 2435.21], [1178.89, 2435.07], [1178.75, 2434.95], [1178.6, 2434.85], [1178.44, 2434.75], [1178.27, 2434.67], [1178.1, 2434.61], [1177.92, 2434.56], [1177.74, 2434.52], [1177.55, 2434.5], [1177.36, 2434.49], [1177.17, 2434.5], [1176.99, 2434.53], [1176.81, 2434.58], [1176.63, 2434.64], [1176.46, 2434.71], [1176.29, 2434.79], [1176.14, 2434.9], [1175.99, 2435.01], [1175.86, 2435.14], [1175.73, 2435.27], [1175.62, 2435.42], [1175.52, 2435.58], [1175.43, 2435.75], [1175.37, 2435.92], [1175.31, 2436.1], [1175.27, 2436.29], [1175.24, 2436.47], [1175.23, 2436.65], [1175.24, 2436.84], [1172.35, 2438.08], [1172.73, 2438.96], [1169.86, 2440.2], [1172.39, 2446.07], [1175.03, 2444.94], [1177.23, 2450.06], [1188.34, 2445.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2199.31, 2146.76], [2195.28, 2142.44], [2189.0, 2148.31], [2193.03, 2152.63], [2199.31, 2146.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2187.4, 2039.05], [2188.89, 2037.59], [2189.24, 2037.95], [2197.33, 2030.05], [2195.46, 2028.13], [2195.88, 2027.71], [2192.14, 2023.9], [2183.64, 2032.18], [2184.53, 2033.09], [2183.02, 2034.56], [2187.4, 2039.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2028.47, 2046.27], [2025.93, 2044.0], [2022.33, 2048.02], [2024.87, 2050.28], [2028.47, 2046.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2205.27, 2500.15], [2211.01, 2494.77], [2202.95, 2486.15], [2196.64, 2492.04], [2203.65, 2499.55], [2204.22, 2499.02], [2205.27, 2500.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2265.36, 2047.2], [2260.6, 2042.76], [2258.93, 2044.55], [2258.02, 2043.7], [2252.65, 2049.43], [2258.32, 2054.72], [2265.36, 2047.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2263.62, 2077.92], [2258.86, 2073.19], [2255.45, 2076.63], [2260.21, 2081.36], [2263.62, 2077.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2490.0, 2314.65], [2483.73, 2308.72], [2475.18, 2317.74], [2481.44, 2323.67], [2490.0, 2314.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2201.7, 2238.35], [2195.84, 2233.02], [2190.88, 2238.51], [2199.1, 2245.94], [2201.85, 2242.9], [2199.5, 2240.78], [2201.7, 2238.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1869.84, 2277.65], [1873.14, 2274.27], [1873.83, 2274.8], [1877.22, 2271.46], [1873.48, 2267.93], [1872.43, 2268.77], [1866.46, 2263.16], [1860.86, 2269.26], [1869.84, 2277.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1788.69, 1988.16], [1790.09, 1986.76], [1790.91, 1987.56], [1799.45, 1978.88], [1797.26, 1976.73], [1798.61, 1975.36], [1796.55, 1973.34], [1795.08, 1974.82], [1792.96, 1972.75], [1784.89, 1980.95], [1785.35, 1981.4], [1783.61, 1983.16], [1788.69, 1988.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2006.31, 2007.4], [1999.74, 2001.51], [1992.06, 2010.07], [1998.63, 2015.97], [2006.31, 2007.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2088.92, 2354.28], [2091.2, 2352.0], [2092.71, 2353.5], [2095.91, 2350.29], [2086.23, 2340.67], [2080.76, 2346.17], [2088.92, 2354.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2021.87, 2268.61], [2028.79, 2261.78], [2024.55, 2257.49], [2021.14, 2260.86], [2018.25, 2257.93], [2012.06, 2264.04], [2015.51, 2267.52], [2018.19, 2264.88], [2021.87, 2268.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2347.62, 2169.11], [2344.34, 2165.98], [2339.0, 2167.17], [2330.52, 2176.21], [2335.54, 2181.25], [2347.62, 2169.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2167.0, 2192.89], [2163.2, 2189.09], [2159.37, 2192.92], [2158.16, 2191.71], [2150.67, 2199.21], [2155.68, 2204.23], [2167.0, 2192.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1177.28, 2599.0], [1175.39, 2595.07], [1177.73, 2593.94], [1174.93, 2588.15], [1171.7, 2589.71], [1170.31, 2586.75], [1169.97, 2586.03], [1164.78, 2588.51], [1165.13, 2589.22], [1164.31, 2589.61], [1161.49, 2590.97], [1159.75, 2591.8], [1162.46, 2597.45], [1164.19, 2596.62], [1165.43, 2599.21], [1164.56, 2599.64], [1166.68, 2604.07], [1167.56, 2603.66], [1170.39, 2602.3], [1177.28, 2599.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1854.95, 2020.05], [1857.57, 2016.89], [1856.49, 2016.0], [1858.0, 2014.18], [1856.78, 2013.17], [1858.5, 2011.08], [1855.32, 2008.47], [1853.53, 2010.65], [1852.7, 2009.96], [1847.59, 2016.15], [1852.0, 2019.78], [1853.06, 2018.5], [1854.95, 2020.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1115.58, 2436.47], [1120.68, 2431.32], [1122.79, 2433.45], [1130.87, 2425.34], [1120.65, 2415.05], [1111.94, 2423.63], [1109.56, 2421.26], [1104.54, 2426.18], [1107.58, 2429.23], [1107.97, 2428.84], [1115.58, 2436.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2123.85, 1904.98], [2119.9, 1901.16], [2115.66, 1905.54], [2119.61, 1909.38], [2123.85, 1904.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1382.42, 2661.73], [1384.57, 2671.55], [1391.32, 2670.06], [1389.17, 2660.24], [1382.42, 2661.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1842.43, 2182.39], [1844.19, 2180.46], [1845.03, 2181.23], [1852.32, 2173.26], [1846.39, 2167.83], [1839.41, 2175.47], [1839.92, 2175.95], [1837.85, 2178.2], [1842.43, 2182.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2136.63, 1984.38], [2146.71, 1973.65], [2141.0, 1968.34], [2130.83, 1978.79], [2136.63, 1984.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1747.21, 2300.47], [1774.61, 2294.26], [1753.79, 2199.8], [1717.21, 2208.37], [1721.33, 2228.04], [1730.71, 2225.92], [1747.21, 2300.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2406.14, 2232.65], [2403.45, 2230.22], [2402.36, 2231.43], [2398.46, 2227.92], [2391.64, 2235.5], [2398.21, 2241.43], [2406.14, 2232.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1835.23, 2645.59], [1832.57, 2633.32], [1803.11, 2639.79], [1805.78, 2652.19], [1835.23, 2645.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2212.91, 2148.25], [2219.64, 2140.8], [2220.55, 2141.62], [2223.49, 2138.36], [2217.37, 2132.82], [2213.68, 2136.9], [2212.73, 2136.05], [2206.75, 2142.68], [2212.91, 2148.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1257.09, 2599.12], [1254.24, 2594.39], [1253.47, 2594.85], [1251.77, 2592.02], [1239.19, 2599.74], [1246.92, 2612.5], [1255.36, 2607.33], [1252.4, 2602.5], [1256.54, 2599.94], [1256.33, 2599.58], [1257.09, 2599.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2125.55, 2540.41], [2131.15, 2534.41], [2125.44, 2529.21], [2119.93, 2535.28], [2125.55, 2540.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1816.48, 2122.32], [1818.42, 2120.27], [1820.06, 2121.81], [1824.04, 2117.59], [1813.93, 2108.05], [1812.63, 2109.42], [1810.86, 2107.74], [1806.96, 2111.89], [1808.29, 2113.14], [1807.56, 2113.9], [1816.48, 2122.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2042.8, 1968.89], [2035.7, 1963.21], [2029.49, 1970.97], [2036.59, 1976.65], [2042.8, 1968.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2215.03, 2156.98], [2208.08, 2150.6], [2203.91, 2155.14], [2210.87, 2161.52], [2215.03, 2156.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1138.19, 2617.16], [1143.92, 2625.68], [1151.34, 2620.79], [1145.61, 2612.27], [1138.19, 2617.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2432.29, 2275.11], [2444.93, 2261.68], [2439.51, 2256.42], [2426.69, 2269.94], [2432.29, 2275.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2015.16, 2197.92], [2008.46, 2191.94], [2003.26, 2197.76], [2009.95, 2203.74], [2015.16, 2197.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2111.03, 2477.59], [2105.14, 2471.85], [2097.52, 2479.68], [2103.4, 2485.42], [2111.03, 2477.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1976.78, 2280.23], [1972.14, 2275.64], [1968.81, 2279.03], [1973.45, 2283.6], [1976.78, 2280.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2069.73, 2324.78], [2063.64, 2319.01], [2059.56, 2323.3], [2065.65, 2329.08], [2069.73, 2324.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1919.47, 2172.5], [1917.07, 2170.16], [1912.82, 2174.55], [1915.22, 2176.87], [1919.47, 2172.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1615.46, 2391.73], [1620.92, 2390.7], [1619.19, 2381.5], [1613.73, 2382.53], [1615.46, 2391.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2036.81, 2166.45], [2033.37, 2163.14], [2027.16, 2169.61], [2036.59, 2178.68], [2041.59, 2173.48], [2040.29, 2172.23], [2041.09, 2171.41], [2036.39, 2166.88], [2036.81, 2166.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2476.82, 2301.25], [2472.04, 2297.52], [2464.64, 2307.0], [2469.41, 2310.74], [2476.82, 2301.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1681.65, 1966.45], [1685.04, 1962.75], [1675.62, 1954.1], [1671.81, 1958.25], [1672.94, 1959.28], [1671.46, 1960.9], [1677.54, 1966.48], [1679.44, 1964.42], [1681.65, 1966.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1701.44, 2130.19], [1727.94, 2124.34], [1724.1, 2106.89], [1719.99, 2107.79], [1718.24, 2099.85], [1710.9, 2101.47], [1708.36, 2089.99], [1684.47, 2095.26], [1676.58, 2059.47], [1665.32, 2061.95], [1664.14, 2056.57], [1648.54, 2060.42], [1646.69, 2050.25], [1636.15, 2052.37], [1638.33, 2062.59], [1643.62, 2061.43], [1662.67, 2139.07], [1660.56, 2139.79], [1665.56, 2162.46], [1704.92, 2153.77], [1708.72, 2171.0], [1745.88, 2162.81], [1739.03, 2131.79], [1703.53, 2139.62], [1701.44, 2130.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1929.2, 2180.95], [1925.98, 2178.25], [1921.9, 2183.12], [1925.13, 2185.82], [1929.2, 2180.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1948.47, 2065.99], [1945.51, 2062.89], [1941.26, 2066.92], [1944.21, 2070.03], [1948.47, 2065.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1936.93, 2204.57], [1931.53, 2199.43], [1928.14, 2203.0], [1933.55, 2208.14], [1936.93, 2204.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2162.52, 1924.21], [2157.74, 1919.44], [2155.78, 1921.41], [2154.6, 1920.23], [2149.11, 1925.74], [2149.43, 1926.07], [2145.04, 1930.46], [2150.67, 1936.08], [2162.52, 1924.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1224.37, 2740.87], [1223.63, 2723.04], [1217.94, 2723.28], [1217.91, 2722.65], [1206.55, 2723.12], [1206.91, 2731.83], [1214.03, 2731.54], [1214.33, 2738.53], [1213.69, 2738.56], [1213.84, 2741.9], [1216.4, 2741.8], [1216.37, 2741.21], [1224.37, 2740.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1855.42, 2191.34], [1861.51, 2184.57], [1859.68, 2182.93], [1862.31, 2180.01], [1857.96, 2176.09], [1849.16, 2185.88], [1850.85, 2187.4], [1850.11, 2188.22], [1852.14, 2190.05], [1852.96, 2189.13], [1855.42, 2191.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1310.51, 2240.59], [1313.9, 2234.13], [1293.57, 2223.47], [1290.17, 2229.92], [1310.51, 2240.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1927.65, 2230.43], [1928.88, 2229.16], [1930.08, 2230.31], [1932.0, 2228.31], [1933.39, 2229.65], [1937.52, 2225.36], [1926.97, 2215.17], [1924.2, 2218.04], [1926.99, 2220.74], [1923.78, 2224.07], [1925.86, 2226.08], [1924.54, 2227.42], [1927.65, 2230.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2028.14, 2356.27], [2035.12, 2349.45], [2029.61, 2343.83], [2022.82, 2350.46], [2024.39, 2352.08], [2023.12, 2353.31], [2025.84, 2356.1], [2026.94, 2355.04], [2028.14, 2356.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2082.83, 2033.3], [2079.98, 2030.34], [2076.76, 2033.44], [2079.61, 2036.41], [2082.83, 2033.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2117.79, 2305.49], [2125.81, 2297.96], [2120.46, 2292.27], [2110.56, 2301.57], [2113.92, 2305.14], [2115.8, 2303.37], [2117.79, 2305.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1830.61, 1927.87], [1826.22, 1923.63], [1824.03, 1925.91], [1822.69, 1924.61], [1813.31, 1934.34], [1819.05, 1939.86], [1830.61, 1927.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2115.9, 2567.88], [2111.36, 2563.78], [2108.85, 2566.57], [2113.4, 2570.66], [2115.9, 2567.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2010.93, 2104.01], [2008.91, 2102.0], [2007.77, 2103.15], [2005.53, 2100.91], [1996.34, 2110.13], [2002.69, 2116.47], [2011.77, 2107.36], [2009.67, 2105.27], [2010.93, 2104.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1987.09, 2300.85], [1985.07, 2298.87], [1983.54, 2300.42], [1981.69, 2298.6], [1978.38, 2301.95], [1979.81, 2303.36], [1973.82, 2309.43], [1978.2, 2313.75], [1987.59, 2304.22], [1985.66, 2302.31], [1987.09, 2300.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1215.25, 2528.19], [1211.04, 2520.35], [1209.26, 2521.31], [1208.1, 2519.15], [1210.31, 2517.96], [1207.9, 2513.49], [1196.21, 2519.78], [1201.03, 2528.62], [1205.01, 2526.53], [1207.95, 2532.14], [1215.25, 2528.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2112.23, 1894.8], [2106.95, 1888.93], [2097.41, 1897.52], [2104.39, 1905.28], [2108.63, 1901.47], [2106.93, 1899.58], [2112.23, 1894.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2383.21, 2206.13], [2379.17, 2201.98], [2377.43, 2203.66], [2375.94, 2202.12], [2374.0, 2204.01], [2373.12, 2203.11], [2369.86, 2206.27], [2371.29, 2207.75], [2367.19, 2211.74], [2372.16, 2216.87], [2383.21, 2206.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1835.34, 2034.84], [1836.82, 2033.42], [1837.67, 2034.32], [1844.38, 2027.92], [1839.69, 2022.99], [1832.69, 2029.68], [1833.81, 2030.85], [1832.62, 2032.0], [1835.34, 2034.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2053.48, 2167.15], [2064.95, 2155.31], [2063.05, 2153.46], [2061.04, 2155.54], [2057.21, 2151.83], [2047.74, 2161.6], [2053.48, 2167.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2297.04, 2084.42], [2292.65, 2080.13], [2289.33, 2083.54], [2288.05, 2082.29], [2284.37, 2086.06], [2285.26, 2086.93], [2284.61, 2087.6], [2286.31, 2089.25], [2284.46, 2091.15], [2288.05, 2094.65], [2296.13, 2086.37], [2295.63, 2085.89], [2297.04, 2084.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1872.88, 2000.43], [1867.38, 1994.76], [1861.51, 2000.46], [1867.96, 2007.11], [1871.94, 2003.26], [1870.98, 2002.27], [1872.88, 2000.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2321.24, 2123.54], [2325.89, 2118.86], [2318.83, 2111.84], [2320.32, 2110.34], [2316.99, 2107.05], [2313.28, 2110.79], [2315.25, 2112.75], [2313.57, 2114.44], [2314.09, 2114.95], [2312.56, 2116.5], [2318.92, 2122.82], [2319.71, 2122.03], [2321.24, 2123.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1985.8, 2278.21], [1983.79, 2276.07], [1982.23, 2277.55], [1981.2, 2276.46], [1975.84, 2281.53], [1978.89, 2284.75], [1985.8, 2278.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1146.56, 2346.23], [1142.49, 2338.58], [1133.81, 2343.16], [1137.89, 2350.81], [1146.56, 2346.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2267.21, 2069.76], [2264.77, 2067.6], [2260.61, 2072.35], [2265.01, 2076.21], [2267.94, 2072.88], [2265.98, 2071.16], [2267.21, 2069.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1769.88, 1934.72], [1767.15, 1931.99], [1763.1, 1936.01], [1765.84, 1938.76], [1769.88, 1934.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1721.2, 1992.99], [1717.92, 1989.88], [1713.27, 1994.77], [1716.54, 1997.88], [1721.2, 1992.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2103.34, 2277.87], [2100.68, 2275.13], [2098.8, 2276.96], [2097.28, 2275.4], [2092.89, 2279.66], [2098.82, 2285.77], [2103.74, 2281.0], [2101.98, 2279.19], [2103.34, 2277.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1988.59, 2401.38], [1983.46, 2396.2], [1978.16, 2401.44], [1983.28, 2406.61], [1988.59, 2401.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2149.8, 2287.04], [2144.47, 2281.48], [2139.85, 2285.91], [2143.29, 2289.5], [2137.09, 2295.45], [2144.49, 2303.17], [2150.43, 2297.48], [2144.92, 2291.73], [2149.8, 2287.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1653.5, 2566.47], [1666.88, 2563.78], [1653.21, 2499.32], [1639.24, 2502.08], [1653.5, 2566.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2118.95, 2165.64], [2120.57, 2163.93], [2121.72, 2165.02], [2127.02, 2159.44], [2124.23, 2156.81], [2125.98, 2154.97], [2123.82, 2152.93], [2121.59, 2155.27], [2119.81, 2153.59], [2113.39, 2160.36], [2118.95, 2165.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2119.76, 2261.73], [2114.06, 2255.72], [2107.69, 2261.74], [2113.41, 2267.76], [2119.76, 2261.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1814.36, 1965.09], [1811.01, 1962.02], [1807.12, 1966.25], [1810.47, 1969.32], [1814.36, 1965.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2041.01, 2078.36], [2035.74, 2072.31], [2030.25, 2077.1], [2035.52, 2083.15], [2041.01, 2078.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2500.18, 2301.97], [2496.62, 2298.43], [2490.83, 2304.24], [2494.39, 2307.77], [2500.18, 2301.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2023.61, 2288.72], [2019.65, 2284.88], [2015.56, 2289.08], [2019.51, 2292.93], [2023.61, 2288.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1170.21, 2739.78], [1170.08, 2736.93], [1172.74, 2736.8], [1172.28, 2726.19], [1169.59, 2726.31], [1169.53, 2725.19], [1167.28, 2725.3], [1167.25, 2724.76], [1163.08, 2724.95], [1163.11, 2725.49], [1163.16, 2726.62], [1159.05, 2726.81], [1159.51, 2737.41], [1163.66, 2737.22], [1163.79, 2740.07], [1170.21, 2739.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2081.05, 2021.32], [2079.38, 2019.55], [2075.03, 2023.69], [2076.7, 2025.45], [2081.05, 2021.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2353.56, 2144.47], [2345.33, 2136.14], [2344.48, 2136.99], [2343.04, 2135.53], [2338.88, 2139.64], [2340.67, 2141.46], [2339.84, 2142.27], [2349.41, 2151.93], [2352.75, 2148.62], [2351.63, 2147.49], [2352.97, 2146.17], [2352.41, 2145.6], [2353.56, 2144.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2093.37, 2043.58], [2090.2, 2040.2], [2086.99, 2043.21], [2090.14, 2046.59], [2093.37, 2043.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2003.92, 2258.91], [2001.06, 2256.21], [1993.93, 2263.76], [1996.79, 2266.46], [2003.92, 2258.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2249.04, 2027.7], [2242.98, 2022.17], [2236.23, 2029.56], [2242.29, 2035.09], [2249.04, 2027.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2120.13, 2208.42], [2116.27, 2204.82], [2108.41, 2213.22], [2112.28, 2216.82], [2120.13, 2208.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2248.71, 2428.99], [2244.88, 2425.13], [2239.69, 2430.28], [2243.51, 2434.14], [2248.71, 2428.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2050.55, 2053.67], [2045.01, 2046.97], [2039.27, 2051.71], [2044.81, 2058.41], [2050.55, 2053.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2086.2, 1936.69], [2092.79, 1929.93], [2086.6, 1924.09], [2080.03, 1930.99], [2086.2, 1936.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1245.92, 2737.83], [1245.23, 2721.65], [1234.0, 2722.13], [1234.06, 2723.19], [1228.76, 2723.42], [1229.18, 2733.52], [1230.11, 2733.47], [1230.26, 2736.74], [1234.57, 2736.55], [1234.65, 2738.3], [1245.92, 2737.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1868.59, 2131.36], [1861.04, 2123.89], [1857.09, 2127.9], [1860.2, 2130.98], [1858.14, 2133.08], [1862.58, 2137.46], [1868.59, 2131.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1691.89, 1976.69], [1687.59, 1972.11], [1683.98, 1975.49], [1688.28, 1980.08], [1691.89, 1976.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2011.98, 2145.73], [2003.39, 2137.21], [1998.98, 2141.67], [2007.57, 2150.18], [2011.98, 2145.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1751.56, 1933.22], [1745.36, 1927.2], [1735.92, 1936.93], [1742.12, 1942.95], [1751.56, 1933.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2134.61, 2097.77], [2130.49, 2093.75], [2126.84, 2097.51], [2130.96, 2101.52], [2134.61, 2097.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1999.56, 2314.2], [1994.23, 2308.83], [1993.32, 2309.74], [1991.65, 2308.05], [1982.6, 2317.03], [1989.59, 2324.08], [1999.56, 2314.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2075.04, 2463.17], [2072.48, 2460.78], [2067.76, 2465.82], [2070.16, 2468.07], [2068.27, 2470.09], [2071.99, 2473.57], [2077.09, 2468.11], [2073.53, 2464.78], [2075.04, 2463.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1865.09, 2101.09], [1860.46, 2096.75], [1849.8, 2108.16], [1854.43, 2112.48], [1865.09, 2101.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2328.35, 2174.42], [2337.53, 2165.12], [2333.55, 2161.2], [2330.48, 2164.3], [2329.28, 2163.12], [2322.46, 2170.04], [2324.92, 2172.47], [2325.64, 2171.74], [2328.35, 2174.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2046.83, 1987.44], [2043.41, 1984.31], [2039.48, 1988.59], [2042.91, 1991.72], [2046.83, 1987.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1840.08, 2012.9], [1836.51, 2009.35], [1836.34, 2009.53], [1834.85, 2011.16], [1833.38, 2009.7], [1825.0, 2018.11], [1827.9, 2020.99], [1826.08, 2022.82], [1829.39, 2026.11], [1839.38, 2016.07], [1838.15, 2014.84], [1840.08, 2012.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2305.56, 2133.51], [2295.83, 2124.0], [2286.95, 2133.09], [2296.69, 2142.6], [2305.56, 2133.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2099.23, 2120.77], [2090.9, 2112.67], [2089.99, 2113.59], [2087.78, 2111.44], [2082.88, 2116.48], [2084.92, 2118.47], [2084.25, 2119.15], [2092.76, 2127.42], [2099.23, 2120.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2182.03, 1973.52], [2183.33, 1972.26], [2184.35, 1973.32], [2194.64, 1963.34], [2189.96, 1958.53], [2188.37, 1960.06], [2186.38, 1958.01], [2181.23, 1963.0], [2183.48, 1965.31], [2179.77, 1968.89], [2181.06, 1970.22], [2179.91, 1971.34], [2182.03, 1973.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2128.51, 2087.65], [2119.76, 2079.72], [2114.64, 2085.38], [2123.37, 2093.3], [2128.51, 2087.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1470.07, 2807.72], [1490.58, 2797.68], [1490.2, 2787.02], [1485.43, 2776.99], [1462.16, 2788.4], [1466.96, 2798.16], [1465.54, 2798.96], [1470.07, 2807.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1734.19, 1998.41], [1731.15, 1995.41], [1726.89, 1999.71], [1729.92, 2002.71], [1734.19, 1998.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2111.45, 1944.55], [2105.53, 1938.74], [2095.26, 1949.21], [2101.18, 1955.02], [2111.45, 1944.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1777.45, 1963.78], [1770.68, 1957.46], [1763.82, 1964.8], [1770.58, 1971.12], [1777.45, 1963.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2191.51, 2038.34], [2198.12, 2044.71], [2209.94, 2031.63], [2203.45, 2025.56], [2191.51, 2038.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2011.79, 2262.43], [2020.96, 2252.98], [2015.07, 2247.24], [2006.56, 2256.0], [2007.36, 2256.77], [2005.53, 2258.64], [2007.7, 2260.75], [2008.85, 2259.57], [2011.79, 2262.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2273.02, 2082.24], [2269.83, 2079.19], [2261.83, 2087.54], [2265.01, 2090.58], [2273.02, 2082.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2174.53, 1985.67], [2182.71, 1993.24], [2187.0, 1988.67], [2178.76, 1980.99], [2174.53, 1985.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2036.36, 2369.31], [2037.52, 2367.98], [2038.3, 2368.66], [2044.74, 2361.18], [2039.25, 2356.45], [2031.66, 2365.26], [2036.36, 2369.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2010.28, 2029.02], [2007.44, 2026.3], [2004.07, 2029.82], [2006.91, 2032.54], [2010.28, 2029.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1421.88, 1924.37], [1428.82, 1930.69], [1440.19, 1918.27], [1433.23, 1911.96], [1421.88, 1924.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2138.96, 1966.71], [2132.95, 1960.85], [2120.69, 1973.44], [2126.71, 1979.3], [2138.96, 1966.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1807.31, 1944.33], [1803.57, 1940.53], [1798.36, 1945.66], [1802.1, 1949.46], [1807.31, 1944.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1837.24, 2622.56], [1834.25, 2609.59], [1802.05, 2616.83], [1805.05, 2629.68], [1837.24, 2622.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2412.59, 2240.27], [2409.75, 2237.56], [2408.66, 2238.7], [2405.8, 2235.96], [2397.76, 2244.37], [2403.45, 2249.82], [2412.59, 2240.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1865.34, 2170.33], [1862.43, 2167.15], [1858.0, 2171.2], [1860.91, 2174.38], [1865.34, 2170.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2087.81, 2011.87], [2086.38, 2010.41], [2084.85, 2011.9], [2080.55, 2007.48], [2075.17, 2012.72], [2080.89, 2018.61], [2087.81, 2011.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2065.05, 2215.88], [2061.15, 2212.51], [2057.08, 2217.22], [2060.97, 2220.59], [2065.05, 2215.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1830.61, 2120.1], [1826.39, 2116.01], [1824.07, 2118.41], [1828.27, 2122.5], [1830.61, 2120.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2101.21, 2218.52], [2097.03, 2214.47], [2092.53, 2219.11], [2096.71, 2223.16], [2101.21, 2218.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1919.11, 2041.5], [1915.05, 2036.73], [1911.44, 2039.83], [1915.5, 2044.59], [1919.11, 2041.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2230.0, 2169.84], [2239.71, 2159.72], [2237.97, 2158.06], [2239.53, 2156.43], [2235.27, 2152.33], [2233.39, 2154.31], [2232.14, 2153.11], [2222.84, 2162.82], [2224.83, 2164.72], [2223.1, 2166.52], [2224.81, 2168.17], [2226.46, 2166.45], [2230.0, 2169.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2181.12, 2204.55], [2175.8, 2199.64], [2171.85, 2203.91], [2170.48, 2202.66], [2163.76, 2209.94], [2170.44, 2216.11], [2181.12, 2204.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1231.6, 2563.95], [1240.37, 2558.74], [1236.96, 2552.99], [1225.61, 2559.76], [1224.53, 2558.03], [1223.9, 2558.41], [1221.84, 2554.91], [1217.49, 2557.46], [1219.56, 2560.96], [1217.7, 2562.06], [1223.87, 2572.38], [1233.27, 2566.79], [1231.6, 2563.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1875.64, 1990.97], [1872.47, 1987.12], [1868.06, 1990.75], [1871.23, 1994.61], [1875.64, 1990.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2182.52, 2132.78], [2174.63, 2125.32], [2170.04, 2130.18], [2177.93, 2137.64], [2182.52, 2132.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2349.41, 2161.5], [2353.87, 2156.82], [2349.32, 2152.4], [2344.77, 2156.97], [2349.41, 2161.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1646.34, 2166.48], [1657.68, 2164.26], [1650.21, 2128.95], [1642.89, 2130.39], [1646.29, 2147.95], [1642.63, 2148.64], [1646.34, 2166.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1822.86, 1976.29], [1817.93, 1971.84], [1813.97, 1976.22], [1818.89, 1980.67], [1822.86, 1976.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2009.57, 2241.7], [2004.57, 2237.17], [1996.57, 2245.98], [2001.56, 2250.52], [2009.57, 2241.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1257.94, 2630.13], [1267.69, 2623.63], [1268.71, 2625.15], [1275.23, 2620.8], [1273.47, 2618.16], [1274.12, 2617.73], [1272.08, 2614.67], [1271.44, 2615.1], [1264.71, 2619.6], [1262.56, 2616.44], [1262.19, 2616.7], [1260.51, 2614.22], [1256.32, 2617.02], [1258.27, 2619.74], [1253.27, 2623.07], [1257.94, 2630.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1751.66, 1990.49], [1746.02, 1985.25], [1743.65, 1987.82], [1742.73, 1986.97], [1735.89, 1994.35], [1742.44, 2000.43], [1751.66, 1990.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1998.34, 2296.09], [1995.35, 2293.07], [1991.1, 2297.3], [1994.07, 2300.3], [1998.34, 2296.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1818.97, 2015.83], [1820.63, 2014.08], [1821.61, 2015.01], [1829.25, 2006.98], [1823.02, 2001.05], [1815.29, 2009.17], [1815.96, 2009.8], [1814.38, 2011.46], [1818.97, 2015.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1917.44, 2065.41], [1914.82, 2062.72], [1905.24, 2072.08], [1910.84, 2077.81], [1916.4, 2072.38], [1913.42, 2069.33], [1917.44, 2065.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2356.47, 2139.48], [2359.54, 2136.51], [2350.68, 2127.34], [2346.33, 2131.55], [2353.61, 2139.07], [2354.88, 2137.85], [2356.47, 2139.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2238.15, 2204.45], [2226.99, 2193.87], [2220.89, 2200.3], [2232.05, 2210.88], [2238.15, 2204.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2396.18, 2225.37], [2390.37, 2219.86], [2383.76, 2226.83], [2389.58, 2232.34], [2396.18, 2225.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1151.26, 2558.73], [1158.79, 2554.76], [1153.84, 2545.33], [1146.29, 2549.3], [1143.91, 2550.55], [1147.18, 2556.77], [1149.57, 2555.52], [1151.26, 2558.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2152.25, 2176.28], [2149.4, 2173.2], [2146.43, 2175.95], [2143.32, 2172.59], [2132.68, 2182.43], [2138.64, 2188.86], [2152.25, 2176.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2241.68, 2071.71], [2237.78, 2067.72], [2236.13, 2069.33], [2233.81, 2066.96], [2226.63, 2073.98], [2227.74, 2075.11], [2225.62, 2077.19], [2230.72, 2082.42], [2241.68, 2071.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1775.72, 2039.33], [1777.33, 2037.61], [1778.36, 2038.58], [1787.01, 2029.31], [1780.67, 2023.39], [1770.41, 2034.36], [1775.72, 2039.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1880.81, 2075.58], [1888.46, 2083.02], [1901.47, 2069.65], [1893.83, 2062.21], [1880.81, 2075.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2258.82, 2087.28], [2253.47, 2082.06], [2249.93, 2085.68], [2251.12, 2086.84], [2244.87, 2093.24], [2250.16, 2098.4], [2259.8, 2088.51], [2258.68, 2087.42], [2258.82, 2087.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2186.27, 2516.77], [2188.16, 2514.97], [2189.42, 2516.28], [2192.43, 2513.4], [2191.04, 2511.95], [2192.97, 2510.08], [2186.38, 2503.21], [2179.55, 2509.77], [2186.27, 2516.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2257.68, 2064.72], [2253.49, 2060.63], [2244.46, 2069.85], [2248.64, 2073.95], [2257.68, 2064.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2237.96, 2467.47], [2240.77, 2464.43], [2239.11, 2462.91], [2239.89, 2462.06], [2234.34, 2456.96], [2231.98, 2459.53], [2229.82, 2457.54], [2227.28, 2460.31], [2234.69, 2467.14], [2236.03, 2465.7], [2237.96, 2467.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1046.47, 2237.14], [1051.83, 2234.6], [1050.2, 2231.17], [1044.84, 2233.71], [1046.47, 2237.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2089.18, 2357.86], [2076.94, 2346.81], [2072.24, 2352.02], [2084.49, 2363.07], [2089.18, 2357.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1988.11, 2026.53], [1981.43, 2020.12], [1978.82, 2022.84], [1979.28, 2023.27], [1975.87, 2026.82], [1982.09, 2032.79], [1988.11, 2026.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1912.3, 2016.63], [1916.12, 2012.37], [1915.29, 2011.63], [1916.94, 2009.81], [1912.74, 2006.03], [1910.84, 2008.16], [1909.23, 2006.71], [1905.88, 2010.43], [1907.51, 2011.88], [1906.11, 2013.43], [1909.14, 2016.15], [1910.32, 2014.84], [1912.3, 2016.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1905.25, 2231.1], [1899.68, 2225.8], [1894.39, 2231.37], [1899.96, 2236.67], [1905.25, 2231.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2502.54, 2276.07], [2511.27, 2264.92], [2505.18, 2260.15], [2502.68, 2263.33], [2500.85, 2261.89], [2493.09, 2271.79], [2496.8, 2274.7], [2498.32, 2272.76], [2502.54, 2276.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1943.41, 2346.37], [1955.07, 2334.08], [1948.3, 2327.35], [1936.25, 2339.6], [1943.41, 2346.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2049.84, 2076.67], [2044.71, 2072.2], [2041.34, 2076.06], [2046.47, 2080.53], [2049.84, 2076.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2116.52, 2587.09], [2122.71, 2580.47], [2112.08, 2570.53], [2105.89, 2577.15], [2107.92, 2579.04], [2106.64, 2580.41], [2110.12, 2583.66], [2111.4, 2582.29], [2116.52, 2587.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1913.93, 2167.67], [1919.63, 2162.21], [1920.43, 2163.04], [1925.37, 2158.29], [1921.84, 2154.62], [1919.82, 2156.57], [1916.24, 2152.84], [1909.15, 2159.64], [1911.75, 2162.33], [1910.22, 2163.81], [1913.93, 2167.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1902.43, 2059.51], [1906.99, 2054.81], [1902.2, 2050.13], [1897.7, 2054.81], [1902.43, 2059.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1833.02, 2172.68], [1834.31, 2171.29], [1835.52, 2172.41], [1843.29, 2164.01], [1841.61, 2162.46], [1842.97, 2160.98], [1838.89, 2157.2], [1840.54, 2155.41], [1838.49, 2153.51], [1830.24, 2162.41], [1831.1, 2163.21], [1828.75, 2165.76], [1829.55, 2166.51], [1828.07, 2168.11], [1833.02, 2172.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1974.0, 2156.96], [1970.49, 2153.42], [1966.16, 2157.71], [1969.66, 2161.26], [1974.0, 2156.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1717.1, 1987.96], [1712.99, 1983.82], [1708.57, 1988.2], [1712.67, 1992.34], [1717.1, 1987.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2174.15, 2094.76], [2166.67, 2086.79], [2156.21, 2096.61], [2163.69, 2104.58], [2174.15, 2094.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1964.66, 2081.81], [1960.02, 2077.05], [1955.44, 2081.52], [1960.08, 2086.28], [1964.66, 2081.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2158.2, 2275.68], [2153.74, 2271.26], [2151.15, 2273.88], [2155.61, 2278.3], [2158.2, 2275.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2102.75, 2343.44], [2089.77, 2330.94], [2086.22, 2334.64], [2087.69, 2336.06], [2085.96, 2337.85], [2097.46, 2348.93], [2102.75, 2343.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2446.21, 2254.61], [2451.42, 2249.33], [2446.78, 2244.88], [2441.63, 2250.05], [2446.21, 2254.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2063.32, 2354.77], [2059.58, 2350.86], [2054.92, 2355.34], [2058.65, 2359.24], [2063.32, 2354.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1738.34, 1906.59], [1729.64, 1897.58], [1724.41, 1902.63], [1734.54, 1913.12], [1739.14, 1908.68], [1737.71, 1907.2], [1738.34, 1906.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2128.66, 2216.46], [2123.7, 2211.24], [2111.4, 2222.91], [2118.11, 2229.99], [2129.06, 2219.62], [2127.3, 2217.75], [2128.66, 2216.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2041.43, 2213.89], [2035.18, 2207.48], [2027.78, 2214.71], [2034.04, 2221.11], [2041.43, 2213.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1780.39, 2019.4], [1774.35, 2013.55], [1765.21, 2022.99], [1771.25, 2028.85], [1780.39, 2019.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2192.43, 2111.9], [2186.57, 2106.4], [2174.71, 2119.0], [2180.56, 2124.51], [2192.43, 2111.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2000.5, 2235.76], [1996.86, 2231.84], [1992.04, 2236.32], [1995.67, 2240.24], [2000.5, 2235.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1919.6, 2214.45], [1915.39, 2210.03], [1910.27, 2214.9], [1914.49, 2219.33], [1919.6, 2214.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1339.65, 2788.88], [1344.07, 2788.78], [1343.74, 2782.76], [1339.32, 2782.85], [1339.65, 2788.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1816.27, 2057.4], [1809.56, 2050.81], [1802.7, 2057.8], [1805.14, 2060.2], [1800.04, 2065.4], [1804.31, 2069.58], [1816.27, 2057.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1991.18, 2085.13], [1986.49, 2079.99], [1977.8, 2087.93], [1982.48, 2093.07], [1991.18, 2085.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2345.76, 2190.8], [2353.53, 2183.02], [2347.7, 2177.2], [2338.68, 2186.22], [2342.27, 2189.81], [2343.52, 2188.56], [2345.76, 2190.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1873.08, 2057.43], [1864.6, 2049.44], [1859.86, 2054.46], [1868.34, 2062.46], [1873.08, 2057.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2042.58, 1992.02], [2038.38, 1987.88], [2033.47, 1992.87], [2037.68, 1997.01], [2042.58, 1992.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1770.13, 2515.34], [1765.08, 2487.9], [1748.31, 2410.56], [1726.76, 2415.26], [1743.63, 2492.59], [1743.84, 2492.54], [1749.0, 2520.0], [1770.13, 2515.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2200.24, 2005.64], [2194.47, 2000.31], [2189.75, 2005.42], [2195.52, 2010.75], [2200.24, 2005.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2000.15, 2331.86], [2008.6, 2323.77], [2006.25, 2321.32], [2007.79, 2319.83], [2004.75, 2316.65], [2002.76, 2318.55], [2002.04, 2317.8], [1993.81, 2325.69], [1994.88, 2326.81], [1993.16, 2328.46], [1995.67, 2331.08], [1997.62, 2329.21], [2000.15, 2331.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1266.6, 2732.57], [1266.36, 2720.47], [1261.21, 2720.64], [1261.19, 2719.9], [1257.82, 2720.02], [1257.85, 2720.75], [1251.49, 2720.97], [1251.74, 2733.19], [1254.81, 2733.11], [1255.08, 2743.25], [1262.78, 2743.01], [1262.59, 2735.34], [1260.12, 2735.39], [1260.06, 2732.81], [1266.6, 2732.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2014.85, 2043.04], [2010.2, 2038.3], [2006.4, 2042.02], [2011.04, 2046.77], [2014.85, 2043.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2118.11, 2148.58], [2113.15, 2143.37], [2111.94, 2144.53], [2111.89, 2144.48], [2104.09, 2151.91], [2110.46, 2158.59], [2118.21, 2151.2], [2116.86, 2149.78], [2118.11, 2148.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2088.28, 2330.14], [2084.05, 2326.25], [2078.92, 2331.81], [2083.15, 2335.71], [2088.28, 2330.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2054.95, 2209.76], [2059.1, 2205.53], [2054.79, 2201.31], [2050.64, 2205.54], [2054.95, 2209.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2135.69, 2298.53], [2132.09, 2294.79], [2127.35, 2299.34], [2130.94, 2303.09], [2135.69, 2298.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2058.13, 2147.64], [2051.92, 2141.76], [2039.73, 2154.62], [2045.94, 2160.51], [2058.13, 2147.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2125.02, 2558.65], [2118.8, 2552.45], [2116.83, 2554.43], [2123.05, 2560.62], [2125.02, 2558.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1821.17, 1918.98], [1815.59, 1913.41], [1806.01, 1923.0], [1811.59, 1928.58], [1821.17, 1918.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2216.59, 2027.93], [2221.53, 2022.5], [2213.66, 2014.94], [2208.66, 2020.15], [2216.59, 2027.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2079.04, 2193.94], [2075.13, 2190.5], [2069.85, 2196.48], [2073.76, 2199.93], [2079.04, 2193.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1988.23, 2133.15], [1983.74, 2128.67], [1978.35, 2134.09], [1982.84, 2138.56], [1988.23, 2133.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2245.7, 2197.08], [2236.59, 2188.01], [2230.8, 2193.82], [2239.91, 2202.89], [2245.7, 2197.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2515.56, 2273.88], [2510.91, 2269.41], [2501.75, 2278.95], [2506.41, 2283.42], [2515.56, 2273.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1621.24, 1797.31], [1648.8, 1762.72], [1654.48, 1767.54], [1661.32, 1759.86], [1649.04, 1749.73], [1615.05, 1792.38], [1621.24, 1797.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1692.21, 2601.43], [1710.83, 2597.33], [1707.9, 2584.05], [1689.27, 2588.16], [1692.21, 2601.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1844.33, 2081.99], [1845.98, 2080.21], [1842.67, 2077.16], [1838.7, 2081.46], [1836.83, 2079.74], [1835.12, 2081.6], [1836.31, 2082.7], [1834.64, 2084.51], [1841.32, 2090.68], [1847.03, 2084.5], [1844.33, 2081.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2199.34, 2017.23], [2196.57, 2014.61], [2191.92, 2019.51], [2194.68, 2022.12], [2199.34, 2017.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2035.31, 2181.97], [2024.44, 2171.91], [2021.94, 2174.62], [2022.44, 2175.09], [2020.08, 2177.62], [2021.53, 2178.97], [2020.53, 2180.06], [2029.44, 2188.31], [2035.31, 2181.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2164.42, 1993.32], [2160.35, 1989.61], [2159.56, 1990.49], [2158.32, 1989.36], [2155.75, 1992.19], [2154.52, 1991.08], [2151.6, 1994.28], [2152.6, 1995.19], [2148.84, 1999.31], [2154.39, 2004.35], [2164.42, 1993.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1776.82, 1949.43], [1773.31, 1946.15], [1769.82, 1949.88], [1773.34, 1953.16], [1776.82, 1949.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2201.27, 2500.89], [2191.79, 2492.4], [2188.86, 2495.67], [2190.49, 2497.14], [2188.41, 2499.47], [2196.27, 2506.49], [2201.27, 2500.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1144.04, 2405.49], [1135.8, 2397.19], [1135.34, 2397.65], [1133.11, 2395.41], [1129.93, 2398.56], [1132.16, 2400.8], [1128.37, 2404.56], [1132.1, 2408.32], [1126.51, 2413.87], [1132.5, 2419.92], [1136.32, 2416.14], [1138.1, 2414.37], [1142.4, 2410.11], [1140.91, 2408.6], [1144.04, 2405.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2165.1, 2017.88], [2170.26, 2022.68], [2183.83, 2007.62], [2178.67, 2002.64], [2165.1, 2017.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2023.78, 2026.87], [2018.16, 2021.37], [2012.7, 2026.95], [2018.33, 2032.45], [2023.78, 2026.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2096.74, 2019.72], [2094.87, 2017.74], [2093.84, 2018.71], [2089.95, 2014.59], [2083.58, 2020.59], [2089.33, 2026.7], [2096.74, 2019.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2169.19, 1933.05], [2166.21, 1930.14], [2165.14, 1931.25], [2163.3, 1929.47], [2161.73, 1931.08], [2160.91, 1930.28], [2158.2, 1933.06], [2158.53, 1933.38], [2156.83, 1935.13], [2162.14, 1940.29], [2169.19, 1933.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2286.48, 2112.35], [2281.98, 2108.31], [2278.29, 2112.43], [2277.31, 2111.55], [2271.37, 2118.18], [2276.85, 2123.09], [2286.48, 2112.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2298.3, 2405.63], [2290.01, 2397.25], [2284.83, 2402.37], [2293.13, 2410.75], [2298.3, 2405.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1204.23, 2687.8], [1204.19, 2686.89], [1208.46, 2686.74], [1208.34, 2683.21], [1212.16, 2683.08], [1211.9, 2675.14], [1202.58, 2675.47], [1202.53, 2674.09], [1197.21, 2674.27], [1197.25, 2675.65], [1197.45, 2681.58], [1194.66, 2681.67], [1194.82, 2686.7], [1197.61, 2686.61], [1197.63, 2687.12], [1201.18, 2687.0], [1201.22, 2687.91], [1204.23, 2687.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2032.21, 1980.68], [2028.7, 1977.64], [2025.05, 1981.86], [2028.56, 1984.9], [2032.21, 1980.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2114.42, 2286.46], [2112.44, 2284.52], [2111.13, 2285.87], [2109.05, 2283.85], [2101.03, 2292.09], [2106.84, 2297.76], [2114.62, 2289.78], [2112.86, 2288.06], [2114.42, 2286.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2121.31, 2038.07], [2112.15, 2028.97], [2099.47, 2042.13], [2108.46, 2051.16], [2121.31, 2038.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2139.78, 2529.25], [2151.03, 2517.49], [2144.27, 2511.24], [2133.06, 2522.74], [2139.78, 2529.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1701.02, 1941.3], [1698.55, 1938.95], [1697.76, 1939.78], [1695.42, 1937.55], [1689.72, 1943.58], [1696.23, 1949.76], [1701.76, 1943.92], [1700.06, 1942.31], [1701.02, 1941.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1827.09, 1962.84], [1823.02, 1958.99], [1817.55, 1964.77], [1821.62, 1968.62], [1827.09, 1962.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2200.22, 2057.15], [2202.5, 2054.94], [2204.0, 2056.48], [2216.42, 2044.45], [2214.6, 2042.58], [2216.56, 2040.68], [2212.38, 2036.35], [2200.42, 2047.95], [2200.84, 2048.38], [2197.77, 2051.35], [2199.25, 2052.86], [2197.6, 2054.45], [2200.22, 2057.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1192.98, 2489.9], [1200.97, 2486.34], [1198.08, 2479.89], [1193.4, 2481.98], [1192.05, 2478.97], [1188.38, 2480.61], [1188.25, 2480.31], [1188.68, 2479.31], [1187.84, 2477.54], [1186.98, 2477.48], [1186.48, 2476.37], [1183.29, 2477.83], [1182.31, 2475.56], [1177.54, 2477.69], [1179.04, 2480.94], [1175.58, 2482.45], [1179.42, 2491.08], [1183.37, 2489.31], [1186.7, 2496.73], [1194.46, 2493.21], [1192.98, 2489.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2032.5, 2060.16], [2029.77, 2057.79], [2026.73, 2061.3], [2029.46, 2063.67], [2032.5, 2060.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2086.31, 2047.97], [2080.24, 2042.67], [2074.48, 2049.25], [2080.55, 2054.56], [2086.31, 2047.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2012.87, 2309.92], [2008.75, 2306.0], [2003.29, 2311.75], [2007.42, 2315.66], [2012.87, 2309.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2016.08, 2053.24], [2010.19, 2047.12], [2005.0, 2052.12], [2008.78, 2056.06], [2006.74, 2058.03], [2008.84, 2060.21], [2016.08, 2053.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1927.15, 2021.74], [1922.89, 2017.04], [1920.33, 2019.36], [1919.95, 2018.94], [1914.09, 2024.25], [1919.32, 2030.01], [1926.18, 2023.81], [1925.6, 2023.17], [1927.15, 2021.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2394.42, 2200.09], [2391.31, 2197.28], [2386.9, 2202.16], [2390.01, 2204.97], [2394.42, 2200.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2277.82, 2096.64], [2273.57, 2092.47], [2269.43, 2096.69], [2273.67, 2100.86], [2277.82, 2096.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2071.9, 2238.27], [2065.87, 2232.45], [2056.0, 2242.67], [2062.03, 2248.49], [2071.9, 2238.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1882.9, 2203.37], [1879.84, 2200.14], [1878.83, 2201.1], [1876.14, 2198.26], [1869.43, 2204.62], [1875.17, 2210.69], [1882.9, 2203.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2135.92, 2312.43], [2128.75, 2305.11], [2123.04, 2310.69], [2130.22, 2318.01], [2135.92, 2312.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1175.1, 2684.08], [1175.3, 2682.9], [1179.6, 2683.61], [1181.21, 2673.9], [1177.55, 2673.3], [1178.0, 2670.54], [1172.44, 2669.63], [1172.02, 2672.2], [1159.31, 2670.11], [1157.95, 2678.36], [1168.83, 2680.14], [1168.56, 2681.8], [1172.41, 2682.42], [1172.22, 2683.6], [1175.1, 2684.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1106.14, 2449.24], [1110.2, 2445.59], [1110.57, 2446.0], [1114.27, 2442.68], [1102.8, 2429.85], [1099.03, 2433.22], [1101.79, 2436.32], [1094.15, 2443.18], [1102.85, 2452.9], [1106.49, 2449.63], [1106.14, 2449.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2485.21, 2273.28], [2502.24, 2255.59], [2491.71, 2245.04], [2474.92, 2263.35], [2485.21, 2273.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2130.33, 2102.37], [2126.03, 2098.28], [2121.79, 2102.74], [2126.08, 2106.83], [2130.33, 2102.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2060.88, 2018.39], [2055.96, 2013.72], [2047.19, 2022.97], [2053.11, 2028.58], [2058.55, 2022.84], [2057.55, 2021.9], [2060.88, 2018.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2143.79, 2558.15], [2145.9, 2555.92], [2148.11, 2558.0], [2151.19, 2554.75], [2141.12, 2545.23], [2135.94, 2550.71], [2143.79, 2558.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2341.31, 2154.61], [2337.3, 2150.67], [2332.87, 2155.17], [2336.88, 2159.12], [2341.31, 2154.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2704.4, 2028.1], [2703.99, 2022.16], [2697.77, 2022.59], [2698.19, 2028.53], [2704.4, 2028.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2709.0, 2008.79], [2708.64, 2002.42], [2703.18, 2002.73], [2703.55, 2009.1], [2709.0, 2008.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2838.4, 2305.01], [2838.11, 2299.84], [2835.39, 2299.99], [2835.34, 2299.0], [2822.66, 2299.72], [2823.11, 2307.93], [2836.5, 2307.19], [2836.38, 2305.12], [2838.4, 2305.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2654.55, 2269.62], [2654.09, 2258.26], [2645.62, 2258.6], [2646.06, 2269.95], [2654.55, 2269.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2738.2, 2146.39], [2737.76, 2140.17], [2734.59, 2140.39], [2734.48, 2138.83], [2722.9, 2139.63], [2723.44, 2147.42], [2738.2, 2146.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2826.4, 2080.94], [2825.77, 2073.21], [2807.95, 2074.66], [2808.39, 2079.98], [2812.98, 2079.6], [2813.23, 2082.76], [2824.09, 2081.87], [2824.03, 2081.12], [2826.4, 2080.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2683.0, 1894.51], [2682.5, 1888.52], [2675.63, 1889.09], [2676.13, 1895.08], [2683.0, 1894.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2828.46, 1675.45], [2820.71, 1673.91], [2818.47, 1685.22], [2826.22, 1686.76], [2828.46, 1675.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2583.64, 1939.72], [2583.35, 1935.67], [2581.03, 1935.83], [2580.67, 1930.85], [2576.52, 1931.16], [2576.61, 1932.42], [2569.45, 1932.95], [2570.14, 1942.42], [2581.82, 1941.58], [2581.7, 1939.86], [2583.64, 1939.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2627.27, 2268.27], [2626.77, 2261.68], [2619.91, 2262.19], [2620.4, 2268.78], [2627.27, 2268.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2807.03, 1645.02], [2801.01, 1643.83], [2799.68, 1650.52], [2805.71, 1651.71], [2807.03, 1645.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2822.94, 1565.35], [2823.39, 1562.35], [2824.73, 1562.54], [2826.95, 1547.42], [2818.71, 1546.21], [2816.58, 1560.71], [2817.77, 1560.88], [2817.24, 1564.51], [2822.94, 1565.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2697.99, 2040.59], [2697.7, 2033.99], [2689.98, 2034.33], [2690.27, 2040.94], [2697.99, 2040.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2667.52, 1889.14], [2667.13, 1879.47], [2655.72, 1879.94], [2655.91, 1884.43], [2657.12, 1884.38], [2657.33, 1889.56], [2667.52, 1889.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2655.65, 2285.46], [2655.22, 2279.06], [2648.99, 2279.48], [2649.42, 2285.88], [2655.65, 2285.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2640.29, 2032.48], [2639.84, 2024.78], [2627.8, 2025.47], [2627.88, 2026.87], [2626.62, 2026.94], [2626.9, 2031.91], [2627.7, 2031.87], [2627.77, 2033.21], [2640.29, 2032.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2609.01, 1957.48], [2608.64, 1953.73], [2602.8, 1954.31], [2603.18, 1958.05], [2609.01, 1957.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2682.16, 2112.76], [2681.85, 2104.97], [2670.38, 2105.44], [2670.69, 2113.23], [2682.16, 2112.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2814.84, 1860.22], [2816.5, 1853.85], [2816.0, 1853.72], [2818.14, 1845.51], [2816.85, 1845.18], [2817.97, 1840.86], [2804.48, 1837.37], [2800.56, 1852.39], [2807.56, 1854.21], [2806.56, 1858.07], [2814.84, 1860.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2649.09, 2210.96], [2648.91, 2206.3], [2646.23, 2206.4], [2646.18, 2205.07], [2633.34, 2205.56], [2633.47, 2208.92], [2632.1, 2208.98], [2632.26, 2213.32], [2647.34, 2212.75], [2647.27, 2211.03], [2649.09, 2210.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2728.51, 1970.01], [2728.19, 1964.2], [2723.15, 1964.48], [2723.08, 1963.32], [2715.73, 1963.72], [2716.18, 1971.81], [2726.74, 1971.24], [2726.69, 1970.11], [2728.51, 1970.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2695.4, 2130.65], [2702.02, 2130.39], [2701.75, 2123.52], [2695.13, 2123.77], [2695.4, 2130.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2527.63, 2221.86], [2532.97, 2218.62], [2528.59, 2211.42], [2521.47, 2215.73], [2521.77, 2216.22], [2520.64, 2216.91], [2521.93, 2219.03], [2522.85, 2218.47], [2524.71, 2221.54], [2526.69, 2220.33], [2527.63, 2221.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2730.23, 1994.69], [2729.9, 1988.17], [2716.87, 1988.83], [2717.2, 1995.36], [2730.23, 1994.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2584.31, 1990.23], [2583.85, 1983.8], [2581.66, 1983.95], [2581.57, 1982.71], [2571.59, 1983.41], [2572.17, 1991.6], [2582.28, 1990.89], [2582.24, 1990.37], [2584.31, 1990.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2831.94, 2176.68], [2831.78, 2173.72], [2830.26, 2173.81], [2830.12, 2171.22], [2825.6, 2171.48], [2825.52, 2170.03], [2820.23, 2170.33], [2820.3, 2171.56], [2814.8, 2171.86], [2815.06, 2176.38], [2816.15, 2176.33], [2816.38, 2180.48], [2829.79, 2179.73], [2829.62, 2176.81], [2831.94, 2176.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2625.31, 2044.85], [2625.11, 2038.77], [2619.56, 2038.96], [2619.76, 2045.04], [2625.31, 2044.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2650.53, 2223.24], [2650.08, 2217.0], [2648.01, 2217.16], [2647.85, 2214.99], [2636.81, 2215.8], [2637.43, 2224.2], [2650.53, 2223.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2704.02, 2000.91], [2703.62, 1997.04], [2696.96, 1997.71], [2697.36, 2001.58], [2704.02, 2000.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2727.56, 1946.35], [2727.14, 1939.09], [2725.29, 1939.19], [2725.24, 1938.39], [2712.1, 1939.16], [2712.57, 1947.24], [2727.56, 1946.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2833.73, 2267.82], [2833.37, 2260.74], [2824.87, 2261.18], [2824.81, 2259.83], [2821.74, 2259.99], [2821.87, 2262.6], [2825.3, 2262.42], [2825.6, 2268.24], [2833.73, 2267.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2740.82, 2181.97], [2740.64, 2176.72], [2737.35, 2176.84], [2737.31, 2175.64], [2728.45, 2175.93], [2728.75, 2184.7], [2738.2, 2184.39], [2738.12, 2182.06], [2740.82, 2181.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2775.71, 2117.58], [2775.53, 2113.51], [2774.05, 2113.59], [2773.99, 2112.53], [2760.35, 2113.14], [2760.74, 2121.75], [2774.1, 2121.16], [2773.94, 2117.66], [2775.71, 2117.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2819.69, 1711.8], [2810.86, 1710.13], [2808.57, 1722.25], [2817.39, 1723.92], [2819.69, 1711.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2584.39, 2022.28], [2584.19, 2016.35], [2573.01, 2016.73], [2573.21, 2022.66], [2584.39, 2022.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2628.59, 2186.93], [2622.67, 2187.0], [2622.74, 2193.67], [2628.66, 2193.61], [2628.59, 2186.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2773.67, 1761.0], [2780.7, 1762.61], [2780.82, 1762.07], [2782.35, 1762.43], [2784.93, 1751.27], [2783.48, 1750.93], [2783.74, 1749.8], [2779.02, 1748.71], [2778.65, 1750.33], [2776.26, 1749.78], [2773.67, 1761.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2780.92, 2210.91], [2780.74, 2208.18], [2779.76, 2208.25], [2779.7, 2207.31], [2766.77, 2208.14], [2767.25, 2215.69], [2779.77, 2214.89], [2779.52, 2211.0], [2780.92, 2210.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2548.4, 2190.48], [2561.11, 2189.9], [2560.73, 2179.48], [2548.02, 2179.92], [2548.4, 2190.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2728.94, 1958.25], [2728.21, 1950.34], [2715.33, 1951.52], [2716.06, 1959.43], [2728.94, 1958.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2564.19, 2238.04], [2563.98, 2234.47], [2550.39, 2235.27], [2550.8, 2242.19], [2562.79, 2241.49], [2562.59, 2238.13], [2564.19, 2238.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2632.95, 2220.22], [2632.73, 2215.26], [2625.38, 2215.58], [2625.6, 2220.54], [2632.95, 2220.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2588.64, 2204.07], [2583.81, 2204.19], [2584.06, 2213.22], [2595.91, 2212.9], [2595.8, 2208.7], [2593.97, 2208.75], [2593.87, 2205.16], [2588.67, 2205.31], [2588.64, 2204.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2724.64, 2231.29], [2740.1, 2230.55], [2740.02, 2228.15], [2742.59, 2227.96], [2742.39, 2225.93], [2732.87, 2226.29], [2724.12, 2226.63], [2724.64, 2231.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2687.25, 2185.2], [2686.81, 2179.34], [2673.07, 2180.35], [2673.58, 2187.31], [2684.89, 2186.49], [2684.81, 2185.38], [2687.25, 2185.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2770.08, 1980.21], [2769.62, 1972.71], [2766.88, 1972.87], [2766.79, 1971.4], [2757.66, 1971.96], [2758.22, 1980.94], [2770.08, 1980.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2777.97, 1854.88], [2784.83, 1821.79], [2771.78, 1819.1], [2764.91, 1852.19], [2777.97, 1854.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2622.25, 2234.77], [2622.04, 2228.54], [2617.61, 2228.68], [2617.82, 2234.91], [2622.25, 2234.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2517.28, 2156.4], [2512.5, 2148.79], [2509.01, 2150.92], [2508.46, 2149.95], [2506.09, 2151.4], [2506.63, 2152.18], [2505.18, 2153.0], [2510.0, 2160.95], [2517.28, 2156.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2792.04, 1827.81], [2792.83, 1824.1], [2785.78, 1822.6], [2784.98, 1826.32], [2792.04, 1827.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2588.65, 1862.08], [2588.02, 1855.1], [2579.65, 1855.87], [2580.28, 1862.83], [2588.65, 1862.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2559.9, 1844.42], [2566.81, 1844.07], [2566.73, 1842.43], [2573.58, 1842.07], [2572.61, 1823.25], [2558.84, 1823.95], [2559.9, 1844.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2625.81, 2037.18], [2625.56, 2033.57], [2619.19, 2034.02], [2619.44, 2037.61], [2625.81, 2037.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2832.54, 1564.92], [2828.47, 1563.83], [2826.72, 1570.28], [2830.79, 1571.39], [2832.54, 1564.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2735.72, 2097.75], [2735.08, 2089.6], [2723.33, 2090.51], [2723.75, 2095.93], [2726.01, 2095.75], [2726.23, 2098.49], [2735.72, 2097.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2839.59, 1809.28], [2831.35, 1807.09], [2828.83, 1816.61], [2837.08, 1818.79], [2839.59, 1809.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2596.08, 2225.94], [2595.54, 2217.49], [2585.8, 2218.12], [2585.89, 2219.47], [2582.43, 2219.69], [2582.83, 2226.05], [2585.91, 2225.85], [2585.95, 2226.59], [2596.08, 2225.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2839.76, 1738.24], [2844.0, 1720.16], [2836.64, 1718.43], [2835.64, 1722.72], [2834.63, 1722.48], [2833.69, 1726.49], [2834.87, 1726.77], [2833.93, 1730.78], [2835.48, 1731.15], [2834.12, 1736.92], [2839.76, 1738.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2803.14, 2320.66], [2802.71, 2312.67], [2795.98, 2313.03], [2796.42, 2321.02], [2803.14, 2320.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2761.11, 1947.08], [2751.13, 1947.34], [2751.31, 1954.59], [2761.28, 1954.33], [2761.11, 1947.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2692.34, 2303.57], [2691.13, 2292.73], [2682.82, 2293.65], [2683.83, 2302.77], [2684.3, 2302.71], [2684.5, 2304.44], [2692.34, 2303.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2747.51, 2319.88], [2746.98, 2312.47], [2735.63, 2313.28], [2736.16, 2320.68], [2747.51, 2319.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2835.26, 2282.09], [2834.93, 2275.36], [2830.51, 2275.59], [2830.41, 2273.62], [2825.49, 2273.86], [2825.57, 2275.5], [2819.52, 2275.81], [2819.8, 2281.58], [2825.88, 2281.28], [2825.94, 2282.54], [2835.26, 2282.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2744.8, 2264.86], [2744.44, 2260.16], [2742.11, 2260.35], [2741.61, 2253.77], [2735.62, 2254.23], [2736.49, 2265.51], [2744.8, 2264.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2635.22, 1926.41], [2634.96, 1918.84], [2631.44, 1918.96], [2631.41, 1917.91], [2622.18, 1918.22], [2622.22, 1919.27], [2617.56, 1919.43], [2617.85, 1928.06], [2629.11, 1927.67], [2629.07, 1926.62], [2635.22, 1926.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2690.24, 2162.51], [2689.69, 2152.09], [2673.73, 2152.92], [2674.28, 2163.34], [2690.24, 2162.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2831.48, 1647.96], [2831.73, 1646.66], [2833.91, 1647.07], [2837.03, 1630.24], [2829.13, 1628.77], [2828.23, 1633.68], [2826.69, 1633.39], [2824.51, 1645.12], [2826.92, 1645.56], [2826.65, 1647.06], [2831.48, 1647.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2732.71, 2030.27], [2732.54, 2022.21], [2715.47, 2022.59], [2715.6, 2028.1], [2712.93, 2028.17], [2712.98, 2030.71], [2732.71, 2030.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2561.66, 2230.2], [2561.18, 2222.02], [2549.34, 2222.72], [2549.82, 2230.9], [2561.66, 2230.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2536.91, 2157.23], [2544.17, 2152.89], [2540.85, 2147.21], [2533.53, 2151.29], [2536.91, 2157.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2635.54, 2124.76], [2645.91, 2124.46], [2645.72, 2117.76], [2643.64, 2117.83], [2643.6, 2116.28], [2635.63, 2116.5], [2635.65, 2117.32], [2631.41, 2117.44], [2631.61, 2124.27], [2635.52, 2124.16], [2635.54, 2124.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2819.24, 1590.13], [2810.69, 1588.0], [2808.23, 1597.84], [2816.78, 1599.98], [2819.24, 1590.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2796.14, 1980.32], [2795.34, 1968.87], [2786.23, 1969.51], [2787.03, 1980.95], [2796.14, 1980.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2734.83, 2111.08], [2734.3, 2101.48], [2720.44, 2102.24], [2720.96, 2111.84], [2734.83, 2111.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2821.79, 1764.33], [2813.95, 1762.9], [2812.36, 1771.64], [2820.2, 1773.07], [2821.79, 1764.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2805.78, 1746.85], [2807.2, 1740.81], [2800.99, 1739.37], [2799.69, 1745.47], [2805.78, 1746.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2784.67, 2307.87], [2784.02, 2299.04], [2769.53, 2300.1], [2769.94, 2305.7], [2772.1, 2305.54], [2772.35, 2308.78], [2784.67, 2307.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2602.12, 2013.8], [2601.87, 2009.2], [2594.53, 2009.61], [2594.78, 2014.19], [2602.12, 2013.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2824.2, 2069.55], [2823.73, 2060.64], [2812.1, 2061.25], [2812.21, 2063.36], [2805.29, 2063.73], [2805.58, 2069.18], [2812.44, 2068.81], [2812.51, 2070.17], [2824.2, 2069.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2595.86, 2190.22], [2595.81, 2184.97], [2599.45, 2184.94], [2599.43, 2181.71], [2595.82, 2181.75], [2595.82, 2181.06], [2587.19, 2181.13], [2587.26, 2190.29], [2595.86, 2190.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2594.64, 2140.49], [2594.04, 2131.69], [2581.16, 2132.58], [2581.54, 2138.22], [2582.01, 2138.19], [2582.23, 2141.34], [2594.64, 2140.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2645.44, 2100.49], [2644.9, 2094.05], [2631.84, 2095.16], [2632.04, 2097.56], [2630.89, 2097.66], [2631.44, 2104.05], [2644.53, 2102.93], [2644.34, 2100.59], [2645.44, 2100.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2835.52, 2293.94], [2835.49, 2292.52], [2837.94, 2292.46], [2837.81, 2286.73], [2835.62, 2286.78], [2835.59, 2285.59], [2826.97, 2285.81], [2827.02, 2287.45], [2824.11, 2287.53], [2824.24, 2292.76], [2827.35, 2292.67], [2827.39, 2294.15], [2835.52, 2293.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2594.48, 2237.28], [2593.84, 2228.58], [2585.7, 2229.18], [2585.82, 2230.95], [2584.06, 2231.08], [2584.43, 2236.04], [2586.62, 2235.89], [2586.77, 2237.84], [2594.48, 2237.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2796.06, 1754.91], [2796.56, 1751.31], [2790.71, 1750.27], [2789.92, 1754.81], [2787.74, 1754.42], [2785.96, 1764.56], [2794.1, 1766.0], [2796.06, 1754.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2647.98, 2162.89], [2647.6, 2156.59], [2645.44, 2156.72], [2645.38, 2155.9], [2634.18, 2156.58], [2634.69, 2164.98], [2645.78, 2164.3], [2645.7, 2163.03], [2647.98, 2162.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2689.05, 2173.8], [2688.57, 2166.67], [2675.25, 2167.55], [2675.41, 2169.9], [2677.26, 2169.78], [2677.58, 2174.56], [2689.05, 2173.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2675.75, 1959.6], [2675.49, 1955.38], [2673.36, 1955.52], [2673.27, 1954.12], [2659.53, 1955.01], [2659.8, 1959.22], [2661.07, 1959.14], [2661.27, 1962.33], [2673.71, 1961.53], [2673.6, 1959.74], [2675.75, 1959.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2785.04, 1968.32], [2784.41, 1962.15], [2778.4, 1962.78], [2779.03, 1968.93], [2785.04, 1968.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2845.35, 1779.63], [2847.52, 1766.36], [2841.71, 1765.4], [2841.14, 1768.92], [2837.84, 1768.38], [2836.93, 1773.9], [2839.05, 1774.25], [2838.36, 1778.49], [2845.35, 1779.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2591.58, 2046.42], [2591.36, 2041.95], [2588.31, 2042.11], [2588.22, 2040.16], [2574.88, 2040.84], [2574.93, 2041.86], [2573.21, 2041.95], [2573.39, 2045.43], [2575.25, 2045.33], [2575.51, 2050.4], [2588.29, 2049.76], [2588.13, 2046.59], [2591.58, 2046.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2708.71, 2227.23], [2715.06, 2226.96], [2714.81, 2219.98], [2708.42, 2220.29], [2708.71, 2227.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2703.28, 2157.56], [2703.06, 2150.89], [2696.61, 2151.1], [2696.84, 2157.78], [2703.28, 2157.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2557.37, 2159.85], [2551.96, 2150.72], [2540.96, 2157.45], [2546.42, 2166.38], [2557.37, 2159.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2674.1, 1923.89], [2673.93, 1919.4], [2671.92, 1919.48], [2671.77, 1915.73], [2659.65, 1916.2], [2659.71, 1917.71], [2657.44, 1917.8], [2657.63, 1922.51], [2659.84, 1922.42], [2659.97, 1925.66], [2672.04, 1925.18], [2671.99, 1923.98], [2674.1, 1923.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2557.87, 2142.8], [2552.3, 2133.58], [2541.87, 2140.11], [2547.4, 2149.16], [2557.87, 2142.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2837.32, 1689.92], [2839.82, 1676.54], [2833.79, 1675.42], [2833.06, 1679.31], [2829.86, 1678.71], [2828.77, 1684.53], [2831.37, 1685.01], [2830.69, 1688.67], [2837.32, 1689.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2617.24, 2041.47], [2616.87, 2036.57], [2616.21, 2036.62], [2616.09, 2035.0], [2606.76, 2035.71], [2607.7, 2048.0], [2615.87, 2047.37], [2615.43, 2041.61], [2617.24, 2041.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2680.29, 2101.27], [2680.06, 2092.86], [2669.14, 2093.17], [2669.17, 2094.23], [2667.34, 2094.28], [2667.54, 2101.62], [2680.29, 2101.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2730.91, 2005.78], [2730.46, 2000.04], [2728.11, 2000.22], [2727.86, 1997.02], [2718.41, 1997.75], [2718.56, 1999.73], [2716.76, 1999.87], [2717.04, 2003.53], [2718.68, 2003.41], [2718.93, 2006.71], [2730.91, 2005.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2706.6, 1930.26], [2706.3, 1923.65], [2700.45, 1923.92], [2700.75, 1930.52], [2706.6, 1930.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2710.41, 1976.66], [2710.16, 1972.68], [2702.59, 1973.16], [2702.85, 1977.14], [2710.41, 1976.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2778.0, 2084.25], [2777.64, 2080.96], [2771.8, 2081.6], [2772.17, 2084.89], [2778.0, 2084.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2523.94, 2152.59], [2525.74, 2151.47], [2527.15, 2153.73], [2530.49, 2151.66], [2524.07, 2141.33], [2520.68, 2143.43], [2520.09, 2142.47], [2514.96, 2145.65], [2521.63, 2156.39], [2525.0, 2154.3], [2523.94, 2152.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2589.9, 2036.63], [2589.6, 2032.59], [2587.5, 2032.75], [2587.39, 2031.41], [2574.06, 2032.38], [2574.61, 2039.78], [2587.65, 2038.82], [2587.51, 2036.79], [2589.9, 2036.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2631.65, 2140.86], [2631.54, 2136.53], [2624.92, 2136.71], [2625.05, 2141.05], [2631.65, 2140.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2549.07, 2224.24], [2548.54, 2219.1], [2540.91, 2219.88], [2541.44, 2225.02], [2549.07, 2224.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2683.66, 1885.23], [2678.52, 1881.19], [2676.21, 1884.12], [2681.36, 1888.16], [2683.66, 1885.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2702.44, 2167.94], [2701.97, 2163.09], [2695.98, 2163.67], [2696.45, 2168.52], [2702.44, 2167.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2807.62, 1769.89], [2809.84, 1759.32], [2799.31, 1756.89], [2796.99, 1767.37], [2807.62, 1769.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2593.08, 2166.6], [2592.8, 2163.0], [2591.9, 2163.07], [2591.57, 2158.83], [2578.98, 2159.8], [2579.6, 2167.65], [2593.08, 2166.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2524.68, 2163.87], [2516.77, 2168.73], [2520.7, 2175.12], [2528.6, 2170.25], [2524.68, 2163.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2784.77, 2319.74], [2784.33, 2312.17], [2770.1, 2313.0], [2770.45, 2319.01], [2772.78, 2318.87], [2772.88, 2320.43], [2784.77, 2319.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2675.69, 2044.8], [2675.09, 2036.49], [2663.41, 2037.33], [2664.01, 2045.65], [2675.69, 2044.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2589.64, 2000.09], [2589.4, 1995.26], [2586.87, 1995.39], [2586.83, 1994.59], [2572.58, 1995.27], [2572.62, 1996.07], [2570.87, 1996.15], [2571.21, 2003.05], [2587.17, 2002.28], [2587.07, 2000.22], [2589.64, 2000.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2826.83, 2118.56], [2826.77, 2117.72], [2829.19, 2117.57], [2828.73, 2110.47], [2826.64, 2110.6], [2826.59, 2109.72], [2815.09, 2110.47], [2815.25, 2112.85], [2812.35, 2113.04], [2812.72, 2118.52], [2815.23, 2118.36], [2815.29, 2119.32], [2826.83, 2118.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2670.51, 1908.79], [2670.09, 1901.07], [2655.99, 1901.86], [2656.42, 1909.56], [2670.51, 1908.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2780.67, 2295.37], [2780.09, 2287.15], [2771.17, 2287.78], [2771.22, 2288.46], [2768.72, 2288.65], [2769.25, 2296.18], [2780.67, 2295.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2771.76, 2070.72], [2771.22, 2063.3], [2757.95, 2064.27], [2758.33, 2069.51], [2760.14, 2069.38], [2760.3, 2071.55], [2771.76, 2070.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2639.66, 2020.64], [2639.17, 2012.77], [2626.43, 2013.57], [2626.93, 2021.44], [2639.66, 2020.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2790.89, 1993.06], [2791.34, 1999.5], [2797.64, 1999.07], [2797.41, 1992.62], [2790.89, 1993.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2674.91, 1985.97], [2674.51, 1977.79], [2670.82, 1977.97], [2670.75, 1976.64], [2666.27, 1976.87], [2666.34, 1978.37], [2662.79, 1978.54], [2662.85, 1979.54], [2660.25, 1979.67], [2660.6, 1986.67], [2674.91, 1985.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2783.26, 2125.28], [2783.08, 2121.38], [2777.16, 2121.66], [2777.34, 2125.56], [2783.26, 2125.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2829.51, 1869.21], [2834.76, 1845.21], [2835.95, 1839.81], [2824.15, 1837.26], [2817.81, 1866.29], [2829.51, 1869.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2589.72, 2105.74], [2589.52, 2101.16], [2586.93, 2101.26], [2586.76, 2097.14], [2577.91, 2097.51], [2578.13, 2102.63], [2580.31, 2102.54], [2580.43, 2105.32], [2582.96, 2105.22], [2583.0, 2106.03], [2589.72, 2105.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2610.98, 2149.92], [2610.61, 2143.47], [2604.25, 2143.83], [2604.62, 2150.29], [2610.98, 2149.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2776.7, 2228.52], [2776.4, 2223.91], [2777.91, 2223.81], [2777.71, 2220.77], [2776.33, 2220.86], [2776.27, 2220.0], [2767.69, 2220.57], [2767.75, 2221.4], [2764.68, 2221.59], [2765.15, 2228.67], [2767.6, 2228.51], [2767.64, 2229.11], [2776.7, 2228.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2827.16, 1651.07], [2821.93, 1649.86], [2820.5, 1656.05], [2825.73, 1657.26], [2827.16, 1651.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2686.44, 1964.79], [2686.13, 1961.5], [2679.77, 1962.09], [2680.08, 1965.38], [2686.44, 1964.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2693.55, 1977.68], [2693.17, 1972.5], [2687.63, 1972.91], [2688.01, 1978.09], [2693.55, 1977.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2676.04, 1936.91], [2675.54, 1928.88], [2672.99, 1929.04], [2672.89, 1927.39], [2659.67, 1928.21], [2659.79, 1930.17], [2657.57, 1930.31], [2657.89, 1935.64], [2659.78, 1935.52], [2659.93, 1937.9], [2676.04, 1936.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2791.87, 2182.73], [2783.32, 2182.94], [2783.44, 2187.81], [2791.99, 2187.61], [2791.87, 2182.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2737.98, 2195.58], [2737.51, 2187.5], [2728.29, 2188.04], [2728.76, 2196.12], [2737.98, 2195.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2609.24, 1927.23], [2608.64, 1920.42], [2600.73, 1921.12], [2601.33, 1927.93], [2609.24, 1927.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2685.29, 2135.3], [2684.81, 2126.76], [2675.95, 2127.31], [2676.01, 2128.56], [2671.78, 2128.88], [2672.23, 2136.08], [2685.29, 2135.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2806.79, 1710.9], [2798.61, 1708.96], [2795.45, 1722.29], [2803.63, 1724.22], [2806.79, 1710.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2787.98, 1736.18], [2781.12, 1734.38], [2779.51, 1741.91], [2786.41, 1743.61], [2787.98, 1736.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2812.5, 2161.32], [2812.17, 2157.19], [2805.62, 2157.72], [2805.7, 2158.68], [2803.68, 2158.84], [2803.88, 2161.38], [2805.94, 2161.22], [2805.99, 2161.83], [2812.5, 2161.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2801.06, 2260.43], [2800.68, 2252.55], [2795.24, 2252.81], [2795.12, 2250.41], [2788.89, 2250.71], [2788.99, 2252.84], [2785.45, 2253.02], [2785.84, 2261.17], [2801.06, 2260.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2807.6, 2113.8], [2807.29, 2107.87], [2799.29, 2108.29], [2799.4, 2110.4], [2796.82, 2110.53], [2796.92, 2112.5], [2799.48, 2112.38], [2799.58, 2114.22], [2807.6, 2113.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2808.75, 2125.7], [2808.49, 2120.15], [2802.65, 2120.42], [2802.9, 2125.97], [2808.75, 2125.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2735.35, 2086.35], [2735.25, 2078.49], [2722.1, 2078.67], [2722.11, 2079.3], [2720.63, 2079.32], [2720.68, 2082.8], [2719.25, 2082.82], [2719.3, 2086.57], [2735.35, 2086.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2813.1, 2328.82], [2812.59, 2321.82], [2805.66, 2322.33], [2806.17, 2329.33], [2813.1, 2328.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2685.64, 2088.15], [2685.37, 2083.09], [2682.84, 2083.21], [2682.75, 2081.45], [2667.87, 2082.23], [2668.28, 2089.89], [2683.79, 2089.07], [2683.74, 2088.24], [2685.64, 2088.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2704.1, 2021.08], [2703.74, 2014.81], [2697.52, 2015.16], [2697.88, 2021.43], [2704.1, 2021.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2786.17, 1809.99], [2790.12, 1792.46], [2781.45, 1790.51], [2780.78, 1793.45], [2779.69, 1793.2], [2777.88, 1801.26], [2779.3, 1801.57], [2778.41, 1805.5], [2779.13, 1805.66], [2778.81, 1807.08], [2782.38, 1807.88], [2782.11, 1809.09], [2786.17, 1809.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2605.91, 2048.36], [2605.71, 2042.43], [2599.56, 2042.64], [2599.76, 2048.56], [2605.91, 2048.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2770.31, 2004.05], [2769.65, 1995.47], [2756.15, 1996.5], [2756.8, 2005.08], [2770.31, 2004.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2613.58, 2013.11], [2612.8, 2005.64], [2605.4, 2006.42], [2606.17, 2013.89], [2613.58, 2013.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2826.14, 2093.66], [2825.66, 2086.98], [2820.02, 2087.39], [2819.9, 2085.66], [2810.1, 2086.38], [2810.71, 2094.78], [2826.14, 2093.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2771.04, 2082.83], [2770.65, 2077.81], [2769.08, 2077.93], [2768.83, 2074.71], [2758.25, 2075.55], [2758.66, 2080.78], [2760.92, 2080.59], [2761.16, 2083.61], [2771.04, 2082.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2746.1, 2306.58], [2745.71, 2299.95], [2734.7, 2300.59], [2735.09, 2307.23], [2746.1, 2306.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2556.62, 2130.52], [2552.19, 2123.0], [2542.03, 2129.0], [2546.46, 2136.52], [2556.62, 2130.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2596.2, 2151.54], [2595.51, 2143.82], [2592.74, 2144.07], [2592.66, 2143.21], [2581.13, 2144.23], [2581.98, 2153.82], [2593.09, 2152.83], [2593.0, 2151.83], [2596.2, 2151.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2610.46, 1969.41], [2610.1, 1965.41], [2603.29, 1966.01], [2603.65, 1970.01], [2610.46, 1969.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2519.33, 2178.66], [2512.05, 2167.35], [2506.21, 2171.1], [2513.5, 2182.41], [2519.33, 2178.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2780.48, 2284.11], [2780.23, 2280.96], [2778.32, 2281.11], [2777.72, 2273.62], [2780.36, 2273.41], [2780.1, 2270.14], [2770.72, 2270.88], [2771.08, 2275.55], [2769.16, 2275.71], [2769.34, 2277.98], [2771.07, 2277.84], [2771.28, 2280.54], [2773.68, 2280.35], [2774.02, 2284.63], [2780.48, 2284.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2701.73, 1899.27], [2694.94, 1910.53], [2704.9, 1916.51], [2711.43, 1905.29], [2701.73, 1899.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2634.8, 1975.44], [2634.33, 1967.06], [2624.37, 1967.63], [2624.84, 1976.0], [2634.8, 1975.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2731.41, 2269.25], [2731.0, 2256.91], [2730.3, 2256.93], [2730.2, 2253.93], [2723.25, 2254.15], [2723.77, 2269.51], [2731.41, 2269.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2812.02, 2155.77], [2811.53, 2150.29], [2806.06, 2150.78], [2806.55, 2156.26], [2812.02, 2155.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2835.25, 1740.97], [2829.24, 1739.76], [2828.05, 1745.7], [2834.06, 1746.9], [2835.25, 1740.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2823.22, 1626.36], [2816.63, 1624.74], [2813.68, 1636.82], [2820.25, 1638.42], [2823.22, 1626.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2792.11, 2095.26], [2791.11, 2085.35], [2780.65, 2086.41], [2780.81, 2088.05], [2778.92, 2088.25], [2779.59, 2094.91], [2781.07, 2094.75], [2781.23, 2096.35], [2792.11, 2095.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2810.86, 2029.64], [2810.56, 2027.09], [2801.82, 2028.09], [2802.64, 2035.24], [2808.39, 2034.58], [2807.86, 2030.0], [2810.86, 2029.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2691.19, 1990.0], [2690.79, 1985.82], [2684.66, 1986.4], [2685.05, 1990.58], [2691.19, 1990.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2729.66, 2015.39], [2729.44, 2011.08], [2726.81, 2011.2], [2726.68, 2008.69], [2713.46, 2009.34], [2713.94, 2019.11], [2727.81, 2018.42], [2727.66, 2015.49], [2729.66, 2015.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2786.53, 1980.98], [2780.92, 1981.09], [2781.03, 1986.52], [2786.64, 1986.42], [2786.53, 1980.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2794.16, 2215.08], [2794.15, 2214.09], [2791.48, 2214.13], [2791.49, 2215.09], [2788.41, 2215.13], [2788.59, 2227.28], [2797.08, 2227.16], [2796.9, 2215.05], [2794.16, 2215.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2708.87, 2264.89], [2708.15, 2254.1], [2703.25, 2254.44], [2703.32, 2255.46], [2699.81, 2255.69], [2700.47, 2265.45], [2708.87, 2264.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2676.22, 2016.05], [2675.88, 2012.22], [2673.41, 2012.43], [2673.32, 2011.47], [2662.53, 2012.43], [2662.8, 2015.4], [2664.18, 2015.28], [2664.55, 2019.43], [2674.06, 2018.58], [2673.85, 2016.25], [2676.22, 2016.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2673.36, 1992.95], [2673.08, 1989.1], [2660.32, 1990.02], [2660.91, 1998.22], [2672.74, 1997.38], [2672.43, 1993.02], [2673.36, 1992.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2584.45, 2012.83], [2584.11, 2009.24], [2585.61, 2009.09], [2585.3, 2005.86], [2584.51, 2005.94], [2584.4, 2004.63], [2573.32, 2005.68], [2573.38, 2006.41], [2570.93, 2006.65], [2571.53, 2012.92], [2573.63, 2012.72], [2573.74, 2013.85], [2584.45, 2012.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2810.86, 1622.5], [2802.02, 1620.91], [2799.47, 1635.02], [2808.31, 1636.61], [2810.86, 1622.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2584.03, 1964.7], [2583.47, 1957.14], [2571.03, 1958.05], [2571.1, 1958.82], [2568.75, 1959.0], [2569.2, 1965.11], [2571.42, 1964.95], [2571.47, 1965.66], [2579.93, 1965.02], [2584.03, 1964.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2696.04, 2145.07], [2695.5, 2138.39], [2686.01, 2139.16], [2686.12, 2140.52], [2678.78, 2141.11], [2679.43, 2149.05], [2687.27, 2148.42], [2687.06, 2145.79], [2696.04, 2145.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2741.72, 2219.63], [2741.49, 2216.35], [2739.8, 2216.47], [2739.54, 2212.48], [2729.92, 2213.13], [2730.4, 2220.39], [2741.72, 2219.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2641.56, 2045.58], [2641.0, 2037.39], [2627.05, 2038.34], [2627.34, 2042.63], [2628.18, 2042.58], [2628.45, 2046.47], [2641.56, 2045.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2692.57, 2222.86], [2692.22, 2218.21], [2690.34, 2218.35], [2690.06, 2214.7], [2679.51, 2215.5], [2679.62, 2216.92], [2677.03, 2217.12], [2677.5, 2223.24], [2680.01, 2223.06], [2680.06, 2223.81], [2692.57, 2222.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2643.71, 2070.45], [2627.4, 2070.92], [2627.53, 2075.42], [2629.14, 2075.37], [2629.26, 2079.64], [2643.97, 2079.22], [2643.71, 2070.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2789.22, 2114.34], [2788.8, 2108.96], [2782.13, 2109.49], [2782.56, 2114.87], [2789.22, 2114.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2771.88, 2038.58], [2771.6, 2031.24], [2755.6, 2031.87], [2755.89, 2039.21], [2771.88, 2038.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2592.4, 2202.21], [2591.88, 2194.77], [2583.56, 2195.35], [2584.08, 2202.79], [2592.4, 2202.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2733.06, 2123.22], [2733.02, 2121.87], [2736.16, 2121.76], [2735.96, 2115.61], [2731.83, 2115.75], [2731.79, 2114.55], [2724.9, 2114.79], [2724.94, 2116.07], [2721.71, 2116.17], [2721.9, 2121.57], [2724.14, 2121.49], [2724.18, 2122.54], [2727.56, 2122.43], [2727.58, 2123.4], [2733.06, 2123.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2636.11, 1987.55], [2635.75, 1979.49], [2619.67, 1980.22], [2620.04, 1988.28], [2636.11, 1987.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2781.7, 2330.87], [2781.64, 2330.24], [2785.06, 2329.94], [2784.81, 2327.07], [2786.73, 2326.91], [2786.46, 2323.78], [2784.27, 2323.98], [2784.21, 2323.33], [2771.18, 2324.48], [2771.66, 2329.87], [2773.57, 2329.71], [2773.68, 2330.91], [2777.33, 2330.58], [2777.39, 2331.25], [2781.7, 2330.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2837.83, 2327.22], [2837.31, 2320.82], [2829.89, 2321.42], [2830.42, 2327.82], [2837.83, 2327.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2592.49, 2116.6], [2592.14, 2108.65], [2578.12, 2109.32], [2578.42, 2117.27], [2592.49, 2116.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2702.6, 1992.02], [2702.1, 1985.3], [2696.41, 1985.72], [2696.91, 1992.44], [2702.6, 1992.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2807.22, 2003.53], [2819.63, 2002.98], [2819.4, 1995.32], [2806.85, 1995.79], [2807.22, 2003.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2806.23, 1652.75], [2799.53, 1651.25], [2797.98, 1658.24], [2804.67, 1659.73], [2806.23, 1652.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2828.58, 2214.02], [2832.42, 2213.74], [2832.0, 2207.97], [2827.16, 2208.32], [2827.03, 2206.54], [2821.69, 2206.94], [2821.88, 2209.49], [2819.77, 2209.64], [2819.84, 2210.54], [2818.07, 2210.66], [2818.35, 2214.5], [2824.19, 2214.07], [2824.3, 2215.57], [2828.67, 2215.24], [2828.58, 2214.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2649.23, 2187.29], [2648.75, 2178.99], [2632.94, 2179.9], [2633.04, 2181.66], [2631.37, 2181.76], [2631.71, 2187.55], [2633.18, 2187.47], [2633.22, 2188.21], [2649.23, 2187.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2696.2, 2230.25], [2695.69, 2224.11], [2690.31, 2224.56], [2690.83, 2230.69], [2696.2, 2230.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2708.09, 2106.5], [2707.84, 2101.02], [2701.69, 2101.3], [2701.94, 2106.78], [2708.09, 2106.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2828.88, 2152.98], [2828.31, 2144.63], [2817.52, 2145.38], [2818.09, 2153.71], [2828.88, 2152.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2574.83, 1866.08], [2574.27, 1860.41], [2572.64, 1860.57], [2572.09, 1854.93], [2560.4, 1856.1], [2561.52, 1867.41], [2574.83, 1866.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2814.1, 1673.84], [2805.25, 1672.54], [2803.85, 1682.11], [2812.7, 1683.4], [2814.1, 1673.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2560.94, 2202.16], [2560.54, 2191.73], [2548.3, 2192.19], [2548.7, 2202.63], [2560.94, 2202.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2798.33, 2070.42], [2797.95, 2064.05], [2792.32, 2064.39], [2792.71, 2070.76], [2798.33, 2070.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2649.79, 2200.81], [2649.3, 2191.43], [2633.2, 2192.27], [2633.36, 2195.35], [2631.64, 2195.45], [2631.87, 2199.83], [2633.57, 2199.74], [2633.68, 2201.65], [2649.79, 2200.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2711.3, 2289.72], [2711.01, 2284.68], [2701.98, 2285.2], [2702.26, 2290.23], [2711.3, 2289.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2698.07, 2181.17], [2697.71, 2174.88], [2691.87, 2175.21], [2692.23, 2181.5], [2698.07, 2181.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2793.89, 2141.52], [2793.28, 2133.37], [2786.02, 2133.9], [2786.63, 2142.07], [2793.89, 2141.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2840.52, 2336.04], [2840.16, 2330.29], [2830.35, 2330.9], [2830.71, 2336.66], [2840.52, 2336.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2829.68, 2190.02], [2828.95, 2183.53], [2819.59, 2184.59], [2820.34, 2191.08], [2829.68, 2190.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2804.35, 2139.89], [2803.98, 2133.52], [2797.69, 2133.88], [2798.06, 2140.26], [2804.35, 2139.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2628.93, 2116.74], [2628.53, 2112.14], [2620.52, 2112.87], [2620.93, 2117.46], [2628.93, 2116.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2643.26, 2272.84], [2642.07, 2258.35], [2633.06, 2259.08], [2634.25, 2273.58], [2643.26, 2272.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2733.1, 2040.53], [2732.82, 2035.69], [2730.62, 2035.82], [2730.46, 2033.04], [2720.74, 2033.6], [2721.27, 2042.81], [2730.74, 2042.27], [2730.66, 2040.67], [2733.1, 2040.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2830.82, 1720.86], [2831.4, 1717.79], [2824.13, 1716.45], [2823.52, 1719.73], [2821.99, 1719.44], [2821.14, 1724.03], [2822.72, 1724.32], [2822.11, 1727.62], [2829.62, 1729.0], [2831.12, 1720.92], [2830.82, 1720.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2801.32, 2332.71], [2801.1, 2328.55], [2794.49, 2328.9], [2794.72, 2333.06], [2801.32, 2332.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2764.3, 1967.77], [2763.89, 1961.1], [2761.53, 1961.24], [2761.33, 1958.04], [2752.1, 1958.61], [2752.28, 1961.48], [2750.13, 1961.61], [2750.43, 1966.57], [2752.23, 1966.46], [2752.36, 1968.51], [2764.3, 1967.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2618.17, 2271.39], [2617.35, 2259.52], [2609.91, 2260.03], [2610.53, 2269.02], [2605.75, 2269.34], [2606.16, 2275.3], [2611.58, 2274.92], [2611.37, 2271.86], [2618.17, 2271.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2635.71, 1999.59], [2635.31, 1991.65], [2621.52, 1992.35], [2621.92, 2000.27], [2635.71, 1999.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2823.72, 1827.05], [2818.36, 1825.79], [2817.1, 1831.18], [2822.46, 1832.44], [2823.72, 1827.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2818.02, 2255.85], [2817.79, 2248.9], [2809.86, 2249.17], [2810.1, 2256.12], [2818.02, 2255.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2633.54, 1868.65], [2632.14, 1839.7], [2605.1, 1833.17], [2596.33, 1834.29], [2599.48, 1870.25], [2623.58, 1869.12], [2633.54, 1868.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2778.05, 2181.62], [2777.49, 2173.37], [2761.99, 2174.41], [2762.54, 2182.66], [2778.05, 2181.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2544.61, 2236.92], [2544.02, 2231.41], [2537.96, 2232.06], [2538.56, 2237.58], [2544.61, 2236.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2808.78, 1816.1], [2809.41, 1812.66], [2810.42, 1812.84], [2811.25, 1808.39], [2812.62, 1808.64], [2813.56, 1803.55], [2812.66, 1803.38], [2812.95, 1801.82], [2811.2, 1801.49], [2811.58, 1799.43], [2807.47, 1798.67], [2807.1, 1800.69], [2805.38, 1800.38], [2804.3, 1806.25], [2802.6, 1805.93], [2800.99, 1814.66], [2808.78, 1816.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2798.56, 2036.84], [2797.78, 2025.89], [2790.46, 2026.4], [2791.24, 2037.35], [2798.56, 2036.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2634.35, 1938.69], [2634.0, 1932.15], [2631.95, 1932.26], [2631.91, 1931.41], [2628.34, 1931.6], [2628.28, 1930.55], [2622.3, 1930.86], [2622.34, 1931.43], [2618.2, 1931.65], [2618.61, 1939.52], [2634.35, 1938.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2810.35, 2292.54], [2809.8, 2284.55], [2803.56, 2284.98], [2804.11, 2292.97], [2810.35, 2292.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2829.84, 2129.88], [2829.01, 2121.23], [2815.62, 2122.52], [2816.44, 2131.15], [2829.84, 2129.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2633.9, 1962.95], [2633.11, 1954.59], [2624.35, 1955.4], [2625.14, 1963.77], [2633.9, 1962.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2794.15, 2194.22], [2780.57, 2194.45], [2780.71, 2202.77], [2794.29, 2202.55], [2794.15, 2194.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2796.61, 1815.79], [2800.84, 1796.35], [2797.27, 1795.57], [2796.8, 1797.74], [2790.97, 1796.48], [2787.97, 1810.32], [2791.3, 1811.04], [2790.56, 1814.48], [2796.61, 1815.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2591.07, 2093.69], [2590.47, 2085.28], [2578.49, 2086.13], [2579.09, 2094.55], [2591.07, 2093.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2592.95, 1984.3], [2592.56, 1978.99], [2586.72, 1979.42], [2587.1, 1984.72], [2592.95, 1984.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2538.58, 2183.98], [2544.79, 2183.75], [2544.65, 2179.68], [2538.44, 2179.91], [2538.58, 2183.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2830.42, 2200.58], [2829.9, 2192.77], [2820.54, 2193.38], [2821.05, 2201.19], [2830.42, 2200.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2596.74, 2177.78], [2596.13, 2167.85], [2583.84, 2168.49], [2584.45, 2178.51], [2596.74, 2177.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2562.52, 2175.19], [2562.26, 2169.95], [2546.61, 2170.72], [2547.03, 2179.26], [2561.79, 2178.53], [2561.63, 2175.24], [2562.52, 2175.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2608.11, 2080.27], [2607.89, 2073.68], [2601.52, 2073.89], [2601.74, 2080.5], [2608.11, 2080.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2781.22, 2132.44], [2780.96, 2126.54], [2775.51, 2126.79], [2775.48, 2126.05], [2772.23, 2126.19], [2772.14, 2123.95], [2763.33, 2124.33], [2763.71, 2133.21], [2781.22, 2132.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2647.36, 2137.41], [2646.85, 2128.7], [2633.49, 2129.49], [2633.66, 2132.39], [2632.1, 2132.48], [2632.44, 2138.29], [2647.36, 2137.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2678.33, 2076.18], [2677.85, 2069.76], [2676.91, 2069.83], [2676.74, 2067.61], [2666.67, 2068.36], [2667.31, 2077.01], [2678.33, 2076.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2644.85, 2112.0], [2644.52, 2107.68], [2643.56, 2107.75], [2643.31, 2104.42], [2632.79, 2105.21], [2632.84, 2105.87], [2628.87, 2106.17], [2629.45, 2113.83], [2639.5, 2113.07], [2639.45, 2112.4], [2644.85, 2112.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2603.76, 2110.94], [2609.21, 2110.7], [2608.97, 2105.31], [2603.52, 2105.55], [2603.76, 2110.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2781.27, 2257.94], [2780.79, 2252.13], [2771.79, 2252.87], [2772.27, 2258.68], [2781.27, 2257.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2685.77, 2196.6], [2685.38, 2192.24], [2683.38, 2192.42], [2683.21, 2190.63], [2673.83, 2191.49], [2673.89, 2192.11], [2671.3, 2192.34], [2671.61, 2195.79], [2673.88, 2195.59], [2674.21, 2199.16], [2683.49, 2198.32], [2683.35, 2196.82], [2685.77, 2196.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2813.4, 2316.19], [2812.73, 2309.32], [2805.1, 2310.07], [2805.77, 2316.94], [2813.4, 2316.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2745.85, 2285.27], [2745.17, 2278.78], [2742.55, 2279.05], [2742.33, 2276.95], [2729.98, 2278.27], [2730.5, 2283.13], [2733.92, 2282.76], [2734.31, 2286.5], [2745.85, 2285.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2829.21, 2166.9], [2829.14, 2165.56], [2830.58, 2165.49], [2830.33, 2160.34], [2828.76, 2160.42], [2828.66, 2158.36], [2819.17, 2158.84], [2819.24, 2160.34], [2815.47, 2160.52], [2815.77, 2166.54], [2819.78, 2166.33], [2819.84, 2167.38], [2829.21, 2166.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2839.37, 2318.69], [2839.1, 2315.32], [2836.27, 2315.54], [2836.19, 2314.6], [2837.17, 2314.52], [2836.8, 2310.02], [2824.37, 2311.03], [2825.09, 2319.85], [2839.37, 2318.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2685.89, 1955.35], [2685.45, 1949.06], [2679.31, 1949.48], [2679.75, 1955.77], [2685.89, 1955.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2631.21, 2157.35], [2630.73, 2150.02], [2623.69, 2150.48], [2623.93, 2154.11], [2624.6, 2154.07], [2624.84, 2157.76], [2631.21, 2157.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2743.17, 2289.08], [2734.68, 2289.22], [2734.8, 2296.03], [2743.29, 2295.88], [2743.17, 2289.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2648.78, 2233.91], [2648.09, 2225.36], [2642.83, 2225.88], [2643.01, 2224.48], [2641.14, 2224.43], [2641.4, 2234.0], [2641.46, 2236.12], [2643.51, 2235.9], [2643.6, 2233.89], [2648.78, 2233.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2837.77, 1552.44], [2834.48, 1551.8], [2832.59, 1561.57], [2841.26, 1563.24], [2842.88, 1554.85], [2837.51, 1553.82], [2837.77, 1552.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2821.99, 2014.28], [2821.51, 2007.44], [2816.62, 2007.79], [2816.55, 2006.77], [2814.0, 2006.94], [2813.81, 2004.19], [2807.74, 2004.61], [2808.49, 2015.23], [2821.99, 2014.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2600.78, 1949.16], [2600.08, 1942.09], [2593.12, 1942.78], [2593.82, 1949.85], [2600.78, 1949.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2575.31, 1854.5], [2583.93, 1853.87], [2582.8, 1826.34], [2573.24, 1823.88], [2575.31, 1854.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2834.49, 2223.54], [2834.25, 2217.87], [2831.83, 2217.97], [2831.76, 2216.45], [2816.86, 2217.09], [2817.21, 2225.42], [2832.73, 2224.74], [2832.69, 2223.62], [2834.49, 2223.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2787.58, 1720.9], [2788.01, 1718.76], [2791.83, 1719.53], [2794.22, 1707.65], [2793.38, 1707.47], [2793.64, 1706.18], [2785.16, 1704.47], [2782.43, 1718.11], [2784.29, 1718.48], [2783.95, 1720.17], [2787.58, 1720.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2800.58, 1670.06], [2792.24, 1668.47], [2790.5, 1677.63], [2798.83, 1679.22], [2800.58, 1670.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2777.48, 2011.16], [2777.13, 2006.04], [2770.04, 2006.51], [2770.4, 2011.65], [2777.48, 2011.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2596.41, 1971.27], [2596.03, 1966.62], [2589.88, 1967.13], [2590.27, 1971.77], [2596.41, 1971.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2697.37, 2266.9], [2696.3, 2255.18], [2687.6, 2255.96], [2687.8, 2258.23], [2686.89, 2258.31], [2688.0, 2270.37], [2695.28, 2269.7], [2695.03, 2267.13], [2697.37, 2266.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2821.77, 2039.46], [2821.3, 2029.0], [2815.57, 2029.25], [2815.83, 2035.04], [2814.23, 2035.11], [2814.43, 2039.79], [2821.77, 2039.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2617.76, 1950.34], [2634.21, 1949.33], [2633.78, 1942.44], [2630.96, 1942.53], [2630.95, 1941.65], [2617.27, 1942.49], [2617.76, 1950.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2600.97, 1959.63], [2600.8, 1954.23], [2595.32, 1954.42], [2595.5, 1959.81], [2600.97, 1959.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2562.96, 2217.16], [2562.68, 2211.59], [2560.97, 2211.68], [2560.94, 2211.08], [2547.83, 2211.75], [2548.18, 2218.86], [2561.11, 2218.2], [2561.07, 2217.25], [2562.96, 2217.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2736.15, 2133.15], [2735.73, 2128.03], [2733.39, 2128.23], [2733.19, 2125.88], [2723.34, 2126.7], [2724.11, 2135.84], [2733.69, 2135.04], [2733.55, 2133.36], [2736.15, 2133.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2695.86, 2009.65], [2695.6, 2005.09], [2688.63, 2005.47], [2688.89, 2010.03], [2695.86, 2009.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2582.63, 1954.38], [2582.55, 1951.53], [2585.01, 1951.47], [2584.9, 1947.71], [2578.2, 1947.89], [2578.17, 1946.81], [2573.29, 1946.94], [2573.31, 1947.8], [2570.29, 1947.88], [2570.48, 1954.72], [2582.63, 1954.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2814.82, 2024.18], [2814.23, 2015.85], [2802.87, 2016.64], [2803.45, 2024.97], [2814.82, 2024.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2674.28, 2033.96], [2673.98, 2026.77], [2664.45, 2027.16], [2664.75, 2034.36], [2674.28, 2033.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2716.84, 2268.04], [2716.74, 2265.47], [2720.75, 2265.3], [2720.54, 2260.14], [2718.97, 2260.21], [2718.76, 2255.1], [2711.5, 2255.39], [2711.92, 2265.7], [2712.83, 2265.66], [2712.93, 2268.19], [2716.84, 2268.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2727.19, 1933.26], [2726.74, 1925.73], [2724.83, 1925.85], [2724.74, 1924.37], [2711.04, 1925.2], [2711.64, 1935.11], [2725.65, 1934.26], [2725.6, 1933.36], [2727.19, 1933.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2834.53, 2255.99], [2833.92, 2247.53], [2821.03, 2248.46], [2821.64, 2256.92], [2834.53, 2255.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2841.39, 1652.72], [2834.71, 1651.39], [2833.31, 1658.4], [2839.99, 1659.73], [2841.39, 1652.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2577.61, 1877.26], [2576.84, 1869.29], [2565.71, 1870.37], [2566.25, 1875.95], [2567.26, 1875.86], [2567.49, 1878.24], [2577.61, 1877.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2647.57, 2150.58], [2647.02, 2141.72], [2629.87, 2142.78], [2630.23, 2148.61], [2634.05, 2148.38], [2634.23, 2151.4], [2647.57, 2150.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2601.18, 2025.84], [2600.58, 2018.4], [2595.08, 2018.84], [2595.25, 2020.93], [2591.16, 2021.25], [2591.59, 2026.61], [2601.18, 2025.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2674.56, 1948.74], [2673.99, 1940.82], [2660.21, 1941.81], [2660.78, 1949.74], [2674.56, 1948.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2775.76, 2169.15], [2775.36, 2162.11], [2761.95, 2162.86], [2762.4, 2170.75], [2773.48, 2170.13], [2773.43, 2169.28], [2775.76, 2169.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2826.74, 2102.32], [2826.26, 2095.01], [2809.7, 2096.09], [2810.14, 2102.83], [2812.63, 2102.67], [2812.79, 2105.06], [2824.22, 2104.3], [2824.1, 2102.5], [2826.74, 2102.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2730.11, 1981.71], [2729.81, 1976.98], [2727.09, 1977.14], [2726.96, 1974.89], [2716.53, 1975.54], [2717.02, 1983.5], [2727.73, 1982.84], [2727.67, 1981.86], [2730.11, 1981.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2835.72, 1764.54], [2827.98, 1762.94], [2827.6, 1764.75], [2825.81, 1764.38], [2823.69, 1774.62], [2833.23, 1776.59], [2835.72, 1764.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2593.46, 2079.64], [2593.22, 2075.59], [2590.17, 2075.76], [2590.07, 2073.99], [2577.84, 2074.7], [2578.32, 2082.79], [2590.38, 2082.08], [2590.25, 2079.83], [2593.46, 2079.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2780.49, 2022.04], [2780.26, 2018.24], [2773.92, 2018.62], [2774.15, 2022.42], [2780.49, 2022.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2648.82, 2166.01], [2634.71, 2166.26], [2634.85, 2174.27], [2648.96, 2174.02], [2648.82, 2166.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2774.05, 2105.0], [2773.82, 2100.37], [2771.78, 2100.47], [2771.69, 2098.72], [2757.57, 2099.41], [2758.03, 2108.79], [2772.72, 2108.07], [2772.57, 2105.07], [2774.05, 2105.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2636.63, 2008.51], [2636.47, 2006.41], [2638.43, 2006.26], [2638.15, 2002.59], [2635.91, 2002.76], [2635.79, 2001.09], [2626.05, 2001.83], [2626.12, 2002.63], [2624.69, 2002.74], [2625.0, 2006.84], [2625.8, 2006.79], [2625.99, 2009.32], [2636.63, 2008.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2767.27, 1991.92], [2766.8, 1983.21], [2754.36, 1983.87], [2754.42, 1985.09], [2753.42, 1985.14], [2753.59, 1988.29], [2754.76, 1988.24], [2754.99, 1992.59], [2767.27, 1991.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2773.03, 2194.54], [2772.98, 2193.82], [2777.55, 2193.48], [2776.99, 2185.78], [2763.73, 2186.75], [2764.08, 2191.46], [2765.28, 2191.37], [2765.51, 2194.47], [2769.06, 2194.22], [2769.11, 2194.83], [2773.03, 2194.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2813.82, 1989.42], [2813.48, 1983.45], [2810.24, 1983.63], [2810.12, 1981.41], [2806.47, 1981.62], [2806.33, 1979.18], [2800.35, 1979.51], [2800.96, 1990.14], [2813.82, 1989.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2738.47, 2158.82], [2737.91, 2151.59], [2736.34, 2151.71], [2736.24, 2150.51], [2723.4, 2151.51], [2724.12, 2160.76], [2736.1, 2159.83], [2736.04, 2159.01], [2738.47, 2158.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2851.68, 1812.23], [2842.48, 1810.21], [2840.16, 1820.77], [2849.36, 1822.78], [2851.68, 1812.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2684.1, 2267.34], [2682.98, 2256.92], [2675.91, 2257.68], [2677.04, 2268.1], [2684.1, 2267.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2826.34, 2142.0], [2825.72, 2133.83], [2813.29, 2134.76], [2813.91, 2142.95], [2826.34, 2142.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2829.35, 1601.85], [2831.36, 1588.33], [2825.9, 1587.53], [2825.71, 1588.83], [2823.74, 1588.54], [2821.93, 1600.74], [2829.35, 1601.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2706.54, 2040.44], [2706.16, 2033.62], [2698.45, 2034.05], [2698.83, 2040.87], [2706.54, 2040.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2668.26, 1900.18], [2667.62, 1892.06], [2657.81, 1892.85], [2657.92, 1894.27], [2656.0, 1894.42], [2656.38, 1899.19], [2657.95, 1899.07], [2658.11, 1901.0], [2668.26, 1900.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2585.51, 1927.7], [2585.16, 1922.68], [2582.62, 1922.85], [2582.45, 1920.6], [2568.24, 1921.6], [2568.37, 1923.49], [2567.61, 1923.54], [2568.08, 1930.21], [2583.21, 1929.14], [2583.11, 1927.86], [2585.51, 1927.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2614.51, 2025.09], [2613.86, 2018.74], [2606.24, 2019.52], [2606.89, 2025.87], [2614.51, 2025.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2689.33, 2233.79], [2688.67, 2225.32], [2678.42, 2226.13], [2678.67, 2229.3], [2675.52, 2229.54], [2675.93, 2234.83], [2689.33, 2233.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2823.61, 1813.32], [2825.29, 1805.51], [2819.1, 1804.18], [2818.47, 1807.14], [2816.67, 1806.76], [2814.7, 1815.93], [2823.15, 1817.74], [2824.08, 1813.42], [2823.61, 1813.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2525.39, 2198.07], [2522.48, 2193.93], [2512.39, 2200.98], [2519.18, 2210.68], [2525.49, 2206.26], [2521.61, 2200.72], [2525.39, 2198.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2829.51, 1869.21], [2839.43, 1871.89], [2843.53, 1853.19], [2839.77, 1852.38], [2841.04, 1846.57], [2834.76, 1845.21], [2829.51, 1869.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2676.6, 2006.87], [2676.15, 2000.03], [2672.32, 2000.28], [2672.21, 1998.44], [2666.92, 1998.78], [2667.02, 2000.31], [2664.13, 2000.49], [2664.61, 2008.01], [2674.13, 2007.39], [2674.11, 2007.02], [2676.6, 2006.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2791.16, 2071.34], [2790.71, 2065.02], [2784.56, 2065.46], [2785.01, 2071.77], [2791.16, 2071.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2769.57, 2016.66], [2769.22, 2012.42], [2765.97, 2012.69], [2765.7, 2009.16], [2753.51, 2010.15], [2754.01, 2016.39], [2756.34, 2016.2], [2756.46, 2017.72], [2769.57, 2016.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2667.43, 1877.28], [2667.14, 1873.61], [2663.27, 1873.91], [2662.95, 1869.76], [2659.32, 1870.04], [2659.05, 1866.52], [2654.8, 1866.84], [2655.03, 1869.86], [2653.89, 1869.95], [2654.31, 1875.55], [2655.01, 1875.5], [2655.22, 1878.22], [2667.43, 1877.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2793.29, 2145.15], [2787.88, 2145.19], [2787.92, 2151.48], [2793.33, 2151.45], [2793.29, 2145.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2730.63, 2068.6], [2730.35, 2063.46], [2721.75, 2063.94], [2721.83, 2065.33], [2717.67, 2065.55], [2717.8, 2067.8], [2714.3, 2067.98], [2714.7, 2075.26], [2728.72, 2074.49], [2728.4, 2068.72], [2730.63, 2068.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2837.32, 1828.09], [2830.52, 1826.25], [2828.46, 1833.84], [2835.26, 1835.67], [2837.32, 1828.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2771.23, 1809.29], [2772.05, 1805.5], [2773.79, 1805.87], [2777.04, 1790.9], [2767.96, 1788.92], [2765.96, 1798.08], [2767.28, 1798.36], [2765.18, 1807.98], [2771.23, 1809.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2794.65, 2163.94], [2794.45, 2158.1], [2786.65, 2158.35], [2786.85, 2164.2], [2794.65, 2163.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2696.98, 2286.41], [2696.76, 2280.6], [2682.11, 2281.17], [2682.39, 2288.46], [2693.36, 2288.03], [2693.31, 2286.55], [2696.98, 2286.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2687.55, 2209.66], [2687.13, 2202.38], [2684.68, 2202.52], [2684.62, 2201.58], [2680.07, 2201.84], [2680.1, 2202.34], [2674.0, 2202.67], [2674.43, 2210.41], [2687.55, 2209.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2585.5, 1977.12], [2585.08, 1971.6], [2583.13, 1971.74], [2583.0, 1969.98], [2570.56, 1970.92], [2571.12, 1978.2], [2585.5, 1977.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2807.84, 2106.41], [2807.43, 2102.1], [2800.17, 2102.79], [2800.58, 2107.11], [2807.84, 2106.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2773.56, 2027.06], [2773.38, 2021.61], [2770.08, 2021.73], [2770.04, 2020.74], [2757.51, 2021.16], [2757.58, 2023.3], [2755.44, 2023.37], [2755.65, 2029.64], [2771.15, 2029.12], [2771.09, 2027.14], [2773.56, 2027.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2644.3, 2089.12], [2643.57, 2082.52], [2641.69, 2082.73], [2641.51, 2081.09], [2631.65, 2082.18], [2632.55, 2090.41], [2644.3, 2089.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2615.17, 2073.17], [2609.24, 2073.36], [2609.49, 2081.31], [2615.42, 2081.12], [2615.17, 2073.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2789.47, 1858.78], [2793.69, 1837.47], [2782.25, 1835.22], [2778.26, 1855.36], [2789.47, 1858.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2736.88, 2171.97], [2736.63, 2168.74], [2738.79, 2168.57], [2738.53, 2165.24], [2736.66, 2165.38], [2736.47, 2162.82], [2720.97, 2164.04], [2721.23, 2167.4], [2722.52, 2167.29], [2722.7, 2169.73], [2723.07, 2169.7], [2723.33, 2173.03], [2736.88, 2171.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2741.37, 2206.93], [2741.13, 2202.48], [2738.63, 2202.61], [2738.51, 2200.07], [2726.81, 2200.68], [2727.22, 2208.42], [2739.9, 2207.75], [2739.86, 2207.02], [2741.37, 2206.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2813.09, 2174.2], [2812.75, 2169.03], [2805.49, 2169.5], [2805.82, 2174.67], [2813.09, 2174.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2674.79, 1973.36], [2674.52, 1969.9], [2676.09, 1969.78], [2675.84, 1966.42], [2674.72, 1966.51], [2674.56, 1964.27], [2662.19, 1965.22], [2662.26, 1966.11], [2660.07, 1966.28], [2660.4, 1970.53], [2662.35, 1970.39], [2662.66, 1974.29], [2674.79, 1973.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2277.39, 2780.59], [2271.25, 2774.71], [2261.57, 2784.81], [2267.71, 2790.7], [2277.39, 2780.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2318.36, 2681.35], [2311.77, 2674.7], [2305.93, 2680.48], [2307.65, 2682.24], [2306.99, 2682.9], [2311.84, 2687.8], [2318.36, 2681.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2340.93, 2500.02], [2334.48, 2493.65], [2322.7, 2505.58], [2329.15, 2511.95], [2340.93, 2500.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2275.98, 2722.81], [2270.33, 2717.62], [2262.04, 2726.62], [2267.67, 2731.82], [2275.98, 2722.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2701.54, 2729.97], [2721.0, 2736.17], [2722.57, 2731.15], [2721.68, 2730.88], [2722.79, 2727.39], [2719.3, 2726.29], [2719.61, 2725.28], [2704.47, 2720.33], [2701.54, 2729.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2142.2, 2655.2], [2134.69, 2648.47], [2127.82, 2656.16], [2135.33, 2662.88], [2142.2, 2655.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2491.77, 2430.23], [2487.49, 2426.17], [2479.17, 2434.93], [2483.46, 2438.99], [2491.77, 2430.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2857.7, 2498.38], [2857.36, 2493.12], [2852.11, 2493.46], [2851.88, 2489.86], [2847.06, 2490.18], [2847.69, 2499.83], [2855.43, 2499.33], [2855.37, 2498.52], [2857.7, 2498.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2076.99, 2683.04], [2082.91, 2676.55], [2076.13, 2670.37], [2070.46, 2676.59], [2072.3, 2678.26], [2071.39, 2679.26], [2074.57, 2682.17], [2075.24, 2681.44], [2076.99, 2683.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2265.56, 2550.4], [2261.8, 2546.67], [2257.77, 2550.73], [2261.52, 2554.46], [2265.56, 2550.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2567.61, 2723.91], [2561.55, 2718.0], [2553.62, 2726.14], [2559.68, 2732.05], [2567.61, 2723.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2027.58, 2673.89], [2022.1, 2668.68], [2013.12, 2678.1], [2018.59, 2683.32], [2027.58, 2673.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2562.19, 2639.78], [2556.14, 2634.26], [2547.29, 2643.94], [2550.49, 2646.86], [2548.98, 2648.5], [2551.84, 2651.11], [2562.19, 2639.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2434.14, 2370.8], [2430.64, 2366.97], [2425.81, 2371.37], [2429.3, 2375.21], [2434.14, 2370.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2291.46, 2568.11], [2285.08, 2561.83], [2280.5, 2566.48], [2286.88, 2572.75], [2291.46, 2568.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2514.55, 2728.94], [2509.75, 2723.83], [2502.85, 2730.31], [2507.66, 2735.42], [2514.55, 2728.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2696.21, 2658.64], [2686.26, 2649.63], [2680.36, 2656.13], [2692.72, 2667.32], [2697.98, 2661.5], [2695.59, 2659.34], [2696.21, 2658.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2360.25, 2470.14], [2357.45, 2467.24], [2352.72, 2471.81], [2355.52, 2474.71], [2360.25, 2470.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2302.78, 2726.53], [2299.05, 2722.66], [2293.0, 2728.47], [2296.74, 2732.35], [2302.78, 2726.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2702.53, 2651.27], [2692.46, 2641.29], [2686.06, 2647.74], [2696.14, 2657.72], [2702.53, 2651.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2598.46, 2569.17], [2593.8, 2564.21], [2588.38, 2569.29], [2593.04, 2574.25], [2598.46, 2569.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2643.36, 2679.28], [2645.19, 2677.52], [2646.71, 2679.1], [2654.79, 2671.29], [2649.11, 2665.42], [2639.21, 2674.98], [2643.36, 2679.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2360.43, 2445.21], [2353.64, 2438.63], [2347.72, 2444.73], [2354.51, 2451.32], [2360.43, 2445.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2025.26, 2722.43], [2023.46, 2720.63], [2021.43, 2722.66], [2023.23, 2724.46], [2025.26, 2722.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2083.8, 2733.9], [2078.59, 2729.27], [2069.33, 2739.67], [2074.53, 2744.31], [2083.8, 2733.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2290.94, 2514.68], [2285.1, 2508.94], [2275.57, 2518.64], [2281.41, 2524.38], [2290.94, 2514.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2477.97, 2769.69], [2472.68, 2764.63], [2469.94, 2767.5], [2475.23, 2772.56], [2477.97, 2769.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2630.86, 2727.97], [2634.25, 2724.53], [2636.6, 2726.85], [2641.63, 2721.74], [2639.61, 2719.76], [2641.45, 2717.89], [2640.17, 2716.64], [2641.41, 2715.37], [2639.61, 2713.6], [2638.5, 2714.73], [2636.23, 2712.5], [2629.24, 2719.59], [2630.94, 2721.28], [2627.55, 2724.72], [2630.86, 2727.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2369.26, 2453.71], [2362.6, 2447.81], [2357.12, 2454.0], [2363.78, 2459.89], [2369.26, 2453.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2266.55, 2771.02], [2261.52, 2766.28], [2252.47, 2775.88], [2257.5, 2780.62], [2266.55, 2771.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2371.25, 2537.66], [2365.2, 2532.01], [2359.06, 2538.6], [2365.1, 2544.24], [2371.25, 2537.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2359.83, 2653.05], [2355.81, 2648.57], [2352.17, 2651.84], [2356.19, 2656.32], [2359.83, 2653.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2406.15, 2485.56], [2400.28, 2479.84], [2390.52, 2489.86], [2396.39, 2495.58], [2406.15, 2485.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2565.13, 2514.06], [2584.69, 2493.87], [2577.05, 2486.47], [2556.43, 2507.76], [2561.37, 2512.54], [2555.58, 2518.53], [2567.71, 2530.28], [2574.57, 2523.2], [2565.13, 2514.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2297.17, 2595.01], [2290.04, 2587.88], [2276.79, 2601.16], [2283.91, 2608.27], [2297.17, 2595.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2451.59, 2384.65], [2453.55, 2382.92], [2454.44, 2383.92], [2460.95, 2378.13], [2455.24, 2371.71], [2448.62, 2377.6], [2451.8, 2381.17], [2449.95, 2382.81], [2451.59, 2384.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2513.94, 2768.41], [2518.74, 2772.98], [2523.49, 2767.98], [2518.69, 2763.48], [2513.94, 2768.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2223.82, 2630.75], [2219.01, 2626.02], [2214.46, 2630.65], [2219.27, 2635.37], [2223.82, 2630.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2174.98, 2621.13], [2167.18, 2613.73], [2157.43, 2624.0], [2165.23, 2631.4], [2174.98, 2621.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2836.83, 2722.69], [2835.63, 2719.13], [2830.88, 2720.73], [2832.08, 2724.29], [2836.83, 2722.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2558.77, 2717.9], [2556.09, 2714.97], [2554.43, 2716.48], [2551.8, 2713.59], [2546.13, 2718.78], [2551.45, 2724.59], [2558.77, 2717.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2331.61, 2423.16], [2323.18, 2415.59], [2318.12, 2421.22], [2326.56, 2428.79], [2331.61, 2423.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2489.83, 2402.54], [2484.02, 2396.44], [2471.93, 2407.94], [2477.75, 2414.05], [2489.83, 2402.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2273.35, 2525.45], [2268.44, 2521.57], [2264.6, 2526.42], [2269.5, 2530.31], [2273.35, 2525.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2307.07, 2695.51], [2300.72, 2688.23], [2295.31, 2692.98], [2301.66, 2700.24], [2307.07, 2695.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2354.19, 2785.62], [2351.22, 2782.67], [2346.46, 2787.47], [2349.44, 2790.42], [2354.19, 2785.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2177.06, 2601.66], [2172.71, 2597.27], [2167.59, 2602.34], [2171.94, 2606.73], [2177.06, 2601.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2122.07, 2771.08], [2116.9, 2766.44], [2115.61, 2767.88], [2115.25, 2767.56], [2106.34, 2777.53], [2111.88, 2782.48], [2122.07, 2771.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2845.45, 2710.92], [2845.14, 2701.6], [2836.5, 2701.89], [2836.81, 2711.21], [2845.45, 2710.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2363.95, 2523.33], [2361.84, 2521.25], [2361.05, 2522.05], [2360.23, 2521.25], [2348.15, 2533.51], [2354.14, 2539.41], [2365.9, 2527.48], [2362.85, 2524.45], [2363.95, 2523.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2193.57, 2595.87], [2195.21, 2594.21], [2196.28, 2595.27], [2200.55, 2590.96], [2193.92, 2584.38], [2189.44, 2588.89], [2191.9, 2591.33], [2190.88, 2592.35], [2191.73, 2593.19], [2191.3, 2593.62], [2193.57, 2595.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2685.5, 2697.89], [2679.62, 2691.88], [2676.6, 2694.85], [2674.67, 2692.89], [2672.44, 2695.06], [2682.39, 2705.21], [2686.47, 2701.2], [2684.34, 2699.03], [2685.5, 2697.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2251.36, 2617.62], [2245.56, 2611.65], [2238.11, 2618.87], [2243.91, 2624.84], [2251.36, 2617.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2637.96, 2778.25], [2634.84, 2774.78], [2630.23, 2778.94], [2633.35, 2782.39], [2637.96, 2778.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2304.72, 2750.41], [2298.47, 2743.99], [2287.6, 2754.59], [2293.85, 2761.0], [2304.72, 2750.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2202.39, 2648.55], [2199.53, 2645.64], [2196.66, 2648.44], [2196.12, 2647.89], [2192.1, 2651.83], [2197.49, 2657.35], [2203.25, 2651.7], [2201.26, 2649.66], [2202.39, 2648.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2559.02, 2708.49], [2552.07, 2701.23], [2549.95, 2703.24], [2554.51, 2708.02], [2551.12, 2711.25], [2553.51, 2713.76], [2559.02, 2708.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2181.47, 2712.76], [2177.59, 2708.65], [2172.85, 2713.14], [2176.74, 2717.25], [2181.47, 2712.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2419.5, 2331.73], [2414.32, 2326.81], [2406.13, 2335.45], [2411.3, 2340.36], [2419.5, 2331.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2083.63, 2752.82], [2091.02, 2744.91], [2090.03, 2743.99], [2092.5, 2741.34], [2088.49, 2737.59], [2085.7, 2740.57], [2084.63, 2739.56], [2077.98, 2746.68], [2079.67, 2748.26], [2078.16, 2749.87], [2080.48, 2752.04], [2081.56, 2750.89], [2083.63, 2752.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2173.53, 2679.83], [2169.77, 2676.53], [2167.66, 2678.95], [2166.39, 2677.84], [2160.74, 2684.3], [2165.78, 2688.7], [2173.53, 2679.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2539.7, 2775.57], [2549.98, 2766.59], [2543.89, 2759.64], [2531.41, 2770.54], [2535.68, 2775.42], [2537.89, 2773.5], [2539.7, 2775.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2370.03, 2385.81], [2361.18, 2378.62], [2357.49, 2383.17], [2359.62, 2384.9], [2358.3, 2386.53], [2365.02, 2391.98], [2370.03, 2385.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2462.66, 2782.54], [2472.8, 2772.62], [2466.19, 2765.87], [2454.71, 2777.1], [2459.49, 2781.98], [2460.83, 2780.67], [2462.66, 2782.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2469.18, 2418.58], [2464.34, 2413.21], [2459.79, 2418.03], [2464.84, 2423.39], [2469.18, 2418.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2258.39, 2499.99], [2248.45, 2490.46], [2242.34, 2496.85], [2252.27, 2506.36], [2258.39, 2499.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2638.33, 2630.58], [2632.8, 2625.65], [2627.28, 2631.85], [2632.81, 2636.78], [2638.33, 2630.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2324.55, 2472.02], [2321.28, 2468.7], [2316.39, 2473.52], [2319.67, 2476.84], [2324.55, 2472.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2686.41, 2689.59], [2690.62, 2685.53], [2688.14, 2682.96], [2689.22, 2681.92], [2682.6, 2675.07], [2676.1, 2681.34], [2683.33, 2688.83], [2684.55, 2687.67], [2686.41, 2689.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2660.68, 2758.28], [2671.93, 2747.03], [2664.82, 2739.92], [2662.59, 2742.12], [2657.7, 2737.61], [2651.26, 2744.54], [2655.7, 2748.84], [2653.22, 2751.33], [2660.68, 2758.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2250.5, 2533.98], [2245.59, 2528.69], [2240.29, 2533.62], [2245.2, 2538.9], [2250.5, 2533.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2515.2, 2611.3], [2511.87, 2607.89], [2506.2, 2613.46], [2509.52, 2616.85], [2515.2, 2611.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2162.8, 2612.2], [2156.66, 2606.26], [2147.37, 2615.86], [2153.51, 2621.8], [2162.8, 2612.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2276.73, 2799.7], [2281.96, 2794.43], [2282.81, 2795.27], [2286.88, 2791.17], [2280.4, 2784.73], [2271.1, 2794.11], [2276.73, 2799.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2501.33, 2599.3], [2497.61, 2596.04], [2493.89, 2600.27], [2497.6, 2603.54], [2501.33, 2599.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2358.15, 2636.79], [2351.95, 2630.64], [2346.37, 2636.26], [2352.57, 2642.41], [2358.15, 2636.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2628.7, 2747.72], [2630.62, 2749.74], [2633.28, 2747.22], [2631.36, 2745.2], [2628.7, 2747.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2257.18, 2564.64], [2253.67, 2560.91], [2252.15, 2562.33], [2250.27, 2560.32], [2244.65, 2565.6], [2250.05, 2571.35], [2257.18, 2564.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2101.53, 2750.56], [2098.9, 2748.03], [2096.97, 2750.02], [2096.06, 2749.15], [2090.75, 2754.66], [2096.05, 2759.77], [2101.08, 2754.55], [2099.33, 2752.86], [2101.53, 2750.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2604.78, 2596.93], [2596.53, 2587.61], [2594.87, 2589.08], [2592.87, 2586.83], [2589.27, 2590.01], [2592.53, 2593.68], [2592.22, 2593.96], [2599.21, 2601.87], [2604.78, 2596.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2255.2, 2762.27], [2248.87, 2756.34], [2242.49, 2763.17], [2244.81, 2765.34], [2240.7, 2769.72], [2245.17, 2773.9], [2249.93, 2768.82], [2249.48, 2768.39], [2255.2, 2762.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2168.47, 2699.67], [2171.38, 2696.89], [2172.17, 2697.7], [2180.64, 2689.61], [2174.82, 2683.5], [2166.12, 2691.82], [2167.58, 2693.34], [2164.88, 2695.92], [2168.47, 2699.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2556.88, 2689.48], [2549.92, 2682.97], [2544.5, 2688.77], [2551.46, 2695.28], [2556.88, 2689.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2326.96, 2593.2], [2323.43, 2589.64], [2319.94, 2593.12], [2324.26, 2597.46], [2326.82, 2594.92], [2326.04, 2594.13], [2326.96, 2593.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2521.33, 2626.43], [2516.36, 2621.03], [2511.28, 2625.68], [2516.24, 2631.1], [2521.33, 2626.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2636.16, 2654.76], [2630.61, 2649.81], [2622.46, 2658.96], [2628.0, 2663.9], [2636.16, 2654.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2392.31, 2547.96], [2384.76, 2540.97], [2378.9, 2547.3], [2387.84, 2555.57], [2392.88, 2550.13], [2391.49, 2548.84], [2392.31, 2547.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2573.93, 2592.24], [2568.2, 2586.62], [2557.34, 2597.72], [2563.08, 2603.32], [2573.93, 2592.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2831.36, 2639.32], [2842.05, 2638.68], [2840.1, 2605.25], [2828.92, 2605.77], [2831.36, 2639.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2202.06, 2749.29], [2195.76, 2743.18], [2192.33, 2746.71], [2198.63, 2752.82], [2202.06, 2749.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2616.59, 2691.08], [2611.77, 2686.14], [2601.14, 2696.47], [2605.96, 2701.43], [2616.59, 2691.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2328.6, 2443.13], [2324.45, 2439.1], [2322.53, 2441.09], [2326.66, 2445.12], [2328.6, 2443.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2354.25, 2463.12], [2349.06, 2458.31], [2341.87, 2466.09], [2347.07, 2470.89], [2354.25, 2463.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2408.21, 2368.67], [2403.7, 2364.2], [2400.11, 2367.83], [2404.62, 2372.29], [2408.21, 2368.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2438.69, 2442.99], [2435.46, 2440.39], [2430.91, 2446.03], [2434.14, 2448.63], [2438.69, 2442.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2518.27, 2420.9], [2509.96, 2412.7], [2489.28, 2433.97], [2498.15, 2441.76], [2518.27, 2420.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2532.12, 2568.56], [2540.27, 2559.38], [2533.85, 2553.67], [2524.47, 2564.22], [2527.78, 2567.16], [2529.0, 2565.79], [2532.12, 2568.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2624.98, 2717.84], [2634.69, 2708.22], [2628.91, 2702.4], [2617.44, 2713.75], [2619.31, 2715.65], [2621.08, 2713.9], [2624.98, 2717.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2208.23, 2658.09], [2211.4, 2654.92], [2209.72, 2653.23], [2206.97, 2655.99], [2206.0, 2655.04], [2197.06, 2663.99], [2201.89, 2668.81], [2210.42, 2660.27], [2208.23, 2658.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2529.47, 2768.11], [2541.41, 2756.12], [2535.24, 2750.09], [2524.41, 2760.91], [2525.83, 2762.23], [2524.73, 2763.41], [2529.47, 2768.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2462.15, 2582.55], [2463.86, 2581.27], [2464.59, 2582.22], [2468.24, 2579.49], [2466.63, 2577.34], [2472.18, 2573.16], [2470.49, 2570.91], [2471.38, 2570.24], [2468.54, 2566.48], [2456.74, 2575.35], [2462.15, 2582.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2416.54, 2495.91], [2409.08, 2489.07], [2401.11, 2497.75], [2408.57, 2504.6], [2416.54, 2495.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2485.44, 2761.78], [2479.1, 2755.14], [2473.45, 2760.52], [2479.79, 2767.16], [2485.44, 2761.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2391.58, 2755.21], [2385.46, 2749.27], [2379.06, 2755.84], [2385.18, 2761.8], [2391.58, 2755.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2546.76, 2700.3], [2540.82, 2694.13], [2540.55, 2694.39], [2538.46, 2692.23], [2533.7, 2696.82], [2543.22, 2706.69], [2546.71, 2703.31], [2545.23, 2701.78], [2546.76, 2700.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2421.87, 2579.12], [2411.6, 2568.14], [2405.79, 2573.57], [2416.07, 2584.55], [2421.87, 2579.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2434.69, 2587.32], [2429.37, 2581.41], [2424.77, 2585.55], [2430.09, 2591.46], [2434.69, 2587.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2601.12, 2674.53], [2598.01, 2671.32], [2596.74, 2672.54], [2594.52, 2670.25], [2584.38, 2680.07], [2589.71, 2685.58], [2601.12, 2674.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2486.79, 2422.92], [2484.44, 2420.24], [2477.06, 2426.73], [2479.41, 2429.41], [2486.79, 2422.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2479.61, 2460.87], [2472.89, 2453.85], [2468.63, 2457.95], [2475.35, 2464.95], [2479.61, 2460.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2155.77, 2691.2], [2152.83, 2688.37], [2148.03, 2693.34], [2150.96, 2696.17], [2155.77, 2691.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2113.8, 2720.58], [2121.0, 2712.97], [2115.19, 2707.48], [2113.18, 2709.61], [2112.16, 2708.65], [2107.22, 2713.88], [2109.64, 2716.17], [2108.55, 2717.31], [2110.5, 2719.14], [2111.33, 2718.25], [2113.8, 2720.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2469.13, 2385.92], [2463.85, 2380.85], [2458.37, 2386.57], [2463.65, 2391.64], [2469.13, 2385.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2502.76, 2494.21], [2493.64, 2485.89], [2487.75, 2492.36], [2498.17, 2501.86], [2503.04, 2496.52], [2501.73, 2495.33], [2502.76, 2494.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2667.05, 2684.0], [2670.98, 2680.34], [2672.2, 2681.67], [2674.81, 2679.25], [2670.89, 2675.03], [2664.37, 2681.12], [2667.05, 2684.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2282.3, 2534.05], [2277.33, 2529.77], [2272.78, 2535.05], [2277.75, 2539.32], [2282.3, 2534.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2164.01, 2580.73], [2168.7, 2585.02], [2175.27, 2578.26], [2170.54, 2573.91], [2164.01, 2580.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2291.89, 2531.59], [2298.34, 2525.08], [2291.62, 2518.43], [2284.57, 2525.53], [2285.27, 2526.22], [2283.8, 2527.71], [2286.23, 2530.12], [2288.3, 2528.02], [2291.89, 2531.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2530.27, 2748.2], [2524.34, 2741.96], [2517.82, 2748.17], [2523.74, 2754.4], [2530.27, 2748.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2828.31, 2605.48], [2822.37, 2605.75], [2822.6, 2610.75], [2819.13, 2610.92], [2819.63, 2621.94], [2822.78, 2621.8], [2822.86, 2623.48], [2829.11, 2623.2], [2828.31, 2605.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2258.35, 2651.12], [2269.6, 2640.09], [2267.69, 2638.15], [2269.11, 2636.75], [2264.38, 2631.94], [2251.45, 2644.63], [2253.29, 2646.51], [2251.87, 2647.9], [2254.97, 2651.07], [2256.67, 2649.4], [2258.35, 2651.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2415.16, 2351.85], [2426.14, 2340.89], [2419.71, 2334.45], [2408.81, 2345.34], [2410.19, 2346.71], [2408.56, 2348.34], [2410.5, 2350.27], [2412.04, 2348.73], [2415.16, 2351.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2316.6, 2590.95], [2309.92, 2585.24], [2306.43, 2589.32], [2313.12, 2595.04], [2316.6, 2590.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2711.45, 2761.2], [2707.1, 2759.87], [2706.96, 2760.35], [2698.13, 2757.65], [2696.21, 2763.92], [2709.38, 2767.95], [2711.45, 2761.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2238.31, 2549.59], [2232.43, 2544.1], [2227.13, 2549.76], [2233.0, 2555.25], [2238.31, 2549.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2267.25, 2572.69], [2263.17, 2568.67], [2260.56, 2571.33], [2258.69, 2569.48], [2253.62, 2574.62], [2259.58, 2580.49], [2267.25, 2572.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2290.51, 2468.45], [2282.29, 2460.16], [2281.45, 2460.98], [2280.21, 2459.73], [2276.95, 2462.96], [2278.05, 2464.06], [2276.02, 2466.07], [2284.38, 2474.52], [2290.51, 2468.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2726.5, 2738.06], [2733.24, 2740.49], [2736.16, 2732.4], [2729.42, 2729.98], [2726.5, 2738.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2546.7, 2570.38], [2540.57, 2564.67], [2534.31, 2571.37], [2540.43, 2577.08], [2546.7, 2570.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2284.79, 2732.62], [2279.42, 2728.02], [2273.05, 2735.47], [2278.43, 2740.06], [2284.79, 2732.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2283.64, 2665.23], [2273.86, 2655.94], [2271.64, 2658.27], [2269.81, 2656.54], [2267.49, 2658.97], [2269.78, 2661.15], [2267.96, 2663.06], [2278.31, 2672.89], [2283.38, 2667.56], [2282.36, 2666.58], [2283.64, 2665.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2804.99, 2661.64], [2804.43, 2652.61], [2782.44, 2653.98], [2783.0, 2662.91], [2790.62, 2662.43], [2790.55, 2661.23], [2794.66, 2660.97], [2794.74, 2662.28], [2804.99, 2661.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2195.63, 2725.69], [2191.73, 2721.88], [2184.3, 2729.5], [2188.2, 2733.31], [2195.63, 2725.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2477.96, 2561.97], [2475.28, 2559.26], [2470.46, 2564.03], [2473.14, 2566.75], [2477.96, 2561.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2405.43, 2346.26], [2399.25, 2340.47], [2394.25, 2345.83], [2392.97, 2344.62], [2389.12, 2348.74], [2396.58, 2355.72], [2405.43, 2346.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2499.48, 2744.43], [2492.27, 2737.8], [2487.08, 2743.45], [2494.29, 2750.07], [2499.48, 2744.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2244.18, 2749.34], [2240.23, 2745.3], [2231.59, 2753.76], [2238.82, 2761.14], [2246.18, 2753.92], [2242.92, 2750.58], [2244.18, 2749.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2826.93, 2677.62], [2825.87, 2666.11], [2819.36, 2666.72], [2820.28, 2676.65], [2822.19, 2676.47], [2822.33, 2678.04], [2826.93, 2677.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2410.46, 2360.37], [2406.08, 2356.15], [2401.62, 2360.79], [2406.01, 2365.0], [2410.46, 2360.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2420.88, 2522.21], [2429.03, 2514.45], [2429.86, 2515.32], [2433.11, 2512.23], [2426.6, 2505.4], [2425.03, 2506.9], [2423.99, 2505.8], [2413.97, 2515.35], [2417.0, 2518.54], [2415.89, 2519.59], [2417.27, 2521.03], [2418.57, 2519.8], [2420.88, 2522.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2387.08, 2393.34], [2380.61, 2386.83], [2377.89, 2389.53], [2384.34, 2396.05], [2387.08, 2393.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2056.52, 2712.0], [2047.03, 2721.62], [2052.98, 2727.47], [2062.33, 2717.84], [2056.52, 2712.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2184.0, 2765.81], [2178.36, 2760.33], [2172.06, 2766.78], [2179.66, 2774.18], [2184.8, 2768.89], [2182.85, 2766.99], [2184.0, 2765.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2549.17, 2556.9], [2546.35, 2553.91], [2541.15, 2558.83], [2543.97, 2561.81], [2549.17, 2556.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2385.92, 2746.55], [2379.78, 2740.74], [2369.18, 2751.95], [2375.32, 2757.76], [2385.92, 2746.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2866.36, 2632.66], [2866.16, 2626.6], [2859.15, 2626.85], [2859.35, 2632.89], [2866.36, 2632.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2653.29, 2648.06], [2650.3, 2644.92], [2644.98, 2649.96], [2647.96, 2653.11], [2653.29, 2648.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2648.73, 2643.37], [2640.51, 2636.41], [2635.86, 2641.92], [2644.07, 2648.88], [2648.73, 2643.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2267.17, 2490.86], [2259.42, 2483.13], [2253.38, 2489.18], [2261.12, 2496.92], [2267.17, 2490.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2627.6, 2698.75], [2623.35, 2694.78], [2621.12, 2697.17], [2618.55, 2694.76], [2610.72, 2703.13], [2617.55, 2709.52], [2627.6, 2698.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2543.74, 2785.01], [2546.03, 2782.78], [2546.4, 2783.16], [2557.6, 2772.22], [2552.11, 2766.6], [2541.0, 2777.45], [2542.49, 2778.96], [2540.1, 2781.29], [2543.74, 2785.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2574.7, 2668.32], [2570.05, 2663.6], [2567.32, 2666.3], [2571.97, 2671.01], [2574.7, 2668.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2303.1, 2556.48], [2298.61, 2552.16], [2293.27, 2557.71], [2297.75, 2562.03], [2303.1, 2556.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2480.81, 2393.8], [2474.6, 2387.92], [2465.81, 2397.19], [2472.02, 2403.07], [2480.81, 2393.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2435.59, 2386.59], [2430.5, 2381.28], [2424.69, 2386.83], [2429.79, 2392.14], [2435.59, 2386.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2597.0, 2604.19], [2587.71, 2595.03], [2581.35, 2601.47], [2590.64, 2610.63], [2597.0, 2604.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2398.78, 2503.09], [2395.25, 2499.55], [2385.16, 2509.59], [2388.7, 2513.13], [2398.78, 2503.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2602.7, 2709.27], [2597.86, 2704.88], [2589.8, 2713.75], [2594.64, 2718.14], [2602.7, 2709.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2100.4, 2695.07], [2094.74, 2689.85], [2089.63, 2695.4], [2095.3, 2700.61], [2100.4, 2695.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2329.73, 2493.27], [2323.52, 2487.3], [2314.76, 2496.4], [2318.26, 2499.77], [2316.15, 2501.98], [2318.86, 2504.58], [2329.73, 2493.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2362.35, 2394.92], [2354.24, 2387.21], [2351.09, 2390.52], [2353.13, 2392.46], [2350.14, 2395.6], [2356.22, 2401.38], [2362.35, 2394.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2135.31, 2640.6], [2128.88, 2634.69], [2118.92, 2645.52], [2125.34, 2651.44], [2135.31, 2640.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2468.93, 2401.54], [2466.02, 2399.04], [2461.94, 2403.79], [2464.86, 2406.29], [2468.93, 2401.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2585.78, 2743.25], [2579.82, 2737.47], [2569.57, 2748.05], [2575.54, 2753.83], [2585.78, 2743.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2458.69, 2552.1], [2455.06, 2547.98], [2452.29, 2550.43], [2455.91, 2554.55], [2458.69, 2552.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2170.3, 2762.64], [2165.88, 2758.25], [2156.11, 2768.12], [2160.54, 2772.51], [2170.3, 2762.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2367.46, 2628.0], [2359.47, 2620.53], [2354.54, 2625.81], [2363.81, 2634.48], [2366.03, 2632.11], [2364.74, 2630.9], [2367.46, 2628.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2612.66, 2518.85], [2605.91, 2512.21], [2594.21, 2524.07], [2595.71, 2525.54], [2594.21, 2527.06], [2599.46, 2532.24], [2612.66, 2518.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2152.43, 2722.2], [2148.83, 2718.68], [2143.8, 2723.82], [2147.39, 2727.34], [2152.43, 2722.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2301.33, 2703.79], [2292.2, 2695.5], [2287.21, 2700.97], [2296.35, 2709.27], [2301.33, 2703.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2501.76, 2526.61], [2496.71, 2521.37], [2489.34, 2528.48], [2494.4, 2533.72], [2501.76, 2526.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2415.62, 2522.76], [2411.8, 2518.64], [2408.95, 2521.29], [2412.78, 2525.41], [2415.62, 2522.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2402.16, 2539.23], [2395.53, 2532.41], [2392.01, 2535.84], [2390.71, 2534.49], [2388.17, 2536.97], [2397.39, 2546.43], [2402.63, 2541.33], [2401.35, 2540.02], [2402.16, 2539.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2610.2, 2682.46], [2607.6, 2679.92], [2605.42, 2682.14], [2602.48, 2679.26], [2595.08, 2686.82], [2600.63, 2692.24], [2610.2, 2682.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2371.83, 2480.84], [2367.21, 2476.14], [2361.63, 2481.61], [2366.24, 2486.32], [2371.83, 2480.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2391.7, 2413.11], [2385.22, 2407.12], [2374.87, 2418.33], [2381.34, 2424.31], [2391.7, 2413.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2606.84, 2643.64], [2609.34, 2640.92], [2610.55, 2642.01], [2612.57, 2639.82], [2613.62, 2640.78], [2616.17, 2638.0], [2612.1, 2634.28], [2610.3, 2636.23], [2600.15, 2626.94], [2594.88, 2632.7], [2606.84, 2643.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2294.25, 2655.85], [2285.07, 2646.94], [2278.79, 2653.39], [2287.98, 2662.31], [2294.25, 2655.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2543.85, 2445.74], [2535.35, 2437.96], [2525.01, 2449.27], [2533.51, 2457.03], [2543.85, 2445.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2328.7, 2759.57], [2323.18, 2754.76], [2317.92, 2760.82], [2323.45, 2765.62], [2328.7, 2759.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2510.51, 2535.12], [2504.19, 2528.72], [2498.6, 2534.26], [2504.93, 2540.65], [2510.51, 2535.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2383.74, 2517.01], [2380.99, 2514.29], [2376.81, 2518.52], [2379.55, 2521.24], [2383.74, 2517.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2323.93, 2566.3], [2332.69, 2557.75], [2331.9, 2556.93], [2333.06, 2555.79], [2328.28, 2550.89], [2327.21, 2551.93], [2326.64, 2551.34], [2315.98, 2561.73], [2318.5, 2564.31], [2320.29, 2562.57], [2323.93, 2566.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2237.76, 2763.34], [2232.76, 2758.25], [2225.86, 2765.06], [2230.86, 2770.14], [2237.76, 2763.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2604.8, 2557.32], [2599.39, 2552.48], [2591.66, 2561.12], [2597.07, 2565.96], [2604.8, 2557.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2302.47, 2607.53], [2296.91, 2601.58], [2287.04, 2610.82], [2292.6, 2616.75], [2302.47, 2607.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2583.09, 2721.11], [2578.79, 2717.15], [2577.63, 2718.42], [2574.22, 2715.28], [2570.72, 2719.08], [2578.45, 2726.17], [2583.09, 2721.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2318.63, 2439.87], [2308.47, 2430.08], [2303.05, 2435.71], [2313.21, 2445.5], [2318.63, 2439.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2378.14, 2478.69], [2380.16, 2476.71], [2381.07, 2477.64], [2387.4, 2471.45], [2380.35, 2464.23], [2373.96, 2470.48], [2376.2, 2472.77], [2374.24, 2474.69], [2378.14, 2478.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2244.03, 2514.35], [2246.8, 2511.47], [2245.82, 2510.53], [2248.44, 2507.81], [2239.76, 2499.47], [2233.35, 2506.13], [2241.97, 2514.41], [2242.99, 2513.35], [2244.03, 2514.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2491.59, 2522.52], [2485.65, 2516.6], [2480.75, 2521.53], [2486.69, 2527.44], [2491.59, 2522.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2226.0, 2592.63], [2213.15, 2605.76], [2214.44, 2607.09], [2212.97, 2608.61], [2216.88, 2612.23], [2218.19, 2610.95], [2219.95, 2612.56], [2231.88, 2599.56], [2230.34, 2598.21], [2231.19, 2597.34], [2226.0, 2592.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2516.45, 2554.47], [2521.98, 2560.01], [2532.44, 2549.1], [2526.92, 2543.79], [2516.45, 2554.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2323.84, 2430.55], [2315.72, 2422.58], [2310.75, 2427.63], [2318.88, 2435.6], [2323.84, 2430.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2211.53, 2582.25], [2206.63, 2577.04], [2200.44, 2582.87], [2205.34, 2588.08], [2211.53, 2582.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2561.17, 2485.28], [2570.39, 2475.53], [2563.16, 2468.5], [2554.14, 2477.98], [2555.33, 2479.17], [2553.63, 2481.02], [2557.87, 2485.1], [2559.35, 2483.63], [2561.17, 2485.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2015.4, 2726.02], [2017.82, 2723.73], [2015.28, 2720.94], [2012.8, 2723.26], [2015.4, 2726.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2300.81, 2485.58], [2301.74, 2484.64], [2302.53, 2485.44], [2313.0, 2475.01], [2306.95, 2468.95], [2295.55, 2480.31], [2300.81, 2485.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2199.38, 2570.32], [2195.64, 2566.45], [2187.72, 2574.08], [2192.98, 2579.53], [2198.85, 2573.86], [2197.34, 2572.29], [2199.38, 2570.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2656.65, 2781.79], [2646.84, 2771.89], [2643.53, 2775.17], [2647.08, 2778.75], [2645.54, 2780.27], [2651.82, 2786.6], [2651.66, 2786.76], [2653.23, 2788.34], [2657.3, 2784.3], [2655.73, 2782.71], [2656.65, 2781.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2241.58, 2608.8], [2234.81, 2601.76], [2225.65, 2610.55], [2232.42, 2617.61], [2241.58, 2608.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2343.99, 2783.4], [2341.23, 2780.65], [2339.93, 2781.95], [2338.67, 2780.7], [2327.09, 2792.31], [2333.15, 2798.36], [2344.06, 2787.41], [2342.02, 2785.38], [2343.99, 2783.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2103.47, 2656.5], [2097.5, 2650.53], [2094.13, 2653.89], [2100.11, 2659.86], [2103.47, 2656.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2345.69, 2528.69], [2346.98, 2527.4], [2348.06, 2528.49], [2359.18, 2517.42], [2353.17, 2511.39], [2340.76, 2523.74], [2345.69, 2528.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2248.47, 2673.63], [2244.9, 2669.91], [2240.45, 2674.17], [2244.03, 2677.89], [2248.47, 2673.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2442.45, 2358.27], [2437.66, 2353.22], [2430.16, 2360.34], [2432.1, 2362.37], [2431.1, 2363.33], [2433.96, 2366.34], [2442.45, 2358.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2196.84, 2637.58], [2189.95, 2630.75], [2180.42, 2640.37], [2187.31, 2647.2], [2196.84, 2637.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2348.25, 2572.38], [2344.38, 2568.65], [2338.81, 2574.44], [2342.67, 2578.17], [2348.25, 2572.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2637.63, 2670.24], [2647.63, 2659.39], [2644.69, 2656.7], [2642.2, 2659.4], [2639.86, 2657.24], [2631.56, 2666.26], [2635.64, 2670.02], [2636.45, 2669.15], [2637.63, 2670.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2717.79, 2737.11], [2705.75, 2733.33], [2705.46, 2734.24], [2703.03, 2733.47], [2701.41, 2738.64], [2703.92, 2739.44], [2703.36, 2741.2], [2715.33, 2744.95], [2717.79, 2737.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2344.92, 2425.21], [2341.73, 2421.7], [2336.68, 2426.28], [2339.87, 2429.79], [2344.92, 2425.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2505.38, 2613.24], [2500.08, 2607.81], [2495.16, 2612.6], [2500.46, 2618.03], [2505.38, 2613.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2266.02, 2685.1], [2257.46, 2676.09], [2252.22, 2681.06], [2260.78, 2690.07], [2266.02, 2685.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2263.93, 2516.95], [2260.05, 2513.22], [2254.48, 2519.03], [2258.35, 2522.75], [2263.93, 2516.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2401.67, 2420.64], [2395.32, 2414.52], [2383.51, 2426.76], [2389.86, 2432.89], [2401.67, 2420.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2464.41, 2477.18], [2452.59, 2465.66], [2446.68, 2471.72], [2458.5, 2483.23], [2464.41, 2477.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2415.59, 2441.64], [2409.76, 2436.11], [2401.58, 2444.74], [2407.4, 2450.27], [2415.59, 2441.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2141.92, 2729.25], [2135.6, 2723.05], [2127.31, 2731.51], [2130.17, 2734.31], [2128.85, 2735.67], [2132.3, 2739.06], [2141.92, 2729.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2376.74, 2737.0], [2370.15, 2730.27], [2358.68, 2741.51], [2365.27, 2748.24], [2376.74, 2737.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2304.96, 2453.92], [2296.76, 2445.53], [2295.6, 2446.65], [2294.67, 2445.7], [2291.45, 2448.86], [2292.77, 2450.21], [2290.76, 2452.19], [2298.56, 2460.17], [2304.96, 2453.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2177.09, 2747.46], [2172.57, 2742.81], [2166.67, 2748.53], [2171.19, 2753.19], [2177.09, 2747.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2309.9, 2494.43], [2310.93, 2493.42], [2311.68, 2494.2], [2322.06, 2484.15], [2315.82, 2477.7], [2304.41, 2488.75], [2309.9, 2494.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2520.41, 2477.18], [2511.9, 2467.79], [2505.81, 2473.29], [2516.44, 2485.03], [2520.57, 2481.29], [2518.46, 2478.96], [2520.41, 2477.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2380.63, 2564.2], [2384.61, 2560.33], [2374.37, 2549.79], [2368.67, 2555.34], [2376.98, 2563.87], [2378.7, 2562.2], [2380.63, 2564.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2243.55, 2765.87], [2240.71, 2762.6], [2235.8, 2766.85], [2238.65, 2770.12], [2243.55, 2765.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2352.9, 2647.58], [2342.2, 2637.33], [2336.23, 2643.57], [2346.93, 2653.81], [2352.9, 2647.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2224.8, 2656.82], [2221.65, 2653.6], [2217.92, 2657.26], [2221.08, 2660.47], [2224.8, 2656.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2222.39, 2729.61], [2216.87, 2724.7], [2215.81, 2725.91], [2211.68, 2722.23], [2207.72, 2726.69], [2211.57, 2730.11], [2207.09, 2735.14], [2212.89, 2740.3], [2222.39, 2729.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2812.55, 2681.56], [2812.19, 2676.96], [2809.95, 2677.15], [2809.62, 2672.95], [2797.19, 2673.93], [2797.88, 2682.72], [2812.55, 2681.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2495.6, 2504.65], [2486.06, 2495.47], [2479.95, 2501.84], [2489.5, 2511.0], [2495.6, 2504.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2664.98, 2668.0], [2663.11, 2666.07], [2659.13, 2669.94], [2661.0, 2671.87], [2664.98, 2668.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2490.6, 2451.1], [2479.74, 2439.98], [2475.04, 2444.57], [2477.35, 2446.94], [2476.49, 2447.77], [2485.05, 2456.52], [2490.6, 2451.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2459.99, 2397.62], [2456.35, 2393.62], [2451.51, 2398.03], [2455.14, 2402.02], [2459.99, 2397.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2323.69, 2785.87], [2327.72, 2781.98], [2328.74, 2783.03], [2334.88, 2777.09], [2334.68, 2776.92], [2328.99, 2771.04], [2318.84, 2780.86], [2323.69, 2785.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2250.8, 2520.37], [2246.32, 2515.8], [2243.62, 2518.44], [2248.11, 2523.02], [2250.8, 2520.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2317.35, 2539.34], [2311.68, 2533.29], [2302.27, 2542.1], [2307.95, 2548.16], [2317.35, 2539.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2335.29, 2575.53], [2343.13, 2567.74], [2342.6, 2567.2], [2344.29, 2565.52], [2338.91, 2560.11], [2336.91, 2562.1], [2336.22, 2561.4], [2328.18, 2569.4], [2328.97, 2570.2], [2327.79, 2571.37], [2331.93, 2575.53], [2333.62, 2573.85], [2335.29, 2575.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2591.69, 2667.43], [2586.26, 2661.92], [2580.11, 2667.99], [2585.53, 2673.49], [2591.69, 2667.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2333.09, 2611.31], [2322.84, 2601.48], [2318.75, 2605.74], [2319.65, 2606.59], [2317.66, 2608.66], [2327.02, 2617.64], [2333.09, 2611.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2260.39, 2545.12], [2256.77, 2541.92], [2252.76, 2546.47], [2256.37, 2549.66], [2260.39, 2545.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2394.87, 2477.57], [2390.0, 2472.84], [2383.59, 2479.42], [2389.55, 2485.23], [2391.85, 2482.88], [2390.75, 2481.81], [2394.87, 2477.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2433.08, 2350.38], [2428.13, 2345.12], [2422.08, 2350.82], [2427.03, 2356.07], [2433.08, 2350.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2343.35, 2708.44], [2336.48, 2701.72], [2326.27, 2712.16], [2327.44, 2713.3], [2324.39, 2716.41], [2330.08, 2721.99], [2343.35, 2708.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2867.85, 2577.84], [2867.69, 2575.3], [2868.79, 2575.23], [2868.0, 2563.45], [2858.09, 2564.11], [2858.89, 2576.16], [2860.01, 2576.08], [2860.16, 2578.36], [2867.85, 2577.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2222.13, 2790.04], [2218.51, 2786.42], [2212.61, 2792.31], [2216.23, 2795.93], [2222.13, 2790.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2379.96, 2376.86], [2372.09, 2369.15], [2369.28, 2372.0], [2371.34, 2374.01], [2368.13, 2377.28], [2373.95, 2382.99], [2379.96, 2376.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2294.84, 2467.79], [2299.07, 2463.45], [2297.06, 2461.49], [2297.66, 2460.89], [2289.62, 2453.05], [2287.68, 2455.03], [2286.04, 2453.42], [2283.38, 2456.15], [2284.92, 2457.66], [2283.3, 2459.32], [2291.17, 2466.99], [2292.56, 2465.57], [2294.84, 2467.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2098.61, 2777.13], [2110.82, 2763.88], [2110.21, 2763.32], [2112.68, 2760.63], [2108.71, 2756.97], [2106.16, 2759.74], [2105.09, 2758.77], [2097.69, 2766.82], [2098.84, 2767.87], [2096.71, 2770.18], [2092.75, 2766.53], [2087.65, 2772.08], [2091.75, 2775.85], [2094.26, 2773.12], [2098.61, 2777.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2248.79, 2555.04], [2245.69, 2551.98], [2244.48, 2553.21], [2241.35, 2550.1], [2234.51, 2557.01], [2240.72, 2563.17], [2248.79, 2555.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2463.26, 2455.62], [2457.07, 2449.46], [2452.05, 2454.52], [2458.25, 2460.67], [2463.26, 2455.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2350.01, 2508.23], [2343.89, 2502.4], [2331.66, 2515.24], [2337.78, 2521.07], [2350.01, 2508.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2441.01, 2596.43], [2438.67, 2594.17], [2434.93, 2598.04], [2437.28, 2600.31], [2441.01, 2596.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2216.56, 2546.02], [2220.38, 2542.49], [2218.34, 2540.31], [2219.74, 2539.03], [2211.98, 2530.69], [2211.23, 2531.39], [2209.95, 2530.02], [2207.01, 2532.74], [2208.66, 2534.51], [2206.06, 2536.91], [2213.71, 2545.15], [2214.81, 2544.14], [2216.56, 2546.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2170.54, 2734.86], [2165.65, 2730.3], [2160.32, 2736.0], [2165.2, 2740.57], [2170.54, 2734.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2733.39, 2741.46], [2721.91, 2737.77], [2719.28, 2745.94], [2730.76, 2749.63], [2733.39, 2741.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2430.0, 2454.3], [2427.6, 2451.71], [2417.97, 2460.66], [2423.87, 2467.02], [2432.73, 2458.78], [2429.23, 2455.01], [2430.0, 2454.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2455.52, 2484.93], [2443.25, 2472.37], [2437.13, 2478.34], [2449.41, 2490.9], [2455.52, 2484.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2445.09, 2388.65], [2440.14, 2384.13], [2435.33, 2389.4], [2440.28, 2393.92], [2445.09, 2388.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2513.38, 2487.83], [2502.79, 2477.09], [2497.63, 2482.17], [2508.22, 2492.92], [2513.38, 2487.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2866.74, 2660.9], [2865.97, 2649.39], [2857.53, 2649.95], [2857.99, 2656.75], [2860.25, 2656.61], [2860.57, 2661.3], [2866.74, 2660.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2861.54, 2543.03], [2860.62, 2532.35], [2850.01, 2533.26], [2850.7, 2541.26], [2853.99, 2540.98], [2854.22, 2543.66], [2861.54, 2543.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2625.47, 2629.93], [2620.61, 2625.72], [2619.27, 2627.25], [2610.27, 2619.45], [2605.22, 2625.27], [2614.83, 2633.6], [2617.99, 2629.96], [2622.24, 2633.64], [2625.47, 2629.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2422.8, 2364.05], [2419.31, 2360.2], [2414.59, 2364.47], [2418.08, 2368.33], [2422.8, 2364.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2139.64, 2788.21], [2136.0, 2784.63], [2134.33, 2786.34], [2133.4, 2785.43], [2126.48, 2792.48], [2131.62, 2797.52], [2138.21, 2790.81], [2137.64, 2790.25], [2139.64, 2788.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2072.19, 2723.19], [2068.73, 2719.58], [2066.27, 2721.94], [2065.59, 2721.23], [2059.76, 2726.83], [2061.94, 2729.1], [2060.66, 2730.34], [2064.92, 2734.77], [2072.52, 2727.47], [2070.23, 2725.08], [2072.19, 2723.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2464.74, 2546.26], [2459.85, 2541.69], [2454.79, 2547.1], [2459.68, 2551.68], [2464.74, 2546.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2434.94, 2568.59], [2424.14, 2559.1], [2418.25, 2565.8], [2429.05, 2575.29], [2434.94, 2568.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2277.72, 2598.06], [2286.4, 2589.44], [2284.27, 2587.29], [2286.1, 2585.47], [2284.54, 2583.88], [2282.59, 2585.81], [2279.57, 2582.77], [2269.13, 2593.15], [2273.24, 2597.29], [2275.1, 2595.44], [2277.72, 2598.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2859.25, 2709.88], [2858.17, 2699.46], [2853.89, 2699.9], [2854.02, 2701.1], [2851.1, 2701.4], [2851.44, 2704.63], [2850.4, 2704.74], [2851.02, 2710.73], [2859.25, 2709.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2276.07, 2577.67], [2271.47, 2572.74], [2264.5, 2579.26], [2264.9, 2579.7], [2261.25, 2583.11], [2261.86, 2583.77], [2260.41, 2585.13], [2265.61, 2590.7], [2276.72, 2580.31], [2275.09, 2578.58], [2276.07, 2577.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2363.88, 2729.33], [2357.57, 2723.43], [2348.67, 2732.96], [2354.97, 2738.86], [2363.88, 2729.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2561.24, 2468.72], [2556.11, 2462.87], [2545.45, 2472.2], [2550.58, 2478.06], [2561.24, 2468.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2612.54, 2716.29], [2605.63, 2710.37], [2597.7, 2719.62], [2604.61, 2725.54], [2612.54, 2716.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2619.35, 2776.64], [2616.07, 2773.64], [2613.87, 2776.04], [2612.77, 2775.04], [2607.11, 2781.21], [2612.71, 2786.34], [2618.62, 2779.87], [2617.4, 2778.76], [2619.35, 2776.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2829.85, 2718.65], [2827.0, 2711.06], [2817.48, 2714.64], [2819.05, 2718.84], [2821.54, 2717.9], [2822.81, 2721.29], [2829.85, 2718.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2451.21, 2551.23], [2441.93, 2542.45], [2438.66, 2545.9], [2447.93, 2554.69], [2451.21, 2551.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2502.33, 2579.12], [2496.34, 2573.52], [2488.16, 2582.27], [2494.14, 2587.87], [2502.33, 2579.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2473.45, 2467.76], [2462.77, 2458.03], [2457.95, 2463.31], [2459.03, 2464.31], [2457.69, 2465.78], [2467.28, 2474.54], [2473.45, 2467.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2564.85, 2780.46], [2559.91, 2775.69], [2551.83, 2784.07], [2558.21, 2790.23], [2564.23, 2783.99], [2562.79, 2782.61], [2564.85, 2780.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2540.03, 2638.12], [2544.24, 2634.22], [2545.86, 2635.96], [2552.87, 2629.45], [2548.2, 2624.41], [2540.94, 2631.14], [2541.74, 2632.0], [2537.77, 2635.69], [2540.03, 2638.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2275.26, 2512.05], [2281.54, 2505.48], [2275.44, 2499.65], [2268.48, 2506.94], [2271.74, 2510.07], [2272.43, 2509.35], [2275.26, 2512.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2368.03, 2401.05], [2364.56, 2397.47], [2360.7, 2401.21], [2364.16, 2404.79], [2368.03, 2401.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2413.73, 2530.26], [2402.69, 2519.24], [2400.99, 2520.96], [2398.94, 2518.91], [2396.11, 2521.75], [2398.08, 2523.72], [2395.58, 2526.22], [2406.69, 2537.31], [2413.73, 2530.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2670.52, 2690.01], [2664.09, 2683.74], [2658.31, 2689.68], [2664.74, 2695.95], [2670.52, 2690.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2313.01, 2628.88], [2306.01, 2621.78], [2300.19, 2627.52], [2308.98, 2636.44], [2314.16, 2631.33], [2312.37, 2629.51], [2313.01, 2628.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2462.1, 2556.71], [2459.45, 2554.37], [2455.37, 2559.0], [2458.02, 2561.34], [2462.1, 2556.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2616.38, 2730.52], [2611.61, 2725.93], [2607.39, 2730.31], [2612.17, 2734.9], [2616.38, 2730.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2603.65, 2507.9], [2596.81, 2501.13], [2587.62, 2510.72], [2588.46, 2511.7], [2586.33, 2514.0], [2591.98, 2519.17], [2594.03, 2517.05], [2594.6, 2517.64], [2603.65, 2507.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2541.18, 2645.61], [2536.61, 2641.32], [2531.91, 2646.35], [2536.49, 2650.63], [2541.18, 2645.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2328.05, 2689.88], [2322.36, 2683.96], [2313.62, 2692.35], [2319.31, 2698.27], [2328.05, 2689.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2459.39, 2408.4], [2454.99, 2403.67], [2450.72, 2407.66], [2455.12, 2412.37], [2459.39, 2408.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2411.42, 2584.51], [2402.54, 2576.32], [2397.34, 2581.97], [2406.22, 2590.15], [2411.42, 2584.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2487.9, 2585.65], [2484.8, 2582.54], [2478.16, 2589.12], [2481.26, 2592.24], [2487.9, 2585.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2323.97, 2619.9], [2314.82, 2612.15], [2312.75, 2614.6], [2314.22, 2615.84], [2310.28, 2620.5], [2317.96, 2627.0], [2323.97, 2619.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2162.42, 2749.83], [2155.88, 2743.55], [2147.1, 2752.71], [2153.64, 2758.99], [2162.42, 2749.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2431.98, 2599.5], [2426.04, 2593.48], [2416.87, 2602.51], [2422.81, 2608.54], [2431.98, 2599.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2847.09, 2749.46], [2859.91, 2737.56], [2848.84, 2726.0], [2836.28, 2737.75], [2847.09, 2749.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2526.92, 2460.51], [2521.16, 2455.57], [2513.91, 2464.03], [2519.67, 2468.97], [2526.92, 2460.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2860.31, 2508.81], [2860.05, 2505.7], [2857.96, 2505.87], [2857.67, 2502.28], [2847.71, 2503.11], [2848.52, 2512.76], [2858.55, 2511.93], [2858.3, 2508.98], [2860.31, 2508.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2669.7, 2654.49], [2665.31, 2650.27], [2661.58, 2654.14], [2665.97, 2658.37], [2669.7, 2654.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2860.83, 2521.92], [2860.57, 2517.1], [2849.0, 2517.71], [2849.67, 2530.24], [2857.87, 2529.81], [2857.46, 2522.11], [2860.83, 2521.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2427.86, 2436.25], [2425.02, 2433.6], [2421.65, 2437.21], [2424.49, 2439.85], [2427.86, 2436.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2505.09, 2510.19], [2501.2, 2505.83], [2496.94, 2509.64], [2500.82, 2514.0], [2505.09, 2510.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2560.75, 2700.82], [2556.37, 2696.61], [2553.67, 2699.4], [2558.06, 2703.63], [2560.75, 2700.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2200.81, 2616.32], [2205.09, 2620.35], [2209.21, 2615.86], [2205.0, 2611.85], [2200.81, 2616.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2411.25, 2417.23], [2408.44, 2414.36], [2403.85, 2418.88], [2406.66, 2421.75], [2411.25, 2417.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2338.79, 2473.37], [2336.02, 2470.77], [2332.54, 2474.5], [2335.31, 2477.09], [2338.79, 2473.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2391.94, 2370.6], [2380.88, 2360.74], [2375.38, 2366.92], [2386.44, 2376.77], [2391.94, 2370.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2617.34, 2544.68], [2604.76, 2531.99], [2585.2, 2551.97], [2591.54, 2558.08], [2600.39, 2548.93], [2608.95, 2557.23], [2617.13, 2548.33], [2625.71, 2556.85], [2628.99, 2553.68], [2625.23, 2549.84], [2635.06, 2536.69], [2631.41, 2532.85], [2617.34, 2544.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2492.2, 2759.95], [2495.52, 2756.41], [2486.44, 2747.92], [2481.32, 2753.39], [2488.02, 2759.65], [2489.83, 2757.72], [2492.2, 2759.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2584.4, 2658.49], [2577.74, 2651.47], [2570.79, 2658.07], [2574.62, 2662.12], [2573.12, 2663.54], [2575.93, 2666.5], [2584.4, 2658.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2488.32, 2417.74], [2490.97, 2415.5], [2491.92, 2416.62], [2498.55, 2411.02], [2491.59, 2402.79], [2484.68, 2408.64], [2488.82, 2413.53], [2486.45, 2415.53], [2488.32, 2417.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2232.65, 2688.89], [2228.56, 2684.98], [2224.76, 2688.96], [2228.86, 2692.86], [2232.65, 2688.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2675.8, 2712.14], [2678.22, 2709.62], [2680.11, 2711.43], [2683.11, 2708.3], [2674.22, 2699.75], [2672.68, 2701.35], [2673.8, 2702.43], [2669.91, 2706.47], [2675.8, 2712.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2412.68, 2774.46], [2406.9, 2769.14], [2399.91, 2776.74], [2405.7, 2782.06], [2412.68, 2774.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2825.63, 2707.23], [2825.28, 2699.94], [2816.07, 2700.37], [2816.41, 2707.67], [2825.63, 2707.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2578.03, 2732.54], [2575.11, 2729.99], [2573.33, 2732.03], [2570.4, 2729.48], [2561.86, 2739.26], [2567.7, 2744.37], [2578.03, 2732.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2336.92, 2734.91], [2338.67, 2732.95], [2339.72, 2733.89], [2353.05, 2718.84], [2346.65, 2713.16], [2338.43, 2722.43], [2339.77, 2723.61], [2332.91, 2731.35], [2336.92, 2734.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2506.06, 2739.12], [2501.38, 2733.66], [2497.48, 2737.0], [2502.16, 2742.46], [2506.06, 2739.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2356.48, 2587.09], [2362.03, 2581.68], [2353.4, 2572.84], [2349.35, 2576.79], [2350.64, 2578.12], [2348.09, 2580.6], [2353.93, 2586.6], [2354.98, 2585.57], [2356.48, 2587.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2519.38, 2536.86], [2515.58, 2533.58], [2508.14, 2542.19], [2508.9, 2542.85], [2506.63, 2545.48], [2512.3, 2550.39], [2519.24, 2542.37], [2516.6, 2540.08], [2519.38, 2536.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2309.5, 2583.56], [2303.01, 2578.57], [2299.8, 2582.74], [2306.3, 2587.72], [2309.5, 2583.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2538.22, 2613.15], [2532.74, 2607.45], [2524.9, 2615.0], [2526.88, 2617.05], [2522.76, 2621.01], [2526.25, 2624.65], [2538.22, 2613.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2150.89, 2744.09], [2145.76, 2739.06], [2139.86, 2745.08], [2140.24, 2745.45], [2138.59, 2747.13], [2143.35, 2751.8], [2150.89, 2744.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2106.84, 2653.23], [2110.13, 2649.71], [2108.52, 2648.2], [2113.74, 2642.61], [2108.44, 2637.66], [2100.24, 2646.43], [2101.07, 2647.21], [2098.87, 2649.56], [2102.72, 2653.16], [2104.61, 2651.13], [2106.84, 2653.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2262.02, 2629.05], [2255.3, 2622.51], [2241.04, 2637.18], [2247.76, 2643.71], [2262.02, 2629.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2223.26, 2668.29], [2217.28, 2661.97], [2206.72, 2671.94], [2212.69, 2678.26], [2223.26, 2668.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2531.94, 2637.81], [2527.5, 2633.91], [2523.89, 2638.02], [2528.33, 2641.92], [2531.94, 2637.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2847.84, 2676.33], [2847.27, 2665.01], [2839.4, 2665.41], [2839.97, 2676.73], [2847.84, 2676.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2091.64, 2685.95], [2084.4, 2679.49], [2078.68, 2685.91], [2082.5, 2689.32], [2081.59, 2690.35], [2085.0, 2693.4], [2091.64, 2685.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2567.53, 2583.47], [2561.27, 2577.31], [2551.33, 2587.39], [2553.03, 2589.08], [2551.4, 2590.72], [2555.95, 2595.21], [2567.53, 2583.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2239.72, 2647.59], [2233.02, 2641.32], [2228.76, 2645.88], [2232.99, 2649.81], [2231.86, 2651.01], [2234.34, 2653.33], [2239.72, 2647.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2126.53, 2721.54], [2122.33, 2717.88], [2115.09, 2726.19], [2120.98, 2731.32], [2126.3, 2725.21], [2124.61, 2723.74], [2126.53, 2721.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2242.44, 2708.6], [2246.31, 2704.76], [2244.81, 2703.25], [2245.76, 2702.31], [2238.26, 2694.77], [2232.68, 2700.31], [2240.23, 2707.9], [2241.0, 2707.14], [2242.44, 2708.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2644.2, 2778.71], [2639.31, 2774.14], [2637.5, 2776.08], [2642.39, 2780.65], [2644.2, 2778.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2452.03, 2613.31], [2448.22, 2610.0], [2446.39, 2612.11], [2443.58, 2609.67], [2437.61, 2616.56], [2444.23, 2622.3], [2452.03, 2613.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2442.28, 2560.62], [2432.7, 2550.34], [2426.76, 2555.87], [2438.37, 2568.33], [2441.44, 2565.49], [2439.4, 2563.3], [2442.28, 2560.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2725.16, 2766.42], [2719.32, 2764.14], [2717.12, 2769.77], [2722.96, 2772.05], [2725.16, 2766.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2530.06, 2604.32], [2524.15, 2598.64], [2514.86, 2608.3], [2520.78, 2613.98], [2530.06, 2604.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2406.64, 2621.47], [2401.4, 2616.16], [2398.26, 2619.25], [2396.91, 2617.88], [2394.33, 2620.42], [2393.28, 2619.35], [2390.34, 2622.24], [2399.38, 2631.41], [2405.48, 2625.41], [2404.08, 2623.99], [2406.64, 2621.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2182.74, 2628.6], [2181.34, 2627.15], [2183.91, 2624.7], [2181.04, 2621.63], [2178.38, 2624.21], [2176.59, 2622.33], [2170.03, 2628.58], [2176.24, 2634.93], [2182.74, 2628.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2637.5, 2609.43], [2627.99, 2600.89], [2623.27, 2606.15], [2632.8, 2614.68], [2637.5, 2609.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2407.69, 2512.36], [2403.79, 2508.64], [2399.54, 2513.11], [2403.44, 2516.82], [2407.69, 2512.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2554.64, 2578.54], [2548.65, 2572.6], [2542.37, 2578.92], [2548.36, 2584.86], [2554.64, 2578.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2241.17, 2678.07], [2238.36, 2675.6], [2236.25, 2678.0], [2239.06, 2680.46], [2241.17, 2678.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2403.31, 2766.67], [2397.7, 2761.43], [2391.45, 2768.13], [2397.05, 2773.37], [2403.31, 2766.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2342.97, 2601.15], [2334.36, 2592.95], [2332.05, 2595.38], [2331.49, 2594.85], [2327.63, 2598.9], [2336.8, 2607.64], [2342.97, 2601.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2375.26, 2546.38], [2370.41, 2541.46], [2366.38, 2545.45], [2371.23, 2550.36], [2375.26, 2546.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2625.95, 2616.12], [2620.15, 2610.57], [2614.42, 2616.57], [2620.22, 2622.1], [2625.95, 2616.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2451.57, 2562.67], [2447.33, 2558.82], [2444.2, 2562.28], [2448.44, 2566.13], [2451.57, 2562.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2550.45, 2461.56], [2544.0, 2454.77], [2536.92, 2461.5], [2540.3, 2465.08], [2538.69, 2466.61], [2541.75, 2469.84], [2550.45, 2461.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2588.29, 2615.4], [2578.95, 2604.86], [2573.04, 2610.1], [2582.38, 2620.64], [2588.29, 2615.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2539.22, 2706.03], [2533.34, 2700.23], [2532.0, 2701.58], [2530.62, 2700.21], [2525.93, 2704.95], [2527.65, 2706.65], [2526.91, 2707.39], [2532.47, 2712.88], [2539.22, 2706.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2377.99, 2397.88], [2373.97, 2393.27], [2369.06, 2397.56], [2373.08, 2402.17], [2377.99, 2397.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2210.32, 2719.25], [2204.03, 2713.15], [2197.99, 2719.35], [2204.28, 2725.46], [2210.32, 2719.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2484.02, 2579.12], [2493.42, 2569.28], [2488.0, 2564.11], [2478.6, 2573.95], [2484.02, 2579.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2325.49, 2770.91], [2322.42, 2767.49], [2319.6, 2770.03], [2317.43, 2767.62], [2309.6, 2774.68], [2314.84, 2780.5], [2325.49, 2770.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2376.49, 2509.0], [2371.77, 2504.66], [2367.83, 2508.96], [2372.55, 2513.3], [2376.49, 2509.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2208.13, 2637.67], [2203.49, 2633.0], [2199.15, 2637.32], [2203.79, 2641.99], [2208.13, 2637.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2571.16, 2672.91], [2563.82, 2666.17], [2558.29, 2672.2], [2565.62, 2678.94], [2571.16, 2672.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2378.44, 2462.13], [2371.91, 2456.1], [2365.56, 2462.96], [2372.1, 2469.0], [2378.44, 2462.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2617.83, 2645.43], [2612.93, 2640.61], [2608.16, 2645.47], [2613.06, 2650.29], [2617.83, 2645.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2297.87, 2574.25], [2291.64, 2568.66], [2286.46, 2574.46], [2294.31, 2581.48], [2297.4, 2578.02], [2295.79, 2576.57], [2297.87, 2574.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2241.41, 2522.62], [2239.15, 2520.38], [2240.97, 2518.55], [2232.43, 2510.06], [2230.11, 2512.41], [2228.75, 2511.06], [2226.0, 2513.82], [2227.68, 2515.49], [2226.73, 2516.44], [2234.69, 2524.35], [2236.74, 2522.28], [2239.26, 2524.79], [2241.41, 2522.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2425.15, 2445.08], [2421.86, 2442.1], [2421.06, 2443.0], [2419.81, 2441.88], [2409.59, 2453.21], [2416.18, 2459.15], [2425.74, 2448.55], [2423.68, 2446.7], [2425.15, 2445.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2631.75, 2569.14], [2623.36, 2560.7], [2617.83, 2566.19], [2626.23, 2574.63], [2631.75, 2569.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2706.45, 2780.09], [2691.67, 2773.47], [2688.16, 2781.3], [2702.94, 2787.92], [2706.45, 2780.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2370.16, 2662.14], [2366.1, 2657.86], [2359.69, 2663.94], [2363.76, 2668.22], [2370.16, 2662.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2401.34, 2439.81], [2409.33, 2431.15], [2402.27, 2424.64], [2392.28, 2435.44], [2395.79, 2438.68], [2397.78, 2436.52], [2401.34, 2439.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2226.92, 2532.66], [2219.15, 2524.32], [2215.77, 2527.47], [2214.19, 2525.78], [2212.17, 2527.66], [2213.63, 2529.23], [2212.29, 2530.47], [2220.19, 2538.94], [2226.92, 2532.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2323.75, 2549.16], [2317.21, 2543.05], [2308.4, 2552.48], [2314.93, 2558.58], [2323.75, 2549.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2220.61, 2686.61], [2222.18, 2685.08], [2222.9, 2685.82], [2230.48, 2678.45], [2228.14, 2676.04], [2229.51, 2674.7], [2225.34, 2670.4], [2216.26, 2679.23], [2217.0, 2679.98], [2215.55, 2681.4], [2220.61, 2686.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2240.34, 2531.59], [2236.09, 2526.84], [2233.1, 2529.53], [2237.35, 2534.28], [2240.34, 2531.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2407.01, 2407.81], [2403.31, 2403.52], [2398.34, 2407.8], [2402.04, 2412.1], [2407.01, 2407.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2194.35, 2804.53], [2195.79, 2803.12], [2196.49, 2803.83], [2208.52, 2791.97], [2202.59, 2785.95], [2190.12, 2798.25], [2191.3, 2799.44], [2190.29, 2800.44], [2194.35, 2804.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2377.49, 2619.1], [2368.93, 2610.78], [2362.85, 2617.06], [2373.04, 2626.94], [2375.59, 2624.31], [2373.96, 2622.74], [2377.49, 2619.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2338.52, 2416.51], [2330.56, 2408.53], [2325.36, 2413.7], [2333.32, 2421.69], [2338.52, 2416.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2663.85, 2680.4], [2657.4, 2674.12], [2648.23, 2683.54], [2654.68, 2689.81], [2663.85, 2680.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2546.36, 2714.17], [2542.22, 2709.81], [2537.99, 2713.82], [2542.13, 2718.18], [2546.36, 2714.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2566.38, 2682.54], [2555.95, 2673.04], [2550.67, 2678.84], [2561.09, 2688.34], [2566.38, 2682.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2180.57, 2576.03], [2191.65, 2564.68], [2184.13, 2557.64], [2173.1, 2568.86], [2180.57, 2576.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2259.12, 2793.14], [2254.47, 2788.51], [2249.6, 2793.4], [2254.24, 2798.04], [2259.12, 2793.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2461.01, 2538.02], [2455.5, 2533.21], [2454.73, 2534.1], [2452.26, 2531.94], [2446.52, 2538.52], [2454.49, 2545.49], [2461.01, 2538.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2030.98, 2734.24], [2032.85, 2736.09], [2034.14, 2734.77], [2032.27, 2732.92], [2030.98, 2734.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2508.51, 2587.24], [2503.48, 2581.76], [2495.86, 2588.75], [2500.88, 2594.23], [2508.51, 2587.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2140.34, 2686.39], [2147.41, 2678.82], [2151.96, 2683.08], [2163.02, 2671.24], [2158.43, 2666.95], [2147.88, 2678.25], [2144.48, 2675.07], [2136.9, 2683.18], [2140.34, 2686.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2192.16, 2698.71], [2186.99, 2693.56], [2179.32, 2701.28], [2184.48, 2706.43], [2192.16, 2698.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2397.93, 2360.71], [2388.94, 2353.03], [2383.6, 2359.28], [2392.6, 2366.96], [2397.93, 2360.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2089.52, 2755.81], [2087.18, 2753.5], [2082.69, 2758.06], [2085.03, 2760.37], [2089.52, 2755.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2246.08, 2700.04], [2248.77, 2697.36], [2249.81, 2698.42], [2249.98, 2698.24], [2251.49, 2699.75], [2257.0, 2694.29], [2244.81, 2682.04], [2239.38, 2687.44], [2242.19, 2690.27], [2241.38, 2691.08], [2243.7, 2693.41], [2241.58, 2695.52], [2246.08, 2700.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2694.59, 2673.41], [2683.93, 2663.06], [2683.34, 2663.67], [2680.84, 2661.25], [2675.85, 2666.39], [2689.0, 2679.17], [2694.59, 2673.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2424.45, 2428.74], [2417.13, 2422.75], [2413.34, 2427.38], [2420.65, 2433.37], [2424.45, 2428.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2145.87, 2609.24], [2155.53, 2599.03], [2156.32, 2599.79], [2160.65, 2595.22], [2155.56, 2590.42], [2150.13, 2596.16], [2147.2, 2593.38], [2138.66, 2602.42], [2145.87, 2609.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2475.05, 2781.57], [2477.17, 2779.35], [2475.12, 2777.4], [2472.61, 2780.04], [2470.34, 2777.87], [2462.71, 2785.86], [2468.76, 2791.65], [2476.79, 2783.23], [2475.05, 2781.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2105.36, 2712.74], [2115.13, 2703.03], [2107.92, 2695.77], [2097.42, 2706.36], [2100.88, 2709.84], [2101.68, 2709.04], [2105.36, 2712.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2282.78, 2717.21], [2279.17, 2713.85], [2276.16, 2717.07], [2279.76, 2720.43], [2282.78, 2717.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2423.91, 2503.55], [2418.19, 2497.98], [2410.37, 2506.02], [2416.08, 2511.59], [2423.91, 2503.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2543.93, 2617.65], [2539.92, 2613.79], [2530.17, 2623.91], [2536.02, 2629.56], [2544.1, 2621.18], [2542.26, 2619.4], [2543.93, 2617.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2737.5, 2771.46], [2731.83, 2769.35], [2729.48, 2775.68], [2735.15, 2777.77], [2737.5, 2771.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2467.66, 2598.29], [2460.81, 2591.29], [2454.85, 2597.11], [2461.7, 2604.12], [2467.66, 2598.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2529.47, 2536.3], [2534.18, 2540.72], [2538.51, 2536.31], [2533.8, 2531.79], [2529.47, 2536.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2518.93, 2592.89], [2513.99, 2587.77], [2504.88, 2596.58], [2510.8, 2602.72], [2516.96, 2596.77], [2515.97, 2595.74], [2518.93, 2592.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2341.93, 2655.18], [2332.41, 2646.52], [2327.01, 2652.46], [2336.53, 2661.12], [2341.93, 2655.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2347.19, 2596.86], [2352.55, 2591.09], [2342.1, 2581.45], [2336.74, 2587.1], [2347.19, 2596.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2858.95, 2556.49], [2858.44, 2549.22], [2851.82, 2549.68], [2852.32, 2556.94], [2858.95, 2556.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2835.82, 2679.61], [2835.62, 2676.02], [2838.37, 2675.86], [2837.75, 2664.87], [2829.59, 2665.32], [2830.32, 2678.37], [2833.18, 2678.21], [2833.26, 2679.75], [2835.82, 2679.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2618.18, 2582.71], [2622.52, 2578.64], [2612.66, 2568.1], [2607.83, 2572.64], [2610.32, 2575.29], [2609.34, 2576.22], [2614.5, 2581.74], [2615.98, 2580.36], [2618.18, 2582.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2612.85, 2751.33], [2606.1, 2743.83], [2599.53, 2749.73], [2602.67, 2753.22], [2595.63, 2759.55], [2600.17, 2764.6], [2607.07, 2758.41], [2606.12, 2757.36], [2612.85, 2751.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2466.08, 2591.44], [2469.77, 2587.4], [2470.68, 2588.23], [2471.63, 2587.19], [2474.48, 2589.79], [2479.64, 2584.14], [2475.18, 2580.07], [2471.1, 2584.53], [2470.14, 2583.66], [2467.99, 2586.02], [2464.73, 2583.04], [2461.16, 2586.96], [2466.08, 2591.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2603.94, 2776.8], [2609.97, 2770.54], [2603.81, 2764.61], [2595.61, 2773.12], [2598.57, 2775.96], [2600.74, 2773.71], [2603.94, 2776.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2850.62, 2658.35], [2850.14, 2652.6], [2846.09, 2652.94], [2846.57, 2658.7], [2850.62, 2658.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2401.01, 2385.57], [2396.26, 2381.62], [2392.25, 2386.43], [2397.0, 2390.39], [2401.01, 2385.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2861.91, 2618.79], [2861.09, 2608.63], [2853.27, 2609.26], [2854.09, 2619.42], [2861.91, 2618.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2441.61, 2607.67], [2435.4, 2601.02], [2428.75, 2607.23], [2434.96, 2613.88], [2441.61, 2607.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2153.35, 2662.28], [2146.9, 2656.55], [2137.95, 2666.62], [2144.39, 2672.35], [2153.35, 2662.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2311.29, 2563.88], [2305.89, 2558.89], [2300.33, 2564.93], [2305.73, 2569.91], [2311.29, 2563.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2316.02, 2760.13], [2309.18, 2753.64], [2300.52, 2762.77], [2305.01, 2767.01], [2304.26, 2767.8], [2306.63, 2770.05], [2316.02, 2760.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2354.08, 2433.54], [2348.45, 2428.28], [2340.79, 2436.48], [2346.42, 2441.73], [2354.08, 2433.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2312.15, 2447.3], [2301.53, 2436.67], [2295.72, 2442.48], [2306.33, 2453.09], [2312.15, 2447.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2041.97, 2717.96], [2051.44, 2707.9], [2044.68, 2701.49], [2035.08, 2711.37], [2041.97, 2717.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2564.12, 2562.7], [2559.07, 2558.31], [2554.15, 2563.96], [2559.2, 2568.37], [2564.12, 2562.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2290.53, 2710.59], [2283.06, 2703.14], [2277.14, 2709.08], [2284.62, 2716.53], [2290.53, 2710.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2295.11, 2743.0], [2288.14, 2736.27], [2282.85, 2741.75], [2284.77, 2743.61], [2282.48, 2745.99], [2287.52, 2750.86], [2295.11, 2743.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2524.32, 2737.47], [2518.55, 2731.63], [2511.24, 2738.86], [2513.26, 2740.92], [2511.29, 2742.86], [2515.02, 2746.65], [2524.32, 2737.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2233.75, 2525.1], [2225.48, 2517.36], [2223.66, 2519.31], [2221.8, 2517.57], [2219.25, 2520.3], [2221.06, 2522.0], [2219.56, 2523.62], [2227.87, 2531.39], [2233.75, 2525.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2310.61, 2737.68], [2305.59, 2733.11], [2302.02, 2737.02], [2307.05, 2741.59], [2310.61, 2737.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2868.71, 2710.9], [2867.85, 2696.8], [2861.32, 2697.21], [2862.18, 2711.3], [2868.71, 2710.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2299.02, 2540.45], [2308.44, 2530.04], [2302.27, 2524.45], [2300.34, 2526.57], [2299.97, 2526.25], [2291.09, 2536.07], [2294.49, 2539.15], [2295.89, 2537.62], [2299.02, 2540.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2474.82, 2555.4], [2469.5, 2549.22], [2463.76, 2554.16], [2469.08, 2560.34], [2474.82, 2555.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2221.77, 2590.26], [2215.87, 2584.29], [2208.81, 2591.25], [2214.71, 2597.22], [2221.77, 2590.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2369.9, 2642.73], [2363.76, 2638.07], [2360.82, 2641.94], [2366.96, 2646.61], [2369.9, 2642.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2613.67, 2586.9], [2604.86, 2577.34], [2600.76, 2581.14], [2602.25, 2582.75], [2600.15, 2584.68], [2607.47, 2592.62], [2613.67, 2586.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2067.82, 2741.27], [2064.47, 2738.08], [2056.65, 2746.28], [2060.01, 2749.47], [2067.82, 2741.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2453.09, 2367.19], [2446.38, 2360.16], [2435.25, 2370.76], [2441.97, 2377.8], [2453.09, 2367.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2386.95, 2614.0], [2390.44, 2610.5], [2388.42, 2608.49], [2389.97, 2606.93], [2381.82, 2598.83], [2375.66, 2605.03], [2384.07, 2613.37], [2385.18, 2612.25], [2386.95, 2614.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2271.27, 2500.28], [2266.97, 2495.61], [2258.74, 2503.18], [2263.02, 2507.85], [2271.27, 2500.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2479.7, 2516.45], [2482.47, 2513.71], [2484.42, 2515.69], [2486.69, 2513.44], [2485.55, 2512.28], [2486.86, 2510.98], [2479.86, 2503.89], [2473.51, 2510.18], [2479.7, 2516.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1876.69, 2820.65], [1872.55, 2801.47], [1858.11, 2804.57], [1856.98, 2799.26], [1812.43, 2808.71], [1814.65, 2819.13], [1812.28, 2819.7], [1815.36, 2833.74], [1876.69, 2820.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2709.36, -1252.95], [2710.46, -1254.02], [2710.87, -1253.6], [2716.84, -1259.51], [2718.06, -1258.22], [2720.71, -1260.76], [2719.4, -1262.14], [2720.27, -1262.96], [2719.53, -1263.73], [2727.82, -1272.01], [2722.45, -1277.66], [2719.46, -1274.82], [2718.78, -1275.55], [2712.99, -1270.05], [2712.23, -1270.85], [2709.29, -1268.06], [2708.04, -1269.29], [2709.23, -1270.41], [2709.34, -1272.7], [2707.91, -1274.18], [2705.56, -1274.11], [2704.81, -1273.41], [2703.36, -1274.95], [2702.46, -1274.09], [2697.0, -1279.84], [2692.87, -1275.91], [2695.54, -1273.1], [2693.53, -1271.18], [2699.12, -1265.3], [2698.55, -1264.71], [2698.66, -1263.71], [2701.49, -1260.9], [2699.97, -1259.47], [2704.72, -1254.47], [2706.37, -1256.04], [2709.36, -1252.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2688.53, -1499.31], [2692.99, -1485.07], [2700.96, -1487.56], [2700.8, -1488.09], [2703.91, -1489.06], [2701.29, -1497.43], [2696.82, -1496.03], [2695.15, -1501.38], [2688.53, -1499.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2734.97, -1388.31], [2733.49, -1392.19], [2735.08, -1392.8], [2731.5, -1401.97], [2724.49, -1399.3], [2729.55, -1386.24], [2734.97, -1388.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2700.8, -1529.99], [2699.23, -1534.21], [2698.79, -1534.04], [2696.84, -1539.31], [2688.25, -1536.18], [2689.36, -1533.21], [2685.63, -1531.81], [2689.31, -1521.93], [2701.63, -1526.44], [2700.36, -1529.83], [2700.8, -1529.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2736.91, -1430.1], [2733.64, -1441.3], [2725.76, -1439.0], [2729.04, -1427.81], [2736.91, -1430.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2691.77, -1412.09], [2690.65, -1415.91], [2686.65, -1414.77], [2687.76, -1410.95], [2691.77, -1412.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2568.76, -1548.94], [2576.83, -1550.22], [2575.67, -1557.5], [2567.6, -1556.22], [2568.76, -1548.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2564.62, -1565.16], [2564.23, -1568.55], [2560.44, -1568.11], [2560.21, -1570.11], [2546.31, -1568.51], [2547.29, -1560.02], [2561.4, -1561.65], [2561.05, -1564.75], [2564.62, -1565.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2738.09, -1565.51], [2746.29, -1566.42], [2745.72, -1571.52], [2737.52, -1570.6], [2738.09, -1565.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2708.83, -1490.34], [2719.95, -1493.73], [2717.34, -1502.23], [2713.81, -1501.14], [2712.52, -1505.33], [2704.94, -1503.01], [2708.83, -1490.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2661.39, -1496.87], [2653.24, -1493.63], [2658.52, -1480.42], [2659.52, -1480.79], [2661.96, -1474.71], [2669.11, -1477.59], [2661.39, -1496.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2671.39, -1572.67], [2668.59, -1579.62], [2661.08, -1576.54], [2663.87, -1569.59], [2671.39, -1572.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2566.06, -1547.56], [2565.46, -1551.37], [2562.59, -1550.93], [2561.96, -1554.93], [2550.96, -1553.17], [2552.2, -1545.37], [2566.06, -1547.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2691.39, -1253.06], [2686.34, -1257.52], [2681.39, -1252.02], [2686.44, -1247.56], [2691.39, -1253.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2712.7, -1586.51], [2722.53, -1590.34], [2719.6, -1597.84], [2709.76, -1594.01], [2712.7, -1586.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2543.38, -1531.78], [2541.45, -1536.33], [2534.05, -1533.19], [2535.98, -1528.63], [2543.38, -1531.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2596.67, -1481.14], [2599.4, -1481.96], [2599.6, -1481.27], [2608.62, -1484.08], [2606.36, -1491.55], [2597.36, -1488.74], [2597.46, -1488.38], [2594.74, -1487.56], [2596.67, -1481.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2512.71, -1588.46], [2511.25, -1593.07], [2503.8, -1590.73], [2505.25, -1586.11], [2512.71, -1588.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2595.5, -1406.21], [2594.18, -1410.24], [2587.96, -1408.28], [2589.28, -1404.26], [2595.5, -1406.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2673.31, -1442.5], [2677.06, -1430.52], [2678.98, -1431.13], [2682.84, -1418.82], [2698.79, -1423.76], [2694.88, -1436.25], [2687.34, -1433.93], [2683.65, -1445.75], [2673.31, -1442.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2705.24, -1398.61], [2701.41, -1409.02], [2692.31, -1405.62], [2696.15, -1395.2], [2705.24, -1398.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2714.83, -1235.56], [2708.09, -1241.85], [2701.43, -1234.79], [2708.18, -1228.5], [2714.83, -1235.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2726.75, -1363.95], [2734.87, -1372.6], [2726.34, -1380.6], [2718.23, -1371.95], [2726.75, -1363.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2685.4, -1541.94], [2694.57, -1545.57], [2689.62, -1558.1], [2680.69, -1554.57], [2681.47, -1552.54], [2675.92, -1550.34], [2677.98, -1545.14], [2683.31, -1547.24], [2685.4, -1541.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2631.74, -1543.25], [2632.68, -1538.56], [2632.28, -1538.47], [2633.91, -1530.44], [2643.02, -1532.2], [2642.27, -1536.08], [2645.69, -1536.78], [2644.72, -1541.63], [2647.74, -1542.23], [2646.93, -1546.28], [2631.74, -1543.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2647.0, -1339.07], [2641.43, -1336.59], [2642.02, -1335.29], [2638.34, -1333.65], [2640.93, -1327.78], [2639.69, -1327.25], [2642.63, -1320.63], [2639.23, -1319.13], [2641.47, -1314.07], [2645.61, -1315.91], [2646.48, -1313.93], [2653.17, -1316.9], [2653.64, -1315.83], [2664.26, -1320.54], [2660.81, -1328.34], [2653.27, -1324.99], [2647.0, -1339.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2717.18, -1445.05], [2714.73, -1453.1], [2712.5, -1452.41], [2712.19, -1453.44], [2708.64, -1452.35], [2708.95, -1451.32], [2704.62, -1450.01], [2708.85, -1436.13], [2713.58, -1437.56], [2711.8, -1443.4], [2717.18, -1445.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2677.38, -1562.08], [2685.54, -1565.58], [2680.2, -1578.03], [2672.03, -1574.54], [2677.38, -1562.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2736.54, -1553.17], [2728.34, -1550.36], [2732.36, -1538.59], [2733.51, -1538.98], [2734.26, -1536.79], [2741.32, -1539.2], [2736.54, -1553.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2683.8, -1533.35], [2682.04, -1538.34], [2675.46, -1536.0], [2677.23, -1531.02], [2683.8, -1533.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2747.62, -1511.98], [2746.2, -1516.97], [2740.63, -1515.37], [2742.05, -1510.38], [2747.62, -1511.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2725.28, -1421.81], [2724.07, -1428.54], [2717.6, -1427.34], [2718.81, -1420.61], [2725.28, -1421.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2679.26, -1554.05], [2678.32, -1560.43], [2671.04, -1559.39], [2671.98, -1553.02], [2679.26, -1554.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2733.47, -1229.28], [2751.02, -1240.08], [2746.99, -1246.63], [2739.74, -1242.17], [2739.39, -1242.74], [2743.31, -1245.15], [2740.03, -1250.47], [2736.18, -1248.09], [2735.21, -1249.65], [2743.97, -1255.05], [2745.07, -1253.26], [2755.53, -1259.7], [2750.9, -1267.22], [2741.28, -1261.28], [2741.03, -1261.68], [2719.5, -1248.43], [2719.75, -1248.03], [2723.31, -1242.24], [2724.7, -1243.09], [2726.02, -1240.93], [2725.15, -1237.55], [2728.16, -1232.65], [2731.91, -1231.69], [2731.96, -1231.73], [2733.47, -1229.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2546.87, -1572.25], [2568.94, -1574.6], [2570.29, -1574.75], [2569.71, -1579.86], [2568.36, -1579.7], [2567.97, -1583.2], [2549.19, -1581.23], [2548.97, -1582.69], [2543.03, -1582.01], [2543.3, -1579.61], [2541.11, -1579.36], [2541.94, -1572.11], [2546.8, -1572.67], [2546.87, -1572.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2625.52, -1464.47], [2623.21, -1471.35], [2617.63, -1469.47], [2616.32, -1469.03], [2591.03, -1460.53], [2595.66, -1446.74], [2609.22, -1451.29], [2615.38, -1453.36], [2613.41, -1459.24], [2618.98, -1461.12], [2620.29, -1461.55], [2619.95, -1462.59], [2625.52, -1464.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2575.36, -1563.73], [2574.45, -1571.22], [2566.44, -1570.27], [2567.36, -1562.76], [2575.36, -1563.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2605.39, -1345.94], [2612.0, -1348.15], [2610.59, -1352.36], [2603.98, -1350.15], [2605.39, -1345.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2677.29, -1481.42], [2685.69, -1484.26], [2682.86, -1492.56], [2674.45, -1489.72], [2677.29, -1481.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2744.57, -1222.94], [2759.73, -1218.43], [2762.24, -1208.13], [2772.66, -1210.67], [2771.61, -1214.99], [2772.84, -1215.29], [2770.18, -1226.22], [2768.75, -1225.86], [2767.07, -1232.79], [2756.24, -1230.15], [2747.48, -1232.75], [2744.57, -1222.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2590.85, -1480.34], [2589.75, -1484.04], [2593.09, -1485.19], [2591.3, -1491.26], [2576.09, -1486.46], [2579.18, -1476.65], [2590.85, -1480.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2634.54, -1338.52], [2653.63, -1346.57], [2654.09, -1345.46], [2661.6, -1348.62], [2658.15, -1356.76], [2651.67, -1354.04], [2651.48, -1354.54], [2644.34, -1351.52], [2639.67, -1362.58], [2626.7, -1357.11], [2634.54, -1338.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2634.16, -1404.74], [2643.79, -1408.31], [2641.06, -1415.68], [2631.43, -1412.11], [2634.16, -1404.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2736.73, -1567.72], [2723.41, -1563.29], [2726.51, -1553.95], [2739.84, -1558.38], [2736.73, -1567.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2601.15, -1506.36], [2594.84, -1504.7], [2594.75, -1505.07], [2592.72, -1504.55], [2592.22, -1506.59], [2573.11, -1501.69], [2574.41, -1496.46], [2575.56, -1496.77], [2576.84, -1491.8], [2603.14, -1498.58], [2601.15, -1506.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2611.57, -1357.92], [2608.74, -1366.64], [2600.23, -1363.86], [2603.06, -1355.15], [2611.57, -1357.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2734.77, -1405.7], [2733.42, -1418.82], [2722.75, -1417.67], [2723.42, -1411.48], [2725.12, -1411.67], [2725.28, -1410.16], [2723.32, -1409.96], [2723.94, -1403.88], [2731.24, -1404.63], [2731.16, -1405.31], [2734.77, -1405.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2663.35, -1292.74], [2675.15, -1299.52], [2666.82, -1314.01], [2655.03, -1307.24], [2663.35, -1292.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2735.88, -1448.69], [2733.09, -1457.65], [2722.81, -1454.44], [2725.61, -1445.46], [2735.88, -1448.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2590.32, -1464.56], [2595.96, -1466.32], [2596.21, -1465.5], [2611.77, -1470.36], [2611.51, -1471.19], [2609.53, -1477.6], [2602.2, -1475.32], [2601.35, -1478.05], [2599.53, -1477.46], [2598.78, -1479.84], [2593.09, -1478.05], [2593.82, -1475.77], [2591.47, -1475.04], [2592.17, -1472.78], [2588.17, -1471.52], [2588.71, -1469.76], [2588.3, -1468.95], [2589.02, -1466.44], [2589.9, -1465.9], [2590.32, -1464.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2520.23, -1575.27], [2518.47, -1579.65], [2511.11, -1576.69], [2512.88, -1572.31], [2520.23, -1575.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2551.51, -1513.45], [2549.33, -1519.22], [2541.77, -1516.37], [2543.94, -1510.61], [2551.51, -1513.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2766.84, -1175.31], [2762.55, -1180.12], [2756.49, -1174.75], [2760.79, -1169.94], [2766.84, -1175.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2580.08, -1452.1], [2578.54, -1456.37], [2570.65, -1453.55], [2572.19, -1449.28], [2580.08, -1452.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2553.14, -1585.45], [2553.16, -1595.28], [2529.4, -1595.09], [2529.38, -1585.27], [2553.14, -1585.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2632.91, -1555.61], [2643.76, -1559.21], [2641.38, -1566.35], [2638.61, -1565.35], [2636.18, -1571.26], [2633.41, -1571.16], [2633.1, -1577.98], [2626.31, -1577.76], [2626.2, -1580.43], [2619.57, -1580.11], [2619.8, -1576.71], [2618.93, -1576.67], [2619.06, -1573.13], [2618.4, -1573.11], [2618.5, -1569.59], [2619.9, -1569.69], [2620.01, -1565.82], [2632.04, -1566.28], [2632.99, -1563.83], [2630.08, -1562.76], [2632.91, -1555.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2702.53, -1503.8], [2710.34, -1506.2], [2707.83, -1514.75], [2700.01, -1512.36], [2702.53, -1503.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2627.67, -1412.96], [2620.92, -1410.5], [2620.44, -1411.87], [2613.31, -1409.3], [2613.85, -1407.75], [2605.33, -1404.62], [2608.03, -1397.21], [2630.42, -1405.37], [2627.67, -1412.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2669.37, -1581.14], [2677.42, -1584.64], [2672.26, -1596.5], [2665.11, -1593.37], [2663.43, -1597.16], [2657.11, -1594.42], [2659.01, -1590.12], [2660.54, -1590.78], [2663.1, -1584.83], [2667.0, -1586.53], [2669.37, -1581.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2598.94, -1386.93], [2591.55, -1384.82], [2593.07, -1379.48], [2600.46, -1381.6], [2598.94, -1386.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2704.24, -1408.9], [2710.82, -1410.94], [2709.48, -1415.43], [2702.91, -1413.39], [2704.24, -1408.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2614.99, -1313.34], [2623.66, -1317.3], [2619.56, -1326.27], [2610.89, -1322.31], [2614.99, -1313.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2567.07, -1472.79], [2565.56, -1476.51], [2558.48, -1473.63], [2560.0, -1469.9], [2567.07, -1472.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2727.09, -1584.45], [2729.76, -1585.21], [2729.02, -1587.86], [2726.35, -1587.08], [2727.09, -1584.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2577.13, -1542.34], [2556.47, -1538.27], [2557.63, -1532.32], [2561.89, -1533.15], [2562.02, -1532.5], [2578.43, -1535.73], [2577.13, -1542.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2656.48, -1529.15], [2644.98, -1525.56], [2646.61, -1520.51], [2645.38, -1520.13], [2645.94, -1518.19], [2643.14, -1517.23], [2645.32, -1510.14], [2658.94, -1514.46], [2656.64, -1521.92], [2656.09, -1521.74], [2655.56, -1523.45], [2658.02, -1524.22], [2656.48, -1529.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2705.95, -1393.18], [2707.42, -1389.14], [2706.55, -1388.83], [2707.35, -1386.61], [2708.28, -1386.95], [2710.95, -1379.64], [2718.68, -1382.47], [2715.83, -1390.3], [2714.26, -1389.72], [2712.1, -1395.43], [2705.95, -1393.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2722.8, -1583.28], [2714.84, -1579.92], [2718.9, -1570.26], [2726.88, -1573.6], [2722.8, -1583.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2747.75, -1502.92], [2752.08, -1504.21], [2752.29, -1503.47], [2759.57, -1505.63], [2759.35, -1506.36], [2757.14, -1513.82], [2743.81, -1509.85], [2745.2, -1505.16], [2746.92, -1505.7], [2747.75, -1502.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2638.09, -1598.47], [2641.02, -1600.63], [2639.12, -1603.27], [2636.18, -1601.11], [2638.09, -1598.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2561.91, -1486.62], [2560.95, -1490.46], [2554.02, -1488.74], [2554.97, -1484.89], [2561.91, -1486.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2598.55, -1392.59], [2595.74, -1401.36], [2586.97, -1398.54], [2589.79, -1389.78], [2598.55, -1392.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2624.53, -1418.32], [2622.22, -1425.16], [2619.33, -1424.18], [2618.81, -1425.8], [2619.65, -1426.58], [2620.05, -1428.23], [2619.5, -1429.78], [2618.43, -1430.68], [2617.32, -1431.12], [2616.2, -1431.19], [2611.21, -1429.5], [2611.72, -1427.96], [2608.97, -1427.03], [2608.5, -1428.43], [2603.02, -1426.57], [2604.58, -1421.94], [2603.9, -1420.47], [2604.52, -1418.68], [2605.97, -1418.1], [2607.8, -1412.67], [2624.53, -1418.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2537.44, -1626.94], [2534.68, -1635.47], [2525.23, -1632.03], [2523.12, -1638.4], [2521.23, -1637.79], [2519.32, -1644.29], [2514.28, -1642.96], [2505.43, -1647.57], [2502.06, -1640.86], [2508.82, -1637.72], [2509.34, -1638.88], [2509.75, -1637.26], [2505.03, -1635.52], [2507.1, -1629.91], [2511.78, -1631.65], [2513.6, -1626.6], [2515.0, -1627.09], [2515.42, -1625.88], [2512.97, -1621.97], [2515.57, -1614.78], [2517.56, -1613.08], [2518.32, -1613.35], [2519.54, -1609.83], [2529.09, -1613.35], [2527.24, -1618.9], [2528.95, -1619.53], [2527.69, -1623.2], [2534.02, -1625.26], [2533.86, -1625.75], [2537.44, -1626.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2665.77, -1771.53], [2665.26, -1783.01], [2656.34, -1782.58], [2656.36, -1782.16], [2650.53, -1781.88], [2651.01, -1770.81], [2665.77, -1771.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2517.58, -2239.68], [2521.66, -2242.46], [2517.66, -2248.31], [2513.58, -2245.52], [2517.58, -2239.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2635.69, -2095.38], [2641.71, -2100.64], [2635.41, -2107.85], [2629.39, -2102.59], [2635.69, -2095.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2601.93, -1695.16], [2601.71, -1704.36], [2589.09, -1704.05], [2589.19, -1700.04], [2591.37, -1700.09], [2591.4, -1698.8], [2594.05, -1698.87], [2594.15, -1694.97], [2601.93, -1695.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2560.12, -1678.52], [2560.06, -1681.9], [2565.6, -1682.0], [2565.47, -1688.96], [2559.92, -1688.86], [2559.9, -1689.67], [2543.96, -1689.37], [2544.17, -1678.22], [2560.12, -1678.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2504.76, -1834.39], [2504.75, -1844.71], [2490.87, -1844.66], [2490.88, -1834.35], [2504.76, -1834.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2455.33, -1717.04], [2455.42, -1718.31], [2457.17, -1718.2], [2457.42, -1721.57], [2446.88, -1722.29], [2446.95, -1723.33], [2443.2, -1723.59], [2443.13, -1722.56], [2442.79, -1717.92], [2455.33, -1717.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2497.88, -1713.24], [2498.08, -1717.81], [2491.42, -1718.09], [2491.22, -1713.52], [2497.88, -1713.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2438.97, -1870.45], [2438.95, -1871.55], [2441.49, -1871.59], [2441.46, -1873.81], [2444.44, -1873.88], [2444.4, -1876.96], [2447.17, -1876.96], [2447.11, -1881.1], [2446.59, -1881.09], [2446.54, -1885.02], [2445.52, -1885.01], [2445.47, -1888.6], [2421.16, -1888.32], [2421.3, -1883.18], [2422.95, -1883.14], [2423.0, -1876.55], [2425.58, -1876.59], [2425.64, -1870.25], [2438.97, -1870.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2572.93, -1778.2], [2572.83, -1782.64], [2576.81, -1782.77], [2576.72, -1787.08], [2572.52, -1786.94], [2572.5, -1787.71], [2557.78, -1787.36], [2557.88, -1782.71], [2554.96, -1782.64], [2555.07, -1777.79], [2572.93, -1778.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2661.99, -1605.32], [2654.07, -1616.41], [2650.16, -1613.62], [2645.73, -1619.86], [2639.13, -1615.14], [2647.02, -1604.07], [2649.12, -1605.55], [2653.57, -1599.3], [2661.99, -1605.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2757.45, -1607.52], [2755.19, -1614.76], [2754.35, -1614.51], [2752.31, -1621.04], [2743.14, -1618.17], [2747.45, -1604.4], [2757.45, -1607.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2524.9, -1806.32], [2524.85, -1815.24], [2517.29, -1815.19], [2517.28, -1816.61], [2497.77, -1816.47], [2497.83, -1807.25], [2516.11, -1807.38], [2516.11, -1806.26], [2524.9, -1806.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2679.17, -1855.13], [2681.53, -1855.19], [2681.46, -1857.31], [2679.1, -1857.24], [2679.17, -1855.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2613.15, -1667.24], [2612.95, -1675.55], [2603.76, -1675.33], [2603.89, -1670.24], [2605.06, -1670.28], [2605.13, -1667.04], [2613.15, -1667.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2595.85, -2044.89], [2608.62, -2058.13], [2602.89, -2063.5], [2599.49, -2059.96], [2598.33, -2061.07], [2588.94, -2051.38], [2595.85, -2044.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2395.2, -1889.34], [2404.96, -1890.83], [2403.44, -1900.76], [2393.68, -1899.27], [2395.2, -1889.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2595.22, -1826.07], [2595.15, -1832.61], [2587.12, -1832.52], [2587.19, -1825.98], [2595.22, -1826.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2597.61, -2164.82], [2599.2, -2161.94], [2597.21, -2160.84], [2601.13, -2153.75], [2616.91, -2162.47], [2616.18, -2163.76], [2618.44, -2165.02], [2614.4, -2172.33], [2612.08, -2171.04], [2611.32, -2172.41], [2597.61, -2164.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2515.03, -1829.53], [2514.74, -1832.17], [2512.11, -1831.9], [2512.39, -1829.25], [2515.03, -1829.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2623.66, -1871.03], [2623.74, -1874.73], [2624.48, -1874.69], [2624.59, -1882.56], [2624.72, -1882.55], [2624.86, -1882.56], [2625.0, -1892.48], [2616.86, -1892.63], [2616.88, -1893.73], [2611.92, -1893.82], [2611.89, -1892.51], [2605.95, -1892.62], [2605.69, -1875.62], [2613.77, -1875.48], [2613.88, -1882.35], [2617.8, -1882.28], [2617.67, -1874.8], [2618.12, -1874.8], [2618.05, -1871.13], [2623.66, -1871.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2626.89, -1725.27], [2633.34, -1728.53], [2630.04, -1735.03], [2623.6, -1731.77], [2626.89, -1725.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2717.95, -1733.45], [2709.41, -1733.18], [2709.85, -1719.15], [2715.29, -1719.32], [2715.31, -1718.7], [2725.56, -1719.02], [2725.21, -1730.3], [2718.05, -1730.07], [2717.95, -1733.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2503.89, -2047.36], [2505.65, -2052.78], [2501.91, -2054.0], [2504.13, -2061.02], [2495.03, -2063.96], [2491.05, -2051.52], [2503.89, -2047.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2703.17, -2280.64], [2703.27, -2290.46], [2698.78, -2290.51], [2698.77, -2289.62], [2689.99, -2289.72], [2689.9, -2280.78], [2703.17, -2280.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2713.17, -2382.68], [2717.38, -2390.23], [2696.3, -2402.0], [2691.63, -2393.62], [2698.33, -2389.88], [2698.41, -2390.04], [2707.2, -2385.13], [2707.58, -2385.81], [2713.17, -2382.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2546.05, -1900.99], [2529.26, -1896.76], [2529.39, -1896.43], [2526.08, -1895.57], [2527.88, -1888.39], [2531.32, -1889.33], [2533.43, -1880.81], [2543.03, -1883.19], [2541.02, -1891.28], [2548.1, -1893.05], [2546.05, -1900.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2527.53, -2197.8], [2521.92, -2207.2], [2520.99, -2206.64], [2517.64, -2212.28], [2517.05, -2211.93], [2514.45, -2216.31], [2503.36, -2209.71], [2506.06, -2205.18], [2505.59, -2204.92], [2510.12, -2197.31], [2510.64, -2197.6], [2513.23, -2193.24], [2518.46, -2196.36], [2520.22, -2193.45], [2527.53, -2197.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2490.62, -1866.33], [2496.42, -1868.59], [2495.41, -1871.22], [2497.94, -1872.18], [2493.91, -1882.59], [2484.76, -1879.06], [2488.71, -1868.88], [2489.53, -1869.19], [2490.62, -1866.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2664.57, -1996.0], [2661.36, -1992.97], [2666.06, -1987.91], [2676.29, -1997.51], [2666.12, -2008.47], [2659.09, -2001.92], [2664.57, -1996.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2621.31, -2113.79], [2632.51, -2119.56], [2621.95, -2140.05], [2613.52, -2135.7], [2619.93, -2123.27], [2617.16, -2121.83], [2621.31, -2113.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2631.12, -1851.63], [2633.84, -1851.56], [2633.89, -1854.13], [2631.19, -1854.19], [2631.12, -1851.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2531.6, -2202.73], [2539.13, -2206.34], [2534.57, -2215.98], [2536.35, -2216.82], [2532.54, -2224.86], [2530.38, -2223.83], [2528.68, -2227.35], [2520.66, -2223.54], [2526.5, -2211.33], [2527.36, -2211.73], [2531.6, -2202.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2584.45, -1639.3], [2584.44, -1640.51], [2589.67, -1640.55], [2589.63, -1646.82], [2585.87, -1646.79], [2585.86, -1647.35], [2574.57, -1647.28], [2574.59, -1644.46], [2567.98, -1644.42], [2568.01, -1639.2], [2584.45, -1639.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2564.2, -2067.12], [2565.98, -2068.83], [2564.6, -2070.28], [2562.82, -2068.58], [2564.2, -2067.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2700.38, -1839.88], [2702.71, -1839.94], [2702.65, -1842.44], [2700.33, -1842.38], [2700.38, -1839.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2615.36, -1944.74], [2626.55, -1944.15], [2626.35, -1941.28], [2636.5, -1940.76], [2637.38, -1953.85], [2621.98, -1954.84], [2621.88, -1953.56], [2615.96, -1953.93], [2615.36, -1944.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2624.86, -2135.5], [2629.81, -2137.86], [2627.59, -2142.52], [2622.63, -2140.16], [2624.86, -2135.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2666.13, -1717.56], [2671.54, -1717.72], [2671.35, -1724.16], [2673.48, -1724.22], [2673.67, -1717.87], [2683.58, -1718.16], [2683.13, -1732.61], [2673.29, -1732.33], [2673.41, -1728.95], [2665.8, -1728.73], [2666.13, -1717.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2447.04, -2047.76], [2449.66, -2056.41], [2440.4, -2058.99], [2437.77, -2050.33], [2447.04, -2047.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2507.39, -1820.92], [2506.93, -1826.7], [2503.52, -1826.41], [2503.23, -1829.68], [2494.93, -1829.02], [2495.22, -1825.93], [2494.12, -1825.85], [2494.28, -1823.82], [2495.35, -1823.9], [2495.66, -1819.97], [2507.39, -1820.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2733.06, -2274.3], [2733.11, -2277.58], [2733.67, -2277.57], [2733.85, -2288.52], [2729.02, -2288.6], [2728.99, -2286.54], [2721.55, -2286.66], [2721.41, -2277.99], [2725.68, -2277.93], [2725.63, -2274.41], [2733.06, -2274.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2511.73, -1659.43], [2510.6, -1662.04], [2512.15, -1662.98], [2513.02, -1661.59], [2513.11, -1663.07], [2518.93, -1663.26], [2518.9, -1663.71], [2519.31, -1663.72], [2519.32, -1664.87], [2519.24, -1666.02], [2519.05, -1667.15], [2518.78, -1668.26], [2518.41, -1669.35], [2517.94, -1670.4], [2517.39, -1671.41], [2516.76, -1672.37], [2516.04, -1673.26], [2516.06, -1672.53], [2509.69, -1672.32], [2509.68, -1672.78], [2506.19, -1672.68], [2506.18, -1672.95], [2502.37, -1672.82], [2502.38, -1672.55], [2502.39, -1672.08], [2502.4, -1671.57], [2500.79, -1671.52], [2500.77, -1672.32], [2498.15, -1672.26], [2498.14, -1672.79], [2493.03, -1672.68], [2493.05, -1672.15], [2493.09, -1669.9], [2492.48, -1669.6], [2491.91, -1669.25], [2491.36, -1668.85], [2490.85, -1668.4], [2490.39, -1667.92], [2491.61, -1667.95], [2491.69, -1666.79], [2491.88, -1665.63], [2492.17, -1664.5], [2492.58, -1663.4], [2493.08, -1662.35], [2493.68, -1661.34], [2494.94, -1662.02], [2495.26, -1661.49], [2496.22, -1662.03], [2499.51, -1658.31], [2501.85, -1659.46], [2504.49, -1656.22], [2511.73, -1659.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2734.68, -1818.8], [2747.47, -1819.31], [2747.06, -1829.71], [2734.5, -1829.22], [2734.34, -1833.31], [2728.36, -1833.07], [2728.78, -1822.24], [2734.53, -1822.48], [2734.68, -1818.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2733.64, -2324.4], [2733.8, -2330.17], [2735.35, -2330.12], [2735.52, -2336.42], [2723.28, -2336.78], [2722.95, -2324.72], [2733.64, -2324.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2705.65, -2194.18], [2706.36, -2206.33], [2696.67, -2206.92], [2695.96, -2194.76], [2705.65, -2194.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2647.95, -2323.35], [2635.34, -2334.44], [2629.64, -2327.83], [2630.62, -2326.98], [2628.82, -2324.92], [2634.28, -2320.14], [2635.7, -2321.78], [2641.88, -2316.34], [2647.95, -2323.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2746.61, -1670.71], [2746.2, -1682.07], [2737.4, -1681.75], [2737.43, -1681.11], [2731.19, -1680.88], [2731.59, -1670.13], [2733.6, -1670.23], [2733.72, -1667.37], [2739.0, -1667.51], [2738.87, -1670.4], [2746.61, -1670.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2571.51, -1978.46], [2585.25, -1992.97], [2578.43, -1999.44], [2574.58, -1995.36], [2573.65, -1996.24], [2568.44, -1990.74], [2570.01, -1989.22], [2565.33, -1984.29], [2571.51, -1978.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2700.6, -1670.85], [2700.18, -1681.21], [2692.84, -1680.91], [2692.87, -1680.28], [2685.92, -1680.0], [2686.33, -1670.27], [2700.6, -1670.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2588.6, -2177.77], [2594.88, -2167.18], [2609.84, -2176.04], [2604.07, -2185.77], [2596.91, -2181.53], [2596.4, -2182.4], [2588.6, -2177.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2620.96, -2031.19], [2614.24, -2038.4], [2617.31, -2041.34], [2611.76, -2047.34], [2605.54, -2041.49], [2610.68, -2035.96], [2606.2, -2031.79], [2613.32, -2024.1], [2620.96, -2031.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2491.78, -2164.24], [2500.48, -2163.5], [2501.16, -2171.51], [2492.46, -2172.25], [2491.78, -2164.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2496.88, -2046.63], [2487.91, -2049.22], [2486.0, -2042.45], [2486.3, -2042.35], [2484.07, -2034.48], [2495.93, -2031.1], [2497.16, -2035.43], [2498.01, -2035.18], [2499.66, -2040.98], [2495.61, -2042.11], [2496.88, -2046.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2477.6, -2149.9], [2461.05, -2161.71], [2456.06, -2154.72], [2458.98, -2152.64], [2454.87, -2146.87], [2475.04, -2132.49], [2479.61, -2138.91], [2477.89, -2140.13], [2479.01, -2141.7], [2475.74, -2144.04], [2478.29, -2147.61], [2476.75, -2148.71], [2477.6, -2149.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2645.35, -1935.4], [2664.45, -1941.07], [2660.91, -1952.97], [2641.81, -1947.3], [2645.35, -1935.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2498.12, -2014.89], [2497.63, -2022.44], [2493.02, -2022.14], [2492.63, -2028.66], [2482.3, -2028.02], [2482.85, -2019.28], [2483.43, -2019.32], [2483.76, -2013.98], [2498.12, -2014.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2473.26, -1735.73], [2476.31, -1735.82], [2476.27, -1736.73], [2484.06, -1736.96], [2483.88, -1743.18], [2476.21, -1742.96], [2476.14, -1745.02], [2466.37, -1744.72], [2466.72, -1732.99], [2473.34, -1733.18], [2473.26, -1735.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2687.13, -1719.41], [2691.33, -1719.56], [2691.39, -1718.26], [2704.68, -1718.76], [2704.31, -1728.96], [2690.92, -1728.47], [2690.96, -1726.88], [2686.83, -1726.73], [2687.13, -1719.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2637.81, -1732.39], [2645.06, -1732.54], [2644.96, -1737.82], [2637.7, -1737.67], [2637.81, -1732.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2735.65, -1733.82], [2735.45, -1741.51], [2728.75, -1741.3], [2728.96, -1733.61], [2735.65, -1733.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2739.69, -1752.16], [2739.77, -1756.05], [2737.38, -1756.1], [2737.29, -1752.21], [2739.69, -1752.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2736.68, -1994.71], [2729.31, -2002.97], [2731.57, -2004.99], [2728.09, -2008.87], [2721.72, -2003.17], [2724.24, -2000.36], [2721.2, -1997.61], [2729.53, -1988.27], [2736.68, -1994.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2667.0, -2111.7], [2668.55, -2112.99], [2666.74, -2115.16], [2665.19, -2113.88], [2667.0, -2111.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2639.8, -1771.29], [2639.45, -1781.19], [2626.34, -1780.73], [2626.7, -1770.82], [2639.8, -1771.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2737.98, -1764.88], [2750.34, -1765.2], [2750.16, -1772.37], [2756.95, -1772.58], [2756.67, -1783.29], [2747.18, -1783.0], [2747.2, -1782.22], [2741.32, -1782.08], [2741.52, -1774.15], [2737.75, -1774.04], [2737.98, -1764.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2390.66, -1968.32], [2389.64, -1974.82], [2381.33, -1973.51], [2382.36, -1967.01], [2390.66, -1968.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2636.04, -1620.49], [2643.38, -1625.36], [2640.66, -1629.46], [2643.18, -1631.11], [2634.77, -1643.82], [2626.63, -1638.44], [2631.99, -1630.32], [2630.27, -1629.18], [2636.04, -1620.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2619.74, -1701.61], [2619.59, -1705.35], [2612.93, -1705.1], [2613.07, -1701.35], [2619.74, -1701.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2501.56, -1686.87], [2487.77, -1686.4], [2488.03, -1679.36], [2488.16, -1679.37], [2488.23, -1676.85], [2493.34, -1677.02], [2493.26, -1679.49], [2501.81, -1679.8], [2501.56, -1686.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2655.54, -2205.91], [2654.52, -2213.21], [2655.84, -2213.5], [2656.06, -2216.41], [2661.36, -2217.82], [2661.62, -2226.48], [2656.42, -2226.62], [2656.5, -2229.49], [2645.71, -2229.79], [2645.69, -2223.71], [2649.94, -2223.65], [2649.77, -2217.81], [2646.83, -2217.39], [2648.03, -2208.41], [2648.54, -2208.49], [2649.05, -2205.03], [2655.54, -2205.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2648.96, -2081.87], [2660.05, -2091.95], [2651.51, -2101.41], [2640.42, -2091.33], [2648.96, -2081.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2628.68, -1678.83], [2628.72, -1683.33], [2622.45, -1683.36], [2622.41, -1678.84], [2628.68, -1678.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2516.97, -2075.32], [2499.53, -2084.1], [2492.86, -2070.56], [2500.68, -2066.6], [2502.46, -2070.15], [2504.49, -2069.13], [2505.3, -2070.74], [2512.88, -2066.94], [2516.97, -2075.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2700.1, -1745.04], [2703.69, -1745.11], [2703.64, -1747.64], [2700.05, -1747.56], [2700.1, -1745.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2438.45, -1891.93], [2438.49, -1896.03], [2443.57, -1896.4], [2441.86, -1904.05], [2429.49, -1903.57], [2429.41, -1904.92], [2422.07, -1904.71], [2422.11, -1902.01], [2415.54, -1901.27], [2417.03, -1893.64], [2420.91, -1894.12], [2422.38, -1891.21], [2426.66, -1892.17], [2427.19, -1891.18], [2438.45, -1891.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2561.08, -2134.12], [2567.94, -2138.75], [2563.47, -2145.46], [2556.61, -2140.83], [2561.08, -2134.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2612.69, -1718.82], [2612.61, -1721.18], [2608.81, -1721.05], [2608.89, -1718.69], [2612.69, -1718.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2700.22, -1896.93], [2697.73, -1900.85], [2699.06, -1901.7], [2693.73, -1910.14], [2677.31, -1899.71], [2683.04, -1890.76], [2692.78, -1896.95], [2694.88, -1893.53], [2700.22, -1896.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2631.43, -1709.68], [2633.99, -1710.99], [2634.57, -1709.85], [2641.58, -1713.41], [2635.22, -1726.01], [2625.63, -1721.15], [2631.43, -1709.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2720.56, -2399.35], [2727.19, -2405.94], [2714.49, -2418.71], [2702.24, -2406.53], [2708.98, -2399.75], [2714.61, -2405.34], [2720.56, -2399.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2541.06, -1597.41], [2541.0, -1607.69], [2521.31, -1607.57], [2521.38, -1597.29], [2541.06, -1597.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2467.2, -2113.44], [2440.62, -2125.97], [2438.26, -2120.96], [2441.53, -2119.41], [2438.97, -2113.97], [2446.39, -2110.48], [2447.49, -2112.76], [2463.31, -2105.14], [2467.2, -2113.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2563.47, -1826.89], [2547.65, -1826.27], [2547.79, -1822.65], [2540.33, -1822.35], [2540.74, -1812.08], [2564.03, -1813.01], [2563.47, -1826.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2408.67, -1855.01], [2406.99, -1860.49], [2400.45, -1858.65], [2402.14, -1853.17], [2408.67, -1855.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2593.44, -2246.68], [2596.24, -2247.96], [2594.71, -2251.44], [2591.91, -2250.16], [2593.44, -2246.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2516.34, -2051.26], [2508.38, -2054.09], [2505.71, -2046.46], [2513.67, -2043.64], [2516.34, -2051.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2754.77, -1644.35], [2744.06, -1645.49], [2743.94, -1644.97], [2736.46, -1645.74], [2735.71, -1637.9], [2743.92, -1637.06], [2743.16, -1630.04], [2753.65, -1628.92], [2754.61, -1637.92], [2754.12, -1637.97], [2754.77, -1644.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2526.14, -2111.07], [2517.22, -2117.3], [2512.35, -2110.1], [2513.03, -2109.67], [2509.35, -2104.12], [2517.94, -2098.36], [2518.24, -2098.81], [2521.1, -2096.9], [2523.56, -2100.55], [2520.54, -2102.58], [2526.14, -2111.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2457.65, -1839.95], [2457.47, -1847.74], [2449.4, -1847.55], [2449.59, -1839.77], [2457.65, -1839.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2523.03, -2178.99], [2528.08, -2182.64], [2523.94, -2188.39], [2518.9, -2184.73], [2523.03, -2178.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2485.97, -1960.95], [2486.91, -1973.17], [2482.93, -1973.49], [2483.51, -1980.57], [2474.36, -1981.31], [2473.43, -1969.25], [2471.24, -1969.43], [2471.02, -1966.64], [2473.16, -1966.47], [2472.81, -1962.0], [2485.97, -1960.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2510.29, -2167.03], [2515.96, -2171.55], [2510.93, -2177.61], [2505.41, -2173.16], [2510.29, -2167.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2695.36, -2208.86], [2696.0, -2219.45], [2688.72, -2219.88], [2688.1, -2209.3], [2695.36, -2208.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2473.31, -2162.92], [2473.67, -2165.59], [2475.07, -2165.33], [2481.03, -2167.36], [2480.96, -2167.63], [2491.46, -2171.23], [2487.82, -2181.78], [2477.01, -2178.08], [2477.4, -2177.31], [2475.26, -2176.58], [2468.59, -2177.24], [2466.77, -2163.72], [2473.31, -2162.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2690.53, -2032.7], [2703.97, -2044.23], [2696.11, -2053.39], [2683.91, -2042.92], [2686.65, -2039.73], [2685.41, -2038.66], [2690.53, -2032.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2608.1, -2140.54], [2621.84, -2147.94], [2616.21, -2158.53], [2602.46, -2151.13], [2608.1, -2140.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2666.58, -2059.57], [2673.33, -2065.36], [2663.55, -2076.72], [2656.06, -2070.3], [2661.84, -2063.55], [2662.58, -2064.18], [2666.58, -2059.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2664.63, -2262.4], [2671.79, -2261.66], [2672.27, -2265.95], [2665.11, -2266.7], [2664.63, -2262.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2600.22, -1709.73], [2599.88, -1719.3], [2593.92, -1719.08], [2593.94, -1718.53], [2588.53, -1718.34], [2588.64, -1715.22], [2584.11, -1715.06], [2584.33, -1709.15], [2600.22, -1709.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2514.51, -1776.35], [2514.28, -1785.42], [2498.99, -1785.03], [2499.22, -1775.95], [2514.51, -1776.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2575.53, -1648.42], [2575.37, -1656.57], [2569.87, -1656.19], [2569.68, -1660.11], [2553.83, -1659.57], [2554.21, -1647.26], [2575.53, -1648.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2632.8, -2107.49], [2637.49, -2111.5], [2634.57, -2114.9], [2629.89, -2110.9], [2632.8, -2107.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2552.61, -1876.05], [2542.81, -1874.27], [2546.27, -1855.62], [2555.93, -1857.37], [2552.61, -1876.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2450.64, -2103.4], [2438.67, -2107.65], [2434.57, -2104.48], [2435.59, -2099.94], [2438.43, -2098.91], [2437.83, -2097.09], [2438.82, -2096.77], [2436.89, -2091.44], [2443.2, -2089.2], [2443.08, -2088.84], [2455.77, -2084.33], [2455.9, -2084.68], [2458.68, -2092.51], [2448.11, -2096.27], [2450.64, -2103.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2577.54, -1760.23], [2577.28, -1772.46], [2563.74, -1772.18], [2563.99, -1759.95], [2577.54, -1760.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2710.62, -1643.99], [2715.22, -1644.78], [2714.62, -1648.62], [2710.03, -1647.82], [2710.62, -1643.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2659.74, -1830.12], [2667.68, -1830.46], [2667.33, -1838.87], [2659.4, -1838.54], [2659.74, -1830.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2428.95, -1951.72], [2428.18, -1957.97], [2420.38, -1957.04], [2421.14, -1950.79], [2428.95, -1951.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2592.52, -1735.53], [2601.4, -1735.8], [2601.16, -1743.58], [2592.29, -1743.32], [2592.52, -1735.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2718.13, -2271.55], [2718.74, -2290.22], [2710.86, -2290.5], [2710.64, -2283.99], [2705.96, -2284.14], [2705.56, -2271.97], [2718.13, -2271.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2703.64, -2334.72], [2704.58, -2340.88], [2698.7, -2341.78], [2697.86, -2336.3], [2696.13, -2336.56], [2694.43, -2325.51], [2703.1, -2324.19], [2704.68, -2334.56], [2703.64, -2334.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2649.06, -1880.14], [2648.52, -1891.38], [2638.15, -1890.92], [2638.19, -1890.46], [2630.65, -1890.07], [2631.21, -1875.4], [2636.71, -1875.64], [2636.54, -1879.58], [2649.06, -1880.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2521.22, -1776.46], [2524.96, -1776.46], [2524.95, -1779.46], [2521.22, -1779.46], [2521.22, -1776.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2452.43, -1811.03], [2451.61, -1818.4], [2453.0, -1818.55], [2452.47, -1823.31], [2451.11, -1823.16], [2450.57, -1827.84], [2457.44, -1828.61], [2456.5, -1837.06], [2444.35, -1835.69], [2444.69, -1832.73], [2443.19, -1832.58], [2443.65, -1828.65], [2437.12, -1827.92], [2437.87, -1820.87], [2439.11, -1821.01], [2440.37, -1809.68], [2452.43, -1811.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2716.51, -2003.11], [2724.44, -2010.7], [2720.83, -2014.48], [2721.94, -2015.55], [2718.79, -2018.84], [2717.01, -2017.13], [2713.27, -2021.04], [2706.0, -2014.08], [2716.51, -2003.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2475.92, -1748.09], [2475.89, -1750.58], [2483.54, -1750.71], [2483.38, -1760.48], [2471.85, -1760.29], [2471.89, -1759.72], [2460.4, -1759.54], [2460.56, -1747.85], [2475.92, -1748.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2707.15, -2323.42], [2718.22, -2323.21], [2718.73, -2341.93], [2707.67, -2342.13], [2707.15, -2323.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2481.3, -1855.11], [2481.27, -1859.92], [2474.93, -1859.88], [2474.96, -1855.06], [2481.3, -1855.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2523.48, -1849.58], [2522.98, -1851.89], [2519.98, -1851.23], [2520.48, -1848.93], [2523.48, -1849.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2550.46, -1674.29], [2550.78, -1665.19], [2570.25, -1665.85], [2569.94, -1673.07], [2563.68, -1672.85], [2563.62, -1674.76], [2550.46, -1674.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2394.12, -2025.23], [2386.58, -2025.8], [2385.92, -2017.07], [2393.46, -2016.49], [2394.12, -2025.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2679.28, -2044.63], [2691.44, -2055.45], [2683.85, -2063.97], [2671.69, -2053.15], [2679.28, -2044.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2604.36, -1708.02], [2612.49, -1708.36], [2612.2, -1715.35], [2604.07, -1715.0], [2604.36, -1708.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2645.65, -2210.46], [2640.93, -2227.42], [2640.87, -2227.41], [2639.06, -2235.26], [2630.73, -2233.36], [2631.2, -2231.31], [2621.37, -2229.08], [2624.67, -2215.1], [2631.69, -2216.68], [2631.31, -2218.02], [2633.28, -2218.49], [2636.25, -2207.84], [2645.65, -2210.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2391.25, -1938.79], [2390.73, -1945.1], [2382.78, -1944.44], [2383.3, -1938.12], [2391.25, -1938.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2674.47, -2224.31], [2666.23, -2224.66], [2665.89, -2214.17], [2672.52, -2213.89], [2672.5, -2213.24], [2676.46, -2213.12], [2676.36, -2209.97], [2683.29, -2209.75], [2683.38, -2212.89], [2683.67, -2221.74], [2674.39, -2222.04], [2674.47, -2224.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2532.01, -1960.83], [2529.52, -1971.5], [2528.53, -1971.3], [2527.92, -1973.63], [2529.43, -1973.98], [2527.23, -1983.68], [2517.1, -1981.25], [2518.32, -1976.29], [2515.72, -1975.66], [2518.77, -1962.46], [2521.87, -1963.21], [2522.89, -1958.68], [2532.01, -1960.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2636.37, -2168.77], [2643.67, -2172.31], [2640.4, -2179.05], [2633.1, -2175.51], [2636.37, -2168.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2530.42, -2031.79], [2533.84, -2031.0], [2534.46, -2033.65], [2531.04, -2034.44], [2530.42, -2031.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2533.73, -1954.51], [2522.34, -1951.83], [2524.2, -1943.59], [2522.39, -1943.18], [2525.63, -1929.32], [2538.83, -1932.41], [2533.73, -1954.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2595.52, -1896.25], [2587.6, -1905.59], [2580.24, -1899.34], [2589.28, -1888.7], [2586.45, -1886.33], [2589.8, -1882.36], [2599.2, -1890.3], [2594.72, -1895.57], [2595.52, -1896.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2436.38, -2059.42], [2435.3, -2059.74], [2437.68, -2067.64], [2426.33, -2071.05], [2421.9, -2056.32], [2434.33, -2052.58], [2436.38, -2059.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2389.31, -1992.71], [2388.42, -1997.98], [2381.5, -1996.81], [2382.39, -1991.54], [2389.31, -1992.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2611.4, -1721.55], [2611.05, -1729.12], [2604.87, -1728.9], [2604.89, -1728.37], [2602.46, -1728.28], [2602.8, -1721.24], [2611.4, -1721.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2585.73, -1910.93], [2587.18, -1917.61], [2588.05, -1917.47], [2591.4, -1932.55], [2580.54, -1935.0], [2577.36, -1920.28], [2578.32, -1920.02], [2576.75, -1912.86], [2585.73, -1910.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2676.19, -1882.3], [2675.24, -1887.09], [2675.73, -1887.2], [2673.94, -1895.93], [2667.3, -1894.56], [2667.17, -1895.18], [2652.86, -1892.26], [2652.99, -1891.64], [2655.0, -1881.82], [2667.18, -1884.31], [2667.35, -1883.46], [2669.98, -1884.0], [2672.07, -1881.42], [2676.19, -1882.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2679.49, -1827.97], [2676.87, -1827.93], [2676.75, -1832.44], [2669.13, -1832.21], [2669.24, -1827.79], [2664.5, -1827.65], [2664.75, -1818.18], [2679.74, -1818.59], [2679.49, -1827.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2562.82, -2014.85], [2555.13, -2020.6], [2549.7, -2013.36], [2554.62, -2009.71], [2553.15, -2007.7], [2562.29, -2001.26], [2568.36, -2009.89], [2562.3, -2014.16], [2562.82, -2014.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2608.72, -1600.47], [2608.62, -1612.49], [2608.01, -1612.49], [2608.04, -1615.41], [2600.61, -1615.39], [2600.59, -1612.58], [2596.95, -1612.51], [2596.96, -1611.99], [2593.24, -1611.95], [2597.04, -1601.18], [2597.05, -1600.38], [2608.72, -1600.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2553.68, -2142.46], [2565.61, -2150.41], [2559.87, -2158.97], [2552.29, -2153.95], [2552.7, -2153.33], [2548.34, -2150.4], [2553.68, -2142.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2472.52, -2115.47], [2477.25, -2122.92], [2467.54, -2129.08], [2469.49, -2132.1], [2452.84, -2143.89], [2449.93, -2140.28], [2448.69, -2141.08], [2443.98, -2133.31], [2472.52, -2115.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2536.53, -2122.78], [2529.96, -2128.32], [2527.77, -2125.67], [2526.55, -2126.65], [2520.28, -2119.24], [2534.84, -2107.02], [2536.98, -2109.59], [2533.61, -2112.44], [2537.7, -2117.31], [2534.31, -2120.15], [2536.53, -2122.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2710.64, -1767.06], [2710.48, -1770.62], [2711.15, -1770.65], [2710.67, -1782.91], [2693.27, -1782.16], [2693.76, -1769.89], [2694.4, -1769.92], [2694.56, -1766.37], [2710.64, -1767.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2684.72, -1972.26], [2689.39, -1976.51], [2686.69, -1979.4], [2683.27, -1976.29], [2681.36, -1978.45], [2687.36, -1983.96], [2680.19, -1991.83], [2669.95, -1982.47], [2679.15, -1972.36], [2682.14, -1975.09], [2684.72, -1972.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2502.75, -1949.85], [2502.57, -1953.79], [2497.48, -1953.57], [2497.66, -1949.62], [2502.75, -1949.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2740.63, -1908.61], [2748.7, -1915.87], [2745.96, -1918.91], [2744.92, -1917.98], [2735.76, -1927.94], [2728.37, -1921.29], [2736.06, -1912.97], [2736.42, -1913.29], [2740.63, -1908.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2674.19, -1781.33], [2674.52, -1772.46], [2670.39, -1772.32], [2670.68, -1762.13], [2675.05, -1762.27], [2675.04, -1762.68], [2682.32, -1762.92], [2682.16, -1767.73], [2688.22, -1767.97], [2687.76, -1781.82], [2674.19, -1781.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2638.47, -1828.01], [2643.53, -1828.15], [2643.36, -1834.91], [2638.3, -1834.78], [2638.47, -1828.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2495.46, -2223.11], [2499.25, -2225.71], [2495.45, -2231.27], [2491.66, -2228.66], [2495.46, -2223.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2519.39, -2093.31], [2515.9, -2087.87], [2523.01, -2083.21], [2526.49, -2088.65], [2519.39, -2093.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2493.78, -1896.87], [2492.1, -1901.88], [2488.25, -1900.56], [2487.09, -1904.04], [2480.5, -1901.8], [2479.67, -1904.2], [2473.16, -1902.08], [2475.97, -1893.75], [2481.86, -1895.72], [2482.72, -1893.15], [2493.78, -1896.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2709.92, -1842.41], [2704.3, -1842.25], [2704.6, -1831.32], [2710.22, -1831.47], [2712.16, -1831.52], [2711.96, -1839.06], [2710.01, -1839.01], [2709.92, -1842.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2503.86, -1992.88], [2504.63, -2008.84], [2483.25, -2009.93], [2482.86, -2001.48], [2490.46, -2001.1], [2490.08, -1993.58], [2503.86, -1992.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2613.58, -2285.77], [2615.44, -2288.01], [2618.27, -2285.67], [2623.29, -2292.04], [2621.62, -2293.43], [2623.03, -2295.19], [2625.49, -2293.23], [2630.51, -2299.59], [2619.88, -2308.47], [2608.26, -2293.96], [2610.95, -2291.8], [2609.1, -2289.56], [2613.58, -2285.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2654.87, -2006.77], [2661.94, -2013.42], [2656.68, -2019.0], [2656.23, -2018.64], [2651.31, -2023.86], [2644.69, -2017.57], [2654.87, -2006.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2548.02, -2014.98], [2541.76, -2022.73], [2536.47, -2018.36], [2535.94, -2018.94], [2528.23, -2012.58], [2528.54, -2012.15], [2521.54, -2006.36], [2527.91, -1998.66], [2534.75, -2004.3], [2535.2, -2003.76], [2543.04, -2010.23], [2542.71, -2010.63], [2548.02, -2014.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2712.28, -1752.12], [2712.15, -1754.24], [2710.14, -1754.12], [2710.27, -1752.0], [2712.28, -1752.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2519.04, -1772.53], [2510.76, -1772.5], [2508.56, -1772.49], [2508.57, -1772.44], [2502.05, -1772.25], [2502.24, -1765.32], [2508.56, -1765.51], [2508.56, -1761.73], [2519.04, -1761.77], [2519.04, -1772.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2504.74, -1850.43], [2504.57, -1858.88], [2498.57, -1858.79], [2498.58, -1860.45], [2490.42, -1860.34], [2490.48, -1856.71], [2489.46, -1856.69], [2489.53, -1851.33], [2490.82, -1851.34], [2490.86, -1848.13], [2498.8, -1848.27], [2498.77, -1850.37], [2504.74, -1850.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2548.86, -2133.57], [2553.49, -2137.77], [2545.28, -2146.81], [2531.44, -2134.24], [2537.6, -2127.45], [2546.82, -2135.82], [2548.86, -2133.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2493.51, -1625.66], [2491.4, -1632.99], [2482.35, -1630.38], [2484.46, -1623.05], [2493.51, -1625.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2620.04, -1764.82], [2619.55, -1780.66], [2612.66, -1780.49], [2612.64, -1781.27], [2604.34, -1781.01], [2604.65, -1770.85], [2611.95, -1771.07], [2612.15, -1764.62], [2620.04, -1764.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2489.87, -2196.06], [2504.89, -2176.02], [2510.92, -2180.66], [2512.84, -2178.21], [2514.84, -2179.81], [2504.38, -2193.92], [2506.83, -2195.6], [2499.7, -2204.8], [2493.96, -2201.57], [2489.87, -2196.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2593.11, -1619.61], [2592.73, -1627.8], [2595.19, -1627.91], [2594.79, -1636.38], [2584.04, -1635.87], [2584.83, -1619.22], [2593.11, -1619.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2549.5, -1695.57], [2549.44, -1701.07], [2543.19, -1700.99], [2543.18, -1702.1], [2541.94, -1702.08], [2541.93, -1702.81], [2536.91, -1702.74], [2537.03, -1692.67], [2546.69, -1692.79], [2546.65, -1695.54], [2549.5, -1695.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2439.55, -2163.71], [2443.56, -2169.41], [2437.27, -2173.84], [2433.25, -2168.14], [2439.55, -2163.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2433.73, -1939.2], [2433.31, -1948.08], [2423.76, -1947.6], [2423.71, -1948.4], [2417.82, -1948.1], [2417.84, -1947.36], [2412.89, -1947.11], [2413.29, -1938.88], [2425.78, -1939.5], [2425.84, -1938.8], [2433.73, -1939.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2584.97, -2055.94], [2598.4, -2069.02], [2591.63, -2075.97], [2585.0, -2069.52], [2583.18, -2071.4], [2576.39, -2064.77], [2584.97, -2055.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2717.95, -1891.83], [2720.48, -1893.7], [2718.35, -1896.61], [2715.83, -1894.74], [2717.95, -1891.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2680.68, -2270.18], [2680.76, -2273.04], [2686.06, -2272.88], [2686.45, -2292.19], [2677.21, -2292.39], [2677.06, -2284.72], [2675.92, -2284.76], [2675.64, -2270.31], [2680.68, -2270.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2439.7, -1907.25], [2439.55, -1915.73], [2432.85, -1915.59], [2432.74, -1919.26], [2418.81, -1918.95], [2419.07, -1907.35], [2428.55, -1907.56], [2428.57, -1907.0], [2439.7, -1907.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2701.61, -1828.81], [2701.0, -1828.81], [2700.97, -1831.83], [2688.87, -1831.72], [2688.9, -1828.55], [2688.22, -1828.54], [2688.3, -1819.29], [2701.69, -1819.41], [2701.61, -1828.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2544.97, -1712.43], [2543.87, -1715.23], [2544.62, -1715.53], [2541.53, -1723.4], [2542.62, -1723.83], [2540.25, -1729.87], [2539.16, -1729.44], [2529.11, -1725.5], [2534.57, -1711.59], [2539.04, -1713.34], [2540.14, -1710.54], [2544.97, -1712.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2679.36, -1661.63], [2678.96, -1680.27], [2662.71, -1679.69], [2662.8, -1675.63], [2664.08, -1675.64], [2664.15, -1672.47], [2668.53, -1672.52], [2668.77, -1661.39], [2679.36, -1661.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2666.09, -2365.32], [2661.97, -2362.29], [2655.61, -2361.2], [2651.39, -2353.8], [2659.07, -2342.83], [2661.74, -2344.71], [2663.75, -2341.81], [2665.11, -2342.78], [2670.56, -2334.98], [2677.98, -2340.17], [2674.24, -2345.53], [2674.5, -2348.1], [2669.77, -2354.87], [2672.17, -2356.61], [2666.09, -2365.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2579.03, -2201.42], [2583.93, -2191.16], [2593.82, -2195.86], [2588.93, -2206.12], [2579.03, -2201.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2640.57, -2311.18], [2626.96, -2321.85], [2619.91, -2312.88], [2633.52, -2302.19], [2640.57, -2311.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2520.77, -1861.16], [2520.29, -1864.38], [2517.6, -1863.85], [2518.07, -1860.63], [2520.77, -1861.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2669.9, -1974.2], [2672.51, -1976.63], [2670.27, -1979.02], [2667.66, -1976.59], [2669.9, -1974.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2637.24, -1653.92], [2632.8, -1660.18], [2627.29, -1655.76], [2631.29, -1649.81], [2637.24, -1653.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2585.98, -2190.15], [2588.62, -2184.63], [2596.29, -2188.31], [2593.65, -2193.83], [2585.98, -2190.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2460.58, -1823.72], [2467.2, -1823.88], [2467.04, -1830.58], [2460.41, -1830.42], [2460.58, -1823.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2418.33, -1958.21], [2417.53, -1971.83], [2412.83, -1971.55], [2412.9, -1970.27], [2406.59, -1969.9], [2406.99, -1963.03], [2404.21, -1962.88], [2404.49, -1957.96], [2407.19, -1958.13], [2407.23, -1957.55], [2418.33, -1958.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2692.28, -1952.04], [2704.94, -1963.95], [2698.05, -1971.24], [2689.24, -1963.01], [2686.58, -1965.74], [2682.27, -1961.64], [2686.35, -1957.39], [2686.81, -1957.85], [2692.28, -1952.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2513.56, -2036.93], [2518.64, -2035.35], [2519.89, -2039.41], [2514.82, -2040.99], [2513.56, -2036.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2512.75, -2094.15], [2505.76, -2097.66], [2504.16, -2094.5], [2503.77, -2094.7], [2500.23, -2087.67], [2507.62, -2083.96], [2512.75, -2094.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2683.06, -1834.97], [2691.93, -1835.2], [2691.73, -1843.13], [2682.85, -1842.9], [2683.06, -1834.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2453.87, -2068.91], [2457.1, -2079.13], [2454.33, -2079.94], [2453.84, -2078.66], [2440.28, -2082.88], [2441.26, -2086.09], [2441.05, -2086.14], [2441.1, -2086.3], [2433.54, -2088.55], [2432.83, -2089.93], [2427.63, -2087.28], [2427.91, -2086.76], [2427.38, -2086.48], [2430.46, -2080.92], [2426.95, -2079.16], [2432.09, -2077.97], [2434.02, -2074.49], [2441.66, -2072.23], [2441.75, -2072.51], [2453.87, -2068.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2438.49, -2016.16], [2437.79, -2022.77], [2436.99, -2022.68], [2432.46, -2022.2], [2432.44, -2022.29], [2430.8, -2022.11], [2430.45, -2025.37], [2427.08, -2025.0], [2427.0, -2025.72], [2415.76, -2024.51], [2415.84, -2023.79], [2416.19, -2020.53], [2415.08, -2020.41], [2416.39, -2008.32], [2433.75, -2010.2], [2433.59, -2011.73], [2438.11, -2012.22], [2437.7, -2016.08], [2438.49, -2016.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2711.57, -1915.55], [2714.25, -1918.03], [2714.75, -1917.48], [2720.27, -1922.55], [2719.07, -1923.9], [2731.54, -1935.34], [2724.73, -1942.73], [2715.36, -1934.13], [2716.23, -1933.17], [2713.0, -1930.21], [2714.16, -1928.94], [2708.77, -1924.0], [2710.27, -1922.37], [2707.58, -1919.9], [2711.57, -1915.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2572.33, -2216.28], [2577.07, -2208.2], [2590.88, -2216.55], [2591.73, -2217.75], [2594.31, -2216.23], [2597.9, -2221.91], [2585.65, -2229.55], [2581.79, -2223.7], [2579.6, -2222.5], [2580.35, -2221.18], [2572.33, -2216.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2733.58, -1732.29], [2733.68, -1729.0], [2732.46, -1728.97], [2732.75, -1719.49], [2738.17, -1719.66], [2738.18, -1719.15], [2747.71, -1719.51], [2747.39, -1729.51], [2741.0, -1729.25], [2740.89, -1732.53], [2733.58, -1732.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2436.6, -1925.66], [2435.17, -1932.79], [2428.12, -1931.76], [2428.05, -1934.38], [2412.72, -1934.18], [2415.66, -1923.12], [2420.91, -1924.54], [2421.15, -1923.75], [2428.4, -1923.83], [2428.39, -1924.2], [2436.6, -1925.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2653.39, -2000.3], [2648.31, -2005.54], [2641.86, -1999.29], [2646.94, -1994.05], [2653.39, -2000.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2733.97, -1768.48], [2733.69, -1782.95], [2716.43, -1782.66], [2716.61, -1774.36], [2723.81, -1774.49], [2723.91, -1768.31], [2733.97, -1768.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2446.78, -1849.32], [2446.56, -1854.35], [2444.46, -1854.25], [2444.25, -1859.92], [2433.94, -1859.55], [2433.99, -1858.09], [2429.55, -1857.93], [2429.83, -1850.55], [2434.28, -1850.72], [2434.35, -1848.9], [2446.78, -1849.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2663.33, -1978.36], [2668.97, -1983.84], [2664.58, -1988.37], [2658.94, -1982.89], [2663.33, -1978.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2584.18, -2043.64], [2589.5, -2049.16], [2585.77, -2052.75], [2580.46, -2047.23], [2584.18, -2043.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2701.28, -1633.94], [2698.2, -1638.46], [2697.07, -1637.7], [2689.27, -1649.26], [2682.15, -1644.58], [2688.95, -1634.44], [2688.09, -1633.86], [2692.17, -1627.83], [2701.28, -1633.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2609.05, -1858.76], [2609.29, -1862.75], [2606.15, -1862.94], [2605.9, -1858.97], [2609.05, -1858.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2487.25, -1691.04], [2498.72, -1694.24], [2497.46, -1698.77], [2497.8, -1698.86], [2497.4, -1700.25], [2498.23, -1701.75], [2497.89, -1703.06], [2496.34, -1703.97], [2494.2, -1703.38], [2493.25, -1706.93], [2489.57, -1705.84], [2489.04, -1707.77], [2484.05, -1706.39], [2486.66, -1697.98], [2485.41, -1697.63], [2487.25, -1691.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2553.97, -2089.8], [2555.19, -2090.9], [2552.9, -2093.46], [2551.67, -2092.37], [2553.97, -2089.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2608.76, -1679.75], [2608.58, -1689.7], [2599.39, -1689.53], [2599.57, -1679.58], [2608.76, -1679.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2602.01, -1941.28], [2601.87, -1945.98], [2602.66, -1946.0], [2602.63, -1947.1], [2610.29, -1947.33], [2609.97, -1958.33], [2603.56, -1958.14], [2603.54, -1959.16], [2600.78, -1959.08], [2600.67, -1962.64], [2591.78, -1962.38], [2592.05, -1952.98], [2591.01, -1952.95], [2591.36, -1940.96], [2602.01, -1941.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2585.76, -1737.79], [2585.64, -1747.2], [2589.14, -1747.24], [2589.05, -1754.55], [2575.98, -1754.4], [2576.18, -1737.68], [2585.76, -1737.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2576.73, -2070.93], [2586.41, -2079.77], [2587.06, -2079.07], [2591.21, -2082.81], [2585.88, -2088.65], [2583.55, -2086.59], [2576.11, -2094.7], [2568.11, -2087.36], [2574.98, -2079.89], [2571.47, -2076.71], [2576.73, -2070.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2486.37, -1929.83], [2483.26, -1948.72], [2471.85, -1946.84], [2473.87, -1934.75], [2474.75, -1934.88], [2475.84, -1928.09], [2486.37, -1929.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2702.71, -2018.2], [2709.57, -2024.39], [2709.89, -2024.05], [2713.53, -2027.34], [2706.43, -2035.16], [2703.17, -2032.23], [2700.21, -2035.54], [2693.39, -2029.39], [2697.04, -2025.33], [2696.62, -2024.95], [2702.71, -2018.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2416.76, -1825.49], [2415.9, -1829.57], [2409.25, -1828.17], [2410.1, -1824.09], [2416.76, -1825.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2726.18, -2415.49], [2732.69, -2422.1], [2734.52, -2420.3], [2738.77, -2424.61], [2728.49, -2434.74], [2717.73, -2423.81], [2726.18, -2415.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2591.07, -1721.92], [2591.05, -1727.65], [2593.61, -1727.68], [2593.58, -1733.84], [2581.46, -1733.76], [2581.52, -1721.89], [2591.07, -1721.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2521.96, -1732.58], [2540.12, -1740.03], [2535.5, -1750.74], [2533.25, -1749.77], [2529.29, -1758.79], [2516.95, -1753.72], [2519.52, -1747.88], [2522.67, -1749.2], [2524.01, -1746.11], [2517.35, -1743.24], [2521.96, -1732.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2719.32, -2193.69], [2720.04, -2203.55], [2723.28, -2203.32], [2723.45, -2205.83], [2728.02, -2205.57], [2728.75, -2216.36], [2724.36, -2216.61], [2724.46, -2218.23], [2718.59, -2218.59], [2718.45, -2216.64], [2711.28, -2217.12], [2710.63, -2206.77], [2709.35, -2206.86], [2708.53, -2194.32], [2712.17, -2194.11], [2712.12, -2193.33], [2719.28, -2192.91], [2719.32, -2193.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2487.41, -1907.91], [2487.15, -1918.06], [2489.0, -1918.1], [2488.78, -1923.48], [2478.42, -1923.22], [2478.89, -1907.69], [2487.41, -1907.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2616.54, -2013.55], [2618.3, -2015.31], [2615.86, -2017.76], [2614.09, -2016.0], [2616.54, -2013.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2725.07, -1828.09], [2724.85, -1835.33], [2718.21, -1835.14], [2718.3, -1832.23], [2713.97, -1832.09], [2714.11, -1828.61], [2711.5, -1828.52], [2711.69, -1820.2], [2710.91, -1820.17], [2711.01, -1817.6], [2714.51, -1817.74], [2714.44, -1819.33], [2724.85, -1819.64], [2724.63, -1828.08], [2725.07, -1828.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2705.23, -1603.42], [2712.56, -1607.42], [2704.04, -1622.98], [2697.41, -1619.34], [2699.06, -1616.33], [2698.37, -1615.94], [2705.23, -1603.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2583.8, -1756.9], [2593.77, -1757.14], [2593.65, -1761.97], [2591.01, -1765.0], [2583.58, -1764.84], [2583.8, -1756.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2470.12, -1776.75], [2470.06, -1784.46], [2469.18, -1784.45], [2469.13, -1788.21], [2468.43, -1788.19], [2468.46, -1789.87], [2467.63, -1789.93], [2467.54, -1795.02], [2466.28, -1794.98], [2466.29, -1796.17], [2466.51, -1796.2], [2466.44, -1799.9], [2465.09, -1799.88], [2465.1, -1800.51], [2453.88, -1800.34], [2454.1, -1789.65], [2452.9, -1789.68], [2452.97, -1776.55], [2470.12, -1776.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2693.73, -2261.08], [2693.63, -2266.77], [2689.6, -2266.7], [2689.7, -2261.02], [2693.73, -2261.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2512.93, -1680.53], [2512.91, -1681.08], [2514.73, -1681.08], [2514.67, -1689.34], [2504.67, -1689.28], [2504.75, -1681.07], [2507.09, -1681.08], [2507.08, -1680.49], [2512.93, -1680.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2428.1, -2031.44], [2428.53, -2038.04], [2444.75, -2036.96], [2445.29, -2045.19], [2435.25, -2045.71], [2435.38, -2047.58], [2414.74, -2049.1], [2413.63, -2032.4], [2428.1, -2031.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2621.28, -1652.8], [2621.15, -1657.48], [2619.73, -1657.44], [2619.58, -1662.53], [2611.48, -1662.28], [2611.77, -1652.52], [2621.28, -1652.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2564.74, -2110.82], [2567.11, -2111.91], [2571.0, -2103.69], [2580.34, -2108.01], [2576.11, -2116.79], [2575.5, -2116.51], [2571.46, -2125.1], [2562.93, -2120.92], [2564.53, -2117.67], [2561.93, -2116.44], [2564.74, -2110.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2540.07, -1926.59], [2519.42, -1921.8], [2519.76, -1920.3], [2515.55, -1919.33], [2516.84, -1913.79], [2521.29, -1914.81], [2522.08, -1911.41], [2523.64, -1911.77], [2525.4, -1904.18], [2535.86, -1906.61], [2533.64, -1916.2], [2542.03, -1918.15], [2540.07, -1926.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2479.51, -1762.16], [2479.52, -1771.68], [2471.64, -1771.7], [2471.64, -1773.65], [2456.93, -1773.58], [2456.96, -1768.81], [2454.99, -1768.8], [2454.97, -1762.17], [2479.51, -1762.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2724.07, -1670.6], [2723.75, -1680.55], [2707.84, -1680.02], [2708.16, -1670.09], [2724.07, -1670.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2580.48, -2231.92], [2577.61, -2239.0], [2572.54, -2236.97], [2571.19, -2240.38], [2572.72, -2240.96], [2572.19, -2241.9], [2575.06, -2243.11], [2571.27, -2253.1], [2564.73, -2250.45], [2565.06, -2249.6], [2558.18, -2246.86], [2560.93, -2239.96], [2560.52, -2239.79], [2561.94, -2236.25], [2562.35, -2236.41], [2566.4, -2226.29], [2580.48, -2231.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2557.52, -1852.71], [2540.42, -1852.4], [2540.61, -1842.4], [2541.22, -1842.42], [2541.31, -1838.03], [2544.25, -1838.08], [2544.31, -1835.03], [2554.94, -1835.22], [2554.81, -1842.63], [2557.7, -1842.68], [2557.52, -1852.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2651.86, -1717.26], [2662.25, -1717.46], [2662.06, -1732.4], [2651.72, -1732.21], [2651.86, -1717.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2403.94, -1877.7], [2403.1, -1883.76], [2396.22, -1882.81], [2397.05, -1876.75], [2403.94, -1877.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2663.48, -2269.88], [2672.62, -2278.75], [2672.82, -2289.35], [2664.4, -2289.56], [2664.37, -2288.25], [2654.74, -2278.73], [2663.48, -2269.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2642.94, -1827.78], [2643.2, -1817.9], [2649.01, -1818.05], [2649.02, -1817.73], [2656.32, -1817.92], [2656.04, -1828.14], [2642.94, -1827.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2621.64, -3185.87], [2626.49, -3186.04], [2626.31, -3191.01], [2621.46, -3190.83], [2621.64, -3185.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2695.78, -3124.58], [2706.3, -3124.33], [2706.77, -3144.02], [2696.25, -3144.26], [2695.78, -3124.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2576.74, -3173.54], [2574.86, -3187.45], [2569.56, -3186.64], [2569.9, -3184.35], [2564.56, -3183.52], [2564.21, -3185.82], [2559.02, -3185.02], [2560.98, -3171.16], [2576.74, -3173.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2572.68, -3115.77], [2569.98, -3136.38], [2552.29, -3134.06], [2554.98, -3113.47], [2572.68, -3115.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2525.08, -3169.83], [2543.19, -3170.49], [2542.45, -3191.13], [2524.34, -3190.47], [2525.08, -3169.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2583.42, -3175.65], [2601.14, -3177.21], [2600.18, -3188.3], [2582.42, -3186.68], [2583.42, -3175.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2607.03, -3175.06], [2616.66, -3175.28], [2616.27, -3190.3], [2606.65, -3190.09], [2607.03, -3175.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3055.61, -1194.59], [-3037.45, -1216.11], [-3043.8, -1221.42], [-3055.17, -1207.94], [-3061.96, -1199.9], [-3055.61, -1194.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[323.74, -2965.91], [333.77, -2961.06], [338.18, -2970.09], [328.15, -2974.95], [323.74, -2965.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1133.95, -255.27], [-1132.59, -254.04], [-1127.96, -249.89], [-1115.42, -263.78], [-1115.59, -267.24], [-1123.47, -266.86], [-1133.95, -255.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1133.95, -255.27], [-1137.3, -258.27], [-1136.66, -258.97], [-1136.09, -259.59], [-1129.84, -266.51], [-1123.47, -266.86], [-1133.95, -255.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[321.25, -2430.65], [323.57, -2434.64], [326.56, -2432.92], [327.47, -2434.49], [337.79, -2428.56], [333.71, -2421.53], [322.85, -2427.77], [323.7, -2429.24], [321.25, -2430.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3099.8, -154.4], [-3098.01, -163.9], [-3114.17, -166.91], [-3115.95, -157.41], [-3099.8, -154.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2570.31, 2409.89], [2582.04, 2421.26], [2583.88, 2419.36], [2599.0, 2434.02], [2596.17, 2436.94], [2601.98, 2442.56], [2603.52, 2440.99], [2611.46, 2448.69], [2628.4, 2431.36], [2624.57, 2427.65], [2634.12, 2417.88], [2628.02, 2411.97], [2625.39, 2409.41], [2628.39, 2406.35], [2647.75, 2386.52], [2623.86, 2363.35], [2593.65, 2394.27], [2591.02, 2391.73], [2586.77, 2396.08], [2585.24, 2394.6], [2570.31, 2409.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2628.02, 2411.97], [2645.36, 2411.57], [2645.69, 2406.35], [2628.39, 2406.35], [2625.39, 2409.41], [2628.02, 2411.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2616.47, 2452.58], [2621.72, 2447.34], [2651.54, 2477.04], [2648.76, 2479.81], [2646.29, 2482.27], [2616.47, 2452.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2727.16, 2447.21], [2741.3, 2432.78], [2733.51, 2425.19], [2732.96, 2425.75], [2697.19, 2390.97], [2698.48, 2389.64], [2692.12, 2383.46], [2690.93, 2384.68], [2681.84, 2375.84], [2682.89, 2374.76], [2678.82, 2370.82], [2674.8, 2374.92], [2675.24, 2375.76], [2668.16, 2382.98], [2667.43, 2382.27], [2662.41, 2387.39], [2666.72, 2391.59], [2667.87, 2390.4], [2671.98, 2394.4], [2671.18, 2395.21], [2677.1, 2400.97], [2678.33, 2399.72], [2727.16, 2447.21]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[2740.32, 2461.49], [2755.4, 2445.34], [2764.61, 2453.89], [2763.49, 2455.08], [2781.2, 2471.52], [2782.34, 2470.29], [2789.45, 2476.89], [2788.22, 2478.2], [2796.96, 2486.31], [2797.83, 2485.39], [2802.3, 2489.54], [2798.46, 2493.65], [2797.15, 2492.44], [2794.58, 2495.19], [2789.09, 2501.06], [2790.51, 2502.39], [2786.75, 2506.42], [2781.96, 2501.98], [2782.91, 2500.97], [2779.03, 2497.36], [2778.04, 2498.42], [2771.18, 2492.07], [2772.16, 2491.02], [2740.32, 2461.49]], "holes": []}, "height": 4.0}, {"shape": {"outer": [[1856.74, 2410.79], [1868.1, 2408.47], [1866.89, 2402.56], [1865.25, 2394.61], [1863.75, 2387.29], [1863.24, 2384.81], [1870.56, 2383.31], [1881.83, 2381.01], [1880.13, 2372.88], [1868.77, 2375.2], [1862.6, 2376.46], [1862.2, 2374.52], [1861.04, 2368.88], [1848.65, 2371.4], [1849.84, 2377.22], [1852.49, 2390.08], [1853.9, 2396.95], [1855.54, 2404.98], [1856.74, 2410.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2206.16, 1845.97], [2236.8, 1814.21], [2228.07, 1806.51], [2229.25, 1804.29], [2226.43, 1801.91], [2212.82, 1816.04], [2202.72, 1826.51], [2196.11, 1833.37], [2206.16, 1845.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[361.19, -2984.83], [378.73, -2976.16], [412.24, -3043.36], [394.68, -3052.05], [361.19, -2984.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1415.95, -2305.7], [-1414.46, -2308.44], [-1419.48, -2311.19], [-1422.75, -2312.99], [-1423.1, -2320.66], [-1423.33, -2325.55], [-1426.09, -2325.49], [-1425.87, -2320.54], [-1425.45, -2311.1], [-1421.11, -2308.63], [-1415.95, -2305.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1083.87, 1153.33], [1118.55, 1114.23], [1161.48, 1152.04], [1138.8, 1177.61], [1130.86, 1170.62], [1133.25, 1167.92], [1129.12, 1164.28], [1131.55, 1161.54], [1129.25, 1159.52], [1132.39, 1155.98], [1128.78, 1152.81], [1130.62, 1150.73], [1119.22, 1140.68], [1117.0, 1143.18], [1118.1, 1144.15], [1113.52, 1149.31], [1112.52, 1148.42], [1110.42, 1150.79], [1122.87, 1161.75], [1120.84, 1164.05], [1123.46, 1166.35], [1112.57, 1178.62], [1083.87, 1153.33]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[1078.13, 162.83], [1080.67, 152.56], [1059.33, 147.32], [1056.79, 157.59], [1078.13, 162.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1651.24, -1445.25], [-1652.13, -1480.15], [-1654.89, -1480.07], [-1655.15, -1490.14], [-1632.14, -1490.72], [-1631.0, -1445.76], [-1651.24, -1445.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1587.59, -1425.21], [-1588.04, -1438.5], [-1578.67, -1438.81], [-1578.22, -1425.53], [-1587.59, -1425.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1588.09, -1440.77], [-1588.21, -1445.77], [-1588.32, -1450.6], [-1585.84, -1450.66], [-1585.9, -1453.41], [-1580.91, -1453.53], [-1580.85, -1450.73], [-1579.85, -1450.75], [-1579.64, -1440.95], [-1588.09, -1440.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1636.46, -1541.66], [-1636.57, -1546.77], [-1646.44, -1546.54], [-1646.28, -1539.03], [-1644.82, -1539.08], [-1644.87, -1541.48], [-1636.46, -1541.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1633.45, -1548.05], [-1633.5, -1550.66], [-1632.85, -1550.68], [-1632.91, -1553.17], [-1633.75, -1553.15], [-1633.78, -1554.44], [-1648.31, -1554.11], [-1648.28, -1552.67], [-1646.28, -1552.72], [-1646.18, -1547.76], [-1633.45, -1548.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2359.18, -1696.32], [-2354.38, -1698.05], [-2362.74, -1706.61], [-2366.28, -1705.7], [-2367.51, -1704.39], [-2359.18, -1696.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2363.66, -639.13], [-2361.27, -642.18], [-2357.74, -639.45], [-2360.12, -636.39], [-2363.66, -639.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2370.16, 247.21], [-2353.1, 246.69], [-2353.37, 237.83], [-2370.43, 238.34], [-2370.16, 247.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2298.56, 1945.08], [2305.82, 1941.26], [2308.75, 1946.77], [2301.49, 1950.6], [2298.56, 1945.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2308.41, 1960.67], [2311.7, 1966.68], [2319.09, 1962.66], [2315.8, 1956.64], [2308.41, 1960.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2312.77, 1967.74], [2315.88, 1973.41], [2323.29, 1969.36], [2320.16, 1963.69], [2312.77, 1967.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2244.42, 1719.25], [2249.15, 1702.13], [2237.69, 1698.99], [2232.95, 1716.09], [2244.42, 1719.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-999.69, -421.21], [-987.42, -410.11], [-993.77, -403.15], [-1006.03, -414.25], [-999.69, -421.21]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-999.6, -421.79], [-992.55, -415.4], [-980.47, -428.61], [-987.52, -435.0], [-999.6, -421.79]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-749.1, -1081.62], [-699.32, -1036.75], [-696.67, -1039.66], [-692.93, -1036.28], [-682.82, -1047.43], [-688.32, -1052.39], [-694.72, -1058.15], [-724.77, -1085.23], [-727.63, -1082.08], [-734.08, -1087.89], [-739.21, -1092.52], [-749.1, -1081.62]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[824.9, 968.23], [886.34, 901.99], [841.18, 860.76], [839.78, 862.31], [834.74, 857.91], [835.91, 856.56], [820.79, 842.27], [759.45, 909.95], [824.9, 968.23]], "holes": []}, "height": 38.5}, {"shape": {"outer": [[62.97, -2648.64], [74.29, -2656.03], [83.48, -2642.07], [75.87, -2637.09], [73.59, -2640.55], [72.26, -2639.68], [69.7, -2643.59], [68.09, -2642.53], [67.54, -2643.37], [66.77, -2642.87], [62.97, -2648.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-983.28, 93.49], [-1003.63, 115.91], [-1013.78, 106.76], [-993.43, 84.34], [-983.28, 93.49]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-1959.23, -482.46], [-1955.24, -474.23], [-1970.27, -467.02], [-1974.26, -475.24], [-1959.23, -482.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-589.58, -341.01], [-556.38, -376.41], [-599.48, -415.55], [-601.95, -415.43], [-602.77, -408.97], [-606.74, -404.6], [-620.02, -417.36], [-637.71, -397.3], [-642.55, -401.9], [-642.37, -399.83], [-641.31, -386.93], [-607.78, -355.83], [-603.73, -360.15], [-592.16, -349.86], [-592.11, -346.96], [-594.09, -344.81], [-589.58, -341.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-787.06, -518.17], [-799.83, -504.37], [-776.1, -482.55], [-748.41, -512.44], [-763.38, -526.2], [-778.29, -510.11], [-787.06, -518.17]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-483.94, -443.09], [-464.59, -425.24], [-455.21, -435.33], [-474.57, -453.18], [-483.94, -443.09]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-77.99, 89.99], [-89.13, 102.64], [-96.23, 96.44], [-98.97, 99.57], [-91.99, 105.66], [-95.44, 109.58], [-98.44, 106.97], [-104.33, 113.66], [-105.22, 112.88], [-112.94, 121.68], [-125.51, 110.71], [-110.75, 93.92], [-109.55, 94.97], [-106.11, 91.06], [-102.65, 94.07], [-101.03, 92.22], [-104.88, 88.86], [-99.28, 82.49], [-98.49, 83.18], [-92.97, 76.9], [-77.99, 89.99]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[1187.44, 1380.82], [1178.24, 1372.41], [1187.09, 1362.94], [1196.21, 1371.24], [1187.44, 1380.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-142.28, 247.54], [-157.77, 233.37], [-156.26, 231.73], [-157.59, 230.51], [-155.74, 228.5], [-154.41, 229.72], [-151.85, 226.94], [-136.35, 241.12], [-142.28, 247.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-162.72, 242.7], [-157.17, 236.79], [-143.78, 249.27], [-149.32, 255.18], [-162.72, 242.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-165.19, 242.79], [-166.43, 244.15], [-167.04, 243.6], [-170.57, 247.47], [-169.96, 248.03], [-171.89, 250.14], [-157.38, 263.28], [-151.07, 256.35], [-155.36, 252.47], [-154.96, 252.04], [-165.19, 242.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-170.26, 252.99], [-175.82, 258.92], [-165.01, 268.97], [-159.45, 263.03], [-170.26, 252.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-188.81, 272.11], [-182.58, 265.65], [-176.5, 271.48], [-177.37, 272.38], [-173.82, 275.79], [-179.17, 281.34], [-184.1, 276.62], [-184.79, 277.34], [-186.58, 275.61], [-185.89, 274.9], [-188.81, 272.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-180.41, 265.06], [-175.68, 260.03], [-164.39, 270.59], [-169.12, 275.62], [-180.41, 265.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-155.07, 320.41], [-160.46, 326.1], [-164.08, 322.69], [-165.05, 323.69], [-173.56, 315.68], [-167.21, 308.98], [-155.07, 320.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-190.55, 303.17], [-194.37, 299.73], [-192.16, 297.28], [-194.45, 295.22], [-192.5, 293.07], [-193.72, 291.96], [-190.07, 287.93], [-182.73, 294.51], [-190.55, 303.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-4.67, -268.14], [5.11, -258.59], [26.38, -237.44], [30.6, -242.03], [31.85, -241.29], [38.26, -252.26], [50.53, -268.37], [65.27, -281.72], [70.41, -286.49], [77.4, -291.59], [76.78, -293.11], [80.77, -297.34], [54.31, -321.35], [49.56, -325.85], [48.77, -325.02], [24.49, -299.22], [16.37, -290.25], [-4.67, -268.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2777.07, 2426.62], [2815.79, 2462.81], [2817.24, 2461.27], [2818.81, 2462.73], [2822.19, 2459.14], [2819.87, 2456.97], [2830.06, 2446.15], [2806.29, 2423.92], [2822.94, 2406.24], [2822.32, 2404.13], [2824.79, 2401.51], [2817.96, 2395.12], [2815.39, 2397.85], [2809.41, 2392.26], [2777.07, 2426.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2727.32, 2377.95], [2763.08, 2412.2], [2777.44, 2397.3], [2751.31, 2372.27], [2741.69, 2363.06], [2727.32, 2377.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[282.82, 292.87], [265.6, 277.45], [275.87, 266.05], [280.55, 270.14], [293.03, 256.22], [296.79, 259.56], [299.56, 256.59], [308.0, 264.13], [303.02, 269.72], [282.82, 292.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[289.31, 229.32], [295.05, 222.94], [298.63, 226.14], [299.12, 225.59], [305.51, 231.28], [305.02, 231.84], [307.86, 234.37], [302.12, 240.75], [289.31, 229.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[301.41, 177.26], [292.63, 186.69], [286.14, 180.7], [289.55, 177.03], [289.32, 176.82], [292.46, 173.44], [292.7, 173.65], [294.92, 171.27], [301.41, 177.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[267.2, 147.46], [267.95, 148.1], [268.75, 147.18], [270.46, 148.66], [269.52, 149.75], [271.95, 151.84], [262.99, 162.19], [258.08, 157.96], [267.2, 147.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[257.58, 139.5], [264.24, 145.68], [252.71, 158.01], [246.05, 151.83], [257.58, 139.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[244.65, 126.91], [255.85, 137.27], [243.41, 150.63], [232.21, 140.27], [244.65, 126.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[400.59, 158.96], [404.24, 155.02], [424.48, 173.64], [420.83, 177.58], [400.59, 158.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3056.74, -1520.22], [-3048.13, -1512.95], [-3041.2, -1521.09], [-3042.22, -1521.95], [-3041.14, -1523.22], [-3047.83, -1528.86], [-3048.97, -1527.52], [-3049.89, -1528.29], [-3056.74, -1520.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2868.33, -1361.59], [-2861.08, -1355.41], [-2851.29, -1366.81], [-2858.53, -1372.99], [-2868.33, -1361.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2857.87, -1352.73], [-2854.32, -1349.7], [-2855.72, -1348.06], [-2851.76, -1344.79], [-2848.13, -1344.9], [-2844.28, -1348.22], [-2845.69, -1349.47], [-2840.92, -1354.66], [-2843.24, -1356.6], [-2840.89, -1359.23], [-2847.09, -1364.51], [-2857.87, -1352.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2851.03, -1375.8], [-2845.61, -1371.38], [-2841.34, -1376.58], [-2846.75, -1381.01], [-2851.03, -1375.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2844.86, -1370.37], [-2843.71, -1369.36], [-2844.65, -1368.28], [-2841.14, -1365.22], [-2840.21, -1366.27], [-2839.13, -1365.33], [-2834.43, -1370.67], [-2840.16, -1375.69], [-2844.86, -1370.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-478.55, -467.8], [-477.07, -466.47], [-479.54, -463.73], [-481.39, -461.67], [-482.88, -463.01], [-480.83, -465.28], [-478.55, -467.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[303.02, 269.72], [317.82, 283.08], [297.37, 305.89], [282.82, 292.87], [303.02, 269.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1667.86, -1034.93], [-1667.77, -1030.33], [-1667.41, -1019.09], [-1640.92, -1019.35], [-1640.96, -1031.21], [-1640.98, -1034.63], [-1640.99, -1039.09], [-1644.42, -1038.87], [-1644.42, -1035.65], [-1649.67, -1035.48], [-1666.48, -1034.97], [-1667.86, -1034.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-869.33, 37.25], [-883.06, 25.18], [-887.49, 30.15], [-873.76, 42.24], [-869.33, 37.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1081.19, 76.35], [-1080.6, 88.23], [-1085.78, 88.49], [-1086.38, 76.61], [-1081.19, 76.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-979.27, -90.12], [-981.24, -90.94], [-983.52, -91.59], [-987.55, -91.41], [-986.24, -59.93], [-983.88, -60.03], [-966.75, -78.77], [-979.27, -90.12]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1004.82, -59.34], [-1014.42, -53.21], [-1010.47, -47.06], [-1005.98, -49.92], [-1001.45, -45.87], [-996.48, -51.4], [-1004.82, -59.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-780.73, 134.15], [-785.17, 139.14], [-780.63, 143.15], [-776.19, 138.15], [-780.73, 134.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-726.55, 84.3], [-735.88, 94.82], [-730.27, 99.78], [-720.92, 89.25], [-726.55, 84.3]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-121.8, 342.49], [-117.73, 337.96], [-122.63, 333.58], [-126.7, 338.11], [-121.8, 342.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-51.49, 239.37], [-49.8, 237.56], [-54.23, 233.49], [-60.34, 240.09], [-55.92, 244.16], [-51.49, 239.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-51.26, 248.43], [-46.85, 243.65], [-51.49, 239.37], [-55.92, 244.16], [-51.26, 248.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-87.57, 270.59], [-93.71, 277.62], [-83.77, 286.24], [-77.63, 279.21], [-87.57, 270.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-116.34, 311.03], [-111.06, 315.63], [-106.17, 310.08], [-111.43, 305.47], [-116.34, 311.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-157.21, 326.78], [-168.9, 339.34], [-162.86, 344.92], [-157.69, 339.37], [-157.27, 339.75], [-150.75, 332.76], [-157.21, 326.78]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-169.37, 220.11], [-163.21, 225.59], [-158.75, 220.61], [-164.92, 215.13], [-169.37, 220.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-422.52, 333.29], [-427.62, 338.78], [-423.13, 342.91], [-426.98, 347.05], [-424.21, 349.59], [-415.27, 339.97], [-422.52, 333.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-413.5, 352.68], [-406.74, 358.8], [-401.57, 353.13], [-408.34, 347.01], [-413.5, 352.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1186.25, -242.29], [-1193.66, -241.93], [-1199.85, -241.62], [-1206.2, -241.3], [-1211.52, -241.08], [-1211.12, -232.92], [-1185.81, -234.13], [-1186.25, -242.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1194.79, -262.67], [-1193.66, -241.93], [-1186.25, -242.29], [-1186.55, -247.83], [-1185.74, -248.82], [-1185.9, -250.98], [-1186.78, -251.86], [-1187.03, -256.28], [-1186.34, -257.16], [-1186.5, -259.44], [-1187.22, -260.12], [-1187.39, -263.14], [-1187.92, -263.1], [-1188.51, -263.07], [-1189.46, -264.03], [-1192.17, -263.95], [-1193.39, -262.76], [-1194.79, -262.67]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1207.72, -261.86], [-1206.69, -242.87], [-1206.2, -241.3], [-1199.85, -241.62], [-1193.66, -241.93], [-1194.79, -262.67], [-1200.85, -262.29], [-1207.72, -261.86]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1214.17, -261.45], [-1213.07, -242.5], [-1206.69, -242.87], [-1207.72, -261.86], [-1214.17, -261.45]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-1226.94, -260.64], [-1225.83, -241.77], [-1221.15, -242.05], [-1217.95, -242.23], [-1213.07, -242.5], [-1214.17, -261.45], [-1219.03, -261.15], [-1222.25, -260.95], [-1226.94, -260.64]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1239.96, -259.83], [-1238.84, -240.83], [-1235.36, -241.03], [-1225.81, -241.59], [-1225.83, -241.77], [-1226.94, -260.64], [-1239.96, -259.83]], "holes": []}, "height": 3.5}, {"shape": {"outer": [[-899.33, -133.5], [-899.3, -132.99], [-899.01, -128.37], [-897.88, -128.44], [-897.73, -125.99], [-898.98, -125.91], [-898.63, -120.17], [-898.32, -115.31], [-898.3, -115.0], [-886.9, -115.72], [-887.98, -132.9], [-883.63, -137.81], [-891.47, -144.72], [-898.11, -137.24], [-896.93, -136.2], [-899.33, -133.5]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-880.08, -130.16], [-876.34, -131.21], [-883.63, -137.81], [-887.98, -132.9], [-886.9, -115.72], [-879.35, -116.2], [-880.08, -130.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-879.26, -115.38], [-879.35, -116.2], [-880.08, -130.16], [-876.34, -131.21], [-875.24, -130.36], [-874.69, -130.19], [-873.3, -128.82], [-873.18, -128.27], [-863.08, -119.26], [-862.12, -118.81], [-861.81, -118.33], [-861.66, -117.8], [-861.81, -117.19], [-862.02, -116.78], [-862.47, -116.44], [-868.24, -116.14], [-868.89, -115.65], [-870.36, -115.55], [-871.7, -115.47], [-872.38, -115.82], [-876.57, -115.54], [-879.26, -115.38]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-821.45, -81.94], [-836.23, -95.45], [-844.91, -86.03], [-848.7, -81.92], [-859.5, -70.19], [-851.99, -63.32], [-855.21, -59.84], [-854.97, -57.65], [-848.92, -52.12], [-821.45, -81.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-846.29, -98.32], [-845.77, -85.99], [-844.91, -86.03], [-836.23, -95.45], [-839.37, -98.68], [-843.64, -98.46], [-846.29, -98.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-854.91, -97.87], [-854.51, -88.38], [-853.34, -88.43], [-853.05, -81.77], [-848.7, -81.92], [-848.9, -85.86], [-846.99, -85.93], [-845.77, -85.99], [-846.29, -98.32], [-846.77, -98.3], [-847.52, -98.26], [-849.74, -98.14], [-852.57, -97.99], [-853.75, -97.93], [-854.3, -97.91], [-854.91, -97.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-860.82, -97.53], [-859.82, -74.06], [-854.05, -76.85], [-854.51, -88.38], [-854.91, -97.87], [-857.34, -97.74], [-860.82, -97.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-868.8, -97.1], [-868.02, -78.74], [-872.08, -72.11], [-859.75, -72.64], [-859.82, -74.06], [-860.82, -97.53], [-866.72, -97.21], [-868.8, -97.1]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-879.73, -96.51], [-879.02, -78.73], [-872.08, -72.11], [-868.02, -78.74], [-868.8, -97.1], [-877.1, -96.66], [-879.73, -96.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-885.64, -96.13], [-884.96, -79.62], [-884.86, -76.4], [-880.39, -76.58], [-880.47, -78.67], [-879.02, -78.73], [-879.73, -96.51], [-880.87, -96.45], [-885.64, -96.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-896.24, -95.47], [-895.56, -80.2], [-895.51, -79.18], [-884.96, -79.62], [-885.64, -96.13], [-890.6, -95.93], [-890.68, -97.65], [-890.71, -98.42], [-895.1, -98.24], [-895.42, -97.45], [-896.24, -95.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-907.64, -94.96], [-907.07, -82.17], [-905.95, -81.24], [-901.97, -81.5], [-901.91, -80.62], [-898.6, -80.83], [-897.71, -80.11], [-895.56, -80.2], [-896.24, -95.47], [-899.94, -95.3], [-904.31, -95.11], [-907.64, -94.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[293.87, 169.78], [288.16, 164.63], [278.48, 175.29], [284.18, 180.43], [293.87, 169.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[114.75, 549.73], [109.05, 544.86], [102.5, 552.44], [108.19, 557.32], [114.75, 549.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[113.13, 448.92], [107.53, 455.5], [109.57, 457.22], [108.66, 458.28], [110.69, 459.99], [113.4, 456.82], [115.22, 458.35], [119.02, 453.88], [113.13, 448.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[211.09, 549.99], [221.12, 539.08], [215.28, 533.76], [211.25, 538.14], [211.94, 538.78], [205.95, 545.29], [211.09, 549.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[210.29, 551.62], [214.78, 555.71], [219.13, 550.99], [214.63, 546.89], [210.29, 551.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[224.33, 562.27], [229.93, 556.18], [226.17, 552.75], [225.19, 553.82], [222.07, 550.96], [217.45, 555.99], [224.33, 562.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[236.76, 548.72], [242.48, 542.5], [233.11, 533.95], [230.99, 536.27], [225.27, 531.05], [222.33, 534.24], [228.05, 539.45], [227.6, 539.95], [231.38, 543.39], [231.18, 543.62], [236.76, 548.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[199.82, 480.26], [197.15, 477.81], [193.45, 481.82], [196.12, 484.27], [199.82, 480.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[219.21, 492.6], [213.96, 487.79], [209.03, 493.15], [214.29, 497.95], [219.21, 492.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[231.25, 468.83], [223.42, 477.82], [229.68, 483.22], [237.5, 474.23], [237.09, 473.88], [238.5, 472.26], [232.91, 467.44], [231.51, 469.06], [231.25, 468.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[179.69, 422.3], [170.48, 432.59], [176.96, 438.36], [186.18, 428.09], [179.69, 422.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[143.76, 428.96], [139.67, 433.78], [142.74, 436.38], [146.84, 431.55], [143.76, 428.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[142.47, 428.48], [137.06, 423.6], [133.13, 427.92], [138.54, 432.81], [142.47, 428.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[162.46, 406.14], [157.16, 401.22], [150.82, 408.02], [153.09, 410.12], [149.48, 413.99], [152.51, 416.79], [162.46, 406.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[122.33, 331.07], [124.0, 332.59], [122.86, 333.83], [125.77, 336.47], [126.91, 335.23], [128.64, 336.8], [135.8, 328.96], [131.08, 324.67], [128.32, 327.7], [126.72, 326.26], [122.33, 331.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[99.55, 313.85], [100.27, 314.5], [99.11, 315.8], [103.51, 319.7], [104.67, 318.4], [105.41, 319.05], [111.49, 312.25], [110.68, 311.51], [112.76, 309.19], [108.56, 305.46], [106.48, 307.79], [105.64, 307.04], [99.55, 313.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[141.52, 236.99], [142.28, 237.69], [139.24, 241.0], [144.76, 246.04], [155.32, 234.57], [149.03, 228.82], [141.52, 236.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[129.67, 249.86], [137.13, 256.63], [140.62, 252.81], [133.16, 246.03], [129.67, 249.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-14.01, 446.4], [-16.37, 449.08], [-12.61, 452.37], [-10.24, 449.69], [-14.01, 446.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[3.83, 443.33], [2.26, 445.07], [4.08, 446.7], [5.65, 444.97], [3.83, 443.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[17.79, 377.59], [24.74, 384.12], [25.23, 383.6], [33.86, 391.7], [37.93, 387.38], [29.31, 379.29], [29.66, 378.9], [22.72, 372.39], [17.79, 377.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-64.93, 485.64], [-67.73, 483.18], [-72.31, 488.33], [-69.5, 490.8], [-64.93, 485.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-14.75, 518.37], [-24.55, 529.24], [-19.18, 534.05], [-9.38, 523.19], [-14.75, 518.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-70.35, 520.6], [-72.71, 523.2], [-68.06, 527.38], [-65.71, 524.79], [-70.35, 520.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[3.86, 448.44], [-2.51, 442.86], [-8.26, 449.37], [-1.88, 454.95], [3.86, 448.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-43.46, 322.86], [-35.98, 329.58], [-35.52, 329.08], [-30.12, 333.94], [-26.75, 330.22], [-32.21, 325.31], [-31.7, 324.74], [-37.8, 319.26], [-38.17, 319.69], [-39.5, 318.49], [-43.46, 322.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[3.47, 324.79], [-1.16, 320.49], [-3.95, 323.47], [0.67, 327.78], [3.47, 324.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-53.53, 387.73], [-58.71, 383.13], [-62.29, 387.13], [-57.1, 391.74], [-53.53, 387.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-705.23, -474.03], [-708.22, -470.65], [-703.54, -466.54], [-700.55, -469.94], [-705.23, -474.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-822.39, -436.13], [-825.89, -432.38], [-821.62, -428.42], [-818.13, -432.17], [-822.39, -436.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1022.62, -563.5], [-1034.22, -563.17], [-1034.21, -562.71], [-1036.27, -562.65], [-1036.05, -554.85], [-1033.99, -554.91], [-1033.96, -554.06], [-1023.67, -554.35], [-1023.83, -559.74], [-1022.51, -559.78], [-1022.62, -563.5]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-839.1, -483.24], [-839.55, -483.65], [-840.4, -482.7], [-844.26, -486.18], [-843.4, -487.12], [-845.52, -489.05], [-835.92, -499.59], [-829.5, -493.79], [-839.1, -483.24]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-635.66, -881.39], [-634.07, -879.93], [-635.26, -878.64], [-632.25, -875.88], [-631.05, -877.17], [-630.64, -876.79], [-626.37, -881.41], [-631.4, -886.01], [-635.66, -881.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-773.33, -732.54], [-778.59, -726.66], [-773.18, -721.86], [-767.93, -727.75], [-773.33, -732.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-386.2, -807.33], [-395.9, -816.05], [-387.92, -824.88], [-387.7, -824.68], [-385.07, -827.59], [-377.93, -821.19], [-379.8, -819.13], [-377.45, -817.02], [-386.2, -807.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-819.46, -250.23], [-822.29, -247.12], [-818.57, -243.75], [-815.73, -246.87], [-817.73, -248.66], [-819.46, -250.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-767.57, -303.32], [-772.36, -298.1], [-773.56, -299.18], [-775.69, -296.88], [-774.48, -295.78], [-779.01, -290.85], [-780.94, -292.62], [-782.86, -290.52], [-777.05, -285.23], [-775.16, -287.28], [-762.62, -275.86], [-761.89, -276.64], [-746.11, -262.26], [-729.03, -246.7], [-724.03, -252.16], [-726.84, -254.72], [-725.65, -256.03], [-726.23, -256.55], [-723.2, -259.85], [-725.19, -261.66], [-723.67, -263.33], [-738.24, -276.6], [-744.07, -281.91], [-763.27, -299.41], [-767.57, -303.32]], "holes": []}, "height": 56.0}, {"shape": {"outer": [[-765.62, -194.92], [-760.15, -189.99], [-732.39, -164.92], [-730.44, -167.06], [-724.21, -161.43], [-717.87, -155.7], [-720.08, -153.28], [-709.77, -143.96], [-705.9, -148.23], [-704.59, -147.03], [-702.3, -149.55], [-701.76, -149.06], [-696.14, -155.26], [-696.72, -155.77], [-695.21, -157.43], [-698.33, -160.24], [-694.19, -164.8], [-695.47, -165.97], [-675.2, -188.26], [-674.67, -187.78], [-658.33, -205.74], [-665.19, -211.93], [-672.06, -218.14], [-685.79, -230.54], [-688.24, -227.85], [-690.87, -230.22], [-713.16, -205.71], [-710.76, -203.54], [-715.24, -198.63], [-741.05, -221.93], [-765.62, -194.92]], "holes": []}, "height": 45.5}, {"shape": {"outer": [[-1213.99, 25.18], [-1217.07, 25.3], [-1219.13, 25.41], [-1223.04, 25.63], [-1222.88, 28.87], [-1227.12, 27.41], [-1227.44, 28.34], [-1232.73, 28.89], [-1233.28, 27.62], [-1237.87, 29.61], [-1238.45, 29.86], [-1237.94, 31.03], [-1241.12, 35.1], [-1242.19, 34.58], [-1244.06, 39.43], [-1242.66, 40.06], [-1242.45, 45.12], [-1243.87, 45.96], [-1241.31, 50.27], [-1240.27, 49.65], [-1236.37, 53.12], [-1236.84, 54.5], [-1232.09, 56.13], [-1231.63, 54.83], [-1226.42, 54.59], [-1225.72, 56.02], [-1220.79, 53.66], [-1221.46, 52.27], [-1218.32, 48.61], [-1212.0, 51.04], [-1211.97, 51.62], [-1200.45, 51.03], [-1201.81, 24.55], [-1202.01, 24.57], [-1213.99, 25.18]], "holes": []}, "height": 49.0}, {"shape": {"outer": [[-1208.41, -139.47], [-1214.46, -139.17], [-1213.85, -126.9], [-1207.81, -127.19], [-1208.41, -139.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1193.5, -100.21], [-1188.19, -100.48], [-1182.5, -100.76], [-1179.22, -100.92], [-1179.35, -103.75], [-1180.35, -125.37], [-1194.64, -124.7], [-1194.61, -123.88], [-1193.5, -100.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1206.3, -99.57], [-1202.61, -99.77], [-1200.3, -99.88], [-1200.36, -101.15], [-1199.77, -101.18], [-1199.26, -101.21], [-1199.2, -99.93], [-1197.98, -99.99], [-1193.5, -100.21], [-1194.61, -123.88], [-1196.61, -123.79], [-1196.63, -124.38], [-1200.94, -124.18], [-1207.46, -123.87], [-1207.44, -123.49], [-1207.21, -118.63], [-1206.36, -118.66], [-1205.66, -104.07], [-1206.51, -104.03], [-1206.3, -99.57]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1218.66, -98.96], [-1214.37, -99.17], [-1213.48, -99.22], [-1212.86, -99.25], [-1211.38, -99.33], [-1209.21, -99.43], [-1206.3, -99.57], [-1206.51, -104.03], [-1207.21, -118.63], [-1207.44, -123.49], [-1208.14, -123.45], [-1208.28, -126.37], [-1213.81, -126.12], [-1219.71, -125.83], [-1219.66, -124.74], [-1219.58, -123.39], [-1219.55, -122.91], [-1219.05, -112.26], [-1219.29, -112.25], [-1218.91, -104.2], [-1218.66, -98.96]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[1205.95, 680.66], [1211.09, 675.17], [1200.33, 665.17], [1195.19, 670.66], [1205.95, 680.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3085.1, 50.37], [-3108.04, 51.06], [-3141.19, 52.06], [-3141.19, 53.02], [-3140.95, 57.94], [-3140.96, 59.55], [-3135.85, 59.39], [-3134.21, 113.88], [-3133.85, 125.69], [-3074.22, 123.89], [-3075.43, 83.91], [-3071.24, 83.78], [-3071.54, 76.89], [-3075.2, 77.18], [-3075.57, 64.92], [-3084.61, 65.23], [-3085.1, 50.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-774.48, -211.31], [-777.45, -207.99], [-774.09, -204.99], [-771.12, -208.31], [-774.48, -211.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1701.33, -497.46], [-1700.93, -489.6], [-1698.46, -489.73], [-1698.4, -488.51], [-1693.24, -488.77], [-1693.31, -489.99], [-1692.16, -490.05], [-1692.59, -498.58], [-1697.35, -498.34], [-1697.32, -497.66], [-1701.33, -497.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1712.12, -496.44], [-1711.85, -491.0], [-1712.51, -490.97], [-1712.31, -487.1], [-1713.18, -487.05], [-1712.89, -481.29], [-1703.45, -481.77], [-1704.21, -496.84], [-1712.12, -496.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1687.21, -489.04], [-1678.99, -489.46], [-1679.52, -499.8], [-1684.67, -499.53], [-1684.61, -498.42], [-1688.8, -498.21], [-1688.39, -490.05], [-1687.27, -490.11], [-1687.21, -489.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1676.02, -478.29], [-1665.19, -478.84], [-1665.21, -479.18], [-1660.63, -479.41], [-1661.07, -488.16], [-1676.48, -487.38], [-1676.02, -478.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1696.62, -474.35], [-1710.59, -473.52], [-1710.07, -464.77], [-1699.55, -465.39], [-1699.65, -466.96], [-1695.96, -467.17], [-1695.74, -463.47], [-1689.9, -463.81], [-1690.19, -468.59], [-1694.98, -468.31], [-1695.23, -472.74], [-1696.53, -472.66], [-1696.62, -474.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1681.2, -454.8], [-1681.79, -467.53], [-1689.43, -467.18], [-1688.84, -454.46], [-1681.2, -454.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1673.58, -451.86], [-1657.64, -452.81], [-1658.3, -463.91], [-1665.96, -463.45], [-1665.85, -461.7], [-1670.5, -461.42], [-1670.47, -460.95], [-1674.1, -460.73], [-1673.58, -451.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2772.58, -614.02], [-2757.77, -614.44], [-2757.42, -602.56], [-2772.24, -602.13], [-2772.58, -614.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3163.33, -189.6], [-3177.6, -191.75], [-3178.96, -182.86], [-3164.69, -180.7], [-3163.33, -189.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3174.69, -203.59], [-3174.91, -202.13], [-3176.16, -202.33], [-3177.07, -196.37], [-3175.82, -196.18], [-3176.05, -194.69], [-3163.07, -192.73], [-3161.71, -201.63], [-3174.69, -203.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3158.97, -210.68], [-3165.19, -211.62], [-3166.22, -204.84], [-3160.0, -203.9], [-3158.97, -210.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-952.27, -3110.65], [-945.34, -3110.96], [-945.65, -3118.15], [-952.59, -3117.84], [-952.27, -3110.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3062.9, 48.52], [-3018.6, 46.86], [-3018.48, 50.28], [-3025.76, 50.56], [-3025.58, 55.25], [-3034.71, 55.59], [-3034.5, 61.45], [-3041.84, 61.72], [-3041.07, 82.25], [-3046.54, 82.45], [-3045.79, 102.76], [-3060.85, 103.32], [-3061.04, 98.4], [-3062.9, 48.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[942.18, 1517.46], [945.27, 1520.27], [949.21, 1515.97], [946.1, 1513.16], [942.18, 1517.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[945.38, 1527.49], [949.27, 1523.4], [945.65, 1519.98], [941.76, 1524.07], [945.38, 1527.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[599.35, 1300.13], [595.18, 1304.61], [599.92, 1309.0], [604.09, 1304.51], [599.35, 1300.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[634.46, 1164.7], [638.77, 1168.3], [642.2, 1164.23], [637.9, 1160.62], [634.46, 1164.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[651.49, 1161.19], [647.32, 1165.45], [650.82, 1168.86], [655.0, 1164.61], [651.49, 1161.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[678.94, 1204.72], [682.72, 1200.53], [679.95, 1198.05], [676.18, 1202.24], [678.94, 1204.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[364.33, 1046.46], [373.15, 1054.3], [378.12, 1048.76], [373.96, 1045.06], [375.14, 1043.74], [370.47, 1039.59], [364.33, 1046.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[335.3, 1118.36], [332.04, 1122.23], [336.97, 1126.35], [340.23, 1122.47], [335.3, 1118.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[380.51, 1083.09], [384.59, 1078.56], [380.27, 1074.71], [376.2, 1079.23], [380.51, 1083.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[220.81, 981.02], [229.02, 972.11], [220.11, 963.97], [211.9, 972.88], [220.81, 981.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[227.97, 989.71], [237.28, 979.61], [230.7, 973.6], [221.4, 983.7], [227.97, 989.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[230.53, 993.5], [236.48, 998.94], [238.35, 996.91], [239.03, 997.54], [239.77, 996.74], [240.22, 997.15], [243.42, 993.68], [242.96, 993.26], [245.26, 990.77], [245.59, 991.08], [248.85, 987.53], [248.52, 987.23], [249.43, 986.23], [243.49, 980.8], [244.84, 979.33], [242.75, 977.42], [234.41, 986.48], [235.32, 987.32], [231.86, 991.09], [232.35, 991.53], [230.53, 993.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[257.65, 971.37], [251.2, 965.48], [246.23, 970.87], [248.34, 972.81], [246.71, 974.58], [249.69, 977.31], [251.32, 975.53], [252.68, 976.78], [257.65, 971.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[266.55, 963.23], [263.68, 960.6], [265.69, 958.41], [260.82, 953.95], [258.8, 956.15], [258.53, 955.9], [251.96, 963.04], [259.98, 970.36], [266.55, 963.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[276.99, 951.88], [269.07, 944.64], [263.38, 950.83], [271.31, 958.06], [276.99, 951.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[200.51, 868.79], [197.34, 872.26], [192.06, 867.48], [187.75, 872.2], [197.05, 880.62], [195.79, 881.99], [197.53, 883.56], [196.75, 884.42], [200.61, 887.92], [204.2, 883.97], [204.48, 884.22], [209.2, 879.04], [203.97, 874.31], [205.16, 873.01], [200.51, 868.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[179.33, 870.63], [176.24, 873.97], [179.76, 877.21], [182.85, 873.87], [179.33, 870.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[652.41, 913.08], [655.17, 915.59], [661.23, 908.97], [658.47, 906.46], [652.41, 913.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1507.71, 777.4], [1512.43, 781.57], [1516.06, 777.49], [1511.35, 773.32], [1507.71, 777.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1786.73, 758.41], [1790.88, 753.89], [1785.66, 749.13], [1781.51, 753.65], [1786.73, 758.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1785.38, 760.57], [1779.64, 755.35], [1774.88, 760.54], [1780.63, 765.76], [1785.38, 760.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1825.64, 796.5], [1821.24, 801.36], [1826.87, 806.44], [1831.27, 801.58], [1825.64, 796.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1795.11, 769.85], [1790.97, 774.37], [1796.98, 779.84], [1801.12, 775.32], [1795.11, 769.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1791.21, 764.21], [1787.31, 768.47], [1792.0, 772.74], [1795.91, 768.48], [1791.21, 764.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1800.8, 762.29], [1795.91, 757.84], [1791.53, 762.63], [1796.41, 767.08], [1800.8, 762.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1536.88, 400.24], [1541.96, 394.5], [1538.93, 391.84], [1533.86, 397.6], [1536.88, 400.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1189.99, 337.9], [1200.59, 326.02], [1195.34, 321.36], [1191.28, 325.91], [1189.04, 323.92], [1184.72, 328.76], [1186.56, 330.39], [1184.33, 332.89], [1189.99, 337.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1149.68, 294.79], [1159.94, 283.43], [1159.18, 282.75], [1160.15, 281.68], [1155.66, 277.65], [1154.69, 278.72], [1154.02, 278.12], [1146.97, 285.92], [1149.02, 287.75], [1145.79, 291.31], [1149.68, 294.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[977.49, 310.98], [972.24, 316.46], [978.02, 321.96], [983.28, 316.47], [977.49, 310.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1028.87, 219.1], [1023.91, 214.66], [1019.92, 219.08], [1024.89, 223.53], [1028.87, 219.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1031.47, 217.07], [1027.5, 221.47], [1032.29, 225.76], [1036.26, 221.36], [1031.47, 217.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1003.03, 291.58], [998.12, 287.1], [994.58, 290.94], [999.5, 295.43], [1003.03, 291.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[976.56, 285.55], [971.47, 291.06], [977.9, 296.95], [982.98, 291.44], [976.56, 285.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[927.57, 251.49], [931.57, 255.09], [936.13, 250.06], [932.13, 246.47], [927.57, 251.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[915.59, 256.33], [921.92, 261.94], [927.45, 255.74], [921.11, 250.13], [915.59, 256.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[949.78, 261.95], [944.92, 257.66], [941.04, 262.04], [945.9, 266.31], [949.78, 261.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[957.17, 278.08], [965.05, 284.79], [969.51, 279.59], [961.64, 272.87], [957.17, 278.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[887.91, 215.79], [892.28, 219.72], [895.62, 216.04], [891.25, 212.11], [887.91, 215.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[874.31, 224.67], [883.21, 214.62], [875.95, 208.24], [867.05, 218.29], [874.31, 224.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1191.71, 219.87], [1194.55, 222.37], [1199.05, 217.28], [1196.21, 214.78], [1191.71, 219.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1150.9, 192.73], [1156.78, 198.09], [1164.09, 190.12], [1158.21, 184.77], [1150.9, 192.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1182.67, 483.4], [1186.74, 487.06], [1190.02, 483.44], [1185.96, 479.78], [1182.67, 483.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1162.69, 464.45], [1173.15, 473.88], [1177.94, 468.6], [1174.4, 465.41], [1174.99, 464.77], [1170.8, 461.0], [1170.22, 461.64], [1167.48, 459.18], [1162.69, 464.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1179.6, 456.87], [1176.15, 460.58], [1181.09, 465.15], [1184.55, 461.45], [1179.6, 456.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[625.27, 602.95], [675.55, 547.14], [663.32, 535.91], [612.61, 591.47], [625.27, 602.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[767.2, 565.48], [815.03, 513.37], [780.25, 481.68], [770.26, 492.56], [783.59, 504.71], [772.2, 517.11], [775.89, 520.47], [772.84, 523.8], [760.14, 537.63], [763.21, 540.42], [759.12, 544.87], [757.24, 543.15], [750.62, 550.37], [767.2, 565.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-751.35, -713.33], [-743.86, -706.91], [-739.57, -711.89], [-747.05, -718.3], [-751.35, -713.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3091.66, -297.9], [-3093.52, -285.47], [-3085.02, -284.2], [-3083.16, -296.65], [-3091.66, -297.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1586.72, 863.42], [1593.01, 856.42], [1590.46, 854.16], [1592.19, 852.23], [1587.67, 848.2], [1585.94, 850.13], [1583.36, 847.83], [1581.84, 849.51], [1579.92, 847.8], [1575.16, 853.1], [1586.72, 863.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[780.79, 149.77], [786.91, 155.01], [792.61, 148.4], [789.93, 146.11], [786.49, 143.16], [780.79, 149.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[769.09, 161.84], [773.42, 165.75], [774.8, 164.24], [776.28, 165.59], [779.37, 162.19], [777.89, 160.85], [781.44, 156.96], [777.1, 153.04], [769.09, 161.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[778.22, 168.89], [786.56, 176.19], [788.18, 174.35], [790.45, 176.36], [801.7, 163.6], [791.08, 154.3], [778.22, 168.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3214.14, 216.54], [-3212.11, 220.79], [-3208.64, 222.85], [-3202.64, 223.57], [-3190.65, 225.43], [-3179.57, 229.74], [-3168.31, 236.95], [-3161.95, 243.11], [-3156.88, 249.3], [-3152.91, 250.96], [-3057.75, 247.36], [-3059.03, 206.09], [-3064.93, 206.18], [-3065.6, 157.79], [-3137.87, 161.15], [-3142.1, 162.79], [-3146.28, 166.58], [-3149.51, 171.29], [-3150.36, 177.61], [-3150.78, 184.73], [-3152.2, 187.58], [-3154.31, 189.15], [-3157.92, 190.55], [-3162.76, 190.06], [-3165.71, 187.37], [-3168.41, 177.62], [-3170.47, 167.22], [-3171.31, 163.28], [-3174.57, 162.17], [-3215.96, 163.83], [-3214.14, 216.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3025.7, -1271.6], [-3020.91, -1277.11], [-3021.55, -1277.67], [-3021.3, -1277.95], [-3031.73, -1286.96], [-3031.98, -1286.66], [-3033.55, -1288.01], [-3038.34, -1282.51], [-3025.7, -1271.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2864.61, -889.03], [-2860.14, -889.12], [-2860.25, -893.96], [-2864.72, -893.87], [-2864.61, -889.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2857.66, -1255.64], [-2851.53, -1250.51], [-2847.48, -1255.32], [-2853.61, -1260.45], [-2857.66, -1255.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2807.93, -1214.66], [-2803.02, -1220.56], [-2808.31, -1224.93], [-2813.22, -1219.03], [-2807.93, -1214.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2800.53, -1206.54], [-2799.11, -1205.35], [-2793.55, -1211.9], [-2800.2, -1217.52], [-2805.78, -1210.98], [-2800.53, -1206.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2820.96, -1198.65], [-2813.06, -1191.92], [-2800.53, -1206.54], [-2805.78, -1210.98], [-2807.16, -1212.19], [-2808.7, -1210.4], [-2809.55, -1211.12], [-2812.45, -1207.74], [-2812.87, -1208.09], [-2820.96, -1198.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2853.11, -1240.8], [-2860.45, -1231.77], [-2859.78, -1231.24], [-2861.67, -1228.9], [-2853.55, -1222.36], [-2851.66, -1224.69], [-2851.34, -1224.43], [-2842.87, -1234.86], [-2848.62, -1239.49], [-2849.75, -1238.09], [-2853.11, -1240.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2942.3, -1250.68], [-2950.52, -1241.13], [-2949.68, -1240.42], [-2951.87, -1237.87], [-2944.41, -1231.51], [-2934.01, -1243.59], [-2942.3, -1250.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2955.34, -1240.16], [-2960.75, -1233.42], [-2953.86, -1227.94], [-2948.45, -1234.68], [-2955.34, -1240.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3017.59, -1281.45], [-3011.73, -1288.22], [-3017.55, -1293.23], [-3023.43, -1286.46], [-3017.59, -1281.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3011.42, -1295.24], [-3007.4, -1299.86], [-3007.13, -1299.64], [-3001.08, -1306.61], [-3002.54, -1307.87], [-3001.54, -1309.02], [-3007.49, -1314.14], [-3014.51, -1306.04], [-3013.44, -1305.11], [-3016.61, -1301.46], [-3016.26, -1301.16], [-3017.13, -1300.17], [-3011.42, -1295.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3200.25, -1308.21], [-3203.98, -1303.86], [-3200.82, -1301.18], [-3197.1, -1305.54], [-3200.25, -1308.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3196.55, -757.13], [-3189.63, -757.38], [-3189.93, -765.54], [-3196.84, -765.29], [-3196.55, -757.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3204.78, -756.84], [-3196.93, -757.12], [-3197.19, -764.63], [-3205.06, -764.35], [-3204.78, -756.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3236.47, -669.32], [-3236.19, -671.04], [-3236.62, -672.73], [-3237.5, -673.92], [-3238.75, -674.75], [-3239.65, -674.88], [-3240.53, -674.68], [-3241.28, -674.16], [-3241.78, -673.39], [-3242.2, -671.23], [-3241.71, -669.09], [-3240.31, -668.17], [-3237.89, -667.35], [-3237.27, -667.12], [-3237.12, -666.48], [-3237.35, -666.12], [-3237.74, -665.97], [-3240.25, -666.03], [-3241.16, -665.3], [-3241.7, -664.28], [-3241.82, -663.34], [-3241.62, -662.42], [-3238.08, -660.1], [-3236.55, -660.15], [-3230.2, -661.25], [-3229.29, -662.18], [-3229.18, -663.08], [-3229.53, -663.92], [-3230.94, -665.98], [-3231.12, -666.78], [-3230.75, -667.28], [-3229.43, -667.7], [-3228.86, -667.63], [-3228.39, -667.33], [-3228.03, -666.58], [-3228.22, -664.28], [-3228.12, -663.47], [-3227.36, -662.33], [-3226.43, -661.3], [-3225.13, -660.84], [-3223.93, -660.99], [-3222.9, -661.62], [-3222.23, -662.62], [-3221.97, -664.4], [-3222.14, -668.4], [-3222.48, -669.1], [-3223.03, -669.64], [-3224.14, -670.06], [-3225.32, -669.87], [-3227.5, -669.2], [-3228.1, -669.16], [-3228.69, -669.3], [-3229.5, -669.96], [-3229.99, -671.62], [-3229.99, -672.23], [-3229.7, -672.76], [-3229.08, -673.1], [-3228.38, -673.03], [-3226.59, -672.25], [-3225.88, -672.25], [-3225.17, -672.42], [-3222.66, -674.36], [-3222.4, -674.78], [-3222.42, -675.21], [-3222.65, -677.16], [-3223.49, -678.33], [-3223.42, -679.73], [-3223.88, -680.34], [-3225.22, -681.18], [-3227.99, -682.09], [-3230.39, -682.56], [-3231.1, -682.66], [-3231.75, -682.36], [-3232.05, -682.01], [-3235.69, -681.6], [-3235.24, -677.57], [-3234.82, -677.61], [-3235.54, -677.05], [-3235.84, -676.19], [-3235.72, -675.46], [-3235.3, -674.86], [-3234.08, -673.98], [-3233.08, -672.79], [-3232.26, -670.53], [-3232.19, -670.04], [-3232.32, -669.56], [-3232.85, -669.04], [-3234.35, -668.07], [-3235.05, -667.87], [-3235.75, -668.05], [-3236.28, -668.59], [-3236.47, -669.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3218.81, -681.09], [-3218.45, -673.03], [-3212.01, -673.31], [-3212.36, -681.36], [-3218.81, -681.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2328.73, -1200.27], [-2322.65, -1200.67], [-2323.04, -1206.4], [-2329.1, -1206.0], [-2328.73, -1200.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2182.22, -1195.46], [-2176.48, -1195.63], [-2176.68, -1202.32], [-2182.41, -1202.16], [-2182.22, -1195.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2332.78, -964.93], [-2335.65, -967.42], [-2339.61, -962.91], [-2336.74, -960.41], [-2332.78, -964.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2384.87, -977.72], [-2381.11, -981.77], [-2384.76, -985.13], [-2388.51, -981.08], [-2384.87, -977.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2388.12, -1011.92], [-2392.6, -1015.85], [-2396.76, -1011.14], [-2392.28, -1007.21], [-2388.12, -1011.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2378.99, -1003.1], [-2383.43, -998.07], [-2379.4, -994.54], [-2374.96, -999.57], [-2378.99, -1003.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2432.2, -915.21], [-2427.21, -910.96], [-2423.15, -915.69], [-2428.14, -919.95], [-2432.2, -915.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2881.76, -1434.2], [-2887.82, -1426.94], [-2880.5, -1420.88], [-2874.43, -1428.15], [-2881.76, -1434.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2879.05, -1437.66], [-2869.44, -1429.68], [-2859.03, -1442.12], [-2861.16, -1443.89], [-2859.54, -1445.83], [-2865.02, -1450.37], [-2866.63, -1448.43], [-2868.64, -1450.1], [-2879.05, -1437.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2979.44, -1497.07], [-2983.66, -1492.13], [-2977.7, -1487.06], [-2973.47, -1491.98], [-2979.44, -1497.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2976.58, -1501.1], [-2968.91, -1494.64], [-2964.99, -1499.25], [-2966.66, -1500.66], [-2965.57, -1501.95], [-2971.56, -1507.0], [-2976.58, -1501.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3100.61, -1082.78], [-3095.94, -1078.79], [-3091.34, -1084.13], [-3096.0, -1088.14], [-3100.61, -1082.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3106.97, -1085.47], [-3102.4, -1081.56], [-3098.39, -1086.21], [-3102.96, -1090.12], [-3106.97, -1085.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3089.77, -1105.97], [-3094.12, -1100.9], [-3089.06, -1096.58], [-3084.7, -1101.63], [-3089.77, -1105.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3109.98, -1101.57], [-3105.43, -1097.96], [-3100.82, -1103.72], [-3105.36, -1107.34], [-3109.98, -1101.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3123.27, -1116.93], [-3128.08, -1120.9], [-3132.91, -1115.09], [-3128.1, -1111.12], [-3123.27, -1116.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3179.17, -849.98], [-3172.96, -850.37], [-3173.46, -858.09], [-3179.66, -857.69], [-3179.17, -849.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3046.82, -873.86], [-3046.55, -866.22], [-3039.18, -866.48], [-3039.45, -874.13], [-3046.82, -873.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2983.93, -874.85], [-2988.76, -874.7], [-2988.55, -868.35], [-2983.72, -868.51], [-2983.93, -874.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2983.19, -874.98], [-2982.99, -868.56], [-2976.13, -868.79], [-2976.34, -875.21], [-2983.19, -874.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1892.17, -1389.23], [-1892.24, -1395.35], [-1893.02, -1395.34], [-1893.03, -1396.29], [-1900.12, -1396.21], [-1900.13, -1397.37], [-1906.16, -1397.3], [-1906.06, -1389.07], [-1892.17, -1389.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1924.12, -1408.8], [-1916.14, -1408.78], [-1916.12, -1416.29], [-1917.45, -1416.29], [-1917.43, -1420.03], [-1922.84, -1420.04], [-1922.85, -1417.88], [-1925.25, -1417.89], [-1925.26, -1413.7], [-1924.11, -1413.7], [-1924.12, -1408.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1935.07, -1415.08], [-1927.4, -1415.06], [-1927.38, -1424.06], [-1935.05, -1424.06], [-1935.07, -1415.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2208.29, -1447.04], [-2201.58, -1447.29], [-2201.84, -1454.42], [-2208.55, -1454.17], [-2208.29, -1447.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-688.07, -2679.85], [-678.22, -2680.23], [-678.72, -2692.98], [-688.56, -2692.6], [-688.07, -2679.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-867.55, -2593.0], [-867.01, -2585.72], [-861.37, -2586.13], [-861.9, -2593.41], [-867.55, -2593.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-932.82, -2591.63], [-932.18, -2583.42], [-924.46, -2584.02], [-925.1, -2592.23], [-932.82, -2591.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-922.3, -2592.63], [-921.7, -2584.98], [-913.23, -2585.63], [-913.83, -2593.29], [-922.3, -2592.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1017.99, -2586.5], [-1017.78, -2580.36], [-1011.51, -2580.58], [-1011.73, -2586.72], [-1017.99, -2586.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1027.49, -2583.26], [-1027.23, -2575.7], [-1019.66, -2575.97], [-1019.93, -2583.53], [-1027.49, -2583.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1037.85, -2569.78], [-1037.67, -2564.7], [-1033.61, -2564.85], [-1033.79, -2569.93], [-1037.85, -2569.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1062.77, -2575.12], [-1056.6, -2575.34], [-1056.84, -2582.26], [-1063.01, -2582.05], [-1062.77, -2575.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1156.93, -2572.92], [-1157.21, -2578.87], [-1161.28, -2578.69], [-1160.99, -2572.74], [-1156.93, -2572.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1137.39, -2572.91], [-1132.13, -2573.16], [-1132.45, -2579.91], [-1137.71, -2579.67], [-1137.39, -2572.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1152.53, -2571.03], [-1140.36, -2571.6], [-1140.72, -2579.32], [-1147.94, -2578.98], [-1147.99, -2580.11], [-1152.95, -2579.87], [-1152.53, -2571.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1116.2, -2591.68], [-1111.92, -2591.7], [-1111.95, -2598.61], [-1116.23, -2598.59], [-1116.2, -2591.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1086.11, -2607.19], [-1081.07, -2607.4], [-1081.34, -2614.11], [-1086.39, -2613.9], [-1086.11, -2607.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1054.96, -2613.82], [-1054.73, -2608.71], [-1049.98, -2608.93], [-1050.21, -2614.03], [-1054.96, -2613.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1050.11, -2620.01], [-1049.78, -2612.7], [-1043.62, -2612.98], [-1043.95, -2620.28], [-1050.11, -2620.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1008.28, -2713.6], [-998.85, -2713.92], [-999.11, -2721.54], [-1008.55, -2721.2], [-1008.28, -2713.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-978.24, -2813.68], [-969.9, -2814.11], [-970.24, -2820.82], [-978.59, -2820.4], [-978.24, -2813.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-919.03, -2861.38], [-915.84, -2854.23], [-901.91, -2860.4], [-905.1, -2867.54], [-919.03, -2861.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-921.42, -2871.42], [-918.19, -2863.76], [-908.48, -2867.81], [-911.71, -2875.48], [-921.42, -2871.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-128.02, 315.79], [-132.34, 320.46], [-128.16, 324.3], [-123.85, 319.63], [-128.02, 315.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[246.23, -82.3], [237.45, -72.6], [240.94, -69.46], [249.73, -79.15], [246.23, -82.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[254.45, -90.99], [246.72, -82.46], [250.19, -79.33], [257.93, -87.87], [254.45, -90.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[263.47, -101.29], [254.84, -91.77], [258.54, -88.44], [267.17, -97.96], [263.47, -101.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[266.63, -120.23], [257.86, -110.22], [262.59, -106.05], [263.46, -105.41], [272.22, -115.3], [266.63, -120.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[261.03, -124.99], [253.02, -115.95], [251.23, -113.8], [256.73, -108.95], [257.86, -110.22], [266.63, -120.23], [261.03, -124.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[243.42, -48.33], [253.44, -39.82], [256.86, -43.83], [259.23, -46.6], [261.5, -49.26], [265.56, -54.01], [267.13, -55.84], [266.4, -56.45], [273.66, -64.93], [264.37, -72.82], [243.42, -48.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[245.38, -29.21], [251.08, -35.41], [235.47, -49.67], [229.77, -43.46], [245.38, -29.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[235.87, -21.82], [242.32, -28.37], [234.68, -35.83], [232.92, -34.05], [229.36, -37.53], [225.26, -33.36], [228.82, -29.88], [228.23, -29.28], [235.87, -21.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[209.37, -45.04], [196.75, -31.31], [203.62, -25.05], [207.58, -29.35], [208.34, -28.66], [211.93, -32.57], [215.98, -28.88], [221.04, -34.4], [209.37, -45.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[219.11, -22.6], [213.26, -16.23], [222.14, -8.15], [222.36, -8.39], [224.28, -6.63], [229.33, -12.14], [227.41, -13.9], [227.97, -14.5], [219.11, -22.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[198.18, -13.67], [213.51, 0.3], [213.77, 0.0], [215.35, 1.44], [220.06, -3.71], [218.49, -5.14], [220.31, -7.12], [204.99, -21.08], [198.18, -13.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[205.29, 11.84], [210.99, 5.62], [207.02, 1.99], [207.59, 1.37], [203.89, -2.01], [203.32, -1.38], [196.82, -7.31], [190.6, -0.52], [200.06, 8.12], [200.59, 7.55], [205.29, 11.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[184.93, -74.38], [189.2, -70.52], [188.65, -69.93], [196.85, -62.53], [203.05, -69.34], [200.12, -71.99], [201.5, -73.49], [195.68, -78.75], [194.3, -77.25], [190.6, -80.6], [187.93, -77.67], [186.61, -78.87], [183.99, -76.0], [185.31, -74.79], [184.93, -74.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[172.85, -62.17], [173.89, -61.23], [172.38, -59.56], [181.44, -51.36], [182.95, -53.03], [184.75, -51.4], [190.99, -58.25], [186.71, -62.12], [187.26, -62.71], [183.11, -66.46], [182.57, -65.87], [179.09, -69.01], [176.26, -65.9], [175.44, -66.64], [172.98, -63.95], [173.8, -63.21], [172.85, -62.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[174.75, -36.74], [180.1, -42.62], [173.98, -48.15], [174.92, -49.19], [165.27, -57.92], [158.97, -51.0], [174.75, -36.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[301.81, 241.16], [289.08, 229.78], [283.98, 235.45], [287.2, 238.33], [286.88, 238.69], [290.98, 242.34], [291.3, 241.99], [296.72, 246.83], [301.81, 241.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1884.67, 897.88], [1887.76, 900.76], [1892.13, 896.13], [1889.05, 893.23], [1884.67, 897.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1571.08, 1091.23], [1565.08, 1097.73], [1571.17, 1103.31], [1577.16, 1096.82], [1571.08, 1091.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1540.21, 1048.35], [1538.01, 1050.7], [1536.54, 1049.34], [1534.46, 1051.59], [1535.92, 1052.94], [1535.56, 1053.32], [1541.48, 1058.81], [1546.13, 1053.83], [1540.21, 1048.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1545.66, 1042.37], [1543.63, 1044.55], [1542.3, 1043.32], [1539.85, 1045.93], [1541.18, 1047.17], [1541.06, 1047.3], [1545.9, 1051.78], [1550.5, 1046.84], [1545.66, 1042.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1512.22, 1079.64], [1511.87, 1079.33], [1513.04, 1078.03], [1508.56, 1074.01], [1507.39, 1075.3], [1506.96, 1074.92], [1501.3, 1081.17], [1506.56, 1085.89], [1512.22, 1079.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1671.73, 680.38], [1671.06, 679.77], [1672.43, 678.26], [1667.15, 673.54], [1665.79, 675.05], [1664.72, 674.1], [1657.49, 682.12], [1658.15, 682.7], [1655.03, 686.17], [1659.75, 690.39], [1660.8, 691.34], [1661.38, 691.86], [1671.73, 680.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1410.62, 414.7], [1414.91, 410.04], [1410.15, 405.7], [1405.87, 410.35], [1410.62, 414.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1396.18, 429.62], [1400.78, 424.54], [1396.45, 420.64], [1391.85, 425.73], [1396.18, 429.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1391.58, 442.75], [1399.27, 434.26], [1391.12, 426.93], [1383.43, 435.42], [1383.84, 435.79], [1381.92, 437.9], [1388.81, 444.09], [1390.72, 441.98], [1391.58, 442.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1497.52, 632.43], [1495.14, 635.17], [1499.66, 639.07], [1502.04, 636.33], [1497.52, 632.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1482.93, 619.02], [1486.62, 615.14], [1482.6, 611.35], [1478.91, 615.24], [1482.93, 619.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1471.08, 601.99], [1467.8, 605.53], [1472.7, 610.05], [1475.99, 606.51], [1471.08, 601.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1457.49, 595.9], [1463.37, 601.22], [1468.11, 596.02], [1462.22, 590.69], [1457.49, 595.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1443.62, 537.71], [1437.95, 543.82], [1438.69, 544.5], [1433.02, 550.61], [1438.28, 555.46], [1449.62, 543.25], [1443.62, 537.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1388.37, 709.9], [1381.58, 717.41], [1386.9, 722.18], [1393.69, 714.68], [1388.37, 709.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1360.58, 665.42], [1366.87, 671.14], [1372.37, 665.14], [1366.08, 659.42], [1360.58, 665.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1352.95, 501.45], [1347.09, 507.7], [1356.93, 516.86], [1362.63, 510.78], [1360.8, 509.07], [1360.97, 508.9], [1352.95, 501.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1360.14, 482.61], [1356.31, 479.1], [1351.93, 483.85], [1355.77, 487.36], [1360.14, 482.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1254.92, 385.52], [1251.14, 389.74], [1253.99, 392.27], [1257.77, 388.07], [1254.92, 385.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1105.42, 256.98], [1101.77, 260.93], [1106.19, 264.98], [1109.85, 261.04], [1105.42, 256.98]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1026.6, 372.43], [1029.13, 374.67], [1032.06, 371.38], [1029.53, 369.15], [1026.6, 372.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1097.94, 405.12], [1103.75, 410.46], [1109.71, 404.03], [1103.9, 398.69], [1097.94, 405.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[886.08, 227.52], [891.64, 232.3], [895.93, 227.37], [890.37, 222.58], [886.08, 227.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[815.16, 155.44], [819.39, 159.41], [824.67, 153.84], [822.59, 151.89], [820.43, 149.86], [815.16, 155.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1044.36, 479.8], [1039.09, 485.65], [1048.36, 493.92], [1053.62, 488.07], [1044.36, 479.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[987.74, 389.35], [972.55, 375.46], [964.74, 383.94], [963.46, 382.77], [948.87, 398.61], [968.33, 416.4], [976.56, 407.46], [977.38, 408.21], [984.32, 400.68], [980.51, 397.21], [987.74, 389.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1132.99, 572.59], [1139.5, 565.7], [1135.24, 561.7], [1134.8, 562.16], [1131.86, 559.4], [1125.65, 565.97], [1129.18, 569.27], [1129.3, 569.14], [1132.99, 572.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1168.19, 576.2], [1174.53, 581.98], [1181.97, 573.91], [1181.54, 573.5], [1185.31, 569.4], [1179.41, 564.01], [1178.76, 564.7], [1172.11, 571.94], [1168.19, 576.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1179.87, 661.76], [1185.62, 655.41], [1185.44, 655.24], [1187.94, 652.48], [1183.77, 648.74], [1175.53, 657.87], [1175.94, 658.22], [1174.8, 659.49], [1176.88, 661.35], [1178.02, 660.09], [1179.87, 661.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1557.92, 871.65], [1560.4, 873.88], [1568.55, 864.9], [1566.07, 862.67], [1557.92, 871.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1660.54, 962.71], [1669.1, 953.22], [1663.44, 948.16], [1661.03, 950.84], [1660.56, 950.42], [1656.99, 954.39], [1657.45, 954.82], [1654.89, 957.65], [1660.54, 962.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1676.04, 930.45], [1681.75, 935.64], [1685.42, 931.63], [1679.71, 926.45], [1676.04, 930.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1665.15, 920.09], [1667.91, 922.6], [1670.95, 919.28], [1668.19, 916.77], [1665.15, 920.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1662.05, 915.47], [1664.79, 912.47], [1664.32, 912.04], [1667.1, 909.02], [1662.0, 904.38], [1656.48, 910.42], [1662.05, 915.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1676.02, 885.85], [1669.89, 880.28], [1659.56, 891.56], [1661.78, 893.57], [1659.38, 896.2], [1663.02, 899.51], [1664.86, 897.5], [1665.13, 897.75], [1676.02, 885.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1731.86, 875.62], [1735.82, 878.93], [1740.18, 873.74], [1736.21, 870.44], [1731.86, 875.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1764.37, 862.3], [1762.1, 860.22], [1759.63, 862.89], [1761.9, 864.97], [1764.37, 862.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1729.94, 842.44], [1736.1, 847.84], [1740.78, 842.52], [1734.63, 837.13], [1729.94, 842.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1734.78, 821.46], [1741.78, 827.8], [1750.98, 817.71], [1749.91, 816.74], [1753.0, 813.35], [1747.09, 807.98], [1734.78, 821.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1700.57, 816.17], [1706.56, 821.17], [1711.21, 815.65], [1705.23, 810.65], [1700.57, 816.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1688.78, 789.96], [1696.03, 796.31], [1696.16, 796.17], [1699.09, 798.73], [1703.92, 793.27], [1700.73, 790.47], [1701.15, 790.0], [1696.81, 786.21], [1696.4, 786.68], [1693.31, 783.97], [1689.88, 787.85], [1690.31, 788.23], [1688.78, 789.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1622.88, 1019.19], [1618.5, 1024.22], [1622.49, 1027.68], [1626.88, 1022.64], [1622.88, 1019.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1618.01, 1015.01], [1613.2, 1020.54], [1617.86, 1024.57], [1622.68, 1019.05], [1618.01, 1015.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1562.89, 965.57], [1557.4, 971.56], [1563.23, 976.88], [1568.73, 970.89], [1562.89, 965.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-853.3, 41.22], [-868.09, 28.39], [-869.39, 29.88], [-870.75, 28.69], [-873.2, 31.5], [-871.89, 32.64], [-872.7, 33.56], [-867.68, 37.91], [-868.19, 38.5], [-858.37, 47.01], [-853.3, 41.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-779.24, 24.37], [-771.44, 31.24], [-789.7, 51.82], [-791.59, 51.85], [-792.58, 50.97], [-792.71, 49.18], [-791.82, 48.18], [-793.74, 46.48], [-794.68, 47.53], [-796.21, 47.56], [-797.39, 46.52], [-797.63, 45.1], [-779.24, 24.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[159.93, -3152.29], [163.12, -3151.54], [165.97, -3149.93], [168.26, -3147.6], [169.82, -3144.73], [170.53, -3141.55], [170.32, -3138.3], [169.23, -3135.23], [167.32, -3132.57], [164.46, -3130.38], [161.07, -3129.15], [157.46, -3129.01], [153.99, -3129.96], [150.96, -3131.93], [148.68, -3134.71], [147.44, -3137.68], [147.06, -3140.85], [147.56, -3144.01], [148.9, -3146.93], [150.99, -3149.38], [153.66, -3151.16], [156.72, -3152.15], [159.93, -3152.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[143.04, -3079.27], [143.81, -3083.11], [145.62, -3086.59], [148.33, -3089.43], [151.71, -3091.43], [155.51, -3092.42], [159.44, -3092.33], [163.19, -3091.17], [166.29, -3089.19], [168.76, -3086.49], [170.45, -3083.24], [171.25, -3079.68], [171.1, -3076.02], [170.01, -3072.52], [168.05, -3069.43], [165.37, -3066.93], [162.13, -3065.21], [158.71, -3064.41], [155.2, -3064.45], [151.81, -3065.35], [148.74, -3067.07], [146.21, -3069.49], [144.34, -3072.45], [143.26, -3075.78], [143.04, -3079.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[108.7, -3085.84], [109.24, -3089.47], [110.7, -3092.83], [112.99, -3095.72], [115.92, -3097.93], [119.34, -3099.3], [122.99, -3099.77], [126.65, -3099.29], [130.04, -3097.88], [132.98, -3095.66], [135.27, -3092.71], [136.71, -3089.26], [137.2, -3085.55], [136.69, -3081.84], [135.24, -3078.4], [132.94, -3075.45], [129.95, -3073.2], [126.49, -3071.82], [122.78, -3071.38], [119.08, -3071.91], [115.65, -3073.38], [112.72, -3075.68], [110.49, -3078.68], [109.13, -3082.14], [108.7, -3085.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1440.46, -2185.51], [-1449.54, -2190.62], [-1433.05, -2219.74], [-1423.96, -2214.63], [-1440.46, -2185.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-325.67, 255.49], [-322.34, 251.74], [-322.6, 251.51], [-319.3, 247.79], [-318.7, 248.32], [-315.63, 244.86], [-315.12, 245.31], [-313.33, 243.29], [-308.82, 247.27], [-310.64, 249.31], [-310.01, 249.88], [-319.68, 260.77], [-325.67, 255.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3045.94, -1053.77], [-3045.34, -1058.87], [-3050.69, -1059.5], [-3051.29, -1054.39], [-3045.94, -1053.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1306.3, -2241.93], [-1313.62, -2241.53], [-1313.18, -2233.56], [-1305.86, -2233.96], [-1306.3, -2241.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1305.85, -2213.75], [-1305.53, -2206.36], [-1298.87, -2206.65], [-1299.18, -2214.03], [-1305.85, -2213.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1322.04, -2220.59], [-1315.07, -2220.77], [-1315.22, -2226.93], [-1322.19, -2226.77], [-1322.04, -2220.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1581.38, -1801.57], [-1588.77, -1801.35], [-1588.57, -1794.11], [-1581.16, -1794.34], [-1581.38, -1801.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1635.77, -1674.26], [-1636.03, -1684.05], [-1656.17, -1683.52], [-1655.92, -1673.72], [-1635.77, -1674.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1635.28, -1655.69], [-1635.77, -1674.26], [-1655.92, -1673.72], [-1658.47, -1673.66], [-1657.98, -1655.09], [-1635.28, -1655.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1657.98, -1655.09], [-1635.28, -1655.69], [-1634.79, -1637.28], [-1657.5, -1636.69], [-1657.98, -1655.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1569.27, -1575.14], [-1576.28, -1575.06], [-1576.2, -1567.35], [-1569.18, -1567.42], [-1569.27, -1575.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1576.37, -1577.77], [-1570.35, -1577.83], [-1570.42, -1584.38], [-1576.43, -1584.31], [-1576.37, -1577.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1572.22, -1699.32], [-1572.23, -1703.9], [-1578.38, -1703.89], [-1578.37, -1699.31], [-1572.22, -1699.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1713.23, -1350.43], [-1713.13, -1344.52], [-1709.21, -1344.58], [-1709.29, -1350.49], [-1713.23, -1350.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1671.17, -1306.28], [-1664.18, -1306.52], [-1664.47, -1314.63], [-1671.46, -1314.39], [-1671.17, -1306.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1633.78, -1554.44], [-1633.97, -1562.27], [-1653.46, -1561.83], [-1653.37, -1557.65], [-1649.92, -1557.74], [-1649.9, -1556.5], [-1648.37, -1556.54], [-1648.31, -1554.11], [-1633.78, -1554.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1634.41, -1596.96], [-1634.8, -1611.7], [-1657.68, -1611.1], [-1657.28, -1596.35], [-1634.41, -1596.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1634.17, -1588.03], [-1634.41, -1596.96], [-1657.28, -1596.35], [-1661.1, -1596.25], [-1660.86, -1587.32], [-1652.6, -1587.54], [-1634.17, -1588.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1652.27, -1574.75], [-1633.84, -1575.24], [-1634.17, -1588.03], [-1652.6, -1587.54], [-1652.27, -1574.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1630.86, -1432.09], [-1631.1, -1441.36], [-1639.57, -1441.14], [-1639.33, -1431.87], [-1630.86, -1432.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1646.66, -1425.39], [-1630.7, -1425.8], [-1630.86, -1432.09], [-1639.33, -1431.87], [-1648.11, -1431.64], [-1647.94, -1425.35], [-1646.66, -1425.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1630.46, -1416.87], [-1630.7, -1425.8], [-1646.66, -1425.39], [-1646.42, -1416.46], [-1630.46, -1416.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1630.29, -1410.26], [-1630.46, -1416.87], [-1646.42, -1416.46], [-1654.19, -1416.26], [-1654.02, -1409.64], [-1648.67, -1409.78], [-1630.29, -1410.26]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1630.14, -1404.51], [-1630.29, -1410.26], [-1648.67, -1409.78], [-1648.51, -1404.03], [-1630.14, -1404.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1630.14, -1404.51], [-1629.9, -1395.21], [-1649.26, -1394.71], [-1649.5, -1404.0], [-1648.51, -1404.03], [-1630.14, -1404.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1687.73, -826.93], [-1686.74, -826.94], [-1686.69, -825.29], [-1683.37, -825.37], [-1683.42, -827.06], [-1679.29, -827.17], [-1679.5, -835.09], [-1681.23, -835.05], [-1681.26, -836.39], [-1684.73, -836.3], [-1684.69, -834.85], [-1687.93, -834.76], [-1687.73, -826.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1633.68, -488.81], [-1634.3, -501.43], [-1640.93, -501.1], [-1640.71, -496.53], [-1641.33, -496.5], [-1641.1, -491.8], [-1640.48, -491.83], [-1640.32, -488.48], [-1633.68, -488.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1631.86, -501.3], [-1631.15, -486.71], [-1621.8, -487.16], [-1622.52, -501.75], [-1631.86, -501.3]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1617.72, -483.57], [-1627.27, -483.11], [-1626.79, -473.02], [-1617.23, -473.49], [-1617.72, -483.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1627.93, -456.63], [-1617.31, -457.14], [-1617.79, -466.94], [-1628.4, -466.43], [-1627.93, -456.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1645.13, -453.09], [-1634.8, -453.6], [-1635.34, -464.57], [-1645.65, -464.07], [-1645.63, -463.48], [-1647.51, -463.38], [-1647.05, -454.06], [-1645.17, -454.16], [-1645.13, -453.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1702.5, -737.31], [-1696.39, -737.57], [-1696.53, -740.84], [-1702.63, -740.57], [-1702.5, -737.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1790.5, -714.72], [-1789.76, -704.02], [-1788.7, -704.09], [-1788.57, -702.21], [-1779.35, -702.84], [-1779.48, -704.74], [-1778.52, -704.8], [-1779.27, -715.5], [-1790.5, -714.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1803.02, -712.09], [-1802.56, -700.91], [-1793.69, -701.27], [-1794.15, -712.44], [-1803.02, -712.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1814.38, -699.65], [-1806.05, -699.83], [-1806.5, -720.2], [-1814.84, -720.02], [-1814.38, -699.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1515.21, -1239.02], [-1530.81, -1238.63], [-1531.07, -1249.41], [-1515.48, -1249.79], [-1515.21, -1239.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[552.68, 54.07], [554.63, 51.91], [593.28, 86.71], [613.88, 105.25], [588.52, 133.21], [514.63, 66.66], [538.03, 40.87], [547.6, 49.49], [552.68, 54.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1759.36, 1595.07], [1760.91, 1596.48], [1785.34, 1618.76], [1810.32, 1591.55], [1826.27, 1574.18], [1804.9, 1554.7], [1802.83, 1556.95], [1798.22, 1552.73], [1759.36, 1595.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[893.46, 1025.79], [935.61, 979.13], [932.49, 976.0], [945.94, 961.91], [934.89, 952.29], [938.14, 948.95], [896.71, 911.86], [829.71, 978.99], [871.94, 1017.19], [882.81, 1026.26], [887.38, 1030.61], [892.27, 1025.78], [892.75, 1025.14], [893.46, 1025.79]], "holes": []}, "height": 38.5}, {"shape": {"outer": [[745.6, 706.82], [722.11, 685.94], [722.9, 685.1], [718.8, 681.67], [715.53, 685.67], [699.93, 672.29], [726.71, 642.23], [730.83, 645.92], [732.78, 643.78], [738.38, 648.34], [736.54, 651.22], [741.81, 656.53], [728.79, 670.71], [732.35, 673.61], [734.65, 671.37], [739.24, 675.33], [741.02, 673.91], [747.85, 679.9], [749.87, 677.75], [753.31, 674.08], [757.77, 669.34], [763.95, 674.98], [759.51, 679.8], [756.02, 683.59], [754.3, 685.45], [757.87, 688.79], [755.46, 691.05], [758.27, 693.33], [745.6, 706.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-830.64, -583.36], [-834.24, -579.41], [-835.99, -581.0], [-837.77, -579.03], [-844.2, -584.84], [-838.81, -590.76], [-830.64, -583.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-697.64, -776.63], [-712.05, -789.81], [-701.48, -801.61], [-686.73, -788.2], [-697.64, -776.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1151.02, -437.64], [-1138.77, -438.1], [-1138.28, -425.3], [-1150.54, -424.82], [-1151.02, -437.64]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-748.73, -400.62], [-749.25, -401.09], [-752.83, -397.06], [-759.33, -402.81], [-748.92, -414.49], [-742.83, -409.11], [-746.58, -404.9], [-745.66, -404.08], [-748.73, -400.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-278.74, -546.23], [-253.65, -547.56], [-255.26, -584.16], [-285.76, -550.94], [-282.3, -547.73], [-281.4, -548.77], [-278.74, -546.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1861.58, -201.65], [-1859.25, -199.85], [-1856.38, -201.09], [-1856.03, -203.89], [-1858.65, -205.59], [-1861.11, -204.46], [-1861.58, -201.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1423.05, -593.92], [-1446.17, -592.77], [-1446.56, -592.45], [-1446.99, -591.74], [-1445.19, -564.13], [-1448.47, -563.99], [-1448.82, -563.52], [-1447.4, -538.52], [-1395.2, -536.19], [-1322.29, -545.08], [-1324.8, -602.71], [-1388.34, -599.46], [-1402.87, -598.73], [-1417.71, -597.81], [-1417.56, -594.09], [-1423.05, -593.92]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[-1357.09, -781.32], [-1367.49, -804.24], [-1370.23, -802.99], [-1371.77, -806.37], [-1382.75, -801.39], [-1389.15, -798.48], [-1389.34, -798.9], [-1389.65, -799.57], [-1406.94, -791.73], [-1406.47, -790.72], [-1455.39, -768.55], [-1452.68, -762.62], [-1455.53, -761.33], [-1451.38, -752.25], [-1448.74, -753.45], [-1440.04, -734.42], [-1371.97, -765.29], [-1373.43, -768.5], [-1364.4, -772.56], [-1366.46, -777.1], [-1357.09, -781.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1937.16, 859.02], [1932.52, 854.69], [1927.93, 859.6], [1932.56, 863.94], [1937.16, 859.02]], "holes": []}, "height": 5.0}, {"shape": {"outer": [[943.24, 314.2], [952.5, 303.53], [948.13, 299.77], [949.15, 298.59], [947.26, 296.96], [946.24, 298.15], [945.9, 297.84], [936.65, 308.52], [943.24, 314.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[458.07, 643.0], [467.76, 632.2], [521.45, 680.34], [517.52, 684.33], [518.39, 684.96], [513.2, 690.44], [496.02, 674.97], [494.94, 676.0], [474.45, 657.7], [475.58, 656.55], [467.7, 649.53], [466.62, 650.36], [458.07, 643.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[521.92, 700.64], [527.77, 694.06], [528.68, 695.02], [529.47, 694.35], [591.44, 750.39], [592.2, 749.71], [596.38, 753.49], [589.24, 761.41], [543.68, 720.21], [521.92, 700.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3056.24, -2922.44], [-3038.18, -2917.31], [-3035.77, -2925.71], [-3052.65, -2930.51], [-3051.8, -2933.43], [-3056.33, -2934.72], [-3057.9, -2929.27], [-3054.56, -2928.32], [-3056.24, -2922.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2066.03, 1716.26], [2073.5, 1725.92], [2074.09, 1725.62], [2075.29, 1727.28], [2074.96, 1727.57], [2080.62, 1734.48], [2081.96, 1733.57], [2083.6, 1735.48], [2082.37, 1736.55], [2087.19, 1742.73], [2088.47, 1741.77], [2090.39, 1743.78], [2089.05, 1744.97], [2096.85, 1754.38], [2101.45, 1750.66], [2101.94, 1750.97], [2110.13, 1742.79], [2108.72, 1741.26], [2111.06, 1738.8], [2109.76, 1737.64], [2111.95, 1735.62], [2113.07, 1736.78], [2118.64, 1730.96], [2117.41, 1729.74], [2119.59, 1727.72], [2120.83, 1729.0], [2123.06, 1726.59], [2124.57, 1727.86], [2135.92, 1715.95], [2132.1, 1712.3], [2130.76, 1713.09], [2128.74, 1711.14], [2130.18, 1709.84], [2122.49, 1702.61], [2121.54, 1703.67], [2119.51, 1701.71], [2120.74, 1700.48], [2110.46, 1690.7], [2109.35, 1691.77], [2107.06, 1689.82], [2108.45, 1688.75], [2096.99, 1677.58], [2082.71, 1692.46], [2088.45, 1698.23], [2090.46, 1696.06], [2092.71, 1698.22], [2091.48, 1699.34], [2100.98, 1708.87], [2102.48, 1707.58], [2104.5, 1709.7], [2103.17, 1710.82], [2105.57, 1712.94], [2096.13, 1722.78], [2093.87, 1720.29], [2092.66, 1721.62], [2090.58, 1719.5], [2092.65, 1717.43], [2079.23, 1704.37], [2072.03, 1710.4], [2072.37, 1710.92], [2066.03, 1716.26]], "holes": []}, "height": 14.0}, {"shape": {"outer": [[2202.72, 1826.51], [2182.57, 1806.77], [2191.55, 1797.89], [2193.63, 1799.84], [2194.65, 1798.17], [2212.82, 1816.04], [2202.72, 1826.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1286.03, 1599.74], [1289.2, 1602.69], [1293.16, 1598.47], [1289.98, 1595.51], [1286.03, 1599.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1338.01, 1575.63], [1344.64, 1581.63], [1359.29, 1565.54], [1352.66, 1559.54], [1338.01, 1575.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1392.46, 1517.33], [1385.47, 1511.04], [1360.59, 1538.46], [1367.58, 1544.75], [1392.46, 1517.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1374.08, 1550.62], [1398.96, 1523.19], [1392.46, 1517.33], [1367.58, 1544.75], [1374.08, 1550.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1405.75, 1529.32], [1398.96, 1523.19], [1374.08, 1550.62], [1380.88, 1556.74], [1405.75, 1529.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1387.9, 1563.05], [1412.77, 1535.64], [1405.75, 1529.32], [1380.88, 1556.74], [1387.9, 1563.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1884.73, 1198.44], [1877.5, 1204.32], [1883.5, 1211.65], [1890.74, 1205.78], [1884.73, 1198.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1708.84, 655.89], [1708.93, 655.97], [1706.41, 658.71], [1712.95, 664.67], [1722.0, 654.79], [1721.58, 654.41], [1722.84, 653.03], [1717.92, 648.55], [1716.66, 649.93], [1716.22, 649.54], [1713.39, 652.62], [1712.54, 651.85], [1708.84, 655.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1197.26, 1281.56], [1201.53, 1285.47], [1205.66, 1281.0], [1201.4, 1277.08], [1197.26, 1281.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[986.69, 1360.66], [990.21, 1363.76], [993.81, 1359.69], [990.29, 1356.59], [986.69, 1360.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1050.76, 1379.14], [1053.1, 1376.61], [1053.47, 1376.96], [1055.44, 1374.82], [1056.12, 1375.45], [1056.84, 1374.66], [1057.17, 1374.96], [1060.81, 1371.03], [1059.82, 1370.11], [1062.57, 1367.13], [1057.44, 1362.42], [1050.98, 1369.39], [1051.83, 1370.18], [1046.86, 1375.56], [1050.76, 1379.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[871.97, 1135.55], [865.39, 1129.58], [857.77, 1137.9], [864.36, 1143.89], [871.97, 1135.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1026.67, 1239.08], [1030.34, 1235.2], [1018.27, 1223.91], [1014.61, 1227.8], [1026.67, 1239.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[993.24, 1201.18], [1000.45, 1207.48], [1005.18, 1202.1], [997.98, 1195.81], [996.71, 1197.24], [992.38, 1193.45], [989.17, 1197.1], [993.51, 1200.89], [993.24, 1201.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1005.19, 1201.92], [1009.04, 1197.55], [1001.94, 1191.33], [1001.32, 1192.04], [998.59, 1189.65], [996.22, 1192.35], [999.03, 1194.82], [998.17, 1195.79], [1005.19, 1201.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1016.08, 1178.35], [1008.99, 1172.32], [1002.16, 1180.28], [1009.26, 1186.33], [1016.08, 1178.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-802.55, -119.85], [-803.8, -144.52], [-806.6, -144.33], [-807.41, -160.21], [-789.57, -161.13], [-781.78, -154.39], [-777.06, -154.59], [-767.26, -165.22], [-767.07, -165.75], [-767.08, -166.4], [-767.34, -166.98], [-821.47, -215.87], [-825.47, -219.48], [-826.59, -220.49], [-827.2, -220.76], [-827.84, -220.82], [-828.38, -220.65], [-830.67, -222.72], [-843.47, -208.64], [-856.47, -194.33], [-868.75, -205.42], [-869.31, -205.91], [-871.57, -203.43], [-873.5, -205.16], [-882.42, -195.34], [-881.0, -194.05], [-886.23, -188.3], [-887.63, -189.55], [-897.33, -178.88], [-851.77, -137.79], [-850.14, -139.59], [-848.94, -138.52], [-850.51, -136.79], [-830.15, -118.49], [-824.33, -118.78], [-824.36, -119.5], [-816.68, -119.9], [-816.65, -119.15], [-802.55, -119.85]], "holes": []}, "height": 35.0}, {"shape": {"outer": [[2025.2, 2307.73], [2021.38, 2303.89], [2017.13, 2308.09], [2020.95, 2311.93], [2025.2, 2307.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[692.36, 530.77], [698.91, 536.75], [692.2, 544.04], [697.59, 548.97], [689.39, 557.88], [692.05, 560.31], [675.23, 578.62], [660.63, 565.29], [692.36, 530.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[396.75, 1084.3], [405.11, 1091.94], [398.47, 1099.14], [390.11, 1091.5], [396.75, 1084.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[211.02, 994.81], [201.69, 1004.87], [210.2, 1012.04], [219.31, 1001.98], [211.02, 994.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[293.08, 762.97], [305.88, 748.68], [311.78, 753.94], [298.98, 768.21], [293.08, 762.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[451.67, 746.69], [457.72, 739.59], [461.67, 742.94], [455.63, 750.05], [451.67, 746.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[492.41, 914.97], [496.71, 910.25], [489.91, 904.1], [485.62, 908.81], [492.41, 914.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[316.59, 918.42], [328.27, 905.94], [332.55, 909.91], [320.87, 922.39], [316.59, 918.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[322.73, 923.88], [329.64, 915.85], [330.37, 916.47], [334.58, 911.56], [339.4, 915.67], [328.29, 928.61], [322.73, 923.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[367.72, 832.52], [379.41, 819.74], [382.68, 822.8], [370.78, 835.12], [367.72, 832.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[268.89, 737.86], [284.54, 720.64], [269.55, 707.12], [265.1, 712.01], [258.48, 706.04], [263.15, 700.9], [256.09, 694.54], [246.46, 705.06], [245.24, 706.44], [242.89, 709.08], [244.74, 710.75], [241.77, 714.02], [246.25, 718.05], [247.53, 716.65], [249.8, 718.69], [248.18, 720.48], [253.46, 725.23], [254.63, 723.94], [256.35, 725.48], [255.14, 726.82], [260.51, 731.64], [261.79, 730.22], [263.91, 732.12], [262.5, 733.68], [265.69, 736.54], [268.89, 737.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[252.45, 690.74], [244.73, 683.68], [239.97, 688.85], [234.74, 684.07], [237.73, 680.82], [236.46, 679.67], [237.61, 678.43], [223.13, 665.18], [220.93, 667.57], [221.61, 668.2], [218.72, 671.34], [217.59, 670.3], [209.04, 679.58], [209.84, 680.32], [206.93, 683.48], [212.43, 688.51], [214.03, 686.78], [215.58, 688.2], [214.13, 689.77], [219.6, 694.79], [221.26, 692.97], [223.08, 694.63], [221.63, 696.21], [226.87, 701.03], [228.25, 699.53], [230.06, 701.18], [228.72, 702.63], [233.71, 707.22], [234.68, 706.17], [234.0, 705.54], [235.78, 703.6], [238.38, 705.98], [241.2, 702.91], [242.41, 701.53], [252.45, 690.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[241.2, 702.91], [245.24, 706.44], [246.46, 705.06], [242.41, 701.53], [241.2, 702.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[128.74, 667.86], [138.07, 657.98], [131.51, 651.83], [122.17, 661.7], [128.74, 667.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1912.44, -544.48], [-1881.67, -545.59], [-1881.45, -540.71], [-1877.86, -540.81], [-1877.54, -532.26], [-1880.71, -532.17], [-1880.14, -515.18], [-1933.22, -513.43], [-1933.32, -516.88], [-1957.17, -516.08], [-1957.65, -529.74], [-1965.46, -529.51], [-1967.32, -582.81], [-1977.41, -582.41], [-1978.26, -606.17], [-1944.8, -607.36], [-1944.09, -588.15], [-1933.1, -588.57], [-1932.81, -581.58], [-1913.77, -582.24], [-1912.44, -544.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1949.57, -611.66], [-1958.52, -611.41], [-1958.47, -609.63], [-1977.69, -609.08], [-1978.21, -627.29], [-1950.04, -628.21], [-1949.57, -611.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1024.56, -833.96], [-990.16, -803.01], [-1010.32, -780.78], [-1044.72, -811.71], [-1024.56, -833.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1320.74, 858.02], [1319.66, 856.36], [1321.33, 855.29], [1322.4, 856.91], [1320.74, 858.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2276.73, 1205.11], [2281.02, 1208.98], [2283.59, 1206.15], [2279.29, 1202.28], [2276.73, 1205.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2278.26, 1201.23], [2283.3, 1205.77], [2285.72, 1202.98], [2280.74, 1198.5], [2278.26, 1201.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2145.27, 1234.09], [2149.26, 1237.57], [2152.0, 1234.46], [2148.01, 1230.98], [2145.27, 1234.09]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2145.22, 1221.65], [2154.07, 1229.52], [2158.14, 1224.97], [2149.29, 1217.1], [2145.22, 1221.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2185.23, 1182.65], [2180.71, 1187.81], [2185.3, 1191.81], [2189.82, 1186.65], [2185.23, 1182.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2207.23, 1136.53], [2212.14, 1140.94], [2216.59, 1136.02], [2211.68, 1131.62], [2207.23, 1136.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[482.9, 464.82], [490.7, 462.54], [514.72, 483.86], [506.62, 486.56], [482.9, 464.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2051.32, 1878.01], [2054.77, 1881.55], [2059.4, 1877.07], [2055.94, 1873.52], [2051.32, 1878.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2046.35, 1866.45], [2051.45, 1871.32], [2055.59, 1867.01], [2050.49, 1862.14], [2046.35, 1866.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1854.88, 1858.96], [1861.56, 1865.14], [1866.26, 1860.1], [1859.59, 1853.92], [1854.88, 1858.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1574.59, 1132.45], [1559.96, 1118.96], [1543.62, 1136.57], [1558.25, 1150.05], [1574.59, 1132.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1582.32, 1139.56], [1574.59, 1132.45], [1558.25, 1150.05], [1565.97, 1157.16], [1568.21, 1154.77], [1582.32, 1139.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1589.25, 1145.96], [1582.32, 1139.56], [1568.21, 1154.77], [1575.14, 1161.16], [1589.25, 1145.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1589.25, 1145.96], [1575.14, 1161.16], [1572.98, 1163.48], [1580.33, 1170.25], [1596.6, 1152.73], [1589.25, 1145.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-823.53, -594.32], [-795.62, -624.33], [-839.73, -665.07], [-867.84, -634.86], [-854.99, -622.99], [-851.83, -626.38], [-836.67, -612.36], [-839.63, -609.19], [-823.53, -594.32]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[1816.88, 1181.93], [1821.4, 1186.99], [1812.48, 1194.9], [1807.95, 1189.84], [1816.88, 1181.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1077.84, -357.66], [-1078.54, -374.72], [-1069.52, -375.12], [-1070.91, -404.08], [-1051.9, -404.65], [-1051.89, -402.52], [-1047.95, -401.72], [-1044.56, -400.85], [-1041.72, -399.87], [-1038.68, -398.61], [-1035.32, -397.11], [-1032.56, -395.79], [-1030.73, -394.62], [-1028.75, -393.31], [-1027.4, -394.85], [-1012.51, -382.58], [-1033.73, -359.23], [-1077.84, -357.66]], "holes": []}, "height": 42.0}, {"shape": {"outer": [[-783.4, -1079.62], [-749.52, -1049.63], [-748.78, -1040.52], [-768.59, -1039.3], [-776.08, -1045.98], [-782.7, -1038.7], [-803.35, -1057.51], [-783.4, -1079.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1226.29, -835.69], [-1233.46, -851.5], [-1303.99, -819.72], [-1311.51, -836.3], [-1326.45, -829.57], [-1326.84, -830.44], [-1329.49, -829.25], [-1329.14, -828.51], [-1338.62, -824.22], [-1338.99, -825.03], [-1341.39, -823.95], [-1341.06, -823.21], [-1355.09, -816.85], [-1345.42, -795.67], [-1338.73, -781.03], [-1338.17, -779.78], [-1327.77, -784.49], [-1305.71, -794.49], [-1296.48, -798.68], [-1285.68, -803.58], [-1284.72, -806.35], [-1281.99, -805.41], [-1254.97, -817.91], [-1234.77, -827.26], [-1232.95, -832.7], [-1226.29, -835.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-619.27, 344.46], [-615.59, 340.15], [-609.16, 345.59], [-612.84, 349.91], [-619.27, 344.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2592.03, 2752.6], [2584.95, 2759.65], [2579.0, 2753.71], [2586.08, 2746.67], [2592.03, 2752.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2591.6, 2729.55], [2585.5, 2736.23], [2581.24, 2732.36], [2587.34, 2725.68], [2591.6, 2729.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2683.78, 1554.14], [2683.71, 1561.0], [2679.65, 1560.96], [2679.73, 1554.1], [2683.78, 1554.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2757.85, 2597.0], [2766.8, 2592.08], [2766.23, 2589.87], [2769.58, 2588.55], [2770.89, 2591.38], [2788.71, 2584.49], [2812.16, 2575.16], [2808.28, 2565.51], [2804.88, 2557.04], [2764.55, 2573.4], [2749.21, 2548.05], [2716.55, 2517.07], [2714.23, 2519.44], [2711.55, 2516.28], [2700.7, 2527.58], [2736.2, 2560.26], [2746.77, 2577.19], [2757.85, 2597.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[110.4, 238.29], [94.92, 224.71], [102.46, 216.18], [91.88, 206.9], [84.97, 214.74], [70.31, 201.88], [92.48, 176.79], [105.24, 187.98], [103.39, 190.07], [117.33, 202.3], [119.3, 200.08], [133.31, 212.36], [110.4, 238.29]], "holes": []}, "height": 35.0}, {"shape": {"outer": [[649.89, 190.55], [665.61, 204.5], [666.88, 203.06], [668.1, 203.99], [667.16, 205.32], [686.56, 222.86], [687.62, 221.86], [688.27, 222.42], [688.96, 223.01], [688.12, 224.22], [704.74, 239.35], [706.82, 237.02], [711.91, 231.37], [714.53, 228.45], [713.41, 227.07], [716.15, 223.97], [708.13, 216.4], [707.33, 215.67], [709.02, 213.77], [707.86, 212.77], [697.43, 203.71], [710.18, 189.81], [707.34, 187.05], [705.11, 184.87], [730.31, 156.6], [704.22, 131.92], [649.89, 190.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2971.68, -563.74], [-2974.57, -560.17], [-2975.87, -561.21], [-2976.91, -559.9], [-2977.33, -560.24], [-2978.83, -558.39], [-2978.41, -558.06], [-2983.96, -551.16], [-2980.63, -548.49], [-2977.38, -552.51], [-2976.17, -551.53], [-2975.33, -552.58], [-2973.46, -551.09], [-2972.33, -552.5], [-2971.46, -551.8], [-2968.65, -555.28], [-2969.52, -555.98], [-2966.56, -559.64], [-2971.68, -563.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[506.96, 446.65], [517.57, 456.47], [515.91, 458.3], [513.79, 460.63], [503.38, 451.09], [505.16, 448.88], [506.96, 446.65]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1596.65, -869.54], [-1482.56, -874.85], [-1481.88, -862.2], [-1483.48, -862.07], [-1483.18, -859.45], [-1495.51, -858.44], [-1495.53, -856.74], [-1509.97, -855.56], [-1518.81, -853.29], [-1542.61, -852.39], [-1542.36, -849.13], [-1554.24, -848.67], [-1594.41, -840.2], [-1596.61, -865.74], [-1596.65, -869.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-181.45, -664.64], [-152.65, -638.36], [-163.55, -626.5], [-201.89, -584.76], [-230.69, -611.02], [-181.45, -664.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1228.77, -993.76], [-1216.5, -1006.74], [-1188.88, -981.7], [-1209.07, -957.91], [-1244.26, -943.56], [-1251.9, -962.16], [-1221.24, -974.66], [-1215.74, -981.14], [-1228.77, -993.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1298.92, -2361.63], [-1272.39, -2346.3], [-1280.38, -2331.92], [-1285.89, -2335.23], [-1308.85, -2297.76], [-1335.44, -2296.88], [-1298.92, -2361.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1306.69, -2483.6], [-1279.66, -2468.72], [-1270.66, -2484.73], [-1261.06, -2501.81], [-1251.78, -2518.32], [-1277.71, -2533.59], [-1306.69, -2483.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[663.41, 575.05], [644.03, 596.45], [640.29, 593.08], [638.36, 595.21], [635.23, 592.39], [625.53, 603.1], [640.75, 616.77], [671.74, 582.54], [663.41, 575.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[656.96, 631.11], [723.68, 557.81], [752.13, 583.52], [685.42, 656.82], [656.96, 631.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1935.57, 1961.93], [1921.86, 1976.1], [1954.13, 2007.2], [1967.73, 1992.32], [1935.57, 1961.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1342.71, -2703.89], [-1338.89, -2707.76], [-1331.93, -2708.72], [-1331.51, -2711.67], [-1161.31, -2719.2], [-1172.61, -2680.84], [-1258.56, -2676.89], [-1258.36, -2671.97], [-1340.38, -2665.51], [-1342.71, -2703.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-201.54, -2302.68], [-199.53, -2259.06], [-189.4, -2259.66], [-187.74, -2228.64], [-170.36, -2229.44], [-134.42, -2291.05], [-143.86, -2297.53], [-155.15, -2305.29], [-201.54, -2302.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[117.99, -260.43], [95.96, -279.71], [85.41, -264.06], [72.36, -250.13], [60.22, -235.91], [45.84, -224.29], [67.86, -205.25], [92.46, -230.66], [117.99, -260.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[767.25, 599.82], [808.17, 636.24], [790.88, 655.8], [799.53, 664.14], [797.62, 666.28], [788.51, 658.49], [784.1, 663.49], [743.55, 627.59], [767.25, 599.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[776.69, 689.89], [784.32, 681.29], [797.62, 666.28], [799.53, 664.14], [866.37, 725.01], [862.53, 729.3], [843.56, 750.84], [776.69, 689.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[260.15, 424.56], [280.7, 443.33], [307.99, 468.24], [291.28, 486.43], [243.42, 442.76], [260.15, 424.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1758.71, 1700.59], [1765.76, 1707.38], [1779.43, 1720.58], [1785.52, 1726.45], [1808.51, 1748.63], [1798.84, 1765.99], [1781.28, 1784.78], [1783.92, 1787.44], [1748.64, 1824.54], [1746.46, 1822.2], [1742.81, 1825.82], [1728.64, 1811.65], [1730.21, 1809.91], [1678.18, 1760.41], [1691.72, 1746.36], [1694.45, 1748.31], [1703.37, 1739.06], [1713.98, 1731.87], [1711.44, 1729.51], [1728.94, 1719.07], [1758.71, 1700.59]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[-1295.87, -297.12], [-1292.62, -297.3], [-1292.44, -293.95], [-1295.65, -293.75], [-1295.87, -297.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1297.78, -333.4], [-1291.63, -333.65], [-1291.78, -337.34], [-1296.9, -337.13], [-1297.94, -337.08], [-1297.78, -333.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1909.3, -606.22], [-1910.39, -608.78], [-1912.28, -610.83], [-1914.75, -612.15], [-1917.51, -612.58], [-1920.13, -612.11], [-1922.47, -610.84], [-1924.29, -608.9], [-1925.4, -606.48], [-1925.68, -603.84], [-1925.1, -601.24], [-1923.73, -598.97], [-1921.71, -597.24], [-1919.24, -596.23], [-1916.45, -596.08], [-1913.76, -596.85], [-1911.49, -598.47], [-1909.87, -600.75], [-1909.12, -603.43], [-1909.3, -606.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1933.03, -608.2], [-1924.86, -616.05], [-1921.8, -613.04], [-1929.91, -604.96], [-1933.03, -608.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1906.24, -610.53], [-1902.28, -610.64], [-1902.2, -606.47], [-1906.2, -606.38], [-1906.24, -610.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2540.11, -85.58], [-2540.38, -96.08], [-2522.01, -96.92], [-2521.49, -86.1], [-2540.11, -85.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[377.15, 162.2], [431.88, 213.07], [419.6, 226.83], [379.17, 189.66], [390.37, 177.51], [377.92, 165.99], [375.56, 163.88], [377.15, 162.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[615.57, 309.07], [620.34, 301.81], [650.75, 322.82], [645.67, 329.88], [615.57, 309.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[471.17, 343.12], [479.23, 350.35], [470.1, 360.47], [462.04, 353.24], [471.17, 343.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[517.86, 407.01], [524.85, 413.19], [516.41, 422.67], [509.42, 416.49], [517.86, 407.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[515.75, 403.56], [506.29, 395.06], [504.96, 396.53], [500.75, 392.75], [497.42, 396.42], [501.7, 400.25], [500.78, 401.27], [510.18, 409.72], [515.75, 403.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[880.92, 602.59], [890.6, 610.66], [857.22, 648.06], [848.01, 639.62], [880.92, 602.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1189.42, 1266.87], [1192.34, 1269.27], [1189.12, 1273.26], [1186.1, 1271.1], [1189.42, 1266.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1191.92, 1253.48], [1186.02, 1248.33], [1180.27, 1254.92], [1186.18, 1260.06], [1191.92, 1253.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1199.01, 1261.99], [1193.15, 1268.66], [1205.32, 1279.2], [1211.43, 1272.87], [1199.01, 1261.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[930.2, 1164.89], [937.79, 1171.64], [942.84, 1165.91], [935.15, 1158.98], [930.2, 1164.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1005.49, 1083.71], [1000.11, 1079.1], [994.72, 1085.41], [1000.09, 1090.01], [1005.49, 1083.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[859.11, 1209.17], [854.7, 1205.16], [850.29, 1210.01], [854.7, 1214.02], [859.11, 1209.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[534.27, 1199.72], [538.33, 1203.24], [543.2, 1197.82], [539.02, 1194.3], [534.27, 1199.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[404.66, 717.5], [441.0, 750.65], [481.7, 706.38], [445.57, 672.79], [424.54, 695.78], [404.66, 717.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1088.58, -1187.56], [-1083.07, -1193.31], [-1077.15, -1188.12], [-1082.97, -1182.05], [-1088.58, -1187.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3065.21, -1653.34], [-3050.61, -1640.68], [-3044.74, -1647.76], [-3059.72, -1660.41], [-3065.21, -1653.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3039.41, -1643.34], [-3033.81, -1638.08], [-3037.73, -1632.04], [-3044.44, -1637.4], [-3039.41, -1643.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3008.36, -1691.74], [-2997.32, -1682.31], [-3006.79, -1671.3], [-3017.45, -1680.5], [-3008.36, -1691.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[873.15, 257.11], [897.09, 230.8], [911.99, 244.26], [906.81, 249.96], [888.04, 270.57], [873.15, 257.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[920.48, 379.89], [925.69, 374.13], [933.27, 380.93], [928.05, 386.69], [920.48, 379.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-466.29, -726.46], [-460.76, -721.08], [-455.29, -727.04], [-460.8, -731.97], [-466.29, -726.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-444.31, -763.28], [-462.91, -743.02], [-447.84, -729.28], [-458.21, -717.99], [-445.84, -706.73], [-428.27, -725.86], [-430.1, -727.54], [-416.14, -742.75], [-436.94, -761.72], [-439.52, -758.91], [-441.46, -760.68], [-444.31, -763.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[861.14, 1616.87], [869.4, 1625.87], [863.2, 1631.75], [854.85, 1622.66], [861.14, 1616.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[876.6, 1692.8], [871.63, 1697.21], [867.41, 1692.47], [872.39, 1688.07], [876.6, 1692.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[777.04, 1674.59], [783.04, 1681.08], [778.42, 1685.37], [777.38, 1684.33], [773.98, 1687.36], [769.25, 1682.0], [777.04, 1674.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2139.9, 1747.96], [2153.44, 1760.83], [2147.82, 1766.75], [2134.96, 1754.1], [2139.9, 1747.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1573.83, 669.23], [1580.85, 675.5], [1587.75, 667.83], [1580.73, 661.57], [1573.83, 669.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1540.69, 722.02], [1543.98, 725.0], [1545.1, 723.77], [1548.13, 726.51], [1556.09, 717.8], [1549.52, 711.83], [1541.53, 720.58], [1541.79, 720.81], [1540.69, 722.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1600.86, 776.21], [1606.47, 781.24], [1615.89, 770.84], [1610.28, 765.8], [1600.86, 776.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1609.83, 646.45], [1614.08, 650.18], [1615.17, 651.14], [1615.8, 651.69], [1625.19, 641.07], [1623.71, 639.77], [1625.51, 637.74], [1621.01, 633.8], [1609.83, 646.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1623.82, 658.8], [1630.43, 664.84], [1639.87, 654.62], [1633.27, 648.57], [1623.82, 658.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1652.53, 670.49], [1646.45, 664.94], [1640.07, 671.86], [1646.15, 677.42], [1652.53, 670.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1674.02, 708.11], [1680.05, 713.64], [1688.23, 704.78], [1682.2, 699.26], [1674.02, 708.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1668.71, 701.6], [1672.75, 705.25], [1674.2, 703.66], [1674.79, 704.2], [1677.59, 701.12], [1678.87, 702.27], [1682.81, 697.95], [1682.29, 697.48], [1685.16, 694.33], [1679.12, 688.88], [1676.18, 692.11], [1675.74, 691.71], [1672.15, 695.66], [1672.82, 696.26], [1669.87, 699.5], [1670.28, 699.88], [1668.71, 701.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2644.54, -3189.0], [2644.2, -3176.25], [2635.78, -3176.47], [2636.12, -3189.21], [2644.54, -3189.0]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2658.81, -3194.01], [2658.54, -3201.68], [2651.39, -3201.43], [2651.66, -3193.76], [2658.81, -3194.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2665.72, -3181.31], [2665.32, -3192.35], [2655.82, -3192.01], [2656.22, -3180.96], [2665.72, -3181.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2695.18, -3106.01], [2694.72, -3094.77], [2693.76, -3094.81], [2693.45, -3087.17], [2703.83, -3086.75], [2704.6, -3105.64], [2695.18, -3106.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1437.52, -3209.3], [1444.6, -3207.26], [1444.43, -3206.66], [1446.05, -3206.19], [1443.81, -3198.45], [1453.28, -3192.73], [1447.43, -3183.1], [1443.16, -3185.68], [1441.03, -3182.19], [1433.29, -3187.32], [1434.45, -3191.28], [1433.27, -3191.63], [1434.45, -3195.72], [1433.65, -3195.95], [1437.52, -3209.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1534.17, -3162.03], [1534.5, -3172.86], [1542.44, -3172.63], [1542.37, -3170.22], [1552.69, -3169.91], [1552.64, -3168.23], [1555.37, -3168.15], [1555.13, -3160.24], [1552.4, -3160.32], [1552.34, -3158.4], [1539.25, -3158.79], [1539.34, -3161.87], [1534.17, -3162.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1514.43, -3143.81], [1514.91, -3148.65], [1512.69, -3148.86], [1513.13, -3153.33], [1514.05, -3153.24], [1514.82, -3161.02], [1520.85, -3160.43], [1521.36, -3165.63], [1529.76, -3164.8], [1528.78, -3155.02], [1527.93, -3155.11], [1527.17, -3147.38], [1524.12, -3147.68], [1524.09, -3147.41], [1522.66, -3147.55], [1522.22, -3143.04], [1514.43, -3143.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1481.77, -3162.35], [1480.76, -3151.15], [1501.03, -3149.35], [1502.38, -3164.24], [1496.88, -3164.73], [1497.08, -3166.85], [1500.51, -3166.55], [1501.31, -3175.35], [1492.12, -3176.17], [1491.33, -3167.4], [1493.24, -3167.23], [1492.71, -3161.37], [1481.77, -3162.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1465.12, -3162.88], [1467.02, -3175.11], [1476.92, -3173.6], [1475.03, -3161.36], [1465.12, -3162.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1465.28, -3183.44], [1462.48, -3166.73], [1456.29, -3167.76], [1456.71, -3170.28], [1453.58, -3170.81], [1455.52, -3182.35], [1459.27, -3181.74], [1459.71, -3184.36], [1465.28, -3183.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1461.33, -3195.51], [1459.54, -3185.41], [1467.1, -3184.09], [1468.88, -3194.19], [1461.33, -3195.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1407.94, -3193.29], [1415.4, -3190.43], [1414.61, -3188.38], [1415.44, -3185.84], [1418.36, -3184.72], [1420.47, -3185.78], [1421.38, -3188.14], [1425.06, -3186.72], [1430.94, -3201.93], [1423.96, -3204.62], [1422.94, -3206.71], [1419.96, -3207.85], [1417.47, -3206.68], [1416.16, -3203.28], [1412.37, -3204.73], [1407.94, -3193.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1488.49, 947.33], [1498.1, 956.48], [1503.34, 951.02], [1493.73, 941.88], [1488.49, 947.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1212.5, 675.52], [1218.56, 669.0], [1206.47, 658.35], [1200.84, 664.75], [1212.5, 675.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2402.59, 1458.73], [2408.76, 1462.94], [2413.13, 1457.08], [2406.82, 1452.42], [2402.59, 1458.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2190.9, 1676.67], [2197.93, 1672.54], [2193.55, 1665.57], [2186.59, 1669.89], [2190.9, 1676.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2197.93, 1672.54], [2199.78, 1671.44], [2205.23, 1667.99], [2205.36, 1664.9], [2202.72, 1660.21], [2193.55, 1665.57], [2197.93, 1672.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2385.84, 2101.52], [2390.6, 2097.02], [2384.4, 2091.34], [2380.04, 2095.5], [2385.84, 2101.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2405.05, 2037.37], [2417.0, 2029.65], [2412.57, 2023.77], [2400.59, 2030.61], [2405.05, 2037.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2545.75, 2077.19], [2554.14, 2076.73], [2553.66, 2067.27], [2545.25, 2067.4], [2545.75, 2077.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2518.71, 1816.25], [2519.89, 1811.85], [2521.59, 1812.32], [2521.75, 1812.05], [2530.89, 1814.26], [2530.75, 1814.81], [2533.98, 1815.52], [2534.05, 1814.97], [2538.62, 1816.03], [2538.91, 1820.43], [2538.14, 1820.56], [2518.71, 1816.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2641.14, 2224.43], [2639.33, 2224.53], [2639.49, 2226.21], [2634.85, 2226.5], [2635.03, 2230.63], [2636.99, 2230.57], [2637.54, 2234.48], [2641.4, 2234.0], [2641.14, 2224.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2670.56, 2125.83], [2678.91, 2125.27], [2678.43, 2117.11], [2669.83, 2117.19], [2670.56, 2125.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2724.12, 2226.63], [2723.92, 2225.31], [2727.72, 2225.13], [2727.58, 2222.99], [2732.38, 2222.86], [2732.87, 2226.29], [2724.12, 2226.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2742.39, 2225.93], [2742.14, 2223.88], [2738.62, 2223.98], [2738.58, 2222.43], [2732.38, 2222.86], [2732.87, 2226.29], [2742.39, 2225.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2761.94, 2157.49], [2780.13, 2156.49], [2779.87, 2147.41], [2761.36, 2148.75], [2761.94, 2157.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2761.4, 2144.14], [2778.58, 2142.84], [2778.88, 2135.73], [2760.86, 2136.57], [2761.4, 2144.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1350.28, 795.04], [1358.55, 786.1], [1337.1, 766.66], [1329.39, 775.83], [1350.28, 795.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2584.98, 1709.58], [2591.54, 1710.9], [2593.44, 1702.72], [2586.38, 1701.42], [2584.98, 1709.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2551.35, 2387.7], [2570.76, 2369.22], [2577.66, 2361.4], [2579.81, 2358.49], [2580.17, 2356.37], [2582.58, 2353.0], [2569.95, 2338.34], [2567.83, 2340.62], [2560.97, 2334.57], [2548.45, 2348.52], [2534.48, 2335.26], [2515.89, 2354.36], [2519.38, 2357.7], [2517.41, 2359.3], [2525.07, 2367.23], [2527.3, 2365.21], [2531.83, 2369.8], [2529.6, 2371.66], [2535.66, 2377.41], [2537.74, 2375.56], [2542.7, 2380.18], [2540.3, 2381.84], [2543.48, 2385.13], [2546.34, 2383.04], [2551.35, 2387.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2339.01, -3177.86], [2359.58, -3178.26], [2359.41, -3187.42], [2338.84, -3187.03], [2339.01, -3177.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2323.06, -3182.24], [2323.22, -3175.23], [2330.73, -3175.39], [2330.57, -3182.41], [2323.06, -3182.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2314.07, -3172.58], [2314.0, -3182.19], [2320.62, -3182.23], [2320.68, -3172.62], [2314.07, -3172.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2314.34, -3201.58], [2311.12, -3201.36], [2311.35, -3198.08], [2314.57, -3198.3], [2314.34, -3201.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2122.68, -3212.81], [2122.7, -3210.62], [2121.58, -3210.61], [2121.62, -3207.14], [2122.73, -3207.15], [2122.76, -3203.85], [2130.75, -3203.93], [2130.73, -3207.15], [2133.29, -3207.18], [2133.23, -3213.56], [2129.67, -3213.53], [2129.67, -3212.88], [2122.68, -3212.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2228.72, -3204.9], [2228.65, -3215.24], [2236.88, -3215.3], [2236.95, -3204.96], [2228.72, -3204.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2091.41, -3200.79], [2081.95, -3200.7], [2081.85, -3213.48], [2077.89, -3213.44], [2077.82, -3220.6], [2092.12, -3220.72], [2092.19, -3212.45], [2091.31, -3212.44], [2091.41, -3200.79]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2091.5, -3177.81], [2091.79, -3195.99], [2083.03, -3196.13], [2082.72, -3177.95], [2091.5, -3177.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2083.62, -3157.27], [2091.25, -3157.17], [2091.48, -3173.59], [2082.19, -3173.72], [2082.05, -3164.31], [2083.72, -3164.29], [2083.62, -3157.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2063.95, -3156.55], [2061.28, -3156.44], [2061.15, -3159.29], [2063.83, -3159.41], [2063.95, -3156.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2077.92, -3126.44], [2078.27, -3135.14], [2072.1, -3135.39], [2071.85, -3129.55], [2069.67, -3129.65], [2069.3, -3120.9], [2075.81, -3120.64], [2076.06, -3126.51], [2077.92, -3126.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2085.62, -3086.41], [2085.66, -3077.19], [2087.11, -3077.2], [2087.18, -3063.8], [2094.21, -3063.84], [2094.19, -3066.07], [2095.85, -3066.08], [2095.78, -3078.54], [2093.24, -3078.53], [2093.2, -3086.46], [2085.62, -3086.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2060.77, -3110.01], [2062.31, -3103.49], [2063.55, -3103.78], [2066.04, -3093.19], [2073.35, -3094.91], [2071.83, -3101.31], [2083.37, -3104.01], [2084.03, -3101.22], [2086.57, -3101.81], [2087.04, -3099.84], [2091.94, -3100.97], [2089.59, -3110.92], [2081.56, -3109.04], [2080.25, -3114.57], [2060.77, -3110.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2047.61, -3126.53], [2050.25, -3116.64], [2059.42, -3119.07], [2055.72, -3132.97], [2048.17, -3130.98], [2049.25, -3126.96], [2047.61, -3126.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2054.1, -3149.44], [2044.83, -3148.33], [2046.23, -3136.6], [2055.49, -3137.71], [2054.1, -3149.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2036.29, -3172.45], [2038.16, -3164.03], [2041.58, -3164.79], [2043.84, -3154.61], [2052.6, -3156.55], [2048.47, -3175.14], [2036.29, -3172.45]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2039.05, -3193.39], [2026.61, -3189.9], [2029.96, -3178.03], [2042.4, -3181.53], [2039.05, -3193.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2047.38, -3200.66], [2050.88, -3200.67], [2050.89, -3197.84], [2047.39, -3197.83], [2047.38, -3200.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2016.74, -3214.95], [2019.74, -3198.36], [2030.5, -3200.3], [2027.5, -3216.89], [2023.92, -3216.24], [2023.34, -3219.42], [2017.03, -3218.28], [2017.6, -3215.11], [2016.74, -3214.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2521.39, -3100.29], [2523.74, -3100.24], [2523.8, -3103.39], [2521.45, -3103.44], [2521.39, -3100.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2538.0, -3099.84], [2540.97, -3100.28], [2540.62, -3102.61], [2537.65, -3102.18], [2538.0, -3099.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2603.37, -3118.54], [2590.39, -3117.7], [2588.83, -3141.51], [2601.83, -3142.35], [2603.37, -3118.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2617.15, -3140.86], [2608.11, -3141.15], [2607.26, -3115.04], [2616.29, -3114.75], [2616.55, -3122.65], [2619.78, -3122.54], [2620.11, -3132.41], [2616.87, -3132.51], [2617.15, -3140.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2641.14, -3136.01], [2641.53, -3142.94], [2652.24, -3142.34], [2652.47, -3146.4], [2661.52, -3145.9], [2660.66, -3130.67], [2651.72, -3131.17], [2651.96, -3135.4], [2641.14, -3136.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2652.37, -3123.15], [2660.02, -3122.91], [2659.71, -3113.36], [2655.65, -3113.48], [2655.61, -3111.93], [2648.68, -3112.14], [2648.85, -3117.58], [2652.19, -3117.48], [2652.37, -3123.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2639.06, -3080.87], [2638.79, -3091.48], [2642.03, -3091.56], [2641.96, -3094.01], [2650.26, -3094.23], [2650.59, -3081.17], [2639.06, -3080.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2636.88, -3059.24], [2637.17, -3067.42], [2648.0, -3067.04], [2647.72, -3058.87], [2636.88, -3059.24]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2647.69, -2992.11], [2654.0, -2991.78], [2654.09, -2993.56], [2661.47, -2993.18], [2660.97, -2983.84], [2659.95, -2983.89], [2659.66, -2978.48], [2655.36, -2978.7], [2655.29, -2977.58], [2646.93, -2978.02], [2647.69, -2992.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2628.83, -3003.08], [2629.43, -3010.75], [2636.07, -3010.25], [2635.48, -3002.56], [2628.83, -3003.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2618.98, -2974.43], [2628.12, -2973.67], [2629.46, -2989.76], [2620.33, -2990.52], [2618.98, -2974.43]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2586.17, -2993.35], [2584.03, -2981.35], [2592.27, -2979.9], [2592.39, -2980.57], [2596.18, -2979.9], [2596.31, -2980.7], [2601.34, -2979.8], [2603.11, -2989.78], [2594.29, -2991.33], [2594.4, -2991.9], [2586.17, -2993.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2523.61, -3021.19], [2522.32, -3013.58], [2534.49, -3011.54], [2534.59, -3012.1], [2537.99, -3011.54], [2536.7, -3003.86], [2547.94, -3001.97], [2549.71, -3012.47], [2546.34, -3013.04], [2547.06, -3017.28], [2523.61, -3021.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2501.33, -3017.1], [2514.81, -3015.04], [2517.0, -3029.2], [2510.5, -3030.19], [2509.94, -3026.56], [2495.75, -3028.74], [2494.44, -3020.24], [2501.64, -3019.13], [2501.33, -3017.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2495.64, -3045.01], [2494.62, -3037.48], [2502.84, -3036.36], [2503.86, -3043.89], [2495.64, -3045.01]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2490.38, -3060.23], [2491.28, -3064.76], [2494.43, -3064.13], [2493.52, -3059.6], [2490.38, -3060.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2469.15, -3042.88], [2467.14, -3028.44], [2473.55, -3027.56], [2473.44, -3026.79], [2488.0, -3024.79], [2489.32, -3034.25], [2478.5, -3035.75], [2478.76, -3037.6], [2473.07, -3038.38], [2473.61, -3042.26], [2469.15, -3042.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2464.7, -3048.16], [2465.11, -3051.45], [2470.53, -3050.79], [2470.13, -3047.5], [2464.7, -3048.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2445.64, -3037.16], [2459.96, -3035.81], [2460.71, -3043.66], [2456.64, -3044.05], [2457.43, -3052.26], [2460.27, -3051.99], [2460.64, -3055.91], [2455.16, -3056.42], [2454.83, -3052.8], [2447.2, -3053.52], [2445.64, -3037.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2416.88, -3051.9], [2429.32, -3050.88], [2428.83, -3044.89], [2435.71, -3044.33], [2435.12, -3037.1], [2427.65, -3037.71], [2427.82, -3039.85], [2417.5, -3040.69], [2417.39, -3039.35], [2408.48, -3040.08], [2409.39, -3051.19], [2416.77, -3050.59], [2416.88, -3051.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2377.97, -3046.22], [2377.41, -3036.18], [2389.91, -3035.49], [2389.85, -3034.39], [2397.3, -3033.97], [2397.75, -3042.04], [2391.7, -3042.38], [2391.88, -3045.45], [2377.97, -3046.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2394.62, -3078.34], [2393.8, -3064.0], [2383.78, -3064.58], [2384.79, -3082.25], [2386.43, -3082.16], [2386.66, -3086.27], [2394.2, -3085.83], [2393.94, -3081.27], [2391.93, -3081.39], [2391.76, -3078.51], [2394.62, -3078.34]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2415.45, -3092.57], [2409.86, -3093.05], [2409.43, -3088.19], [2415.02, -3087.72], [2415.45, -3092.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2398.14, -3110.84], [2397.6, -3100.35], [2408.53, -3099.81], [2408.76, -3104.25], [2406.54, -3104.36], [2406.85, -3110.41], [2398.14, -3110.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2387.66, -3117.15], [2386.96, -3107.81], [2395.01, -3107.21], [2395.72, -3116.54], [2387.66, -3117.15]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2401.32, -3130.93], [2393.66, -3131.19], [2393.94, -3139.42], [2401.61, -3139.16], [2401.59, -3138.71], [2407.22, -3138.52], [2407.05, -3133.48], [2404.5, -3133.57], [2404.42, -3131.27], [2401.34, -3131.37], [2401.32, -3130.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2416.23, -3123.77], [2409.44, -3123.96], [2409.64, -3131.09], [2416.43, -3130.91], [2416.23, -3123.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2424.24, -3106.89], [2420.96, -3107.3], [2420.43, -3103.14], [2423.72, -3102.72], [2424.24, -3106.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2430.3, -3109.35], [2425.6, -3109.54], [2425.47, -3106.21], [2430.18, -3106.02], [2430.3, -3109.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2438.11, -3120.33], [2437.79, -3133.99], [2429.32, -3133.8], [2429.64, -3120.14], [2438.11, -3120.33]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2441.42, -3108.94], [2441.61, -3117.23], [2434.77, -3117.38], [2434.58, -3109.09], [2441.42, -3108.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2450.84, -3117.21], [2450.94, -3108.98], [2442.9, -3108.89], [2442.81, -3117.11], [2450.84, -3117.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2457.65, -3120.31], [2457.22, -3134.46], [2447.27, -3134.16], [2447.7, -3120.01], [2457.65, -3120.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2463.02, -3101.74], [2462.89, -3098.04], [2458.62, -3098.19], [2458.75, -3101.89], [2463.02, -3101.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2466.94, -3119.56], [2467.09, -3112.09], [2460.21, -3111.96], [2460.06, -3119.41], [2466.94, -3119.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2475.13, -3121.59], [2474.71, -3135.14], [2470.74, -3135.01], [2470.66, -3138.02], [2466.99, -3137.91], [2467.07, -3135.48], [2465.25, -3135.43], [2465.68, -3121.3], [2475.13, -3121.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2490.52, -3133.97], [2489.24, -3116.57], [2479.15, -3117.3], [2480.43, -3134.71], [2490.52, -3133.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2504.66, -3115.5], [2505.49, -3133.27], [2495.41, -3133.74], [2494.58, -3115.96], [2504.66, -3115.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2532.93, -3132.61], [2533.09, -3123.09], [2511.62, -3122.71], [2511.45, -3132.24], [2518.15, -3132.35], [2518.14, -3133.3], [2526.47, -3133.44], [2526.48, -3132.51], [2532.93, -3132.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2495.43, -3178.49], [2500.04, -3178.26], [2500.13, -3180.0], [2503.31, -3179.84], [2503.22, -3178.1], [2507.42, -3177.9], [2506.97, -3168.95], [2502.31, -3169.19], [2502.2, -3167.01], [2494.87, -3167.38], [2495.43, -3178.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2479.61, -3182.05], [2479.1, -3167.77], [2491.65, -3167.32], [2492.02, -3177.41], [2488.16, -3177.55], [2488.31, -3181.74], [2487.33, -3181.78], [2487.49, -3186.19], [2482.94, -3186.35], [2482.79, -3181.94], [2479.61, -3182.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2480.17, -3195.64], [2480.23, -3198.79], [2482.81, -3198.74], [2482.75, -3195.59], [2480.17, -3195.64]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2474.23, -3198.9], [2474.41, -3202.0], [2477.7, -3201.82], [2477.51, -3198.71], [2474.23, -3198.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2463.94, -3185.54], [2463.2, -3167.59], [2473.59, -3167.17], [2474.33, -3185.12], [2463.94, -3185.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2454.99, -3183.66], [2460.58, -3183.52], [2460.8, -3191.96], [2455.22, -3192.11], [2454.99, -3183.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2448.23, -3182.37], [2448.02, -3168.71], [2451.63, -3168.65], [2451.6, -3166.73], [2460.77, -3166.6], [2460.88, -3173.69], [2456.3, -3173.76], [2456.43, -3182.26], [2448.23, -3182.37]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2442.98, -3180.85], [2432.74, -3181.06], [2432.44, -3166.74], [2442.68, -3166.53], [2442.98, -3180.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2430.06, -3194.41], [2429.96, -3187.99], [2436.91, -3187.88], [2437.0, -3194.31], [2430.06, -3194.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2426.64, -3192.69], [2426.69, -3195.14], [2429.73, -3195.08], [2429.67, -3192.62], [2426.64, -3192.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2416.02, -3173.83], [2426.0, -3173.1], [2425.27, -3163.23], [2415.3, -3163.95], [2416.02, -3173.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2408.3, -3182.47], [2407.67, -3175.32], [2415.19, -3174.68], [2415.43, -3177.34], [2418.71, -3177.06], [2419.1, -3181.52], [2408.3, -3182.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2395.54, -3165.04], [2385.47, -3165.42], [2386.04, -3180.24], [2387.19, -3180.21], [2387.35, -3184.68], [2396.27, -3184.34], [2396.01, -3177.48], [2403.25, -3177.2], [2402.87, -3167.29], [2395.63, -3167.56], [2395.54, -3165.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1094.63, 1331.13], [1085.27, 1341.32], [1091.76, 1347.24], [1101.13, 1337.05], [1094.63, 1331.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[864.1, 1180.27], [869.22, 1184.52], [862.0, 1193.24], [856.88, 1189.03], [864.1, 1180.27]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2327.05, -3143.4], [2326.65, -3134.47], [2339.46, -3133.9], [2339.75, -3140.32], [2338.81, -3140.36], [2339.03, -3145.29], [2331.71, -3145.62], [2331.6, -3143.21], [2327.05, -3143.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2326.13, -3121.92], [2317.93, -3121.97], [2317.98, -3131.67], [2326.18, -3131.62], [2326.13, -3121.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2352.61, -3084.14], [2354.16, -3102.33], [2351.99, -3102.51], [2352.14, -3104.3], [2347.75, -3104.68], [2347.59, -3102.88], [2345.67, -3103.04], [2345.45, -3100.45], [2338.12, -3101.07], [2337.79, -3097.12], [2335.39, -3097.33], [2335.01, -3092.85], [2337.41, -3092.65], [2337.05, -3088.51], [2344.38, -3087.89], [2344.12, -3084.86], [2352.61, -3084.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2352.8, -3059.44], [2346.14, -3059.19], [2345.97, -3063.82], [2352.63, -3064.07], [2352.8, -3059.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2338.25, -3031.62], [2351.15, -3033.45], [2349.26, -3046.73], [2340.57, -3045.5], [2341.21, -3040.96], [2337.0, -3040.36], [2338.25, -3031.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2307.14, -3045.96], [2306.36, -3035.61], [2313.75, -3035.05], [2313.44, -3030.95], [2322.32, -3030.29], [2323.42, -3044.74], [2321.69, -3044.87], [2321.86, -3047.16], [2313.07, -3047.82], [2312.9, -3045.53], [2307.14, -3045.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2296.55, -3039.66], [2303.56, -3039.28], [2304.05, -3048.23], [2297.04, -3048.6], [2296.55, -3039.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2288.42, -3042.41], [2288.59, -3046.65], [2293.24, -3046.47], [2293.08, -3042.23], [2288.42, -3042.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2286.79, -3025.67], [2287.18, -3035.27], [2290.32, -3035.14], [2290.43, -3038.17], [2296.22, -3037.93], [2296.09, -3034.91], [2300.81, -3034.72], [2300.42, -3025.13], [2286.79, -3025.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2269.95, -3037.46], [2269.29, -3022.08], [2277.83, -3021.72], [2277.9, -3023.43], [2283.24, -3023.21], [2283.62, -3031.91], [2278.28, -3032.12], [2278.49, -3037.1], [2269.95, -3037.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2259.05, -3036.32], [2259.06, -3046.18], [2267.22, -3046.16], [2267.19, -3036.3], [2259.05, -3036.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2252.58, -3031.63], [2252.72, -3018.5], [2264.19, -3018.63], [2264.1, -3026.91], [2259.74, -3026.87], [2259.68, -3031.7], [2252.58, -3031.63]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2234.08, -3020.38], [2236.39, -3020.38], [2236.38, -3019.37], [2240.07, -3019.36], [2240.08, -3020.37], [2243.1, -3020.38], [2243.11, -3028.37], [2234.08, -3028.38], [2234.08, -3020.38]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2219.79, -3037.1], [2220.11, -3044.83], [2228.32, -3044.5], [2228.01, -3036.76], [2219.79, -3037.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2211.82, -3030.44], [2216.81, -3030.12], [2216.85, -3030.87], [2223.97, -3030.42], [2223.74, -3026.78], [2225.51, -3026.68], [2224.89, -3016.92], [2211.03, -3017.78], [2211.82, -3030.44]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2190.95, -3030.72], [2200.74, -3030.39], [2200.44, -3021.35], [2190.65, -3021.66], [2190.95, -3030.72]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2173.97, -3032.94], [2173.93, -3022.48], [2184.49, -3022.45], [2184.52, -3032.91], [2173.97, -3032.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2169.4, -3041.47], [2169.21, -3034.89], [2177.1, -3034.67], [2177.29, -3041.25], [2169.4, -3041.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2153.67, -3044.51], [2153.17, -3032.1], [2155.97, -3031.99], [2155.93, -3030.95], [2159.62, -3030.81], [2159.65, -3031.85], [2165.95, -3031.6], [2166.21, -3037.95], [2162.64, -3038.09], [2162.89, -3044.15], [2153.67, -3044.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2131.54, -3039.83], [2131.46, -3047.73], [2144.98, -3047.88], [2145.05, -3041.46], [2142.19, -3041.43], [2142.21, -3039.94], [2131.54, -3039.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2117.41, -3050.04], [2126.92, -3050.18], [2126.67, -3066.46], [2117.16, -3066.32], [2117.29, -3058.12], [2111.59, -3058.02], [2111.7, -3050.88], [2115.6, -3050.94], [2115.58, -3051.82], [2117.38, -3051.85], [2117.41, -3050.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2117.68, -3107.9], [2124.35, -3107.72], [2124.23, -3103.32], [2128.45, -3103.21], [2128.33, -3098.4], [2124.09, -3098.52], [2123.99, -3094.8], [2117.97, -3094.97], [2118.06, -3098.45], [2117.41, -3098.46], [2117.68, -3107.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2124.88, -3139.22], [2118.55, -3139.24], [2118.5, -3126.93], [2126.41, -3126.89], [2126.43, -3130.69], [2125.86, -3130.7], [2125.87, -3131.57], [2128.6, -3131.55], [2128.61, -3137.57], [2124.88, -3137.57], [2124.88, -3139.22]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2139.19, -3143.42], [2131.43, -3143.58], [2131.26, -3135.52], [2139.03, -3135.36], [2139.19, -3143.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2695.05, -3039.21], [2696.0, -3056.48], [2705.26, -3055.99], [2704.32, -3038.71], [2695.05, -3039.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2703.3, -3016.47], [2694.19, -3016.91], [2694.8, -3029.22], [2696.18, -3029.15], [2696.36, -3032.94], [2704.08, -3032.57], [2703.3, -3016.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2705.91, -2987.28], [2718.34, -2986.49], [2718.89, -2995.01], [2722.71, -2994.77], [2723.3, -3004.1], [2713.8, -3004.71], [2713.27, -2996.47], [2706.53, -2996.91], [2705.91, -2987.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2689.78, -2998.88], [2689.23, -2974.68], [2699.46, -2974.46], [2700.01, -2998.65], [2689.78, -2998.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2443.28, -2958.32], [2461.79, -2946.6], [2466.48, -2949.04], [2466.87, -2958.11], [2462.71, -2960.43], [2463.18, -2961.26], [2460.94, -2962.51], [2455.87, -2959.5], [2449.48, -2963.07], [2449.24, -2962.64], [2447.22, -2963.76], [2446.19, -2963.75], [2443.23, -2962.0], [2443.28, -2958.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2692.5, -2899.73], [2692.5, -2891.34], [2697.41, -2891.34], [2697.42, -2899.72], [2692.5, -2899.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2694.08, -2906.97], [2708.53, -2906.57], [2708.94, -2921.61], [2707.49, -2921.65], [2707.58, -2924.92], [2694.58, -2925.26], [2694.08, -2906.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2684.48, -2934.29], [2684.76, -2942.56], [2691.77, -2942.33], [2691.51, -2934.07], [2684.48, -2934.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2676.65, -2905.49], [2676.38, -2896.95], [2684.17, -2896.7], [2684.04, -2892.36], [2689.27, -2892.19], [2690.01, -2915.05], [2682.03, -2915.31], [2681.71, -2905.33], [2676.65, -2905.49]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2654.78, -2929.75], [2654.37, -2940.74], [2662.78, -2941.04], [2663.18, -2930.05], [2654.78, -2929.75]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2658.01, -2909.71], [2658.54, -2897.47], [2663.14, -2897.66], [2663.29, -2894.21], [2668.29, -2894.43], [2667.62, -2910.12], [2658.01, -2909.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2637.31, -2909.46], [2637.58, -2896.55], [2648.23, -2896.78], [2647.96, -2909.68], [2637.31, -2909.46]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2605.78, -2892.21], [2606.71, -2917.04], [2614.37, -2916.75], [2614.13, -2910.2], [2618.2, -2910.04], [2617.69, -2896.46], [2612.22, -2896.66], [2612.05, -2891.98], [2605.78, -2892.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2585.43, -2938.03], [2585.02, -2927.84], [2593.28, -2927.51], [2593.69, -2937.71], [2585.43, -2938.03]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2572.68, -2937.59], [2573.61, -2947.63], [2582.27, -2946.84], [2581.35, -2936.8], [2572.68, -2937.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2583.91, -2911.4], [2583.2, -2898.57], [2587.51, -2898.34], [2587.25, -2893.62], [2598.43, -2893.01], [2598.88, -2901.31], [2602.41, -2901.12], [2602.81, -2908.34], [2599.29, -2908.53], [2599.4, -2910.55], [2597.18, -2910.67], [2597.25, -2911.91], [2589.95, -2912.32], [2589.88, -2911.06], [2583.91, -2911.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2562.06, -2919.52], [2561.01, -2905.35], [2565.61, -2905.01], [2565.56, -2904.46], [2572.09, -2903.97], [2572.24, -2906.05], [2576.35, -2905.75], [2577.37, -2919.46], [2578.34, -2919.4], [2578.92, -2927.16], [2570.85, -2927.75], [2570.2, -2918.91], [2562.06, -2919.52]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2545.03, -2933.96], [2547.06, -2933.66], [2547.02, -2933.36], [2544.88, -2930.71], [2543.2, -2927.75], [2542.04, -2924.56], [2541.36, -2920.43], [2541.53, -2916.24], [2544.5, -2916.05], [2544.23, -2914.24], [2545.01, -2914.13], [2543.96, -2912.3], [2550.21, -2908.72], [2552.7, -2913.01], [2557.86, -2912.27], [2558.9, -2925.14], [2551.51, -2930.46], [2551.87, -2932.97], [2553.45, -2932.74], [2555.02, -2943.54], [2546.61, -2944.76], [2545.03, -2933.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2495.78, -2969.84], [2497.93, -2977.23], [2505.32, -2975.08], [2503.17, -2967.71], [2495.78, -2969.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2510.96, -2917.1], [2509.69, -2912.41], [2515.01, -2911.0], [2516.26, -2915.69], [2510.96, -2917.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2522.68, -2932.41], [2521.8, -2918.96], [2535.5, -2918.08], [2536.58, -2934.77], [2526.08, -2935.45], [2525.87, -2932.21], [2522.68, -2932.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2505.63, -2931.47], [2519.43, -2930.6], [2520.38, -2945.43], [2514.2, -2945.82], [2514.29, -2947.37], [2517.38, -2947.18], [2517.49, -2948.95], [2520.8, -2948.74], [2521.53, -2960.17], [2513.53, -2960.68], [2512.81, -2949.35], [2511.71, -2949.42], [2511.73, -2949.85], [2506.83, -2950.16], [2505.63, -2931.47]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2489.74, -2946.32], [2489.31, -2932.86], [2500.47, -2932.51], [2500.9, -2945.98], [2489.74, -2946.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2478.78, -2966.67], [2478.46, -2975.15], [2470.6, -2974.85], [2470.92, -2966.37], [2478.78, -2966.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2472.38, -2955.59], [2472.41, -2944.91], [2476.42, -2944.92], [2476.43, -2944.46], [2483.85, -2944.48], [2483.81, -2958.42], [2483.03, -2958.41], [2483.03, -2959.43], [2477.55, -2959.42], [2477.55, -2958.4], [2474.02, -2958.39], [2474.02, -2955.59], [2472.38, -2955.59]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2409.7, -2950.42], [2410.05, -2941.88], [2415.23, -2942.08], [2414.89, -2950.63], [2409.7, -2950.42]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2404.89, -2977.17], [2403.28, -2971.67], [2400.95, -2972.35], [2399.28, -2966.59], [2400.27, -2966.29], [2399.21, -2962.66], [2414.08, -2958.35], [2414.77, -2960.71], [2416.07, -2960.33], [2418.96, -2970.26], [2412.88, -2972.02], [2413.64, -2974.63], [2404.89, -2977.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2380.67, -2968.04], [2379.33, -2986.63], [2387.42, -2987.21], [2387.54, -2985.57], [2388.29, -2985.62], [2388.11, -2987.97], [2392.22, -2988.26], [2393.61, -2968.97], [2392.7, -2968.91], [2393.03, -2964.34], [2382.14, -2963.56], [2381.81, -2968.13], [2380.67, -2968.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2379.61, -2955.13], [2380.42, -2946.57], [2385.5, -2947.05], [2384.69, -2955.61], [2379.61, -2955.13]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2350.1, -2994.77], [2359.61, -2995.95], [2358.45, -3005.35], [2348.93, -3004.19], [2350.1, -2994.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2347.02, -2967.92], [2348.13, -2956.53], [2353.41, -2957.03], [2353.51, -2955.97], [2362.06, -2956.78], [2361.02, -2967.51], [2355.37, -2966.98], [2355.2, -2968.71], [2347.02, -2967.92]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2329.82, -2958.74], [2338.78, -2958.9], [2338.68, -2964.22], [2341.14, -2964.27], [2341.01, -2971.1], [2335.09, -2970.99], [2335.13, -2968.68], [2329.64, -2968.58], [2329.82, -2958.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2310.87, -2964.11], [2312.13, -2950.02], [2316.35, -2950.39], [2316.0, -2954.38], [2323.11, -2955.01], [2322.21, -2965.11], [2310.87, -2964.11]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2292.54, -2965.56], [2292.13, -2971.54], [2296.87, -2971.87], [2297.28, -2965.88], [2292.54, -2965.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2292.37, -2961.68], [2293.68, -2949.78], [2306.53, -2951.18], [2305.33, -2962.06], [2301.78, -2961.67], [2301.67, -2962.69], [2292.37, -2961.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2256.84, -2957.69], [2258.68, -2945.88], [2262.73, -2946.52], [2263.4, -2942.19], [2287.24, -2945.9], [2284.88, -2961.04], [2265.32, -2958.01], [2265.17, -2958.98], [2256.84, -2957.69]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2243.93, -2966.94], [2243.26, -2974.98], [2249.9, -2975.53], [2250.58, -2967.5], [2243.93, -2966.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2238.38, -2944.28], [2238.13, -2955.28], [2248.12, -2955.5], [2248.44, -2941.58], [2240.22, -2941.39], [2240.16, -2944.33], [2238.38, -2944.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2221.55, -2957.06], [2223.04, -2940.12], [2234.0, -2941.08], [2233.13, -2950.95], [2232.34, -2950.87], [2232.05, -2954.04], [2231.28, -2953.97], [2230.93, -2957.89], [2221.55, -2957.06]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2218.84, -2962.28], [2218.32, -2972.46], [2225.53, -2972.82], [2226.04, -2962.64], [2218.84, -2962.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2203.6, -2958.5], [2203.39, -2942.43], [2216.69, -2942.27], [2216.9, -2958.33], [2215.55, -2958.34], [2215.57, -2960.59], [2207.53, -2960.7], [2207.51, -2958.45], [2203.6, -2958.5]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2192.43, -2961.41], [2192.62, -2969.9], [2201.22, -2969.7], [2201.01, -2961.21], [2192.43, -2961.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2182.84, -2952.54], [2182.72, -2939.13], [2196.66, -2939.02], [2196.75, -2949.19], [2191.76, -2949.23], [2191.79, -2952.46], [2182.84, -2952.54]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2153.42, -2959.05], [2153.1, -2948.37], [2162.02, -2948.1], [2161.93, -2945.09], [2169.34, -2944.88], [2169.73, -2957.95], [2172.41, -2957.87], [2172.64, -2965.71], [2164.75, -2965.94], [2164.62, -2961.73], [2162.54, -2961.79], [2162.58, -2962.9], [2154.03, -2963.16], [2153.9, -2959.03], [2153.42, -2959.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2137.58, -2983.66], [2137.55, -2992.43], [2146.08, -2992.45], [2146.11, -2983.69], [2137.58, -2983.66]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2133.73, -2957.2], [2133.89, -2971.03], [2144.88, -2970.91], [2144.68, -2953.32], [2139.29, -2953.38], [2139.33, -2957.14], [2133.73, -2957.2]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2123.59, -2996.32], [2123.72, -3005.25], [2131.43, -3005.14], [2131.3, -2996.2], [2123.59, -2996.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2119.48, -2975.71], [2119.42, -2967.48], [2117.75, -2967.49], [2117.71, -2961.52], [2119.39, -2961.51], [2119.36, -2955.88], [2130.01, -2955.82], [2130.13, -2975.65], [2119.48, -2975.71]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2099.13, -2984.41], [2099.02, -2969.96], [2101.82, -2969.95], [2101.79, -2965.14], [2108.46, -2965.1], [2108.48, -2969.89], [2112.35, -2969.86], [2112.4, -2977.76], [2107.33, -2977.79], [2107.38, -2984.34], [2099.13, -2984.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2085.83, -2990.25], [2084.18, -2988.21], [2083.03, -2989.15], [2080.94, -2986.56], [2082.08, -2985.64], [2078.43, -2981.16], [2084.41, -2976.31], [2085.26, -2977.36], [2089.51, -2973.92], [2095.22, -2980.94], [2090.98, -2984.38], [2091.81, -2985.4], [2085.83, -2990.25]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2082.37, -3019.88], [2084.27, -3026.51], [2090.49, -3024.74], [2088.59, -3018.11], [2082.37, -3019.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2057.77, -3010.29], [2071.07, -2999.09], [2063.48, -2990.14], [2057.35, -2995.29], [2059.95, -2998.37], [2052.78, -3004.4], [2057.77, -3010.29]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2073.11, -3034.85], [2079.25, -3030.7], [2076.64, -3026.88], [2070.5, -3031.03], [2073.11, -3034.85]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2055.93, -3037.78], [2059.33, -3045.94], [2066.56, -3042.96], [2063.16, -3034.79], [2055.93, -3037.78]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2043.65, -3030.35], [2038.31, -3018.43], [2046.12, -3014.96], [2045.12, -3012.74], [2050.4, -3010.39], [2056.02, -3022.93], [2051.84, -3024.78], [2052.56, -3026.39], [2043.65, -3030.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2039.72, -3047.6], [2028.77, -3035.24], [2033.24, -3031.31], [2031.51, -3029.35], [2035.29, -3026.01], [2038.81, -3029.97], [2038.0, -3030.68], [2047.18, -3041.04], [2039.72, -3047.6]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2024.42, -3057.67], [2015.55, -3047.57], [2024.52, -3039.74], [2033.4, -3049.84], [2031.06, -3051.87], [2033.3, -3054.41], [2030.83, -3056.57], [2028.6, -3054.03], [2024.42, -3057.67]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1991.63, -3050.94], [1987.52, -3047.57], [1989.69, -3044.95], [1993.8, -3048.31], [1991.63, -3050.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2035.17, -3075.04], [2040.14, -3079.64], [2044.38, -3075.08], [2039.41, -3070.49], [2035.17, -3075.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2016.44, -3075.21], [2003.7, -3066.73], [2010.48, -3056.61], [2016.17, -3060.39], [2015.32, -3061.66], [2022.38, -3066.36], [2016.44, -3075.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2034.98, -3088.3], [2026.06, -3081.85], [2031.48, -3074.41], [2040.4, -3080.85], [2034.98, -3088.3]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2021.86, -3100.21], [2028.01, -3104.64], [2032.89, -3097.9], [2026.74, -3093.47], [2021.86, -3100.21]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1993.97, -3079.51], [1998.27, -3072.51], [2008.17, -3078.56], [2007.43, -3079.77], [2009.78, -3081.21], [2008.75, -3082.88], [2010.53, -3083.96], [2007.67, -3088.62], [2000.59, -3084.3], [2000.92, -3083.76], [1993.97, -3079.51]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2003.71, -3104.05], [1989.98, -3096.48], [1995.97, -3085.7], [2002.6, -3089.36], [2001.15, -3091.96], [2008.25, -3095.88], [2003.71, -3104.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2021.65, -3112.9], [2012.42, -3107.51], [2015.97, -3101.5], [2025.2, -3106.89], [2021.65, -3112.9]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1993.2, -3112.7], [1998.38, -3103.29], [2007.4, -3108.22], [2006.98, -3108.99], [2010.8, -3111.08], [2009.84, -3112.81], [2011.33, -3113.63], [2009.48, -3116.97], [2008.0, -3116.15], [2006.03, -3119.72], [1993.2, -3112.7]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2015.99, -3128.07], [2021.77, -3130.92], [2024.81, -3124.82], [2019.03, -3121.96], [2015.99, -3128.07]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2014.8, -3136.55], [2008.77, -3133.46], [2011.75, -3127.71], [2017.78, -3130.79], [2014.8, -3136.55]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2002.99, -3141.08], [1999.15, -3148.36], [2008.78, -3153.4], [2012.63, -3146.12], [2002.99, -3141.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1982.98, -3126.73], [1987.86, -3117.8], [1997.95, -3123.27], [1997.06, -3124.91], [2004.58, -3128.98], [2000.59, -3136.29], [1982.98, -3126.73]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1990.83, -3150.12], [1992.73, -3147.34], [1996.11, -3149.63], [2000.39, -3143.37], [1997.0, -3141.08], [1998.22, -3139.31], [1986.98, -3131.68], [1979.59, -3142.49], [1990.83, -3150.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1976.33, -3160.1], [1988.59, -3168.27], [1992.18, -3162.91], [1989.81, -3161.34], [1990.08, -3160.93], [1989.16, -3160.32], [1992.44, -3155.41], [1983.49, -3149.43], [1982.48, -3150.94], [1977.35, -3147.51], [1972.23, -3155.16], [1977.35, -3158.57], [1976.33, -3160.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1975.46, -3176.61], [1973.52, -3178.49], [1972.33, -3177.27], [1969.75, -3179.77], [1970.94, -3180.99], [1970.23, -3181.69], [1975.62, -3187.23], [1980.87, -3182.17], [1975.46, -3176.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1959.68, -3167.08], [1970.9, -3176.71], [1977.33, -3169.26], [1966.13, -3159.64], [1959.68, -3167.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1954.41, -3187.62], [1948.71, -3181.7], [1954.79, -3175.89], [1955.82, -3176.95], [1958.5, -3174.39], [1967.94, -3184.22], [1964.89, -3187.13], [1960.11, -3182.16], [1954.41, -3187.62]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1940.28, -3198.84], [1951.3, -3191.83], [1957.98, -3202.24], [1959.95, -3200.99], [1964.39, -3207.9], [1957.11, -3212.53], [1953.08, -3206.26], [1947.37, -3209.9], [1940.28, -3198.84]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1923.07, -3198.58], [1931.82, -3218.5], [1941.17, -3214.42], [1932.42, -3194.51], [1923.07, -3198.58]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2850.4, 2608.31], [2851.2, 2622.21], [2843.36, 2622.66], [2842.55, 2608.76], [2850.4, 2608.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[662.34, 668.61], [663.98, 667.13], [665.39, 665.82], [650.25, 652.42], [647.79, 654.97], [662.34, 668.61]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1543.76, 160.17], [-1543.94, 157.3], [-1544.26, 154.05], [-1544.39, 151.48], [-1544.89, 141.76], [-1544.68, 139.11], [-1543.08, 139.05], [-1542.77, 146.4], [-1538.67, 146.24], [-1519.06, 145.41], [-1519.27, 140.42], [-1516.34, 140.32], [-1508.33, 140.01], [-1506.6, 139.82], [-1505.81, 139.67], [-1504.85, 141.41], [-1504.6, 141.9], [-1503.8, 143.33], [-1503.09, 144.59], [-1502.79, 145.09], [-1500.77, 148.47], [-1501.78, 148.96], [-1504.23, 150.15], [-1513.86, 154.26], [-1522.21, 156.99], [-1530.37, 158.52], [-1537.35, 159.42], [-1543.76, 160.17]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1349.69, 39.81], [-1349.72, 38.81], [-1349.78, 37.22], [-1349.86, 35.02], [-1345.3, 34.85], [-1340.54, 34.68], [-1340.37, 39.47], [-1345.08, 39.64], [-1349.69, 39.81]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3140.95, 57.94], [-3141.19, 53.02], [-3162.32, 54.02], [-3162.14, 58.9], [-3140.95, 57.94]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3168.56, 48.48], [-3169.3, 23.0], [-3175.74, 23.18], [-3175.03, 48.69], [-3168.56, 48.48]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-483.45, -184.09], [-474.57, -176.06], [-489.81, -159.34], [-498.68, -167.37], [-483.45, -184.09]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-489.81, -159.34], [-485.06, -155.06], [-470.97, -170.53], [-469.32, -172.34], [-474.06, -176.63], [-474.57, -176.06], [-489.81, -159.34]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1274.05, -96.29], [-1271.34, -96.4], [-1263.82, -96.78], [-1264.73, -116.26], [-1264.97, -120.62], [-1275.21, -120.12], [-1274.05, -96.29]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-1103.03, -51.83], [-1102.64, -44.49], [-1098.94, -44.69], [-1094.55, -44.92], [-1094.51, -44.06], [-1082.57, -44.76], [-1084.77, -86.08], [-1104.82, -85.1], [-1104.24, -74.28], [-1103.03, -51.83]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1082.57, -44.76], [-1073.51, -45.25], [-1075.7, -86.56], [-1084.77, -86.08], [-1082.57, -44.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-174.01, 95.94], [-186.96, 110.5], [-188.51, 109.33], [-201.81, 109.91], [-203.98, 77.59], [-189.79, 90.86], [-185.07, 85.61], [-174.01, 95.94]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[974.22, 1030.94], [1001.92, 1001.43], [1044.56, 1041.18], [1016.87, 1070.69], [974.22, 1030.94]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-1407.85, -408.1], [-1431.84, -407.03], [-1431.69, -404.1], [-1407.8, -405.44], [-1407.85, -408.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1457.12, -254.96], [-1473.68, -254.07], [-1479.78, -253.72], [-1479.58, -250.88], [-1456.92, -251.91], [-1457.12, -254.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-798.9, -103.96], [-791.87, -104.24], [-791.91, -105.27], [-791.99, -107.3], [-799.03, -107.01], [-798.94, -104.99], [-798.9, -103.96]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-646.58, -121.89], [-629.0, -122.63], [-629.11, -125.41], [-646.7, -124.67], [-646.58, -121.89]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1260.8, 1211.39], [1262.16, 1210.0], [1263.4, 1208.75], [1248.73, 1195.17], [1245.79, 1197.96], [1260.8, 1211.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[1829.12, 1737.57], [1830.5, 1736.23], [1831.73, 1735.05], [1814.7, 1719.5], [1812.47, 1722.09], [1829.12, 1737.57]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2316.21, 2199.91], [2318.72, 2197.43], [2305.57, 2184.11], [2304.19, 2185.48], [2302.59, 2187.08], [2316.21, 2199.91]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2717.53, 2599.86], [2718.94, 2599.12], [2720.38, 2598.36], [2707.13, 2578.54], [2704.91, 2580.07], [2717.53, 2599.86]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[2764.24, 2670.83], [2766.84, 2669.31], [2757.0, 2653.11], [2755.74, 2653.95], [2754.31, 2654.9], [2764.24, 2670.83]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-288.46, -21.1], [-274.85, -8.87], [-272.89, -11.02], [-286.42, -23.27], [-286.94, -22.7], [-288.46, -21.1]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-186.74, -276.82], [-173.23, -264.52], [-171.19, -266.74], [-184.7, -279.05], [-186.74, -276.82]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2078.3, -226.74], [-2097.72, -225.93], [-2097.48, -222.38], [-2078.15, -223.23], [-2078.3, -226.74]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2088.38, -372.08], [-2109.32, -366.99], [-2108.61, -364.22], [-2087.67, -369.07], [-2088.38, -372.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[212.2, 258.93], [195.39, 243.99], [198.19, 240.83], [215.18, 255.83], [213.69, 257.37], [212.2, 258.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1311.92, -1042.4], [-1311.16, -1017.07], [-1340.46, -1016.19], [-1340.8, -1027.57], [-1360.71, -1026.98], [-1360.77, -1028.89], [-1357.26, -1029.0], [-1357.75, -1045.82], [-1338.64, -1046.38], [-1338.58, -1044.5], [-1336.35, -1044.56], [-1336.26, -1041.67], [-1311.92, -1042.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1359.58, -1057.97], [-1353.87, -1058.11], [-1353.89, -1059.02], [-1345.58, -1059.21], [-1345.56, -1058.48], [-1338.21, -1058.65], [-1338.32, -1063.13], [-1336.17, -1063.18], [-1336.21, -1065.0], [-1336.26, -1067.1], [-1338.47, -1067.05], [-1338.54, -1070.15], [-1336.55, -1070.2], [-1336.59, -1072.2], [-1336.64, -1074.37], [-1338.42, -1074.33], [-1338.49, -1077.43], [-1336.86, -1077.47], [-1336.9, -1079.58], [-1337.06, -1086.61], [-1337.12, -1089.25], [-1336.32, -1090.12], [-1335.27, -1091.26], [-1336.8, -1092.67], [-1332.36, -1097.47], [-1331.03, -1096.25], [-1329.91, -1097.46], [-1325.43, -1102.3], [-1324.41, -1103.4], [-1331.05, -1109.5], [-1332.77, -1107.65], [-1335.79, -1110.42], [-1333.42, -1112.98], [-1336.38, -1115.69], [-1338.47, -1113.43], [-1342.54, -1117.17], [-1345.15, -1114.35], [-1346.53, -1115.63], [-1348.93, -1113.03], [-1347.49, -1111.7], [-1349.81, -1109.19], [-1354.06, -1104.6], [-1355.57, -1105.98], [-1360.59, -1100.55], [-1359.28, -1099.35], [-1360.45, -1098.08], [-1360.33, -1093.39], [-1362.27, -1093.34], [-1361.85, -1077.39], [-1359.97, -1077.43], [-1359.76, -1069.51], [-1361.43, -1069.47], [-1361.24, -1061.98], [-1359.68, -1062.01], [-1359.58, -1057.97]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1356.57, -909.08], [-1358.05, -963.31], [-1335.89, -963.93], [-1334.38, -909.7], [-1356.57, -909.08]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1307.21, -915.56], [-1292.54, -921.84], [-1308.11, -958.01], [-1322.78, -951.73], [-1307.21, -915.56]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1285.27, -924.05], [-1270.34, -930.54], [-1286.24, -966.86], [-1301.17, -960.35], [-1285.27, -924.05]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1263.81, -933.28], [-1251.21, -938.84], [-1267.48, -975.4], [-1280.06, -969.83], [-1263.81, -933.28]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1262.47, -995.02], [-1272.83, -1004.34], [-1246.6, -1033.31], [-1236.23, -1023.98], [-1262.47, -995.02]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1295.48, -1027.68], [-1297.73, -1029.7], [-1298.12, -1029.28], [-1298.44, -1029.56], [-1299.83, -1028.02], [-1304.2, -1031.95], [-1302.63, -1033.69], [-1302.95, -1033.98], [-1302.62, -1034.33], [-1304.4, -1035.93], [-1303.57, -1036.84], [-1304.13, -1037.35], [-1300.98, -1040.83], [-1300.35, -1040.25], [-1299.95, -1040.69], [-1299.44, -1040.23], [-1298.16, -1041.64], [-1298.7, -1042.14], [-1298.38, -1042.49], [-1299.9, -1043.87], [-1295.95, -1048.19], [-1294.33, -1046.73], [-1293.78, -1047.33], [-1294.16, -1047.68], [-1291.95, -1050.09], [-1291.65, -1049.81], [-1291.12, -1050.37], [-1292.56, -1051.67], [-1288.55, -1056.03], [-1287.22, -1054.81], [-1287.01, -1055.03], [-1286.57, -1054.62], [-1285.21, -1056.09], [-1285.75, -1056.6], [-1284.88, -1057.54], [-1285.46, -1058.06], [-1281.79, -1062.03], [-1278.8, -1059.28], [-1277.08, -1061.14], [-1272.74, -1057.14], [-1274.42, -1055.32], [-1272.44, -1053.5], [-1273.32, -1052.55], [-1272.55, -1051.85], [-1275.63, -1048.54], [-1276.19, -1049.06], [-1276.8, -1048.41], [-1277.37, -1048.94], [-1278.47, -1047.76], [-1277.92, -1047.25], [-1278.25, -1046.91], [-1276.71, -1045.49], [-1280.99, -1040.89], [-1282.57, -1042.34], [-1282.91, -1041.96], [-1282.53, -1041.61], [-1284.78, -1039.17], [-1285.13, -1039.49], [-1285.58, -1039.01], [-1283.89, -1037.46], [-1288.12, -1032.88], [-1289.58, -1034.22], [-1289.76, -1034.01], [-1290.25, -1034.46], [-1291.32, -1033.3], [-1290.74, -1032.77], [-1291.65, -1031.79], [-1290.93, -1031.14], [-1294.08, -1027.69], [-1294.84, -1028.38], [-1295.48, -1027.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1294.57, -1060.18], [-1285.99, -1069.37], [-1318.46, -1099.47], [-1327.04, -1090.27], [-1294.57, -1060.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2465.03, -1195.14], [-2457.19, -1195.26], [-2457.25, -1199.04], [-2457.31, -1202.21], [-2465.15, -1202.07], [-2465.03, -1195.14]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1678.38, -1129.18], [-1681.12, -1129.09], [-1681.07, -1127.42], [-1694.74, -1126.99], [-1694.18, -1108.81], [-1680.39, -1109.24], [-1680.35, -1107.77], [-1677.71, -1107.85], [-1677.92, -1114.66], [-1678.04, -1118.22], [-1678.22, -1124.11], [-1678.38, -1129.18]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3174.78, -363.76], [-3167.23, -362.86], [-3166.35, -370.12], [-3173.89, -371.03], [-3174.78, -363.76]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-3193.32, -362.93], [-3179.48, -361.26], [-3178.33, -370.68], [-3187.21, -371.76], [-3186.94, -373.94], [-3191.9, -374.54], [-3193.32, -362.93]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2803.14, -382.88], [-2798.3, -379.41], [-2794.06, -385.27], [-2798.91, -388.75], [-2803.14, -382.88]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2790.52, -353.32], [-2781.91, -353.47], [-2782.04, -360.85], [-2790.65, -360.7], [-2790.52, -353.32]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[744.25, 847.16], [749.43, 851.74], [782.36, 814.7], [777.17, 810.12], [744.25, 847.16]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[774.86, 828.8], [786.66, 839.24], [800.32, 823.91], [788.53, 813.47], [774.86, 828.8]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[760.07, 844.77], [771.86, 855.21], [785.53, 839.89], [773.74, 829.44], [760.07, 844.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[700.93, 730.41], [752.32, 777.07], [747.87, 781.93], [696.48, 735.25], [700.93, 730.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-694.13, -2213.77], [-686.93, -2214.35], [-687.45, -2220.79], [-694.67, -2220.21], [-694.13, -2213.77]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[826.09, 1152.68], [829.58, 1148.74], [825.36, 1145.03], [828.22, 1141.8], [823.92, 1138.03], [817.58, 1145.21], [826.09, 1152.68]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-773.84, -735.58], [-806.25, -700.39], [-822.36, -714.75], [-810.92, -727.39], [-818.96, -733.95], [-830.01, -721.55], [-846.3, -736.07], [-835.89, -747.77], [-844.46, -754.78], [-854.27, -743.17], [-871.56, -758.57], [-838.4, -794.61], [-773.84, -735.58]], "holes": []}, "height": 21.0}, {"shape": {"outer": [[2563.72, 1901.5], [2635.95, 1898.04], [2634.96, 1877.55], [2600.64, 1879.2], [2562.74, 1881.01], [2563.72, 1901.5]], "holes": []}, "height": 10.5}, {"shape": {"outer": [[-891.63, -695.39], [-892.7, -694.21], [-884.66, -686.99], [-883.66, -688.09], [-881.16, -685.85], [-869.96, -698.21], [-882.75, -709.7], [-893.89, -697.41], [-891.63, -695.39]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2102.76, -252.86], [-2039.64, -254.75], [-2035.29, -259.17], [-2024.27, -259.24], [-2013.39, -275.55], [-2038.49, -290.84], [-2061.11, -306.58], [-2062.27, -347.4], [-2105.88, -345.95], [-2104.48, -304.4], [-2102.76, -252.86]], "holes": []}, "height": 24.5}, {"shape": {"outer": [[225.48, 160.95], [230.33, 155.8], [223.6, 149.49], [218.75, 154.64], [225.48, 160.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1068.69, -126.23], [-1074.43, -125.93], [-1074.49, -126.99], [-1079.1, -126.75], [-1079.13, -127.39], [-1084.24, -127.13], [-1083.89, -120.9], [-1083.11, -105.86], [-1083.14, -105.68], [-1078.03, -105.95], [-1067.67, -106.48], [-1068.69, -126.23]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1105.39, -229.31], [-1106.23, -230.06], [-1108.47, -231.79], [-1100.6, -240.56], [-1096.9, -237.31], [-1098.92, -235.03], [-1100.08, -235.3], [-1105.39, -229.31]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-2868.44, -858.36], [-2863.41, -859.03], [-2864.28, -865.6], [-2869.31, -864.95], [-2868.44, -858.36]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[516.01, -76.4], [519.49, -87.69], [525.64, -85.81], [522.16, -74.52], [516.01, -76.4]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[145.28, -267.87], [163.09, -251.79], [165.75, -254.73], [177.43, -244.17], [184.71, -252.16], [190.16, -247.24], [179.96, -236.03], [200.88, -217.12], [202.01, -218.37], [234.15, -253.68], [235.46, -255.11], [179.61, -305.59], [145.28, -267.87]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-927.83, -113.49], [-928.85, -129.74], [-924.58, -129.99], [-924.66, -131.31], [-924.71, -132.02], [-922.77, -133.69], [-916.88, -134.06], [-915.68, -114.25], [-927.83, -113.49]], "holes": []}, "height": 7.0}, {"shape": {"outer": [[-2050.96, -134.19], [-2048.41, -134.28], [-2048.57, -138.36], [-2048.77, -143.22], [-2051.33, -143.11], [-2051.13, -138.25], [-2050.96, -134.19]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1270.96, -229.99], [-1281.86, -229.49], [-1283.12, -256.88], [-1283.17, -258.13], [-1280.34, -258.25], [-1272.27, -258.62], [-1270.96, -229.99]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1618.97, -1857.91], [-1604.63, -1884.37], [-1622.43, -1893.95], [-1626.87, -1885.76], [-1645.11, -1895.57], [-1636.84, -1910.85], [-1627.25, -1905.69], [-1618.47, -1921.89], [-1645.32, -1936.32], [-1662.83, -1904.28], [-1669.1, -1907.68], [-1669.84, -1906.31], [-1678.66, -1890.03], [-1618.97, -1857.91]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-1284.4, -38.04], [-1284.07, -31.4], [-1283.69, -23.75], [-1281.78, -23.83], [-1281.73, -22.71], [-1281.67, -21.7], [-1279.31, -21.82], [-1258.7, -22.84], [-1255.22, -23.0], [-1255.6, -31.25], [-1256.16, -42.14], [-1273.95, -41.27], [-1282.21, -40.87], [-1282.08, -38.16], [-1284.4, -38.04]], "holes": []}, "height": 28.0}, {"shape": {"outer": [[841.8, 317.12], [818.37, 342.6], [828.61, 351.72], [829.72, 350.37], [860.77, 378.56], [867.04, 371.36], [904.2, 405.09], [917.61, 391.17], [884.93, 361.18], [892.11, 353.56], [897.98, 357.95], [921.41, 332.91], [905.89, 318.46], [904.46, 320.06], [903.29, 319.03], [901.61, 317.55], [902.85, 315.84], [890.27, 304.25], [859.32, 339.19], [853.47, 334.11], [856.84, 330.42], [841.8, 317.12]], "holes": []}, "height": 17.5}, {"shape": {"outer": [[-1669.52, 52.12], [-1670.84, 52.18], [-1671.66, 52.21], [-1674.04, 52.32], [-1674.1, 51.04], [-1674.14, 50.08], [-1674.21, 48.6], [-1674.27, 47.33], [-1684.11, 47.78], [-1707.27, 48.83], [-1705.56, 86.18], [-1691.47, 85.54], [-1691.76, 79.07], [-1692.13, 71.17], [-1689.86, 71.06], [-1683.55, 70.77], [-1681.34, 70.67], [-1673.16, 70.29], [-1673.03, 72.94], [-1668.57, 72.73], [-1668.68, 70.53], [-1668.78, 68.37], [-1669.52, 52.12]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-577.11, 193.41], [-565.83, 203.85], [-562.22, 199.98], [-560.57, 198.21], [-562.14, 196.77], [-559.93, 194.41], [-568.49, 186.47], [-571.69, 189.93], [-572.67, 189.03], [-575.11, 191.66], [-577.11, 193.41]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-633.92, 276.95], [-623.81, 265.45], [-645.9, 246.17], [-647.79, 248.34], [-645.61, 250.24], [-648.81, 253.88], [-645.87, 256.44], [-648.42, 259.34], [-647.64, 260.03], [-648.65, 261.19], [-642.37, 266.67], [-643.82, 268.31], [-633.92, 276.95]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-576.78, 355.35], [-576.32, 355.77], [-575.57, 356.45], [-574.95, 357.02], [-576.37, 358.56], [-573.98, 360.73], [-569.83, 356.2], [-574.05, 352.37], [-576.78, 355.35]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-371.6, -2003.53], [-363.11, -2003.99], [-363.56, -2012.28], [-372.04, -2011.82], [-371.6, -2003.53]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1247.92, -2119.04], [-1239.24, -2119.38], [-1239.55, -2127.23], [-1248.23, -2126.89], [-1247.92, -2119.04]], "holes": []}, "height": 8.0}, {"shape": {"outer": [[-1278.49, -1012.17], [-1280.74, -1014.22], [-1281.12, -1013.81], [-1281.42, -1014.08], [-1282.74, -1012.63], [-1287.11, -1016.61], [-1285.77, -1018.08], [-1286.09, -1018.37], [-1285.77, -1018.72], [-1287.53, -1020.33], [-1286.68, -1021.24], [-1287.24, -1021.75], [-1283.99, -1025.3], [-1283.35, -1024.71], [-1282.96, -1025.15], [-1282.45, -1024.68], [-1281.2, -1026.04], [-1281.74, -1026.54], [-1281.42, -1026.89], [-1282.92, -1028.27], [-1278.95, -1032.6], [-1277.32, -1031.12], [-1276.76, -1031.74], [-1277.14, -1032.08], [-1274.95, -1034.47], [-1274.64, -1034.18], [-1274.1, -1034.77], [-1275.52, -1036.07], [-1271.54, -1040.39], [-1270.21, -1039.17], [-1270.01, -1039.39], [-1269.57, -1038.99], [-1268.16, -1040.5], [-1268.72, -1041.0], [-1267.85, -1041.94], [-1268.42, -1042.47], [-1264.78, -1046.4], [-1261.8, -1043.65], [-1260.08, -1045.51], [-1255.76, -1041.54], [-1257.44, -1039.73], [-1255.46, -1037.9], [-1256.34, -1036.96], [-1255.57, -1036.26], [-1258.63, -1032.96], [-1259.19, -1033.47], [-1259.8, -1032.82], [-1260.37, -1033.35], [-1261.47, -1032.16], [-1260.93, -1031.66], [-1261.25, -1031.31], [-1259.71, -1029.89], [-1263.99, -1025.28], [-1265.57, -1026.73], [-1265.91, -1026.37], [-1265.52, -1026.01], [-1267.79, -1023.56], [-1268.13, -1023.88], [-1268.56, -1023.41], [-1266.87, -1021.86], [-1271.12, -1017.28], [-1272.58, -1018.62], [-1272.76, -1018.42], [-1273.25, -1018.87], [-1274.33, -1017.7], [-1273.76, -1017.17], [-1274.68, -1016.18], [-1273.97, -1015.53], [-1277.08, -1012.17], [-1277.85, -1012.86], [-1278.49, -1012.17]], "holes": []}, "height": 8.0}], "water": [{"shape": {"outer": [[-2946.1, -1783.84], [-2941.49, -1782.01], [-2928.09, -1774.63], [-2909.87, -1767.47], [-2898.88, -1764.32], [-2886.23, -1757.35], [-2878.56, -1755.75], [-2848.55, -1745.1], [-2811.62, -1737.0], [-2799.2, -1734.96], [-2785.57, -1734.57], [-2773.72, -1732.3], [-2758.43, -1728.37], [-2745.0, -1723.75], [-2732.34, -1719.45], [-2718.85, -1712.67], [-2708.9, -1703.54], [-2702.61, -1701.13], [-2694.78, -1697.28], [-2687.13, -1696.07], [-2678.83, -1696.48], [-2673.94, -1695.66], [-2667.27, -1697.07], [-2657.06, -1697.33], [-2648.09, -1695.92], [-2638.92, -1693.66], [-2629.09, -1690.72], [-2617.45, -1687.09], [-2607.95, -1686.36], [-2598.47, -1686.38], [-2589.83, -1686.25], [-2583.25, -1687.76], [-2573.86, -1691.55], [-2565.0, -1696.12], [-2561.2, -1700.93], [-2558.61, -1704.31], [-2553.04, -1707.81], [-2544.91, -1708.87], [-2535.52, -1715.21], [-2529.68, -1725.28], [-2528.61, -1728.7], [-2530.03, -1731.76], [-2531.01, -1735.48], [-2529.64, -1741.27], [-2526.48, -1745.58], [-2526.08, -1747.87], [-2524.34, -1749.76], [-2523.76, -1751.17], [-2525.37, -1753.67], [-2525.37, -1755.23], [-2522.9, -1757.91], [-2521.01, -1758.88], [-2519.65, -1761.92], [-2519.34, -1765.73], [-2520.46, -1767.41], [-2520.1, -1769.11], [-2517.75, -1770.99], [-2516.84, -1778.61], [-2516.61, -1784.73], [-2517.79, -1786.95], [-2516.85, -1788.66], [-2515.52, -1789.59], [-2515.63, -1792.5], [-2517.87, -1796.73], [-2530.88, -1808.17], [-2531.57, -1811.34], [-2531.51, -1814.47], [-2529.46, -1824.12], [-2529.99, -1826.95], [-2526.18, -1831.97], [-2522.17, -1837.52], [-2519.11, -1840.13], [-2516.19, -1845.97], [-2509.37, -1852.28], [-2500.8, -1855.51], [-2496.72, -1854.71], [-2490.67, -1854.93], [-2488.4, -1854.91], [-2486.2, -1855.46], [-2478.54, -1860.97], [-2475.79, -1862.83], [-2472.21, -1867.54], [-2469.21, -1872.03], [-2472.73, -1876.53], [-2478.75, -1875.3], [-2489.48, -1874.12], [-2499.35, -1872.03], [-2503.93, -1870.22], [-2512.53, -1869.07], [-2540.46, -1862.07], [-2548.63, -1859.02], [-2552.93, -1855.86], [-2557.83, -1854.73], [-2562.66, -1856.26], [-2567.85, -1861.18], [-2575.1, -1870.55], [-2581.35, -1873.39], [-2587.46, -1875.24], [-2594.87, -1876.66], [-2602.25, -1876.36], [-2608.78, -1874.03], [-2613.89, -1870.44], [-2616.85, -1866.63], [-2618.28, -1862.21], [-2617.41, -1858.87], [-2615.68, -1848.4], [-2616.84, -1844.73], [-2618.65, -1841.94], [-2642.0, -1831.42], [-2667.42, -1817.74], [-2677.7, -1810.95], [-2678.2, -1809.51], [-2695.14, -1798.81], [-2696.08, -1796.83], [-2697.56, -1795.54], [-2710.2, -1792.73], [-2716.7, -1791.73], [-2721.81, -1791.7], [-2733.69, -1793.02], [-2749.09, -1799.24], [-2765.22, -1804.55], [-2774.55, -1806.84], [-2790.81, -1810.0], [-2819.91, -1817.08], [-2830.26, -1818.65], [-2850.48, -1820.15], [-2856.24, -1820.55], [-2867.45, -1820.18], [-2875.3, -1819.79], [-2884.41, -1817.47], [-2892.16, -1813.85], [-2904.39, -1804.11], [-2907.49, -1802.56], [-2910.87, -1800.61], [-2917.39, -1799.88], [-2931.6, -1801.07], [-2935.77, -1801.12], [-2943.42, -1799.4], [-2951.31, -1798.87], [-2952.77, -1784.54], [-2946.1, -1783.84]], "holes": [[[-2684.73, -1728.35], [-2686.15, -1735.95], [-2686.13, -1738.53], [-2687.13, -1744.48], [-2688.96, -1753.71], [-2690.72, -1765.37], [-2690.24, -1769.05], [-2689.36, -1772.69], [-2687.75, -1776.27], [-2682.75, -1779.94], [-2677.94, -1783.13], [-2668.02, -1786.72], [-2659.98, -1789.61], [-2645.69, -1797.94], [-2641.25, -1800.48], [-2638.34, -1800.97], [-2635.53, -1799.81], [-2632.31, -1796.76], [-2626.46, -1790.42], [-2620.54, -1784.54], [-2614.21, -1780.58], [-2608.42, -1776.12], [-2604.14, -1771.27], [-2600.4, -1770.34], [-2597.01, -1768.52], [-2594.54, -1766.58], [-2590.79, -1762.69], [-2588.8, -1760.37], [-2586.3, -1758.26], [-2580.88, -1753.85], [-2577.96, -1750.75], [-2575.1, -1748.9], [-2571.82, -1746.68], [-2569.04, -1743.94], [-2567.53, -1741.39], [-2567.74, -1738.94], [-2569.23, -1735.09], [-2571.7, -1728.56], [-2572.35, -1726.12], [-2573.87, -1723.12], [-2575.83, -1721.39], [-2577.22, -1721.18], [-2580.15, -1721.2], [-2582.12, -1719.75], [-2583.49, -1717.92], [-2588.16, -1714.9], [-2599.94, -1708.71], [-2605.38, -1707.33], [-2611.7, -1706.5], [-2624.94, -1707.42], [-2637.61, -1708.19], [-2651.07, -1708.21], [-2663.53, -1708.59], [-2672.39, -1711.65], [-2674.97, -1714.13], [-2677.33, -1716.84], [-2680.35, -1722.09], [-2684.73, -1728.35]]]}}, {"shape": {"outer": [[-1508.4, -1803.37], [-1524.96, -1738.15], [-1522.59, -1661.65], [-1519.28, -1596.02], [-1519.53, -1557.11], [-1515.72, -1505.69], [-1515.76, -1494.42], [-1512.52, -1462.53], [-1508.28, -1453.44], [-1502.9, -1444.66], [-1499.01, -1440.39], [-1492.84, -1429.83], [-1489.03, -1428.06], [-1484.97, -1423.87], [-1472.05, -1407.03], [-1459.34, -1398.87], [-1452.99, -1397.99], [-1448.06, -1398.28], [-1444.36, -1397.2], [-1439.73, -1396.83], [-1435.56, -1396.31], [-1429.93, -1396.43], [-1424.36, -1396.03], [-1419.62, -1396.29], [-1406.67, -1396.54], [-1401.64, -1398.75], [-1392.8, -1398.78], [-1378.47, -1400.28], [-1373.32, -1402.36], [-1369.38, -1402.42], [-1366.2, -1402.73], [-1361.78, -1402.09], [-1357.28, -1400.06], [-1352.83, -1396.97], [-1344.57, -1375.53], [-1345.49, -1373.16], [-1343.13, -1367.06], [-1339.38, -1360.54], [-1336.32, -1354.09], [-1325.88, -1335.37], [-1322.58, -1331.11], [-1319.39, -1324.77], [-1312.96, -1319.25], [-1312.04, -1318.33], [-1311.36, -1317.66], [-1305.87, -1312.47], [-1300.07, -1308.59], [-1287.9, -1299.73], [-1283.25, -1297.23], [-1278.14, -1294.87], [-1272.65, -1291.14], [-1265.3, -1287.46], [-1254.07, -1283.24], [-1248.08, -1282.65], [-1242.16, -1279.85], [-1238.88, -1279.7], [-1235.81, -1278.38], [-1230.54, -1276.45], [-1224.76, -1275.37], [-1213.5, -1272.87], [-1210.61, -1272.23], [-1207.39, -1271.9], [-1205.07, -1272.2], [-1203.18, -1272.62], [-1191.5, -1271.76], [-1169.83, -1272.54], [-1168.64, -1273.41], [-1167.09, -1272.53], [-1165.35, -1272.46], [-1163.96, -1271.41], [-1162.4, -1272.45], [-1160.91, -1272.17], [-1157.94, -1272.84], [-1153.23, -1272.72], [-1144.14, -1272.97], [-1143.06, -1273.61], [-1141.78, -1273.51], [-1139.38, -1273.73], [-1137.0, -1274.23], [-1134.64, -1275.2], [-1129.11, -1275.04], [-1123.6, -1276.16], [-1111.15, -1279.2], [-1104.93, -1281.15], [-1101.7, -1282.06], [-1099.06, -1283.49], [-1086.83, -1285.97], [-1075.02, -1291.68], [-1062.27, -1296.83], [-1049.53, -1302.98], [-1034.42, -1313.18], [-1018.03, -1324.22], [-965.21, -1360.89], [-954.43, -1367.75], [-933.56, -1382.9], [-928.05, -1385.36], [-922.45, -1387.81], [-916.89, -1389.99], [-911.41, -1392.17], [-904.11, -1395.31], [-898.8, -1395.58], [-893.4, -1396.9], [-888.04, -1397.92], [-882.72, -1398.27], [-877.97, -1399.64], [-873.79, -1399.15], [-872.45, -1400.18], [-859.99, -1395.35], [-839.91, -1393.51], [-823.04, -1390.5], [-803.09, -1377.83], [-762.44, -1350.41], [-733.96, -1333.1], [-716.32, -1327.33], [-698.82, -1322.86], [-695.81, -1324.03], [-693.28, -1324.64], [-689.36, -1324.5], [-686.77, -1322.69], [-684.06, -1321.34], [-682.45, -1319.59], [-679.7, -1316.29], [-677.0, -1312.86], [-673.88, -1307.53], [-671.99, -1306.51], [-671.04, -1307.17], [-670.05, -1306.68], [-662.6, -1293.63], [-655.1, -1281.56], [-647.98, -1271.74], [-644.91, -1265.71], [-643.62, -1261.78], [-641.48, -1257.68], [-640.55, -1257.3], [-638.86, -1253.18], [-636.5, -1248.08], [-637.28, -1246.05], [-635.55, -1242.39], [-632.84, -1237.88], [-630.76, -1232.32], [-630.46, -1228.68], [-627.74, -1223.39], [-626.21, -1214.65], [-623.22, -1204.26], [-621.62, -1200.98], [-614.97, -1186.63], [-606.35, -1170.46], [-596.47, -1151.31], [-594.03, -1147.2], [-591.41, -1142.36], [-585.28, -1136.74], [-583.53, -1133.1], [-582.39, -1131.08], [-576.92, -1120.09], [-569.82, -1107.16], [-558.77, -1091.01], [-555.0, -1085.64], [-550.39, -1080.52], [-544.78, -1072.25], [-543.5, -1070.73], [-538.87, -1064.84], [-532.73, -1059.38], [-531.34, -1057.51], [-526.81, -1054.9], [-524.67, -1052.98], [-520.81, -1051.11], [-512.4, -1043.19], [-508.55, -1042.15], [-505.13, -1039.52], [-498.67, -1036.39], [-482.39, -1028.64], [-468.46, -1026.12], [-462.62, -1024.18], [-453.83, -1024.14], [-451.62, -1025.18], [-432.02, -1026.1], [-410.79, -1038.93], [-386.94, -1046.49], [-377.88, -1049.3], [-362.05, -1034.59], [-338.84, -996.98], [-330.99, -984.26], [-297.01, -926.04], [-289.08, -914.36], [-268.62, -883.58], [-251.24, -862.46], [-199.16, -801.93], [-166.88, -770.45], [-143.05, -744.15], [-127.96, -730.27], [-111.03, -717.44], [-95.03, -702.9], [-83.4, -689.9], [-68.75, -676.67], [-55.51, -661.43], [-50.67, -655.8], [-37.77, -643.1], [-28.55, -636.3], [-28.09, -633.7], [-18.61, -627.32], [-8.82, -620.56], [-1.2, -615.69], [5.8, -609.18], [15.85, -599.12], [27.68, -587.31], [30.86, -584.5], [34.9, -581.68], [39.48, -579.36], [43.93, -577.58], [48.95, -576.1], [56.39, -573.83], [64.59, -570.83], [67.49, -569.44], [71.0, -567.41], [77.44, -562.53], [91.18, -548.8], [110.83, -529.44], [116.54, -523.79], [123.94, -516.67], [156.12, -484.09], [162.91, -477.44], [166.43, -473.09], [172.94, -463.98], [180.75, -452.47], [192.26, -435.38], [205.52, -415.78], [212.6, -405.21], [216.66, -399.61], [222.49, -394.09], [224.09, -393.83], [232.11, -387.17], [237.41, -385.0], [248.04, -377.33], [263.26, -363.14], [265.57, -359.83], [268.7, -352.56], [273.78, -343.86], [299.06, -318.25], [307.86, -309.78], [308.54, -306.94], [307.73, -304.87], [313.44, -298.61], [316.65, -297.79], [325.81, -288.81], [327.7, -281.04], [334.08, -270.09], [335.92, -265.03], [338.41, -253.69], [345.13, -239.96], [350.02, -235.89], [354.5, -232.65], [361.24, -226.95], [363.33, -220.48], [363.29, -218.85], [369.25, -212.59], [374.36, -207.49], [378.49, -206.23], [386.46, -198.7], [393.9, -192.6], [398.27, -188.05], [398.7, -182.91], [402.31, -182.4], [407.89, -173.31], [415.92, -162.51], [420.91, -158.63], [424.96, -155.7], [426.06, -154.81], [427.3, -153.82], [433.08, -154.75], [434.82, -154.07], [454.94, -139.03], [456.86, -135.57], [460.22, -136.0], [463.65, -134.08], [472.85, -125.3], [476.67, -122.39], [483.15, -119.46], [488.14, -115.62], [491.91, -114.61], [495.97, -111.93], [503.52, -109.15], [509.59, -106.71], [510.89, -105.77], [512.0, -102.2], [515.32, -101.69], [515.95, -100.17], [517.47, -100.16], [519.77, -97.94], [521.09, -95.8], [520.2, -91.45], [521.64, -89.12], [526.4, -86.48], [528.32, -84.43], [531.78, -85.25], [535.96, -84.73], [539.83, -82.54], [545.12, -81.58], [548.56, -79.91], [561.48, -73.83], [566.8, -70.42], [603.78, -52.56], [608.48, -48.79], [610.02, -48.18], [618.04, -44.49], [639.31, -37.41], [642.74, -33.78], [646.8, -32.68], [659.49, -23.4], [666.89, -20.56], [669.66, -20.55], [673.05, -19.3], [693.33, -15.34], [709.31, -8.92], [715.28, -5.11], [724.35, 1.44], [726.63, 3.57], [730.01, 4.68], [733.66, 4.77], [737.48, 18.21], [742.91, 19.68], [751.56, 19.71], [758.33, 25.85], [770.43, 33.26], [776.94, 41.81], [783.57, 43.82], [805.32, 57.62], [809.25, 66.21], [823.28, 73.82], [827.53, 79.18], [834.6, 82.02], [842.88, 89.36], [851.61, 95.5], [873.37, 101.03], [901.09, 109.62], [904.29, 110.26], [917.64, 112.56], [932.28, 117.83], [948.5, 120.45], [960.74, 125.31], [982.17, 127.07], [1001.3, 131.74], [1017.77, 134.59], [1027.74, 134.54], [1032.32, 137.01], [1033.45, 138.41], [1039.8, 141.92], [1047.38, 143.2], [1055.17, 142.72], [1056.22, 138.3], [1059.98, 136.46], [1060.59, 133.92], [1061.93, 132.98], [1071.77, 136.63], [1078.29, 141.39], [1089.04, 143.93], [1094.58, 145.59], [1100.09, 148.34], [1102.99, 149.66], [1106.79, 150.06], [1112.07, 151.38], [1120.21, 154.17], [1127.69, 158.69], [1137.06, 162.45], [1146.42, 165.73], [1149.91, 170.85], [1159.2, 174.25], [1165.33, 181.67], [1201.68, 200.45], [1209.26, 204.37], [1234.06, 212.93], [1263.17, 220.32], [1278.75, 226.52], [1293.43, 235.25], [1327.6, 253.23], [1341.2, 263.46], [1355.79, 272.67], [1373.24, 283.3], [1407.67, 304.12], [1418.9, 318.11], [1433.25, 322.22], [1460.89, 323.56], [1476.41, 331.54], [1481.75, 342.09], [1490.51, 352.7], [1502.77, 361.08], [1505.55, 363.09], [1512.68, 369.66], [1521.07, 377.38], [1540.32, 391.9], [1586.91, 427.52], [1616.21, 444.68], [1633.3, 454.04], [1668.58, 484.39], [1674.6, 488.35], [1693.94, 501.02], [1709.26, 519.0], [1721.08, 526.12], [1737.6, 536.02], [1756.85, 546.38], [1776.79, 556.51], [1798.35, 556.07], [1846.31, 581.32], [1894.02, 606.33], [1939.01, 639.98], [2008.07, 695.04], [2014.67, 699.72], [2022.13, 705.01], [2031.52, 711.67], [2037.07, 722.48], [2061.27, 744.63], [2074.07, 752.8], [2084.03, 764.58], [2128.1, 804.47], [2134.62, 809.87], [2158.41, 830.1], [2168.65, 828.4], [2170.78, 842.13], [2188.6, 862.56], [2212.57, 902.77], [2240.06, 943.47], [2252.74, 962.26], [2253.23, 974.25], [2260.74, 981.49], [2271.74, 989.82], [2281.32, 989.52], [2297.05, 998.36], [2337.8, 1033.36], [2354.71, 1044.21], [2361.06, 1048.14], [2361.77, 1053.77], [2371.97, 1061.43], [2380.37, 1066.97], [2401.39, 1087.38], [2409.0, 1095.66], [2414.16, 1104.64], [2420.96, 1113.44], [2433.92, 1118.02], [2491.72, 1192.33], [2536.15, 1249.87], [2554.65, 1270.68], [2568.15, 1284.67], [2579.37, 1294.8], [2594.53, 1306.14], [2618.07, 1319.42], [2643.38, 1333.94], [2702.12, 1355.8], [2720.65, 1362.25], [2732.68, 1370.63], [2757.8, 1378.2], [2794.33, 1387.88], [2821.43, 1389.36], [2836.71, 1394.39], [2841.37, 1399.72], [2860.56, 1406.24], [2872.23, 1408.08], [2886.18, 1410.28], [2902.27, 1412.13], [2910.87, 1419.91], [2937.8, 1427.18], [2978.94, 1435.35], [3006.07, 1449.35], [3027.36, 1450.36], [3032.03, 1449.09], [3040.46, 1446.78], [3051.81, 1449.36], [3058.52, 1447.23], [3068.7, 1444.5], [3074.5, 1442.94], [3096.15, 1445.55], [3122.28, 1446.74], [3126.7, 1443.41], [3149.98, 1446.93], [3198.81, 1442.36], [3226.81, 1441.57], [3272.84, 1440.29], [3323.44, 1441.44], [3360.99, 1448.1], [3412.61, 1462.38], [3440.88, 1471.22], [3494.75, 1485.44], [3527.42, 1490.63], [3554.72, 1496.87], [3623.01, 1487.45], [3640.86, 1500.48], [3668.47, 1505.18], [3738.28, 1473.79], [3767.31, 1474.51], [3780.64, 1467.77], [3790.25, 1469.4], [3821.17, 1465.58], [3833.04, 1461.22], [3835.02, 1458.07], [3839.02, 1421.33], [3846.95, 1414.29], [3850.32, 1419.21], [3845.28, 1423.97], [3840.86, 1458.01], [3864.83, 1450.04], [3879.85, 1433.69], [3924.26, 1398.17], [3960.6, 1368.68], [4002.08, 1333.29], [4046.0, 1296.63], [4095.68, 1239.28], [4148.13, 1181.57], [4155.38, 1188.64], [4175.33, 1175.32], [4189.2, 1177.27], [4202.27, 1159.25], [4211.22, 1166.42], [4228.35, 1145.72], [4240.81, 1136.56], [4283.2, 1108.44], [4290.76, 1097.55], [4321.02, 1069.5], [4328.81, 1055.98], [4342.86, 1042.68], [4351.09, 1040.73], [4376.1, 1008.22], [4401.13, 964.21], [4409.19, 949.45], [4435.24, 903.87], [4464.79, 847.26], [4496.88, 779.68], [4522.34, 719.41], [4524.81, 722.05], [4549.43, 644.63], [4567.37, 586.68], [4586.92, 507.33], [4601.89, 430.12], [4609.62, 366.53], [4612.19, 322.58], [4609.89, 280.97], [4605.75, 254.97], [4601.21, 241.09], [4593.29, 211.19], [4577.77, 171.61], [4564.63, 164.98], [4543.48, 154.33], [4532.42, 149.18], [4526.15, 146.25], [4496.5, 137.52], [4482.79, 131.01], [4458.33, 111.61], [4440.52, 101.65], [4424.99, 94.6], [4412.59, 88.05], [4398.08, 78.79], [4379.28, 59.08], [4369.54, 45.57], [4357.12, 24.02], [4341.84, -10.12], [4327.74, -36.62], [4317.08, -64.14], [4309.92, -82.59], [4274.82, -161.41], [4266.51, -187.63], [4262.42, -199.49], [4259.85, -206.93], [4258.45, -210.97], [4257.7, -212.41], [4255.36, -216.88], [4250.96, -225.29], [4247.98, -231.0], [4228.57, -268.1], [4206.99, -303.57], [4200.56, -312.28], [4173.37, -349.27], [4132.86, -390.98], [4091.07, -431.6], [4061.13, -450.78], [4010.31, -479.15], [3963.62, -506.4], [3952.93, -509.23], [3930.24, -516.18], [3923.89, -518.09], [3923.25, -519.81], [3923.0, -522.31], [3936.18, -569.67], [3938.55, -577.85], [3935.42, -587.46], [3924.32, -590.5], [3917.46, -585.42], [3913.41, -581.64], [3911.65, -576.04], [3912.74, -568.24], [3908.7, -515.18], [3908.44, -513.08], [3909.55, -511.07], [3905.11, -510.43], [3900.12, -510.28], [3897.11, -511.59], [3896.68, -516.54], [3887.66, -517.78], [3880.61, -519.15], [3878.2, -519.09], [3877.47, -519.07], [3876.93, -514.79], [3875.39, -511.86], [3872.21, -510.41], [3864.67, -507.67], [3844.2, -499.99], [3842.85, -498.09], [3823.33, -492.5], [3804.56, -491.32], [3788.54, -491.67], [3754.19, -497.7], [3691.03, -518.72], [3611.29, -555.62], [3601.34, -559.01], [3592.74, -560.55], [3579.04, -561.17], [3570.03, -561.57], [3561.84, -561.13], [3557.77, -559.93], [3552.31, -557.98], [3550.89, -556.77], [3545.23, -552.0], [3535.26, -546.97], [3533.78, -546.57], [3499.39, -537.46], [3479.06, -534.48], [3454.15, -533.79], [3435.57, -536.72], [3400.49, -544.65], [3367.03, -560.16], [3341.02, -578.65], [3303.59, -611.83], [3272.8, -652.32], [3247.48, -686.66], [3213.27, -744.68], [3193.95, -780.22], [3180.46, -805.03], [3169.29, -825.59], [3127.82, -898.45], [3100.83, -942.39], [3083.9, -962.58], [3067.3, -978.22], [3057.78, -987.19], [3048.64, -996.38], [3031.89, -1004.14], [3005.28, -1020.06], [2991.91, -1032.23], [2982.64, -1039.99], [2974.19, -1050.87], [2964.21, -1061.15], [2950.75, -1073.33], [2930.73, -1081.33], [2917.05, -1086.28], [2879.0, -1092.11], [2867.08, -1092.78], [2856.4, -1096.15], [2841.88, -1103.56], [2825.61, -1113.18], [2790.79, -1137.32], [2757.14, -1163.05], [2731.58, -1191.24], [2709.61, -1216.41], [2704.22, -1225.59], [2694.56, -1235.99], [2680.63, -1247.16], [2644.28, -1273.71], [2621.14, -1293.95], [2610.28, -1307.93], [2603.67, -1321.25], [2597.79, -1339.09], [2595.86, -1352.71], [2587.73, -1386.93], [2578.23, -1419.54], [2574.03, -1428.0], [2568.4, -1445.75], [2512.08, -1561.6], [2488.21, -1620.63], [2482.37, -1629.62], [2473.29, -1660.55], [2445.42, -1733.46], [2428.48, -1774.53], [2414.2, -1809.39], [2405.55, -1832.3], [2391.11, -1895.86], [2389.74, -1900.34], [2383.0, -1922.61], [2379.16, -1950.51], [2378.42, -1958.7], [2378.98, -1993.15], [2382.79, -2034.71], [2390.44, -2072.83], [2404.29, -2116.78], [2428.28, -2162.24], [2447.56, -2192.35], [2476.97, -2222.07], [2511.57, -2249.49], [2531.21, -2260.95], [2534.66, -2263.25], [2558.23, -2277.25], [2568.36, -2278.87], [2575.53, -2276.17], [2583.71, -2276.11], [2597.22, -2267.5], [2602.12, -2263.4], [2609.09, -2259.06], [2618.02, -2254.85], [2645.34, -2246.1], [2691.73, -2238.41], [2723.98, -2233.76], [2748.67, -2231.05], [2777.96, -2230.24], [2791.68, -2233.54], [2796.67, -2235.26], [2806.2, -2236.06], [2808.92, -2233.75], [2841.06, -2233.06], [2845.11, -2230.53], [2847.9, -2206.8], [2849.19, -2179.34], [2848.0, -2174.54], [2847.72, -2165.54], [2845.27, -2158.59], [2844.83, -2154.88], [2841.97, -2152.95], [2832.65, -2154.02], [2832.18, -2151.63], [2836.75, -2149.9], [2846.51, -2152.03], [2847.56, -2143.06], [2847.72, -2117.94], [2845.26, -2092.22], [2845.74, -2065.78], [2848.02, -2040.98], [2845.46, -2037.74], [2849.63, -2030.98], [2849.61, -2012.46], [2850.48, -2010.11], [2849.91, -1992.64], [2847.48, -1974.86], [2847.43, -1938.88], [2847.66, -1921.17], [2846.94, -1908.72], [2849.61, -1898.75], [2855.04, -1884.88], [2862.28, -1872.92], [2867.38, -1870.94], [2869.77, -1870.75], [2878.38, -1876.02], [2888.21, -1885.02], [2890.47, -1889.84], [2889.51, -1895.63], [2882.27, -1907.86], [2877.08, -1922.26], [2876.08, -1929.9], [2875.8, -1939.91], [2871.16, -1963.35], [2865.5, -1985.14], [2862.87, -2003.59], [2861.47, -2006.19], [2861.32, -2020.99], [2868.7, -2021.09], [2868.38, -2026.7], [2861.31, -2026.18], [2862.16, -2041.62], [2861.65, -2065.69], [2860.54, -2082.51], [2860.07, -2099.36], [2860.82, -2112.55], [2862.33, -2174.24], [2862.74, -2199.78], [2862.39, -2223.86], [2863.95, -2231.45], [2866.71, -2234.6], [2871.06, -2236.63], [2898.16, -2241.24], [2920.45, -2244.75], [2942.02, -2245.83], [2948.95, -2245.87], [2970.8, -2248.25], [2973.67, -2249.29], [2989.25, -2251.01], [2999.35, -2251.33], [3004.39, -2251.28], [3014.67, -2251.26], [3017.43, -2250.41], [3020.73, -2249.41], [3024.89, -2249.31], [3028.17, -2249.19], [3033.04, -2247.14], [3034.47, -2248.34], [3059.81, -2247.38], [3081.06, -2242.64], [3085.14, -2240.61], [3129.21, -2228.42], [3141.67, -2225.8], [3147.01, -2225.95], [3150.97, -2225.2], [3151.9, -2223.39], [3152.21, -2221.39], [3162.32, -2219.59], [3164.42, -2216.85], [3163.71, -2212.29], [3167.65, -2210.91], [3169.23, -2214.01], [3172.18, -2215.36], [3176.17, -2213.83], [3202.25, -2196.01], [3208.93, -2188.1], [3226.26, -2180.06], [3249.79, -2171.66], [3255.37, -2167.15], [3268.01, -2155.5], [3280.08, -2146.28], [3297.77, -2137.32], [3307.14, -2133.8], [3311.23, -2123.26], [3343.72, -2044.69], [3347.7, -2046.94], [3352.22, -2049.48], [3325.9, -2122.22], [3325.36, -2135.87], [3327.77, -2142.83], [3334.99, -2147.03], [3345.01, -2147.2], [3356.63, -2145.75], [3363.97, -2148.46], [3383.68, -2172.17], [3389.29, -2178.67], [3401.85, -2187.4], [3409.05, -2193.28], [3423.17, -2206.7], [3429.74, -2218.0], [3437.94, -2230.78], [3442.97, -2237.78], [3447.75, -2245.01], [3448.27, -2260.24], [3458.29, -2278.79], [3462.38, -2286.81], [3462.85, -2297.88], [3466.89, -2320.96], [3471.19, -2334.71], [3477.61, -2336.68], [3483.25, -2339.97], [3486.47, -2343.38], [3481.97, -2348.65], [3480.17, -2358.3], [3479.71, -2374.84], [3479.83, -2392.48], [3475.71, -2395.01], [3477.0, -2398.31], [3480.75, -2402.77], [3485.36, -2426.49], [3490.16, -2431.54], [3486.66, -2446.22], [3479.58, -2471.38], [3469.98, -2502.89], [3462.82, -2537.59], [3465.65, -2556.63], [3466.78, -2571.92], [3467.94, -2581.97], [3472.48, -2607.24], [3475.45, -2636.53], [3476.82, -2645.35], [3475.91, -2647.04], [3474.3, -2652.9], [3476.37, -2661.44], [3481.23, -2668.18], [3479.09, -2680.9], [3469.54, -2703.08], [3466.48, -2709.48], [3470.75, -2728.68], [3476.18, -2740.76], [3483.02, -2760.66], [3489.44, -2782.45], [3487.65, -2785.8], [3468.87, -2792.3], [3456.14, -2795.39], [3437.55, -2792.23], [3430.11, -2777.86], [3423.06, -2775.18], [3415.79, -2777.92], [3402.58, -2764.92], [3394.8, -2753.72], [3394.95, -2751.25], [3397.87, -2752.33], [3405.4, -2749.53], [3409.76, -2741.16], [3409.83, -2735.15], [3401.99, -2723.73], [3388.55, -2715.49], [3374.19, -2710.19], [3357.15, -2707.45], [3345.04, -2711.67], [3330.81, -2721.73], [3306.53, -2736.55], [3286.95, -2741.79], [3262.11, -2750.97], [3252.39, -2758.87], [3242.42, -2772.97], [3229.72, -2791.59], [3215.77, -2800.02], [3211.21, -2807.56], [3201.2, -2821.74], [3192.62, -2830.0], [3185.18, -2833.69], [3179.21, -2842.01], [3175.88, -2840.64], [3170.5, -2842.12], [3164.68, -2842.4], [3158.42, -2841.11], [3154.28, -2838.88], [3150.28, -2839.07], [3149.12, -2837.03], [3131.44, -2836.99], [3117.75, -2849.68], [3082.85, -2851.84], [3043.04, -2889.61], [3008.01, -2893.8], [2944.97, -2926.73], [2901.28, -2914.1], [2873.78, -2913.89], [2837.14, -2906.89], [2801.93, -2902.25], [2773.73, -2898.54], [2748.11, -2886.42], [2727.16, -2888.78], [2709.07, -2887.57], [2685.24, -2885.32], [2665.1, -2878.39], [2630.73, -2872.58], [2600.17, -2869.14], [2569.94, -2876.54], [2548.03, -2883.24], [2482.03, -2922.24], [2418.45, -2940.66], [2366.23, -2944.42], [2353.12, -2943.63], [2344.14, -2944.3], [2334.67, -2942.97], [2319.21, -2938.79], [2289.18, -2937.16], [2268.44, -2928.75], [2239.83, -2925.07], [2192.32, -2921.87], [2175.99, -2922.49], [2167.75, -2925.18], [2163.06, -2924.4], [2140.81, -2930.84], [2111.66, -2943.5], [2082.4, -2954.37], [2050.79, -2968.85], [2006.96, -3011.52], [1990.05, -3039.08], [1973.45, -3067.66], [1965.15, -3087.33], [1963.93, -3101.36], [1959.79, -3114.48], [1956.26, -3125.43], [1951.35, -3136.01], [1937.35, -3152.44], [1920.9, -3162.87], [1906.98, -3175.97], [1895.92, -3180.63], [1885.79, -3186.02], [1873.21, -3193.96], [1842.3, -3203.27], [1828.37, -3208.79], [1817.57, -3212.51], [1808.47, -3214.87], [1795.5, -3219.95], [1792.41, -3220.87], [1784.71, -3223.19], [1778.02, -3224.66], [1773.44, -3224.96], [1770.41, -3225.16], [1768.59, -3222.03], [1763.42, -3220.23], [1748.55, -3218.94], [1712.17, -3206.37], [1682.72, -3196.17], [1621.34, -3178.76], [1592.58, -3167.49], [1544.48, -3136.29], [1496.57, -3121.66], [1462.59, -3132.89], [1414.8, -3160.74], [1378.22, -3183.6], [1355.49, -3224.23], [1296.53, -3305.53], [1255.03, -3352.31], [1248.43, -3369.55], [1249.51, -3377.65], [1248.62, -3386.12], [1238.38, -3396.61], [1225.01, -3405.7], [1171.83, -3428.24], [1112.28, -3458.27], [1038.17, -3467.33], [1000.26, -3465.18], [886.88, -3373.92], [777.68, -3269.97], [758.6, -3216.75], [800.52, -3085.86], [819.31, -3039.87], [836.47, -2998.83], [841.31, -2970.47], [837.13, -2945.25], [841.49, -2914.7], [886.84, -2854.34], [915.57, -2814.79], [955.83, -2779.91], [994.97, -2760.23], [1022.69, -2741.37], [1033.24, -2718.1], [1036.83, -2690.32], [1024.25, -2664.86], [1008.35, -2654.52], [962.72, -2646.5], [930.26, -2627.61], [919.58, -2622.0], [899.49, -2633.63], [897.84, -2634.59], [853.86, -2642.93], [816.37, -2641.07], [771.29, -2627.13], [720.74, -2605.66], [652.46, -2566.61], [528.78, -2441.84], [521.05, -2434.52], [453.17, -2366.29], [395.21, -2340.88], [378.71, -2335.93], [367.41, -2334.44], [363.09, -2334.91], [357.52, -2338.06], [352.07, -2337.13], [345.68, -2334.8], [334.67, -2329.81], [334.72, -2327.86], [334.01, -2325.3], [332.1, -2323.69], [323.57, -2320.92], [312.72, -2316.91], [312.36, -2316.69], [288.6, -2302.5], [278.66, -2294.68], [273.05, -2290.26], [264.21, -2283.31], [256.39, -2275.9], [241.69, -2261.96], [233.46, -2254.16], [228.4, -2248.25], [225.11, -2244.09], [221.83, -2239.93], [216.69, -2236.92], [207.42, -2228.17], [196.22, -2222.52], [182.5, -2210.83], [174.2, -2198.93], [122.15, -2144.89], [113.05, -2134.74], [105.33, -2126.11], [102.6, -2120.66], [87.73, -2099.06], [66.65, -2069.32], [50.25, -2045.01], [43.67, -2031.94], [41.54, -2029.08], [32.01, -2016.26], [24.96, -2006.33], [6.33, -1991.69], [-14.75, -1976.97], [-47.0, -1960.47], [-67.02, -1959.91], [-86.2, -1964.72], [-106.41, -1970.96], [-131.09, -1979.99], [-145.38, -1979.59], [-155.98, -1979.29], [-184.74, -1977.01], [-201.59, -1972.77], [-214.77, -1967.88], [-226.69, -1960.17], [-238.15, -1952.21], [-246.57, -1945.51], [-253.95, -1936.73], [-269.76, -1914.83], [-300.43, -1864.84], [-358.22, -1777.8], [-359.73, -1776.01], [-364.19, -1774.52], [-366.92, -1774.24], [-369.34, -1775.93], [-371.23, -1777.24], [-388.52, -1788.51], [-395.05, -1792.75], [-396.74, -1793.84], [-398.37, -1794.9], [-401.62, -1797.0], [-328.98, -1916.07], [-331.14, -1925.87], [-340.77, -1941.8], [-347.02, -1947.87], [-353.38, -1951.55], [-358.92, -1952.14], [-366.34, -1952.99], [-377.12, -1953.33], [-383.79, -1952.64], [-389.64, -1951.14], [-401.95, -1948.06], [-430.45, -1948.12], [-463.89, -1951.28], [-475.12, -1952.98], [-485.18, -1954.51], [-487.69, -1954.51], [-505.91, -1954.49], [-521.86, -1952.64], [-535.64, -1952.77], [-548.91, -1950.44], [-557.84, -1949.32], [-571.61, -1949.36], [-579.18, -1946.53], [-582.81, -1943.37], [-588.99, -1937.75], [-597.11, -1923.58], [-593.45, -1899.1], [-586.94, -1878.49], [-585.57, -1871.34], [-584.22, -1866.16], [-587.19, -1860.83], [-602.77, -1859.59], [-621.95, -1943.38], [-639.04, -2027.93], [-679.82, -2067.55], [-683.37, -2069.87], [-716.8, -2091.75], [-721.46, -2091.55], [-808.59, -2087.8], [-829.21, -2080.18], [-877.65, -2078.98], [-928.16, -2086.76], [-998.17, -2076.44], [-1073.92, -2069.7], [-1118.82, -2055.59], [-1166.08, -2051.59], [-1236.16, -2061.88], [-1291.56, -2070.37], [-1307.43, -2070.76], [-1328.06, -2069.34], [-1342.9, -2062.9], [-1360.11, -2051.58], [-1390.0, -2018.32], [-1479.54, -1855.76], [-1508.4, -1803.37]], "holes": [[[3411.59, -2655.38], [3414.0, -2653.88], [3404.12, -2646.97], [3395.26, -2644.2], [3407.89, -2653.01], [3411.59, -2655.38]], [[3410.73, -2550.08], [3414.51, -2556.64], [3415.82, -2561.35], [3429.86, -2561.37], [3443.29, -2557.8], [3440.06, -2544.44], [3448.44, -2528.17], [3456.17, -2509.0], [3461.72, -2477.95], [3467.38, -2455.85], [3465.52, -2431.76], [3460.95, -2415.13], [3458.03, -2390.65], [3456.44, -2395.99], [3459.06, -2418.31], [3457.64, -2430.46], [3451.65, -2438.55], [3433.6, -2440.21], [3421.95, -2444.9], [3417.1, -2450.86], [3412.26, -2469.39], [3406.95, -2492.2], [3409.25, -2512.72], [3411.09, -2537.17], [3410.73, -2550.08]], [[2936.57, -2452.45], [2952.02, -2429.81], [2962.51, -2408.16], [2960.68, -2405.12], [2937.89, -2395.0], [2922.48, -2388.82], [2909.57, -2386.44], [2903.58, -2383.98], [2898.76, -2381.26], [2891.85, -2380.49], [2869.02, -2382.15], [2837.17, -2386.15], [2825.9, -2387.27], [2811.61, -2382.27], [2798.14, -2379.3], [2777.13, -2377.28], [2754.66, -2376.37], [2749.75, -2376.81], [2747.06, -2379.89], [2736.98, -2379.61], [2726.91, -2378.47], [2710.4, -2380.87], [2699.97, -2382.59], [2692.66, -2386.13], [2676.02, -2392.85], [2673.07, -2395.35], [2672.46, -2397.93], [2698.61, -2427.33], [2719.86, -2454.38], [2750.22, -2482.13], [2767.06, -2495.05], [2778.45, -2495.7], [2785.13, -2493.63], [2794.52, -2495.1], [2800.62, -2493.43], [2804.17, -2491.78], [2809.96, -2491.42], [2816.96, -2491.62], [2822.63, -2493.52], [2834.9, -2490.94], [2860.35, -2490.21], [2896.31, -2486.77], [2914.14, -2480.85], [2925.97, -2470.55], [2924.58, -2468.5], [2929.66, -2463.46], [2936.57, -2452.45]], [[2650.27, -2376.04], [2655.09, -2377.75], [2660.99, -2376.61], [2692.6, -2365.73], [2708.9, -2360.96], [2741.28, -2360.12], [2784.59, -2359.15], [2796.78, -2361.24], [2798.41, -2365.64], [2811.94, -2366.02], [2837.35, -2364.55], [2851.85, -2361.91], [2875.99, -2358.66], [2907.88, -2359.56], [2953.01, -2371.71], [2963.37, -2376.36], [2970.32, -2375.92], [2982.14, -2343.57], [2992.52, -2325.19], [2999.52, -2307.94], [3013.63, -2290.1], [3022.88, -2274.02], [3018.37, -2270.28], [3000.43, -2270.65], [2942.87, -2265.13], [2894.01, -2261.14], [2849.07, -2258.15], [2812.86, -2254.96], [2807.76, -2250.03], [2794.65, -2249.66], [2787.55, -2253.37], [2759.14, -2253.01], [2730.25, -2254.38], [2712.74, -2255.2], [2699.49, -2259.62], [2678.08, -2259.46], [2665.35, -2261.28], [2644.27, -2264.61], [2625.7, -2271.94], [2608.36, -2282.34], [2603.86, -2287.01], [2600.1, -2296.05], [2600.38, -2301.73], [2601.55, -2316.36], [2642.02, -2365.93], [2650.27, -2376.04]], [[-579.84, -1734.29], [-585.66, -1763.36], [-598.47, -1820.14], [-596.67, -1830.65], [-586.25, -1832.9], [-582.69, -1831.05], [-575.83, -1815.64], [-562.58, -1738.92], [-566.6, -1734.51], [-579.84, -1734.29]], [[-498.11, -1309.75], [-514.91, -1401.58], [-533.78, -1510.73], [-538.46, -1525.78], [-542.13, -1534.1], [-547.52, -1536.15], [-662.18, -1350.8], [-666.94, -1345.79], [-674.08, -1351.15], [-672.11, -1355.4], [-626.76, -1433.36], [-548.3, -1557.32], [-545.9, -1565.99], [-572.4, -1693.27], [-570.54, -1698.25], [-560.51, -1700.05], [-556.54, -1698.47], [-553.47, -1694.1], [-540.45, -1618.79], [-537.9, -1605.51], [-533.78, -1599.73], [-528.71, -1598.93], [-524.45, -1599.68], [-513.72, -1615.0], [-420.75, -1766.26], [-416.59, -1769.2], [-410.15, -1765.46], [-406.44, -1762.66], [-388.29, -1749.82], [-383.34, -1743.61], [-382.47, -1738.63], [-396.79, -1711.18], [-428.44, -1664.82], [-454.59, -1613.35], [-468.64, -1566.26], [-476.23, -1512.49], [-475.27, -1470.1], [-469.96, -1428.83], [-461.45, -1390.12], [-447.56, -1334.1], [-433.35, -1273.86], [-429.29, -1246.43], [-433.15, -1237.14], [-453.96, -1234.43], [-481.59, -1225.07], [-498.11, -1309.75]], [[-473.66, -1167.45], [-475.54, -1184.82], [-460.17, -1185.26], [-423.47, -1190.96], [-412.59, -1181.45], [-404.96, -1162.43], [-392.9, -1115.73], [-392.67, -1106.9], [-395.76, -1099.83], [-414.89, -1093.79], [-429.01, -1088.76], [-433.12, -1082.53], [-448.08, -1078.11], [-473.66, -1167.45]]]}}, {"shape": {"outer": [[-8167.7, 2341.64], [-8172.33, 2345.1], [-8175.44, 2352.88], [-8178.36, 2369.68], [-8183.1, 2385.65], [-8188.85, 2416.02], [-8193.39, 2446.24], [-8196.3, 2458.05], [-8196.61, 2466.49], [-8201.42, 2483.55], [-8202.38, 2493.95], [-8208.25, 2523.98], [-8212.66, 2549.41], [-8215.25, 2577.0], [-8216.19, 2585.0], [-8226.31, 2663.21], [-8229.3, 2685.1], [-8231.53, 2687.63], [-8233.28, 2692.78], [-8230.26, 2692.41], [-8233.1, 2718.25], [-8236.55, 2721.24], [-8236.54, 2732.47], [-8233.98, 2733.51], [-8238.17, 2775.2], [-8240.76, 2785.87], [-8240.46, 2795.81], [-8240.92, 2805.36], [-8241.06, 2808.34], [-8244.23, 2831.55], [-8245.39, 2857.58], [-8245.47, 2920.48], [-8245.41, 2946.81], [-8245.37, 2967.01], [-8244.53, 3038.88], [-8242.73, 3088.57], [-8240.37, 3124.77], [-8237.19, 3156.1], [-8235.0, 3170.65], [-8233.64, 3200.19], [-8230.4, 3211.65], [-8228.29, 3228.6], [-8225.83, 3245.96], [-8220.61, 3259.5], [-8214.14, 3281.88], [-8202.17, 3316.18], [-8194.3, 3345.62], [-8197.6, 3350.9], [-8196.08, 3356.93], [-8192.76, 3363.81], [-8190.42, 3367.82], [-8169.15, 3404.4], [-8159.87, 3421.66], [-8144.84, 3440.14], [-8134.36, 3451.68], [-8121.32, 3463.32], [-8110.18, 3463.51], [-8096.63, 3446.42], [-8095.15, 3444.6], [-8084.62, 3441.32], [-8066.39, 3437.48], [-8052.57, 3436.21], [-8041.35, 3434.26], [-8033.22, 3437.23], [-8024.57, 3435.7], [-8004.54, 3448.77], [-7987.08, 3464.22], [-7969.3, 3473.21], [-7957.08, 3473.91], [-7941.91, 3466.59], [-7921.85, 3463.35], [-7898.48, 3464.25], [-7887.55, 3457.05], [-7855.23, 3449.22], [-7813.45, 3452.01], [-7799.82, 3463.97], [-7781.18, 3466.59], [-7771.99, 3472.13], [-7766.17, 3471.96], [-7762.96, 3481.9], [-7741.4, 3516.38], [-7724.03, 3541.99], [-7702.32, 3567.87], [-7682.16, 3590.03], [-7656.63, 3612.32], [-7642.11, 3625.01], [-7627.89, 3637.37], [-7619.51, 3642.38], [-7600.43, 3657.12], [-7582.14, 3665.89], [-7563.43, 3677.53], [-7545.35, 3691.67], [-7527.99, 3699.91], [-7517.41, 3709.22], [-7507.58, 3715.03], [-7500.48, 3715.46], [-7479.34, 3728.46], [-7448.33, 3743.78], [-7437.11, 3745.68], [-7428.58, 3747.95], [-7410.85, 3747.67], [-7400.27, 3749.73], [-7389.16, 3753.66], [-7366.56, 3764.62], [-7362.49, 3771.38], [-7346.48, 3779.23], [-7329.28, 3787.75], [-7297.94, 3801.58], [-7278.43, 3808.39], [-7268.58, 3814.83], [-7250.08, 3819.75], [-7236.83, 3820.96], [-7220.05, 3823.38], [-7202.3, 3823.46], [-7181.33, 3824.78], [-7158.13, 3825.37], [-7136.9, 3824.42], [-7123.18, 3824.91], [-7114.83, 3822.9], [-7111.94, 3821.44], [-7106.23, 3818.56], [-7105.3, 3816.73], [-7104.84, 3812.42], [-7096.05, 3806.54], [-7091.07, 3805.24], [-7088.08, 3802.96], [-7085.59, 3800.69], [-7087.72, 3795.51], [-7080.16, 3787.56], [-7076.37, 3780.29], [-7063.34, 3772.1], [-7058.79, 3770.71], [-7052.4, 3772.65], [-7048.62, 3775.74], [-7043.84, 3780.29], [-7038.55, 3795.86], [-7032.58, 3812.69], [-7022.71, 3841.6], [-7011.21, 3849.28], [-6994.49, 3858.23], [-6970.67, 3870.39], [-6954.71, 3881.21], [-6951.32, 3887.72], [-6947.61, 3892.82], [-6942.8, 3895.04], [-6935.73, 3893.18], [-6931.71, 3884.53], [-6934.77, 3877.3], [-6946.42, 3870.45], [-6967.07, 3859.75], [-6994.5, 3844.59], [-7002.57, 3837.01], [-7009.82, 3828.17], [-7010.05, 3820.52], [-7013.36, 3803.2], [-7020.15, 3785.99], [-7026.41, 3774.43], [-7029.9, 3769.16], [-7031.34, 3768.27], [-7036.23, 3766.23], [-7037.32, 3764.12], [-7038.08, 3761.07], [-7038.2, 3758.03], [-7029.07, 3746.43], [-7026.12, 3741.85], [-7025.51, 3740.92], [-7020.88, 3733.81], [-7018.98, 3730.92], [-7011.96, 3722.98], [-6991.21, 3700.86], [-6987.3, 3697.66], [-6985.27, 3694.28], [-6982.58, 3688.77], [-6977.27, 3683.64], [-6969.52, 3680.57], [-6960.48, 3681.49], [-6959.69, 3681.45], [-6936.31, 3680.07], [-6903.49, 3688.52], [-6886.48, 3695.4], [-6885.69, 3695.74], [-6878.78, 3698.72], [-6866.98, 3704.52], [-6851.93, 3715.9], [-6838.03, 3728.51], [-6827.0, 3740.01], [-6813.89, 3750.03], [-6790.04, 3770.14], [-6768.35, 3789.13], [-6744.8, 3806.89], [-6697.23, 3834.12], [-6674.51, 3848.11], [-6668.17, 3850.02], [-6652.45, 3854.78], [-6637.03, 3860.57], [-6612.6, 3862.62], [-6555.5, 3874.7], [-6517.39, 3887.25], [-6475.96, 3891.71], [-6440.29, 3894.3], [-6432.88, 3894.37], [-6428.74, 3893.1], [-6414.25, 3895.98], [-6412.21, 3898.34], [-6409.78, 3900.87], [-6404.67, 3902.39], [-6399.73, 3900.82], [-6395.67, 3901.89], [-6385.38, 3907.31], [-6366.42, 3911.89], [-6358.7, 3915.94], [-6336.99, 3927.37], [-6320.96, 3931.62], [-6303.59, 3941.28], [-6286.87, 3944.8], [-6274.16, 3943.13], [-6236.39, 3943.9], [-6214.73, 3944.34], [-6196.47, 3943.56], [-6183.03, 3940.56], [-6134.92, 3937.74], [-6098.3, 3931.93], [-6048.99, 3921.49], [-6018.33, 3914.92], [-5996.42, 3909.31], [-5926.77, 3888.11], [-5875.9, 3874.33], [-5848.87, 3865.25], [-5836.36, 3862.59], [-5830.85, 3864.49], [-5825.03, 3868.58], [-5820.92, 3871.53], [-5816.78, 3874.72], [-5810.78, 3876.91], [-5804.94, 3881.94], [-5797.0, 3885.73], [-5790.5, 3888.85], [-5786.56, 3893.46], [-5778.13, 3897.47], [-5770.45, 3899.81], [-5744.36, 3916.19], [-5718.77, 3925.79], [-5695.79, 3932.3], [-5684.28, 3938.2], [-5661.55, 3979.99], [-5636.66, 4028.75], [-5617.1, 4069.47], [-5597.83, 4113.32], [-5591.22, 4125.21], [-5583.75, 4140.17], [-5573.16, 4167.92], [-5557.17, 4193.16], [-5544.28, 4219.28], [-5531.47, 4243.06], [-5512.82, 4265.89], [-5507.82, 4276.26], [-5497.0, 4285.29], [-5475.74, 4317.01], [-5436.42, 4373.03], [-5431.65, 4379.62], [-5425.35, 4386.26], [-5395.94, 4417.29], [-5381.91, 4423.73], [-5344.2, 4470.16], [-5287.36, 4515.25], [-5259.24, 4540.92], [-5243.83, 4559.95], [-5206.31, 4586.51], [-5196.7, 4580.78], [-5190.01, 4585.8], [-5180.9, 4599.79], [-5161.79, 4611.32], [-5140.44, 4619.65], [-5133.99, 4626.08], [-5126.12, 4627.81], [-5116.25, 4631.41], [-5103.93, 4638.06], [-5087.24, 4647.31], [-5077.13, 4658.71], [-5061.36, 4676.94], [-5044.96, 4689.33], [-5028.12, 4704.02], [-5026.86, 4704.7], [-5001.1, 4718.81], [-4964.86, 4741.52], [-4957.64, 4747.93], [-4948.13, 4751.94], [-4933.85, 4759.31], [-4931.71, 4765.48], [-4924.54, 4770.34], [-4917.67, 4777.55], [-4904.37, 4791.56], [-4893.61, 4803.49], [-4890.0, 4806.13], [-4881.32, 4812.49], [-4868.89, 4823.04], [-4861.4, 4825.16], [-4854.23, 4830.02], [-4852.53, 4834.64], [-4844.61, 4837.92], [-4836.37, 4838.84], [-4828.81, 4843.68], [-4809.2, 4859.08], [-4772.89, 4897.76], [-4764.72, 4909.59], [-4760.0, 4924.26], [-4755.49, 4931.53], [-4753.66, 4940.44], [-4747.58, 4947.66], [-4734.98, 4964.43], [-4721.5, 4984.29], [-4714.78, 5000.07], [-4712.51, 5010.92], [-4699.21, 5047.73], [-4684.03, 5085.86], [-4666.03, 5112.99], [-4652.82, 5134.53], [-4648.97, 5146.1], [-4615.26, 5201.37], [-4599.45, 5235.41], [-4596.36, 5247.79], [-4583.36, 5264.55], [-4577.54, 5276.45], [-4579.06, 5285.26], [-4568.01, 5298.16], [-4556.51, 5314.02], [-4555.51, 5317.68], [-4552.67, 5328.06], [-4545.17, 5341.09], [-4540.7, 5348.05], [-4536.91, 5355.19], [-4531.81, 5361.03], [-4529.11, 5363.09], [-4523.83, 5367.56], [-4519.88, 5371.82], [-4508.29, 5385.18], [-4490.75, 5409.03], [-4483.5, 5417.12], [-4481.67, 5419.17], [-4469.3, 5436.54], [-4452.97, 5454.54], [-4438.67, 5477.13], [-4429.13, 5492.19], [-4418.44, 5503.54], [-4404.49, 5521.45], [-4384.57, 5544.92], [-4372.7, 5558.34], [-4365.76, 5566.0], [-4359.82, 5573.79], [-4328.64, 5623.14], [-4323.21, 5631.73], [-4308.35, 5650.43], [-4297.25, 5672.44], [-4282.23, 5699.82], [-4267.59, 5713.57], [-4258.26, 5740.73], [-4217.87, 5791.58], [-4191.49, 5817.3], [-4173.59, 5845.14], [-4159.83, 5856.89], [-4158.26, 5882.16], [-4152.72, 5909.43], [-4130.54, 5954.19], [-4112.62, 5982.99], [-4101.02, 6019.18], [-4094.12, 6038.51], [-4084.1, 6046.25], [-4076.17, 6060.45], [-4069.51, 6080.53], [-4060.37, 6138.54], [-4047.71, 6218.87], [-4038.45, 6239.46], [-3969.04, 6273.76], [-3973.9, 6283.45], [-4017.26, 6262.02], [-4023.51, 6274.88], [-4027.28, 6288.74], [-4028.23, 6304.08], [-4026.97, 6317.16], [-4025.98, 6327.36], [-4020.85, 6339.01], [-4013.87, 6351.22], [-4001.75, 6366.72], [-3990.62, 6375.9], [-3985.53, 6377.61], [-3967.6, 6360.36], [-3960.86, 6363.69], [-3974.91, 6384.63], [-3979.6, 6391.62], [-3979.02, 6403.45], [-3968.85, 6422.73], [-3950.01, 6440.54], [-3942.25, 6451.54], [-3942.36, 6462.43], [-3947.3, 6473.02], [-3947.37, 6480.69], [-3944.59, 6491.22], [-3940.77, 6502.42], [-3939.44, 6512.67], [-3935.45, 6520.1], [-3925.67, 6525.91], [-3916.47, 6542.17], [-3903.21, 6562.67], [-3886.47, 6582.64], [-3837.4, 6633.43], [-3824.35, 6651.27], [-3823.04, 6652.46], [-3716.28, 6749.26], [-3637.45, 6797.16], [-3639.49, 6817.92], [-3596.87, 6871.74], [-3574.73, 6913.52], [-3553.39, 6934.18], [-3539.92, 6972.93], [-3483.08, 7053.2], [-3468.35, 7091.98], [-3444.68, 7112.21], [-3419.88, 7147.04], [-3405.22, 7170.32], [-3393.67, 7182.52], [-3389.9, 7192.17], [-3374.19, 7202.88], [-3362.59, 7217.18], [-3340.33, 7236.74], [-3323.84, 7250.9], [-3323.48, 7257.42], [-3345.43, 7302.83], [-3361.71, 7336.5], [-3357.7, 7343.58], [-3356.78, 7345.21], [-3315.69, 7417.73], [-3304.05, 7424.12], [-3282.0, 7456.89], [-3259.52, 7474.43], [-3240.74, 7483.53], [-3206.63, 7490.26], [-3174.31, 7488.22], [-3146.34, 7482.6], [-3138.58, 7478.04], [-3130.31, 7472.95], [-3125.19, 7471.01], [-3122.51, 7476.94], [-3121.07, 7486.07], [-3119.09, 7536.18], [-3118.95, 7537.81], [-3116.49, 7565.03], [-3117.4, 7588.47], [-3117.26, 7607.62], [-3111.21, 7614.46], [-3107.08, 7618.23], [-3101.48, 7623.4], [-3085.06, 7640.45], [-3076.55, 7648.26], [-2947.34, 7725.04], [-2922.43, 7743.34], [-2905.96, 7762.94], [-2898.53, 7769.82], [-2888.47, 7776.64], [-2865.18, 7779.72], [-2785.52, 7784.81], [-2742.56, 7803.64], [-2729.24, 7824.39], [-2715.88, 7830.9], [-2711.93, 7930.34], [-2708.7, 7933.32], [-2704.01, 7937.65], [-2705.72, 7831.11], [-2692.71, 7841.29], [-2678.93, 7840.9], [-2667.44, 7835.29], [-2660.47, 7856.21], [-2624.93, 7875.26], [-2600.45, 7878.78], [-2549.28, 7879.79], [-2536.67, 7880.15], [-2519.36, 7879.2], [-2494.39, 7876.39], [-2475.13, 7872.79], [-2444.6, 7865.88], [-2419.68, 7860.26], [-2412.62, 7860.35], [-2408.07, 7862.15], [-2404.89, 7865.88], [-2403.84, 7870.2], [-2403.82, 7874.03], [-2406.42, 7877.7], [-2410.59, 7880.75], [-2422.81, 7883.38], [-2427.4, 7885.24], [-2438.33, 7894.67], [-2442.18, 7895.99], [-2447.62, 7894.79], [-2455.01, 7895.47], [-2460.39, 7897.01], [-2462.31, 7898.33], [-2462.55, 7901.54], [-2460.04, 7905.06], [-2457.12, 7911.87], [-2454.25, 7913.9], [-2453.25, 7916.13], [-2451.83, 7923.68], [-2449.19, 7934.72], [-2449.66, 7938.14], [-2453.88, 7941.37], [-2462.09, 7948.97], [-2458.65, 7949.0], [-2453.02, 7945.13], [-2445.48, 7941.2], [-2439.99, 7941.85], [-2434.47, 7943.45], [-2433.09, 7940.78], [-2435.46, 7940.24], [-2438.87, 7936.73], [-2440.14, 7931.76], [-2441.01, 7923.51], [-2441.65, 7914.22], [-2438.83, 7911.64], [-2430.77, 7910.63], [-2421.25, 7911.0], [-2398.59, 7908.79], [-2397.09, 7910.24], [-2388.9, 7913.81], [-2385.81, 7913.53], [-2382.77, 7910.45], [-2379.48, 7904.14], [-2373.38, 7896.8], [-2362.52, 7882.69], [-2363.16, 7881.21], [-2365.86, 7877.8], [-2365.9, 7876.05], [-2363.07, 7874.82], [-2358.0, 7873.15], [-2347.25, 7871.08], [-2336.15, 7868.66], [-2315.91, 7860.57], [-2307.31, 7858.53], [-2287.65, 7856.48], [-2253.35, 7840.74], [-2245.03, 7838.33], [-2238.61, 7838.39], [-2228.87, 7841.31], [-2228.68, 7847.73], [-2227.32, 7859.31], [-2218.6, 7863.34], [-2226.73, 7866.29], [-2227.3, 7873.32], [-2225.89, 7881.84], [-2226.78, 7882.97], [-2231.92, 7889.42], [-2244.16, 7898.34], [-2252.17, 7898.7], [-2260.44, 7889.46], [-2258.24, 7884.72], [-2264.58, 7881.4], [-2272.61, 7873.85], [-2278.95, 7870.91], [-2279.97, 7876.4], [-2287.64, 7881.29], [-2292.49, 7889.22], [-2293.47, 7895.86], [-2291.79, 7900.1], [-2286.23, 7903.05], [-2281.23, 7900.58], [-2279.46, 7894.29], [-2280.84, 7886.94], [-2278.66, 7881.03], [-2271.59, 7883.42], [-2268.33, 7889.48], [-2262.12, 7890.72], [-2256.28, 7895.99], [-2255.23, 7899.5], [-2250.84, 7903.63], [-2249.72, 7909.27], [-2252.18, 7914.78], [-2257.85, 7915.65], [-2259.57, 7921.61], [-2263.2, 7927.39], [-2268.1, 7930.13], [-2271.45, 7929.05], [-2272.28, 7925.28], [-2274.26, 7922.5], [-2275.56, 7926.8], [-2273.53, 7931.46], [-2278.46, 7933.03], [-2282.09, 7930.53], [-2285.19, 7929.91], [-2289.9, 7931.22], [-2297.83, 7933.81], [-2303.39, 7936.79], [-2312.68, 7939.22], [-2316.02, 7938.37], [-2320.23, 7940.61], [-2320.5, 7947.71], [-2327.84, 7948.16], [-2336.97, 7952.68], [-2375.99, 7964.92], [-2367.97, 7971.53], [-2328.84, 7958.44], [-2308.9, 7958.65], [-2302.05, 7958.58], [-2291.71, 7958.54], [-2285.14, 7956.02], [-2278.9, 7942.2], [-2267.43, 7946.94], [-2254.58, 7945.4], [-2241.24, 7947.35], [-2236.2, 7946.04], [-2232.31, 7945.15], [-2233.69, 7937.79], [-2238.5, 7934.03], [-2237.57, 7925.44], [-2230.37, 7917.45], [-2217.21, 7913.17], [-2216.16, 7922.49], [-2204.21, 7916.7], [-2199.34, 7909.54], [-2193.34, 7914.44], [-2197.37, 7923.5], [-2207.02, 7928.07], [-2206.38, 7936.61], [-2195.0, 7938.23], [-2186.84, 7936.44], [-2176.99, 7926.03], [-2169.76, 7916.69], [-2166.66, 7908.42], [-2162.81, 7906.31], [-2156.97, 7905.9], [-2154.39, 7903.97], [-2151.59, 7898.82], [-2148.94, 7897.94], [-2143.62, 7902.04], [-2136.62, 7908.65], [-2133.02, 7910.5], [-2127.23, 7910.37], [-2067.23, 7911.31], [-2057.98, 7911.6], [-2032.11, 7912.03], [-2014.93, 7912.96], [-2013.31, 7913.62], [-1994.4, 7921.42], [-1983.74, 7925.8], [-1954.07, 7965.83], [-1969.36, 8022.0], [-1970.75, 8027.11], [-1972.78, 8033.33], [-1985.41, 8038.11], [-1995.39, 8071.87], [-1999.71, 8111.71], [-1995.66, 8130.29], [-1999.43, 8148.7], [-1994.55, 8155.17], [-1996.84, 8170.82], [-1993.11, 8178.1], [-2001.12, 8184.96], [-1997.11, 8196.66], [-1996.49, 8210.4], [-2007.24, 8236.06], [-2009.94, 8253.78], [-2009.08, 8261.45], [-2010.52, 8267.58], [-2013.9, 8273.13], [-2012.29, 8284.31], [-2015.35, 8289.52], [-2019.72, 8305.37], [-2021.98, 8327.55], [-2028.26, 8344.41], [-2037.62, 8365.85], [-2039.08, 8377.42], [-2040.46, 8390.29], [-2038.9, 8399.55], [-2029.54, 8452.8], [-2000.09, 8472.84], [-1991.95, 8487.65], [-1980.14, 8495.35], [-1953.31, 8502.09], [-1885.06, 8511.85], [-1868.49, 8506.24], [-1855.52, 8505.65], [-1818.07, 8503.92], [-1809.78, 8503.53], [-1795.21, 8502.86], [-1782.94, 8501.99], [-1747.47, 8499.5], [-1709.62, 8497.83], [-1705.42, 8498.0], [-1701.22, 8498.17], [-1699.32, 8496.45], [-1688.84, 8486.92], [-1660.04, 8462.53], [-1637.92, 8443.8], [-1625.84, 8432.96], [-1623.53, 8426.87], [-1621.78, 8417.36], [-1620.56, 8406.34], [-1616.98, 8402.81], [-1621.81, 8387.35], [-1620.16, 8386.48], [-1614.26, 8384.69], [-1607.25, 8382.55], [-1602.03, 8400.58], [-1560.13, 8389.52], [-1514.04, 8353.76], [-1491.89, 8328.57], [-1492.97, 8320.34], [-1482.67, 8318.07], [-1471.04, 8326.02], [-1461.69, 8315.53], [-1473.28, 8304.23], [-1468.11, 8292.61], [-1461.92, 8278.67], [-1483.62, 8270.27], [-1490.2, 8270.3], [-1518.11, 8270.42], [-1536.77, 8277.06], [-1540.32, 8279.43], [-1559.79, 8294.55], [-1564.2, 8297.9], [-1575.99, 8317.03], [-1578.84, 8319.08], [-1600.59, 8335.88], [-1612.82, 8343.43], [-1616.77, 8348.96], [-1612.92, 8363.11], [-1620.34, 8364.56], [-1628.45, 8366.99], [-1633.2, 8353.67], [-1662.25, 8362.75], [-1671.97, 8360.46], [-1687.22, 8367.31], [-1700.05, 8368.63], [-1704.28, 8369.97], [-1730.61, 8378.22], [-1746.52, 8383.21], [-1755.12, 8396.69], [-1764.04, 8398.89], [-1770.67, 8385.85], [-1774.56, 8386.35], [-1777.91, 8392.28], [-1785.33, 8392.87], [-1790.34, 8387.61], [-1799.48, 8378.02], [-1802.64, 8374.69], [-1813.73, 8355.94], [-1815.82, 8349.99], [-1819.33, 8337.79], [-1814.24, 8324.41], [-1828.1, 8308.99], [-1838.46, 8297.46], [-1857.16, 8267.22], [-1860.35, 8262.06], [-1861.41, 8260.36], [-1879.03, 8230.28], [-1888.11, 8214.8], [-1889.54, 8203.83], [-1890.62, 8195.52], [-1891.08, 8193.31], [-1896.21, 8169.06], [-1896.4, 8166.84], [-1897.65, 8152.75], [-1892.79, 8142.35], [-1886.12, 8139.59], [-1889.13, 8135.51], [-1890.9, 8130.1], [-1887.12, 8127.11], [-1880.0, 8128.51], [-1873.9, 8128.01], [-1872.3, 8128.04], [-1867.46, 8128.15], [-1862.19, 8121.26], [-1857.76, 8118.57], [-1850.5, 8124.77], [-1852.38, 8115.21], [-1839.75, 8106.84], [-1831.09, 8105.62], [-1821.57, 8101.18], [-1817.56, 8106.51], [-1812.86, 8113.11], [-1807.39, 8113.27], [-1803.69, 8107.4], [-1804.2, 8101.0], [-1807.25, 8095.63], [-1810.66, 8088.99], [-1811.6, 8078.44], [-1814.55, 8076.6], [-1817.26, 8083.09], [-1825.59, 8084.62], [-1832.25, 8088.01], [-1838.42, 8085.95], [-1835.38, 8079.77], [-1828.77, 8074.76], [-1823.74, 8059.24], [-1820.83, 8045.81], [-1818.91, 8036.97], [-1815.64, 8032.94], [-1811.46, 8027.77], [-1802.47, 8015.65], [-1798.26, 8005.26], [-1799.08, 7987.97], [-1804.67, 7983.65], [-1811.32, 7976.46], [-1809.81, 7961.99], [-1804.96, 7951.27], [-1801.32, 7932.56], [-1802.71, 7909.63], [-1800.94, 7889.58], [-1806.02, 7880.75], [-1799.74, 7875.44], [-1795.27, 7862.81], [-1788.15, 7853.3], [-1787.41, 7845.26], [-1791.37, 7841.84], [-1805.3, 7849.95], [-1810.56, 7857.15], [-1818.93, 7857.07], [-1822.24, 7853.96], [-1813.75, 7846.98], [-1814.61, 7839.63], [-1814.11, 7834.48], [-1814.89, 7829.69], [-1819.16, 7826.94], [-1820.57, 7822.49], [-1822.76, 7813.57], [-1824.56, 7806.88], [-1825.7, 7801.73], [-1823.51, 7798.52], [-1822.25, 7787.48], [-1823.19, 7776.06], [-1826.39, 7778.74], [-1830.79, 7780.44], [-1834.1, 7777.34], [-1834.01, 7770.74], [-1835.75, 7764.56], [-1837.5, 7759.47], [-1842.5, 7754.66], [-1852.24, 7750.92], [-1856.24, 7745.91], [-1857.23, 7734.06], [-1874.71, 7719.17], [-1881.0, 7713.26], [-1886.14, 7713.41], [-1894.71, 7706.29], [-1899.14, 7686.53], [-1905.4, 7676.07], [-1911.63, 7666.36], [-1921.58, 7663.8], [-1930.03, 7664.33], [-1951.5, 7656.6], [-1962.04, 7647.94], [-1971.85, 7642.76], [-1976.4, 7641.29], [-1981.45, 7644.64], [-1993.55, 7637.94], [-2004.56, 7635.69], [-2010.48, 7631.05], [-2019.91, 7627.79], [-2029.72, 7622.3], [-2029.28, 7626.77], [-2037.37, 7625.08], [-2044.02, 7619.43], [-2054.32, 7617.56], [-2057.41, 7610.91], [-2063.19, 7614.32], [-2068.31, 7612.5], [-2073.0, 7605.9], [-2078.27, 7603.32], [-2085.32, 7602.73], [-2090.6, 7598.56], [-2096.01, 7589.25], [-2098.55, 7584.92], [-2104.05, 7578.26], [-2107.01, 7576.1], [-2108.39, 7572.61], [-2114.23, 7571.78], [-2115.99, 7566.09], [-2115.86, 7559.35], [-2123.28, 7558.33], [-2128.24, 7554.26], [-2135.62, 7538.57], [-2143.35, 7523.36], [-2147.82, 7519.01], [-2151.21, 7516.44], [-2155.98, 7507.28], [-2160.5, 7506.76], [-2166.8, 7500.21], [-2171.18, 7493.6], [-2188.11, 7486.72], [-2190.29, 7480.21], [-2205.25, 7472.77], [-2215.51, 7474.03], [-2220.79, 7469.7], [-2225.95, 7465.94], [-2235.54, 7464.03], [-2238.85, 7464.13], [-2248.13, 7458.94], [-2255.0, 7455.29], [-2262.4, 7455.5], [-2267.65, 7451.81], [-2273.44, 7451.97], [-2272.96, 7448.5], [-2273.68, 7443.64], [-2277.78, 7441.18], [-2276.11, 7437.3], [-2272.96, 7438.13], [-2271.05, 7434.26], [-2267.57, 7432.24], [-2269.86, 7431.02], [-2275.88, 7434.08], [-2277.92, 7430.62], [-2280.01, 7436.12], [-2281.1, 7443.21], [-2285.57, 7443.99], [-2291.29, 7446.72], [-2298.39, 7445.96], [-2307.46, 7443.97], [-2316.57, 7440.71], [-2319.94, 7438.14], [-2322.07, 7432.51], [-2321.22, 7428.02], [-2317.31, 7421.47], [-2309.38, 7418.52], [-2302.91, 7419.11], [-2301.03, 7416.11], [-2299.28, 7409.67], [-2289.5, 7403.15], [-2287.58, 7408.74], [-2282.57, 7399.64], [-2274.65, 7396.3], [-2271.64, 7392.32], [-2266.88, 7387.89], [-2262.08, 7385.23], [-2259.3, 7386.71], [-2253.11, 7384.39], [-2252.42, 7381.02], [-2251.23, 7375.18], [-2244.23, 7373.82], [-2241.0, 7373.43], [-2234.77, 7370.03], [-2233.16, 7364.17], [-2226.61, 7361.63], [-2211.7, 7350.09], [-2178.71, 7332.33], [-2137.44, 7298.58], [-2105.25, 7261.13], [-2078.68, 7235.71], [-2065.01, 7214.18], [-2058.46, 7198.76], [-2057.27, 7174.94], [-2053.18, 7162.6], [-2052.52, 7146.23], [-2039.85, 7109.75], [-2033.19, 7095.22], [-2033.56, 7085.12], [-2031.3, 7071.17], [-2031.52, 7059.72], [-2033.73, 7048.79], [-2036.66, 7041.66], [-2040.03, 7036.08], [-2044.93, 7034.69], [-2054.89, 7034.86], [-2057.58, 7032.09], [-2057.19, 7026.81], [-2061.16, 7018.96], [-2056.34, 7017.4], [-2050.14, 7014.38], [-2048.8, 7011.63], [-2049.23, 7008.92], [-2052.68, 7008.67], [-2061.07, 7009.74], [-2066.29, 7000.0], [-2056.46, 6994.9], [-2056.9, 6990.75], [-2066.27, 6989.74], [-2074.07, 6987.07], [-2078.0, 6973.39], [-2075.39, 6963.7], [-2041.29, 6956.63], [-2012.03, 6953.79], [-2014.42, 6941.41], [-2033.77, 6944.86], [-2069.52, 6949.89], [-2088.42, 6940.87], [-2087.04, 6926.6], [-2082.4, 6920.91], [-2076.4, 6900.51], [-2077.72, 6885.77], [-2081.06, 6878.23], [-2090.29, 6870.34], [-2090.68, 6863.45], [-2086.57, 6855.74], [-2082.16, 6853.98], [-2076.7, 6847.61], [-2075.17, 6844.52], [-2069.93, 6833.97], [-2067.04, 6831.21], [-2055.51, 6831.94], [-2054.63, 6825.53], [-2062.15, 6824.1], [-2066.35, 6822.08], [-2069.4, 6819.34], [-2069.1, 6811.83], [-2066.11, 6809.0], [-2063.66, 6806.68], [-2062.68, 6802.73], [-2061.52, 6798.05], [-2064.58, 6787.69], [-2056.86, 6759.12], [-2050.75, 6750.83], [-2044.4, 6736.53], [-2035.07, 6696.03], [-2026.04, 6684.43], [-2012.69, 6661.82], [-2001.97, 6632.5], [-1994.16, 6592.82], [-1987.0, 6536.04], [-1992.78, 6507.64], [-1998.85, 6492.14], [-2010.86, 6466.28], [-2020.63, 6447.86], [-2052.06, 6410.75], [-2058.21, 6403.71], [-2067.21, 6399.96], [-2080.16, 6392.67], [-2074.64, 6378.34], [-2076.19, 6365.99], [-2074.83, 6351.19], [-2070.3, 6340.03], [-2060.53, 6297.4], [-2063.25, 6284.12], [-2070.49, 6271.01], [-2077.33, 6265.32], [-2089.57, 6264.34], [-2096.6, 6260.54], [-2107.95, 6242.19], [-2120.17, 6227.87], [-2125.12, 6218.49], [-2131.26, 6210.41], [-2135.71, 6202.64], [-2138.55, 6184.86], [-2122.99, 6163.93], [-2123.21, 6134.84], [-2113.97, 6120.88], [-2104.49, 6110.94], [-2065.1, 6076.57], [-2028.03, 6037.71], [-2010.11, 6016.37], [-1998.28, 6005.18], [-1951.33, 5970.26], [-1908.88, 5940.48], [-1851.58, 5911.49], [-1824.62, 5899.21], [-1790.14, 5882.27], [-1756.9, 5874.65], [-1724.89, 5855.61], [-1697.18, 5842.26], [-1663.12, 5823.38], [-1646.43, 5817.9], [-1638.22, 5817.33], [-1629.17, 5818.07], [-1621.66, 5821.41], [-1607.98, 5818.69], [-1530.64, 5816.08], [-1511.75, 5814.06], [-1482.74, 5813.23], [-1464.49, 5806.13], [-1455.07, 5798.22], [-1445.84, 5783.15], [-1428.78, 5748.08], [-1408.41, 5700.71], [-1398.28, 5647.84], [-1400.29, 5624.7], [-1405.6, 5602.48], [-1409.57, 5589.15], [-1420.2, 5573.22], [-1447.99, 5555.35], [-1462.37, 5547.64], [-1477.82, 5537.19], [-1503.4, 5510.92], [-1523.61, 5499.05], [-1532.86, 5494.31], [-1547.99, 5491.86], [-1563.63, 5497.31], [-1594.76, 5511.94], [-1603.95, 5516.58], [-1604.26, 5528.48], [-1598.52, 5535.54], [-1609.67, 5537.3], [-1603.49, 5544.02], [-1660.37, 5524.87], [-1664.61, 5518.99], [-1653.81, 5498.34], [-1645.72, 5499.21], [-1639.81, 5494.38], [-1625.79, 5467.52], [-1615.6, 5456.56], [-1609.26, 5450.71], [-1602.68, 5441.39], [-1605.35, 5430.95], [-1606.02, 5410.27], [-1597.51, 5394.91], [-1586.95, 5374.05], [-1584.26, 5351.96], [-1583.93, 5344.75], [-1587.13, 5330.81], [-1566.93, 5308.34], [-1560.43, 5296.7], [-1549.26, 5283.05], [-1542.82, 5280.53], [-1534.23, 5276.39], [-1528.71, 5270.01], [-1515.75, 5264.63], [-1502.46, 5262.48], [-1493.42, 5259.88], [-1462.98, 5259.56], [-1445.98, 5261.86], [-1435.47, 5265.0], [-1427.41, 5267.88], [-1413.04, 5271.92], [-1399.6, 5275.09], [-1388.37, 5280.66], [-1381.06, 5288.34], [-1370.27, 5298.59], [-1362.07, 5309.14], [-1354.3, 5321.23], [-1346.88, 5344.6], [-1340.98, 5363.53], [-1327.46, 5397.28], [-1313.12, 5443.22], [-1314.98, 5449.47], [-1329.04, 5458.68], [-1335.11, 5462.97], [-1348.87, 5474.15], [-1354.21, 5481.08], [-1357.93, 5489.7], [-1364.64, 5506.27], [-1364.63, 5515.06], [-1363.87, 5530.48], [-1358.68, 5547.97], [-1354.11, 5555.91], [-1354.82, 5566.77], [-1357.46, 5570.88], [-1363.03, 5577.13], [-1369.53, 5601.51], [-1370.46, 5619.28], [-1362.28, 5641.26], [-1354.51, 5661.11], [-1342.92, 5676.55], [-1328.35, 5689.03], [-1311.11, 5700.91], [-1294.96, 5706.18], [-1255.09, 5716.51], [-1244.42, 5715.68], [-1236.9, 5713.91], [-1207.65, 5700.51], [-1204.87, 5689.43], [-1204.51, 5679.3], [-1203.18, 5671.7], [-1201.46, 5655.21], [-1194.1, 5645.25], [-1191.36, 5641.58], [-1188.15, 5635.51], [-1185.6, 5640.65], [-1181.74, 5645.87], [-1182.6, 5676.91], [-1182.47, 5692.79], [-1179.47, 5710.11], [-1175.53, 5723.18], [-1160.02, 5737.07], [-1149.25, 5742.68], [-1137.07, 5747.34], [-1123.9, 5756.64], [-1097.97, 5774.95], [-1086.41, 5786.63], [-1073.91, 5793.61], [-1055.97, 5800.91], [-1016.68, 5807.86], [-1010.06, 5803.12], [-1000.3, 5791.28], [-986.82, 5801.67], [-980.78, 5804.95], [-970.69, 5807.66], [-964.57, 5810.93], [-950.32, 5825.53], [-932.76, 5833.03], [-914.3, 5838.17], [-875.82, 5842.85], [-862.86, 5843.25], [-845.12, 5847.08], [-794.04, 5860.83], [-768.41, 5863.67], [-741.57, 5871.35], [-676.73, 5881.4], [-628.05, 5892.68], [-538.25, 5915.68], [-529.56, 5917.37], [-503.82, 5918.47], [-490.83, 5919.88], [-434.69, 5930.28], [-420.57, 5931.66], [-388.85, 5936.31], [-352.87, 5938.96], [-342.41, 5940.55], [-333.62, 5943.3], [-321.31, 5946.14], [-308.76, 5947.15], [-292.34, 5949.01], [-270.73, 5950.4], [-258.88, 5952.17], [-225.05, 5953.76], [-209.39, 5957.54], [-186.22, 5962.33], [-162.67, 5962.99], [-131.73, 5963.22], [-104.73, 5962.23], [-71.77, 5958.96], [-30.0, 5956.32], [-11.41, 5954.3], [10.31, 5951.06], [52.6, 5943.86], [86.99, 5939.66], [104.52, 5934.82], [123.67, 5926.72], [169.7, 5902.29], [211.47, 5874.1], [235.01, 5860.09], [262.0, 5835.98], [276.21, 5819.25], [283.27, 5810.93], [296.78, 5799.9], [311.88, 5787.59], [318.28, 5782.37], [325.67, 5773.04], [334.28, 5763.79], [343.79, 5751.08], [348.55, 5744.72], [358.17, 5733.66], [372.97, 5718.79], [391.24, 5697.04], [397.29, 5689.32], [408.03, 5674.25], [415.85, 5663.05], [423.01, 5664.05], [427.76, 5677.22], [436.67, 5684.67], [441.66, 5682.91], [446.54, 5681.18], [447.57, 5671.85], [435.13, 5652.96], [439.15, 5645.59], [441.75, 5640.82], [455.19, 5623.87], [466.0, 5606.12], [466.89, 5594.53], [472.62, 5584.51], [483.93, 5570.86], [518.11, 5522.94], [525.63, 5503.95], [529.82, 5495.33], [534.01, 5486.7], [537.29, 5475.94], [522.26, 5465.7], [498.42, 5437.59], [500.27, 5430.87], [513.43, 5404.15], [520.49, 5405.44], [516.4, 5414.18], [510.17, 5436.83], [529.78, 5460.82], [547.5, 5460.99], [562.92, 5438.09], [582.49, 5397.12], [597.01, 5351.32], [606.47, 5314.48], [611.09, 5296.46], [613.07, 5277.4], [612.89, 5275.53], [612.25, 5268.75], [603.49, 5212.54], [593.78, 5191.47], [577.49, 5165.37], [561.75, 5145.5], [549.97, 5137.4], [536.17, 5128.65], [476.57, 5108.51], [462.02, 5102.58], [454.57, 5086.25], [438.9, 5057.11], [399.83, 5004.25], [380.34, 4963.9], [353.9, 4924.6], [329.49, 4895.71], [302.14, 4855.57], [288.88, 4849.86], [286.76, 4836.86], [289.02, 4793.28], [285.54, 4762.91], [262.07, 4736.59], [233.13, 4713.89], [213.38, 4699.01], [183.02, 4683.77], [168.4, 4683.75], [145.46, 4675.7], [132.68, 4668.11], [117.57, 4646.08], [95.91, 4608.84], [88.91, 4589.16], [89.84, 4576.61], [47.6, 4529.04], [32.28, 4499.97], [13.69, 4469.05], [-0.47, 4446.36], [-8.75, 4430.28], [-16.32, 4397.97], [-18.8, 4386.16], [-18.25, 4378.16], [-21.85, 4382.16], [-25.45, 4379.14], [-23.47, 4373.25], [-18.86, 4363.57], [-22.08, 4353.53], [-20.84, 4342.01], [-17.69, 4329.06], [-13.68, 4313.38], [-13.51, 4306.75], [-10.97, 4295.69], [-10.01, 4292.12], [0.35, 4276.44], [4.34, 4270.77], [8.07, 4259.9], [15.98, 4241.83], [20.76, 4235.92], [32.39, 4227.97], [44.27, 4213.44], [82.43, 4185.08], [105.33, 4164.22], [123.21, 4147.34], [133.89, 4137.73], [153.48, 4124.98], [183.84, 4105.19], [191.44, 4100.81], [198.95, 4104.44], [207.96, 4104.51], [226.56, 4101.73], [239.73, 4100.71], [249.01, 4098.53], [260.72, 4091.14], [277.64, 4086.17], [293.43, 4086.69], [302.99, 4084.12], [313.49, 4078.74], [334.65, 4075.63], [349.91, 4068.71], [359.67, 4071.97], [377.77, 4074.67], [410.89, 4072.76], [431.27, 4076.35], [449.29, 4075.84], [468.35, 4077.86], [526.84, 4096.74], [550.52, 4102.81], [578.31, 4106.19], [610.49, 4105.6], [639.74, 4096.61], [645.57, 4095.61], [663.51, 4092.27], [676.7, 4088.58], [682.73, 4085.76], [708.01, 4075.16], [711.89, 4073.75], [716.79, 4073.06], [728.61, 4069.85], [738.15, 4065.4], [745.98, 4057.8], [756.28, 4046.28], [770.82, 4036.57], [776.22, 4033.85], [781.85, 4027.91], [786.98, 4022.78], [793.91, 4020.11], [805.06, 4019.9], [809.16, 4019.44], [819.7, 4018.08], [826.37, 4013.74], [830.69, 4011.26], [842.06, 3998.05], [851.07, 3982.31], [870.6, 3961.22], [872.6, 3954.15], [874.81, 3951.45], [882.63, 3946.33], [890.47, 3938.35], [892.74, 3935.45], [895.07, 3932.48], [909.91, 3916.7], [915.0, 3908.16], [916.45, 3904.46], [920.62, 3900.67], [923.43, 3899.76], [934.64, 3884.78], [942.66, 3870.36], [946.61, 3858.9], [957.69, 3833.5], [975.34, 3801.29], [991.5, 3753.8], [996.81, 3735.14], [1011.67, 3679.23], [1019.15, 3647.72], [1021.14, 3639.33], [1021.2, 3637.72], [1023.52, 3626.18], [1027.09, 3600.37], [1028.88, 3594.28], [1032.14, 3585.22], [1031.86, 3575.49], [1033.62, 3571.91], [1035.92, 3567.01], [1040.74, 3557.37], [1044.6, 3537.71], [1047.94, 3507.84], [1051.47, 3494.49], [1055.63, 3462.03], [1061.36, 3448.45], [1063.88, 3428.69], [1065.34, 3411.51], [1072.53, 3393.16], [1078.73, 3361.94], [1086.1, 3312.43], [1091.23, 3300.09], [1094.7, 3286.19], [1095.55, 3259.54], [1098.69, 3233.86], [1104.5, 3201.83], [1113.68, 3163.45], [1115.34, 3154.69], [1125.82, 3147.57], [1140.15, 3130.48], [1143.86, 3136.79], [1152.94, 3138.78], [1166.08, 3142.59], [1170.8, 3144.05], [1185.25, 3142.68], [1189.48, 3144.17], [1180.45, 3155.01], [1180.41, 3164.96], [1180.8, 3178.75], [1183.28, 3186.7], [1191.22, 3194.18], [1199.06, 3198.13], [1206.51, 3199.84], [1217.42, 3198.25], [1229.22, 3194.06], [1239.61, 3185.74], [1249.24, 3173.6], [1257.39, 3154.12], [1253.76, 3148.24], [1256.23, 3135.86], [1257.94, 3128.11], [1253.13, 3117.34], [1243.43, 3104.46], [1235.29, 3089.93], [1227.15, 3075.4], [1224.25, 3063.93], [1225.56, 3053.3], [1214.37, 3020.73], [1211.88, 3013.58], [1207.51, 3007.29], [1200.45, 2996.57], [1192.52, 2989.41], [1183.02, 2983.9], [1174.9, 2981.57], [1170.49, 2984.9], [1169.95, 2988.45], [1172.63, 2992.22], [1174.68, 2996.33], [1174.03, 3007.59], [1165.53, 3014.56], [1158.99, 3022.45], [1148.09, 3024.05], [1131.0, 3012.01], [1117.51, 3002.13], [1114.2, 2988.73], [1116.44, 2968.09], [1114.8, 2955.3], [1108.95, 2945.4], [1108.0, 2926.87], [1105.08, 2907.43], [1093.75, 2883.44], [1080.3, 2828.1], [1075.86, 2809.1], [1062.78, 2769.09], [1039.0, 2734.9], [1011.13, 2690.97], [986.46, 2652.24], [972.18, 2604.9], [960.7, 2548.37], [964.64, 2499.75], [963.29, 2452.04], [948.77, 2395.6], [952.17, 2354.57], [1007.89, 2334.04], [1038.03, 2324.1], [1041.78, 2306.86], [1043.41, 2283.98], [1045.49, 2252.35], [1043.37, 2245.62], [1044.17, 2236.7], [1044.3, 2222.58], [1035.85, 2195.47], [1030.6, 2191.41], [1027.8, 2189.23], [1014.87, 2163.7], [1003.9, 2151.05], [992.18, 2140.02], [980.76, 2125.08], [979.58, 2123.54], [975.66, 2120.06], [972.28, 2117.64], [970.45, 2116.32], [942.8, 2103.52], [937.37, 2101.42], [936.72, 2100.8], [928.23, 2091.46], [925.18, 2090.94], [921.92, 2090.77], [918.79, 2090.8], [915.45, 2091.1], [880.38, 2102.3], [848.13, 2112.57], [838.27, 2115.84], [827.82, 2119.28], [824.92, 2120.48], [822.8, 2121.91], [821.07, 2123.83], [819.81, 2125.87], [818.88, 2128.04], [818.69, 2130.58], [823.81, 2225.9], [824.24, 2226.5], [823.83, 2227.55], [820.06, 2228.6], [820.35, 2229.36], [819.82, 2229.88], [819.16, 2229.59], [815.8, 2227.6], [811.37, 2223.7], [807.97, 2143.09], [807.14, 2137.84], [801.92, 2131.71], [799.32, 2126.03], [798.72, 2120.85], [800.99, 2116.84], [803.92, 2113.65], [901.36, 2083.46], [911.79, 2079.48], [916.33, 2076.13], [917.86, 2073.65], [918.6, 2071.27], [916.96, 2047.58], [910.12, 2018.32], [906.22, 1997.81], [886.58, 1975.26], [879.79, 1974.48], [871.84, 1977.92], [868.19, 1972.86], [864.8, 1968.17], [849.97, 1945.16], [839.42, 1936.48], [828.38, 1933.26], [817.55, 1937.73], [809.51, 1949.52], [811.13, 1938.56], [809.23, 1928.02], [804.53, 1921.42], [792.73, 1914.37], [786.58, 1924.17], [769.2, 1913.64], [763.3, 1910.07], [754.69, 1906.07], [747.39, 1905.39], [746.04, 1912.41], [737.42, 1919.11], [726.16, 1915.66], [723.76, 1907.12], [729.41, 1896.74], [734.86, 1898.38], [729.6, 1884.55], [723.72, 1880.23], [716.21, 1873.53], [710.46, 1864.06], [699.04, 1847.06], [680.69, 1813.56], [656.23, 1757.44], [648.11, 1743.55], [644.16, 1729.22], [623.22, 1695.15], [604.05, 1666.48], [600.63, 1659.2], [589.26, 1633.2], [533.8, 1476.82], [503.92, 1395.55], [474.19, 1332.82], [439.39, 1273.57], [432.64, 1264.59], [420.56, 1250.47], [411.27, 1240.28], [407.83, 1234.67], [404.89, 1229.86], [393.77, 1220.02], [379.21, 1207.13], [344.82, 1183.49], [334.09, 1175.3], [301.16, 1154.46], [280.18, 1141.81], [270.78, 1133.04], [267.7, 1130.16], [263.56, 1125.05], [235.1, 1089.94], [211.56, 1061.64], [203.31, 1047.73], [177.59, 1019.5], [173.99, 1007.85], [170.26, 992.27], [161.05, 975.55], [153.66, 968.43], [141.44, 956.65], [132.52, 948.06], [129.55, 935.95], [117.27, 923.25], [92.4, 889.54], [76.0, 866.05], [50.21, 827.59], [37.35, 804.81], [36.18, 802.74], [28.2, 783.37], [7.53, 763.71], [-10.02, 745.7], [-19.82, 739.82], [-27.96, 733.3], [-38.91, 721.22], [-41.38, 718.48], [-39.97, 716.73], [-55.34, 704.31], [-58.53, 699.61], [-58.38, 696.99], [-56.49, 694.33], [-65.97, 683.92], [-72.08, 684.1], [-79.18, 680.38], [-81.91, 676.75], [-83.38, 674.64], [-84.94, 669.87], [-86.0, 663.59], [-91.85, 657.8], [-105.74, 644.1], [-114.38, 635.57], [-124.55, 625.54], [-128.9, 616.94], [-144.16, 617.11], [-182.53, 592.69], [-198.02, 584.53], [-243.49, 566.92], [-288.18, 550.41], [-325.8, 540.44], [-337.25, 529.0], [-354.96, 525.91], [-371.03, 523.24], [-380.24, 521.38], [-413.49, 523.12], [-452.37, 513.65], [-457.99, 512.94], [-476.17, 510.45], [-486.96, 508.73], [-488.31, 508.51], [-490.77, 508.12], [-493.81, 507.64], [-497.48, 507.05], [-501.25, 506.46], [-505.86, 509.61], [-506.24, 510.02], [-507.17, 511.02], [-509.55, 513.45], [-508.86, 514.66], [-508.77, 515.3], [-507.84, 522.76], [-506.95, 526.98], [-505.04, 530.89], [-497.66, 537.63], [-493.51, 540.76], [-494.0, 542.54], [-493.9, 544.04], [-496.98, 543.34], [-497.64, 542.23], [-503.63, 540.04], [-511.38, 534.38], [-515.5, 530.15], [-517.51, 524.54], [-517.61, 519.1], [-515.91, 513.36], [-512.61, 508.49], [-517.63, 501.88], [-529.61, 493.47], [-547.65, 491.83], [-567.17, 489.16], [-585.9, 480.73], [-591.78, 477.82], [-626.88, 460.43], [-652.04, 445.58], [-660.61, 440.51], [-670.69, 434.51], [-691.93, 421.84], [-709.95, 411.1], [-728.24, 394.58], [-732.41, 399.72], [-734.37, 400.68], [-751.94, 383.96], [-753.08, 382.35], [-778.22, 361.24], [-787.73, 353.24], [-805.15, 342.08], [-827.87, 336.13], [-834.16, 334.48], [-844.6, 328.32], [-846.52, 326.4], [-869.62, 303.03], [-873.5, 299.55], [-883.99, 294.49], [-901.05, 286.53], [-911.88, 281.76], [-943.89, 267.67], [-947.9, 261.7], [-958.53, 252.66], [-961.41, 252.56], [-973.2, 255.77], [-979.13, 243.39], [-979.76, 243.02], [-998.53, 232.28], [-1010.37, 227.06], [-1012.47, 229.63], [-1016.65, 228.13], [-1021.64, 223.26], [-1025.04, 224.25], [-1030.44, 217.76], [-1041.84, 215.47], [-1043.66, 215.1], [-1058.38, 209.78], [-1083.88, 195.34], [-1085.83, 194.24], [-1094.57, 190.73], [-1109.96, 187.45], [-1110.86, 187.25], [-1119.0, 179.59], [-1120.62, 178.15], [-1125.36, 175.87], [-1129.81, 172.15], [-1132.22, 172.15], [-1138.35, 172.13], [-1140.28, 172.13], [-1150.2, 170.2], [-1154.7, 169.33], [-1161.98, 168.57], [-1165.98, 168.44], [-1169.72, 168.32], [-1173.99, 167.86], [-1187.65, 166.42], [-1192.39, 164.31], [-1192.46, 161.74], [-1209.97, 158.36], [-1210.6, 158.25], [-1221.92, 155.62], [-1231.15, 154.82], [-1264.95, 150.33], [-1274.72, 149.28], [-1279.96, 148.71], [-1280.18, 145.29], [-1284.31, 144.8], [-1288.59, 144.33], [-1288.56, 145.06], [-1289.03, 145.08], [-1288.89, 147.8], [-1294.79, 147.07], [-1294.82, 144.62], [-1357.33, 147.72], [-1364.48, 147.79], [-1371.9, 146.98], [-1377.36, 145.88], [-1382.24, 144.93], [-1387.28, 144.75], [-1391.14, 144.89], [-1394.62, 145.17], [-1398.3, 146.07], [-1403.75, 147.84], [-1410.36, 149.93], [-1416.13, 151.02], [-1422.55, 151.39], [-1426.29, 151.24], [-1431.41, 150.6], [-1435.24, 149.83], [-1440.7, 148.66], [-1444.62, 148.36], [-1449.78, 148.43], [-1457.36, 149.88], [-1473.12, 153.55], [-1530.64, 166.58], [-1529.35, 172.07], [-1546.56, 176.18], [-1546.2, 177.42], [-1552.0, 178.84], [-1566.19, 182.3], [-1567.76, 174.66], [-1576.38, 176.77], [-1588.72, 180.32], [-1589.82, 180.63], [-1590.77, 180.9], [-1592.85, 181.51], [-1602.97, 184.6], [-1611.75, 186.84], [-1613.58, 187.12], [-1625.24, 189.77], [-1632.89, 191.01], [-1634.3, 191.23], [-1635.84, 191.41], [-1644.98, 192.86], [-1659.85, 195.29], [-1660.64, 195.41], [-1661.44, 195.51], [-1664.98, 196.12], [-1702.58, 198.36], [-1709.23, 194.09], [-1718.11, 194.32], [-1725.78, 194.71], [-1728.98, 196.48], [-1761.09, 199.79], [-1781.64, 201.8], [-1840.07, 215.34], [-1880.67, 225.57], [-1890.59, 227.68], [-1901.37, 229.64], [-1967.46, 233.56], [-1994.9, 235.4], [-2025.56, 242.05], [-2079.71, 251.17], [-2118.66, 262.49], [-2156.64, 271.64], [-2183.45, 279.06], [-2196.95, 283.46], [-2212.52, 289.3], [-2241.46, 301.07], [-2270.64, 315.1], [-2278.54, 319.12], [-2287.56, 324.39], [-2309.86, 339.4], [-2315.68, 343.07], [-2358.93, 370.34], [-2365.75, 373.12], [-2372.33, 375.02], [-2377.11, 374.77], [-2381.14, 373.43], [-2388.2, 370.6], [-2394.29, 368.06], [-2407.33, 364.86], [-2421.03, 363.88], [-2499.74, 364.85], [-2500.69, 364.87], [-2501.94, 364.88], [-2508.86, 365.18], [-2521.29, 365.7], [-2528.82, 365.78], [-2534.69, 365.82], [-2561.34, 366.07], [-2607.15, 363.78], [-2646.02, 356.48], [-2668.52, 357.28], [-2687.68, 354.99], [-2730.77, 347.6], [-2741.91, 346.87], [-2768.91, 346.92], [-2783.99, 348.08], [-2797.22, 349.37], [-2828.65, 359.77], [-2852.86, 369.07], [-2874.91, 378.32], [-2898.71, 391.58], [-2939.02, 414.59], [-2977.18, 439.37], [-2998.57, 451.73], [-3004.02, 454.89], [-3021.02, 464.34], [-3023.4, 466.37], [-3024.16, 467.0], [-3026.74, 469.89], [-3029.01, 472.91], [-3031.38, 473.79], [-3033.43, 473.6], [-3037.65, 471.32], [-3043.21, 467.57], [-3052.87, 458.91], [-3058.09, 457.52], [-3061.71, 458.0], [-3066.63, 458.67], [-3073.33, 461.68], [-3076.85, 463.36], [-3078.71, 464.24], [-3086.51, 466.85], [-3100.32, 470.67], [-3112.82, 472.17], [-3121.13, 471.12], [-3126.63, 469.76], [-3132.42, 466.22], [-3137.4, 460.28], [-3140.64, 453.83], [-3140.28, 449.63], [-3137.49, 445.85], [-3129.74, 441.7], [-3126.21, 440.76], [-3123.68, 439.57], [-3122.34, 436.82], [-3121.67, 433.63], [-3123.13, 413.2], [-3125.06, 399.32], [-3130.2, 387.93], [-3137.5, 377.04], [-3140.91, 372.56], [-3146.56, 366.2], [-3157.82, 359.8], [-3176.51, 354.02], [-3186.88, 350.67], [-3200.43, 342.73], [-3212.06, 334.07], [-3220.75, 324.67], [-3230.04, 310.99], [-3237.8, 311.17], [-3245.5, 311.35], [-3246.77, 330.35], [-3250.33, 334.85], [-3259.18, 339.76], [-3272.29, 347.32], [-3284.78, 350.9], [-3293.93, 353.47], [-3307.65, 356.94], [-3317.91, 362.98], [-3330.68, 369.8], [-3347.04, 376.38], [-3366.13, 388.41], [-3381.05, 399.9], [-3391.2, 407.72], [-3430.59, 448.18], [-3504.17, 546.76], [-3519.23, 569.14], [-3527.37, 581.28], [-3533.22, 586.0], [-3546.71, 599.36], [-3568.98, 622.03], [-3611.6, 676.83], [-3623.22, 686.16], [-3637.6, 711.79], [-3664.57, 868.23], [-3662.47, 903.86], [-3664.5, 925.68], [-3653.28, 976.74], [-3640.02, 1037.15], [-3627.15, 1065.91], [-3615.2, 1091.93], [-3566.16, 1125.59], [-3538.54, 1142.73], [-3514.79, 1153.65], [-3499.81, 1160.12], [-3476.05, 1164.4], [-3461.25, 1163.06], [-3436.46, 1158.6], [-3417.78, 1149.39], [-3407.56, 1135.78], [-3390.35, 1133.88], [-3373.0, 1136.81], [-3306.77, 1156.66], [-3264.7, 1176.59], [-3224.63, 1192.38], [-3184.14, 1204.15], [-3154.03, 1226.3], [-3060.76, 1295.3], [-3040.22, 1330.34], [-3009.36, 1349.01], [-2972.32, 1361.88], [-2941.71, 1375.59], [-2917.21, 1394.32], [-2886.37, 1409.04], [-2866.66, 1413.62], [-2842.93, 1417.51], [-2824.27, 1422.93], [-2805.99, 1437.37], [-2783.96, 1450.46], [-2773.16, 1466.09], [-2763.59, 1486.01], [-2747.6, 1510.18], [-2733.58, 1540.25], [-2716.93, 1565.34], [-2703.76, 1587.0], [-2698.48, 1595.45], [-2695.08, 1602.71], [-2695.56, 1610.24], [-2699.74, 1615.29], [-2708.18, 1619.41], [-2716.51, 1620.38], [-2722.31, 1619.59], [-2732.62, 1616.92], [-2744.77, 1608.46], [-2761.64, 1599.02], [-2763.09, 1598.2], [-2781.37, 1579.89], [-2822.26, 1542.18], [-2882.49, 1485.84], [-2918.01, 1429.06], [-2958.12, 1396.68], [-3017.74, 1367.72], [-3023.37, 1364.24], [-3038.9, 1360.15], [-3085.2, 1352.29], [-3101.2, 1350.01], [-3156.56, 1341.29], [-3273.02, 1336.2], [-3355.41, 1341.67], [-3455.0, 1359.48], [-3519.23, 1393.41], [-3616.38, 1485.63], [-3719.09, 1590.83], [-3736.65, 1627.87], [-3758.3, 1662.49], [-3845.27, 1807.02], [-3895.72, 1866.56], [-3925.36, 1915.35], [-3979.36, 1975.95], [-3999.52, 1960.84], [-4047.07, 1956.85], [-4084.8, 1971.36], [-4120.99, 1917.1], [-4169.57, 1885.46], [-4263.75, 1858.33], [-4474.49, 1766.48], [-4617.95, 1649.07], [-4703.9, 1610.78], [-4718.54, 1602.38], [-4720.07, 1594.03], [-4729.06, 1587.73], [-4756.14, 1586.97], [-4799.07, 1568.94], [-4876.99, 1533.3], [-4935.96, 1520.5], [-5064.71, 1464.59], [-5095.09, 1458.81], [-5215.0, 1388.75], [-5239.49, 1374.16], [-5262.14, 1358.88], [-5284.81, 1342.3], [-5299.54, 1333.04], [-5331.38, 1313.02], [-5366.63, 1292.6], [-5404.14, 1270.54], [-5437.54, 1243.57], [-5446.7, 1236.43], [-5481.06, 1209.66], [-5524.65, 1177.58], [-5547.28, 1160.84], [-5564.95, 1151.52], [-5566.09, 1150.61], [-5578.95, 1138.54], [-5599.68, 1127.14], [-5613.37, 1117.39], [-5619.15, 1111.68], [-5625.33, 1104.13], [-5625.8, 1103.75], [-5637.1, 1094.69], [-5649.41, 1083.23], [-5663.77, 1075.38], [-5673.95, 1065.34], [-5680.85, 1057.6], [-5689.63, 1048.45], [-5709.07, 1029.83], [-5725.35, 1014.89], [-5740.49, 1001.7], [-5749.08, 997.11], [-5755.83, 994.27], [-5760.08, 990.26], [-5763.57, 987.86], [-5763.43, 986.41], [-5770.91, 983.23], [-5775.12, 980.66], [-5789.81, 970.51], [-5803.22, 961.4], [-5812.53, 957.0], [-5823.14, 951.04], [-5830.33, 944.18], [-5834.99, 939.73], [-5852.81, 927.33], [-5874.26, 920.07], [-5888.23, 916.36], [-5904.74, 911.64], [-5921.45, 900.48], [-5942.29, 889.43], [-5962.15, 875.3], [-5975.15, 867.62], [-5982.43, 864.78], [-5987.52, 862.95], [-5989.2, 860.86], [-5999.72, 858.11], [-6035.99, 848.59], [-6065.67, 837.09], [-6074.59, 833.4], [-6085.95, 826.74], [-6103.74, 815.61], [-6129.55, 800.95], [-6148.9, 791.29], [-6174.36, 782.53], [-6178.58, 779.96], [-6183.93, 781.55], [-6201.96, 780.47], [-6207.35, 780.63], [-6222.05, 776.57], [-6237.07, 773.79], [-6255.54, 773.13], [-6277.48, 769.99], [-6305.6, 764.86], [-6340.47, 758.1], [-6349.9, 757.02], [-6370.84, 754.61], [-6385.44, 756.5], [-6430.72, 758.69], [-6442.04, 756.96], [-6461.99, 754.0], [-6482.56, 750.47], [-6487.98, 747.38], [-6489.99, 739.46], [-6493.99, 734.55], [-6508.21, 734.97], [-6511.02, 740.69], [-6517.81, 741.17], [-6532.17, 736.86], [-6541.28, 737.5], [-6555.62, 742.21], [-6560.73, 743.6], [-6570.23, 743.0], [-6578.61, 740.29], [-6588.42, 739.69], [-6600.54, 740.64], [-6618.63, 740.58], [-6635.18, 742.25], [-6650.33, 741.21], [-6661.84, 737.86], [-6672.86, 741.28], [-6677.56, 742.2], [-6691.96, 744.99], [-6702.87, 748.97], [-6711.36, 753.05], [-6724.41, 752.85], [-6727.13, 749.58], [-6735.38, 742.24], [-6745.44, 743.13], [-6749.41, 749.45], [-6753.85, 759.62], [-6769.62, 767.76], [-6788.24, 773.6], [-6822.91, 778.52], [-6838.76, 784.83], [-6854.87, 798.34], [-6869.36, 808.73], [-6873.36, 813.26], [-6883.75, 824.99], [-6902.3, 835.31], [-6940.71, 856.82], [-6945.08, 854.22], [-6957.36, 862.38], [-6960.3, 868.71], [-6996.39, 891.98], [-7042.38, 922.33], [-7058.13, 930.0], [-7075.28, 934.78], [-7092.09, 944.33], [-7105.71, 948.36], [-7109.42, 948.47], [-7114.43, 947.64], [-7120.88, 951.63], [-7124.78, 955.06], [-7128.99, 955.08], [-7132.27, 957.32], [-7135.17, 960.51], [-7140.63, 966.52], [-7145.85, 972.74], [-7149.8, 977.42], [-7153.69, 982.05], [-7160.34, 989.82], [-7169.39, 997.19], [-7202.4, 1029.89], [-7254.38, 1087.99], [-7293.77, 1133.22], [-7357.47, 1223.7], [-7367.71, 1247.76], [-7372.87, 1263.57], [-7375.63, 1280.52], [-7378.91, 1341.8], [-7383.03, 1361.41], [-7381.76, 1377.75], [-7376.39, 1387.32], [-7364.2, 1389.7], [-7353.23, 1390.15], [-7352.72, 1403.2], [-7362.58, 1404.85], [-7373.35, 1411.01], [-7382.37, 1436.62], [-7384.62, 1439.8], [-7390.53, 1452.05], [-7402.52, 1469.56], [-7411.07, 1479.83], [-7423.61, 1492.83], [-7451.7, 1542.78], [-7464.48, 1542.79], [-7495.91, 1539.5], [-7511.79, 1543.41], [-7528.16, 1550.51], [-7545.19, 1564.5], [-7550.75, 1571.72], [-7565.93, 1584.8], [-7572.01, 1598.77], [-7589.22, 1606.75], [-7602.94, 1615.34], [-7614.67, 1623.45], [-7622.07, 1626.53], [-7627.24, 1627.26], [-7630.45, 1630.95], [-7638.63, 1637.08], [-7652.81, 1644.97], [-7674.16, 1664.27], [-7680.64, 1674.56], [-7683.11, 1678.48], [-7693.53, 1682.07], [-7695.38, 1682.72], [-7714.96, 1693.33], [-7717.92, 1695.59], [-7728.44, 1695.9], [-7733.52, 1699.64], [-7738.21, 1701.79], [-7751.76, 1711.82], [-7775.09, 1736.0], [-7788.37, 1751.11], [-7795.65, 1758.36], [-7821.84, 1774.37], [-7837.38, 1780.95], [-7862.58, 1815.21], [-7884.82, 1838.42], [-7897.11, 1856.6], [-7916.4, 1852.86], [-7925.28, 1844.93], [-7935.13, 1843.35], [-7945.66, 1853.0], [-7953.22, 1860.55], [-7977.48, 1892.83], [-7980.46, 1898.34], [-7985.87, 1908.36], [-7990.08, 1935.05], [-8004.84, 1952.73], [-8018.17, 1965.18], [-8030.72, 1989.26], [-8048.08, 2016.34], [-8068.22, 2051.69], [-8083.53, 2079.88], [-8092.53, 2114.37], [-8115.74, 2169.17], [-8118.35, 2175.33], [-8126.74, 2195.15], [-8129.3, 2201.18], [-8132.84, 2210.57], [-8138.39, 2215.94], [-8154.64, 2214.11], [-8172.56, 2208.41], [-8183.06, 2202.98], [-8191.33, 2194.29], [-8195.11, 2184.83], [-8205.01, 2175.1], [-8217.88, 2168.52], [-8231.94, 2165.89], [-8247.69, 2165.49], [-8265.97, 2179.74], [-8273.05, 2194.54], [-8274.77, 2210.26], [-8270.43, 2219.35], [-8262.66, 2235.16], [-8252.88, 2240.97], [-8249.76, 2242.61], [-8239.1, 2248.83], [-8219.0, 2248.67], [-8195.47, 2233.84], [-8176.26, 2231.75], [-8147.11, 2236.27], [-8142.07, 2242.73], [-8142.27, 2243.33], [-8151.33, 2271.46], [-8147.32, 2281.73], [-8154.52, 2288.68], [-8156.0, 2295.19], [-8167.7, 2341.64]], "holes": [[[-2759.76, 6783.84], [-2758.01, 6781.87], [-2753.9, 6780.7], [-2749.96, 6781.43], [-2746.4, 6783.34], [-2745.94, 6787.98], [-2745.46, 6790.19], [-2747.83, 6792.69], [-2750.62, 6795.1], [-2753.88, 6796.57], [-2758.09, 6797.54], [-2760.09, 6798.13], [-2761.5, 6797.21], [-2761.99, 6794.9], [-2762.29, 6791.83], [-2762.09, 6787.92], [-2759.76, 6783.84]], [[-2223.0, 7849.11], [-2225.07, 7845.92], [-2224.04, 7843.71], [-2221.02, 7842.31], [-2215.66, 7846.29], [-2218.41, 7849.64], [-2223.0, 7849.11]], [[-2252.63, 7942.2], [-2254.09, 7937.24], [-2253.05, 7935.24], [-2249.25, 7938.4], [-2252.63, 7942.2]]]}}, {"shape": {"outer": [[-2050.97, -3190.8], [-2020.98, -3182.08], [-1992.7, -3171.57], [-1960.47, -3145.47], [-1908.38, -3098.16], [-1884.94, -3073.57], [-1871.55, -3033.86], [-1839.6, -2986.85], [-1819.58, -2959.53], [-1812.61, -2930.1], [-1806.54, -2901.52], [-1795.21, -2872.22], [-1783.82, -2841.18], [-1766.87, -2843.32], [-1748.1, -2845.68], [-1763.67, -2870.51], [-1775.01, -2899.81], [-1787.52, -2939.54], [-1800.68, -2971.4], [-1835.23, -3017.47], [-1854.45, -3047.42], [-1866.83, -3082.8], [-1893.25, -3119.51], [-1917.6, -3144.95], [-1939.84, -3158.27], [-1969.3, -3179.21], [-1999.59, -3198.38], [-2027.05, -3210.66], [-2062.31, -3220.11], [-2112.67, -3237.84], [-2091.87, -3214.04], [-2050.97, -3190.8]], "holes": []}}, {"shape": {"outer": [[-2602.71, -3337.94], [-2528.19, -3332.23], [-2489.74, -3333.34], [-2491.99, -3289.7], [-2532.77, -3065.43], [-2535.16, -3027.02], [-2531.76, -3000.1], [-2482.06, -2944.02], [-2424.95, -2874.2], [-2396.99, -2844.51], [-2352.5, -2825.4], [-2322.94, -2818.26], [-2326.58, -2798.59], [-2326.93, -2780.29], [-2323.75, -2761.2], [-2309.28, -2744.19], [-2294.72, -2724.57], [-2285.05, -2692.6], [-2302.97, -2686.24], [-2377.43, -2710.53], [-2450.79, -2743.98], [-2428.18, -2701.63], [-2400.21, -2697.45], [-2287.5, -2655.93], [-2294.77, -2624.53], [-2295.89, -2605.59], [-2296.76, -2574.85], [-2288.29, -2546.55], [-2270.93, -2520.47], [-2258.35, -2501.45], [-2238.85, -2484.36], [-2217.8, -2459.7], [-2209.54, -2430.74], [-2204.76, -2401.03], [-2194.71, -2378.67], [-2187.2, -2366.05], [-2186.64, -2350.78], [-2185.47, -2336.55], [-2186.12, -2332.61], [-2185.87, -2324.22], [-2184.47, -2317.19], [-2183.89, -2312.09], [-2182.0, -2303.32], [-2181.87, -2295.04], [-2183.65, -2284.63], [-2184.69, -2275.36], [-2183.52, -2268.64], [-2184.74, -2261.53], [-2181.63, -2252.57], [-2181.12, -2242.34], [-2180.84, -2232.55], [-2182.73, -2226.19], [-2181.51, -2221.64], [-2181.52, -2218.05], [-2181.53, -2214.57], [-2178.95, -2208.63], [-2175.9, -2204.93], [-2171.89, -2202.42], [-2168.99, -2200.64], [-2165.49, -2200.53], [-2160.62, -2202.3], [-2157.57, -2202.71], [-2152.26, -2204.39], [-2147.53, -2207.13], [-2143.82, -2207.24], [-2136.91, -2210.27], [-2133.27, -2216.59], [-2128.22, -2219.67], [-2122.84, -2226.69], [-2121.56, -2231.32], [-2120.8, -2235.35], [-2119.66, -2241.49], [-2121.16, -2247.98], [-2124.55, -2251.8], [-2125.8, -2253.62], [-2124.69, -2260.3], [-2126.1, -2264.07], [-2129.31, -2269.31], [-2129.18, -2272.15], [-2130.11, -2274.41], [-2132.12, -2275.77], [-2132.76, -2279.01], [-2131.67, -2283.07], [-2131.99, -2290.25], [-2129.83, -2295.1], [-2123.23, -2300.96], [-2114.94, -2305.56], [-2108.06, -2305.75], [-2099.91, -2307.51], [-2094.08, -2310.08], [-2089.58, -2313.04], [-2086.09, -2317.39], [-2082.12, -2319.78], [-2077.21, -2319.92], [-2074.51, -2321.53], [-2069.31, -2322.66], [-2065.51, -2323.75], [-2054.97, -2326.12], [-2047.63, -2329.48], [-2044.18, -2330.89], [-2041.5, -2329.12], [-2026.52, -2332.6], [-2018.7, -2334.35], [-2011.23, -2333.04], [-2002.7, -2329.14], [-1994.66, -2327.3], [-1987.9, -2327.5], [-1981.7, -2328.76], [-1978.22, -2329.52], [-1970.26, -2333.99], [-1960.02, -2338.87], [-1953.5, -2344.16], [-1947.76, -2349.78], [-1944.18, -2350.65], [-1932.82, -2358.71], [-1926.93, -2362.8], [-1920.41, -2372.13], [-1914.48, -2378.62], [-1904.06, -2388.72], [-1899.38, -2396.8], [-1892.71, -2404.52], [-1888.78, -2404.73], [-1878.74, -2405.35], [-1868.93, -2406.39], [-1853.99, -2407.7], [-1844.32, -2413.42], [-1836.48, -2422.24], [-1830.31, -2427.87], [-1827.58, -2439.81], [-1825.48, -2453.92], [-1825.57, -2457.08], [-1823.68, -2463.78], [-1819.57, -2472.94], [-1817.36, -2479.98], [-1816.08, -2488.5], [-1813.41, -2498.61], [-1811.81, -2503.44], [-1808.52, -2507.02], [-1801.26, -2509.08], [-1791.97, -2513.27], [-1779.32, -2518.1], [-1770.82, -2522.59], [-1764.25, -2526.16], [-1757.99, -2528.73], [-1751.88, -2532.79], [-1754.22, -2542.24], [-1758.94, -2546.68], [-1763.34, -2547.86], [-1771.29, -2542.63], [-1781.12, -2542.35], [-1787.6, -2547.16], [-1789.04, -2551.7], [-1779.65, -2559.8], [-1764.81, -2568.3], [-1751.11, -2578.49], [-1749.2, -2588.13], [-1749.7, -2597.92], [-1760.68, -2622.88], [-1756.55, -2631.06], [-1757.82, -2644.96], [-1748.88, -2668.74], [-1744.73, -2683.89], [-1734.56, -2680.27], [-1724.51, -2680.55], [-1712.09, -2682.0], [-1698.7, -2679.98], [-1680.73, -2678.54], [-1676.96, -2676.68], [-1673.31, -2686.81], [-1678.94, -2684.9], [-1692.08, -2685.4], [-1704.9, -2690.48], [-1717.77, -2689.46], [-1734.25, -2692.26], [-1739.35, -2702.13], [-1745.17, -2706.97], [-1750.12, -2704.22], [-1753.7, -2715.01], [-1757.83, -2729.48], [-1753.69, -2737.46], [-1745.95, -2749.65], [-1737.87, -2765.13], [-1732.07, -2776.63], [-1731.9, -2785.78], [-1732.96, -2799.91], [-1736.41, -2805.91], [-1739.59, -2809.95], [-1746.36, -2809.98], [-1752.88, -2808.48], [-1756.45, -2803.37], [-1760.34, -2793.9], [-1762.81, -2788.59], [-1766.51, -2780.65], [-1781.33, -2755.82], [-1783.38, -2743.57], [-1781.48, -2738.39], [-1787.53, -2727.98], [-1784.64, -2703.45], [-1785.64, -2684.91], [-1793.82, -2657.65], [-1797.09, -2649.94], [-1794.22, -2641.08], [-1804.58, -2628.6], [-1812.0, -2605.5], [-1818.39, -2583.97], [-1819.8, -2572.38], [-1820.63, -2563.21], [-1817.48, -2552.19], [-1813.48, -2542.5], [-1818.03, -2526.04], [-1829.47, -2520.7], [-1840.17, -2512.54], [-1854.3, -2494.71], [-1863.87, -2485.29], [-1878.78, -2479.19], [-1893.72, -2473.99], [-1905.26, -2472.36], [-1915.14, -2473.81], [-1920.5, -2477.8], [-1923.47, -2482.07], [-1929.54, -2487.99], [-1937.35, -2486.02], [-1943.95, -2495.2], [-1956.29, -2506.17], [-1966.97, -2512.61], [-1977.32, -2514.94], [-1990.07, -2517.62], [-2002.25, -2515.31], [-2013.04, -2510.42], [-2021.99, -2502.32], [-2032.46, -2493.75], [-2046.45, -2485.94], [-2063.43, -2483.49], [-2076.01, -2480.3], [-2090.82, -2478.13], [-2104.0, -2480.36], [-2111.82, -2486.24], [-2123.19, -2493.97], [-2132.97, -2506.98], [-2141.28, -2514.8], [-2144.45, -2518.41], [-2144.62, -2524.51], [-2146.32, -2530.56], [-2148.38, -2533.55], [-2153.47, -2551.05], [-2157.66, -2559.65], [-2162.87, -2566.25], [-2165.04, -2573.37], [-2168.56, -2581.55], [-2175.64, -2592.24], [-2182.74, -2603.37], [-2189.49, -2610.14], [-2211.25, -2629.12], [-2216.73, -2629.84], [-2224.04, -2640.74], [-2228.46, -2649.98], [-2249.36, -2683.17], [-2263.55, -2704.99], [-2284.88, -2732.25], [-2305.6, -2753.44], [-2313.62, -2773.7], [-2307.33, -2813.53], [-2302.64, -2817.58], [-2273.61, -2811.88], [-2228.62, -2798.36], [-2213.42, -2801.84], [-2244.79, -2813.14], [-2314.47, -2833.79], [-2352.3, -2841.43], [-2385.07, -2856.17], [-2415.59, -2883.18], [-2449.32, -2931.01], [-2473.74, -2959.06], [-2512.49, -2998.91], [-2518.41, -3022.27], [-2513.9, -3078.17], [-2494.15, -3182.45], [-2476.69, -3290.14], [-2394.08, -3291.64], [-2362.95, -3303.86], [-2324.62, -3309.31], [-2249.54, -3314.09], [-2225.12, -3316.53], [-2235.01, -3325.4], [-2250.98, -3348.91], [-2260.69, -3364.24], [-2305.87, -3370.84], [-2458.3, -3362.76], [-2462.52, -3364.84], [-2457.85, -3396.35], [-2460.1, -3406.38], [-2470.78, -3405.8], [-2474.46, -3404.34], [-2481.8, -3371.61], [-2481.88, -3363.03], [-2485.74, -3357.36], [-2491.5, -3355.95], [-2507.79, -3360.0], [-2552.98, -3359.59], [-2573.15, -3358.53], [-2599.55, -3359.57], [-2649.09, -3356.17], [-2701.1, -3352.23], [-2720.52, -3350.59], [-2727.77, -3351.8], [-2744.16, -3354.53], [-2782.08, -3350.17], [-2794.3, -3357.23], [-2803.07, -3373.32], [-2810.36, -3383.13], [-2824.73, -3386.61], [-2844.84, -3385.26], [-2849.44, -3377.44], [-2853.25, -3366.89], [-2847.89, -3348.31], [-2841.16, -3327.15], [-2832.79, -3309.52], [-2813.74, -3316.6], [-2794.71, -3323.69], [-2745.97, -3332.07], [-2701.54, -3336.57], [-2653.18, -3329.5], [-2602.71, -3337.94]], "holes": [[[-2116.52, -2444.28], [-2104.05, -2436.36], [-2088.91, -2426.78], [-2083.52, -2421.7], [-2078.31, -2407.69], [-2075.49, -2393.17], [-2074.83, -2377.94], [-2080.72, -2369.94], [-2091.59, -2367.66], [-2102.31, -2368.23], [-2108.12, -2364.79], [-2120.17, -2357.92], [-2128.08, -2359.64], [-2131.73, -2357.36], [-2137.26, -2359.38], [-2144.31, -2361.35], [-2154.14, -2360.86], [-2157.19, -2360.55], [-2161.71, -2365.87], [-2162.55, -2372.16], [-2165.58, -2378.83], [-2168.93, -2381.13], [-2171.37, -2382.15], [-2175.46, -2387.91], [-2177.64, -2395.03], [-2185.72, -2440.77], [-2191.79, -2461.73], [-2208.16, -2483.47], [-2218.75, -2494.5], [-2227.9, -2500.99], [-2237.64, -2512.69], [-2250.28, -2526.71], [-2260.34, -2534.26], [-2267.4, -2544.09], [-2267.47, -2576.98], [-2270.99, -2600.62], [-2266.95, -2620.12], [-2264.21, -2631.09], [-2257.9, -2632.14], [-2236.09, -2618.83], [-2223.32, -2607.87], [-2213.58, -2596.17], [-2210.82, -2584.04], [-2201.03, -2570.16], [-2187.25, -2554.65], [-2174.34, -2539.13], [-2171.91, -2523.07], [-2156.97, -2505.21], [-2150.93, -2492.96], [-2142.11, -2482.76], [-2133.41, -2469.07], [-2126.13, -2459.25], [-2116.52, -2444.28]], [[-1999.93, -2457.43], [-1996.38, -2459.48], [-1989.41, -2460.55], [-1986.14, -2460.55], [-1984.57, -2459.39], [-1983.04, -2455.51], [-1982.75, -2453.12], [-1985.55, -2451.51], [-1988.46, -2449.91], [-1990.33, -2446.91], [-1993.34, -2444.98], [-1997.6, -2443.33], [-1996.83, -2440.95], [-1999.7, -2438.04], [-2014.32, -2433.15], [-2017.59, -2432.85], [-2020.73, -2431.78], [-2025.18, -2430.88], [-2028.99, -2430.34], [-2033.36, -2429.99], [-2039.41, -2431.25], [-2042.41, -2432.91], [-2043.57, -2435.49], [-2043.58, -2439.52], [-2041.35, -2441.63], [-2038.1, -2443.15], [-2035.12, -2445.53], [-2032.25, -2444.73], [-2029.19, -2444.82], [-2025.51, -2446.12], [-2019.03, -2448.92], [-2011.79, -2451.96], [-2007.98, -2452.18], [-1999.93, -2457.43]]]}}, {"shape": {"outer": [[-2076.33, -1993.77], [-2070.83, -1984.23], [-2072.04, -1983.24], [-2072.98, -1982.29], [-2073.6, -1981.08], [-2073.93, -1979.75], [-2074.04, -1978.53], [-2073.98, -1977.16], [-2073.7, -1976.14], [-2073.33, -1975.28], [-2072.86, -1974.52], [-2072.13, -1973.7], [-2071.28, -1973.0], [-2070.49, -1972.53], [-2069.77, -1972.21], [-2068.8, -1971.94], [-2067.75, -1971.81], [-2066.55, -1971.85], [-2065.27, -1972.15], [-2064.33, -1972.6], [-2061.88, -1974.15], [-2054.48, -1969.89], [-2053.44, -1972.36], [-2052.74, -1974.81], [-2049.07, -1977.09], [-2042.51, -1978.57], [-2033.31, -1984.09], [-2029.1, -1986.7], [-2001.72, -1998.14], [-1957.17, -2032.77], [-1917.62, -2065.21], [-1912.87, -2075.02], [-1911.37, -2083.78], [-1905.51, -2089.12], [-1902.29, -2092.08], [-1898.16, -2095.91], [-1888.11, -2096.2], [-1858.3, -2124.08], [-1829.44, -2154.09], [-1800.7, -2188.89], [-1782.67, -2211.98], [-1763.84, -2241.35], [-1744.62, -2275.89], [-1724.04, -2320.48], [-1707.86, -2366.25], [-1695.87, -2405.37], [-1689.28, -2420.55], [-1679.71, -2475.78], [-1679.36, -2503.62], [-1672.99, -2522.79], [-1666.03, -2585.3], [-1662.96, -2615.45], [-1662.8, -2640.29], [-1657.86, -2681.82], [-1653.68, -2718.97], [-1652.48, -2738.18], [-1653.31, -2752.09], [-1651.42, -2762.17], [-1647.71, -2770.12], [-1644.85, -2792.43], [-1639.16, -2807.39], [-1630.8, -2821.15], [-1621.92, -2831.42], [-1620.07, -2843.24], [-1595.99, -2857.43], [-1578.69, -2864.03], [-1550.16, -2875.74], [-1511.59, -2887.74], [-1462.95, -2899.58], [-1384.17, -2912.05], [-1256.53, -2939.78], [-1254.22, -2938.44], [-1213.34, -2947.49], [-1161.47, -2956.98], [-1142.75, -2960.8], [-1128.66, -2966.24], [-1092.07, -2972.55], [-1086.06, -2969.61], [-1055.29, -2973.06], [-1048.32, -2974.88], [-1011.91, -2973.62], [-984.23, -2977.58], [-958.74, -2973.99], [-941.06, -2972.88], [-931.53, -2973.15], [-896.1, -2968.24], [-848.52, -2960.81], [-776.36, -2949.77], [-760.36, -2944.3], [-732.87, -2940.24], [-714.04, -2937.04], [-688.5, -2924.52], [-664.77, -2908.51], [-647.73, -2893.62], [-602.79, -2858.75], [-562.5, -2827.48], [-462.36, -2747.89], [-414.03, -2706.7], [-396.8, -2695.37], [-381.7, -2685.75], [-345.53, -2654.87], [-285.37, -2607.16], [-266.35, -2596.75], [-227.41, -2569.29], [-184.21, -2532.17], [-150.67, -2505.13], [-127.53, -2489.11], [-102.88, -2478.18], [-83.34, -2473.68], [-13.31, -2465.42], [4.13, -2462.53], [7.73, -2461.44], [16.1, -2455.25], [18.91, -2448.69], [24.3, -2443.73], [54.23, -2415.91], [72.57, -2397.48], [87.63, -2380.87], [113.0, -2355.75], [131.41, -2335.29], [149.42, -2322.51], [159.96, -2313.32], [161.97, -2311.57], [163.66, -2309.29], [165.67, -2306.61], [168.25, -2306.01], [181.41, -2294.19], [184.54, -2292.66], [199.59, -2277.28], [205.4, -2273.2], [218.63, -2261.37], [227.62, -2252.8], [228.4, -2248.25], [233.46, -2254.16], [241.69, -2261.96], [231.94, -2267.38], [224.56, -2275.67], [208.63, -2291.55], [192.01, -2306.14], [183.17, -2310.02], [177.79, -2312.38], [172.49, -2315.88], [163.48, -2321.83], [145.33, -2345.73], [143.01, -2357.68], [127.52, -2371.05], [104.91, -2387.27], [80.23, -2407.46], [73.49, -2416.59], [67.82, -2419.66], [63.11, -2420.79], [35.61, -2444.4], [25.54, -2461.73], [19.82, -2464.8], [8.54, -2471.99], [-0.12, -2472.33], [-27.77, -2482.44], [-44.72, -2483.21], [-89.85, -2487.49], [-110.58, -2494.79], [-130.0, -2507.19], [-148.76, -2521.19], [-177.19, -2543.08], [-196.94, -2556.6], [-214.97, -2570.44], [-224.73, -2577.7], [-226.83, -2581.95], [-230.03, -2586.71], [-237.69, -2590.43], [-291.8, -2634.32], [-316.37, -2659.96], [-353.35, -2687.43], [-377.93, -2703.61], [-389.01, -2711.93], [-405.34, -2722.99], [-438.47, -2750.71], [-502.25, -2803.57], [-525.32, -2820.22], [-536.83, -2830.57], [-545.59, -2836.02], [-573.48, -2857.1], [-634.51, -2906.98], [-664.26, -2927.12], [-685.86, -2945.71], [-695.12, -2948.85], [-705.61, -2949.98], [-712.09, -2950.7], [-725.04, -2949.8], [-737.51, -2951.05], [-764.82, -2955.48], [-803.58, -2963.34], [-836.47, -2967.43], [-882.59, -2974.55], [-905.08, -2980.19], [-939.45, -2985.84], [-951.52, -2985.69], [-971.57, -2987.98], [-988.7, -2988.93], [-1005.92, -2986.46], [-1011.91, -2984.39], [-1092.15, -2981.11], [-1125.73, -2977.75], [-1140.9, -2976.17], [-1162.27, -2971.87], [-1226.04, -2958.38], [-1249.0, -2955.07], [-1339.52, -2936.55], [-1345.24, -2938.18], [-1353.86, -2934.11], [-1405.67, -2927.54], [-1469.11, -2916.4], [-1540.78, -2899.54], [-1575.83, -2887.38], [-1601.52, -2867.3], [-1621.68, -2857.45], [-1625.62, -2859.12], [-1648.34, -2848.63], [-1658.79, -2813.15], [-1660.5, -2796.54], [-1673.31, -2686.81], [-1676.96, -2676.68], [-1699.14, -2616.05], [-1704.37, -2577.05], [-1750.17, -2547.42], [-1748.57, -2534.24], [-1716.01, -2511.23], [-1714.38, -2489.33], [-1732.49, -2442.91], [-1734.88, -2426.59], [-1749.19, -2377.21], [-1758.91, -2351.01], [-1776.45, -2315.67], [-1779.79, -2308.95], [-1776.1, -2283.16], [-1892.87, -2127.02], [-1907.05, -2107.45], [-1915.31, -2098.83], [-1919.9, -2094.54], [-1934.47, -2091.78], [-1945.65, -2098.32], [-1966.37, -2121.85], [-1987.26, -2132.94], [-2001.3, -2132.3], [-2015.64, -2120.82], [-2024.19, -2102.53], [-2037.2, -2086.95], [-2048.61, -2072.72], [-2071.62, -2032.32], [-2071.81, -2016.43], [-2071.85, -2012.72], [-2057.56, -1997.97], [-2061.51, -1994.12], [-2066.46, -1995.59], [-2071.93, -1995.07], [-2076.33, -1993.77]], "holes": []}}, {"shape": {"outer": [[-4153.97, -2536.7], [-4150.36, -2533.38], [-4145.09, -2533.54], [-4107.71, -2463.86], [-4075.55, -2416.69], [-4051.66, -2388.81], [-3998.77, -2326.2], [-3946.66, -2290.07], [-3940.13, -2286.41], [-3932.79, -2282.13], [-3921.82, -2276.04], [-3901.14, -2263.34], [-3877.34, -2255.16], [-3848.06, -2242.16], [-3816.87, -2225.51], [-3813.01, -2224.66], [-3787.87, -2219.04], [-3767.38, -2214.46], [-3757.8, -2220.29], [-3756.19, -2223.39], [-3741.53, -2220.53], [-3741.63, -2215.25], [-3733.3, -2212.65], [-3729.04, -2211.51], [-3728.4, -2207.5], [-3725.0, -2207.59], [-3720.16, -2214.41], [-3708.36, -2204.08], [-3696.32, -2203.19], [-3689.42, -2199.69], [-3683.43, -2200.35], [-3682.99, -2203.9], [-3643.51, -2196.27], [-3631.18, -2197.28], [-3626.01, -2202.48], [-3615.17, -2201.68], [-3612.07, -2195.44], [-3607.61, -2190.99], [-3589.15, -2182.76], [-3582.96, -2181.84], [-3573.42, -2179.8], [-3560.12, -2182.3], [-3536.11, -2192.81], [-3518.55, -2198.94], [-3464.24, -2178.6], [-3428.88, -2166.11], [-3374.16, -2146.8], [-3360.77, -2133.3], [-3337.9, -2126.26], [-3312.77, -2122.87], [-3304.66, -2119.88], [-3295.35, -2117.37], [-3285.35, -2110.59], [-3281.14, -2108.67], [-3278.86, -2106.31], [-3274.58, -2105.85], [-3268.02, -2104.02], [-3259.48, -2098.05], [-3249.95, -2089.58], [-3242.68, -2087.42], [-3231.37, -2075.65], [-3219.44, -2072.91], [-3190.41, -2045.31], [-3160.82, -2017.99], [-3140.25, -2007.7], [-3132.46, -1996.42], [-3106.35, -1989.04], [-3091.62, -1983.25], [-3054.28, -1975.02], [-3044.63, -1977.65], [-3035.62, -1963.93], [-3033.48, -1943.52], [-3048.36, -1925.66], [-3061.25, -1910.09], [-3065.84, -1885.72], [-3061.61, -1851.4], [-3053.23, -1838.92], [-3029.44, -1803.53], [-2994.55, -1784.71], [-2982.12, -1781.53], [-2979.62, -1780.59], [-2976.36, -1780.05], [-2965.74, -1784.07], [-2957.66, -1785.0], [-2952.77, -1784.54], [-2951.31, -1798.87], [-2959.0, -1800.26], [-2962.85, -1811.87], [-2964.46, -1824.2], [-2960.96, -1843.05], [-2947.15, -1865.12], [-2917.82, -1885.51], [-2900.27, -1899.02], [-2818.57, -1914.26], [-2768.92, -1922.54], [-2726.54, -1937.89], [-2713.15, -1938.91], [-2658.12, -1926.27], [-2625.02, -1921.82], [-2589.75, -1918.0], [-2540.09, -1918.04], [-2511.43, -1923.77], [-2507.75, -1925.52], [-2485.66, -1936.01], [-2461.13, -1952.95], [-2450.72, -1965.54], [-2433.05, -1978.92], [-2414.86, -1983.37], [-2394.38, -1965.93], [-2348.86, -1952.07], [-2304.13, -1928.96], [-2220.56, -1911.1], [-2191.54, -1910.99], [-2168.96, -1914.22], [-2153.4, -1921.44], [-2140.46, -1927.07], [-2073.91, -1957.44], [-2074.92, -1959.34], [-2076.46, -1962.23], [-2072.65, -1964.2], [-2069.07, -1963.29], [-2065.52, -1963.55], [-2063.41, -1970.96], [-2064.33, -1972.6], [-2065.27, -1972.15], [-2066.55, -1971.85], [-2067.75, -1971.81], [-2068.8, -1971.94], [-2069.77, -1972.21], [-2070.49, -1972.53], [-2071.28, -1973.0], [-2072.13, -1973.7], [-2072.86, -1974.52], [-2073.33, -1975.28], [-2073.7, -1976.14], [-2073.98, -1977.16], [-2074.04, -1978.53], [-2073.93, -1979.75], [-2073.6, -1981.08], [-2072.98, -1982.29], [-2072.04, -1983.24], [-2070.83, -1984.23], [-2076.33, -1993.77], [-2082.19, -1990.06], [-2084.84, -1985.0], [-2085.54, -1980.68], [-2096.04, -1979.84], [-2110.55, -1999.23], [-2180.41, -2005.7], [-2267.72, -2025.5], [-2282.3, -2094.78], [-2296.37, -2135.49], [-2300.87, -2150.14], [-2311.47, -2184.57], [-2343.74, -2236.61], [-2357.87, -2289.89], [-2356.23, -2373.94], [-2348.66, -2455.25], [-2355.84, -2536.02], [-2375.43, -2572.07], [-2420.38, -2637.43], [-2469.7, -2741.03], [-2480.67, -2773.51], [-2505.36, -2781.26], [-2521.37, -2790.38], [-2536.37, -2795.18], [-2544.44, -2801.92], [-2551.58, -2806.94], [-2563.59, -2798.76], [-2573.1, -2795.0], [-2590.62, -2787.37], [-2612.93, -2784.91], [-2628.58, -2786.79], [-2651.79, -2794.48], [-2671.09, -2796.53], [-2681.08, -2778.82], [-2697.1, -2771.96], [-2743.13, -2766.75], [-2848.55, -2759.26], [-2896.81, -2770.97], [-3068.82, -2817.29], [-3089.47, -2822.42], [-3109.1, -2816.91], [-3161.15, -2816.72], [-3343.52, -2804.0], [-3359.36, -2763.28], [-3438.51, -2737.64], [-3455.01, -2744.09], [-3478.56, -2760.15], [-3513.72, -2766.11], [-3550.03, -2763.67], [-3612.45, -2793.23], [-3635.4, -2805.6], [-3652.96, -2815.07], [-3699.49, -2851.37], [-3735.32, -2868.52], [-3786.84, -2908.16], [-3844.63, -2922.53], [-3924.33, -2920.22], [-3949.0, -2926.47], [-3963.64, -2921.6], [-3978.79, -2916.55], [-4016.54, -2891.05], [-4049.17, -2882.44], [-4064.87, -2893.14], [-4071.48, -2879.7], [-4101.05, -2885.82], [-4115.93, -2916.76], [-4131.51, -2946.98], [-4164.01, -2957.89], [-4166.51, -2949.1], [-4167.82, -2944.53], [-4141.14, -2917.43], [-4106.65, -2861.95], [-4108.17, -2841.69], [-4113.7, -2791.34], [-4145.88, -2742.39], [-4164.63, -2713.87], [-4179.12, -2634.67], [-4156.97, -2570.48], [-4153.97, -2536.7]], "holes": []}}, {"shape": {"outer": [[1040.52, 1951.03], [1045.71, 1947.99], [1051.39, 1942.7], [1054.87, 1939.38], [1057.71, 1936.0], [1059.92, 1922.38], [1063.13, 1917.44], [1072.44, 1913.05], [1086.64, 1906.18], [1095.52, 1902.83], [1100.64, 1898.54], [1107.42, 1890.74], [1112.13, 1883.63], [1119.03, 1868.86], [1122.93, 1846.64], [1123.0, 1835.55], [1119.41, 1820.52], [1120.8, 1814.92], [1126.78, 1810.62], [1138.06, 1807.58], [1144.69, 1806.41], [1148.65, 1803.58], [1153.64, 1802.35], [1157.04, 1799.21], [1159.53, 1794.46], [1163.98, 1789.65], [1168.39, 1780.9], [1174.87, 1765.18], [1179.97, 1742.46], [1185.97, 1736.45], [1191.4, 1727.59], [1205.86, 1717.71], [1213.63, 1710.41], [1221.48, 1706.06], [1231.55, 1706.65], [1239.28, 1705.67], [1257.78, 1704.5], [1259.36, 1704.78], [1261.24, 1707.26], [1261.32, 1709.25], [1262.26, 1712.33], [1266.32, 1723.09], [1267.69, 1728.92], [1267.66, 1732.02], [1266.79, 1733.95], [1264.51, 1736.81], [1248.16, 1760.68], [1244.34, 1774.27], [1242.81, 1787.96], [1243.34, 1793.12], [1244.91, 1796.72], [1247.49, 1800.95], [1251.32, 1803.23], [1254.86, 1804.13], [1257.03, 1802.22], [1264.96, 1794.64], [1269.01, 1787.56], [1277.09, 1776.05], [1289.11, 1756.36], [1292.11, 1752.63], [1295.46, 1749.08], [1298.0, 1744.92], [1299.62, 1740.33], [1300.25, 1735.5], [1299.96, 1731.13], [1298.84, 1726.88], [1296.96, 1722.92], [1294.36, 1719.38], [1275.49, 1702.15], [1271.96, 1698.36], [1270.87, 1696.68], [1267.7, 1688.23], [1261.49, 1681.53], [1249.02, 1671.21], [1238.68, 1664.76], [1228.19, 1661.13], [1215.68, 1658.87], [1206.4, 1655.43], [1199.68, 1649.53], [1192.03, 1636.32], [1186.83, 1628.63], [1180.84, 1621.52], [1174.15, 1615.09], [1166.8, 1609.38], [1158.9, 1604.48], [1150.53, 1600.43], [1141.78, 1597.28], [1132.74, 1595.05], [1123.51, 1593.79], [1114.21, 1593.49], [1105.17, 1594.14], [1096.24, 1595.71], [1087.53, 1598.17], [1079.12, 1601.51], [1071.08, 1605.69], [1063.52, 1610.67], [1041.25, 1625.27], [1017.65, 1655.98], [1004.26, 1683.1], [992.6, 1710.82], [986.81, 1716.27], [954.34, 1735.27], [942.19, 1738.11], [937.04, 1737.61], [933.46, 1738.69], [930.59, 1741.39], [922.18, 1756.86], [918.02, 1760.35], [908.89, 1765.73], [900.91, 1772.18], [896.06, 1779.26], [891.8, 1786.71], [888.12, 1794.46], [885.08, 1802.48], [882.81, 1810.23], [881.11, 1818.12], [880.01, 1826.12], [879.51, 1834.18], [879.96, 1842.74], [881.23, 1851.22], [883.34, 1859.52], [886.25, 1867.58], [889.61, 1874.71], [893.6, 1881.51], [898.19, 1887.92], [903.33, 1893.89], [920.75, 1910.45], [933.76, 1917.81], [941.56, 1931.26], [940.92, 1934.63], [937.77, 1940.07], [939.5, 1947.14], [938.74, 1950.97], [939.28, 1953.07], [948.99, 1964.2], [962.98, 1979.06], [966.84, 1981.69], [976.45, 1980.9], [986.83, 1977.86], [1004.27, 1971.35], [1022.55, 1962.09], [1040.52, 1951.03]], "holes": [[[1045.97, 1932.47], [1046.14, 1933.86], [1044.96, 1936.24], [1040.29, 1938.17], [1037.64, 1937.56], [1033.19, 1932.56], [1028.11, 1929.93], [1023.41, 1930.49], [1019.41, 1932.1], [1014.24, 1934.44], [1008.25, 1938.51], [973.16, 1959.44], [968.98, 1959.62], [966.85, 1959.03], [964.17, 1957.82], [962.47, 1955.97], [961.21, 1952.3], [960.78, 1947.56], [960.69, 1944.08], [959.62, 1937.25], [950.84, 1908.77], [941.79, 1893.82], [925.06, 1862.8], [922.12, 1836.0], [924.37, 1826.47], [930.48, 1814.76], [944.33, 1805.99], [951.78, 1795.43], [958.12, 1782.88], [966.92, 1778.13], [982.04, 1772.25], [992.57, 1763.11], [999.91, 1743.56], [1002.92, 1729.87], [1008.79, 1721.33], [1021.55, 1716.53], [1037.85, 1702.84], [1048.34, 1694.73], [1058.06, 1686.73], [1067.16, 1672.43], [1073.88, 1666.8], [1091.26, 1659.34], [1100.63, 1654.5], [1112.06, 1654.61], [1139.94, 1665.36], [1159.68, 1689.56], [1184.3, 1705.15], [1185.77, 1710.11], [1182.24, 1716.42], [1176.55, 1719.09], [1170.09, 1720.57], [1155.63, 1727.79], [1146.64, 1734.74], [1141.11, 1745.66], [1130.99, 1756.61], [1122.61, 1767.36], [1116.49, 1773.19], [1098.44, 1785.95], [1092.82, 1807.17], [1093.55, 1817.55], [1090.45, 1827.81], [1090.11, 1844.69], [1090.34, 1860.63], [1086.75, 1870.8], [1082.25, 1875.93], [1076.36, 1885.73], [1067.31, 1888.66], [1048.29, 1885.82], [1036.62, 1892.46], [1029.75, 1898.12], [1027.29, 1903.31], [1025.97, 1908.74], [1031.83, 1918.51], [1040.45, 1927.66], [1045.97, 1932.47]]]}}, {"shape": {"outer": [[-2250.2, -1855.28], [-2246.5, -1851.63], [-2242.57, -1851.55], [-2242.08, -1852.74], [-2241.01, -1853.6], [-2239.77, -1854.05], [-2238.51, -1853.96], [-2237.61, -1853.65], [-2236.5, -1854.9], [-2236.55, -1855.73], [-2238.64, -1856.45], [-2239.36, -1855.79], [-2240.07, -1856.0], [-2240.27, -1857.1], [-2238.95, -1858.7], [-2238.26, -1858.27], [-2238.16, -1857.54], [-2235.95, -1856.7], [-2233.75, -1857.6], [-2232.98, -1859.63], [-2233.77, -1859.91], [-2239.05, -1861.78], [-2240.54, -1862.31], [-2247.5, -1858.85], [-2250.19, -1859.05], [-2250.2, -1855.28]], "holes": [[[-2247.15, -1855.09], [-2247.23, -1856.41], [-2244.99, -1857.51], [-2243.64, -1857.48], [-2243.53, -1856.4], [-2243.08, -1855.35], [-2243.48, -1854.82], [-2244.85, -1854.73], [-2246.69, -1854.79], [-2247.15, -1855.09]]]}}, {"shape": {"outer": [[-2313.71, -1824.85], [-2314.37, -1823.14], [-2314.99, -1821.33], [-2316.01, -1821.24], [-2316.71, -1820.46], [-2316.45, -1819.56], [-2314.82, -1817.83], [-2310.62, -1816.75], [-2309.44, -1817.23], [-2309.37, -1818.37], [-2308.98, -1819.35], [-2307.7, -1819.09], [-2305.97, -1819.65], [-2302.3, -1819.22], [-2300.12, -1822.83], [-2307.2, -1828.94], [-2314.28, -1826.31], [-2313.71, -1824.85]], "holes": [[[-2312.72, -1821.45], [-2312.87, -1822.27], [-2312.53, -1822.64], [-2311.16, -1822.79], [-2311.04, -1823.64], [-2310.17, -1824.25], [-2309.24, -1823.31], [-2310.86, -1821.52], [-2311.67, -1821.24], [-2312.72, -1821.45]]]}}, {"shape": {"outer": [[-2357.04, -1706.7], [-2355.32, -1707.14], [-2354.33, -1706.54], [-2353.74, -1704.44], [-2354.91, -1703.46], [-2355.13, -1701.45], [-2353.71, -1698.29], [-2349.72, -1699.85], [-2344.15, -1703.72], [-2348.66, -1707.56], [-2353.92, -1708.88], [-2360.17, -1707.28], [-2360.09, -1706.49], [-2359.48, -1705.92], [-2357.69, -1705.75], [-2357.04, -1706.7]], "holes": [[[-2350.83, -1704.23], [-2351.56, -1705.86], [-2351.1, -1706.51], [-2350.6, -1706.63], [-2350.11, -1706.48], [-2349.57, -1705.87], [-2349.22, -1705.15], [-2349.1, -1704.24], [-2349.28, -1703.34], [-2349.58, -1703.08], [-2349.97, -1703.17], [-2350.83, -1704.23]]]}}, {"shape": {"outer": [[-20.79, -2871.48], [-31.65, -2868.99], [-47.3, -2873.66], [-59.83, -2885.51], [-76.37, -2923.16], [-84.92, -2954.83], [-84.03, -2969.78], [-81.73, -2984.87], [-77.7, -3004.7], [-71.32, -3018.95], [-62.92, -3031.17], [-54.83, -3038.73], [-40.95, -3053.08], [-27.02, -3064.09], [-10.57, -3070.12], [3.66, -3073.36], [10.52, -3074.15], [17.29, -3071.25], [19.4, -3067.43], [20.31, -3060.54], [18.68, -3052.43], [11.19, -3042.74], [1.75, -3032.46], [-8.9, -3011.24], [-15.37, -3000.27], [-21.33, -2994.32], [-37.23, -2977.21], [-49.13, -2949.53], [-53.25, -2940.59], [-52.24, -2931.79], [-46.19, -2919.34], [-32.07, -2902.96], [-21.6, -2884.85], [-20.79, -2871.48]], "holes": []}}, {"shape": {"outer": [[-0.8, -2833.38], [-3.4, -2836.57], [-5.03, -2843.41], [-2.48, -2850.31], [1.6, -2852.72], [8.27, -2852.91], [60.82, -2846.34], [74.64, -2848.8], [95.7, -2857.79], [111.34, -2868.9], [141.76, -2917.91], [148.95, -2939.8], [147.86, -2953.38], [138.74, -2982.2], [131.92, -2997.87], [130.11, -3012.47], [132.09, -3019.82], [138.88, -3023.6], [149.55, -3024.99], [160.44, -3022.69], [175.25, -3016.78], [184.83, -3007.04], [197.23, -2989.27], [200.87, -2973.07], [202.01, -2963.85], [200.14, -2960.77], [196.11, -2936.56], [177.0, -2900.94], [139.15, -2851.94], [133.08, -2842.4], [103.8, -2814.77], [84.37, -2802.35], [61.37, -2796.5], [50.0, -2796.14], [36.78, -2799.8], [18.99, -2810.63], [-0.8, -2833.38]], "holes": []}}, {"shape": {"outer": [[2253.23, 974.25], [2249.35, 983.27], [2194.08, 1038.06], [2183.96, 1051.79], [2176.1, 1059.03], [2142.19, 1096.45], [2136.26, 1107.06], [2122.21, 1120.41], [2063.69, 1183.78], [2049.68, 1198.1], [2012.46, 1222.66], [1995.48, 1236.42], [1963.53, 1266.06], [1938.31, 1286.03], [1915.74, 1299.08], [1881.69, 1315.93], [1860.87, 1323.78], [1842.5, 1336.41], [1810.22, 1365.52], [1800.0, 1378.97], [1790.77, 1388.11], [1788.1, 1389.8], [1782.32, 1394.37], [1759.37, 1406.67], [1744.53, 1413.99], [1721.27, 1442.36], [1706.68, 1456.28], [1700.19, 1456.66], [1683.37, 1467.61], [1667.47, 1478.8], [1659.14, 1486.13], [1645.36, 1497.32], [1639.65, 1503.97], [1635.32, 1506.94], [1632.93, 1510.38], [1628.18, 1515.68], [1594.28, 1552.03], [1589.67, 1555.66], [1572.04, 1564.66], [1570.66, 1567.72], [1563.72, 1573.62], [1542.42, 1595.24], [1530.21, 1614.5], [1518.58, 1622.6], [1508.3, 1630.25], [1490.84, 1638.81], [1477.71, 1649.51], [1471.94, 1658.17], [1454.81, 1674.22], [1410.99, 1698.75], [1400.07, 1705.76], [1378.99, 1716.93], [1371.95, 1722.82], [1364.94, 1734.62], [1343.46, 1755.49], [1325.41, 1766.2], [1277.79, 1807.88], [1267.37, 1815.31], [1257.02, 1825.25], [1236.89, 1841.35], [1189.23, 1881.36], [1140.35, 1919.63], [1087.09, 1964.12], [1076.87, 1973.56], [1018.39, 2018.54], [1005.08, 2033.38], [991.65, 2047.73], [966.66, 2070.01], [969.78, 2073.16], [964.75, 2077.36], [953.44, 2087.7], [946.13, 2093.68], [937.37, 2101.42], [942.8, 2103.52], [970.45, 2116.32], [968.9, 2107.12], [974.24, 2091.29], [975.23, 2090.41], [975.82, 2089.89], [976.3, 2089.47], [1013.94, 2055.74], [1021.55, 2048.92], [1031.84, 2038.07], [1044.17, 2026.19], [1126.55, 1956.92], [1136.87, 1947.27], [1146.99, 1939.71], [1160.55, 1929.75], [1172.0, 1920.21], [1176.83, 1918.77], [1198.6, 1899.73], [1204.51, 1893.64], [1212.18, 1888.49], [1214.41, 1889.67], [1218.53, 1886.6], [1217.73, 1884.35], [1221.96, 1881.19], [1233.47, 1871.06], [1241.56, 1863.86], [1254.44, 1850.0], [1277.53, 1837.82], [1294.88, 1821.65], [1307.56, 1810.4], [1316.46, 1803.57], [1326.45, 1798.12], [1335.09, 1797.39], [1342.68, 1790.42], [1346.84, 1777.62], [1361.26, 1773.73], [1377.81, 1749.22], [1395.74, 1740.3], [1399.42, 1740.65], [1403.89, 1739.77], [1403.21, 1734.62], [1423.55, 1721.92], [1438.76, 1713.5], [1478.66, 1687.24], [1481.98, 1681.6], [1489.58, 1664.06], [1497.9, 1655.7], [1506.35, 1654.53], [1510.41, 1653.52], [1513.94, 1651.07], [1521.33, 1642.24], [1543.11, 1632.97], [1550.85, 1628.41], [1604.4, 1574.97], [1612.01, 1566.02], [1617.71, 1560.55], [1620.48, 1557.55], [1626.06, 1551.48], [1641.51, 1534.76], [1642.97, 1531.81], [1648.64, 1525.82], [1652.34, 1523.26], [1658.46, 1521.07], [1662.74, 1520.24], [1665.89, 1519.63], [1671.09, 1517.51], [1677.65, 1514.16], [1681.15, 1511.63], [1684.01, 1508.57], [1689.76, 1500.05], [1716.91, 1477.25], [1727.46, 1468.99], [1739.3, 1453.49], [1762.4, 1438.88], [1776.16, 1426.09], [1796.12, 1414.93], [1797.97, 1411.97], [1807.61, 1403.52], [1842.76, 1381.27], [1850.34, 1370.37], [1874.84, 1352.05], [1895.52, 1335.23], [1919.45, 1314.65], [1948.24, 1300.99], [1966.28, 1289.93], [1998.75, 1259.95], [2013.72, 1251.91], [2065.83, 1209.63], [2082.87, 1194.01], [2106.29, 1171.69], [2124.93, 1151.36], [2139.74, 1133.75], [2166.86, 1103.38], [2190.07, 1074.42], [2198.12, 1064.6], [2223.8, 1041.79], [2244.03, 1011.39], [2262.01, 994.45], [2271.74, 989.82], [2260.74, 981.49], [2253.23, 974.25]], "holes": []}}, {"shape": {"outer": [[964.75, 2077.36], [967.32, 2080.39], [969.45, 2082.91], [958.06, 2092.74], [950.78, 2099.03], [948.87, 2096.64], [946.13, 2093.68], [953.44, 2087.7], [964.75, 2077.36]], "holes": []}}, {"shape": {"outer": [[-1433.28, -25.59], [-1432.34, -24.32], [-1431.04, -23.42], [-1429.53, -22.99], [-1427.96, -23.08], [-1426.5, -23.65], [-1425.31, -24.67], [-1424.52, -26.03], [-1424.2, -27.56], [-1424.4, -29.12], [-1425.1, -30.53], [-1426.22, -31.63], [-1427.64, -32.32], [-1429.21, -32.51], [-1430.76, -32.18], [-1432.12, -31.36], [-1433.13, -30.15], [-1433.7, -28.67], [-1433.75, -27.1], [-1433.28, -25.59]], "holes": []}}, {"shape": {"outer": [[-2429.67, -1866.45], [-2433.91, -1866.51], [-2439.0, -1864.99], [-2441.75, -1863.48], [-2442.43, -1860.49], [-2442.46, -1857.76], [-2442.25, -1854.34], [-2441.76, -1852.28], [-2440.2, -1849.17], [-2438.13, -1847.54], [-2436.47, -1846.72], [-2434.04, -1846.24], [-2431.71, -1846.97], [-2430.74, -1847.37], [-2430.13, -1848.8], [-2429.6, -1849.36], [-2427.98, -1851.98], [-2428.03, -1853.82], [-2427.02, -1854.78], [-2424.83, -1856.31], [-2424.18, -1856.93], [-2416.49, -1865.19], [-2416.74, -1868.48], [-2420.53, -1869.03], [-2429.67, -1866.45]], "holes": []}}, {"shape": {"outer": [[-492.92, -2560.16], [-494.41, -2558.7], [-495.92, -2557.67], [-498.33, -2557.94], [-500.91, -2560.48], [-503.57, -2565.3], [-506.65, -2573.82], [-508.98, -2578.65], [-508.74, -2581.71], [-503.32, -2583.71], [-489.98, -2583.44], [-488.8, -2580.31], [-492.92, -2560.16]], "holes": []}}, {"shape": {"outer": [[-101.55, -2728.02], [-109.36, -2741.52], [-110.55, -2744.76], [-110.79, -2757.17], [-108.99, -2759.17], [-105.86, -2760.57], [-101.49, -2760.7], [-98.54, -2757.19], [-97.46, -2753.41], [-98.92, -2735.72], [-100.56, -2731.64], [-101.55, -2728.02]], "holes": []}}, {"shape": {"outer": [[-2621.27, 148.03], [-2622.48, 150.71], [-2624.85, 152.54], [-2625.93, 153.94], [-2625.04, 156.81], [-2621.96, 160.49], [-2617.89, 161.89], [-2615.25, 161.18], [-2615.42, 158.54], [-2613.59, 157.86], [-2611.39, 159.15], [-2608.97, 158.25], [-2608.17, 155.2], [-2608.83, 151.17], [-2609.91, 149.48], [-2612.54, 148.9], [-2615.81, 150.19], [-2618.86, 148.04], [-2619.66, 147.9], [-2621.27, 148.03]], "holes": []}}, {"shape": {"outer": [[108.36, -113.89], [108.42, -111.88], [110.23, -112.57], [111.56, -113.43], [112.97, -114.63], [114.98, -116.8], [115.92, -118.91], [115.74, -120.49], [115.33, -122.2], [113.92, -123.67], [112.45, -124.42], [111.15, -124.59], [109.29, -124.25], [106.43, -123.17], [98.4, -119.06], [96.97, -118.59], [96.26, -118.5], [95.47, -118.48], [92.5, -116.38], [93.95, -115.99], [95.68, -115.83], [98.48, -116.47], [107.31, -120.6], [110.15, -121.84], [111.38, -121.59], [112.27, -120.74], [113.02, -119.83], [113.34, -118.76], [113.37, -117.76], [113.1, -117.03], [112.61, -116.44], [111.27, -115.19], [108.36, -113.89]], "holes": []}}, {"shape": {"outer": [[-1853.26, -200.33], [-1850.85, -201.03], [-1848.72, -202.64], [-1847.37, -204.28], [-1847.04, -205.93], [-1848.01, -207.53], [-1849.78, -208.46], [-1849.18, -211.53], [-1847.91, -212.79], [-1846.63, -216.77], [-1847.89, -217.66], [-1849.82, -217.66], [-1851.79, -216.74], [-1852.3, -214.6], [-1851.82, -212.76], [-1850.87, -211.34], [-1851.48, -208.74], [-1853.48, -208.65], [-1854.62, -207.43], [-1854.8, -204.56], [-1854.47, -202.34], [-1853.22, -201.78], [-1853.02, -201.05], [-1853.26, -200.33]], "holes": []}}, {"shape": {"outer": [[-2414.98, -1808.26], [-2417.09, -1809.77], [-2418.29, -1811.32], [-2418.8, -1812.09], [-2420.23, -1812.9], [-2422.71, -1814.35], [-2423.48, -1815.66], [-2423.47, -1817.48], [-2421.92, -1818.74], [-2420.71, -1819.21], [-2418.56, -1818.66], [-2416.09, -1817.52], [-2413.86, -1816.25], [-2411.35, -1815.95], [-2409.1, -1815.9], [-2408.1, -1815.07], [-2407.56, -1813.45], [-2407.21, -1811.69], [-2408.08, -1810.09], [-2408.91, -1809.22], [-2409.68, -1808.59], [-2410.65, -1808.19], [-2411.98, -1808.03], [-2414.98, -1808.26]], "holes": []}}, {"shape": {"outer": [[-2167.93, -460.54], [-2169.76, -460.7], [-2169.95, -458.31], [-2172.05, -461.33], [-2178.57, -462.3], [-2177.91, -457.3], [-2174.81, -456.4], [-2173.07, -456.21], [-2171.4, -453.34], [-2171.56, -451.85], [-2172.5, -451.29], [-2173.07, -450.85], [-2173.38, -450.15], [-2173.24, -449.62], [-2173.39, -448.91], [-2173.33, -448.21], [-2172.87, -448.23], [-2172.21, -448.2], [-2173.61, -445.03], [-2171.85, -444.66], [-2170.29, -449.21], [-2168.88, -453.45], [-2168.06, -457.98], [-2167.93, -460.54]], "holes": []}}, {"shape": {"outer": [[33.65, -3064.18], [34.21, -3059.84], [37.57, -3057.0], [39.66, -3056.52], [48.37, -3057.85], [85.21, -3054.0], [100.87, -3053.02], [109.45, -3050.97], [111.4, -3051.79], [112.04, -3060.2], [111.32, -3062.25], [109.74, -3064.05], [107.74, -3065.08], [105.63, -3066.11], [91.88, -3069.53], [81.37, -3073.93], [64.2, -3078.01], [57.18, -3078.69], [50.3, -3078.6], [34.77, -3074.78], [33.54, -3071.91], [33.58, -3068.81], [33.65, -3064.18]], "holes": []}}, {"shape": {"outer": [[320.46, -2908.52], [309.25, -2920.04], [306.4, -2920.06], [297.21, -2908.86], [295.29, -2902.44], [295.79, -2897.45], [296.84, -2894.32], [300.22, -2892.36], [304.14, -2891.85], [320.54, -2905.68], [320.46, -2908.52]], "holes": []}}], "parks": [{"shape": {"outer": [[-3359.36, -2763.28], [-3343.52, -2804.0], [-3161.15, -2816.72], [-3154.67, -2843.21], [-3128.82, -2916.02], [-3152.51, -2919.48], [-3171.24, -2919.01], [-3213.3, -2914.87], [-3235.2, -2917.48], [-3283.0, -2927.88], [-3315.06, -2944.52], [-3353.4, -2988.03], [-3356.63, -2997.66], [-3363.36, -3017.72], [-3322.41, -3202.69], [-3325.61, -3221.38], [-3330.07, -3237.54], [-3333.6, -3251.89], [-3338.88, -3259.78], [-3352.94, -3277.02], [-3355.55, -3276.72], [-3363.97, -3280.4], [-3381.58, -3284.68], [-3420.24, -3285.51], [-3486.46, -3282.08], [-3513.35, -3279.63], [-3582.03, -3274.97], [-3613.46, -3272.76], [-3716.55, -3254.1], [-3739.62, -3252.74], [-3758.06, -3252.9], [-3792.34, -3258.44], [-3818.38, -3266.84], [-3847.63, -3280.37], [-3887.3, -3305.8], [-3928.87, -3337.28], [-3961.72, -3354.2], [-4000.71, -3371.36], [-4052.66, -3398.62], [-4103.81, -3428.08], [-4107.99, -3421.42], [-4115.82, -3389.83], [-4129.6, -3382.45], [-4170.2, -3395.22], [-4198.63, -3410.08], [-4225.8, -3442.41], [-4255.54, -3502.55], [-4261.94, -3542.46], [-4265.03, -3547.31], [-4302.44, -3595.38], [-4350.72, -3398.76], [-4348.05, -3323.33], [-4292.23, -3320.21], [-4270.39, -3291.21], [-4154.05, -3320.74], [-4114.84, -3295.72], [-4083.87, -3253.05], [-4057.98, -3204.99], [-4021.67, -3158.98], [-4001.48, -3126.46], [-3956.48, -3082.44], [-3936.01, -3047.52], [-3932.31, -3041.92], [-3927.28, -3040.04], [-3920.42, -3038.77], [-3923.47, -3023.44], [-3912.35, -3016.79], [-3901.74, -3013.17], [-3887.12, -3021.88], [-3877.82, -3027.29], [-3871.15, -3023.75], [-3871.45, -3015.05], [-3875.72, -3008.37], [-3881.81, -3004.6], [-3898.31, -3000.2], [-3906.06, -2996.05], [-3914.13, -2988.57], [-3915.41, -2979.58], [-3917.27, -2974.13], [-3922.83, -2964.0], [-3935.99, -2948.82], [-3949.82, -2943.2], [-3964.3, -2929.71], [-3963.64, -2921.6], [-3949.0, -2926.47], [-3924.33, -2920.22], [-3844.63, -2922.53], [-3786.84, -2908.16], [-3735.32, -2868.52], [-3699.49, -2851.37], [-3652.96, -2815.07], [-3635.4, -2805.6], [-3612.45, -2793.23], [-3550.03, -2763.67], [-3513.72, -2766.11], [-3478.56, -2760.15], [-3455.01, -2744.09], [-3438.51, -2737.64], [-3359.36, -2763.28]], "holes": [[[-3882.84, -3262.43], [-3871.84, -3276.72], [-3813.15, -3243.56], [-3813.62, -3229.59], [-3818.19, -3221.18], [-3882.84, -3262.43]], [[-3463.17, -3032.38], [-3444.31, -3064.13], [-3420.3, -3111.02], [-3402.36, -3155.99], [-3388.74, -3161.01], [-3377.15, -3131.44], [-3383.68, -3079.27], [-3393.66, -3037.99], [-3403.17, -3005.73], [-3408.38, -2969.58], [-3429.01, -2968.6], [-3445.78, -2973.18], [-3465.63, -2979.23], [-3485.53, -2992.86], [-3477.66, -3009.28], [-3463.17, -3032.38]]]}}, {"shape": {"outer": [[-238.93, -207.96], [-243.54, -207.91], [-243.43, -205.05], [-244.14, -204.49], [-245.12, -204.38], [-245.94, -204.62], [-246.33, -205.51], [-246.48, -207.65], [-251.61, -207.41], [-253.12, -207.1], [-255.08, -205.68], [-265.27, -194.11], [-264.07, -193.17], [-260.27, -192.73], [-256.28, -191.68], [-252.9, -189.81], [-250.04, -187.37], [-247.72, -184.75], [-246.5, -182.2], [-245.81, -178.57], [-245.85, -172.11], [-244.75, -172.12], [-245.74, -201.31], [-240.01, -201.5], [-240.05, -203.32], [-238.44, -203.42], [-238.53, -206.22], [-238.93, -207.96]], "holes": [[[-254.56, -195.43], [-255.46, -195.58], [-256.25, -196.01], [-256.81, -196.63], [-257.16, -197.39], [-257.25, -198.22], [-257.08, -199.03], [-256.66, -199.75], [-256.04, -200.31], [-255.27, -200.64], [-254.44, -200.73], [-253.56, -200.52], [-252.8, -200.03], [-252.25, -199.33], [-251.96, -198.47], [-251.99, -197.57], [-252.3, -196.72], [-252.9, -196.04], [-253.68, -195.6], [-254.56, -195.43]]]}}, {"shape": {"outer": [[-293.18, -164.39], [-294.84, -162.19], [-295.36, -160.08], [-294.94, -154.99], [-292.25, -154.88], [-291.59, -154.63], [-291.17, -154.05], [-291.15, -153.38], [-291.26, -152.66], [-291.58, -152.18], [-292.23, -151.9], [-294.36, -151.84], [-294.18, -148.48], [-291.04, -148.56], [-287.82, -148.68], [-287.86, -149.79], [-287.89, -150.48], [-286.71, -150.52], [-286.88, -156.36], [-259.25, -157.58], [-259.34, -158.36], [-267.06, -157.64], [-270.79, -158.33], [-272.4, -159.01], [-274.7, -160.6], [-277.43, -163.17], [-278.67, -164.98], [-279.65, -166.74], [-280.79, -169.35], [-281.25, -171.25], [-281.78, -173.68], [-282.06, -174.47], [-283.06, -175.17], [-293.18, -164.39]], "holes": [[[-285.69, -161.11], [-286.59, -161.27], [-287.39, -161.73], [-287.94, -162.34], [-288.27, -163.1], [-288.35, -163.93], [-288.18, -164.74], [-287.76, -165.46], [-287.14, -166.01], [-286.39, -166.36], [-285.56, -166.45], [-284.66, -166.25], [-283.88, -165.76], [-283.32, -165.04], [-283.03, -164.17], [-283.06, -163.26], [-283.39, -162.41], [-283.99, -161.71], [-284.78, -161.27], [-285.69, -161.11]]]}}, {"shape": {"outer": [[-284.94, -117.38], [-285.15, -123.16], [-286.94, -123.07], [-286.99, -124.25], [-287.02, -124.97], [-290.19, -124.89], [-290.22, -125.86], [-294.06, -125.71], [-293.84, -119.89], [-291.59, -119.95], [-290.99, -119.77], [-290.63, -119.18], [-290.62, -118.65], [-290.66, -117.92], [-291.11, -117.32], [-291.65, -117.24], [-293.63, -117.18], [-293.37, -110.31], [-279.95, -97.86], [-278.6, -99.49], [-278.76, -100.29], [-278.79, -101.96], [-278.34, -105.57], [-277.23, -108.75], [-275.35, -111.75], [-272.79, -114.1], [-269.35, -116.06], [-266.63, -116.68], [-263.76, -117.21], [-260.33, -117.25], [-257.84, -117.26], [-257.7, -118.75], [-284.94, -117.38]], "holes": [[[-283.53, -106.21], [-284.43, -106.32], [-285.24, -106.72], [-285.94, -107.4], [-286.36, -108.28], [-286.45, -109.26], [-286.2, -110.21], [-285.64, -111.02], [-284.85, -111.59], [-283.9, -111.85], [-282.92, -111.78], [-282.09, -111.43], [-281.42, -110.84], [-280.96, -110.06], [-280.77, -109.18], [-280.87, -108.28], [-281.24, -107.47], [-281.86, -106.81], [-282.64, -106.37], [-283.53, -106.21]]]}}, {"shape": {"outer": [[-205.1, -174.76], [-205.53, -183.77], [-205.27, -186.22], [-204.45, -188.09], [-201.49, -191.9], [-196.95, -195.56], [-193.21, -196.38], [-190.18, -196.62], [-189.12, -197.75], [-201.79, -209.66], [-208.16, -209.33], [-208.08, -208.32], [-208.6, -207.26], [-209.9, -207.18], [-210.68, -207.88], [-210.81, -209.22], [-215.23, -209.04], [-215.15, -207.23], [-215.08, -204.54], [-213.2, -204.61], [-213.13, -202.77], [-206.75, -202.94], [-205.72, -174.74], [-205.1, -174.76]], "holes": [[[-201.76, -198.32], [-202.35, -198.96], [-202.7, -199.75], [-202.78, -200.68], [-202.53, -201.58], [-201.99, -202.36], [-201.23, -202.9], [-200.31, -203.15], [-199.37, -203.06], [-198.52, -202.67], [-197.9, -202.07], [-197.49, -201.31], [-197.35, -200.45], [-197.49, -199.59], [-197.89, -198.83], [-198.51, -198.22], [-199.29, -197.85], [-200.15, -197.73], [-201.0, -197.89], [-201.76, -198.32]]]}}, {"shape": {"outer": [[-162.48, -162.34], [-162.25, -156.77], [-159.73, -156.85], [-159.7, -156.17], [-159.63, -154.66], [-157.11, -154.75], [-155.2, -154.84], [-155.26, -159.44], [-157.19, -159.27], [-157.97, -159.54], [-158.46, -160.54], [-158.2, -161.44], [-157.5, -162.17], [-155.59, -162.34], [-155.66, -167.26], [-156.25, -169.21], [-157.3, -170.63], [-168.84, -180.96], [-169.97, -179.78], [-169.74, -177.02], [-170.37, -173.56], [-172.41, -169.36], [-175.74, -165.86], [-178.01, -163.8], [-179.82, -162.72], [-181.77, -162.05], [-190.0, -161.61], [-190.0, -161.06], [-162.48, -162.34]], "holes": [[[-165.96, -167.84], [-166.75, -168.29], [-167.34, -168.97], [-167.66, -169.79], [-167.71, -170.65], [-167.48, -171.49], [-166.99, -172.21], [-166.3, -172.74], [-165.48, -173.03], [-164.61, -173.03], [-163.78, -172.77], [-163.08, -172.25], [-162.56, -171.51], [-162.32, -170.63], [-162.38, -169.73], [-162.75, -168.89], [-163.36, -168.22], [-164.17, -167.8], [-165.07, -167.66], [-165.96, -167.84]]]}}, {"shape": {"outer": [[-183.12, -121.21], [-180.11, -120.89], [-177.31, -120.1], [-174.23, -118.39], [-171.99, -116.46], [-169.83, -113.78], [-168.51, -111.4], [-167.42, -108.41], [-166.59, -105.49], [-165.23, -104.2], [-154.39, -116.15], [-153.53, -117.78], [-153.32, -119.3], [-153.58, -124.4], [-155.56, -124.37], [-156.36, -124.78], [-156.93, -125.77], [-156.6, -126.68], [-155.71, -127.14], [-153.73, -127.3], [-153.87, -132.11], [-156.17, -131.97], [-156.14, -131.24], [-158.7, -131.13], [-158.65, -129.83], [-158.62, -129.32], [-160.48, -129.25], [-160.23, -123.22], [-189.01, -122.04], [-188.95, -120.95], [-183.12, -121.21]], "holes": [[[-163.59, -112.98], [-164.33, -113.51], [-164.87, -114.24], [-165.13, -115.11], [-165.09, -116.02], [-164.76, -116.88], [-164.17, -117.57], [-163.4, -118.04], [-162.5, -118.22], [-161.6, -118.11], [-160.77, -117.71], [-160.13, -117.07], [-159.72, -116.26], [-159.6, -115.36], [-159.79, -114.46], [-160.26, -113.68], [-160.95, -113.09], [-161.8, -112.76], [-162.71, -112.72], [-163.59, -112.98]]]}}, {"shape": {"outer": [[-201.0, -78.61], [-206.85, -78.42], [-206.77, -76.3], [-208.1, -76.25], [-208.85, -76.23], [-208.74, -73.53], [-210.26, -73.46], [-210.26, -70.58], [-205.58, -70.71], [-205.55, -72.44], [-205.06, -73.47], [-204.13, -73.93], [-203.4, -73.72], [-202.58, -72.95], [-202.52, -70.87], [-197.48, -71.23], [-195.52, -71.71], [-194.03, -72.65], [-183.61, -84.26], [-185.03, -85.62], [-188.98, -85.44], [-192.07, -86.36], [-195.36, -87.78], [-198.31, -90.38], [-200.95, -94.44], [-201.72, -98.59], [-202.14, -106.98], [-202.53, -107.04], [-201.0, -78.61]], "holes": [[[-195.18, -78.14], [-195.95, -78.56], [-196.55, -79.19], [-196.93, -80.04], [-196.99, -80.96], [-196.76, -81.86], [-196.23, -82.62], [-195.48, -83.15], [-194.58, -83.41], [-193.66, -83.36], [-192.8, -82.99], [-192.16, -82.41], [-191.73, -81.64], [-191.56, -80.79], [-191.68, -79.92], [-192.05, -79.14], [-192.67, -78.52], [-193.45, -78.13], [-194.31, -77.99], [-195.18, -78.14]]]}}, {"shape": {"outer": [[-231.96, -72.7], [-232.06, -75.28], [-233.34, -75.26], [-234.11, -75.25], [-234.2, -77.42], [-240.21, -77.25], [-241.51, -105.29], [-243.4, -104.8], [-242.95, -95.37], [-244.64, -91.44], [-247.62, -87.38], [-251.08, -84.76], [-255.01, -83.21], [-259.13, -82.81], [-260.96, -81.06], [-248.97, -70.09], [-246.68, -69.44], [-244.8, -69.21], [-240.3, -69.4], [-240.25, -71.42], [-239.74, -72.3], [-239.02, -72.61], [-238.15, -72.27], [-237.65, -71.57], [-237.47, -69.34], [-231.95, -69.56], [-231.96, -72.7]], "holes": [[[-251.16, -76.64], [-251.59, -77.36], [-251.77, -78.17], [-251.67, -79.02], [-251.29, -79.79], [-250.68, -80.39], [-249.9, -80.77], [-249.05, -80.86], [-248.21, -80.66], [-247.48, -80.2], [-246.95, -79.53], [-246.68, -78.75], [-246.66, -77.91], [-246.92, -77.13], [-247.42, -76.46], [-248.11, -75.98], [-248.91, -75.76], [-249.74, -75.8], [-250.52, -76.1], [-251.16, -76.64]]]}}, {"shape": {"outer": [[356.08, -92.83], [357.09, -91.65], [360.81, -94.65], [372.01, -78.99], [368.83, -75.8], [369.91, -74.58], [373.98, -78.94], [361.13, -96.71], [356.08, -92.83]], "holes": []}}, {"shape": {"outer": [[371.44, -72.1], [375.83, -76.87], [375.05, -77.87], [370.55, -72.93], [371.44, -72.1]], "holes": []}}, {"shape": {"outer": [[-2793.7, -1545.91], [-2793.32, -1546.34], [-2772.73, -1569.64], [-2595.08, -1435.53], [-2591.45, -1432.88], [-2573.55, -1454.14], [-2567.96, -1460.88], [-2563.18, -1468.37], [-2560.48, -1473.09], [-2555.25, -1480.49], [-2552.59, -1482.99], [-2550.93, -1484.46], [-2548.95, -1485.74], [-2547.42, -1486.59], [-2542.5, -1487.89], [-2536.26, -1488.35], [-2505.72, -1489.48], [-2470.83, -1490.29], [-2429.36, -1491.57], [-2387.34, -1492.45], [-2348.57, -1493.32], [-2339.23, -1493.57], [-2299.82, -1494.67], [-2297.75, -1495.12], [-2296.59, -1495.54], [-2295.94, -1495.91], [-2295.2, -1496.96], [-2294.62, -1498.17], [-2294.53, -1499.23], [-2294.78, -1501.5], [-2295.54, -1502.94], [-2296.76, -1503.91], [-2299.7, -1505.15], [-2296.74, -1511.59], [-2295.44, -1511.15], [-2294.54, -1511.03], [-2293.17, -1511.26], [-2291.33, -1512.22], [-2290.38, -1513.76], [-2289.93, -1516.39], [-2290.14, -1522.33], [-2291.33, -1555.99], [-2291.45, -1562.68], [-2290.57, -1564.71], [-2290.58, -1566.36], [-2291.62, -1567.89], [-2294.52, -1687.32], [-2294.81, -1694.86], [-2296.29, -1700.58], [-2296.85, -1702.49], [-2298.2, -1703.85], [-2299.59, -1704.16], [-2300.92, -1703.91], [-2303.44, -1705.12], [-2305.86, -1706.68], [-2306.89, -1708.51], [-2307.57, -1710.93], [-2307.44, -1713.07], [-2306.7, -1715.37], [-2306.06, -1716.48], [-2304.34, -1717.86], [-2302.6, -1718.67], [-2300.15, -1719.26], [-2298.01, -1719.37], [-2297.34, -1719.24], [-2292.78, -1723.86], [-2233.79, -1726.27], [-2233.63, -1728.43], [-2232.66, -1730.75], [-2231.08, -1732.41], [-2229.47, -1733.27], [-2227.56, -1733.77], [-2221.26, -1733.9], [-2169.74, -1734.92], [-2173.14, -1826.51], [-2129.52, -1828.54], [-2130.27, -1864.88], [-2130.88, -1870.7], [-2132.52, -1881.51], [-2135.83, -1893.47], [-2137.02, -1895.8], [-2140.08, -1899.1], [-2141.65, -1899.8], [-2142.91, -1899.83], [-2146.62, -1899.88], [-2148.29, -1909.14], [-2143.28, -1910.31], [-2137.99, -1911.8], [-2121.05, -1915.98], [-2098.28, -1925.8], [-2085.17, -1932.68], [-1951.73, -2015.63], [-1935.77, -2024.81], [-1926.06, -2028.68], [-1916.54, -2030.31], [-1908.98, -2030.28], [-1905.58, -2031.28], [-1902.6, -2034.47], [-1897.84, -2051.68], [-1893.45, -2059.98], [-1887.34, -2068.05], [-1887.07, -2072.27], [-1888.9, -2075.96], [-1896.57, -2080.94], [-1900.98, -2084.35], [-1905.51, -2089.12], [-1911.37, -2083.78], [-1912.87, -2075.02], [-1917.62, -2065.21], [-1957.17, -2032.77], [-2001.72, -1998.14], [-2029.1, -1986.7], [-2033.31, -1984.09], [-2042.51, -1978.57], [-2049.07, -1977.09], [-2047.59, -1974.37], [-2051.03, -1972.38], [-2051.76, -1970.36], [-2053.46, -1967.49], [-2056.6, -1964.4], [-2058.67, -1963.3], [-2061.71, -1961.69], [-2066.64, -1960.72], [-2071.67, -1961.13], [-2074.92, -1959.34], [-2073.91, -1957.44], [-2140.46, -1927.07], [-2153.4, -1921.44], [-2168.96, -1914.22], [-2191.54, -1910.99], [-2220.56, -1911.1], [-2304.13, -1928.96], [-2348.86, -1952.07], [-2394.38, -1965.93], [-2414.86, -1983.37], [-2433.05, -1978.92], [-2450.72, -1965.54], [-2461.13, -1952.95], [-2485.66, -1936.01], [-2507.75, -1925.52], [-2511.43, -1923.77], [-2540.09, -1918.04], [-2589.75, -1918.0], [-2625.02, -1921.82], [-2658.12, -1926.27], [-2713.15, -1938.91], [-2726.54, -1937.89], [-2768.92, -1922.54], [-2818.57, -1914.26], [-2900.27, -1899.02], [-2917.82, -1885.51], [-2947.15, -1865.12], [-2960.96, -1843.05], [-2964.46, -1824.2], [-2962.85, -1811.87], [-2959.0, -1800.26], [-2951.29, -1798.89], [-2951.87, -1791.99], [-2952.77, -1784.57], [-2957.66, -1785.0], [-2965.74, -1784.07], [-2976.36, -1780.05], [-2979.62, -1780.59], [-2982.12, -1781.53], [-3005.94, -1751.66], [-2993.29, -1743.73], [-2998.39, -1739.25], [-3001.12, -1736.85], [-3007.49, -1730.85], [-3008.26, -1729.4], [-3008.76, -1727.96], [-3008.64, -1724.28], [-3006.84, -1720.36], [-2815.32, -1557.28], [-2813.81, -1556.0], [-2797.26, -1541.88], [-2793.7, -1545.91]], "holes": [[[-2541.67, -1640.54], [-2544.95, -1681.62], [-2544.67, -1682.64], [-2539.98, -1695.05], [-2532.9, -1713.77], [-2530.45, -1720.16], [-2525.3, -1733.64], [-2511.5, -1790.94], [-2522.73, -1802.98], [-2529.42, -1809.58], [-2529.89, -1812.79], [-2529.66, -1816.66], [-2528.79, -1820.53], [-2526.26, -1827.91], [-2522.45, -1832.83], [-2515.05, -1839.71], [-2511.16, -1848.08], [-2503.56, -1852.38], [-2493.21, -1850.8], [-2481.69, -1851.57], [-2466.78, -1863.06], [-2457.65, -1883.31], [-2441.79, -1887.41], [-2412.26, -1895.92], [-2409.26, -1888.75], [-2402.52, -1872.68], [-2367.22, -1882.15], [-2306.95, -1902.7], [-2306.94, -1913.14], [-2191.59, -1893.7], [-2176.54, -1888.31], [-2173.5, -1853.13], [-2172.03, -1831.02], [-2183.37, -1827.61], [-2198.39, -1823.12], [-2273.51, -1800.61], [-2283.39, -1781.66], [-2295.74, -1758.0], [-2299.14, -1751.49], [-2297.91, -1725.35], [-2307.98, -1716.92], [-2309.6, -1698.03], [-2313.67, -1679.59], [-2339.87, -1638.41], [-2383.65, -1589.6], [-2403.18, -1578.62], [-2417.67, -1566.13], [-2429.07, -1562.2], [-2541.67, -1640.54]]]}}, {"shape": {"outer": [[-2697.1, -2771.96], [-2683.24, -2800.63], [-2664.97, -2823.76], [-2631.31, -2837.8], [-2587.71, -2842.64], [-2553.45, -2846.28], [-2525.03, -2841.99], [-2506.94, -2827.01], [-2490.68, -2803.2], [-2480.67, -2773.51], [-2469.7, -2741.03], [-2420.38, -2637.43], [-2375.43, -2572.07], [-2332.74, -2586.67], [-2294.77, -2624.53], [-2287.5, -2655.93], [-2400.21, -2697.45], [-2428.18, -2701.63], [-2450.79, -2743.98], [-2377.43, -2710.53], [-2302.97, -2686.24], [-2285.05, -2692.6], [-2294.72, -2724.57], [-2309.28, -2744.19], [-2323.75, -2761.2], [-2343.9, -2778.98], [-2379.21, -2796.26], [-2437.15, -2829.34], [-2493.41, -2866.69], [-2524.46, -2927.03], [-2554.34, -2916.52], [-2547.13, -2893.3], [-2531.21, -2875.26], [-2535.0, -2863.64], [-2559.65, -2863.3], [-2626.74, -2859.78], [-2632.46, -2900.51], [-2673.11, -2923.32], [-2720.45, -2956.56], [-2801.42, -2931.07], [-2847.71, -2921.69], [-2888.32, -2917.1], [-2916.02, -2941.6], [-2900.95, -2966.13], [-2885.23, -3015.3], [-2825.03, -3045.72], [-2777.07, -3082.65], [-2730.58, -3051.16], [-2725.69, -3099.31], [-2703.62, -3124.56], [-2712.5, -3143.24], [-2730.62, -3194.42], [-2748.27, -3260.29], [-2733.06, -3301.36], [-2705.82, -3331.79], [-2701.54, -3336.57], [-2745.97, -3332.07], [-2794.71, -3323.69], [-2813.74, -3316.6], [-2832.79, -3309.52], [-2841.16, -3327.15], [-2847.89, -3348.31], [-2853.25, -3366.89], [-2857.38, -3359.35], [-2868.09, -3346.7], [-2881.13, -3334.33], [-2882.28, -3328.48], [-2881.6, -3321.63], [-2873.28, -3309.93], [-2865.67, -3300.0], [-2854.0, -3286.48], [-2850.65, -3279.61], [-2850.24, -3271.45], [-2851.3, -3261.83], [-2855.01, -3250.81], [-2860.63, -3235.83], [-2867.38, -3223.54], [-2874.89, -3210.98], [-2881.02, -3198.37], [-2904.21, -3142.56], [-2860.03, -3118.67], [-2896.96, -3049.75], [-2980.22, -2963.06], [-2867.9, -2841.24], [-2980.2, -2873.63], [-3109.85, -2914.16], [-3128.82, -2916.02], [-3154.67, -2843.21], [-3161.15, -2816.72], [-3109.1, -2816.91], [-3089.47, -2822.42], [-3068.82, -2817.29], [-2896.81, -2770.97], [-2848.55, -2759.26], [-2743.13, -2766.75], [-2697.1, -2771.96]], "holes": []}}, {"shape": {"outer": [[-1434.71, 68.57], [-1432.38, 67.81], [-1429.66, 67.51], [-1426.21, 67.66], [-1427.01, 64.63], [-1430.21, 64.59], [-1433.0, 64.85], [-1435.02, 65.35], [-1436.86, 66.03], [-1436.66, 69.47], [-1434.71, 68.57]], "holes": []}}, {"shape": {"outer": [[-1430.13, 71.87], [-1427.46, 71.83], [-1424.82, 72.25], [-1425.56, 69.55], [-1429.11, 69.31], [-1431.8, 69.54], [-1434.13, 70.33], [-1436.57, 71.52], [-1436.36, 74.55], [-1432.9, 72.67], [-1430.13, 71.87]], "holes": []}}, {"shape": {"outer": [[-1432.88, 100.81], [-1430.41, 102.53], [-1427.03, 104.19], [-1423.72, 105.28], [-1420.09, 105.84], [-1417.39, 105.66], [-1415.54, 105.29], [-1416.38, 102.51], [-1419.56, 102.84], [-1423.7, 102.39], [-1427.85, 100.71], [-1431.53, 98.3], [-1435.23, 94.09], [-1435.33, 98.51], [-1432.88, 100.81]], "holes": []}}, {"shape": {"outer": [[-1432.9, 107.04], [-1430.78, 108.13], [-1428.43, 109.16], [-1426.01, 110.03], [-1423.6, 110.5], [-1421.18, 110.8], [-1419.39, 110.91], [-1417.58, 110.94], [-1415.8, 110.71], [-1414.12, 110.32], [-1415.12, 106.81], [-1416.93, 107.2], [-1418.92, 107.41], [-1421.24, 107.43], [-1423.48, 107.13], [-1425.94, 106.48], [-1428.28, 105.53], [-1430.06, 104.59], [-1431.76, 103.52], [-1433.38, 102.38], [-1434.88, 101.17], [-1434.61, 106.09], [-1432.9, 107.04]], "holes": []}}, {"shape": {"outer": [[-1508.82, -228.95], [-1497.08, -229.57], [-1496.39, -216.32], [-1495.23, -216.45], [-1492.93, -227.36], [-1493.37, -237.63], [-1494.93, -243.85], [-1504.17, -243.36], [-1504.16, -245.55], [-1549.9, -243.4], [-1552.41, -242.22], [-1553.95, -240.49], [-1554.63, -238.3], [-1554.05, -238.16], [-1554.21, -236.97], [-1553.5, -237.0], [-1553.39, -235.51], [-1554.76, -235.17], [-1556.07, -226.58], [-1550.67, -226.7], [-1547.21, -226.95], [-1508.82, -228.95]], "holes": [[[-1540.74, -238.15], [-1536.57, -239.14], [-1532.06, -239.66], [-1527.38, -239.64], [-1523.0, -238.99], [-1526.03, -230.96], [-1537.16, -230.32], [-1540.74, -238.15]]]}}, {"shape": {"outer": [[-489.93, -356.4], [-484.41, -362.22], [-484.88, -363.71], [-486.44, -365.57], [-495.79, -374.21], [-502.25, -367.53], [-489.93, -356.4]], "holes": [[[-495.96, -368.44], [-494.52, -368.11], [-491.79, -366.65], [-489.5, -363.63], [-489.97, -362.34], [-490.89, -361.48], [-492.81, -362.32], [-493.89, -363.29], [-495.71, -365.26], [-496.71, -366.57], [-496.87, -368.0], [-495.96, -368.44]]]}}, {"shape": {"outer": [[-10.72, -278.59], [-14.79, -282.3], [-13.39, -283.82], [-27.49, -296.69], [-31.52, -292.29], [-13.26, -275.8], [-10.72, -278.59]], "holes": [[[-29.05, -291.15], [-30.66, -292.63], [-29.57, -293.82], [-27.96, -292.34], [-29.05, -291.15]], [[-23.01, -286.38], [-21.1, -288.58], [-17.34, -285.32], [-19.19, -283.2], [-18.12, -282.28], [-18.96, -281.33], [-20.09, -282.3], [-19.32, -283.18], [-23.01, -286.38]]]}}, {"shape": {"outer": [[401.55, -43.21], [407.05, -41.55], [415.08, -39.52], [415.37, -40.59], [413.6, -43.59], [409.42, -48.78], [405.82, -51.82], [402.45, -53.6], [397.07, -54.63], [392.85, -54.35], [389.64, -53.68], [388.91, -53.18], [392.46, -49.75], [396.46, -46.38], [399.88, -44.1], [401.55, -43.21]], "holes": [[[406.74, -43.43], [401.35, -45.69], [398.85, -47.35], [397.01, -49.81], [397.73, -51.53], [400.34, -51.96], [403.54, -51.6], [407.38, -48.2], [410.65, -44.31], [411.11, -43.11], [410.44, -42.34], [406.74, -43.43]]]}}, {"shape": {"outer": [[1093.9, 699.28], [1093.68, 698.34], [1097.08, 697.86], [1097.2, 698.85], [1102.15, 698.19], [1102.47, 697.67], [1102.03, 696.88], [1100.19, 695.7], [1098.83, 694.46], [1096.69, 692.64], [1095.03, 690.75], [1093.36, 688.68], [1092.03, 686.82], [1090.44, 684.27], [1088.85, 681.62], [1087.54, 678.59], [1085.71, 674.25], [1084.77, 669.51], [1083.82, 666.11], [1083.22, 664.89], [1082.2, 664.21], [1080.49, 663.93], [1074.24, 663.69], [1066.7, 663.8], [1065.78, 664.39], [1065.7, 665.01], [1066.33, 667.3], [1066.45, 669.84], [1066.16, 673.16], [1065.11, 676.16], [1064.76, 678.53], [1064.46, 681.66], [1065.13, 685.13], [1065.98, 688.5], [1067.82, 691.65], [1070.12, 694.33], [1073.03, 696.7], [1076.06, 698.12], [1080.16, 699.33], [1084.21, 700.16], [1086.58, 700.19], [1093.9, 699.28]], "holes": [[[1071.04, 680.47], [1069.86, 678.58], [1069.4, 676.58], [1069.73, 673.96], [1070.41, 672.09], [1071.52, 671.48], [1073.58, 670.56], [1076.07, 670.19], [1078.05, 671.1], [1079.23, 672.71], [1079.77, 674.87], [1080.06, 677.47], [1078.68, 679.28], [1076.63, 680.49], [1074.82, 681.19], [1073.08, 681.24], [1071.04, 680.47]]]}}, {"shape": {"outer": [[-1643.14, -23.83], [-1644.24, -23.72], [-1645.11, -23.47], [-1645.66, -22.67], [-1642.35, -19.16], [-1631.88, -9.45], [-1631.11, -9.41], [-1627.59, -6.07], [-1626.67, -5.35], [-1625.64, -4.77], [-1624.49, -4.33], [-1623.29, -4.07], [-1594.4, -5.52], [-1594.03, -6.51], [-1641.88, -23.52], [-1643.14, -23.83]], "holes": [[[-1623.83, -7.8], [-1621.74, -7.88], [-1621.65, -5.65], [-1623.75, -5.57], [-1623.83, -7.8]]]}}, {"shape": {"outer": [[-1728.8, -143.96], [-1766.11, -137.77], [-1765.56, -132.46], [-1765.74, -125.6], [-1765.84, -119.72], [-1763.79, -117.33], [-1761.51, -113.6], [-1753.32, -64.92], [-1752.38, -63.85], [-1703.76, -72.55], [-1704.77, -79.43], [-1737.46, -78.41], [-1737.55, -75.65], [-1739.18, -73.02], [-1741.36, -72.41], [-1743.29, -72.64], [-1745.37, -74.0], [-1746.33, -76.08], [-1747.18, -78.3], [-1747.4, -81.33], [-1747.4, -88.1], [-1746.93, -91.69], [-1745.56, -92.6], [-1743.71, -92.99], [-1724.84, -96.44], [-1729.1, -120.24], [-1735.21, -119.11], [-1738.73, -137.28], [-1727.89, -139.14], [-1728.8, -143.96]], "holes": [[[-1747.4, -71.49], [-1745.34, -71.76], [-1745.08, -69.74], [-1747.13, -69.47], [-1747.4, -71.49]]]}}, {"shape": {"outer": [[-1526.18, 52.41], [-1539.89, 53.03], [-1540.03, 49.9], [-1546.85, 50.18], [-1546.36, 61.56], [-1542.47, 61.39], [-1542.5, 60.58], [-1540.98, 60.52], [-1541.12, 57.23], [-1539.79, 57.17], [-1539.87, 55.52], [-1527.03, 54.93], [-1526.94, 56.63], [-1525.57, 56.56], [-1525.45, 59.53], [-1523.01, 59.43], [-1523.05, 58.46], [-1523.49, 49.17], [-1526.32, 49.27], [-1526.18, 52.41]], "holes": [[[-1543.8, 51.72], [-1540.93, 51.58], [-1540.7, 56.3], [-1543.58, 56.44], [-1543.8, 51.72]]]}}, {"shape": {"outer": [[-1506.94, 41.84], [-1486.15, 40.88], [-1486.38, 35.91], [-1507.12, 36.97], [-1506.94, 41.84]], "holes": [[[-1496.23, 38.62], [-1496.1, 38.85], [-1496.11, 39.21], [-1496.34, 39.47], [-1496.68, 39.54], [-1496.94, 39.45], [-1497.06, 39.32], [-1497.14, 39.16], [-1497.15, 38.89], [-1497.03, 38.65], [-1496.81, 38.5], [-1496.46, 38.49], [-1496.23, 38.62]]]}}, {"shape": {"outer": [[-1780.39, -171.92], [-1784.04, -169.87], [-1784.31, -167.07], [-1783.88, -164.18], [-1783.0, -161.21], [-1781.65, -158.17], [-1779.81, -155.24], [-1773.09, -149.24], [-1769.35, -143.53], [-1762.4, -145.34], [-1758.52, -149.63], [-1742.38, -175.64], [-1744.45, -177.04], [-1757.2, -176.5], [-1757.02, -174.61], [-1759.21, -174.39], [-1759.28, -175.22], [-1762.63, -174.96], [-1765.96, -174.43], [-1769.61, -173.56], [-1770.25, -175.24], [-1776.2, -173.63], [-1780.39, -171.92]], "holes": [[[-1757.4, -159.29], [-1755.25, -159.33], [-1755.21, -157.17], [-1757.37, -157.13], [-1757.4, -159.29]]]}}, {"shape": {"outer": [[2638.31, -1472.11], [2568.4, -1445.75], [2578.23, -1419.54], [2648.18, -1444.51], [2638.31, -1472.11]], "holes": []}}, {"shape": {"outer": [[2111.61, -3197.26], [2274.93, -3207.07], [2310.87, -3208.19], [2311.35, -3095.9], [2150.36, -3092.87], [2149.77, -3145.24], [2109.89, -3144.84], [2111.61, -3197.26]], "holes": []}}, {"shape": {"outer": [[-266.88, 418.94], [-267.86, 418.51], [-268.81, 418.8], [-324.49, 479.82], [-335.97, 492.4], [-339.97, 488.82], [-371.03, 523.24], [-354.96, 525.91], [-337.25, 529.0], [-325.8, 540.44], [-288.18, 550.41], [-243.49, 566.92], [-198.02, 584.53], [-182.53, 592.69], [-144.16, 617.11], [-128.9, 616.94], [-124.55, 625.54], [-114.38, 635.57], [-105.74, 644.1], [-91.85, 657.8], [-86.0, 663.59], [-84.94, 669.87], [-83.38, 674.64], [-81.91, 676.75], [-79.18, 680.38], [-72.08, 684.1], [-65.97, 683.92], [-56.49, 694.33], [-58.38, 696.99], [-58.53, 699.61], [-55.34, 704.31], [-39.97, 716.73], [-41.38, 718.48], [-38.91, 721.22], [-27.96, 733.3], [-19.82, 739.82], [-10.02, 745.7], [7.53, 763.71], [28.2, 783.37], [36.18, 802.74], [37.35, 804.81], [50.21, 827.59], [76.0, 866.05], [92.4, 889.54], [117.27, 923.25], [194.6, 839.04], [194.98, 838.63], [141.59, 791.93], [115.34, 821.79], [55.8, 767.73], [54.47, 766.45], [53.18, 763.8], [53.27, 761.1], [54.13, 758.9], [55.7, 757.34], [56.79, 756.71], [58.38, 756.2], [60.0, 755.81], [61.1, 754.58], [75.99, 737.9], [75.23, 737.18], [78.14, 733.74], [78.35, 733.12], [55.07, 711.61], [35.73, 732.82], [10.12, 708.53], [29.13, 687.97], [-42.49, 622.88], [-59.55, 607.16], [-74.62, 593.6], [-103.64, 568.05], [-108.51, 562.97], [-157.32, 518.33], [-266.88, 418.94]], "holes": []}}, {"shape": {"outer": [[469.09, 1213.26], [382.33, 1141.45], [373.03, 1151.87], [344.82, 1183.49], [379.21, 1207.13], [393.77, 1220.02], [404.89, 1229.86], [407.83, 1234.67], [411.27, 1240.28], [420.56, 1250.47], [432.64, 1264.59], [444.02, 1250.53], [439.39, 1246.18], [451.8, 1232.69], [469.09, 1213.26]], "holes": []}}, {"shape": {"outer": [[1044.48, 2076.76], [1005.08, 2033.38], [991.65, 2047.73], [966.66, 2070.01], [969.78, 2073.16], [964.75, 2077.36], [953.44, 2087.7], [946.13, 2093.68], [937.37, 2101.42], [936.72, 2100.8], [928.23, 2091.46], [925.18, 2090.94], [921.92, 2090.77], [918.79, 2090.8], [915.45, 2091.1], [880.38, 2102.3], [848.13, 2112.57], [838.27, 2115.84], [827.82, 2119.28], [824.92, 2120.48], [822.8, 2121.91], [821.07, 2123.83], [819.81, 2125.87], [818.88, 2128.04], [818.69, 2130.58], [823.81, 2225.9], [824.24, 2226.5], [823.83, 2227.55], [820.06, 2228.6], [820.35, 2229.36], [819.82, 2229.88], [819.16, 2229.59], [815.8, 2227.6], [811.37, 2223.7], [807.97, 2143.09], [807.14, 2137.84], [801.92, 2131.71], [799.32, 2126.03], [798.72, 2120.85], [800.99, 2116.84], [803.92, 2113.65], [901.36, 2083.46], [911.79, 2079.48], [916.33, 2076.13], [917.86, 2073.65], [918.6, 2071.27], [916.96, 2047.58], [910.12, 2018.32], [906.22, 1997.81], [886.58, 1975.26], [879.79, 1974.48], [871.84, 1977.92], [868.19, 1972.86], [864.8, 1968.17], [849.97, 1945.16], [839.42, 1936.48], [828.38, 1933.26], [817.55, 1937.73], [809.51, 1949.52], [811.13, 1938.56], [809.23, 1928.02], [804.53, 1921.42], [792.73, 1914.37], [786.58, 1924.17], [769.2, 1913.64], [763.3, 1910.07], [754.69, 1906.07], [747.39, 1905.39], [746.04, 1912.41], [737.42, 1919.11], [726.16, 1915.66], [723.76, 1907.12], [729.41, 1896.74], [734.86, 1898.38], [729.6, 1884.55], [723.72, 1880.23], [716.21, 1873.53], [710.46, 1864.06], [784.18, 1803.63], [803.96, 1826.02], [820.91, 1815.2], [941.65, 1708.45], [975.34, 1678.96], [1102.84, 1537.5], [1200.1, 1621.87], [1315.11, 1723.33], [1384.86, 1786.69], [1286.64, 1874.09], [1212.66, 1939.9], [1188.04, 1961.81], [1073.93, 2052.55], [1044.48, 2076.76]], "holes": []}}, {"shape": {"outer": [[388.95, 714.98], [523.55, 836.92], [577.76, 777.31], [443.18, 655.06], [388.95, 714.98]], "holes": []}}, {"shape": {"outer": [[1472.87, 407.14], [1478.53, 412.29], [1545.61, 473.43], [1613.65, 536.29], [1621.0, 543.23], [1615.73, 548.62], [1559.47, 609.33], [1553.48, 616.38], [1546.63, 610.14], [1411.91, 487.47], [1403.59, 479.89], [1410.25, 472.89], [1467.5, 413.11], [1472.87, 407.14]], "holes": []}}, {"shape": {"outer": [[2134.62, 809.87], [2107.51, 839.91], [2143.4, 873.05], [2170.78, 842.13], [2168.65, 828.4], [2158.41, 830.1], [2134.62, 809.87]], "holes": []}}, {"shape": {"outer": [[1108.95, 2945.4], [1108.0, 2926.87], [1105.08, 2907.43], [1093.75, 2883.44], [1075.86, 2809.1], [1160.5, 2807.29], [1252.19, 2805.32], [1265.54, 2805.16], [1303.72, 2804.53], [1386.11, 2800.42], [1389.68, 2800.27], [1400.42, 2802.51], [1455.5, 2903.08], [1462.06, 2915.75], [1463.5, 2918.99], [1463.52, 2920.47], [1463.07, 2922.1], [1461.77, 2923.68], [1460.8, 2924.22], [1459.54, 2924.59], [1458.2, 2924.98], [1424.71, 2927.87], [1392.7, 2930.8], [1175.77, 2941.77], [1108.95, 2945.4]], "holes": []}}, {"shape": {"outer": [[1922.41, 2383.08], [1917.94, 2368.61], [1910.8, 2355.87], [1902.07, 2348.07], [1893.67, 2345.27], [1886.31, 2343.62], [1879.38, 2340.53], [1865.88, 2326.63], [1874.97, 2316.41], [1899.55, 2339.71], [1904.38, 2333.93], [1944.18, 2371.04], [1994.68, 2418.61], [2021.91, 2446.71], [2039.11, 2461.37], [2122.53, 2540.75], [2095.92, 2568.31], [2083.13, 2581.56], [2108.3, 2606.63], [2035.61, 2682.74], [2005.77, 2713.99], [2110.47, 2817.35], [2128.73, 2835.38], [1994.1, 2973.05], [1990.93, 2975.22], [1986.7, 2976.36], [1981.78, 2975.37], [1978.07, 2972.12], [1963.77, 2943.04], [1948.66, 2911.1], [1939.43, 2884.75], [1930.98, 2855.99], [1916.21, 2789.98], [1902.5, 2724.22], [1876.94, 2609.89], [1844.62, 2457.69], [1875.79, 2445.15], [1901.42, 2428.58], [1914.05, 2418.88], [1920.13, 2405.32], [1922.41, 2383.08]], "holes": []}}, {"shape": {"outer": [[2660.02, -2172.29], [2653.03, -2173.48], [2643.98, -2169.97], [2650.61, -2154.05], [2728.95, -2053.99], [2781.37, -2004.5], [2788.44, -2004.32], [2790.39, -2060.77], [2784.39, -2060.83], [2787.02, -2130.08], [2792.78, -2130.17], [2793.08, -2141.43], [2786.91, -2141.83], [2787.98, -2160.61], [2793.81, -2160.6], [2792.91, -2166.29], [2788.49, -2168.55], [2704.75, -2172.12], [2676.28, -2178.82], [2670.94, -2177.84], [2660.02, -2172.29]], "holes": []}}, {"shape": {"outer": [[-2125.5, -940.22], [-2123.04, -937.4], [-2120.27, -936.3], [-2009.91, -939.42], [-2006.17, -941.05], [-2004.93, -944.18], [-2006.0, -999.9], [-2007.73, -1003.61], [-2011.23, -1005.21], [-2118.38, -1002.78], [-2121.98, -1001.0], [-2123.83, -997.8], [-2125.5, -940.22]], "holes": []}}, {"shape": {"outer": [[-714.04, -2937.04], [-688.5, -2924.52], [-664.77, -2908.51], [-647.73, -2893.62], [-602.79, -2858.75], [-562.5, -2827.48], [-462.36, -2747.89], [-414.03, -2706.7], [-396.8, -2695.37], [-381.7, -2685.75], [-345.53, -2654.87], [-285.37, -2607.16], [-266.35, -2596.75], [-227.41, -2569.29], [-238.46, -2553.57], [-273.7, -2540.09], [-280.44, -2536.91], [-287.44, -2534.14], [-363.77, -2503.76], [-405.05, -2487.8], [-415.65, -2483.71], [-461.81, -2469.39], [-486.82, -2462.19], [-511.84, -2455.56], [-518.4, -2453.79], [-527.73, -2451.27], [-536.68, -2449.6], [-544.55, -2448.13], [-570.27, -2445.31], [-605.75, -2441.37], [-651.83, -2438.69], [-694.02, -2439.2], [-698.08, -2540.19], [-703.53, -2675.47], [-713.39, -2920.36], [-714.04, -2937.04]], "holes": []}}, {"shape": {"outer": [[1717.09, 1650.26], [1627.25, 1563.94], [1623.74, 1560.71], [1620.48, 1557.55], [1617.71, 1560.55], [1612.01, 1566.02], [1604.4, 1574.97], [1550.85, 1628.41], [1543.11, 1632.97], [1521.33, 1642.24], [1513.94, 1651.07], [1510.41, 1653.52], [1506.35, 1654.53], [1511.05, 1699.12], [1530.12, 1881.45], [1551.43, 1899.17], [1553.04, 1890.02], [1563.16, 1850.7], [1571.95, 1828.68], [1582.95, 1806.97], [1592.26, 1790.91], [1602.51, 1775.14], [1613.14, 1759.39], [1625.48, 1744.3], [1635.37, 1733.94], [1645.66, 1723.87], [1656.53, 1714.17], [1667.57, 1704.93], [1678.55, 1697.24], [1689.85, 1690.0], [1701.19, 1682.96], [1712.61, 1676.13], [1723.23, 1671.02], [1733.94, 1666.36], [1717.09, 1650.26]], "holes": []}}, {"shape": {"outer": [[2705.16, 1382.58], [2683.07, 1378.98], [2625.54, 1362.56], [2619.59, 1360.86], [2611.45, 1358.01], [2552.38, 1337.29], [2535.44, 1316.95], [2483.37, 1255.43], [2389.2, 1142.26], [2382.03, 1135.54], [2377.57, 1131.36], [2372.6, 1126.88], [2297.84, 1059.46], [2267.14, 1031.06], [2263.46, 1027.64], [2221.67, 1071.62], [2219.77, 1073.62], [2214.09, 1079.6], [2207.59, 1073.15], [2198.12, 1064.6], [2223.8, 1041.79], [2244.03, 1011.39], [2262.01, 994.45], [2271.74, 989.82], [2272.06, 989.66], [2281.32, 989.52], [2297.05, 998.36], [2337.8, 1033.36], [2354.71, 1044.21], [2361.06, 1048.14], [2361.77, 1053.77], [2371.97, 1061.43], [2380.37, 1066.97], [2401.39, 1087.38], [2402.44, 1088.4], [2409.0, 1095.66], [2414.16, 1104.64], [2420.96, 1113.44], [2433.92, 1118.02], [2491.72, 1192.33], [2536.15, 1249.87], [2554.65, 1270.68], [2568.15, 1284.67], [2579.37, 1294.8], [2594.53, 1306.14], [2618.07, 1319.42], [2643.38, 1333.94], [2702.12, 1355.8], [2720.65, 1362.25], [2722.11, 1383.12], [2718.37, 1383.62], [2715.01, 1384.07], [2705.16, 1382.58]], "holes": []}}, {"shape": {"outer": [[-1543.96, -1353.64], [-1538.89, -1360.59], [-1537.41, -1362.85], [-1535.7, -1366.6], [-1534.57, -1370.78], [-1534.49, -1374.47], [-1534.67, -1379.47], [-1532.81, -1379.9], [-1531.04, -1380.91], [-1529.25, -1382.14], [-1527.62, -1383.62], [-1526.49, -1385.63], [-1525.35, -1387.66], [-1523.96, -1391.92], [-1524.6, -1434.08], [-1526.2, -1505.0], [-1529.82, -1661.81], [-1522.59, -1661.65], [-1519.28, -1596.02], [-1519.53, -1557.11], [-1515.72, -1505.69], [-1515.76, -1494.42], [-1512.52, -1462.53], [-1508.28, -1453.44], [-1502.9, -1444.66], [-1499.01, -1440.39], [-1492.84, -1429.83], [-1489.03, -1428.06], [-1484.97, -1423.87], [-1472.05, -1407.03], [-1459.34, -1398.87], [-1452.99, -1397.99], [-1448.06, -1398.28], [-1444.36, -1397.2], [-1439.73, -1396.83], [-1435.56, -1396.31], [-1429.93, -1396.43], [-1424.36, -1396.03], [-1419.62, -1396.29], [-1406.67, -1396.54], [-1401.64, -1398.75], [-1392.8, -1398.78], [-1378.47, -1400.28], [-1373.32, -1402.36], [-1369.38, -1402.42], [-1366.2, -1402.73], [-1361.78, -1402.09], [-1357.28, -1400.06], [-1352.83, -1396.97], [-1344.57, -1375.53], [-1345.49, -1373.16], [-1343.13, -1367.06], [-1339.38, -1360.54], [-1336.32, -1354.09], [-1325.88, -1335.37], [-1322.58, -1331.11], [-1319.39, -1324.77], [-1312.96, -1319.25], [-1305.87, -1312.47], [-1300.07, -1308.59], [-1287.9, -1299.73], [-1283.25, -1297.23], [-1278.14, -1294.87], [-1272.65, -1291.14], [-1265.3, -1287.46], [-1254.07, -1283.24], [-1248.08, -1282.65], [-1242.16, -1279.85], [-1238.88, -1279.7], [-1235.81, -1278.38], [-1230.54, -1276.45], [-1224.76, -1275.37], [-1213.5, -1272.87], [-1210.61, -1272.23], [-1207.39, -1271.9], [-1205.07, -1272.2], [-1203.18, -1272.62], [-1191.5, -1271.76], [-1169.83, -1272.54], [-1168.64, -1273.41], [-1167.09, -1272.53], [-1165.35, -1272.46], [-1163.96, -1271.41], [-1162.4, -1272.45], [-1160.91, -1272.17], [-1157.94, -1272.84], [-1153.23, -1272.72], [-1144.14, -1272.97], [-1143.06, -1273.61], [-1141.78, -1273.51], [-1139.38, -1273.73], [-1137.0, -1274.23], [-1134.64, -1275.2], [-1129.11, -1275.04], [-1123.6, -1276.16], [-1111.15, -1279.2], [-1104.93, -1281.15], [-1101.7, -1282.06], [-1099.06, -1283.49], [-1086.83, -1285.97], [-1075.02, -1291.68], [-1062.27, -1296.83], [-1049.53, -1302.98], [-1034.42, -1313.18], [-1018.03, -1324.22], [-965.21, -1360.89], [-954.43, -1367.75], [-944.45, -1374.58], [-933.56, -1382.9], [-928.05, -1385.36], [-922.45, -1387.81], [-916.89, -1389.99], [-911.41, -1392.17], [-904.11, -1395.31], [-898.8, -1395.58], [-893.4, -1396.9], [-874.14, -1396.08], [-858.52, -1394.92], [-839.91, -1393.51], [-823.04, -1390.5], [-803.09, -1377.83], [-762.44, -1350.41], [-733.96, -1333.1], [-716.32, -1327.33], [-698.82, -1322.86], [-695.81, -1324.03], [-693.28, -1324.64], [-689.36, -1324.5], [-717.44, -1277.45], [-723.34, -1280.91], [-732.66, -1285.65], [-741.83, -1289.32], [-750.2, -1291.58], [-760.3, -1293.62], [-771.16, -1294.51], [-779.8, -1294.77], [-787.98, -1293.88], [-801.53, -1292.06], [-829.24, -1282.5], [-842.0, -1272.97], [-853.86, -1285.58], [-867.29, -1297.6], [-879.17, -1308.39], [-890.09, -1317.44], [-926.16, -1356.33], [-929.21, -1358.51], [-931.78, -1359.1], [-934.33, -1358.48], [-936.79, -1357.85], [-938.76, -1356.36], [-1101.76, -1227.45], [-1152.13, -1187.12], [-1161.98, -1180.07], [-1164.5, -1180.42], [-1167.59, -1183.08], [-1170.87, -1185.06], [-1174.9, -1186.34], [-1178.82, -1186.22], [-1183.28, -1184.66], [-1185.91, -1182.29], [-1189.19, -1178.62], [-1203.36, -1179.29], [-1267.24, -1176.61], [-1281.9, -1178.19], [-1309.2, -1184.74], [-1330.77, -1161.14], [-1367.84, -1194.03], [-1379.77, -1205.45], [-1441.99, -1261.96], [-1485.83, -1301.63], [-1510.96, -1324.23], [-1543.96, -1353.64]], "holes": []}}, {"shape": {"outer": [[-2546.96, 133.11], [-2545.62, 161.9], [-2544.7, 187.15], [-2543.03, 216.13], [-2589.39, 217.92], [-2630.22, 218.04], [-2634.0, 214.6], [-2636.59, 208.65], [-2639.59, 135.31], [-2550.67, 131.54], [-2546.96, 133.11]], "holes": []}}, {"shape": {"outer": [[-573.48, -2857.1], [-545.59, -2836.02], [-536.83, -2830.57], [-525.32, -2820.22], [-502.25, -2803.57], [-438.47, -2750.71], [-405.34, -2722.99], [-389.01, -2711.93], [-377.93, -2703.61], [-353.35, -2687.43], [-316.37, -2659.96], [-291.8, -2634.32], [-237.69, -2590.43], [-228.94, -2602.66], [-217.43, -2617.51], [-244.52, -2627.67], [-306.27, -2677.32], [-308.06, -2691.77], [-330.03, -2709.44], [-319.25, -2722.38], [-378.86, -2768.28], [-324.93, -2826.62], [-240.91, -2814.55], [-218.47, -2818.42], [-217.11, -2809.38], [-89.25, -2860.89], [-143.05, -2973.2], [-184.12, -3022.72], [-224.02, -3043.05], [-306.18, -3067.91], [-345.97, -3085.22], [-383.38, -3114.09], [-411.97, -3153.05], [-414.64, -3162.45], [-408.16, -3166.75], [-423.71, -3197.59], [-431.61, -3240.41], [-442.21, -3344.47], [-462.85, -3354.76], [-577.76, -3347.68], [-728.03, -3346.93], [-712.09, -2950.7], [-705.61, -2949.98], [-695.12, -2948.85], [-685.86, -2945.71], [-664.26, -2927.12], [-634.51, -2906.98], [-573.48, -2857.1]], "holes": []}}, {"shape": {"outer": [[-336.54, -827.29], [-329.65, -835.95], [-324.89, -844.05], [-324.17, -849.11], [-345.83, -880.24], [-366.44, -911.78], [-375.25, -923.97], [-383.26, -937.0], [-390.68, -953.11], [-397.3, -966.93], [-453.63, -978.39], [-466.16, -981.39], [-482.4, -986.11], [-489.36, -988.43], [-498.12, -991.74], [-508.17, -995.93], [-518.88, -1000.72], [-529.22, -1006.25], [-538.53, -1011.83], [-544.84, -1015.71], [-551.83, -1020.46], [-563.83, -1029.27], [-577.77, -1039.6], [-605.26, -1010.34], [-593.05, -1006.6], [-578.02, -1000.4], [-563.88, -994.06], [-548.77, -987.02], [-534.54, -979.01], [-521.6, -971.55], [-508.58, -963.92], [-495.08, -954.86], [-482.19, -945.78], [-456.72, -927.03], [-431.49, -908.29], [-407.26, -888.09], [-383.2, -867.85], [-359.09, -847.87], [-336.54, -827.29]], "holes": []}}, {"shape": {"outer": [[-1709.76, -3051.12], [-1867.59, -3316.29], [-1864.95, -3316.6], [-1860.26, -3313.24], [-1645.66, -3318.82], [-1645.89, -3326.11], [-1527.57, -3324.3], [-1515.76, -3125.5], [-1516.5, -3097.6], [-1576.35, -3095.66], [-1584.44, -3095.43], [-1598.18, -3086.98], [-1611.98, -3110.55], [-1709.76, -3051.12]], "holes": []}}, {"shape": {"outer": [[-2377.27, -666.71], [-2374.78, -664.85], [-2372.45, -663.13], [-2354.78, -649.41], [-2352.12, -647.32], [-2286.15, -595.5], [-2280.2, -589.51], [-2275.74, -583.26], [-2273.45, -578.21], [-2271.59, -573.15], [-2270.83, -568.89], [-2270.49, -564.39], [-2269.75, -535.0], [-2270.45, -526.86], [-2270.95, -521.09], [-2271.7, -512.5], [-2271.56, -493.74], [-2271.32, -481.24], [-2271.08, -468.89], [-2270.43, -451.67], [-2272.64, -451.74], [-2275.15, -451.77], [-2284.45, -451.9], [-2325.04, -449.7], [-2327.37, -449.64], [-2341.21, -449.34], [-2349.16, -449.15], [-2357.06, -448.77], [-2378.85, -447.73], [-2379.44, -462.41], [-2379.62, -471.01], [-2381.35, -470.96], [-2382.92, -526.3], [-2381.04, -526.41], [-2381.24, -534.49], [-2377.96, -534.47], [-2380.05, -634.67], [-2380.19, -641.22], [-2380.57, -657.87], [-2375.31, -659.73], [-2377.27, -666.71]], "holes": []}}, {"shape": {"outer": [[-2487.75, -1362.52], [-2486.03, -1371.8], [-2483.58, -1376.53], [-2480.67, -1382.12], [-2471.84, -1390.56], [-2462.98, -1395.83], [-2450.04, -1399.71], [-2438.19, -1401.63], [-2425.65, -1401.97], [-2423.32, -1401.53], [-2416.73, -1400.26], [-2412.32, -1399.35], [-2409.46, -1398.76], [-2402.54, -1395.83], [-2394.68, -1391.91], [-2389.35, -1386.4], [-2384.29, -1379.35], [-2381.01, -1371.3], [-2380.13, -1365.62], [-2380.23, -1359.3], [-2381.16, -1353.17], [-2383.45, -1347.03], [-2387.03, -1340.94], [-2391.37, -1336.18], [-2395.82, -1332.73], [-2400.55, -1330.61], [-2407.78, -1327.33], [-2417.11, -1324.72], [-2425.12, -1323.09], [-2433.09, -1322.39], [-2441.69, -1322.94], [-2447.72, -1324.07], [-2452.66, -1324.98], [-2460.51, -1327.23], [-2468.15, -1330.78], [-2473.95, -1334.6], [-2478.93, -1339.69], [-2483.4, -1345.6], [-2485.59, -1351.29], [-2486.79, -1354.39], [-2487.75, -1362.52]], "holes": []}}, {"shape": {"outer": [[-1409.14, -1037.34], [-1408.97, -1023.89], [-1477.9, -1023.63], [-1487.63, -1023.77], [-1503.44, -1024.88], [-1529.42, -1029.53], [-1529.52, -1031.13], [-1502.45, -1035.71], [-1489.26, -1036.59], [-1479.5, -1037.01], [-1409.14, -1037.34]], "holes": []}}, {"shape": {"outer": [[-682.45, -1319.59], [-710.85, -1276.79], [-704.91, -1272.92], [-697.91, -1266.75], [-692.02, -1260.11], [-685.66, -1251.98], [-680.81, -1244.67], [-673.8, -1231.97], [-667.33, -1220.04], [-658.31, -1203.58], [-639.26, -1168.67], [-625.62, -1143.39], [-612.01, -1118.13], [-607.49, -1110.96], [-604.13, -1105.77], [-600.6, -1101.03], [-595.64, -1093.98], [-589.69, -1086.86], [-586.65, -1083.56], [-573.86, -1069.72], [-568.34, -1064.39], [-562.67, -1059.22], [-556.81, -1054.22], [-550.89, -1049.58], [-545.63, -1045.65], [-538.71, -1040.92], [-532.05, -1036.52], [-525.1, -1032.38], [-510.99, -1024.79], [-501.69, -1020.46], [-493.95, -1017.1], [-486.04, -1014.08], [-477.48, -1011.03], [-468.92, -1008.41], [-460.43, -1006.42], [-451.99, -1004.68], [-444.33, -1003.33], [-436.66, -1002.45], [-431.98, -1001.99], [-427.36, -1002.01], [-422.38, -1002.16], [-418.0, -1002.88], [-415.51, -1003.72], [-413.22, -1004.81], [-411.03, -1006.03], [-408.92, -1007.55], [-407.12, -1009.6], [-405.71, -1011.77], [-404.65, -1014.17], [-404.17, -1015.86], [-403.87, -1018.02], [-403.81, -1020.19], [-404.07, -1022.69], [-404.8, -1025.53], [-405.74, -1027.86], [-407.35, -1031.06], [-410.79, -1038.93], [-432.02, -1026.1], [-451.62, -1025.18], [-453.83, -1024.14], [-462.62, -1024.18], [-468.46, -1026.12], [-482.39, -1028.64], [-498.67, -1036.39], [-505.13, -1039.52], [-508.55, -1042.15], [-512.4, -1043.19], [-520.81, -1051.11], [-524.67, -1052.98], [-526.81, -1054.9], [-531.34, -1057.51], [-532.73, -1059.38], [-538.87, -1064.84], [-543.5, -1070.73], [-544.78, -1072.25], [-550.39, -1080.52], [-555.0, -1085.64], [-558.77, -1091.01], [-569.82, -1107.16], [-576.92, -1120.09], [-582.39, -1131.08], [-583.53, -1133.1], [-585.28, -1136.74], [-591.41, -1142.36], [-594.03, -1147.2], [-596.47, -1151.31], [-606.35, -1170.46], [-614.97, -1186.63], [-621.62, -1200.98], [-623.22, -1204.26], [-626.21, -1214.65], [-627.74, -1223.39], [-630.46, -1228.68], [-630.76, -1232.32], [-632.84, -1237.88], [-635.55, -1242.39], [-637.28, -1246.05], [-636.5, -1248.08], [-638.86, -1253.18], [-640.55, -1257.3], [-641.48, -1257.68], [-643.62, -1261.78], [-644.91, -1265.71], [-647.98, -1271.74], [-655.1, -1281.56], [-662.6, -1293.63], [-670.05, -1306.68], [-671.04, -1307.17], [-671.99, -1306.51], [-673.88, -1307.53], [-677.0, -1312.86], [-679.7, -1316.29], [-682.45, -1319.59]], "holes": []}}, {"shape": {"outer": [[2002.18, 1409.46], [1997.71, 1403.41], [1993.7, 1397.08], [1990.03, 1391.19], [1991.37, 1390.33], [1994.38, 1391.55], [2012.86, 1410.69], [2030.93, 1425.8], [2043.74, 1435.8], [2070.53, 1455.12], [2096.13, 1471.95], [2100.26, 1475.03], [2101.5, 1476.62], [2101.78, 1479.11], [2100.89, 1481.97], [2096.68, 1486.56], [2079.45, 1507.61], [2076.67, 1509.43], [2074.53, 1509.35], [2070.82, 1508.97], [2068.92, 1507.52], [2067.21, 1505.86], [2063.65, 1500.73], [2023.56, 1434.85], [2019.56, 1427.72], [2016.91, 1423.96], [2014.52, 1421.0], [2008.87, 1416.13], [2002.18, 1409.46]], "holes": []}}, {"shape": {"outer": [[2508.63, 1798.28], [2529.38, 1770.81], [2585.93, 1808.3], [2611.74, 1821.07], [2623.48, 1826.51], [2620.09, 1826.5], [2592.26, 1819.66], [2532.07, 1804.26], [2508.63, 1798.28]], "holes": []}}, {"shape": {"outer": [[-430.53, 297.68], [-417.34, 283.53], [-387.63, 310.32], [-405.11, 328.96], [-412.99, 321.89], [-408.78, 317.23], [-430.53, 297.68]], "holes": []}}, {"shape": {"outer": [[941.21, 151.58], [948.5, 120.45], [960.74, 125.31], [982.17, 127.07], [1001.3, 131.74], [1017.77, 134.59], [1027.74, 134.54], [1032.32, 137.01], [1033.45, 138.41], [1039.8, 141.92], [1047.38, 143.2], [1055.17, 142.72], [1056.22, 138.3], [1059.98, 136.46], [1060.59, 133.92], [1061.93, 132.98], [1071.77, 136.63], [1078.29, 141.39], [1089.04, 143.93], [1094.58, 145.59], [1100.09, 148.34], [1102.99, 149.66], [1106.79, 150.06], [1112.07, 151.38], [1120.21, 154.17], [1127.69, 158.69], [1137.06, 162.45], [1146.42, 165.73], [1115.27, 205.59], [1104.13, 194.73], [1091.29, 185.07], [1048.98, 174.95], [941.21, 151.58]], "holes": []}}, {"shape": {"outer": [[2842.03, 1962.11], [2842.81, 1981.89], [3044.61, 2120.14], [3054.31, 2107.68], [2842.03, 1962.11]], "holes": []}}, {"shape": {"outer": [[2746.91, 1896.64], [2826.02, 1950.66], [2821.6, 1966.91], [2764.83, 1927.92], [2747.3, 1910.56], [2746.91, 1896.64]], "holes": []}}, {"shape": {"outer": [[-721.91, -2111.08], [-720.23, -2114.03], [-719.46, -2117.5], [-720.3, -2147.0], [-709.61, -2147.22], [-661.39, -2148.21], [-639.04, -2027.93], [-679.82, -2067.55], [-683.37, -2069.87], [-716.8, -2091.75], [-721.46, -2091.55], [-721.91, -2111.08]], "holes": []}}, {"shape": {"outer": [[-901.86, -40.1], [-872.08, -72.11], [-878.9, -75.96], [-885.58, -75.87], [-889.53, -77.76], [-890.25, -78.79], [-894.43, -78.82], [-901.49, -79.84], [-901.96, -80.38], [-906.42, -80.9], [-907.07, -82.17], [-907.64, -94.96], [-908.62, -94.96], [-913.81, -94.68], [-919.77, -94.36], [-919.57, -88.51], [-921.13, -86.79], [-926.2, -81.17], [-926.99, -80.29], [-927.41, -79.83], [-932.82, -74.2], [-934.96, -71.51], [-901.86, -40.1]], "holes": []}}, {"shape": {"outer": [[-435.7, -356.59], [-450.51, -369.84], [-380.6, -445.74], [-321.67, -392.04], [-356.51, -354.31], [-357.83, -355.55], [-379.49, -375.93], [-400.05, -395.29], [-435.7, -356.59]], "holes": []}}, {"shape": {"outer": [[-1522.59, -1661.65], [-1524.96, -1738.15], [-1508.4, -1803.37], [-1479.54, -1855.76], [-1390.0, -2018.32], [-1360.11, -2051.58], [-1342.9, -2062.9], [-1328.06, -2069.34], [-1307.43, -2070.76], [-1291.56, -2070.37], [-1236.16, -2061.88], [-1166.08, -2051.59], [-1118.82, -2055.59], [-1073.92, -2069.7], [-998.17, -2076.44], [-928.16, -2086.76], [-877.65, -2078.98], [-829.21, -2080.18], [-808.59, -2087.8], [-721.46, -2091.55], [-721.91, -2111.08], [-725.81, -2108.71], [-730.26, -2107.34], [-733.53, -2106.79], [-739.7, -2106.28], [-771.44, -2104.93], [-886.73, -2098.11], [-895.98, -2098.71], [-947.26, -2099.05], [-962.85, -2096.86], [-978.29, -2094.91], [-991.42, -2093.21], [-1065.56, -2086.21], [-1089.54, -2081.3], [-1109.33, -2075.18], [-1136.37, -2068.51], [-1155.24, -2067.31], [-1174.76, -2068.64], [-1204.99, -2071.11], [-1268.67, -2080.63], [-1308.29, -2083.83], [-1315.95, -2083.83], [-1333.62, -2080.44], [-1348.72, -2075.45], [-1357.62, -2070.42], [-1367.13, -2063.59], [-1376.69, -2055.87], [-1389.02, -2042.07], [-1405.88, -2022.13], [-1425.8, -1991.78], [-1451.21, -1937.25], [-1487.22, -1870.98], [-1491.98, -1862.18], [-1524.99, -1801.78], [-1528.02, -1795.71], [-1533.32, -1781.75], [-1535.47, -1771.35], [-1536.09, -1761.88], [-1531.66, -1749.52], [-1529.82, -1661.81], [-1522.59, -1661.65]], "holes": []}}, {"shape": {"outer": [[-379.89, -1967.4], [-384.02, -1970.11], [-383.79, -1952.64], [-377.12, -1953.33], [-366.34, -1952.99], [-358.92, -1952.14], [-353.38, -1951.55], [-347.02, -1947.87], [-340.77, -1941.8], [-331.14, -1925.87], [-328.98, -1916.07], [-278.17, -1993.81], [-298.62, -1995.02], [-304.53, -1986.48], [-310.25, -1979.99], [-314.5, -1975.96], [-317.71, -1973.47], [-323.42, -1970.29], [-328.15, -1968.57], [-333.03, -1967.51], [-341.13, -1966.7], [-347.53, -1966.73], [-370.93, -1966.84], [-379.89, -1967.4]], "holes": []}}, {"shape": {"outer": [[-487.69, -1954.51], [-488.49, -1970.29], [-481.45, -1969.59], [-475.52, -1969.76], [-475.12, -1952.98], [-485.18, -1954.51], [-487.69, -1954.51]], "holes": []}}, {"shape": {"outer": [[-558.94, -1959.14], [-554.26, -1959.62], [-549.78, -1960.11], [-548.91, -1950.44], [-557.84, -1949.32], [-558.94, -1959.14]], "holes": []}}, {"shape": {"outer": [[-1667.35, -2434.8], [-1621.38, -2428.97], [-1609.53, -2427.13], [-1572.75, -2425.57], [-1556.12, -2425.18], [-1553.88, -2378.83], [-1551.47, -2378.99], [-1555.87, -2497.82], [-1557.95, -2497.65], [-1555.98, -2450.67], [-1614.5, -2448.34], [-1619.53, -2432.95], [-1666.53, -2438.26], [-1667.35, -2434.8]], "holes": []}}, {"shape": {"outer": [[-1647.88, -3418.05], [-1643.26, -3330.89], [-1637.19, -3322.59], [-1588.71, -3317.1], [-1570.58, -3314.45], [-1544.1, -3316.79], [-1534.07, -3318.66], [-1523.88, -3315.25], [-1516.5, -3298.54], [-1505.32, -3278.75], [-1516.09, -3265.75], [-1519.65, -3260.36], [-1515.42, -3242.48], [-1519.18, -3224.92], [-1523.01, -3192.01], [-1525.86, -3161.77], [-1525.73, -3101.47], [-1527.89, -3065.43], [-1531.93, -3039.91], [-1554.69, -2981.6], [-1561.1, -2964.49], [-1563.58, -2958.07], [-1559.26, -2957.92], [-1555.07, -2957.78], [-1529.26, -2964.87], [-1527.02, -2961.23], [-1524.94, -2943.83], [-1525.81, -2937.46], [-1521.45, -2933.35], [-1501.91, -2936.57], [-1503.99, -2953.95], [-1507.73, -2973.42], [-1510.32, -3026.78], [-1497.08, -3046.73], [-1489.68, -3085.04], [-1488.64, -3104.1], [-1474.37, -3106.64], [-1478.27, -3131.39], [-1467.9, -3140.15], [-1456.3, -3143.13], [-1460.06, -3163.12], [-1443.34, -3191.12], [-1411.76, -3219.53], [-1428.17, -3236.52], [-1455.14, -3251.09], [-1452.67, -3257.5], [-1451.64, -3277.11], [-1450.93, -3307.81], [-1438.78, -3310.28], [-1417.66, -3314.59], [-1400.7, -3315.6], [-1408.92, -3324.36], [-1514.08, -3399.66], [-1545.47, -3401.93], [-1557.58, -3398.42], [-1610.11, -3396.92], [-1616.82, -3408.88], [-1629.92, -3421.21], [-1642.66, -3421.37], [-1647.88, -3418.05]], "holes": []}}, {"shape": {"outer": [[-1356.62, -2821.61], [-1346.56, -2822.43], [-1299.36, -2824.3], [-1299.35, -2786.75], [-1300.24, -2780.9], [-1293.61, -2779.12], [-1266.11, -2775.41], [-1245.55, -2766.36], [-1242.34, -2755.85], [-1242.49, -2723.84], [-1249.16, -2723.55], [-1352.78, -2719.88], [-1353.65, -2736.93], [-1355.66, -2807.22], [-1356.62, -2821.61]], "holes": []}}, {"shape": {"outer": [[758.83, 154.27], [776.23, 136.05], [761.28, 132.64], [736.53, 126.58], [732.94, 126.01], [731.64, 126.15], [730.54, 126.49], [729.81, 127.12], [729.59, 127.86], [730.04, 128.61], [747.33, 144.21], [758.83, 154.27]], "holes": []}}, {"shape": {"outer": [[906.35, 124.15], [898.3, 122.61], [901.09, 109.62], [904.29, 110.26], [917.64, 112.56], [911.72, 125.48], [906.35, 124.15]], "holes": []}}, {"shape": {"outer": [[720.51, 35.33], [731.19, 31.62], [735.94, 32.08], [738.34, 33.02], [745.5, 24.13], [751.56, 19.71], [742.91, 19.68], [737.48, 18.21], [733.66, 4.77], [730.01, 4.68], [715.27, 31.25], [720.51, 35.33]], "holes": []}}, {"shape": {"outer": [[-2361.2, -207.89], [-2363.24, -206.47], [-2365.15, -205.11], [-2361.58, -132.49], [-2360.98, -116.91], [-2358.03, -40.45], [-2339.78, -41.13], [-2343.38, -117.43], [-2343.98, -133.18], [-2346.8, -201.27], [-2346.93, -204.52], [-2349.2, -206.35], [-2351.39, -208.11], [-2353.42, -208.08], [-2358.66, -207.92], [-2361.2, -207.89]], "holes": []}}, {"shape": {"outer": [[1037.14, 599.6], [1068.74, 626.82], [1084.26, 640.86], [1096.62, 652.15], [1110.28, 664.29], [1124.47, 677.48], [1146.04, 696.86], [1157.14, 706.57], [1172.73, 720.81], [1179.97, 727.39], [1187.45, 734.58], [1191.98, 729.66], [1203.94, 740.37], [1221.77, 758.46], [1243.32, 782.03], [1263.58, 804.98], [1276.56, 821.09], [1289.19, 837.48], [1301.85, 855.09], [1314.56, 872.74], [1316.33, 875.57], [1318.64, 878.78], [1325.24, 889.09], [1346.92, 923.91], [1342.97, 926.85], [1359.65, 954.39], [1360.13, 956.06], [1360.06, 958.01], [1359.35, 959.67], [1358.19, 961.18], [1356.32, 962.27], [1354.26, 962.64], [1352.58, 962.19], [1351.01, 961.38], [1349.75, 960.12], [1347.22, 957.68], [1336.99, 947.35], [1327.11, 937.21], [1324.74, 939.22], [1288.04, 905.6], [1273.28, 892.13], [1182.14, 809.32], [1153.42, 783.33], [1147.8, 778.22], [1133.4, 765.16], [1132.84, 764.65], [1084.5, 720.78], [1053.3, 692.4], [1060.52, 684.38], [1046.36, 670.44], [1030.96, 655.98], [1006.79, 633.24], [1033.07, 604.12], [1035.46, 601.47], [1037.14, 599.6]], "holes": []}}, {"shape": {"outer": [[1147.07, 519.33], [1110.85, 558.95], [1083.12, 535.32], [1088.12, 529.85], [1110.84, 505.0], [1113.83, 501.73], [1120.29, 494.67], [1127.34, 501.14], [1147.07, 519.33]], "holes": []}}, {"shape": {"outer": [[1641.51, 1534.76], [1644.83, 1537.87], [1648.13, 1540.89], [1663.71, 1554.42], [1669.26, 1548.61], [1676.08, 1541.0], [1699.13, 1516.64], [1708.04, 1507.07], [1712.78, 1503.18], [1732.47, 1482.62], [1738.73, 1479.38], [1745.47, 1472.27], [1805.13, 1422.99], [1815.77, 1414.41], [1847.89, 1391.3], [1853.78, 1398.53], [1929.59, 1344.15], [1957.45, 1341.74], [1952.96, 1334.06], [1949.26, 1328.22], [1958.21, 1322.04], [1995.55, 1293.74], [2048.77, 1252.52], [2065.5, 1236.29], [2076.35, 1227.32], [2083.11, 1221.0], [2114.12, 1189.11], [2149.58, 1149.65], [2205.92, 1088.48], [2207.59, 1086.65], [2214.09, 1079.6], [2207.59, 1073.15], [2198.12, 1064.6], [2183.96, 1051.79], [2194.08, 1038.06], [2249.35, 983.27], [2253.23, 974.25], [2252.74, 962.26], [2240.06, 943.47], [2209.51, 971.7], [2210.28, 975.9], [2209.54, 978.48], [2208.45, 980.28], [2167.84, 1023.58], [2166.14, 1025.39], [2162.73, 1029.03], [2161.17, 1031.29], [2155.17, 1039.59], [2154.19, 1040.94], [2125.55, 1073.14], [2101.02, 1100.99], [2094.8, 1107.63], [2084.33, 1117.81], [2029.08, 1167.98], [2020.45, 1175.8], [2013.26, 1182.61], [1954.45, 1238.28], [1951.58, 1240.87], [1923.15, 1266.53], [1922.01, 1267.59], [1915.29, 1273.87], [1907.19, 1280.1], [1905.37, 1281.44], [1903.55, 1282.78], [1881.28, 1291.26], [1876.9, 1293.0], [1864.17, 1296.82], [1858.61, 1297.81], [1852.96, 1297.36], [1841.86, 1299.94], [1839.3, 1301.73], [1765.53, 1363.11], [1692.52, 1424.21], [1593.98, 1501.17], [1577.8, 1486.52], [1566.36, 1496.22], [1558.47, 1503.66], [1544.37, 1516.97], [1561.04, 1527.85], [1560.44, 1545.07], [1554.6, 1554.92], [1501.02, 1607.35], [1493.17, 1609.73], [1480.01, 1617.65], [1445.04, 1638.7], [1449.1, 1646.1], [1444.91, 1648.45], [1416.18, 1664.56], [1406.77, 1669.82], [1379.5, 1690.05], [1375.99, 1685.96], [1355.34, 1699.88], [1334.69, 1714.48], [1396.7, 1769.55], [1496.32, 1708.59], [1511.05, 1699.12], [1506.35, 1654.53], [1510.41, 1653.52], [1513.94, 1651.07], [1521.33, 1642.24], [1543.11, 1632.97], [1550.85, 1628.41], [1604.4, 1574.97], [1612.01, 1566.02], [1617.71, 1560.55], [1641.51, 1534.76]], "holes": []}}, {"shape": {"outer": [[970.45, 2116.32], [972.28, 2117.64], [975.66, 2120.06], [979.58, 2123.54], [980.76, 2125.08], [992.18, 2140.02], [1003.9, 2151.05], [1014.87, 2163.7], [1027.8, 2189.23], [1030.6, 2191.41], [1087.59, 2154.59], [1076.92, 2132.23], [1043.7, 2097.53], [1028.97, 2078.54], [1022.63, 2070.54], [1016.38, 2059.89], [1013.94, 2055.74], [976.3, 2089.47], [975.82, 2089.89], [975.23, 2090.41], [974.24, 2091.29], [968.9, 2107.12], [970.45, 2116.32]], "holes": []}}, {"shape": {"outer": [[-2541.36, -820.41], [-2540.17, -820.36], [-2511.7, -811.91], [-2302.86, -748.53], [-2295.02, -746.04], [-2277.82, -740.14], [-2276.52, -735.07], [-2275.33, -735.01], [-2273.48, -683.48], [-2274.54, -683.46], [-2277.38, -725.61], [-2325.17, -739.5], [-2326.0, -738.81], [-2326.5, -738.5], [-2326.98, -738.33], [-2327.42, -738.29], [-2327.88, -738.44], [-2328.09, -738.7], [-2328.14, -739.12], [-2328.0, -739.59], [-2326.3, -741.15], [-2321.68, -744.43], [-2319.27, -745.36], [-2307.41, -744.89], [-2302.58, -745.28], [-2299.09, -746.51], [-2303.13, -747.45], [-2304.77, -746.93], [-2307.09, -746.8], [-2319.42, -747.14], [-2364.1, -761.34], [-2366.34, -758.37], [-2403.95, -774.34], [-2414.7, -773.63], [-2479.9, -793.14], [-2522.04, -805.75], [-2523.87, -805.33], [-2541.36, -820.41]], "holes": []}}, {"shape": {"outer": [[-1233.93, -590.85], [-1238.22, -605.4], [-1242.13, -604.2], [-1245.15, -603.49], [-1248.02, -603.0], [-1251.62, -602.39], [-1255.27, -601.87], [-1257.92, -601.66], [-1260.51, -601.48], [-1263.85, -601.38], [-1267.2, -601.37], [-1270.73, -601.55], [-1274.18, -601.81], [-1277.64, -602.1], [-1280.99, -602.53], [-1283.65, -602.99], [-1286.54, -587.9], [-1284.88, -587.39], [-1282.77, -587.37], [-1280.23, -588.97], [-1279.32, -590.95], [-1278.86, -593.19], [-1278.62, -594.81], [-1277.87, -595.3], [-1272.64, -595.12], [-1267.55, -595.11], [-1260.46, -595.16], [-1253.79, -595.59], [-1247.12, -596.17], [-1243.38, -596.76], [-1242.93, -596.83], [-1242.26, -596.65], [-1241.18, -593.59], [-1238.63, -590.93], [-1236.48, -590.05], [-1234.73, -590.37], [-1233.93, -590.85]], "holes": []}}, {"shape": {"outer": [[-1293.75, -551.21], [-1286.54, -587.9], [-1284.88, -587.39], [-1282.77, -587.37], [-1280.23, -588.97], [-1279.32, -590.95], [-1278.86, -593.19], [-1278.62, -594.81], [-1277.87, -595.3], [-1272.64, -595.12], [-1267.55, -595.11], [-1260.46, -595.16], [-1253.79, -595.59], [-1247.12, -596.17], [-1243.38, -596.76], [-1242.93, -596.83], [-1242.26, -596.65], [-1241.18, -593.59], [-1238.63, -590.93], [-1236.48, -590.05], [-1234.73, -590.37], [-1233.93, -590.85], [-1222.99, -554.82], [-1232.14, -552.13], [-1244.45, -550.03], [-1256.47, -548.76], [-1268.24, -548.51], [-1278.78, -549.05], [-1286.91, -549.94], [-1293.75, -551.21]], "holes": []}}, {"shape": {"outer": [[-1212.47, -617.58], [-1216.38, -614.82], [-1221.58, -611.96], [-1228.93, -608.52], [-1210.06, -561.19], [-1204.15, -561.68], [-1203.23, -561.75], [-1201.78, -563.77], [-1202.53, -578.76], [-1201.99, -578.8], [-1203.39, -604.52], [-1206.3, -608.32], [-1212.47, -617.58]], "holes": []}}, {"shape": {"outer": [[-1342.5, -636.17], [-1341.46, -637.1], [-1335.94, -630.91], [-1325.74, -622.08], [-1314.92, -614.75], [-1302.13, -608.53], [-1293.96, -605.66], [-1307.79, -555.06], [-1309.31, -547.97], [-1311.49, -545.13], [-1312.77, -543.69], [-1314.59, -542.7], [-1316.73, -542.86], [-1316.96, -550.63], [-1314.61, -556.6], [-1312.12, -565.0], [-1312.99, -581.53], [-1313.63, -594.91], [-1313.85, -598.05], [-1315.37, -603.28], [-1316.35, -606.13], [-1317.59, -608.69], [-1318.89, -610.85], [-1320.49, -612.83], [-1324.36, -615.25], [-1328.87, -616.92], [-1332.89, -617.23], [-1334.86, -616.74], [-1335.69, -616.99], [-1336.35, -617.67], [-1336.52, -621.89], [-1336.71, -625.17], [-1352.17, -624.35], [-1353.91, -626.57], [-1342.5, -636.17]], "holes": []}}, {"shape": {"outer": [[-1371.78, -661.0], [-1347.17, -671.89], [-1344.93, -666.18], [-1354.23, -656.55], [-1365.5, -648.1], [-1371.78, -661.0]], "holes": []}}, {"shape": {"outer": [[-1593.03, -42.44], [-1591.85, -43.62], [-1590.8, -45.26], [-1589.94, -47.19], [-1588.43, -50.76], [-1587.45, -54.18], [-1586.9, -57.35], [-1586.68, -61.17], [-1587.14, -65.82], [-1588.79, -71.67], [-1591.0, -77.04], [-1595.64, -84.66], [-1597.13, -85.93], [-1598.87, -87.08], [-1600.73, -87.9], [-1605.7, -87.7], [-1652.03, -79.12], [-1652.97, -77.3], [-1653.37, -76.09], [-1653.48, -74.83], [-1653.22, -71.18], [-1648.11, -34.76], [-1647.4, -33.67], [-1646.56, -32.67], [-1645.64, -31.88], [-1644.68, -31.23], [-1598.23, -40.55], [-1594.72, -41.48], [-1593.03, -42.44]], "holes": []}}, {"shape": {"outer": [[-1801.4, -13.2], [-1802.37, -19.82], [-1801.35, -22.09], [-1800.77, -24.47], [-1800.62, -26.51], [-1801.2, -28.77], [-1802.12, -30.47], [-1803.51, -32.23], [-1804.92, -33.58], [-1806.08, -39.8], [-1797.81, -51.01], [-1774.46, -55.62], [-1773.13, -54.82], [-1771.84, -53.92], [-1771.03, -52.89], [-1770.54, -51.84], [-1770.13, -50.19], [-1763.84, -13.64], [-1763.72, -12.77], [-1763.71, -12.01], [-1763.87, -11.31], [-1764.38, -10.56], [-1764.95, -10.09], [-1765.57, -9.82], [-1767.18, -9.45], [-1788.81, -5.78], [-1801.4, -13.2]], "holes": []}}, {"shape": {"outer": [[-1658.69, -77.16], [-1699.79, -70.39], [-1702.56, -69.55], [-1704.59, -68.18], [-1705.21, -66.3], [-1698.66, -26.36], [-1697.6, -24.4], [-1696.08, -22.84], [-1659.87, -29.2], [-1653.4, -29.42], [-1652.01, -31.69], [-1651.45, -32.78], [-1651.32, -33.51], [-1651.26, -34.98], [-1651.39, -36.61], [-1656.81, -74.11], [-1657.53, -75.59], [-1658.18, -76.5], [-1658.69, -77.16]], "holes": []}}, {"shape": {"outer": [[-1757.24, -11.4], [-1758.25, -11.27], [-1759.05, -11.45], [-1759.76, -11.91], [-1760.23, -12.38], [-1760.57, -12.98], [-1760.83, -13.64], [-1767.7, -53.04], [-1767.83, -54.1], [-1767.88, -55.04], [-1767.74, -55.83], [-1767.52, -56.43], [-1767.13, -56.98], [-1712.06, -67.97], [-1710.66, -67.38], [-1709.48, -66.28], [-1708.74, -64.91], [-1702.53, -28.26], [-1702.22, -25.92], [-1702.62, -23.63], [-1703.69, -22.22], [-1705.33, -21.35], [-1757.24, -11.4]], "holes": []}}, {"shape": {"outer": [[-2119.96, -697.99], [-2040.98, -674.03], [-2041.07, -673.58], [-2034.96, -672.26], [-2018.53, -667.84], [-2014.45, -665.86], [-2009.52, -663.68], [-2008.27, -663.04], [-2027.32, -662.11], [-2026.5, -662.93], [-2026.46, -663.53], [-2027.09, -664.93], [-2027.67, -665.99], [-2028.5, -666.83], [-2030.24, -667.29], [-2033.58, -667.38], [-2036.9, -667.69], [-2039.36, -668.45], [-2041.85, -668.85], [-2044.4, -668.8], [-2046.12, -668.11], [-2046.73, -668.06], [-2049.14, -668.55], [-2051.72, -669.15], [-2056.84, -670.64], [-2063.39, -673.39], [-2069.77, -676.55], [-2073.65, -677.74], [-2076.97, -678.4], [-2079.79, -678.72], [-2082.59, -678.92], [-2084.36, -679.47], [-2086.56, -680.22], [-2088.98, -681.31], [-2091.09, -682.57], [-2093.23, -684.06], [-2095.7, -685.99], [-2098.77, -687.51], [-2101.56, -688.91], [-2104.76, -690.21], [-2107.73, -690.56], [-2110.64, -690.53], [-2113.09, -690.33], [-2114.77, -689.64], [-2117.2, -688.08], [-2118.93, -686.63], [-2119.71, -684.92], [-2119.96, -697.99]], "holes": []}}, {"shape": {"outer": [[-2139.69, -704.03], [-2139.37, -691.91], [-2140.23, -691.69], [-2142.49, -692.18], [-2142.41, -693.51], [-2143.65, -696.38], [-2146.22, -699.87], [-2149.05, -702.91], [-2151.47, -704.2], [-2153.97, -704.6], [-2157.27, -703.81], [-2160.66, -702.84], [-2165.96, -704.3], [-2170.43, -706.84], [-2173.0, -708.91], [-2177.28, -711.79], [-2179.55, -712.54], [-2182.55, -712.84], [-2185.55, -712.24], [-2189.04, -712.28], [-2193.5, -714.01], [-2197.92, -716.02], [-2203.75, -718.28], [-2206.04, -718.44], [-2208.16, -718.32], [-2210.24, -718.49], [-2214.62, -719.68], [-2223.96, -723.53], [-2225.07, -724.21], [-2226.56, -725.74], [-2228.28, -726.96], [-2230.41, -727.52], [-2232.03, -727.78], [-2234.42, -727.6], [-2236.53, -727.7], [-2238.86, -728.46], [-2240.81, -729.11], [-2242.57, -730.11], [-2243.93, -731.0], [-2245.54, -732.06], [-2247.25, -733.0], [-2249.43, -733.47], [-2251.28, -732.75], [-2252.92, -731.2], [-2253.35, -729.4], [-2255.13, -729.99], [-2255.25, -738.0], [-2252.77, -737.85], [-2250.42, -737.43], [-2247.52, -736.8], [-2244.39, -736.03], [-2241.34, -735.06], [-2139.69, -704.03]], "holes": []}}, {"shape": {"outer": [[-371.01, -1038.34], [-362.05, -1034.59], [-338.84, -996.98], [-330.99, -984.26], [-297.01, -926.04], [-289.08, -914.36], [-268.62, -883.58], [-251.24, -862.46], [-199.16, -801.93], [-166.88, -770.45], [-143.05, -744.15], [-127.96, -730.27], [-111.03, -717.44], [-95.03, -702.9], [-83.4, -689.9], [-68.75, -676.67], [-55.51, -661.43], [-50.67, -655.8], [-37.77, -643.1], [-28.55, -636.3], [-28.09, -633.7], [-18.61, -627.32], [-8.82, -620.56], [-1.2, -615.69], [5.8, -609.18], [15.85, -599.12], [27.68, -587.31], [30.86, -584.5], [34.9, -581.68], [39.48, -579.36], [43.93, -577.58], [48.95, -576.1], [56.39, -573.83], [64.59, -570.83], [67.49, -569.44], [71.0, -567.41], [77.44, -562.53], [91.18, -548.8], [110.83, -529.44], [116.54, -523.79], [123.94, -516.67], [156.12, -484.09], [162.91, -477.44], [166.43, -473.09], [172.94, -463.98], [180.75, -452.47], [192.26, -435.38], [205.52, -415.78], [212.6, -405.21], [216.66, -399.61], [222.49, -394.09], [224.09, -393.83], [232.11, -387.17], [237.41, -385.0], [248.04, -377.33], [263.26, -363.14], [265.57, -359.83], [268.7, -352.56], [273.78, -343.86], [299.06, -318.25], [307.86, -309.78], [308.54, -306.94], [307.73, -304.87], [313.44, -298.61], [316.65, -297.79], [325.81, -288.81], [327.7, -281.04], [334.08, -270.09], [335.92, -265.03], [338.41, -253.69], [345.13, -239.96], [350.02, -235.89], [354.5, -232.65], [361.24, -226.95], [363.33, -220.48], [363.29, -218.85], [369.25, -212.59], [374.36, -207.49], [378.49, -206.23], [386.46, -198.7], [393.9, -192.6], [398.27, -188.05], [398.7, -182.91], [402.31, -182.4], [407.89, -173.31], [415.92, -162.51], [420.91, -158.63], [424.96, -155.7], [426.06, -154.81], [427.3, -153.82], [433.08, -154.75], [434.82, -154.07], [454.94, -139.03], [456.86, -135.57], [460.22, -136.0], [463.65, -134.08], [472.85, -125.3], [476.67, -122.39], [483.15, -119.46], [488.14, -115.62], [491.91, -114.61], [495.97, -111.93], [503.52, -109.15], [509.59, -106.71], [510.89, -105.77], [512.0, -102.2], [515.32, -101.69], [515.95, -100.17], [517.47, -100.16], [519.77, -97.94], [521.09, -95.8], [520.2, -91.45], [521.64, -89.12], [526.4, -86.48], [513.55, -41.81], [509.24, -24.16], [508.65, -22.65], [506.68, -21.23], [504.38, -20.6], [502.88, -19.46], [502.02, -18.21], [499.92, -17.45], [496.65, -16.46], [493.99, -15.52], [493.06, -17.35], [492.51, -19.1], [491.98, -21.87], [488.59, -33.64], [487.95, -35.71], [482.42, -47.53], [476.64, -60.12], [470.29, -68.37], [463.22, -76.38], [450.43, -90.41], [427.05, -114.78], [410.34, -132.2], [403.46, -139.79], [381.81, -165.91], [374.82, -174.71], [325.26, -232.81], [299.17, -260.04], [283.31, -276.1], [271.63, -288.29], [248.14, -312.15], [215.18, -342.39], [191.18, -361.97], [181.72, -371.56], [-29.06, -582.3], [-52.64, -606.49], [-60.65, -615.0], [-75.7, -631.15], [-90.74, -646.68], [-120.38, -677.68], [-128.18, -685.85], [-134.82, -692.5], [-142.17, -698.63], [-154.23, -709.07], [-164.59, -718.05], [-190.5, -746.19], [-225.65, -787.93], [-237.37, -802.48], [-254.52, -825.63], [-275.01, -854.57], [-286.99, -874.58], [-320.22, -928.78], [-350.17, -984.5], [-372.43, -1031.07], [-371.01, -1038.34]], "holes": []}}, {"shape": {"outer": [[-1730.83, 115.25], [-1729.97, 114.31], [-1728.86, 113.69], [-1727.61, 113.44], [-1726.23, 113.62], [-1724.99, 114.26], [-1724.04, 115.27], [-1723.49, 116.55], [-1723.4, 117.94], [-1723.8, 119.27], [-1724.61, 120.4], [-1725.76, 121.17], [-1727.11, 121.52], [-1728.5, 121.4], [-1729.66, 120.87], [-1730.61, 120.02], [-1731.24, 118.92], [-1731.5, 117.67], [-1731.36, 116.41], [-1730.83, 115.25]], "holes": []}}, {"shape": {"outer": [[-220.53, 153.75], [-224.93, 158.54], [-220.16, 162.88], [-220.53, 153.75]], "holes": []}}, {"shape": {"outer": [[-1803.96, -232.84], [-1803.73, -232.48], [-1803.33, -231.95], [-1802.67, -231.38], [-1802.54, -230.68], [-1802.62, -229.67], [-1802.91, -229.22], [-1803.69, -228.5], [-1804.21, -227.85], [-1804.8, -226.82], [-1804.93, -226.12], [-1805.02, -224.75], [-1805.03, -223.04], [-1804.76, -222.19], [-1804.41, -221.43], [-1803.56, -220.43], [-1802.64, -219.67], [-1801.59, -218.79], [-1800.52, -218.6], [-1799.43, -192.9], [-1804.5, -192.63], [-1824.72, -193.81], [-1828.26, -194.09], [-1837.88, -194.88], [-1841.55, -194.9], [-1844.83, -194.52], [-1849.48, -193.27], [-1854.22, -191.54], [-1860.5, -188.01], [-1875.32, -176.98], [-1882.13, -171.8], [-1888.66, -166.9], [-1896.3, -159.58], [-1896.44, -169.72], [-1897.84, -172.76], [-1899.98, -227.23], [-1899.65, -228.38], [-1898.65, -228.89], [-1803.97, -233.27], [-1803.96, -232.84]], "holes": []}}, {"shape": {"outer": [[-1440.13, 42.46], [-1437.9, 43.05], [-1437.43, 52.54], [-1437.4, 54.43], [-1437.25, 55.96], [-1436.54, 64.29], [-1436.68, 65.07], [-1436.86, 66.03], [-1436.66, 69.47], [-1436.66, 70.43], [-1436.57, 71.52], [-1436.36, 74.55], [-1436.15, 76.45], [-1436.05, 78.21], [-1435.34, 88.79], [-1435.27, 91.68], [-1435.23, 94.09], [-1435.33, 98.51], [-1435.14, 99.74], [-1434.88, 101.17], [-1434.61, 106.09], [-1434.43, 108.05], [-1434.25, 112.25], [-1434.21, 114.43], [-1434.23, 114.76], [-1434.27, 115.14], [-1433.99, 125.47], [-1434.09, 126.35], [-1434.22, 127.66], [-1434.36, 128.08], [-1434.37, 128.48], [-1434.35, 128.92], [-1434.27, 129.34], [-1434.04, 129.8], [-1433.66, 130.23], [-1433.72, 133.96], [-1433.51, 135.97], [-1433.44, 137.3], [-1433.17, 142.44], [-1430.85, 142.85], [-1428.54, 143.23], [-1425.02, 143.42], [-1421.75, 143.49], [-1419.88, 143.42], [-1418.27, 143.45], [-1413.43, 142.67], [-1409.27, 141.54], [-1405.75, 140.28], [-1401.0, 138.65], [-1397.47, 137.82], [-1394.67, 137.37], [-1390.2, 137.2], [-1385.46, 137.04], [-1383.57, 137.01], [-1381.7, 137.11], [-1379.31, 137.48], [-1376.89, 137.94], [-1371.32, 139.06], [-1365.51, 139.82], [-1363.36, 139.94], [-1360.31, 139.91], [-1351.08, 139.74], [-1351.32, 133.51], [-1353.59, 133.34], [-1355.57, 133.06], [-1358.21, 132.48], [-1360.78, 131.75], [-1362.61, 131.09], [-1361.66, 130.4], [-1360.69, 129.53], [-1359.81, 128.48], [-1358.97, 127.3], [-1358.76, 125.0], [-1358.88, 122.42], [-1359.62, 118.23], [-1361.08, 114.77], [-1361.84, 113.47], [-1363.06, 111.33], [-1362.94, 108.23], [-1361.76, 107.68], [-1360.51, 107.31], [-1356.5, 103.69], [-1351.08, 98.55], [-1351.7, 96.92], [-1352.05, 95.21], [-1352.11, 93.68], [-1351.96, 92.33], [-1358.13, 92.65], [-1358.1, 97.35], [-1363.45, 97.55], [-1362.33, 98.98], [-1361.95, 100.2], [-1362.3, 101.15], [-1362.54, 102.03], [-1363.2, 102.77], [-1364.22, 103.26], [-1365.38, 103.55], [-1366.64, 103.23], [-1367.7, 102.56], [-1368.32, 101.73], [-1368.91, 101.75], [-1369.04, 102.34], [-1369.45, 102.8], [-1370.13, 103.02], [-1370.84, 102.88], [-1371.34, 102.46], [-1371.6, 101.91], [-1377.51, 102.23], [-1377.7, 102.83], [-1378.16, 103.25], [-1378.76, 103.42], [-1379.48, 103.26], [-1379.9, 102.91], [-1380.08, 102.38], [-1386.36, 102.73], [-1386.49, 103.3], [-1386.92, 103.75], [-1387.58, 103.97], [-1388.24, 103.8], [-1388.68, 103.42], [-1388.96, 102.87], [-1389.61, 102.91], [-1389.99, 103.8], [-1391.03, 104.62], [-1392.33, 104.91], [-1393.61, 104.74], [-1395.08, 103.86], [-1395.77, 102.9], [-1395.99, 101.33], [-1395.34, 99.69], [-1394.04, 98.72], [-1394.69, 86.29], [-1398.37, 86.32], [-1399.13, 86.32], [-1399.27, 86.71], [-1399.86, 87.38], [-1400.66, 87.8], [-1401.54, 87.77], [-1402.52, 87.33], [-1402.97, 86.9], [-1403.27, 86.0], [-1403.35, 85.11], [-1402.86, 84.27], [-1402.33, 83.74], [-1402.02, 83.43], [-1402.32, 75.9], [-1402.76, 75.65], [-1403.34, 75.15], [-1403.75, 74.31], [-1403.85, 73.43], [-1403.73, 72.68], [-1403.03, 71.86], [-1402.23, 71.51], [-1401.17, 71.54], [-1400.4, 71.94], [-1399.95, 72.7], [-1395.36, 72.49], [-1395.47, 69.87], [-1396.2, 52.98], [-1396.62, 52.71], [-1397.68, 51.79], [-1398.26, 50.67], [-1398.53, 49.44], [-1398.47, 48.14], [-1397.91, 46.97], [-1397.15, 45.97], [-1396.03, 45.04], [-1394.68, 44.78], [-1392.04, 44.53], [-1394.03, 43.85], [-1395.75, 42.96], [-1397.06, 42.02], [-1398.3, 40.91], [-1399.54, 39.45], [-1400.53, 37.94], [-1401.19, 36.24], [-1402.29, 31.93], [-1406.48, 31.99], [-1409.41, 32.08], [-1408.03, 62.88], [-1407.7, 71.3], [-1407.51, 75.6], [-1416.16, 76.03], [-1416.41, 70.71], [-1414.7, 70.7], [-1415.07, 61.12], [-1415.38, 54.3], [-1416.12, 37.65], [-1416.23, 35.71], [-1416.38, 32.53], [-1423.52, 32.89], [-1423.56, 31.86], [-1428.42, 32.11], [-1440.33, 32.78], [-1440.13, 42.46]], "holes": []}}, {"shape": {"outer": [[2203.03, 1756.73], [2194.77, 1748.5], [2185.72, 1739.47], [2187.61, 1736.8], [2191.17, 1734.86], [2204.53, 1755.49], [2203.03, 1756.73]], "holes": []}}, {"shape": {"outer": [[2171.42, 1728.22], [2183.22, 1739.54], [2186.05, 1735.44], [2190.03, 1733.15], [2187.08, 1729.64], [2181.65, 1726.52], [2174.18, 1725.32], [2171.47, 1725.83], [2171.42, 1728.22]], "holes": []}}, {"shape": {"outer": [[2468.9, 1977.32], [2550.61, 1974.97], [2554.79, 2029.72], [2504.53, 2034.8], [2468.9, 1977.32]], "holes": []}}, {"shape": {"outer": [[-2573.64, -1352.74], [-2563.76, -1353.13], [-2563.76, -1344.13], [-2573.64, -1352.74]], "holes": []}}, {"shape": {"outer": [[1415.59, 1053.78], [1424.14, 1044.14], [1416.71, 1034.0], [1410.74, 1024.12], [1403.16, 1011.25], [1393.83, 994.66], [1390.27, 988.71], [1388.35, 985.51], [1386.94, 983.25], [1387.59, 985.32], [1388.58, 987.86], [1399.37, 1012.37], [1402.16, 1018.13], [1404.4, 1023.99], [1408.05, 1033.02], [1412.33, 1045.01], [1415.59, 1053.78]], "holes": []}}, {"shape": {"outer": [[-238.15, -1952.21], [-246.57, -1945.51], [-253.95, -1936.73], [-269.76, -1914.83], [-300.43, -1864.84], [-358.22, -1777.8], [-359.73, -1776.01], [-364.19, -1774.52], [-366.92, -1774.24], [-369.34, -1775.93], [-371.23, -1777.24], [-353.76, -1806.77], [-257.46, -1956.14], [-224.6, -2008.09], [-168.08, -2091.59], [-114.21, -2172.08], [-92.72, -2204.7], [-89.08, -2210.6], [-88.04, -2211.7], [-85.26, -2214.15], [-82.92, -2215.28], [-62.43, -2246.75], [-49.56, -2266.17], [-33.74, -2290.53], [-27.3, -2302.31], [-23.61, -2310.47], [-20.01, -2317.2], [-14.07, -2325.89], [10.94, -2361.28], [40.12, -2400.09], [49.68, -2412.32], [51.72, -2414.93], [60.48, -2426.14], [62.26, -2428.41], [63.97, -2430.6], [85.36, -2459.5], [111.12, -2493.61], [122.31, -2509.9], [133.78, -2528.46], [141.92, -2542.78], [148.82, -2554.92], [160.2, -2576.68], [167.24, -2592.61], [173.06, -2605.09], [180.47, -2624.48], [188.73, -2647.56], [198.64, -2679.21], [200.6, -2685.3], [203.19, -2690.34], [206.43, -2697.66], [208.99, -2703.64], [213.19, -2719.27], [216.29, -2731.19], [216.64, -2735.59], [217.36, -2743.54], [218.2, -2747.82], [219.75, -2751.54], [221.22, -2754.06], [224.71, -2756.83], [225.93, -2757.36], [233.75, -2779.14], [266.45, -2814.66], [338.34, -2885.9], [345.13, -2665.02], [521.87, -2666.21], [528.78, -2441.84], [521.05, -2434.52], [453.17, -2366.29], [395.21, -2340.88], [378.71, -2335.93], [367.41, -2334.44], [363.09, -2334.91], [357.52, -2338.06], [352.07, -2337.13], [345.68, -2334.8], [334.67, -2329.81], [334.72, -2327.86], [334.01, -2325.3], [332.1, -2323.69], [323.57, -2320.92], [312.72, -2316.91], [312.36, -2316.69], [288.6, -2302.5], [278.66, -2294.68], [273.05, -2290.26], [264.21, -2283.31], [256.39, -2275.9], [241.69, -2261.96], [231.94, -2267.38], [224.56, -2275.67], [208.63, -2291.55], [192.01, -2306.14], [183.17, -2310.02], [177.79, -2312.38], [172.49, -2315.88], [165.67, -2306.61], [158.46, -2295.36], [155.89, -2295.04], [155.77, -2297.82], [154.27, -2300.5], [152.79, -2302.58], [150.85, -2303.95], [148.57, -2304.72], [146.3, -2305.01], [143.7, -2304.46], [141.72, -2303.46], [139.62, -2301.62], [138.38, -2299.57], [137.87, -2296.6], [137.69, -2290.33], [137.77, -2287.36], [137.15, -2284.15], [135.23, -2280.67], [131.03, -2273.8], [124.62, -2265.34], [114.34, -2250.72], [110.99, -2247.42], [104.95, -2242.64], [98.17, -2238.9], [88.66, -2234.95], [78.74, -2232.78], [53.79, -2233.14], [32.37, -2234.31], [22.45, -2236.63], [7.94, -2245.46], [26.14, -2225.0], [22.82, -2217.89], [3.86, -2217.35], [5.02, -2191.43], [9.4, -2094.75], [10.28, -2075.26], [41.54, -2029.08], [32.01, -2016.26], [24.96, -2006.33], [6.33, -1991.69], [-14.75, -1976.97], [-47.0, -1960.47], [-67.02, -1959.91], [-86.2, -1964.72], [-106.41, -1970.96], [-131.09, -1979.99], [-145.38, -1979.59], [-155.98, -1979.29], [-184.74, -1977.01], [-201.59, -1972.77], [-214.77, -1967.88], [-226.69, -1960.17], [-238.15, -1952.21]], "holes": []}}, {"shape": {"outer": [[-365.67, -157.52], [-380.18, -141.65], [-381.9, -139.93], [-383.23, -138.09], [-383.75, -136.52], [-384.07, -134.1], [-384.03, -130.94], [-383.62, -128.32], [-382.75, -126.5], [-381.35, -124.64], [-378.17, -121.42], [-309.75, -58.92], [-295.37, -46.21], [-224.82, 18.06], [-223.21, 19.33], [-221.96, 19.8], [-219.52, 20.56], [-216.35, 20.63], [-212.72, 19.67], [-210.24, 18.43], [-208.59, 16.96], [-207.1, 15.42], [-144.78, -52.96], [-144.15, -53.65], [-131.98, -67.1], [-131.1, -68.07], [-123.6, -76.37], [-65.94, -139.3], [-64.8, -140.8], [-63.79, -142.69], [-63.27, -145.48], [-63.5, -148.91], [-63.81, -150.55], [-64.18, -151.8], [-65.16, -153.55], [-67.62, -156.06], [-133.12, -215.33], [-137.53, -219.17], [-138.08, -219.67], [-152.43, -232.92], [-203.65, -278.3], [-213.78, -286.93], [-223.46, -295.86], [-225.86, -297.65], [-227.98, -298.28], [-230.07, -298.7], [-232.4, -298.67], [-234.4, -298.54], [-236.73, -297.65], [-239.49, -296.13], [-242.05, -293.91], [-245.4, -290.16], [-303.87, -224.99], [-305.31, -223.4], [-315.83, -211.82], [-317.69, -209.77], [-321.34, -205.75], [-365.67, -157.52]], "holes": []}}, {"shape": {"outer": [[-284.78, -161.27], [-283.99, -161.71], [-283.39, -162.41], [-283.06, -163.26], [-283.03, -164.17], [-283.32, -165.04], [-283.88, -165.76], [-284.66, -166.25], [-285.56, -166.45], [-286.39, -166.36], [-287.14, -166.01], [-287.76, -165.46], [-288.18, -164.74], [-288.35, -163.93], [-288.27, -163.1], [-287.94, -162.34], [-287.39, -161.73], [-286.59, -161.27], [-285.69, -161.11], [-284.78, -161.27]], "holes": []}}, {"shape": {"outer": [[-253.68, -195.6], [-252.9, -196.04], [-252.3, -196.72], [-251.99, -197.57], [-251.96, -198.47], [-252.25, -199.33], [-252.8, -200.03], [-253.56, -200.52], [-254.44, -200.73], [-255.27, -200.64], [-256.04, -200.31], [-256.66, -199.75], [-257.08, -199.03], [-257.25, -198.22], [-257.16, -197.39], [-256.81, -196.63], [-256.25, -196.01], [-255.46, -195.58], [-254.56, -195.43], [-253.68, -195.6]], "holes": []}}, {"shape": {"outer": [[-201.0, -197.89], [-200.15, -197.73], [-199.29, -197.85], [-198.51, -198.22], [-197.89, -198.83], [-197.49, -199.59], [-197.35, -200.45], [-197.49, -201.31], [-197.9, -202.07], [-198.52, -202.67], [-199.37, -203.06], [-200.31, -203.15], [-201.23, -202.9], [-201.99, -202.36], [-202.53, -201.58], [-202.78, -200.68], [-202.7, -199.75], [-202.35, -198.96], [-201.76, -198.32], [-201.0, -197.89]], "holes": []}}, {"shape": {"outer": [[-165.07, -167.66], [-164.17, -167.8], [-163.36, -168.22], [-162.75, -168.89], [-162.38, -169.73], [-162.32, -170.63], [-162.56, -171.51], [-163.08, -172.25], [-163.78, -172.77], [-164.61, -173.03], [-165.48, -173.03], [-166.3, -172.74], [-166.99, -172.21], [-167.48, -171.49], [-167.71, -170.65], [-167.66, -169.79], [-167.34, -168.97], [-166.75, -168.29], [-165.96, -167.84], [-165.07, -167.66]], "holes": []}}, {"shape": {"outer": [[-162.71, -112.72], [-161.8, -112.76], [-160.95, -113.09], [-160.26, -113.68], [-159.79, -114.46], [-159.6, -115.36], [-159.72, -116.26], [-160.13, -117.07], [-160.77, -117.71], [-161.6, -118.11], [-162.5, -118.22], [-163.4, -118.04], [-164.17, -117.57], [-164.76, -116.88], [-165.09, -116.02], [-165.13, -115.11], [-164.87, -114.24], [-164.33, -113.51], [-163.59, -112.98], [-162.71, -112.72]], "holes": []}}, {"shape": {"outer": [[-194.31, -77.99], [-193.45, -78.13], [-192.67, -78.52], [-192.05, -79.14], [-191.68, -79.92], [-191.56, -80.79], [-191.73, -81.64], [-192.16, -82.41], [-192.8, -82.99], [-193.66, -83.36], [-194.58, -83.41], [-195.48, -83.15], [-196.23, -82.62], [-196.76, -81.86], [-196.99, -80.96], [-196.93, -80.04], [-196.55, -79.19], [-195.95, -78.56], [-195.18, -78.14], [-194.31, -77.99]], "holes": []}}, {"shape": {"outer": [[-250.52, -76.1], [-249.74, -75.8], [-248.91, -75.76], [-248.11, -75.98], [-247.42, -76.46], [-246.92, -77.13], [-246.66, -77.91], [-246.68, -78.75], [-246.95, -79.53], [-247.48, -80.2], [-248.21, -80.66], [-249.05, -80.86], [-249.9, -80.77], [-250.68, -80.39], [-251.29, -79.79], [-251.67, -79.02], [-251.77, -78.17], [-251.59, -77.36], [-251.16, -76.64], [-250.52, -76.1]], "holes": []}}, {"shape": {"outer": [[-282.64, -106.37], [-281.86, -106.81], [-281.24, -107.47], [-280.87, -108.28], [-280.77, -109.18], [-280.96, -110.06], [-281.42, -110.84], [-282.09, -111.43], [-282.92, -111.78], [-283.9, -111.85], [-284.85, -111.59], [-285.64, -111.02], [-286.2, -110.21], [-286.45, -109.26], [-286.36, -108.28], [-285.94, -107.4], [-285.24, -106.72], [-284.43, -106.32], [-283.53, -106.21], [-282.64, -106.37]], "holes": []}}, {"shape": {"outer": [[-266.34, -47.22], [-265.59, -48.41], [-265.25, -49.78], [-265.38, -51.18], [-265.96, -52.47], [-266.92, -53.5], [-268.17, -54.16], [-269.56, -54.39], [-270.97, -54.15], [-272.23, -53.47], [-273.19, -52.42], [-273.75, -51.11], [-273.85, -49.69], [-273.49, -48.32], [-272.69, -47.13], [-271.55, -46.27], [-270.19, -45.83], [-268.78, -45.86], [-267.45, -46.33], [-266.34, -47.22]], "holes": []}}, {"shape": {"outer": [[-1117.49, 149.86], [-1111.63, 149.44], [-1109.96, 187.45], [-1110.86, 187.25], [-1119.0, 179.59], [-1120.62, 178.15], [-1125.36, 175.87], [-1129.81, 172.15], [-1132.22, 172.15], [-1132.62, 157.0], [-1125.96, 156.71], [-1125.18, 157.23], [-1119.39, 157.16], [-1118.34, 157.01], [-1117.45, 156.24], [-1117.27, 154.82], [-1117.49, 149.86]], "holes": []}}, {"shape": {"outer": [[-313.54, -130.17], [-312.68, -128.22], [-310.37, -126.94], [-307.54, -127.08], [-306.63, -125.68], [-305.6, -124.32], [-303.99, -122.76], [-302.19, -121.63], [-301.98, -112.56], [-298.84, -112.66], [-298.69, -109.29], [-281.69, -94.19], [-283.02, -92.73], [-280.25, -90.56], [-289.11, -80.72], [-290.24, -81.3], [-291.79, -81.48], [-293.16, -80.92], [-294.06, -79.81], [-294.38, -78.55], [-294.09, -77.33], [-293.06, -76.31], [-301.76, -66.23], [-304.35, -68.78], [-305.73, -67.21], [-367.52, -123.59], [-363.91, -126.67], [-363.98, -128.07], [-354.33, -128.43], [-354.23, -127.09], [-349.9, -127.23], [-349.86, -128.38], [-339.87, -128.89], [-339.55, -127.6], [-338.68, -126.25], [-337.45, -125.58], [-336.15, -125.62], [-334.9, -126.15], [-334.05, -127.13], [-333.87, -128.33], [-333.01, -128.37], [-333.0, -129.29], [-323.53, -129.69], [-323.5, -128.82], [-319.37, -128.98], [-319.39, -129.88], [-313.54, -130.17]], "holes": []}}, {"shape": {"outer": [[-303.29, -159.24], [-299.97, -159.33], [-300.14, -162.83], [-284.87, -178.8], [-286.7, -180.33], [-284.51, -182.65], [-293.85, -191.24], [-295.02, -190.61], [-296.28, -190.37], [-297.01, -190.45], [-297.29, -190.57], [-297.95, -190.84], [-298.83, -191.69], [-299.05, -192.34], [-299.1, -193.21], [-298.91, -194.51], [-298.5, -195.52], [-308.36, -204.31], [-310.78, -201.67], [-312.1, -202.8], [-357.3, -153.62], [-359.73, -150.84], [-367.97, -141.95], [-364.78, -139.06], [-364.6, -137.75], [-354.53, -138.2], [-354.5, -139.12], [-350.39, -139.31], [-350.36, -138.35], [-340.43, -138.81], [-340.37, -139.96], [-340.07, -140.83], [-339.52, -141.57], [-338.67, -142.18], [-337.69, -142.45], [-336.41, -142.26], [-335.64, -141.82], [-334.95, -141.12], [-334.44, -140.04], [-334.32, -139.02], [-323.75, -139.5], [-323.77, -140.62], [-319.34, -140.8], [-319.27, -139.67], [-313.97, -139.91], [-313.99, -142.71], [-313.43, -143.91], [-312.91, -144.4], [-312.06, -144.74], [-311.27, -144.76], [-309.61, -144.81], [-308.4, -144.52], [-308.16, -144.44], [-307.71, -145.28], [-307.14, -146.19], [-306.24, -147.33], [-305.47, -148.19], [-304.38, -149.13], [-303.06, -149.82], [-303.29, -159.24]], "holes": []}}, {"shape": {"outer": [[-268.67, -176.31], [-260.35, -168.6], [-261.99, -166.99], [-260.56, -165.62], [-263.44, -165.0], [-265.57, -165.14], [-267.59, -165.94], [-269.34, -167.34], [-270.04, -168.31], [-270.68, -169.75], [-271.0, -171.6], [-270.84, -173.06], [-270.15, -174.59], [-268.67, -176.31]], "holes": []}}, {"shape": {"outer": [[-258.88, -107.52], [-266.68, -99.25], [-268.19, -100.56], [-268.6, -101.49], [-268.98, -103.38], [-268.97, -104.9], [-268.52, -106.33], [-267.74, -107.6], [-265.77, -109.51], [-264.09, -110.05], [-262.56, -110.09], [-260.86, -109.81], [-259.75, -109.14], [-260.17, -108.64], [-258.88, -107.52]], "holes": []}}, {"shape": {"outer": [[-238.4, -278.35], [-237.85, -255.14], [-239.46, -253.44], [-240.13, -252.74], [-240.44, -251.12], [-240.12, -249.52], [-239.36, -248.29], [-238.39, -247.56], [-237.16, -246.64], [-236.26, -227.57], [-237.41, -226.9], [-238.63, -225.71], [-239.23, -224.35], [-239.37, -223.09], [-238.9, -221.87], [-238.42, -220.65], [-241.04, -218.55], [-241.83, -217.73], [-242.69, -216.54], [-251.77, -216.0], [-251.68, -212.78], [-255.01, -212.77], [-270.01, -196.3], [-271.39, -197.25], [-273.67, -195.03], [-282.92, -203.91], [-282.34, -205.15], [-282.26, -206.03], [-282.28, -206.79], [-282.63, -207.54], [-283.25, -208.28], [-284.03, -208.59], [-284.96, -208.83], [-285.72, -208.81], [-286.6, -208.63], [-287.67, -208.06], [-297.15, -216.82], [-294.92, -219.28], [-296.49, -220.65], [-288.23, -229.76], [-287.45, -229.12], [-285.06, -231.75], [-285.74, -232.44], [-269.9, -249.77], [-269.34, -249.29], [-266.89, -251.82], [-267.48, -252.39], [-242.25, -280.27], [-239.15, -277.51], [-238.4, -278.35]], "holes": []}}, {"shape": {"outer": [[66.22, -507.02], [61.41, -504.17], [66.14, -499.64], [67.11, -501.66], [67.07, -503.14], [66.55, -505.78], [66.22, -507.02]], "holes": []}}, {"shape": {"outer": [[62.06, -553.79], [58.76, -553.09], [56.41, -551.9], [53.55, -549.58], [51.91, -546.55], [51.0, -543.62], [54.32, -543.45], [56.24, -543.83], [59.05, -545.3], [61.1, -547.74], [61.77, -549.75], [62.12, -551.53], [62.06, -553.79]], "holes": []}}, {"shape": {"outer": [[155.17, -454.14], [153.16, -452.6], [151.95, -450.93], [150.96, -449.13], [150.49, -447.2], [150.46, -445.51], [150.67, -443.99], [153.09, -444.98], [154.81, -445.71], [156.23, -446.75], [155.46, -448.09], [155.21, -449.78], [155.49, -451.26], [155.98, -452.49], [156.68, -453.55], [157.91, -453.99], [159.24, -454.06], [160.37, -453.81], [160.7, -455.22], [158.28, -455.24], [156.44, -454.82], [155.17, -454.14]], "holes": []}}, {"shape": {"outer": [[33.81, -453.8], [-0.39, -417.97], [-10.48, -407.12], [-8.46, -405.38], [-4.68, -402.01], [15.56, -384.37], [17.13, -383.04], [21.25, -379.39], [42.88, -403.35], [47.85, -408.74], [62.85, -424.75], [60.17, -427.44], [59.4, -428.15], [33.81, -453.8]], "holes": []}}, {"shape": {"outer": [[-3170.5, -921.42], [-3171.8, -920.71], [-3175.4, -916.08], [-3178.68, -912.19], [-3179.13, -910.85], [-3178.43, -909.14], [-3177.16, -908.36], [-3175.5, -908.15], [-3166.15, -908.58], [-3162.94, -909.18], [-3159.42, -910.68], [-3157.46, -911.65], [-3157.15, -912.31], [-3157.34, -913.38], [-3158.53, -914.17], [-3162.91, -916.94], [-3164.61, -918.37], [-3167.16, -920.69], [-3168.09, -921.32], [-3168.85, -921.54], [-3169.68, -921.69], [-3170.5, -921.42]], "holes": []}}, {"shape": {"outer": [[-2396.4, 293.67], [-2409.31, 294.03], [-2409.65, 281.59], [-2396.4, 293.67]], "holes": []}}, {"shape": {"outer": [[-2476.35, 294.73], [-2488.34, 280.54], [-2476.66, 280.29], [-2476.35, 294.73]], "holes": []}}, {"shape": {"outer": [[-2383.26, 293.47], [-2390.63, 293.64], [-2390.98, 279.64], [-2383.61, 279.46], [-2383.26, 293.47]], "holes": []}}, {"shape": {"outer": [[1810.14, 2229.21], [1810.04, 2216.59], [1809.78, 2207.34], [1808.16, 2194.63], [1807.18, 2186.66], [1807.6, 2183.52], [1808.19, 2182.13], [1809.91, 2180.96], [1811.66, 2180.91], [1818.11, 2182.59], [1819.89, 2183.42], [1826.17, 2187.75], [1836.47, 2197.34], [1853.06, 2211.74], [1861.81, 2219.38], [1872.61, 2228.57], [1877.38, 2232.94], [1875.61, 2232.74], [1870.43, 2231.26], [1864.39, 2230.93], [1859.02, 2231.46], [1847.03, 2233.67], [1835.18, 2236.38], [1827.17, 2237.1], [1821.4, 2236.9], [1815.59, 2235.56], [1811.79, 2234.41], [1810.24, 2232.71], [1810.19, 2231.09], [1810.14, 2229.21]], "holes": []}}, {"shape": {"outer": [[-1654.67, -635.51], [-1655.98, -679.58], [-1648.57, -679.97], [-1625.77, -637.46], [-1654.67, -635.51]], "holes": []}}, {"shape": {"outer": [[-2488.01, -361.41], [-2454.5, -362.73], [-2457.43, -436.22], [-2490.93, -434.89], [-2488.01, -361.41]], "holes": []}}, {"shape": {"outer": [[198.07, -3120.13], [200.51, -3126.83], [205.11, -3134.26], [210.44, -3139.09], [219.38, -3143.7], [225.01, -3149.32], [232.17, -3163.03], [234.06, -3123.54], [307.55, -3126.16], [311.76, -3124.33], [313.06, -3120.87], [313.04, -3117.61], [306.79, -3110.57], [290.01, -3093.31], [283.43, -3090.3], [277.72, -3090.69], [270.78, -3093.1], [263.99, -3097.04], [256.58, -3099.99], [244.5, -3102.27], [203.0, -3108.39], [199.21, -3110.68], [197.61, -3113.58], [197.51, -3117.05], [198.07, -3120.13]], "holes": []}}, {"shape": {"outer": [[197.51, -3139.93], [200.58, -3143.51], [205.39, -3147.45], [213.87, -3153.03], [216.42, -3155.55], [218.32, -3158.58], [219.46, -3161.97], [219.78, -3165.53], [219.27, -3169.07], [217.95, -3172.4], [215.9, -3175.33], [213.22, -3177.7], [210.06, -3179.4], [206.22, -3180.37], [202.27, -3180.33], [198.46, -3179.29], [195.03, -3177.33], [192.23, -3174.54], [190.22, -3171.15], [189.15, -3167.37], [189.07, -3163.42], [190.01, -3159.6], [194.64, -3148.67], [196.22, -3143.16], [197.51, -3139.93]], "holes": []}}, {"shape": {"outer": [[304.61, -3091.11], [325.7, -3112.68], [338.53, -3136.24], [347.31, -3152.45], [349.96, -3157.32], [351.59, -3161.72], [354.03, -3168.17], [354.92, -3171.41], [359.05, -3172.13], [357.27, -3183.08], [354.12, -3197.75], [347.41, -3218.52], [342.35, -3231.18], [328.56, -3260.52], [319.23, -3281.18], [315.43, -3291.96], [313.45, -3311.62], [313.4, -3332.43], [279.59, -3360.55], [267.37, -3371.42], [267.79, -3383.43], [270.79, -3385.79], [316.63, -3388.4], [334.78, -3392.07], [344.6, -3396.5], [351.75, -3399.09], [359.1, -3398.1], [363.24, -3394.51], [372.3, -3380.06], [378.98, -3371.86], [397.58, -3351.92], [406.81, -3346.3], [435.47, -3314.64], [456.5, -3290.4], [460.25, -3281.47], [460.9, -3273.97], [459.6, -3265.87], [456.83, -3259.48], [450.25, -3252.21], [407.12, -3207.85], [385.48, -3180.65], [360.09, -3147.15], [335.23, -3110.07], [324.48, -3091.9], [317.59, -3080.59], [315.38, -3077.59], [310.92, -3076.7], [306.3, -3077.66], [303.84, -3079.66], [302.64, -3083.22], [302.46, -3085.94], [302.94, -3088.46], [304.61, -3091.11]], "holes": []}}, {"shape": {"outer": [[269.52, -3087.07], [286.4, -3079.71], [284.19, -3072.73], [283.25, -3073.14], [276.65, -3080.52], [271.9, -3084.31], [268.44, -3086.5], [268.48, -3087.16], [269.52, -3087.07]], "holes": []}}, {"shape": {"outer": [[299.45, -3068.64], [301.51, -3069.58], [303.57, -3069.73], [306.25, -3069.81], [309.15, -3069.68], [311.34, -3069.69], [312.81, -3069.84], [308.13, -3061.43], [297.12, -3042.7], [296.58, -3042.47], [295.92, -3043.0], [295.82, -3044.3], [294.16, -3060.64], [294.63, -3063.33], [295.61, -3065.43], [297.25, -3067.27], [299.45, -3068.64]], "holes": []}}, {"shape": {"outer": [[-220.47, -281.63], [-223.83, -277.57], [-222.61, -256.55], [-221.41, -255.79], [-220.01, -254.14], [-219.42, -251.9], [-219.6, -249.77], [-220.68, -248.4], [-222.08, -247.63], [-220.96, -228.17], [-218.52, -227.28], [-216.88, -225.27], [-216.68, -222.89], [-217.22, -221.07], [-215.33, -219.34], [-213.73, -217.48], [-205.43, -217.74], [-198.65, -213.02], [-197.05, -214.74], [-183.42, -202.32], [-180.75, -199.84], [-172.5, -208.99], [-173.28, -211.32], [-172.57, -213.36], [-170.62, -214.6], [-167.8, -214.04], [-159.4, -223.32], [-162.08, -225.74], [-160.78, -227.21], [-220.47, -281.63]], "holes": []}}, {"shape": {"outer": [[-169.2, -187.63], [-159.23, -198.17], [-156.55, -197.62], [-154.59, -198.88], [-153.64, -201.1], [-154.77, -203.24], [-148.79, -209.69], [-146.75, -212.27], [-144.2, -210.06], [-142.39, -211.92], [-138.93, -208.96], [-83.35, -156.81], [-86.19, -153.64], [-106.57, -153.33], [-109.12, -155.61], [-112.21, -156.48], [-114.55, -155.07], [-116.83, -152.68], [-134.94, -151.65], [-140.29, -155.78], [-144.36, -159.1], [-148.11, -157.06], [-147.69, -166.34], [-151.39, -166.22], [-151.45, -169.56], [-168.38, -184.57], [-167.15, -186.14], [-169.2, -187.63]], "holes": []}}, {"shape": {"outer": [[-164.58, -95.5], [-154.66, -86.6], [-153.93, -87.43], [-152.5, -87.9], [-151.55, -87.84], [-150.21, -87.18], [-149.13, -85.76], [-149.34, -84.44], [-150.52, -83.1], [-140.24, -73.77], [-137.99, -76.22], [-136.69, -75.03], [-129.77, -82.58], [-131.3, -83.97], [-127.81, -87.78], [-126.77, -86.85], [-111.0, -104.06], [-111.98, -104.95], [-108.51, -108.73], [-107.5, -107.81], [-91.74, -124.96], [-92.44, -125.6], [-89.58, -128.69], [-88.91, -128.07], [-82.27, -135.3], [-85.6, -138.33], [-106.64, -137.43], [-107.53, -135.93], [-109.23, -135.07], [-111.02, -134.18], [-113.29, -134.29], [-115.16, -135.18], [-116.36, -136.89], [-134.95, -135.94], [-136.56, -133.47], [-143.58, -131.98], [-145.61, -128.62], [-145.23, -119.84], [-148.87, -119.68], [-148.71, -116.03], [-163.59, -99.56], [-162.11, -98.23], [-164.58, -95.5]], "holes": []}}, {"shape": {"outer": [[-212.77, -0.05], [-211.23, -0.06], [-208.23, 2.64], [-153.35, -57.72], [-155.11, -59.32], [-152.23, -62.49], [-162.16, -71.46], [-163.08, -70.45], [-164.65, -70.14], [-166.37, -71.35], [-166.75, -73.18], [-165.45, -74.69], [-175.48, -83.25], [-177.64, -80.74], [-179.48, -82.32], [-193.88, -65.61], [-197.27, -65.48], [-197.16, -62.74], [-206.46, -62.39], [-209.13, -58.87], [-211.88, -56.97], [-214.81, -56.25], [-214.79, -55.35], [-215.99, -55.28], [-213.89, -30.58], [-212.02, -29.99], [-210.52, -28.97], [-209.89, -27.43], [-209.9, -25.72], [-211.4, -24.07], [-213.42, -23.44], [-213.33, -14.0], [-211.85, -14.02], [-211.81, -9.59], [-212.86, -9.59], [-212.77, -0.05]], "holes": []}}, {"shape": {"outer": [[-268.46, -78.98], [-266.25, -76.93], [-264.91, -78.37], [-248.83, -63.46], [-245.37, -63.59], [-245.25, -60.38], [-236.18, -60.75], [-233.44, -58.16], [-230.42, -56.24], [-227.19, -55.35], [-227.07, -54.47], [-226.0, -54.4], [-224.66, -30.74], [-226.15, -30.24], [-227.22, -29.22], [-228.27, -27.64], [-228.3, -25.77], [-227.2, -24.32], [-225.82, -23.44], [-223.9, -23.51], [-223.53, -13.28], [-224.5, -13.25], [-224.35, -8.97], [-223.3, -9.01], [-222.94, 0.76], [-224.21, 0.81], [-227.19, 4.09], [-288.56, -51.24], [-286.8, -53.16], [-289.5, -55.6], [-280.91, -65.06], [-278.65, -64.54], [-277.05, -65.51], [-275.87, -67.8], [-276.81, -70.04], [-268.46, -78.98]], "holes": []}}, {"shape": {"outer": [[483.44, 19.48], [482.24, 22.72], [501.63, 48.34], [503.7, 46.68], [520.25, 27.9], [483.44, 19.48]], "holes": []}}, {"shape": {"outer": [[1673.57, 1999.41], [1690.16, 1982.64], [1796.76, 2093.66], [1783.78, 2105.39], [1781.87, 2105.81], [1780.25, 2106.08], [1778.24, 2105.92], [1777.12, 2105.36], [1775.2, 2103.12], [1768.64, 2093.78], [1763.03, 2086.85], [1754.47, 2077.5], [1741.54, 2063.01], [1733.85, 2055.71], [1718.78, 2041.44], [1700.74, 2024.52], [1673.57, 1999.41]], "holes": []}}, {"shape": {"outer": [[-1417.14, 99.54], [-1424.25, 74.08], [-1427.69, 73.85], [-1430.98, 74.44], [-1433.72, 75.68], [-1435.18, 76.95], [-1436.05, 78.21], [-1435.34, 88.79], [-1434.02, 91.23], [-1431.87, 94.06], [-1428.35, 96.97], [-1424.9, 98.81], [-1421.76, 99.84], [-1419.07, 100.01], [-1417.14, 99.54]], "holes": []}}, {"shape": {"outer": [[-1418.27, 143.45], [-1420.37, 141.03], [-1422.91, 139.24], [-1425.05, 137.52], [-1423.87, 137.47], [-1422.83, 137.35], [-1421.72, 137.14], [-1420.71, 136.84], [-1419.92, 136.53], [-1419.14, 136.19], [-1418.38, 135.82], [-1417.63, 135.42], [-1416.78, 134.93], [-1415.9, 134.36], [-1415.17, 133.75], [-1414.48, 133.09], [-1413.91, 132.53], [-1413.25, 131.81], [-1412.71, 131.12], [-1412.2, 130.49], [-1411.4, 129.56], [-1410.7, 128.88], [-1409.82, 128.17], [-1408.88, 127.54], [-1408.13, 127.12], [-1407.37, 126.75], [-1406.36, 126.33], [-1405.27, 125.99], [-1403.77, 125.6], [-1402.68, 125.42], [-1401.63, 125.36], [-1400.49, 125.4], [-1399.35, 125.61], [-1398.17, 125.93], [-1397.01, 126.45], [-1395.71, 127.27], [-1394.58, 128.26], [-1393.71, 129.17], [-1392.93, 130.19], [-1392.01, 131.84], [-1391.28, 133.56], [-1394.67, 137.37], [-1397.47, 137.82], [-1401.0, 138.65], [-1405.75, 140.28], [-1409.27, 141.54], [-1413.43, 142.67], [-1418.27, 143.45]], "holes": []}}, {"shape": {"outer": [[-2389.1, 220.05], [-2384.08, 219.91], [-2383.36, 223.39], [-2359.71, 216.21], [-2339.68, 214.63], [-2301.06, 212.9], [-2274.85, 207.77], [-2216.58, 204.59], [-2208.47, 202.74], [-2200.42, 199.13], [-2161.23, 199.76], [-2163.84, 174.62], [-2156.7, 169.73], [-2132.93, 167.17], [-2134.08, 157.83], [-2109.8, 155.25], [-2106.59, 153.28], [-2106.17, 150.51], [-2106.94, 141.16], [-2107.42, 137.42], [-2099.03, 136.93], [-2088.88, 127.51], [-2115.79, 130.16], [-2156.56, 131.08], [-2162.45, 131.43], [-2175.98, 132.26], [-2202.65, 130.28], [-2220.23, 134.41], [-2228.26, 134.39], [-2242.84, 129.18], [-2248.77, 128.1], [-2271.11, 128.12], [-2283.67, 128.1], [-2305.45, 130.35], [-2325.77, 135.32], [-2378.66, 150.96], [-2392.03, 152.86], [-2389.1, 220.05]], "holes": []}}, {"shape": {"outer": [[-2087.16, 179.04], [-2051.64, 174.83], [-2050.44, 184.84], [-2057.46, 185.67], [-2057.18, 188.01], [-2078.63, 190.55], [-2078.95, 187.89], [-2086.01, 188.73], [-2087.16, 179.04]], "holes": []}}, {"shape": {"outer": [[-2047.82, 187.82], [-2050.16, 167.66], [-2021.27, 164.47], [-2020.69, 169.71], [-2020.49, 170.64], [-2027.01, 171.39], [-2025.53, 184.11], [-2026.03, 184.86], [-2026.65, 185.38], [-2047.82, 187.82]], "holes": []}}, {"shape": {"outer": [[-2088.24, 192.35], [-2090.51, 172.87], [-2119.02, 176.11], [-2118.51, 180.59], [-2116.92, 181.59], [-2112.25, 181.31], [-2110.67, 194.92], [-2088.24, 192.35]], "holes": []}}, {"shape": {"outer": [[-1552.13, -47.92], [-1550.87, -47.98], [-1547.18, -48.15], [-1534.6, -48.72], [-1534.47, -47.54], [-1516.15, -48.35], [-1516.48, -56.03], [-1507.57, -56.42], [-1507.62, -57.54], [-1498.93, -57.94], [-1493.42, -58.17], [-1493.37, -57.1], [-1487.78, -57.35], [-1483.99, -57.52], [-1482.79, -30.32], [-1482.57, -25.2], [-1482.36, -19.97], [-1481.12, 7.29], [-1481.02, 9.87], [-1480.97, 11.42], [-1480.82, 14.84], [-1471.1, 14.35], [-1469.04, 14.27], [-1466.65, 14.13], [-1463.17, 13.81], [-1459.28, 13.61], [-1451.27, 13.14], [-1449.31, 13.04], [-1405.24, 11.12], [-1402.3, 11.2], [-1400.85, 11.37], [-1393.01, 11.01], [-1391.46, 10.9], [-1384.84, 10.47], [-1385.06, 5.16], [-1385.23, 1.72], [-1385.54, -4.92], [-1385.1, -4.94], [-1385.73, -18.45], [-1385.91, -22.31], [-1387.12, -22.26], [-1387.29, -25.87], [-1387.68, -25.86], [-1387.79, -28.22], [-1387.94, -31.37], [-1388.06, -33.97], [-1387.67, -33.99], [-1387.84, -37.64], [-1386.78, -37.68], [-1387.02, -42.83], [-1387.57, -54.82], [-1388.1, -54.79], [-1388.48, -63.04], [-1388.58, -65.23], [-1363.9, -66.36], [-1362.69, -67.4], [-1361.2, -67.83], [-1359.92, -67.59], [-1358.81, -66.63], [-1340.11, -67.49], [-1340.28, -71.27], [-1340.35, -72.73], [-1307.44, -74.24], [-1306.77, -74.3], [-1306.86, -75.54], [-1307.39, -83.84], [-1308.0, -94.54], [-1309.83, -94.36], [-1313.13, -94.19], [-1323.76, -93.67], [-1335.68, -93.07], [-1335.7, -93.52], [-1339.24, -93.34], [-1339.22, -92.96], [-1347.08, -92.58], [-1355.45, -92.17], [-1362.94, -91.81], [-1362.95, -92.12], [-1369.04, -91.82], [-1373.23, -91.66], [-1383.5, -91.1], [-1387.43, -90.87], [-1398.32, -90.16], [-1407.52, -89.74], [-1412.38, -89.52], [-1413.43, -89.42], [-1417.45, -88.94], [-1420.33, -88.79], [-1422.7, -88.66], [-1431.67, -88.18], [-1442.11, -87.56], [-1453.62, -87.03], [-1454.86, -87.03], [-1456.43, -86.93], [-1468.05, -86.39], [-1481.94, -85.79], [-1482.29, -93.4], [-1485.72, -93.21], [-1490.09, -93.0], [-1497.45, -92.59], [-1502.8, -92.34], [-1540.27, -90.51], [-1542.42, -90.38], [-1553.73, -89.95], [-1552.99, -72.17], [-1552.58, -57.94], [-1552.49, -55.71], [-1552.13, -47.92]], "holes": []}}, {"shape": {"outer": [[-235.21, -287.15], [-235.18, -285.93], [-234.75, -284.78], [-233.95, -283.85], [-232.88, -283.24], [-231.67, -283.03], [-230.55, -283.19], [-229.53, -283.71], [-228.73, -284.51], [-228.22, -285.53], [-228.04, -286.64], [-228.23, -287.76], [-228.77, -288.77], [-229.59, -289.55], [-230.61, -290.05], [-231.83, -290.2], [-233.03, -289.92], [-234.07, -289.27], [-234.82, -288.31], [-235.21, -287.15]], "holes": []}}, {"shape": {"outer": [[-79.57, -147.47], [-79.51, -146.24], [-79.04, -145.11], [-78.21, -144.19], [-77.13, -143.61], [-75.9, -143.43], [-74.78, -143.63], [-73.78, -144.18], [-72.99, -145.0], [-72.5, -146.04], [-72.36, -147.17], [-72.59, -148.28], [-73.15, -149.28], [-73.98, -150.04], [-75.02, -150.51], [-76.26, -150.63], [-77.46, -150.33], [-78.49, -149.65], [-79.22, -148.65], [-79.57, -147.47]], "holes": []}}, {"shape": {"outer": [[-219.84, 6.43], [-220.28, 7.25], [-220.44, 8.17], [-220.3, 9.1], [-219.87, 9.92], [-219.2, 10.58], [-218.3, 11.01], [-217.31, 11.11], [-216.34, 10.87], [-215.5, 10.33], [-214.91, 9.53], [-214.6, 8.59], [-214.63, 7.59], [-215.0, 6.67], [-215.67, 5.92], [-216.48, 5.45], [-217.4, 5.27], [-218.32, 5.38], [-219.17, 5.79], [-219.84, 6.43]], "holes": []}}, {"shape": {"outer": [[-253.26, -102.25], [-261.06, -93.98], [-259.65, -92.55], [-258.7, -92.21], [-256.78, -91.94], [-255.26, -92.05], [-253.85, -92.59], [-252.63, -93.45], [-250.84, -95.52], [-250.41, -97.24], [-250.46, -98.76], [-250.86, -100.43], [-251.6, -101.49], [-252.08, -101.03], [-253.26, -102.25]], "holes": []}}, {"shape": {"outer": [[-196.3, -175.99], [-188.69, -184.4], [-189.83, -185.6], [-191.38, -186.29], [-193.21, -186.48], [-195.61, -185.79], [-197.24, -184.86], [-198.46, -183.58], [-199.49, -181.21], [-199.75, -179.17], [-199.61, -177.38], [-198.57, -175.95], [-197.48, -177.2], [-196.3, -175.99]], "holes": []}}, {"shape": {"outer": [[-190.69, -170.95], [-183.09, -179.35], [-181.86, -178.32], [-181.05, -176.92], [-180.61, -175.14], [-181.0, -172.69], [-181.71, -170.96], [-182.84, -169.58], [-185.07, -168.26], [-187.07, -167.76], [-188.68, -168.07], [-190.26, -168.62], [-189.25, -169.8], [-190.69, -170.95]], "holes": []}}, {"shape": {"outer": [[-187.91, -110.98], [-179.23, -103.32], [-178.57, -104.04], [-178.06, -105.11], [-177.7, -106.33], [-177.6, -107.35], [-177.72, -108.47], [-177.97, -109.51], [-178.3, -110.47], [-178.8, -111.39], [-179.55, -112.27], [-180.31, -112.92], [-181.37, -113.57], [-182.29, -113.98], [-183.68, -114.29], [-185.06, -114.23], [-186.63, -113.77], [-188.06, -112.68], [-187.04, -111.97], [-187.91, -110.98]], "holes": []}}, {"shape": {"outer": [[-192.7, -105.75], [-184.29, -98.13], [-185.39, -96.88], [-186.79, -95.97], [-188.59, -95.58], [-191.04, -96.05], [-192.76, -96.81], [-194.1, -97.96], [-195.35, -100.22], [-195.81, -102.23], [-195.44, -103.82], [-194.68, -105.13], [-193.69, -104.35], [-192.7, -105.75]], "holes": []}}, {"shape": {"outer": [[2699.42, 1856.32], [2695.11, 1864.54], [2700.14, 1877.03], [2715.97, 1889.59], [2730.85, 1899.67], [2730.79, 1864.26], [2699.42, 1856.32]], "holes": []}}, {"shape": {"outer": [[1310.87, 888.89], [1311.44, 886.91], [1311.53, 885.01], [1311.46, 882.67], [1308.26, 884.79], [1310.87, 888.89]], "holes": []}}, {"shape": {"outer": [[1304.57, 879.19], [1308.07, 876.91], [1306.96, 876.06], [1305.82, 875.36], [1303.8, 874.71], [1302.59, 874.39], [1301.39, 874.38], [1304.57, 879.19]], "holes": []}}, {"shape": {"outer": [[1191.98, 729.66], [1193.94, 727.66], [1196.22, 729.07], [1196.61, 730.41], [1198.04, 732.2], [1205.25, 738.55], [1216.61, 749.48], [1229.58, 763.0], [1241.91, 776.59], [1256.9, 792.35], [1261.88, 798.56], [1267.72, 805.76], [1280.98, 821.9], [1286.47, 828.6], [1293.44, 838.02], [1298.27, 845.18], [1301.02, 848.49], [1302.61, 851.19], [1304.71, 853.49], [1305.53, 854.7], [1311.1, 862.02], [1312.95, 865.4], [1315.69, 869.7], [1317.21, 870.8], [1314.56, 872.74], [1301.85, 855.09], [1289.19, 837.48], [1276.56, 821.09], [1263.58, 804.98], [1243.32, 782.03], [1221.77, 758.46], [1203.94, 740.37], [1191.98, 729.66]], "holes": []}}, {"shape": {"outer": [[1318.64, 878.78], [1322.31, 876.54], [1323.38, 878.53], [1324.09, 881.66], [1326.81, 886.24], [1328.96, 890.51], [1332.42, 894.9], [1341.67, 909.2], [1345.51, 915.44], [1348.92, 922.26], [1351.68, 926.22], [1357.89, 938.3], [1376.42, 975.37], [1386.77, 996.43], [1402.16, 1038.79], [1399.76, 1039.84], [1398.92, 1041.88], [1394.35, 1044.45], [1384.36, 1028.33], [1370.77, 1008.28], [1351.94, 981.7], [1335.06, 960.44], [1315.92, 940.04], [1299.1, 924.28], [1297.63, 921.25], [1296.29, 920.06], [1292.06, 917.27], [1250.07, 877.8], [1245.68, 875.24], [1202.22, 835.81], [1143.01, 783.53], [1147.8, 778.22], [1153.42, 783.33], [1182.14, 809.32], [1273.28, 892.13], [1288.04, 905.6], [1324.74, 939.22], [1327.11, 937.21], [1336.99, 947.35], [1347.22, 957.68], [1349.75, 960.12], [1351.01, 961.38], [1352.58, 962.19], [1354.26, 962.64], [1356.32, 962.27], [1358.19, 961.18], [1359.35, 959.67], [1360.06, 958.01], [1360.13, 956.06], [1359.65, 954.39], [1342.97, 926.85], [1346.92, 923.91], [1325.24, 889.09], [1318.64, 878.78]], "holes": []}}, {"shape": {"outer": [[-1828.93, -68.52], [-1773.28, -59.77], [-1779.69, -97.49], [-1781.43, -100.46], [-1785.19, -101.44], [-1788.9, -101.47], [-1819.54, -96.22], [-1822.68, -93.9], [-1824.89, -91.04], [-1827.76, -85.84], [-1829.31, -81.19], [-1830.08, -76.22], [-1830.03, -72.64], [-1829.62, -70.39], [-1828.93, -68.52]], "holes": []}}, {"shape": {"outer": [[-2662.74, -842.37], [-2661.26, -841.79], [-2658.98, -841.6], [-2657.74, -841.64], [-2655.99, -841.7], [-2653.25, -842.26], [-2644.36, -844.18], [-2632.09, -844.63], [-2627.39, -844.4], [-2623.64, -843.26], [-2621.29, -842.45], [-2612.5, -842.68], [-2605.71, -842.85], [-2600.12, -842.99], [-2598.93, -843.2], [-2597.73, -843.68], [-2597.19, -844.43], [-2596.96, -845.24], [-2597.23, -845.99], [-2597.97, -846.89], [-2607.37, -855.04], [-2612.94, -858.94], [-2618.08, -862.46], [-2625.87, -868.2], [-2628.12, -869.86], [-2639.82, -879.88], [-2658.63, -896.12], [-2659.52, -896.82], [-2660.48, -897.37], [-2661.49, -897.47], [-2662.56, -897.2], [-2663.35, -896.66], [-2664.05, -895.74], [-2664.34, -894.84], [-2664.27, -892.13], [-2663.8, -870.6], [-2663.84, -870.28], [-2663.97, -869.02], [-2664.52, -867.45], [-2665.29, -865.71], [-2665.45, -865.4], [-2665.68, -864.98], [-2665.77, -864.13], [-2665.68, -857.74], [-2665.65, -855.42], [-2665.54, -846.79], [-2665.23, -845.42], [-2664.15, -843.85], [-2662.74, -842.37]], "holes": []}}, {"shape": {"outer": [[315.38, -3077.59], [317.59, -3080.59], [324.48, -3091.9], [335.23, -3110.07], [360.09, -3147.15], [385.48, -3180.65], [407.12, -3207.85], [450.25, -3252.21], [456.83, -3259.48], [496.31, -3294.28], [492.71, -3405.31], [486.22, -3605.59], [271.38, -3595.25], [250.4, -3594.23], [219.58, -3694.25], [217.75, -3697.63], [215.27, -3699.62], [118.27, -3696.53], [112.03, -3697.39], [103.66, -3699.91], [96.97, -3704.54], [91.29, -3709.88], [86.2, -3718.7], [85.33, -3724.86], [85.14, -3731.4], [87.07, -3785.67], [-63.59, -3780.91], [-130.21, -3778.81], [-322.65, -3770.88], [-325.41, -3770.76], [-318.94, -3639.71], [-319.31, -3632.74], [-318.93, -3626.58], [-318.68, -3617.72], [-321.81, -3609.64], [-324.04, -3605.25], [-328.75, -3600.29], [-327.92, -3593.47], [-315.73, -3493.52], [-309.39, -3371.96], [-434.03, -3365.71], [-428.86, -3299.64], [-425.87, -3255.59], [-424.04, -3237.17], [-420.66, -3220.11], [-417.55, -3207.5], [-414.55, -3198.79], [-409.45, -3187.25], [-403.51, -3177.03], [-389.27, -3154.65], [-382.05, -3145.47], [-375.49, -3138.59], [-355.97, -3119.38], [-342.79, -3108.8], [-319.04, -3093.31], [-308.43, -3086.83], [-303.15, -3084.39], [-293.81, -3081.48], [-253.97, -3070.35], [-235.29, -3064.97], [-204.87, -3054.29], [-196.73, -3050.56], [-188.27, -3045.68], [-172.21, -3036.18], [-166.29, -3031.3], [-154.79, -3019.08], [-145.22, -3008.1], [-134.38, -2993.69], [-123.02, -2975.7], [-110.84, -2954.98], [-101.38, -2937.8], [-84.1, -2900.06], [-75.66, -2878.38], [-68.86, -2858.23], [-68.19, -2854.78], [-67.47, -2844.57], [-67.52, -2836.05], [-69.29, -2817.11], [-75.31, -2769.19], [-78.33, -2744.19], [-78.76, -2726.41], [-77.73, -2714.45], [-75.39, -2700.39], [-73.9, -2693.94], [-71.31, -2684.34], [-59.18, -2654.54], [-53.31, -2641.73], [-50.03, -2638.51], [-48.04, -2637.92], [-46.18, -2637.97], [-38.67, -2641.33], [-2.05, -2658.83], [13.54, -2665.57], [33.06, -2677.59], [52.66, -2692.94], [73.64, -2712.59], [94.39, -2733.51], [119.89, -2757.17], [129.36, -2763.54], [137.42, -2767.47], [147.51, -2771.45], [160.01, -2775.88], [169.34, -2780.4], [176.27, -2784.66], [182.78, -2790.95], [189.61, -2798.72], [193.53, -2804.38], [197.79, -2811.35], [202.32, -2822.01], [204.12, -2830.2], [204.88, -2836.33], [205.27, -2842.26], [209.96, -2860.14], [214.59, -2873.78], [217.61, -2878.3], [221.34, -2884.14], [240.1, -2929.67], [248.82, -2954.89], [252.08, -2963.58], [265.82, -2989.85], [282.3, -3021.68], [285.2, -3028.95], [286.05, -3033.55], [286.39, -3039.12], [296.58, -3042.47], [297.12, -3042.7], [312.81, -3069.84], [315.38, -3077.59]], "holes": []}}, {"shape": {"outer": [[767.05, 296.88], [818.37, 342.6], [828.61, 351.72], [903.52, 418.46], [886.83, 437.03], [754.57, 314.86], [752.24, 312.7], [757.13, 307.54], [761.73, 302.66], [767.05, 296.88]], "holes": []}}, {"shape": {"outer": [[-2563.34, -210.56], [-2558.81, -212.6], [-2553.16, -214.55], [-2546.55, -216.49], [-2546.61, -217.69], [-2559.05, -217.04], [-2558.96, -215.51], [-2563.52, -211.15], [-2563.34, -210.56]], "holes": []}}, {"shape": {"outer": [[-2579.6, -205.73], [-2576.4, -204.11], [-2575.06, -203.8], [-2573.91, -203.97], [-2572.9, -204.51], [-2569.9, -206.8], [-2566.66, -208.92], [-2568.11, -211.0], [-2578.0, -208.24], [-2579.08, -207.63], [-2579.43, -206.69], [-2579.6, -205.73]], "holes": []}}, {"shape": {"outer": [[-2625.5, -213.62], [-2562.64, -216.55], [-2565.08, -214.19], [-2566.08, -213.39], [-2567.04, -212.93], [-2578.24, -209.72], [-2580.06, -208.72], [-2582.17, -206.78], [-2586.89, -208.79], [-2591.75, -210.42], [-2598.8, -212.05], [-2606.0, -212.88], [-2625.49, -212.42], [-2625.5, -213.62]], "holes": []}}, {"shape": {"outer": [[-2560.92, -186.92], [-2570.14, -190.24], [-2569.95, -191.53], [-2565.29, -189.98], [-2561.67, -189.2], [-2559.24, -188.87], [-2559.19, -187.41], [-2559.67, -186.83], [-2560.31, -186.68], [-2560.92, -186.92]], "holes": []}}, {"shape": {"outer": [[-2551.53, -183.62], [-2555.33, -184.88], [-2555.81, -185.21], [-2555.99, -185.71], [-2555.91, -188.66], [-2550.8, -188.92], [-2545.27, -189.96], [-2544.32, -188.24], [-2551.53, -183.62]], "holes": []}}, {"shape": {"outer": [[-2574.76, -187.8], [-2592.19, -168.85], [-2595.3, -165.69], [-2598.63, -162.78], [-2604.09, -158.81], [-2603.44, -156.95], [-2591.17, -162.35], [-2579.12, -168.19], [-2562.71, -176.99], [-2555.56, -181.22], [-2574.76, -187.8]], "holes": []}}, {"shape": {"outer": [[-508.2, -2486.2], [-510.45, -2485.95], [-512.83, -2486.11], [-514.92, -2487.16], [-516.57, -2488.83], [-517.61, -2490.92], [-517.92, -2493.24], [-517.48, -2495.53], [-516.34, -2497.56], [-514.72, -2499.06], [-512.72, -2500.01], [-510.54, -2500.3], [-508.36, -2499.94], [-506.39, -2498.94], [-504.81, -2497.41], [-503.76, -2495.47], [-502.82, -2492.83], [-501.61, -2490.69], [-501.19, -2489.65], [-501.17, -2488.52], [-501.57, -2487.48], [-502.28, -2486.68], [-503.21, -2486.19], [-504.26, -2486.03], [-506.29, -2486.25], [-508.2, -2486.2]], "holes": []}}, {"shape": {"outer": [[-1567.9, -277.08], [-1568.99, -279.01], [-1569.75, -281.68], [-1571.26, -310.41], [-1571.16, -313.63], [-1568.79, -313.66], [-1566.99, -280.4], [-1566.97, -277.19], [-1567.9, -277.08]], "holes": []}}, {"shape": {"outer": [[-1048.24, -883.14], [-1034.49, -870.56], [-1033.1, -871.83], [-1033.09, -872.71], [-1032.96, -874.53], [-1033.74, -876.98], [-1035.22, -879.09], [-1043.4, -886.23], [-1048.22, -883.74], [-1048.35, -883.45], [-1048.24, -883.14]], "holes": []}}, {"shape": {"outer": [[-1058.91, -893.11], [-1056.04, -890.27], [-1055.41, -889.9], [-1054.72, -889.95], [-1050.91, -892.08], [-1050.55, -892.49], [-1050.69, -892.99], [-1053.98, -895.76], [-1056.61, -894.78], [-1058.91, -893.11]], "holes": []}}, {"shape": {"outer": [[-1063.38, -896.55], [-1073.25, -905.4], [-1081.98, -914.35], [-1091.33, -925.43], [-1094.67, -929.44], [-1093.6, -930.64], [-1058.25, -899.46], [-1060.12, -897.85], [-1063.38, -896.55]], "holes": []}}, {"shape": {"outer": [[-1589.82, -503.11], [-1589.25, -498.89], [-1587.91, -469.02], [-1586.63, -451.28], [-1585.86, -433.69], [-1584.75, -420.93], [-1582.76, -404.82], [-1587.02, -404.56], [-1588.87, -414.06], [-1590.66, -425.22], [-1591.91, -439.02], [-1592.16, -448.86], [-1591.04, -465.01], [-1590.82, -472.55], [-1592.15, -499.62], [-1592.04, -503.07], [-1589.82, -503.11]], "holes": []}}, {"shape": {"outer": [[-1606.55, -753.67], [-1604.5, -713.92], [-1604.85, -710.81], [-1605.87, -707.85], [-1607.11, -705.72], [-1608.7, -703.82], [-1610.26, -703.96], [-1612.16, -745.4], [-1612.12, -747.39], [-1611.78, -749.35], [-1611.03, -751.56], [-1609.91, -753.61], [-1606.55, -753.67]], "holes": []}}, {"shape": {"outer": [[-1591.95, -767.8], [-1592.82, -785.05], [-1587.72, -785.31], [-1584.6, -785.29], [-1582.32, -784.91], [-1580.11, -784.05], [-1577.96, -782.23], [-1577.05, -780.85], [-1576.42, -778.86], [-1576.13, -776.85], [-1576.39, -774.15], [-1577.44, -772.04], [-1579.13, -770.07], [-1581.46, -768.77], [-1584.64, -768.15], [-1588.22, -767.88], [-1591.95, -767.8]], "holes": []}}, {"shape": {"outer": [[-1610.41, -867.93], [-1608.82, -840.36], [-1608.5, -790.17], [-1608.0, -777.84], [-1608.45, -774.18], [-1609.1, -772.3], [-1612.18, -772.16], [-1613.18, -774.37], [-1613.85, -777.13], [-1614.71, -796.65], [-1614.48, -801.77], [-1612.66, -816.64], [-1611.9, -822.7], [-1611.38, -832.74], [-1611.45, -841.0], [-1612.84, -867.78], [-1610.41, -867.93]], "holes": []}}, {"shape": {"outer": [[-1604.96, -1245.09], [-1600.64, -1155.38], [-1600.61, -1132.36], [-1601.3, -1125.81], [-1604.37, -1109.34], [-1604.94, -1104.2], [-1605.67, -1083.87], [-1608.24, -1083.96], [-1608.69, -1126.2], [-1607.77, -1168.02], [-1608.34, -1195.09], [-1606.6, -1209.9], [-1606.17, -1215.79], [-1606.0, -1221.43], [-1606.68, -1245.02], [-1604.96, -1245.09]], "holes": []}}, {"shape": {"outer": [[-1609.08, -1362.23], [-1608.13, -1342.27], [-1607.93, -1336.42], [-1608.2, -1330.57], [-1608.98, -1324.42], [-1609.24, -1320.38], [-1609.46, -1316.7], [-1609.79, -1307.87], [-1608.98, -1281.67], [-1610.51, -1281.63], [-1611.83, -1324.33], [-1610.22, -1339.0], [-1610.15, -1341.54], [-1610.9, -1362.1], [-1609.08, -1362.23]], "holes": []}}, {"shape": {"outer": [[-1157.83, -980.82], [-1225.37, -1042.12], [-1228.0, -1045.15], [-1229.96, -1048.85], [-1228.85, -1050.16], [-1224.88, -1048.49], [-1222.68, -1047.09], [-1197.99, -1024.83], [-1192.02, -1018.41], [-1187.42, -1012.61], [-1183.46, -1007.63], [-1179.26, -1003.3], [-1155.3, -981.6], [-1156.31, -980.94], [-1157.83, -980.82]], "holes": []}}, {"shape": {"outer": [[-1486.29, -1278.33], [-1575.72, -1359.6], [-1580.33, -1363.84], [-1585.3, -1367.66], [-1589.5, -1370.37], [-1593.89, -1372.77], [-1593.95, -1375.58], [-1589.37, -1374.13], [-1584.94, -1372.29], [-1578.91, -1369.0], [-1573.33, -1364.98], [-1568.31, -1360.3], [-1490.95, -1290.06], [-1490.1, -1289.11], [-1489.69, -1288.17], [-1488.72, -1284.08], [-1487.46, -1281.37], [-1485.73, -1278.92], [-1486.29, -1278.33]], "holes": []}}, {"shape": {"outer": [[-1381.62, -1183.8], [-1444.0, -1240.44], [-1478.46, -1278.03], [-1478.01, -1278.61], [-1377.33, -1187.14], [-1381.62, -1183.8]], "holes": []}}, {"shape": {"outer": [[-1245.45, -1062.81], [-1248.06, -1063.72], [-1250.76, -1065.17], [-1378.99, -1181.04], [-1374.45, -1184.42], [-1247.89, -1069.93], [-1245.46, -1066.32], [-1244.38, -1063.91], [-1245.45, -1062.81]], "holes": []}}, {"shape": {"outer": [[429.18, -8.81], [423.93, -11.09], [417.98, -13.75], [411.53, -17.29], [404.88, -21.51], [399.67, -25.71], [392.83, -31.48], [393.96, -32.78], [399.3, -29.41], [409.04, -23.6], [417.14, -18.91], [421.1, -16.66], [424.96, -15.08], [431.74, -12.96], [437.03, -11.6], [437.46, -6.0], [434.94, -6.77], [429.18, -8.81]], "holes": []}}, {"shape": {"outer": [[485.5, 1.32], [491.87, 4.4], [576.22, 27.33], [585.37, 30.14], [594.21, 33.79], [601.51, 37.55], [608.47, 41.89], [615.07, 46.76], [625.99, 56.35], [656.96, 84.71], [658.09, 83.47], [636.52, 63.49], [630.62, 57.72], [624.53, 50.89], [620.6, 46.41], [616.36, 42.22], [610.77, 37.5], [604.79, 33.28], [598.47, 29.59], [591.85, 26.45], [579.61, 22.67], [544.12, 12.72], [521.5, 6.99], [503.93, 2.05], [493.52, -0.87], [490.28, -1.48], [486.24, -1.7], [485.5, 1.32]], "holes": []}}, {"shape": {"outer": [[-1629.37, -344.43], [-1632.08, -344.15], [-1634.73, -344.82], [-1636.99, -346.34], [-1638.61, -348.54], [-1639.36, -351.16], [-1639.19, -353.87], [-1638.1, -356.37], [-1636.41, -358.2], [-1634.25, -359.41], [-1631.81, -359.9], [-1629.33, -359.59], [-1627.08, -358.54], [-1625.26, -356.85], [-1624.06, -354.68], [-1623.6, -352.24], [-1623.92, -349.79], [-1624.99, -347.54], [-1626.9, -345.6], [-1629.37, -344.43]], "holes": []}}, {"shape": {"outer": [[-2480.18, -363.68], [-2462.34, -364.48], [-2465.1, -427.88], [-2482.8, -427.13], [-2480.18, -363.68]], "holes": []}}, {"shape": {"outer": [[-2349.22, -189.25], [-2348.46, -189.53], [-2348.94, -201.13], [-2346.8, -201.27], [-2346.93, -204.52], [-2349.2, -206.35], [-2350.96, -204.38], [-2351.45, -203.46], [-2351.53, -202.45], [-2351.07, -200.35], [-2351.09, -198.42], [-2352.02, -196.76], [-2354.17, -195.47], [-2356.91, -195.46], [-2358.86, -196.34], [-2360.19, -198.23], [-2360.61, -200.22], [-2360.36, -201.6], [-2359.74, -202.6], [-2359.76, -203.44], [-2363.24, -206.47], [-2365.15, -205.11], [-2364.7, -200.42], [-2362.12, -200.61], [-2361.52, -188.71], [-2360.92, -188.34], [-2360.07, -188.94], [-2358.18, -190.48], [-2355.29, -191.18], [-2351.81, -190.73], [-2350.06, -189.43], [-2349.22, -189.25]], "holes": []}}, {"shape": {"outer": [[-2358.59, -205.64], [-2358.34, -203.86], [-2357.46, -202.9], [-2355.84, -202.57], [-2354.53, -202.98], [-2353.53, -203.97], [-2353.34, -205.81], [-2353.42, -208.08], [-2358.66, -207.92], [-2358.59, -205.64]], "holes": []}}, {"shape": {"outer": [[-2337.78, -196.19], [-2335.83, -196.28], [-2334.08, -198.58], [-2331.75, -199.55], [-2310.4, -200.35], [-2310.9, -212.08], [-2333.26, -211.15], [-2335.83, -210.28], [-2337.56, -208.77], [-2338.27, -207.52], [-2337.78, -196.19]], "holes": []}}, {"shape": {"outer": [[-2308.8, -212.13], [-2297.86, -212.51], [-2297.25, -195.21], [-2286.66, -195.58], [-2286.49, -190.78], [-2308.02, -190.01], [-2308.8, -212.13]], "holes": []}}, {"shape": {"outer": [[-2278.56, -209.79], [-2278.73, -213.53], [-2267.29, -214.06], [-2267.12, -210.31], [-2278.56, -209.79]], "holes": []}}, {"shape": {"outer": [[-2262.79, -201.94], [-2263.32, -214.2], [-2223.94, -215.9], [-2223.84, -213.54], [-2221.81, -213.63], [-2221.39, -203.73], [-2262.79, -201.94]], "holes": []}}, {"shape": {"outer": [[-2288.86, -51.1], [-2273.65, -51.6], [-2274.2, -68.4], [-2246.36, -69.75], [-2245.0, -71.82], [-2245.05, -73.71], [-2240.47, -74.02], [-2240.93, -92.68], [-2251.2, -92.38], [-2251.41, -90.6], [-2252.24, -89.4], [-2253.32, -88.9], [-2267.23, -88.46], [-2272.66, -84.53], [-2276.57, -83.44], [-2283.09, -83.33], [-2286.8, -81.88], [-2289.8, -79.3], [-2288.86, -51.1]], "holes": []}}, {"shape": {"outer": [[-2391.08, 139.52], [-2391.29, 136.84], [-2384.12, 133.66], [-2377.84, 130.28], [-2374.59, 126.67], [-2371.43, 117.38], [-2368.23, 107.68], [-2362.26, 100.93], [-2340.52, 78.07], [-2337.86, 75.84], [-2335.06, 75.11], [-2320.71, 73.64], [-2307.14, 74.13], [-2293.27, 77.24], [-2283.19, 77.38], [-2272.72, 75.82], [-2258.24, 75.67], [-2257.97, 86.88], [-2256.58, 89.3], [-2246.75, 93.73], [-2242.44, 93.87], [-2236.87, 90.15], [-2235.65, 87.18], [-2234.61, 86.84], [-2232.95, 86.88], [-2232.98, 91.78], [-2231.61, 93.3], [-2227.59, 94.99], [-2226.38, 100.09], [-2226.2, 112.63], [-2242.72, 111.92], [-2256.9, 111.93], [-2272.27, 112.77], [-2286.66, 114.32], [-2304.32, 117.12], [-2321.81, 120.94], [-2348.62, 128.56], [-2374.67, 136.19], [-2386.92, 138.79], [-2391.08, 139.52]], "holes": []}}, {"shape": {"outer": [[-2224.46, 112.71], [-2224.68, 102.7], [-2224.18, 101.8], [-2223.33, 101.47], [-2217.23, 101.23], [-2215.42, 100.76], [-2213.93, 99.49], [-2212.94, 98.11], [-2212.32, 96.63], [-2211.45, 91.12], [-2210.11, 86.94], [-2196.11, 92.6], [-2188.04, 94.15], [-2180.73, 94.57], [-2175.02, 98.56], [-2169.03, 100.15], [-2164.5, 103.1], [-2160.35, 104.72], [-2162.31, 110.17], [-2161.67, 112.73], [-2160.36, 114.4], [-2156.71, 115.65], [-2150.89, 115.1], [-2144.84, 112.04], [-2144.0, 115.67], [-2144.21, 117.9], [-2146.06, 118.13], [-2158.93, 117.94], [-2173.25, 117.18], [-2224.46, 112.71]], "holes": []}}, {"shape": {"outer": [[-2257.25, 69.48], [-2257.67, 54.81], [-2246.51, 53.01], [-2209.66, 54.41], [-2209.42, 50.61], [-2192.71, 50.55], [-2188.3, 45.31], [-2136.43, 44.77], [-2136.9, 11.99], [-2118.42, 11.48], [-2117.28, 47.72], [-2120.67, 52.86], [-2125.75, 56.63], [-2131.0, 57.14], [-2152.65, 63.24], [-2173.32, 67.85], [-2191.24, 69.97], [-2208.09, 69.89], [-2221.84, 67.41], [-2234.34, 67.0], [-2247.64, 67.8], [-2257.25, 69.48]], "holes": []}}, {"shape": {"outer": [[-2370.41, 101.77], [-2367.14, 102.64], [-2341.65, 75.11], [-2341.75, 71.78], [-2350.51, 63.91], [-2356.19, 65.36], [-2365.19, 64.74], [-2368.7, 66.64], [-2367.07, 74.17], [-2367.92, 84.41], [-2370.41, 101.77]], "holes": []}}, {"shape": {"outer": [[-2125.69, 106.65], [-2122.76, 111.04], [-2118.09, 113.09], [-2077.97, 108.77], [-2085.41, 92.83], [-2095.84, 77.92], [-2107.91, 60.17], [-2121.04, 60.68], [-2117.09, 73.29], [-2125.69, 106.65]], "holes": []}}, {"shape": {"outer": [[-2113.38, 41.46], [-2110.55, 37.36], [-2107.76, 36.0], [-2085.1, 32.03], [-2073.18, 31.55], [-2067.59, 34.08], [-2064.3, 39.03], [-2064.7, 43.08], [-2067.06, 45.57], [-2078.02, 48.51], [-2099.88, 56.04], [-2104.29, 56.42], [-2108.09, 53.66], [-2113.32, 48.17], [-2113.38, 41.46]], "holes": []}}, {"shape": {"outer": [[-2109.94, 6.96], [-2070.57, 5.72], [-2070.9, -4.91], [-2068.66, -4.98], [-2069.21, -22.39], [-2062.69, -22.6], [-2062.9, -29.27], [-2102.6, -28.01], [-2102.26, -17.25], [-2110.7, -16.99], [-2109.94, 6.96]], "holes": []}}, {"shape": {"outer": [[-2096.42, 63.32], [-2097.59, 62.23], [-2096.61, 60.97], [-2089.95, 56.83], [-2066.97, 50.28], [-2063.83, 47.82], [-2060.54, 47.5], [-2060.31, 50.61], [-2048.4, 50.22], [-2048.58, 46.8], [-2040.45, 49.47], [-2033.11, 56.98], [-2018.57, 63.7], [-2003.06, 67.21], [-2002.19, 68.37], [-2041.23, 97.69], [-2054.13, 104.94], [-2068.16, 109.99], [-2070.6, 101.73], [-2075.1, 90.59], [-2085.05, 75.79], [-2096.42, 63.32]], "holes": []}}, {"shape": {"outer": [[-2212.11, -25.41], [-2213.92, -20.05], [-2213.72, -13.06], [-2202.95, -3.03], [-2196.33, 2.93], [-2155.56, 1.67], [-2152.38, -1.31], [-2150.39, -13.67], [-2146.93, -19.83], [-2130.45, -22.91], [-2124.95, -20.46], [-2121.69, -14.5], [-2119.88, -13.16], [-2119.4, -25.65], [-2126.69, -25.73], [-2126.88, -28.98], [-2212.11, -25.41]], "holes": []}}, {"shape": {"outer": [[-2271.39, -0.2], [-2271.72, -3.16], [-2270.25, -8.38], [-2266.93, -11.19], [-2261.6, -12.53], [-2254.94, -11.7], [-2247.41, -10.4], [-2240.26, -10.42], [-2235.85, -11.24], [-2219.62, -15.09], [-2219.25, -2.21], [-2225.85, -0.74], [-2229.6, -0.8], [-2240.96, -2.27], [-2250.01, -3.2], [-2259.97, -2.91], [-2268.34, -0.97], [-2271.39, -0.2]], "holes": []}}, {"shape": {"outer": [[-2797.75, 49.25], [-2790.57, 52.33], [-2759.29, 42.41], [-2749.52, 32.09], [-2726.42, 30.92], [-2726.31, 37.63], [-2702.98, 36.72], [-2703.0, 40.21], [-2693.2, 40.04], [-2693.03, 47.72], [-2691.84, 48.49], [-2646.92, 46.74], [-2645.17, 44.88], [-2645.6, 31.92], [-2645.68, 23.37], [-2666.96, 23.98], [-2667.08, 20.15], [-2673.54, 20.47], [-2673.75, 15.63], [-2666.58, 15.42], [-2667.08, 3.85], [-2645.91, 2.9], [-2645.89, 1.5], [-2602.73, -0.21], [-2602.97, -10.73], [-2636.23, -9.6], [-2640.23, -6.87], [-2642.44, -2.32], [-2646.82, -2.14], [-2650.59, -3.66], [-2658.95, -3.95], [-2660.0, -5.95], [-2660.13, -8.45], [-2694.97, -6.66], [-2696.48, -4.52], [-2697.02, -2.12], [-2700.18, -1.99], [-2701.08, -4.27], [-2703.11, -6.31], [-2733.33, -5.01], [-2733.05, 0.52], [-2738.24, 0.78], [-2742.31, -2.65], [-2742.78, -6.7], [-2755.01, -5.48], [-2763.62, -2.85], [-2770.44, 1.71], [-2777.42, 9.01], [-2782.77, 17.72], [-2797.75, 49.25]], "holes": []}}, {"shape": {"outer": [[-2537.04, 16.36], [-2506.17, 14.96], [-2501.14, -11.31], [-2505.56, -13.82], [-2509.24, -11.59], [-2510.16, -5.37], [-2515.9, -0.71], [-2520.58, -0.66], [-2523.82, -3.54], [-2524.3, -5.56], [-2529.82, -5.14], [-2537.9, 1.37], [-2537.04, 16.36]], "holes": []}}, {"shape": {"outer": [[731.93, 1005.97], [699.77, 977.47], [690.14, 988.26], [722.3, 1016.76], [731.93, 1005.97]], "holes": []}}, {"shape": {"outer": [[2586.83, 2369.0], [2591.22, 2363.76], [2592.84, 2365.3], [2594.55, 2366.72], [2588.82, 2370.99], [2587.83, 2369.7], [2586.83, 2369.0]], "holes": []}}, {"shape": {"outer": [[2585.4, 2373.51], [2583.99, 2372.1], [2585.32, 2370.79], [2586.11, 2371.5], [2586.7, 2372.35], [2585.4, 2373.51]], "holes": []}}, {"shape": {"outer": [[2630.19, 2338.73], [2628.95, 2336.53], [2634.84, 2336.14], [2635.1, 2337.41], [2630.19, 2338.73]], "holes": []}}, {"shape": {"outer": [[2626.08, 2339.98], [2622.54, 2341.47], [2619.8, 2342.88], [2616.74, 2339.19], [2620.55, 2337.88], [2624.73, 2337.01], [2626.08, 2339.98]], "holes": []}}, {"shape": {"outer": [[2604.29, 2345.08], [2601.96, 2345.43], [2599.9, 2346.57], [2598.36, 2348.35], [2597.53, 2350.55], [2597.52, 2352.89], [2598.32, 2355.11], [2600.2, 2357.17], [2602.75, 2358.29], [2605.55, 2358.28], [2608.09, 2357.13], [2609.95, 2355.05], [2610.78, 2352.45], [2610.5, 2349.73], [2609.16, 2347.36], [2606.96, 2345.72], [2604.29, 2345.08]], "holes": []}}, {"shape": {"outer": [[-41.2, -2075.85], [-41.3, -2072.27], [-38.56, -2072.02], [-36.54, -2073.93], [-34.7, -2074.53], [-28.69, -2074.59], [-28.0, -2077.33], [-29.67, -2113.11], [-30.07, -2123.45], [-30.47, -2137.38], [-30.85, -2150.66], [-32.12, -2199.42], [-34.43, -2199.67], [-35.24, -2201.62], [-35.31, -2211.42], [-32.91, -2211.49], [-32.87, -2214.1], [-33.76, -2214.73], [-40.96, -2214.19], [-41.78, -2212.42], [-43.13, -2210.0], [-45.15, -2207.76], [-49.1, -2204.49], [-53.0, -2203.07], [-54.95, -2202.79], [-58.57, -2203.02], [-62.87, -2204.31], [-67.28, -2205.82], [-71.56, -2206.35], [-75.14, -2205.49], [-79.49, -2204.61], [-83.05, -2202.98], [-87.56, -2200.02], [-90.7, -2197.15], [-97.1, -2187.49], [-122.55, -2148.38], [-147.01, -2111.3], [-166.45, -2081.73], [-179.76, -2059.51], [-196.97, -2032.39], [-201.65, -2023.99], [-205.51, -2015.44], [-208.96, -2006.3], [-212.96, -1995.35], [-215.32, -1989.5], [-217.14, -1986.46], [-219.55, -1982.86], [-222.56, -1979.17], [-224.01, -1976.35], [-223.75, -1974.84], [-222.66, -1974.87], [-219.67, -1975.44], [-217.06, -1973.88], [-212.45, -1975.27], [-205.68, -1977.42], [-199.75, -1980.25], [-191.05, -1981.81], [-182.33, -1982.98], [-174.94, -1982.33], [-169.83, -1981.3], [-160.44, -1991.4], [-156.36, -1999.34], [-153.84, -2015.61], [-151.97, -2033.26], [-147.5, -2060.1], [-143.16, -2075.49], [-142.06, -2083.08], [-139.2, -2090.06], [-136.57, -2093.07], [-127.94, -2098.41], [-115.38, -2106.31], [-99.23, -2120.41], [-99.38, -2128.53], [-94.65, -2136.32], [-88.54, -2139.34], [-82.13, -2139.54], [-79.56, -2138.79], [-75.97, -2142.08], [-69.94, -2148.05], [-66.86, -2154.66], [-68.44, -2159.63], [-60.99, -2170.51], [-51.12, -2169.52], [-44.72, -2131.79], [-39.65, -2121.48], [-38.76, -2115.99], [-42.67, -2110.04], [-46.46, -2103.06], [-49.58, -2100.53], [-47.5, -2095.51], [-43.61, -2093.98], [-32.12, -2094.39], [-31.3, -2083.23], [-31.71, -2077.24], [-37.44, -2076.74], [-41.2, -2075.85]], "holes": []}}, {"shape": {"outer": [[-2491.16, 351.59], [-2495.6, 340.53], [-2497.97, 319.91], [-2498.11, 315.15], [-2454.09, 313.8], [-2454.55, 297.58], [-2457.45, 297.77], [-2457.08, 242.28], [-2445.88, 241.49], [-2433.75, 256.44], [-2429.6, 259.14], [-2430.39, 265.91], [-2432.38, 268.66], [-2437.12, 262.23], [-2452.31, 273.34], [-2447.57, 279.77], [-2433.06, 269.16], [-2438.13, 279.78], [-2439.22, 284.37], [-2438.33, 315.01], [-2354.4, 312.42], [-2354.26, 294.61], [-2367.08, 294.6], [-2367.48, 270.56], [-2361.42, 267.23], [-2303.44, 297.18], [-2289.19, 303.91], [-2305.48, 317.47], [-2325.69, 330.17], [-2360.14, 352.06], [-2375.72, 357.3], [-2413.82, 351.0], [-2491.16, 351.59]], "holes": []}}, {"shape": {"outer": [[-2612.89, 326.25], [-2574.18, 325.38], [-2571.45, 324.0], [-2571.84, 310.74], [-2573.42, 309.57], [-2613.27, 310.48], [-2612.89, 326.25]], "holes": []}}, {"shape": {"outer": [[-2593.24, 329.57], [-2593.19, 337.01], [-2596.42, 337.1], [-2597.61, 343.94], [-2597.55, 353.08], [-2632.44, 344.33], [-2644.86, 341.86], [-2684.34, 344.24], [-2698.33, 342.52], [-2724.52, 334.03], [-2728.26, 330.63], [-2731.63, 326.43], [-2732.07, 322.63], [-2730.01, 320.64], [-2724.22, 321.76], [-2718.48, 323.46], [-2714.04, 325.36], [-2711.11, 328.51], [-2624.75, 326.27], [-2613.51, 330.23], [-2593.24, 329.57]], "holes": []}}, {"shape": {"outer": [[-2617.87, 252.34], [-2582.88, 250.77], [-2582.52, 248.29], [-2581.61, 246.4], [-2579.78, 244.41], [-2577.93, 243.26], [-2574.15, 241.54], [-2574.07, 224.53], [-2574.85, 223.02], [-2576.51, 221.69], [-2595.39, 222.14], [-2605.12, 224.43], [-2612.01, 225.1], [-2616.97, 228.6], [-2618.5, 233.1], [-2617.87, 252.34]], "holes": []}}, {"shape": {"outer": [[-2562.92, 273.58], [-2563.5, 264.69], [-2549.87, 264.06], [-2548.53, 265.56], [-2550.44, 272.41], [-2552.11, 273.51], [-2562.92, 273.58]], "holes": []}}, {"shape": {"outer": [[-2762.41, 239.42], [-2756.2, 243.29], [-2749.97, 245.3], [-2735.52, 244.88], [-2729.22, 246.89], [-2724.47, 250.63], [-2722.79, 258.36], [-2724.13, 259.77], [-2731.84, 259.83], [-2732.46, 255.4], [-2734.37, 254.15], [-2760.08, 255.06], [-2761.92, 253.58], [-2762.41, 239.42]], "holes": []}}, {"shape": {"outer": [[-2728.03, 271.06], [-2721.22, 270.54], [-2719.86, 269.76], [-2718.54, 267.87], [-2718.05, 265.1], [-2719.38, 264.08], [-2720.54, 263.31], [-2728.66, 263.22], [-2729.44, 264.29], [-2729.27, 270.28], [-2728.03, 271.06]], "holes": []}}, {"shape": {"outer": [[-2763.55, 286.96], [-2763.82, 280.42], [-2762.26, 278.19], [-2722.16, 277.28], [-2719.67, 279.38], [-2718.78, 282.04], [-2718.45, 285.02], [-2718.49, 289.14], [-2719.48, 291.6], [-2721.35, 294.33], [-2722.92, 296.15], [-2726.17, 296.17], [-2726.78, 286.07], [-2763.55, 286.96]], "holes": []}}, {"shape": {"outer": [[-2744.1, 314.67], [-2744.38, 305.85], [-2763.2, 306.45], [-2762.93, 315.25], [-2744.1, 314.67]], "holes": []}}, {"shape": {"outer": [[-2711.38, 277.69], [-2698.8, 277.33], [-2696.44, 283.25], [-2693.12, 285.59], [-2683.97, 290.5], [-2683.73, 304.34], [-2716.77, 305.12], [-2716.51, 314.09], [-2718.69, 314.32], [-2718.55, 319.25], [-2725.65, 317.92], [-2729.53, 316.09], [-2731.21, 313.95], [-2731.6, 311.78], [-2729.31, 306.62], [-2725.51, 305.94], [-2721.79, 302.84], [-2718.62, 299.75], [-2715.71, 296.43], [-2713.12, 290.61], [-2711.23, 282.95], [-2711.38, 277.69]], "holes": []}}, {"shape": {"outer": [[-2711.27, 261.67], [-2693.65, 244.81], [-2693.24, 242.21], [-2719.68, 243.46], [-2720.7, 244.78], [-2718.63, 251.84], [-2715.79, 257.19], [-2711.27, 261.67]], "holes": []}}, {"shape": {"outer": [[-2946.59, 336.71], [-2942.0, 332.15], [-2939.12, 334.38], [-2934.87, 334.68], [-2932.17, 337.77], [-2928.56, 338.37], [-2925.79, 336.87], [-2924.64, 334.74], [-2922.09, 332.77], [-2920.26, 330.32], [-2919.85, 327.5], [-2921.04, 325.43], [-2923.22, 323.03], [-2925.45, 321.27], [-2926.19, 320.38], [-2914.04, 313.92], [-2900.42, 309.23], [-2890.62, 306.77], [-2882.32, 306.12], [-2877.15, 307.1], [-2870.64, 310.07], [-2854.25, 335.66], [-2848.49, 346.15], [-2874.19, 358.11], [-2910.65, 376.03], [-2944.86, 397.5], [-2945.13, 375.17], [-2933.1, 374.04], [-2919.95, 363.27], [-2929.92, 355.03], [-2934.13, 348.12], [-2934.36, 343.92], [-2936.82, 340.49], [-2946.59, 336.71]], "holes": []}}, {"shape": {"outer": [[-2581.78, 336.41], [-2565.66, 336.09], [-2565.79, 329.77], [-2581.9, 330.09], [-2581.78, 336.41]], "holes": []}}, {"shape": {"outer": [[-2447.78, 224.84], [-2445.36, 221.33], [-2450.56, 215.89], [-2454.37, 210.58], [-2456.84, 202.83], [-2457.65, 197.25], [-2456.91, 190.62], [-2454.94, 184.03], [-2452.31, 177.99], [-2449.27, 173.15], [-2446.66, 166.27], [-2437.41, 165.91], [-2436.39, 168.67], [-2425.83, 168.65], [-2421.55, 164.25], [-2394.51, 164.39], [-2394.56, 152.83], [-2405.11, 153.79], [-2418.03, 153.14], [-2434.52, 150.2], [-2443.36, 147.66], [-2447.24, 147.63], [-2471.77, 136.75], [-2485.11, 130.01], [-2496.5, 127.08], [-2505.77, 125.78], [-2528.81, 126.48], [-2532.45, 129.77], [-2528.18, 223.83], [-2527.24, 226.06], [-2523.47, 227.19], [-2512.97, 226.75], [-2514.97, 211.29], [-2516.23, 209.32], [-2521.09, 208.44], [-2518.6, 203.04], [-2517.47, 198.45], [-2517.76, 194.17], [-2518.78, 189.96], [-2513.53, 184.82], [-2513.64, 179.47], [-2509.26, 179.25], [-2509.69, 165.77], [-2482.81, 165.11], [-2481.89, 206.68], [-2473.69, 206.36], [-2473.54, 217.89], [-2471.34, 224.03], [-2459.27, 223.36], [-2459.22, 225.2], [-2447.78, 224.84]], "holes": []}}, {"shape": {"outer": [[-2427.93, 243.11], [-2423.56, 245.89], [-2417.14, 247.58], [-2410.37, 245.78], [-2408.14, 243.01], [-2408.28, 241.12], [-2408.85, 237.74], [-2410.26, 236.86], [-2426.86, 237.01], [-2428.68, 238.12], [-2429.56, 239.52], [-2429.41, 241.54], [-2427.93, 243.11]], "holes": []}}, {"shape": {"outer": [[-2328.45, 5.85], [-2320.19, 6.11], [-2313.26, 6.82], [-2304.55, 3.34], [-2299.36, 2.42], [-2299.37, -2.46], [-2303.58, -1.79], [-2306.06, -0.86], [-2307.61, -5.89], [-2303.81, -7.64], [-2297.66, -8.73], [-2301.33, -15.15], [-2303.36, -21.8], [-2327.83, -21.17], [-2329.42, -17.15], [-2331.21, -15.14], [-2333.89, -14.77], [-2336.23, -13.36], [-2338.19, -11.04], [-2338.84, -8.16], [-2338.88, -5.48], [-2328.45, 5.85]], "holes": []}}, {"shape": {"outer": [[-2433.92, 3.5], [-2406.45, 3.03], [-2416.98, 32.76], [-2418.73, 37.91], [-2417.34, 38.24], [-2404.37, 35.02], [-2393.65, 27.63], [-2385.54, 14.57], [-2380.82, 10.02], [-2375.5, 7.38], [-2373.24, -0.54], [-2369.58, -1.7], [-2365.64, 0.57], [-2363.92, 1.17], [-2361.43, 0.82], [-2356.94, -3.31], [-2356.06, -6.27], [-2357.34, -9.37], [-2360.8, -10.92], [-2369.55, -13.29], [-2373.92, -14.64], [-2380.29, -19.65], [-2434.26, -17.58], [-2433.92, 3.5]], "holes": []}}, {"shape": {"outer": [[-2442.25, -10.05], [-2442.46, -17.35], [-2462.09, -16.61], [-2461.88, -9.4], [-2442.25, -10.05]], "holes": []}}, {"shape": {"outer": [[-2121.77, -219.42], [-2156.69, -217.88], [-2206.72, -216.05], [-2205.99, -189.24], [-2188.5, -189.92], [-2188.99, -201.1], [-2175.69, -201.69], [-2175.03, -186.68], [-2149.46, -187.79], [-2149.41, -186.71], [-2140.83, -187.08], [-2140.87, -188.04], [-2140.72, -189.44], [-2141.86, -199.09], [-2145.4, -200.61], [-2128.74, -204.43], [-2127.39, -205.38], [-2125.73, -207.18], [-2124.79, -209.82], [-2124.32, -212.27], [-2122.68, -214.14], [-2121.4, -214.4], [-2121.77, -219.42]], "holes": []}}, {"shape": {"outer": [[-2034.96, -216.41], [-2034.92, -217.29], [-2035.08, -218.53], [-2035.66, -219.31], [-2036.58, -220.13], [-2037.82, -220.69], [-2043.03, -220.42], [-2045.02, -206.86], [-2044.22, -186.86], [-2038.22, -187.18], [-2039.59, -190.59], [-2040.34, -211.32], [-2034.83, -211.5], [-2034.96, -216.41]], "holes": []}}, {"shape": {"outer": [[-2113.89, -219.95], [-2113.76, -215.11], [-2111.58, -214.51], [-2110.88, -213.62], [-2110.19, -209.86], [-2106.28, -206.89], [-2101.23, -203.03], [-2090.06, -203.3], [-2090.04, -202.07], [-2076.9, -202.72], [-2076.48, -190.37], [-2058.12, -191.16], [-2058.76, -206.26], [-2045.02, -206.86], [-2043.03, -220.42], [-2044.34, -222.6], [-2113.89, -219.95]], "holes": []}}, {"shape": {"outer": [[-2121.4, -214.4], [-2121.14, -207.8], [-2122.83, -205.74], [-2124.29, -203.61], [-2120.77, -201.38], [-2121.17, -199.95], [-2125.11, -199.8], [-2141.86, -199.09], [-2145.4, -200.61], [-2128.74, -204.43], [-2127.39, -205.38], [-2125.73, -207.18], [-2124.79, -209.82], [-2124.32, -212.27], [-2122.68, -214.14], [-2121.4, -214.4]], "holes": []}}, {"shape": {"outer": [[-2113.76, -215.11], [-2113.27, -207.87], [-2111.09, -205.81], [-2109.8, -203.78], [-2109.06, -200.64], [-2090.04, -202.07], [-2090.06, -203.3], [-2101.23, -203.03], [-2106.28, -206.89], [-2110.19, -209.86], [-2110.88, -213.62], [-2111.58, -214.51], [-2113.76, -215.11]], "holes": []}}, {"shape": {"outer": [[-2898.45, 16.96], [-2874.41, 16.26], [-2874.36, 11.89], [-2864.44, 11.76], [-2864.96, -4.02], [-2883.18, -3.41], [-2883.39, -8.43], [-2889.79, -7.81], [-2898.87, 8.79], [-2898.45, 16.96]], "holes": []}}, {"shape": {"outer": [[-2022.08, -11.7], [-2028.77, -15.42], [-2031.93, -15.48], [-2031.15, 9.07], [-2026.59, 8.92], [-2026.45, 12.47], [-2025.97, 13.3], [-2023.75, 15.68], [-2021.82, 15.64], [-2019.51, 15.43], [-2017.34, 12.97], [-2017.54, 11.95], [-2016.05, 8.86], [-2015.82, 7.92], [-2015.75, 6.82], [-2015.87, 5.84], [-2022.08, -11.7]], "holes": []}}, {"shape": {"outer": [[-1980.31, -14.45], [-1981.75, -25.45], [-1990.52, -24.12], [-1991.64, -23.3], [-1999.23, -12.75], [-1996.78, -3.33], [-1999.8, -2.4], [-1988.99, 31.99], [-1988.01, 31.76], [-1987.17, 31.22], [-1986.53, 30.16], [-1986.17, 28.44], [-1985.85, 27.14], [-1985.35, 24.57], [-1984.92, 21.14], [-1980.31, -14.45]], "holes": []}}, {"shape": {"outer": [[-1963.99, -85.04], [-1964.36, -96.79], [-1966.51, -97.84], [-1968.12, -99.07], [-1968.8, -100.68], [-1968.87, -102.0], [-1968.97, -104.91], [-1981.24, -104.4], [-1980.49, -84.4], [-1967.51, -84.9], [-1963.99, -85.04]], "holes": []}}, {"shape": {"outer": [[-1964.36, -96.79], [-1964.36, -100.02], [-1965.31, -101.07], [-1965.43, -103.1], [-1968.97, -104.91], [-1968.87, -102.0], [-1968.8, -100.68], [-1968.12, -99.07], [-1966.51, -97.84], [-1964.36, -96.79]], "holes": []}}, {"shape": {"outer": [[-2369.1, 65.66], [-2402.26, 66.58], [-2410.2, 79.01], [-2412.82, 81.21], [-2416.02, 82.94], [-2417.22, 83.0], [-2417.69, 81.75], [-2413.25, 67.45], [-2412.23, 61.28], [-2412.7, 54.7], [-2414.71, 50.21], [-2417.85, 46.91], [-2419.64, 45.93], [-2420.88, 44.76], [-2421.2, 43.29], [-2420.71, 42.08], [-2419.64, 41.77], [-2412.46, 40.81], [-2409.19, 40.16], [-2404.04, 40.97], [-2397.51, 44.01], [-2393.84, 46.14], [-2383.52, 52.67], [-2374.63, 59.59], [-2369.1, 65.66]], "holes": []}}, {"shape": {"outer": [[409.79, -3.24], [434.56, 18.72], [434.41, 19.38], [437.46, 20.86], [439.5, 23.28], [440.22, 23.38], [440.55, 22.85], [440.54, 17.57], [441.0, 11.21], [439.09, 10.61], [433.84, 8.63], [429.63, 5.93], [425.04, 3.31], [419.85, 1.42], [415.45, -0.55], [410.06, -3.51], [409.79, -3.24]], "holes": []}}, {"shape": {"outer": [[-1436.97, -411.02], [-1438.05, -450.97], [-1432.45, -458.43], [-1390.16, -460.61], [-1389.61, -456.65], [-1387.05, -453.61], [-1380.83, -451.1], [-1375.37, -452.12], [-1372.8, -453.53], [-1367.5, -448.68], [-1362.59, -443.23], [-1360.42, -440.41], [-1358.91, -437.64], [-1357.08, -433.86], [-1352.31, -428.0], [-1345.97, -422.23], [-1348.19, -421.43], [-1352.39, -421.41], [-1356.7, -421.29], [-1357.22, -418.86], [-1357.08, -415.11], [-1436.97, -411.02]], "holes": []}}, {"shape": {"outer": [[-1584.95, -3047.79], [-1592.34, -3060.83], [-1633.11, -3036.66], [-1633.26, -3034.62], [-1647.76, -3026.14], [-1647.63, -3010.26], [-1584.95, -3047.79]], "holes": []}}, {"shape": {"outer": [[-1579.52, -3051.41], [-1564.86, -3060.06], [-1565.71, -3062.94], [-1566.51, -3067.2], [-1565.7, -3072.61], [-1563.87, -3076.81], [-1559.88, -3081.88], [-1555.35, -3084.68], [-1550.71, -3086.29], [-1537.62, -3086.83], [-1538.35, -3088.52], [-1540.1, -3089.51], [-1581.24, -3087.45], [-1591.83, -3080.97], [-1592.71, -3079.34], [-1592.43, -3076.95], [-1586.06, -3065.6], [-1586.8, -3065.1], [-1579.52, -3051.41]], "holes": []}}, {"shape": {"outer": [[-955.39, -1115.78], [-953.32, -1115.01], [-941.39, -1104.23], [-940.46, -1101.02], [-941.3, -1097.93], [-996.75, -1034.59], [-1013.74, -1050.21], [-955.39, -1115.78]], "holes": []}}, {"shape": {"outer": [[-1491.3, -237.72], [-1448.2, -239.66], [-1447.2, -221.05], [-1490.61, -218.9], [-1491.3, -237.72]], "holes": []}}, {"shape": {"outer": [[-1430.32, -240.33], [-1429.46, -221.83], [-1385.69, -223.86], [-1386.55, -242.38], [-1430.32, -240.33]], "holes": []}}, {"shape": {"outer": [[1017.78, 923.17], [1000.41, 942.9], [1000.55, 944.63], [1020.0, 962.95], [1017.78, 923.17]], "holes": []}}, {"shape": {"outer": [[1463.87, 1328.94], [1468.65, 1368.34], [1446.55, 1347.43], [1463.87, 1328.94]], "holes": []}}, {"shape": {"outer": [[1831.7, 594.46], [1850.27, 602.76], [1860.68, 590.03], [1844.45, 581.3], [1831.7, 594.46]], "holes": []}}, {"shape": {"outer": [[168.06, 953.21], [153.66, 968.43], [141.44, 956.65], [155.62, 941.92], [168.06, 953.21]], "holes": []}}, {"shape": {"outer": [[1314.66, 269.61], [1327.6, 253.23], [1341.2, 263.46], [1328.18, 277.69], [1321.84, 276.21], [1314.66, 269.61]], "holes": []}}, {"shape": {"outer": [[1502.77, 361.08], [1494.76, 369.54], [1504.23, 378.56], [1512.68, 369.66], [1502.77, 361.08]], "holes": []}}, {"shape": {"outer": [[1666.55, 495.91], [1674.6, 488.35], [1668.58, 484.39], [1662.12, 491.57], [1666.55, 495.91]], "holes": []}}, {"shape": {"outer": [[2015.97, 711.92], [2022.13, 705.01], [2014.67, 699.72], [2008.79, 707.0], [2015.97, 711.92]], "holes": []}}, {"shape": {"outer": [[285.02, 1118.96], [270.78, 1133.04], [263.56, 1125.05], [278.69, 1111.64], [285.02, 1118.96]], "holes": []}}, {"shape": {"outer": [[-1393.01, 11.01], [-1394.41, -19.41], [-1397.45, -19.27], [-1397.56, -21.6], [-1402.36, -21.39], [-1401.23, 3.2], [-1400.85, 11.37], [-1393.01, 11.01]], "holes": []}}, {"shape": {"outer": [[-1404.14, 4.71], [-1405.29, -21.37], [-1416.64, -20.8], [-1418.12, -18.67], [-1419.53, -17.19], [-1404.14, 4.71]], "holes": []}}, {"shape": {"outer": [[-1405.24, 11.12], [-1405.32, 8.35], [-1422.01, -15.42], [-1425.19, -14.11], [-1428.73, -13.6], [-1432.04, -13.93], [-1434.16, -14.59], [-1449.31, 13.04], [-1405.24, 11.12]], "holes": []}}, {"shape": {"outer": [[-1405.4, -24.34], [-1405.93, -33.6], [-1415.93, -33.08], [-1415.21, -30.87], [-1414.88, -26.66], [-1415.34, -23.97], [-1405.4, -24.34]], "holes": []}}, {"shape": {"outer": [[-1450.69, 2.58], [-1447.06, 2.45], [-1436.82, -16.28], [-1437.97, -16.99], [-1439.0, -17.91], [-1439.71, -18.67], [-1440.32, -19.47], [-1451.66, -19.07], [-1450.69, 2.58]], "holes": []}}, {"shape": {"outer": [[-1471.09, 9.29], [-1472.16, -14.75], [-1470.27, -14.77], [-1470.4, -18.23], [-1470.45, -19.06], [-1472.58, -18.99], [-1473.17, -19.34], [-1477.48, -19.14], [-1476.36, 7.03], [-1475.22, 6.97], [-1475.08, 9.47], [-1471.09, 9.29]], "holes": []}}, {"shape": {"outer": [[-1474.44, -60.55], [-1477.01, -60.47], [-1479.49, -60.36], [-1478.22, -31.74], [-1473.67, -31.92], [-1471.15, -32.0], [-1471.19, -33.34], [-1471.28, -36.69], [-1473.34, -36.62], [-1474.44, -60.55]], "holes": []}}, {"shape": {"outer": [[-1455.0, -21.89], [-1455.37, -31.01], [-1463.31, -30.68], [-1462.95, -21.56], [-1455.0, -21.89]], "holes": []}}, {"shape": {"outer": [[-1442.11, -22.52], [-1451.85, -22.11], [-1452.2, -31.31], [-1442.49, -31.7], [-1443.03, -28.89], [-1443.07, -26.97], [-1442.83, -25.0], [-1442.11, -22.52]], "holes": []}}, {"shape": {"outer": [[-1441.28, -34.57], [-1440.46, -35.85], [-1439.57, -36.96], [-1438.56, -38.0], [-1450.17, -55.72], [-1451.29, -56.04], [-1451.96, -55.17], [-1451.65, -43.77], [-1452.75, -42.38], [-1452.37, -34.18], [-1441.28, -34.57]], "holes": []}}, {"shape": {"outer": [[-1434.9, -40.44], [-1433.01, -41.15], [-1429.38, -41.73], [-1425.62, -41.34], [-1423.62, -40.7], [-1416.01, -54.24], [-1415.65, -56.51], [-1414.12, -59.17], [-1414.91, -59.74], [-1413.85, -61.71], [-1414.32, -61.98], [-1412.98, -64.1], [-1412.97, -65.4], [-1414.63, -66.42], [-1415.54, -65.71], [-1416.77, -65.74], [-1417.6, -66.49], [-1417.76, -67.48], [-1421.33, -68.24], [-1422.09, -67.96], [-1423.04, -67.96], [-1424.09, -68.49], [-1426.66, -66.81], [-1428.9, -66.0], [-1431.55, -65.77], [-1434.61, -66.3], [-1437.98, -67.93], [-1443.16, -66.4], [-1443.51, -65.67], [-1444.33, -65.09], [-1445.16, -64.98], [-1446.07, -65.21], [-1447.71, -64.15], [-1448.33, -63.3], [-1448.25, -62.46], [-1445.74, -58.18], [-1446.36, -57.68], [-1446.0, -56.6], [-1434.9, -40.44]], "holes": []}}, {"shape": {"outer": [[-1406.1, -36.54], [-1407.0, -54.8], [-1407.75, -56.17], [-1407.94, -57.45], [-1408.16, -58.04], [-1408.91, -58.44], [-1409.87, -58.24], [-1412.04, -54.25], [-1413.54, -52.75], [-1420.69, -39.07], [-1418.95, -37.59], [-1417.62, -36.04], [-1406.1, -36.54]], "holes": []}}, {"shape": {"outer": [[-1403.08, -36.69], [-1398.4, -36.89], [-1398.52, -39.72], [-1395.87, -39.84], [-1396.59, -64.75], [-1402.16, -64.58], [-1402.11, -62.26], [-1403.75, -62.15], [-1403.68, -55.67], [-1404.07, -54.87], [-1403.08, -36.69]], "holes": []}}, {"shape": {"outer": [[-3055.16, 27.02], [-3055.9, 1.25], [-3057.11, -0.59], [-3071.96, -5.62], [-3071.66, -7.35], [-3073.48, -8.02], [-3073.07, -3.86], [-3066.9, 27.65], [-3055.16, 27.02]], "holes": []}}, {"shape": {"outer": [[-1434.22, 127.66], [-1434.36, 128.08], [-1434.37, 128.48], [-1434.35, 128.92], [-1434.27, 129.34], [-1434.04, 129.8], [-1433.66, 130.23], [-1432.75, 131.14], [-1431.7, 131.94], [-1430.69, 132.53], [-1429.59, 133.01], [-1427.97, 133.46], [-1426.28, 133.73], [-1424.35, 133.86], [-1422.58, 133.61], [-1421.38, 133.32], [-1420.17, 132.92], [-1418.94, 132.09], [-1418.26, 131.31], [-1417.86, 130.23], [-1417.83, 129.29], [-1418.01, 128.19], [-1418.37, 127.41], [-1418.92, 126.77], [-1419.61, 126.3], [-1419.81, 126.52], [-1420.34, 126.2], [-1420.67, 125.99], [-1421.09, 125.79], [-1421.56, 125.57], [-1422.18, 125.35], [-1422.76, 125.16], [-1423.36, 124.95], [-1424.07, 124.77], [-1424.83, 124.65], [-1425.77, 124.51], [-1426.76, 124.45], [-1427.75, 124.45], [-1428.61, 124.52], [-1429.6, 124.64], [-1430.48, 124.86], [-1431.3, 125.21], [-1432.05, 125.67], [-1432.84, 126.21], [-1433.65, 126.94], [-1433.97, 127.29], [-1434.22, 127.66]], "holes": []}}, {"shape": {"outer": [[-1437.25, 55.96], [-1436.54, 64.29], [-1435.25, 63.67], [-1433.5, 63.13], [-1431.3, 62.68], [-1429.4, 62.52], [-1427.62, 62.56], [-1429.44, 55.57], [-1437.25, 55.96]], "holes": []}}, {"shape": {"outer": [[-1425.51, 54.99], [-1419.3, 74.92], [-1418.09, 75.76], [-1416.89, 76.65], [-1416.16, 76.03], [-1416.41, 70.71], [-1414.7, 70.7], [-1415.07, 61.12], [-1415.38, 54.3], [-1425.51, 54.99]], "holes": []}}, {"shape": {"outer": [[-1399.48, 31.92], [-1399.31, 32.82], [-1399.08, 33.66], [-1398.73, 34.8], [-1398.27, 35.86], [-1397.75, 36.88], [-1396.89, 38.07], [-1395.96, 39.06], [-1394.78, 40.04], [-1393.51, 40.73], [-1392.17, 41.29], [-1390.97, 41.7], [-1389.52, 41.96], [-1388.09, 41.98], [-1386.39, 41.9], [-1384.8, 41.68], [-1383.21, 41.01], [-1381.81, 40.22], [-1380.33, 39.14], [-1378.63, 37.69], [-1377.53, 36.58], [-1376.69, 35.38], [-1376.04, 34.41], [-1375.61, 33.26], [-1375.36, 32.15], [-1375.22, 30.88], [-1399.48, 31.92]], "holes": []}}, {"shape": {"outer": [[-1412.06, 117.37], [-1409.41, 116.58], [-1406.77, 115.79], [-1408.12, 111.47], [-1406.91, 111.15], [-1405.67, 111.0], [-1404.0, 110.89], [-1402.35, 111.09], [-1400.79, 111.41], [-1399.24, 111.89], [-1397.98, 112.4], [-1396.76, 113.09], [-1396.09, 113.49], [-1395.33, 114.04], [-1394.64, 114.67], [-1393.89, 115.39], [-1393.24, 116.16], [-1392.65, 116.95], [-1392.01, 117.85], [-1391.49, 118.76], [-1390.78, 120.02], [-1390.02, 121.24], [-1389.31, 122.41], [-1388.71, 123.34], [-1388.08, 124.22], [-1387.52, 125.04], [-1386.91, 125.83], [-1386.37, 126.47], [-1385.74, 127.11], [-1389.1, 130.76], [-1389.64, 129.98], [-1390.25, 129.23], [-1390.83, 128.51], [-1391.55, 127.79], [-1392.17, 127.27], [-1392.8, 126.82], [-1393.48, 126.36], [-1394.2, 125.96], [-1395.05, 125.52], [-1395.95, 125.13], [-1396.83, 124.79], [-1397.74, 124.54], [-1398.75, 124.31], [-1399.75, 124.17], [-1400.82, 124.07], [-1401.8, 124.0], [-1402.82, 124.02], [-1403.99, 124.19], [-1404.99, 124.35], [-1405.8, 124.54], [-1406.51, 124.8], [-1407.68, 125.26], [-1408.59, 125.62], [-1409.3, 125.96], [-1410.0, 126.37], [-1410.64, 126.8], [-1411.22, 127.24], [-1411.82, 127.74], [-1412.43, 128.32], [-1412.97, 128.88], [-1413.44, 129.46], [-1413.86, 129.99], [-1414.25, 130.52], [-1414.62, 130.96], [-1415.0, 131.39], [-1415.44, 131.83], [-1416.01, 132.4], [-1416.73, 132.93], [-1417.3, 133.35], [-1417.94, 133.74], [-1418.73, 134.24], [-1419.59, 134.67], [-1420.42, 135.02], [-1421.28, 135.34], [-1421.97, 135.59], [-1422.78, 135.79], [-1423.59, 135.97], [-1424.4, 136.12], [-1425.16, 136.21], [-1425.92, 136.27], [-1426.82, 136.34], [-1427.79, 136.27], [-1428.56, 136.13], [-1429.33, 135.96], [-1430.39, 135.65], [-1431.4, 135.3], [-1432.28, 134.85], [-1433.02, 134.43], [-1433.72, 133.96], [-1433.66, 130.23], [-1432.75, 131.14], [-1431.7, 131.94], [-1430.69, 132.53], [-1429.59, 133.01], [-1427.97, 133.46], [-1426.28, 133.73], [-1424.35, 133.86], [-1422.58, 133.61], [-1421.38, 133.32], [-1420.17, 132.92], [-1418.94, 132.09], [-1418.26, 131.31], [-1417.86, 130.23], [-1417.83, 129.29], [-1418.01, 128.19], [-1418.37, 127.41], [-1418.92, 126.77], [-1419.61, 126.3], [-1419.22, 125.97], [-1420.41, 125.23], [-1422.1, 124.45], [-1423.7, 123.97], [-1425.42, 123.68], [-1427.21, 123.63], [-1428.9, 123.8], [-1430.34, 124.04], [-1431.72, 124.41], [-1432.94, 124.88], [-1433.99, 125.47], [-1434.27, 115.14], [-1433.48, 115.12], [-1432.58, 115.1], [-1431.7, 115.1], [-1430.83, 115.16], [-1429.97, 115.26], [-1429.14, 115.37], [-1428.31, 115.48], [-1427.69, 115.58], [-1427.53, 115.0], [-1428.96, 114.76], [-1430.64, 114.51], [-1431.58, 114.44], [-1432.54, 114.41], [-1433.6, 114.42], [-1434.21, 114.43], [-1434.25, 112.25], [-1432.95, 112.22], [-1431.24, 112.3], [-1429.72, 112.43], [-1428.25, 112.74], [-1427.05, 113.04], [-1425.73, 113.37], [-1424.41, 113.74], [-1422.96, 114.06], [-1421.82, 114.26], [-1420.66, 114.35], [-1419.53, 114.36], [-1418.33, 114.29], [-1417.03, 114.17], [-1415.61, 114.0], [-1414.17, 113.79], [-1413.12, 113.61], [-1412.06, 117.37]], "holes": []}}, {"shape": {"outer": [[-1386.98, 132.45], [-1385.46, 137.04], [-1383.57, 137.01], [-1381.7, 137.11], [-1379.31, 137.48], [-1376.89, 137.94], [-1371.32, 139.06], [-1365.51, 139.82], [-1363.36, 139.94], [-1363.56, 136.51], [-1365.93, 136.35], [-1368.84, 136.02], [-1371.79, 135.36], [-1374.97, 134.35], [-1377.3, 133.23], [-1379.6, 132.01], [-1381.71, 130.58], [-1383.85, 129.0], [-1386.98, 132.45]], "holes": []}}, {"shape": {"outer": [[-1389.4, 117.64], [-1388.26, 119.69], [-1387.05, 121.72], [-1385.42, 123.96], [-1384.07, 125.51], [-1382.53, 126.98], [-1380.84, 128.38], [-1378.92, 129.68], [-1376.84, 130.91], [-1372.81, 132.54], [-1369.94, 133.32], [-1367.39, 133.82], [-1363.68, 134.14], [-1363.72, 132.7], [-1365.15, 132.5], [-1366.57, 132.24], [-1368.04, 131.88], [-1369.48, 131.4], [-1370.56, 130.93], [-1371.6, 130.41], [-1372.8, 129.72], [-1373.39, 129.37], [-1373.99, 128.99], [-1374.56, 128.58], [-1375.08, 128.15], [-1375.61, 127.61], [-1376.05, 127.05], [-1376.47, 126.48], [-1376.72, 125.92], [-1376.9, 125.4], [-1376.98, 124.84], [-1377.0, 124.29], [-1376.98, 123.8], [-1376.93, 123.3], [-1376.84, 122.83], [-1376.73, 122.33], [-1376.54, 121.81], [-1376.27, 121.28], [-1375.9, 120.77], [-1375.36, 120.28], [-1374.71, 119.93], [-1373.98, 119.68], [-1373.25, 119.57], [-1372.61, 119.55], [-1371.99, 119.61], [-1371.36, 119.71], [-1370.77, 119.85], [-1370.26, 120.01], [-1369.61, 120.26], [-1369.02, 120.53], [-1368.36, 120.88], [-1367.77, 121.29], [-1367.21, 121.79], [-1366.77, 122.31], [-1366.37, 122.85], [-1366.06, 123.33], [-1365.74, 123.87], [-1365.5, 124.29], [-1365.29, 124.7], [-1365.05, 125.16], [-1364.92, 125.48], [-1364.77, 125.83], [-1362.75, 125.79], [-1362.35, 124.97], [-1362.07, 124.32], [-1361.81, 123.56], [-1361.61, 122.72], [-1361.53, 122.12], [-1361.52, 121.59], [-1361.58, 120.89], [-1361.63, 120.32], [-1361.68, 119.79], [-1361.75, 119.35], [-1361.83, 118.88], [-1361.94, 118.38], [-1362.15, 117.79], [-1362.32, 117.26], [-1362.64, 116.58], [-1363.02, 115.88], [-1363.58, 115.11], [-1364.29, 114.31], [-1364.67, 113.9], [-1365.1, 113.53], [-1365.72, 112.93], [-1366.34, 112.44], [-1366.96, 111.96], [-1367.65, 111.56], [-1368.48, 111.21], [-1369.33, 110.98], [-1370.19, 110.78], [-1371.04, 110.65], [-1371.81, 110.56], [-1372.59, 110.59], [-1373.37, 110.65], [-1374.13, 110.84], [-1374.91, 111.17], [-1375.61, 111.53], [-1376.46, 112.01], [-1377.3, 112.5], [-1378.12, 112.96], [-1378.92, 113.45], [-1379.69, 113.9], [-1380.47, 114.35], [-1381.16, 114.76], [-1382.14, 115.28], [-1383.26, 115.79], [-1384.72, 116.32], [-1386.14, 116.84], [-1387.89, 117.33], [-1389.4, 117.64]], "holes": []}}, {"shape": {"outer": [[-1466.4, 35.25], [-1464.61, 35.17], [-1464.43, 39.17], [-1466.22, 39.24], [-1466.4, 35.25]], "holes": []}}, {"shape": {"outer": [[-1481.02, 35.92], [-1482.24, 35.97], [-1482.01, 40.99], [-1480.79, 40.93], [-1481.02, 35.92]], "holes": []}}, {"shape": {"outer": [[-1442.05, 48.47], [-1454.6, 48.9], [-1454.45, 53.53], [-1450.89, 53.4], [-1450.99, 50.27], [-1445.85, 50.1], [-1445.77, 52.94], [-1441.91, 52.81], [-1442.05, 48.47]], "holes": []}}, {"shape": {"outer": [[-1389.14, 109.55], [-1389.3, 110.26], [-1389.29, 110.93], [-1389.14, 111.58], [-1388.8, 112.23], [-1388.29, 112.64], [-1387.33, 113.01], [-1386.27, 113.0], [-1386.1, 114.04], [-1384.49, 113.59], [-1384.58, 112.57], [-1383.89, 111.99], [-1383.31, 111.32], [-1383.07, 110.69], [-1383.09, 109.98], [-1383.24, 109.44], [-1383.49, 108.94], [-1383.93, 108.37], [-1384.5, 107.92], [-1385.25, 107.58], [-1386.07, 107.45], [-1386.89, 107.53], [-1387.67, 107.81], [-1388.31, 108.28], [-1388.82, 108.89], [-1389.14, 109.55]], "holes": []}}, {"shape": {"outer": [[-1398.37, 86.32], [-1394.69, 86.29], [-1394.04, 98.72], [-1395.34, 99.69], [-1395.99, 101.33], [-1395.77, 102.9], [-1395.08, 103.86], [-1393.61, 104.74], [-1392.33, 104.91], [-1391.03, 104.62], [-1389.99, 103.8], [-1389.61, 102.91], [-1388.96, 102.87], [-1388.68, 103.42], [-1388.24, 103.8], [-1387.58, 103.97], [-1386.92, 103.75], [-1386.49, 103.3], [-1386.36, 102.73], [-1380.08, 102.38], [-1379.9, 102.91], [-1379.48, 103.26], [-1378.76, 103.42], [-1378.16, 103.25], [-1377.7, 102.83], [-1377.51, 102.23], [-1371.6, 101.91], [-1371.34, 102.46], [-1370.84, 102.88], [-1370.13, 103.02], [-1369.45, 102.8], [-1369.04, 102.34], [-1368.91, 101.75], [-1368.32, 101.73], [-1367.7, 102.56], [-1366.64, 103.23], [-1365.38, 103.55], [-1364.22, 103.26], [-1363.2, 102.77], [-1362.54, 102.03], [-1362.3, 101.15], [-1361.95, 100.2], [-1362.33, 98.98], [-1363.45, 97.55], [-1358.1, 97.35], [-1358.13, 92.65], [-1351.96, 92.33], [-1352.11, 93.68], [-1352.05, 95.21], [-1351.7, 96.92], [-1351.08, 98.55], [-1356.5, 103.69], [-1360.51, 107.31], [-1361.76, 107.68], [-1362.94, 108.23], [-1364.29, 108.9], [-1365.43, 109.66], [-1366.0, 109.71], [-1366.54, 109.66], [-1367.81, 109.07], [-1369.37, 108.65], [-1370.92, 108.31], [-1372.4, 108.23], [-1373.4, 108.28], [-1374.39, 108.45], [-1375.56, 108.75], [-1376.63, 109.19], [-1377.74, 109.68], [-1379.12, 110.37], [-1380.85, 111.5], [-1382.69, 112.55], [-1384.49, 113.59], [-1384.58, 112.57], [-1383.89, 111.99], [-1383.31, 111.32], [-1383.07, 110.69], [-1383.09, 109.98], [-1383.24, 109.44], [-1383.49, 108.94], [-1383.93, 108.37], [-1384.5, 107.92], [-1385.25, 107.58], [-1386.07, 107.45], [-1386.89, 107.53], [-1387.67, 107.81], [-1388.31, 108.28], [-1388.82, 108.89], [-1389.14, 109.55], [-1389.3, 110.26], [-1389.29, 110.93], [-1389.14, 111.58], [-1388.8, 112.23], [-1388.29, 112.64], [-1387.33, 113.01], [-1386.27, 113.0], [-1386.1, 114.04], [-1387.75, 114.42], [-1389.57, 114.69], [-1390.48, 114.83], [-1390.97, 114.74], [-1391.44, 114.51], [-1392.53, 113.24], [-1395.49, 111.11], [-1399.06, 109.41], [-1402.02, 108.48], [-1402.18, 104.32], [-1397.85, 104.24], [-1398.37, 86.32]], "holes": []}}, {"shape": {"outer": [[-1515.79, 38.38], [-1511.73, 38.2], [-1511.51, 42.97], [-1511.24, 49.17], [-1515.3, 49.36], [-1515.79, 38.38]], "holes": []}}, {"shape": {"outer": [[-1416.16, 76.03], [-1407.51, 75.6], [-1406.43, 75.56], [-1404.72, 108.35], [-1406.99, 108.48], [-1408.86, 108.86], [-1412.1, 98.58], [-1411.26, 97.5], [-1410.56, 96.35], [-1410.06, 95.16], [-1409.67, 93.95], [-1409.36, 92.4], [-1409.26, 90.9], [-1409.33, 89.44], [-1409.6, 88.02], [-1410.02, 86.55], [-1410.63, 85.07], [-1409.3, 84.9], [-1408.5, 84.38], [-1408.06, 83.73], [-1407.81, 82.76], [-1407.91, 81.83], [-1408.27, 80.87], [-1408.83, 80.04], [-1409.74, 79.59], [-1410.75, 79.41], [-1411.91, 79.8], [-1412.63, 80.31], [-1412.96, 80.72], [-1413.91, 79.5], [-1414.86, 78.45], [-1415.84, 77.52], [-1416.89, 76.65], [-1416.16, 76.03]], "holes": []}}, {"shape": {"outer": [[-1418.25, 77.89], [-1412.4, 97.03], [-1411.78, 95.86], [-1411.3, 94.77], [-1410.91, 93.27], [-1410.68, 91.87], [-1410.75, 90.41], [-1410.89, 89.03], [-1411.09, 87.59], [-1411.46, 86.2], [-1412.07, 84.72], [-1412.86, 83.26], [-1413.91, 81.72], [-1414.5, 81.08], [-1415.11, 80.5], [-1415.89, 79.77], [-1416.67, 79.1], [-1417.45, 78.47], [-1418.25, 77.89]], "holes": []}}, {"shape": {"outer": [[-1468.35, -18.25], [-1466.79, -9.87], [-1467.48, -8.41], [-1467.93, -6.62], [-1468.17, -4.89], [-1468.02, -3.18], [-1467.6, -1.04], [-1464.53, 6.45], [-1463.54, 11.09], [-1463.17, 13.81], [-1459.28, 13.61], [-1456.52, 10.07], [-1454.75, 7.42], [-1453.65, 4.79], [-1454.86, -18.78], [-1468.35, -18.25]], "holes": []}}, {"shape": {"outer": [[-1471.09, 9.29], [-1466.88, 9.13], [-1466.76, 11.56], [-1466.65, 14.13], [-1463.17, 13.81], [-1463.54, 11.09], [-1464.53, 6.45], [-1467.6, -1.04], [-1468.02, -3.18], [-1468.17, -4.89], [-1467.93, -6.62], [-1467.48, -8.41], [-1466.79, -9.87], [-1468.35, -18.25], [-1470.4, -18.23], [-1470.27, -14.77], [-1472.16, -14.75], [-1471.09, 9.29]], "holes": []}}, {"shape": {"outer": [[-1466.11, -46.26], [-1466.13, -49.52], [-1459.15, -50.69], [-1456.39, -51.65], [-1456.8, -62.11], [-1458.58, -64.05], [-1460.98, -65.32], [-1464.54, -64.84], [-1466.8, -62.87], [-1467.39, -60.84], [-1471.39, -60.67], [-1474.44, -60.55], [-1473.34, -36.62], [-1471.28, -36.69], [-1471.19, -33.34], [-1464.34, -33.76], [-1466.11, -46.26]], "holes": []}}, {"shape": {"outer": [[-1657.0, 73.18], [-1656.17, 71.73], [-1668.57, 72.73], [-1673.03, 72.94], [-1672.95, 75.7], [-1674.4, 75.73], [-1674.29, 79.02], [-1677.77, 79.2], [-1679.08, 79.81], [-1680.19, 81.26], [-1680.35, 84.47], [-1680.55, 89.01], [-1681.58, 93.42], [-1684.03, 97.45], [-1688.76, 102.95], [-1691.25, 105.58], [-1692.43, 108.0], [-1692.21, 109.65], [-1685.13, 122.98], [-1682.56, 125.72], [-1680.46, 126.97], [-1677.89, 126.98], [-1675.34, 126.24], [-1672.77, 123.78], [-1671.76, 121.44], [-1671.27, 117.49], [-1672.76, 89.18], [-1672.6, 85.11], [-1671.14, 81.46], [-1668.11, 77.72], [-1664.1, 74.95], [-1660.28, 73.72], [-1657.0, 73.18]], "holes": []}}, {"shape": {"outer": [[-1691.76, 79.07], [-1690.16, 79.34], [-1689.59, 79.65], [-1688.83, 80.07], [-1688.06, 81.01], [-1687.77, 81.76], [-1687.64, 82.54], [-1687.6, 88.1], [-1688.13, 90.02], [-1688.96, 91.94], [-1690.15, 93.51], [-1691.55, 94.97], [-1692.92, 96.24], [-1694.36, 97.41], [-1695.71, 98.14], [-1697.27, 98.32], [-1698.77, 98.2], [-1699.99, 97.63], [-1700.67, 97.0], [-1709.8, 85.73], [-1723.53, 71.43], [-1724.68, 69.29], [-1726.0, 66.11], [-1727.79, 59.1], [-1724.54, 58.47], [-1710.91, 58.02], [-1710.04, 58.85], [-1710.54, 59.43], [-1709.78, 60.33], [-1708.86, 61.4], [-1708.03, 60.85], [-1707.2, 61.89], [-1706.58, 63.41], [-1706.31, 64.98], [-1706.33, 66.54], [-1707.05, 66.6], [-1706.83, 69.16], [-1705.69, 69.09], [-1705.15, 70.06], [-1704.47, 70.95], [-1702.92, 72.23], [-1703.25, 73.09], [-1702.75, 73.54], [-1700.63, 73.95], [-1700.49, 72.64], [-1699.22, 72.62], [-1697.92, 72.82], [-1697.12, 73.04], [-1696.25, 73.51], [-1695.34, 74.3], [-1694.79, 75.34], [-1694.34, 76.43], [-1694.09, 77.52], [-1694.06, 78.87], [-1694.31, 80.24], [-1694.74, 81.33], [-1695.41, 82.22], [-1697.17, 83.55], [-1699.24, 84.4], [-1700.57, 84.72], [-1704.22, 84.78], [-1705.19, 85.16], [-1705.56, 86.18], [-1691.47, 85.54], [-1691.76, 79.07]], "holes": []}}, {"shape": {"outer": [[-1364.31, 46.4], [-1363.12, 46.31], [-1362.78, 40.6], [-1362.72, 38.9], [-1362.67, 37.7], [-1365.32, 37.74], [-1367.57, 30.41], [-1372.47, 30.52], [-1372.56, 32.27], [-1372.94, 33.99], [-1373.64, 35.69], [-1374.62, 37.21], [-1376.55, 39.34], [-1378.48, 41.13], [-1379.84, 42.21], [-1381.32, 43.24], [-1382.79, 44.26], [-1373.16, 43.94], [-1372.3, 43.51], [-1367.83, 43.43], [-1366.68, 43.77], [-1365.81, 44.47], [-1364.99, 45.47], [-1364.31, 46.4]], "holes": []}}, {"shape": {"outer": [[-1549.2, 42.13], [-1548.99, 46.29], [-1540.21, 45.85], [-1540.29, 44.18], [-1526.65, 43.49], [-1526.57, 45.18], [-1523.24, 45.01], [-1523.57, 38.53], [-1527.14, 38.71], [-1527.05, 40.54], [-1542.49, 41.31], [-1542.56, 39.8], [-1547.48, 40.04], [-1549.2, 42.13]], "holes": []}}, {"shape": {"outer": [[-1573.17, -64.17], [-1573.79, -64.14], [-1573.9, -65.14], [-1574.18, -65.74], [-1574.79, -66.5], [-1575.51, -66.86], [-1576.6, -67.09], [-1578.85, -66.94], [-1578.89, -67.36], [-1579.69, -67.3], [-1580.43, -66.98], [-1581.05, -66.41], [-1581.58, -65.72], [-1581.95, -64.96], [-1582.26, -64.11], [-1582.28, -61.11], [-1582.7, -55.55], [-1583.67, -50.4], [-1585.34, -45.78], [-1587.6, -42.13], [-1590.08, -39.33], [-1594.48, -36.76], [-1603.07, -34.86], [-1637.63, -28.43], [-1638.75, -28.07], [-1639.13, -27.79], [-1639.37, -27.42], [-1639.45, -27.17], [-1639.38, -26.97], [-1639.07, -26.68], [-1638.64, -26.43], [-1638.17, -26.22], [-1585.75, -7.63], [-1584.23, -6.98], [-1582.99, -6.07], [-1582.01, -5.06], [-1581.39, -3.85], [-1580.87, -2.38], [-1579.52, 2.25], [-1575.58, 21.72], [-1575.42, 21.97], [-1575.22, 22.23], [-1574.95, 22.46], [-1570.35, 22.26], [-1570.33, 18.4], [-1569.2, 18.35], [-1573.17, -64.17]], "holes": []}}, {"shape": {"outer": [[-1547.78, -61.71], [-1547.78, -62.67], [-1545.91, -65.05], [-1545.04, -66.59], [-1544.7, -67.9], [-1542.9, -67.97], [-1542.81, -65.65], [-1531.9, -66.14], [-1530.75, -66.07], [-1530.08, -65.51], [-1529.91, -64.75], [-1527.66, -64.85], [-1527.31, -65.99], [-1526.21, -66.96], [-1524.37, -67.14], [-1522.88, -66.99], [-1521.96, -65.9], [-1518.8, -66.02], [-1517.72, -65.48], [-1517.62, -62.95], [-1543.64, -61.9], [-1547.78, -61.71]], "holes": []}}, {"shape": {"outer": [[-1510.4, -63.51], [-1484.1, -64.78], [-1474.42, -65.26], [-1474.46, -66.06], [-1474.76, -66.04], [-1474.9, -67.15], [-1475.29, -67.65], [-1475.81, -68.03], [-1478.2, -67.93], [-1478.98, -67.43], [-1479.3, -66.58], [-1482.34, -66.41], [-1482.84, -67.18], [-1483.51, -67.6], [-1489.91, -67.37], [-1490.64, -67.16], [-1491.25, -66.75], [-1491.48, -65.97], [-1493.54, -65.88], [-1493.96, -66.88], [-1494.33, -67.14], [-1502.56, -66.87], [-1502.89, -66.54], [-1502.98, -66.0], [-1505.28, -65.91], [-1505.76, -67.09], [-1506.82, -67.67], [-1509.39, -67.55], [-1510.27, -66.77], [-1510.48, -65.86], [-1510.4, -63.51]], "holes": []}}, {"shape": {"outer": [[-1653.81, -22.41], [-1661.25, -4.82], [-1663.04, 0.55], [-1662.55, 6.48], [-1661.03, 15.75], [-1660.26, 22.99], [-1660.61, 28.38], [-1659.33, 28.57], [-1658.87, 27.72], [-1658.3, 27.84], [-1656.87, 29.8], [-1653.99, 30.25], [-1652.85, 29.87], [-1651.78, 23.57], [-1632.67, 22.69], [-1632.78, 20.96], [-1631.99, 20.91], [-1631.09, 20.85], [-1631.28, 18.33], [-1627.06, 18.21], [-1626.89, 17.57], [-1627.76, 2.68], [-1627.93, 1.24], [-1628.18, -0.09], [-1628.72, -1.12], [-1629.6, -2.45], [-1633.72, -6.75], [-1633.92, -7.58], [-1650.08, -23.04], [-1650.61, -23.36], [-1652.04, -23.21], [-1653.07, -22.87], [-1653.81, -22.41]], "holes": []}}, {"shape": {"outer": [[-1584.43, -1.64], [-1623.68, -0.18], [-1623.08, 14.98], [-1623.05, 15.89], [-1623.0, 17.4], [-1623.14, 18.06], [-1623.59, 18.07], [-1623.84, 17.35], [-1624.31, 0.71], [-1624.16, 0.24], [-1623.92, -0.24], [-1623.48, -0.66], [-1622.64, -1.1], [-1621.6, -1.35], [-1588.13, -3.09], [-1587.1, -3.13], [-1586.09, -3.01], [-1585.25, -2.74], [-1584.52, -2.32], [-1583.99, -1.82], [-1583.54, -1.16], [-1583.25, -0.55], [-1582.06, 3.92], [-1580.91, 8.56], [-1578.15, 22.61], [-1578.08, 23.32], [-1578.09, 24.05], [-1578.16, 24.89], [-1578.29, 25.81], [-1583.92, 26.06], [-1584.12, 21.97], [-1588.34, 22.17], [-1588.86, 13.36], [-1583.76, 13.2], [-1584.43, -1.64]], "holes": []}}, {"shape": {"outer": [[-1581.91, 52.33], [-1576.87, 52.32], [-1576.56, 50.76], [-1577.75, 32.94], [-1583.62, 33.17], [-1583.41, 37.01], [-1587.57, 37.21], [-1587.09, 46.27], [-1582.11, 46.15], [-1581.91, 52.33]], "holes": []}}, {"shape": {"outer": [[-1574.28, 36.12], [-1573.81, 51.2], [-1575.13, 59.86], [-1574.94, 63.82], [-1573.07, 63.04], [-1570.9, 61.41], [-1569.44, 59.4], [-1568.35, 57.27], [-1567.69, 55.18], [-1567.52, 52.01], [-1567.43, 47.92], [-1567.84, 39.5], [-1569.39, 39.57], [-1569.5, 35.92], [-1574.28, 36.12]], "holes": []}}, {"shape": {"outer": [[-1620.81, 62.67], [-1621.2, 62.69], [-1620.91, 64.03], [-1620.39, 65.26], [-1619.7, 66.43], [-1618.78, 67.43], [-1617.8, 67.82], [-1577.91, 66.07], [-1578.25, 60.38], [-1577.49, 54.58], [-1581.77, 54.55], [-1581.38, 60.91], [-1620.81, 62.67]], "holes": []}}, {"shape": {"outer": [[-1569.86, -68.04], [-1568.62, -42.79], [-1567.6, -42.84], [-1567.04, -42.87], [-1568.28, -68.14], [-1568.7, -68.3], [-1569.53, -68.24], [-1569.86, -68.04]], "holes": []}}, {"shape": {"outer": [[-1570.22, -74.74], [-1571.18, -93.17], [-1571.38, -97.1], [-1571.85, -106.13], [-1572.5, -118.44], [-1571.75, -118.48], [-1571.02, -118.51], [-1568.75, -74.78], [-1569.16, -74.56], [-1569.79, -74.53], [-1570.22, -74.74]], "holes": []}}, {"shape": {"outer": [[-1552.67, -126.55], [-1551.67, -103.66], [-1543.76, -104.08], [-1544.78, -123.53], [-1546.66, -126.85], [-1552.67, -126.55]], "holes": []}}, {"shape": {"outer": [[-1544.35, -89.81], [-1548.81, -83.84], [-1548.77, -82.48], [-1546.66, -82.58], [-1502.75, -84.61], [-1502.83, -87.04], [-1502.99, -91.85], [-1544.35, -89.81]], "holes": []}}, {"shape": {"outer": [[-1548.77, -82.48], [-1548.78, -82.16], [-1548.8, -81.72], [-1547.66, -80.69], [-1546.01, -78.94], [-1545.22, -77.35], [-1544.62, -77.16], [-1543.45, -77.23], [-1543.26, -77.72], [-1543.38, -79.67], [-1532.81, -80.13], [-1532.08, -80.82], [-1532.1, -82.25], [-1522.16, -82.64], [-1521.83, -81.98], [-1521.16, -81.34], [-1520.31, -80.94], [-1519.07, -81.1], [-1518.37, -81.73], [-1518.05, -82.25], [-1518.02, -82.85], [-1511.67, -83.1], [-1511.39, -82.36], [-1510.98, -81.8], [-1510.13, -81.32], [-1504.33, -81.59], [-1503.3, -82.2], [-1502.75, -83.07], [-1502.75, -84.61], [-1546.66, -82.58], [-1548.77, -82.48]], "holes": []}}, {"shape": {"outer": [[-1467.26, -128.93], [-1468.6, -128.87], [-1469.09, -140.14], [-1484.3, -139.48], [-1482.29, -93.4], [-1481.94, -85.79], [-1468.05, -86.39], [-1468.11, -87.57], [-1468.15, -88.24], [-1468.17, -89.75], [-1468.29, -92.15], [-1465.01, -92.29], [-1465.18, -96.09], [-1465.83, -96.06], [-1467.26, -128.93]], "holes": []}}, {"shape": {"outer": [[-1456.39, -51.65], [-1459.15, -50.69], [-1466.13, -49.52], [-1466.11, -46.26], [-1464.34, -33.76], [-1455.42, -34.13], [-1456.39, -51.65]], "holes": []}}, {"shape": {"outer": [[-1487.89, -59.9], [-1482.48, -60.12], [-1481.28, -30.39], [-1482.79, -30.32], [-1483.99, -57.52], [-1487.78, -57.35], [-1487.89, -59.9]], "holes": []}}, {"shape": {"outer": [[-1495.72, 10.67], [-1495.83, 9.09], [-1490.35, 8.84], [-1490.4, 7.7], [-1481.12, 7.29], [-1482.36, -19.97], [-1480.6, -20.0], [-1479.14, 9.78], [-1481.02, 9.87], [-1495.72, 10.67]], "holes": []}}, {"shape": {"outer": [[-1442.27, -91.07], [-1453.78, -90.53], [-1453.89, -92.72], [-1445.82, -93.1], [-1445.99, -96.82], [-1444.74, -96.88], [-1444.97, -101.72], [-1443.39, -101.78], [-1443.41, -102.34], [-1442.8, -102.37], [-1442.27, -91.07]], "holes": []}}, {"shape": {"outer": [[-1421.05, -101.01], [-1420.33, -88.79], [-1417.45, -88.94], [-1417.32, -90.27], [-1416.42, -91.52], [-1414.99, -91.99], [-1413.89, -92.63], [-1412.89, -93.4], [-1412.61, -94.37], [-1412.65, -95.23], [-1413.79, -95.16], [-1413.93, -97.54], [-1415.98, -97.49], [-1418.0, -99.02], [-1420.02, -101.4], [-1421.74, -104.9], [-1422.43, -106.33], [-1422.9, -106.27], [-1422.71, -101.0], [-1421.05, -101.01]], "holes": []}}, {"shape": {"outer": [[-1422.08, -110.94], [-1421.34, -111.57], [-1420.53, -111.74], [-1419.75, -111.33], [-1419.1, -107.61], [-1418.05, -106.45], [-1416.72, -106.12], [-1415.73, -106.46], [-1415.43, -100.44], [-1416.54, -99.88], [-1417.71, -100.57], [-1419.52, -103.21], [-1421.05, -106.51], [-1421.96, -109.29], [-1422.08, -110.94]], "holes": []}}, {"shape": {"outer": [[-1556.24, -49.3], [-1553.69, 2.95], [-1551.65, 2.85], [-1554.19, -49.4], [-1556.24, -49.3]], "holes": []}}, {"shape": {"outer": [[-1447.47, -145.46], [-1448.0, -157.11], [-1463.12, -156.41], [-1484.21, -155.44], [-1483.66, -143.77], [-1447.47, -145.46]], "holes": []}}, {"shape": {"outer": [[370.24, -70.81], [341.68, -97.43], [348.61, -105.14], [356.09, -98.29], [359.46, -102.4], [376.91, -77.94], [375.83, -76.87], [371.44, -72.1], [370.24, -70.81]], "holes": []}}, {"shape": {"outer": [[-1310.78, -972.91], [-1316.53, -969.51], [-1322.69, -966.8], [-1329.48, -970.58], [-1331.93, -977.47], [-1333.63, -985.99], [-1333.65, -991.92], [-1333.61, -995.63], [-1330.71, -1002.81], [-1328.17, -1006.17], [-1323.85, -1011.26], [-1316.75, -1015.73], [-1310.5, -1016.73], [-1302.76, -1016.96], [-1291.36, -1011.41], [-1286.92, -1007.16], [-1282.75, -999.59], [-1281.7, -994.72], [-1281.31, -985.6], [-1282.87, -979.8], [-1285.78, -972.72], [-1292.63, -976.74], [-1298.96, -977.37], [-1305.43, -976.5], [-1310.78, -972.91]], "holes": []}}, {"shape": {"outer": [[-923.55, -73.79], [-921.93, -75.47], [-920.83, -74.74], [-918.87, -74.26], [-916.86, -74.5], [-915.07, -75.47], [-913.5, -73.86], [-914.48, -73.0], [-915.41, -72.5], [-916.34, -72.23], [-917.68, -71.97], [-918.97, -71.98], [-920.26, -72.17], [-921.5, -72.52], [-922.57, -73.0], [-923.55, -73.79]], "holes": []}}, {"shape": {"outer": [[-911.69, -75.15], [-913.76, -76.99], [-913.07, -78.89], [-913.11, -80.9], [-913.88, -82.77], [-913.89, -83.09], [-913.64, -83.52], [-913.23, -83.95], [-912.68, -84.21], [-912.05, -84.28], [-911.45, -84.03], [-910.9, -83.13], [-910.61, -82.22], [-910.28, -80.89], [-910.24, -79.61], [-910.39, -78.31], [-910.69, -77.06], [-911.13, -75.98], [-911.69, -75.15]], "holes": []}}, {"shape": {"outer": [[-921.13, -86.79], [-920.37, -85.01], [-922.03, -84.1], [-923.27, -82.7], [-923.98, -80.96], [-925.89, -80.8], [-926.2, -81.17], [-921.13, -86.79]], "holes": []}}, {"shape": {"outer": [[-927.41, -79.83], [-925.85, -79.16], [-924.4, -79.26], [-924.17, -77.95], [-923.15, -76.21], [-927.05, -72.39], [-927.8, -73.22], [-928.76, -74.0], [-929.39, -74.46], [-930.0, -74.53], [-930.61, -74.28], [-931.62, -73.22], [-932.82, -74.2], [-927.41, -79.83]], "holes": []}}, {"shape": {"outer": [[-1337.88, -416.02], [-1337.49, -416.89], [-1341.66, -418.93], [-1345.97, -422.23], [-1348.19, -421.43], [-1356.7, -421.29], [-1357.22, -418.86], [-1357.08, -415.11], [-1337.88, -416.02]], "holes": []}}, {"shape": {"outer": [[-1387.46, -67.68], [-1387.85, -68.35], [-1387.81, -68.66], [-1384.78, -70.46], [-1384.46, -70.45], [-1384.19, -69.92], [-1383.62, -69.38], [-1382.41, -69.41], [-1381.73, -70.07], [-1381.49, -70.55], [-1381.19, -70.67], [-1371.12, -71.18], [-1369.93, -70.81], [-1369.17, -69.49], [-1369.31, -69.01], [-1370.32, -68.34], [-1387.18, -67.63], [-1387.46, -67.68]], "holes": []}}, {"shape": {"outer": [[-1335.71, -76.2], [-1335.33, -76.01], [-1331.35, -76.25], [-1331.0, -76.48], [-1330.36, -77.71], [-1330.4, -78.1], [-1331.24, -78.65], [-1335.55, -78.34], [-1336.28, -77.96], [-1336.29, -77.33], [-1335.71, -76.2]], "holes": []}}, {"shape": {"outer": [[-1321.9, -76.65], [-1322.21, -76.76], [-1323.31, -77.51], [-1323.34, -77.85], [-1322.76, -78.94], [-1322.39, -79.15], [-1313.83, -79.77], [-1313.3, -79.53], [-1312.12, -77.97], [-1312.28, -77.35], [-1313.01, -77.14], [-1321.9, -76.65]], "holes": []}}, {"shape": {"outer": [[-1412.38, -89.52], [-1407.52, -89.74], [-1407.64, -91.17], [-1407.95, -91.68], [-1408.57, -92.02], [-1409.15, -91.67], [-1409.84, -91.29], [-1410.53, -90.34], [-1411.79, -89.98], [-1412.38, -89.52]], "holes": []}}, {"shape": {"outer": [[-1445.57, -114.76], [-1443.64, -114.87], [-1442.83, -115.31], [-1443.45, -127.47], [-1446.14, -127.36], [-1445.57, -114.76]], "holes": []}}, {"shape": {"outer": [[-1468.17, -89.75], [-1456.55, -90.31], [-1456.67, -92.7], [-1465.01, -92.29], [-1468.29, -92.15], [-1468.17, -89.75]], "holes": []}}, {"shape": {"outer": [[-1438.47, -90.06], [-1436.25, -90.17], [-1437.16, -110.01], [-1439.38, -109.9], [-1438.47, -90.06]], "holes": []}}, {"shape": {"outer": [[-1439.6, -117.86], [-1437.46, -117.97], [-1438.63, -141.05], [-1440.77, -140.95], [-1439.6, -117.86]], "holes": []}}, {"shape": {"outer": [[-1443.65, -145.26], [-1438.44, -145.49], [-1438.94, -156.45], [-1444.16, -156.21], [-1443.65, -145.26]], "holes": []}}, {"shape": {"outer": [[-1444.66, -172.18], [-1440.31, -172.39], [-1441.26, -191.51], [-1440.63, -191.54], [-1440.94, -197.75], [-1441.8, -197.7], [-1442.1, -203.79], [-1444.55, -203.66], [-1444.61, -204.91], [-1446.29, -204.83], [-1444.66, -172.18]], "holes": []}}, {"shape": {"outer": [[-1444.29, -163.18], [-1444.39, -165.61], [-1440.71, -165.76], [-1440.6, -163.33], [-1444.29, -163.18]], "holes": []}}, {"shape": {"outer": [[-1423.35, 36.03], [-1423.52, 32.89], [-1416.38, 32.53], [-1416.23, 35.71], [-1423.35, 36.03]], "holes": []}}, {"shape": {"outer": [[-1417.14, -68.58], [-1417.49, -68.18], [-1417.63, -68.01], [-1417.76, -67.48], [-1417.6, -66.49], [-1416.77, -65.74], [-1415.54, -65.71], [-1414.63, -66.42], [-1414.49, -67.14], [-1414.41, -67.58], [-1415.14, -68.65], [-1416.34, -68.86], [-1417.14, -68.58]], "holes": []}}, {"shape": {"outer": [[-1555.98, -186.99], [-1550.97, -187.27], [-1548.65, -187.39], [-1549.86, -211.55], [-1550.94, -211.47], [-1551.03, -215.32], [-1556.64, -215.21], [-1555.98, -186.99]], "holes": []}}, {"shape": {"outer": [[-1490.85, -86.3], [-1489.76, -86.34], [-1490.22, -92.13], [-1493.65, -92.03], [-1490.85, -86.3]], "holes": []}}, {"shape": {"outer": [[-1550.99, -50.94], [-1547.3, -51.09], [-1547.18, -48.15], [-1550.87, -47.98], [-1550.99, -50.94]], "holes": []}}, {"shape": {"outer": [[-1545.63, -51.37], [-1541.84, -51.53], [-1541.74, -49.17], [-1545.53, -49.02], [-1545.63, -51.37]], "holes": []}}, {"shape": {"outer": [[-1528.57, -48.63], [-1528.66, -50.98], [-1524.85, -51.12], [-1524.76, -48.77], [-1528.57, -48.63]], "holes": []}}, {"shape": {"outer": [[-1478.08, -246.39], [-1476.15, -246.46], [-1476.2, -248.16], [-1478.14, -248.09], [-1478.08, -246.39]], "holes": []}}, {"shape": {"outer": [[-1473.48, -246.6], [-1467.02, -246.9], [-1467.1, -248.57], [-1473.56, -248.28], [-1473.48, -246.6]], "holes": []}}, {"shape": {"outer": [[-1464.35, -247.04], [-1457.89, -247.34], [-1457.97, -249.01], [-1464.43, -248.72], [-1464.35, -247.04]], "holes": []}}, {"shape": {"outer": [[-1455.24, -247.51], [-1449.33, -247.76], [-1449.4, -249.38], [-1455.31, -249.13], [-1455.24, -247.51]], "holes": []}}, {"shape": {"outer": [[-1429.99, -248.76], [-1424.11, -249.03], [-1424.19, -250.68], [-1430.06, -250.41], [-1429.99, -248.76]], "holes": []}}, {"shape": {"outer": [[-1421.5, -249.07], [-1415.04, -249.36], [-1415.12, -251.04], [-1421.58, -250.74], [-1421.5, -249.07]], "holes": []}}, {"shape": {"outer": [[-1412.23, -249.57], [-1405.77, -249.87], [-1405.85, -251.54], [-1412.31, -251.24], [-1412.23, -249.57]], "holes": []}}, {"shape": {"outer": [[-1403.14, -250.0], [-1396.69, -250.3], [-1396.77, -251.98], [-1403.22, -251.68], [-1403.14, -250.0]], "holes": []}}, {"shape": {"outer": [[-1551.76, -249.65], [-1550.94, -246.6], [-1548.1, -247.06], [-1522.07, -248.35], [-1522.18, -251.01], [-1551.76, -249.65]], "holes": []}}, {"shape": {"outer": [[-1506.72, -249.24], [-1506.89, -251.92], [-1497.87, -252.34], [-1494.65, -251.43], [-1494.71, -250.51], [-1497.46, -249.68], [-1506.72, -249.24]], "holes": []}}, {"shape": {"outer": [[-1323.46, -251.43], [-1323.1, -252.74], [-1326.75, -255.6], [-1336.74, -253.37], [-1336.75, -252.95], [-1336.35, -252.97], [-1336.28, -251.01], [-1323.46, -251.43]], "holes": []}}, {"shape": {"outer": [[-1322.49, -225.88], [-1322.04, -225.92], [-1321.39, -226.82], [-1321.78, -239.64], [-1322.23, -239.95], [-1322.49, -225.88]], "holes": []}}, {"shape": {"outer": [[-1322.86, -192.45], [-1320.57, -192.54], [-1316.85, -193.46], [-1320.98, -211.17], [-1321.58, -211.12], [-1321.31, -206.13], [-1322.86, -192.45]], "holes": []}}, {"shape": {"outer": [[-1325.28, -211.13], [-1323.15, -211.16], [-1322.87, -205.63], [-1324.56, -193.87], [-1325.28, -211.13]], "holes": []}}, {"shape": {"outer": [[-1513.77, 16.85], [-1515.7, 16.91], [-1515.75, 15.46], [-1515.8, 14.12], [-1515.14, 14.1], [-1513.86, 14.05], [-1513.77, 16.85]], "holes": []}}, {"shape": {"outer": [[-1500.09, 10.22], [-1500.08, 10.52], [-1500.34, 10.91], [-1507.37, 11.21], [-1508.88, 10.62], [-1509.7, 9.84], [-1509.77, 9.54], [-1507.01, 9.47], [-1506.8, 10.16], [-1506.38, 10.46], [-1500.09, 10.22]], "holes": []}}, {"shape": {"outer": [[-1364.31, 3.81], [-1364.25, 5.12], [-1364.02, 9.41], [-1302.62, 6.49], [-1302.9, 0.36], [-1309.32, 0.65], [-1309.28, 1.55], [-1320.88, 2.09], [-1320.9, 1.77], [-1364.31, 3.81]], "holes": []}}, {"shape": {"outer": [[-1371.32, 4.51], [-1371.28, 5.45], [-1371.1, 9.82], [-1384.84, 10.47], [-1385.06, 5.16], [-1371.32, 4.51]], "holes": []}}, {"shape": {"outer": [[-1433.44, 137.3], [-1432.38, 137.32], [-1431.16, 137.52], [-1429.75, 137.99], [-1428.22, 138.64], [-1424.43, 140.98], [-1421.75, 143.49], [-1425.02, 143.42], [-1428.54, 143.23], [-1430.85, 142.85], [-1433.17, 142.44], [-1433.44, 137.3]], "holes": []}}, {"shape": {"outer": [[-1315.61, -89.02], [-1315.58, -89.42], [-1316.38, -90.68], [-1316.96, -90.77], [-1319.35, -89.18], [-1319.41, -88.87], [-1318.95, -88.15], [-1318.58, -88.06], [-1316.51, -88.22], [-1316.24, -88.34], [-1315.61, -89.02]], "holes": []}}, {"shape": {"outer": [[-1443.69, -108.17], [-1443.0, -108.2], [-1442.54, -109.0], [-1442.71, -111.64], [-1443.43, -112.51], [-1445.41, -112.42], [-1445.36, -110.21], [-1443.76, -110.27], [-1443.69, -108.17]], "holes": []}}, {"shape": {"outer": [[-1385.91, -216.32], [-1383.24, -216.44], [-1382.92, -208.75], [-1385.54, -208.64], [-1385.91, -216.32]], "holes": []}}, {"shape": {"outer": [[-1376.28, -189.5], [-1378.52, -189.4], [-1379.06, -189.73], [-1379.41, -190.22], [-1379.61, -194.76], [-1376.59, -194.88], [-1376.28, -189.5]], "holes": []}}, {"shape": {"outer": [[-1377.08, -203.59], [-1377.96, -203.55], [-1378.16, -207.63], [-1378.54, -209.48], [-1378.96, -224.3], [-1378.16, -224.53], [-1377.08, -203.59]], "holes": []}}, {"shape": {"outer": [[-1381.63, -224.21], [-1383.25, -224.12], [-1384.15, -242.52], [-1382.4, -242.61], [-1381.97, -240.94], [-1382.29, -239.92], [-1381.85, -238.24], [-1382.17, -237.09], [-1381.72, -235.27], [-1382.05, -234.19], [-1381.6, -232.47], [-1381.93, -231.33], [-1381.49, -229.79], [-1381.8, -228.5], [-1381.38, -227.15], [-1381.7, -226.07], [-1381.29, -225.02], [-1381.63, -224.21]], "holes": []}}, {"shape": {"outer": [[-1351.08, 139.74], [-1314.29, 137.66], [-1314.52, 130.26], [-1303.96, 129.79], [-1303.92, 130.95], [-1301.3, 130.82], [-1301.56, 126.89], [-1303.91, 127.0], [-1315.34, 127.66], [-1315.05, 135.49], [-1345.98, 136.76], [-1346.09, 133.63], [-1351.32, 133.51], [-1351.08, 139.74]], "holes": []}}, {"shape": {"outer": [[-1302.86, 101.61], [-1297.25, 101.35], [-1297.31, 100.12], [-1319.19, 101.13], [-1319.14, 102.35], [-1312.96, 102.08], [-1302.86, 101.61]], "holes": []}}, {"shape": {"outer": [[-1364.53, 94.89], [-1361.23, 94.75], [-1361.5, 88.68], [-1352.62, 88.08], [-1353.64, 62.34], [-1364.43, 58.91], [-1366.05, 58.55], [-1364.53, 94.89]], "holes": []}}, {"shape": {"outer": [[-1505.81, 139.67], [-1503.9, 138.6], [-1504.02, 136.32], [-1502.64, 136.27], [-1502.33, 140.06], [-1504.85, 141.41], [-1505.81, 139.67]], "holes": []}}, {"shape": {"outer": [[-1502.79, 145.09], [-1500.77, 148.47], [-1501.78, 148.96], [-1504.23, 150.15], [-1503.77, 151.02], [-1503.32, 151.33], [-1502.74, 151.46], [-1502.01, 151.33], [-1496.98, 148.62], [-1496.53, 148.1], [-1496.24, 147.6], [-1496.05, 147.03], [-1495.91, 146.39], [-1495.85, 145.78], [-1495.83, 145.16], [-1495.8, 144.54], [-1495.86, 143.94], [-1495.95, 143.45], [-1496.17, 142.94], [-1496.84, 141.63], [-1502.79, 145.09]], "holes": []}}, {"shape": {"outer": [[-1471.86, 145.73], [-1471.89, 142.92], [-1463.78, 142.21], [-1463.8, 143.13], [-1471.86, 145.73]], "holes": []}}, {"shape": {"outer": [[-1455.3, 140.15], [-1450.46, 139.46], [-1450.56, 141.18], [-1449.25, 141.15], [-1449.26, 136.26], [-1455.56, 136.54], [-1455.3, 140.15]], "holes": []}}, {"shape": {"outer": [[-1551.67, -57.99], [-1551.73, -59.81], [-1547.73, -59.95], [-1547.67, -58.12], [-1551.67, -57.99]], "holes": []}}, {"shape": {"outer": [[-1447.75, -167.1], [-1447.56, -162.93], [-1448.83, -162.18], [-1460.23, -161.48], [-1460.48, -166.43], [-1447.75, -167.1]], "holes": []}}, {"shape": {"outer": [[-1485.34, -165.11], [-1485.15, -160.94], [-1482.61, -160.64], [-1472.54, -161.66], [-1472.75, -165.77], [-1485.34, -165.11]], "holes": []}}, {"shape": {"outer": [[-1327.48, -175.18], [-1313.9, -175.89], [-1314.31, -183.68], [-1336.44, -182.47], [-1336.33, -180.47], [-1327.23, -180.95], [-1327.03, -177.02], [-1327.57, -176.96], [-1327.48, -175.18]], "holes": []}}, {"shape": {"outer": [[-1330.24, -143.23], [-1330.16, -141.67], [-1325.97, -141.89], [-1326.02, -142.77], [-1313.57, -143.44], [-1314.1, -153.4], [-1312.58, -153.47], [-1312.88, -159.11], [-1316.17, -158.94], [-1316.42, -163.67], [-1315.39, -163.72], [-1315.45, -164.98], [-1316.4, -164.93], [-1316.71, -170.85], [-1327.22, -170.29], [-1325.8, -143.47], [-1330.24, -143.23]], "holes": []}}, {"shape": {"outer": [[-1360.51, -142.2], [-1358.11, -142.33], [-1358.43, -148.16], [-1360.85, -148.01], [-1360.51, -142.2]], "holes": []}}, {"shape": {"outer": [[-1359.52, -168.67], [-1361.02, -168.03], [-1361.71, -167.03], [-1361.69, -165.87], [-1365.08, -165.6], [-1364.44, -151.36], [-1358.61, -151.68], [-1359.52, -168.67]], "holes": []}}, {"shape": {"outer": [[-1362.16, -179.29], [-1362.26, -181.17], [-1352.83, -181.6], [-1352.73, -179.73], [-1362.16, -179.29]], "holes": []}}, {"shape": {"outer": [[-1358.65, 109.9], [-1351.47, 109.68], [-1351.53, 107.37], [-1349.66, 107.26], [-1349.8, 104.23], [-1346.94, 104.09], [-1347.16, 101.41], [-1350.2, 101.48], [-1358.65, 109.9]], "holes": []}}, {"shape": {"outer": [[-1556.24, -222.77], [-1554.87, -222.74], [-1554.84, -223.91], [-1556.22, -223.95], [-1556.24, -222.77]], "holes": []}}, {"shape": {"outer": [[-1592.21, -243.15], [-1582.87, -234.46], [-1581.51, -234.58], [-1581.79, -236.94], [-1582.04, -238.63], [-1582.38, -240.13], [-1582.98, -241.57], [-1584.2, -242.7], [-1585.89, -243.31], [-1588.06, -243.37], [-1592.21, -243.15]], "holes": []}}, {"shape": {"outer": [[-1463.91, 128.74], [-1462.08, 128.73], [-1459.37, 128.68], [-1456.95, 128.65], [-1453.54, 128.48], [-1450.4, 128.29], [-1448.1, 128.09], [-1445.71, 127.84], [-1443.57, 127.56], [-1443.55, 128.54], [-1445.68, 128.78], [-1448.15, 129.06], [-1450.44, 129.32], [-1453.47, 129.48], [-1457.0, 129.67], [-1459.39, 129.7], [-1462.06, 129.73], [-1463.86, 129.74], [-1463.91, 128.74]], "holes": []}}, {"shape": {"outer": [[-1403.24, 36.33], [-1401.19, 36.24], [-1400.53, 37.94], [-1399.54, 39.45], [-1398.3, 40.91], [-1397.06, 42.02], [-1395.75, 42.96], [-1394.03, 43.85], [-1392.04, 44.53], [-1394.68, 44.78], [-1396.03, 45.04], [-1397.15, 45.97], [-1397.91, 46.97], [-1398.47, 48.14], [-1398.53, 49.44], [-1398.26, 50.67], [-1397.68, 51.79], [-1396.62, 52.71], [-1396.2, 52.98], [-1395.47, 69.87], [-1397.87, 68.9], [-1401.84, 68.97], [-1401.95, 62.49], [-1399.76, 62.38], [-1400.5, 46.97], [-1402.69, 47.07], [-1403.24, 36.33]], "holes": []}}, {"shape": {"outer": [[-1350.37, 33.83], [-1363.26, 34.49], [-1363.5, 29.76], [-1350.61, 29.1], [-1350.37, 33.83]], "holes": []}}, {"shape": {"outer": [[-1338.31, 35.31], [-1334.93, 35.17], [-1334.82, 39.12], [-1338.2, 39.22], [-1338.31, 35.31]], "holes": []}}, {"shape": {"outer": [[-1483.9, 90.94], [-1483.87, 92.43], [-1484.92, 92.48], [-1486.0, 92.93], [-1486.9, 93.68], [-1487.71, 94.89], [-1488.63, 95.97], [-1490.31, 96.98], [-1492.12, 97.75], [-1494.06, 98.08], [-1495.71, 97.93], [-1497.46, 97.62], [-1499.04, 96.81], [-1500.36, 95.77], [-1501.19, 94.95], [-1502.16, 94.0], [-1503.16, 93.6], [-1504.23, 93.64], [-1504.27, 92.44], [-1503.23, 92.36], [-1502.44, 92.55], [-1501.24, 93.08], [-1499.88, 94.4], [-1498.49, 95.62], [-1497.28, 96.25], [-1495.64, 96.62], [-1494.02, 96.66], [-1492.39, 96.38], [-1490.79, 95.58], [-1489.35, 94.67], [-1488.18, 93.28], [-1487.43, 92.16], [-1486.64, 91.55], [-1485.65, 91.08], [-1484.88, 91.0], [-1483.9, 90.94]], "holes": []}}, {"shape": {"outer": [[-1562.29, 163.32], [-1561.97, 165.72], [-1553.0, 163.25], [-1546.94, 160.55], [-1543.76, 160.17], [-1543.94, 157.3], [-1546.86, 157.32], [-1547.15, 157.57], [-1560.38, 162.71], [-1562.29, 163.32]], "holes": []}}, {"shape": {"outer": [[-1467.62, -385.08], [-1510.74, -382.67], [-1510.62, -380.13], [-1497.62, -380.76], [-1496.06, -348.37], [-1493.05, -348.51], [-1492.88, -344.92], [-1483.13, -345.39], [-1482.8, -338.44], [-1478.89, -338.63], [-1478.97, -340.48], [-1479.15, -343.34], [-1465.22, -343.95], [-1465.85, -358.06], [-1457.55, -358.43], [-1457.62, -360.06], [-1458.31, -375.59], [-1460.62, -375.49], [-1460.34, -370.81], [-1466.98, -370.52], [-1467.62, -385.08]], "holes": []}}, {"shape": {"outer": [[-1577.24, -103.95], [-1576.56, -104.16], [-1576.1, -104.51], [-1575.79, -104.87], [-1575.53, -105.3], [-1575.39, -105.91], [-1575.96, -115.63], [-1576.03, -116.08], [-1576.21, -116.35], [-1576.5, -116.53], [-1576.84, -116.65], [-1579.3, -116.47], [-1579.34, -116.95], [-1591.48, -116.23], [-1591.78, -115.29], [-1592.13, -114.32], [-1592.61, -113.44], [-1593.14, -112.61], [-1593.88, -111.68], [-1594.71, -110.79], [-1595.67, -109.81], [-1596.82, -108.82], [-1598.02, -107.74], [-1598.89, -106.53], [-1599.42, -104.9], [-1599.67, -103.19], [-1599.37, -101.42], [-1598.71, -99.73], [-1597.74, -98.24], [-1596.56, -97.06], [-1594.59, -98.94], [-1593.13, -100.1], [-1591.23, -101.37], [-1589.08, -102.22], [-1586.83, -102.93], [-1584.37, -103.42], [-1581.85, -103.75], [-1579.58, -104.06], [-1577.28, -104.36], [-1577.24, -103.95]], "holes": []}}, {"shape": {"outer": [[-1602.74, -95.26], [-1602.62, -91.4], [-1601.56, -91.75], [-1599.82, -93.49], [-1598.12, -95.35], [-1596.56, -97.06], [-1597.74, -98.24], [-1598.71, -99.73], [-1599.37, -101.42], [-1599.67, -103.19], [-1599.42, -104.9], [-1598.89, -106.53], [-1598.02, -107.74], [-1596.82, -108.82], [-1595.67, -109.81], [-1594.71, -110.79], [-1593.88, -111.68], [-1593.14, -112.61], [-1592.61, -113.44], [-1592.13, -114.32], [-1591.78, -115.29], [-1591.48, -116.23], [-1598.99, -115.43], [-1598.98, -114.9], [-1602.71, -114.76], [-1602.25, -101.51], [-1601.41, -101.54], [-1601.18, -95.32], [-1602.74, -95.26]], "holes": []}}, {"shape": {"outer": [[-1592.81, -118.05], [-1576.89, -119.26], [-1576.88, -118.67], [-1576.46, -118.78], [-1576.23, -119.03], [-1576.07, -119.35], [-1576.03, -119.75], [-1576.07, -120.27], [-1576.99, -139.03], [-1579.7, -138.86], [-1580.16, -139.07], [-1609.0, -137.78], [-1608.7, -126.76], [-1603.83, -126.81], [-1601.87, -127.23], [-1599.8, -127.22], [-1596.91, -125.59], [-1595.3, -123.52], [-1593.3, -120.08], [-1592.81, -118.05]], "holes": []}}, {"shape": {"outer": [[-1608.7, -126.76], [-1608.45, -119.99], [-1607.66, -120.03], [-1607.18, -120.33], [-1606.23, -120.83], [-1605.09, -121.16], [-1603.85, -121.3], [-1602.95, -121.23], [-1602.16, -121.08], [-1600.32, -120.63], [-1598.53, -119.55], [-1597.05, -118.8], [-1595.52, -118.23], [-1594.16, -118.05], [-1592.81, -118.05], [-1593.3, -120.08], [-1595.3, -123.52], [-1596.91, -125.59], [-1599.8, -127.22], [-1601.87, -127.23], [-1603.83, -126.81], [-1608.7, -126.76]], "holes": []}}, {"shape": {"outer": [[-1606.4, -118.02], [-1606.59, -118.8], [-1606.55, -119.38], [-1605.95, -119.74], [-1603.08, -119.7], [-1601.99, -119.48], [-1600.87, -119.05], [-1599.53, -118.3], [-1603.75, -118.12], [-1606.4, -118.02]], "holes": []}}, {"shape": {"outer": [[-1619.36, -118.36], [-1619.4, -119.48], [-1610.37, -119.75], [-1610.34, -118.68], [-1619.36, -118.36]], "holes": []}}, {"shape": {"outer": [[-1621.44, -121.45], [-1621.45, -120.67], [-1610.53, -121.07], [-1611.44, -137.62], [-1624.28, -137.22], [-1623.94, -128.25], [-1622.91, -127.19], [-1622.31, -126.39], [-1621.9, -125.52], [-1621.59, -124.44], [-1621.44, -121.45]], "holes": []}}, {"shape": {"outer": [[-1577.24, -150.32], [-1576.88, -142.03], [-1609.17, -140.14], [-1609.27, -142.99], [-1588.17, -143.95], [-1588.37, -148.63], [-1587.87, -149.53], [-1586.92, -149.91], [-1577.24, -150.32]], "holes": []}}, {"shape": {"outer": [[-1625.95, -167.98], [-1627.92, -169.06], [-1629.67, -171.67], [-1630.0, -174.73], [-1629.41, -177.72], [-1627.68, -179.52], [-1625.51, -179.53], [-1622.97, -177.64], [-1622.2, -173.64], [-1622.18, -170.03], [-1623.49, -167.85], [-1625.95, -167.98]], "holes": []}}, {"shape": {"outer": [[-1705.83, -183.05], [-1710.14, -182.91], [-1710.35, -182.0], [-1707.97, -179.83], [-1707.71, -173.16], [-1709.54, -173.17], [-1710.07, -172.77], [-1710.17, -172.06], [-1708.29, -169.21], [-1706.58, -167.35], [-1705.06, -165.79], [-1702.41, -164.12], [-1699.1, -162.36], [-1695.52, -160.93], [-1691.77, -159.68], [-1685.23, -158.29], [-1680.88, -157.91], [-1678.04, -157.82], [-1680.4, -159.73], [-1681.98, -161.45], [-1683.44, -163.39], [-1684.31, -164.92], [-1684.7, -166.62], [-1684.69, -168.0], [-1689.08, -167.81], [-1689.05, -167.03], [-1705.12, -166.35], [-1705.83, -183.05]], "holes": []}}, {"shape": {"outer": [[-1716.11, -160.55], [-1720.37, -152.04], [-1728.18, -151.1], [-1727.93, -148.62], [-1733.68, -147.85], [-1733.39, -145.82], [-1738.39, -144.71], [-1759.32, -141.47], [-1760.08, -142.52], [-1753.37, -153.48], [-1742.58, -169.8], [-1739.69, -174.17], [-1736.17, -175.61], [-1730.23, -172.83], [-1716.11, -160.55]], "holes": []}}, {"shape": {"outer": [[-1614.26, -94.86], [-1614.1, -89.42], [-1605.66, -91.08], [-1605.73, -95.16], [-1614.26, -94.86]], "holes": []}}, {"shape": {"outer": [[-1801.4, -13.2], [-1802.96, -14.05], [-1804.2, -20.3], [-1803.24, -21.63], [-1802.51, -23.52], [-1802.37, -26.02], [-1802.77, -27.64], [-1803.45, -29.27], [-1804.49, -30.54], [-1805.46, -31.5], [-1806.21, -32.29], [-1807.28, -38.38], [-1806.08, -39.8], [-1804.92, -33.58], [-1803.51, -32.23], [-1802.12, -30.47], [-1801.2, -28.77], [-1800.62, -26.51], [-1800.77, -24.47], [-1801.35, -22.09], [-1802.37, -19.82], [-1801.4, -13.2]], "holes": []}}, {"shape": {"outer": [[-1810.3, 16.31], [-1811.66, 17.16], [-1813.01, 16.74], [-1813.75, 15.65], [-1815.42, 4.24], [-1791.11, 0.13], [-1788.85, 3.44], [-1810.3, 16.31]], "holes": []}}, {"shape": {"outer": [[-1813.42, -12.07], [-1814.24, -11.35], [-1812.48, -2.07], [-1811.55, -0.98], [-1792.37, -4.35], [-1808.58, -12.91], [-1813.42, -12.07]], "holes": []}}, {"shape": {"outer": [[-1811.05, -19.28], [-1815.72, -18.63], [-1816.48, -19.55], [-1818.19, -29.24], [-1817.63, -29.91], [-1812.83, -30.86], [-1812.64, -29.98], [-1814.65, -29.21], [-1815.91, -27.18], [-1816.36, -25.15], [-1815.72, -22.35], [-1814.79, -21.14], [-1812.79, -20.31], [-1811.12, -20.17], [-1811.05, -19.28]], "holes": []}}, {"shape": {"outer": [[-1818.33, -36.28], [-1819.37, -36.65], [-1821.2, -45.91], [-1820.74, -47.28], [-1801.68, -51.27], [-1813.53, -37.31], [-1818.33, -36.28]], "holes": []}}, {"shape": {"outer": [[-1831.02, -33.46], [-1830.16, -28.95], [-1828.9, -29.18], [-1828.59, -27.47], [-1827.78, -27.63], [-1828.96, -33.85], [-1831.02, -33.46]], "holes": []}}, {"shape": {"outer": [[-1826.34, -15.1], [-1826.63, -16.69], [-1825.85, -16.84], [-1824.71, -10.41], [-1827.08, -9.99], [-1827.92, -14.77], [-1826.34, -15.1]], "holes": []}}, {"shape": {"outer": [[-1832.42, -28.5], [-1833.99, -36.9], [-1836.01, -36.52], [-1836.87, -41.1], [-1841.24, -40.28], [-1841.14, -39.58], [-1842.15, -39.43], [-1840.94, -32.94], [-1837.9, -33.51], [-1836.82, -27.7], [-1832.42, -28.5]], "holes": []}}, {"shape": {"outer": [[-1834.03, -0.03], [-1829.42, -0.82], [-1830.33, -6.04], [-1828.54, -6.35], [-1829.94, -14.36], [-1834.3, -13.62], [-1833.26, -7.6], [-1836.15, -7.11], [-1835.01, -0.5], [-1834.14, -0.66], [-1834.03, -0.03]], "holes": []}}, {"shape": {"outer": [[-1841.6, -42.62], [-1831.53, -44.68], [-1830.87, -45.29], [-1831.05, -46.23], [-1834.87, -65.66], [-1835.37, -66.49], [-1836.41, -66.82], [-1837.96, -66.5], [-1839.76, -66.12], [-1841.58, -65.75], [-1843.9, -65.26], [-1845.97, -64.83], [-1855.18, -62.91], [-1856.21, -62.34], [-1855.11, -62.54], [-1854.97, -61.71], [-1846.53, -63.38], [-1846.43, -62.75], [-1841.46, -63.67], [-1839.12, -50.59], [-1843.87, -49.8], [-1842.6, -43.35], [-1841.73, -43.5], [-1841.6, -42.62]], "holes": []}}, {"shape": {"outer": [[-1828.34, -64.57], [-1824.97, -50.26], [-1786.75, -57.27], [-1828.34, -64.57]], "holes": []}}, {"shape": {"outer": [[-1844.44, -71.42], [-1847.17, -85.12], [-1836.38, -86.99], [-1835.25, -86.71], [-1834.59, -85.61], [-1834.63, -84.04], [-1835.46, -81.55], [-1835.76, -77.86], [-1836.27, -75.2], [-1836.98, -73.3], [-1838.49, -72.67], [-1844.44, -71.42]], "holes": []}}, {"shape": {"outer": [[-1768.99, -66.21], [-1768.34, -62.2], [-1757.39, -64.03], [-1758.01, -68.09], [-1768.99, -66.21]], "holes": []}}, {"shape": {"outer": [[-1776.25, -100.43], [-1775.85, -101.8], [-1775.5, -103.3], [-1774.41, -104.34], [-1772.08, -106.26], [-1769.95, -108.74], [-1768.25, -111.7], [-1767.33, -113.29], [-1766.7, -113.55], [-1766.16, -113.41], [-1765.56, -113.06], [-1765.27, -112.34], [-1763.21, -102.67], [-1776.25, -100.43]], "holes": []}}, {"shape": {"outer": [[-1715.32, -141.1], [-1716.48, -148.5], [-1724.76, -147.21], [-1723.59, -139.81], [-1715.32, -141.1]], "holes": []}}, {"shape": {"outer": [[-1677.28, -84.54], [-1679.99, -84.46], [-1679.56, -80.75], [-1678.04, -80.75], [-1677.89, -78.0], [-1659.96, -81.42], [-1657.84, -83.32], [-1657.14, -85.13], [-1656.42, -88.69], [-1656.62, -96.78], [-1656.58, -101.38], [-1657.89, -101.38], [-1657.94, -96.76], [-1663.06, -96.71], [-1663.34, -111.0], [-1662.66, -110.99], [-1662.64, -112.38], [-1660.68, -112.41], [-1660.7, -111.04], [-1657.87, -111.1], [-1657.78, -104.13], [-1656.72, -104.1], [-1656.65, -113.11], [-1658.07, -115.09], [-1660.2, -118.05], [-1661.99, -119.49], [-1663.55, -120.38], [-1665.51, -120.88], [-1664.89, -95.25], [-1677.44, -95.28], [-1677.28, -84.54]], "holes": []}}, {"shape": {"outer": [[-1657.13, -122.71], [-1656.01, -123.24], [-1654.8, -124.39], [-1653.86, -125.7], [-1652.92, -127.98], [-1652.33, -130.59], [-1651.91, -133.23], [-1651.73, -135.58], [-1651.88, -137.93], [-1652.53, -141.23], [-1653.07, -142.45], [-1653.8, -143.14], [-1654.94, -143.58], [-1657.79, -143.45], [-1657.13, -122.71]], "holes": []}}, {"shape": {"outer": [[-1633.6, -86.09], [-1617.14, -88.84], [-1617.17, -94.75], [-1625.72, -94.44], [-1625.86, -98.3], [-1631.09, -98.11], [-1631.07, -97.51], [-1638.51, -97.24], [-1638.53, -95.55], [-1638.49, -94.2], [-1638.32, -92.67], [-1637.79, -90.93], [-1637.33, -89.86], [-1636.7, -88.66], [-1635.84, -87.44], [-1634.93, -86.6], [-1633.6, -86.09]], "holes": []}}, {"shape": {"outer": [[-1766.37, -230.35], [-1758.68, -230.68], [-1758.88, -235.33], [-1766.58, -235.06], [-1766.37, -230.35]], "holes": []}}, {"shape": {"outer": [[-1579.41, -175.75], [-1596.35, -174.87], [-1597.03, -173.01], [-1603.97, -168.83], [-1614.38, -186.02], [-1617.32, -187.56], [-1616.77, -185.73], [-1615.55, -184.41], [-1614.39, -182.76], [-1613.42, -180.85], [-1612.86, -179.04], [-1612.57, -177.29], [-1612.41, -175.58], [-1609.6, -175.87], [-1609.14, -171.13], [-1606.1, -171.35], [-1605.58, -166.4], [-1601.02, -166.75], [-1600.83, -164.52], [-1579.04, -165.64], [-1579.41, -175.75]], "holes": []}}, {"shape": {"outer": [[-1603.09, -195.67], [-1597.62, -195.88], [-1581.81, -196.73], [-1580.47, -196.0], [-1579.78, -194.4], [-1578.78, -177.33], [-1598.07, -176.29], [-1594.19, -178.69], [-1602.99, -192.86], [-1603.09, -195.67]], "holes": []}}, {"shape": {"outer": [[-1597.81, -200.96], [-1581.95, -201.96], [-1581.02, -202.46], [-1580.02, -203.53], [-1581.07, -220.62], [-1595.42, -220.69], [-1596.56, -220.64], [-1597.23, -219.8], [-1595.57, -218.94], [-1603.44, -203.75], [-1603.33, -200.75], [-1597.81, -200.96]], "holes": []}}, {"shape": {"outer": [[-1586.29, -233.75], [-1582.1, -229.9], [-1581.5, -226.83], [-1581.24, -224.62], [-1582.32, -223.3], [-1583.95, -222.77], [-1586.18, -222.66], [-1587.21, -222.71], [-1589.65, -224.6], [-1591.5, -226.27], [-1592.23, -228.24], [-1591.95, -229.71], [-1590.22, -232.58], [-1589.09, -233.45], [-1587.72, -233.75], [-1586.29, -233.75]], "holes": []}}, {"shape": {"outer": [[-1610.09, -241.51], [-1597.85, -242.16], [-1592.98, -240.09], [-1593.0, -239.09], [-1593.62, -237.76], [-1594.75, -236.84], [-1595.99, -236.05], [-1595.91, -233.12], [-1596.53, -231.97], [-1597.73, -230.32], [-1603.94, -229.42], [-1607.9, -229.76], [-1609.23, -228.34], [-1609.68, -226.04], [-1609.29, -223.6], [-1615.46, -211.67], [-1617.49, -211.16], [-1619.18, -213.89], [-1627.49, -208.77], [-1629.38, -210.24], [-1624.68, -213.99], [-1620.41, -216.91], [-1617.62, -220.22], [-1614.68, -226.31], [-1613.91, -230.39], [-1612.42, -233.08], [-1610.84, -237.05], [-1610.09, -241.51]], "holes": []}}, {"shape": {"outer": [[-1592.98, -240.09], [-1586.29, -233.75], [-1587.72, -233.75], [-1589.09, -233.45], [-1590.22, -232.58], [-1591.95, -229.71], [-1592.23, -228.24], [-1591.5, -226.27], [-1589.65, -224.6], [-1587.21, -222.71], [-1593.58, -222.47], [-1596.18, -221.88], [-1598.74, -222.83], [-1598.5, -223.3], [-1606.09, -227.2], [-1607.23, -225.0], [-1608.28, -225.55], [-1609.29, -223.6], [-1609.68, -226.04], [-1609.23, -228.34], [-1607.9, -229.76], [-1603.94, -229.42], [-1597.73, -230.32], [-1596.53, -231.97], [-1595.91, -233.12], [-1595.99, -236.05], [-1594.75, -236.84], [-1593.62, -237.76], [-1593.0, -239.09], [-1592.98, -240.09]], "holes": []}}, {"shape": {"outer": [[-1911.58, -57.85], [-1898.06, -59.79], [-1898.09, -65.66], [-1912.03, -60.99], [-1911.58, -57.85]], "holes": []}}, {"shape": {"outer": [[-1929.37, -54.45], [-1929.41, -55.88], [-1929.44, -56.99], [-1925.06, -57.12], [-1924.99, -54.57], [-1929.37, -54.45]], "holes": []}}, {"shape": {"outer": [[-1956.61, -88.38], [-1958.93, -88.26], [-1959.19, -96.45], [-1957.76, -97.19], [-1956.58, -98.4], [-1955.86, -99.68], [-1955.62, -100.72], [-1912.39, -102.48], [-1912.66, -107.69], [-1887.97, -108.61], [-1880.87, -102.86], [-1880.56, -100.59], [-1877.27, -100.27], [-1876.02, -99.38], [-1875.25, -98.21], [-1884.16, -97.98], [-1885.88, -103.27], [-1901.29, -102.61], [-1902.7, -97.09], [-1944.45, -95.54], [-1947.83, -95.4], [-1956.88, -95.03], [-1956.61, -88.38]], "holes": []}}, {"shape": {"outer": [[-1955.62, -100.72], [-1955.86, -99.68], [-1956.58, -98.4], [-1957.76, -97.19], [-1959.19, -96.45], [-1959.44, -100.61], [-1955.62, -100.72]], "holes": []}}, {"shape": {"outer": [[-1925.74, -5.53], [-1919.02, -6.34], [-1923.39, -31.12], [-1919.09, -31.8], [-1921.39, -44.17], [-1924.34, -43.69], [-1924.83, -46.95], [-1934.25, -45.15], [-1933.77, -43.15], [-1932.69, -42.14], [-1932.16, -41.16], [-1931.94, -40.51], [-1931.97, -39.88], [-1932.38, -39.4], [-1932.97, -38.86], [-1934.18, -38.11], [-1932.47, -28.84], [-1929.97, -29.39], [-1925.74, -5.53]], "holes": []}}, {"shape": {"outer": [[-1967.44, -60.1], [-1961.72, -60.42], [-1961.47, -54.38], [-1963.88, -54.35], [-1963.99, -49.12], [-2000.28, -42.82], [-2004.62, -44.36], [-2005.99, -44.3], [-2005.93, -48.93], [-2005.9, -51.03], [-2007.97, -50.95], [-2008.44, -59.29], [-2008.04, -59.75], [-2006.83, -60.16], [-2004.4, -59.91], [-2001.33, -59.62], [-1997.17, -59.65], [-1993.3, -59.12], [-1990.71, -57.42], [-1988.83, -53.79], [-1988.39, -51.99], [-1988.22, -50.21], [-1984.62, -50.4], [-1984.03, -53.08], [-1983.41, -57.72], [-1981.13, -59.64], [-1977.78, -59.86], [-1967.44, -60.1]], "holes": []}}, {"shape": {"outer": [[-1999.95, -16.18], [-1996.39, -22.04], [-1998.31, -34.01], [-2003.14, -33.13], [-2006.03, -30.84], [-2005.93, -28.48], [-2006.6, -28.19], [-2005.57, -22.27], [-2004.3, -22.47], [-2001.54, -23.1], [-1999.95, -16.18]], "holes": []}}, {"shape": {"outer": [[-2041.29, -27.03], [-2039.41, -27.09], [-2039.16, -20.58], [-2041.05, -20.5], [-2041.29, -27.03]], "holes": []}}, {"shape": {"outer": [[-2054.18, -26.56], [-2052.26, -26.63], [-2052.04, -20.06], [-2053.96, -20.0], [-2054.18, -26.56]], "holes": []}}, {"shape": {"outer": [[-2026.19, -19.5], [-2025.3, -18.99], [-2024.62, -19.13], [-2024.28, -19.59], [-2024.33, -20.29], [-2025.35, -24.72], [-2026.43, -24.53], [-2026.19, -19.5]], "holes": []}}, {"shape": {"outer": [[-2032.05, -18.98], [-2031.7, -18.89], [-2031.25, -18.93], [-2030.91, -19.24], [-2031.29, -27.27], [-2028.05, -27.48], [-2028.11, -30.36], [-2033.04, -30.2], [-2032.69, -20.72], [-2032.11, -20.69], [-2032.05, -18.98]], "holes": []}}, {"shape": {"outer": [[-1949.95, -26.8], [-1949.79, -25.82], [-1946.3, -26.4], [-1946.74, -28.96], [-1951.02, -28.11], [-1950.7, -26.72], [-1949.95, -26.8]], "holes": []}}, {"shape": {"outer": [[-1953.45, -29.15], [-1953.06, -30.46], [-1953.02, -31.65], [-1953.31, -33.64], [-1954.04, -35.4], [-1955.19, -36.59], [-1953.45, -29.15]], "holes": []}}, {"shape": {"outer": [[-1947.14, -31.25], [-1950.7, -30.6], [-1950.56, -32.03], [-1950.67, -33.75], [-1950.94, -35.31], [-1951.38, -36.73], [-1952.19, -37.62], [-1953.18, -38.54], [-1953.54, -41.84], [-1949.12, -42.78], [-1948.54, -38.56], [-1950.35, -38.2], [-1949.22, -31.87], [-1947.35, -32.19], [-1947.14, -31.25]], "holes": []}}, {"shape": {"outer": [[-1878.28, -72.5], [-1878.4, -76.77], [-1873.86, -76.9], [-1874.02, -82.44], [-1869.69, -82.57], [-1869.41, -72.75], [-1878.28, -72.5]], "holes": []}}, {"shape": {"outer": [[-1860.5, -83.02], [-1859.71, -83.08], [-1859.42, -80.96], [-1853.54, -81.94], [-1851.19, -68.37], [-1872.81, -65.01], [-1872.88, -64.25], [-1885.36, -62.28], [-1885.6, -64.35], [-1886.43, -64.51], [-1885.72, -65.26], [-1885.88, -67.48], [-1876.36, -69.45], [-1863.49, -70.28], [-1860.86, -70.93], [-1861.04, -80.82], [-1860.5, -83.02]], "holes": []}}, {"shape": {"outer": [[-1863.46, -89.32], [-1863.16, -89.66], [-1859.14, -89.3], [-1858.86, -87.49], [-1859.44, -87.4], [-1863.46, -89.32]], "holes": []}}, {"shape": {"outer": [[-1913.1, -25.86], [-1912.71, -23.69], [-1910.45, -24.09], [-1910.84, -26.27], [-1913.1, -25.86]], "holes": []}}, {"shape": {"outer": [[-1915.92, -18.72], [-1913.99, -8.23], [-1910.12, -8.93], [-1911.53, -16.61], [-1910.4, -16.82], [-1910.91, -19.63], [-1915.92, -18.72]], "holes": []}}, {"shape": {"outer": [[-1907.83, -48.95], [-1913.78, -47.94], [-1912.87, -42.6], [-1909.45, -43.17], [-1908.47, -37.45], [-1905.76, -37.91], [-1907.83, -48.95]], "holes": []}}, {"shape": {"outer": [[-1907.88, -19.95], [-1907.48, -17.65], [-1905.88, -17.93], [-1905.22, -14.14], [-1903.37, -14.45], [-1904.13, -18.75], [-1902.69, -18.96], [-1902.82, -20.82], [-1907.88, -19.95]], "holes": []}}, {"shape": {"outer": [[-1640.97, -97.15], [-1641.0, -96.28], [-1641.32, -95.59], [-1641.29, -94.78], [-1641.29, -93.86], [-1641.12, -92.79], [-1640.83, -91.72], [-1640.27, -90.44], [-1639.58, -89.13], [-1639.33, -88.05], [-1639.41, -86.96], [-1639.56, -85.9], [-1640.04, -84.93], [-1651.18, -82.76], [-1652.29, -83.49], [-1653.49, -85.0], [-1653.69, -89.05], [-1653.74, -94.62], [-1653.57, -97.9], [-1653.25, -98.53], [-1653.18, -108.05], [-1653.16, -110.78], [-1653.16, -112.64], [-1652.65, -115.35], [-1651.97, -117.74], [-1651.44, -119.82], [-1650.35, -122.33], [-1648.34, -125.7], [-1647.39, -128.25], [-1646.48, -131.57], [-1645.7, -134.85], [-1644.63, -137.24], [-1643.66, -138.57], [-1642.25, -139.66], [-1640.66, -140.54], [-1637.89, -141.57], [-1634.77, -142.01], [-1632.53, -142.06], [-1632.41, -140.03], [-1632.6, -139.57], [-1633.0, -139.4], [-1637.63, -139.29], [-1637.17, -128.96], [-1631.21, -129.08], [-1633.07, -126.21], [-1633.41, -123.8], [-1633.2, -121.21], [-1648.82, -120.64], [-1647.95, -96.89], [-1640.97, -97.15]], "holes": []}}, {"shape": {"outer": [[-1632.42, -144.48], [-1637.6, -144.75], [-1639.69, -144.75], [-1641.82, -144.46], [-1643.06, -144.07], [-1644.18, -143.44], [-1645.0, -143.34], [-1645.83, -143.56], [-1646.51, -144.16], [-1646.88, -144.86], [-1647.23, -145.82], [-1647.39, -147.11], [-1647.43, -148.69], [-1636.47, -148.88], [-1635.07, -148.75], [-1633.97, -148.41], [-1633.09, -147.59], [-1632.54, -146.04], [-1632.42, -144.48]], "holes": []}}, {"shape": {"outer": [[-1758.23, -5.59], [-1757.42, -1.05], [-1746.36, -2.9], [-1747.21, -7.58], [-1758.23, -5.59]], "holes": []}}, {"shape": {"outer": [[-1701.6, 52.58], [-1701.18, 64.64], [-1703.71, 62.91], [-1703.1, 62.28], [-1704.9, 59.8], [-1705.59, 60.25], [-1706.43, 58.9], [-1706.82, 57.4], [-1706.51, 56.02], [-1705.81, 55.89], [-1704.44, 54.53], [-1705.0, 53.98], [-1703.48, 52.93], [-1702.54, 52.62], [-1701.6, 52.58]], "holes": []}}, {"shape": {"outer": [[-1666.11, -4.13], [-1664.22, -4.15], [-1656.34, -22.82], [-1658.27, -24.02], [-1674.84, -20.95], [-1672.39, -18.21], [-1666.11, -4.13]], "holes": []}}, {"shape": {"outer": [[-1670.27, -3.99], [-1669.41, 16.39], [-1664.07, 16.08], [-1663.86, 15.14], [-1663.76, 13.68], [-1666.2, 1.83], [-1668.83, -4.1], [-1672.29, -11.26], [-1673.94, -15.07], [-1677.46, -19.03], [-1680.24, -19.93], [-1695.42, -17.34], [-1696.56, -16.42], [-1697.27, -15.39], [-1696.94, -11.08], [-1695.53, -8.27], [-1693.27, -6.78], [-1693.08, -1.3], [-1686.42, -1.59], [-1686.49, -3.31], [-1670.27, -3.99]], "holes": []}}, {"shape": {"outer": [[-1784.66, 4.37], [-1773.2, -1.79], [-1767.11, -3.26], [-1768.18, -1.02], [-1768.84, 2.32], [-1768.52, 5.94], [-1766.41, 11.26], [-1763.71, 15.9], [-1759.1, 20.26], [-1757.57, 21.55], [-1753.72, 39.77], [-1784.66, 4.37]], "holes": []}}, {"shape": {"outer": [[-1757.57, 21.55], [-1761.82, -3.33], [-1762.72, -4.43], [-1767.11, -3.26], [-1768.18, -1.02], [-1768.84, 2.32], [-1768.52, 5.94], [-1766.41, 11.26], [-1763.71, 15.9], [-1759.1, 20.26], [-1757.57, 21.55]], "holes": []}}, {"shape": {"outer": [[-1738.98, 52.31], [-1738.56, 50.36], [-1738.42, 47.98], [-1740.54, 38.5], [-1742.07, 36.26], [-1743.98, 35.36], [-1746.19, 35.54], [-1751.79, 36.41], [-1750.66, 43.44], [-1745.65, 49.13], [-1742.52, 50.95], [-1738.98, 52.31]], "holes": []}}, {"shape": {"outer": [[-1982.21, 20.67], [-1979.39, 21.58], [-1972.17, 17.11], [-1965.55, -4.44], [-1965.97, -9.9], [-1977.42, -7.69], [-1977.85, -14.47], [-1979.87, 0.97], [-1976.93, 1.43], [-1977.95, 7.08], [-1980.7, 6.61], [-1982.21, 20.67]], "holes": []}}, {"shape": {"outer": [[-1962.22, -10.57], [-1962.06, -4.09], [-1967.82, 15.31], [-1964.19, 15.63], [-1943.36, 12.01], [-1947.4, -10.73], [-1950.79, -10.15], [-1951.23, -12.49], [-1962.22, -10.57]], "holes": []}}, {"shape": {"outer": [[-1965.44, 19.08], [-1965.88, 17.94], [-1967.04, 17.57], [-1968.16, 17.72], [-1983.12, 27.61], [-1986.3, 35.11], [-1986.89, 38.42], [-1986.22, 41.97], [-1984.66, 45.7], [-1982.67, 47.81], [-1981.69, 46.05], [-1980.14, 47.03], [-1981.2, 49.02], [-1979.08, 50.38], [-1975.28, 51.36], [-1973.01, 51.69], [-1972.51, 51.28], [-1972.65, 49.95], [-1971.24, 47.24], [-1966.77, 43.33], [-1966.52, 42.52], [-1967.43, 42.68], [-1968.5, 36.49], [-1967.43, 36.31], [-1968.73, 28.8], [-1964.8, 28.12], [-1966.34, 19.24], [-1965.44, 19.08]], "holes": []}}, {"shape": {"outer": [[-1952.37, 38.11], [-1951.87, 40.05], [-1929.57, 36.3], [-1929.39, 37.13], [-1927.54, 36.8], [-1927.47, 38.39], [-1928.07, 40.17], [-1928.63, 41.05], [-1929.51, 41.66], [-1945.51, 43.79], [-1952.37, 45.5], [-1962.4, 48.62], [-1966.29, 49.78], [-1966.93, 46.9], [-1963.67, 44.09], [-1962.57, 41.85], [-1962.9, 39.91], [-1952.37, 38.11]], "holes": []}}, {"shape": {"outer": [[-1922.51, 32.95], [-1921.87, 36.76], [-1919.2, 36.31], [-1920.37, 29.43], [-1921.99, 29.71], [-1921.46, 32.78], [-1922.51, 32.95]], "holes": []}}, {"shape": {"outer": [[-1922.53, 26.47], [-1918.63, 24.84], [-1919.83, 19.24], [-1921.4, 19.5], [-1920.68, 23.67], [-1922.94, 24.06], [-1922.53, 26.47]], "holes": []}}, {"shape": {"outer": [[-1921.81, 17.09], [-1918.02, 16.04], [-1921.29, -3.14], [-1925.25, -2.76], [-1921.81, 17.09]], "holes": []}}, {"shape": {"outer": [[-1913.75, 28.46], [-1911.39, 28.0], [-1911.87, 25.55], [-1914.24, 26.01], [-1913.75, 28.46]], "holes": []}}, {"shape": {"outer": [[-1914.23, 40.59], [-1915.74, 32.08], [-1909.39, 30.08], [-1911.54, 18.61], [-1904.04, 17.27], [-1900.0, 38.82], [-1902.93, 39.3], [-1903.11, 40.92], [-1914.23, 40.59]], "holes": []}}, {"shape": {"outer": [[-1902.21, 13.55], [-1899.11, 12.93], [-1901.09, 2.65], [-1901.36, 1.28], [-1904.45, 1.88], [-1902.21, 13.55]], "holes": []}}, {"shape": {"outer": [[-1913.62, 8.57], [-1911.17, 8.15], [-1913.41, -4.91], [-1909.33, -5.62], [-1907.73, 3.64], [-1906.36, 3.41], [-1904.55, 13.96], [-1912.47, 15.31], [-1913.62, 8.57]], "holes": []}}, {"shape": {"outer": [[-1897.57, 37.08], [-1894.81, 36.45], [-1898.39, 16.54], [-1901.33, 17.05], [-1897.57, 37.08]], "holes": []}}, {"shape": {"outer": [[-1872.98, 28.82], [-1871.82, 31.01], [-1870.25, 33.76], [-1869.18, 36.69], [-1868.93, 38.23], [-1874.93, 39.31], [-1884.39, 40.36], [-1890.72, 40.87], [-1896.83, 41.08], [-1897.16, 38.36], [-1894.61, 37.77], [-1872.31, 33.52], [-1872.98, 28.82]], "holes": []}}, {"shape": {"outer": [[-1956.48, -105.25], [-1957.83, -107.04], [-1960.33, -108.4], [-1963.66, -108.58], [-1965.87, -107.86], [-1967.2, -106.85], [-1964.6, -105.32], [-1963.36, -105.85], [-1961.95, -106.21], [-1960.19, -105.67], [-1959.76, -105.03], [-1956.48, -105.25]], "holes": []}}, {"shape": {"outer": [[-1967.2, -106.85], [-1968.09, -107.53], [-1981.34, -107.06], [-1981.47, -110.37], [-1944.38, -111.77], [-1944.42, -112.89], [-1919.73, -113.84], [-1919.3, -106.62], [-1956.48, -105.25], [-1957.83, -107.04], [-1960.33, -108.4], [-1963.66, -108.58], [-1965.87, -107.86], [-1967.2, -106.85]], "holes": []}}, {"shape": {"outer": [[-1892.86, -120.38], [-1901.53, -112.94], [-1901.32, -112.26], [-1887.97, -112.13], [-1887.25, -112.75], [-1891.13, -120.6], [-1892.86, -120.38]], "holes": []}}, {"shape": {"outer": [[-1855.26, -103.72], [-1854.17, -97.67], [-1853.56, -97.8], [-1852.93, -93.15], [-1854.78, -92.83], [-1855.97, -93.07], [-1858.67, -97.11], [-1868.4, -96.94], [-1869.28, -99.48], [-1871.64, -99.55], [-1872.04, -101.86], [-1870.47, -102.2], [-1870.27, -101.08], [-1855.26, -103.72]], "holes": []}}, {"shape": {"outer": [[-1870.8, -104.02], [-1877.81, -104.3], [-1884.72, -113.08], [-1888.19, -122.05], [-1888.4, -123.51], [-1887.48, -124.88], [-1881.25, -131.23], [-1879.79, -131.76], [-1875.8, -132.39], [-1870.8, -104.02]], "holes": []}}, {"shape": {"outer": [[-31.12, -301.31], [-36.0, -295.88], [-46.02, -304.84], [-34.11, -318.06], [-29.98, -314.38], [-28.64, -314.24], [-27.1, -314.7], [-17.44, -325.39], [-16.44, -324.5], [-27.6, -312.15], [-25.98, -310.69], [-29.36, -306.96], [-30.01, -307.55], [-31.58, -305.81], [-30.93, -305.23], [-32.97, -302.98], [-31.12, -301.31]], "holes": []}}, {"shape": {"outer": [[-10.66, -332.39], [-12.72, -334.31], [-11.39, -335.91], [-11.12, -335.88], [-10.83, -335.92], [-10.5, -336.06], [-10.23, -336.31], [-10.07, -336.57], [-10.0, -336.8], [-9.98, -337.04], [-10.0, -337.25], [-10.07, -337.46], [-10.23, -337.74], [-10.47, -337.95], [-10.8, -338.11], [-11.18, -338.15], [-11.39, -338.12], [-11.6, -338.05], [-2.56, -347.58], [-4.16, -349.08], [-5.15, -350.02], [6.83, -362.69], [12.69, -357.31], [7.27, -351.29], [-10.66, -332.39]], "holes": []}}, {"shape": {"outer": [[-28.5, -316.58], [-30.15, -318.12], [-24.01, -325.06], [-23.83, -325.31], [-23.5, -325.52], [-23.15, -325.63], [-22.75, -325.73], [-22.36, -325.64], [-21.92, -325.47], [-21.5, -325.19], [-21.21, -324.94], [-28.5, -316.58]], "holes": []}}, {"shape": {"outer": [[-2580.32, 159.31], [-2580.97, 155.75], [-2580.6, 152.43], [-2579.7, 149.67], [-2577.35, 146.88], [-2573.7, 144.7], [-2569.84, 144.24], [-2566.42, 144.92], [-2563.34, 147.02], [-2561.08, 150.73], [-2560.74, 154.7], [-2561.68, 158.43], [-2563.94, 161.5], [-2566.39, 163.56], [-2568.79, 164.44], [-2572.12, 164.3], [-2574.66, 163.0], [-2580.32, 159.31]], "holes": []}}, {"shape": {"outer": [[-2619.64, 188.94], [-2618.08, 201.18], [-2616.33, 203.46], [-2614.62, 204.62], [-2612.49, 204.98], [-2609.02, 204.54], [-2606.98, 202.41], [-2605.75, 200.04], [-2607.17, 187.41], [-2619.64, 188.94]], "holes": []}}, {"shape": {"outer": [[-1512.73, 54.01], [-1512.78, 52.6], [-1515.31, 52.7], [-1515.08, 58.19], [-1514.56, 58.11], [-1514.5, 59.65], [-1513.89, 59.62], [-1513.93, 58.72], [-1512.88, 58.68], [-1513.07, 54.02], [-1512.73, 54.01]], "holes": []}}, {"shape": {"outer": [[8.74, -597.51], [26.43, -580.42], [26.18, -579.31], [25.37, -578.77], [24.34, -578.7], [15.08, -587.83], [6.56, -596.35], [7.62, -597.29], [8.18, -597.49], [8.74, -597.51]], "holes": []}}, {"shape": {"outer": [[5.34, -599.07], [5.72, -599.66], [5.81, -600.26], [0.67, -605.44], [2.2, -602.33], [2.69, -599.68], [2.88, -596.75], [5.34, -599.07]], "holes": []}}, {"shape": {"outer": [[-81.33, -664.86], [-79.69, -664.49], [-78.27, -663.57], [-76.71, -662.2], [-75.94, -661.14], [-75.51, -659.59], [-75.32, -656.78], [-74.88, -650.17], [-74.27, -644.86], [-72.03, -637.15], [-69.92, -632.8], [-66.12, -624.92], [-63.28, -620.64], [-59.66, -615.95], [-60.65, -615.0], [-90.74, -646.68], [-92.11, -649.97], [-92.95, -654.64], [-91.72, -658.57], [-90.01, -662.04], [-87.48, -664.41], [-84.31, -665.34], [-81.33, -664.86]], "holes": []}}, {"shape": {"outer": [[58.11, -513.3], [59.26, -514.61], [59.82, -516.74], [59.51, -518.67], [58.67, -520.21], [55.35, -523.29], [53.65, -523.0], [51.45, -523.64], [49.76, -525.24], [48.96, -526.96], [48.7, -528.58], [48.88, -530.04], [43.17, -534.61], [44.41, -535.83], [45.44, -537.27], [46.01, -539.28], [46.1, -541.39], [45.63, -543.47], [44.92, -545.17], [42.51, -544.13], [40.15, -543.01], [37.7, -541.69], [35.62, -540.27], [33.65, -538.87], [32.0, -537.29], [30.34, -535.57], [29.47, -533.73], [28.89, -531.63], [28.9, -529.82], [29.46, -527.54], [31.72, -524.97], [34.69, -522.13], [34.83, -523.74], [35.35, -524.87], [37.11, -526.72], [38.64, -527.37], [40.87, -527.5], [42.31, -527.16], [43.31, -526.64], [44.31, -526.1], [45.57, -525.19], [58.11, -513.3]], "holes": []}}, {"shape": {"outer": [[77.66, -541.59], [77.53, -544.74], [76.42, -547.56], [73.83, -546.46], [71.44, -544.82], [68.96, -541.46], [67.58, -538.22], [66.37, -534.27], [66.83, -530.93], [68.27, -527.37], [75.1, -529.27], [74.05, -529.92], [73.15, -530.76], [72.01, -532.51], [71.64, -533.65], [71.48, -534.84], [71.56, -536.13], [71.89, -537.37], [73.02, -539.29], [73.88, -540.14], [74.9, -540.82], [76.24, -541.35], [77.66, -541.59]], "holes": []}}, {"shape": {"outer": [[44.06, -515.93], [44.24, -517.19], [45.13, -518.22], [46.59, -518.64], [42.43, -522.58], [41.76, -521.31], [40.96, -520.65], [39.81, -520.08], [44.06, -515.93]], "holes": []}}, {"shape": {"outer": [[47.67, -515.36], [46.66, -514.86], [45.64, -514.71], [70.98, -488.93], [72.24, -490.22], [47.67, -515.36]], "holes": []}}, {"shape": {"outer": [[37.04, -412.38], [38.61, -412.61], [42.25, -414.05], [44.96, -416.17], [46.37, -417.9], [47.44, -419.85], [48.27, -422.48], [48.48, -423.72], [48.45, -425.81], [47.96, -425.85], [47.51, -425.8], [47.06, -425.56], [46.89, -425.13], [46.76, -423.04], [45.91, -420.32], [44.8, -418.44], [43.37, -416.86], [41.97, -415.77], [40.21, -414.84], [38.66, -414.1], [37.21, -413.79], [36.82, -413.57], [36.65, -413.2], [36.71, -412.78], [37.04, -412.38]], "holes": []}}, {"shape": {"outer": [[37.06, -437.38], [34.89, -437.51], [31.3, -436.71], [28.9, -435.49], [27.01, -433.97], [25.24, -431.84], [23.94, -429.23], [23.52, -427.84], [23.23, -426.05], [23.26, -424.72], [23.67, -424.37], [24.23, -424.24], [24.74, -424.43], [25.0, -424.82], [25.11, -425.98], [25.44, -427.75], [25.95, -429.2], [26.89, -430.91], [28.03, -432.34], [30.38, -434.23], [32.76, -435.29], [34.93, -435.71], [36.27, -435.69], [36.73, -435.82], [37.02, -436.15], [37.08, -436.61], [37.06, -437.38]], "holes": []}}, {"shape": {"outer": [[79.57, -551.88], [78.6, -551.96], [78.21, -550.7], [86.47, -542.12], [87.4, -539.79], [87.78, -536.37], [88.57, -535.62], [89.33, -535.82], [90.79, -536.98], [91.02, -538.88], [90.66, -540.51], [89.49, -542.49], [79.57, -551.88]], "holes": []}}, {"shape": {"outer": [[111.79, -454.17], [112.63, -455.45], [113.64, -457.65], [114.34, -459.38], [110.9, -460.57], [109.64, -460.76], [108.65, -460.73], [107.47, -460.41], [106.62, -459.79], [106.03, -459.14], [108.81, -456.68], [111.79, -454.17]], "holes": []}}, {"shape": {"outer": [[122.27, -440.38], [121.66, -439.53], [121.56, -438.37], [93.85, -466.41], [94.83, -467.67], [122.27, -440.38]], "holes": []}}, {"shape": {"outer": [[-683.57, -279.11], [-688.49, -283.59], [-693.34, -288.02], [-692.39, -289.05], [-714.66, -309.46], [-722.2, -315.61], [-694.64, -346.14], [-691.88, -349.44], [-684.57, -342.1], [-668.43, -326.99], [-669.54, -325.82], [-679.84, -314.9], [-679.67, -313.26], [-673.18, -307.34], [-677.89, -302.21], [-669.42, -294.48], [-679.1, -283.97], [-683.57, -279.11]], "holes": []}}, {"shape": {"outer": [[-307.54, -127.08], [-308.08, -128.06], [-308.56, -129.06], [-308.69, -130.49], [-313.54, -130.17], [-312.68, -128.22], [-310.37, -126.94], [-307.54, -127.08]], "holes": []}}, {"shape": {"outer": [[-313.97, -139.91], [-308.95, -140.28], [-309.01, -141.51], [-308.86, -142.52], [-308.55, -143.54], [-308.16, -144.44], [-308.4, -144.52], [-309.61, -144.81], [-311.27, -144.76], [-312.06, -144.74], [-312.91, -144.4], [-313.43, -143.91], [-313.99, -142.71], [-313.97, -139.91]], "holes": []}}, {"shape": {"outer": [[-323.36, -46.42], [-322.82, -45.92], [-321.03, -47.81], [-321.67, -48.4], [-321.21, -48.9], [-322.86, -50.45], [-323.42, -49.87], [-324.13, -50.54], [-325.87, -48.7], [-325.2, -48.07], [-325.76, -47.48], [-323.96, -45.78], [-323.36, -46.42]], "holes": []}}, {"shape": {"outer": [[-330.72, -54.64], [-330.3, -54.24], [-329.2, -55.4], [-329.62, -55.79], [-329.02, -56.43], [-333.31, -60.44], [-333.79, -59.94], [-333.27, -59.46], [-334.53, -58.11], [-335.06, -58.61], [-335.65, -57.99], [-331.35, -53.96], [-330.72, -54.64]], "holes": []}}, {"shape": {"outer": [[-474.48, -343.22], [-471.55, -346.46], [-468.47, -343.69], [-466.68, -345.66], [-459.73, -339.42], [-464.4, -334.27], [-474.48, -343.22]], "holes": []}}, {"shape": {"outer": [[-462.77, -332.82], [-458.14, -337.94], [-451.29, -331.76], [-455.88, -326.71], [-462.77, -332.82]], "holes": []}}, {"shape": {"outer": [[-454.0, -325.05], [-449.46, -330.06], [-441.64, -323.02], [-442.88, -321.65], [-443.44, -322.17], [-445.18, -320.25], [-444.53, -319.67], [-446.05, -318.0], [-454.0, -325.05]], "holes": []}}, {"shape": {"outer": [[-430.19, -312.7], [-434.6, -307.83], [-442.52, -314.85], [-441.33, -316.16], [-440.76, -315.66], [-439.03, -317.57], [-439.65, -318.14], [-438.11, -319.85], [-430.19, -312.7]], "holes": []}}, {"shape": {"outer": [[-426.13, -300.3], [-422.07, -304.59], [-424.46, -307.49], [-428.37, -311.03], [-432.75, -306.18], [-426.13, -300.3]], "holes": []}}, {"shape": {"outer": [[-418.09, -294.44], [-417.42, -293.77], [-415.65, -295.49], [-420.77, -301.71], [-423.93, -298.36], [-418.69, -293.71], [-418.09, -294.44]], "holes": []}}, {"shape": {"outer": [[-358.2, -232.12], [-348.25, -223.2], [-347.28, -224.28], [-381.38, -254.88], [-382.97, -253.13], [-379.28, -249.82], [-378.09, -251.14], [-372.93, -246.51], [-376.05, -243.04], [-374.93, -242.03], [-387.15, -228.51], [-372.97, -215.79], [-358.2, -232.12]], "holes": []}}, {"shape": {"outer": [[-338.97, -223.91], [-334.8, -228.43], [-346.82, -239.46], [-352.4, -233.43], [-342.05, -223.94], [-340.64, -225.44], [-338.97, -223.91]], "holes": []}}, {"shape": {"outer": [[-394.27, -279.22], [-379.54, -265.98], [-384.22, -260.82], [-398.95, -274.06], [-394.27, -279.22]], "holes": []}}, {"shape": {"outer": [[-374.59, -263.91], [-358.21, -248.9], [-363.86, -242.79], [-380.23, -257.81], [-374.59, -263.91]], "holes": []}}, {"shape": {"outer": [[-355.98, -247.01], [-349.53, -241.16], [-354.83, -235.37], [-361.28, -241.23], [-355.98, -247.01]], "holes": []}}, {"shape": {"outer": [[-347.08, -213.12], [-357.09, -201.92], [-362.29, -206.57], [-352.26, -217.73], [-347.08, -213.12]], "holes": []}}, {"shape": {"outer": [[-362.13, -196.32], [-368.04, -189.73], [-369.49, -191.03], [-363.58, -197.62], [-362.13, -196.32]], "holes": []}}, {"shape": {"outer": [[-1201.78, -563.77], [-1201.29, -555.18], [-1201.81, -554.46], [-1202.49, -553.92], [-1203.88, -553.9], [-1205.34, -554.22], [-1206.62, -554.81], [-1207.82, -555.86], [-1208.84, -557.81], [-1209.62, -559.89], [-1210.06, -561.19], [-1204.15, -561.68], [-1203.23, -561.75], [-1201.78, -563.77]], "holes": []}}, {"shape": {"outer": [[-1209.77, -769.29], [-1208.46, -742.45], [-1208.0, -733.87], [-1207.62, -725.94], [-1207.76, -718.17], [-1210.8, -718.14], [-1213.38, -769.16], [-1209.77, -769.29]], "holes": []}}, {"shape": {"outer": [[-1207.71, -716.63], [-1206.3, -709.66], [-1206.73, -708.2], [-1206.96, -706.1], [-1206.62, -701.82], [-1203.34, -645.0], [-1207.23, -644.75], [-1210.68, -716.52], [-1207.71, -716.63]], "holes": []}}, {"shape": {"outer": [[-1346.0, -642.82], [-1345.3, -641.91], [-1353.14, -636.69], [-1374.28, -623.81], [-1389.3, -616.0], [-1390.86, -614.22], [-1391.5, -612.01], [-1397.82, -611.15], [-1400.31, -610.29], [-1410.37, -605.96], [-1412.49, -606.59], [-1401.77, -611.56], [-1391.62, -616.2], [-1381.81, -621.2], [-1373.08, -626.16], [-1363.02, -632.28], [-1356.01, -636.8], [-1346.0, -642.82]], "holes": []}}, {"shape": {"outer": [[-1345.3, -641.91], [-1343.87, -640.05], [-1356.69, -629.66], [-1363.99, -623.68], [-1373.44, -623.12], [-1373.36, -620.04], [-1373.29, -614.99], [-1387.97, -614.12], [-1387.9, -612.61], [-1388.53, -612.06], [-1390.3, -611.88], [-1390.15, -609.82], [-1393.68, -609.33], [-1397.83, -607.44], [-1402.55, -605.88], [-1408.64, -605.53], [-1410.37, -605.96], [-1400.31, -610.29], [-1397.82, -611.15], [-1391.5, -612.01], [-1390.86, -614.22], [-1389.3, -616.0], [-1374.28, -623.81], [-1353.14, -636.69], [-1345.3, -641.91]], "holes": []}}, {"shape": {"outer": [[-1250.24, -774.14], [-1249.1, -770.23], [-1246.35, -770.82], [-1245.09, -763.78], [-1242.69, -762.98], [-1240.82, -762.27], [-1238.76, -761.39], [-1237.4, -760.7], [-1235.48, -759.82], [-1234.09, -758.85], [-1233.25, -758.15], [-1225.08, -761.86], [-1230.42, -774.72], [-1218.38, -775.13], [-1223.22, -775.9], [-1227.4, -776.31], [-1232.98, -776.41], [-1237.64, -776.18], [-1242.71, -775.59], [-1246.46, -775.04], [-1250.24, -774.14]], "holes": []}}, {"shape": {"outer": [[-1213.6, -775.33], [-1210.78, -775.63], [-1211.55, -790.3], [-1215.11, -790.03], [-1216.33, -801.59], [-1216.57, -803.21], [-1322.84, -753.79], [-1322.02, -751.24], [-1296.0, -762.92], [-1250.8, -776.62], [-1246.75, -777.51], [-1242.68, -778.08], [-1237.53, -778.62], [-1232.57, -778.84], [-1226.89, -778.65], [-1221.8, -778.31], [-1217.52, -777.73], [-1214.84, -776.5], [-1213.6, -775.33]], "holes": []}}, {"shape": {"outer": [[-1293.36, -793.42], [-1288.33, -791.57], [-1319.25, -777.96], [-1323.68, -779.45], [-1293.36, -793.42]], "holes": []}}, {"shape": {"outer": [[-1327.77, -784.49], [-1325.0, -783.63], [-1306.81, -791.86], [-1305.71, -794.49], [-1327.77, -784.49]], "holes": []}}, {"shape": {"outer": [[-1296.48, -798.68], [-1293.81, -797.81], [-1269.74, -808.88], [-1269.15, -810.29], [-1255.6, -816.58], [-1254.97, -817.91], [-1281.99, -805.41], [-1284.72, -806.35], [-1285.68, -803.58], [-1296.48, -798.68]], "holes": []}}, {"shape": {"outer": [[-4.68, -402.01], [-2.58, -403.22], [0.62, -404.3], [4.06, -404.51], [7.35, -404.07], [9.68, -403.27], [8.36, -401.88], [5.82, -402.61], [3.08, -402.81], [0.66, -402.53], [-1.53, -401.74], [-3.17, -400.73], [-4.68, -402.01]], "holes": []}}, {"shape": {"outer": [[16.09, -397.5], [17.45, -395.04], [18.07, -392.32], [18.44, -389.13], [18.4, -386.09], [17.86, -384.11], [17.13, -383.04], [15.56, -384.37], [15.81, -384.9], [16.35, -386.84], [16.41, -389.15], [16.13, -392.12], [15.53, -394.62], [14.82, -396.18], [16.09, -397.5]], "holes": []}}, {"shape": {"outer": [[-238.42, -220.65], [-238.9, -221.87], [-239.37, -223.09], [-239.23, -224.35], [-238.63, -225.71], [-237.41, -226.9], [-236.26, -227.57], [-237.16, -246.64], [-238.39, -247.56], [-239.36, -248.29], [-240.12, -249.52], [-240.44, -251.12], [-240.13, -252.74], [-239.46, -253.44], [-237.85, -255.14], [-238.4, -278.35], [-239.15, -277.51], [-242.25, -280.27], [-240.59, -282.13], [-237.17, -279.09], [-236.05, -279.17], [-235.4, -268.81], [-236.97, -268.71], [-236.7, -264.32], [-235.28, -264.41], [-234.67, -254.72], [-235.58, -254.36], [-236.84, -253.88], [-237.97, -252.74], [-238.3, -251.32], [-237.98, -249.9], [-236.95, -248.62], [-235.41, -248.21], [-234.29, -247.91], [-233.84, -237.76], [-234.88, -237.72], [-234.7, -233.71], [-233.7, -233.75], [-233.19, -222.18], [-234.6, -222.12], [-238.42, -220.65]], "holes": []}}, {"shape": {"outer": [[-221.84, -283.1], [-220.47, -281.63], [-223.83, -277.57], [-222.61, -256.55], [-221.41, -255.79], [-220.01, -254.14], [-219.42, -251.9], [-219.6, -249.77], [-220.68, -248.4], [-222.08, -247.63], [-220.96, -228.17], [-218.52, -227.28], [-216.88, -225.27], [-216.68, -222.89], [-217.22, -221.07], [-220.05, -221.9], [-223.33, -222.23], [-224.0, -233.65], [-222.59, -233.77], [-222.82, -237.78], [-224.26, -237.67], [-224.76, -248.93], [-223.59, -249.22], [-222.43, -249.88], [-221.52, -250.87], [-221.4, -252.23], [-221.79, -253.29], [-222.54, -254.09], [-223.72, -254.82], [-225.17, -255.27], [-225.73, -265.18], [-224.3, -265.21], [-224.47, -269.35], [-226.05, -269.33], [-226.64, -279.65], [-224.93, -279.65], [-221.84, -283.1]], "holes": []}}, {"shape": {"outer": [[-263.78, -181.54], [-255.47, -173.83], [-254.11, -175.29], [-252.66, -173.6], [-252.39, -177.0], [-252.76, -179.09], [-253.76, -181.0], [-255.36, -182.6], [-256.4, -183.18], [-257.9, -183.65], [-259.78, -183.77], [-261.22, -183.46], [-262.67, -182.61], [-263.78, -181.54]], "holes": []}}, {"shape": {"outer": [[-82.27, -135.3], [-80.71, -136.92], [-83.95, -139.76], [-83.97, -141.12], [-93.9, -141.01], [-93.88, -139.52], [-98.63, -139.46], [-98.64, -140.52], [-109.11, -140.08], [-109.16, -138.26], [-109.93, -136.86], [-111.78, -136.14], [-113.42, -136.63], [-114.52, -137.63], [-114.78, -139.74], [-125.36, -139.36], [-125.31, -137.87], [-129.33, -137.72], [-129.37, -138.88], [-140.61, -138.48], [-141.97, -135.47], [-143.58, -131.98], [-136.56, -133.47], [-134.95, -135.94], [-116.36, -136.89], [-115.16, -135.18], [-113.29, -134.29], [-111.02, -134.18], [-109.23, -135.07], [-107.53, -135.93], [-106.64, -137.43], [-85.6, -138.33], [-82.27, -135.3]], "holes": []}}, {"shape": {"outer": [[-83.35, -156.81], [-81.16, -155.15], [-84.11, -152.1], [-84.02, -150.58], [-94.51, -150.37], [-94.53, -151.09], [-98.31, -151.08], [-98.3, -150.09], [-109.14, -149.73], [-109.86, -150.77], [-110.96, -152.35], [-113.68, -152.45], [-115.14, -150.91], [-115.86, -149.08], [-125.88, -148.67], [-125.6, -149.75], [-129.63, -149.71], [-129.6, -148.69], [-141.57, -148.43], [-141.95, -149.7], [-144.14, -153.61], [-146.19, -155.79], [-148.11, -157.06], [-144.36, -159.1], [-140.29, -155.78], [-134.94, -151.65], [-116.83, -152.68], [-114.55, -155.07], [-112.21, -156.48], [-109.12, -155.61], [-106.57, -153.33], [-86.19, -153.64], [-83.35, -156.81]], "holes": []}}, {"shape": {"outer": [[-1336.83, -285.62], [-1329.5, -285.98], [-1329.3, -282.48], [-1427.4, -277.53], [-1427.5, -280.47], [-1422.56, -280.71], [-1422.46, -278.82], [-1410.39, -279.38], [-1410.46, -280.94], [-1379.26, -282.42], [-1379.19, -280.95], [-1372.62, -281.27], [-1372.71, -283.05], [-1370.05, -283.17], [-1369.96, -281.42], [-1360.78, -281.85], [-1360.88, -283.89], [-1357.76, -284.04], [-1357.67, -282.02], [-1348.94, -282.43], [-1349.04, -284.74], [-1343.18, -285.02], [-1343.07, -282.73], [-1336.71, -283.04], [-1336.83, -285.62]], "holes": []}}, {"shape": {"outer": [[-1335.77, -419.81], [-1328.09, -420.25], [-1329.42, -444.41], [-1334.21, -445.43], [-1339.01, -445.96], [-1341.74, -446.75], [-1345.44, -445.11], [-1348.44, -442.39], [-1349.4, -439.38], [-1350.6, -430.58], [-1346.04, -426.37], [-1341.37, -422.65], [-1337.9, -420.24], [-1335.77, -419.81]], "holes": []}}, {"shape": {"outer": [[1037.14, 599.6], [1035.46, 601.47], [1070.53, 633.09], [1075.53, 638.12], [1080.37, 644.97], [1084.61, 654.12], [1086.81, 661.56], [1087.24, 662.62], [1087.97, 663.14], [1089.97, 663.75], [1097.75, 665.89], [1102.51, 668.17], [1108.8, 672.13], [1115.31, 679.19], [1119.33, 686.04], [1120.99, 690.9], [1124.84, 690.02], [1126.08, 695.47], [1122.13, 696.37], [1122.89, 698.75], [1123.59, 699.34], [1124.65, 699.66], [1135.89, 701.23], [1145.41, 704.42], [1155.06, 709.23], [1160.86, 713.36], [1166.64, 718.37], [1171.25, 722.51], [1172.73, 720.81], [1146.04, 696.86], [1124.47, 677.48], [1110.28, 664.29], [1096.62, 652.15], [1084.26, 640.86], [1068.74, 626.82], [1037.14, 599.6]], "holes": []}}, {"shape": {"outer": [[1088.85, 670.93], [1091.72, 670.21], [1090.76, 665.82], [1094.74, 667.03], [1094.61, 667.78], [1096.7, 668.45], [1096.69, 667.86], [1100.11, 669.05], [1104.36, 671.27], [1108.69, 674.58], [1111.47, 677.35], [1114.54, 681.14], [1116.92, 685.49], [1118.47, 689.67], [1120.04, 694.77], [1121.02, 698.28], [1120.46, 699.08], [1119.52, 699.05], [1114.32, 698.03], [1110.3, 696.67], [1107.71, 695.52], [1104.45, 693.64], [1101.49, 691.71], [1098.61, 688.95], [1096.05, 685.59], [1093.69, 682.22], [1091.3, 677.83], [1089.76, 673.9], [1088.85, 670.93]], "holes": []}}, {"shape": {"outer": [[-305.79, -30.61], [-305.14, -30.01], [-303.61, -31.66], [-304.2, -32.2], [-303.59, -32.86], [-305.36, -34.49], [-305.94, -33.86], [-306.52, -34.4], [-308.26, -32.54], [-307.75, -32.06], [-308.31, -31.47], [-306.51, -29.82], [-305.79, -30.61]], "holes": []}}, {"shape": {"outer": [[-310.97, -24.89], [-312.4, -26.17], [-311.65, -27.01], [-313.59, -28.74], [-314.53, -27.69], [-315.16, -28.25], [-316.93, -26.29], [-319.17, -16.28], [-317.73, -14.97], [-316.56, -16.25], [-317.78, -17.35], [-311.88, -23.85], [-310.97, -24.89]], "holes": []}}, {"shape": {"outer": [[-330.76, -42.16], [-329.27, -40.88], [-327.98, -42.12], [-326.25, -40.58], [-327.24, -39.57], [-326.62, -38.98], [-328.46, -37.09], [-338.05, -34.09], [-339.46, -35.42], [-338.27, -36.67], [-337.09, -35.56], [-330.76, -42.16]], "holes": []}}, {"shape": {"outer": [[-2274.69, -490.81], [-2278.46, -491.65], [-2283.06, -493.58], [-2287.85, -496.4], [-2286.25, -500.07], [-2282.72, -501.32], [-2280.04, -504.62], [-2277.51, -509.11], [-2273.04, -512.24], [-2273.73, -493.68], [-2274.76, -493.65], [-2274.69, -490.81]], "holes": []}}, {"shape": {"outer": [[-2286.02, -483.43], [-2275.69, -483.86], [-2274.54, -485.41], [-2274.63, -488.77], [-2277.14, -489.27], [-2281.08, -490.69], [-2285.55, -492.96], [-2284.75, -490.89], [-2285.66, -489.2], [-2288.14, -487.8], [-2289.57, -487.0], [-2287.28, -487.06], [-2287.22, -485.28], [-2286.08, -485.31], [-2286.02, -483.43]], "holes": []}}, {"shape": {"outer": [[-2278.56, -469.75], [-2276.98, -468.32], [-2276.9, -463.42], [-2274.88, -461.81], [-2273.2, -460.19], [-2273.15, -456.18], [-2274.02, -453.31], [-2277.03, -452.96], [-2280.0, -453.32], [-2284.45, -451.9], [-2275.15, -451.77], [-2272.64, -451.74], [-2272.8, -466.93], [-2273.54, -466.91], [-2273.6, -468.88], [-2273.96, -468.87], [-2274.25, -477.42], [-2275.47, -478.95], [-2285.81, -478.48], [-2285.77, -476.84], [-2286.56, -476.82], [-2286.51, -475.06], [-2289.23, -474.98], [-2288.45, -474.2], [-2286.54, -473.69], [-2278.56, -469.75]], "holes": []}}, {"shape": {"outer": [[-2339.95, -525.85], [-2338.67, -523.32], [-2337.47, -522.02], [-2336.54, -521.27], [-2336.56, -519.08], [-2337.29, -517.26], [-2337.54, -515.45], [-2338.68, -513.26], [-2339.61, -511.39], [-2341.44, -510.23], [-2343.84, -509.9], [-2345.28, -510.54], [-2346.34, -511.45], [-2347.78, -513.48], [-2348.45, -514.32], [-2349.15, -516.02], [-2350.75, -517.86], [-2352.53, -518.39], [-2354.77, -518.22], [-2351.87, -520.81], [-2339.95, -525.85]], "holes": []}}, {"shape": {"outer": [[-2325.04, -449.7], [-2327.37, -449.64], [-2330.66, -450.61], [-2333.43, -451.67], [-2335.16, -453.39], [-2336.78, -456.98], [-2337.23, -461.58], [-2336.85, -466.47], [-2336.01, -469.37], [-2334.27, -471.69], [-2332.44, -473.5], [-2330.72, -474.87], [-2327.21, -476.45], [-2323.93, -477.12], [-2319.6, -477.57], [-2315.24, -474.7], [-2317.71, -466.87], [-2324.29, -464.07], [-2329.33, -461.14], [-2332.08, -456.43], [-2331.5, -452.93], [-2327.87, -450.27], [-2325.04, -449.7]], "holes": []}}, {"shape": {"outer": [[-2272.64, -451.74], [-2270.43, -451.67], [-2271.0, -468.97], [-2272.51, -468.92], [-2272.49, -466.93], [-2272.8, -466.93], [-2272.64, -451.74]], "holes": []}}, {"shape": {"outer": [[-2273.73, -493.68], [-2271.56, -493.74], [-2271.7, -512.5], [-2273.04, -512.24], [-2273.73, -493.68]], "holes": []}}, {"shape": {"outer": [[-2545.28, -446.22], [-2545.39, -449.1], [-2516.19, -450.18], [-2516.08, -447.43], [-2545.28, -446.22]], "holes": []}}, {"shape": {"outer": [[-2645.61, -466.82], [-2641.89, -467.04], [-2641.7, -463.97], [-2645.42, -463.74], [-2645.61, -466.82]], "holes": []}}, {"shape": {"outer": [[-2645.93, -479.22], [-2642.3, -479.38], [-2642.16, -476.08], [-2645.79, -475.93], [-2645.93, -479.22]], "holes": []}}, {"shape": {"outer": [[-2361.94, -635.28], [-2360.99, -634.43], [-2359.83, -634.22], [-2358.77, -634.6], [-2358.15, -635.66], [-2358.2, -636.4], [-2361.94, -635.28]], "holes": []}}, {"shape": {"outer": [[-2372.45, -663.13], [-2354.78, -649.41], [-2357.12, -639.72], [-2361.55, -643.26], [-2364.23, -640.86], [-2365.24, -640.49], [-2366.52, -640.98], [-2368.72, -644.23], [-2371.94, -655.62], [-2373.28, -660.54], [-2373.29, -661.47], [-2372.89, -662.33], [-2372.45, -663.13]], "holes": []}}, {"shape": {"outer": [[-2343.36, -481.28], [-2344.39, -480.92], [-2345.51, -479.79], [-2346.14, -478.13], [-2346.32, -476.45], [-2347.31, -474.15], [-2348.11, -472.75], [-2348.75, -471.22], [-2350.7, -469.13], [-2354.03, -467.51], [-2357.74, -467.37], [-2360.92, -468.13], [-2365.01, -469.94], [-2368.57, -472.12], [-2370.55, -474.43], [-2371.72, -476.18], [-2372.83, -478.1], [-2374.51, -480.19], [-2374.92, -482.31], [-2374.35, -484.67], [-2373.65, -486.46], [-2372.63, -487.81], [-2370.9, -488.41], [-2368.82, -488.82], [-2366.27, -488.93], [-2363.49, -488.4], [-2361.49, -489.33], [-2360.52, -490.63], [-2359.57, -492.33], [-2358.09, -494.43], [-2356.11, -496.6], [-2352.48, -497.96], [-2349.03, -498.29], [-2346.46, -497.71], [-2344.31, -496.65], [-2342.02, -495.51], [-2340.33, -494.28], [-2345.26, -486.4], [-2343.36, -481.28]], "holes": []}}, {"shape": {"outer": [[-2643.94, -701.52], [-2643.78, -700.52], [-2634.46, -696.51], [-2614.03, -687.07], [-2611.77, -690.49], [-2615.58, -694.53], [-2634.08, -701.72], [-2643.94, -701.52]], "holes": []}}, {"shape": {"outer": [[-2506.79, -767.75], [-2508.04, -766.69], [-2528.09, -781.95], [-2534.8, -787.06], [-2559.15, -788.82], [-2559.46, -794.32], [-2557.44, -794.29], [-2556.27, -796.06], [-2535.04, -789.72], [-2533.91, -789.0], [-2506.79, -767.75]], "holes": []}}, {"shape": {"outer": [[-2586.96, -805.86], [-2586.79, -802.89], [-2581.11, -802.91], [-2581.1, -801.78], [-2578.59, -801.78], [-2578.6, -803.59], [-2586.96, -805.86]], "holes": []}}, {"shape": {"outer": [[-2572.49, -788.66], [-2572.63, -794.6], [-2574.69, -794.55], [-2574.65, -792.87], [-2583.18, -792.66], [-2583.22, -794.37], [-2593.39, -794.12], [-2593.51, -799.24], [-2596.44, -799.17], [-2596.58, -805.08], [-2593.08, -805.17], [-2593.12, -806.7], [-2598.4, -806.57], [-2598.03, -791.8], [-2586.02, -792.1], [-2585.92, -788.32], [-2572.49, -788.66]], "holes": []}}, {"shape": {"outer": [[-2602.12, -805.62], [-2602.04, -809.47], [-2642.5, -821.66], [-2644.55, -820.19], [-2647.01, -819.86], [-2649.68, -818.78], [-2651.39, -817.57], [-2652.88, -816.04], [-2653.94, -814.25], [-2655.99, -812.65], [-2655.2, -780.6], [-2653.23, -780.72], [-2654.0, -809.43], [-2650.93, -811.54], [-2651.96, -813.03], [-2644.51, -818.14], [-2643.62, -816.84], [-2640.11, -819.24], [-2626.6, -815.03], [-2604.28, -808.08], [-2604.33, -805.67], [-2602.12, -805.62]], "holes": []}}, {"shape": {"outer": [[-2653.23, -780.72], [-2651.42, -780.66], [-2650.65, -781.28], [-2650.61, -782.14], [-2650.99, -798.57], [-2650.83, -802.65], [-2649.5, -806.31], [-2647.18, -809.45], [-2644.18, -812.38], [-2640.23, -815.27], [-2635.96, -816.12], [-2626.6, -815.03], [-2640.11, -819.24], [-2643.62, -816.84], [-2644.51, -818.14], [-2651.96, -813.03], [-2650.93, -811.54], [-2654.0, -809.43], [-2653.23, -780.72]], "holes": []}}, {"shape": {"outer": [[-2253.35, -729.4], [-2224.46, -719.7], [-2224.33, -718.08], [-2220.74, -716.74], [-2210.79, -713.03], [-2182.28, -705.94], [-2173.11, -701.39], [-2171.99, -698.16], [-2164.13, -698.26], [-2142.49, -692.18], [-2142.41, -693.51], [-2143.65, -696.38], [-2146.22, -699.87], [-2149.05, -702.91], [-2151.47, -704.2], [-2153.97, -704.6], [-2157.27, -703.81], [-2160.66, -702.84], [-2165.96, -704.3], [-2170.43, -706.84], [-2173.0, -708.91], [-2177.28, -711.79], [-2179.55, -712.54], [-2182.55, -712.84], [-2185.55, -712.24], [-2189.04, -712.28], [-2193.5, -714.01], [-2197.92, -716.02], [-2203.75, -718.28], [-2206.04, -718.44], [-2208.16, -718.32], [-2210.24, -718.49], [-2214.62, -719.68], [-2223.96, -723.53], [-2225.07, -724.21], [-2226.56, -725.74], [-2228.28, -726.96], [-2230.41, -727.52], [-2232.03, -727.78], [-2234.42, -727.6], [-2236.53, -727.7], [-2238.86, -728.46], [-2240.81, -729.11], [-2242.57, -730.11], [-2243.93, -731.0], [-2245.54, -732.06], [-2247.25, -733.0], [-2249.43, -733.47], [-2251.28, -732.75], [-2252.92, -731.2], [-2253.35, -729.4]], "holes": []}}, {"shape": {"outer": [[-2119.71, -684.92], [-2118.65, -685.42], [-2065.63, -669.71], [-2050.45, -665.48], [-2040.91, -663.31], [-2039.76, -661.48], [-2027.32, -662.11], [-2026.5, -662.93], [-2026.46, -663.53], [-2027.09, -664.93], [-2027.67, -665.99], [-2028.5, -666.83], [-2030.24, -667.29], [-2033.58, -667.38], [-2036.9, -667.69], [-2039.36, -668.45], [-2041.85, -668.85], [-2044.4, -668.8], [-2046.12, -668.11], [-2046.73, -668.06], [-2049.14, -668.55], [-2051.72, -669.15], [-2056.84, -670.64], [-2063.39, -673.39], [-2069.77, -676.55], [-2073.65, -677.74], [-2076.97, -678.4], [-2079.79, -678.72], [-2082.59, -678.92], [-2084.36, -679.47], [-2086.56, -680.22], [-2088.98, -681.31], [-2091.09, -682.57], [-2093.23, -684.06], [-2095.7, -685.99], [-2098.77, -687.51], [-2101.56, -688.91], [-2104.76, -690.21], [-2107.73, -690.56], [-2110.64, -690.53], [-2113.09, -690.33], [-2114.77, -689.64], [-2117.2, -688.08], [-2118.93, -686.63], [-2119.71, -684.92]], "holes": []}}, {"shape": {"outer": [[-2065.72, -661.1], [-2064.99, -660.25], [-2039.76, -661.48], [-2040.91, -663.31], [-2050.45, -665.48], [-2065.63, -669.71], [-2065.72, -661.1]], "holes": []}}, {"shape": {"outer": [[-2659.32, -888.71], [-2661.41, -888.66], [-2661.49, -891.46], [-2660.3, -892.89], [-2657.88, -890.84], [-2658.72, -889.89], [-2658.98, -889.88], [-2659.34, -889.87], [-2659.32, -888.71]], "holes": []}}, {"shape": {"outer": [[-2648.73, -882.83], [-2639.04, -874.65], [-2640.91, -873.06], [-2643.4, -870.61], [-2644.45, -868.4], [-2644.49, -866.91], [-2643.76, -864.7], [-2642.34, -862.96], [-2640.96, -861.78], [-2643.02, -860.01], [-2645.58, -859.29], [-2647.7, -859.48], [-2649.73, -860.4], [-2651.78, -861.8], [-2653.7, -863.24], [-2656.38, -864.63], [-2658.97, -865.56], [-2660.95, -865.84], [-2661.04, -872.41], [-2658.1, -872.39], [-2657.16, -872.97], [-2657.09, -873.37], [-2655.01, -874.22], [-2653.8, -875.62], [-2653.36, -877.85], [-2653.52, -879.39], [-2653.85, -880.21], [-2650.98, -880.28], [-2648.73, -882.83]], "holes": []}}, {"shape": {"outer": [[-2637.71, -862.35], [-2641.27, -865.39], [-2641.77, -866.68], [-2641.97, -868.13], [-2641.41, -869.14], [-2640.06, -870.24], [-2639.43, -870.29], [-2638.63, -870.36], [-2637.66, -870.09], [-2636.87, -869.46], [-2636.08, -868.61], [-2635.66, -867.6], [-2635.12, -865.69], [-2634.96, -864.44], [-2635.0, -863.19], [-2635.16, -862.13], [-2635.4, -861.15], [-2635.76, -860.22], [-2636.24, -859.27], [-2637.52, -857.46], [-2639.31, -856.33], [-2641.49, -855.38], [-2642.93, -855.2], [-2644.35, -855.16], [-2646.95, -855.23], [-2647.72, -855.39], [-2648.41, -855.63], [-2649.51, -856.04], [-2649.82, -856.42], [-2650.0, -856.85], [-2649.99, -857.56], [-2649.86, -858.02], [-2649.04, -857.74], [-2647.49, -857.48], [-2646.04, -857.33], [-2644.12, -857.41], [-2642.58, -857.81], [-2641.22, -858.76], [-2639.7, -860.06], [-2638.35, -861.4], [-2637.71, -862.35]], "holes": []}}, {"shape": {"outer": [[-2638.62, -870.67], [-2637.77, -870.45], [-2636.96, -869.93], [-2636.32, -869.32], [-2635.37, -870.41], [-2637.22, -872.04], [-2638.62, -870.67]], "holes": []}}, {"shape": {"outer": [[-2634.71, -863.05], [-2634.62, -864.02], [-2634.68, -865.05], [-2634.76, -865.69], [-2634.97, -866.36], [-2633.32, -866.34], [-2633.16, -864.39], [-2633.22, -862.82], [-2634.71, -863.05]], "holes": []}}, {"shape": {"outer": [[-2634.8, -862.18], [-2633.38, -862.0], [-2633.48, -861.19], [-2633.97, -859.82], [-2634.44, -858.82], [-2634.96, -857.77], [-2635.14, -857.41], [-2636.05, -859.06], [-2635.49, -860.16], [-2635.09, -861.16], [-2634.8, -862.18]], "holes": []}}, {"shape": {"outer": [[-2636.5, -858.27], [-2636.18, -857.29], [-2635.76, -856.81], [-2636.27, -856.17], [-2636.8, -855.62], [-2637.45, -855.01], [-2638.22, -854.58], [-2639.09, -854.08], [-2639.63, -853.71], [-2640.08, -853.52], [-2639.95, -853.13], [-2640.82, -853.02], [-2641.57, -852.86], [-2641.14, -853.81], [-2640.38, -855.47], [-2639.63, -855.82], [-2638.59, -856.4], [-2637.8, -856.89], [-2637.09, -857.61], [-2636.5, -858.27]], "holes": []}}, {"shape": {"outer": [[-2641.37, -855.11], [-2642.8, -852.74], [-2643.9, -852.65], [-2645.23, -852.66], [-2646.13, -852.61], [-2647.14, -852.81], [-2648.27, -853.18], [-2649.04, -853.52], [-2649.78, -853.92], [-2650.76, -854.48], [-2651.67, -855.18], [-2652.35, -855.84], [-2652.9, -856.4], [-2653.69, -857.22], [-2654.43, -858.03], [-2655.1, -858.6], [-2656.13, -859.26], [-2657.03, -859.77], [-2658.02, -860.31], [-2658.98, -860.71], [-2659.59, -860.93], [-2660.37, -861.16], [-2660.78, -861.21], [-2660.86, -863.95], [-2660.0, -863.9], [-2659.17, -863.74], [-2658.18, -863.48], [-2657.18, -862.99], [-2655.88, -862.27], [-2654.42, -861.37], [-2653.45, -860.66], [-2652.36, -859.87], [-2651.47, -859.16], [-2650.43, -858.5], [-2649.86, -858.02], [-2649.99, -857.56], [-2650.0, -856.85], [-2649.82, -856.42], [-2649.51, -856.04], [-2648.41, -855.63], [-2647.72, -855.39], [-2646.95, -855.23], [-2646.62, -854.92], [-2644.79, -854.83], [-2643.1, -854.9], [-2641.37, -855.11]], "holes": []}}, {"shape": {"outer": [[-2662.67, -861.72], [-2665.45, -865.4], [-2665.29, -865.71], [-2664.52, -867.45], [-2663.97, -869.02], [-2663.84, -870.28], [-2662.9, -870.33], [-2662.67, -861.72]], "holes": []}}, {"shape": {"outer": [[-2665.68, -857.74], [-2662.52, -857.88], [-2662.2, -845.64], [-2664.12, -845.58], [-2664.2, -846.85], [-2665.54, -846.79], [-2665.68, -857.74]], "holes": []}}, {"shape": {"outer": [[-2659.22, -845.85], [-2654.51, -845.99], [-2654.15, -846.14], [-2653.98, -846.4], [-2654.03, -846.82], [-2654.19, -847.17], [-2654.71, -847.64], [-2655.42, -848.5], [-2656.18, -849.38], [-2656.89, -850.29], [-2657.6, -851.12], [-2658.24, -851.58], [-2658.82, -851.77], [-2659.3, -851.68], [-2659.9, -851.42], [-2660.08, -851.05], [-2660.29, -850.76], [-2660.21, -846.96], [-2660.01, -846.45], [-2659.71, -846.03], [-2659.22, -845.85]], "holes": []}}, {"shape": {"outer": [[-2660.72, -857.57], [-2660.64, -854.06], [-2660.25, -853.61], [-2659.48, -853.31], [-2657.96, -853.53], [-2657.56, -853.56], [-2657.24, -853.72], [-2657.08, -853.88], [-2656.29, -854.67], [-2657.15, -855.46], [-2657.91, -856.14], [-2659.2, -856.94], [-2660.72, -857.57]], "holes": []}}, {"shape": {"outer": [[-2623.82, -847.09], [-2623.48, -846.69], [-2623.29, -846.21], [-2623.65, -845.81], [-2623.81, -845.63], [-2622.9, -845.52], [-2619.65, -844.93], [-2618.87, -845.71], [-2620.25, -846.0], [-2621.61, -846.57], [-2623.7, -847.42], [-2623.82, -847.09]], "holes": []}}, {"shape": {"outer": [[-2605.42, -846.69], [-2605.91, -849.76], [-2608.42, -852.11], [-2614.97, -857.11], [-2625.69, -864.03], [-2626.35, -863.5], [-2626.24, -862.52], [-2626.69, -861.88], [-2627.47, -861.37], [-2628.31, -861.39], [-2629.02, -861.81], [-2629.35, -861.72], [-2629.23, -860.9], [-2629.07, -859.47], [-2628.49, -857.73], [-2627.6, -856.22], [-2626.59, -854.84], [-2624.96, -853.12], [-2623.47, -851.97], [-2622.68, -851.32], [-2621.77, -850.71], [-2620.7, -850.18], [-2617.07, -848.9], [-2613.2, -847.55], [-2609.61, -846.81], [-2607.56, -846.67], [-2605.42, -846.69]], "holes": []}}, {"shape": {"outer": [[-2643.17, -847.33], [-2643.08, -846.69], [-2634.72, -847.05], [-2634.74, -848.19], [-2635.95, -848.22], [-2637.35, -848.19], [-2639.05, -848.04], [-2640.54, -847.8], [-2643.17, -847.33]], "holes": []}}, {"shape": {"outer": [[-2679.14, -861.36], [-2679.12, -862.11], [-2701.52, -868.93], [-2699.99, -842.11], [-2679.04, -843.09], [-2679.02, -849.54], [-2682.13, -849.52], [-2682.24, -861.32], [-2679.14, -861.36]], "holes": []}}, {"shape": {"outer": [[-2677.28, -843.11], [-2674.92, -843.64], [-2674.41, -844.93], [-2674.37, -845.79], [-2674.63, -860.32], [-2677.6, -862.49], [-2677.28, -843.11]], "holes": []}}, {"shape": {"outer": [[-2679.19, -841.19], [-2699.87, -840.5], [-2699.78, -838.48], [-2681.36, -839.51], [-2679.17, -839.88], [-2679.19, -841.19]], "holes": []}}, {"shape": {"outer": [[-2524.38, -731.21], [-2525.2, -731.13], [-2524.75, -733.32], [-2526.17, -733.91], [-2527.18, -735.07], [-2527.69, -736.69], [-2527.58, -737.73], [-2526.92, -741.01], [-2522.03, -739.8], [-2524.38, -731.21]], "holes": []}}, {"shape": {"outer": [[-2526.6, -742.93], [-2525.06, -748.11], [-2525.57, -763.35], [-2525.62, -765.01], [-2524.29, -766.46], [-2522.82, -767.24], [-2519.77, -767.33], [-2517.2, -766.04], [-2513.63, -764.46], [-2511.68, -762.82], [-2511.34, -761.74], [-2512.31, -761.31], [-2516.22, -762.19], [-2521.25, -742.93], [-2521.63, -741.66], [-2526.6, -742.93]], "holes": []}}, {"shape": {"outer": [[-2473.97, -707.23], [-2478.1, -712.6], [-2476.38, -713.58], [-2473.66, -709.42], [-2473.69, -707.59], [-2473.97, -707.23]], "holes": []}}, {"shape": {"outer": [[-2457.8, -727.07], [-2457.57, -723.95], [-2458.21, -722.71], [-2458.17, -721.52], [-2457.59, -719.68], [-2456.34, -718.53], [-2454.08, -717.85], [-2449.94, -718.06], [-2450.37, -719.04], [-2450.35, -720.08], [-2450.08, -721.05], [-2449.46, -721.97], [-2455.72, -727.13], [-2457.8, -727.07]], "holes": []}}, {"shape": {"outer": [[-2495.61, -757.98], [-2490.62, -754.17], [-2492.51, -751.43], [-2497.69, -754.04], [-2495.61, -757.98]], "holes": []}}, {"shape": {"outer": [[-2488.43, -752.24], [-2483.39, -748.93], [-2484.9, -746.65], [-2489.86, -749.85], [-2488.43, -752.24]], "holes": []}}, {"shape": {"outer": [[-2480.74, -746.32], [-2476.32, -742.96], [-2477.68, -741.18], [-2482.11, -744.54], [-2480.74, -746.32]], "holes": []}}, {"shape": {"outer": [[-2473.23, -741.05], [-2468.95, -737.35], [-2470.83, -735.04], [-2475.08, -738.93], [-2473.23, -741.05]], "holes": []}}, {"shape": {"outer": [[-2654.46, -770.28], [-2654.39, -767.01], [-2655.58, -766.91], [-2654.31, -719.25], [-2651.42, -719.28], [-2653.02, -771.41], [-2654.46, -770.28]], "holes": []}}, {"shape": {"outer": [[-1452.38, -1324.6], [-1458.65, -1330.2], [-1458.95, -1330.79], [-1458.93, -1331.65], [-1458.3, -1332.15], [-1457.29, -1332.25], [-1450.68, -1326.52], [-1450.56, -1325.85], [-1450.67, -1325.17], [-1451.01, -1324.72], [-1451.51, -1324.46], [-1452.38, -1324.6]], "holes": []}}, {"shape": {"outer": [[-1428.89, -1350.25], [-1435.17, -1355.96], [-1435.5, -1356.65], [-1435.32, -1357.19], [-1434.95, -1357.65], [-1434.44, -1357.88], [-1433.94, -1357.93], [-1433.46, -1357.7], [-1427.33, -1352.22], [-1427.14, -1351.64], [-1427.11, -1351.1], [-1427.41, -1350.46], [-1427.75, -1350.17], [-1428.34, -1350.02], [-1428.89, -1350.25]], "holes": []}}, {"shape": {"outer": [[442.53, 24.21], [443.55, 23.42], [444.61, 20.55], [445.85, 17.35], [446.44, 14.59], [446.2, 12.78], [442.28, 11.68], [442.13, 23.08], [442.53, 24.21]], "holes": []}}, {"shape": {"outer": [[442.57, 10.05], [445.88, 10.8], [445.31, 9.16], [444.65, 7.95], [443.74, 6.9], [442.54, 5.93], [442.57, 10.05]], "holes": []}}, {"shape": {"outer": [[440.44, 5.02], [440.86, 9.58], [435.26, 7.45], [433.01, 6.2], [430.89, 4.84], [428.89, 3.54], [427.39, 2.57], [425.7, 1.95], [426.12, 0.54], [431.94, 2.16], [433.04, 2.63], [433.21, 3.56], [433.47, 5.41], [433.68, 6.21], [435.12, 6.05], [435.08, 4.74], [435.44, 3.4], [440.44, 5.02]], "holes": []}}, {"shape": {"outer": [[395.73, -15.62], [395.85, -15.95], [398.34, -14.15], [401.59, -11.89], [405.17, -9.49], [409.18, -7.17], [412.95, -5.31], [417.05, -3.16], [421.14, -1.42], [423.1, -0.57], [422.74, 0.55], [420.45, -0.2], [417.29, -1.55], [413.6, -3.27], [409.67, -5.52], [406.98, -7.28], [403.59, -9.53], [401.82, -10.69], [401.2, -10.71], [395.73, -15.62]], "holes": []}}, {"shape": {"outer": [[-1287.48, 26.06], [-1283.53, 25.37], [-1282.73, 42.65], [-1286.16, 41.78], [-1287.48, 26.06]], "holes": []}}, {"shape": {"outer": [[-1281.91, 57.23], [-1285.06, 55.9], [-1285.56, 48.56], [-1282.48, 46.66], [-1281.91, 57.23]], "holes": []}}, {"shape": {"outer": [[-1284.0, 81.64], [-1280.61, 81.49], [-1281.56, 60.35], [-1284.91, 61.98], [-1284.0, 81.64]], "holes": []}}, {"shape": {"outer": [[-1280.18, 84.72], [-1279.16, 103.07], [-1279.46, 104.4], [-1281.05, 104.03], [-1281.8, 103.51], [-1282.4, 102.81], [-1283.38, 84.9], [-1280.18, 84.72]], "holes": []}}, {"shape": {"outer": [[-1276.84, 146.4], [-1280.0, 146.01], [-1279.79, 145.48], [-1280.07, 139.7], [-1280.29, 139.72], [-1280.32, 138.9], [-1280.25, 137.81], [-1280.06, 137.08], [-1279.69, 136.33], [-1279.27, 135.43], [-1278.92, 134.44], [-1278.62, 133.39], [-1278.42, 132.59], [-1278.24, 131.24], [-1277.64, 131.2], [-1276.84, 146.4]], "holes": []}}, {"shape": {"outer": [[-1325.01, 33.61], [-1325.12, 31.88], [-1325.3, 28.13], [-1305.72, 27.21], [-1302.94, 27.32], [-1301.97, 28.38], [-1301.49, 29.59], [-1299.23, 69.47], [-1300.16, 69.49], [-1300.18, 69.06], [-1301.76, 69.06], [-1303.02, 36.95], [-1303.84, 37.02], [-1304.03, 33.21], [-1307.91, 33.36], [-1307.97, 32.72], [-1325.01, 33.61]], "holes": []}}, {"shape": {"outer": [[-1334.22, 28.76], [-1334.17, 30.11], [-1331.91, 30.04], [-1331.96, 28.68], [-1334.22, 28.76]], "holes": []}}, {"shape": {"outer": [[-1340.86, 29.29], [-1340.81, 30.64], [-1338.55, 30.56], [-1338.6, 29.21], [-1340.86, 29.29]], "holes": []}}, {"shape": {"outer": [[-441.65, -102.06], [-437.96, -106.59], [-437.17, -107.07], [-436.31, -107.17], [-435.67, -106.86], [-435.7, -106.17], [-436.24, -105.42], [-436.92, -104.38], [-437.22, -103.1], [-437.03, -101.53], [-436.32, -100.29], [-435.31, -99.5], [-434.32, -99.13], [-433.38, -99.08], [-432.67, -98.87], [-432.17, -98.49], [-432.28, -97.91], [-434.08, -95.93], [-437.8, -98.94], [-441.65, -102.06]], "holes": []}}, {"shape": {"outer": [[-1442.11, -87.56], [-1442.2, -89.58], [-1453.72, -89.04], [-1453.68, -88.43], [-1453.62, -87.03], [-1442.11, -87.56]], "holes": []}}, {"shape": {"outer": [[-1456.51, -88.78], [-1456.49, -88.37], [-1456.43, -86.93], [-1468.05, -86.38], [-1468.11, -87.57], [-1468.15, -88.24], [-1456.51, -88.78]], "holes": []}}, {"shape": {"outer": [[-21.42, -329.71], [-22.5, -330.68], [-21.53, -331.76], [-20.45, -330.79], [-21.42, -329.71]], "holes": []}}, {"shape": {"outer": [[-16.5, -335.05], [-17.57, -336.03], [-16.58, -337.09], [-15.52, -336.11], [-16.5, -335.05]], "holes": []}}, {"shape": {"outer": [[11.09, -347.89], [9.24, -349.55], [7.27, -351.29], [12.69, -357.31], [16.51, -353.9], [11.09, -347.89]], "holes": []}}, {"shape": {"outer": [[-11.68, -336.03], [-11.39, -335.91], [-11.12, -335.88], [-10.83, -335.92], [-10.5, -336.06], [-10.23, -336.31], [-10.07, -336.57], [-10.0, -336.8], [-9.98, -337.04], [-10.0, -337.25], [-10.07, -337.46], [-10.23, -337.74], [-10.47, -337.95], [-10.8, -338.11], [-11.18, -338.15], [-11.39, -338.12], [-11.6, -338.05], [-11.91, -337.83], [-12.08, -337.63], [-12.2, -337.39], [-12.26, -337.13], [-12.25, -336.88], [-12.18, -336.61], [-12.06, -336.37], [-11.92, -336.21], [-11.68, -336.03]], "holes": []}}, {"shape": {"outer": [[42.68, -330.06], [40.94, -331.64], [39.37, -329.93], [30.93, -337.57], [32.32, -339.09], [20.67, -349.63], [15.59, -344.06], [37.43, -324.28], [42.68, -330.06]], "holes": []}}, {"shape": {"outer": [[-341.96, -206.0], [-342.75, -205.12], [-341.93, -204.41], [-345.45, -200.51], [-346.27, -201.21], [-347.12, -200.27], [-350.99, -203.55], [-350.35, -204.26], [-351.22, -205.01], [-347.36, -209.3], [-346.48, -208.56], [-345.83, -209.28], [-341.96, -206.0]], "holes": []}}, {"shape": {"outer": [[-348.6, -198.64], [-349.39, -197.76], [-348.57, -197.05], [-353.49, -191.58], [-354.32, -192.28], [-353.84, -192.81], [-357.67, -196.14], [-358.2, -195.56], [-359.07, -196.3], [-353.95, -201.99], [-353.09, -201.23], [-352.44, -201.95], [-348.6, -198.64]], "holes": []}}, {"shape": {"outer": [[-360.97, -184.9], [-360.2, -185.75], [-359.39, -185.04], [-354.28, -190.7], [-355.11, -191.4], [-355.77, -190.67], [-359.59, -194.01], [-359.13, -194.52], [-360.0, -195.27], [-365.01, -189.71], [-364.14, -188.95], [-364.81, -188.21], [-360.97, -184.9]], "holes": []}}, {"shape": {"outer": [[-361.88, -183.88], [-362.67, -183.0], [-361.86, -182.29], [-366.79, -176.83], [-367.61, -177.53], [-367.13, -178.06], [-370.96, -181.39], [-371.49, -180.8], [-372.37, -181.55], [-367.24, -187.23], [-366.37, -186.48], [-365.73, -187.2], [-361.88, -183.88]], "holes": []}}, {"shape": {"outer": [[-374.26, -170.14], [-373.49, -171.0], [-372.67, -170.28], [-367.58, -175.95], [-368.4, -176.65], [-369.06, -175.92], [-372.88, -179.26], [-372.42, -179.77], [-373.29, -180.52], [-378.31, -174.96], [-377.44, -174.2], [-378.09, -173.46], [-374.26, -170.14]], "holes": []}}, {"shape": {"outer": [[-332.94, -224.48], [-333.1, -224.22], [-333.18, -223.93], [-333.16, -223.63], [-333.05, -223.35], [-332.85, -223.12], [-332.59, -222.96], [-332.3, -222.89], [-331.97, -222.92], [-331.67, -223.06], [-331.48, -223.24], [-331.27, -223.64], [-331.29, -223.93], [-331.36, -224.25], [-331.55, -224.51], [-331.82, -224.71], [-332.11, -224.79], [-332.42, -224.78], [-332.71, -224.67], [-332.94, -224.48]], "holes": []}}, {"shape": {"outer": [[-320.87, -238.04], [-321.04, -237.79], [-321.12, -237.49], [-321.1, -237.19], [-320.99, -236.91], [-320.78, -236.68], [-320.53, -236.52], [-320.23, -236.45], [-319.91, -236.48], [-319.71, -236.56], [-319.52, -236.66], [-319.37, -236.83], [-319.27, -237.02], [-319.21, -237.27], [-319.21, -237.49], [-319.29, -237.81], [-319.49, -238.08], [-319.75, -238.26], [-320.05, -238.36], [-320.35, -238.34], [-320.64, -238.23], [-320.87, -238.04]], "holes": []}}, {"shape": {"outer": [[-67.21, -344.7], [-65.71, -343.36], [-56.07, -354.14], [-56.56, -354.57], [-55.66, -355.56], [-59.38, -358.86], [-62.15, -355.76], [-59.46, -353.36], [-67.21, -344.7]], "holes": []}}, {"shape": {"outer": [[-340.15, -65.62], [-340.57, -66.02], [-341.67, -64.86], [-341.26, -64.46], [-341.86, -63.84], [-337.59, -59.8], [-337.1, -60.3], [-337.62, -60.79], [-336.35, -62.13], [-335.82, -61.63], [-335.24, -62.25], [-339.52, -66.28], [-340.15, -65.62]], "holes": []}}, {"shape": {"outer": [[-355.55, -79.37], [-355.98, -79.76], [-357.04, -78.55], [-356.62, -78.19], [-357.19, -77.53], [-352.76, -73.64], [-352.35, -74.11], [-351.83, -73.65], [-350.56, -75.1], [-351.08, -75.55], [-350.51, -76.19], [-354.94, -80.07], [-355.55, -79.37]], "holes": []}}, {"shape": {"outer": [[-319.56, -244.73], [-320.39, -245.53], [-319.65, -246.31], [-331.11, -256.59], [-331.85, -255.79], [-331.14, -255.11], [-334.62, -251.42], [-335.12, -251.91], [-335.91, -251.06], [-324.53, -240.88], [-323.74, -241.72], [-323.02, -241.03], [-319.56, -244.73]], "holes": []}}, {"shape": {"outer": [[-297.27, -255.38], [-298.06, -254.5], [-297.24, -253.79], [-302.17, -248.31], [-303.0, -249.01], [-302.52, -249.55], [-306.34, -252.87], [-306.87, -252.29], [-307.75, -253.03], [-302.63, -258.72], [-301.76, -257.96], [-301.11, -258.68], [-297.27, -255.38]], "holes": []}}, {"shape": {"outer": [[-309.65, -241.63], [-308.87, -242.49], [-308.06, -241.78], [-302.96, -247.43], [-303.79, -248.13], [-304.44, -247.4], [-308.27, -250.74], [-307.8, -251.25], [-308.68, -252.01], [-313.69, -246.44], [-312.82, -245.69], [-313.48, -244.94], [-309.65, -241.63]], "holes": []}}, {"shape": {"outer": [[-283.88, -269.95], [-284.67, -269.07], [-283.85, -268.36], [-288.78, -262.89], [-289.61, -263.58], [-289.13, -264.12], [-292.95, -267.45], [-293.48, -266.86], [-294.36, -267.61], [-289.24, -273.3], [-288.37, -272.53], [-287.72, -273.25], [-283.88, -269.95]], "holes": []}}, {"shape": {"outer": [[-296.26, -256.2], [-295.49, -257.06], [-294.67, -256.35], [-289.57, -262.01], [-290.4, -262.71], [-291.05, -261.98], [-294.88, -265.31], [-294.41, -265.83], [-295.29, -266.58], [-300.3, -261.01], [-299.43, -260.26], [-300.09, -259.52], [-296.26, -256.2]], "holes": []}}, {"shape": {"outer": [[-277.69, -276.72], [-278.48, -275.84], [-277.66, -275.13], [-281.18, -271.23], [-282.0, -271.93], [-282.84, -270.99], [-286.72, -274.27], [-286.08, -274.98], [-286.95, -275.73], [-283.09, -280.02], [-282.21, -279.28], [-281.56, -280.0], [-277.69, -276.72]], "holes": []}}, {"shape": {"outer": [[-250.26, -306.96], [-251.05, -306.08], [-250.23, -305.37], [-255.39, -299.92], [-256.2, -300.62], [-257.05, -299.69], [-260.92, -302.97], [-260.28, -303.68], [-261.15, -304.43], [-255.65, -310.26], [-254.78, -309.52], [-254.13, -310.24], [-250.26, -306.96]], "holes": []}}, {"shape": {"outer": [[-263.19, -291.74], [-263.98, -290.87], [-263.17, -290.16], [-268.32, -284.71], [-269.14, -285.41], [-269.99, -284.47], [-273.86, -287.75], [-273.22, -288.46], [-274.09, -289.21], [-268.59, -295.05], [-267.72, -294.31], [-267.07, -295.02], [-263.19, -291.74]], "holes": []}}, {"shape": {"outer": [[-244.52, -326.21], [-242.32, -328.54], [-242.49, -334.04], [-244.94, -333.91], [-244.84, -332.1], [-250.72, -331.78], [-244.52, -326.21]], "holes": []}}, {"shape": {"outer": [[-162.3, -264.88], [-161.42, -264.1], [-160.71, -264.92], [-155.19, -260.03], [-155.89, -259.2], [-156.44, -259.64], [-158.62, -257.01], [-158.03, -256.48], [-158.77, -255.6], [-164.51, -260.68], [-163.74, -261.55], [-164.47, -262.2], [-162.3, -264.88]], "holes": []}}, {"shape": {"outer": [[-148.46, -252.59], [-149.32, -253.37], [-148.61, -254.18], [-154.32, -259.24], [-155.01, -258.41], [-154.27, -257.76], [-156.48, -255.09], [-156.99, -255.55], [-157.75, -254.67], [-152.15, -249.71], [-151.39, -250.58], [-150.64, -249.92], [-148.46, -252.59]], "holes": []}}, {"shape": {"outer": [[-213.26, -310.76], [-212.41, -310.04], [-211.67, -310.9], [-206.61, -306.57], [-209.55, -303.16], [-210.38, -303.87], [-209.62, -304.75], [-213.9, -308.4], [-214.62, -307.56], [-215.42, -308.25], [-213.26, -310.76]], "holes": []}}, {"shape": {"outer": [[-200.11, -299.85], [-200.95, -300.57], [-200.21, -301.44], [-205.27, -305.76], [-208.2, -302.36], [-207.38, -301.65], [-206.62, -302.52], [-202.35, -298.87], [-203.08, -298.03], [-202.27, -297.34], [-200.11, -299.85]], "holes": []}}, {"shape": {"outer": [[-178.67, -281.27], [-185.77, -287.6], [-187.76, -285.38], [-187.0, -284.7], [-186.22, -285.55], [-180.73, -280.66], [-181.46, -279.84], [-180.62, -279.09], [-178.67, -281.27]], "holes": []}}, {"shape": {"outer": [[257.42, -3131.57], [258.29, -3132.1], [258.77, -3133.02], [258.19, -3134.21], [257.2, -3134.57], [248.52, -3134.25], [247.63, -3133.71], [247.13, -3132.88], [247.43, -3131.74], [248.36, -3131.2], [257.42, -3131.57]], "holes": []}}, {"shape": {"outer": [[276.4, -3132.68], [277.28, -3133.23], [277.76, -3134.14], [277.18, -3135.33], [276.19, -3135.7], [267.52, -3135.38], [266.63, -3134.84], [266.12, -3133.99], [266.42, -3132.87], [267.34, -3132.33], [276.4, -3132.68]], "holes": []}}, {"shape": {"outer": [[296.19, -3133.4], [297.06, -3133.95], [297.54, -3134.86], [296.96, -3136.04], [295.98, -3136.42], [287.3, -3136.09], [286.41, -3135.56], [285.9, -3134.72], [286.2, -3133.58], [287.13, -3133.04], [296.19, -3133.4]], "holes": []}}, {"shape": {"outer": [[315.11, -3134.17], [315.98, -3134.72], [316.47, -3135.63], [315.89, -3136.83], [314.9, -3137.19], [306.22, -3136.86], [305.33, -3136.33], [304.82, -3135.49], [305.12, -3134.35], [306.04, -3133.81], [315.11, -3134.17]], "holes": []}}, {"shape": {"outer": [[324.98, -3142.11], [332.52, -3142.48], [333.66, -3145.04], [333.66, -3148.09], [332.73, -3148.92], [323.27, -3148.54], [322.28, -3147.84], [322.2, -3146.24], [322.57, -3144.31], [323.58, -3143.12], [324.98, -3142.11]], "holes": []}}, {"shape": {"outer": [[-2163.32, -468.41], [-2163.48, -474.18], [-2151.37, -474.5], [-2140.33, -474.79], [-2140.18, -469.04], [-2163.32, -468.41]], "holes": []}}, {"shape": {"outer": [[-2183.55, -476.01], [-2200.01, -475.09], [-2199.97, -470.46], [-2198.27, -469.99], [-2195.55, -467.23], [-2196.23, -465.56], [-2186.57, -456.71], [-2185.31, -458.56], [-2184.08, -460.62], [-2183.35, -462.76], [-2182.97, -464.71], [-2183.36, -469.94], [-2183.55, -476.01]], "holes": []}}, {"shape": {"outer": [[-2177.74, -437.35], [-2174.56, -443.81], [-2172.9, -443.72], [-2171.85, -444.66], [-2173.61, -445.03], [-2172.21, -448.2], [-2172.87, -448.23], [-2173.33, -448.21], [-2173.39, -448.91], [-2173.24, -449.62], [-2173.38, -450.15], [-2173.07, -450.85], [-2172.5, -451.29], [-2171.56, -451.85], [-2171.4, -453.34], [-2173.07, -456.21], [-2174.81, -456.4], [-2174.67, -453.29], [-2175.35, -450.12], [-2176.46, -447.11], [-2178.31, -444.01], [-2180.04, -442.1], [-2180.84, -441.28], [-2177.74, -437.35]], "holes": []}}, {"shape": {"outer": [[-2180.84, -441.28], [-2190.58, -451.64], [-2186.57, -456.71], [-2185.31, -458.56], [-2184.08, -460.62], [-2183.35, -462.76], [-2182.97, -464.71], [-2180.11, -464.71], [-2178.98, -463.63], [-2178.57, -462.3], [-2177.91, -457.3], [-2174.81, -456.4], [-2174.67, -453.29], [-2175.35, -450.12], [-2176.46, -447.11], [-2178.31, -444.01], [-2180.04, -442.1], [-2180.84, -441.28]], "holes": []}}, {"shape": {"outer": [[-2183.36, -469.94], [-2175.24, -470.2], [-2175.35, -473.82], [-2171.22, -473.92], [-2169.76, -460.7], [-2169.95, -458.31], [-2172.05, -461.33], [-2178.57, -462.3], [-2178.98, -463.63], [-2180.11, -464.71], [-2182.97, -464.71], [-2183.36, -469.94]], "holes": []}}, {"shape": {"outer": [[-2223.17, -411.24], [-2221.74, -411.31], [-2221.3, -407.99], [-2224.3, -407.67], [-2232.37, -407.26], [-2233.57, -406.38], [-2242.25, -406.28], [-2242.33, -408.05], [-2225.17, -408.94], [-2223.17, -411.24]], "holes": []}}, {"shape": {"outer": [[-2216.17, -408.74], [-2216.49, -411.61], [-2217.1, -411.68], [-2216.95, -412.52], [-2213.2, -412.86], [-2208.48, -413.75], [-2205.82, -414.4], [-2204.83, -412.34], [-2209.21, -410.74], [-2213.89, -409.32], [-2216.17, -408.74]], "holes": []}}, {"shape": {"outer": [[-2232.21, -472.26], [-2230.18, -470.19], [-2218.44, -470.62], [-2216.34, -472.39], [-2218.13, -474.1], [-2231.01, -473.63], [-2232.21, -472.26]], "holes": []}}, {"shape": {"outer": [[-2218.13, -474.1], [-2216.34, -472.39], [-2214.56, -470.9], [-2206.7, -471.26], [-2204.7, -473.18], [-2202.86, -474.94], [-2218.13, -474.1]], "holes": []}}, {"shape": {"outer": [[-2204.7, -473.18], [-2201.86, -470.7], [-2202.06, -475.03], [-2202.86, -474.94], [-2204.7, -473.18]], "holes": []}}, {"shape": {"outer": [[-2244.44, -459.53], [-2247.09, -457.1], [-2245.43, -417.91], [-2242.67, -418.03], [-2244.44, -459.53]], "holes": []}}, {"shape": {"outer": [[-2221.93, -415.14], [-2215.08, -415.73], [-2206.46, -417.16], [-2206.43, -422.73], [-2206.18, -428.92], [-2205.95, -431.6], [-2206.09, -440.44], [-2208.34, -442.47], [-2207.75, -431.37], [-2221.93, -415.14]], "holes": []}}, {"shape": {"outer": [[-2247.87, -465.19], [-2247.99, -470.47], [-2244.55, -470.54], [-2243.67, -469.73], [-2247.87, -465.19]], "holes": []}}, {"shape": {"outer": [[-2278.41, -583.04], [-2275.93, -579.63], [-2273.64, -572.72], [-2272.37, -564.82], [-2272.01, -551.22], [-2271.91, -546.59], [-2271.43, -534.1], [-2271.72, -527.92], [-2274.65, -529.59], [-2278.51, -528.85], [-2278.42, -535.48], [-2279.51, -539.99], [-2279.85, -546.81], [-2281.07, -551.8], [-2283.09, -558.22], [-2283.24, -560.88], [-2284.7, -570.59], [-2289.99, -576.97], [-2292.01, -584.02], [-2290.32, -587.48], [-2288.19, -586.95], [-2283.28, -587.23], [-2278.41, -583.04]], "holes": []}}, {"shape": {"outer": [[-2286.15, -595.5], [-2290.32, -587.48], [-2288.19, -586.95], [-2283.28, -587.23], [-2278.41, -583.04], [-2275.93, -579.63], [-2273.64, -572.72], [-2272.37, -564.82], [-2272.01, -551.22], [-2271.91, -546.59], [-2271.43, -534.1], [-2271.72, -527.92], [-2270.45, -526.86], [-2269.75, -535.0], [-2270.49, -564.39], [-2270.83, -568.89], [-2271.59, -573.15], [-2273.45, -578.21], [-2275.74, -583.26], [-2280.2, -589.51], [-2286.15, -595.5]], "holes": []}}, {"shape": {"outer": [[-2353.02, -621.99], [-2301.34, -515.94], [-2299.21, -516.63], [-2292.52, -515.36], [-2285.0, -526.58], [-2278.51, -528.85], [-2278.42, -535.48], [-2279.51, -539.99], [-2279.85, -546.81], [-2281.07, -551.8], [-2283.09, -558.22], [-2283.24, -560.88], [-2284.7, -570.59], [-2289.99, -576.97], [-2292.01, -584.02], [-2298.27, -581.77], [-2305.76, -583.14], [-2310.5, -588.74], [-2313.87, -595.0], [-2318.62, -599.32], [-2322.04, -605.12], [-2325.12, -610.54], [-2330.38, -610.49], [-2336.34, -610.27], [-2340.43, -611.75], [-2347.79, -615.94], [-2353.02, -621.99]], "holes": []}}, {"shape": {"outer": [[-2368.31, -638.68], [-2365.59, -633.71], [-2364.78, -630.51], [-2362.56, -626.38], [-2362.42, -623.23], [-2363.1, -621.55], [-2365.11, -620.94], [-2364.99, -617.85], [-2365.61, -612.81], [-2361.82, -611.24], [-2360.01, -609.05], [-2349.14, -605.42], [-2345.58, -601.36], [-2349.73, -609.82], [-2359.83, -629.49], [-2368.31, -638.68]], "holes": []}}, {"shape": {"outer": [[-2345.58, -601.36], [-2344.81, -593.98], [-2346.22, -590.39], [-2348.08, -587.07], [-2351.02, -583.67], [-2354.09, -582.85], [-2355.09, -581.97], [-2353.46, -578.27], [-2350.83, -577.11], [-2350.1, -574.92], [-2348.24, -574.54], [-2344.51, -576.48], [-2341.51, -577.03], [-2339.68, -576.02], [-2339.68, -573.24], [-2336.57, -573.38], [-2333.77, -571.75], [-2333.41, -568.22], [-2333.9, -564.25], [-2336.03, -559.25], [-2335.86, -554.61], [-2334.87, -552.46], [-2330.01, -550.6], [-2328.08, -546.91], [-2327.24, -543.19], [-2326.98, -539.41], [-2330.67, -535.21], [-2335.42, -531.95], [-2338.29, -532.08], [-2337.99, -526.84], [-2339.95, -525.85], [-2338.67, -523.32], [-2337.47, -522.02], [-2336.54, -521.27], [-2336.56, -519.08], [-2337.29, -517.26], [-2337.54, -515.45], [-2338.68, -513.26], [-2339.61, -511.39], [-2341.44, -510.23], [-2343.84, -509.9], [-2345.28, -510.54], [-2346.34, -511.45], [-2347.78, -513.48], [-2348.45, -514.32], [-2349.15, -516.02], [-2350.75, -517.86], [-2352.53, -518.39], [-2354.77, -518.22], [-2359.84, -518.46], [-2360.6, -516.17], [-2358.42, -514.06], [-2358.97, -510.75], [-2356.04, -508.22], [-2353.96, -505.65], [-2355.2, -501.85], [-2357.77, -499.88], [-2364.77, -499.58], [-2368.77, -500.97], [-2371.97, -507.39], [-2375.09, -510.87], [-2377.98, -521.24], [-2376.44, -483.91], [-2375.1, -478.83], [-2372.36, -474.02], [-2368.16, -470.04], [-2363.06, -467.16], [-2357.9, -466.55], [-2350.19, -467.08], [-2345.22, -469.32], [-2341.73, -472.06], [-2339.38, -474.44], [-2336.79, -476.51], [-2334.14, -478.22], [-2331.19, -479.78], [-2327.63, -481.04], [-2329.37, -481.79], [-2343.36, -481.28], [-2344.39, -480.92], [-2345.51, -479.79], [-2346.14, -478.13], [-2346.32, -476.45], [-2347.31, -474.15], [-2348.11, -472.75], [-2348.75, -471.22], [-2350.7, -469.13], [-2354.03, -467.51], [-2357.74, -467.37], [-2360.92, -468.13], [-2365.01, -469.94], [-2368.57, -472.12], [-2370.55, -474.43], [-2371.72, -476.18], [-2372.83, -478.1], [-2374.51, -480.19], [-2374.92, -482.31], [-2374.35, -484.67], [-2373.65, -486.46], [-2372.63, -487.81], [-2370.9, -488.41], [-2368.82, -488.82], [-2366.27, -488.93], [-2363.49, -488.4], [-2361.49, -489.33], [-2360.52, -490.63], [-2359.57, -492.33], [-2358.09, -494.43], [-2356.11, -496.6], [-2352.48, -497.96], [-2349.03, -498.29], [-2346.46, -497.71], [-2344.31, -496.65], [-2342.02, -495.51], [-2340.33, -494.28], [-2339.45, -495.99], [-2336.36, -497.91], [-2332.16, -498.28], [-2328.91, -500.84], [-2324.93, -500.68], [-2315.54, -504.25], [-2302.91, -514.34], [-2303.47, -515.45], [-2345.58, -601.36]], "holes": []}}, {"shape": {"outer": [[-2348.0, -460.46], [-2346.25, -460.03], [-2344.93, -458.93], [-2344.75, -457.15], [-2346.07, -453.82], [-2349.16, -449.15], [-2357.06, -448.77], [-2359.62, -453.41], [-2359.87, -456.61], [-2358.9, -458.23], [-2354.04, -458.48], [-2351.07, -459.67], [-2348.0, -460.46]], "holes": []}}, {"shape": {"outer": [[-2358.9, -458.23], [-2376.77, -457.28], [-2379.34, -457.22], [-2393.79, -456.87], [-2394.58, -451.01], [-2393.63, -447.66], [-2378.85, -447.73], [-2357.06, -448.77], [-2359.62, -453.41], [-2359.87, -456.61], [-2358.9, -458.23]], "holes": []}}, {"shape": {"outer": [[-2679.43, -869.74], [-2679.31, -866.83], [-2703.37, -874.03], [-2703.48, -877.13], [-2679.43, -869.74]], "holes": []}}, {"shape": {"outer": [[-2707.48, -860.32], [-2707.54, -857.47], [-2708.85, -855.67], [-2709.49, -851.71], [-2709.65, -850.26], [-2710.84, -849.32], [-2714.06, -849.19], [-2714.81, -848.11], [-2717.57, -849.25], [-2720.98, -850.54], [-2722.93, -854.04], [-2724.38, -854.95], [-2725.2, -859.16], [-2729.32, -857.82], [-2732.01, -855.35], [-2737.41, -854.01], [-2738.93, -854.14], [-2740.3, -852.57], [-2744.3, -854.7], [-2746.54, -858.36], [-2747.99, -862.86], [-2751.11, -860.24], [-2752.61, -859.55], [-2756.05, -859.3], [-2757.95, -858.73], [-2759.96, -860.45], [-2761.22, -859.65], [-2762.16, -862.38], [-2761.77, -864.9], [-2759.63, -864.11], [-2758.21, -870.03], [-2763.66, -875.58], [-2768.09, -873.0], [-2769.88, -871.71], [-2772.11, -871.91], [-2774.23, -870.76], [-2778.6, -869.81], [-2780.82, -872.16], [-2784.56, -872.85], [-2788.26, -871.72], [-2790.94, -873.83], [-2791.69, -873.4], [-2791.22, -872.03], [-2791.43, -870.7], [-2792.87, -870.3], [-2795.24, -870.74], [-2801.62, -877.1], [-2803.64, -874.52], [-2801.63, -869.23], [-2803.38, -864.68], [-2801.16, -863.74], [-2801.4, -861.31], [-2802.88, -859.35], [-2803.78, -856.77], [-2804.07, -852.39], [-2802.51, -848.89], [-2804.14, -845.85], [-2807.32, -845.29], [-2809.66, -849.45], [-2806.97, -852.18], [-2807.19, -857.31], [-2809.78, -860.92], [-2808.47, -864.76], [-2809.57, -869.79], [-2809.32, -875.0], [-2810.85, -878.69], [-2815.38, -880.41], [-2818.24, -880.81], [-2820.45, -876.65], [-2820.69, -870.61], [-2817.23, -868.79], [-2817.23, -866.14], [-2819.32, -864.24], [-2820.12, -858.87], [-2825.28, -860.26], [-2825.76, -862.95], [-2826.52, -871.95], [-2836.05, -877.2], [-2842.2, -876.36], [-2842.53, -873.25], [-2845.03, -872.45], [-2846.37, -874.78], [-2847.17, -878.3], [-2860.11, -878.35], [-2861.73, -888.64], [-2866.2, -887.97], [-2870.39, -894.44], [-2868.81, -900.73], [-2871.84, -899.39], [-2875.35, -899.21], [-2876.39, -897.27], [-2878.01, -897.84], [-2883.95, -903.4], [-2886.03, -912.46], [-2892.65, -911.07], [-2893.1, -903.19], [-2889.33, -901.1], [-2889.22, -896.46], [-2892.34, -893.83], [-2892.37, -892.36], [-2892.81, -891.17], [-2891.5, -889.58], [-2892.48, -887.54], [-2893.12, -884.74], [-2897.45, -883.56], [-2899.41, -884.09], [-2899.66, -882.0], [-2904.87, -879.85], [-2906.08, -881.61], [-2905.43, -883.17], [-2905.16, -885.62], [-2907.79, -884.99], [-2909.22, -886.94], [-2907.57, -890.59], [-2908.58, -895.15], [-2906.08, -898.41], [-2907.41, -901.36], [-2905.7, -902.77], [-2903.31, -903.65], [-2901.63, -910.51], [-2900.52, -913.28], [-2901.72, -915.93], [-2901.23, -920.11], [-2900.11, -922.23], [-2900.07, -927.32], [-2915.14, -930.01], [-2916.77, -925.75], [-2910.8, -921.63], [-2912.69, -918.39], [-2909.8, -917.3], [-2909.06, -914.68], [-2910.45, -913.58], [-2910.82, -910.97], [-2914.39, -911.41], [-2914.58, -906.24], [-2917.51, -905.87], [-2917.27, -903.79], [-2914.94, -901.2], [-2915.07, -897.81], [-2916.11, -896.64], [-2915.51, -892.13], [-2918.52, -891.2], [-2920.8, -889.04], [-2924.1, -890.39], [-2924.61, -889.1], [-2928.68, -893.21], [-2931.24, -892.15], [-2932.59, -889.32], [-2933.71, -889.44], [-2935.0, -888.21], [-2935.39, -886.4], [-2939.6, -885.66], [-2941.09, -889.99], [-2946.78, -893.93], [-2947.56, -896.68], [-2944.4, -899.36], [-2941.14, -899.17], [-2941.1, -902.16], [-2937.8, -904.94], [-2935.83, -905.18], [-2937.6, -907.22], [-2936.73, -909.3], [-2935.71, -910.28], [-2936.53, -911.63], [-2933.86, -912.15], [-2928.24, -908.79], [-2927.1, -910.43], [-2928.6, -914.31], [-2927.18, -916.3], [-2924.14, -915.75], [-2923.57, -916.76], [-2926.58, -918.57], [-2927.02, -921.98], [-2930.45, -924.26], [-2928.3, -928.39], [-2925.0, -930.31], [-2929.54, -934.57], [-2933.05, -938.27], [-2947.38, -938.44], [-2948.27, -932.91], [-2951.93, -931.69], [-2956.58, -932.52], [-2959.84, -932.8], [-2961.62, -933.78], [-2963.8, -932.16], [-2966.86, -935.47], [-2969.18, -936.8], [-2970.72, -934.07], [-2973.13, -933.48], [-2976.06, -934.34], [-2980.02, -941.81], [-2987.23, -942.69], [-2993.42, -944.03], [-2994.55, -946.4], [-2995.39, -948.62], [-2996.04, -950.94], [-3002.58, -949.94], [-3004.21, -955.53], [-3008.79, -951.29], [-3008.26, -942.5], [-3009.29, -941.01], [-3010.93, -940.54], [-3010.59, -938.09], [-3013.47, -935.54], [-3016.85, -935.22], [-3018.17, -938.01], [-3019.37, -941.93], [-3021.49, -941.12], [-3022.91, -942.55], [-3022.47, -944.1], [-3024.0, -949.8], [-3021.86, -953.29], [-3024.69, -955.47], [-3024.97, -958.01], [-3033.04, -956.81], [-3034.7, -957.81], [-3035.28, -955.02], [-3037.9, -955.68], [-3039.63, -954.53], [-3043.76, -956.01], [-3046.17, -958.05], [-3047.92, -960.09], [-3050.79, -960.22], [-3050.74, -958.69], [-3044.0, -954.72], [-3045.64, -951.11], [-3040.92, -946.66], [-3042.03, -945.2], [-3042.12, -942.02], [-3045.67, -939.45], [-3048.14, -939.03], [-3049.95, -937.12], [-3049.48, -934.51], [-3051.06, -932.88], [-3053.15, -932.75], [-3055.26, -933.7], [-3057.07, -938.47], [-3061.06, -937.58], [-3066.46, -941.31], [-3070.37, -939.1], [-3074.07, -940.41], [-3076.36, -943.07], [-3076.59, -946.91], [-3073.64, -951.44], [-3071.79, -952.04], [-3073.03, -955.8], [-3070.84, -958.27], [-3069.21, -959.76], [-3068.99, -963.84], [-3074.24, -966.21], [-3084.72, -963.83], [-3087.83, -960.54], [-3088.54, -956.47], [-3090.9, -956.36], [-3090.67, -954.97], [-3089.82, -953.46], [-3091.54, -950.31], [-3094.5, -950.51], [-3095.17, -952.49], [-3094.8, -954.5], [-3094.44, -955.68], [-3095.9, -957.95], [-3101.62, -965.48], [-3105.04, -967.09], [-3106.66, -969.75], [-3105.05, -974.91], [-3105.87, -976.75], [-3109.33, -971.26], [-3113.8, -969.4], [-3119.4, -969.98], [-3121.77, -967.82], [-3126.37, -969.4], [-3123.68, -965.27], [-3119.07, -966.46], [-3114.99, -964.91], [-3115.75, -963.4], [-3115.97, -960.8], [-3118.19, -958.31], [-3119.26, -958.94], [-3119.26, -959.87], [-3120.12, -958.98], [-3122.06, -959.66], [-3122.75, -958.23], [-3123.84, -958.0], [-3124.08, -955.37], [-3126.38, -955.04], [-3127.98, -955.76], [-3128.73, -956.32], [-3130.06, -955.05], [-3130.84, -955.09], [-3130.83, -954.45], [-3130.37, -953.85], [-3127.21, -954.81], [-3125.33, -954.63], [-3123.9, -950.58], [-3126.02, -943.76], [-3130.93, -943.06], [-3135.57, -943.29], [-3136.33, -944.42], [-3135.37, -947.91], [-3136.25, -949.07], [-3137.36, -949.21], [-3136.79, -948.08], [-3138.14, -946.06], [-3139.72, -945.99], [-3143.3, -946.37], [-3145.0, -943.58], [-3149.46, -943.61], [-3150.29, -942.78], [-3150.23, -941.44], [-3149.13, -940.85], [-3149.52, -939.81], [-3150.53, -938.07], [-3156.56, -935.46], [-3158.45, -933.56], [-3161.78, -933.41], [-3162.21, -936.46], [-3167.28, -940.42], [-3167.93, -943.74], [-3173.72, -959.31], [-3171.09, -958.6], [-3172.61, -961.95], [-3167.13, -962.9], [-3165.03, -957.94], [-3164.15, -952.62], [-3161.15, -948.75], [-3157.39, -948.48], [-3154.47, -951.4], [-3156.26, -955.31], [-3154.69, -957.72], [-3156.8, -960.12], [-3156.39, -963.01], [-3149.45, -962.51], [-3145.07, -969.02], [-3145.05, -977.46], [-3154.78, -979.42], [-3165.36, -992.37], [-3177.11, -989.38], [-3181.13, -997.63], [-3174.34, -1001.86], [-3182.96, -1009.43], [-3205.37, -1015.63], [-3210.41, -1015.04], [-3212.61, -1010.06], [-3216.72, -1008.77], [-3219.01, -1011.27], [-3224.45, -1013.37], [-3231.58, -1014.48], [-3236.75, -1012.57], [-3240.28, -1009.35], [-3248.78, -1010.13], [-3251.23, -1008.7], [-3247.09, -1004.76], [-3249.74, -1003.42], [-3252.48, -1006.69], [-3254.39, -1005.78], [-3252.9, -1004.14], [-3254.3, -1002.41], [-3251.6, -1001.26], [-3251.57, -999.19], [-3252.14, -997.4], [-3253.43, -995.98], [-3254.76, -997.08], [-3256.23, -999.56], [-3259.96, -1000.35], [-3261.57, -997.93], [-3264.88, -998.2], [-3268.08, -999.56], [-3268.2, -1021.51], [-3267.08, -1024.22], [-3263.63, -1024.81], [-3261.31, -1029.05], [-3266.04, -1032.44], [-3267.43, -1037.43], [-3266.06, -1037.92], [-3261.81, -1036.65], [-3259.39, -1036.57], [-3259.71, -1037.84], [-3261.85, -1039.73], [-3261.15, -1041.19], [-3263.49, -1045.86], [-3265.18, -1048.02], [-3264.84, -1050.68], [-3266.84, -1053.97], [-3267.3, -1057.95], [-3266.37, -1058.75], [-3266.94, -1060.73], [-3268.59, -1061.61], [-3270.48, -1068.17], [-3266.04, -1069.37], [-3262.14, -1066.26], [-3262.17, -1062.68], [-3260.04, -1061.12], [-3260.54, -1060.09], [-3260.21, -1059.12], [-3258.04, -1058.94], [-3256.24, -1057.76], [-3255.32, -1056.35], [-3252.57, -1055.32], [-3249.69, -1053.51], [-3245.16, -1052.44], [-3238.86, -1052.68], [-3233.89, -1049.63], [-3230.03, -1048.54], [-3228.51, -1050.18], [-3229.5, -1053.08], [-3228.98, -1054.89], [-3228.1, -1055.44], [-3228.13, -1056.56], [-3225.74, -1058.06], [-3226.02, -1060.43], [-3226.08, -1061.95], [-3226.55, -1064.48], [-3230.52, -1065.55], [-3230.41, -1068.68], [-3233.44, -1072.47], [-3232.14, -1074.94], [-3229.62, -1076.73], [-3226.31, -1080.51], [-3229.11, -1083.89], [-3229.94, -1087.55], [-3228.61, -1088.9], [-3224.56, -1089.43], [-3223.49, -1091.37], [-3221.08, -1090.19], [-3219.75, -1087.94], [-3218.11, -1088.58], [-3215.86, -1092.93], [-3211.84, -1094.28], [-3212.81, -1095.62], [-3212.0, -1096.64], [-3210.28, -1096.24], [-3209.96, -1097.47], [-3209.04, -1098.64], [-3207.81, -1099.49], [-3209.45, -1102.35], [-3209.1, -1104.17], [-3207.84, -1104.75], [-3205.38, -1104.62], [-3204.66, -1102.52], [-3203.27, -1104.58], [-3202.01, -1104.64], [-3200.04, -1102.26], [-3200.31, -1100.02], [-3197.07, -1096.27], [-3195.65, -1095.54], [-3197.44, -1091.7], [-3202.4, -1088.85], [-3206.47, -1088.33], [-3207.82, -1086.45], [-3207.29, -1084.68], [-3207.88, -1082.24], [-3199.14, -1079.94], [-3191.47, -1076.27], [-3189.44, -1076.07], [-3185.83, -1074.07], [-3185.75, -1072.84], [-3184.46, -1071.51], [-3184.68, -1069.85], [-3182.59, -1067.25], [-3183.42, -1064.75], [-3185.5, -1062.71], [-3185.34, -1060.62], [-3189.3, -1058.69], [-3197.38, -1056.91], [-3200.11, -1053.8], [-3200.04, -1052.79], [-3200.58, -1048.45], [-3201.55, -1048.04], [-3201.5, -1047.23], [-3203.42, -1047.06], [-3204.04, -1045.68], [-3200.94, -1045.12], [-3196.52, -1041.81], [-3196.47, -1041.28], [-3197.68, -1040.71], [-3197.28, -1040.13], [-3195.05, -1040.58], [-3192.58, -1038.63], [-3190.03, -1039.1], [-3186.94, -1041.19], [-3182.63, -1041.88], [-3181.01, -1043.16], [-3176.09, -1040.85], [-3172.8, -1042.26], [-3169.46, -1041.24], [-3165.11, -1042.57], [-3162.65, -1044.13], [-3160.41, -1043.05], [-3158.75, -1042.52], [-3158.37, -1041.54], [-3156.44, -1042.34], [-3155.67, -1044.35], [-3154.0, -1046.76], [-3151.44, -1047.59], [-3139.33, -1059.92], [-3140.0, -1061.42], [-3142.22, -1062.76], [-3142.05, -1066.04], [-3144.02, -1068.23], [-3146.71, -1070.1], [-3147.63, -1071.7], [-3146.54, -1072.48], [-3147.14, -1073.8], [-3146.05, -1075.12], [-3141.74, -1076.05], [-3137.23, -1072.25], [-3135.41, -1071.29], [-3133.42, -1071.74], [-3129.59, -1069.84], [-3125.0, -1065.79], [-3122.03, -1063.5], [-3121.99, -1058.79], [-3121.27, -1057.11], [-3121.81, -1055.64], [-3121.13, -1052.52], [-3122.88, -1051.71], [-3123.39, -1050.08], [-3123.37, -1048.29], [-3123.01, -1047.12], [-3123.12, -1046.09], [-3124.06, -1046.41], [-3124.69, -1044.19], [-3125.49, -1044.26], [-3125.81, -1042.53], [-3127.83, -1041.89], [-3128.88, -1040.39], [-3127.55, -1039.45], [-3127.69, -1036.78], [-3129.71, -1034.37], [-3127.91, -1033.36], [-3126.07, -1030.86], [-3125.41, -1027.81], [-3126.83, -1026.58], [-3128.69, -1026.76], [-3128.52, -1024.72], [-3126.79, -1021.15], [-3129.29, -1020.25], [-3128.5, -1014.55], [-3126.01, -1013.1], [-3122.27, -1020.11], [-3120.49, -1021.32], [-3117.62, -1022.36], [-3116.8, -1024.26], [-3115.83, -1025.26], [-3114.6, -1024.91], [-3113.23, -1024.94], [-3111.77, -1022.94], [-3111.25, -1023.13], [-3110.72, -1026.31], [-3109.19, -1026.39], [-3106.68, -1028.77], [-3105.0, -1028.48], [-3104.08, -1027.39], [-3102.51, -1027.53], [-3100.66, -1026.48], [-3100.49, -1027.52], [-3100.28, -1031.05], [-3098.06, -1031.69], [-3098.15, -1033.97], [-3094.52, -1037.08], [-3090.4, -1035.82], [-3089.63, -1032.71], [-3090.28, -1031.01], [-3089.59, -1027.88], [-3087.92, -1024.95], [-3083.46, -1026.13], [-3079.73, -1022.13], [-3080.63, -1016.14], [-3085.73, -1011.86], [-3090.13, -1007.38], [-3089.46, -1005.95], [-3085.85, -1004.75], [-3081.78, -1004.01], [-3079.03, -1003.82], [-3078.8, -1005.96], [-3077.29, -1006.68], [-3077.65, -1007.83], [-3076.09, -1008.34], [-3073.51, -1006.84], [-3072.33, -1004.63], [-3068.42, -1000.96], [-3067.98, -998.01], [-3067.19, -997.87], [-3065.59, -999.16], [-3062.68, -998.33], [-3061.4, -996.52], [-3058.23, -996.32], [-3057.26, -997.92], [-3057.21, -999.89], [-3057.86, -1001.72], [-3056.86, -1005.64], [-3056.51, -1010.15], [-3055.95, -1009.7], [-3054.81, -1010.62], [-3053.9, -1010.39], [-3053.39, -1008.65], [-3053.51, -1007.13], [-3051.89, -1005.33], [-3051.91, -1002.46], [-3053.91, -1000.23], [-3054.03, -998.95], [-3051.99, -997.1], [-3052.85, -995.33], [-3051.9, -994.03], [-3052.29, -992.0], [-3050.84, -991.06], [-3046.51, -991.16], [-3044.31, -989.97], [-3043.62, -989.07], [-3042.59, -988.61], [-3041.68, -990.08], [-3038.71, -990.11], [-3035.98, -989.97], [-3035.77, -991.95], [-3035.52, -992.36], [-3034.72, -991.97], [-3035.15, -990.92], [-3034.15, -990.37], [-3033.75, -990.35], [-3033.26, -990.89], [-3032.82, -990.76], [-3033.4, -989.94], [-3033.7, -988.4], [-3032.55, -986.93], [-3031.98, -986.17], [-3031.21, -986.72], [-3030.0, -986.5], [-3029.04, -986.88], [-3027.27, -985.96], [-3026.76, -984.29], [-3024.73, -983.61], [-3022.9, -983.89], [-3022.0, -985.18], [-3020.96, -986.33], [-3018.88, -986.14], [-3018.42, -984.58], [-3016.34, -984.57], [-3015.25, -985.27], [-3012.94, -985.58], [-3012.32, -989.58], [-3011.33, -990.28], [-3012.51, -991.62], [-3009.63, -993.77], [-3006.45, -992.36], [-3002.4, -993.11], [-3000.1, -992.51], [-3000.04, -990.91], [-2999.17, -990.63], [-2994.96, -991.29], [-2994.7, -997.06], [-2993.92, -997.74], [-2991.55, -997.55], [-2988.85, -999.22], [-2985.71, -997.67], [-2983.84, -994.47], [-2984.36, -993.2], [-2985.06, -991.96], [-2983.8, -990.78], [-2983.95, -989.5], [-2981.89, -988.09], [-2982.76, -985.18], [-2983.25, -981.64], [-2981.76, -982.03], [-2980.75, -979.74], [-2979.02, -980.57], [-2976.54, -980.25], [-2975.08, -978.23], [-2972.5, -979.81], [-2973.51, -982.19], [-2973.11, -983.96], [-2970.34, -984.7], [-2967.53, -982.47], [-2965.33, -983.32], [-2965.35, -986.33], [-2963.64, -989.12], [-2962.36, -989.05], [-2962.25, -991.22], [-2960.0, -992.08], [-2957.99, -992.61], [-2954.28, -991.83], [-2953.68, -989.65], [-2954.63, -988.18], [-2956.46, -985.56], [-2955.07, -985.32], [-2953.13, -989.16], [-2950.34, -989.7], [-2951.54, -992.37], [-2953.77, -994.13], [-2952.14, -998.73], [-2956.36, -1000.91], [-2956.67, -998.67], [-2956.37, -996.57], [-2959.24, -996.67], [-2961.26, -997.3], [-2963.48, -999.89], [-2962.9, -1003.03], [-2959.83, -1006.28], [-2956.72, -1005.16], [-2953.27, -1007.7], [-2949.87, -1005.34], [-2950.15, -1002.44], [-2949.23, -1001.96], [-2947.99, -1004.81], [-2946.28, -999.47], [-2944.95, -999.31], [-2944.55, -995.46], [-2946.81, -992.86], [-2945.96, -987.46], [-2944.03, -980.79], [-2946.07, -975.62], [-2945.71, -973.35], [-2947.18, -971.2], [-2950.87, -970.71], [-2950.86, -967.3], [-2945.61, -964.84], [-2942.4, -966.87], [-2939.22, -965.78], [-2936.36, -964.41], [-2934.74, -962.93], [-2933.02, -962.94], [-2931.07, -961.55], [-2929.03, -961.65], [-2925.87, -961.36], [-2924.91, -963.52], [-2923.41, -963.8], [-2916.34, -960.95], [-2903.25, -960.18], [-2903.38, -961.82], [-2903.24, -964.19], [-2902.32, -966.13], [-2899.46, -965.68], [-2895.94, -953.12], [-2892.83, -947.44], [-2888.68, -947.77], [-2885.1, -952.78], [-2881.48, -952.52], [-2880.41, -954.61], [-2877.78, -953.78], [-2875.82, -952.61], [-2869.73, -948.7], [-2868.04, -947.2], [-2865.93, -947.61], [-2862.92, -950.3], [-2858.83, -952.32], [-2856.96, -953.49], [-2853.06, -953.4], [-2847.58, -949.96], [-2846.52, -949.89], [-2845.41, -950.97], [-2845.01, -950.22], [-2843.39, -949.36], [-2841.98, -950.51], [-2841.07, -951.65], [-2839.49, -950.77], [-2837.65, -951.2], [-2837.36, -952.57], [-2835.51, -951.55], [-2833.65, -952.22], [-2833.85, -948.97], [-2836.2, -945.41], [-2831.6, -942.63], [-2831.29, -939.18], [-2833.04, -934.59], [-2830.63, -932.13], [-2831.66, -925.72], [-2826.02, -924.29], [-2820.97, -923.78], [-2817.01, -929.7], [-2815.47, -937.23], [-2814.89, -939.34], [-2814.73, -940.37], [-2813.83, -941.74], [-2812.92, -942.45], [-2810.24, -944.05], [-2807.22, -943.53], [-2805.03, -942.96], [-2803.04, -939.96], [-2803.94, -937.61], [-2803.49, -936.38], [-2806.67, -931.62], [-2806.72, -925.41], [-2812.19, -921.86], [-2813.18, -921.11], [-2810.98, -918.28], [-2808.15, -915.05], [-2808.19, -912.84], [-2807.07, -910.9], [-2805.06, -911.94], [-2804.05, -911.07], [-2802.27, -912.65], [-2799.68, -910.16], [-2799.09, -908.71], [-2791.33, -906.68], [-2786.18, -907.36], [-2783.1, -906.5], [-2782.54, -908.28], [-2781.46, -908.79], [-2779.47, -907.82], [-2776.89, -910.68], [-2776.08, -910.22], [-2773.88, -907.88], [-2773.37, -909.67], [-2778.28, -915.39], [-2785.1, -922.37], [-2790.69, -930.09], [-2788.36, -932.45], [-2786.23, -933.74], [-2783.86, -933.91], [-2782.89, -937.06], [-2781.31, -938.61], [-2780.65, -938.9], [-2780.13, -940.45], [-2779.19, -940.11], [-2777.51, -940.95], [-2776.52, -940.57], [-2776.39, -939.44], [-2776.7, -938.7], [-2775.98, -937.99], [-2773.13, -937.9], [-2772.04, -930.51], [-2766.88, -929.44], [-2768.56, -926.69], [-2764.67, -926.56], [-2764.17, -922.97], [-2766.28, -921.19], [-2765.22, -916.85], [-2762.19, -914.22], [-2760.79, -919.91], [-2755.12, -918.03], [-2754.33, -914.64], [-2748.15, -909.52], [-2749.56, -907.71], [-2756.4, -906.06], [-2760.54, -907.87], [-2763.82, -905.42], [-2761.99, -901.46], [-2762.59, -895.87], [-2760.97, -892.8], [-2739.53, -876.39], [-2730.99, -872.39], [-2730.14, -869.36], [-2726.01, -866.32], [-2725.38, -863.4], [-2719.32, -865.53], [-2715.81, -866.58], [-2711.78, -865.16], [-2711.37, -862.38], [-2707.48, -860.32]], "holes": []}}, {"shape": {"outer": [[-52.02, -119.06], [-52.7, -114.04], [-50.0, -111.5], [-48.9, -112.66], [-49.53, -113.24], [-47.8, -115.07], [-52.02, -119.06]], "holes": []}}, {"shape": {"outer": [[-1771.77, -217.83], [-1772.64, -223.59], [-1773.88, -224.95], [-1774.56, -227.09], [-1774.53, -228.9], [-1774.01, -230.05], [-1772.98, -231.52], [-1771.71, -232.35], [-1771.18, -232.59], [-1771.3, -234.61], [-1771.32, -234.9], [-1770.38, -234.91], [-1770.18, -230.18], [-1771.1, -230.14], [-1771.74, -229.7], [-1772.24, -229.08], [-1772.57, -228.32], [-1772.57, -227.62], [-1772.32, -226.81], [-1771.83, -226.14], [-1771.0, -225.72], [-1765.75, -225.95], [-1765.41, -218.1], [-1771.77, -217.83]], "holes": []}}, {"shape": {"outer": [[-1771.3, -234.61], [-1803.97, -233.27], [-1803.96, -232.84], [-1803.73, -232.48], [-1803.33, -231.95], [-1802.67, -231.38], [-1802.54, -230.68], [-1802.62, -229.67], [-1802.91, -229.22], [-1803.69, -228.5], [-1804.21, -227.85], [-1804.8, -226.82], [-1804.93, -226.12], [-1805.02, -224.75], [-1805.03, -223.04], [-1804.76, -222.19], [-1804.41, -221.43], [-1803.56, -220.43], [-1802.64, -219.67], [-1801.59, -218.79], [-1800.52, -218.6], [-1784.04, -219.3], [-1783.96, -217.31], [-1771.77, -217.83], [-1772.64, -223.59], [-1773.88, -224.95], [-1774.56, -227.09], [-1774.53, -228.9], [-1774.01, -230.05], [-1772.98, -231.52], [-1771.71, -232.35], [-1771.18, -232.59], [-1771.3, -234.61]], "holes": []}}, {"shape": {"outer": [[-1721.18, -210.37], [-1721.29, -214.39], [-1721.59, -216.33], [-1721.86, -218.11], [-1722.11, -219.7], [-1722.35, -221.29], [-1723.86, -223.27], [-1725.49, -224.53], [-1728.25, -223.4], [-1730.89, -223.1], [-1732.15, -223.29], [-1734.49, -223.62], [-1736.65, -224.38], [-1738.15, -223.7], [-1738.86, -223.1], [-1740.72, -222.93], [-1742.51, -222.77], [-1743.91, -222.2], [-1744.32, -221.5], [-1746.71, -221.03], [-1749.23, -221.32], [-1751.73, -221.61], [-1753.3, -222.25], [-1754.58, -223.31], [-1755.61, -224.17], [-1757.12, -224.82], [-1758.68, -225.49], [-1759.15, -225.19], [-1758.85, -218.39], [-1740.01, -219.2], [-1740.11, -221.39], [-1723.54, -222.1], [-1723.17, -210.31], [-1721.18, -210.37]], "holes": []}}, {"shape": {"outer": [[-1721.18, -210.37], [-1714.58, -210.7], [-1715.73, -237.23], [-1755.52, -235.48], [-1755.31, -230.8], [-1753.87, -230.86], [-1753.3, -230.59], [-1752.8, -230.16], [-1752.49, -229.6], [-1752.51, -228.89], [-1752.51, -228.24], [-1752.53, -227.61], [-1752.85, -227.04], [-1753.31, -226.56], [-1753.92, -226.25], [-1759.19, -226.02], [-1759.15, -225.19], [-1758.68, -225.49], [-1757.12, -224.82], [-1755.61, -224.17], [-1754.58, -223.31], [-1753.3, -222.25], [-1751.73, -221.61], [-1749.23, -221.32], [-1746.71, -221.03], [-1744.32, -221.5], [-1743.91, -222.2], [-1742.51, -222.77], [-1740.72, -222.93], [-1738.86, -223.1], [-1738.15, -223.7], [-1736.65, -224.38], [-1734.49, -223.62], [-1732.15, -223.29], [-1730.89, -223.1], [-1728.25, -223.4], [-1725.49, -224.53], [-1723.86, -223.27], [-1722.35, -221.29], [-1722.11, -219.7], [-1721.86, -218.11], [-1721.59, -216.33], [-1721.29, -214.39], [-1721.18, -210.37]], "holes": []}}, {"shape": {"outer": [[-2523.87, -805.33], [-2490.56, -780.02], [-2489.78, -781.09], [-2481.66, -791.17], [-2479.9, -793.14], [-2522.04, -805.75], [-2523.87, -805.33]], "holes": []}}, {"shape": {"outer": [[495.59, -36.73], [497.38, -38.97], [509.49, -44.46], [513.55, -41.81], [509.24, -24.16], [508.65, -22.65], [506.68, -21.23], [504.38, -20.6], [502.88, -19.46], [502.02, -18.21], [499.92, -17.45], [498.87, -19.84], [497.95, -22.88], [497.79, -27.56], [498.12, -31.57], [497.22, -34.48], [495.59, -36.73]], "holes": []}}, {"shape": {"outer": [[488.59, -33.64], [491.61, -35.02], [492.76, -33.86], [493.4, -32.29], [493.88, -30.97], [493.8, -26.49], [493.84, -22.69], [491.98, -21.87], [488.59, -33.64]], "holes": []}}, {"shape": {"outer": [[493.99, -15.52], [494.93, -13.33], [497.17, -10.83], [499.24, -8.91], [501.44, -7.13], [505.29, -5.07], [508.9, -3.72], [509.2, -4.89], [504.9, -7.12], [502.09, -9.44], [499.52, -12.06], [497.86, -14.06], [496.65, -16.46], [493.99, -15.52]], "holes": []}}, {"shape": {"outer": [[514.17, -2.38], [523.76, 0.3], [524.68, -2.73], [522.02, -3.09], [519.47, -3.45], [517.03, -3.8], [515.24, -3.66], [514.46, -3.6], [514.17, -2.38]], "holes": []}}, {"shape": {"outer": [[532.22, 2.54], [543.32, 5.36], [559.75, 9.58], [567.88, 11.56], [573.83, 13.46], [574.57, 11.23], [532.98, -0.52], [532.22, 2.54]], "holes": []}}, {"shape": {"outer": [[581.64, 15.58], [587.7, 17.83], [592.52, 19.84], [595.12, 17.87], [595.13, 17.46], [591.46, 16.08], [586.33, 14.34], [582.42, 13.12], [581.64, 15.58]], "holes": []}}, {"shape": {"outer": [[-2651.92, -902.09], [-2653.09, -900.76], [-2635.91, -885.98], [-2634.75, -887.32], [-2651.92, -902.09]], "holes": []}}, {"shape": {"outer": [[-2647.19, -907.4], [-2646.43, -908.52], [-2628.93, -893.59], [-2630.4, -892.95], [-2647.19, -907.4]], "holes": []}}, {"shape": {"outer": [[-2563.45, -814.37], [-2567.68, -817.9], [-2567.77, -818.23], [-2565.2, -818.55], [-2563.65, -817.21], [-2562.9, -816.45], [-2562.51, -815.55], [-2562.8, -815.03], [-2563.45, -814.37]], "holes": []}}, {"shape": {"outer": [[-2571.99, -817.8], [-2570.8, -817.67], [-2568.89, -816.71], [-2567.57, -815.93], [-2566.73, -815.07], [-2566.55, -814.59], [-2570.12, -815.47], [-2586.44, -820.34], [-2589.19, -821.55], [-2591.31, -822.98], [-2591.93, -824.46], [-2591.68, -825.91], [-2590.64, -826.65], [-2587.92, -826.88], [-2586.95, -825.59], [-2584.13, -822.78], [-2580.45, -820.02], [-2577.32, -818.57], [-2574.36, -817.97], [-2571.99, -817.8]], "holes": []}}, {"shape": {"outer": [[-2549.02, -822.43], [-2523.65, -800.99], [-2522.36, -802.34], [-2546.46, -822.46], [-2547.27, -822.88], [-2548.31, -822.95], [-2549.02, -822.43]], "holes": []}}, {"shape": {"outer": [[-2521.95, -829.67], [-2539.96, -829.01], [-2545.04, -828.54], [-2548.04, -828.13], [-2548.2, -827.07], [-2541.64, -824.48], [-2523.0, -819.35], [-2522.25, -826.81], [-2521.95, -829.67]], "holes": []}}, {"shape": {"outer": [[-2522.25, -826.81], [-2510.8, -826.23], [-2503.7, -825.0], [-2500.18, -824.59], [-2498.28, -830.06], [-2509.41, -829.78], [-2521.95, -829.67], [-2522.25, -826.81]], "holes": []}}, {"shape": {"outer": [[-2422.14, -824.84], [-2420.03, -824.92], [-2420.06, -825.5], [-2420.08, -827.61], [-2411.25, -827.96], [-2410.8, -828.14], [-2410.38, -828.53], [-2410.26, -828.96], [-2410.53, -834.46], [-2429.19, -833.55], [-2428.92, -828.21], [-2428.74, -828.01], [-2428.51, -827.94], [-2422.28, -828.2], [-2422.14, -824.84]], "holes": []}}, {"shape": {"outer": [[-2401.58, -834.61], [-2401.17, -825.2], [-2385.01, -825.89], [-2385.17, -829.5], [-2382.4, -829.61], [-2382.65, -835.42], [-2401.58, -834.61]], "holes": []}}, {"shape": {"outer": [[-2320.22, -832.86], [-2320.41, -837.76], [-2277.95, -839.31], [-2276.77, -806.66], [-2278.92, -806.59], [-2280.58, -807.04], [-2281.42, -808.31], [-2281.67, -812.67], [-2281.97, -819.94], [-2280.62, -819.99], [-2280.8, -824.23], [-2281.77, -824.19], [-2282.09, -831.73], [-2285.37, -831.59], [-2285.5, -834.7], [-2300.86, -834.07], [-2300.83, -833.08], [-2307.28, -832.84], [-2307.14, -829.41], [-2317.4, -828.97], [-2317.56, -832.97], [-2320.22, -832.86]], "holes": []}}, {"shape": {"outer": [[-2523.0, -819.35], [-2519.49, -818.35], [-2503.25, -813.67], [-2290.98, -748.86], [-2282.68, -749.08], [-2275.23, -751.32], [-2276.22, -770.43], [-2297.05, -768.88], [-2308.79, -768.88], [-2309.94, -774.04], [-2318.74, -773.77], [-2318.82, -776.22], [-2330.26, -775.76], [-2335.67, -778.97], [-2340.4, -778.31], [-2345.91, -780.43], [-2348.17, -779.67], [-2349.32, -781.47], [-2352.73, -782.07], [-2352.72, -784.88], [-2349.22, -783.97], [-2347.48, -786.21], [-2347.55, -788.52], [-2381.67, -786.85], [-2434.94, -804.79], [-2435.74, -810.38], [-2458.37, -809.46], [-2500.18, -824.59], [-2503.7, -825.0], [-2510.8, -826.23], [-2522.25, -826.81], [-2523.0, -819.35]], "holes": []}}, {"shape": {"outer": [[641.32, 86.65], [642.66, 85.19], [650.95, 92.79], [651.79, 93.84], [650.49, 95.21], [641.32, 86.65]], "holes": []}}, {"shape": {"outer": [[604.5, 152.08], [603.14, 151.01], [610.55, 143.5], [623.7, 129.05], [639.36, 111.6], [650.63, 98.84], [651.91, 99.85], [651.06, 100.96], [627.82, 126.43], [608.91, 147.29], [604.5, 152.08]], "holes": []}}, {"shape": {"outer": [[629.22, 118.41], [629.99, 119.06], [602.91, 149.1], [598.49, 144.91], [598.29, 144.16], [598.82, 143.61], [599.67, 144.0], [603.09, 147.29], [629.22, 118.41]], "holes": []}}, {"shape": {"outer": [[-1873.5, -468.12], [-1873.25, -462.0], [-1913.99, -460.06], [-1910.35, -460.85], [-1896.51, -462.9], [-1889.56, -464.0], [-1883.67, -465.07], [-1873.5, -468.12]], "holes": []}}, {"shape": {"outer": [[442.43, -10.14], [442.66, -4.54], [446.93, -3.74], [444.13, -9.84], [442.43, -10.14]], "holes": []}}, {"shape": {"outer": [[404.47, -35.0], [407.45, -33.54], [432.54, -27.0], [432.7, -27.89], [431.93, -28.76], [430.44, -29.58], [405.33, -36.31], [404.47, -35.0]], "holes": []}}, {"shape": {"outer": [[410.44, -42.34], [406.74, -43.43], [401.35, -45.69], [398.85, -47.35], [397.01, -49.81], [397.73, -51.53], [400.34, -51.96], [403.54, -51.6], [407.38, -48.2], [410.65, -44.31], [411.11, -43.11], [410.44, -42.34]], "holes": []}}, {"shape": {"outer": [[391.76, -61.15], [394.21, -62.82], [395.62, -63.55], [397.15, -63.26], [397.89, -62.68], [401.23, -64.7], [400.83, -65.7], [401.23, -66.3], [408.23, -70.19], [409.74, -69.87], [424.6, -42.88], [426.37, -40.87], [426.34, -37.13], [425.59, -36.47], [418.2, -38.52], [417.31, -40.22], [415.67, -44.87], [413.27, -49.76], [411.49, -54.46], [409.26, -57.9], [407.11, -59.77], [401.61, -59.45], [398.98, -57.71], [394.22, -58.32], [390.25, -59.0], [386.8, -61.66], [381.69, -69.6], [378.3, -72.68], [379.39, -74.61], [380.35, -75.4], [381.23, -75.76], [382.24, -75.62], [391.76, -61.15]], "holes": []}}, {"shape": {"outer": [[394.22, -58.32], [390.25, -59.0], [386.8, -61.66], [381.69, -69.6], [378.3, -72.68], [377.79, -71.66], [376.83, -69.28], [376.12, -65.49], [387.24, -54.7], [389.95, -55.55], [393.02, -56.15], [396.25, -56.37], [400.2, -55.78], [405.89, -54.17], [409.88, -51.04], [412.52, -47.68], [415.21, -43.9], [417.31, -40.22], [415.67, -44.87], [413.27, -49.76], [411.49, -54.46], [409.26, -57.9], [407.11, -59.77], [401.61, -59.45], [398.98, -57.71], [394.22, -58.32]], "holes": []}}, {"shape": {"outer": [[585.82, 467.09], [584.64, 466.32], [581.1, 463.11], [594.12, 448.67], [575.18, 431.71], [579.08, 427.44], [602.55, 448.55], [585.82, 467.09]], "holes": []}}, {"shape": {"outer": [[1073.08, 681.24], [1074.82, 681.19], [1076.63, 680.49], [1078.68, 679.28], [1080.06, 677.47], [1079.77, 674.87], [1079.23, 672.71], [1078.05, 671.1], [1076.07, 670.19], [1073.58, 670.56], [1071.52, 671.48], [1070.41, 672.09], [1069.73, 673.96], [1069.4, 676.58], [1069.86, 678.58], [1071.04, 680.47], [1073.08, 681.24]], "holes": []}}, {"shape": {"outer": [[1033.07, 604.12], [1069.14, 636.73], [1072.77, 640.45], [1076.91, 646.21], [1079.9, 652.03], [1081.69, 657.4], [1082.53, 660.66], [1081.98, 662.21], [1079.09, 661.84], [1075.08, 661.84], [1070.04, 661.75], [1063.99, 661.9], [1056.34, 661.57], [1049.07, 660.13], [1042.66, 657.8], [1036.72, 654.88], [1031.49, 650.69], [1027.36, 646.47], [1024.6, 642.35], [1022.44, 637.6], [1021.88, 633.84], [1022.5, 630.43], [1023.69, 628.35], [1025.38, 627.6], [1026.93, 627.12], [1027.7, 627.3], [1028.07, 628.17], [1028.4, 630.0], [1028.28, 630.86], [1027.7, 631.3], [1027.04, 632.28], [1026.76, 634.36], [1027.56, 635.64], [1029.41, 636.47], [1030.79, 637.07], [1031.64, 636.91], [1031.88, 636.51], [1031.88, 635.57], [1031.15, 633.69], [1030.29, 630.61], [1030.21, 627.8], [1029.52, 626.24], [1027.69, 625.07], [1025.26, 625.39], [1023.6, 626.15], [1022.13, 627.26], [1020.58, 630.08], [1020.15, 633.02], [1020.38, 635.95], [1021.05, 639.67], [1024.0, 645.29], [1028.12, 650.33], [1033.83, 655.16], [1039.04, 658.4], [1048.87, 661.89], [1056.51, 663.61], [1059.47, 663.8], [1062.44, 664.0], [1063.46, 664.6], [1064.05, 665.72], [1064.57, 667.99], [1064.6, 670.22], [1064.23, 672.25], [1063.44, 674.95], [1062.63, 678.37], [1062.66, 682.22], [1063.38, 686.77], [1065.6, 691.72], [1070.11, 696.82], [1075.46, 700.08], [1082.74, 701.82], [1087.51, 702.89], [1095.33, 706.83], [1098.22, 709.09], [1097.75, 709.71], [1099.18, 710.81], [1099.7, 710.29], [1102.07, 712.38], [1105.44, 716.38], [1108.07, 720.68], [1109.94, 725.14], [1111.45, 730.04], [1113.28, 736.32], [1109.42, 738.02], [1111.62, 743.02], [1115.3, 741.72], [1117.84, 746.44], [1122.43, 752.77], [1125.31, 755.96], [1124.6, 756.67], [1125.91, 757.99], [1126.56, 757.52], [1133.35, 764.09], [1132.84, 764.65], [1053.3, 692.4], [1060.52, 684.38], [1046.36, 670.44], [1030.96, 655.98], [1006.79, 633.24], [1033.07, 604.12]], "holes": []}}, {"shape": {"outer": [[1113.96, 732.0], [1114.2, 732.09], [1114.45, 732.04], [1116.16, 726.42], [1119.3, 720.69], [1120.91, 717.38], [1121.72, 715.15], [1122.65, 710.62], [1122.58, 707.33], [1122.49, 705.57], [1122.41, 704.54], [1122.21, 704.08], [1122.01, 703.76], [1121.67, 703.4], [1121.19, 703.28], [1119.8, 702.86], [1116.81, 702.43], [1113.23, 701.73], [1109.52, 700.66], [1107.44, 699.9], [1106.51, 699.72], [1105.52, 699.67], [1103.85, 699.87], [1099.72, 700.38], [1099.75, 701.24], [1096.53, 701.68], [1096.4, 700.84], [1091.47, 701.41], [1091.15, 701.73], [1090.95, 702.24], [1091.23, 702.74], [1092.31, 703.14], [1095.54, 704.92], [1100.0, 707.77], [1104.74, 712.6], [1108.55, 717.62], [1110.24, 720.88], [1112.29, 726.42], [1113.96, 732.0]], "holes": []}}, {"shape": {"outer": [[1139.19, 706.16], [1138.07, 708.91], [1146.15, 712.2], [1144.54, 713.93], [1141.68, 716.11], [1139.32, 717.4], [1135.77, 718.64], [1132.97, 719.0], [1130.99, 718.96], [1130.87, 717.94], [1128.89, 718.09], [1128.99, 719.05], [1127.44, 719.09], [1125.39, 719.44], [1123.45, 720.26], [1122.23, 720.74], [1121.94, 720.71], [1121.75, 720.56], [1121.81, 720.23], [1122.05, 719.72], [1122.81, 717.81], [1123.86, 714.74], [1124.47, 712.26], [1124.58, 709.57], [1124.54, 707.38], [1124.17, 704.7], [1124.4, 704.3], [1124.8, 703.96], [1125.45, 703.8], [1126.56, 703.74], [1130.12, 704.06], [1135.06, 704.91], [1139.19, 706.16]], "holes": []}}, {"shape": {"outer": [[1146.85, 714.02], [1146.75, 714.23], [1146.92, 714.48], [1147.26, 714.44], [1148.44, 713.44], [1148.88, 713.28], [1150.8, 715.67], [1152.01, 718.04], [1152.64, 720.22], [1152.83, 721.52], [1152.91, 722.6], [1153.08, 722.82], [1153.38, 722.8], [1153.62, 722.56], [1153.83, 722.17], [1153.91, 721.62], [1153.91, 719.29], [1153.79, 716.9], [1153.04, 716.87], [1152.95, 715.21], [1153.46, 714.72], [1153.1, 713.07], [1152.26, 711.94], [1151.1, 711.23], [1150.01, 710.81], [1149.24, 710.75], [1148.85, 710.97], [1148.76, 711.26], [1148.21, 712.26], [1146.85, 714.02]], "holes": []}}, {"shape": {"outer": [[1157.18, 737.76], [1156.98, 737.91], [1155.84, 736.93], [1154.23, 735.3], [1153.74, 734.7], [1155.43, 733.26], [1153.97, 731.46], [1153.18, 730.02], [1152.87, 728.3], [1152.85, 726.31], [1152.96, 725.42], [1153.95, 725.48], [1155.21, 725.97], [1156.05, 727.28], [1156.51, 729.15], [1157.2, 732.31], [1156.39, 732.33], [1156.48, 734.25], [1157.41, 734.24], [1157.18, 737.76]], "holes": []}}, {"shape": {"outer": [[1160.92, 733.65], [1160.27, 733.68], [1159.82, 733.21], [1159.77, 732.16], [1159.52, 729.96], [1158.85, 727.73], [1159.77, 727.5], [1159.38, 725.86], [1158.27, 726.13], [1157.82, 725.12], [1157.21, 723.44], [1156.6, 721.83], [1156.26, 719.6], [1156.26, 718.48], [1157.12, 718.53], [1157.03, 716.69], [1156.36, 716.67], [1156.41, 716.3], [1156.89, 716.0], [1157.7, 715.91], [1158.4, 716.15], [1168.69, 725.22], [1160.92, 733.65]], "holes": []}}, {"shape": {"outer": [[1149.26, 746.7], [1148.54, 746.19], [1149.63, 745.03], [1150.37, 745.49], [1150.92, 744.8], [1150.95, 744.18], [1150.53, 743.86], [1148.4, 743.47], [1145.02, 742.17], [1143.19, 740.9], [1141.47, 739.38], [1140.05, 737.36], [1138.46, 734.13], [1137.51, 730.69], [1137.17, 727.74], [1136.69, 725.31], [1136.12, 723.85], [1135.27, 722.81], [1134.46, 721.88], [1132.5, 721.14], [1129.36, 721.0], [1126.75, 721.19], [1124.63, 721.78], [1121.83, 723.07], [1119.81, 724.93], [1118.46, 726.65], [1117.27, 728.76], [1116.34, 732.12], [1116.67, 736.29], [1117.67, 740.36], [1119.27, 743.55], [1122.12, 747.28], [1125.37, 751.29], [1129.29, 755.48], [1132.82, 758.84], [1135.79, 761.44], [1149.26, 746.7]], "holes": []}}, {"shape": {"outer": [[1143.19, 717.41], [1140.52, 718.93], [1138.16, 719.9], [1137.29, 720.67], [1137.1, 721.55], [1137.44, 722.05], [1138.02, 722.93], [1138.51, 725.19], [1138.88, 726.87], [1139.7, 726.6], [1140.42, 729.99], [1139.56, 730.2], [1140.11, 732.94], [1141.16, 735.5], [1142.09, 737.2], [1143.02, 738.38], [1143.83, 737.69], [1145.17, 739.1], [1144.74, 739.87], [1145.67, 740.31], [1148.17, 741.3], [1151.15, 741.96], [1153.29, 742.16], [1155.4, 739.81], [1151.81, 736.33], [1150.08, 737.82], [1148.92, 736.53], [1147.37, 734.09], [1146.26, 731.57], [1145.87, 729.49], [1145.67, 727.09], [1145.82, 724.86], [1145.81, 722.99], [1145.6, 721.08], [1144.83, 719.29], [1143.19, 717.41]], "holes": []}}, {"shape": {"outer": [[1187.69, 706.5], [1188.46, 708.06], [1186.84, 710.22], [1185.59, 708.96], [1187.69, 706.5]], "holes": []}}, {"shape": {"outer": [[1180.03, 718.02], [1178.42, 717.25], [1172.11, 723.72], [1174.67, 723.76], [1180.03, 718.02]], "holes": []}}, {"shape": {"outer": [[1134.63, 765.06], [1135.0, 767.56], [1131.65, 771.53], [1131.13, 771.65], [1129.66, 770.51], [1134.63, 765.06]], "holes": []}}, {"shape": {"outer": [[1146.69, 776.05], [1144.17, 775.83], [1140.4, 779.9], [1140.53, 780.75], [1141.74, 781.49], [1146.69, 776.05]], "holes": []}}, {"shape": {"outer": [[1188.98, 726.92], [1190.3, 727.97], [1184.22, 734.46], [1184.08, 731.85], [1188.98, 726.92]], "holes": []}}, {"shape": {"outer": [[-2929.7, -1099.23], [-2929.71, -1099.67], [-2929.72, -1100.92], [-2926.5, -1100.99], [-2926.51, -1104.2], [-2926.78, -1104.2], [-2926.8, -1104.76], [-2926.8, -1105.36], [-2926.78, -1106.02], [-2926.7, -1106.78], [-2926.58, -1107.53], [-2924.98, -1107.44], [-2925.17, -1106.87], [-2925.27, -1106.28], [-2925.33, -1105.63], [-2925.33, -1104.97], [-2925.29, -1104.35], [-2925.18, -1103.74], [-2925.4, -1103.74], [-2925.25, -1101.41], [-2924.94, -1101.41], [-2924.93, -1101.12], [-2924.88, -1100.81], [-2924.83, -1100.51], [-2924.72, -1100.21], [-2925.46, -1099.94], [-2925.47, -1099.35], [-2929.7, -1099.23]], "holes": []}}, {"shape": {"outer": [[-2922.55, -1120.28], [-2918.35, -1116.55], [-2918.83, -1116.15], [-2918.73, -1115.61], [-2919.11, -1115.47], [-2919.52, -1115.28], [-2919.91, -1115.0], [-2920.22, -1114.7], [-2920.46, -1114.34], [-2920.69, -1114.58], [-2922.56, -1112.75], [-2922.35, -1112.52], [-2922.83, -1112.08], [-2923.26, -1111.6], [-2923.62, -1111.17], [-2923.95, -1110.61], [-2924.22, -1110.09], [-2925.48, -1111.01], [-2925.14, -1111.71], [-2924.67, -1112.45], [-2924.08, -1113.15], [-2923.87, -1112.93], [-2921.17, -1115.95], [-2923.42, -1118.06], [-2922.8, -1118.67], [-2923.44, -1119.36], [-2922.55, -1120.28]], "holes": []}}, {"shape": {"outer": [[-2922.29, -1100.27], [-2919.78, -1101.44], [-2920.04, -1102.25], [-2920.22, -1103.08], [-2920.31, -1104.0], [-2920.27, -1105.08], [-2920.11, -1106.29], [-2919.79, -1107.39], [-2919.15, -1108.66], [-2918.36, -1109.6], [-2917.26, -1110.59], [-2916.13, -1111.32], [-2917.45, -1113.78], [-2918.29, -1113.41], [-2919.1, -1112.92], [-2919.93, -1112.3], [-2920.51, -1111.69], [-2921.06, -1110.97], [-2921.54, -1110.28], [-2922.07, -1109.39], [-2922.5, -1108.45], [-2922.83, -1107.49], [-2923.05, -1106.5], [-2923.22, -1105.41], [-2923.25, -1104.41], [-2923.21, -1103.33], [-2923.06, -1102.24], [-2922.75, -1101.16], [-2922.29, -1100.27]], "holes": []}}, {"shape": {"outer": [[-2911.3, -1092.74], [-2905.87, -1095.35], [-2902.5, -1096.64], [-2903.04, -1097.51], [-2903.66, -1098.46], [-2904.54, -1099.7], [-2905.3, -1100.58], [-2905.99, -1101.17], [-2906.11, -1100.7], [-2906.51, -1099.91], [-2906.99, -1099.31], [-2907.58, -1098.7], [-2908.24, -1098.21], [-2908.9, -1097.76], [-2909.52, -1097.42], [-2910.18, -1097.13], [-2910.78, -1096.93], [-2911.45, -1096.58], [-2911.71, -1096.06], [-2911.76, -1095.34], [-2911.72, -1094.33], [-2911.3, -1092.74]], "holes": []}}, {"shape": {"outer": [[-2928.23, -1094.83], [-2928.36, -1097.37], [-2919.53, -1097.45], [-2917.33, -1097.05], [-2915.82, -1096.52], [-2915.23, -1096.18], [-2914.67, -1095.62], [-2914.23, -1094.82], [-2913.91, -1093.95], [-2913.75, -1092.33], [-2914.45, -1092.35], [-2915.26, -1092.58], [-2916.12, -1092.89], [-2918.1, -1093.49], [-2920.43, -1094.03], [-2923.67, -1094.44], [-2928.23, -1094.83]], "holes": []}}, {"shape": {"outer": [[-2981.18, -1096.18], [-2981.2, -1093.58], [-2994.55, -1093.27], [-3000.03, -1093.73], [-3002.83, -1094.36], [-3006.27, -1095.42], [-3009.13, -1096.44], [-3014.66, -1099.2], [-3016.94, -1100.72], [-3018.15, -1101.76], [-3018.58, -1102.41], [-3017.06, -1104.25], [-3015.21, -1102.69], [-3013.03, -1101.08], [-3009.99, -1099.55], [-3006.93, -1098.21], [-3003.18, -1097.0], [-2999.56, -1096.2], [-2994.87, -1095.83], [-2981.18, -1096.18]], "holes": []}}, {"shape": {"outer": [[-3019.8, -1109.93], [-3018.05, -1108.35], [-3016.87, -1109.0], [-3015.77, -1110.13], [-3014.84, -1111.14], [-3014.72, -1111.5], [-3014.56, -1112.5], [-3016.46, -1113.06], [-3017.34, -1113.1], [-3018.1, -1112.89], [-3018.81, -1112.47], [-3019.37, -1111.63], [-3019.8, -1109.93]], "holes": []}}, {"shape": {"outer": [[-3005.72, -1116.9], [-3014.32, -1106.44], [-3014.55, -1105.32], [-3013.98, -1103.87], [-3012.9, -1102.85], [-3011.16, -1101.51], [-3010.2, -1101.5], [-3009.09, -1102.32], [-3007.76, -1102.67], [-3006.37, -1102.66], [-3005.3, -1102.23], [-3003.87, -1103.89], [-3006.99, -1106.3], [-3005.55, -1108.12], [-3007.92, -1110.05], [-3003.72, -1115.29], [-3005.72, -1116.9]], "holes": []}}, {"shape": {"outer": [[-2996.4, -1097.99], [-2992.48, -1097.98], [-2995.03, -1099.88], [-2996.4, -1097.99]], "holes": []}}, {"shape": {"outer": [[-2991.87, -1098.75], [-2991.42, -1098.51], [-2990.68, -1098.47], [-2989.89, -1098.58], [-2989.26, -1098.87], [-2988.67, -1099.46], [-2988.46, -1100.11], [-2988.46, -1100.84], [-2988.59, -1101.54], [-2988.81, -1102.04], [-2989.06, -1102.31], [-2991.87, -1098.75]], "holes": []}}, {"shape": {"outer": [[-2986.64, -1098.14], [-2986.23, -1097.56], [-2981.01, -1097.78], [-2980.34, -1098.24], [-2980.28, -1099.93], [-2983.58, -1099.86], [-2984.7, -1100.68], [-2986.64, -1098.14]], "holes": []}}, {"shape": {"outer": [[-2968.2, -1100.16], [-2968.18, -1098.55], [-2964.88, -1098.57], [-2964.91, -1100.2], [-2968.2, -1100.16]], "holes": []}}, {"shape": {"outer": [[-2952.45, -1100.39], [-2952.4, -1098.48], [-2949.9, -1098.55], [-2949.96, -1100.46], [-2952.45, -1100.39]], "holes": []}}, {"shape": {"outer": [[-2943.0, -1100.55], [-2942.93, -1098.81], [-2940.92, -1098.83], [-2940.73, -1099.3], [-2940.78, -1100.58], [-2943.0, -1100.55]], "holes": []}}, {"shape": {"outer": [[-351.12, 477.5], [-355.64, 473.27], [-351.15, 473.41], [-349.11, 475.25], [-351.12, 477.5]], "holes": []}}, {"shape": {"outer": [[-363.99, 465.63], [-369.82, 459.85], [-368.64, 457.75], [-367.88, 457.41], [-362.61, 462.6], [-362.27, 463.21], [-362.38, 463.93], [-363.99, 465.63]], "holes": []}}, {"shape": {"outer": [[-372.07, 457.95], [-375.29, 455.01], [-374.09, 453.99], [-373.24, 453.9], [-371.82, 453.94], [-369.72, 455.73], [-372.07, 457.95]], "holes": []}}, {"shape": {"outer": [[-380.74, 449.81], [-379.9, 448.73], [-379.71, 448.01], [-379.84, 446.97], [-380.42, 446.0], [-391.97, 436.09], [-393.04, 438.85], [-380.74, 449.81]], "holes": []}}, {"shape": {"outer": [[-397.31, 430.94], [-396.15, 431.92], [-396.15, 433.22], [-397.38, 435.17], [-415.03, 419.79], [-412.84, 417.06], [-397.31, 430.94]], "holes": []}}, {"shape": {"outer": [[-1034.01, -341.5], [-1036.79, -342.03], [-1036.85, -343.08], [-1036.35, -344.75], [-1035.2, -347.57], [-1033.83, -350.03], [-1032.87, -351.36], [-1031.24, -351.41], [-1030.97, -351.15], [-1030.91, -350.77], [-1034.01, -341.5]], "holes": []}}, {"shape": {"outer": [[-1012.82, -377.16], [-1012.84, -377.64], [-1013.11, -378.01], [-1013.82, -378.0], [-1030.93, -359.02], [-1030.15, -358.12], [-1012.82, -377.16]], "holes": []}}, {"shape": {"outer": [[-1006.21, -359.51], [-999.06, -367.42], [-998.73, -367.13], [-1005.55, -359.58], [-1005.9, -359.24], [-1006.21, -359.51]], "holes": []}}, {"shape": {"outer": [[-983.48, -364.21], [-982.73, -364.83], [-992.09, -371.83], [-992.23, -371.67], [-983.48, -364.21]], "holes": []}}, {"shape": {"outer": [[-978.44, -361.25], [-968.23, -351.92], [-971.17, -348.65], [-981.36, -357.77], [-978.44, -361.25]], "holes": []}}, {"shape": {"outer": [[-1018.74, -299.82], [-1017.89, -299.88], [-1017.3, -290.63], [-1018.14, -290.57], [-1018.74, -299.82]], "holes": []}}, {"shape": {"outer": [[-1016.78, -287.19], [-1016.25, -287.74], [-1010.68, -282.39], [-1011.21, -281.84], [-1016.78, -287.19]], "holes": []}}, {"shape": {"outer": [[-1008.9, -279.5], [-1008.29, -280.12], [-1003.75, -275.61], [-1002.8, -274.71], [-1003.37, -274.12], [-1008.9, -279.5]], "holes": []}}, {"shape": {"outer": [[-995.32, -270.87], [-994.39, -270.05], [-996.31, -267.99], [-997.79, -269.45], [-996.53, -271.97], [-995.32, -270.87]], "holes": []}}, {"shape": {"outer": [[-961.22, -240.93], [-961.63, -240.46], [-959.04, -238.22], [-958.17, -236.84], [-958.16, -235.4], [-954.41, -232.18], [-953.85, -232.83], [-954.46, -233.36], [-953.54, -234.42], [-961.22, -240.93]], "holes": []}}, {"shape": {"outer": [[-941.22, -219.24], [-940.65, -219.95], [-937.08, -217.08], [-937.66, -216.38], [-941.22, -219.24]], "holes": []}}, {"shape": {"outer": [[-946.93, -223.75], [-946.35, -224.46], [-942.78, -221.59], [-943.36, -220.88], [-946.93, -223.75]], "holes": []}}, {"shape": {"outer": [[-952.73, -228.61], [-952.16, -229.31], [-948.59, -226.45], [-949.16, -225.74], [-952.73, -228.61]], "holes": []}}, {"shape": {"outer": [[-1197.1, -332.26], [-1193.74, -332.38], [-1193.55, -327.33], [-1196.89, -327.21], [-1197.1, -332.26]], "holes": []}}, {"shape": {"outer": [[-1200.69, -330.19], [-1200.56, -327.1], [-1204.24, -327.04], [-1204.93, -327.09], [-1205.75, -327.35], [-1206.39, -327.79], [-1206.71, -333.71], [-1206.2, -334.59], [-1205.49, -335.29], [-1193.84, -335.83], [-1193.76, -334.09], [-1197.1, -333.94], [-1197.11, -334.19], [-1202.95, -333.93], [-1202.78, -330.1], [-1200.69, -330.19]], "holes": []}}, {"shape": {"outer": [[-1227.25, -334.7], [-1219.33, -335.08], [-1218.77, -334.92], [-1218.55, -334.56], [-1218.34, -333.15], [-1218.24, -331.69], [-1218.15, -330.55], [-1217.98, -329.55], [-1217.75, -328.65], [-1217.45, -327.67], [-1226.88, -327.41], [-1227.25, -334.7]], "holes": []}}, {"shape": {"outer": [[144.69, -264.24], [143.89, -263.37], [194.72, -216.97], [195.53, -217.85], [144.69, -264.24]], "holes": []}}, {"shape": {"outer": [[-45.01, -367.02], [-48.76, -370.47], [-42.98, -376.73], [-47.64, -381.01], [-35.85, -394.15], [-45.36, -402.72], [-44.1, -404.11], [-45.69, -405.55], [-40.52, -408.6], [-38.72, -406.93], [-39.44, -406.15], [-40.5, -405.06], [-27.3, -392.95], [-24.89, -390.72], [-25.26, -390.32], [-26.08, -389.53], [-24.46, -388.09], [-42.74, -368.38], [-43.28, -368.88], [-45.01, -367.02]], "holes": []}}, {"shape": {"outer": [[-54.81, -359.53], [-53.31, -361.2], [-51.71, -359.79], [-53.21, -358.11], [-54.81, -359.53]], "holes": []}}, {"shape": {"outer": [[-98.59, -351.82], [-94.79, -356.02], [-81.74, -344.25], [-78.84, -347.43], [-74.61, -343.64], [-69.49, -349.31], [-73.01, -352.46], [-71.66, -353.94], [-67.19, -349.93], [-63.25, -354.29], [-61.65, -352.86], [-66.88, -347.06], [-69.02, -344.69], [-69.77, -342.8], [-69.51, -341.12], [-68.44, -339.94], [-69.87, -338.65], [-74.09, -334.87], [-75.65, -334.14], [-77.16, -333.88], [-78.76, -334.03], [-79.82, -334.98], [-80.99, -336.04], [-98.59, -351.82]], "holes": []}}, {"shape": {"outer": [[-225.63, -331.87], [-225.42, -328.53], [-223.07, -326.32], [-216.92, -332.24], [-219.72, -332.13], [-225.63, -331.87]], "holes": []}}, {"shape": {"outer": [[715.89, 114.77], [719.02, 118.23], [720.08, 117.99], [720.34, 117.8], [720.47, 117.53], [720.51, 117.25], [720.47, 116.85], [719.94, 115.6], [715.89, 114.77]], "holes": []}}, {"shape": {"outer": [[685.59, 90.63], [685.82, 91.41], [686.46, 92.3], [687.55, 93.62], [713.68, 116.7], [714.74, 117.4], [716.45, 118.05], [715.57, 116.91], [703.05, 105.49], [687.87, 92.3], [685.59, 90.63]], "holes": []}}, {"shape": {"outer": [[692.25, 110.58], [693.19, 109.4], [679.38, 98.42], [678.11, 100.12], [678.9, 101.09], [679.95, 102.07], [681.81, 103.68], [692.25, 110.58]], "holes": []}}, {"shape": {"outer": [[147.67, 199.36], [147.07, 200.02], [146.51, 200.63], [143.25, 198.34], [140.13, 195.73], [133.74, 190.2], [130.44, 187.18], [126.98, 183.82], [123.96, 180.68], [123.23, 179.91], [122.73, 178.97], [121.54, 176.34], [120.05, 173.48], [119.22, 172.59], [114.02, 168.04], [104.04, 159.31], [105.07, 158.19], [106.13, 157.02], [116.05, 166.1], [125.5, 174.59], [127.88, 177.13], [129.12, 179.1], [130.89, 182.54], [132.23, 184.67], [133.32, 185.94], [135.76, 188.17], [138.14, 190.42], [143.0, 194.76], [145.56, 197.08], [147.67, 199.36]], "holes": []}}, {"shape": {"outer": [[369.28, 403.01], [370.46, 401.73], [344.09, 377.9], [340.0, 373.88], [337.95, 371.81], [336.03, 369.61], [333.53, 366.9], [327.24, 359.16], [325.01, 356.48], [322.59, 353.84], [319.97, 351.41], [312.24, 344.08], [306.48, 338.83], [299.6, 332.42], [287.69, 321.01], [281.78, 315.52], [272.67, 307.13], [265.84, 300.93], [255.93, 291.51], [252.82, 288.22], [251.15, 286.68], [249.92, 288.11], [251.08, 289.15], [254.85, 292.63], [264.67, 301.91], [271.77, 308.48], [280.7, 316.58], [286.63, 322.07], [298.72, 333.57], [304.85, 339.16], [311.33, 345.29], [318.7, 352.35], [321.51, 354.9], [323.69, 357.36], [326.4, 360.58], [332.59, 367.8], [334.85, 370.75], [336.43, 372.78], [339.22, 375.54], [342.81, 378.92], [369.28, 403.01]], "holes": []}}, {"shape": {"outer": [[-147.18, -396.11], [-100.37, -353.56], [-96.61, -357.67], [-136.18, -393.38], [-137.83, -391.56], [-140.34, -393.82], [-141.85, -392.16], [-146.75, -396.58], [-147.18, -396.11]], "holes": []}}, {"shape": {"outer": [[-1958.65, -218.74], [-1958.69, -220.48], [-1955.7, -220.56], [-1955.65, -218.82], [-1958.65, -218.74]], "holes": []}}, {"shape": {"outer": [[-1958.85, -223.88], [-1958.89, -225.63], [-1955.89, -225.7], [-1955.84, -223.96], [-1958.85, -223.88]], "holes": []}}, {"shape": {"outer": [[-2230.53, -332.09], [-2228.03, -329.89], [-2226.07, -328.65], [-2137.34, -372.88], [-2140.81, -379.79], [-2226.62, -337.42], [-2230.53, -332.09]], "holes": []}}, {"shape": {"outer": [[-2136.16, -382.1], [-2135.52, -380.8], [-2133.95, -381.57], [-2133.25, -380.15], [-2134.87, -379.35], [-2132.88, -375.3], [-2132.18, -374.49], [-2126.15, -377.41], [-2125.45, -378.21], [-2125.5, -385.64], [-2128.96, -385.62], [-2136.16, -382.1]], "holes": []}}, {"shape": {"outer": [[-2124.93, -368.64], [-2124.88, -364.72], [-2127.02, -363.9], [-2129.82, -368.98], [-2129.63, -369.83], [-2127.89, -370.99], [-2127.34, -371.01], [-2126.83, -368.65], [-2124.93, -368.64]], "holes": []}}, {"shape": {"outer": [[-83.67, -439.79], [-79.72, -444.07], [-57.65, -423.85], [-58.37, -423.06], [-59.41, -421.91], [-56.12, -418.88], [-55.42, -418.24], [-57.32, -416.19], [-83.67, -439.79]], "holes": []}}, {"shape": {"outer": [[-51.61, -414.27], [-47.01, -409.89], [-45.3, -411.68], [-49.9, -416.06], [-51.61, -414.27]], "holes": []}}, {"shape": {"outer": [[-94.86, -455.95], [-94.18, -456.29], [-93.38, -456.28], [-89.49, -452.82], [-90.3, -451.91], [-94.86, -455.95]], "holes": []}}, {"shape": {"outer": [[-50.61, -364.14], [-49.11, -365.81], [-47.51, -364.4], [-49.01, -362.72], [-50.61, -364.14]], "holes": []}}, {"shape": {"outer": [[-97.59, -482.07], [-97.18, -483.44], [-86.56, -474.07], [-88.17, -473.01], [-95.41, -479.74], [-95.64, -480.17], [-96.04, -480.58], [-97.59, -482.07]], "holes": []}}, {"shape": {"outer": [[-131.6, -514.53], [-131.76, -512.73], [-124.66, -506.09], [-122.46, -506.23], [-131.6, -514.53]], "holes": []}}, {"shape": {"outer": [[-369.83, -984.8], [-365.36, -982.28], [-361.61, -977.86], [-358.42, -971.1], [-350.73, -951.1], [-301.26, -863.68], [-298.97, -858.96], [-299.93, -858.39], [-321.17, -889.75], [-344.9, -930.44], [-354.54, -948.11], [-361.99, -961.92], [-372.69, -983.7], [-369.83, -984.8]], "holes": []}}, {"shape": {"outer": [[-388.17, -974.22], [-380.47, -979.67], [-375.16, -968.7], [-382.21, -972.44], [-388.17, -974.22]], "holes": []}}, {"shape": {"outer": [[-610.77, -1093.09], [-595.17, -1079.88], [-576.0, -1060.28], [-558.17, -1044.48], [-538.76, -1030.73], [-520.61, -1020.07], [-495.09, -1007.94], [-470.11, -997.83], [-447.13, -991.99], [-428.68, -989.77], [-407.99, -988.54], [-403.98, -979.98], [-409.11, -979.1], [-420.37, -980.68], [-452.25, -986.81], [-468.08, -990.6], [-497.45, -1000.64], [-520.84, -1011.64], [-542.4, -1024.19], [-561.18, -1037.95], [-581.12, -1056.01], [-595.72, -1071.44], [-605.55, -1083.29], [-611.81, -1092.1], [-610.77, -1093.09]], "holes": []}}, {"shape": {"outer": [[-651.35, -1161.86], [-649.74, -1162.78], [-655.23, -1173.7], [-661.13, -1189.4], [-669.3, -1205.77], [-677.97, -1222.06], [-686.17, -1236.96], [-693.28, -1248.04], [-701.51, -1258.21], [-705.89, -1262.35], [-708.69, -1257.55], [-702.1, -1250.39], [-688.77, -1230.41], [-672.78, -1200.61], [-657.1, -1171.84], [-651.35, -1161.86]], "holes": []}}, {"shape": {"outer": [[-723.93, -1268.84], [-721.14, -1273.3], [-732.6, -1280.2], [-746.01, -1285.6], [-763.46, -1289.34], [-776.86, -1290.13], [-811.31, -1284.07], [-819.52, -1281.43], [-825.97, -1278.3], [-824.75, -1276.43], [-809.45, -1282.29], [-777.74, -1284.39], [-765.17, -1283.68], [-750.06, -1280.77], [-735.38, -1275.21], [-723.93, -1268.84]], "holes": []}}, {"shape": {"outer": [[-844.33, -1260.8], [-853.33, -1249.81], [-871.27, -1229.93], [-889.09, -1210.52], [-896.97, -1207.8], [-897.91, -1208.82], [-876.73, -1231.55], [-855.59, -1255.65], [-850.69, -1260.43], [-846.73, -1263.03], [-844.33, -1260.8]], "holes": []}}, {"shape": {"outer": [[-898.63, -1200.26], [-919.23, -1176.23], [-942.67, -1150.51], [-962.28, -1129.02], [-1004.09, -1081.83], [-1013.87, -1076.07], [-1023.76, -1065.63], [-1025.33, -1066.73], [-996.39, -1099.11], [-948.3, -1152.6], [-913.58, -1190.15], [-899.24, -1200.85], [-898.63, -1200.26]], "holes": []}}, {"shape": {"outer": [[-1609.05, -1017.69], [-1610.19, -986.48], [-1611.26, -970.57], [-1613.47, -946.41], [-1614.95, -915.46], [-1614.93, -899.18], [-1617.12, -899.15], [-1618.02, -951.01], [-1617.21, -968.17], [-1616.42, -978.25], [-1613.12, -995.68], [-1612.17, -1014.23], [-1611.53, -1018.86], [-1609.05, -1017.69]], "holes": []}}, {"shape": {"outer": [[-391.24, -1039.17], [-388.99, -1033.11], [-380.52, -1007.55], [-383.14, -1006.51], [-395.89, -1037.12], [-391.24, -1039.17]], "holes": []}}, {"shape": {"outer": [[-398.06, -981.88], [-392.22, -984.74], [-391.03, -985.94], [-390.8, -987.05], [-391.27, -988.08], [-392.07, -988.43], [-401.8, -989.0], [-398.06, -981.88]], "holes": []}}, {"shape": {"outer": [[1797.85, 2240.44], [1799.35, 2296.97], [1802.27, 2320.87], [1809.36, 2352.96], [1807.63, 2353.33], [1805.24, 2350.22], [1803.82, 2346.82], [1795.96, 2312.27], [1774.84, 2214.2], [1777.34, 2213.61], [1780.68, 2221.5], [1785.11, 2228.33], [1790.18, 2233.77], [1797.85, 2240.44]], "holes": []}}, {"shape": {"outer": [[1797.62, 2226.2], [1797.25, 2212.84], [1795.23, 2191.56], [1790.8, 2170.46], [1784.29, 2150.47], [1774.24, 2128.18], [1763.49, 2110.3], [1752.52, 2095.13], [1736.67, 2077.67], [1663.92, 2007.58], [1653.86, 1999.22], [1652.46, 2001.0], [1710.05, 2056.35], [1728.85, 2078.77], [1740.54, 2090.35], [1751.52, 2106.11], [1760.81, 2131.18], [1772.12, 2169.05], [1780.57, 2196.3], [1782.47, 2203.76], [1785.03, 2211.39], [1789.13, 2218.35], [1796.19, 2226.35], [1797.62, 2226.2]], "holes": []}}, {"shape": {"outer": [[-2035.26, -142.67], [-2035.74, -153.52], [-2041.43, -153.28], [-2041.5, -154.63], [-2040.57, -156.41], [-2030.68, -156.85], [-2030.07, -142.9], [-2035.26, -142.67]], "holes": []}}, {"shape": {"outer": [[-2040.32, -99.28], [-2034.7, -99.51], [-2035.82, -126.33], [-2040.37, -126.13], [-2040.32, -124.84], [-2041.38, -124.8], [-2040.32, -99.28]], "holes": []}}, {"shape": {"outer": [[-2041.89, -163.3], [-2041.44, -163.29], [-2041.01, -162.98], [-2040.76, -162.59], [-2040.73, -162.05], [-2033.05, -162.34], [-2033.32, -167.32], [-2031.2, -167.4], [-2032.04, -184.68], [-2038.86, -184.4], [-2038.81, -183.33], [-2038.83, -182.42], [-2039.03, -181.56], [-2039.37, -180.68], [-2039.89, -179.81], [-2040.52, -179.12], [-2041.2, -178.72], [-2041.83, -178.46], [-2041.58, -172.41], [-2042.28, -171.38], [-2041.89, -163.3]], "holes": []}}, {"shape": {"outer": [[-2044.09, -184.16], [-2038.86, -184.4], [-2038.81, -183.33], [-2038.83, -182.42], [-2039.03, -181.56], [-2039.37, -180.68], [-2039.89, -179.81], [-2040.52, -179.12], [-2041.2, -178.72], [-2041.83, -178.46], [-2043.79, -178.36], [-2044.09, -184.16]], "holes": []}}, {"shape": {"outer": [[-2038.22, -187.18], [-2032.18, -187.4], [-2032.46, -196.86], [-2034.47, -196.81], [-2034.83, -211.5], [-2040.34, -211.32], [-2039.59, -190.59], [-2038.22, -187.18]], "holes": []}}, {"shape": {"outer": [[-659.71, 333.42], [-652.89, 339.55], [-651.87, 336.46], [-656.37, 332.37], [-659.71, 333.42]], "holes": []}}, {"shape": {"outer": [[-647.84, 343.95], [-643.06, 348.33], [-642.34, 347.82], [-641.28, 346.05], [-645.01, 342.65], [-647.84, 343.95]], "holes": []}}, {"shape": {"outer": [[-641.56, 349.48], [-640.83, 348.61], [-639.28, 347.77], [-638.61, 348.52], [-638.39, 349.03], [-638.17, 349.95], [-637.97, 351.53], [-637.89, 352.8], [-641.56, 349.48]], "holes": []}}, {"shape": {"outer": [[-664.99, 324.73], [-663.24, 326.15], [-664.44, 328.98], [-667.21, 326.58], [-666.15, 325.39], [-664.99, 324.73]], "holes": []}}, {"shape": {"outer": [[-660.87, 334.97], [-659.94, 335.7], [-674.98, 352.34], [-676.15, 351.26], [-660.87, 334.97]], "holes": []}}, {"shape": {"outer": [[-655.21, 340.07], [-654.1, 340.9], [-669.24, 357.8], [-670.33, 356.82], [-655.21, 340.07]], "holes": []}}, {"shape": {"outer": [[-659.94, 335.7], [-658.13, 337.33], [-661.78, 341.37], [-663.16, 341.33], [-663.81, 341.66], [-664.32, 342.19], [-664.61, 342.85], [-664.67, 343.56], [-664.48, 344.26], [-664.06, 344.86], [-663.48, 345.28], [-662.78, 345.5], [-662.1, 345.46], [-661.46, 345.22], [-660.92, 344.78], [-660.56, 344.2], [-660.41, 343.34], [-660.58, 342.65], [-656.89, 338.56], [-655.21, 340.07], [-670.33, 356.82], [-671.06, 357.73], [-671.84, 357.38], [-672.56, 356.94], [-673.26, 356.48], [-673.88, 355.94], [-674.54, 355.39], [-675.07, 354.76], [-675.59, 354.12], [-675.95, 353.41], [-674.98, 352.34], [-659.94, 335.7]], "holes": []}}, {"shape": {"outer": [[-668.21, 328.19], [-665.82, 330.4], [-678.6, 344.55], [-679.49, 344.64], [-680.39, 344.98], [-681.1, 342.12], [-668.21, 328.19]], "holes": []}}, {"shape": {"outer": [[-682.85, 344.24], [-686.16, 347.65], [-685.52, 348.24], [-684.62, 347.2], [-683.69, 346.39], [-682.58, 345.91], [-682.85, 344.24]], "holes": []}}, {"shape": {"outer": [[-683.33, 364.62], [-683.08, 364.14], [-684.25, 363.6], [-685.47, 363.31], [-686.75, 363.21], [-688.13, 363.27], [-687.75, 364.42], [-687.25, 365.29], [-686.71, 366.15], [-685.96, 367.03], [-685.77, 365.97], [-685.48, 365.4], [-685.09, 364.98], [-684.59, 364.67], [-684.02, 364.59], [-683.33, 364.62]], "holes": []}}, {"shape": {"outer": [[-681.62, 365.93], [-681.23, 365.77], [-680.6, 366.85], [-680.14, 368.1], [-679.9, 369.44], [-679.87, 370.68], [-680.89, 370.41], [-681.78, 370.11], [-682.67, 369.73], [-683.63, 369.22], [-682.68, 368.72], [-682.09, 368.3], [-681.69, 367.77], [-681.54, 367.11], [-681.51, 366.53], [-681.62, 365.93]], "holes": []}}, {"shape": {"outer": [[-688.36, 375.7], [-689.85, 377.49], [-689.15, 378.62], [-688.72, 380.23], [-688.68, 381.78], [-684.39, 381.67], [-682.61, 379.56], [-683.8, 378.63], [-686.23, 377.44], [-688.36, 375.7]], "holes": []}}, {"shape": {"outer": [[-677.14, 374.68], [-677.32, 376.19], [-677.38, 377.07], [-676.41, 377.24], [-675.56, 377.62], [-674.87, 378.1], [-674.24, 378.62], [-673.58, 379.25], [-673.05, 379.91], [-672.59, 380.59], [-672.22, 381.3], [-671.81, 380.31], [-671.78, 379.31], [-672.17, 378.18], [-672.94, 377.22], [-674.15, 376.12], [-675.86, 375.11], [-677.14, 374.68]], "holes": []}}, {"shape": {"outer": [[-692.65, 372.32], [-693.88, 373.76], [-695.06, 373.28], [-696.5, 372.97], [-698.27, 372.93], [-698.49, 368.5], [-696.61, 366.51], [-695.24, 367.84], [-694.16, 370.13], [-692.65, 372.32]], "holes": []}}, {"shape": {"outer": [[-691.01, 364.81], [-690.53, 365.9], [-689.72, 367.33], [-689.06, 368.24], [-688.33, 369.12], [-690.32, 370.55], [-691.0, 369.62], [-691.79, 368.29], [-692.35, 367.14], [-692.79, 366.07], [-692.27, 365.78], [-692.5, 365.26], [-691.01, 364.81]], "holes": []}}, {"shape": {"outer": [[-680.7, 373.93], [-680.83, 375.62], [-681.1, 375.57], [-681.17, 376.13], [-682.3, 375.84], [-683.69, 375.36], [-685.19, 374.67], [-686.9, 373.63], [-685.58, 371.2], [-684.22, 372.31], [-682.35, 373.42], [-680.7, 373.93]], "holes": []}}, {"shape": {"outer": [[-701.41, 366.81], [-704.24, 369.8], [-702.1, 369.48], [-700.65, 371.04], [-700.56, 373.42], [-701.5, 373.68], [-702.38, 374.15], [-703.14, 374.7], [-704.14, 375.6], [-710.28, 382.66], [-710.91, 383.5], [-711.36, 384.34], [-711.69, 385.13], [-711.85, 386.03], [-714.68, 386.22], [-716.33, 383.8], [-720.93, 388.96], [-722.61, 387.44], [-723.55, 388.47], [-724.56, 387.62], [-704.63, 365.04], [-703.67, 365.87], [-702.97, 365.18], [-701.41, 366.81]], "holes": []}}, {"shape": {"outer": [[-701.7, 357.82], [-702.01, 358.25], [-702.14, 358.76], [-702.09, 359.23], [-701.78, 359.74], [-701.32, 359.91], [-700.74, 359.86], [-700.15, 359.56], [-699.73, 359.17], [-699.45, 358.6], [-699.3, 358.1], [-699.2, 357.62], [-699.18, 357.31], [-699.31, 356.94], [-699.6, 356.77], [-700.09, 356.78], [-700.6, 356.96], [-701.21, 357.35], [-701.7, 357.82]], "holes": []}}, {"shape": {"outer": [[-654.95, 410.57], [-622.78, 375.35], [-622.38, 374.88], [-619.76, 375.79], [-616.84, 376.27], [-612.11, 375.26], [-602.17, 383.57], [-600.95, 384.1], [-599.63, 383.74], [-591.98, 376.46], [-597.14, 371.37], [-586.28, 374.08], [-610.34, 399.47], [-613.55, 397.66], [-615.15, 395.06], [-615.55, 392.34], [-615.14, 391.13], [-616.82, 389.79], [-634.07, 409.42], [-635.55, 414.9], [-638.13, 415.94], [-639.61, 415.19], [-642.06, 416.34], [-643.03, 412.81], [-644.74, 409.88], [-646.36, 409.91], [-654.95, 410.57]], "holes": []}}, {"shape": {"outer": [[-639.41, 331.19], [-638.02, 331.48], [-632.5, 336.32], [-633.85, 337.39], [-634.58, 338.03], [-637.69, 335.35], [-638.42, 334.36], [-639.11, 333.25], [-639.46, 332.21], [-639.41, 331.19]], "holes": []}}, {"shape": {"outer": [[-631.25, 337.63], [-632.53, 339.65], [-631.89, 340.44], [-630.96, 340.73], [-629.86, 340.5], [-628.46, 340.73], [-627.37, 340.99], [-631.25, 337.63]], "holes": []}}, {"shape": {"outer": [[-712.23, 388.81], [-712.2, 389.76], [-712.08, 390.63], [-711.85, 391.59], [-711.47, 392.46], [-710.93, 393.26], [-712.52, 395.03], [-715.5, 392.18], [-716.9, 393.37], [-718.34, 391.21], [-716.05, 388.82], [-712.23, 388.81]], "holes": []}}, {"shape": {"outer": [[-702.82, 397.38], [-704.08, 397.32], [-705.25, 397.18], [-706.42, 396.89], [-707.71, 396.43], [-709.22, 398.09], [-705.76, 401.14], [-707.06, 402.42], [-704.71, 403.78], [-702.72, 401.32], [-702.82, 397.38]], "holes": []}}, {"shape": {"outer": [[-699.94, 396.82], [-699.8, 399.88], [-698.51, 400.98], [-683.83, 385.01], [-684.6, 384.05], [-688.74, 384.21], [-689.29, 385.85], [-690.1, 387.06], [-697.42, 395.31], [-698.61, 396.18], [-699.94, 396.82]], "holes": []}}, {"shape": {"outer": [[-1958.53, -54.41], [-1955.25, -54.53], [-1955.46, -60.71], [-1958.74, -60.6], [-1958.53, -54.41]], "holes": []}}, {"shape": {"outer": [[-2008.74, -70.03], [-2008.67, -65.72], [-2008.44, -65.26], [-2007.73, -65.06], [-1997.52, -64.19], [-1997.5, -64.88], [-1997.72, -70.42], [-2002.04, -70.27], [-2002.02, -69.63], [-2004.94, -69.53], [-2004.95, -70.16], [-2008.74, -70.03]], "holes": []}}, {"shape": {"outer": [[-2008.99, -74.77], [-2009.15, -88.69], [-2007.4, -89.87], [-2004.65, -90.91], [-2001.53, -90.94], [-2000.66, -89.26], [-2001.97, -86.92], [-2000.55, -81.16], [-2000.66, -79.05], [-2000.14, -76.66], [-2000.69, -75.25], [-2004.29, -74.63], [-2007.23, -74.48], [-2008.99, -74.77]], "holes": []}}, {"shape": {"outer": [[-2008.99, -74.77], [-2008.89, -72.51], [-1997.8, -72.6], [-1998.66, -94.21], [-2004.07, -94.09], [-2004.08, -93.47], [-2004.3, -92.99], [-2004.68, -92.69], [-2005.16, -92.62], [-2005.69, -92.68], [-2006.11, -92.98], [-2006.32, -93.47], [-2006.34, -94.03], [-2009.27, -93.97], [-2009.15, -88.69], [-2007.4, -89.87], [-2004.65, -90.91], [-2001.53, -90.94], [-2000.66, -89.26], [-2001.97, -86.92], [-2000.55, -81.16], [-2000.66, -79.05], [-2000.14, -76.66], [-2000.69, -75.25], [-2004.29, -74.63], [-2007.23, -74.48], [-2008.99, -74.77]], "holes": []}}, {"shape": {"outer": [[-1216.53, -293.93], [-1214.99, -292.73], [-1207.49, -293.08], [-1212.0, -297.25], [-1216.67, -297.04], [-1216.53, -293.93]], "holes": []}}, {"shape": {"outer": [[-1291.32, -289.54], [-1290.06, -287.83], [-1275.22, -288.57], [-1275.31, -291.72], [-1277.58, -291.63], [-1280.96, -294.45], [-1287.69, -294.01], [-1291.32, -289.54]], "holes": []}}, {"shape": {"outer": [[-1435.62, -387.2], [-1435.69, -388.7], [-1419.75, -389.51], [-1419.67, -388.02], [-1435.62, -387.2]], "holes": []}}, {"shape": {"outer": [[-1462.87, -385.35], [-1458.43, -385.51], [-1458.13, -377.42], [-1460.72, -377.32], [-1460.98, -384.09], [-1462.82, -384.02], [-1462.87, -385.35]], "holes": []}}, {"shape": {"outer": [[-1457.55, -281.78], [-1457.43, -279.07], [-1470.19, -278.51], [-1470.3, -281.17], [-1457.55, -281.78]], "holes": []}}, {"shape": {"outer": [[-1587.78, -672.37], [-1583.58, -671.71], [-1572.81, -672.23], [-1572.62, -670.84], [-1578.8, -667.4], [-1584.0, -664.9], [-1587.72, -664.79], [-1587.78, -672.37]], "holes": []}}, {"shape": {"outer": [[-1608.98, -686.71], [-1604.34, -687.0], [-1603.59, -685.79], [-1602.97, -684.26], [-1602.52, -682.82], [-1602.41, -681.36], [-1599.5, -646.96], [-1605.31, -644.09], [-1608.44, -678.54], [-1608.98, -686.71]], "holes": []}}, {"shape": {"outer": [[-1598.36, -633.86], [-1604.1, -631.09], [-1602.18, -608.67], [-1600.31, -582.52], [-1597.81, -530.49], [-1597.47, -527.96], [-1595.06, -528.04], [-1594.96, -530.9], [-1596.21, -554.75], [-1596.31, -565.38], [-1596.24, -571.32], [-1595.71, -576.79], [-1595.23, -582.51], [-1594.85, -588.94], [-1595.15, -595.42], [-1598.36, -633.86]], "holes": []}}, {"shape": {"outer": [[-1591.14, -759.43], [-1590.76, -758.26], [-1590.05, -757.39], [-1589.1, -757.05], [-1587.18, -757.08], [-1583.32, -757.46], [-1584.54, -757.94], [-1586.66, -759.34], [-1587.45, -759.68], [-1591.14, -759.43]], "holes": []}}, {"shape": {"outer": [[-1462.31, -752.06], [-1461.88, -752.07], [-1461.89, -752.78], [-1460.94, -753.23], [-1459.43, -753.48], [-1458.06, -753.88], [-1457.45, -754.52], [-1457.4, -755.32], [-1457.42, -756.32], [-1457.09, -757.22], [-1456.56, -757.73], [-1455.61, -750.02], [-1452.03, -741.5], [-1452.8, -741.18], [-1452.32, -740.01], [-1452.84, -739.78], [-1452.49, -739.0], [-1452.07, -739.14], [-1451.46, -737.33], [-1451.47, -736.78], [-1451.75, -736.34], [-1451.83, -734.66], [-1451.47, -729.17], [-1445.14, -731.66], [-1444.18, -730.79], [-1442.83, -730.28], [-1441.33, -730.19], [-1407.19, -745.75], [-1403.56, -746.51], [-1400.84, -745.28], [-1398.48, -743.84], [-1397.54, -743.08], [-1357.87, -760.84], [-1352.38, -764.81], [-1351.86, -762.35], [-1397.47, -741.8], [-1398.18, -741.72], [-1398.87, -741.8], [-1399.76, -742.09], [-1400.61, -742.53], [-1401.52, -743.06], [-1402.37, -743.59], [-1403.32, -743.9], [-1404.61, -743.98], [-1406.22, -743.74], [-1440.22, -728.51], [-1442.38, -727.55], [-1446.46, -725.83], [-1449.7, -725.05], [-1452.25, -724.88], [-1453.53, -724.86], [-1454.88, -725.09], [-1458.39, -725.43], [-1458.96, -726.14], [-1460.06, -726.89], [-1461.23, -727.3], [-1462.31, -752.06]], "holes": []}}, {"shape": {"outer": [[-1450.91, -662.66], [-1450.33, -649.71], [-1445.95, -651.79], [-1450.91, -662.66]], "holes": []}}, {"shape": {"outer": [[-1460.65, -872.67], [-1457.55, -871.69], [-1455.68, -864.44], [-1461.5, -858.48], [-1461.94, -866.72], [-1461.54, -871.47], [-1460.65, -872.67]], "holes": []}}, {"shape": {"outer": [[-1456.81, -876.04], [-1456.19, -873.03], [-1448.22, -870.97], [-1443.57, -875.89], [-1447.29, -876.33], [-1453.17, -876.62], [-1456.81, -876.04]], "holes": []}}, {"shape": {"outer": [[-1453.46, -849.89], [-1418.94, -865.55], [-1427.01, -874.66], [-1440.84, -875.39], [-1461.58, -855.29], [-1461.07, -848.91], [-1458.98, -850.07], [-1456.15, -850.35], [-1453.46, -849.89]], "holes": []}}, {"shape": {"outer": [[-1367.13, -885.01], [-1366.7, -886.09], [-1366.9, -890.62], [-1367.25, -891.71], [-1381.76, -891.18], [-1379.42, -889.12], [-1378.23, -886.87], [-1377.87, -884.7], [-1371.53, -884.74], [-1367.13, -885.01]], "holes": []}}, {"shape": {"outer": [[-1364.91, -886.17], [-1364.29, -885.3], [-1350.92, -886.14], [-1334.26, -888.57], [-1333.11, -889.28], [-1333.06, -891.19], [-1335.41, -891.45], [-1341.97, -891.57], [-1353.73, -892.06], [-1359.33, -892.22], [-1362.73, -891.87], [-1364.61, -891.46], [-1365.16, -890.73], [-1364.91, -886.17]], "holes": []}}, {"shape": {"outer": [[-1454.04, -887.59], [-1454.07, -888.81], [-1431.95, -888.85], [-1418.23, -887.46], [-1406.02, -886.91], [-1393.65, -887.37], [-1392.1, -886.72], [-1392.32, -885.34], [-1406.04, -885.44], [-1421.62, -885.89], [-1435.08, -886.35], [-1454.04, -887.59]], "holes": []}}, {"shape": {"outer": [[-1283.37, -298.28], [-1281.79, -298.36], [-1280.14, -300.27], [-1280.97, -316.44], [-1284.27, -312.8], [-1283.37, -298.28]], "holes": []}}, {"shape": {"outer": [[-1285.33, -298.27], [-1291.58, -297.92], [-1293.81, -298.71], [-1295.37, -331.71], [-1289.47, -331.98], [-1289.62, -335.09], [-1257.49, -336.6], [-1256.93, -324.7], [-1272.59, -323.96], [-1277.18, -318.79], [-1281.53, -318.6], [-1286.18, -313.41], [-1285.33, -298.27]], "holes": []}}, {"shape": {"outer": [[-1417.7, -168.49], [-1417.65, -167.35], [-1425.12, -167.06], [-1425.15, -168.15], [-1417.7, -168.49]], "holes": []}}, {"shape": {"outer": [[-1275.86, 3.13], [-1275.77, 5.41], [-1270.87, 5.16], [-1270.96, 2.87], [-1275.86, 3.13]], "holes": []}}, {"shape": {"outer": [[-1248.02, 1.65], [-1247.91, 4.07], [-1244.98, 3.92], [-1245.09, 1.48], [-1248.02, 1.65]], "holes": []}}, {"shape": {"outer": [[-1731.11, -1106.83], [-1725.08, -1106.97], [-1725.58, -1128.53], [-1731.61, -1128.39], [-1731.11, -1106.83]], "holes": []}}, {"shape": {"outer": [[-1724.29, -1107.66], [-1724.33, -1112.84], [-1713.79, -1113.13], [-1712.12, -1111.87], [-1709.56, -1111.29], [-1707.13, -1111.3], [-1705.09, -1112.07], [-1700.97, -1108.4], [-1724.29, -1107.66]], "holes": []}}, {"shape": {"outer": [[-1724.36, -1115.52], [-1715.59, -1115.79], [-1715.94, -1117.75], [-1715.89, -1119.42], [-1715.53, -1120.69], [-1724.41, -1120.46], [-1724.36, -1115.52]], "holes": []}}, {"shape": {"outer": [[-1724.49, -1123.26], [-1724.59, -1128.34], [-1722.04, -1128.41], [-1716.86, -1123.39], [-1724.49, -1123.26]], "holes": []}}, {"shape": {"outer": [[71.15, -328.49], [76.55, -323.01], [83.53, -317.43], [84.43, -317.45], [85.02, -318.07], [74.28, -327.14], [71.71, -329.1], [71.15, -328.49]], "holes": []}}, {"shape": {"outer": [[92.22, -311.19], [91.69, -310.69], [91.7, -309.89], [92.71, -308.83], [93.64, -309.72], [92.22, -311.19]], "holes": []}}, {"shape": {"outer": [[-649.15, 345.32], [-648.65, 345.74], [-657.79, 355.76], [-657.83, 356.7], [-657.73, 357.49], [-657.44, 358.16], [-659.06, 359.96], [-660.06, 360.47], [-661.1, 360.84], [-662.22, 361.09], [-661.94, 360.08], [-661.92, 359.2], [-649.15, 345.32]], "holes": []}}, {"shape": {"outer": [[-658.6, 363.51], [-655.53, 365.96], [-650.13, 360.05], [-651.64, 358.74], [-652.05, 359.17], [-654.08, 357.26], [-654.38, 356.48], [-654.26, 355.79], [-653.95, 355.12], [-652.16, 353.25], [-652.62, 352.8], [-655.59, 355.83], [-655.77, 356.38], [-655.72, 357.02], [-655.56, 357.75], [-655.27, 358.4], [-653.86, 359.74], [-655.62, 361.58], [-657.03, 360.24], [-657.82, 361.22], [-658.33, 362.14], [-658.6, 363.51]], "holes": []}}, {"shape": {"outer": [[-707.11, 359.25], [-706.46, 359.17], [-705.93, 358.92], [-705.5, 358.6], [-704.97, 358.04], [-704.55, 357.39], [-704.38, 356.84], [-704.16, 356.38], [-703.67, 355.84], [-703.19, 355.52], [-702.74, 355.12], [-702.35, 354.51], [-702.32, 354.09], [-702.54, 353.73], [-703.0, 353.78], [-703.75, 354.81], [-704.96, 356.0], [-706.19, 356.92], [-707.83, 357.37], [-707.55, 357.73], [-707.33, 358.14], [-707.19, 358.68], [-707.11, 359.25]], "holes": []}}, {"shape": {"outer": [[-695.12, 357.5], [-694.07, 357.96], [-692.94, 359.02], [-692.5, 359.95], [-692.25, 361.02], [-693.68, 361.62], [-694.2, 360.8], [-694.58, 360.06], [-694.88, 358.96], [-695.12, 357.5]], "holes": []}}, {"shape": {"outer": [[-705.73, 363.52], [-705.45, 363.07], [-705.25, 362.57], [-705.33, 362.06], [-705.69, 361.64], [-706.23, 361.52], [-706.87, 361.66], [-707.43, 362.02], [-707.3, 362.56], [-707.14, 363.06], [-706.84, 363.81], [-706.71, 364.59], [-705.73, 363.52]], "holes": []}}, {"shape": {"outer": [[-711.34, 340.74], [-721.73, 352.25], [-714.23, 358.7], [-713.85, 358.25], [-719.94, 352.86], [-712.9, 345.13], [-709.24, 348.36], [-708.15, 347.19], [-701.91, 352.65], [-700.59, 353.41], [-699.3, 353.79], [-698.09, 353.66], [-697.05, 353.43], [-696.05, 352.84], [-689.94, 347.88], [-672.77, 329.14], [-674.8, 327.33], [-675.39, 327.98], [-689.92, 343.68], [-690.41, 343.24], [-698.77, 352.28], [-711.34, 340.74]], "holes": []}}, {"shape": {"outer": [[-677.05, 320.45], [-678.53, 321.99], [-678.64, 322.79], [-678.32, 323.37], [-676.2, 325.32], [-676.15, 327.28], [-675.39, 327.98], [-674.8, 327.33], [-672.77, 329.14], [-670.23, 326.37], [-677.05, 320.45]], "holes": []}}, {"shape": {"outer": [[-700.9, 410.34], [-698.29, 412.65], [-696.92, 411.18], [-697.96, 410.22], [-697.23, 408.92], [-696.1, 407.4], [-694.52, 406.01], [-692.92, 404.82], [-692.0, 405.67], [-690.38, 404.13], [-692.81, 401.86], [-700.9, 410.34]], "holes": []}}, {"shape": {"outer": [[-689.83, 407.68], [-686.89, 410.39], [-685.45, 408.81], [-688.44, 406.14], [-689.83, 407.68]], "holes": []}}, {"shape": {"outer": [[201.15, 486.81], [206.65, 491.37], [229.0, 466.95], [223.53, 461.45], [201.15, 486.81]], "holes": []}}, {"shape": {"outer": [[-42.56, -619.92], [-38.05, -617.59], [-32.36, -615.15], [-26.35, -612.56], [-18.89, -608.94], [-20.09, -607.94], [-20.94, -607.07], [-21.7, -606.08], [-22.66, -604.73], [-23.38, -603.28], [-23.98, -601.75], [-24.4, -599.75], [-26.16, -601.69], [-28.25, -604.0], [-30.33, -606.3], [-32.37, -608.55], [-34.64, -611.07], [-38.22, -607.86], [-38.79, -607.3], [-39.77, -607.41], [-47.79, -616.22], [-45.37, -619.48], [-42.56, -619.92]], "holes": []}}, {"shape": {"outer": [[-95.15, -684.07], [-94.74, -681.7], [-96.56, -680.79], [-99.35, -678.49], [-101.81, -676.26], [-105.72, -674.34], [-111.61, -673.84], [-115.93, -674.23], [-120.38, -677.68], [-128.18, -685.85], [-134.82, -692.5], [-142.17, -698.63], [-154.23, -709.07], [-164.59, -718.05], [-190.5, -746.19], [-225.65, -787.93], [-237.37, -802.48], [-250.64, -820.15], [-254.52, -825.63], [-275.01, -854.57], [-274.64, -855.66], [-271.17, -858.31], [-269.93, -858.65], [-268.09, -858.58], [-266.24, -857.83], [-264.25, -855.59], [-249.93, -835.74], [-239.44, -821.11], [-229.96, -807.81], [-218.91, -792.15], [-203.49, -772.64], [-186.92, -758.51], [-174.72, -747.9], [-151.82, -729.19], [-117.5, -700.57], [-104.16, -691.8], [-101.93, -690.82], [-99.6, -689.54], [-98.34, -688.62], [-98.89, -687.2], [-99.12, -685.7], [-98.02, -684.92], [-97.32, -683.66], [-96.32, -684.05], [-95.15, -684.07]], "holes": []}}, {"shape": {"outer": [[-75.56, -614.34], [-78.71, -611.33], [-108.65, -641.25], [-141.42, -675.22], [-147.06, -681.29], [-144.37, -683.9], [-124.09, -665.64], [-99.45, -640.27], [-75.56, -614.34]], "holes": []}}, {"shape": {"outer": [[245.69, -337.62], [247.57, -339.48], [250.15, -337.01], [250.3, -336.18], [249.85, -335.77], [248.34, -336.22], [245.69, -337.62]], "holes": []}}, {"shape": {"outer": [[211.0, -382.89], [233.32, -352.85], [232.01, -351.94], [235.95, -347.33], [231.86, -343.51], [229.08, -345.02], [223.35, -348.47], [217.93, -352.26], [211.49, -357.21], [207.69, -360.48], [212.2, -365.52], [209.62, -367.82], [207.18, -369.98], [204.81, -372.09], [202.42, -374.2], [201.46, -375.05], [203.5, -375.81], [205.42, -376.71], [207.09, -377.91], [208.7, -379.34], [210.1, -381.13], [211.0, -382.89]], "holes": []}}, {"shape": {"outer": [[248.14, -312.15], [250.12, -310.41], [252.06, -308.99], [253.97, -307.84], [255.9, -306.85], [258.39, -306.36], [260.98, -306.14], [263.73, -306.54], [266.65, -307.06], [269.12, -308.2], [270.47, -309.25], [271.29, -311.05], [271.5, -312.51], [271.37, -314.16], [270.71, -316.72], [269.25, -318.93], [267.72, -320.48], [266.36, -321.38], [264.81, -322.08], [257.66, -324.45], [250.28, -326.89], [238.77, -331.75], [229.74, -335.92], [219.24, -342.16], [216.8, -344.12], [215.18, -342.39], [248.14, -312.15]], "holes": []}}, {"shape": {"outer": [[136.08, -468.24], [134.54, -461.73], [136.8, -460.35], [139.74, -459.59], [142.3, -459.49], [142.19, -460.87], [142.65, -460.93], [142.28, -464.45], [141.07, -464.5], [139.75, -464.83], [138.33, -465.57], [137.1, -466.66], [136.08, -468.24]], "holes": []}}, {"shape": {"outer": [[143.46, -425.01], [141.98, -423.28], [141.02, -424.45], [140.08, -425.86], [139.26, -427.26], [138.91, -428.41], [138.67, -429.63], [138.66, -431.0], [138.88, -432.61], [139.52, -434.36], [140.7, -436.14], [142.13, -437.36], [144.13, -438.58], [146.68, -439.31], [149.45, -439.32], [152.58, -438.33], [150.93, -435.08], [149.34, -432.44], [147.41, -429.55], [144.81, -426.54], [143.46, -425.01]], "holes": []}}, {"shape": {"outer": [[33.5, -424.84], [35.92, -427.35], [38.55, -424.85], [36.13, -422.32], [33.5, -424.84]], "holes": []}}, {"shape": {"outer": [[161.57, -447.16], [182.22, -433.94], [183.46, -433.66], [184.34, -434.29], [184.71, -435.14], [175.22, -449.09], [174.63, -449.18], [174.23, -449.04], [174.12, -448.47], [177.31, -444.08], [175.52, -443.17], [172.78, -442.95], [170.72, -443.47], [168.86, -444.4], [167.56, -445.71], [166.74, -446.97], [168.32, -448.3], [168.69, -449.31], [168.88, -450.32], [168.47, -451.43], [167.5, -452.17], [165.4, -452.32], [164.03, -451.57], [163.09, -449.41], [161.57, -447.16]], "holes": []}}, {"shape": {"outer": [[146.62, -484.74], [152.26, -479.01], [158.56, -472.49], [158.62, -471.99], [158.28, -471.67], [157.59, -471.8], [155.74, -473.63], [153.08, -476.26], [149.8, -479.21], [147.31, -480.75], [145.0, -481.55], [143.3, -481.47], [142.36, -481.79], [141.95, -482.64], [141.95, -483.67], [142.64, -484.64], [143.94, -485.29], [145.2, -485.26], [146.62, -484.74]], "holes": []}}, {"shape": {"outer": [[170.7, -455.41], [162.0, -468.55], [161.58, -468.71], [161.06, -468.49], [161.0, -468.08], [162.58, -466.04], [164.27, -463.23], [165.02, -460.91], [165.34, -455.95], [165.72, -454.32], [166.95, -453.51], [168.37, -453.57], [170.7, -455.41]], "holes": []}}, {"shape": {"outer": [[-55.38, -632.18], [-60.46, -637.08], [-61.73, -637.28], [-62.88, -636.38], [-62.8, -634.29], [-60.0, -628.75], [-56.8, -624.7], [-53.31, -621.55], [-51.02, -619.72], [-49.78, -619.77], [-48.18, -621.29], [-48.02, -622.13], [-56.79, -630.84], [-55.38, -632.18]], "holes": []}}, {"shape": {"outer": [[203.17, -400.75], [205.72, -402.32], [206.23, -402.34], [207.02, -401.85], [208.53, -399.55], [210.26, -397.0], [212.04, -395.15], [212.95, -394.05], [212.77, -393.39], [210.53, -395.44], [209.17, -396.39], [207.45, -398.19], [205.42, -399.63], [203.17, -400.75]], "holes": []}}, {"shape": {"outer": [[202.67, -404.42], [203.75, -405.03], [204.12, -406.01], [203.67, -406.96], [189.12, -428.65], [187.85, -428.46], [187.29, -427.5], [188.0, -425.99], [202.67, -404.42]], "holes": []}}, {"shape": {"outer": [[88.11, -449.03], [86.98, -447.62], [88.8, -445.89], [94.42, -440.23], [99.51, -435.11], [100.14, -435.57], [100.96, -434.72], [100.43, -434.22], [105.46, -429.17], [106.15, -429.84], [107.26, -430.73], [108.63, -430.73], [108.35, -431.57], [105.09, -434.72], [101.35, -438.34], [98.8, -441.11], [95.74, -443.76], [93.86, -445.22], [91.16, -447.2], [88.11, -449.03]], "holes": []}}, {"shape": {"outer": [[35.5, -499.03], [40.9, -493.66], [49.66, -484.81], [54.09, -480.16], [55.96, -481.17], [54.28, -483.96], [51.75, -487.56], [48.6, -491.16], [44.92, -494.76], [40.67, -499.22], [38.59, -501.18], [37.71, -501.36], [37.68, -500.89], [37.55, -500.4], [36.71, -499.58], [36.25, -499.33], [35.5, -499.03]], "holes": []}}, {"shape": {"outer": [[-1552.72, -876.17], [-1552.67, -874.95], [-1543.72, -875.33], [-1543.77, -876.55], [-1552.72, -876.17]], "holes": []}}, {"shape": {"outer": [[-1537.52, -877.03], [-1537.47, -875.82], [-1528.52, -876.2], [-1528.57, -877.42], [-1537.52, -877.03]], "holes": []}}, {"shape": {"outer": [[-1522.07, -877.72], [-1522.02, -876.5], [-1513.08, -876.88], [-1513.13, -878.1], [-1522.07, -877.72]], "holes": []}}, {"shape": {"outer": [[-1506.58, -878.41], [-1506.52, -877.18], [-1497.58, -877.56], [-1497.63, -878.78], [-1506.58, -878.41]], "holes": []}}, {"shape": {"outer": [[-1262.09, -803.6], [-1236.73, -815.56], [-1240.61, -817.63], [-1260.54, -808.35], [-1262.09, -803.6]], "holes": []}}, {"shape": {"outer": [[-1326.96, -780.65], [-1323.68, -779.45], [-1293.36, -793.42], [-1288.33, -791.57], [-1262.09, -803.6], [-1260.54, -808.35], [-1240.61, -817.63], [-1242.84, -818.89], [-1326.96, -780.65]], "holes": []}}, {"shape": {"outer": [[-1232.16, -817.3], [-1229.87, -821.3], [-1212.64, -829.38], [-1208.67, -828.01], [-1232.16, -817.3]], "holes": []}}, {"shape": {"outer": [[-1343.1, -767.2], [-1340.01, -775.28], [-1334.16, -773.12], [-1335.05, -770.93], [-1343.1, -767.2]], "holes": []}}, {"shape": {"outer": [[-776.18, -140.73], [-778.09, -143.15], [-786.01, -142.79], [-785.32, -129.39], [-783.78, -130.82], [-784.15, -137.18], [-776.0, -137.64], [-776.18, -140.73]], "holes": []}}, {"shape": {"outer": [[-1145.83, -34.82], [-1145.76, -32.83], [-1145.72, -31.82], [-1142.71, -31.94], [-1142.82, -34.93], [-1145.83, -34.82]], "holes": []}}, {"shape": {"outer": [[-1141.6, -8.7], [-1141.51, -6.89], [-1144.5, -6.74], [-1144.56, -7.88], [-1144.59, -8.55], [-1141.6, -8.7]], "holes": []}}, {"shape": {"outer": [[-807.73, -106.28], [-807.7, -105.57], [-803.21, -105.79], [-803.25, -106.5], [-807.73, -106.28]], "holes": []}}, {"shape": {"outer": [[-716.01, -104.17], [-716.14, -103.57], [-711.07, -102.45], [-710.42, -103.11], [-709.45, -104.08], [-709.8, -104.37], [-712.71, -104.26], [-716.01, -104.17]], "holes": []}}, {"shape": {"outer": [[-1143.46, -52.04], [-1141.52, -53.52], [-1141.96, -63.23], [-1143.34, -64.38], [-1143.68, -73.46], [-1142.49, -75.16], [-1142.66, -78.86], [-1143.95, -80.45], [-1144.09, -83.26], [-1145.32, -83.21], [-1145.29, -82.53], [-1144.98, -82.55], [-1143.46, -52.04]], "holes": []}}, {"shape": {"outer": [[-1145.93, -87.5], [-1145.82, -85.63], [-1140.22, -85.95], [-1140.33, -87.84], [-1145.93, -87.5]], "holes": []}}, {"shape": {"outer": [[-1131.9, -88.35], [-1131.79, -86.47], [-1126.19, -86.8], [-1126.3, -88.69], [-1131.9, -88.35]], "holes": []}}, {"shape": {"outer": [[-1154.15, -87.01], [-1154.04, -85.14], [-1148.43, -85.46], [-1148.54, -87.34], [-1154.15, -87.01]], "holes": []}}, {"shape": {"outer": [[-1163.62, -86.44], [-1163.51, -84.56], [-1157.89, -84.89], [-1158.01, -86.77], [-1163.62, -86.44]], "holes": []}}, {"shape": {"outer": [[-1163.52, -181.74], [-1162.35, -181.81], [-1162.5, -184.38], [-1163.41, -184.33], [-1163.52, -181.74]], "holes": []}}, {"shape": {"outer": [[-1163.9, -193.88], [-1163.58, -186.29], [-1162.59, -186.33], [-1162.92, -193.93], [-1163.9, -193.88]], "holes": []}}, {"shape": {"outer": [[-1217.07, 25.3], [-1217.13, 24.11], [-1217.86, 24.14], [-1217.96, 22.07], [-1202.16, 21.34], [-1202.07, 23.4], [-1202.01, 24.57], [-1217.07, 25.3]], "holes": []}}, {"shape": {"outer": [[-1242.3, 31.28], [-1242.19, 34.58], [-1241.12, 35.1], [-1237.94, 31.03], [-1242.3, 31.28]], "holes": []}}, {"shape": {"outer": [[-1228.75, 0.07], [-1228.6, 3.14], [-1221.89, 2.8], [-1222.39, -6.9], [-1222.82, -15.47], [-1224.53, -15.38], [-1223.78, -1.2], [-1227.57, -1.0], [-1227.51, -0.01], [-1228.75, 0.07]], "holes": []}}, {"shape": {"outer": [[-1239.1, -0.45], [-1238.89, 3.66], [-1233.71, 3.4], [-1233.87, 0.33], [-1235.28, 0.39], [-1235.34, -0.64], [-1239.1, -0.45]], "holes": []}}, {"shape": {"outer": [[-1218.72, -1.82], [-1218.51, 2.64], [-1220.39, 2.73], [-1221.28, -15.62], [-1220.6, -15.66], [-1219.91, -1.78], [-1218.72, -1.82]], "holes": []}}, {"shape": {"outer": [[-1225.38, -31.64], [-1224.88, -22.29], [-1223.54, -22.36], [-1224.01, -31.71], [-1225.38, -31.64]], "holes": []}}, {"shape": {"outer": [[-1808.17, -172.75], [-1807.08, -174.89], [-1805.2, -173.75], [-1801.53, -172.12], [-1797.05, -170.87], [-1791.7, -169.11], [-1790.94, -167.2], [-1790.76, -165.0], [-1790.93, -163.91], [-1791.6, -163.51], [-1793.56, -163.17], [-1800.45, -167.21], [-1805.19, -166.35], [-1808.17, -172.75]], "holes": []}}, {"shape": {"outer": [[-1838.45, -192.23], [-1836.8, -189.52], [-1831.68, -189.04], [-1820.86, -187.54], [-1807.78, -184.57], [-1805.38, -183.73], [-1799.84, -180.7], [-1794.46, -179.05], [-1790.62, -178.72], [-1785.31, -179.35], [-1772.25, -183.86], [-1767.97, -185.01], [-1753.25, -185.54], [-1742.47, -185.89], [-1739.22, -185.27], [-1737.92, -185.27], [-1735.7, -186.55], [-1735.22, -187.48], [-1735.98, -188.0], [-1740.4, -187.69], [-1766.67, -186.5], [-1766.62, -187.52], [-1772.16, -189.25], [-1777.75, -190.15], [-1782.82, -190.28], [-1800.01, -189.32], [-1807.21, -189.46], [-1819.06, -190.98], [-1833.62, -192.05], [-1838.45, -192.23]], "holes": []}}, {"shape": {"outer": [[-1841.77, -189.74], [-1840.51, -192.33], [-1843.7, -192.27], [-1847.23, -191.12], [-1852.91, -188.91], [-1858.26, -186.08], [-1868.66, -178.22], [-1881.51, -168.84], [-1880.48, -168.83], [-1862.23, -181.19], [-1857.36, -184.19], [-1852.4, -186.88], [-1848.77, -188.39], [-1841.77, -189.74]], "holes": []}}, {"shape": {"outer": [[-1614.68, -167.61], [-1614.16, -157.57], [-1618.39, -159.46], [-1619.49, -160.6], [-1619.86, -162.0], [-1619.74, -163.45], [-1619.02, -164.74], [-1614.68, -167.61]], "holes": []}}, {"shape": {"outer": [[-1715.58, -193.18], [-1719.71, -186.58], [-1716.16, -183.97], [-1715.58, -183.38], [-1715.1, -183.32], [-1714.94, -183.75], [-1715.23, -192.6], [-1715.58, -193.18]], "holes": []}}, {"shape": {"outer": [[-1454.31, 46.67], [-1454.38, 44.59], [-1452.63, 44.53], [-1452.65, 44.09], [-1451.02, 44.03], [-1450.94, 46.0], [-1449.71, 45.96], [-1449.69, 46.56], [-1447.12, 46.46], [-1447.13, 45.88], [-1445.52, 45.83], [-1445.59, 43.75], [-1442.19, 43.63], [-1442.04, 48.12], [-1452.18, 48.47], [-1452.24, 46.6], [-1454.31, 46.67]], "holes": []}}, {"shape": {"outer": [[-1624.33, -139.44], [-1611.88, -140.0], [-1611.97, -142.76], [-1622.1, -142.24], [-1622.09, -148.4], [-1622.22, -148.98], [-1622.5, -149.44], [-1622.97, -149.56], [-1623.44, -149.4], [-1623.77, -148.78], [-1623.97, -148.06], [-1624.23, -144.93], [-1624.35, -141.79], [-1624.33, -139.44]], "holes": []}}, {"shape": {"outer": [[-1591.52, -93.83], [-1574.68, -96.72], [-1574.72, -97.61], [-1574.82, -98.21], [-1575.0, -98.65], [-1575.34, -99.14], [-1575.98, -99.5], [-1576.4, -99.64], [-1576.81, -99.71], [-1576.94, -99.2], [-1581.88, -98.93], [-1584.74, -98.44], [-1587.96, -97.38], [-1589.56, -96.7], [-1590.7, -95.95], [-1591.63, -95.17], [-1592.16, -94.42], [-1591.52, -93.83]], "holes": []}}, {"shape": {"outer": [[-1574.44, -88.36], [-1573.97, -77.98], [-1574.25, -77.97], [-1574.23, -77.29], [-1574.35, -76.74], [-1574.78, -76.13], [-1575.54, -75.46], [-1576.5, -75.01], [-1577.59, -74.89], [-1579.38, -74.83], [-1579.37, -74.21], [-1582.27, -74.43], [-1583.46, -74.73], [-1584.54, -75.3], [-1585.72, -76.38], [-1586.76, -77.64], [-1589.83, -82.12], [-1589.32, -84.43], [-1587.15, -85.52], [-1584.94, -85.83], [-1582.79, -84.8], [-1580.69, -85.27], [-1577.64, -87.04], [-1575.72, -87.98], [-1574.44, -88.36]], "holes": []}}, {"shape": {"outer": [[-1589.83, -82.12], [-1592.15, -84.79], [-1593.1, -86.07], [-1593.26, -87.56], [-1592.84, -88.76], [-1592.0, -89.3], [-1591.42, -89.54], [-1574.64, -92.29], [-1574.44, -88.36], [-1575.72, -87.98], [-1577.64, -87.04], [-1580.69, -85.27], [-1582.79, -84.8], [-1584.94, -85.83], [-1587.15, -85.52], [-1589.32, -84.43], [-1589.83, -82.12]], "holes": []}}, {"shape": {"outer": [[-1642.09, 65.85], [-1643.87, 65.74], [-1645.65, 65.83], [-1646.84, 66.13], [-1648.49, 66.95], [-1650.17, 66.9], [-1651.32, 66.22], [-1651.55, 65.1], [-1651.96, 64.35], [-1652.61, 63.75], [-1653.81, 63.52], [-1655.08, 63.75], [-1655.76, 64.59], [-1657.15, 65.99], [-1658.51, 66.83], [-1660.49, 67.34], [-1661.48, 67.38], [-1662.68, 68.04], [-1662.85, 66.01], [-1663.11, 64.14], [-1663.14, 62.81], [-1662.54, 61.98], [-1661.83, 61.04], [-1661.2, 59.46], [-1660.46, 58.06], [-1660.23, 57.3], [-1659.56, 55.91], [-1659.0, 54.27], [-1658.32, 52.53], [-1657.98, 50.5], [-1657.86, 48.42], [-1657.69, 46.01], [-1658.54, 45.41], [-1659.18, 45.86], [-1659.81, 46.7], [-1660.3, 46.79], [-1660.7, 46.65], [-1661.21, 46.99], [-1662.3, 46.82], [-1663.43, 46.31], [-1664.33, 45.14], [-1664.59, 43.9], [-1664.05, 43.2], [-1663.06, 42.69], [-1659.92, 43.23], [-1659.4, 41.64], [-1658.94, 39.91], [-1662.7, 39.14], [-1663.13, 40.18], [-1664.0, 39.69], [-1662.81, 36.65], [-1660.68, 36.6], [-1659.35, 37.17], [-1658.06, 37.57], [-1657.55, 37.46], [-1656.64, 36.15], [-1656.66, 35.09], [-1656.9, 34.29], [-1656.97, 34.05], [-1657.12, 33.03], [-1656.76, 32.19], [-1656.63, 31.91], [-1653.18, 32.47], [-1652.17, 32.63], [-1656.31, 59.68], [-1651.33, 60.89], [-1651.16, 63.86], [-1647.53, 63.66], [-1642.25, 63.44], [-1642.09, 65.85]], "holes": []}}, {"shape": {"outer": [[-1635.18, 65.86], [-1634.48, 66.79], [-1633.28, 66.97], [-1632.39, 66.96], [-1630.88, 66.59], [-1630.64, 66.3], [-1630.69, 65.08], [-1634.37, 65.22], [-1634.34, 65.83], [-1635.18, 65.86]], "holes": []}}, {"shape": {"outer": [[-1630.64, 66.3], [-1630.56, 68.06], [-1654.27, 69.03], [-1654.21, 68.36], [-1662.04, 68.88], [-1662.68, 68.04], [-1661.48, 67.38], [-1660.49, 67.34], [-1658.51, 66.83], [-1657.15, 65.99], [-1655.76, 64.59], [-1655.08, 63.75], [-1653.81, 63.52], [-1652.61, 63.75], [-1651.96, 64.35], [-1651.55, 65.1], [-1651.32, 66.22], [-1650.17, 66.9], [-1648.49, 66.95], [-1646.84, 66.13], [-1645.65, 65.83], [-1643.87, 65.74], [-1642.09, 65.85], [-1642.07, 66.17], [-1635.18, 65.86], [-1634.48, 66.79], [-1633.28, 66.97], [-1632.39, 66.96], [-1630.88, 66.59], [-1630.64, 66.3]], "holes": []}}, {"shape": {"outer": [[-1663.14, 62.81], [-1663.17, 61.32], [-1664.65, 56.06], [-1666.0, 50.39], [-1666.0, 46.66], [-1665.56, 43.55], [-1665.13, 41.76], [-1664.86, 41.61], [-1664.47, 41.59], [-1662.86, 41.71], [-1663.06, 42.69], [-1664.05, 43.2], [-1664.59, 43.9], [-1664.33, 45.14], [-1663.43, 46.31], [-1662.3, 46.82], [-1661.21, 46.99], [-1660.7, 46.65], [-1660.3, 46.79], [-1659.81, 46.7], [-1659.18, 45.86], [-1658.54, 45.41], [-1657.69, 46.01], [-1657.86, 48.42], [-1657.98, 50.5], [-1658.32, 52.53], [-1659.0, 54.27], [-1659.56, 55.91], [-1660.23, 57.3], [-1660.46, 58.06], [-1661.2, 59.46], [-1661.83, 61.04], [-1662.54, 61.98], [-1663.14, 62.81]], "holes": []}}, {"shape": {"outer": [[-1662.81, 36.65], [-1661.45, 33.14], [-1660.79, 33.17], [-1660.17, 32.92], [-1659.57, 32.46], [-1659.18, 32.22], [-1658.8, 32.08], [-1658.25, 32.14], [-1657.88, 32.06], [-1657.43, 32.13], [-1656.76, 32.19], [-1657.12, 33.03], [-1656.9, 34.29], [-1656.66, 35.09], [-1656.64, 36.15], [-1657.55, 37.46], [-1658.06, 37.57], [-1659.35, 37.17], [-1660.68, 36.6], [-1662.81, 36.65]], "holes": []}}, {"shape": {"outer": [[-1670.84, 52.18], [-1669.52, 52.12], [-1668.78, 68.37], [-1667.27, 68.37], [-1667.2, 68.72], [-1666.38, 68.56], [-1665.74, 68.2], [-1665.41, 67.76], [-1665.29, 66.31], [-1665.32, 65.18], [-1665.39, 63.5], [-1665.77, 61.38], [-1666.22, 59.56], [-1666.83, 57.29], [-1667.46, 54.94], [-1668.24, 52.06], [-1668.62, 51.22], [-1669.11, 50.89], [-1669.77, 50.79], [-1670.91, 50.87], [-1670.84, 52.18]], "holes": []}}, {"shape": {"outer": [[-1674.21, 48.6], [-1673.14, 48.92], [-1671.96, 48.95], [-1670.02, 48.81], [-1668.81, 48.43], [-1668.49, 47.91], [-1668.41, 46.53], [-1668.14, 43.66], [-1667.95, 41.86], [-1667.12, 39.7], [-1666.38, 37.85], [-1664.95, 35.01], [-1664.13, 32.91], [-1663.39, 30.07], [-1662.99, 27.21], [-1662.82, 24.21], [-1662.85, 21.81], [-1663.07, 21.48], [-1663.56, 21.1], [-1663.86, 20.89], [-1670.32, 20.99], [-1669.2, 47.12], [-1674.27, 47.33], [-1674.21, 48.6]], "holes": []}}, {"shape": {"outer": [[-1737.46, -78.41], [-1743.94, -78.26], [-1745.73, -91.12], [-1743.46, -91.56], [-1743.71, -92.99], [-1745.56, -92.6], [-1746.93, -91.69], [-1747.4, -88.1], [-1747.4, -81.33], [-1747.18, -78.3], [-1746.33, -76.08], [-1745.37, -74.0], [-1743.29, -72.64], [-1741.36, -72.41], [-1739.18, -73.02], [-1737.55, -75.65], [-1737.46, -78.41]], "holes": []}}, {"shape": {"outer": [[-1775.54, -114.41], [-1774.64, -112.81], [-1773.93, -114.35], [-1773.08, -117.28], [-1772.71, -119.76], [-1772.18, -123.18], [-1771.87, -126.1], [-1771.82, -129.36], [-1776.06, -128.59], [-1774.7, -121.63], [-1776.6, -121.25], [-1775.54, -114.41]], "holes": []}}, {"shape": {"outer": [[-1777.41, -113.49], [-1777.47, -109.97], [-1778.38, -109.47], [-1779.21, -109.02], [-1781.1, -108.32], [-1782.75, -107.98], [-1785.23, -107.44], [-1785.79, -107.6], [-1786.29, -108.6], [-1788.24, -112.65], [-1779.76, -114.15], [-1779.3, -113.46], [-1777.41, -113.49]], "holes": []}}, {"shape": {"outer": [[-1790.3, -151.27], [-1790.01, -152.2], [-1790.73, -155.91], [-1790.4, -156.41], [-1789.82, -156.88], [-1789.33, -156.9], [-1788.44, -156.77], [-1787.79, -156.11], [-1787.16, -154.84], [-1786.4, -153.64], [-1785.46, -152.4], [-1784.38, -151.09], [-1782.66, -149.39], [-1781.2, -148.18], [-1779.55, -146.6], [-1777.96, -144.91], [-1776.45, -143.03], [-1774.72, -141.22], [-1773.79, -138.8], [-1772.25, -134.76], [-1771.82, -132.48], [-1774.72, -131.26], [-1777.87, -131.11], [-1778.03, -131.95], [-1777.25, -132.09], [-1779.56, -145.16], [-1780.45, -145.0], [-1780.6, -145.89], [-1784.55, -145.2], [-1785.65, -151.4], [-1786.44, -151.27], [-1786.56, -151.92], [-1790.3, -151.27]], "holes": []}}, {"shape": {"outer": [[-1848.66, -152.18], [-1848.02, -151.5], [-1847.46, -151.71], [-1847.35, -152.51], [-1846.41, -156.71], [-1838.62, -157.4], [-1839.02, -159.87], [-1820.2, -162.89], [-1820.37, -163.94], [-1814.16, -164.95], [-1814.06, -164.29], [-1807.85, -165.31], [-1807.12, -165.77], [-1809.57, -170.51], [-1810.03, -172.35], [-1809.94, -173.64], [-1809.35, -175.03], [-1808.9, -175.99], [-1813.42, -177.52], [-1813.76, -176.91], [-1818.45, -178.12], [-1818.66, -177.7], [-1824.17, -179.02], [-1824.65, -178.4], [-1830.71, -179.38], [-1830.79, -180.17], [-1837.92, -181.2], [-1839.94, -181.2], [-1841.95, -180.9], [-1843.62, -180.68], [-1844.87, -180.3], [-1845.38, -181.04], [-1843.78, -181.66], [-1842.11, -181.75], [-1840.28, -181.91], [-1841.75, -183.19], [-1844.64, -182.49], [-1847.26, -181.73], [-1849.99, -180.69], [-1852.41, -179.46], [-1855.33, -177.86], [-1857.45, -176.58], [-1860.09, -172.85], [-1860.84, -171.67], [-1861.15, -170.15], [-1860.71, -168.72], [-1859.87, -166.02], [-1857.91, -162.19], [-1848.66, -152.18]], "holes": []}}, {"shape": {"outer": [[-1888.01, -128.35], [-1888.55, -127.93], [-1889.07, -128.21], [-1890.89, -133.87], [-1890.78, -134.6], [-1890.08, -134.75], [-1884.77, -132.95], [-1884.0, -132.34], [-1884.41, -131.47], [-1888.01, -128.35]], "holes": []}}, {"shape": {"outer": [[-1876.27, -134.99], [-1878.79, -134.65], [-1879.82, -134.58], [-1881.61, -134.97], [-1890.57, -137.84], [-1891.29, -138.33], [-1891.76, -139.39], [-1893.38, -145.69], [-1893.37, -146.63], [-1893.16, -147.64], [-1891.81, -149.26], [-1888.37, -153.72], [-1886.25, -156.12], [-1884.83, -157.4], [-1881.69, -160.01], [-1877.99, -163.2], [-1874.08, -165.54], [-1873.28, -165.13], [-1874.99, -161.94], [-1869.84, -158.28], [-1868.81, -157.57], [-1866.15, -149.41], [-1869.81, -148.65], [-1868.86, -145.41], [-1873.01, -143.61], [-1877.55, -142.29], [-1876.27, -134.99]], "holes": []}}, {"shape": {"outer": [[-1545.48, -457.71], [-1534.57, -458.22], [-1529.19, -458.6], [-1529.2, -460.08], [-1524.92, -460.35], [-1525.09, -463.44], [-1520.34, -463.71], [-1520.7, -470.01], [-1508.33, -470.72], [-1508.59, -475.16], [-1504.67, -475.38], [-1505.75, -494.06], [-1508.07, -495.67], [-1508.35, -498.86], [-1513.36, -500.93], [-1515.08, -500.88], [-1516.49, -500.14], [-1517.56, -497.52], [-1519.25, -495.47], [-1520.82, -493.93], [-1522.48, -492.6], [-1524.39, -491.35], [-1526.41, -490.66], [-1528.66, -490.0], [-1547.29, -489.46], [-1546.59, -481.32], [-1545.48, -457.71]], "holes": []}}, {"shape": {"outer": [[-1562.42, -438.24], [-1568.25, -437.95], [-1566.95, -412.04], [-1562.14, -412.28], [-1561.76, -404.74], [-1537.73, -405.95], [-1537.67, -404.71], [-1530.1, -405.09], [-1530.4, -410.99], [-1545.14, -410.25], [-1545.06, -408.49], [-1554.29, -408.05], [-1554.42, -410.58], [-1557.12, -410.46], [-1557.39, -416.13], [-1561.35, -415.95], [-1562.42, -438.24]], "holes": []}}, {"shape": {"outer": [[-1519.87, -404.9], [-1508.42, -405.48], [-1508.48, -406.82], [-1507.02, -406.88], [-1507.05, -407.59], [-1513.77, -407.26], [-1519.97, -406.95], [-1519.87, -404.9]], "holes": []}}, {"shape": {"outer": [[-1493.62, -408.28], [-1493.53, -406.29], [-1458.91, -407.91], [-1459.08, -411.48], [-1468.36, -411.05], [-1468.29, -409.46], [-1493.62, -408.28]], "holes": []}}, {"shape": {"outer": [[-1529.19, -458.6], [-1529.13, -457.27], [-1534.51, -457.01], [-1534.57, -458.22], [-1529.19, -458.6]], "holes": []}}, {"shape": {"outer": [[-1525.09, -463.44], [-1524.92, -460.35], [-1513.6, -460.98], [-1513.77, -464.08], [-1520.34, -463.71], [-1525.09, -463.44]], "holes": []}}, {"shape": {"outer": [[-1516.08, -458.72], [-1515.82, -459.64], [-1513.52, -459.72], [-1513.18, -449.81], [-1515.69, -449.73], [-1516.08, -458.72]], "holes": []}}, {"shape": {"outer": [[-1509.19, -442.19], [-1509.33, -444.49], [-1498.65, -445.0], [-1498.69, -445.75], [-1500.32, -445.67], [-1500.64, -452.31], [-1494.42, -452.62], [-1494.19, -448.05], [-1485.59, -448.47], [-1485.64, -449.58], [-1483.44, -449.68], [-1483.4, -448.82], [-1484.76, -448.75], [-1484.33, -439.78], [-1485.59, -439.71], [-1485.85, -445.9], [-1497.79, -445.38], [-1497.67, -442.69], [-1509.19, -442.19]], "holes": []}}, {"shape": {"outer": [[-420.65, 52.04], [-416.96, 55.49], [-398.21, 34.7], [-397.3, 33.24], [-396.77, 31.82], [-396.79, 31.15], [-399.91, 28.06], [-420.66, 50.99], [-420.65, 52.04]], "holes": []}}, {"shape": {"outer": [[-436.8, 68.32], [-432.89, 71.82], [-450.26, 91.06], [-452.7, 88.88], [-452.73, 85.97], [-436.8, 68.32]], "holes": []}}, {"shape": {"outer": [[-428.3, 67.68], [-419.49, 58.02], [-423.54, 54.34], [-432.36, 64.0], [-428.3, 67.68]], "holes": []}}, {"shape": {"outer": [[-495.83, 186.13], [-478.5, 167.04], [-483.76, 162.34], [-500.67, 181.14], [-499.92, 182.52], [-495.83, 186.13]], "holes": []}}, {"shape": {"outer": [[-477.7, 166.05], [-473.28, 161.04], [-478.48, 156.49], [-482.9, 161.48], [-477.7, 166.05]], "holes": []}}, {"shape": {"outer": [[-472.16, 159.75], [-468.72, 155.9], [-472.83, 152.19], [-473.47, 151.89], [-474.24, 152.04], [-477.23, 155.35], [-472.16, 159.75]], "holes": []}}, {"shape": {"outer": [[-466.57, 153.76], [-463.04, 149.76], [-463.37, 149.48], [-456.16, 141.32], [-461.06, 137.02], [-471.18, 148.48], [-471.22, 149.21], [-470.91, 149.96], [-466.57, 153.76]], "holes": []}}, {"shape": {"outer": [[-453.93, 139.18], [-441.45, 125.67], [-445.71, 122.13], [-446.72, 121.55], [-458.7, 134.82], [-453.93, 139.18]], "holes": []}}, {"shape": {"outer": [[-444.49, 120.29], [-443.67, 121.42], [-440.29, 124.49], [-439.62, 123.87], [-439.07, 122.69], [-440.28, 121.7], [-441.78, 120.82], [-442.95, 120.34], [-444.49, 120.29]], "holes": []}}, {"shape": {"outer": [[-498.87, 189.08], [-497.16, 187.23], [-500.49, 184.16], [-501.69, 183.87], [-501.7, 184.58], [-501.38, 185.81], [-500.67, 187.25], [-498.87, 189.08]], "holes": []}}, {"shape": {"outer": [[-507.65, 199.09], [-506.4, 197.39], [-507.95, 195.98], [-509.34, 195.16], [-510.79, 194.7], [-512.34, 194.5], [-512.06, 195.3], [-507.65, 199.09]], "holes": []}}, {"shape": {"outer": [[-528.64, 179.87], [-534.31, 175.31], [-533.42, 174.3], [-532.25, 173.84], [-531.49, 174.5], [-529.71, 176.56], [-528.9, 178.34], [-528.64, 179.87]], "holes": []}}, {"shape": {"outer": [[-522.81, 163.93], [-524.12, 165.75], [-523.04, 166.5], [-521.42, 167.23], [-519.47, 167.64], [-518.71, 167.57], [-522.81, 163.93]], "holes": []}}, {"shape": {"outer": [[-521.79, 162.45], [-517.02, 166.74], [-488.47, 135.23], [-493.25, 130.93], [-521.79, 162.45]], "holes": []}}, {"shape": {"outer": [[-462.66, 106.76], [-481.18, 127.7], [-486.3, 123.21], [-467.77, 102.27], [-462.66, 106.76]], "holes": []}}, {"shape": {"outer": [[-465.03, 99.9], [-465.97, 101.25], [-463.41, 103.7], [-462.24, 104.2], [-462.26, 103.57], [-462.42, 102.81], [-462.83, 102.08], [-465.03, 99.9]], "holes": []}}, {"shape": {"outer": [[-429.67, 112.87], [-431.12, 114.32], [-431.82, 113.42], [-432.37, 112.17], [-432.6, 110.98], [-432.64, 110.2], [-429.67, 112.87]], "holes": []}}, {"shape": {"outer": [[-428.24, 111.6], [-403.22, 83.8], [-408.33, 79.11], [-429.7, 103.11], [-431.02, 104.57], [-432.0, 105.79], [-432.39, 106.57], [-432.54, 107.35], [-428.24, 111.6]], "holes": []}}, {"shape": {"outer": [[-401.73, 82.04], [-373.97, 51.71], [-375.99, 49.85], [-378.92, 48.17], [-380.3, 48.96], [-382.25, 50.68], [-385.01, 53.34], [-406.95, 77.38], [-401.73, 82.04]], "holes": []}}, {"shape": {"outer": [[-335.2, -15.79], [-328.04, -23.56], [-330.12, -25.68], [-337.31, -17.94], [-335.2, -15.79]], "holes": []}}, {"shape": {"outer": [[-344.87, -5.29], [-336.1, -14.82], [-338.33, -16.84], [-347.14, -7.35], [-344.87, -5.29]], "holes": []}}, {"shape": {"outer": [[-354.97, 5.67], [-345.9, -4.17], [-348.19, -6.22], [-357.3, 3.59], [-354.97, 5.67]], "holes": []}}, {"shape": {"outer": [[-365.43, 17.02], [-356.03, 6.82], [-358.34, 4.72], [-367.77, 14.88], [-365.43, 17.02]], "holes": []}}, {"shape": {"outer": [[-371.57, 23.68], [-366.25, 17.91], [-368.61, 15.77], [-373.94, 21.52], [-371.57, 23.68]], "holes": []}}, {"shape": {"outer": [[-577.28, 222.21], [-570.65, 228.02], [-568.93, 228.95], [-564.42, 224.22], [-566.36, 220.44], [-571.56, 216.0], [-577.28, 222.21]], "holes": []}}, {"shape": {"outer": [[-580.7, 244.07], [-589.96, 236.15], [-580.05, 225.35], [-571.85, 232.32], [-573.81, 234.44], [-575.0, 237.07], [-575.92, 239.11], [-577.03, 240.95], [-578.06, 242.3], [-579.23, 243.32], [-580.7, 244.07]], "holes": []}}, {"shape": {"outer": [[-591.05, 237.32], [-583.99, 243.6], [-583.59, 244.54], [-584.5, 244.47], [-585.56, 244.19], [-586.81, 243.52], [-588.53, 242.27], [-591.08, 240.01], [-592.29, 238.71], [-591.05, 237.32]], "holes": []}}, {"shape": {"outer": [[-535.63, 176.32], [-548.63, 190.41], [-545.66, 193.14], [-551.19, 199.12], [-554.06, 196.48], [-566.84, 210.3], [-562.03, 214.72], [-558.06, 216.22], [-530.2, 186.13], [-529.28, 184.27], [-528.93, 182.47], [-535.63, 176.32]], "holes": []}}, {"shape": {"outer": [[-572.35, 254.56], [-570.55, 255.69], [-564.13, 261.76], [-566.06, 263.83], [-568.39, 261.67], [-570.22, 259.89], [-570.83, 259.15], [-571.32, 258.39], [-571.81, 257.41], [-572.25, 256.05], [-572.35, 254.56]], "holes": []}}, {"shape": {"outer": [[-601.78, 249.71], [-596.21, 254.92], [-595.03, 255.82], [-594.93, 255.05], [-594.89, 253.85], [-595.08, 252.83], [-595.6, 251.68], [-596.33, 250.65], [-597.86, 249.14], [-599.71, 247.53], [-601.78, 249.71]], "holes": []}}, {"shape": {"outer": [[-575.2, 273.81], [-572.69, 271.53], [-574.87, 269.47], [-576.14, 268.79], [-577.94, 268.22], [-580.0, 267.9], [-581.51, 267.97], [-575.2, 273.81]], "holes": []}}, {"shape": {"outer": [[-571.59, 251.43], [-569.8, 254.4], [-562.94, 260.55], [-548.85, 244.99], [-555.42, 239.07], [-555.97, 238.82], [-556.6, 238.79], [-557.27, 239.06], [-566.06, 247.56], [-571.0, 250.52], [-571.59, 251.43]], "holes": []}}, {"shape": {"outer": [[-547.6, 242.66], [-539.03, 233.56], [-545.28, 227.72], [-545.77, 227.44], [-546.35, 227.47], [-546.91, 227.86], [-553.93, 235.32], [-554.13, 235.87], [-554.08, 236.47], [-553.82, 236.94], [-547.6, 242.66]], "holes": []}}, {"shape": {"outer": [[-536.36, 230.15], [-529.36, 222.51], [-536.44, 216.07], [-542.69, 222.88], [-542.88, 223.43], [-542.83, 224.03], [-542.57, 224.5], [-536.36, 230.15]], "holes": []}}, {"shape": {"outer": [[-533.97, 213.44], [-527.17, 219.56], [-508.82, 200.41], [-515.62, 194.91], [-518.09, 197.18], [-522.0, 200.6], [-533.97, 213.44]], "holes": []}}, {"shape": {"outer": [[-631.18, 335.36], [-576.2, 275.18], [-582.39, 269.33], [-583.81, 268.65], [-584.88, 269.45], [-586.99, 271.48], [-636.38, 326.33], [-637.51, 327.62], [-638.27, 328.99], [-631.18, 335.36]], "holes": []}}, {"shape": {"outer": [[-645.19, 313.06], [-639.91, 307.46], [-639.54, 306.22], [-639.71, 304.76], [-640.52, 304.07], [-641.84, 303.6], [-643.61, 303.84], [-646.69, 306.17], [-648.91, 309.01], [-649.08, 310.27], [-648.98, 311.89], [-647.87, 313.16], [-646.55, 313.5], [-645.19, 313.06]], "holes": []}}, {"shape": {"outer": [[-651.49, 317.26], [-651.92, 317.75], [-658.28, 312.13], [-652.65, 305.95], [-652.93, 307.73], [-652.96, 309.65], [-652.67, 312.05], [-651.85, 315.17], [-651.31, 316.64], [-651.49, 317.26]], "holes": []}}, {"shape": {"outer": [[-636.26, 301.07], [-635.61, 300.49], [-642.03, 294.8], [-647.65, 300.61], [-645.89, 300.21], [-643.97, 300.08], [-641.54, 300.21], [-638.38, 300.84], [-636.86, 301.28], [-636.26, 301.07]], "holes": []}}, {"shape": {"outer": [[-602.96, 251.06], [-596.91, 256.52], [-596.16, 257.2], [-595.71, 258.07], [-595.94, 258.9], [-603.46, 269.34], [-604.72, 270.05], [-606.65, 269.99], [-608.47, 269.16], [-614.53, 263.7], [-602.96, 251.06]], "holes": []}}, {"shape": {"outer": [[-616.25, 265.98], [-617.09, 266.97], [-610.77, 272.74], [-610.27, 272.59], [-609.98, 272.19], [-610.01, 271.7], [-616.25, 265.98]], "holes": []}}, {"shape": {"outer": [[-612.17, 275.88], [-613.39, 273.98], [-619.33, 269.18], [-625.29, 275.94], [-617.48, 282.31], [-612.17, 275.88]], "holes": []}}, {"shape": {"outer": [[-625.93, 276.73], [-618.33, 283.06], [-621.38, 286.68], [-628.97, 280.35], [-625.93, 276.73]], "holes": []}}, {"shape": {"outer": [[-634.94, 286.7], [-629.89, 281.08], [-622.52, 287.67], [-627.58, 293.28], [-634.94, 286.7]], "holes": []}}, {"shape": {"outer": [[-635.62, 287.83], [-640.48, 293.28], [-633.78, 299.21], [-633.02, 298.97], [-628.61, 294.03], [-635.62, 287.83]], "holes": []}}, {"shape": {"outer": [[-660.35, 314.97], [-659.26, 313.75], [-657.91, 314.93], [-658.99, 316.16], [-660.35, 314.97]], "holes": []}}, {"shape": {"outer": [[-676.26, 318.5], [-674.69, 316.81], [-668.39, 322.23], [-667.2, 323.33], [-667.43, 324.32], [-668.49, 325.35], [-676.26, 318.5]], "holes": []}}, {"shape": {"outer": [[-547.05, 299.23], [-544.84, 296.72], [-571.69, 272.58], [-573.77, 274.88], [-547.05, 299.23]], "holes": []}}, {"shape": {"outer": [[-540.72, 300.71], [-542.89, 303.06], [-523.22, 320.6], [-522.3, 319.42], [-521.9, 317.78], [-540.72, 300.71]], "holes": []}}, {"shape": {"outer": [[-551.89, 297.32], [-552.91, 298.72], [-554.79, 300.74], [-557.54, 301.91], [-563.77, 295.97], [-563.82, 292.9], [-563.1, 289.95], [-561.57, 288.54], [-551.89, 297.32]], "holes": []}}, {"shape": {"outer": [[-551.89, 297.32], [-548.36, 300.71], [-554.07, 306.49], [-567.83, 293.95], [-573.09, 299.67], [-575.1, 296.11], [-578.35, 292.8], [-582.12, 289.34], [-585.18, 288.34], [-585.83, 287.98], [-579.4, 280.94], [-577.48, 280.14], [-575.19, 279.83], [-572.89, 279.79], [-570.92, 280.0], [-561.57, 288.54], [-563.1, 289.95], [-563.82, 292.9], [-563.77, 295.97], [-557.54, 301.91], [-554.79, 300.74], [-552.91, 298.72], [-551.89, 297.32]], "holes": []}}, {"shape": {"outer": [[-629.91, 336.5], [-585.83, 287.98], [-585.18, 288.34], [-582.12, 289.34], [-578.35, 292.8], [-575.1, 296.11], [-573.09, 299.67], [-597.63, 326.72], [-565.76, 355.15], [-582.53, 372.5], [-583.83, 371.57], [-579.98, 367.36], [-579.72, 366.53], [-577.46, 364.07], [-576.37, 358.56], [-573.98, 360.73], [-569.83, 356.2], [-574.05, 352.37], [-576.78, 355.35], [-576.32, 355.77], [-577.91, 357.37], [-578.8, 363.03], [-586.74, 372.4], [-595.14, 369.98], [-596.94, 368.86], [-596.73, 368.21], [-588.92, 359.86], [-594.92, 354.31], [-596.84, 356.27], [-609.16, 345.59], [-615.59, 340.15], [-619.27, 344.46], [-620.17, 345.52], [-629.91, 336.5]], "holes": []}}, {"shape": {"outer": [[-611.94, 349.92], [-608.83, 346.49], [-597.12, 357.03], [-600.22, 360.45], [-611.94, 349.92]], "holes": []}}, {"shape": {"outer": [[-615.49, 351.89], [-614.89, 355.45], [-614.66, 356.02], [-614.19, 356.66], [-605.65, 364.26], [-606.08, 360.09], [-615.49, 351.89]], "holes": []}}, {"shape": {"outer": [[-603.16, 363.23], [-604.0, 360.93], [-602.32, 359.12], [-600.61, 360.53], [-603.16, 363.23]], "holes": []}}, {"shape": {"outer": [[-540.72, 307.53], [-543.96, 311.71], [-544.24, 313.56], [-543.52, 314.89], [-537.91, 319.53], [-536.61, 319.5], [-535.15, 318.98], [-531.85, 315.39], [-540.72, 307.53]], "holes": []}}, {"shape": {"outer": [[-540.72, 307.53], [-544.08, 304.27], [-549.66, 310.61], [-536.56, 322.42], [-525.97, 323.67], [-524.39, 322.08], [-531.85, 315.39], [-535.15, 318.98], [-536.61, 319.5], [-537.91, 319.53], [-543.52, 314.89], [-544.24, 313.56], [-543.96, 311.71], [-540.72, 307.53]], "holes": []}}, {"shape": {"outer": [[-613.33, 103.57], [-612.34, 104.76], [-611.36, 103.43], [-612.01, 103.3], [-612.79, 103.34], [-613.33, 103.57]], "holes": []}}, {"shape": {"outer": [[-610.26, 105.21], [-609.09, 106.23], [-608.91, 106.05], [-607.99, 106.92], [-608.53, 107.41], [-609.35, 106.71], [-609.76, 107.11], [-592.21, 122.97], [-590.41, 121.04], [-607.01, 106.42], [-609.33, 104.49], [-610.26, 105.21]], "holes": []}}, {"shape": {"outer": [[-575.64, 138.19], [-574.94, 135.34], [-578.13, 132.36], [-578.73, 132.01], [-579.43, 131.97], [-580.04, 132.24], [-580.95, 133.27], [-575.64, 138.19]], "holes": []}}, {"shape": {"outer": [[-590.89, 124.08], [-589.11, 122.17], [-584.3, 126.61], [-583.91, 127.17], [-583.82, 127.87], [-584.05, 128.5], [-585.01, 129.52], [-590.89, 124.08]], "holes": []}}, {"shape": {"outer": [[-569.92, 143.01], [-567.22, 142.22], [-548.45, 159.11], [-550.04, 160.88], [-569.92, 143.01]], "holes": []}}, {"shape": {"outer": [[-535.87, 173.99], [-534.7, 173.02], [-534.06, 171.88], [-546.15, 161.06], [-547.91, 163.09], [-535.87, 173.99]], "holes": []}}, {"shape": {"outer": [[-1008.63, -350.92], [-1010.4, -352.5], [-1012.23, -353.82], [-1013.46, -351.9], [-1014.21, -350.1], [-1014.91, -348.09], [-1019.78, -328.49], [-1020.08, -324.53], [-1017.35, -324.46], [-1018.54, -325.54], [-1018.32, -328.27], [-1017.65, -331.04], [-1016.68, -334.15], [-1015.58, -337.13], [-1014.25, -340.5], [-1012.75, -343.54], [-1011.38, -346.32], [-1009.97, -348.86], [-1008.63, -350.92]], "holes": []}}, {"shape": {"outer": [[-1463.96, -779.06], [-1459.53, -779.28], [-1459.55, -782.02], [-1458.86, -782.1], [-1458.97, -782.96], [-1459.89, -782.93], [-1460.22, -789.29], [-1456.11, -789.41], [-1455.51, -780.5], [-1457.2, -780.45], [-1456.67, -773.88], [-1455.12, -771.08], [-1456.88, -770.03], [-1457.53, -769.57], [-1457.72, -768.55], [-1457.11, -761.18], [-1459.22, -760.44], [-1459.01, -756.08], [-1459.19, -755.48], [-1459.94, -755.29], [-1461.69, -755.21], [-1462.16, -755.45], [-1462.19, -756.57], [-1462.79, -756.52], [-1463.96, -779.06]], "holes": []}}, {"shape": {"outer": [[-1403.56, -746.51], [-1398.98, -747.63], [-1392.66, -749.77], [-1387.76, -751.66], [-1382.41, -754.36], [-1373.75, -759.23], [-1365.37, -764.63], [-1355.03, -770.54], [-1352.38, -764.81], [-1357.87, -760.84], [-1397.54, -743.08], [-1398.48, -743.84], [-1400.84, -745.28], [-1403.56, -746.51]], "holes": []}}, {"shape": {"outer": [[-1388.52, -753.42], [-1376.31, -759.95], [-1368.16, -765.03], [-1378.91, -760.72], [-1382.24, -759.28], [-1385.28, -757.51], [-1387.25, -755.48], [-1388.52, -753.42]], "holes": []}}, {"shape": {"outer": [[-1368.16, -765.03], [-1364.65, -767.43], [-1360.32, -769.8], [-1360.56, -770.41], [-1371.97, -765.29], [-1440.04, -734.42], [-1448.74, -753.45], [-1451.38, -752.25], [-1442.83, -732.54], [-1442.27, -732.24], [-1441.52, -732.24], [-1404.85, -748.63], [-1401.34, -749.14], [-1396.24, -750.6], [-1391.59, -752.25], [-1388.52, -753.42], [-1387.25, -755.48], [-1385.28, -757.51], [-1382.24, -759.28], [-1378.91, -760.72], [-1368.16, -765.03]], "holes": []}}, {"shape": {"outer": [[-1349.57, -765.03], [-1350.33, -766.02], [-1351.88, -769.66], [-1346.44, -772.12], [-1349.57, -765.03]], "holes": []}}, {"shape": {"outer": [[-301.64, -27.58], [-297.34, -23.57], [-296.89, -24.05], [-296.46, -23.65], [-295.1, -25.1], [-295.56, -25.53], [-295.22, -25.91], [-299.47, -29.87], [-299.87, -29.44], [-300.47, -30.0], [-301.68, -28.71], [-301.09, -28.17], [-301.64, -27.58]], "holes": []}}, {"shape": {"outer": [[-286.42, -23.27], [-290.6, -27.03], [-291.12, -26.46], [-286.94, -22.7], [-286.42, -23.27]], "holes": []}}, {"shape": {"outer": [[-276.01, -4.0], [-275.21, -3.22], [-276.0, -2.41], [-271.23, 2.22], [-268.08, -0.99], [-268.86, -1.76], [-269.67, -0.92], [-273.7, -4.84], [-272.93, -5.63], [-273.7, -6.37], [-276.01, -4.0]], "holes": []}}, {"shape": {"outer": [[-263.57, 7.7], [-264.36, 6.93], [-265.16, 7.75], [-269.93, 3.11], [-266.8, -0.11], [-266.0, 0.65], [-266.82, 1.48], [-262.78, 5.38], [-262.01, 4.6], [-261.25, 5.34], [-263.57, 7.7]], "holes": []}}, {"shape": {"outer": [[-253.63, 17.61], [-251.86, 15.7], [-247.98, 19.25], [-249.75, 21.17], [-253.63, 17.61]], "holes": []}}, {"shape": {"outer": [[-235.39, 32.31], [-236.25, 31.57], [-236.98, 32.4], [-242.08, 27.98], [-240.13, 25.76], [-239.57, 26.25], [-239.92, 26.66], [-237.06, 29.15], [-236.1, 28.04], [-235.53, 28.53], [-235.05, 27.97], [-233.67, 29.16], [-234.04, 29.58], [-233.45, 30.1], [-235.39, 32.31]], "holes": []}}, {"shape": {"outer": [[-244.18, 25.71], [-242.51, 23.88], [-240.79, 25.43], [-242.45, 27.27], [-244.18, 25.71]], "holes": []}}, {"shape": {"outer": [[-229.49, 38.89], [-227.72, 36.97], [-226.23, 38.36], [-227.91, 40.3], [-229.49, 38.89]], "holes": []}}, {"shape": {"outer": [[-756.16, -323.31], [-757.32, -324.39], [-756.24, -325.55], [-757.53, -326.74], [-756.45, -327.9], [-758.25, -329.56], [-751.76, -336.53], [-750.19, -335.07], [-751.62, -333.54], [-750.35, -332.37], [-751.62, -331.02], [-750.2, -329.7], [-756.16, -323.31]], "holes": []}}, {"shape": {"outer": [[-717.18, -362.12], [-718.1, -362.92], [-718.58, -363.31], [-719.28, -363.44], [-728.75, -363.47], [-744.99, -346.15], [-744.53, -337.07], [-744.41, -336.43], [-744.09, -335.8], [-743.5, -335.31], [-742.19, -334.36], [-717.18, -362.12]], "holes": []}}, {"shape": {"outer": [[-696.46, -303.87], [-696.46, -304.57], [-695.8, -305.31], [-694.64, -306.01], [-692.97, -306.67], [-691.5, -307.39], [-690.22, -308.49], [-688.73, -310.23], [-686.75, -312.53], [-685.24, -315.6], [-683.71, -320.09], [-682.86, -322.18], [-682.6, -325.3], [-683.45, -326.65], [-685.02, -327.24], [-687.11, -327.22], [-689.13, -326.84], [-690.58, -326.06], [-691.67, -325.65], [-692.87, -325.57], [-695.5, -324.93], [-697.74, -324.05], [-700.78, -322.23], [-703.01, -320.92], [-705.41, -319.28], [-706.83, -317.48], [-707.59, -314.91], [-707.79, -313.11], [-707.37, -311.02], [-706.44, -308.5], [-704.66, -305.96], [-703.83, -305.22], [-701.88, -304.31], [-699.64, -303.69], [-696.46, -303.87]], "holes": []}}, {"shape": {"outer": [[-434.66, -342.69], [-427.96, -347.3], [-451.6, -368.39], [-456.61, -362.74], [-453.88, -359.16], [-448.56, -354.35], [-434.66, -342.69]], "holes": []}}, {"shape": {"outer": [[-456.73, -366.03], [-456.89, -368.15], [-456.63, -369.84], [-455.66, -371.21], [-453.0, -369.45], [-456.73, -366.03]], "holes": []}}, {"shape": {"outer": [[-488.31, -355.05], [-487.5, -354.21], [-486.83, -353.94], [-485.3, -355.49], [-484.49, -356.79], [-484.0, -358.28], [-483.93, -359.46], [-484.55, -359.34], [-488.31, -355.05]], "holes": []}}, {"shape": {"outer": [[-542.06, -268.94], [-539.76, -266.81], [-542.24, -264.14], [-544.54, -266.27], [-542.06, -268.94]], "holes": []}}, {"shape": {"outer": [[-1357.77, -1120.63], [-1358.45, -1123.6], [-1350.34, -1132.26], [-1348.52, -1130.69], [-1357.77, -1120.63]], "holes": []}}, {"shape": {"outer": [[-1348.64, -1133.02], [-1256.77, -1050.01], [-1256.06, -1050.91], [-1254.78, -1052.55], [-1336.65, -1127.03], [-1341.85, -1131.62], [-1344.19, -1132.7], [-1346.7, -1133.23], [-1348.64, -1133.02]], "holes": []}}, {"shape": {"outer": [[-1309.75, -1065.07], [-1309.22, -1047.27], [-1309.1, -1046.34], [-1308.58, -1045.43], [-1307.85, -1044.91], [-1306.94, -1044.7], [-1306.07, -1044.66], [-1305.17, -1045.19], [-1304.53, -1046.19], [-1304.17, -1047.11], [-1303.87, -1048.05], [-1303.53, -1049.09], [-1303.28, -1050.13], [-1303.1, -1051.25], [-1303.02, -1052.36], [-1303.01, -1053.94], [-1303.11, -1055.53], [-1303.33, -1056.91], [-1303.62, -1058.28], [-1304.08, -1059.67], [-1304.62, -1061.03], [-1305.68, -1062.5], [-1306.86, -1063.9], [-1308.13, -1065.2], [-1309.53, -1066.43], [-1311.18, -1067.51], [-1312.92, -1068.49], [-1314.76, -1069.22], [-1316.79, -1069.75], [-1318.53, -1069.83], [-1320.27, -1069.71], [-1322.13, -1069.43], [-1323.98, -1068.94], [-1325.7, -1068.26], [-1327.41, -1067.47], [-1328.61, -1066.69], [-1329.76, -1065.78], [-1330.76, -1064.7], [-1325.35, -1064.79], [-1325.37, -1066.24], [-1316.65, -1066.38], [-1316.63, -1064.98], [-1309.75, -1065.07]], "holes": []}}], "roads": [{"shape": {"outer": [[-2950.2, -2919.55], [-2968.15, -2939.18], [-2988.75, -2959.73], [-2996.6, -2967.56], [-3018.29, -2987.93], [-3034.98, -3005.01], [-3053.89, -3026.61], [-3080.06, -3052.18], [-3082.15, -3050.03], [-3084.56, -3051.82], [-3089.79, -3044.81], [-3098.29, -3035.82], [-3106.27, -3030.62], [-3116.99, -3026.69], [-3134.0, -3030.31], [-3157.68, -3037.18], [-3173.47, -3040.5], [-3180.38, -3037.53], [-3187.27, -3032.43], [-3195.33, -3014.48], [-3202.59, -3003.05], [-3214.58, -2985.79], [-3227.21, -2968.89], [-3238.37, -2949.79], [-3246.28, -2934.28], [-3252.59, -2929.35], [-3250.74, -2926.98], [-3251.51, -2924.6], [-3245.33, -2922.61], [-3226.48, -2919.4], [-3205.94, -2919.88], [-3183.77, -2922.19], [-3164.66, -2923.63], [-3147.33, -2923.03], [-3130.06, -2921.44], [-3108.81, -2916.78], [-3096.08, -2912.95], [-3095.36, -2915.35], [-3096.07, -2912.95], [-3078.02, -2907.59], [-2994.49, -2879.66], [-2931.51, -2860.23], [-2892.59, -2849.33], [-2892.55, -2849.29], [-2892.53, -2849.31], [-2890.99, -2848.88], [-2890.32, -2851.29], [-2890.98, -2848.88], [-2873.41, -2844.01], [-2853.23, -2840.62], [-2824.1, -2840.22], [-2791.69, -2841.49], [-2725.72, -2845.39], [-2656.91, -2850.6], [-2587.38, -2854.82], [-2560.55, -2855.81], [-2534.44, -2855.02], [-2523.77, -2852.54], [-2514.64, -2847.51], [-2504.85, -2838.73], [-2494.42, -2825.77], [-2484.31, -2807.59], [-2473.73, -2781.6], [-2458.18, -2740.84], [-2448.49, -2721.07], [-2434.32, -2695.02], [-2419.59, -2671.28], [-2400.5, -2639.26], [-2363.06, -2579.12], [-2351.25, -2551.99], [-2343.67, -2525.92], [-2341.58, -2503.48], [-2342.77, -2465.98], [-2351.5, -2352.58], [-2352.43, -2324.99], [-2349.99, -2300.45], [-2342.49, -2273.32], [-2329.14, -2247.18], [-2311.99, -2217.56], [-2286.64, -2166.43], [-2273.59, -2150.45], [-2255.08, -2139.43], [-2231.2, -2133.27], [-2207.85, -2132.92], [-2198.11, -2133.87], [-2184.14, -2134.49], [-2120.24, -2139.0], [-2091.95, -2141.39], [-2083.22, -2142.13], [-1977.41, -2151.07], [-1956.51, -2145.14], [-1941.59, -2135.48], [-1929.85, -2123.92], [-1920.15, -2110.96], [-1916.44, -2105.98], [-1904.21, -2090.48], [-1902.2, -2088.19], [-1894.36, -2081.75], [-1884.8, -2076.39], [-1879.63, -2074.7], [-1882.03, -2071.96], [-1883.85, -2069.72], [-1888.96, -2062.09], [-1895.48, -2052.39], [-1899.58, -2033.39], [-1900.03, -2028.41], [-1905.01, -2028.38], [-1916.36, -2028.08], [-1926.4, -2025.53], [-1943.66, -2016.51], [-1962.34, -2005.14], [-1990.19, -1988.54], [-2017.3, -1972.23], [-2021.83, -1969.51], [-2031.9, -1963.46], [-2051.6, -1950.97], [-2054.7, -1949.0], [-2082.71, -1931.25], [-2103.95, -1920.03], [-2125.88, -1911.99], [-2134.9, -1909.15], [-2134.75, -1908.69], [-2139.37, -1907.74], [-2167.5, -1904.26], [-2178.89, -1903.34], [-2193.22, -1902.59], [-2209.15, -1903.24], [-2239.46, -1907.23], [-2271.81, -1914.27], [-2306.63, -1922.39], [-2321.25, -1925.25], [-2335.14, -1926.43], [-2344.22, -1925.67], [-2361.46, -1922.28], [-2369.35, -1919.92], [-2403.39, -1909.75], [-2425.78, -1902.82], [-2439.9, -1898.75], [-2457.97, -1895.31], [-2475.23, -1893.45], [-2504.75, -1891.76], [-2532.03, -1891.27], [-2537.14, -1891.17], [-2557.85, -1890.79], [-2598.59, -1891.28], [-2621.63, -1892.84], [-2632.04, -1893.55], [-2635.2, -1893.76], [-2646.02, -1895.81], [-2662.17, -1900.49], [-2677.02, -1905.6], [-2696.65, -1912.81], [-2706.01, -1916.55], [-2719.87, -1918.75], [-2733.99, -1918.96], [-2764.35, -1915.96], [-2780.2, -1913.62], [-2779.47, -1908.67], [-2763.74, -1910.99], [-2733.78, -1913.95], [-2720.3, -1913.76], [-2707.35, -1911.7], [-2698.44, -1908.14], [-2678.7, -1900.89], [-2663.68, -1895.72], [-2647.18, -1890.94], [-2635.84, -1888.79], [-2632.38, -1888.56], [-2621.96, -1887.86], [-2598.79, -1886.28], [-2557.84, -1885.79], [-2537.05, -1886.17], [-2531.94, -1886.27], [-2504.56, -1886.76], [-2474.82, -1888.47], [-2457.24, -1890.36], [-2438.74, -1893.89], [-2424.35, -1898.02], [-2401.94, -1904.96], [-2367.92, -1915.13], [-2360.26, -1917.42], [-2343.53, -1920.71], [-2335.14, -1921.41], [-2321.94, -1920.29], [-2307.68, -1917.5], [-2272.91, -1909.39], [-2240.31, -1902.3], [-2209.58, -1898.25], [-2193.19, -1897.59], [-2178.56, -1898.35], [-2166.99, -1899.28], [-2138.56, -1902.8], [-2136.31, -1903.26], [-2134.88, -1897.82], [-2130.0, -1879.74], [-2128.64, -1869.76], [-2128.45, -1837.59], [-2128.42, -1828.68], [-2128.29, -1824.26], [-2127.71, -1804.17], [-2125.99, -1738.22], [-2125.86, -1734.23], [-2129.34, -1734.15], [-2169.6, -1733.22], [-2222.96, -1732.46], [-2226.86, -1732.25], [-2229.15, -1731.74], [-2231.08, -1729.98], [-2232.19, -1727.09], [-2232.35, -1724.15], [-2232.21, -1719.85], [-2230.31, -1666.9], [-2229.74, -1632.46], [-2226.75, -1632.5], [-2229.74, -1632.44], [-2228.36, -1571.8], [-2225.36, -1571.87], [-2228.36, -1571.8], [-2226.69, -1500.11], [-2226.47, -1491.81], [-2257.59, -1490.95], [-2275.85, -1490.44], [-2282.17, -1490.26], [-2282.53, -1497.5], [-2282.74, -1501.71], [-2287.91, -1685.97], [-2288.42, -1694.89], [-2289.39, -1702.22], [-2290.97, -1708.09], [-2294.21, -1712.08], [-2299.19, -1715.86], [-2301.0, -1713.47], [-2303.33, -1714.39], [-2306.88, -1705.48], [-2310.91, -1686.53], [-2312.74, -1679.35], [-2322.18, -1661.01], [-2329.21, -1648.46], [-2337.15, -1636.49], [-2345.92, -1624.57], [-2356.51, -1612.54], [-2357.37, -1611.4], [-2368.26, -1599.73], [-2378.29, -1589.22], [-2382.68, -1585.52], [-2391.66, -1577.96], [-2405.15, -1565.48], [-2408.24, -1562.61], [-2434.09, -1545.67], [-2467.19, -1526.11], [-2481.27, -1522.01], [-2510.77, -1514.72], [-2529.69, -1509.18], [-2547.91, -1503.44], [-2555.37, -1500.15], [-2559.85, -1495.74], [-2561.77, -1491.88], [-2562.58, -1486.74], [-2562.13, -1483.42], [-2560.16, -1478.9], [-2556.23, -1473.7], [-2564.51, -1463.4], [-2575.11, -1450.42], [-2588.1, -1434.82], [-2619.65, -1397.07], [-2623.58, -1392.26], [-2627.75, -1396.11], [-2630.41, -1398.4], [-2663.85, -1427.21], [-2681.06, -1441.51], [-2714.01, -1469.29], [-2720.55, -1474.8], [-2766.86, -1514.94], [-2799.26, -1541.92], [-2812.86, -1553.28], [-2819.17, -1558.26], [-2830.82, -1568.33], [-2899.38, -1626.47], [-2917.68, -1642.81], [-2919.67, -1640.57], [-2917.78, -1642.9], [-2959.31, -1676.68], [-2996.96, -1709.45], [-3014.46, -1724.99], [-3006.94, -1733.7], [-3003.04, -1737.55], [-2998.47, -1741.95], [-2993.86, -1745.16], [-2988.5, -1748.68], [-2982.91, -1751.86], [-2974.61, -1755.02], [-2964.62, -1757.65], [-2959.16, -1759.08], [-2953.5, -1759.71], [-2954.16, -1765.68], [-2960.26, -1764.99], [-2966.15, -1763.45], [-2976.44, -1760.74], [-2985.48, -1757.31], [-2991.64, -1753.79], [-2997.22, -1750.13], [-3002.29, -1746.61], [-3007.23, -1741.84], [-3011.32, -1737.8], [-3020.94, -1726.68], [-3018.67, -1724.71], [-3020.95, -1726.67], [-3026.95, -1719.67], [-3043.1, -1700.83], [-3069.53, -1669.6], [-3083.47, -1651.83], [-3089.69, -1644.63], [-3100.84, -1631.75], [-3108.83, -1621.2], [-3115.33, -1613.96], [-3140.17, -1584.55], [-3147.6, -1575.47], [-3139.61, -1568.15], [-3135.12, -1564.05], [-3138.96, -1559.35], [-3164.15, -1529.38], [-3190.18, -1499.15], [-3197.01, -1491.45], [-3202.28, -1485.6], [-3227.54, -1456.55], [-3252.24, -1428.35], [-3253.9, -1426.4], [-3259.42, -1419.88], [-3257.13, -1417.94], [-3259.4, -1415.28], [-3179.99, -1347.41], [-3173.2, -1341.6], [-3170.93, -1344.26], [-3173.17, -1341.57], [-3098.02, -1278.96], [-3094.29, -1275.47], [-3096.51, -1273.04], [-3098.98, -1270.25], [-3115.87, -1250.37], [-3122.25, -1242.71], [-3144.77, -1215.22], [-3151.49, -1206.88], [-3157.23, -1200.34], [-3204.53, -1144.42], [-3209.52, -1138.4], [-3207.21, -1136.49], [-3209.15, -1134.2], [-3202.67, -1128.69], [-3095.03, -1037.44], [-3088.84, -1032.06], [-3086.87, -1034.32], [-3088.65, -1031.91], [-3080.0, -1025.55], [-3074.93, -1023.53], [-3063.56, -1021.37], [-3014.44, -1015.88], [-2993.82, -1014.01], [-2975.12, -1013.32], [-2920.58, -1014.96], [-2917.29, -1015.05], [-2912.54, -1015.19], [-2912.04, -981.71], [-2909.04, -981.75], [-2912.04, -981.66], [-2911.37, -960.16], [-2910.69, -935.2], [-2910.2, -916.95], [-2909.83, -887.55], [-2912.74, -887.93], [-2915.03, -889.57], [-2919.62, -892.83], [-2943.28, -905.12], [-2957.48, -910.75], [-2970.32, -913.7], [-2983.03, -915.26], [-2997.64, -915.87], [-3058.19, -913.07], [-3066.06, -912.83], [-3065.97, -909.83], [-3066.1, -912.83], [-3140.04, -909.64], [-3158.6, -921.95], [-3168.67, -929.46], [-3170.46, -927.05], [-3172.83, -928.9], [-3177.69, -922.65], [-3183.58, -915.08], [-3190.55, -906.12], [-3188.18, -904.28], [-3188.03, -901.28], [-3159.18, -902.69], [-3140.74, -903.6], [-3068.84, -906.7], [-3068.64, -901.83], [-3068.49, -898.1], [-3067.09, -864.29], [-3065.57, -827.12], [-3065.12, -817.62], [-3062.12, -817.76], [-3065.12, -817.61], [-3064.67, -808.86], [-3061.6, -733.58], [-3061.4, -724.75], [-3061.23, -716.5], [-3060.99, -708.43], [-3064.29, -692.76], [-3068.95, -682.39], [-3074.46, -674.51], [-3080.25, -668.21], [-3088.48, -661.7], [-3099.91, -655.25], [-3098.43, -652.64], [-3100.21, -655.06], [-3113.19, -645.53], [-3118.72, -642.17], [-3122.97, -639.59], [-3129.6, -633.17], [-3127.51, -631.02], [-3129.8, -632.95], [-3139.08, -621.97], [-3144.16, -613.71], [-3149.57, -604.55], [-3153.74, -590.67], [-3155.47, -579.85], [-3155.44, -567.13], [-3153.49, -555.38], [-3149.14, -542.16], [-3144.27, -532.83], [-3142.75, -529.93], [-3140.47, -527.22], [-3150.04, -531.16], [-3159.63, -533.64], [-3177.29, -536.74], [-3184.33, -537.12], [-3198.53, -537.05], [-3207.29, -536.46], [-3213.0, -536.82], [-3215.78, -537.41], [-3226.52, -541.29], [-3232.31, -544.26], [-3238.6, -550.51], [-3242.83, -546.26], [-3235.87, -539.34], [-3228.92, -535.78], [-3217.43, -531.63], [-3213.82, -530.86], [-3207.28, -530.45], [-3198.31, -531.05], [-3184.48, -531.12], [-3177.97, -530.77], [-3160.9, -527.77], [-3151.94, -525.45], [-3140.63, -520.8], [-3133.8, -517.22], [-3125.49, -512.22], [-3121.0, -509.14], [-3113.62, -503.23], [-3069.92, -465.88], [-3069.92, -465.88], [-3053.02, -451.3], [-3030.21, -436.58], [-3015.76, -428.04], [-3007.8, -423.76], [-3012.96, -420.1], [-3014.18, -419.24], [-3019.12, -416.47], [-3030.35, -411.7], [-3047.02, -406.39], [-3059.08, -403.19], [-3068.92, -401.16], [-3080.52, -399.74], [-3098.5, -399.22], [-3107.27, -399.62], [-3142.73, -403.69], [-3143.07, -400.71], [-3146.3, -399.36], [-3142.21, -389.6], [-3140.66, -385.9], [-3129.4, -368.45], [-3115.41, -353.65], [-3107.74, -346.36], [-3103.64, -339.45], [-3102.87, -337.17], [-3103.05, -334.99], [-3103.55, -328.66], [-3104.88, -319.88], [-3105.3, -317.11], [-3109.86, -287.31], [-3114.84, -255.4], [-3115.34, -252.51], [-3115.96, -248.57], [-3120.33, -249.24], [-3177.75, -258.12], [-3178.55, -252.94], [-3181.52, -253.41], [-3182.81, -245.23], [-3183.43, -241.33], [-3195.25, -162.84], [-3189.32, -161.95], [-3177.5, -240.42], [-3176.89, -244.29], [-3176.41, -247.29], [-3121.94, -238.87], [-3117.61, -238.2], [-3118.19, -234.64], [-3118.61, -231.9], [-3129.85, -160.97], [-3122.94, -159.87], [-3111.7, -230.81], [-3111.27, -233.55], [-3110.69, -237.13], [-3106.27, -236.44], [-3086.56, -233.39], [-3078.48, -232.13], [-3053.96, -228.34], [-3054.56, -225.0], [-3054.94, -222.83], [-3061.27, -187.36], [-3057.82, -186.74], [-3061.29, -187.21], [-3062.04, -181.72], [-3065.86, -153.59], [-3058.93, -152.65], [-3055.1, -180.78], [-3054.84, -182.73], [-3011.58, -175.92], [-2998.52, -173.93], [-2997.46, -180.85], [-3010.51, -182.83], [-3053.75, -189.64], [-3048.05, -221.6], [-3047.66, -223.78], [-3047.04, -227.27], [-2985.66, -217.76], [-2977.21, -216.46], [-2968.81, -215.15], [-2966.09, -214.73], [-2952.62, -212.65], [-2952.45, -213.75], [-2942.01, -209.22], [-2887.26, -200.56], [-2880.73, -201.7], [-2880.95, -200.93], [-2875.89, -199.47], [-2867.27, -198.42], [-2854.82, -198.34], [-2850.75, -198.43], [-2845.45, -198.56], [-2841.47, -198.65], [-2841.59, -203.9], [-2841.47, -198.65], [-2831.2, -198.9], [-2815.02, -199.29], [-2815.1, -202.76], [-2807.01, -201.47], [-2786.4, -202.31], [-2740.78, -204.31], [-2732.24, -204.57], [-2732.29, -206.32], [-2732.24, -204.57], [-2724.95, -204.79], [-2705.37, -205.52], [-2691.84, -205.83], [-2682.87, -205.76], [-2673.23, -205.54], [-2658.5, -205.98], [-2648.64, -206.15], [-2648.67, -207.9], [-2648.6, -204.4], [-2639.53, -204.58], [-2636.53, -204.65], [-2621.68, -205.04], [-2606.08, -205.44], [-2600.47, -204.97], [-2596.18, -203.73], [-2586.36, -199.14], [-2579.47, -196.2], [-2575.26, -194.43], [-2573.91, -197.66], [-2574.43, -195.99], [-2572.31, -195.33], [-2570.94, -193.33], [-2569.36, -194.42], [-2565.84, -193.33], [-2558.1, -192.35], [-2551.96, -192.58], [-2544.44, -194.22], [-2538.93, -196.3], [-2527.11, -201.04], [-2518.19, -204.05], [-2509.91, -206.63], [-2497.64, -209.15], [-2487.55, -210.78], [-2476.74, -212.1], [-2461.58, -213.89], [-2441.54, -216.07], [-2428.32, -216.97], [-2416.35, -217.78], [-2416.0, -213.81], [-2416.9, -215.3], [-2430.04, -207.35], [-2453.03, -194.28], [-2512.61, -166.95], [-2526.8, -160.21], [-2537.49, -155.15], [-2542.5, -151.26], [-2547.74, -145.83], [-2549.87, -142.87], [-2552.32, -137.71], [-2553.63, -132.01], [-2553.61, -117.36], [-2553.18, -100.29], [-2553.06, -95.24], [-2552.5, -82.21], [-2551.85, -67.17], [-2551.61, -59.94], [-2550.71, -33.49], [-2550.16, -25.6], [-2553.29, -25.46], [-2559.25, -25.27], [-2667.57, -21.28], [-2701.89, -18.69], [-2731.97, -16.39], [-2754.65, -15.13], [-2762.64, -13.28], [-2767.68, -11.29], [-2775.28, -6.9], [-2782.54, -0.08], [-2788.04, 8.07], [-2791.12, 13.76], [-2791.49, 14.43], [-2797.44, 25.51], [-2802.61, 36.82], [-2808.74, 34.7], [-2818.13, 31.66], [-2827.84, 28.15], [-2837.9, 25.18], [-2846.0, 23.45], [-2856.13, 22.48], [-2870.03, 22.6], [-2898.73, 24.17], [-2898.87, 19.59], [-2899.19, 12.83], [-2899.06, 1.56], [-2898.31, 1.36], [-2895.33, -0.37], [-2892.91, -2.83], [-2891.22, -5.83], [-2890.37, -9.15], [-2890.42, -12.65], [-2891.73, -16.68], [-2894.29, -20.1], [-2897.81, -22.53], [-2901.94, -23.68], [-2906.22, -23.44], [-2910.19, -21.85], [-2911.18, -21.01], [-2914.87, -23.96], [-2916.82, -25.67], [-2922.8, -28.62], [-2973.61, -27.68], [-2996.75, -28.01], [-3020.53, -26.69], [-3050.58, -25.25], [-3051.18, -37.29], [-3052.5, -70.67], [-3052.82, -89.07], [-3052.89, -92.64], [-3052.92, -94.61], [-3059.92, -94.49], [-3059.88, -92.52], [-3059.82, -88.95], [-3059.49, -70.47], [-3058.18, -36.98], [-3057.42, -21.91], [-3053.93, -22.09], [-3057.42, -21.9], [-3057.1, -15.79], [-3056.67, -7.73], [-3056.49, -2.79], [-3055.67, 18.69], [-3055.3, 28.51], [-3055.19, 32.18], [-3069.85, 32.4], [-3094.22, 33.58], [-3146.43, 35.53], [-3149.18, 36.28], [-3151.71, 39.55], [-3151.61, 42.85], [-3151.47, 44.17], [-3151.1, 49.51], [-3151.03, 51.94], [-3148.37, 135.35], [-3148.09, 144.29], [-3144.59, 144.18], [-3144.46, 147.67], [-3013.8, 142.67], [-3013.75, 146.56], [-3012.1, 214.28], [-3012.01, 225.24], [-3012.24, 232.81], [-3014.23, 241.85], [-3025.31, 267.97], [-3027.17, 273.86], [-3029.91, 284.41], [-3030.5, 296.64], [-3030.12, 308.62], [-3029.94, 314.33], [-3028.36, 329.53], [-3025.91, 340.78], [-3022.58, 348.42], [-3016.68, 359.42], [-3010.51, 356.12], [-3016.27, 345.36], [-3019.22, 338.62], [-3021.43, 328.42], [-3022.95, 313.85], [-3023.12, 308.4], [-3023.49, 296.7], [-3022.96, 285.47], [-3020.45, 275.79], [-3018.74, 270.4], [-3007.53, 243.99], [-3005.27, 233.68], [-3005.01, 225.32], [-3005.1, 214.16], [-3006.76, 146.44], [-3006.8, 142.39], [-3005.09, 142.32], [-3002.73, 142.22], [-2851.55, 135.89], [-2813.72, 134.31], [-2807.08, 134.07], [-2806.96, 138.8], [-2803.06, 233.5], [-2802.64, 242.58], [-2801.97, 268.91], [-2801.99, 275.9], [-2802.02, 289.05], [-2806.84, 300.06], [-2809.04, 304.15], [-2820.44, 322.24], [-2814.52, 325.97], [-2802.99, 307.68], [-2800.54, 303.12], [-2795.03, 290.53], [-2794.99, 275.92], [-2794.97, 268.83], [-2795.65, 242.34], [-2796.07, 233.19], [-2799.97, 138.57], [-2800.08, 133.87], [-2793.09, 133.74], [-2688.94, 129.49], [-2681.9, 129.3], [-2570.51, 124.69], [-2551.36, 123.9], [-2544.53, 123.44], [-2544.23, 128.5], [-2543.72, 136.88], [-2543.01, 154.85], [-2542.52, 168.71], [-2540.95, 197.07], [-2540.07, 217.94], [-2539.38, 234.23], [-2539.23, 240.37], [-2538.02, 255.95], [-2538.3, 266.82], [-2546.35, 275.07], [-2568.27, 276.0], [-2610.69, 277.59], [-2610.46, 283.59], [-2568.03, 282.0], [-2543.72, 280.96], [-2534.76, 271.78], [-2528.78, 275.72], [-2524.93, 269.88], [-2531.27, 265.7], [-2531.01, 255.77], [-2532.24, 240.01], [-2532.31, 236.96], [-2528.38, 236.8], [-2525.16, 236.64], [-2518.89, 236.49], [-2474.1, 234.96], [-2452.35, 234.37], [-2445.19, 234.56], [-2441.05, 235.53], [-2438.45, 236.24], [-2437.02, 238.26], [-2435.6, 240.77], [-2434.66, 242.58], [-2433.62, 244.26], [-2431.88, 246.5], [-2429.59, 248.6], [-2427.94, 249.96], [-2425.41, 251.72], [-2421.73, 252.9], [-2417.7, 253.64], [-2413.58, 253.5], [-2409.92, 252.97], [-2406.0, 251.4], [-2402.79, 249.42], [-2400.07, 246.42], [-2399.48, 244.94], [-2398.64, 242.75], [-2398.42, 239.12], [-2399.23, 235.82], [-2400.53, 233.46], [-2401.97, 231.25], [-2404.37, 230.16], [-2406.37, 229.67], [-2412.26, 229.27], [-2417.55, 229.57], [-2427.13, 230.05], [-2436.3, 230.61], [-2439.57, 229.71], [-2444.42, 228.58], [-2452.35, 228.36], [-2474.29, 228.96], [-2519.07, 230.49], [-2525.38, 230.64], [-2528.65, 230.8], [-2532.52, 230.97], [-2533.08, 217.65], [-2533.96, 196.73], [-2535.53, 168.39], [-2536.02, 154.59], [-2536.73, 136.53], [-2537.24, 128.09], [-2537.54, 123.12], [-2531.66, 122.95], [-2504.51, 122.3], [-2497.93, 122.82], [-2485.17, 126.06], [-2478.74, 128.66], [-2460.14, 138.15], [-2450.53, 142.0], [-2443.16, 144.57], [-2432.31, 147.31], [-2424.41, 148.98], [-2412.01, 150.44], [-2392.7, 149.65], [-2381.93, 148.37], [-2363.22, 143.89], [-2340.61, 137.31], [-2316.72, 130.58], [-2302.25, 127.83], [-2286.75, 125.26], [-2275.89, 124.14], [-2265.63, 123.54], [-2245.1, 123.41], [-2228.41, 124.01], [-2206.56, 125.75], [-2177.85, 127.71], [-2163.75, 127.96], [-2151.67, 127.76], [-2141.09, 127.65], [-2130.5, 127.1], [-2119.42, 126.29], [-2099.87, 124.73], [-2085.13, 123.11], [-2077.03, 122.04], [-2069.03, 120.41], [-2061.54, 118.36], [-2050.78, 114.14], [-2042.48, 109.67], [-2035.77, 105.32], [-2028.81, 100.08], [-2015.8, 90.31], [-2003.13, 80.85], [-1993.72, 73.74], [-1984.98, 67.89], [-1976.5, 64.2], [-1963.82, 60.15], [-1953.04, 56.81], [-1942.69, 54.46], [-1929.31, 52.72], [-1915.75, 51.88], [-1892.63, 51.79], [-1878.42, 50.35], [-1860.73, 47.6], [-1838.28, 44.33], [-1821.83, 42.88], [-1811.88, 42.43], [-1802.22, 42.44], [-1793.66, 43.75], [-1785.32, 46.68], [-1765.41, 56.87], [-1756.75, 61.41], [-1747.3, 65.59], [-1738.63, 69.7], [-1731.66, 72.77], [-1726.03, 77.33], [-1718.74, 84.3], [-1709.36, 95.39], [-1701.03, 106.51], [-1696.75, 114.45], [-1692.22, 122.85], [-1689.66, 127.38], [-1686.41, 131.75], [-1681.57, 134.96], [-1676.72, 136.13], [-1673.29, 135.62], [-1669.48, 133.71], [-1666.54, 130.91], [-1664.4, 126.11], [-1662.91, 119.88], [-1662.73, 112.2], [-1662.79, 105.05], [-1663.04, 95.26], [-1663.06, 90.19], [-1662.59, 86.46], [-1661.64, 84.04], [-1660.77, 83.13], [-1659.08, 82.09], [-1656.43, 81.03], [-1652.95, 80.59], [-1647.6, 80.25], [-1624.22, 79.15], [-1595.82, 77.73], [-1582.59, 77.1], [-1566.73, 76.05], [-1564.12, 75.97], [-1559.54, 75.79], [-1559.08, 85.24], [-1558.12, 108.19], [-1557.92, 112.74], [-1557.81, 115.9], [-1557.19, 126.52], [-1557.07, 131.28], [-1559.21, 145.17], [-1553.28, 146.08], [-1551.06, 131.67], [-1551.19, 126.27], [-1551.81, 115.63], [-1551.92, 112.51], [-1552.12, 107.93], [-1553.08, 84.97], [-1553.72, 72.07], [-1553.22, 72.06], [-1554.28, 40.23], [-1554.48, 32.1], [-1549.22, 31.84], [-1457.09, 27.43], [-1412.7, 25.29], [-1300.79, 20.29], [-1295.37, 19.51], [-1294.98, 25.01], [-1293.79, 45.74], [-1292.99, 59.59], [-1291.51, 85.29], [-1290.74, 100.03], [-1290.17, 103.47], [-1288.9, 106.82], [-1286.57, 109.82], [-1283.0, 111.71], [-1277.71, 111.44], [-1252.51, 110.13], [-1216.04, 108.24], [-1202.58, 107.53], [-1202.94, 100.54], [-1216.41, 101.25], [-1252.87, 103.14], [-1278.07, 104.45], [-1281.43, 104.62], [-1281.96, 104.34], [-1282.73, 103.36], [-1283.38, 101.63], [-1283.77, 99.27], [-1284.52, 84.91], [-1286.01, 59.19], [-1286.8, 45.34], [-1288.0, 24.56], [-1288.42, 18.54], [-1282.88, 17.8], [-1248.65, 16.11], [-1241.43, 15.83], [-1201.44, 13.73], [-1165.72, 12.01], [-1139.25, 10.88], [-1133.48, 10.76], [-1133.1, 16.57], [-1133.04, 17.95], [-1132.02, 41.37], [-1130.74, 70.6], [-1130.06, 86.24], [-1129.52, 98.67], [-1129.48, 99.49], [-1128.01, 133.05], [-1127.75, 139.21], [-1127.17, 152.37], [-1127.02, 155.91], [-1120.02, 155.6], [-1120.18, 152.06], [-1120.75, 138.91], [-1121.02, 132.75], [-1122.48, 99.17], [-1122.52, 98.35], [-1123.06, 85.94], [-1123.75, 70.3], [-1125.02, 41.07], [-1126.04, 17.64], [-1126.11, 16.18], [-1126.47, 10.63], [-1122.13, 10.56], [-1094.64, 8.39], [-1076.48, 7.37], [-1061.07, 6.37], [-1060.16, 6.33], [-1025.15, 5.27], [-1019.74, 6.05], [-1019.38, 6.16], [-1014.46, 7.66], [-1009.35, 10.15], [-1006.49, 12.14], [-1004.64, 13.43], [-997.87, 19.53], [-1002.67, 24.78], [-1003.47, 25.87], [-1060.3, 89.59], [-1062.77, 91.68], [-1066.17, 93.98], [-1071.28, 96.99], [-1077.79, 98.84], [-1076.7, 102.69], [-1069.7, 100.7], [-1064.04, 97.36], [-1060.36, 94.88], [-1057.5, 92.46], [-1000.37, 28.4], [-999.57, 27.33], [-994.9, 22.21], [-992.88, 24.03], [-979.95, 35.69], [-968.6, 45.93], [-971.79, 49.48], [-973.46, 51.32], [-1026.38, 110.09], [-1040.7, 125.99], [-1052.32, 138.88], [-1060.33, 147.79], [-1055.87, 151.8], [-1047.86, 142.9], [-1036.25, 130.01], [-1023.14, 115.45], [-1020.94, 117.41], [-1004.58, 131.95], [-996.97, 138.73], [-996.36, 139.27], [-1023.5, 170.04], [-1025.87, 172.73], [-1022.44, 175.75], [-1020.07, 173.06], [-992.94, 142.31], [-992.59, 142.63], [-984.84, 149.52], [-961.85, 169.94], [-959.62, 171.94], [-978.98, 193.44], [-976.75, 195.45], [-978.98, 193.44], [-983.41, 198.37], [-986.14, 201.39], [-981.68, 205.41], [-978.95, 202.38], [-976.49, 199.64], [-974.44, 201.41], [-931.61, 238.39], [-927.69, 233.85], [-970.52, 196.87], [-972.47, 195.18], [-953.93, 174.58], [-956.16, 172.57], [-953.93, 174.58], [-904.54, 119.72], [-900.48, 115.22], [-896.57, 110.87], [-892.44, 114.58], [-847.96, 154.69], [-830.9, 170.11], [-817.75, 181.92], [-810.65, 188.03], [-792.24, 204.93], [-776.73, 218.91], [-755.58, 237.98], [-751.95, 241.73], [-755.21, 245.32], [-757.6, 247.96], [-770.55, 262.34], [-784.17, 277.44], [-796.84, 291.51], [-802.71, 298.02], [-816.11, 312.9], [-810.91, 317.58], [-797.51, 302.71], [-791.64, 296.19], [-778.97, 282.13], [-765.35, 267.02], [-752.4, 252.65], [-750.02, 250.02], [-746.94, 246.63], [-742.44, 250.81], [-724.02, 267.48], [-703.81, 285.75], [-696.26, 292.86], [-665.52, 321.26], [-664.09, 322.5], [-658.49, 327.27], [-651.95, 332.9], [-647.07, 337.39], [-638.77, 345.01], [-607.67, 373.61], [-598.32, 382.19], [-593.59, 377.04], [-602.93, 368.46], [-634.03, 339.86], [-642.33, 332.23], [-644.7, 330.06], [-642.03, 327.1], [-638.55, 323.24], [-628.52, 312.16], [-625.06, 308.33], [-601.8, 282.59], [-598.82, 279.3], [-585.91, 265.01], [-582.33, 261.05], [-571.32, 271.02], [-569.31, 272.84], [-538.87, 300.37], [-517.4, 319.79], [-516.58, 320.53], [-515.49, 321.51], [-513.51, 323.31], [-496.23, 338.95], [-490.79, 343.87], [-495.13, 348.82], [-520.21, 376.56], [-530.1, 387.5], [-531.98, 389.57], [-550.93, 410.53], [-557.76, 418.1], [-562.73, 423.6], [-557.54, 428.29], [-552.57, 422.79], [-545.73, 415.23], [-526.79, 394.27], [-524.91, 392.2], [-515.02, 381.25], [-489.9, 353.48], [-485.59, 348.56], [-482.58, 351.28], [-460.39, 371.36], [-459.51, 372.15], [-438.54, 391.12], [-431.73, 397.27], [-427.95, 400.7], [-420.67, 407.28], [-408.07, 418.68], [-392.63, 432.64], [-391.75, 433.43], [-389.53, 435.45], [-374.78, 448.79], [-368.48, 454.49], [-366.16, 456.58], [-356.09, 465.7], [-345.88, 474.93], [-340.63, 477.87], [-337.22, 478.2], [-333.52, 477.6], [-330.08, 475.56], [-329.41, 474.73], [-299.51, 442.46], [-296.42, 439.13], [-274.8, 415.75], [-273.55, 414.4], [-272.16, 412.9], [-268.07, 408.46], [-263.8, 412.33], [-233.55, 439.61], [-209.84, 461.01], [-198.21, 471.51], [-192.97, 476.42], [-142.85, 522.27], [-136.21, 528.06], [-130.08, 534.08], [-68.38, 590.34], [-61.1, 596.58], [-55.09, 602.1], [48.44, 696.71], [80.12, 725.25], [84.56, 729.48], [80.6, 733.79], [78.28, 736.27], [57.15, 759.96], [62.38, 764.62], [83.44, 740.99], [85.73, 738.55], [89.64, 734.3], [93.72, 738.16], [230.35, 860.82], [234.11, 864.31], [230.06, 868.76], [227.74, 871.3], [169.12, 935.58], [174.29, 940.29], [232.91, 876.02], [235.23, 873.47], [239.25, 869.07], [243.31, 872.8], [303.49, 928.26], [299.44, 932.89], [297.09, 935.57], [238.03, 1003.14], [237.71, 1003.52], [194.93, 964.84], [190.91, 969.29], [235.94, 1010.01], [277.0, 1047.15], [308.51, 1075.64], [312.39, 1079.16], [280.89, 1114.05], [285.35, 1118.07], [318.85, 1080.95], [384.11, 1008.67], [386.59, 1005.92], [391.33, 1010.01], [400.83, 1018.24], [416.29, 1031.64], [430.73, 1044.16], [444.57, 1057.03], [447.5, 1059.58], [444.3, 1063.14], [441.49, 1066.27], [428.45, 1080.77], [384.96, 1129.14], [375.94, 1139.17], [375.09, 1139.81], [374.36, 1139.99], [373.62, 1139.89], [372.63, 1139.29], [353.71, 1122.41], [349.72, 1126.89], [369.05, 1144.14], [371.57, 1145.66], [374.69, 1146.1], [377.74, 1145.33], [380.02, 1143.61], [389.43, 1133.16], [432.91, 1084.78], [445.95, 1070.28], [448.76, 1067.15], [452.1, 1063.44], [459.04, 1068.99], [461.79, 1071.48], [473.01, 1080.65], [508.53, 1113.49], [528.38, 1131.67], [532.0, 1135.58], [528.51, 1139.37], [525.6, 1142.46], [510.78, 1158.2], [507.03, 1162.32], [500.52, 1171.78], [498.99, 1176.28], [499.25, 1176.36], [498.18, 1177.11], [495.57, 1179.43], [490.66, 1184.42], [487.49, 1188.01], [474.11, 1203.11], [466.85, 1211.27], [449.57, 1230.68], [437.18, 1244.15], [441.6, 1248.21], [454.02, 1234.71], [471.33, 1215.26], [478.6, 1207.09], [491.98, 1191.98], [495.04, 1188.52], [498.93, 1184.57], [498.96, 1184.98], [499.43, 1187.45], [504.49, 1203.69], [563.02, 1386.13], [565.82, 1395.08], [569.63, 1393.88], [565.82, 1395.11], [582.05, 1445.62], [613.42, 1544.09], [633.9, 1609.63], [636.44, 1617.77], [638.46, 1624.36], [639.92, 1629.16], [641.93, 1634.56], [644.57, 1640.72], [647.58, 1644.72], [687.11, 1689.13], [692.99, 1695.75], [698.02, 1701.52], [737.71, 1750.49], [743.18, 1756.25], [748.1, 1762.05], [798.78, 1819.17], [803.89, 1824.7], [810.51, 1832.13], [925.05, 1962.42], [955.66, 2004.87], [964.37, 2012.87], [973.04, 2021.44], [979.65, 2027.73], [992.59, 2039.64], [1013.14, 2062.28], [1019.32, 2072.81], [1025.82, 2081.01], [1040.67, 2100.15], [1073.59, 2134.53], [1083.96, 2156.29], [1089.32, 2167.91], [1090.67, 2171.35], [1092.66, 2176.38], [1107.91, 2219.05], [1117.1, 2241.88], [1133.87, 2285.26], [1135.63, 2289.79], [1139.36, 2288.34], [1136.11, 2289.66], [1140.93, 2301.54], [1143.21, 2307.28], [1145.23, 2311.56], [1156.43, 2332.51], [1168.05, 2354.21], [1172.87, 2363.31], [1175.96, 2361.67], [1172.9, 2363.35], [1190.0, 2394.46], [1184.83, 2398.5], [1166.75, 2411.15], [1149.69, 2428.9], [1143.45, 2437.82], [1145.91, 2439.54], [1143.45, 2437.82], [1136.21, 2448.2], [1130.02, 2454.95], [1121.86, 2461.41], [1108.42, 2470.37], [1088.45, 2482.76], [1073.06, 2491.02], [1066.58, 2497.5], [1060.88, 2486.82], [1057.85, 2470.03], [1054.94, 2458.94], [1053.78, 2450.9], [1053.78, 2445.7], [1055.0, 2440.7], [1056.63, 2439.28], [1059.18, 2433.4], [1066.91, 2423.75], [1080.69, 2410.56], [1084.89, 2406.18], [1095.28, 2395.39], [1101.99, 2386.05], [1104.74, 2376.16], [1098.96, 2374.55], [1096.49, 2383.41], [1090.66, 2391.54], [1080.57, 2402.02], [1076.45, 2406.31], [1062.47, 2419.69], [1054.0, 2430.28], [1051.66, 2435.65], [1049.62, 2437.44], [1047.78, 2444.98], [1047.78, 2451.34], [1049.05, 2460.13], [1051.99, 2471.32], [1055.14, 2488.81], [1062.11, 2501.87], [1061.83, 2502.13], [1061.28, 2503.18], [1057.14, 2510.93], [1054.51, 2519.06], [1053.34, 2527.76], [1054.88, 2539.58], [1057.42, 2547.95], [1059.46, 2554.63], [1062.23, 2562.91], [1068.43, 2581.45], [1075.62, 2608.06], [1082.72, 2627.86], [1092.36, 2645.71], [1097.19, 2652.82], [1112.31, 2675.08], [1128.48, 2691.41], [1131.2, 2693.55], [1136.37, 2697.61], [1146.34, 2702.56], [1157.64, 2704.79], [1166.98, 2706.02], [1181.74, 2706.28], [1217.59, 2704.93], [1274.53, 2703.66], [1296.71, 2702.14], [1296.51, 2699.14], [1296.73, 2702.14], [1344.31, 2698.67], [1349.02, 2698.33], [1366.38, 2730.52], [1369.87, 2736.99], [1374.32, 2745.26], [1377.02, 2750.27], [1389.1, 2771.54], [1400.91, 2792.94], [1396.26, 2795.76], [1394.86, 2796.51], [1393.44, 2796.82], [1389.45, 2797.28], [1385.96, 2797.43], [1303.62, 2801.53], [1265.5, 2802.16], [1252.41, 2802.31], [1234.07, 2799.35], [1228.88, 2798.01], [1213.21, 2793.96], [1183.63, 2787.83], [1172.95, 2783.81], [1170.84, 2789.43], [1181.96, 2793.61], [1211.85, 2799.8], [1227.38, 2803.82], [1232.84, 2805.23], [1251.96, 2808.32], [1265.58, 2808.16], [1303.82, 2807.53], [1386.25, 2803.42], [1389.92, 2803.26], [1394.41, 2802.75], [1396.54, 2802.29], [1395.91, 2799.36], [1397.34, 2802.0], [1399.24, 2800.96], [1406.91, 2796.32], [1405.36, 2793.76], [1408.42, 2792.07], [1396.71, 2770.84], [1402.49, 2767.82], [1412.38, 2762.65], [1438.27, 2749.1], [1441.69, 2747.38], [1480.08, 2728.08], [1486.22, 2725.29], [1488.63, 2724.2], [1491.11, 2723.75], [1496.96, 2723.38], [1496.77, 2720.39], [1500.76, 2720.2], [1500.47, 2714.1], [1499.16, 2687.18], [1497.23, 2648.41], [1496.67, 2637.08], [1495.66, 2612.25], [1495.55, 2609.72], [1494.34, 2579.94], [1493.04, 2547.83], [1491.83, 2518.03], [1491.73, 2515.74], [1490.84, 2493.88], [1489.89, 2471.43], [1485.9, 2471.6], [1489.89, 2471.33], [1487.79, 2440.59], [1486.45, 2420.9], [1486.3, 2416.86], [1486.3, 2416.86], [1486.07, 2398.25], [1486.12, 2382.75], [1488.12, 2355.26], [1491.68, 2332.85], [1496.7, 2309.84], [1501.39, 2297.34], [1506.63, 2283.37], [1512.85, 2269.29], [1526.11, 2235.8], [1531.06, 2213.81], [1533.52, 2198.79], [1535.56, 2176.83], [1533.38, 2143.95], [1531.03, 2108.56], [1527.51, 2075.03], [1523.94, 2041.08], [1520.24, 2005.95], [1515.34, 1959.39], [1514.39, 1946.49], [1513.22, 1930.74], [1515.12, 1921.87], [1511.21, 1921.03], [1512.95, 1921.18], [1512.97, 1920.98], [1515.21, 1920.92], [1514.89, 1908.57], [1516.83, 1906.23], [1518.48, 1905.18], [1521.82, 1905.34], [1523.93, 1905.87], [1526.15, 1907.84], [1527.16, 1906.69], [1527.22, 1906.71], [1525.11, 1909.25], [1545.94, 1926.56], [1548.37, 1928.58], [1556.72, 1935.85], [1569.09, 1946.7], [1585.56, 1961.67], [1592.75, 1968.17], [1601.73, 1976.42], [1607.3, 1981.51], [1610.84, 1977.64], [1607.3, 1981.52], [1618.08, 1991.35], [1621.62, 1987.47], [1615.97, 1994.16], [1628.71, 2004.91], [1633.15, 2009.1], [1686.14, 2060.4], [1711.95, 2085.5], [1729.78, 2103.15], [1737.21, 2113.58], [1742.78, 2128.73], [1745.98, 2141.83], [1749.38, 2141.0], [1760.33, 2196.74], [1765.17, 2218.43], [1790.17, 2333.99], [1791.29, 2338.97], [1798.37, 2370.46], [1803.49, 2369.31], [1804.78, 2372.01], [1818.76, 2365.34], [1817.46, 2362.63], [1819.46, 2364.87], [1827.42, 2357.77], [1852.12, 2335.14], [1858.53, 2328.62], [1871.28, 2315.61], [1872.92, 2313.95], [1875.46, 2311.36], [1910.07, 2276.06], [1912.95, 2272.88], [1916.92, 2276.68], [1939.54, 2297.97], [1998.6, 2356.13], [2048.33, 2404.99], [2054.99, 2411.52], [2057.44, 2409.02], [2055.0, 2411.53], [2061.28, 2417.61], [2178.32, 2531.16], [2182.36, 2535.06], [2178.6, 2538.87], [2144.68, 2574.52], [2121.16, 2598.58], [2116.88, 2603.1], [2112.51, 2598.77], [2094.97, 2581.87], [2090.81, 2586.19], [2108.32, 2603.07], [2112.75, 2607.44], [2108.79, 2611.59], [2051.4, 2671.06], [2044.94, 2677.59], [2020.4, 2701.72], [2024.61, 2706.0], [2049.16, 2681.85], [2047.06, 2679.71], [2049.19, 2681.82], [2055.69, 2675.25], [2113.11, 2615.74], [2117.09, 2611.58], [2121.32, 2615.47], [2232.42, 2723.58], [2238.95, 2729.62], [2240.99, 2727.41], [2243.12, 2729.52], [2249.52, 2723.04], [2304.68, 2665.3], [2306.7, 2663.19], [2310.55, 2658.58], [2313.9, 2662.73], [2344.42, 2690.8], [2430.17, 2775.16], [2438.23, 2781.69], [2440.43, 2778.97], [2442.59, 2781.06], [2448.27, 2775.17], [2450.75, 2772.6], [2487.86, 2734.22], [2504.63, 2717.03], [2513.2, 2708.24], [2514.7, 2707.0], [2517.78, 2703.71], [2546.1, 2673.45], [2553.29, 2666.2], [2575.07, 2644.16], [2575.65, 2643.61], [2580.19, 2638.4], [2582.41, 2640.6], [2631.65, 2689.57], [2676.71, 2732.12], [2678.02, 2733.35], [2686.01, 2738.93], [2687.72, 2736.47], [2691.05, 2737.54], [2694.7, 2726.23], [2699.11, 2712.57], [2711.01, 2675.66], [2713.58, 2667.7], [2713.7, 2667.31], [2713.96, 2667.49], [2721.48, 2657.18], [2724.37, 2654.18], [2727.99, 2651.79], [2739.4, 2644.25], [2737.19, 2640.91], [2739.6, 2644.1], [2749.61, 2636.57], [2756.24, 2647.28], [2771.79, 2672.98], [2785.09, 2694.77], [2794.05, 2689.3], [2780.76, 2667.53], [2765.2, 2641.8], [2758.87, 2631.59], [2764.5, 2627.95], [2780.04, 2617.89], [2802.16, 2607.91], [2816.6, 2603.13], [2822.88, 2601.7], [2828.47, 2600.43], [2834.85, 2598.63], [2839.66, 2596.89], [2837.88, 2591.95], [2840.87, 2591.8], [2840.32, 2581.16], [2840.14, 2577.95], [2837.87, 2547.82], [2837.3, 2540.14], [2835.82, 2521.25], [2835.55, 2517.89], [2834.3, 2505.64], [2832.48, 2498.76], [2829.62, 2490.82], [2828.72, 2489.53], [2825.78, 2485.3], [2817.53, 2476.4], [2805.82, 2465.79], [2786.13, 2449.18], [2763.96, 2426.81], [2763.21, 2426.06], [2762.36, 2425.2], [2759.43, 2422.34], [2697.03, 2361.51], [2687.96, 2352.66], [2684.76, 2349.72], [2680.26, 2346.15], [2674.71, 2342.66], [2667.05, 2338.64], [2660.89, 2336.24], [2654.79, 2334.37], [2644.11, 2330.54], [2636.28, 2329.76], [2629.75, 2330.18], [2624.45, 2331.32], [2607.4, 2334.96], [2606.11, 2334.63], [2605.95, 2335.27], [2605.18, 2335.43], [2605.19, 2334.51], [2603.83, 2334.49], [2590.42, 2329.81], [2589.01, 2329.33], [2585.71, 2328.2], [2575.08, 2321.48], [2574.88, 2321.8], [2562.37, 2308.07], [2546.23, 2288.98], [2541.37, 2281.61], [2540.04, 2282.49], [2538.79, 2275.42], [2538.56, 2274.09], [2534.95, 2267.16], [2521.03, 2243.86], [2523.06, 2243.96], [2527.08, 2244.18], [2533.87, 2245.59], [2549.09, 2254.57], [2567.02, 2255.43], [2573.67, 2255.07], [2579.78, 2254.88], [2654.94, 2250.56], [2659.81, 2250.28], [2660.08, 2255.36], [2663.28, 2290.87], [2669.25, 2290.34], [2666.06, 2254.94], [2665.8, 2249.95], [2670.58, 2249.7], [2746.14, 2245.82], [2752.18, 2245.55], [2752.26, 2250.45], [2757.47, 2318.58], [2763.45, 2318.12], [2758.26, 2250.17], [2758.17, 2245.29], [2762.16, 2245.13], [2836.62, 2242.08], [2843.26, 2241.63], [2843.51, 2245.9], [2848.0, 2329.26], [2853.99, 2328.94], [2849.5, 2245.56], [2849.01, 2237.16], [2848.64, 2229.5], [2839.3, 2055.99], [2838.79, 2046.66], [2838.42, 2039.78], [2835.94, 1993.74], [2835.79, 1990.82], [2835.18, 1979.48], [2832.18, 1979.64], [2833.97, 1977.24], [2825.19, 1970.72], [2749.59, 1914.65], [2746.87, 1912.56], [2737.91, 1905.04], [2737.47, 1905.57], [2737.46, 1905.26], [2737.72, 1904.9], [2737.45, 1904.7], [2737.15, 1891.25], [2737.14, 1884.84], [2736.53, 1879.89], [2736.14, 1874.05], [2736.14, 1867.34], [2736.48, 1864.5], [2738.31, 1859.09], [2739.69, 1859.61], [2743.39, 1849.81], [2743.98, 1847.06], [2758.59, 1779.05], [2760.07, 1772.14], [2760.07, 1772.14], [2761.19, 1766.94], [2776.56, 1695.36], [2778.16, 1687.94], [2775.23, 1687.31], [2778.16, 1687.94], [2779.18, 1683.2], [2795.96, 1605.06], [2793.02, 1604.43], [2795.96, 1605.06], [2797.06, 1599.92], [2810.18, 1538.88], [2811.65, 1532.02], [2808.71, 1531.39], [2808.98, 1528.41], [2800.03, 1527.59], [2758.52, 1523.81], [2714.98, 1522.11], [2711.73, 1521.98], [2711.79, 1520.67], [2711.89, 1518.74], [2715.12, 1453.67], [2715.26, 1450.7], [2715.64, 1443.21], [2712.64, 1443.06], [2715.64, 1443.18], [2715.88, 1437.04], [2716.01, 1433.98], [2718.12, 1381.51], [2705.63, 1379.62], [2683.72, 1376.05], [2626.36, 1359.68], [2620.5, 1358.0], [2612.44, 1355.18], [2554.16, 1334.74], [2537.74, 1315.02], [2485.67, 1253.5], [2391.39, 1140.2], [2384.08, 1133.35], [2379.62, 1129.17], [2377.57, 1131.36], [2379.61, 1129.1], [2374.64, 1124.61], [2299.89, 1057.21], [2269.21, 1028.83], [2263.33, 1023.36], [2219.46, 1069.52], [2217.56, 1071.52], [2215.18, 1074.02], [2210.84, 1069.72], [2176.86, 1039.01], [2175.35, 1037.66], [2167.5, 1030.62], [2169.47, 1028.52], [2171.17, 1026.71], [2212.11, 983.06], [2213.76, 980.32], [2214.97, 976.13], [2213.86, 970.05], [2206.4, 957.68], [2149.63, 880.32], [2144.96, 875.83], [2138.46, 869.57], [2135.29, 872.86], [2138.42, 869.53], [2131.52, 863.05], [2104.23, 837.43], [1994.52, 740.16], [1991.82, 737.76], [1996.57, 732.46], [2014.5, 712.5], [2010.04, 708.49], [1992.11, 728.45], [1987.36, 733.75], [1982.24, 729.09], [1852.0, 610.57], [1846.97, 606.62], [1841.52, 604.36], [1834.86, 604.62], [1829.32, 606.34], [1824.47, 609.74], [1820.89, 613.73], [1818.98, 611.37], [1817.27, 609.25], [1805.5, 599.04], [1801.57, 603.57], [1812.93, 613.43], [1814.31, 615.14], [1817.92, 619.61], [1811.53, 627.55], [1792.8, 648.45], [1773.11, 669.61], [1770.1, 672.85], [1765.08, 668.25], [1713.8, 621.25], [1716.69, 618.11], [1762.97, 567.95], [1758.56, 563.88], [1712.28, 614.04], [1709.34, 617.23], [1628.5, 545.86], [1625.29, 543.02], [1630.45, 537.51], [1647.35, 518.2], [1650.11, 514.85], [1664.65, 497.18], [1660.02, 493.37], [1645.48, 511.04], [1642.78, 514.31], [1626.0, 533.49], [1620.86, 538.98], [1615.69, 534.1], [1547.64, 471.22], [1480.55, 410.08], [1477.08, 406.91], [1492.96, 388.94], [1500.45, 378.5], [1495.57, 375.01], [1488.27, 385.19], [1472.64, 402.88], [1466.84, 397.64], [1428.02, 362.57], [1424.0, 367.02], [1462.82, 402.09], [1468.64, 407.36], [1465.3, 411.07], [1408.08, 470.82], [1403.4, 475.74], [1399.51, 472.33], [1345.83, 425.22], [1342.63, 422.28], [1329.36, 410.08], [1299.68, 382.8], [1290.7, 374.55], [1270.86, 356.31], [1263.39, 349.45], [1257.76, 344.27], [1262.11, 339.66], [1263.72, 337.95], [1283.2, 317.29], [1307.52, 291.51], [1305.34, 289.45], [1307.52, 291.51], [1310.8, 288.03], [1316.03, 292.65], [1351.09, 326.37], [1355.25, 322.05], [1320.1, 288.24], [1314.92, 283.66], [1319.83, 278.46], [1315.47, 274.34], [1308.43, 281.8], [1310.62, 283.85], [1308.43, 281.8], [1305.06, 285.38], [1303.11, 283.81], [1299.82, 281.13], [1261.13, 249.54], [1258.1, 248.15], [1252.42, 249.21], [1213.04, 291.67], [1211.7, 293.11], [1207.38, 297.77], [1177.32, 270.07], [1115.89, 212.35], [1109.86, 206.65], [1107.8, 208.83], [1109.72, 206.52], [1101.98, 200.12], [1100.68, 199.04], [1089.69, 190.28], [1078.37, 186.95], [1050.64, 179.8], [967.91, 160.06], [963.59, 159.03], [962.89, 161.95], [963.29, 160.24], [936.95, 154.05], [930.89, 153.85], [925.49, 155.41], [919.51, 158.42], [917.84, 159.93], [917.05, 160.66], [914.57, 162.89], [912.15, 165.65], [907.15, 161.56], [899.69, 156.14], [895.43, 152.9], [891.81, 151.98], [895.88, 148.24], [904.74, 133.44], [905.45, 132.11], [908.99, 125.58], [903.71, 122.73], [900.17, 129.26], [899.52, 130.47], [891.18, 144.41], [884.88, 150.2], [875.51, 147.71], [849.74, 140.85], [828.97, 135.31], [805.04, 128.92], [787.52, 124.27], [768.84, 119.3], [731.22, 110.14], [729.8, 115.97], [767.36, 125.11], [785.97, 130.07], [803.49, 134.72], [827.42, 141.11], [848.19, 146.65], [873.97, 153.51], [880.09, 155.14], [876.64, 158.83], [841.82, 196.1], [825.88, 213.15], [824.65, 214.47], [823.17, 216.04], [818.03, 211.41], [806.57, 200.84], [775.28, 172.76], [751.44, 151.38], [725.18, 127.8], [720.36, 123.48], [712.73, 116.63], [711.12, 115.18], [709.41, 117.08], [707.07, 111.26], [700.47, 105.17], [682.71, 90.41], [677.79, 87.08], [680.08, 84.41], [681.59, 82.68], [689.17, 74.1], [692.95, 69.91], [706.79, 54.53], [722.71, 37.37], [718.32, 33.29], [702.36, 50.48], [688.49, 65.89], [684.7, 70.1], [677.08, 78.72], [675.54, 80.48], [672.56, 83.96], [670.74, 82.57], [666.57, 78.98], [634.97, 52.14], [623.37, 39.61], [610.54, 29.3], [596.41, 21.66], [588.8, 19.01], [560.92, 10.06], [528.93, 1.51], [499.77, -5.7], [497.91, -6.16], [498.05, -6.63], [497.04, -6.93], [492.47, -17.36], [491.26, -18.8], [488.68, -24.56], [485.73, -34.84], [484.45, -39.19], [478.0, -52.05], [470.72, -58.42], [468.25, -62.67], [466.82, -61.84], [466.58, -62.05], [469.24, -64.29], [433.82, -106.45], [323.99, -236.3], [297.52, -263.69], [268.22, -292.15], [180.57, -370.59], [67.21, -486.03], [-29.84, -581.4], [-52.56, -605.46], [-81.19, -636.29], [-100.77, -657.32], [-110.21, -667.0], [-138.92, -695.61], [-168.9, -723.35], [-197.01, -754.6], [-230.43, -794.47], [-248.29, -816.94], [-249.63, -815.87], [-259.6, -833.24], [-275.25, -856.7], [-287.11, -873.7], [-306.51, -897.47], [-330.17, -940.28], [-338.27, -954.57], [-362.51, -998.16], [-367.88, -1009.25], [-381.87, -1043.08], [-392.07, -1070.92], [-403.58, -1101.12], [-418.58, -1144.78], [-428.92, -1183.7], [-442.28, -1239.82], [-464.07, -1329.53], [-481.97, -1414.98], [-487.76, -1454.66], [-489.22, -1505.03], [-484.75, -1546.3], [-477.92, -1577.09], [-471.0, -1600.37], [-464.4, -1618.66], [-460.08, -1628.67], [-452.35, -1644.85], [-433.24, -1678.06], [-409.89, -1716.74], [-391.65, -1746.65], [-370.7, -1780.43], [-277.25, -1926.55], [-258.63, -1955.05], [-239.7, -1983.66], [-111.78, -2180.33], [-99.66, -2198.16], [-85.47, -2219.71], [-83.2, -2219.81], [-81.79, -2218.93], [-81.2, -2219.89], [-76.22, -2220.09], [-60.31, -2220.9], [-60.46, -2223.9], [-60.29, -2220.9], [-44.82, -2221.74], [-37.09, -2222.62], [-31.07, -2223.88], [-30.8, -2216.26], [-25.91, -2077.92], [-25.78, -2073.74], [-25.92, -2073.73], [-34.59, -2073.35], [-34.33, -2067.36], [-25.65, -2067.74], [-22.55, -2067.88], [-12.38, -2068.32], [-12.64, -2074.32], [-19.78, -2074.01], [-19.91, -2078.12], [-24.81, -2216.47], [-25.13, -2225.75], [-11.74, -2232.64], [-6.09, -2240.63], [-4.69, -2243.23], [-1.28, -2241.01], [1.54, -2239.16], [17.55, -2231.3], [31.17, -2227.2], [47.06, -2225.15], [52.08, -2224.83], [68.46, -2224.98], [75.93, -2225.05], [90.49, -2227.09], [104.75, -2233.26], [111.34, -2237.83], [118.14, -2242.54], [124.91, -2251.03], [129.16, -2256.35], [140.79, -2272.27], [144.91, -2269.89], [153.31, -2262.55], [160.49, -2256.89], [167.63, -2251.27], [172.21, -2251.18], [184.26, -2263.41], [186.98, -2266.16], [182.71, -2270.38], [179.99, -2267.62], [169.75, -2257.24], [164.2, -2261.61], [157.14, -2267.17], [148.42, -2274.79], [143.69, -2277.53], [149.69, -2292.82], [144.1, -2295.01], [137.3, -2277.68], [124.39, -2260.0], [120.22, -2254.77], [114.0, -2246.97], [107.92, -2242.76], [101.82, -2238.53], [88.85, -2232.92], [75.49, -2231.05], [68.4, -2230.98], [52.24, -2230.83], [47.63, -2231.12], [32.43, -2233.08], [19.75, -2236.9], [4.51, -2244.38], [2.0, -2246.03], [-1.83, -2248.53], [0.16, -2252.23], [2.85, -2264.76], [2.18, -2282.41], [1.21, -2293.75], [1.39, -2304.15], [2.63, -2311.1], [4.67, -2316.33], [36.04, -2360.61], [46.98, -2376.04], [66.26, -2396.68], [80.83, -2412.63], [92.03, -2425.41], [113.85, -2449.88], [119.09, -2455.6], [123.29, -2460.23], [127.69, -2466.98], [122.67, -2470.26], [118.53, -2463.91], [114.66, -2459.64], [109.4, -2453.91], [87.53, -2429.39], [76.36, -2416.63], [61.85, -2400.75], [42.32, -2379.84], [31.14, -2364.08], [-0.65, -2319.2], [-3.17, -2312.74], [-4.6, -2304.73], [-4.79, -2293.55], [-3.81, -2282.05], [-3.17, -2265.28], [-5.53, -2254.32], [-8.42, -2248.95], [-11.2, -2243.8], [-15.79, -2237.3], [-29.21, -2230.4], [-38.05, -2228.55], [-45.32, -2227.72], [-60.61, -2226.89], [-61.8, -2226.83], [-63.55, -2227.73], [-65.08, -2229.64], [-66.93, -2232.5], [-67.93, -2237.1], [-68.3, -2240.66], [-65.41, -2245.31], [-63.94, -2244.37], [-35.85, -2288.09], [8.85, -2353.99], [52.47, -2410.87], [64.47, -2427.28], [113.77, -2491.6], [134.97, -2524.18], [153.57, -2557.5], [169.21, -2590.01], [184.02, -2626.43], [200.04, -2674.77], [216.02, -2729.29], [222.33, -2755.34], [224.39, -2762.77], [228.71, -2761.76], [238.02, -2759.58], [244.54, -2756.2], [247.97, -2753.22], [251.44, -2747.87], [252.44, -2744.36], [253.45, -2739.89], [252.7, -2734.75], [245.88, -2706.22], [243.87, -2699.97], [240.1, -2690.55], [237.5, -2679.17], [244.32, -2677.62], [246.8, -2688.46], [250.46, -2697.59], [252.62, -2704.33], [259.59, -2733.43], [260.56, -2740.16], [259.22, -2746.09], [257.89, -2750.79], [253.31, -2757.86], [248.5, -2762.03], [240.46, -2766.19], [230.31, -2768.57], [222.99, -2770.28], [227.49, -2784.47], [237.82, -2816.81], [247.65, -2851.8], [259.9, -2888.94], [277.4, -2927.7], [272.61, -2929.86], [271.43, -2931.47], [270.53, -2930.8], [267.83, -2932.02], [265.66, -2927.2], [256.85, -2920.7], [251.84, -2912.7], [260.01, -2931.99], [268.94, -2948.9], [304.82, -3016.8], [297.08, -3020.89], [303.27, -3017.62], [338.46, -3084.25], [332.27, -3087.52], [331.17, -3088.88], [330.59, -3088.41], [326.08, -3090.79], [320.46, -3080.14], [315.9, -3076.42], [311.69, -3075.36], [305.79, -3075.9], [293.24, -3081.24], [285.53, -3086.26], [268.44, -3092.31], [258.82, -3092.63], [259.13, -3093.79], [250.2, -3096.18], [192.07, -3105.74], [191.58, -3102.78], [192.02, -3105.75], [181.18, -3107.36], [158.44, -3110.77], [145.7, -3112.61], [128.51, -3114.32], [69.44, -3118.78], [28.03, -3119.09], [22.58, -3118.78], [-39.68, -3115.27], [-86.94, -3113.26], [-181.73, -3109.24], [-181.61, -3106.24], [-184.61, -3106.25], [-184.66, -3092.17], [-217.14, -3056.21], [-214.91, -3054.2], [-216.43, -3051.61], [-181.32, -3031.03], [-173.83, -3026.51], [-138.31, -2986.37], [-114.22, -2946.66], [-93.28, -2905.75], [-78.84, -2864.12], [-76.15, -2843.43], [-75.25, -2820.39], [-81.45, -2771.5], [-86.52, -2731.52], [-84.81, -2712.63], [-79.7, -2687.57], [-74.27, -2673.76], [-68.13, -2655.78], [-65.84, -2650.36], [-62.17, -2641.69], [-57.25, -2628.83], [-94.48, -2613.99], [-98.12, -2612.55], [-147.91, -2592.71], [-161.02, -2587.53], [-192.94, -2575.27], [-239.73, -2556.83], [-275.08, -2543.32], [-279.47, -2541.24], [-281.77, -2547.07], [-285.34, -2556.07], [-292.23, -2578.56], [-298.76, -2590.68], [-318.04, -2609.37], [-407.68, -2680.79], [-510.05, -2756.51], [-561.42, -2799.13], [-579.81, -2814.38], [-602.86, -2833.49], [-606.05, -2829.65], [-583.0, -2810.53], [-564.61, -2795.28], [-513.14, -2752.57], [-410.73, -2676.83], [-321.34, -2605.61], [-302.8, -2587.63], [-296.87, -2576.62], [-290.06, -2554.42], [-286.42, -2545.23], [-284.06, -2539.25], [-288.73, -2537.39], [-365.05, -2507.02], [-406.31, -2491.07], [-416.91, -2486.97], [-416.29, -2485.35], [-462.31, -2471.07], [-487.28, -2463.88], [-512.29, -2457.26], [-518.86, -2455.48], [-528.12, -2452.97], [-537.0, -2451.32], [-544.81, -2449.86], [-570.46, -2447.05], [-605.9, -2443.11], [-651.93, -2440.43], [-698.59, -2437.84], [-743.05, -2435.66], [-748.31, -2435.44], [-748.23, -2433.7], [-748.38, -2437.19], [-754.82, -2436.92], [-774.63, -2435.77], [-780.23, -2435.47], [-780.29, -2437.55], [-780.42, -2440.11], [-785.14, -2531.83], [-786.43, -2536.47], [-789.89, -2546.55], [-792.73, -2545.57], [-790.01, -2546.84], [-791.21, -2549.41], [-799.28, -2566.68], [-808.39, -2586.17], [-816.81, -2605.94], [-819.34, -2611.88], [-831.99, -2641.58], [-839.47, -2659.15], [-842.23, -2657.98], [-839.52, -2659.27], [-862.54, -2707.66], [-866.4, -2716.15], [-892.51, -2772.68], [-915.87, -2831.35], [-920.89, -2843.95], [-933.96, -2876.77], [-944.12, -2887.61], [-977.53, -2886.2], [-989.03, -2886.67], [-991.52, -2886.78], [-997.3, -2887.02], [-994.16, -2897.62], [-992.76, -2905.29], [-991.11, -2916.8], [-990.26, -2928.68], [-989.79, -2940.15], [-990.1, -2950.84], [-990.81, -2960.98], [-993.81, -2960.76], [-989.83, -2961.21], [-990.85, -2970.38], [-991.07, -2971.98], [-993.51, -2991.24], [-996.94, -3018.08], [-999.95, -3041.54], [-1001.38, -3052.54], [-1004.36, -3075.34], [-1006.87, -3094.62], [-1001.63, -3094.87], [-999.59, -3094.98], [-960.52, -3096.89], [-956.12, -3097.1], [-906.93, -3099.52], [-906.13, -3092.84], [-892.52, -2992.22], [-888.15, -2984.99], [-880.57, -2981.24], [-794.21, -2967.38], [-785.78, -2969.5], [-781.25, -2975.44], [-780.45, -2985.16], [-797.14, -3108.16], [-800.12, -3107.75], [-800.26, -3110.75], [-904.44, -3105.65], [-904.29, -3102.65], [-904.44, -3105.65], [-956.41, -3103.1], [-960.81, -3102.88], [-999.89, -3100.97], [-1001.92, -3100.87], [-1011.41, -3100.41], [-1011.27, -3097.41], [-1015.23, -3096.89], [-1012.29, -3074.3], [-1009.32, -3051.5], [-1007.89, -3040.51], [-1004.88, -3017.06], [-1001.44, -2990.23], [-999.01, -2970.93], [-998.79, -2969.39], [-998.23, -2964.37], [-1001.53, -2964.06], [-1004.59, -2963.77], [-1052.36, -2958.06], [-1079.3, -2954.34], [-1093.63, -2952.37], [-1097.83, -2951.79], [-1097.77, -2958.88], [-1097.81, -2961.61], [-1097.76, -2965.75], [-1097.71, -2973.94], [-1098.11, -2986.26], [-1098.36, -2996.9], [-1101.86, -2996.82], [-1102.0, -2999.81], [-1116.94, -2999.13], [-1116.8, -2996.13], [-1117.1, -2999.12], [-1125.03, -2998.34], [-1128.79, -2997.89], [-1207.36, -2982.74], [-1247.3, -2975.46], [-1385.73, -2950.2], [-1389.57, -2949.56], [-1398.09, -2948.15], [-1414.08, -2945.51], [-1444.63, -2939.19], [-1497.15, -2929.19], [-1537.28, -2920.97], [-1553.38, -2918.01], [-1561.04, -2916.41], [-1569.1, -2915.47], [-1579.75, -2914.68], [-1597.58, -2915.99], [-1613.11, -2913.74], [-1622.53, -2911.2], [-1625.41, -2910.35], [-1639.23, -2906.67], [-1638.46, -2903.77], [-1644.46, -2900.16], [-1620.96, -2861.05], [-1610.79, -2843.88], [-1608.64, -2845.15], [-1593.18, -2817.91], [-1590.21, -2812.93], [-1595.77, -2808.53], [-1611.53, -2796.08], [-1628.86, -2777.31], [-1633.37, -2760.21], [-1636.86, -2735.11], [-1656.37, -2522.57], [-1659.35, -2498.76], [-1660.23, -2491.76], [-1660.99, -2485.73], [-1667.91, -2449.73], [-1670.42, -2439.18], [-1671.24, -2435.72], [-1678.27, -2405.76], [-1680.15, -2397.96], [-1682.08, -2391.21], [-1693.74, -2355.57], [-1703.77, -2329.56], [-1712.22, -2310.29], [-1714.73, -2304.35], [-1719.34, -2294.63], [-1738.24, -2256.61], [-1762.89, -2215.38], [-1777.17, -2195.38], [-1805.8, -2158.38], [-1850.75, -2108.16], [-1868.96, -2087.02], [-1876.05, -2078.79], [-1882.78, -2080.99], [-1891.53, -2085.9], [-1898.71, -2091.79], [-1900.37, -2093.68], [-1912.47, -2109.03], [-1916.14, -2113.95], [-1926.07, -2127.22], [-1938.45, -2139.4], [-1954.43, -2149.75], [-1976.92, -2156.13], [-2083.64, -2147.11], [-2092.37, -2146.37], [-2120.62, -2143.98], [-2184.43, -2139.49], [-2198.46, -2138.86], [-2208.06, -2137.92], [-2230.53, -2138.26], [-2253.14, -2144.1], [-2270.28, -2154.29], [-2282.41, -2169.15], [-2307.58, -2219.93], [-2324.74, -2249.57], [-2337.81, -2275.14], [-2345.05, -2301.37], [-2347.42, -2325.16], [-2346.5, -2352.31], [-2337.78, -2465.71], [-2336.57, -2503.63], [-2338.73, -2526.86], [-2346.53, -2553.7], [-2358.63, -2581.46], [-2396.23, -2641.87], [-2415.32, -2673.88], [-2430.0, -2697.54], [-2444.05, -2723.36], [-2453.59, -2742.83], [-2469.07, -2783.43], [-2479.79, -2809.76], [-2490.25, -2828.57], [-2501.21, -2842.18], [-2511.73, -2851.61], [-2521.97, -2857.25], [-2533.8, -2860.01], [-2560.56, -2860.81], [-2587.63, -2859.81], [-2657.25, -2855.58], [-2726.06, -2850.38], [-2791.93, -2846.49], [-2824.17, -2845.23], [-2852.78, -2845.61], [-2872.32, -2848.9], [-2888.1, -2853.27], [-2888.08, -2853.29], [-2899.99, -2866.63], [-2928.61, -2896.85], [-2950.2, -2919.55]], "holes": [[[-653.94, 321.96], [-659.52, 317.2], [-660.85, 316.05], [-691.49, 287.74], [-699.06, 280.61], [-719.33, 262.29], [-737.71, 245.64], [-742.25, 241.43], [-738.89, 237.67], [-737.16, 235.74], [-706.86, 202.12], [-683.7, 176.69], [-679.8, 172.41], [-676.11, 175.78], [-662.56, 188.1], [-650.64, 198.94], [-641.01, 207.69], [-621.76, 225.21], [-601.79, 243.38], [-599.51, 245.45], [-587.52, 256.35], [-591.11, 260.32], [-604.01, 274.6], [-606.99, 277.9], [-630.26, 303.64], [-633.72, 307.47], [-643.74, 318.55], [-647.22, 322.41], [-649.93, 325.4], [-653.94, 321.96]], [[-594.8, 240.27], [-597.07, 238.2], [-617.05, 220.03], [-636.3, 202.51], [-645.93, 193.76], [-657.85, 182.92], [-671.39, 170.6], [-675.09, 167.24], [-671.88, 163.72], [-658.88, 149.43], [-656.96, 147.33], [-656.17, 146.45], [-646.16, 135.48], [-617.48, 103.98], [-616.13, 102.5], [-611.98, 97.95], [-608.01, 101.54], [-579.23, 127.56], [-575.63, 130.82], [-572.41, 133.73], [-568.79, 137.0], [-560.29, 144.69], [-531.4, 170.82], [-526.45, 175.3], [-521.53, 179.74], [-526.76, 181.84], [-532.06, 188.29], [-534.27, 191.55], [-535.81, 194.3], [-536.8, 197.06], [-537.27, 199.7], [-537.21, 200.69], [-543.32, 207.45], [-553.11, 218.29], [-557.6, 223.25], [-563.63, 229.93], [-566.87, 233.51], [-579.15, 247.09], [-582.83, 251.16], [-594.8, 240.27]], [[-616.76, 84.2], [-650.58, 53.61], [-661.35, 43.87], [-683.61, 23.73], [-708.64, 1.1], [-720.55, -9.66], [-721.26, -10.3], [-724.43, -13.18], [-728.59, -16.94], [-752.59, -38.64], [-756.74, -42.39], [-752.93, -45.34], [-750.68, -47.22], [-735.97, -64.51], [-702.53, -101.57], [-701.81, -102.47], [-701.34, -103.78], [-701.04, -105.99], [-700.82, -108.22], [-700.59, -109.21], [-700.27, -110.14], [-699.52, -111.52], [-699.45, -111.59], [-687.63, -100.95], [-668.8, -83.99], [-661.2, -77.14], [-659.88, -75.95], [-641.18, -59.11], [-639.71, -57.79], [-635.51, -54.01], [-617.03, -37.36], [-572.66, 2.84], [-556.23, 17.4], [-551.76, 21.42], [-553.51, 23.35], [-565.96, 37.02], [-568.52, 39.83], [-598.06, 72.26], [-607.4, 82.51], [-609.38, 84.69], [-612.46, 88.08], [-616.76, 84.2]], [[-683.38, -125.75], [-633.61, -182.21], [-631.94, -184.11], [-625.0, -191.97], [-619.65, -197.8], [-562.39, -257.2], [-558.63, -261.27], [-553.75, -256.84], [-492.86, -201.93], [-487.87, -197.43], [-491.56, -193.63], [-527.02, -155.8], [-532.9, -149.15], [-536.18, -144.7], [-538.49, -141.09], [-540.35, -137.47], [-542.21, -132.58], [-542.71, -127.25], [-542.68, -123.8], [-541.71, -117.54], [-540.15, -113.9], [-538.52, -110.77], [-536.7, -108.13], [-534.66, -105.7], [-532.23, -103.28], [-522.78, -94.74], [-510.64, -83.76], [-485.68, -60.29], [-481.21, -56.03], [-485.57, -51.25], [-505.59, -29.26], [-520.06, -13.38], [-541.46, 10.12], [-542.33, 11.07], [-546.9, 6.96], [-563.32, -7.58], [-607.64, -47.75], [-626.14, -64.41], [-630.34, -68.19], [-631.81, -69.52], [-650.49, -86.34], [-651.82, -87.54], [-659.43, -94.39], [-678.26, -111.35], [-688.19, -120.3], [-683.38, -125.75]], [[-629.74, -200.99], [-630.84, -201.98], [-660.87, -229.31], [-679.23, -245.99], [-706.81, -271.07], [-727.14, -289.56], [-738.69, -300.06], [-763.76, -322.86], [-764.97, -323.97], [-769.18, -327.79], [-765.88, -331.39], [-733.79, -366.39], [-715.1, -386.76], [-709.92, -392.07], [-706.9, -395.35], [-704.07, -392.65], [-701.62, -390.45], [-673.53, -365.12], [-624.68, -321.09], [-622.28, -318.92], [-613.77, -311.25], [-604.7, -303.07], [-599.27, -298.17], [-590.2, -290.01], [-567.68, -269.71], [-563.04, -265.34], [-566.75, -261.32], [-624.02, -201.91], [-627.09, -198.57], [-629.74, -200.99]], [[-562.94, -274.86], [-585.52, -295.21], [-594.58, -303.37], [-600.01, -308.26], [-609.08, -316.45], [-617.59, -324.13], [-620.0, -326.29], [-668.84, -370.32], [-696.94, -395.65], [-699.31, -397.79], [-702.16, -400.5], [-698.02, -405.03], [-675.63, -429.81], [-628.01, -481.43], [-619.57, -490.83], [-616.17, -487.73], [-603.64, -476.32], [-598.87, -471.99], [-583.51, -457.99], [-582.78, -457.32], [-561.84, -437.19], [-537.18, -414.31], [-535.11, -412.49], [-530.82, -408.69], [-512.88, -392.55], [-497.16, -377.19], [-496.19, -376.26], [-494.8, -377.7], [-494.78, -377.34], [-494.11, -375.05], [-492.95, -372.73], [-482.55, -363.16], [-478.71, -359.64], [-484.99, -350.79], [-497.08, -337.39], [-507.99, -325.3], [-520.27, -311.68], [-526.65, -304.6], [-532.14, -298.51], [-549.62, -279.13], [-554.07, -274.19], [-558.12, -270.33], [-562.94, -274.86]], [[-621.61, -509.25], [-644.44, -530.04], [-658.89, -543.2], [-660.36, -544.53], [-674.11, -557.05], [-689.51, -571.08], [-704.27, -584.52], [-705.13, -585.3], [-718.88, -597.81], [-732.3, -610.03], [-741.08, -618.03], [-741.65, -618.54], [-757.79, -633.23], [-761.46, -636.57], [-752.78, -646.5], [-702.46, -701.39], [-700.84, -702.91], [-683.22, -722.36], [-679.44, -726.53], [-675.52, -723.01], [-658.7, -707.84], [-652.33, -702.07], [-644.28, -694.81], [-639.82, -690.78], [-629.25, -681.24], [-622.13, -674.81], [-588.99, -645.05], [-581.8, -638.59], [-571.74, -629.55], [-557.33, -616.6], [-547.6, -607.85], [-541.36, -602.29], [-538.88, -600.07], [-535.56, -597.0], [-539.23, -592.02], [-553.56, -576.3], [-572.91, -555.09], [-589.57, -536.8], [-608.69, -515.83], [-617.83, -505.81], [-621.61, -509.25]], [[-670.93, -735.77], [-651.42, -757.04], [-649.34, -759.31], [-642.11, -767.2], [-631.0, -779.31], [-630.02, -780.39], [-615.28, -796.46], [-611.18, -800.92], [-607.52, -797.58], [-583.74, -775.89], [-572.14, -765.3], [-553.75, -748.52], [-546.27, -741.7], [-539.44, -735.47], [-531.38, -728.12], [-472.33, -674.22], [-469.19, -671.27], [-473.33, -666.71], [-529.68, -605.83], [-531.58, -602.85], [-534.17, -605.25], [-536.7, -607.51], [-542.93, -613.06], [-552.66, -621.81], [-567.06, -634.75], [-577.12, -643.79], [-584.31, -650.26], [-617.45, -680.01], [-624.56, -686.44], [-635.13, -695.97], [-639.59, -700.0], [-647.64, -707.27], [-654.01, -713.03], [-670.84, -728.22], [-674.71, -731.69], [-670.93, -735.77]], [[-603.22, -809.99], [-576.18, -840.82], [-574.91, -842.25], [-569.05, -847.16], [-561.56, -852.07], [-557.5, -854.54], [-553.11, -856.53], [-549.12, -857.8], [-545.85, -858.46], [-543.62, -858.66], [-538.39, -858.72], [-535.09, -858.19], [-530.67, -857.01], [-526.7, -855.38], [-519.38, -850.77], [-509.91, -842.58], [-493.46, -827.63], [-488.34, -822.99], [-473.26, -809.3], [-464.1, -800.96], [-435.19, -774.72], [-431.77, -771.6], [-428.91, -768.97], [-427.93, -770.03], [-424.38, -764.93], [-405.07, -747.83], [-402.86, -745.87], [-407.83, -740.98], [-462.14, -684.41], [-467.73, -678.14], [-468.25, -678.62], [-527.34, -732.55], [-535.4, -739.9], [-542.22, -746.13], [-549.7, -752.95], [-568.09, -769.73], [-579.7, -780.32], [-603.47, -802.02], [-607.19, -805.4], [-603.22, -809.99]], [[-415.82, -763.02], [-408.84, -759.89], [-402.04, -758.21], [-394.53, -757.23], [-389.23, -757.48], [-386.28, -757.97], [-394.78, -749.49], [-397.73, -746.67], [-402.42, -750.82], [-416.73, -763.49], [-415.82, -763.02]], [[-375.36, -761.55], [-375.37, -761.53], [-376.21, -762.37], [-375.36, -761.55]], [[-364.89, -768.35], [-366.28, -769.69], [-366.25, -769.74], [-364.81, -768.43], [-332.38, -804.05], [-324.74, -805.7], [-320.7, -809.92], [-314.47, -815.14], [-312.02, -817.16], [-307.6, -818.5], [-303.08, -819.74], [-298.91, -820.31], [-297.59, -820.51], [-294.39, -820.24], [-292.2, -819.58], [-279.17, -813.81], [-275.87, -809.5], [-273.51, -811.3], [-273.39, -811.25], [-274.36, -810.41], [-262.79, -796.9], [-212.32, -737.97], [-154.8, -677.44], [-109.18, -628.84], [-68.44, -589.11], [-45.46, -566.12], [165.07, -354.89], [251.64, -272.38], [315.06, -208.82], [374.82, -142.91], [439.21, -59.04], [450.74, -39.03], [451.49, -33.99], [450.51, -26.94], [449.64, -23.77], [451.99, -18.43], [443.79, -20.09], [441.64, -20.65], [434.82, -22.61], [428.01, -24.72], [423.13, -26.45], [418.26, -28.29], [414.54, -29.9], [410.89, -31.66], [405.61, -34.4], [401.31, -36.89], [396.96, -39.8], [392.88, -43.0], [386.44, -48.75], [386.78, -49.12], [333.5, -97.11], [329.51, -99.82], [331.14, -101.6], [332.07, -102.61], [356.3, -128.94], [351.88, -133.0], [327.65, -106.67], [326.72, -105.66], [324.39, -103.13], [318.29, -106.76], [310.76, -111.28], [302.8, -117.35], [279.71, -137.88], [263.13, -152.85], [255.46, -159.62], [252.2, -162.1], [247.85, -163.1], [243.93, -163.71], [241.71, -163.63], [240.97, -165.81], [239.78, -168.58], [237.76, -172.1], [232.05, -179.4], [221.71, -189.52], [169.75, -235.79], [136.08, -264.74], [104.54, -292.3], [100.3, -295.67], [103.02, -298.07], [105.61, -300.85], [106.99, -302.33], [120.73, -317.12], [133.3, -330.66], [128.9, -334.74], [116.33, -321.2], [102.6, -306.42], [101.21, -304.94], [98.83, -302.37], [95.59, -299.51], [89.7, -304.49], [67.65, -324.63], [62.29, -329.75], [54.46, -336.91], [44.87, -345.68], [35.36, -354.86], [15.92, -373.46], [14.64, -374.59], [10.84, -377.5], [0.45, -386.45], [-9.6, -395.26], [-16.09, -400.93], [-77.88, -458.66], [-89.49, -469.14], [-95.67, -474.63], [-102.17, -480.42], [-105.82, -483.69], [-113.65, -490.66], [-118.29, -493.7], [-125.22, -499.88], [-134.51, -509.25], [-138.68, -512.97], [-147.88, -521.16], [-195.81, -563.88], [-207.4, -574.22], [-233.48, -597.46], [-242.76, -607.0], [-243.09, -614.09], [-243.34, -619.59], [-243.6, -625.09], [-235.36, -625.76], [-226.87, -626.44], [-208.2, -646.98], [-187.22, -670.06], [-191.66, -674.1], [-212.64, -651.02], [-229.72, -632.23], [-235.84, -631.74], [-243.88, -631.09], [-243.92, -631.9], [-245.63, -668.32], [-245.98, -675.99], [-246.16, -679.78], [-247.61, -710.96], [-247.94, -717.75], [-248.47, -729.21], [-248.92, -738.85], [-254.91, -738.56], [-254.46, -728.93], [-253.93, -717.46], [-253.61, -710.68], [-252.15, -679.51], [-251.98, -675.71], [-251.62, -668.04], [-249.92, -631.62], [-249.73, -627.71], [-249.34, -619.31], [-249.08, -613.82], [-249.07, -613.46], [-256.55, -620.25], [-293.36, -653.76], [-324.66, -682.22], [-334.13, -690.84], [-349.3, -704.63], [-359.99, -714.35], [-370.47, -724.47], [-371.74, -723.15], [-375.11, -730.97], [-376.04, -733.8], [-376.8, -736.58], [-377.32, -739.8], [-377.39, -742.46], [-377.38, -744.54], [-376.99, -747.46], [-376.07, -750.87], [-374.04, -755.68], [-369.9, -763.15], [-364.89, -768.35]], [[-370.69, -773.86], [-379.06, -765.17], [-381.05, -763.19], [-384.25, -762.36], [-389.66, -761.46], [-394.37, -761.24], [-401.3, -762.15], [-407.53, -763.69], [-414.08, -766.62], [-418.91, -769.13], [-425.16, -773.04], [-424.17, -774.11], [-427.04, -776.76], [-430.49, -779.9], [-459.39, -806.14], [-468.56, -814.48], [-483.64, -828.18], [-488.75, -832.81], [-505.27, -847.82], [-515.2, -856.41], [-523.48, -861.63], [-528.42, -863.66], [-533.63, -865.05], [-536.81, -865.56], [-537.54, -868.88], [-540.57, -882.59], [-536.52, -885.24], [-499.72, -924.11], [-493.42, -931.38], [-489.47, -935.94], [-494.0, -939.87], [-497.95, -935.31], [-504.17, -928.13], [-540.4, -889.87], [-543.45, -887.87], [-548.22, -889.56], [-584.78, -922.09], [-607.16, -942.43], [-609.72, -944.75], [-638.66, -971.05], [-653.37, -984.42], [-683.6, -1011.9], [-685.46, -1013.6], [-689.87, -1017.6], [-685.8, -1022.81], [-684.21, -1024.48], [-655.76, -1055.04], [-627.88, -1085.57], [-625.83, -1088.11], [-621.45, -1092.92], [-618.86, -1089.27], [-614.19, -1082.72], [-606.54, -1072.84], [-598.52, -1063.34], [-590.32, -1054.41], [-583.51, -1047.81], [-576.37, -1041.06], [-569.78, -1035.43], [-562.79, -1029.69], [-552.86, -1022.35], [-542.59, -1015.45], [-532.37, -1009.18], [-523.03, -1004.26], [-510.1, -997.98], [-497.94, -992.72], [-485.69, -988.14], [-475.0, -984.83], [-462.64, -981.75], [-441.83, -977.01], [-427.22, -974.22], [-413.59, -972.26], [-413.35, -973.96], [-396.0, -968.04], [-388.11, -966.08], [-381.74, -963.42], [-377.83, -960.5], [-373.43, -954.07], [-358.36, -925.49], [-354.91, -919.48], [-346.99, -906.62], [-337.9, -894.88], [-330.98, -887.1], [-326.04, -883.57], [-324.26, -880.52], [-322.89, -881.32], [-322.88, -881.31], [-325.74, -879.6], [-318.44, -867.39], [-315.77, -868.99], [-315.75, -868.9], [-318.33, -867.22], [-314.48, -861.3], [-314.12, -858.53], [-314.81, -852.48], [-315.61, -848.85], [-317.84, -844.88], [-324.71, -831.15], [-326.81, -827.34], [-330.7, -823.95], [-329.47, -822.54], [-329.61, -822.29], [-331.08, -823.58], [-333.07, -821.32], [-336.97, -816.64], [-338.72, -808.97], [-370.69, -773.86]], [[-327.5, -899.93], [-333.84, -910.77], [-339.48, -920.54], [-345.52, -931.09], [-351.64, -941.97], [-357.0, -951.88], [-367.25, -972.71], [-375.13, -988.6], [-368.36, -992.79], [-367.57, -992.86], [-344.37, -951.14], [-336.28, -936.86], [-312.57, -893.95], [-300.44, -866.15], [-296.96, -859.29], [-295.21, -854.77], [-294.94, -850.88], [-294.97, -850.73], [-295.46, -851.3], [-309.48, -872.86], [-316.73, -884.99], [-318.24, -884.09], [-327.5, -899.93]], [[-379.58, -998.85], [-382.56, -1006.04], [-391.18, -1024.09], [-397.91, -1036.56], [-393.01, -1038.34], [-414.12, -1096.48], [-430.02, -1143.97], [-440.06, -1181.95], [-452.57, -1238.07], [-460.86, -1272.34], [-475.78, -1351.3], [-470.9, -1327.99], [-449.08, -1238.18], [-435.71, -1181.99], [-425.28, -1142.75], [-410.17, -1098.73], [-398.63, -1068.47], [-388.4, -1040.54], [-374.27, -1006.38], [-370.98, -999.59], [-379.58, -998.85]], [[-403.08, -1034.36], [-404.31, -1033.69], [-402.26, -1029.89], [-400.57, -1020.65], [-400.93, -1016.25], [-401.85, -1012.87], [-403.46, -1010.53], [-405.18, -1008.21], [-407.53, -1006.38], [-411.0, -1004.18], [-413.74, -1003.23], [-415.56, -1002.67], [-418.93, -1002.08], [-427.67, -1001.3], [-436.53, -1000.22], [-440.24, -1001.07], [-440.54, -999.73], [-440.93, -999.68], [-440.86, -1001.15], [-452.85, -1001.68], [-470.28, -1006.25], [-491.82, -1015.04], [-511.88, -1024.4], [-520.54, -1028.91], [-531.06, -1035.32], [-540.65, -1041.58], [-550.72, -1048.62], [-569.83, -1065.92], [-582.15, -1078.35], [-589.81, -1086.41], [-597.08, -1095.1], [-603.6, -1103.42], [-608.7, -1110.47], [-616.34, -1122.7], [-634.71, -1156.34], [-646.22, -1181.45], [-657.62, -1203.3], [-683.57, -1249.59], [-691.84, -1260.7], [-701.9, -1270.97], [-713.19, -1279.03], [-715.68, -1280.47], [-721.66, -1283.98], [-731.21, -1288.84], [-740.73, -1292.64], [-749.4, -1294.99], [-759.81, -1297.1], [-770.96, -1298.01], [-779.94, -1298.27], [-788.4, -1297.35], [-802.27, -1295.49], [-818.81, -1290.61], [-831.04, -1285.54], [-842.21, -1276.62], [-848.49, -1283.55], [-858.53, -1292.89], [-864.45, -1298.19], [-888.8, -1319.55], [-890.78, -1317.29], [-888.8, -1319.55], [-899.33, -1328.77], [-926.08, -1353.17], [-928.69, -1355.41], [-931.03, -1356.4], [-933.75, -1356.15], [-936.71, -1355.41], [-939.1, -1354.37], [-940.34, -1353.49], [-942.9, -1351.64], [-1100.79, -1226.55], [-1098.93, -1224.2], [-1100.8, -1226.54], [-1126.17, -1206.19], [-1158.92, -1180.17], [-1161.91, -1175.92], [-1162.16, -1171.51], [-1161.53, -1168.45], [-1160.07, -1165.58], [-1157.76, -1162.75], [-1140.2, -1146.11], [-1129.57, -1137.41], [-1121.96, -1130.12], [-1084.49, -1095.94], [-1076.52, -1088.67], [-1066.54, -1079.33], [-1049.04, -1064.02], [-1046.84, -1062.09], [-1042.65, -1058.13], [-1046.29, -1054.16], [-1088.04, -1009.8], [-1099.23, -999.37], [-1105.54, -995.3], [-1112.22, -992.0], [-1127.1, -985.61], [-1137.99, -981.02], [-1143.58, -985.99], [-1166.34, -1008.68], [-1193.39, -1033.12], [-1227.63, -1064.05], [-1236.02, -1071.62], [-1273.97, -1105.91], [-1324.23, -1151.33], [-1332.79, -1159.05], [-1369.75, -1192.45], [-1484.61, -1296.21], [-1516.85, -1325.34], [-1545.61, -1351.33], [-1573.71, -1378.2], [-1575.16, -1380.0], [-1574.98, -1380.65], [-1575.87, -1380.9], [-1582.09, -1388.66], [-1588.64, -1397.01], [-1590.44, -1399.27], [-1602.48, -1412.79], [-1602.48, -1413.45], [-1603.07, -1413.45], [-1604.28, -1414.81], [-1604.74, -1428.56], [-1605.62, -1455.07], [-1606.49, -1491.75], [-1605.66, -1500.39], [-1600.77, -1500.52], [-1598.62, -1500.59], [-1591.32, -1500.77], [-1589.72, -1500.82], [-1586.9, -1500.9], [-1576.16, -1501.21], [-1550.52, -1501.94], [-1537.95, -1502.1], [-1532.71, -1502.14], [-1531.99, -1430.8], [-1531.46, -1398.77], [-1532.48, -1391.86], [-1534.06, -1387.38], [-1536.91, -1385.56], [-1544.91, -1384.51], [-1552.51, -1384.33], [-1552.37, -1378.34], [-1544.45, -1378.52], [-1534.81, -1379.79], [-1529.09, -1383.44], [-1526.63, -1390.41], [-1525.45, -1398.38], [-1525.99, -1430.88], [-1526.74, -1505.2], [-1529.74, -1505.17], [-1526.74, -1505.25], [-1530.1, -1626.8], [-1533.18, -1747.03], [-1533.09, -1761.77], [-1532.49, -1770.94], [-1530.43, -1780.9], [-1525.27, -1794.51], [-1522.33, -1800.39], [-1489.34, -1860.74], [-1484.58, -1869.55], [-1448.53, -1935.9], [-1423.17, -1990.31], [-1403.47, -2020.34], [-1386.76, -2040.1], [-1374.61, -2053.69], [-1365.31, -2061.2], [-1356.01, -2067.89], [-1347.5, -2072.69], [-1332.87, -2077.53], [-1315.67, -2080.83], [-1308.41, -2080.83], [-1269.01, -2077.65], [-1205.33, -2068.13], [-1175.0, -2065.65], [-1174.76, -2068.64], [-1174.96, -2065.65], [-1155.25, -2064.3], [-1135.91, -2065.54], [-1108.53, -2072.28], [-1088.8, -2078.39], [-1065.11, -2083.23], [-991.09, -2090.23], [-977.9, -2091.93], [-962.46, -2093.89], [-947.06, -2096.05], [-896.08, -2095.71], [-886.74, -2095.1], [-771.29, -2101.93], [-739.52, -2103.28], [-733.16, -2103.81], [-729.76, -2104.38], [-730.26, -2107.34], [-729.37, -2104.47], [-724.57, -2105.95], [-719.69, -2108.92], [-717.4, -2112.93], [-716.45, -2117.22], [-717.3, -2147.13], [-718.19, -2163.21], [-719.06, -2173.93], [-719.99, -2187.51], [-720.12, -2193.46], [-714.7, -2193.62], [-693.75, -2194.18], [-668.52, -2194.92], [-658.73, -2195.35], [-655.77, -2195.48], [-646.88, -2195.86], [-647.04, -2199.36], [-646.88, -2195.86], [-644.21, -2195.98], [-639.96, -2196.16], [-623.68, -2196.87], [-582.31, -2198.66], [-581.67, -2192.59], [-578.46, -2161.86], [-560.56, -1990.96], [-560.28, -1988.28], [-558.28, -1969.13], [-557.25, -1959.31], [-551.28, -1959.94], [-552.31, -1969.75], [-554.27, -1988.45], [-543.08, -1989.06], [-535.24, -1989.49], [-525.03, -1990.04], [-525.35, -1996.04], [-535.57, -1995.48], [-543.4, -1995.05], [-554.89, -1994.42], [-572.49, -2162.49], [-575.71, -2193.21], [-576.3, -2198.92], [-538.37, -2200.56], [-508.86, -2201.85], [-497.62, -2202.33], [-494.84, -2202.46], [-494.59, -2196.68], [-486.32, -2011.48], [-485.75, -1998.63], [-485.26, -1987.87], [-485.23, -1987.0], [-484.63, -1973.52], [-484.45, -1969.45], [-478.45, -1969.72], [-478.63, -1973.78], [-479.24, -1987.25], [-479.27, -1988.12], [-479.75, -1998.89], [-480.32, -2011.75], [-488.59, -2196.95], [-488.85, -2202.72], [-401.33, -2206.52], [-397.34, -2206.69], [-397.16, -2201.72], [-395.42, -2154.67], [-390.76, -2029.24], [-390.32, -2017.75], [-388.62, -1971.76], [-386.21, -1967.96], [-380.87, -1964.45], [-371.03, -1963.84], [-347.55, -1963.73], [-340.98, -1963.7], [-332.56, -1964.54], [-327.32, -1965.68], [-322.17, -1967.56], [-316.06, -1970.96], [-312.55, -1973.68], [-308.09, -1977.91], [-302.16, -1984.63], [-295.97, -1993.57], [-293.05, -2000.55], [-291.9, -2005.29], [-291.03, -2010.6], [-290.67, -2016.45], [-290.36, -2021.22], [-290.56, -2027.2], [-291.32, -2050.49], [-291.51, -2053.24], [-292.96, -2074.07], [-293.26, -2081.17], [-294.49, -2110.47], [-295.27, -2129.08], [-295.39, -2131.73], [-291.23, -2131.87], [-256.87, -2133.07], [-251.33, -2133.27], [-236.49, -2133.78], [-220.76, -2134.34], [-209.72, -2134.72], [-209.93, -2140.72], [-220.97, -2140.34], [-236.7, -2139.78], [-251.54, -2139.27], [-257.09, -2139.06], [-291.44, -2137.87], [-295.63, -2137.72], [-298.2, -2202.6], [-298.32, -2205.49], [-298.49, -2210.97], [-294.98, -2211.12], [-264.16, -2212.45], [-264.18, -2212.95], [-225.32, -2214.47], [-220.57, -2214.65], [-195.74, -2215.62], [-162.35, -2216.92], [-153.37, -2217.27], [-135.24, -2217.97], [-121.24, -2218.52], [-125.14, -2211.77], [-126.69, -2209.3], [-156.65, -2160.94], [-176.66, -2130.78], [-231.29, -2040.75], [-389.19, -1791.83], [-410.07, -1757.93], [-458.72, -1680.4], [-480.92, -1637.35], [-495.56, -1597.4], [-506.71, -1551.45], [-512.15, -1499.2], [-510.17, -1455.1], [-504.14, -1411.26], [-494.25, -1354.8], [-477.97, -1268.66], [-469.62, -1234.11], [-457.07, -1177.8], [-446.79, -1138.95], [-430.64, -1090.71], [-409.46, -1032.37], [-403.14, -1034.66], [-403.08, -1034.36]], [[-388.54, -2207.07], [-351.18, -2208.68], [-351.33, -2212.18], [-351.18, -2208.68], [-307.47, -2210.58], [-304.48, -2210.71], [-304.31, -2205.28], [-304.2, -2202.37], [-301.51, -2134.5], [-298.51, -2134.62], [-301.51, -2134.49], [-301.27, -2128.83], [-300.49, -2110.21], [-299.25, -2080.92], [-298.95, -2073.74], [-297.5, -2052.82], [-297.31, -2050.18], [-296.56, -2027.01], [-296.37, -2021.31], [-296.65, -2016.83], [-297.0, -2011.27], [-297.78, -2006.48], [-298.77, -2002.44], [-301.27, -1996.47], [-306.9, -1988.33], [-312.41, -1982.08], [-316.46, -1978.24], [-319.37, -1975.98], [-324.67, -1973.03], [-328.99, -1971.46], [-333.5, -1970.48], [-341.27, -1969.7], [-347.52, -1969.73], [-370.83, -1969.84], [-378.91, -1970.34], [-381.83, -1972.27], [-382.68, -1973.6], [-384.33, -2017.97], [-384.76, -2029.46], [-389.42, -2154.89], [-391.17, -2201.94], [-391.35, -2206.95], [-388.54, -2207.07]], [[-348.76, -2221.18], [-353.07, -2309.83], [-355.9, -2398.79], [-356.06, -2404.0], [-281.42, -2407.27], [-274.93, -2407.55], [-274.7, -2401.81], [-267.66, -2224.68], [-267.45, -2219.32], [-295.28, -2218.11], [-301.75, -2217.83], [-307.77, -2217.57], [-348.5, -2215.8], [-348.76, -2221.18]], [[-356.46, -2413.49], [-359.89, -2486.94], [-360.64, -2501.24], [-286.15, -2530.88], [-282.42, -2532.36], [-281.09, -2526.92], [-279.65, -2521.05], [-275.17, -2413.55], [-281.68, -2413.26], [-356.3, -2410.0], [-356.46, -2413.49]], [[-1996.3, 23.84], [-2005.85, -4.41], [-2009.07, -12.77], [-2012.13, -23.31], [-2013.56, -31.47], [-2013.91, -44.46], [-2017.41, -44.36], [-2013.91, -44.47], [-2014.39, -61.05], [-2014.48, -63.78], [-2015.38, -94.54], [-2016.44, -130.21], [-2016.69, -139.64], [-2016.75, -141.04], [-2018.42, -197.51], [-2018.17, -202.45], [-2017.6, -207.49], [-2016.85, -212.48], [-2013.97, -221.08], [-2013.65, -221.94], [-2013.15, -223.92], [-2009.71, -231.89], [-1996.26, -232.44], [-1992.31, -232.6], [-1859.06, -237.76], [-1849.28, -238.51], [-1841.25, -238.89], [-1804.84, -240.65], [-1713.0, -245.06], [-1705.21, -245.41], [-1700.06, -245.67], [-1665.39, -247.32], [-1640.55, -248.53], [-1611.17, -249.93], [-1580.76, -251.42], [-1573.69, -251.75], [-1573.73, -246.15], [-1573.71, -241.08], [-1573.87, -218.11], [-1572.74, -157.12], [-1576.32, -156.93], [-1610.91, -155.27], [-1628.95, -157.11], [-1653.41, -154.59], [-1666.86, -154.38], [-1674.79, -154.57], [-1682.1, -155.49], [-1690.52, -157.18], [-1698.68, -159.99], [-1703.81, -162.56], [-1709.22, -166.41], [-1712.3, -168.89], [-1715.75, -172.28], [-1719.87, -176.42], [-1724.94, -180.27], [-1731.13, -183.1], [-1736.47, -184.51], [-1744.4, -185.55], [-1766.04, -185.0], [-1770.85, -183.73], [-1777.03, -181.89], [-1781.23, -180.46], [-1784.65, -179.52], [-1786.65, -179.12], [-1788.61, -178.88], [-1792.03, -178.8], [-1795.0, -179.12], [-1797.9, -179.89], [-1806.95, -184.04], [-1823.23, -187.79], [-1830.88, -189.24], [-1834.97, -189.67], [-1839.3, -189.62], [-1843.55, -189.27], [-1846.74, -188.62], [-1849.55, -187.66], [-1852.79, -186.44], [-1873.37, -173.59], [-1879.09, -169.67], [-1885.32, -165.07], [-1889.7, -161.48], [-1893.29, -157.77], [-1896.02, -153.66], [-1891.02, -150.34], [-1888.6, -154.0], [-1885.63, -157.06], [-1881.63, -160.33], [-1875.61, -164.78], [-1870.08, -168.57], [-1850.12, -181.03], [-1847.52, -182.01], [-1845.16, -182.82], [-1842.7, -183.32], [-1839.02, -183.62], [-1835.25, -183.67], [-1831.76, -183.3], [-1824.46, -181.91], [-1808.89, -178.33], [-1799.94, -174.23], [-1796.1, -173.2], [-1792.27, -172.8], [-1788.17, -172.89], [-1785.69, -173.2], [-1783.27, -173.68], [-1779.47, -174.72], [-1775.2, -176.17], [-1769.23, -177.96], [-1765.19, -179.02], [-1744.72, -179.54], [-1737.63, -178.61], [-1733.16, -177.43], [-1728.04, -175.09], [-1723.83, -171.9], [-1719.98, -168.02], [-1716.3, -164.41], [-1712.85, -161.63], [-1706.92, -157.4], [-1701.01, -154.44], [-1692.1, -151.38], [-1683.07, -149.57], [-1675.24, -148.57], [-1666.88, -148.38], [-1653.05, -148.6], [-1628.95, -151.07], [-1611.07, -149.25], [-1576.01, -150.94], [-1569.09, -151.3], [-1567.48, -98.25], [-1567.41, -94.27], [-1566.65, -71.48], [-1562.39, 8.21], [-1561.88, 20.76], [-1561.57, 28.89], [-1561.57, 28.89], [-1561.28, 40.44], [-1560.33, 68.82], [-1564.36, 68.98], [-1567.06, 69.06], [-1582.99, 70.11], [-1596.16, 70.73], [-1624.56, 72.16], [-1647.99, 73.26], [-1653.61, 73.62], [-1658.2, 74.19], [-1662.23, 75.81], [-1665.21, 77.64], [-1667.65, 80.2], [-1669.42, 84.71], [-1670.07, 89.76], [-1670.04, 95.37], [-1669.79, 105.17], [-1669.73, 112.15], [-1669.89, 118.97], [-1671.06, 123.85], [-1672.37, 126.79], [-1673.55, 127.92], [-1675.43, 128.86], [-1676.41, 129.01], [-1678.73, 128.45], [-1681.53, 126.59], [-1683.78, 123.56], [-1686.09, 119.47], [-1690.59, 111.12], [-1695.12, 102.73], [-1703.88, 91.02], [-1713.64, 79.5], [-1721.4, 72.07], [-1727.99, 66.74], [-1735.72, 63.33], [-1744.39, 59.23], [-1753.7, 55.1], [-1762.19, 50.66], [-1782.55, 40.24], [-1791.95, 36.92], [-1801.69, 35.44], [-1812.03, 35.43], [-1822.29, 35.89], [-1839.1, 37.37], [-1861.78, 40.68], [-1879.31, 43.41], [-1893.0, 44.79], [-1915.98, 44.88], [-1929.97, 45.75], [-1943.92, 47.56], [-1954.85, 50.04], [-1965.93, 53.47], [-1978.97, 57.64], [-1984.63, 60.1], [-1987.28, 52.61], [-1996.3, 23.84]], [[-1992.86, -246.59], [-1996.83, -246.43], [-2000.94, -246.26], [-2000.36, -246.99], [-1997.56, -250.04], [-1993.89, -254.54], [-1991.35, -258.02], [-1989.19, -261.71], [-1986.5, -267.49], [-1983.88, -275.19], [-1982.22, -282.86], [-1981.34, -296.16], [-1981.5, -311.5], [-1982.55, -356.63], [-1982.64, -360.43], [-1982.73, -363.22], [-1977.11, -363.73], [-1865.82, -369.34], [-1856.8, -369.79], [-1856.73, -366.33], [-1855.71, -314.07], [-1852.21, -314.14], [-1855.7, -313.99], [-1854.4, -281.83], [-1853.88, -258.94], [-1853.8, -255.31], [-1853.62, -252.22], [-1859.87, -251.74], [-1992.86, -246.59]], [[-1978.09, -377.7], [-1983.64, -377.2], [-1983.74, -381.25], [-1983.87, -386.01], [-1984.29, -402.41], [-1984.38, -406.03], [-1986.01, -442.8], [-1985.86, -464.62], [-1986.34, -483.64], [-1986.44, -487.3], [-1986.57, -492.75], [-1980.92, -493.03], [-1872.01, -497.81], [-1866.94, -498.27], [-1861.12, -498.52], [-1861.02, -492.96], [-1860.6, -474.34], [-1859.01, -442.42], [-1858.06, -413.63], [-1857.86, -408.31], [-1857.1, -388.47], [-1857.04, -383.8], [-1866.51, -383.32], [-1978.09, -377.7]], [[-1872.49, -504.79], [-1981.25, -500.02], [-1987.2, -499.72], [-1987.28, -505.36], [-1987.31, -507.29], [-1987.44, -517.9], [-1988.1, -550.54], [-1988.15, -552.96], [-1988.99, -595.02], [-1989.33, -611.89], [-1989.53, -621.84], [-1989.55, -622.66], [-1989.96, -639.42], [-1990.22, -645.9], [-1990.44, -651.79], [-1983.75, -652.12], [-1966.24, -653.01], [-1937.62, -654.47], [-1935.87, -654.56], [-1916.72, -655.54], [-1907.73, -656.0], [-1892.89, -656.76], [-1872.85, -657.78], [-1869.15, -657.96], [-1864.04, -658.23], [-1863.7, -623.33], [-1862.9, -609.78], [-1862.6, -600.1], [-1861.95, -578.41], [-1861.85, -548.3], [-1861.53, -513.62], [-1861.36, -508.34], [-1861.28, -505.52], [-1867.4, -505.26], [-1872.49, -504.79]], [[-1873.2, -664.77], [-1893.24, -663.75], [-1908.08, -662.99], [-1917.08, -662.53], [-1936.24, -661.55], [-1937.98, -661.46], [-1966.6, -660.0], [-1984.1, -659.11], [-1990.87, -658.78], [-1991.47, -665.98], [-1991.61, -677.22], [-1991.34, -704.32], [-1993.01, -753.96], [-1996.01, -753.86], [-1993.01, -753.97], [-1993.2, -759.11], [-1993.68, -782.72], [-1994.1, -794.37], [-1994.47, -807.66], [-1995.13, -846.86], [-1995.27, -854.61], [-1995.31, -857.04], [-1989.8, -857.29], [-1980.17, -857.74], [-1947.79, -859.23], [-1944.21, -859.4], [-1923.89, -860.34], [-1916.89, -860.66], [-1907.19, -861.11], [-1874.25, -862.63], [-1869.37, -862.85], [-1869.31, -861.0], [-1868.88, -834.4], [-1868.71, -824.5], [-1868.61, -818.91], [-1868.23, -811.37], [-1868.02, -806.64], [-1866.01, -749.93], [-1864.95, -686.36], [-1860.95, -686.43], [-1864.45, -686.36], [-1864.23, -675.56], [-1864.17, -670.68], [-1864.11, -665.23], [-1869.51, -664.95], [-1873.2, -664.77]], [[-1907.83, -875.09], [-1917.54, -874.65], [-1924.54, -874.32], [-1944.86, -873.39], [-1948.44, -873.22], [-1980.81, -871.72], [-1990.44, -871.28], [-1995.44, -871.05], [-1995.45, -873.13], [-1995.48, -874.63], [-1995.65, -881.76], [-1995.69, -883.33], [-1996.01, -896.63], [-1996.34, -908.39], [-1997.0, -933.75], [-1991.93, -933.84], [-1990.68, -933.88], [-1876.23, -937.0], [-1871.38, -937.12], [-1871.22, -931.3], [-1870.23, -894.77], [-1870.19, -893.36], [-1869.84, -879.13], [-1869.77, -876.85], [-1874.89, -876.61], [-1907.83, -875.09]], [[-1990.84, -939.88], [-1992.07, -939.84], [-1997.14, -939.75], [-1998.42, -1004.31], [-1998.5, -1008.16], [-1952.81, -1009.49], [-1909.94, -1010.6], [-1881.73, -1011.07], [-1878.62, -1011.13], [-1873.43, -1011.18], [-1873.24, -1004.39], [-1871.54, -943.12], [-1876.39, -942.99], [-1990.84, -939.88]], [[-1951.41, -1067.33], [-1951.43, -1067.76], [-1951.46, -1069.2], [-1882.61, -1070.48], [-1879.02, -1070.55], [-1874.56, -1070.66], [-1873.7, -1023.87], [-1873.57, -1017.18], [-1878.7, -1017.13], [-1881.84, -1017.07], [-1910.06, -1016.6], [-1949.97, -1015.57], [-1950.08, -1019.57], [-1951.41, -1067.33]], [[-1991.91, -1074.28], [-1996.82, -1074.13], [-1996.89, -1076.26], [-1998.21, -1118.33], [-1998.3, -1121.01], [-1998.55, -1129.1], [-1993.2, -1129.22], [-1881.48, -1131.63], [-1876.44, -1131.74], [-1876.2, -1124.16], [-1874.71, -1076.66], [-1879.15, -1076.55], [-1882.72, -1076.48], [-1954.6, -1075.14], [-1954.54, -1072.14], [-1954.61, -1075.14], [-1991.91, -1074.28]], [[-1993.33, -1135.22], [-1998.72, -1135.1], [-1998.94, -1143.37], [-2000.22, -1192.28], [-2001.28, -1241.45], [-2001.45, -1249.29], [-1996.14, -1249.47], [-1884.52, -1252.28], [-1883.72, -1252.31], [-1879.22, -1252.5], [-1879.02, -1244.77], [-1877.76, -1196.27], [-1876.76, -1145.92], [-1876.59, -1137.74], [-1881.61, -1137.63], [-1993.33, -1135.22]], [[-1884.68, -1258.28], [-1996.32, -1255.47], [-2001.58, -1255.29], [-2001.78, -1263.9], [-2002.87, -1312.46], [-2003.63, -1339.2], [-2004.14, -1362.31], [-2004.21, -1365.07], [-2004.49, -1370.8], [-2000.26, -1370.92], [-1971.79, -1371.61], [-1939.99, -1372.58], [-1887.93, -1374.0], [-1885.82, -1374.06], [-1882.18, -1374.13], [-1881.98, -1366.11], [-1880.71, -1316.01], [-1879.57, -1267.23], [-1879.36, -1258.5], [-1883.94, -1258.3], [-1884.68, -1258.28]], [[-1888.1, -1380.0], [-1940.16, -1378.58], [-1971.96, -1377.61], [-2000.41, -1376.91], [-2004.67, -1376.8], [-2004.74, -1384.95], [-2005.5, -1429.42], [-2011.5, -1429.32], [-2010.74, -1384.87], [-2010.67, -1376.66], [-2015.7, -1376.58], [-2127.75, -1373.75], [-2133.05, -1373.62], [-2133.19, -1381.33], [-2133.2, -1381.94], [-2135.18, -1480.23], [-2135.2, -1487.83], [-2122.96, -1488.22], [-2117.32, -1488.44], [-1889.81, -1494.58], [-1885.81, -1494.68], [-1885.52, -1486.47], [-1883.75, -1436.87], [-1882.52, -1387.66], [-1882.33, -1380.12], [-1885.95, -1380.06], [-1888.1, -1380.0]], [[-2114.47, -1494.52], [-2114.63, -1502.75], [-2116.56, -1602.79], [-2116.72, -1606.87], [-2113.69, -1606.95], [-1895.72, -1615.44], [-1893.15, -1615.53], [-1888.11, -1615.63], [-1888.01, -1609.22], [-1887.14, -1557.69], [-1886.14, -1508.95], [-1885.97, -1500.67], [-1889.96, -1500.58], [-2114.47, -1494.52]], [[-1895.98, -1622.43], [-2113.92, -1613.95], [-2116.98, -1613.87], [-2117.15, -1618.53], [-2117.73, -1635.07], [-2119.58, -1722.48], [-2119.7, -1728.41], [-2116.78, -1728.53], [-2004.61, -1732.85], [-1921.91, -1736.05], [-1896.46, -1736.61], [-1892.49, -1736.7], [-1892.19, -1728.31], [-1890.39, -1679.68], [-1888.57, -1630.12], [-1888.3, -1622.63], [-1893.34, -1622.53], [-1895.98, -1622.43]], [[-1886.72, -1798.17], [-1887.28, -1816.19], [-1886.01, -1822.72], [-1885.72, -1830.3], [-1885.8, -1835.57], [-1886.61, -1887.27], [-1888.06, -1938.56], [-1888.54, -1946.62], [-1889.87, -1956.39], [-1890.04, -1957.55], [-1891.23, -1965.48], [-1891.77, -1987.7], [-1891.97, -1995.97], [-1887.57, -1993.78], [-1885.26, -1992.45], [-1854.68, -1974.93], [-1813.87, -1951.97], [-1808.88, -1949.32], [-1807.47, -1951.97], [-1808.86, -1949.31], [-1804.44, -1946.99], [-1767.33, -1927.69], [-1732.15, -1908.4], [-1726.61, -1905.36], [-1727.3, -1899.72], [-1729.28, -1873.03], [-1729.68, -1867.68], [-1729.81, -1865.99], [-1730.57, -1857.68], [-1730.87, -1854.47], [-1731.76, -1848.46], [-1732.82, -1841.33], [-1734.0, -1835.76], [-1735.52, -1829.68], [-1736.78, -1824.58], [-1737.65, -1821.09], [-1740.23, -1813.04], [-1744.69, -1801.67], [-1746.47, -1797.09], [-1748.96, -1791.55], [-1755.24, -1777.56], [-1758.2, -1766.16], [-1760.13, -1756.4], [-1760.08, -1752.79], [-1760.09, -1745.92], [-1766.65, -1745.83], [-1783.98, -1745.6], [-1834.04, -1744.96], [-1879.31, -1743.57], [-1884.73, -1743.4], [-1884.93, -1748.96], [-1886.72, -1798.17]], [[-1754.12, -1755.84], [-1752.35, -1764.82], [-1749.56, -1775.56], [-1743.48, -1789.09], [-1740.94, -1794.77], [-1739.1, -1799.48], [-1734.58, -1811.03], [-1731.88, -1819.45], [-1730.96, -1823.13], [-1729.7, -1828.23], [-1728.16, -1834.41], [-1726.91, -1840.26], [-1725.82, -1847.58], [-1724.91, -1853.75], [-1724.6, -1857.12], [-1723.83, -1865.48], [-1723.7, -1867.23], [-1723.3, -1872.58], [-1721.33, -1899.13], [-1720.94, -1902.29], [-1715.81, -1899.53], [-1659.26, -1868.42], [-1623.72, -1848.02], [-1620.64, -1846.25], [-1616.62, -1845.09], [-1625.71, -1823.37], [-1630.74, -1796.04], [-1632.32, -1757.12], [-1631.97, -1748.62], [-1636.6, -1748.51], [-1665.36, -1747.93], [-1712.02, -1746.95], [-1720.99, -1746.76], [-1748.62, -1745.99], [-1754.09, -1745.97], [-1754.08, -1752.82], [-1754.12, -1755.84]], [[-1620.73, -1853.23], [-1656.32, -1873.65], [-1712.94, -1904.81], [-1719.3, -1908.22], [-1718.75, -1909.22], [-1688.62, -1964.33], [-1687.83, -1965.79], [-1686.06, -1969.03], [-1681.32, -1966.49], [-1626.03, -1936.83], [-1622.55, -1934.95], [-1609.78, -1928.03], [-1586.94, -1915.2], [-1584.65, -1913.91], [-1581.43, -1912.1], [-1583.06, -1909.04], [-1594.06, -1888.34], [-1614.07, -1850.6], [-1618.28, -1851.82], [-1620.73, -1853.23]], [[-1583.02, -1922.18], [-1605.91, -1935.03], [-1618.74, -1941.98], [-1622.23, -1943.88], [-1677.54, -1973.54], [-1682.23, -1976.06], [-1679.51, -1981.05], [-1678.42, -1983.05], [-1604.77, -2118.14], [-1583.37, -2154.04], [-1575.32, -2160.61], [-1566.68, -2164.53], [-1555.94, -2165.86], [-1537.99, -2168.07], [-1523.31, -2168.96], [-1503.48, -2169.65], [-1498.83, -2169.81], [-1495.55, -2169.93], [-1495.31, -2164.71], [-1493.73, -2129.87], [-1491.89, -2129.96], [-1494.86, -2124.03], [-1494.72, -2114.32], [-1492.23, -2114.36], [-1492.28, -2113.76], [-1494.52, -2113.08], [-1492.85, -2107.57], [-1493.1, -2104.93], [-1493.03, -2098.89], [-1492.24, -2086.03], [-1492.04, -2081.14], [-1492.82, -2073.39], [-1493.71, -2072.44], [-1492.98, -2071.77], [-1493.05, -2071.1], [-1494.21, -2071.74], [-1498.92, -2063.13], [-1507.87, -2045.91], [-1526.29, -2012.55], [-1528.72, -2008.19], [-1546.21, -1976.41], [-1563.12, -1945.58], [-1577.63, -1919.14], [-1580.73, -1920.89], [-1583.02, -1922.18]], [[-1728.28, -2000.72], [-1761.51, -2019.49], [-1765.68, -2021.85], [-1763.0, -2026.71], [-1723.58, -2098.34], [-1695.88, -2149.57], [-1663.43, -2205.95], [-1641.03, -2246.59], [-1633.28, -2257.47], [-1621.75, -2268.37], [-1587.33, -2269.14], [-1541.72, -2271.73], [-1524.5, -2272.71], [-1507.75, -2273.18], [-1504.35, -2273.28], [-1498.05, -2271.83], [-1497.93, -2267.21], [-1495.93, -2183.41], [-1495.75, -2175.92], [-1499.04, -2175.81], [-1503.69, -2175.64], [-1523.59, -2174.95], [-1538.54, -2174.05], [-1556.67, -2171.81], [-1568.33, -2170.37], [-1578.51, -2165.75], [-1587.98, -2158.03], [-1609.98, -2121.11], [-1683.68, -1985.92], [-1684.78, -1983.92], [-1687.52, -1978.89], [-1693.38, -1982.03], [-1728.28, -2000.72]], [[-1678.29, -2292.55], [-1700.76, -2301.8], [-1706.2, -2303.99], [-1704.87, -2307.12], [-1696.37, -2326.52], [-1686.21, -2352.88], [-1674.43, -2388.87], [-1673.2, -2393.18], [-1668.46, -2392.13], [-1623.76, -2379.13], [-1587.2, -2371.65], [-1570.27, -2370.54], [-1552.88, -2370.84], [-1512.24, -2373.47], [-1508.66, -2373.71], [-1503.06, -2373.84], [-1502.81, -2368.87], [-1498.4, -2279.58], [-1498.32, -2278.05], [-1503.75, -2279.3], [-1507.91, -2279.18], [-1524.76, -2278.71], [-1542.06, -2277.72], [-1587.57, -2275.13], [-1622.52, -2274.35], [-1639.13, -2279.77], [-1678.29, -2292.55]], [[-1663.46, -2433.88], [-1662.63, -2437.33], [-1660.08, -2448.05], [-1653.09, -2484.47], [-1652.3, -2490.76], [-1651.72, -2495.35], [-1647.22, -2495.45], [-1611.85, -2496.29], [-1517.91, -2501.34], [-1514.75, -2501.51], [-1508.13, -2501.37], [-1507.53, -2488.56], [-1503.54, -2383.95], [-1503.35, -2379.84], [-1508.93, -2379.7], [-1512.63, -2379.46], [-1553.13, -2376.84], [-1570.13, -2376.54], [-1586.4, -2377.61], [-1622.32, -2384.95], [-1666.96, -2397.94], [-1671.67, -2398.99], [-1670.49, -2403.91], [-1663.46, -2433.88]], [[-2992.99, -2955.48], [-2972.49, -2935.03], [-2954.59, -2915.45], [-2932.96, -2892.72], [-2904.41, -2862.56], [-2898.77, -2856.25], [-2930.1, -2865.03], [-2992.96, -2884.42], [-3076.52, -2912.36], [-3090.43, -2916.49], [-3087.58, -2919.83], [-3079.71, -2926.68], [-3066.38, -2936.45], [-3055.03, -2945.36], [-3026.46, -2974.07], [-3020.15, -2981.45], [-3000.77, -2963.25], [-2992.99, -2955.48]], [[-3164.76, -2928.63], [-3184.21, -2927.18], [-3206.26, -2924.88], [-3226.12, -2924.41], [-3244.13, -2927.48], [-3244.92, -2927.73], [-3241.54, -2930.37], [-3233.1, -2946.91], [-3222.2, -2965.57], [-3209.71, -2982.28], [-3197.59, -2999.73], [-3190.04, -3011.63], [-3182.44, -3028.54], [-3177.37, -3032.3], [-3172.85, -3034.24], [-3159.14, -3031.36], [-3135.46, -3024.48], [-3116.55, -3020.46], [-3103.56, -3025.22], [-3094.42, -3031.18], [-3085.19, -3040.94], [-3081.8, -3045.49], [-3058.25, -3022.49], [-3039.39, -3000.94], [-3024.45, -2985.65], [-3030.87, -2978.14], [-3059.03, -2949.85], [-3070.0, -2941.23], [-3083.46, -2931.37], [-3091.85, -2924.06], [-3096.72, -2918.37], [-3107.56, -2921.62], [-3129.3, -2926.39], [-3147.01, -2928.02], [-3164.76, -2928.63]], [[-2620.38, -215.9], [-2602.25, -216.77], [-2573.36, -218.15], [-2566.03, -218.45], [-2561.45, -218.63], [-2536.06, -219.89], [-2540.06, -218.83], [-2555.26, -214.18], [-2564.85, -210.25], [-2576.24, -202.43], [-2576.75, -202.64], [-2583.5, -205.53], [-2593.71, -210.3], [-2599.19, -211.89], [-2605.87, -212.45], [-2621.86, -212.04], [-2636.71, -211.65], [-2639.68, -211.57], [-2645.34, -211.47], [-2645.48, -214.46], [-2639.99, -214.88], [-2620.38, -215.9]], [[-2651.2, -406.28], [-2651.43, -414.1], [-2654.93, -414.0], [-2650.93, -414.12], [-2651.19, -422.98], [-2652.65, -471.05], [-2654.98, -550.36], [-2655.19, -559.18], [-2659.19, -559.08], [-2655.2, -559.31], [-2655.58, -566.2], [-2660.9, -732.92], [-2661.19, -742.01], [-2665.19, -741.88], [-2661.19, -742.04], [-2661.45, -748.82], [-2662.3, -775.86], [-2663.93, -825.14], [-2664.05, -828.96], [-2658.13, -826.32], [-2654.34, -826.32], [-2647.78, -825.97], [-2643.33, -825.1], [-2631.46, -822.36], [-2557.19, -800.05], [-2538.42, -793.4], [-2535.86, -792.11], [-2533.27, -790.48], [-2518.03, -778.19], [-2499.33, -770.76], [-2495.74, -767.96], [-2488.1, -761.99], [-2465.41, -744.28], [-2458.83, -739.14], [-2440.31, -724.69], [-2407.38, -698.99], [-2372.02, -671.39], [-2339.11, -645.69], [-2274.28, -593.76], [-2270.83, -591.05], [-2272.13, -590.04], [-2270.77, -588.3], [-2269.79, -586.64], [-2269.1, -584.97], [-2268.09, -582.4], [-2267.21, -579.69], [-2266.53, -576.76], [-2266.05, -574.22], [-2265.6, -571.69], [-2265.22, -568.94], [-2265.01, -566.65], [-2264.84, -564.19], [-2264.74, -562.17], [-2264.28, -490.81], [-2264.23, -482.21], [-2258.98, -482.24], [-2263.48, -482.22], [-2263.43, -472.89], [-2263.26, -448.22], [-2263.08, -418.2], [-2262.41, -418.21], [-2264.94, -412.45], [-2265.35, -409.36], [-2265.35, -396.78], [-2265.19, -384.35], [-2264.62, -368.59], [-2264.4, -362.54], [-2263.94, -352.52], [-2260.44, -352.68], [-2263.93, -352.36], [-2263.21, -344.63], [-2261.47, -317.19], [-2261.15, -308.66], [-2260.69, -300.25], [-2259.83, -296.08], [-2259.82, -296.06], [-2266.1, -292.93], [-2269.45, -291.31], [-2302.62, -275.25], [-2299.57, -268.95], [-2302.68, -275.22], [-2344.4, -254.55], [-2356.14, -248.48], [-2362.76, -246.02], [-2367.21, -244.37], [-2381.39, -241.66], [-2414.86, -238.44], [-2433.34, -236.96], [-2479.61, -233.25], [-2479.33, -229.77], [-2479.63, -229.75], [-2479.91, -231.46], [-2494.8, -228.99], [-2532.29, -227.09], [-2561.76, -225.62], [-2566.31, -225.44], [-2573.67, -225.14], [-2602.58, -223.77], [-2620.73, -222.89], [-2640.44, -221.86], [-2645.76, -221.46], [-2645.87, -225.16], [-2646.9, -260.0], [-2651.2, -406.28]], [[-2599.0, -822.38], [-2595.61, -819.7], [-2592.77, -818.05], [-2624.98, -827.72], [-2612.59, -826.15], [-2603.55, -826.25], [-2599.0, -822.38]], [[-2638.39, -833.99], [-2645.48, -834.52], [-2654.27, -834.62], [-2657.3, -834.6], [-2659.55, -835.03], [-2657.32, -835.66], [-2635.73, -836.03], [-2627.19, -832.98], [-2617.88, -831.36], [-2614.69, -831.13], [-2611.74, -830.96], [-2609.93, -830.44], [-2609.49, -830.19], [-2612.36, -830.15], [-2626.7, -831.97], [-2638.39, -833.99]], [[-2666.13, -843.53], [-2666.29, -862.47], [-2666.74, -872.11], [-2667.09, -900.67], [-2667.12, -903.22], [-2664.32, -906.62], [-2664.08, -906.42], [-2663.27, -907.37], [-2660.63, -900.89], [-2657.16, -897.88], [-2638.18, -881.68], [-2629.3, -874.31], [-2624.32, -870.19], [-2616.98, -864.3], [-2607.02, -860.19], [-2607.92, -859.11], [-2588.94, -843.34], [-2585.42, -840.36], [-2592.92, -841.65], [-2599.88, -841.43], [-2635.46, -840.04], [-2657.91, -839.65], [-2665.17, -837.6], [-2666.13, -843.53]], [[-2633.04, -887.45], [-2626.29, -881.9], [-2624.9, -880.72], [-2619.53, -876.04], [-2612.73, -870.2], [-2610.28, -865.87], [-2614.92, -867.78], [-2621.79, -873.29], [-2626.75, -877.39], [-2635.6, -884.74], [-2654.56, -900.91], [-2657.29, -903.28], [-2658.65, -906.63], [-2654.4, -906.05], [-2651.91, -904.0], [-2633.04, -887.45]], [[-2652.73, -909.86], [-2660.27, -910.89], [-2659.54, -911.74], [-2662.36, -914.15], [-2673.24, -925.34], [-2680.64, -931.47], [-2690.46, -939.79], [-2695.54, -944.31], [-2748.09, -989.2], [-2757.76, -997.96], [-2762.23, -1002.29], [-2757.96, -1006.74], [-2756.88, -1007.99], [-2739.47, -1028.19], [-2732.0, -1036.8], [-2708.77, -1064.52], [-2707.33, -1066.17], [-2703.0, -1071.37], [-2698.36, -1067.45], [-2575.1, -960.72], [-2572.37, -958.36], [-2566.59, -953.72], [-2570.29, -949.64], [-2595.57, -919.5], [-2603.09, -910.95], [-2620.59, -891.1], [-2622.44, -889.0], [-2625.04, -886.05], [-2630.45, -890.5], [-2649.32, -907.05], [-2652.73, -909.86]], [[-2669.85, -1110.55], [-2644.13, -1140.43], [-2640.42, -1144.7], [-2635.78, -1140.62], [-2513.19, -1036.15], [-2508.54, -1032.19], [-2503.27, -1027.7], [-2507.29, -1023.09], [-2533.37, -993.09], [-2558.95, -964.17], [-2563.55, -958.97], [-2568.53, -962.97], [-2571.17, -965.25], [-2694.46, -1072.01], [-2699.16, -1075.98], [-2695.76, -1080.11], [-2693.27, -1083.04], [-2669.85, -1110.55]], [[-2741.3, -1235.71], [-2745.4, -1239.09], [-2739.24, -1246.36], [-2714.75, -1275.28], [-2689.0, -1305.7], [-2685.23, -1310.15], [-2680.67, -1306.25], [-2678.26, -1304.18], [-2587.4, -1226.54], [-2583.02, -1222.8], [-2586.63, -1218.38], [-2611.32, -1188.07], [-2636.27, -1158.78], [-2641.09, -1153.12], [-2646.52, -1157.51], [-2738.65, -1233.53], [-2741.3, -1235.71]], [[-2626.51, -1379.52], [-2622.9, -1383.73], [-2618.23, -1379.93], [-2616.08, -1378.14], [-2589.0, -1355.59], [-2587.08, -1357.89], [-2589.0, -1355.59], [-2561.6, -1332.77], [-2560.27, -1298.5], [-2559.55, -1270.86], [-2559.52, -1250.97], [-2559.51, -1240.74], [-2563.52, -1240.55], [-2565.15, -1240.2], [-2567.3, -1239.46], [-2569.49, -1237.91], [-2574.88, -1232.28], [-2579.15, -1227.38], [-2583.5, -1231.1], [-2674.36, -1308.75], [-2676.77, -1310.81], [-2681.37, -1314.75], [-2677.3, -1319.65], [-2652.05, -1349.42], [-2626.51, -1379.52]], [[-2993.44, -1020.0], [-3013.84, -1021.85], [-3062.66, -1027.31], [-3073.24, -1029.32], [-3077.07, -1030.84], [-3082.56, -1034.88], [-3079.9, -1038.17], [-3032.4, -1096.72], [-3029.01, -1101.05], [-3024.57, -1097.09], [-3018.82, -1092.87], [-3012.8, -1089.89], [-3009.81, -1088.73], [-3007.21, -1087.95], [-3004.44, -1087.37], [-3001.72, -1086.95], [-2999.12, -1086.7], [-2996.17, -1086.55], [-2977.05, -1086.83], [-2973.47, -1086.9], [-2954.13, -1087.4], [-2947.01, -1087.57], [-2935.37, -1087.74], [-2932.38, -1087.79], [-2929.92, -1087.58], [-2925.18, -1086.7], [-2920.36, -1085.53], [-2916.86, -1084.8], [-2912.61, -1084.17], [-2913.18, -1082.17], [-2913.84, -1078.25], [-2912.83, -1047.29], [-2912.87, -1042.3], [-2912.66, -1026.44], [-2912.62, -1021.19], [-2917.46, -1021.05], [-2920.76, -1020.95], [-2975.1, -1019.32], [-2993.44, -1020.0]], [[-2929.12, -1093.53], [-2932.18, -1093.79], [-2935.45, -1093.74], [-2947.12, -1093.57], [-2954.28, -1093.4], [-2973.61, -1092.9], [-2977.15, -1092.83], [-2996.06, -1092.55], [-2998.67, -1092.68], [-3000.97, -1092.91], [-3003.37, -1093.28], [-3005.73, -1093.77], [-3007.86, -1094.41], [-3010.39, -1095.39], [-3015.69, -1098.01], [-3020.79, -1101.75], [-3025.32, -1105.8], [-3021.81, -1110.38], [-3000.89, -1136.89], [-2987.89, -1153.08], [-2977.81, -1166.02], [-2976.52, -1167.41], [-2972.46, -1172.36], [-2967.88, -1168.44], [-2955.67, -1157.95], [-2895.65, -1106.85], [-2884.0, -1096.15], [-2888.28, -1093.78], [-2903.2, -1090.05], [-2905.72, -1089.63], [-2908.56, -1089.64], [-2915.81, -1090.71], [-2919.05, -1091.39], [-2923.93, -1092.57], [-2929.12, -1093.53]], [[-2913.65, -1241.98], [-2910.07, -1245.82], [-2905.74, -1242.11], [-2903.63, -1240.37], [-2822.72, -1172.37], [-2819.87, -1169.95], [-2815.56, -1166.24], [-2819.36, -1162.05], [-2844.65, -1132.28], [-2870.74, -1103.91], [-2877.62, -1099.79], [-2891.02, -1112.09], [-2951.12, -1163.27], [-2963.33, -1173.76], [-2968.05, -1177.8], [-2964.67, -1182.05], [-2962.58, -1184.54], [-2940.62, -1211.69], [-2913.65, -1241.98]], [[-3005.97, -1333.86], [-3000.98, -1339.55], [-2975.68, -1368.44], [-2949.87, -1400.02], [-2947.12, -1403.38], [-2942.94, -1399.83], [-2857.14, -1326.88], [-2851.71, -1322.03], [-2854.33, -1319.13], [-2881.91, -1288.66], [-2906.39, -1259.35], [-2910.67, -1254.21], [-2915.26, -1258.11], [-2918.15, -1260.56], [-3001.52, -1330.54], [-3005.97, -1333.86]], [[-2883.7, -1478.71], [-2879.65, -1475.27], [-2793.5, -1402.08], [-2789.06, -1398.31], [-2792.79, -1393.67], [-2817.93, -1362.45], [-2842.52, -1332.87], [-2847.77, -1326.56], [-2853.2, -1331.41], [-2939.05, -1404.41], [-2943.32, -1408.03], [-2938.38, -1414.08], [-2914.11, -1443.78], [-2887.93, -1473.85], [-2883.7, -1478.71]], [[-2820.58, -1551.73], [-2816.64, -1548.62], [-2803.1, -1537.31], [-2770.74, -1510.36], [-2726.68, -1472.18], [-2730.47, -1467.63], [-2755.02, -1438.1], [-2781.3, -1407.79], [-2785.27, -1402.96], [-2789.62, -1406.66], [-2875.77, -1479.84], [-2879.69, -1483.18], [-2876.12, -1487.06], [-2849.81, -1517.55], [-2824.16, -1547.14], [-2820.58, -1551.73]], [[-3012.05, -1526.6], [-2985.98, -1557.45], [-2981.22, -1563.09], [-2976.6, -1559.25], [-2963.81, -1548.63], [-2891.67, -1486.1], [-2888.15, -1482.73], [-2892.45, -1477.79], [-2918.7, -1447.64], [-2943.02, -1417.88], [-2947.89, -1411.92], [-2952.04, -1415.45], [-3036.47, -1487.57], [-3041.45, -1491.82], [-3037.09, -1496.97], [-3012.05, -1526.6]], [[-2903.32, -1621.94], [-2834.72, -1563.77], [-2825.2, -1555.55], [-2828.79, -1550.95], [-2854.35, -1521.47], [-2880.6, -1491.05], [-2884.15, -1487.2], [-2887.63, -1490.53], [-2959.93, -1553.2], [-2972.77, -1563.87], [-2977.35, -1567.67], [-2974.21, -1571.4], [-2948.89, -1601.36], [-2923.4, -1631.52], [-2919.38, -1636.28], [-2903.32, -1621.94]], [[-3019.27, -1337.36], [-3014.45, -1333.02], [-3016.75, -1330.06], [-3043.13, -1299.21], [-3067.18, -1270.23], [-3071.29, -1265.18], [-3078.1, -1270.73], [-3087.42, -1278.63], [-3087.42, -1278.63], [-3093.38, -1284.21], [-3166.37, -1345.02], [-3162.46, -1349.65], [-3136.93, -1378.82], [-3111.06, -1409.44], [-3108.45, -1412.54], [-3104.87, -1409.52], [-3019.27, -1337.36]], [[-3045.32, -1487.24], [-3040.37, -1483.0], [-2955.93, -1410.89], [-2951.69, -1407.27], [-2954.52, -1403.82], [-2980.26, -1372.32], [-3005.5, -1343.51], [-3010.62, -1337.65], [-3015.33, -1341.88], [-3101.0, -1414.1], [-3104.58, -1417.12], [-3099.74, -1422.84], [-3074.45, -1452.76], [-3048.31, -1483.71], [-3045.32, -1487.24]], [[-3085.15, -1640.71], [-3080.81, -1645.73], [-3076.84, -1642.44], [-3061.81, -1629.96], [-3037.91, -1610.13], [-3015.98, -1591.93], [-2994.27, -1573.9], [-2990.96, -1571.16], [-2985.84, -1566.92], [-2990.56, -1561.32], [-3016.64, -1530.47], [-3041.67, -1500.84], [-3046.01, -1495.72], [-3050.07, -1499.19], [-3121.73, -1560.37], [-3129.02, -1566.59], [-3135.55, -1572.58], [-3139.36, -1576.06], [-3135.55, -1580.71], [-3110.8, -1610.02], [-3104.2, -1617.38], [-3096.17, -1627.97], [-3085.15, -1640.71]], [[-3076.99, -1650.37], [-3064.88, -1665.81], [-3038.53, -1696.94], [-3022.39, -1715.76], [-3018.38, -1720.44], [-3000.92, -1704.94], [-2963.17, -1672.09], [-2923.94, -1640.17], [-2927.98, -1635.4], [-2953.47, -1605.23], [-2978.79, -1575.27], [-2981.97, -1571.5], [-2987.13, -1575.78], [-2990.44, -1578.52], [-3012.15, -1596.54], [-3034.08, -1614.75], [-3057.98, -1634.58], [-3073.01, -1647.06], [-3076.99, -1650.37]], [[-3052.89, -1487.58], [-3079.04, -1456.63], [-3104.33, -1426.71], [-3109.16, -1420.99], [-3111.79, -1423.22], [-3183.61, -1484.0], [-3185.91, -1485.94], [-3190.48, -1489.77], [-3185.66, -1495.2], [-3159.58, -1525.5], [-3134.34, -1555.52], [-3130.63, -1560.07], [-3125.63, -1555.8], [-3053.97, -1494.63], [-3049.88, -1491.14], [-3052.89, -1487.58]], [[-3113.03, -1416.41], [-3115.64, -1413.31], [-3141.48, -1382.73], [-3167.01, -1353.56], [-3170.95, -1348.89], [-3175.44, -1352.73], [-3252.59, -1418.67], [-3249.33, -1422.52], [-3247.7, -1424.42], [-3223.02, -1452.6], [-3197.79, -1481.63], [-3194.48, -1485.3], [-3189.77, -1481.35], [-3187.49, -1479.42], [-3115.66, -1418.64], [-3113.03, -1416.41]], [[-3033.65, -1104.86], [-3037.09, -1100.46], [-3084.56, -1041.95], [-3087.25, -1038.63], [-3091.12, -1041.99], [-3198.79, -1133.26], [-3203.01, -1136.85], [-3199.93, -1140.56], [-3152.68, -1196.42], [-3148.91, -1200.73], [-3145.25, -1197.54], [-3040.62, -1109.91], [-3038.38, -1108.43], [-3033.65, -1104.86]], [[-3111.28, -1246.51], [-3094.45, -1266.32], [-3092.04, -1269.03], [-3089.82, -1271.48], [-3082.57, -1265.35], [-3073.39, -1257.85], [-3071.18, -1260.56], [-3073.39, -1257.85], [-3064.9, -1250.96], [-3045.48, -1234.52], [-2981.74, -1180.43], [-2977.0, -1176.28], [-2981.03, -1171.36], [-2982.38, -1169.92], [-2992.59, -1156.8], [-3005.58, -1140.63], [-3026.55, -1114.07], [-3029.97, -1109.6], [-3034.92, -1113.33], [-3037.02, -1114.72], [-3141.35, -1202.1], [-3145.04, -1205.32], [-3140.12, -1211.44], [-3117.63, -1238.89], [-3111.28, -1246.51]], [[-2914.65, -1249.71], [-2918.08, -1246.02], [-2945.2, -1215.58], [-2967.21, -1188.36], [-2969.32, -1185.85], [-2972.59, -1181.73], [-2977.17, -1185.73], [-3040.96, -1239.85], [-3060.43, -1256.35], [-3066.64, -1261.39], [-3062.54, -1266.42], [-3038.54, -1295.34], [-3012.1, -1326.27], [-3009.8, -1329.23], [-3005.24, -1325.83], [-2922.02, -1255.97], [-2919.14, -1253.54], [-2914.65, -1249.71]], [[-2963.43, -230.76], [-2962.21, -239.01], [-2953.49, -296.29], [-2952.68, -301.61], [-2947.36, -300.77], [-2898.29, -292.95], [-2890.11, -291.8], [-2882.8, -291.9], [-2856.52, -292.87], [-2853.09, -293.0], [-2847.74, -293.3], [-2847.61, -289.2], [-2847.13, -272.0], [-2846.9, -267.01], [-2846.61, -261.03], [-2846.01, -245.12], [-2844.89, -215.01], [-2844.85, -213.98], [-2844.73, -209.08], [-2845.7, -209.06], [-2851.0, -208.93], [-2854.9, -208.84], [-2866.6, -208.92], [-2873.79, -209.79], [-2878.04, -211.02], [-2878.33, -210.02], [-2884.2, -214.02], [-2939.9, -223.09], [-2946.04, -222.45], [-2951.19, -221.93], [-2951.02, -223.03], [-2964.27, -225.08], [-2963.71, -228.85], [-2963.43, -230.76]], [[-2937.91, -395.12], [-2930.48, -393.32], [-2901.63, -386.45], [-2888.53, -382.91], [-2887.08, -382.24], [-2869.34, -371.79], [-2861.42, -366.1], [-2856.62, -360.51], [-2852.59, -351.56], [-2850.6, -341.71], [-2848.37, -305.33], [-2848.06, -300.3], [-2853.43, -299.99], [-2856.79, -299.86], [-2882.97, -298.9], [-2889.66, -298.81], [-2897.25, -299.88], [-2946.26, -307.68], [-2951.63, -308.53], [-2951.06, -312.33], [-2940.82, -375.99], [-2938.46, -392.08], [-2937.91, -395.12]], [[-3012.81, -433.27], [-3027.05, -441.69], [-3049.41, -456.12], [-3059.59, -464.9], [-3056.33, -464.8], [-3042.27, -463.84], [-3034.13, -463.54], [-3027.69, -463.84], [-3021.28, -464.65], [-3012.96, -466.48], [-3004.86, -469.17], [-2997.06, -472.69], [-2991.55, -476.05], [-2986.52, -480.09], [-2982.06, -484.73], [-2978.88, -488.95], [-2976.14, -493.51], [-2974.39, -497.68], [-2973.21, -502.01], [-2972.58, -506.46], [-2972.53, -511.13], [-2973.12, -515.76], [-2973.77, -518.19], [-2974.31, -520.26], [-2974.4, -520.48], [-2964.39, -514.17], [-2956.02, -507.55], [-2921.06, -483.57], [-2910.49, -478.67], [-2903.16, -476.4], [-2894.8, -475.22], [-2889.0, -475.32], [-2888.42, -468.79], [-2888.3, -467.36], [-2888.1, -415.4], [-2888.54, -392.7], [-2888.6, -389.15], [-2900.15, -392.26], [-2929.08, -399.15], [-2939.42, -401.66], [-2964.47, -410.96], [-2993.81, -423.15], [-3000.71, -426.77], [-3012.81, -433.27]], [[-2918.08, -488.8], [-2952.46, -512.39], [-2960.92, -519.07], [-2978.66, -530.27], [-2988.44, -542.2], [-3026.63, -578.41], [-3039.3, -591.82], [-3050.85, -605.27], [-3066.31, -621.76], [-3070.17, -624.56], [-3074.97, -628.05], [-3079.42, -630.3], [-3067.03, -630.98], [-2899.47, -637.56], [-2894.41, -637.76], [-2894.27, -632.76], [-2892.13, -591.87], [-2891.08, -549.95], [-2890.34, -490.07], [-2889.54, -481.31], [-2894.42, -481.23], [-2901.85, -482.28], [-2908.33, -484.28], [-2918.08, -488.8]], [[-3094.7, -635.47], [-3095.98, -635.45], [-3096.25, -635.44], [-3096.04, -639.71], [-3095.51, -650.84], [-3085.13, -656.7], [-3076.15, -663.8], [-3069.77, -670.74], [-3063.7, -679.42], [-3058.56, -690.9], [-3054.98, -707.89], [-3055.23, -716.65], [-3055.34, -721.96], [-3050.3, -722.21], [-2978.33, -725.64], [-2929.31, -727.95], [-2902.09, -729.08], [-2896.84, -729.3], [-2896.55, -724.2], [-2894.75, -649.29], [-2894.58, -643.76], [-2899.7, -643.55], [-3067.31, -636.98], [-3094.7, -635.47], [-3094.7, -635.47]], [[-3050.58, -728.2], [-3055.47, -727.96], [-3055.6, -733.77], [-3058.68, -809.13], [-3058.95, -814.41], [-3054.01, -814.63], [-3005.92, -816.78], [-2980.39, -817.93], [-2912.94, -820.51], [-2902.33, -820.9], [-2899.4, -814.96], [-2898.64, -775.16], [-2897.34, -740.37], [-2897.13, -735.29], [-2902.34, -735.08], [-2929.57, -733.95], [-2978.61, -731.63], [-3050.58, -728.2]], [[-3054.33, -821.62], [-3059.29, -821.4], [-3059.58, -827.39], [-3061.1, -864.54], [-3062.49, -898.35], [-3062.65, -902.08], [-3062.85, -906.92], [-3057.96, -907.07], [-2997.63, -909.86], [-2983.52, -909.28], [-2971.37, -907.78], [-2959.27, -905.0], [-2945.77, -899.65], [-2922.76, -887.7], [-2918.51, -884.68], [-2915.0, -882.17], [-2909.74, -881.49], [-2908.71, -831.81], [-2906.25, -827.76], [-2913.2, -827.51], [-2980.68, -824.93], [-3006.24, -823.78], [-3054.33, -821.62]], [[-3162.05, -917.05], [-3150.15, -909.15], [-3159.48, -908.69], [-3181.8, -907.6], [-3178.84, -911.4], [-3172.96, -918.97], [-3169.9, -922.89], [-3162.05, -917.05]], [[-3093.23, -323.59], [-2963.34, -303.2], [-2958.61, -302.52], [-2959.42, -297.2], [-2968.15, -239.9], [-2969.37, -231.63], [-2969.65, -229.72], [-2970.2, -226.0], [-2975.6, -226.83], [-2984.05, -228.13], [-3048.78, -238.16], [-3049.58, -232.97], [-3048.78, -238.16], [-3076.87, -242.51], [-3084.95, -243.76], [-3104.66, -246.82], [-3109.04, -247.5], [-3108.43, -251.36], [-3107.93, -254.26], [-3102.95, -286.24], [-3098.38, -316.06], [-3097.96, -318.84], [-3097.14, -324.23], [-3093.23, -323.59]], [[-3149.47, -579.38], [-3147.88, -589.32], [-3144.03, -602.13], [-3139.02, -610.61], [-3134.21, -618.44], [-3126.05, -628.1], [-3103.9, -629.47], [-3099.45, -629.38], [-3099.4, -632.38], [-3099.34, -629.38], [-3094.99, -629.47], [-3085.75, -626.78], [-3078.11, -622.91], [-3073.69, -619.71], [-3070.3, -617.24], [-3055.32, -601.26], [-3043.76, -587.81], [-3030.88, -574.17], [-2992.84, -538.11], [-2983.28, -526.44], [-2980.01, -518.37], [-2979.57, -516.66], [-2979.02, -514.61], [-2978.54, -510.78], [-2978.57, -506.91], [-2979.09, -503.22], [-2980.07, -499.64], [-2981.51, -496.23], [-2983.86, -492.31], [-2986.63, -488.63], [-2990.57, -484.52], [-2995.0, -480.97], [-2999.87, -478.01], [-3007.05, -474.76], [-3014.56, -472.27], [-3022.3, -470.57], [-3028.2, -469.82], [-3034.16, -469.54], [-3041.95, -469.83], [-3056.04, -470.79], [-3066.81, -471.12], [-3109.79, -507.85], [-3117.43, -513.96], [-3122.04, -517.13], [-3129.5, -523.53], [-3137.74, -533.3], [-3138.95, -535.61], [-3143.6, -544.5], [-3147.65, -556.82], [-3149.44, -567.64], [-3149.47, -579.38]], [[-3101.73, -646.5], [-3102.04, -639.99], [-3102.25, -635.44], [-3104.02, -635.47], [-3119.59, -634.51], [-3119.28, -634.81], [-3115.61, -637.04], [-3109.85, -640.54], [-3101.73, -646.5]], [[-3107.74, -393.63], [-3098.55, -393.21], [-3080.07, -393.75], [-3067.95, -395.23], [-3057.7, -397.34], [-3045.34, -400.63], [-3028.26, -406.07], [-3016.47, -411.08], [-3010.98, -414.16], [-3009.5, -415.2], [-3001.89, -420.61], [-2996.36, -417.71], [-2966.66, -405.37], [-2943.7, -396.85], [-2944.39, -393.05], [-2946.75, -376.9], [-2956.99, -313.25], [-2957.56, -309.44], [-2962.29, -310.13], [-3092.13, -330.51], [-3096.33, -331.19], [-3096.07, -334.43], [-3095.78, -338.04], [-3097.24, -342.39], [-3102.22, -350.77], [-3110.46, -358.59], [-3123.87, -372.79], [-3134.45, -389.17], [-3135.75, -392.3], [-3137.76, -397.08], [-3107.74, -393.63]], [[-2756.05, -735.41], [-2751.76, -735.5], [-2751.49, -730.13], [-2749.32, -655.21], [-2749.2, -650.15], [-2753.4, -649.97], [-2883.94, -644.22], [-2888.59, -644.01], [-2888.75, -649.46], [-2890.55, -724.45], [-2890.84, -729.56], [-2886.34, -729.78], [-2756.05, -735.41]], [[-2675.13, -738.82], [-2669.09, -738.86], [-2668.89, -732.66], [-2663.58, -565.84], [-2663.34, -561.6], [-2669.9, -560.81], [-2734.95, -558.96], [-2738.78, -558.8], [-2738.9, -564.1], [-2740.66, -639.2], [-2740.91, -647.44], [-2741.09, -655.43], [-2743.27, -730.45], [-2743.53, -735.77], [-2739.63, -735.94], [-2675.13, -738.82]], [[-2906.53, -1083.63], [-2905.24, -1083.62], [-2901.97, -1084.17], [-2886.06, -1088.15], [-2879.2, -1091.95], [-2870.29, -1084.99], [-2826.82, -1047.61], [-2813.49, -1036.3], [-2809.72, -1032.75], [-2813.2, -1028.93], [-2815.37, -1026.73], [-2817.1, -1024.93], [-2818.51, -1022.08], [-2818.76, -1017.09], [-2818.0, -997.29], [-2817.81, -986.14], [-2822.24, -986.07], [-2902.01, -984.86], [-2903.65, -984.83], [-2906.09, -984.8], [-2906.59, -1018.32], [-2906.66, -1026.51], [-2906.87, -1042.32], [-2906.83, -1047.37], [-2907.82, -1077.84], [-2907.32, -1080.85], [-2906.53, -1083.63]], [[-2840.15, -1128.3], [-2814.85, -1158.09], [-2810.98, -1162.36], [-2805.87, -1158.07], [-2803.02, -1155.78], [-2712.21, -1078.91], [-2707.62, -1075.19], [-2711.9, -1070.06], [-2713.33, -1068.42], [-2736.57, -1040.7], [-2744.01, -1032.12], [-2761.42, -1011.91], [-2762.39, -1010.78], [-2766.8, -1006.2], [-2771.66, -1009.8], [-2779.55, -1016.47], [-2802.86, -1035.89], [-2808.82, -1041.51], [-2822.27, -1052.93], [-2865.85, -1090.4], [-2872.69, -1095.75], [-2866.91, -1099.21], [-2840.15, -1128.3]], [[-2758.56, -1242.42], [-2753.87, -1238.38], [-2756.01, -1235.85], [-2783.02, -1203.97], [-2807.63, -1175.51], [-2811.61, -1170.76], [-2815.97, -1174.51], [-2818.85, -1176.95], [-2899.79, -1244.98], [-2901.88, -1246.7], [-2906.11, -1250.32], [-2901.78, -1255.5], [-2877.38, -1284.72], [-2849.88, -1315.11], [-2847.25, -1318.01], [-2844.11, -1315.16], [-2761.04, -1244.52], [-2758.56, -1242.42]], [[-2693.58, -1309.57], [-2719.33, -1279.15], [-2743.82, -1250.24], [-2749.99, -1242.96], [-2754.66, -1246.98], [-2757.15, -1249.09], [-2840.15, -1319.67], [-2843.31, -1322.54], [-2837.91, -1329.04], [-2813.29, -1358.65], [-2788.12, -1389.9], [-2784.48, -1394.42], [-2780.18, -1390.77], [-2696.48, -1319.71], [-2694.42, -1317.97], [-2689.8, -1314.04], [-2693.58, -1309.57]], [[-2634.33, -1393.85], [-2631.74, -1391.63], [-2627.44, -1387.65], [-2631.07, -1383.42], [-2656.63, -1353.3], [-2681.9, -1323.5], [-2685.94, -1318.64], [-2690.54, -1322.55], [-2692.6, -1324.29], [-2776.3, -1395.35], [-2780.7, -1399.08], [-2776.72, -1403.92], [-2750.45, -1434.21], [-2725.85, -1463.8], [-2722.12, -1468.28], [-2717.88, -1464.71], [-2684.91, -1436.91], [-2667.72, -1422.63], [-2634.33, -1393.85]], [[-2745.11, -1231.08], [-2742.47, -1228.9], [-2650.31, -1152.86], [-2645.0, -1148.57], [-2648.67, -1144.36], [-2674.41, -1114.45], [-2697.85, -1086.92], [-2700.36, -1083.96], [-2703.79, -1079.81], [-2708.38, -1083.53], [-2799.21, -1160.4], [-2802.06, -1162.7], [-2807.04, -1166.88], [-2803.06, -1171.62], [-2778.46, -1200.07], [-2751.44, -1231.97], [-2749.28, -1234.51], [-2745.11, -1231.08]], [[-2903.56, -978.83], [-2901.92, -978.86], [-2822.15, -980.07], [-2817.66, -980.14], [-2817.34, -969.45], [-2817.05, -961.54], [-2816.2, -951.2], [-2810.22, -951.69], [-2811.06, -961.89], [-2811.34, -969.65], [-2811.76, -983.25], [-2812.0, -997.45], [-2812.75, -1017.06], [-2812.58, -1020.53], [-2812.13, -1021.44], [-2811.07, -1022.55], [-2808.85, -1024.79], [-2805.23, -1028.76], [-2784.05, -1011.1], [-2776.01, -1004.31], [-2769.08, -999.18], [-2762.55, -992.85], [-2752.71, -983.94], [-2700.14, -939.03], [-2695.05, -934.5], [-2685.14, -926.1], [-2678.0, -920.19], [-2669.45, -911.4], [-2674.15, -905.7], [-2674.09, -900.59], [-2673.74, -871.9], [-2673.29, -862.27], [-2673.13, -842.94], [-2672.33, -837.98], [-2677.07, -837.77], [-2700.2, -836.76], [-2750.92, -834.54], [-2750.77, -831.04], [-2750.93, -834.54], [-2759.37, -834.16], [-2888.74, -828.48], [-2899.39, -828.02], [-2902.74, -833.54], [-2903.79, -884.18], [-2904.2, -917.07], [-2904.7, -935.36], [-2905.37, -960.33], [-2905.95, -978.8], [-2903.56, -978.83]], [[-2752.02, -746.56], [-2751.95, -741.5], [-2756.24, -741.41], [-2886.61, -735.77], [-2891.14, -735.56], [-2891.35, -740.6], [-2892.64, -775.33], [-2893.43, -816.41], [-2895.78, -821.17], [-2888.44, -821.48], [-2759.06, -827.17], [-2754.85, -827.35], [-2754.8, -820.61], [-2752.02, -746.56]], [[-2670.3, -775.6], [-2669.45, -748.54], [-2669.31, -744.86], [-2675.29, -744.82], [-2739.9, -741.93], [-2743.72, -741.77], [-2743.79, -746.78], [-2746.57, -820.8], [-2746.63, -827.72], [-2699.9, -829.77], [-2676.77, -830.78], [-2672.12, -830.99], [-2671.92, -824.88], [-2670.3, -775.6]], [[-2841.13, -272.22], [-2841.61, -289.38], [-2841.76, -294.1], [-2837.06, -294.31], [-2834.87, -294.4], [-2746.09, -298.08], [-2743.48, -298.19], [-2739.16, -298.37], [-2739.15, -297.87], [-2739.0, -293.14], [-2738.07, -263.98], [-2737.67, -251.5], [-2737.09, -231.66], [-2736.78, -220.76], [-2736.71, -218.28], [-2736.63, -214.09], [-2740.95, -213.93], [-2777.74, -212.69], [-2807.63, -211.7], [-2815.2, -206.62], [-2815.27, -209.79], [-2831.45, -209.4], [-2838.73, -209.22], [-2838.86, -214.17], [-2838.9, -215.23], [-2840.02, -245.34], [-2840.61, -261.29], [-2840.91, -267.3], [-2841.13, -272.22]], [[-2658.4, -213.08], [-2652.46, -213.78], [-2652.25, -209.59], [-2658.59, -209.48], [-2673.24, -209.05], [-2682.82, -209.26], [-2691.86, -209.33], [-2705.48, -209.02], [-2725.07, -208.29], [-2728.23, -208.19], [-2728.26, -209.12], [-2724.88, -209.22], [-2708.51, -209.95], [-2691.92, -210.56], [-2671.19, -212.04], [-2662.89, -212.71], [-2658.4, -213.08]], [[-2872.37, -474.89], [-2861.45, -473.06], [-2844.43, -468.01], [-2830.19, -461.1], [-2818.04, -452.22], [-2808.98, -442.9], [-2795.02, -430.71], [-2788.44, -425.66], [-2781.33, -420.99], [-2769.74, -415.85], [-2751.81, -408.87], [-2746.46, -408.06], [-2742.5, -408.37], [-2742.36, -403.06], [-2741.81, -381.49], [-2739.52, -309.62], [-2739.35, -304.37], [-2743.73, -304.19], [-2746.34, -304.08], [-2835.13, -300.4], [-2837.32, -300.3], [-2842.04, -300.1], [-2842.38, -305.7], [-2844.64, -342.49], [-2846.84, -353.41], [-2851.51, -363.77], [-2857.34, -370.55], [-2866.06, -376.82], [-2882.65, -386.6], [-2882.54, -392.59], [-2882.1, -415.35], [-2882.3, -467.63], [-2882.44, -469.31], [-2882.97, -475.25], [-2878.82, -475.1], [-2872.37, -474.89]], [[-2659.1, -220.04], [-2663.46, -219.69], [-2671.72, -219.02], [-2692.3, -217.55], [-2708.79, -216.94], [-2725.14, -216.22], [-2728.44, -216.12], [-2728.48, -218.47], [-2728.55, -221.0], [-2728.87, -231.9], [-2729.45, -251.75], [-2729.84, -264.24], [-2730.77, -293.4], [-2730.92, -298.13], [-2731.03, -301.67], [-2735.15, -301.54], [-2731.03, -301.68], [-2731.29, -309.88], [-2733.58, -381.73], [-2734.14, -403.27], [-2734.28, -408.8], [-2729.72, -408.93], [-2664.4, -410.68], [-2658.34, -410.89], [-2658.2, -406.07], [-2653.9, -259.79], [-2652.87, -224.95], [-2652.74, -220.79], [-2659.1, -220.04]], [[-2750.25, -414.71], [-2767.43, -421.39], [-2778.45, -426.27], [-2784.96, -430.55], [-2791.22, -435.35], [-2804.85, -447.26], [-2814.09, -456.76], [-2827.08, -466.27], [-2842.26, -473.63], [-2860.09, -478.91], [-2871.77, -480.87], [-2878.62, -481.1], [-2883.51, -481.27], [-2884.34, -490.38], [-2885.05, -547.12], [-2881.12, -547.27], [-2750.32, -552.33], [-2746.84, -552.46], [-2746.7, -547.57], [-2742.82, -419.73], [-2742.67, -414.37], [-2746.24, -414.1], [-2750.25, -414.71]], [[-2664.58, -416.68], [-2729.88, -414.92], [-2734.45, -414.8], [-2734.59, -419.97], [-2738.47, -547.81], [-2738.62, -552.8], [-2734.74, -552.96], [-2669.45, -554.82], [-2663.11, -555.59], [-2662.98, -550.15], [-2660.64, -470.81], [-2659.19, -422.74], [-2659.01, -416.87], [-2664.58, -416.68]], [[-2747.0, -558.46], [-2750.56, -558.32], [-2881.35, -553.26], [-2885.16, -553.12], [-2886.13, -592.1], [-2888.27, -633.0], [-2888.41, -638.01], [-2883.68, -638.23], [-2753.14, -643.98], [-2749.04, -644.15], [-2748.89, -638.98], [-2747.13, -563.91], [-2747.0, -558.46]], [[-2736.46, -207.94], [-2740.91, -207.81], [-2786.55, -205.8], [-2806.8, -204.98], [-2810.48, -205.57], [-2806.51, -208.23], [-2777.63, -209.2], [-2740.83, -210.43], [-2736.55, -210.59], [-2736.46, -207.94]], [[-2682.14, 122.31], [-2689.18, 122.5], [-2793.3, 126.74], [-2800.25, 126.88], [-2800.41, 120.94], [-2802.69, 69.26], [-2802.32, 62.37], [-2801.34, 54.62], [-2800.18, 49.9], [-2797.51, 42.5], [-2791.17, 28.63], [-2785.33, 17.76], [-2784.97, 17.1], [-2782.05, 11.7], [-2777.18, 4.48], [-2771.08, -1.24], [-2764.63, -4.97], [-2760.55, -6.58], [-2753.65, -8.18], [-2731.51, -9.41], [-2701.37, -11.71], [-2667.17, -14.29], [-2559.01, -18.27], [-2553.02, -18.47], [-2551.48, -18.54], [-2551.2, -13.13], [-2545.35, 101.17], [-2545.21, 105.32], [-2545.01, 111.67], [-2544.86, 116.45], [-2551.74, 116.91], [-2570.8, 117.7], [-2682.14, 122.31]], [[-3144.11, 49.15], [-3144.5, 43.55], [-3144.61, 42.46], [-3093.92, 40.58], [-3069.63, 39.4], [-3051.52, 39.12], [-3051.58, 35.62], [-3051.43, 39.12], [-3005.83, 37.22], [-2967.95, 35.09], [-2936.76, 33.36], [-2901.42, 31.32], [-2869.81, 29.6], [-2856.44, 29.48], [-2847.06, 30.38], [-2839.62, 31.97], [-2830.02, 34.81], [-2820.4, 38.28], [-2810.96, 41.34], [-2805.25, 43.32], [-2806.89, 47.87], [-2808.24, 53.34], [-2809.3, 61.74], [-2809.7, 69.22], [-2807.4, 121.19], [-2807.25, 127.07], [-2813.99, 127.32], [-2851.84, 128.9], [-3003.03, 135.22], [-3005.39, 135.32], [-3010.48, 135.54], [-3141.21, 140.54], [-3141.38, 135.13], [-3144.03, 51.72], [-3144.11, 49.15]], [[-3048.19, 31.98], [-3048.31, 28.27], [-3048.68, 18.42], [-3049.49, -3.05], [-3049.68, -8.05], [-3050.11, -16.16], [-3050.27, -19.26], [-3020.22, -20.7], [-2996.63, -22.0], [-2973.6, -21.68], [-2924.14, -22.59], [-2920.18, -20.64], [-2918.72, -19.36], [-2915.04, -16.42], [-2915.47, -15.72], [-2916.42, -11.92], [-2916.21, -8.02], [-2914.85, -4.36], [-2912.47, -1.27], [-2909.27, 1.0], [-2905.55, 2.21], [-2905.07, 2.22], [-2905.2, 12.94], [-2904.86, 19.83], [-2904.72, 24.5], [-2937.15, 26.38], [-2968.34, 28.1], [-3006.17, 30.23], [-3048.19, 31.98]], [[-2902.41, -3.74], [-2904.55, -3.77], [-2906.55, -4.42], [-2908.26, -5.64], [-2909.54, -7.3], [-2910.27, -9.26], [-2910.38, -11.35], [-2909.87, -13.37], [-2908.8, -15.15], [-2907.04, -16.65], [-2904.9, -17.51], [-2902.6, -17.63], [-2900.39, -17.02], [-2898.5, -15.71], [-2897.13, -13.88], [-2896.41, -11.66], [-2896.38, -9.87], [-2896.84, -8.09], [-2897.74, -6.47], [-2899.04, -5.16], [-2900.65, -4.22], [-2902.41, -3.74]], [[-2546.69, -1473.32], [-2544.67, -1474.08], [-2543.6, -1474.25], [-2535.61, -1474.19], [-2531.23, -1474.49], [-2493.16, -1479.02], [-2477.85, -1479.47], [-2435.0, -1480.72], [-2434.78, -1473.11], [-2434.67, -1469.2], [-2432.92, -1408.69], [-2436.76, -1408.61], [-2450.58, -1406.16], [-2458.64, -1403.99], [-2468.52, -1400.69], [-2475.3, -1397.02], [-2481.34, -1391.61], [-2484.99, -1387.49], [-2489.21, -1381.32], [-2492.3, -1374.35], [-2493.03, -1371.62], [-2494.17, -1367.37], [-2494.3, -1363.5], [-2550.0, -1361.99], [-2556.1, -1361.8], [-2556.13, -1369.15], [-2556.26, -1372.68], [-2557.92, -1419.09], [-2559.11, -1438.72], [-2562.12, -1441.82], [-2564.37, -1444.14], [-2568.79, -1448.68], [-2559.85, -1459.62], [-2550.75, -1470.93], [-2546.69, -1473.32]], [[-2429.0, -1480.87], [-2294.37, -1483.77], [-2287.89, -1484.05], [-2287.55, -1476.12], [-2286.11, -1441.6], [-2285.64, -1426.86], [-2284.43, -1377.59], [-2284.37, -1375.4], [-2286.82, -1373.93], [-2288.71, -1371.76], [-2289.74, -1369.35], [-2290.41, -1369.33], [-2293.63, -1369.29], [-2371.56, -1366.87], [-2373.39, -1366.86], [-2373.7, -1370.51], [-2375.5, -1376.26], [-2379.22, -1384.13], [-2385.92, -1392.3], [-2393.19, -1398.2], [-2399.49, -1401.61], [-2407.17, -1404.88], [-2415.84, -1407.15], [-2424.49, -1408.28], [-2426.92, -1408.5], [-2428.67, -1469.37], [-2428.79, -1473.28], [-2429.0, -1480.87]], [[-2280.11, -1441.82], [-2281.56, -1476.37], [-2281.89, -1484.27], [-2275.68, -1484.44], [-2257.42, -1484.95], [-2223.31, -1485.9], [-2141.2, -1487.67], [-2141.18, -1480.16], [-2139.2, -1381.83], [-2139.19, -1381.22], [-2139.05, -1373.46], [-2144.14, -1373.32], [-2270.42, -1369.92], [-2272.01, -1369.87], [-2272.02, -1369.87], [-2273.45, -1372.52], [-2275.7, -1374.6], [-2278.38, -1375.78], [-2278.43, -1377.74], [-2279.64, -1427.03], [-2280.11, -1441.82]], [[-2528.23, -1504.4], [-2509.47, -1509.89], [-2479.97, -1517.18], [-2465.19, -1521.49], [-2431.45, -1541.42], [-2405.15, -1558.66], [-2401.75, -1561.81], [-2388.35, -1574.21], [-2379.46, -1581.7], [-2374.86, -1585.57], [-2364.62, -1596.3], [-2353.54, -1608.18], [-2352.63, -1609.38], [-2342.02, -1621.43], [-2333.05, -1633.63], [-2324.94, -1645.85], [-2317.77, -1658.64], [-2308.04, -1677.57], [-2306.04, -1685.4], [-2302.08, -1704.02], [-2300.09, -1709.01], [-2298.41, -1707.74], [-2296.43, -1705.3], [-2295.29, -1701.04], [-2294.4, -1694.32], [-2293.91, -1685.72], [-2288.74, -1501.47], [-2288.52, -1497.2], [-2288.16, -1490.05], [-2294.56, -1489.77], [-2432.15, -1486.8], [-2432.09, -1483.8], [-2432.18, -1486.8], [-2493.31, -1485.02], [-2524.68, -1487.34], [-2532.05, -1487.75], [-2537.14, -1487.39], [-2541.08, -1486.74], [-2543.64, -1486.06], [-2545.89, -1485.15], [-2549.37, -1483.41], [-2550.92, -1482.07], [-2552.47, -1480.09], [-2553.44, -1478.3], [-2555.82, -1481.44], [-2557.27, -1484.78], [-2557.53, -1486.69], [-2556.95, -1490.34], [-2555.75, -1492.76], [-2552.51, -1495.95], [-2546.14, -1498.75], [-2528.23, -1504.4]], [[-2536.44, -1481.42], [-2532.0, -1481.74], [-2525.07, -1481.35], [-2524.61, -1481.32], [-2531.8, -1480.46], [-2535.79, -1480.19], [-2542.03, -1480.24], [-2541.74, -1480.36], [-2539.83, -1480.86], [-2536.44, -1481.42]], [[-2255.72, -576.11], [-2256.25, -578.92], [-2257.09, -582.5], [-2258.2, -585.93], [-2259.37, -588.92], [-2260.38, -591.35], [-2261.71, -593.61], [-2258.82, -594.76], [-2257.8, -597.38], [-2256.93, -602.01], [-2257.1, -608.88], [-2258.22, -613.04], [-2260.05, -616.2], [-2258.79, -616.26], [-2259.56, -631.73], [-2259.7, -638.85], [-2252.98, -639.25], [-2249.74, -639.4], [-2221.74, -640.8], [-2201.79, -641.78], [-2187.14, -642.51], [-2185.78, -642.59], [-2166.05, -643.56], [-2163.39, -643.7], [-2137.53, -644.98], [-2131.1, -645.3], [-2130.97, -639.21], [-2130.43, -613.96], [-2129.93, -590.93], [-2129.51, -571.58], [-2128.99, -547.55], [-2128.93, -544.54], [-2128.86, -541.28], [-2127.92, -497.74], [-2127.81, -492.78], [-2134.03, -492.5], [-2163.31, -491.06], [-2179.18, -490.27], [-2183.85, -490.05], [-2249.93, -486.71], [-2253.76, -486.31], [-2253.78, -490.88], [-2254.22, -559.61], [-2250.73, -559.82], [-2248.64, -559.88], [-2238.64, -560.19], [-2227.66, -560.49], [-2210.29, -561.13], [-2205.4, -561.32], [-2188.6, -561.95], [-2188.82, -567.94], [-2205.63, -567.31], [-2210.52, -567.13], [-2227.85, -566.49], [-2238.82, -566.18], [-2248.82, -565.87], [-2250.99, -565.81], [-2254.41, -565.61], [-2254.54, -567.49], [-2254.78, -570.14], [-2255.23, -573.33], [-2255.72, -576.11]], [[-2261.09, -608.3], [-2260.94, -602.33], [-2261.66, -598.49], [-2261.92, -597.83], [-2265.43, -596.43], [-2264.44, -602.39], [-2262.23, -608.18], [-2261.64, -610.34], [-2261.09, -608.3]], [[-2269.12, -598.61], [-2269.93, -599.25], [-2334.76, -651.18], [-2367.72, -676.91], [-2403.08, -704.51], [-2436.0, -730.21], [-2454.52, -744.66], [-2461.11, -749.8], [-2483.79, -767.51], [-2491.43, -773.48], [-2495.43, -776.59], [-2548.22, -817.8], [-2547.58, -818.56], [-2556.04, -825.68], [-2561.47, -830.49], [-2517.7, -832.53], [-2503.95, -833.25], [-2494.89, -833.69], [-2446.96, -835.83], [-2438.99, -836.16], [-2432.39, -836.45], [-2406.23, -837.76], [-2372.43, -839.16], [-2304.48, -841.98], [-2276.35, -843.03], [-2270.4, -843.37], [-2270.43, -841.06], [-2269.43, -806.92], [-2269.35, -803.02], [-2269.26, -798.55], [-2269.81, -790.67], [-2270.0, -784.34], [-2270.12, -776.86], [-2269.81, -765.45], [-2268.64, -746.01], [-2268.42, -740.66], [-2269.02, -724.05], [-2267.82, -678.6], [-2267.22, -654.03], [-2267.06, -649.51], [-2266.76, -641.54], [-2266.55, -631.49], [-2265.79, -615.92], [-2264.37, -615.99], [-2265.11, -612.77], [-2266.04, -609.43], [-2268.32, -603.44], [-2269.12, -598.61]], [[-2262.01, -724.02], [-2261.41, -740.68], [-2261.64, -746.36], [-2262.81, -765.76], [-2263.12, -776.9], [-2263.0, -784.18], [-2262.82, -790.31], [-2262.25, -798.38], [-2262.35, -803.17], [-2262.43, -807.1], [-2263.43, -841.12], [-2263.4, -843.69], [-2258.21, -843.86], [-2224.76, -846.44], [-2219.67, -846.67], [-2199.79, -847.59], [-2177.37, -848.62], [-2171.78, -848.88], [-2141.37, -850.29], [-2135.45, -850.56], [-2135.41, -848.61], [-2135.36, -845.97], [-2135.08, -832.84], [-2134.82, -820.75], [-2134.65, -812.73], [-2134.4, -800.85], [-2133.89, -776.57], [-2133.25, -746.83], [-2132.43, -707.91], [-2132.31, -702.5], [-2131.95, -685.27], [-2131.87, -681.74], [-2131.34, -656.3], [-2131.23, -651.3], [-2137.83, -650.98], [-2163.68, -649.69], [-2166.34, -649.56], [-2186.09, -648.58], [-2187.45, -648.51], [-2202.09, -647.77], [-2222.03, -646.79], [-2250.03, -645.4], [-2253.3, -645.24], [-2259.88, -644.85], [-2260.07, -649.76], [-2260.22, -654.23], [-2260.83, -678.78], [-2262.01, -724.02]], [[-2264.52, -888.04], [-2264.82, -895.0], [-2265.44, -925.95], [-2259.95, -926.21], [-2226.38, -926.96], [-2176.06, -928.92], [-2140.23, -929.98], [-2134.23, -930.16], [-2134.84, -903.39], [-2134.9, -899.18], [-2135.57, -877.51], [-2135.8, -870.11], [-2135.89, -867.11], [-2135.81, -864.56], [-2142.01, -864.27], [-2172.43, -862.86], [-2178.01, -862.6], [-2200.43, -861.57], [-2220.31, -860.66], [-2225.61, -860.41], [-2258.98, -857.84], [-2263.91, -857.68], [-2263.94, -859.57], [-2264.37, -880.38], [-2264.39, -881.38], [-2264.52, -888.04]], [[-2262.31, -1000.61], [-2138.44, -1004.09], [-2132.27, -1004.25], [-2132.27, -999.43], [-2134.07, -936.16], [-2140.41, -935.97], [-2176.27, -934.91], [-2226.56, -932.96], [-2260.15, -932.2], [-2265.6, -931.95], [-2266.99, -975.1], [-2267.25, -995.34], [-2267.32, -1000.48], [-2262.31, -1000.61]], [[-2268.87, -1060.27], [-2264.2, -1060.38], [-2173.97, -1062.63], [-2136.59, -1064.04], [-2131.6, -1064.23], [-2131.8, -1050.13], [-2132.17, -1015.49], [-2132.23, -1010.25], [-2138.6, -1010.08], [-2262.47, -1006.61], [-2267.44, -1006.48], [-2267.59, -1011.8], [-2268.57, -1048.97], [-2268.81, -1058.08], [-2268.87, -1060.27]], [[-2137.66, -1125.45], [-2132.26, -1125.59], [-2132.17, -1117.52], [-2131.86, -1092.01], [-2131.59, -1070.23], [-2136.81, -1070.03], [-2174.16, -1068.63], [-2264.34, -1066.38], [-2269.08, -1066.27], [-2271.16, -1113.98], [-2271.26, -1121.79], [-2265.76, -1121.94], [-2137.66, -1125.45]], [[-2273.88, -1242.47], [-2268.0, -1242.61], [-2265.99, -1242.66], [-2140.82, -1245.85], [-2135.49, -1246.0], [-2135.33, -1238.25], [-2134.32, -1189.01], [-2132.68, -1139.82], [-2132.4, -1131.59], [-2137.82, -1131.45], [-2265.92, -1127.94], [-2271.38, -1127.79], [-2271.58, -1135.65], [-2272.85, -1185.08], [-2273.74, -1234.44], [-2273.88, -1242.47]], [[-2277.85, -1358.07], [-2275.45, -1359.24], [-2273.34, -1361.3], [-2272.0, -1363.87], [-2271.84, -1363.88], [-2270.25, -1363.92], [-2143.98, -1367.33], [-2138.91, -1367.46], [-2138.7, -1359.21], [-2137.4, -1309.13], [-2135.91, -1260.66], [-2135.64, -1252.0], [-2140.98, -1251.85], [-2266.14, -1248.66], [-2268.14, -1248.61], [-2274.04, -1248.46], [-2274.3, -1256.47], [-2275.98, -1306.37], [-2277.77, -1355.77], [-2277.85, -1358.07]], [[-2583.75, -831.87], [-2588.32, -831.49], [-2602.3, -830.31], [-2606.15, -832.88], [-2608.36, -834.15], [-2611.06, -834.92], [-2614.43, -835.12], [-2617.39, -835.34], [-2623.99, -836.49], [-2599.73, -837.43], [-2593.2, -837.64], [-2584.69, -836.17], [-2579.97, -835.36], [-2583.75, -831.87]], [[-2616.91, -879.06], [-2622.29, -883.76], [-2622.35, -883.8], [-2619.81, -886.69], [-2617.96, -888.79], [-2600.47, -908.64], [-2592.92, -917.22], [-2567.65, -947.34], [-2563.88, -951.49], [-2558.49, -946.92], [-2451.45, -854.71], [-2450.53, -851.97], [-2450.46, -849.68], [-2495.54, -847.68], [-2504.66, -847.24], [-2518.39, -846.51], [-2563.12, -844.43], [-2562.79, -837.44], [-2563.01, -840.93], [-2574.44, -840.23], [-2584.45, -848.7], [-2603.44, -864.49], [-2604.31, -863.45], [-2609.6, -872.78], [-2616.91, -879.06]], [[-2565.32, -833.78], [-2562.63, -833.94], [-2562.51, -831.39], [-2565.32, -833.78]], [[-2447.03, -1107.57], [-2444.98, -1105.84], [-2440.84, -1102.33], [-2445.04, -1097.3], [-2470.29, -1066.98], [-2495.57, -1036.81], [-2499.38, -1032.26], [-2504.65, -1036.76], [-2509.3, -1040.72], [-2631.85, -1145.16], [-2636.5, -1149.25], [-2631.7, -1154.89], [-2606.71, -1184.23], [-2581.98, -1214.59], [-2578.45, -1218.91], [-2573.84, -1215.0], [-2447.03, -1107.57]], [[-2556.4, -1234.89], [-2546.61, -1235.12], [-2434.66, -1237.77], [-2428.82, -1237.91], [-2428.71, -1231.08], [-2428.67, -1229.15], [-2428.22, -1200.47], [-2427.42, -1150.76], [-2426.66, -1138.83], [-2425.73, -1131.5], [-2423.6, -1121.3], [-2424.74, -1120.79], [-2428.56, -1115.9], [-2433.15, -1111.06], [-2436.92, -1106.87], [-2441.1, -1110.42], [-2443.15, -1112.15], [-2569.96, -1219.58], [-2574.58, -1223.5], [-2570.45, -1228.23], [-2565.56, -1233.34], [-2564.53, -1234.07], [-2563.54, -1234.41], [-2562.74, -1234.58], [-2556.4, -1234.89]], [[-2422.82, -1238.07], [-2416.84, -1238.25], [-2290.17, -1242.0], [-2286.06, -1242.12], [-2279.88, -1242.3], [-2279.74, -1234.33], [-2278.85, -1184.95], [-2277.58, -1135.5], [-2277.38, -1127.65], [-2283.72, -1127.55], [-2349.77, -1125.55], [-2406.4, -1123.84], [-2413.53, -1123.63], [-2417.52, -1123.51], [-2417.91, -1123.39], [-2419.81, -1132.49], [-2420.68, -1139.4], [-2421.42, -1151.0], [-2422.22, -1200.56], [-2422.68, -1229.25], [-2422.71, -1231.17], [-2422.82, -1238.07]], [[-2490.39, -1346.98], [-2488.61, -1343.27], [-2483.29, -1334.85], [-2479.39, -1330.23], [-2473.19, -1325.54], [-2465.01, -1321.8], [-2456.02, -1318.62], [-2448.89, -1316.73], [-2437.09, -1315.43], [-2431.38, -1315.86], [-2431.34, -1314.27], [-2431.0, -1301.24], [-2429.27, -1252.03], [-2429.14, -1248.36], [-2428.98, -1243.91], [-2434.81, -1243.77], [-2546.75, -1241.11], [-2553.51, -1240.96], [-2553.52, -1250.97], [-2553.55, -1270.94], [-2554.28, -1298.69], [-2555.65, -1334.31], [-2555.97, -1352.32], [-2556.04, -1355.8], [-2549.82, -1356.0], [-2493.91, -1357.51], [-2493.44, -1354.84], [-2491.44, -1349.17], [-2490.39, -1346.98]], [[-2471.82, -1392.08], [-2466.12, -1395.17], [-2456.91, -1398.24], [-2449.27, -1400.3], [-2436.17, -1402.62], [-2429.94, -1402.75], [-2425.15, -1402.31], [-2417.0, -1401.25], [-2409.11, -1399.18], [-2402.09, -1396.2], [-2396.54, -1393.19], [-2390.17, -1388.02], [-2384.32, -1380.9], [-2381.1, -1374.07], [-2379.62, -1369.36], [-2379.17, -1363.83], [-2379.76, -1356.46], [-2380.38, -1354.4], [-2381.48, -1350.8], [-2383.99, -1344.95], [-2386.6, -1340.78], [-2389.52, -1337.46], [-2392.95, -1334.29], [-2396.52, -1331.44], [-2402.41, -1328.59], [-2407.18, -1326.98], [-2414.65, -1324.65], [-2420.25, -1323.43], [-2423.67, -1322.68], [-2428.76, -1322.07], [-2436.99, -1321.45], [-2447.79, -1322.65], [-2454.25, -1324.36], [-2462.76, -1327.36], [-2470.1, -1330.73], [-2475.24, -1334.61], [-2478.44, -1338.41], [-2483.35, -1346.18], [-2484.98, -1349.58], [-2485.89, -1351.47], [-2487.62, -1356.37], [-2488.4, -1360.79], [-2488.19, -1366.47], [-2487.23, -1370.07], [-2486.62, -1372.35], [-2483.95, -1378.39], [-2480.25, -1383.79], [-2477.08, -1387.37], [-2471.82, -1392.08]], [[-2283.85, -1358.08], [-2283.76, -1355.56], [-2281.98, -1306.16], [-2280.29, -1256.27], [-2280.03, -1248.3], [-2286.24, -1248.11], [-2290.35, -1248.0], [-2417.02, -1244.24], [-2422.98, -1244.07], [-2423.14, -1248.57], [-2423.27, -1252.24], [-2425.0, -1301.43], [-2425.34, -1314.43], [-2425.4, -1316.43], [-2422.68, -1316.75], [-2418.96, -1317.56], [-2413.12, -1318.85], [-2405.33, -1321.27], [-2400.13, -1323.03], [-2393.31, -1326.33], [-2389.04, -1329.73], [-2385.22, -1333.26], [-2381.77, -1337.19], [-2378.65, -1342.16], [-2375.84, -1348.74], [-2374.65, -1352.65], [-2373.83, -1355.33], [-2373.39, -1360.86], [-2371.45, -1360.87], [-2293.49, -1363.29], [-2290.28, -1363.34], [-2289.41, -1363.36], [-2288.17, -1361.15], [-2286.17, -1359.25], [-2283.85, -1358.08]], [[-2612.24, -1382.75], [-2614.41, -1384.57], [-2619.05, -1388.33], [-2615.02, -1393.25], [-2583.49, -1430.98], [-2572.63, -1444.03], [-2568.67, -1439.96], [-2566.43, -1437.64], [-2564.97, -1436.14], [-2563.91, -1418.8], [-2562.25, -1372.47], [-2562.13, -1369.03], [-2562.1, -1361.62], [-2586.03, -1360.93], [-2612.24, -1382.75]], [[-2278.25, -1368.79], [-2277.75, -1367.86], [-2277.58, -1366.81], [-2277.75, -1365.82], [-2278.22, -1364.92], [-2278.95, -1364.21], [-2279.86, -1363.76], [-2280.9, -1363.62], [-2281.83, -1363.78], [-2282.68, -1364.21], [-2283.38, -1364.87], [-2283.84, -1365.69], [-2284.04, -1366.62], [-2283.95, -1367.62], [-2283.56, -1368.53], [-2282.91, -1369.28], [-2282.05, -1369.8], [-2281.08, -1370.03], [-2280.01, -1369.94], [-2279.04, -1369.51], [-2278.25, -1368.79]], [[-2579.07, -1355.13], [-2562.04, -1355.62], [-2561.97, -1352.21], [-2561.77, -1340.72], [-2575.97, -1352.55], [-2579.07, -1355.13]], [[-2355.84, -900.82], [-2326.19, -875.84], [-2308.07, -858.97], [-2308.02, -858.12], [-2307.95, -855.85], [-2373.01, -853.15], [-2406.88, -851.75], [-2433.05, -850.43], [-2439.58, -850.14], [-2444.46, -849.94], [-2444.55, -853.04], [-2446.29, -858.18], [-2554.59, -951.48], [-2558.92, -955.15], [-2554.46, -960.19], [-2528.86, -989.14], [-2502.76, -1019.15], [-2498.72, -1023.79], [-2494.92, -1020.53], [-2489.98, -1016.28], [-2355.84, -900.82]], [[-2292.28, -975.46], [-2289.58, -973.84], [-2287.61, -973.05], [-2285.74, -972.4], [-2282.97, -972.0], [-2280.0, -971.62], [-2276.04, -971.65], [-2272.89, -971.85], [-2271.49, -928.74], [-2270.81, -894.81], [-2270.52, -887.85], [-2270.39, -881.26], [-2270.37, -880.26], [-2269.94, -859.47], [-2269.91, -857.42], [-2277.01, -857.02], [-2301.96, -856.08], [-2302.02, -858.37], [-2302.21, -861.72], [-2322.22, -880.34], [-2351.95, -905.38], [-2486.07, -1020.82], [-2491.01, -1025.07], [-2494.82, -1028.36], [-2490.97, -1032.96], [-2465.68, -1063.13], [-2440.43, -1093.46], [-2436.27, -1098.45], [-2431.45, -1094.32], [-2429.1, -1092.32], [-2292.28, -975.46]], [[-2349.59, -1119.55], [-2283.57, -1121.55], [-2277.26, -1121.65], [-2277.15, -1113.81], [-2274.95, -1063.09], [-2274.81, -1057.92], [-2274.57, -1048.81], [-2273.58, -1011.64], [-2273.36, -1003.35], [-2273.25, -995.26], [-2273.02, -977.85], [-2276.25, -977.65], [-2279.64, -977.62], [-2282.16, -977.95], [-2284.32, -978.25], [-2285.51, -978.67], [-2286.9, -979.23], [-2288.76, -980.34], [-2425.2, -1096.89], [-2427.55, -1098.89], [-2432.35, -1102.98], [-2428.74, -1106.99], [-2424.01, -1111.97], [-2420.93, -1115.92], [-2419.11, -1116.73], [-2416.53, -1117.54], [-2413.35, -1117.63], [-2406.22, -1117.85], [-2349.59, -1119.55]], [[-2568.19, -814.56], [-2576.56, -816.52], [-2585.07, -819.12], [-2590.27, -821.22], [-2593.35, -823.01], [-2596.46, -825.48], [-2597.87, -826.67], [-2587.98, -827.5], [-2582.05, -828.0], [-2577.42, -832.27], [-2567.56, -823.86], [-2561.92, -818.87], [-2557.63, -815.26], [-2561.83, -814.13], [-2564.88, -814.09], [-2568.19, -814.56]], [[-2561.27, -810.14], [-2553.91, -812.12], [-2553.38, -811.68], [-2552.74, -812.44], [-2552.53, -812.5], [-2552.63, -812.36], [-2537.38, -800.46], [-2555.01, -806.7], [-2567.27, -810.39], [-2565.14, -810.09], [-2561.27, -810.14]], [[-2544.21, -13.49], [-2544.49, -18.84], [-2537.92, -19.11], [-2512.64, -20.18], [-2440.28, -23.2], [-2437.37, -23.33], [-2367.64, -26.25], [-2365.23, -26.35], [-2359.86, -26.57], [-2360.01, -30.07], [-2359.86, -26.57], [-2337.4, -27.52], [-2337.55, -31.01], [-2337.4, -27.52], [-2331.74, -27.76], [-2328.46, -27.89], [-2314.39, -28.48], [-2298.41, -29.15], [-2291.0, -29.46], [-2217.45, -32.54], [-2206.98, -32.98], [-2134.43, -36.01], [-2113.95, -36.87], [-2110.08, -37.02], [-2027.85, -40.5], [-2020.81, -40.74], [-2020.54, -30.76], [-2018.96, -21.73], [-2015.71, -10.54], [-2012.44, -2.03], [-2002.96, 26.01], [-1993.93, 54.83], [-1990.88, 63.41], [-1997.78, 68.03], [-2007.33, 75.25], [-2020.0, 84.7], [-2033.01, 94.48], [-2039.78, 99.58], [-2046.05, 103.64], [-2053.73, 107.77], [-2063.75, 111.7], [-2070.66, 113.6], [-2078.19, 115.13], [-2085.97, 116.16], [-2100.54, 117.76], [-2119.96, 119.31], [-2130.94, 120.12], [-2141.3, 120.66], [-2151.76, 120.76], [-2163.75, 120.96], [-2177.55, 120.72], [-2206.04, 118.77], [-2228.0, 117.02], [-2245.0, 116.41], [-2265.85, 116.54], [-2276.45, 117.16], [-2287.68, 118.32], [-2303.47, 120.94], [-2318.32, 123.75], [-2342.54, 130.58], [-2365.01, 137.12], [-2383.17, 141.47], [-2393.25, 142.67], [-2411.74, 143.42], [-2423.28, 142.07], [-2430.72, 140.49], [-2441.15, 137.86], [-2448.08, 135.45], [-2457.24, 131.77], [-2475.84, 122.28], [-2482.99, 119.4], [-2496.78, 115.89], [-2504.32, 115.3], [-2531.84, 115.96], [-2537.86, 116.12], [-2538.02, 111.44], [-2538.22, 105.09], [-2538.35, 100.88], [-2544.21, -13.49]], [[-2291.49, -98.33], [-2297.49, -98.1], [-2297.15, -89.3], [-2296.6, -81.82], [-2294.28, -40.11], [-2294.21, -36.33], [-2298.7, -36.14], [-2314.69, -35.47], [-2328.75, -34.89], [-2332.04, -34.75], [-2335.95, -34.58], [-2336.2, -40.17], [-2336.32, -42.92], [-2337.5, -70.04], [-2339.25, -69.97], [-2337.5, -70.04], [-2338.67, -96.57], [-2338.91, -102.13], [-2339.29, -111.61], [-2339.99, -125.16], [-2340.5, -138.32], [-2341.08, -151.51], [-2341.58, -168.88], [-2343.23, -211.81], [-2343.35, -215.89], [-2333.75, -217.6], [-2318.83, -219.15], [-2298.28, -220.45], [-2249.11, -222.04], [-2249.34, -229.03], [-2249.02, -222.04], [-2236.68, -222.61], [-2232.81, -222.71], [-2215.94, -223.4], [-2123.74, -227.2], [-2115.51, -227.59], [-2111.66, -227.7], [-2108.44, -227.82], [-2075.23, -229.19], [-2072.65, -229.3], [-2029.16, -231.13], [-2017.47, -231.59], [-2019.8, -226.18], [-2020.35, -224.02], [-2020.58, -223.4], [-2023.68, -214.13], [-2024.54, -208.4], [-2025.15, -203.02], [-2025.42, -197.58], [-2023.75, -140.77], [-2023.69, -139.39], [-2023.43, -130.01], [-2022.38, -94.34], [-2021.48, -63.57], [-2021.39, -60.84], [-2021.01, -47.74], [-2028.12, -47.49], [-2110.37, -44.02], [-2114.24, -43.86], [-2134.72, -43.01], [-2207.27, -39.97], [-2217.74, -39.53], [-2288.21, -36.58], [-2288.28, -40.33], [-2290.62, -82.21], [-2291.16, -89.63], [-2291.49, -98.33]], [[-2297.55, -255.51], [-2297.58, -259.1], [-2297.65, -262.09], [-2296.49, -262.66], [-2263.34, -278.71], [-2259.92, -280.37], [-2258.34, -281.16], [-2258.24, -278.51], [-2256.86, -242.47], [-2256.7, -238.24], [-2256.61, -235.8], [-2297.08, -234.49], [-2297.16, -236.99], [-2297.25, -241.12], [-2297.55, -255.51]], [[-2549.68, -100.37], [-2550.11, -117.4], [-2550.12, -131.62], [-2549.0, -136.55], [-2546.84, -141.08], [-2545.05, -143.58], [-2540.16, -148.66], [-2535.65, -152.15], [-2525.3, -157.04], [-2511.13, -163.78], [-2451.43, -191.17], [-2428.27, -204.33], [-2415.83, -211.87], [-2415.53, -208.58], [-2412.88, -208.81], [-2407.39, -209.42], [-2369.73, -213.78], [-2369.29, -208.95], [-2368.56, -194.84], [-2367.18, -167.83], [-2366.48, -150.73], [-2366.45, -148.9], [-2365.35, -124.22], [-2364.81, -110.38], [-2364.43, -100.93], [-2363.14, -69.2], [-2361.39, -69.27], [-2363.14, -69.2], [-2361.89, -39.05], [-2361.81, -33.5], [-2365.53, -33.34], [-2367.94, -33.24], [-2437.67, -30.32], [-2440.58, -30.19], [-2512.94, -27.17], [-2538.21, -26.11], [-2546.66, -25.75], [-2547.21, -33.67], [-2548.11, -60.06], [-2548.36, -67.3], [-2549.0, -82.36], [-2549.56, -95.36], [-2549.68, -100.37]], [[-2350.47, -235.65], [-2338.08, -242.06], [-2301.11, -260.37], [-2301.08, -259.05], [-2301.05, -255.46], [-2300.75, -241.04], [-2300.66, -236.9], [-2300.58, -234.33], [-2319.99, -233.11], [-2335.71, -231.47], [-2346.42, -229.56], [-2369.51, -226.13], [-2369.25, -224.4], [-2396.33, -221.27], [-2408.24, -221.4], [-2413.72, -221.46], [-2428.55, -220.46], [-2441.85, -219.56], [-2461.98, -217.36], [-2477.16, -215.57], [-2488.04, -214.24], [-2498.27, -212.59], [-2510.78, -210.02], [-2519.27, -207.38], [-2528.32, -204.32], [-2540.2, -199.56], [-2545.43, -197.59], [-2552.4, -196.06], [-2557.94, -195.86], [-2565.1, -196.76], [-2565.68, -196.95], [-2559.83, -200.96], [-2551.73, -204.28], [-2537.18, -208.73], [-2522.95, -212.51], [-2502.44, -217.07], [-2478.63, -221.02], [-2478.49, -219.3], [-2432.23, -223.01], [-2413.63, -224.49], [-2379.4, -227.79], [-2363.44, -230.84], [-2357.89, -232.9], [-2350.47, -235.65]], [[-2361.31, -110.52], [-2361.79, -122.61], [-2343.4, -123.27], [-2342.79, -111.45], [-2342.4, -101.98], [-2342.16, -96.42], [-2341.08, -71.66], [-2359.71, -71.08], [-2360.93, -101.07], [-2361.31, -110.52]], [[-2362.96, -149.0], [-2362.98, -150.83], [-2363.68, -167.99], [-2365.06, -195.02], [-2365.8, -209.2], [-2366.1, -212.49], [-2346.84, -215.35], [-2346.73, -211.69], [-2345.08, -168.77], [-2344.57, -151.38], [-2344.0, -138.17], [-2343.56, -126.76], [-2349.51, -126.55], [-2361.93, -126.11], [-2362.96, -149.0]], [[-2339.81, -42.77], [-2339.69, -40.02], [-2339.45, -34.44], [-2358.31, -33.64], [-2358.4, -39.15], [-2359.57, -67.58], [-2340.93, -68.16], [-2339.81, -42.77]], [[-2405.07, 242.76], [-2405.24, 243.19], [-2406.66, 244.76], [-2408.71, 246.02], [-2411.49, 247.13], [-2414.12, 247.52], [-2417.25, 247.63], [-2420.27, 247.07], [-2422.73, 246.28], [-2424.31, 245.18], [-2425.65, 244.07], [-2427.45, 242.42], [-2428.69, 240.83], [-2429.44, 239.61], [-2430.33, 237.91], [-2431.23, 236.31], [-2426.8, 236.04], [-2417.23, 235.57], [-2412.29, 235.29], [-2407.28, 235.62], [-2406.35, 235.85], [-2406.05, 235.99], [-2405.68, 236.55], [-2404.87, 238.02], [-2404.46, 239.67], [-2404.57, 241.47], [-2405.07, 242.76]], [[-2117.01, -1734.52], [-2119.87, -1734.41], [-2119.99, -1738.39], [-2121.71, -1804.34], [-2122.29, -1824.43], [-2122.42, -1828.78], [-2122.45, -1837.62], [-2122.65, -1870.18], [-2124.11, -1880.93], [-2129.08, -1899.36], [-2130.37, -1904.29], [-2123.95, -1906.31], [-2101.5, -1914.53], [-2079.7, -1926.06], [-2051.49, -1943.93], [-2048.39, -1945.9], [-2028.74, -1958.35], [-2018.74, -1964.37], [-2014.21, -1967.09], [-1987.11, -1983.39], [-1959.25, -2000.0], [-1940.71, -2011.28], [-1924.24, -2019.89], [-1915.53, -2022.1], [-1904.92, -2022.39], [-1900.32, -2022.41], [-1900.39, -2016.8], [-1900.1, -2001.3], [-1896.1, -2001.38], [-1900.1, -2001.28], [-1899.76, -1987.51], [-1899.24, -1965.49], [-1903.66, -1943.63], [-1904.68, -1931.89], [-1904.86, -1907.46], [-1904.05, -1886.59], [-1900.05, -1838.83], [-1899.53, -1834.83], [-1898.3, -1825.15], [-1895.27, -1815.83], [-1894.71, -1797.89], [-1892.93, -1748.68], [-1892.71, -1742.69], [-1896.59, -1742.61], [-1922.09, -1742.05], [-2004.84, -1738.85], [-2117.01, -1734.52]], [[-2169.49, -1727.22], [-2129.2, -1728.15], [-2125.7, -1728.23], [-2125.58, -1722.35], [-2123.73, -1634.9], [-2123.14, -1618.32], [-2122.85, -1610.18], [-2119.86, -1610.29], [-2122.85, -1610.17], [-2122.56, -1602.62], [-2120.63, -1502.64], [-2120.47, -1494.32], [-2123.17, -1494.22], [-2138.29, -1493.73], [-2220.47, -1491.96], [-2220.69, -1500.26], [-2222.29, -1568.93], [-2218.82, -1569.0], [-2175.52, -1569.85], [-2175.64, -1575.85], [-2218.94, -1575.0], [-2222.43, -1574.93], [-2223.68, -1629.59], [-2220.51, -1629.67], [-2174.06, -1630.94], [-2174.23, -1636.94], [-2220.67, -1635.67], [-2223.8, -1635.59], [-2224.31, -1667.06], [-2226.22, -1720.05], [-2226.34, -1724.08], [-2226.25, -1725.82], [-2226.07, -1726.28], [-2226.04, -1726.28], [-2222.76, -1726.46], [-2169.49, -1727.22]], [[-2004.96, -651.57], [-1996.46, -651.99], [-1996.22, -645.66], [-1995.96, -639.22], [-1995.55, -622.53], [-1995.53, -621.72], [-1995.33, -611.77], [-1994.99, -594.9], [-1994.15, -552.83], [-1994.1, -550.41], [-1993.44, -517.8], [-1993.31, -507.21], [-1993.28, -505.28], [-1993.2, -499.43], [-1999.22, -499.14], [-2115.67, -493.42], [-2121.82, -493.08], [-2121.92, -497.87], [-2122.86, -541.4], [-2122.93, -544.67], [-2122.99, -547.68], [-2123.51, -571.71], [-2123.93, -591.06], [-2124.43, -614.09], [-2124.97, -639.34], [-2125.11, -645.6], [-2119.28, -645.89], [-2086.13, -647.54], [-2075.25, -648.07], [-2030.69, -650.28], [-2004.96, -651.57]], [[-2007.77, -1067.93], [-1999.69, -1068.03], [-1999.73, -1071.03], [-1999.63, -1068.03], [-1991.75, -1068.28], [-1957.46, -1069.07], [-1957.42, -1067.59], [-1957.41, -1067.16], [-1956.08, -1019.4], [-1955.97, -1015.4], [-2001.65, -1014.07], [-2007.83, -1013.89], [-2120.14, -1010.6], [-2126.23, -1010.42], [-2126.17, -1015.42], [-2125.8, -1050.05], [-2125.6, -1064.46], [-2120.46, -1064.66], [-2109.09, -1065.04], [-2060.23, -1066.7], [-2054.4, -1066.83], [-2036.2, -1067.36], [-2007.77, -1067.93]], [[-2004.72, -1134.95], [-2009.86, -1134.82], [-2019.31, -1134.47], [-2041.14, -1134.0], [-2121.94, -1131.91], [-2126.4, -1131.77], [-2126.68, -1140.02], [-2128.32, -1189.17], [-2129.33, -1238.37], [-2129.49, -1246.16], [-2124.67, -1246.3], [-2012.25, -1248.95], [-2007.45, -1249.1], [-2007.28, -1241.32], [-2006.22, -1192.13], [-2004.94, -1143.22], [-2004.72, -1134.95]], [[-2007.77, -1263.76], [-2007.58, -1255.1], [-2012.41, -1254.95], [-2124.83, -1252.29], [-2129.65, -1252.16], [-2129.91, -1260.85], [-2131.4, -1309.3], [-2132.7, -1359.36], [-2132.91, -1367.62], [-2127.6, -1367.75], [-2015.57, -1370.58], [-2010.49, -1370.67], [-2010.2, -1364.85], [-2010.14, -1362.17], [-2009.62, -1339.05], [-2008.87, -1312.3], [-2007.77, -1263.76]], [[-2002.89, -1076.07], [-2002.82, -1074.0], [-2007.87, -1073.93], [-2036.35, -1073.36], [-2054.56, -1072.83], [-2060.4, -1072.69], [-2109.29, -1071.03], [-2120.67, -1070.65], [-2125.6, -1070.46], [-2125.86, -1092.08], [-2126.17, -1117.59], [-2126.27, -1125.77], [-2121.76, -1125.92], [-2041.0, -1128.0], [-2019.14, -1128.47], [-2009.67, -1128.82], [-2004.55, -1128.96], [-2004.29, -1120.82], [-2004.21, -1118.14], [-2002.89, -1076.07]], [[-2122.42, -930.31], [-2032.58, -932.85], [-2007.95, -933.33], [-2003.0, -933.56], [-2002.34, -908.23], [-2002.01, -896.47], [-2001.69, -883.19], [-2001.65, -881.62], [-2001.48, -874.49], [-2001.45, -873.06], [-2001.44, -870.77], [-2007.11, -870.51], [-2023.07, -869.76], [-2024.75, -869.69], [-2071.33, -867.53], [-2105.03, -865.98], [-2124.27, -865.09], [-2129.82, -864.83], [-2129.89, -867.11], [-2129.8, -869.92], [-2129.57, -877.32], [-2128.9, -899.04], [-2128.84, -903.27], [-2128.22, -930.27], [-2122.42, -930.31]], [[-2000.1, -794.18], [-1999.67, -782.55], [-1999.2, -758.94], [-1999.12, -756.7], [-2006.14, -756.34], [-2032.1, -754.99], [-2065.77, -753.25], [-2065.79, -754.45], [-2066.3, -779.26], [-2066.55, -791.5], [-2066.81, -804.25], [-2067.23, -824.08], [-2067.79, -851.3], [-2067.84, -853.68], [-2024.14, -855.71], [-2022.45, -855.78], [-2006.46, -856.53], [-2001.3, -856.76], [-2001.27, -854.51], [-2001.13, -846.75], [-2000.47, -807.52], [-2000.1, -794.18]], [[-2126.27, -999.34], [-2126.27, -1004.42], [-2119.97, -1004.61], [-2007.66, -1007.9], [-2004.5, -1007.99], [-2004.42, -1004.19], [-2003.13, -939.56], [-2008.15, -939.33], [-2032.72, -938.84], [-2122.52, -936.31], [-2128.07, -936.27], [-2126.27, -999.34]], [[-2129.46, -850.83], [-2123.63, -851.11], [-2104.38, -851.99], [-2073.84, -853.4], [-2073.79, -851.17], [-2073.23, -823.96], [-2072.81, -804.13], [-2072.55, -791.38], [-2072.3, -779.13], [-2071.79, -754.33], [-2071.76, -752.94], [-2092.88, -751.83], [-2121.62, -750.34], [-2127.32, -750.05], [-2127.89, -776.69], [-2128.4, -800.97], [-2128.65, -812.86], [-2128.82, -820.88], [-2129.08, -832.97], [-2129.36, -846.09], [-2129.41, -848.74], [-2129.46, -850.83]], [[-2005.26, -657.56], [-2030.99, -656.28], [-2075.55, -654.06], [-2086.43, -653.53], [-2119.57, -651.88], [-2125.24, -651.6], [-2125.34, -656.43], [-2125.88, -681.86], [-2125.95, -685.4], [-2126.32, -702.62], [-2126.43, -708.03], [-2127.19, -744.05], [-2121.31, -744.35], [-2092.56, -745.84], [-2068.54, -747.1], [-2031.79, -749.0], [-2005.83, -750.35], [-1998.91, -750.71], [-1997.34, -704.25], [-1997.61, -677.21], [-1997.46, -665.69], [-1996.82, -657.98], [-2005.26, -657.56]], [[-2178.84, -483.28], [-2162.96, -484.07], [-2133.7, -485.51], [-2127.64, -485.78], [-2127.47, -479.83], [-2126.47, -459.05], [-2120.47, -459.34], [-2121.47, -480.06], [-2121.64, -486.08], [-2115.31, -486.42], [-1998.88, -492.14], [-1993.56, -492.4], [-1993.43, -487.12], [-1993.34, -483.45], [-1992.86, -464.55], [-1993.01, -442.66], [-1991.38, -405.79], [-1991.28, -402.23], [-1990.87, -385.83], [-1990.74, -381.07], [-1990.63, -376.63], [-1998.78, -376.06], [-2002.37, -375.84], [-2016.97, -374.91], [-2050.5, -373.13], [-2058.87, -372.49], [-2071.58, -371.21], [-2088.81, -368.54], [-2100.97, -365.77], [-2112.17, -363.07], [-2120.95, -360.34], [-2129.27, -357.93], [-2144.83, -352.22], [-2162.81, -344.56], [-2209.18, -321.22], [-2206.91, -316.72], [-2206.92, -316.72], [-2208.4, -319.65], [-2214.13, -316.74], [-2214.81, -316.74], [-2222.12, -318.15], [-2226.66, -320.94], [-2230.28, -323.45], [-2233.88, -326.35], [-2237.85, -332.01], [-2239.51, -335.17], [-2240.13, -336.69], [-2241.61, -341.55], [-2242.68, -344.4], [-2243.74, -346.59], [-2246.82, -352.55], [-2247.01, -356.03], [-2248.58, -355.94], [-2248.66, -356.1], [-2247.04, -356.32], [-2247.53, -359.86], [-2248.29, -369.68], [-2249.43, -384.3], [-2250.52, -396.55], [-2251.43, -409.97], [-2252.2, -412.75], [-2254.74, -418.26], [-2254.08, -418.26], [-2254.26, -448.28], [-2254.43, -472.95], [-2254.46, -479.2], [-2249.39, -479.73], [-2183.51, -483.05], [-2178.84, -483.28]], [[-2121.69, -344.02], [-2119.13, -248.22], [-2119.0, -243.39], [-2118.95, -241.44], [-2124.36, -241.18], [-2216.52, -237.39], [-2233.28, -236.7], [-2237.19, -236.6], [-2242.62, -236.35], [-2242.71, -238.78], [-2242.87, -243.0], [-2244.25, -279.04], [-2244.42, -283.4], [-2244.66, -289.78], [-2237.3, -293.22], [-2203.67, -310.27], [-2202.88, -308.71], [-2156.91, -331.86], [-2139.67, -339.21], [-2124.91, -344.62], [-2121.73, -345.54], [-2121.69, -344.02]], [[-2001.49, -361.86], [-1997.86, -362.09], [-1990.72, -362.59], [-1990.64, -360.21], [-1990.55, -356.45], [-1989.5, -311.37], [-1989.34, -296.38], [-1990.16, -283.97], [-1991.6, -277.33], [-1993.93, -270.48], [-1996.29, -265.42], [-1998.05, -262.4], [-2000.23, -259.43], [-2003.61, -255.28], [-2006.45, -252.19], [-2011.01, -246.43], [-2011.33, -245.83], [-2029.73, -245.12], [-2073.23, -243.28], [-2075.81, -243.18], [-2109.01, -241.81], [-2112.14, -241.69], [-2112.96, -241.67], [-2113.01, -243.55], [-2113.14, -248.38], [-2115.69, -344.18], [-2115.77, -347.29], [-2108.44, -349.56], [-2097.77, -352.14], [-2086.18, -354.78], [-2069.81, -357.32], [-2057.64, -358.55], [-2049.6, -359.16], [-2016.16, -360.93], [-2001.49, -361.86]], [[-2257.4, -362.83], [-2257.63, -368.85], [-2258.19, -384.52], [-2258.35, -396.82], [-2258.35, -408.55], [-2257.5, -396.01], [-2256.41, -383.71], [-2255.27, -369.14], [-2254.5, -359.21], [-2253.39, -359.3], [-2253.51, -359.14], [-2254.47, -359.01], [-2254.36, -358.16], [-2256.54, -356.07], [-2257.09, -355.86], [-2257.4, -362.83]], [[-2252.72, -297.81], [-2253.21, -298.64], [-2253.73, -301.15], [-2254.15, -308.99], [-2254.48, -317.55], [-2256.23, -345.17], [-2256.88, -352.18], [-2254.63, -353.06], [-2253.9, -353.75], [-2253.46, -345.49], [-2252.73, -323.84], [-2252.17, -313.32], [-2251.64, -305.27], [-2251.61, -301.77], [-2251.82, -300.16], [-2252.3, -298.6], [-2252.72, -297.81]], [[-2244.6, -301.4], [-2244.64, -305.54], [-2245.18, -313.73], [-2245.73, -324.14], [-2246.41, -344.08], [-2245.9, -343.02], [-2244.92, -340.43], [-2243.43, -335.53], [-2242.69, -333.69], [-2240.84, -330.19], [-2236.46, -323.93], [-2232.38, -320.65], [-2228.58, -318.01], [-2223.41, -314.84], [-2219.41, -314.06], [-2241.9, -302.66], [-2244.6, -301.4]], [[-1872.69, -2070.47], [-1868.25, -2068.34], [-1864.73, -2066.65], [-1778.92, -2020.0], [-1774.75, -2017.73], [-1776.95, -2013.63], [-1778.06, -2011.63], [-1806.04, -1961.09], [-1807.31, -1958.79], [-1808.74, -1956.04], [-1810.99, -1957.23], [-1851.72, -1980.15], [-1882.27, -1997.65], [-1884.73, -1999.07], [-1892.13, -2002.75], [-1892.39, -2016.83], [-1892.29, -2025.23], [-1891.66, -2032.18], [-1887.98, -2049.2], [-1882.31, -2057.63], [-1877.41, -2064.96], [-1875.92, -2066.79], [-1872.69, -2070.47]], [[-1703.02, -2296.24], [-1680.36, -2286.92], [-1640.99, -2274.07], [-1628.7, -2270.05], [-1637.83, -2261.43], [-1646.12, -2249.79], [-1668.66, -2208.89], [-1701.12, -2152.49], [-1728.85, -2101.21], [-1768.26, -2029.6], [-1770.92, -2024.76], [-1775.1, -2027.03], [-1861.09, -2073.78], [-1864.8, -2075.55], [-1867.26, -2076.73], [-1862.9, -2081.8], [-1844.73, -2102.88], [-1799.65, -2153.26], [-1770.75, -2190.61], [-1756.19, -2211.0], [-1731.21, -2252.77], [-1712.15, -2291.13], [-1708.65, -2298.51], [-1703.02, -2296.24]], [[-1697.16, -1974.98], [-1691.35, -1971.87], [-1693.1, -1968.65], [-1693.89, -1967.2], [-1724.02, -1912.1], [-1724.57, -1911.09], [-1729.26, -1913.66], [-1764.51, -1932.98], [-1801.66, -1952.31], [-1803.43, -1953.23], [-1802.02, -1955.95], [-1800.79, -1958.19], [-1772.81, -2008.72], [-1771.69, -2010.75], [-1769.5, -2014.82], [-1765.45, -2012.53], [-1732.14, -1993.71], [-1697.16, -1974.98]], [[-1894.28, -1865.76], [-1896.06, -1887.08], [-1896.86, -1907.58], [-1896.68, -1931.51], [-1896.07, -1938.55], [-1896.05, -1938.21], [-1894.61, -1887.1], [-1894.28, -1865.76]], [[-1608.93, -2868.22], [-1629.81, -2902.97], [-1623.79, -2904.58], [-1620.9, -2905.43], [-1611.89, -2907.86], [-1597.37, -2909.96], [-1579.75, -2908.66], [-1568.53, -2909.5], [-1560.08, -2910.48], [-1552.22, -2912.12], [-1536.13, -2915.08], [-1495.99, -2923.3], [-1443.46, -2933.31], [-1412.98, -2939.61], [-1397.11, -2942.23], [-1388.59, -2943.64], [-1384.7, -2944.29], [-1246.23, -2969.55], [-1206.26, -2976.84], [-1127.88, -2991.96], [-1124.38, -2992.37], [-1120.11, -2992.79], [-1119.59, -2984.0], [-1119.56, -2963.43], [-1119.51, -2957.44], [-1119.04, -2948.45], [-1124.81, -2947.58], [-1211.55, -2931.66], [-1266.26, -2921.42], [-1296.66, -2915.55], [-1354.45, -2904.4], [-1371.15, -2901.16], [-1414.07, -2892.88], [-1422.97, -2891.16], [-1436.29, -2888.61], [-1439.42, -2888.01], [-1473.99, -2879.89], [-1509.97, -2869.02], [-1525.45, -2861.25], [-1559.53, -2835.82], [-1558.61, -2834.59], [-1558.64, -2834.59], [-1559.87, -2836.2], [-1562.92, -2833.86], [-1569.64, -2832.72], [-1573.69, -2832.6], [-1576.49, -2833.19], [-1582.07, -2835.64], [-1588.73, -2839.58], [-1598.6, -2845.69], [-1600.86, -2849.67], [-1603.04, -2848.43], [-1603.07, -2848.45], [-1598.75, -2851.01], [-1608.93, -2868.22]], [[-1457.43, 20.44], [-1549.56, 24.85], [-1554.71, 25.11], [-1554.89, 20.49], [-1555.39, 7.88], [-1559.65, -71.79], [-1560.41, -94.46], [-1560.48, -98.42], [-1562.19, -154.55], [-1558.69, -154.62], [-1559.87, -218.2], [-1559.71, -241.05], [-1559.73, -246.12], [-1559.69, -252.4], [-1554.72, -252.62], [-1549.81, -252.83], [-1488.22, -255.56], [-1448.8, -257.32], [-1440.07, -257.64], [-1431.98, -258.14], [-1389.13, -260.44], [-1320.62, -264.19], [-1311.99, -264.14], [-1311.92, -258.72], [-1310.08, -218.58], [-1308.71, -188.73], [-1305.84, -139.18], [-1305.41, -128.06], [-1305.08, -120.74], [-1303.55, -93.02], [-1301.45, -83.68], [-1300.54, -75.74], [-1297.89, -25.96], [-1296.61, -1.97], [-1296.13, 7.32], [-1295.83, 12.5], [-1301.45, 13.31], [-1413.02, 18.3], [-1457.43, 20.44]], [[-1432.79, -272.12], [-1440.76, -271.62], [-1449.37, -271.31], [-1488.84, -269.55], [-1550.42, -266.82], [-1555.33, -266.61], [-1560.88, -266.36], [-1560.46, -267.68], [-1559.32, -271.75], [-1558.3, -277.85], [-1559.77, -309.07], [-1560.61, -327.03], [-1562.6, -346.36], [-1566.68, -366.99], [-1569.87, -380.44], [-1570.88, -385.27], [-1566.7, -385.48], [-1499.11, -388.81], [-1455.64, -390.97], [-1446.68, -391.4], [-1438.66, -391.8], [-1400.14, -393.7], [-1378.69, -394.77], [-1326.13, -397.36], [-1323.67, -397.48], [-1323.17, -392.17], [-1321.34, -364.71], [-1320.91, -355.32], [-1320.52, -350.1], [-1320.34, -346.13], [-1320.28, -344.64], [-1317.38, -285.58], [-1317.35, -281.64], [-1317.34, -278.17], [-1320.96, -278.19], [-1389.89, -274.42], [-1432.79, -272.12]], [[-1400.66, -404.19], [-1439.17, -402.28], [-1447.19, -401.89], [-1456.15, -401.45], [-1499.62, -399.3], [-1567.22, -395.96], [-1572.88, -395.68], [-1573.93, -401.8], [-1575.92, -415.23], [-1580.48, -483.34], [-1582.08, -506.9], [-1582.51, -513.27], [-1574.72, -513.74], [-1574.1, -513.77], [-1519.87, -516.45], [-1460.92, -519.36], [-1453.06, -519.73], [-1443.33, -520.23], [-1333.73, -525.81], [-1326.71, -526.17], [-1326.31, -519.53], [-1326.11, -516.27], [-1320.42, -413.43], [-1319.68, -408.2], [-1326.65, -407.85], [-1379.21, -405.26], [-1400.66, -404.19]], [[-1453.4, -526.72], [-1461.25, -526.35], [-1520.22, -523.44], [-1574.44, -520.76], [-1575.09, -520.73], [-1582.94, -520.26], [-1583.28, -526.26], [-1584.83, -553.61], [-1587.55, -601.81], [-1590.94, -636.08], [-1591.86, -646.64], [-1592.13, -649.21], [-1595.6, -689.14], [-1596.07, -697.76], [-1599.56, -697.58], [-1594.57, -697.85], [-1597.75, -755.23], [-1598.08, -761.63], [-1603.08, -761.37], [-1598.1, -761.83], [-1598.24, -763.41], [-1599.41, -789.48], [-1599.72, -833.63], [-1599.75, -847.05], [-1600.54, -872.46], [-1600.67, -875.32], [-1597.68, -875.4], [-1474.54, -881.41], [-1474.37, -876.79], [-1473.42, -858.09], [-1472.03, -827.14], [-1471.89, -824.08], [-1471.22, -809.23], [-1470.64, -796.51], [-1464.65, -796.78], [-1465.23, -809.5], [-1465.9, -824.35], [-1466.03, -827.41], [-1467.43, -858.38], [-1468.37, -877.05], [-1468.54, -881.64], [-1467.99, -881.64], [-1468.02, -884.59], [-1463.99, -882.27], [-1457.38, -880.29], [-1381.6, -875.17], [-1365.38, -875.74], [-1346.27, -876.87], [-1330.32, -879.02], [-1316.29, -882.11], [-1289.56, -891.25], [-1271.63, -899.13], [-1258.07, -905.39], [-1221.2, -921.17], [-1221.88, -922.77], [-1221.86, -922.77], [-1221.16, -921.18], [-1206.01, -927.88], [-1165.67, -940.89], [-1148.79, -942.8], [-1143.45, -942.87], [-1136.8, -941.18], [-1129.99, -938.2], [-1114.2, -924.89], [-1101.0, -915.99], [-1093.57, -913.36], [-1090.86, -910.84], [-1089.78, -912.01], [-1089.72, -911.99], [-1090.78, -910.77], [-1074.79, -896.8], [-1067.01, -889.92], [-1058.06, -882.1], [-1038.27, -865.13], [-1030.63, -864.57], [-1032.35, -862.61], [-1031.15, -861.56], [-1027.87, -858.67], [-1015.91, -848.16], [-1014.12, -846.59], [-979.02, -815.72], [-968.22, -806.23], [-956.61, -796.02], [-947.02, -787.59], [-929.84, -772.49], [-924.97, -768.21], [-931.45, -761.09], [-932.66, -759.75], [-974.79, -713.2], [-977.55, -710.12], [-1002.48, -682.59], [-1005.96, -678.75], [-1010.09, -682.51], [-1012.17, -684.41], [-1051.39, -720.23], [-1056.11, -715.06], [-1016.89, -679.24], [-1014.81, -677.34], [-1010.65, -673.56], [-1014.74, -669.04], [-1047.7, -632.35], [-1050.28, -628.65], [-1052.1, -624.99], [-1053.45, -620.16], [-1053.79, -614.28], [-1053.53, -605.48], [-1053.53, -603.45], [-1053.11, -583.81], [-1052.53, -554.51], [-1052.48, -551.97], [-1052.34, -547.07], [-1055.54, -546.92], [-1086.59, -545.36], [-1096.28, -544.87], [-1106.05, -544.38], [-1144.56, -542.43], [-1183.81, -540.47], [-1187.59, -540.27], [-1187.83, -545.25], [-1187.97, -547.94], [-1190.15, -592.37], [-1190.45, -597.12], [-1194.61, -677.91], [-1195.63, -699.72], [-1194.33, -707.61], [-1201.24, -708.74], [-1202.65, -700.13], [-1201.6, -677.57], [-1197.44, -596.72], [-1197.14, -591.97], [-1194.96, -547.58], [-1194.82, -544.9], [-1194.58, -539.81], [-1201.07, -539.27], [-1313.37, -533.86], [-1318.18, -533.61], [-1323.6, -533.34], [-1334.08, -532.8], [-1443.69, -527.22], [-1453.4, -526.72]], [[-1292.11, -897.78], [-1318.19, -888.86], [-1331.55, -885.92], [-1346.95, -883.84], [-1365.71, -882.74], [-1381.49, -882.17], [-1456.12, -887.22], [-1456.95, -887.47], [-1456.4, -887.6], [-1423.98, -888.74], [-1365.97, -891.82], [-1345.53, -893.27], [-1330.33, -895.1], [-1314.92, -898.31], [-1299.4, -903.5], [-1277.68, -912.47], [-1201.55, -942.57], [-1203.39, -947.22], [-1201.41, -942.63], [-1159.71, -960.61], [-1152.0, -964.71], [-1147.56, -961.18], [-1152.84, -959.06], [-1223.97, -927.59], [-1260.92, -911.79], [-1274.5, -905.51], [-1292.11, -897.78]], [[-1317.54, -907.98], [-1331.95, -904.98], [-1346.48, -903.23], [-1366.59, -901.8], [-1424.42, -898.73], [-1457.78, -897.56], [-1464.23, -895.98], [-1465.48, -895.43], [-1468.12, -894.16], [-1468.13, -895.64], [-1470.03, -895.62], [-1472.08, -895.54], [-1471.8, -888.55], [-1472.14, -895.54], [-1598.19, -889.39], [-1601.07, -889.32], [-1601.4, -896.38], [-1602.28, -917.17], [-1601.91, -928.94], [-1601.14, -940.5], [-1600.39, -952.73], [-1597.71, -985.71], [-1596.99, -1006.74], [-1596.79, -1011.39], [-1596.13, -1025.78], [-1596.04, -1027.64], [-1591.95, -1027.51], [-1550.71, -1027.67], [-1508.66, -1019.93], [-1492.02, -1016.94], [-1471.56, -1016.59], [-1465.56, -1016.96], [-1416.35, -1017.2], [-1405.68, -1016.43], [-1382.43, -1016.48], [-1373.2, -1016.77], [-1369.79, -1025.08], [-1369.83, -1036.01], [-1370.72, -1040.61], [-1370.72, -1047.23], [-1371.09, -1095.39], [-1370.81, -1098.6], [-1370.3, -1101.9], [-1369.67, -1104.9], [-1368.9, -1107.85], [-1367.97, -1110.68], [-1366.95, -1113.23], [-1365.88, -1115.51], [-1364.72, -1117.65], [-1363.4, -1119.65], [-1362.14, -1121.29], [-1360.58, -1123.05], [-1350.76, -1133.77], [-1345.95, -1138.93], [-1251.97, -1053.9], [-1243.88, -1046.58], [-1218.52, -1023.64], [-1178.08, -987.05], [-1176.74, -985.82], [-1175.11, -979.87], [-1175.23, -977.13], [-1176.43, -972.24], [-1180.02, -967.65], [-1194.66, -956.42], [-1205.29, -951.84], [-1281.42, -921.75], [-1302.9, -912.88], [-1317.54, -907.98]], [[-1471.55, -1261.99], [-1472.61, -1260.82], [-1472.61, -1260.82], [-1471.55, -1261.99], [-1474.15, -1264.35], [-1479.5, -1276.57], [-1482.14, -1281.9], [-1484.05, -1286.24], [-1484.06, -1286.28], [-1374.45, -1187.26], [-1337.48, -1153.86], [-1328.92, -1146.13], [-1278.66, -1100.72], [-1240.71, -1066.43], [-1232.32, -1058.85], [-1198.08, -1027.92], [-1171.16, -1003.6], [-1148.38, -980.88], [-1146.08, -978.85], [-1153.77, -975.04], [-1159.88, -979.83], [-1173.35, -992.21], [-1175.72, -989.63], [-1173.37, -992.23], [-1213.82, -1028.83], [-1239.18, -1051.77], [-1247.28, -1059.09], [-1343.44, -1146.1], [-1345.79, -1143.5], [-1343.44, -1146.1], [-1381.75, -1180.75], [-1471.55, -1261.99]], [[-1434.55, -2071.65], [-1455.83, -2083.63], [-1459.42, -2085.59], [-1454.82, -2093.44], [-1443.35, -2113.88], [-1436.54, -2125.92], [-1415.62, -2162.92], [-1409.03, -2163.16], [-1406.03, -2163.26], [-1400.13, -2163.48], [-1394.2, -2163.69], [-1390.97, -2163.81], [-1361.19, -2164.89], [-1351.63, -2165.23], [-1189.5, -2174.82], [-1183.72, -2175.16], [-1183.37, -2169.02], [-1178.11, -2075.19], [-1177.94, -2071.91], [-1204.64, -2074.09], [-1268.33, -2083.61], [-1308.17, -2086.83], [-1316.24, -2086.83], [-1334.38, -2083.35], [-1349.94, -2078.21], [-1359.24, -2072.95], [-1368.95, -2065.97], [-1378.76, -2058.05], [-1389.67, -2045.85], [-1393.91, -2048.2], [-1428.72, -2068.43], [-1434.55, -2071.65]], [[-1359.21, -2262.52], [-1351.28, -2276.52], [-1346.45, -2285.07], [-1341.85, -2284.66], [-1339.76, -2284.47], [-1331.66, -2283.75], [-1292.73, -2285.34], [-1189.17, -2290.24], [-1188.9, -2284.41], [-1186.57, -2235.63], [-1184.31, -2187.12], [-1184.08, -2182.15], [-1189.92, -2181.81], [-1351.96, -2172.22], [-1361.44, -2171.89], [-1391.22, -2170.8], [-1394.45, -2170.69], [-1400.38, -2170.47], [-1406.28, -2170.26], [-1409.28, -2170.15], [-1411.57, -2170.07], [-1406.54, -2178.97], [-1400.39, -2189.81], [-1359.21, -2262.52]], [[-1311.89, -2348.02], [-1280.39, -2401.66], [-1275.88, -2401.47], [-1266.93, -2401.08], [-1262.48, -2400.88], [-1249.75, -2400.32], [-1238.84, -2400.76], [-1233.7, -2401.2], [-1200.48, -2404.02], [-1192.34, -2404.71], [-1192.19, -2399.5], [-1192.11, -2396.87], [-1190.74, -2348.88], [-1189.39, -2296.24], [-1292.99, -2291.33], [-1331.52, -2289.76], [-1339.23, -2290.45], [-1341.32, -2290.63], [-1343.29, -2290.81], [-1318.99, -2335.55], [-1316.29, -2340.51], [-1311.89, -2348.02]], [[-1073.07, -2192.53], [-1072.87, -2187.65], [-1078.48, -2187.31], [-1131.18, -2184.2], [-1171.91, -2182.67], [-1178.09, -2182.44], [-1178.32, -2187.4], [-1180.58, -2235.92], [-1182.91, -2284.69], [-1183.18, -2290.53], [-1077.46, -2295.55], [-1077.22, -2289.94], [-1073.07, -2192.53]], [[-936.17, -2366.07], [-937.24, -2409.02], [-937.31, -2411.79], [-937.52, -2417.04], [-931.99, -2417.33], [-823.52, -2422.52], [-817.37, -2419.47], [-789.82, -2420.74], [-782.69, -2421.17], [-773.79, -2421.63], [-753.64, -2422.59], [-750.67, -2422.74], [-750.57, -2420.85], [-750.34, -2418.42], [-737.42, -2306.71], [-733.57, -2276.26], [-728.12, -2231.4], [-726.65, -2204.91], [-726.4, -2200.27], [-730.08, -2200.14], [-777.61, -2198.96], [-892.68, -2195.28], [-899.54, -2194.94], [-905.36, -2194.79], [-969.51, -2192.03], [-1060.55, -2188.24], [-1066.88, -2187.96], [-1067.08, -2192.78], [-1071.22, -2290.2], [-1071.46, -2295.85], [-987.17, -2300.29], [-934.58, -2302.61], [-936.17, -2366.07]], [[-1079.64, -2417.31], [-1079.48, -2413.81], [-1079.65, -2417.31], [-1183.06, -2412.28], [-1189.61, -2411.96], [-1189.44, -2408.46], [-1189.74, -2411.95], [-1201.07, -2410.99], [-1234.3, -2408.18], [-1239.28, -2407.75], [-1249.73, -2407.33], [-1262.17, -2407.88], [-1266.62, -2408.07], [-1275.57, -2408.46], [-1276.59, -2408.5], [-1272.43, -2416.12], [-1247.95, -2461.01], [-1239.28, -2476.49], [-1220.16, -2509.88], [-1212.95, -2521.68], [-1206.52, -2521.68], [-1204.39, -2521.67], [-1198.39, -2521.67], [-1188.05, -2521.65], [-1170.65, -2522.5], [-1096.45, -2526.13], [-1068.38, -2527.93], [-954.2, -2533.56], [-948.19, -2533.86], [-947.95, -2527.81], [-947.82, -2524.55], [-944.09, -2432.35], [-943.98, -2429.57], [-943.78, -2423.74], [-948.42, -2423.54], [-1001.36, -2420.89], [-1079.64, -2417.31]], [[-1096.79, -2532.12], [-1170.94, -2528.5], [-1188.19, -2527.65], [-1198.38, -2527.67], [-1204.38, -2527.67], [-1206.51, -2527.68], [-1209.29, -2527.68], [-1203.98, -2536.39], [-1198.15, -2545.92], [-1180.39, -2584.0], [-1174.76, -2596.04], [-1173.68, -2598.58], [-1169.33, -2608.74], [-1161.76, -2626.4], [-1151.75, -2653.18], [-1143.94, -2649.04], [-1142.53, -2651.69], [-1143.93, -2649.03], [-1133.55, -2643.58], [-1130.15, -2643.6], [-1127.94, -2643.54], [-1123.82, -2643.46], [-1081.62, -2643.33], [-1038.53, -2644.62], [-959.55, -2647.89], [-954.43, -2648.1], [-954.19, -2643.74], [-953.95, -2639.4], [-951.54, -2595.49], [-948.99, -2549.29], [-948.8, -2545.78], [-948.48, -2539.85], [-954.5, -2539.55], [-1068.72, -2533.92], [-1096.79, -2532.12]], [[-1081.7, -2649.33], [-1123.75, -2649.46], [-1127.8, -2649.54], [-1130.08, -2649.6], [-1132.09, -2649.59], [-1137.79, -2652.59], [-1130.91, -2660.52], [-1112.75, -2681.03], [-1090.6, -2707.73], [-1085.42, -2714.45], [-1062.13, -2744.71], [-1052.98, -2762.13], [-1044.18, -2761.92], [-1040.34, -2761.83], [-1033.37, -2761.67], [-965.63, -2764.97], [-959.12, -2765.29], [-958.92, -2760.02], [-958.79, -2756.35], [-957.04, -2710.4], [-955.21, -2666.11], [-955.02, -2661.44], [-954.72, -2654.09], [-959.8, -2653.88], [-1038.75, -2650.62], [-1081.7, -2649.33]], [[-1040.2, -2767.83], [-1044.03, -2767.92], [-1050.19, -2768.07], [-1049.49, -2769.63], [-1034.41, -2803.16], [-1029.91, -2813.18], [-1025.37, -2823.27], [-1016.57, -2842.84], [-1006.54, -2865.15], [-999.37, -2881.1], [-991.78, -2880.78], [-989.28, -2880.67], [-977.52, -2880.19], [-946.61, -2881.5], [-939.11, -2873.5], [-926.46, -2841.73], [-921.45, -2829.13], [-899.61, -2774.28], [-901.21, -2774.2], [-906.89, -2773.92], [-947.59, -2771.87], [-956.38, -2771.43], [-965.92, -2770.97], [-1033.44, -2767.67], [-1040.2, -2767.83]], [[-1666.07, -261.31], [-1700.74, -259.66], [-1705.88, -259.4], [-1710.18, -259.2], [-1710.31, -261.67], [-1710.47, -265.62], [-1712.12, -296.44], [-1713.41, -320.46], [-1716.91, -320.27], [-1713.41, -320.47], [-1715.97, -364.05], [-1716.49, -372.82], [-1716.72, -376.85], [-1709.82, -377.19], [-1599.96, -382.55], [-1591.37, -382.82], [-1590.1, -377.91], [-1583.35, -352.51], [-1580.86, -336.38], [-1579.59, -321.52], [-1577.76, -277.3], [-1575.45, -270.64], [-1573.73, -266.95], [-1573.27, -265.79], [-1581.43, -265.41], [-1611.84, -263.91], [-1641.22, -262.52], [-1666.07, -261.31]], [[-1718.09, -393.78], [-1720.86, -447.66], [-1721.33, -458.33], [-1723.04, -497.25], [-1723.2, -500.83], [-1723.41, -505.71], [-1717.77, -505.98], [-1695.5, -507.08], [-1655.39, -509.05], [-1612.21, -511.17], [-1609.31, -511.31], [-1603.37, -511.61], [-1603.2, -506.16], [-1601.66, -473.59], [-1601.59, -472.12], [-1600.97, -453.0], [-1600.21, -434.78], [-1599.49, -426.63], [-1598.53, -418.5], [-1595.57, -399.79], [-1594.83, -396.72], [-1600.52, -396.54], [-1710.51, -391.18], [-1717.96, -390.8], [-1718.09, -393.78]], [[-1695.85, -514.07], [-1718.11, -512.98], [-1726.73, -512.55], [-1735.97, -512.1], [-1848.39, -505.94], [-1854.29, -505.77], [-1854.36, -508.55], [-1854.53, -513.76], [-1854.85, -548.35], [-1854.95, -578.52], [-1855.61, -600.32], [-1855.9, -610.09], [-1856.7, -623.57], [-1857.07, -661.94], [-1860.57, -661.91], [-1857.07, -661.95], [-1857.17, -670.76], [-1857.23, -675.68], [-1857.39, -683.58], [-1852.36, -683.8], [-1850.61, -683.87], [-1823.47, -685.03], [-1818.38, -685.24], [-1797.08, -686.15], [-1796.86, -680.53], [-1795.08, -644.44], [-1793.6, -614.34], [-1787.6, -614.64], [-1789.09, -644.74], [-1790.86, -680.79], [-1791.08, -686.41], [-1743.91, -688.42], [-1733.51, -688.87], [-1732.51, -683.34], [-1732.42, -680.69], [-1731.7, -660.43], [-1730.78, -634.17], [-1730.06, -613.53], [-1729.74, -607.65], [-1723.75, -607.98], [-1724.06, -613.8], [-1724.78, -634.38], [-1725.7, -660.64], [-1726.42, -680.9], [-1726.53, -683.98], [-1727.46, -689.13], [-1691.08, -690.68], [-1688.12, -690.8], [-1623.74, -693.55], [-1617.27, -693.82], [-1616.9, -687.9], [-1612.3, -642.05], [-1612.08, -639.37], [-1611.24, -629.06], [-1604.16, -525.14], [-1603.72, -518.6], [-1609.66, -518.31], [-1612.55, -518.17], [-1655.74, -516.04], [-1695.85, -514.07]], [[-1728.4, -695.09], [-1729.26, -701.66], [-1729.3, -702.96], [-1729.61, -713.65], [-1730.04, -750.58], [-1730.07, -753.07], [-1724.13, -753.44], [-1722.36, -753.53], [-1703.55, -754.61], [-1626.65, -757.35], [-1621.67, -757.52], [-1621.58, -755.61], [-1619.09, -699.75], [-1623.99, -699.54], [-1688.38, -696.8], [-1691.34, -696.67], [-1728.4, -695.09]], [[-1724.48, -759.43], [-1730.31, -759.07], [-1730.41, -760.54], [-1730.89, -784.79], [-1731.43, -806.86], [-1731.53, -810.56], [-1725.5, -810.68], [-1632.75, -815.14], [-1629.35, -815.32], [-1623.93, -815.55], [-1621.94, -763.52], [-1626.86, -763.35], [-1703.83, -760.6], [-1722.69, -759.53], [-1724.48, -759.43]], [[-1731.67, -816.55], [-1731.74, -819.2], [-1732.54, -851.25], [-1732.81, -863.14], [-1732.92, -864.62], [-1732.99, -869.39], [-1727.56, -869.65], [-1694.89, -871.11], [-1633.59, -873.89], [-1626.58, -874.21], [-1626.43, -871.13], [-1624.18, -821.54], [-1629.64, -821.31], [-1633.05, -821.13], [-1725.71, -816.68], [-1731.67, -816.55]], [[-1617.26, -984.16], [-1615.51, -987.36], [-1612.89, -999.31], [-1612.49, -1006.86], [-1612.24, -1011.56], [-1611.7, -1022.6], [-1609.9, -1026.34], [-1609.38, -1027.08], [-1608.78, -1027.43], [-1606.54, -1027.93], [-1606.62, -1026.29], [-1607.28, -1011.85], [-1607.48, -1007.15], [-1608.2, -986.32], [-1610.87, -953.48], [-1611.62, -941.17], [-1612.4, -929.46], [-1612.79, -917.11], [-1611.89, -895.91], [-1611.47, -886.94], [-1614.62, -886.79], [-1618.52, -886.6], [-1618.66, -894.95], [-1618.25, -948.33], [-1617.38, -981.55], [-1617.26, -984.16]], [[-1625.55, -888.27], [-1634.22, -887.88], [-1695.53, -885.1], [-1728.21, -883.63], [-1733.31, -883.39], [-1733.39, -885.81], [-1733.43, -887.4], [-1734.49, -922.71], [-1734.89, -936.73], [-1735.48, -957.98], [-1736.62, -1005.83], [-1736.88, -1016.57], [-1739.88, -1016.5], [-1736.88, -1016.62], [-1737.34, -1028.14], [-1738.68, -1076.7], [-1739.39, -1101.22], [-1739.98, -1126.97], [-1740.31, -1137.5], [-1740.63, -1149.13], [-1740.81, -1154.77], [-1743.45, -1244.39], [-1743.55, -1248.13], [-1743.75, -1254.77], [-1736.68, -1254.96], [-1629.47, -1257.97], [-1626.03, -1258.07], [-1619.72, -1258.17], [-1619.45, -1247.57], [-1619.35, -1245.25], [-1618.88, -1217.39], [-1618.1, -1170.89], [-1618.4, -1155.47], [-1619.37, -1107.17], [-1619.53, -1098.83], [-1620.81, -1064.19], [-1622.59, -1037.91], [-1622.58, -1032.4], [-1622.57, -1027.08], [-1623.06, -1011.83], [-1623.33, -1007.12], [-1623.71, -995.6], [-1624.38, -981.85], [-1620.88, -981.68], [-1624.38, -981.77], [-1625.24, -948.45], [-1625.66, -894.92], [-1625.55, -888.27]], [[-1743.82, -1260.77], [-1743.76, -1269.83], [-1743.76, -1272.18], [-1743.54, -1319.47], [-1744.8, -1367.72], [-1745.02, -1376.3], [-1739.53, -1376.4], [-1658.2, -1377.8], [-1638.46, -1378.22], [-1627.97, -1378.41], [-1623.45, -1378.49], [-1623.04, -1369.2], [-1622.73, -1362.18], [-1622.27, -1351.68], [-1622.0, -1345.62], [-1621.4, -1332.19], [-1620.94, -1321.62], [-1619.86, -1264.17], [-1626.16, -1264.07], [-1629.64, -1263.97], [-1736.85, -1260.96], [-1743.82, -1260.77]], [[-1620.25, -1500.19], [-1612.71, -1500.27], [-1613.5, -1492.01], [-1612.62, -1454.87], [-1611.74, -1428.33], [-1611.24, -1413.42], [-1612.98, -1413.41], [-1612.9, -1393.45], [-1612.79, -1386.75], [-1616.74, -1386.64], [-1616.95, -1393.46], [-1618.53, -1443.22], [-1620.02, -1492.7], [-1620.25, -1500.19]], [[-1623.08, -1621.68], [-1614.88, -1621.79], [-1614.86, -1614.83], [-1614.41, -1585.54], [-1613.35, -1542.18], [-1612.69, -1515.23], [-1612.47, -1506.27], [-1620.45, -1506.19], [-1620.8, -1515.13], [-1622.66, -1564.03], [-1623.02, -1614.33], [-1623.08, -1621.68]], [[-1623.2, -1700.67], [-1624.25, -1736.48], [-1624.63, -1742.28], [-1617.51, -1742.42], [-1616.73, -1736.99], [-1616.29, -1716.88], [-1615.52, -1669.17], [-1615.04, -1636.47], [-1614.93, -1628.79], [-1623.15, -1628.68], [-1623.23, -1636.35], [-1623.93, -1675.16], [-1623.63, -1686.09], [-1623.2, -1700.67]], [[-1618.96, -1821.36], [-1609.58, -1843.8], [-1605.5, -1843.98], [-1598.68, -1845.99], [-1601.12, -1841.0], [-1609.77, -1817.8], [-1610.35, -1815.69], [-1612.82, -1806.68], [-1615.42, -1797.19], [-1617.91, -1775.38], [-1618.77, -1756.28], [-1618.15, -1748.41], [-1624.95, -1748.27], [-1625.32, -1757.12], [-1623.76, -1795.26], [-1618.96, -1821.36]], [[-1783.81, -750.43], [-1742.1, -752.46], [-1736.06, -752.75], [-1736.04, -750.52], [-1735.61, -713.53], [-1735.29, -702.79], [-1735.25, -701.18], [-1734.42, -694.83], [-1794.32, -692.27], [-1794.2, -689.28], [-1794.32, -692.27], [-1818.63, -691.23], [-1823.72, -691.02], [-1850.86, -689.86], [-1852.61, -689.79], [-1857.0, -689.6], [-1857.96, -747.21], [-1853.81, -747.4], [-1852.01, -747.48], [-1825.37, -748.7], [-1783.81, -750.43]], [[-1749.55, -1247.96], [-1749.44, -1244.22], [-1746.81, -1154.58], [-1746.63, -1148.95], [-1746.39, -1140.35], [-1752.15, -1140.24], [-1754.36, -1140.2], [-1812.05, -1139.03], [-1819.02, -1138.9], [-1864.94, -1137.97], [-1868.59, -1137.9], [-1868.76, -1146.08], [-1869.76, -1196.45], [-1871.02, -1244.98], [-1871.22, -1252.78], [-1867.32, -1252.88], [-1839.9, -1253.57], [-1815.98, -1253.86], [-1754.86, -1254.59], [-1749.75, -1254.65], [-1749.55, -1247.96]], [[-1808.92, -1617.53], [-1766.34, -1618.39], [-1763.49, -1618.45], [-1757.06, -1618.45], [-1756.89, -1611.49], [-1755.7, -1561.45], [-1754.95, -1514.85], [-1754.9, -1511.65], [-1754.76, -1503.4], [-1760.77, -1503.35], [-1760.99, -1503.34], [-1872.81, -1501.42], [-1877.98, -1501.34], [-1878.15, -1509.12], [-1879.14, -1557.84], [-1880.01, -1609.35], [-1880.12, -1615.88], [-1875.95, -1616.06], [-1873.2, -1616.12], [-1808.92, -1617.53]], [[-1627.23, -1499.56], [-1627.02, -1492.49], [-1625.53, -1443.0], [-1623.95, -1393.24], [-1623.67, -1384.48], [-1628.08, -1384.41], [-1638.58, -1384.22], [-1658.31, -1383.8], [-1739.64, -1382.4], [-1745.18, -1382.3], [-1745.36, -1388.95], [-1745.42, -1391.02], [-1746.83, -1440.97], [-1748.23, -1485.11], [-1748.38, -1489.73], [-1748.6, -1496.48], [-1742.98, -1496.57], [-1711.16, -1497.14], [-1667.28, -1498.46], [-1663.58, -1498.57], [-1638.4, -1499.25], [-1632.96, -1499.39], [-1630.92, -1499.45], [-1627.23, -1499.56]], [[-1766.56, -1738.83], [-1760.01, -1738.92], [-1759.83, -1732.27], [-1759.79, -1728.76], [-1759.28, -1691.69], [-1759.15, -1682.27], [-1757.51, -1633.01], [-1757.26, -1625.45], [-1763.56, -1625.45], [-1766.49, -1625.39], [-1809.07, -1624.52], [-1873.35, -1623.11], [-1876.18, -1623.06], [-1880.3, -1622.88], [-1880.58, -1630.41], [-1882.4, -1679.97], [-1884.19, -1728.6], [-1884.48, -1736.41], [-1879.09, -1736.58], [-1833.89, -1737.96], [-1783.89, -1738.6], [-1766.56, -1738.83]], [[-1720.82, -1739.77], [-1711.88, -1739.96], [-1665.21, -1740.94], [-1636.45, -1741.51], [-1631.6, -1741.63], [-1631.24, -1736.15], [-1630.21, -1700.67], [-1630.63, -1686.29], [-1630.94, -1675.19], [-1630.23, -1636.25], [-1630.14, -1628.54], [-1633.4, -1628.44], [-1635.95, -1628.4], [-1703.05, -1627.23], [-1743.28, -1625.83], [-1745.55, -1625.75], [-1751.26, -1625.55], [-1751.51, -1633.21], [-1753.15, -1682.41], [-1753.28, -1691.78], [-1753.79, -1728.84], [-1753.83, -1732.39], [-1754.01, -1738.97], [-1748.51, -1738.99], [-1720.82, -1739.77]], [[-1627.79, -1514.87], [-1627.47, -1506.55], [-1631.12, -1506.45], [-1633.15, -1506.39], [-1638.58, -1506.24], [-1663.77, -1505.57], [-1667.49, -1505.46], [-1711.33, -1504.14], [-1743.1, -1503.57], [-1748.76, -1503.48], [-1748.9, -1511.75], [-1748.95, -1514.95], [-1749.71, -1561.57], [-1750.9, -1611.64], [-1751.06, -1618.56], [-1745.31, -1618.76], [-1743.04, -1618.83], [-1702.87, -1620.23], [-1635.83, -1621.4], [-1633.25, -1621.45], [-1630.08, -1621.54], [-1630.02, -1614.28], [-1629.66, -1563.87], [-1627.79, -1514.87]], [[-1749.76, -1272.19], [-1749.76, -1269.84], [-1749.82, -1260.65], [-1754.93, -1260.59], [-1816.05, -1259.86], [-1840.01, -1259.57], [-1867.47, -1258.88], [-1871.37, -1258.77], [-1871.57, -1267.42], [-1872.71, -1316.2], [-1873.98, -1366.31], [-1874.18, -1374.3], [-1869.64, -1374.43], [-1867.21, -1374.46], [-1757.8, -1376.11], [-1755.86, -1376.13], [-1751.02, -1376.2], [-1750.79, -1367.56], [-1749.54, -1319.4], [-1749.76, -1272.19]], [[-1751.36, -1388.78], [-1751.18, -1382.2], [-1755.94, -1382.13], [-1757.88, -1382.11], [-1867.3, -1380.46], [-1869.76, -1380.43], [-1874.34, -1380.3], [-1874.52, -1387.86], [-1875.76, -1437.11], [-1877.52, -1486.76], [-1877.79, -1494.34], [-1872.69, -1494.42], [-1760.83, -1496.34], [-1760.64, -1496.35], [-1754.6, -1496.4], [-1754.38, -1489.54], [-1754.23, -1484.92], [-1752.83, -1440.79], [-1751.42, -1390.86], [-1751.36, -1388.78]], [[-1863.54, -942.9], [-1865.25, -1004.61], [-1865.43, -1011.3], [-1860.62, -1011.4], [-1859.02, -1011.44], [-1824.32, -1012.18], [-1811.58, -1012.32], [-1805.07, -1012.27], [-1800.93, -1012.29], [-1784.62, -1012.81], [-1751.99, -1013.35], [-1748.68, -1013.4], [-1742.81, -1013.46], [-1742.62, -1005.68], [-1741.48, -957.83], [-1740.88, -936.56], [-1740.49, -922.53], [-1739.43, -887.22], [-1739.38, -885.63], [-1739.31, -883.1], [-1745.6, -882.8], [-1766.96, -881.76], [-1803.25, -880.0], [-1829.27, -878.79], [-1857.28, -877.44], [-1861.78, -877.23], [-1861.84, -879.35], [-1862.19, -893.58], [-1862.24, -894.99], [-1863.23, -931.52], [-1863.46, -940.33], [-1867.46, -940.23], [-1863.46, -940.34], [-1863.54, -942.9]], [[-1818.9, -1132.9], [-1811.94, -1133.04], [-1754.25, -1134.2], [-1752.03, -1134.24], [-1746.21, -1134.36], [-1745.98, -1126.81], [-1745.39, -1101.06], [-1744.67, -1076.53], [-1743.34, -1027.94], [-1743.0, -1019.46], [-1748.76, -1019.4], [-1752.08, -1019.35], [-1784.76, -1018.81], [-1801.03, -1018.29], [-1805.06, -1018.27], [-1811.59, -1018.32], [-1824.41, -1018.17], [-1859.15, -1017.43], [-1860.75, -1017.4], [-1865.57, -1017.3], [-1865.7, -1024.02], [-1866.61, -1073.83], [-1870.61, -1073.76], [-1866.61, -1073.88], [-1868.2, -1124.41], [-1868.44, -1131.9], [-1864.82, -1131.98], [-1818.9, -1132.9]], [[-1737.52, -810.33], [-1737.43, -806.71], [-1736.89, -784.66], [-1736.4, -760.28], [-1736.3, -758.74], [-1742.39, -758.45], [-1784.08, -756.42], [-1825.63, -754.7], [-1852.28, -753.48], [-1854.09, -753.39], [-1858.12, -753.21], [-1859.92, -803.99], [-1855.37, -804.2], [-1817.73, -806.17], [-1800.32, -807.07], [-1780.65, -808.09], [-1764.19, -808.94], [-1746.19, -809.88], [-1743.32, -810.03], [-1737.52, -810.33]], [[-1738.54, -851.11], [-1737.74, -819.05], [-1737.67, -816.33], [-1743.63, -816.02], [-1746.51, -815.87], [-1764.5, -814.93], [-1780.96, -814.09], [-1800.63, -813.07], [-1818.04, -812.17], [-1855.67, -810.19], [-1860.16, -809.98], [-1860.24, -811.76], [-1860.62, -819.18], [-1860.72, -824.64], [-1860.88, -834.53], [-1861.32, -861.19], [-1861.37, -863.23], [-1856.61, -863.46], [-1828.61, -864.8], [-1802.58, -866.02], [-1766.28, -867.78], [-1744.93, -868.81], [-1738.99, -869.1], [-1738.91, -864.36], [-1738.8, -862.85], [-1738.54, -851.11]], [[-1854.13, -498.77], [-1848.1, -498.95], [-1735.61, -505.11], [-1729.4, -505.41], [-1729.19, -500.56], [-1729.03, -496.99], [-1727.32, -458.07], [-1726.85, -447.37], [-1724.08, -393.48], [-1723.95, -390.5], [-1730.11, -390.19], [-1793.01, -387.01], [-1843.14, -384.5], [-1850.04, -384.15], [-1850.1, -388.65], [-1850.87, -408.57], [-1851.07, -413.88], [-1852.02, -442.7], [-1853.6, -474.6], [-1854.03, -493.1], [-1854.13, -498.77]], [[-1720.31, -318.36], [-1719.11, -296.07], [-1717.46, -265.29], [-1717.3, -261.34], [-1717.18, -258.87], [-1805.51, -254.63], [-1841.92, -252.88], [-1846.63, -252.65], [-1846.81, -255.59], [-1846.88, -259.09], [-1847.4, -282.05], [-1848.64, -312.56], [-1843.16, -312.84], [-1790.61, -315.02], [-1725.61, -318.1], [-1720.31, -318.36]], [[-1725.77, -321.6], [-1790.77, -318.51], [-1843.32, -316.34], [-1848.74, -316.06], [-1849.73, -366.47], [-1849.81, -370.14], [-1842.44, -370.51], [-1792.31, -373.03], [-1729.41, -376.21], [-1723.72, -376.5], [-1723.47, -372.42], [-1722.96, -363.64], [-1720.51, -321.85], [-1725.77, -321.6]], [[-1481.93, -2183.74], [-1483.94, -2267.55], [-1484.08, -2273.48], [-1491.08, -2273.31], [-1484.09, -2273.66], [-1484.42, -2280.27], [-1488.83, -2369.57], [-1489.01, -2373.09], [-1488.98, -2373.09], [-1486.07, -2373.23], [-1484.46, -2373.31], [-1433.39, -2375.86], [-1388.71, -2378.17], [-1383.07, -2375.47], [-1354.5, -2358.69], [-1344.33, -2352.94], [-1340.95, -2351.03], [-1338.35, -2349.55], [-1339.43, -2347.7], [-1350.55, -2328.62], [-1368.22, -2298.15], [-1374.68, -2287.01], [-1399.22, -2244.68], [-1400.8, -2241.96], [-1427.47, -2192.0], [-1435.91, -2176.18], [-1459.73, -2131.57], [-1470.08, -2113.46], [-1474.14, -2104.38], [-1474.16, -2104.44], [-1475.97, -2113.51], [-1477.82, -2125.61], [-1481.35, -2130.43], [-1479.75, -2130.51], [-1481.32, -2165.34], [-1481.69, -2173.41], [-1481.93, -2183.74]], [[-1460.89, -2096.92], [-1464.3, -2091.11], [-1470.01, -2096.44], [-1463.83, -2110.29], [-1453.6, -2128.18], [-1431.39, -2169.78], [-1422.51, -2164.96], [-1442.64, -2129.36], [-1449.44, -2117.31], [-1460.89, -2096.92]], [[-1332.26, -2346.1], [-1323.82, -2341.32], [-1325.14, -2338.89], [-1350.36, -2292.46], [-1360.53, -2297.45], [-1344.5, -2325.11], [-1333.39, -2344.17], [-1332.26, -2346.1]], [[-1377.67, -2379.25], [-1372.56, -2388.91], [-1361.55, -2406.18], [-1355.78, -2415.24], [-1352.75, -2419.98], [-1310.16, -2501.58], [-1315.48, -2504.36], [-1357.95, -2422.99], [-1360.84, -2418.47], [-1366.61, -2409.41], [-1372.78, -2399.73], [-1373.21, -2406.11], [-1375.42, -2438.66], [-1375.83, -2449.08], [-1376.62, -2468.92], [-1377.77, -2497.76], [-1378.91, -2526.55], [-1379.85, -2534.33], [-1380.13, -2536.58], [-1381.12, -2544.82], [-1381.31, -2546.33], [-1390.41, -2575.23], [-1399.85, -2605.19], [-1400.84, -2608.34], [-1402.66, -2624.27], [-1397.76, -2624.81], [-1352.55, -2626.84], [-1336.65, -2631.57], [-1323.57, -2637.34], [-1303.86, -2650.16], [-1289.0, -2654.08], [-1258.22, -2657.47], [-1219.3, -2660.75], [-1190.96, -2662.43], [-1176.96, -2661.69], [-1173.43, -2660.34], [-1178.35, -2648.12], [-1181.62, -2639.98], [-1189.67, -2619.92], [-1191.01, -2616.81], [-1204.77, -2584.8], [-1222.32, -2551.56], [-1223.85, -2548.79], [-1233.48, -2531.35], [-1230.41, -2529.65], [-1233.49, -2531.33], [-1241.6, -2516.45], [-1253.36, -2496.9], [-1260.78, -2484.57], [-1293.79, -2427.25], [-1301.69, -2412.11], [-1315.38, -2388.77], [-1332.61, -2359.37], [-1335.32, -2354.73], [-1338.0, -2356.25], [-1341.38, -2358.16], [-1351.51, -2363.89], [-1377.67, -2379.25]], [[-1408.51, -2709.65], [-1410.69, -2758.38], [-1411.75, -2781.89], [-1413.48, -2820.49], [-1415.96, -2853.11], [-1417.67, -2875.52], [-1418.0, -2878.01], [-1418.9, -2884.82], [-1412.75, -2886.01], [-1369.82, -2894.29], [-1353.12, -2897.52], [-1295.33, -2908.68], [-1264.96, -2914.55], [-1210.27, -2924.77], [-1123.65, -2940.68], [-1118.69, -2941.43], [-1118.41, -2935.52], [-1120.78, -2892.88], [-1125.92, -2853.66], [-1128.6, -2834.21], [-1135.4, -2792.84], [-1143.27, -2758.25], [-1150.91, -2728.43], [-1153.17, -2721.08], [-1166.47, -2677.68], [-1171.2, -2665.91], [-1175.7, -2667.63], [-1190.98, -2668.44], [-1219.73, -2666.73], [-1258.8, -2663.45], [-1290.1, -2660.0], [-1306.32, -2655.72], [-1326.44, -2642.63], [-1338.72, -2637.21], [-1353.55, -2632.8], [-1398.22, -2630.79], [-1403.41, -2630.22], [-1404.65, -2639.06], [-1405.68, -2647.42], [-1405.83, -2650.07], [-1408.51, -2709.65]], [[-1568.9, -2829.29], [-1577.89, -2822.42], [-1583.04, -2818.49], [-1585.39, -2822.43], [-1595.0, -2839.35], [-1590.54, -2836.59], [-1583.67, -2832.52], [-1577.56, -2829.84], [-1574.0, -2829.09], [-1569.3, -2829.23], [-1568.9, -2829.29]], [[-1424.8, -2883.68], [-1423.95, -2877.21], [-1423.63, -2874.9], [-1421.94, -2852.66], [-1419.47, -2820.13], [-1417.74, -2781.62], [-1416.68, -2758.11], [-1414.5, -2709.38], [-1411.83, -2649.76], [-1411.66, -2646.87], [-1410.59, -2638.28], [-1409.41, -2629.8], [-1415.29, -2629.59], [-1448.71, -2628.1], [-1456.95, -2627.89], [-1498.74, -2626.06], [-1501.59, -2625.63], [-1502.36, -2632.3], [-1503.81, -2644.88], [-1505.48, -2652.49], [-1516.66, -2692.18], [-1528.88, -2724.46], [-1535.73, -2740.18], [-1552.13, -2773.36], [-1574.27, -2808.84], [-1576.89, -2813.12], [-1573.04, -2816.06], [-1555.01, -2829.84], [-1555.31, -2830.24], [-1521.76, -2855.27], [-1507.37, -2862.49], [-1472.18, -2873.13], [-1437.96, -2881.16], [-1434.97, -2881.73], [-1424.8, -2883.68]], [[-1495.55, -2519.4], [-1499.33, -2586.29], [-1500.54, -2612.83], [-1500.82, -2619.0], [-1500.89, -2619.67], [-1498.16, -2620.08], [-1456.75, -2621.89], [-1448.5, -2622.11], [-1415.05, -2623.6], [-1408.65, -2623.83], [-1406.74, -2607.09], [-1405.57, -2603.39], [-1396.13, -2573.43], [-1387.2, -2545.06], [-1387.08, -2544.1], [-1386.09, -2535.85], [-1385.81, -2533.6], [-1384.9, -2526.07], [-1383.76, -2497.52], [-1382.61, -2468.69], [-1381.83, -2448.85], [-1381.41, -2438.34], [-1379.2, -2405.7], [-1378.21, -2391.07], [-1382.97, -2382.07], [-1387.5, -2384.24], [-1433.69, -2381.85], [-1484.75, -2379.3], [-1486.36, -2379.23], [-1488.76, -2379.11], [-1489.3, -2379.17], [-1489.55, -2384.54], [-1493.54, -2489.15], [-1494.26, -2504.56], [-1501.25, -2504.23], [-1494.27, -2504.66], [-1494.75, -2512.34], [-1495.55, -2519.4]], [[-1586.18, -2801.48], [-1564.37, -2766.54], [-1548.43, -2734.27], [-1541.85, -2719.18], [-1529.97, -2687.8], [-1519.07, -2649.08], [-1517.63, -2642.57], [-1516.27, -2630.69], [-1515.12, -2620.8], [-1508.17, -2621.6], [-1515.12, -2620.8], [-1514.78, -2617.87], [-1514.52, -2612.2], [-1513.31, -2585.58], [-1509.5, -2518.21], [-1508.7, -2511.12], [-1508.46, -2507.38], [-1514.84, -2507.51], [-1518.22, -2507.33], [-1612.08, -2502.28], [-1647.35, -2501.45], [-1650.96, -2501.37], [-1648.42, -2521.7], [-1628.91, -2734.19], [-1625.51, -2758.64], [-1621.63, -2773.34], [-1606.07, -2790.19], [-1590.81, -2802.26], [-1588.01, -2804.47], [-1586.18, -2801.48]], [[-1406.48, -2193.26], [-1412.63, -2182.42], [-1419.06, -2171.06], [-1428.1, -2175.95], [-1421.29, -2188.7], [-1394.68, -2238.56], [-1393.16, -2241.17], [-1368.63, -2283.5], [-1363.55, -2292.25], [-1353.28, -2287.21], [-1357.38, -2279.97], [-1365.31, -2265.97], [-1406.48, -2193.26]], [[-1616.69, -876.68], [-1614.14, -876.81], [-1610.75, -876.97], [-1610.53, -872.08], [-1609.75, -846.88], [-1609.72, -833.58], [-1609.41, -789.23], [-1608.28, -764.12], [-1611.95, -763.94], [-1614.05, -818.95], [-1619.04, -818.76], [-1614.05, -818.98], [-1616.44, -871.6], [-1616.69, -876.68]], [[-1569.19, -1901.07], [-1576.35, -1888.21], [-1592.78, -1858.01], [-1595.09, -1853.29], [-1606.49, -1849.95], [-1606.5, -1849.95], [-1587.88, -1885.06], [-1576.88, -1905.75], [-1575.33, -1908.67], [-1571.72, -1906.63], [-1567.3, -1904.13], [-1568.59, -1901.96], [-1569.19, -1901.07]], [[-1462.36, -2080.36], [-1458.74, -2078.38], [-1437.47, -2066.41], [-1431.68, -2063.21], [-1396.87, -2042.98], [-1393.68, -2041.21], [-1408.29, -2023.93], [-1428.42, -1993.24], [-1453.89, -1938.61], [-1489.85, -1872.41], [-1494.61, -1863.61], [-1527.64, -1803.17], [-1530.77, -1796.92], [-1536.21, -1782.59], [-1538.45, -1771.75], [-1539.09, -1761.99], [-1539.16, -1749.93], [-1542.23, -1749.87], [-1574.63, -1749.24], [-1578.24, -1749.17], [-1605.9, -1748.64], [-1611.14, -1748.54], [-1611.75, -1756.4], [-1610.93, -1774.82], [-1608.53, -1795.86], [-1606.07, -1804.83], [-1603.6, -1813.83], [-1603.1, -1815.64], [-1594.68, -1838.23], [-1589.19, -1849.44], [-1592.33, -1850.98], [-1589.19, -1849.44], [-1586.56, -1854.79], [-1570.21, -1884.84], [-1563.23, -1897.39], [-1562.68, -1898.2], [-1559.2, -1904.06], [-1562.21, -1905.85], [-1559.17, -1904.11], [-1506.67, -1995.99], [-1495.66, -2017.24], [-1494.04, -2020.37], [-1478.24, -2050.85], [-1473.8, -2058.96], [-1462.36, -2080.36]], [[-1512.82, -1999.34], [-1563.27, -1911.04], [-1567.79, -1913.59], [-1571.53, -1915.71], [-1556.99, -1942.22], [-1540.08, -1973.04], [-1522.6, -2004.8], [-1520.17, -2009.16], [-1501.7, -2042.6], [-1492.75, -2059.84], [-1488.28, -2067.99], [-1481.42, -2075.37], [-1474.29, -2088.12], [-1468.86, -2083.05], [-1479.96, -2062.29], [-1484.42, -2054.14], [-1500.25, -2023.59], [-1501.87, -2020.47], [-1512.82, -1999.34]], [[-1485.73, -2115.09], [-1485.77, -2118.08], [-1484.89, -2112.32], [-1485.73, -2115.09]], [[-1488.24, -2086.23], [-1489.03, -2099.03], [-1489.04, -2100.08], [-1484.62, -2093.2], [-1480.27, -2091.75], [-1487.12, -2079.52], [-1488.31, -2078.24], [-1488.04, -2081.02], [-1488.24, -2086.23]], [[-1538.01, -1508.1], [-1550.65, -1507.94], [-1576.34, -1507.2], [-1587.07, -1506.9], [-1589.89, -1506.82], [-1591.49, -1506.77], [-1598.78, -1506.58], [-1600.94, -1506.52], [-1605.47, -1506.4], [-1605.69, -1515.4], [-1606.35, -1542.35], [-1607.41, -1585.68], [-1607.86, -1614.89], [-1607.88, -1621.93], [-1603.1, -1622.05], [-1599.84, -1622.13], [-1594.74, -1622.2], [-1589.84, -1622.29], [-1540.35, -1623.1], [-1536.0, -1623.18], [-1532.83, -1508.14], [-1538.01, -1508.1]], [[-1599.97, -1629.13], [-1603.28, -1629.05], [-1607.94, -1628.93], [-1608.04, -1636.57], [-1608.52, -1669.28], [-1609.29, -1717.02], [-1609.74, -1737.57], [-1610.45, -1742.55], [-1605.79, -1742.64], [-1578.12, -1743.17], [-1574.51, -1743.24], [-1542.11, -1743.87], [-1539.1, -1743.93], [-1536.19, -1630.17], [-1540.46, -1630.1], [-1589.96, -1629.29], [-1594.84, -1629.2], [-1599.97, -1629.13]], [[-1587.57, -1345.47], [-1584.2, -1346.0], [-1580.92, -1346.02], [-1577.12, -1345.28], [-1573.1, -1344.3], [-1571.22, -1342.72], [-1507.64, -1285.2], [-1499.61, -1277.93], [-1476.24, -1256.8], [-1386.44, -1175.55], [-1350.4, -1142.95], [-1355.16, -1137.84], [-1365.04, -1127.06], [-1366.76, -1125.12], [-1368.29, -1123.14], [-1369.88, -1120.73], [-1371.23, -1118.22], [-1372.46, -1115.63], [-1373.62, -1112.72], [-1374.65, -1109.55], [-1375.51, -1106.28], [-1376.2, -1102.98], [-1376.78, -1099.32], [-1377.09, -1095.62], [-1376.72, -1047.21], [-1376.72, -1043.33], [-1382.47, -1043.33], [-1406.05, -1042.97], [-1460.35, -1043.61], [-1466.18, -1043.8], [-1490.62, -1042.49], [-1501.98, -1040.74], [-1518.36, -1037.89], [-1525.86, -1036.59], [-1550.62, -1033.67], [-1591.87, -1033.51], [-1597.59, -1033.69], [-1597.5, -1040.14], [-1595.73, -1076.66], [-1594.93, -1105.51], [-1593.05, -1136.02], [-1595.53, -1197.33], [-1597.82, -1241.51], [-1597.88, -1248.35], [-1598.03, -1261.53], [-1601.53, -1261.49], [-1598.03, -1261.68], [-1600.46, -1306.3], [-1601.54, -1326.01], [-1601.74, -1330.63], [-1600.85, -1334.09], [-1599.4, -1337.04], [-1597.79, -1339.54], [-1596.32, -1341.1], [-1594.18, -1342.91], [-1592.2, -1343.91], [-1587.57, -1345.47]], [[-1612.45, -1247.8], [-1612.72, -1258.29], [-1604.99, -1258.43], [-1604.88, -1248.28], [-1604.82, -1241.3], [-1602.52, -1197.0], [-1600.06, -1136.1], [-1601.92, -1105.82], [-1602.73, -1076.93], [-1604.49, -1040.36], [-1604.55, -1036.59], [-1607.18, -1038.97], [-1608.06, -1042.28], [-1608.5, -1045.85], [-1608.93, -1055.99], [-1608.88, -1064.07], [-1609.02, -1081.45], [-1609.75, -1088.06], [-1611.22, -1093.28], [-1612.62, -1096.23], [-1612.54, -1098.61], [-1613.78, -1098.65], [-1613.8, -1098.69], [-1612.54, -1098.66], [-1612.37, -1107.03], [-1611.4, -1155.33], [-1611.1, -1170.88], [-1611.88, -1217.51], [-1612.36, -1245.44], [-1612.45, -1247.8]], [[-1605.19, -1264.43], [-1612.86, -1264.29], [-1613.94, -1321.84], [-1614.41, -1332.5], [-1615.01, -1345.93], [-1615.28, -1351.99], [-1615.74, -1362.48], [-1616.05, -1369.51], [-1616.25, -1374.18], [-1610.33, -1369.62], [-1610.12, -1363.65], [-1609.84, -1355.68], [-1608.53, -1325.68], [-1605.03, -1325.83], [-1608.53, -1325.64], [-1607.45, -1305.92], [-1605.19, -1264.43]], [[-1585.77, -1373.24], [-1577.62, -1371.01], [-1577.35, -1371.99], [-1550.38, -1346.2], [-1521.55, -1320.15], [-1489.31, -1291.02], [-1488.47, -1291.94], [-1488.47, -1291.94], [-1489.31, -1291.02], [-1488.17, -1289.99], [-1487.44, -1285.25], [-1485.31, -1280.42], [-1482.67, -1275.09], [-1480.47, -1270.07], [-1494.91, -1283.12], [-1502.94, -1290.39], [-1566.57, -1347.95], [-1568.92, -1345.35], [-1566.66, -1348.03], [-1579.89, -1359.2], [-1590.43, -1367.65], [-1593.48, -1369.01], [-1601.97, -1372.96], [-1602.15, -1376.4], [-1594.91, -1375.75], [-1585.77, -1373.24]], [[-1602.4, -1393.56], [-1602.44, -1402.22], [-1595.8, -1394.77], [-1594.14, -1392.67], [-1587.57, -1384.31], [-1587.36, -1384.05], [-1593.13, -1385.63], [-1602.28, -1386.45], [-1602.4, -1393.56]], [[-1600.95, -1342.02], [-1602.16, -1340.15], [-1602.85, -1355.96], [-1603.12, -1363.89], [-1603.19, -1365.81], [-1596.38, -1362.64], [-1594.11, -1361.62], [-1584.34, -1353.8], [-1579.67, -1349.86], [-1580.54, -1350.03], [-1584.53, -1350.0], [-1588.52, -1349.37], [-1593.75, -1347.61], [-1596.41, -1346.26], [-1599.07, -1344.0], [-1600.95, -1342.02]], [[-1612.48, -1045.52], [-1612.0, -1041.52], [-1610.74, -1036.8], [-1605.63, -1032.16], [-1606.57, -1032.03], [-1610.25, -1031.19], [-1612.14, -1030.11], [-1613.36, -1028.37], [-1615.65, -1023.6], [-1615.72, -1022.18], [-1615.57, -1026.97], [-1615.58, -1032.41], [-1615.59, -1037.68], [-1613.82, -1063.83], [-1613.14, -1082.27], [-1613.02, -1081.21], [-1612.88, -1064.07], [-1612.93, -1055.92], [-1612.48, -1045.52]], [[-1376.2, -1037.33], [-1375.82, -1035.42], [-1375.79, -1026.26], [-1377.27, -1022.64], [-1382.53, -1022.48], [-1405.47, -1022.43], [-1416.15, -1023.2], [-1465.76, -1022.96], [-1471.69, -1022.6], [-1491.43, -1022.93], [-1507.59, -1025.84], [-1530.32, -1030.02], [-1524.99, -1030.65], [-1517.33, -1031.98], [-1501.01, -1034.82], [-1490.0, -1036.51], [-1466.12, -1037.79], [-1460.48, -1037.61], [-1406.04, -1036.97], [-1382.42, -1037.33], [-1376.2, -1037.33]], [[-1588.7, -401.17], [-1591.6, -419.46], [-1592.53, -427.35], [-1593.22, -435.23], [-1593.98, -453.26], [-1594.6, -472.39], [-1594.67, -473.91], [-1596.2, -506.43], [-1596.38, -512.1], [-1589.49, -512.74], [-1589.06, -506.43], [-1587.47, -482.87], [-1582.89, -414.49], [-1580.84, -400.69], [-1580.24, -397.16], [-1587.68, -396.94], [-1588.7, -401.17]], [[-1589.92, -519.73], [-1591.49, -519.58], [-1596.73, -519.1], [-1597.18, -525.61], [-1604.26, -629.58], [-1605.11, -639.93], [-1605.32, -642.67], [-1609.92, -688.47], [-1610.27, -694.12], [-1602.9, -694.43], [-1602.58, -688.65], [-1599.1, -648.54], [-1598.83, -645.97], [-1597.91, -635.43], [-1594.53, -601.27], [-1591.82, -553.22], [-1590.27, -525.86], [-1589.92, -519.73]], [[-1609.1, -700.17], [-1611.59, -756.09], [-1611.68, -757.94], [-1607.91, -758.13], [-1607.74, -754.69], [-1604.72, -700.36], [-1609.1, -700.17]], [[-1567.17, -269.68], [-1567.22, -269.53], [-1567.29, -269.71], [-1568.95, -273.27], [-1570.81, -278.62], [-1572.6, -321.97], [-1573.91, -337.21], [-1576.49, -353.94], [-1583.33, -379.68], [-1584.2, -383.04], [-1577.6, -383.23], [-1576.7, -378.92], [-1573.52, -365.5], [-1569.53, -345.32], [-1567.59, -326.51], [-1566.76, -308.75], [-1565.32, -278.27], [-1566.16, -273.28], [-1567.17, -269.68]], [[-1112.92, -2837.12], [-1113.38, -2833.15], [-1115.0, -2819.69], [-1117.1, -2802.25], [-1124.98, -2763.11], [-1125.97, -2759.23], [-1131.68, -2737.09], [-1136.47, -2718.5], [-1151.92, -2672.46], [-1156.12, -2661.42], [-1164.53, -2663.74], [-1159.86, -2675.34], [-1146.48, -2719.02], [-1144.17, -2726.53], [-1136.46, -2756.6], [-1128.53, -2791.5], [-1121.68, -2833.17], [-1118.98, -2852.73], [-1113.81, -2892.23], [-1111.4, -2935.49], [-1111.7, -2941.91], [-1105.0, -2942.76], [-1105.18, -2936.93], [-1105.89, -2914.37], [-1107.12, -2894.13], [-1108.12, -2877.85], [-1112.92, -2837.12]], [[-996.51, -2956.49], [-996.09, -2950.54], [-995.8, -2940.18], [-996.25, -2929.02], [-997.08, -2917.44], [-998.69, -2906.25], [-1000.0, -2899.01], [-1004.09, -2885.23], [-1012.01, -2867.61], [-1022.04, -2845.3], [-1030.84, -2825.73], [-1035.38, -2815.64], [-1039.88, -2805.62], [-1054.96, -2772.09], [-1057.47, -2766.49], [-1067.21, -2747.95], [-1090.17, -2718.11], [-1095.28, -2711.48], [-1117.31, -2684.94], [-1135.42, -2664.47], [-1143.24, -2655.46], [-1149.61, -2658.84], [-1145.32, -2670.1], [-1129.75, -2716.51], [-1124.9, -2735.34], [-1119.2, -2757.49], [-1118.15, -2761.54], [-1110.18, -2801.14], [-1108.05, -2818.85], [-1106.43, -2832.32], [-1105.96, -2836.31], [-1101.14, -2877.23], [-1100.14, -2893.71], [-1098.9, -2914.05], [-1098.19, -2936.71], [-1097.97, -2943.69], [-1092.53, -2944.44], [-1078.21, -2946.42], [-1051.34, -2950.13], [-1003.74, -2955.81], [-1000.78, -2956.09], [-996.51, -2956.49]], [[-1112.1, -2949.92], [-1112.51, -2957.65], [-1112.56, -2963.46], [-1112.59, -2984.21], [-1113.13, -2993.3], [-1105.29, -2993.66], [-1105.11, -2986.07], [-1104.71, -2973.85], [-1104.76, -2965.81], [-1104.82, -2961.59], [-1104.77, -2958.85], [-1104.83, -2950.85], [-1112.1, -2949.92]], [[-1226.19, -2513.45], [-1245.38, -2479.94], [-1254.08, -2464.39], [-1278.58, -2419.47], [-1284.04, -2409.46], [-1293.6, -2412.49], [-1287.65, -2423.88], [-1254.75, -2481.01], [-1247.36, -2493.29], [-1235.53, -2512.96], [-1228.49, -2525.87], [-1220.25, -2523.17], [-1226.19, -2513.45]], [[-1209.95, -2540.04], [-1217.03, -2528.43], [-1225.55, -2531.22], [-1217.72, -2545.41], [-1216.16, -2548.24], [-1198.45, -2581.78], [-1184.57, -2614.05], [-1183.2, -2617.24], [-1175.12, -2637.37], [-1171.85, -2645.51], [-1166.78, -2658.13], [-1158.25, -2655.78], [-1168.26, -2629.01], [-1175.76, -2611.5], [-1180.12, -2601.34], [-1181.16, -2598.9], [-1186.73, -2586.96], [-1204.33, -2549.24], [-1209.95, -2540.04]], [[-1326.57, -2355.83], [-1309.34, -2385.23], [-1297.02, -2406.23], [-1287.58, -2403.24], [-1317.92, -2351.57], [-1320.87, -2346.55], [-1329.23, -2351.28], [-1326.57, -2355.83]], [[-1186.12, -2397.04], [-1186.19, -2399.67], [-1186.35, -2405.11], [-1182.72, -2405.29], [-1082.33, -2410.17], [-1082.08, -2404.22], [-1081.98, -2401.86], [-1077.71, -2301.55], [-1183.39, -2296.52], [-1184.75, -2349.04], [-1186.12, -2397.04]], [[-987.46, -2306.28], [-1071.72, -2301.85], [-1075.98, -2402.12], [-1076.08, -2404.47], [-1076.33, -2410.45], [-1001.03, -2413.9], [-948.09, -2416.55], [-943.51, -2416.75], [-943.31, -2411.6], [-943.24, -2408.87], [-942.17, -2365.93], [-940.73, -2308.35], [-987.46, -2306.28]], [[-645.03, -2292.12], [-625.7, -2293.13], [-579.89, -2295.51], [-530.75, -2298.08], [-515.45, -2298.87], [-515.28, -2295.46], [-511.2, -2213.97], [-510.94, -2208.76], [-538.68, -2207.56], [-577.02, -2205.9], [-579.83, -2205.77], [-623.99, -2203.86], [-640.26, -2203.15], [-644.24, -2202.99], [-644.55, -2208.39], [-647.53, -2247.52], [-650.51, -2291.84], [-645.03, -2292.12]], [[-650.23, -2202.72], [-656.08, -2202.47], [-659.03, -2202.34], [-668.78, -2201.92], [-693.94, -2201.18], [-714.9, -2200.62], [-720.4, -2200.46], [-720.66, -2205.24], [-722.14, -2231.93], [-727.62, -2277.0], [-731.46, -2307.43], [-744.38, -2419.04], [-744.58, -2421.29], [-744.77, -2424.75], [-741.91, -2424.87], [-697.33, -2426.94], [-651.09, -2428.67], [-612.48, -2431.45], [-560.94, -2436.77], [-536.04, -2440.96], [-530.36, -2441.92], [-530.24, -2438.91], [-528.99, -2406.7], [-528.82, -2402.5], [-578.17, -2399.53], [-624.78, -2397.98], [-645.11, -2397.4], [-649.41, -2397.46], [-655.34, -2396.66], [-658.19, -2394.04], [-660.04, -2390.92], [-660.0, -2387.92], [-659.46, -2345.45], [-656.7, -2294.51], [-653.7, -2294.68], [-656.7, -2294.48], [-653.51, -2247.09], [-650.53, -2207.99], [-650.23, -2202.72]], [[-651.28, -2432.16], [-697.47, -2430.43], [-742.06, -2428.36], [-744.96, -2428.25], [-745.15, -2432.07], [-742.9, -2432.16], [-698.41, -2434.34], [-651.73, -2436.94], [-605.6, -2439.62], [-570.07, -2443.57], [-544.29, -2446.4], [-536.36, -2447.88], [-530.64, -2448.95], [-530.5, -2445.44], [-536.62, -2444.41], [-561.42, -2440.24], [-612.78, -2434.93], [-651.28, -2432.16]], [[-969.22, -2185.04], [-905.12, -2187.79], [-902.17, -2187.87], [-901.8, -2182.4], [-899.33, -2106.3], [-899.12, -2101.73], [-947.46, -2102.05], [-963.25, -2099.83], [-978.67, -2097.89], [-991.76, -2096.19], [-1062.69, -2089.49], [-1062.86, -2093.59], [-1066.32, -2174.82], [-1066.58, -2180.96], [-1060.25, -2181.24], [-969.22, -2185.04]], [[-1090.29, -2084.21], [-1110.14, -2078.07], [-1136.83, -2071.49], [-1155.24, -2070.31], [-1171.9, -2071.45], [-1172.12, -2075.52], [-1177.38, -2169.36], [-1177.73, -2175.45], [-1171.65, -2175.67], [-1130.84, -2177.21], [-1078.06, -2180.33], [-1072.57, -2180.65], [-1072.32, -2174.57], [-1068.86, -2093.34], [-1068.66, -2088.63], [-1090.29, -2084.21]], [[-865.55, -2538.05], [-806.86, -2541.69], [-803.05, -2541.93], [-794.83, -2542.44], [-792.17, -2534.69], [-791.1, -2530.86], [-786.42, -2439.81], [-786.29, -2437.29], [-786.22, -2435.17], [-790.28, -2434.99], [-817.98, -2433.53], [-823.93, -2429.51], [-932.34, -2424.32], [-937.78, -2424.03], [-937.99, -2429.79], [-938.1, -2432.59], [-941.82, -2524.79], [-941.95, -2528.05], [-942.2, -2534.15], [-935.97, -2534.47], [-865.55, -2538.05]], [[-906.59, -2767.92], [-900.91, -2768.21], [-897.15, -2768.39], [-871.85, -2713.65], [-867.98, -2705.13], [-846.84, -2660.68], [-852.08, -2660.34], [-856.72, -2660.04], [-860.73, -2659.78], [-948.73, -2654.4], [-949.03, -2661.68], [-949.22, -2666.36], [-951.05, -2710.64], [-952.79, -2756.57], [-952.93, -2760.25], [-953.13, -2765.58], [-947.29, -2765.87], [-906.59, -2767.92]], [[-807.23, -2547.68], [-865.88, -2544.04], [-936.27, -2540.46], [-942.48, -2540.15], [-942.81, -2546.11], [-943.0, -2549.62], [-945.55, -2595.81], [-947.96, -2639.73], [-948.2, -2644.06], [-948.44, -2648.4], [-860.35, -2653.79], [-856.33, -2654.05], [-851.7, -2654.35], [-844.16, -2654.85], [-837.51, -2639.23], [-824.86, -2609.53], [-822.33, -2603.59], [-813.87, -2583.73], [-804.72, -2564.14], [-797.31, -2548.29], [-803.42, -2547.91], [-807.23, -2547.68]], [[-724.17, -2162.8], [-723.3, -2146.88], [-722.47, -2117.79], [-723.06, -2115.12], [-724.13, -2113.24], [-727.05, -2111.47], [-730.95, -2110.26], [-733.9, -2109.77], [-739.89, -2109.27], [-771.6, -2107.93], [-886.72, -2101.12], [-893.1, -2101.53], [-893.34, -2106.53], [-895.81, -2182.7], [-896.17, -2188.1], [-892.39, -2188.29], [-777.41, -2191.97], [-729.87, -2193.14], [-726.12, -2193.27], [-725.98, -2187.23], [-725.05, -2173.48], [-724.17, -2162.8]], [[-774.25, -2428.78], [-754.47, -2429.93], [-751.06, -2430.07], [-751.04, -2429.73], [-753.98, -2429.59], [-774.14, -2428.62], [-780.0, -2428.32], [-780.0, -2428.47], [-774.25, -2428.78]], [[-785.99, -2427.98], [-790.19, -2427.73], [-815.8, -2426.55], [-815.67, -2426.64], [-789.93, -2428.0], [-786.0, -2428.18], [-785.99, -2427.98]], [[-400.04, -2260.44], [-398.03, -2221.24], [-397.92, -2219.07], [-397.65, -2213.68], [-401.63, -2213.51], [-492.15, -2209.58], [-492.0, -2206.08], [-492.15, -2209.58], [-497.92, -2209.33], [-507.44, -2208.92], [-507.7, -2214.14], [-511.78, -2295.63], [-511.95, -2299.05], [-403.6, -2304.7], [-402.3, -2304.76], [-400.04, -2260.44]], [[-414.39, -2480.44], [-407.95, -2482.93], [-406.47, -2413.93], [-406.33, -2407.69], [-455.14, -2405.33], [-459.07, -2405.14], [-518.0, -2403.02], [-517.9, -2400.02], [-518.02, -2403.02], [-522.83, -2402.81], [-522.99, -2406.93], [-524.25, -2439.15], [-524.41, -2443.25], [-517.51, -2445.25], [-505.57, -2448.72], [-472.26, -2458.26], [-457.58, -2463.81], [-444.27, -2468.86], [-415.02, -2482.07], [-414.39, -2480.44]], [[-363.55, -2409.67], [-400.34, -2407.97], [-400.47, -2414.05], [-402.0, -2485.23], [-366.53, -2498.94], [-365.89, -2486.64], [-362.45, -2413.21], [-362.29, -2409.73], [-363.55, -2409.67]], [[-506.54, -2452.09], [-518.49, -2448.61], [-524.55, -2446.85], [-524.69, -2450.28], [-517.94, -2452.1], [-511.39, -2453.87], [-486.35, -2460.5], [-461.31, -2467.72], [-442.11, -2473.67], [-445.61, -2472.09], [-458.82, -2467.09], [-473.37, -2461.58], [-506.54, -2452.09]], [[-391.93, -2219.38], [-392.04, -2221.54], [-394.04, -2260.74], [-396.46, -2308.05], [-399.96, -2397.06], [-400.15, -2401.98], [-363.27, -2403.67], [-362.05, -2403.73], [-361.89, -2398.6], [-359.06, -2309.58], [-354.75, -2220.89], [-354.5, -2215.54], [-388.84, -2214.06], [-391.65, -2213.94], [-391.93, -2219.38]], [[-626.01, -2299.12], [-645.34, -2298.12], [-650.87, -2297.83], [-653.46, -2345.65], [-654.0, -2388.0], [-654.02, -2389.31], [-653.48, -2390.21], [-652.66, -2390.96], [-649.05, -2391.45], [-645.07, -2391.4], [-624.6, -2391.98], [-577.89, -2393.53], [-525.56, -2396.69], [-519.52, -2396.95], [-519.3, -2391.39], [-517.63, -2350.78], [-515.96, -2310.52], [-515.72, -2304.87], [-531.06, -2304.07], [-580.2, -2301.5], [-626.01, -2299.12]], [[-405.95, -2396.82], [-402.57, -2310.76], [-403.91, -2310.69], [-512.23, -2305.05], [-512.46, -2310.67], [-514.13, -2350.92], [-515.8, -2391.53], [-516.02, -2397.08], [-458.82, -2399.14], [-454.85, -2399.34], [-406.15, -2401.69], [-405.95, -2396.82]], [[-1059.47, -910.88], [-1095.42, -943.21], [-1096.47, -942.04], [-1096.48, -942.05], [-1095.43, -943.23], [-1097.99, -945.49], [-1099.88, -949.8], [-1101.4, -955.56], [-1102.46, -959.3], [-1101.99, -966.92], [-1094.53, -976.46], [-1091.51, -978.01], [-1092.22, -979.41], [-1091.93, -979.78], [-1090.8, -978.48], [-1082.29, -985.9], [-1075.18, -992.86], [-1048.61, -1020.5], [-1030.92, -1039.98], [-1027.66, -1044.09], [-1023.99, -1040.83], [-1021.67, -1038.76], [-1004.15, -1022.71], [-963.56, -984.96], [-955.54, -977.44], [-945.13, -967.84], [-937.3, -960.67], [-931.23, -955.25], [-920.69, -945.57], [-911.04, -936.21], [-905.37, -930.84], [-897.93, -923.87], [-864.79, -893.94], [-838.37, -870.44], [-835.13, -867.32], [-837.77, -864.45], [-872.4, -826.66], [-880.93, -817.29], [-907.55, -787.2], [-909.46, -785.09], [-915.51, -778.54], [-920.59, -783.0], [-937.78, -798.11], [-947.36, -806.54], [-958.97, -816.74], [-969.77, -826.24], [-1004.88, -857.1], [-1006.67, -858.67], [-1018.63, -869.19], [-1021.92, -872.08], [-1023.13, -873.14], [-1024.56, -871.5], [-1025.32, -879.68], [-1040.92, -894.13], [-1049.93, -902.77], [-1059.47, -910.88]], [[-1020.19, -1052.88], [-958.35, -1121.4], [-954.33, -1117.71], [-953.18, -1116.72], [-937.49, -1103.28], [-998.1, -1034.41], [-1001.75, -1030.01], [-1016.97, -1043.96], [-1019.34, -1046.06], [-1023.18, -1049.47], [-1020.19, -1052.88]], [[-883.72, -1192.81], [-879.99, -1189.43], [-871.8, -1181.46], [-868.48, -1179.54], [-863.39, -1177.97], [-858.58, -1177.46], [-832.29, -1156.0], [-825.49, -1150.09], [-820.51, -1143.08], [-818.9, -1138.03], [-819.12, -1135.02], [-820.36, -1133.14], [-821.52, -1131.37], [-839.27, -1109.96], [-846.44, -1099.11], [-873.09, -1059.02], [-875.82, -1057.26], [-877.98, -1056.46], [-879.88, -1056.4], [-881.88, -1057.11], [-883.93, -1058.67], [-900.31, -1078.13], [-931.23, -1105.81], [-933.23, -1103.58], [-931.28, -1105.86], [-949.27, -1121.28], [-950.35, -1122.21], [-954.29, -1125.82], [-888.41, -1196.34], [-887.67, -1195.99], [-885.37, -1194.3], [-883.72, -1192.81]], [[-880.82, -1050.36], [-876.81, -1050.49], [-873.12, -1051.86], [-868.79, -1054.66], [-841.44, -1095.8], [-834.44, -1106.38], [-816.7, -1127.8], [-815.35, -1129.84], [-813.24, -1133.03], [-812.83, -1138.75], [-815.07, -1145.79], [-821.01, -1154.15], [-828.43, -1160.59], [-855.08, -1182.35], [-857.12, -1185.73], [-859.57, -1188.97], [-876.26, -1205.05], [-879.26, -1206.56], [-845.87, -1244.41], [-838.69, -1252.29], [-835.16, -1255.09], [-830.93, -1258.45], [-822.66, -1264.93], [-814.3, -1269.58], [-803.51, -1273.45], [-793.98, -1275.78], [-783.99, -1276.98], [-754.55, -1274.97], [-742.8, -1271.27], [-730.16, -1264.67], [-724.61, -1260.85], [-715.46, -1252.97], [-710.38, -1247.78], [-706.01, -1243.32], [-702.07, -1237.73], [-695.41, -1226.92], [-683.24, -1203.97], [-680.48, -1198.8], [-630.51, -1107.59], [-625.44, -1098.94], [-631.15, -1092.67], [-633.19, -1090.14], [-660.9, -1059.78], [-689.31, -1029.28], [-691.1, -1027.39], [-695.06, -1022.32], [-699.77, -1026.59], [-701.79, -1028.43], [-705.27, -1031.6], [-759.63, -1081.0], [-780.43, -1099.91], [-783.43, -1108.45], [-789.09, -1106.46], [-785.59, -1096.49], [-763.67, -1076.56], [-709.31, -1027.16], [-705.83, -1024.0], [-703.8, -1022.15], [-698.75, -1017.57], [-702.89, -1012.19], [-736.57, -976.22], [-758.55, -951.13], [-762.23, -946.94], [-766.22, -950.71], [-817.74, -999.33], [-819.79, -1001.26], [-832.85, -1013.59], [-836.97, -1009.23], [-823.91, -996.89], [-821.86, -994.96], [-770.34, -946.35], [-766.23, -942.47], [-770.42, -937.87], [-797.84, -907.97], [-801.22, -904.29], [-803.99, -901.34], [-826.57, -876.3], [-830.33, -872.41], [-833.61, -875.58], [-860.11, -899.15], [-893.19, -929.03], [-900.57, -935.93], [-906.19, -941.26], [-915.88, -950.67], [-926.54, -960.44], [-932.61, -965.86], [-940.39, -973.0], [-950.77, -982.57], [-958.78, -990.08], [-997.34, -1025.94], [-993.54, -1030.51], [-932.98, -1099.32], [-904.62, -1073.94], [-888.1, -1054.3], [-884.77, -1051.77], [-880.82, -1050.36]], [[-689.34, -1230.4], [-696.22, -1241.59], [-700.62, -1247.81], [-705.38, -1252.68], [-710.67, -1258.08], [-720.33, -1266.4], [-726.54, -1270.67], [-740.11, -1277.76], [-753.24, -1281.9], [-784.17, -1284.01], [-795.24, -1282.68], [-805.52, -1280.16], [-817.2, -1275.98], [-826.55, -1270.77], [-832.97, -1265.74], [-837.62, -1271.32], [-827.44, -1279.46], [-816.47, -1284.01], [-800.8, -1288.63], [-787.55, -1290.41], [-779.67, -1291.26], [-771.35, -1291.02], [-760.79, -1290.15], [-751.01, -1288.17], [-742.94, -1285.99], [-734.11, -1282.46], [-725.02, -1277.83], [-719.2, -1274.43], [-716.99, -1273.14], [-706.47, -1265.63], [-697.18, -1256.14], [-689.45, -1245.77], [-663.78, -1199.97], [-652.5, -1178.38], [-640.98, -1153.2], [-622.38, -1119.16], [-616.01, -1108.96], [-620.45, -1104.28], [-624.42, -1111.04], [-674.32, -1202.13], [-677.06, -1207.26], [-689.34, -1230.4]], [[-1029.38, -1063.19], [-996.16, -1100.1], [-916.17, -1186.82], [-914.4, -1188.73], [-903.49, -1197.08], [-896.43, -1201.41], [-893.91, -1202.54], [-891.84, -1202.94], [-892.17, -1202.57], [-961.48, -1128.39], [-958.92, -1126.0], [-961.52, -1128.34], [-1025.42, -1057.53], [-1028.43, -1054.11], [-1033.25, -1058.36], [-1029.38, -1063.19]], [[-1080.45, -1100.37], [-1117.86, -1134.51], [-1125.59, -1141.9], [-1136.23, -1150.62], [-1153.35, -1166.84], [-1155.01, -1168.88], [-1155.82, -1170.46], [-1156.13, -1171.95], [-1156.02, -1173.87], [-1154.51, -1176.01], [-1122.43, -1201.5], [-1099.11, -1220.21], [-1094.61, -1215.87], [-1093.7, -1215.09], [-1078.56, -1201.97], [-1054.74, -1179.94], [-1045.53, -1171.8], [-1035.25, -1162.66], [-1031.01, -1160.28], [-1026.82, -1161.52], [-1011.81, -1179.13], [-893.5, -1309.82], [-890.54, -1313.09], [-868.43, -1293.7], [-862.58, -1288.46], [-852.76, -1279.34], [-846.6, -1272.53], [-849.74, -1269.12], [-851.91, -1266.78], [-859.35, -1258.74], [-921.31, -1191.57], [-918.74, -1189.2], [-921.31, -1191.57], [-1001.34, -1104.81], [-1034.71, -1067.72], [-1038.74, -1062.7], [-1042.8, -1066.54], [-1045.09, -1068.53], [-1062.51, -1083.78], [-1072.45, -1093.08], [-1080.45, -1100.37]], [[-1045.72, -889.03], [-1032.04, -876.37], [-1031.61, -871.66], [-1035.46, -871.94], [-1053.48, -887.39], [-1062.39, -895.18], [-1070.16, -902.06], [-1086.14, -916.01], [-1130.04, -956.71], [-1133.54, -959.28], [-1126.6, -962.08], [-1121.37, -956.85], [-1100.09, -938.0], [-1064.08, -905.61], [-1054.63, -897.57], [-1045.72, -889.03]], [[-1104.77, -954.63], [-1103.7, -950.55], [-1116.57, -961.95], [-1119.54, -964.92], [-1115.82, -966.42], [-1103.8, -971.71], [-1101.95, -972.66], [-1105.42, -968.22], [-1105.99, -958.92], [-1104.77, -954.63]], [[-931.88, -1350.25], [-930.05, -1348.68], [-903.33, -1324.3], [-895.05, -1317.04], [-897.94, -1313.85], [-1016.32, -1183.09], [-1030.23, -1166.77], [-1030.29, -1166.75], [-1031.75, -1167.57], [-1041.55, -1176.29], [-1050.71, -1184.39], [-1074.56, -1206.45], [-1089.77, -1219.63], [-1090.56, -1220.31], [-1094.37, -1223.98], [-939.29, -1346.85], [-936.84, -1348.61], [-936.13, -1349.12], [-934.77, -1349.71], [-932.75, -1350.21], [-931.97, -1350.28], [-931.88, -1350.25]], [[-1118.54, -972.87], [-1125.13, -970.22], [-1132.0, -975.95], [-1124.36, -979.17], [-1109.29, -985.64], [-1102.08, -989.2], [-1094.91, -993.83], [-1083.1, -1004.84], [-1041.17, -1049.39], [-1037.81, -1053.05], [-1032.92, -1048.73], [-1036.26, -1044.52], [-1053.73, -1025.28], [-1080.15, -997.79], [-1087.04, -991.05], [-1095.08, -984.04], [-1106.81, -978.03], [-1118.54, -972.87]], [[-1171.2, -980.72], [-1164.42, -974.49], [-1160.57, -971.48], [-1164.05, -969.63], [-1179.64, -962.91], [-1177.18, -964.79], [-1172.75, -970.45], [-1171.25, -976.56], [-1171.09, -980.32], [-1171.2, -980.72]], [[-1137.89, -971.74], [-1132.49, -967.25], [-1140.1, -964.18], [-1145.11, -968.17], [-1137.89, -971.74]], [[-1166.42, -944.32], [-1175.38, -941.43], [-1150.12, -952.61], [-1141.18, -956.2], [-1134.5, -951.3], [-1100.87, -920.13], [-1112.09, -927.69], [-1128.12, -941.21], [-1135.66, -944.51], [-1143.04, -946.38], [-1149.01, -946.3], [-1166.42, -944.32]], [[-895.74, -1208.3], [-896.8, -1207.82], [-854.21, -1253.99], [-846.77, -1262.02], [-844.59, -1264.38], [-841.99, -1267.2], [-837.69, -1262.02], [-839.51, -1260.57], [-843.49, -1257.42], [-851.08, -1249.09], [-886.62, -1208.8], [-888.26, -1209.11], [-892.13, -1209.0], [-895.74, -1208.3]], [[-879.69, -1197.26], [-881.57, -1198.95], [-884.25, -1200.93], [-883.45, -1201.82], [-882.75, -1201.61], [-879.77, -1200.1], [-864.07, -1184.98], [-863.56, -1184.3], [-866.06, -1185.07], [-868.15, -1186.28], [-875.88, -1193.8], [-879.69, -1197.26]], [[-1005.79, 4.09], [-1011.89, 1.12], [-1017.31, -0.53], [-1018.19, -0.8], [-1024.76, -1.75], [-1060.41, -0.66], [-1061.44, -0.62], [-1076.9, 0.38], [-1095.12, 1.41], [-1122.46, 3.57], [-1126.84, 3.64], [-1127.06, -1.62], [-1127.19, -5.1], [-1128.45, -36.54], [-1128.6, -40.11], [-1128.62, -40.66], [-1135.61, -40.35], [-1135.59, -39.81], [-1135.45, -36.26], [-1134.18, -4.83], [-1134.05, -1.34], [-1133.84, 3.77], [-1139.47, 3.89], [-1166.03, 5.01], [-1201.79, 6.74], [-1241.75, 8.83], [-1248.96, 9.12], [-1283.51, 10.82], [-1288.87, 11.54], [-1289.14, 6.94], [-1289.62, -2.34], [-1290.9, -26.33], [-1293.56, -76.33], [-1294.54, -84.85], [-1296.59, -93.98], [-1298.09, -121.09], [-1298.41, -128.35], [-1298.85, -139.52], [-1301.72, -189.09], [-1303.09, -218.9], [-1304.92, -258.93], [-1304.99, -264.25], [-1299.91, -264.44], [-1243.79, -267.31], [-1186.91, -270.15], [-1181.22, -270.43], [-1180.98, -265.09], [-1179.59, -233.29], [-1179.03, -220.55], [-1178.61, -210.96], [-1178.31, -204.22], [-1177.91, -195.22], [-1177.46, -183.69], [-1177.04, -174.23], [-1175.42, -138.63], [-1168.43, -138.95], [-1170.05, -174.54], [-1170.47, -183.98], [-1170.92, -195.51], [-1171.31, -204.52], [-1171.61, -211.26], [-1172.03, -220.85], [-1172.59, -233.6], [-1173.99, -265.4], [-1174.23, -270.78], [-1172.73, -270.85], [-1160.52, -263.38], [-1157.51, -260.72], [-1148.78, -252.86], [-1121.85, -228.59], [-1101.45, -210.21], [-1055.38, -168.69], [-1039.57, -154.44], [-1017.74, -134.76], [-1008.54, -126.48], [-991.46, -111.08], [-988.15, -108.19], [-985.33, -106.07], [-980.08, -103.14], [-974.83, -101.06], [-972.18, -100.1], [-971.27, -96.55], [-969.84, -92.38], [-967.76, -88.38], [-965.85, -85.68], [-963.65, -83.03], [-961.3, -80.8], [-960.59, -80.14], [-942.09, -63.72], [-921.56, -45.49], [-914.53, -39.26], [-908.41, -33.83], [-907.78, -33.27], [-900.82, -27.1], [-885.76, -13.73], [-885.09, -13.13], [-878.53, -7.3], [-876.41, -5.43], [-869.77, 0.47], [-847.84, 19.93], [-838.6, 28.14], [-833.53, 32.63], [-836.56, 35.93], [-855.74, 56.73], [-858.12, 59.38], [-869.42, 71.7], [-871.49, 73.94], [-891.77, 95.99], [-893.85, 98.27], [-896.68, 101.34], [-900.82, 97.6], [-925.3, 75.53], [-961.68, 42.74], [-975.26, 30.49], [-988.19, 18.83], [-991.68, 15.68], [-994.03, 18.28], [-991.68, 15.68], [-1000.27, 7.94], [-1002.49, 6.4], [-1005.79, 4.09]], [[-984.37, -112.86], [-987.48, -115.57], [-1004.52, -130.93], [-1013.72, -139.22], [-1035.55, -158.89], [-1051.37, -173.15], [-1097.43, -214.67], [-1117.83, -233.04], [-1144.76, -257.32], [-1153.51, -265.2], [-1156.94, -268.23], [-1162.07, -271.36], [-1159.56, -271.48], [-1135.64, -272.62], [-1089.4, -274.84], [-1077.85, -275.4], [-1065.14, -276.0], [-1053.54, -276.41], [-1045.73, -276.52], [-1042.37, -276.31], [-1038.82, -275.83], [-1035.39, -274.98], [-1032.71, -274.17], [-1032.02, -273.77], [-1027.75, -271.63], [-1025.29, -270.31], [-1022.11, -268.06], [-1018.94, -265.67], [-1015.58, -262.81], [-1011.71, -259.1], [-991.32, -240.21], [-981.27, -231.19], [-970.3, -221.57], [-960.5, -212.49], [-955.74, -217.63], [-958.11, -215.05], [-935.99, -194.72], [-921.3, -181.24], [-916.57, -177.3], [-920.65, -172.77], [-926.39, -166.46], [-949.3, -141.23], [-946.71, -138.87], [-949.3, -141.22], [-963.68, -125.32], [-966.64, -121.63], [-969.28, -117.82], [-971.32, -113.78], [-972.55, -107.67], [-972.56, -106.62], [-972.69, -106.67], [-977.5, -108.58], [-982.05, -111.11], [-984.37, -112.86]], [[-981.88, -250.55], [-1002.11, -269.29], [-1006.19, -273.2], [-1010.18, -276.6], [-1013.84, -279.37], [-1017.91, -282.25], [-1021.32, -284.07], [-1025.35, -286.08], [-1026.34, -286.66], [-1026.86, -285.78], [-1026.82, -293.88], [-1026.69, -311.5], [-1026.58, -332.09], [-1026.37, -337.21], [-1025.68, -342.18], [-1024.73, -345.87], [-1023.68, -349.18], [-1022.13, -352.57], [-1020.36, -355.3], [-1018.39, -357.89], [-1015.76, -360.97], [-1001.2, -376.0], [-994.7, -382.92], [-991.67, -380.65], [-989.42, -378.51], [-971.61, -362.68], [-957.03, -349.84], [-943.21, -337.67], [-933.25, -328.89], [-852.43, -257.18], [-849.2, -254.11], [-854.2, -248.5], [-875.19, -223.7], [-878.38, -220.33], [-875.92, -218.0], [-875.97, -217.97], [-877.18, -219.05], [-879.94, -215.94], [-888.66, -211.49], [-892.41, -207.7], [-895.9, -204.95], [-899.74, -202.73], [-903.05, -201.57], [-906.08, -200.8], [-909.35, -200.35], [-912.91, -200.15], [-916.47, -200.31], [-919.63, -200.9], [-922.88, -201.75], [-926.0, -203.15], [-941.59, -213.58], [-950.02, -217.12], [-953.36, -220.2], [-950.99, -222.77], [-960.93, -231.97], [-971.98, -241.66], [-981.88, -250.55]], [[-1026.03, -413.85], [-1031.93, -416.75], [-1040.55, -419.46], [-1043.5, -420.39], [-1053.04, -421.51], [-1059.0, -421.43], [-1064.64, -421.27], [-1080.27, -420.75], [-1085.68, -420.53], [-1085.91, -424.55], [-1086.08, -427.44], [-1086.52, -435.33], [-1090.02, -496.48], [-1090.25, -500.31], [-1091.95, -530.07], [-1092.08, -532.43], [-1092.41, -538.05], [-1086.24, -538.36], [-1055.21, -539.93], [-1048.6, -540.23], [-1026.52, -541.03], [-1022.97, -540.75], [-1019.98, -540.29], [-1017.76, -539.78], [-1015.48, -539.1], [-1012.97, -538.06], [-1011.15, -536.83], [-1010.16, -536.12], [-994.97, -522.78], [-986.2, -514.94], [-980.35, -509.8], [-971.46, -501.99], [-956.62, -488.94], [-935.03, -469.96], [-932.87, -468.03], [-930.69, -465.86], [-930.18, -465.33], [-935.26, -459.78], [-959.15, -433.74], [-964.91, -427.46], [-970.21, -421.68], [-974.41, -417.09], [-991.34, -398.83], [-995.5, -394.23], [-997.4, -395.54], [-999.84, -397.01], [-1015.48, -408.04], [-1026.03, -413.85]], [[-952.0, -494.2], [-966.84, -507.25], [-975.73, -515.06], [-981.55, -520.18], [-990.33, -528.02], [-1005.79, -541.59], [-1007.13, -542.57], [-1009.64, -544.26], [-1013.14, -545.71], [-1015.98, -546.55], [-1018.67, -547.17], [-1022.15, -547.71], [-1026.36, -548.04], [-1045.34, -547.35], [-1045.48, -552.14], [-1045.53, -554.64], [-1046.11, -583.95], [-1046.53, -603.52], [-1046.53, -605.58], [-1046.78, -614.19], [-1046.51, -619.0], [-1045.54, -622.46], [-1044.24, -625.07], [-1042.21, -627.99], [-1009.55, -664.35], [-1005.48, -668.84], [-1001.62, -665.33], [-999.67, -663.56], [-951.35, -619.56], [-948.1, -616.61], [-936.24, -605.81], [-919.22, -590.33], [-915.04, -586.52], [-900.22, -573.02], [-889.86, -563.59], [-867.78, -543.48], [-865.72, -541.6], [-863.53, -539.6], [-861.44, -537.71], [-865.49, -533.29], [-900.25, -495.38], [-921.24, -472.5], [-924.22, -469.25], [-925.71, -470.78], [-928.06, -473.12], [-930.39, -475.2], [-952.0, -494.2]], [[-1191.06, -466.45], [-1190.08, -447.85], [-1189.84, -443.05], [-1188.78, -420.19], [-1188.51, -415.31], [-1195.54, -414.49], [-1304.05, -409.76], [-1312.68, -408.75], [-1313.45, -414.12], [-1319.13, -516.67], [-1319.33, -519.95], [-1319.72, -526.53], [-1317.82, -526.62], [-1313.02, -526.87], [-1200.61, -532.29], [-1194.27, -532.81], [-1194.03, -526.79], [-1193.8, -523.83], [-1191.06, -466.45]], [[-1097.23, -499.9], [-1097.01, -496.07], [-1093.51, -434.94], [-1093.07, -427.03], [-1092.9, -424.14], [-1092.67, -420.22], [-1098.54, -419.93], [-1134.81, -418.17], [-1137.26, -418.04], [-1177.27, -416.09], [-1181.53, -415.88], [-1181.79, -420.54], [-1182.85, -443.39], [-1183.08, -448.2], [-1184.06, -466.8], [-1186.81, -524.26], [-1187.04, -527.2], [-1187.28, -533.28], [-1183.46, -533.48], [-1144.21, -535.44], [-1105.7, -537.39], [-1099.4, -537.7], [-1099.07, -532.03], [-1098.94, -529.68], [-1097.23, -499.9]], [[-1305.73, -393.58], [-1306.23, -398.93], [-1303.22, -399.28], [-1194.7, -404.02], [-1190.78, -404.48], [-1190.81, -399.45], [-1189.31, -370.16], [-1189.15, -366.75], [-1188.3, -347.78], [-1188.18, -345.41], [-1187.96, -340.25], [-1187.06, -324.24], [-1185.16, -290.58], [-1184.95, -287.45], [-1184.66, -284.28], [-1187.6, -284.13], [-1244.5, -281.29], [-1299.84, -278.46], [-1299.85, -281.71], [-1299.88, -286.08], [-1302.8, -345.42], [-1302.86, -346.87], [-1303.05, -351.15], [-1303.44, -356.38], [-1303.86, -365.69], [-1305.73, -393.58]], [[-1177.32, -370.74], [-1178.81, -399.72], [-1178.77, -405.5], [-1176.75, -405.6], [-1136.74, -407.55], [-1134.28, -407.68], [-1098.03, -409.45], [-1088.65, -409.9], [-1079.89, -410.25], [-1064.32, -410.78], [-1058.79, -410.93], [-1053.58, -411.0], [-1045.72, -410.08], [-1043.7, -409.44], [-1035.84, -406.97], [-1030.88, -404.54], [-1021.05, -399.12], [-1005.58, -388.21], [-1003.09, -386.71], [-1000.83, -385.15], [-1005.54, -380.14], [-1020.2, -365.01], [-1023.06, -361.66], [-1025.27, -358.75], [-1027.4, -355.46], [-1029.29, -351.35], [-1030.5, -347.53], [-1031.57, -343.35], [-1032.35, -337.75], [-1032.57, -332.23], [-1032.69, -311.54], [-1032.82, -293.91], [-1032.84, -288.77], [-1036.2, -289.6], [-1041.0, -290.25], [-1045.38, -290.52], [-1053.88, -290.41], [-1065.72, -289.99], [-1078.52, -289.38], [-1090.07, -288.83], [-1136.31, -286.61], [-1160.23, -285.47], [-1172.66, -284.87], [-1172.98, -288.4], [-1173.19, -291.33], [-1175.08, -324.91], [-1175.98, -340.84], [-1176.2, -345.96], [-1176.31, -348.34], [-1177.16, -367.29], [-1177.32, -370.74]], [[-1020.69, 112.73], [-969.0, 55.34], [-967.33, 53.49], [-964.14, 49.95], [-929.99, 80.73], [-905.51, 102.79], [-901.02, 106.85], [-904.94, 111.2], [-909.0, 115.71], [-957.17, 169.22], [-959.41, 167.21], [-982.41, 146.78], [-990.15, 139.89], [-992.23, 138.05], [-994.53, 135.99], [-1002.15, 129.22], [-1018.5, 114.68], [-1020.69, 112.73]], [[-728.84, -916.39], [-753.3, -938.71], [-757.1, -942.18], [-753.29, -946.51], [-731.38, -971.52], [-697.55, -1007.65], [-693.55, -1012.84], [-689.5, -1009.16], [-687.63, -1007.46], [-657.41, -979.98], [-642.69, -966.61], [-613.75, -940.31], [-611.19, -937.99], [-588.79, -917.63], [-551.33, -884.29], [-547.64, -882.99], [-553.93, -877.09], [-571.54, -858.93], [-576.76, -849.84], [-579.6, -847.45], [-578.73, -846.4], [-578.89, -846.12], [-579.98, -847.09], [-581.43, -845.45], [-608.5, -814.59], [-612.36, -810.12], [-614.55, -812.13], [-617.09, -814.43], [-677.82, -869.85], [-716.03, -904.72], [-728.84, -916.39]], [[-927.52, -452.69], [-922.63, -458.03], [-920.28, -455.89], [-917.95, -453.76], [-881.41, -420.49], [-866.86, -407.25], [-845.76, -388.03], [-837.39, -380.42], [-785.37, -333.06], [-784.0, -331.81], [-781.6, -329.62], [-785.42, -325.18], [-841.91, -262.57], [-844.61, -259.4], [-847.7, -262.34], [-928.61, -334.13], [-938.58, -342.92], [-952.4, -355.1], [-966.97, -367.92], [-984.68, -383.67], [-987.14, -386.0], [-988.13, -386.74], [-983.6, -391.73], [-966.69, -409.98], [-962.47, -414.59], [-957.17, -420.36], [-951.41, -426.64], [-927.52, -452.69]], [[-825.52, -858.48], [-817.21, -850.99], [-804.88, -839.85], [-802.02, -837.26], [-797.55, -833.23], [-769.3, -807.71], [-753.87, -793.77], [-741.13, -782.28], [-735.84, -777.49], [-719.41, -762.67], [-712.01, -755.99], [-704.35, -748.9], [-689.42, -735.49], [-686.54, -732.89], [-684.65, -731.2], [-688.41, -727.06], [-705.83, -707.81], [-707.44, -706.31], [-758.0, -651.17], [-766.64, -641.28], [-769.19, -643.58], [-773.03, -647.1], [-775.4, -649.22], [-787.32, -660.07], [-801.2, -672.73], [-809.89, -680.68], [-819.28, -689.11], [-826.98, -696.23], [-842.79, -710.62], [-850.9, -718.01], [-879.36, -743.92], [-883.39, -747.62], [-888.19, -751.97], [-907.11, -769.18], [-911.37, -772.71], [-904.3, -780.36], [-902.34, -782.53], [-875.72, -812.61], [-867.23, -821.94], [-832.61, -859.72], [-830.02, -862.54], [-825.52, -858.48]], [[-757.34, -934.28], [-732.88, -911.96], [-720.08, -900.29], [-681.87, -865.42], [-621.13, -810.0], [-618.59, -807.69], [-616.35, -805.64], [-620.44, -801.19], [-635.17, -785.12], [-636.16, -784.05], [-647.27, -771.93], [-654.49, -764.04], [-656.58, -761.77], [-676.08, -740.51], [-679.93, -736.36], [-681.86, -738.1], [-684.74, -740.69], [-699.64, -754.08], [-707.29, -761.16], [-714.72, -767.86], [-731.15, -782.69], [-736.44, -787.47], [-749.18, -798.97], [-764.61, -812.9], [-792.86, -838.42], [-797.33, -842.45], [-800.19, -845.04], [-812.52, -856.18], [-820.83, -863.68], [-825.21, -867.63], [-821.45, -871.52], [-798.84, -896.6], [-796.09, -899.52], [-792.68, -903.24], [-765.25, -933.15], [-761.1, -937.71], [-757.34, -934.28]], [[-931.53, -610.99], [-943.39, -621.79], [-946.64, -624.74], [-994.96, -668.73], [-996.91, -670.51], [-1000.78, -674.03], [-997.29, -677.89], [-972.35, -705.43], [-969.59, -708.51], [-927.47, -755.05], [-926.27, -756.38], [-918.47, -764.96], [-914.0, -761.25], [-895.25, -744.19], [-890.47, -739.86], [-886.44, -736.17], [-857.97, -710.25], [-849.86, -702.86], [-834.08, -688.5], [-826.35, -681.35], [-816.94, -672.9], [-808.28, -664.98], [-794.4, -652.31], [-782.43, -641.42], [-780.08, -639.32], [-776.26, -635.81], [-773.26, -633.11], [-781.71, -621.79], [-783.01, -620.28], [-816.36, -584.51], [-830.03, -570.15], [-853.31, -546.57], [-856.71, -542.87], [-858.81, -544.77], [-861.0, -546.78], [-863.07, -548.66], [-885.15, -568.76], [-895.5, -578.19], [-910.33, -591.7], [-914.51, -595.5], [-931.53, -610.99]], [[-712.19, -577.53], [-711.34, -576.75], [-696.58, -563.32], [-681.18, -549.28], [-667.42, -536.76], [-665.95, -535.43], [-651.51, -522.28], [-628.68, -501.49], [-626.17, -499.2], [-635.77, -488.49], [-683.38, -436.89], [-705.79, -412.09], [-709.66, -407.87], [-712.12, -410.36], [-714.3, -412.71], [-742.65, -439.02], [-765.79, -460.09], [-779.86, -472.89], [-794.47, -486.2], [-809.08, -499.51], [-824.5, -513.55], [-825.46, -514.42], [-845.77, -532.91], [-848.18, -535.1], [-851.53, -538.15], [-848.24, -541.75], [-825.0, -565.27], [-811.27, -579.71], [-777.79, -615.61], [-776.25, -617.41], [-768.05, -628.38], [-764.86, -625.47], [-748.72, -610.78], [-748.15, -610.26], [-739.37, -602.26], [-725.95, -590.04], [-712.19, -577.53]], [[-813.8, -494.34], [-799.18, -481.03], [-784.57, -467.72], [-770.51, -454.91], [-747.39, -433.87], [-719.26, -407.76], [-717.18, -405.52], [-714.4, -402.71], [-717.54, -399.3], [-722.73, -393.98], [-741.52, -373.49], [-773.62, -338.49], [-776.95, -334.86], [-779.29, -336.99], [-780.66, -338.24], [-832.68, -385.59], [-841.04, -393.21], [-862.15, -412.43], [-876.7, -425.67], [-913.24, -458.94], [-915.56, -461.06], [-919.2, -464.37], [-916.08, -467.77], [-895.09, -490.65], [-860.34, -528.56], [-856.26, -532.99], [-852.89, -529.92], [-850.48, -527.73], [-830.17, -509.24], [-829.21, -508.37], [-813.8, -494.34]], [[-764.43, -32.34], [-760.64, -36.48], [-757.28, -33.45], [-733.29, -11.75], [-729.13, -7.99], [-725.95, -5.11], [-725.25, -4.47], [-713.34, 6.29], [-688.31, 28.92], [-666.04, 49.06], [-655.28, 58.8], [-621.45, 89.39], [-617.17, 93.25], [-621.3, 97.79], [-622.65, 99.27], [-651.33, 130.76], [-661.34, 141.74], [-662.14, 142.62], [-664.05, 144.72], [-677.06, 159.0], [-680.26, 162.52], [-684.32, 158.84], [-715.52, 130.46], [-721.76, 124.78], [-733.61, 114.01], [-745.46, 103.22], [-746.43, 102.34], [-761.9, 88.28], [-764.42, 85.98], [-772.74, 78.41], [-773.45, 77.77], [-775.05, 76.31], [-782.54, 69.5], [-793.99, 59.08], [-794.61, 58.51], [-820.16, 35.27], [-823.59, 32.16], [-820.33, 28.62], [-804.07, 10.92], [-803.44, 10.24], [-784.3, -10.58], [-783.3, -11.67], [-766.71, -29.73], [-764.43, -32.34]], [[-818.54, -226.59], [-814.6, -222.93], [-778.48, -190.61], [-757.03, -169.65], [-707.03, -122.73], [-699.43, -116.2], [-700.57, -115.44], [-702.36, -113.63], [-703.49, -111.55], [-703.97, -110.17], [-704.28, -108.79], [-704.52, -106.4], [-704.76, -104.61], [-704.91, -104.19], [-705.2, -103.83], [-738.6, -66.82], [-753.15, -49.71], [-755.12, -48.07], [-759.38, -44.78], [-766.35, -51.07], [-797.28, -79.04], [-804.78, -85.83], [-824.12, -103.32], [-832.34, -110.75], [-841.18, -118.76], [-884.72, -158.53], [-902.97, -174.7], [-906.03, -177.44], [-902.2, -180.34], [-872.03, -214.31], [-870.76, -213.11], [-867.36, -216.69], [-846.28, -241.62], [-841.48, -247.0], [-838.8, -244.61], [-818.54, -226.59]], [[-834.01, -255.65], [-777.54, -318.24], [-773.83, -322.55], [-769.69, -318.79], [-768.48, -317.68], [-743.39, -294.88], [-731.85, -284.38], [-711.52, -265.89], [-683.94, -240.81], [-665.58, -224.13], [-635.54, -196.79], [-634.45, -195.8], [-631.77, -193.37], [-636.44, -188.08], [-638.11, -186.18], [-687.88, -129.72], [-695.01, -121.63], [-702.35, -127.94], [-752.19, -174.7], [-773.69, -195.72], [-809.88, -228.1], [-813.84, -231.77], [-834.14, -249.83], [-836.88, -252.28], [-834.01, -255.65]], [[-893.93, -202.04], [-890.07, -205.08], [-886.56, -208.63], [-886.33, -208.75], [-906.98, -185.5], [-911.43, -182.13], [-916.7, -186.51], [-931.26, -199.88], [-941.56, -209.35], [-927.71, -200.08], [-924.05, -198.43], [-920.39, -197.48], [-916.87, -196.83], [-912.89, -196.65], [-909.01, -196.86], [-905.41, -197.36], [-902.04, -198.22], [-898.28, -199.53], [-893.93, -202.04]], [[-911.26, -172.73], [-907.63, -169.47], [-889.4, -153.32], [-845.89, -113.59], [-837.04, -105.56], [-828.82, -98.13], [-809.48, -80.64], [-801.98, -73.85], [-771.04, -45.88], [-765.83, -41.17], [-769.64, -37.01], [-771.92, -34.4], [-788.45, -16.41], [-789.45, -15.33], [-808.61, 5.51], [-809.23, 6.19], [-825.48, 23.88], [-828.79, 27.48], [-833.96, 22.9], [-843.19, 14.7], [-865.12, -4.76], [-871.77, -10.67], [-873.88, -12.54], [-880.43, -18.34], [-881.09, -18.95], [-896.18, -32.33], [-903.13, -38.5], [-903.75, -39.06], [-909.89, -44.5], [-916.91, -50.72], [-937.44, -68.95], [-955.87, -85.31], [-956.5, -85.9], [-958.53, -87.82], [-960.29, -89.94], [-961.77, -92.04], [-963.39, -95.14], [-964.55, -98.56], [-965.6, -102.59], [-965.56, -106.94], [-964.64, -111.47], [-963.25, -114.24], [-961.03, -117.44], [-958.35, -120.78], [-944.11, -136.52], [-921.21, -161.75], [-915.46, -168.07], [-911.26, -172.73]], [[-828.32, 37.31], [-824.87, 40.45], [-799.34, 63.67], [-798.72, 64.24], [-787.25, 74.68], [-779.76, 81.49], [-778.16, 82.94], [-777.45, 83.59], [-769.13, 91.16], [-766.61, 93.45], [-751.13, 107.53], [-750.16, 108.41], [-738.32, 119.19], [-726.48, 129.95], [-720.24, 135.63], [-689.03, 164.02], [-684.98, 167.7], [-688.88, 171.98], [-712.05, 197.42], [-742.36, 231.06], [-744.1, 232.99], [-747.25, 236.52], [-750.72, 232.94], [-772.05, 213.72], [-787.53, 199.75], [-806.0, 182.8], [-813.13, 176.67], [-826.21, 164.91], [-843.27, 149.49], [-887.75, 109.38], [-891.48, 106.03], [-888.7, 103.0], [-886.61, 100.73], [-866.35, 78.68], [-864.28, 76.44], [-852.93, 64.09], [-850.56, 61.44], [-831.41, 40.67], [-828.32, 37.31]], [[-495.32, -999.22], [-507.18, -1004.35], [-519.87, -1010.5], [-528.9, -1015.26], [-538.81, -1021.34], [-548.82, -1028.08], [-558.48, -1035.21], [-565.28, -1040.79], [-571.69, -1046.26], [-578.67, -1052.87], [-585.3, -1059.29], [-593.27, -1067.97], [-601.09, -1077.25], [-608.57, -1086.9], [-613.16, -1093.33], [-616.6, -1098.17], [-611.97, -1103.04], [-609.19, -1099.21], [-602.52, -1090.69], [-595.03, -1081.75], [-587.17, -1073.48], [-574.67, -1060.85], [-555.09, -1043.13], [-544.57, -1035.78], [-534.79, -1029.4], [-523.98, -1022.81], [-514.98, -1018.12], [-494.62, -1008.62], [-472.5, -999.6], [-453.91, -994.72], [-441.49, -994.17], [-428.37, -991.16], [-418.82, -990.15], [-407.18, -990.09], [-393.15, -990.3], [-384.02, -991.36], [-382.48, -987.79], [-384.48, -986.26], [-389.17, -983.06], [-393.59, -980.89], [-399.55, -978.98], [-412.84, -977.51], [-412.6, -979.18], [-426.06, -981.12], [-440.39, -983.86], [-461.02, -988.56], [-473.12, -991.57], [-483.42, -994.77], [-495.32, -999.22]], [[-400.2, -1008.2], [-398.16, -1011.16], [-396.97, -1015.55], [-396.66, -1019.31], [-388.96, -1003.19], [-386.84, -998.08], [-393.6, -997.29], [-407.22, -997.09], [-418.43, -997.14], [-423.34, -997.67], [-418.4, -998.11], [-414.62, -998.78], [-412.5, -999.43], [-409.25, -1000.55], [-405.22, -1003.1], [-402.29, -1005.38], [-400.2, -1008.2]], [[-376.1, -992.12], [-376.59, -991.81], [-376.7, -992.07], [-376.1, -992.12]], [[-345.54, -917.05], [-339.89, -907.25], [-333.55, -896.4], [-331.57, -893.03], [-335.2, -897.11], [-344.11, -908.62], [-351.91, -921.27], [-355.29, -927.18], [-370.43, -955.88], [-375.27, -962.96], [-380.0, -966.49], [-387.01, -969.41], [-395.01, -971.4], [-405.11, -974.84], [-398.81, -975.54], [-392.27, -977.63], [-387.4, -980.03], [-382.43, -983.42], [-380.94, -984.56], [-373.52, -969.61], [-363.22, -948.67], [-357.77, -938.59], [-351.61, -927.63], [-345.54, -917.05]], [[-568.32, -856.51], [-551.13, -874.24], [-544.25, -880.69], [-541.44, -868.03], [-540.93, -865.69], [-543.98, -865.65], [-546.85, -865.39], [-550.87, -864.59], [-555.64, -863.08], [-560.78, -860.74], [-565.3, -857.98], [-568.78, -855.71], [-568.32, -856.51]], [[-883.92, -2989.59], [-886.75, -2994.26], [-900.18, -3093.6], [-900.93, -3099.81], [-802.72, -3104.62], [-786.48, -2985.0], [-787.09, -2977.69], [-789.28, -2974.81], [-794.48, -2973.5], [-878.72, -2987.02], [-883.92, -2989.59]], [[811.7, 1821.44], [814.31, 1818.85], [970.14, 1682.57], [1098.98, 1539.12], [1102.56, 1535.52], [1110.05, 1542.18], [1194.04, 1611.25], [1204.38, 1620.37], [1317.2, 1722.83], [1339.36, 1740.62], [1371.74, 1769.72], [1444.07, 1835.62], [1494.84, 1876.76], [1500.25, 1882.85], [1500.47, 1883.1], [1498.27, 1892.83], [1498.26, 1895.99], [1499.95, 1915.77], [1505.24, 1931.27], [1506.41, 1947.08], [1507.37, 1960.1], [1512.29, 2006.79], [1515.98, 2041.91], [1519.55, 2075.87], [1523.06, 2109.25], [1525.4, 2144.48], [1527.54, 2176.72], [1525.58, 2197.77], [1523.21, 2212.28], [1518.44, 2233.44], [1505.47, 2266.2], [1499.22, 2280.35], [1493.9, 2294.53], [1490.01, 2304.89], [1487.1, 2304.15], [1479.81, 2303.17], [1471.23, 2302.69], [1459.14, 2302.98], [1277.26, 2308.17], [1270.42, 2308.87], [1261.08, 2311.25], [1252.41, 2315.09], [1239.36, 2322.64], [1181.83, 2354.57], [1177.55, 2357.19], [1174.23, 2350.92], [1162.61, 2329.2], [1151.49, 2308.41], [1149.64, 2304.49], [1147.42, 2298.93], [1143.69, 2289.71], [1147.92, 2287.83], [1168.96, 2278.88], [1187.77, 2271.81], [1224.61, 2257.75], [1238.72, 2252.2], [1247.31, 2246.77], [1253.3, 2241.84], [1258.72, 2236.41], [1261.37, 2232.71], [1265.74, 2225.39], [1268.67, 2215.75], [1269.65, 2209.25], [1275.34, 2181.21], [1282.32, 2182.73], [1289.71, 2149.22], [1271.35, 2145.26], [1263.88, 2178.65], [1269.48, 2179.91], [1263.74, 2208.2], [1262.8, 2214.42], [1260.21, 2222.94], [1256.34, 2229.42], [1254.13, 2232.52], [1249.26, 2237.39], [1243.78, 2241.9], [1236.0, 2246.82], [1222.45, 2252.16], [1185.64, 2266.2], [1166.73, 2273.31], [1145.53, 2282.33], [1141.93, 2283.92], [1141.33, 2282.37], [1124.54, 2238.94], [1115.39, 2216.21], [1100.15, 2173.56], [1098.12, 2168.41], [1096.68, 2164.77], [1091.21, 2152.89], [1080.53, 2130.51], [1073.72, 2116.09], [1044.97, 2081.0], [1034.75, 2070.43], [1028.58, 2064.72], [1019.14, 2056.99], [998.66, 2034.43], [984.86, 2011.31], [976.29, 2001.73], [968.47, 1993.45], [931.09, 1957.16], [816.5, 1826.83], [811.7, 1821.44]], [[754.14, 1756.8], [751.82, 1754.07], [754.91, 1751.49], [775.0, 1734.12], [911.73, 1613.52], [952.73, 1576.67], [950.06, 1573.7], [952.73, 1576.67], [971.26, 1560.01], [983.66, 1548.5], [997.24, 1533.59], [1037.09, 1489.73], [1038.21, 1488.4], [1041.59, 1484.8], [1046.07, 1488.4], [1094.16, 1528.43], [1097.99, 1531.6], [1094.61, 1535.0], [965.92, 1678.29], [810.22, 1814.46], [807.66, 1816.99], [804.71, 1813.8], [754.14, 1756.8]], [[1107.38, 1530.44], [1111.39, 1526.05], [1118.86, 1532.35], [1196.57, 1603.88], [1196.36, 1604.1], [1114.6, 1536.86], [1107.38, 1530.44]], [[1211.4, 1596.54], [1265.57, 1535.81], [1268.45, 1532.58], [1272.83, 1536.58], [1275.78, 1539.26], [1365.26, 1620.97], [1394.29, 1647.47], [1408.95, 1661.71], [1411.2, 1663.91], [1405.14, 1667.29], [1377.62, 1687.71], [1371.36, 1693.14], [1375.29, 1697.67], [1381.38, 1692.39], [1408.4, 1672.34], [1417.65, 1667.18], [1416.18, 1664.56], [1417.65, 1667.18], [1446.37, 1651.06], [1450.57, 1648.71], [1447.63, 1643.48], [1443.44, 1645.83], [1416.67, 1660.85], [1413.13, 1657.41], [1398.41, 1643.1], [1369.31, 1616.53], [1279.82, 1534.82], [1276.87, 1532.15], [1272.45, 1528.11], [1277.09, 1522.94], [1333.19, 1460.48], [1337.53, 1455.64], [1337.53, 1455.64], [1345.08, 1447.87], [1393.18, 1395.51], [1410.76, 1376.53], [1414.35, 1372.64], [1418.64, 1368.01], [1426.72, 1375.54], [1468.47, 1414.45], [1472.78, 1418.46], [1476.56, 1421.89], [1497.31, 1440.7], [1521.61, 1462.74], [1560.3, 1497.81], [1556.42, 1501.48], [1542.31, 1514.79], [1532.6, 1523.93], [1527.18, 1527.86], [1521.0, 1532.33], [1524.52, 1537.19], [1530.7, 1532.72], [1536.43, 1528.57], [1546.42, 1519.15], [1560.53, 1505.84], [1564.8, 1501.81], [1573.1, 1508.97], [1574.48, 1510.27], [1574.74, 1510.52], [1601.49, 1535.7], [1625.74, 1558.48], [1639.87, 1571.83], [1669.13, 1599.76], [1719.85, 1648.31], [1724.46, 1652.73], [1741.33, 1670.63], [1756.04, 1684.52], [1816.04, 1741.18], [1816.98, 1740.18], [1817.06, 1740.39], [1816.23, 1741.35], [1818.01, 1742.87], [1818.56, 1744.32], [1819.11, 1748.61], [1818.09, 1752.6], [1816.96, 1755.26], [1806.56, 1772.09], [1799.43, 1781.27], [1794.51, 1787.59], [1786.59, 1797.79], [1781.18, 1802.47], [1782.11, 1803.55], [1781.77, 1804.0], [1761.28, 1826.56], [1752.19, 1836.59], [1754.78, 1838.94], [1752.16, 1836.62], [1745.81, 1843.79], [1733.14, 1858.09], [1715.73, 1883.56], [1714.37, 1885.54], [1712.01, 1883.07], [1702.48, 1892.2], [1691.66, 1901.06], [1686.39, 1906.23], [1684.09, 1903.6], [1676.67, 1910.1], [1651.01, 1932.57], [1655.33, 1937.5], [1653.65, 1937.92], [1651.91, 1936.88], [1650.89, 1938.6], [1643.62, 1940.39], [1631.04, 1951.78], [1622.73, 1959.3], [1619.59, 1956.56], [1594.76, 1937.02], [1582.3, 1926.87], [1559.76, 1906.5], [1556.36, 1903.42], [1554.08, 1901.51], [1533.04, 1883.54], [1528.73, 1880.31], [1519.15, 1871.25], [1517.6, 1869.98], [1511.55, 1865.48], [1510.34, 1864.57], [1507.48, 1862.19], [1500.23, 1856.15], [1425.96, 1795.55], [1389.54, 1766.47], [1380.81, 1759.71], [1348.47, 1730.45], [1326.44, 1710.61], [1303.23, 1689.28], [1214.76, 1609.1], [1206.47, 1601.98], [1209.07, 1599.15], [1211.4, 1596.54]], [[1372.11, 1313.14], [1364.35, 1306.37], [1317.78, 1265.52], [1292.13, 1243.02], [1283.49, 1235.45], [1280.92, 1233.2], [1275.2, 1228.18], [1280.35, 1222.27], [1286.33, 1227.63], [1418.8, 1346.2], [1425.04, 1351.79], [1421.21, 1356.17], [1414.59, 1350.37], [1372.11, 1313.14]], [[1293.33, 1219.8], [1286.97, 1214.1], [1292.34, 1208.22], [1294.67, 1205.65], [1305.76, 1193.5], [1330.11, 1166.79], [1356.77, 1137.58], [1366.45, 1126.95], [1395.77, 1094.8], [1404.26, 1085.49], [1410.85, 1077.91], [1418.31, 1070.1], [1419.93, 1068.46], [1424.63, 1063.44], [1430.68, 1057.01], [1435.37, 1052.09], [1438.76, 1048.19], [1449.7, 1036.02], [1464.15, 1019.94], [1481.41, 1000.73], [1493.31, 987.5], [1496.52, 983.99], [1500.96, 979.15], [1504.76, 982.74], [1550.44, 1025.92], [1546.12, 1030.5], [1516.27, 1062.21], [1514.51, 1065.54], [1514.22, 1069.55], [1515.65, 1072.85], [1517.84, 1075.45], [1546.58, 1101.78], [1554.01, 1108.56], [1576.2, 1128.77], [1599.61, 1150.21], [1604.23, 1154.41], [1601.98, 1156.86], [1589.11, 1170.95], [1584.33, 1176.01], [1576.46, 1184.35], [1573.93, 1187.21], [1561.39, 1201.41], [1551.96, 1212.09], [1529.51, 1236.79], [1516.03, 1251.63], [1512.69, 1255.31], [1508.35, 1251.24], [1506.37, 1249.38], [1491.64, 1235.6], [1489.12, 1233.32], [1485.1, 1237.77], [1487.58, 1240.02], [1502.26, 1253.76], [1504.25, 1255.62], [1508.67, 1259.76], [1503.87, 1265.07], [1497.99, 1271.59], [1496.62, 1273.12], [1467.9, 1304.94], [1462.93, 1310.44], [1459.75, 1313.9], [1454.77, 1319.31], [1437.98, 1337.54], [1436.07, 1339.52], [1432.03, 1343.96], [1425.8, 1338.38], [1293.33, 1219.8]], [[1273.14, 1201.67], [1141.77, 1083.34], [1127.45, 1070.48], [993.48, 949.79], [988.34, 945.16], [993.96, 938.81], [1028.16, 900.2], [1037.97, 889.12], [1047.18, 879.59], [1061.93, 863.27], [1068.37, 856.14], [1065.77, 853.79], [1068.37, 856.14], [1072.61, 851.44], [1098.18, 823.14], [1111.46, 808.44], [1130.76, 787.09], [1133.74, 783.78], [1136.24, 781.03], [1144.64, 771.75], [1179.87, 732.73], [1182.57, 729.73], [1190.93, 720.48], [1194.64, 716.38], [1197.14, 713.62], [1201.57, 708.71], [1205.8, 712.54], [1208.53, 715.01], [1275.87, 776.05], [1283.43, 782.89], [1286.21, 785.42], [1299.18, 797.17], [1327.4, 822.8], [1331.49, 826.44], [1344.02, 837.6], [1349.0, 842.32], [1351.07, 840.15], [1349.07, 842.38], [1355.75, 848.36], [1377.36, 867.81], [1396.41, 884.98], [1417.2, 903.68], [1437.26, 921.73], [1460.75, 942.86], [1473.19, 954.05], [1491.31, 970.35], [1495.81, 974.4], [1491.35, 979.27], [1488.13, 982.79], [1476.2, 996.06], [1458.95, 1015.26], [1444.5, 1031.34], [1433.52, 1043.55], [1430.19, 1047.37], [1425.6, 1052.2], [1419.52, 1058.65], [1414.89, 1063.61], [1413.29, 1065.22], [1405.67, 1073.19], [1399.03, 1080.84], [1390.6, 1090.08], [1361.27, 1122.24], [1351.59, 1132.86], [1324.94, 1162.07], [1300.59, 1188.78], [1289.5, 1200.93], [1287.16, 1203.5], [1281.76, 1209.42], [1275.87, 1204.12], [1273.14, 1201.67]], [[1373.35, 819.62], [1379.34, 812.96], [1380.89, 811.23], [1390.54, 800.52], [1394.61, 796.01], [1413.83, 774.6], [1417.49, 770.57], [1421.49, 774.11], [1443.99, 793.63], [1445.71, 795.16], [1447.03, 796.36], [1459.17, 807.22], [1460.61, 808.52], [1463.92, 811.48], [1496.25, 840.39], [1505.24, 848.49], [1513.63, 856.01], [1520.97, 862.63], [1557.78, 896.48], [1562.07, 900.36], [1556.73, 905.87], [1555.91, 906.72], [1539.69, 925.01], [1529.62, 936.35], [1523.96, 942.74], [1503.17, 966.18], [1499.83, 969.95], [1495.33, 965.89], [1477.2, 949.59], [1464.77, 938.4], [1441.28, 917.27], [1421.21, 899.22], [1400.43, 880.52], [1381.37, 863.35], [1359.76, 843.9], [1355.35, 839.95], [1358.75, 836.31], [1370.8, 822.44], [1373.35, 819.62]], [[1389.36, 735.19], [1330.47, 680.96], [1322.8, 674.41], [1317.21, 669.12], [1316.62, 668.56], [1305.11, 658.2], [1302.36, 655.66], [1287.39, 641.83], [1286.89, 641.38], [1285.35, 639.91], [1278.95, 634.05], [1273.51, 629.09], [1277.32, 624.87], [1296.55, 603.58], [1296.78, 603.33], [1304.2, 595.12], [1305.09, 594.13], [1331.21, 565.16], [1335.28, 560.65], [1339.57, 564.47], [1363.17, 585.4], [1377.66, 598.26], [1394.32, 613.04], [1476.19, 687.82], [1480.24, 691.4], [1476.43, 696.06], [1421.21, 757.49], [1417.68, 761.42], [1413.48, 757.74], [1389.36, 735.19]], [[1399.91, 489.2], [1404.17, 484.48], [1409.89, 489.69], [1544.61, 612.36], [1549.18, 616.52], [1544.52, 621.35], [1519.94, 646.9], [1489.9, 680.57], [1484.82, 686.11], [1480.87, 682.62], [1399.01, 607.84], [1382.31, 593.02], [1367.82, 580.17], [1344.22, 559.24], [1339.98, 555.47], [1344.97, 549.99], [1399.91, 489.2]], [[-50.36, 596.94], [-53.79, 593.78], [-50.73, 590.54], [-49.08, 588.7], [4.63, 528.86], [5.82, 527.53], [7.45, 525.72], [11.72, 529.59], [39.12, 554.43], [109.79, 618.49], [147.02, 652.22], [151.66, 656.43], [150.15, 658.08], [148.88, 659.47], [94.8, 718.96], [93.35, 720.52], [89.41, 724.44], [84.88, 720.12], [53.14, 691.53], [-50.36, 596.94]], [[-60.82, 449.49], [-58.64, 447.09], [-57.85, 446.22], [-39.05, 425.52], [31.22, 348.16], [45.21, 332.74], [64.67, 311.31], [65.19, 310.88], [66.88, 311.29], [69.01, 311.22], [71.04, 310.55], [72.31, 309.69], [73.64, 310.84], [113.46, 347.41], [132.39, 364.8], [134.34, 366.59], [137.46, 369.46], [133.98, 373.48], [84.62, 429.1], [73.84, 441.26], [72.84, 442.37], [66.83, 449.07], [58.56, 458.27], [39.66, 479.35], [11.33, 510.82], [9.24, 513.17], [5.27, 509.56], [-56.18, 453.7], [-60.82, 449.49]], [[26.77, 344.13], [-43.49, 421.49], [-62.29, 442.18], [-63.08, 443.05], [-65.26, 445.45], [-69.44, 441.66], [-115.48, 399.26], [-121.94, 393.27], [-120.32, 391.52], [-84.76, 352.98], [-38.74, 303.11], [2.06, 260.31], [5.29, 256.98], [8.89, 253.0], [13.45, 257.08], [59.9, 299.19], [60.84, 300.08], [60.12, 301.99], [59.96, 304.16], [60.41, 306.28], [60.7, 306.81], [60.52, 306.95], [40.77, 328.7], [26.77, 344.13]], [[13.65, 247.87], [17.29, 244.04], [56.26, 200.17], [58.52, 197.71], [84.35, 169.73], [86.17, 167.76], [89.16, 164.52], [93.7, 168.53], [140.11, 209.97], [145.01, 214.2], [141.34, 218.04], [126.94, 233.1], [73.55, 292.82], [72.48, 294.02], [70.47, 296.53], [69.92, 296.27], [67.86, 295.95], [66.77, 296.06], [64.66, 294.06], [18.13, 251.88], [13.65, 247.87]], [[131.35, 237.17], [145.67, 222.18], [150.38, 217.26], [154.6, 221.07], [200.87, 262.49], [211.53, 271.88], [218.96, 278.64], [214.74, 283.12], [196.99, 303.29], [192.46, 308.32], [188.17, 313.1], [175.01, 327.77], [161.03, 343.35], [145.69, 359.73], [141.77, 363.92], [139.08, 361.44], [137.13, 359.65], [118.19, 342.26], [78.29, 305.6], [75.28, 303.01], [75.16, 301.91], [74.75, 300.79], [77.06, 297.9], [78.02, 296.82], [131.35, 237.17]], [[257.88, 286.19], [254.37, 290.08], [286.61, 319.15], [291.2, 323.29], [311.86, 341.9], [314.47, 344.26], [351.27, 377.43], [374.85, 398.69], [381.03, 404.25], [375.03, 411.24], [369.38, 406.07], [362.18, 399.49], [287.91, 330.22], [262.31, 306.35], [230.93, 277.09], [235.81, 272.2], [254.45, 289.82], [257.88, 286.19]], [[257.68, 253.57], [255.18, 259.77], [254.11, 262.96], [252.38, 268.91], [252.08, 273.82], [242.74, 264.99], [246.33, 261.12], [263.71, 243.53], [257.68, 253.57]], [[259.32, 270.12], [260.8, 265.04], [261.75, 262.19], [263.96, 256.7], [269.76, 247.05], [276.88, 234.66], [281.47, 225.64], [284.11, 227.82], [290.89, 219.59], [291.92, 218.49], [297.44, 212.22], [318.84, 188.61], [321.69, 185.0], [322.95, 186.24], [325.31, 188.46], [345.55, 206.62], [347.72, 208.5], [354.8, 214.91], [357.4, 217.2], [390.96, 247.11], [424.39, 277.83], [459.32, 308.74], [464.22, 313.28], [459.83, 317.47], [458.12, 319.44], [429.06, 353.03], [425.58, 357.04], [424.47, 358.4], [422.2, 360.78], [392.91, 391.28], [390.44, 393.89], [388.19, 396.58], [381.88, 390.89], [358.3, 369.63], [321.51, 336.46], [318.89, 334.11], [298.24, 315.5], [293.64, 311.35], [261.4, 282.29], [261.23, 282.47], [260.08, 281.39], [259.6, 279.79], [259.01, 275.18], [259.32, 270.12]], [[394.99, 242.66], [361.38, 212.7], [358.79, 210.43], [351.7, 204.01], [349.51, 202.12], [329.37, 184.04], [327.11, 181.91], [325.5, 180.33], [330.89, 174.07], [354.88, 148.0], [379.13, 121.23], [385.75, 114.04], [389.71, 109.75], [390.59, 110.52], [393.04, 112.79], [414.2, 132.43], [437.56, 154.12], [450.17, 165.83], [468.16, 181.67], [523.88, 234.23], [526.38, 236.59], [531.51, 241.47], [475.35, 302.12], [474.12, 303.6], [468.54, 309.09], [463.35, 304.29], [428.41, 273.38], [394.99, 242.66]], [[467.01, 20.07], [469.18, 16.51], [471.66, 9.49], [479.78, 11.57], [482.06, 12.2], [526.28, 23.81], [532.52, 25.34], [578.67, 37.9], [585.87, 40.39], [592.9, 43.36], [598.42, 46.06], [603.67, 49.17], [608.69, 52.31], [613.35, 55.76], [617.17, 58.85], [639.21, 78.99], [654.32, 93.0], [658.99, 97.36], [655.31, 100.29], [633.53, 123.72], [604.85, 155.09], [603.43, 156.78], [597.6, 165.69], [591.36, 173.1], [581.41, 185.01], [574.8, 192.71], [554.06, 216.11], [535.53, 237.02], [530.51, 232.23], [528.0, 229.87], [472.2, 177.24], [454.2, 161.38], [441.64, 149.73], [418.28, 128.04], [397.13, 108.4], [394.61, 106.06], [393.73, 105.29], [429.1, 65.2], [451.07, 41.4], [467.01, 20.07]], [[436.15, -5.52], [429.8, -7.62], [422.38, -10.69], [412.69, -15.52], [407.4, -18.71], [402.32, -22.31], [385.89, -34.99], [381.3, -38.65], [383.97, -41.57], [388.39, -37.63], [392.85, -34.13], [397.61, -30.94], [402.24, -28.26], [407.75, -25.4], [411.63, -23.53], [415.63, -21.8], [420.73, -19.87], [425.81, -18.08], [432.81, -15.9], [439.8, -13.89], [442.22, -13.27], [455.44, -10.59], [459.93, -0.58], [453.78, -2.03], [441.52, -4.03], [436.15, -5.52]], [[458.56, -34.02], [457.47, -41.37], [445.04, -62.94], [380.2, -147.4], [320.13, -213.64], [256.53, -277.39], [169.96, -359.9], [-40.51, -571.06], [-63.52, -594.09], [-104.18, -633.74], [-149.71, -682.25], [-207.12, -742.66], [-257.47, -801.46], [-268.92, -814.82], [-267.53, -815.88], [-282.51, -835.45], [-284.89, -838.77], [-281.86, -837.95], [-268.95, -826.12], [-257.63, -815.75], [-255.44, -811.93], [-254.22, -812.63], [-253.99, -812.41], [-256.51, -810.4], [-238.57, -787.83], [-204.94, -747.71], [-176.38, -715.97], [-146.19, -688.03], [-117.67, -659.61], [-108.37, -650.08], [-88.88, -629.14], [-60.23, -598.28], [-37.34, -574.05], [59.79, -478.61], [173.32, -362.99], [261.05, -284.47], [290.09, -256.27], [316.2, -229.25], [425.8, -99.68], [461.21, -57.53], [462.5, -58.63], [469.35, -46.86], [472.43, -39.67], [473.77, -35.47], [474.13, -34.3], [474.99, -31.62], [476.15, -26.65], [476.17, -24.76], [476.19, -22.02], [475.79, -19.23], [475.62, -18.29], [475.2, -16.28], [474.41, -12.37], [470.61, -13.46], [460.46, -16.55], [457.05, -24.31], [457.38, -25.53], [458.56, -34.02]], [[-301.55, 434.37], [-304.64, 437.7], [-334.72, 470.16], [-334.75, 470.19], [-335.95, 470.9], [-337.44, 471.15], [-338.49, 471.05], [-341.77, 469.21], [-351.4, 460.51], [-361.47, 451.39], [-363.78, 449.3], [-370.09, 443.6], [-384.83, 430.26], [-387.05, 428.25], [-387.93, 427.45], [-403.37, 413.49], [-415.97, 402.09], [-423.25, 395.51], [-427.03, 392.08], [-433.84, 385.93], [-454.81, 366.97], [-455.68, 366.17], [-477.88, 346.09], [-480.88, 343.38], [-478.15, 340.48], [-458.33, 318.87], [-438.1, 296.19], [-435.72, 293.56], [-423.29, 279.81], [-421.8, 278.17], [-417.61, 273.52], [-413.44, 277.27], [-364.95, 321.04], [-356.99, 328.22], [-322.68, 359.19], [-310.92, 369.8], [-293.43, 385.57], [-276.86, 400.54], [-273.27, 403.77], [-277.31, 408.15], [-278.69, 409.64], [-279.94, 410.99], [-301.55, 434.37]], [[-388.49, 241.32], [-381.75, 233.87], [-356.27, 205.7], [-353.67, 202.82], [-352.8, 201.85], [-348.56, 205.73], [-332.9, 220.03], [-330.8, 221.94], [-319.82, 231.97], [-319.09, 232.64], [-305.06, 245.45], [-303.85, 246.55], [-286.97, 261.96], [-274.6, 273.27], [-264.6, 282.4], [-250.17, 295.58], [-243.03, 301.01], [-229.53, 312.65], [-226.26, 315.41], [-217.18, 323.94], [-208.25, 333.5], [-213.49, 339.16], [-238.94, 366.67], [-257.99, 387.26], [-263.02, 392.71], [-265.41, 395.28], [-268.51, 398.63], [-272.17, 395.34], [-288.74, 380.38], [-306.23, 364.6], [-317.99, 354.0], [-352.3, 323.02], [-360.26, 315.84], [-408.75, 272.07], [-412.91, 268.33], [-409.68, 264.76], [-407.46, 262.3], [-392.72, 246.0], [-388.49, 241.32]], [[-382.97, 155.35], [-383.36, 154.99], [-386.82, 151.84], [-428.89, 113.45], [-435.14, 107.64], [-429.17, 100.93], [-426.5, 96.61], [-425.2, 92.3], [-424.6, 87.95], [-424.6, 87.92], [-423.27, 89.15], [-390.64, 53.71], [-393.84, 50.76], [-389.27, 50.24], [-384.28, 48.06], [-380.15, 45.15], [-377.05, 41.81], [-370.09, 47.98], [-343.53, 72.26], [-341.02, 74.51], [-335.0, 80.07], [-331.57, 83.2], [-328.19, 86.29], [-314.89, 98.44], [-293.4, 118.09], [-289.56, 121.6], [-291.99, 124.14], [-294.19, 126.6], [-318.62, 153.62], [-335.89, 172.72], [-346.36, 184.29], [-348.05, 186.17], [-348.58, 186.75], [-352.39, 183.27], [-369.56, 167.59], [-375.85, 161.86], [-382.97, 155.35]], [[-347.21, -12.77], [-344.43, -15.81], [-337.19, -23.73], [-333.9, -26.26], [-329.47, -28.16], [-324.38, -29.25], [-324.61, -24.67], [-326.09, -20.13], [-328.31, -16.35], [-349.3, 6.32], [-352.27, 9.53], [-370.36, 29.06], [-372.68, 31.56], [-380.7, 23.87], [-378.61, 21.58], [-350.26, -9.43], [-347.21, -12.77]], [[-347.01, -18.17], [-349.79, -15.14], [-352.85, -11.79], [-381.19, 19.21], [-383.28, 21.5], [-390.28, 15.32], [-402.02, 4.58], [-466.62, -54.46], [-468.89, -56.53], [-466.79, -57.77], [-445.71, -81.35], [-441.62, -88.39], [-447.67, -91.91], [-451.41, -85.48], [-471.28, -63.24], [-475.82, -60.57], [-480.87, -65.38], [-505.9, -88.9], [-518.08, -99.93], [-527.41, -108.36], [-529.5, -110.44], [-531.12, -112.37], [-532.51, -114.4], [-533.82, -116.9], [-534.92, -119.48], [-535.69, -124.37], [-535.71, -126.96], [-535.33, -130.97], [-533.94, -134.62], [-532.42, -137.59], [-530.41, -140.73], [-527.45, -144.75], [-521.84, -151.09], [-486.5, -188.8], [-482.61, -192.8], [-479.53, -190.15], [-449.35, -163.84], [-444.75, -169.11], [-474.95, -195.44], [-477.78, -197.87], [-474.31, -201.56], [-453.96, -224.17], [-446.39, -232.49], [-440.52, -239.26], [-432.43, -248.59], [-405.61, -279.21], [-395.3, -290.99], [-391.08, -287.14], [-372.03, -269.73], [-347.19, -247.16], [-329.92, -231.47], [-319.58, -222.08], [-326.35, -214.32], [-357.32, -180.74], [-390.27, -144.6], [-391.92, -142.72], [-390.75, -141.7], [-392.2, -141.09], [-392.69, -141.21], [-392.77, -140.86], [-398.0, -138.69], [-404.53, -135.19], [-414.04, -129.79], [-403.72, -124.72], [-398.0, -122.2], [-391.77, -120.32], [-391.63, -119.94], [-391.12, -120.12], [-389.61, -119.67], [-390.65, -118.49], [-318.47, -54.66], [-311.4, -47.98], [-320.84, -38.27], [-325.05, -33.85], [-324.05, -32.89], [-330.53, -31.52], [-335.69, -29.3], [-339.56, -26.32], [-347.01, -18.17]], [[-385.05, -139.94], [-352.16, -176.01], [-321.13, -209.65], [-312.11, -220.01], [-303.99, -228.47], [-264.6, -272.48], [-250.72, -287.37], [-239.75, -299.12], [-235.69, -301.44], [-231.1, -302.45], [-227.3, -302.19], [-223.68, -300.1], [-152.2, -236.28], [-143.08, -228.13], [-134.76, -220.09], [-63.05, -156.22], [-61.91, -153.32], [-61.06, -149.75], [-60.7, -146.88], [-60.9, -143.31], [-61.51, -140.98], [-62.77, -139.19], [-126.87, -68.15], [-135.01, -58.78], [-144.09, -49.33], [-208.15, 20.93], [-208.77, 21.17], [-211.44, 22.4], [-215.19, 23.07], [-219.27, 22.84], [-222.52, 21.97], [-224.54, 21.1], [-295.2, -42.83], [-304.06, -50.67], [-313.74, -59.83], [-385.34, -123.13], [-387.14, -128.21], [-387.28, -133.64], [-386.08, -138.76], [-385.05, -139.94]], [[-386.36, -292.3], [-390.27, -295.88], [-380.17, -306.99], [-346.12, -344.43], [-337.48, -353.93], [-310.92, -383.14], [-307.6, -386.79], [-305.53, -383.08], [-302.97, -379.35], [-271.37, -350.39], [-258.81, -339.3], [-254.98, -336.75], [-249.93, -336.05], [-244.44, -336.39], [-241.09, -336.52], [-236.56, -336.78], [-235.67, -320.59], [-235.02, -308.75], [-238.24, -308.04], [-244.14, -304.67], [-255.84, -292.15], [-269.77, -277.2], [-309.13, -233.23], [-314.86, -227.25], [-325.21, -236.65], [-342.48, -252.34], [-367.31, -274.91], [-386.36, -292.3]], [[-386.08, -312.38], [-395.05, -302.52], [-399.91, -306.78], [-403.23, -309.67], [-413.6, -318.52], [-413.56, -322.13], [-414.77, -325.73], [-416.83, -328.83], [-429.3, -340.0], [-441.15, -350.61], [-456.74, -364.55], [-462.17, -369.41], [-457.02, -375.01], [-385.81, -452.63], [-381.56, -457.26], [-376.25, -452.26], [-338.15, -416.76], [-316.42, -396.8], [-312.7, -393.06], [-316.84, -388.53], [-343.4, -359.32], [-352.04, -349.81], [-386.08, -312.38]], [[-318.97, -525.45], [-314.93, -529.87], [-310.33, -525.58], [-307.93, -523.36], [-253.75, -473.81], [-248.41, -465.3], [-245.22, -460.25], [-247.56, -459.66], [-252.27, -457.54], [-256.97, -454.34], [-282.03, -427.43], [-304.88, -401.67], [-307.99, -398.25], [-311.57, -401.85], [-333.4, -421.9], [-371.47, -457.37], [-376.83, -462.41], [-373.68, -465.84], [-339.05, -503.59], [-320.37, -523.93], [-318.97, -525.45]], [[-196.16, -420.69], [-175.25, -401.5], [-168.97, -395.88], [-171.87, -391.18], [-213.62, -345.59], [-215.22, -344.4], [-217.25, -343.84], [-223.81, -343.47], [-226.95, -343.32], [-229.9, -343.16], [-230.16, -348.08], [-230.41, -352.55], [-232.96, -399.07], [-233.24, -404.3], [-235.39, -443.46], [-235.86, -451.99], [-233.12, -451.34], [-231.1, -450.5], [-203.16, -427.11], [-196.16, -420.69]], [[-102.31, -462.88], [-100.88, -464.43], [-98.12, -467.44], [-94.16, -463.93], [-82.62, -453.51], [-20.78, -395.74], [-14.21, -389.99], [-6.72, -383.43], [-8.89, -380.82], [-10.02, -379.49], [-37.04, -349.66], [-64.72, -319.82], [-67.12, -317.16], [-74.64, -323.85], [-154.81, -397.08], [-158.83, -400.82], [-156.84, -403.99], [-154.55, -406.41], [-128.76, -434.04], [-102.31, -462.88]], [[-489.09, -564.08], [-510.43, -583.67], [-518.76, -591.31], [-520.72, -593.1], [-526.33, -598.07], [-524.12, -601.54], [-468.16, -661.98], [-464.03, -666.55], [-461.3, -664.13], [-458.64, -661.71], [-433.15, -638.33], [-415.9, -622.68], [-400.13, -608.11], [-391.17, -599.83], [-390.59, -599.29], [-382.75, -592.11], [-376.62, -586.48], [-356.6, -568.12], [-325.85, -539.91], [-323.7, -537.95], [-319.33, -533.94], [-323.4, -529.51], [-324.79, -527.99], [-343.47, -507.64], [-378.1, -469.9], [-381.28, -466.43], [-385.09, -469.72], [-437.98, -517.46], [-449.98, -528.4], [-483.6, -559.04], [-489.09, -564.08]], [[-378.69, -596.53], [-386.53, -603.7], [-387.09, -604.23], [-396.06, -612.51], [-411.85, -627.11], [-429.11, -642.76], [-454.6, -666.14], [-457.29, -668.59], [-457.4, -668.69], [-451.86, -674.9], [-397.86, -731.14], [-392.51, -736.41], [-390.67, -734.66], [-374.63, -720.16], [-376.02, -718.72], [-365.46, -708.52], [-354.68, -698.71], [-339.51, -684.93], [-330.05, -676.31], [-298.74, -647.84], [-261.93, -614.33], [-251.34, -604.72], [-258.96, -599.48], [-272.16, -585.14], [-295.96, -559.31], [-310.46, -543.57], [-315.27, -538.36], [-319.65, -542.37], [-321.79, -544.33], [-352.55, -572.54], [-372.56, -590.9], [-378.69, -596.53]], [[-393.76, -136.66], [-394.3, -134.36], [-394.11, -126.92], [-393.22, -124.41], [-396.78, -125.49], [-402.24, -127.89], [-406.56, -130.01], [-402.84, -132.12], [-396.5, -135.52], [-393.76, -136.66]], [[-573.2, -467.54], [-574.08, -468.33], [-589.45, -482.34], [-594.22, -486.67], [-606.75, -498.08], [-611.48, -502.39], [-603.52, -511.11], [-584.4, -532.08], [-567.73, -550.38], [-548.39, -571.59], [-533.82, -587.57], [-530.34, -592.28], [-525.4, -587.9], [-523.49, -586.15], [-515.17, -578.51], [-493.82, -558.92], [-488.32, -553.88], [-454.7, -523.23], [-442.68, -512.27], [-389.73, -464.48], [-386.02, -461.27], [-390.23, -456.69], [-461.44, -379.07], [-466.64, -373.41], [-470.24, -376.65], [-480.27, -385.62], [-483.86, -386.97], [-487.18, -387.26], [-487.42, -387.25], [-487.42, -387.25], [-503.3, -402.76], [-521.5, -419.13], [-525.84, -422.98], [-527.79, -424.7], [-552.22, -447.37], [-573.2, -467.54]], [[-379.87, -732.64], [-378.85, -729.55], [-378.72, -729.25], [-387.95, -737.6], [-391.81, -741.26], [-389.19, -743.76], [-379.21, -753.72], [-379.86, -752.18], [-380.92, -748.25], [-381.38, -744.82], [-381.4, -742.42], [-381.31, -739.43], [-380.72, -735.73], [-379.87, -732.64]], [[-480.3, -347.03], [-474.26, -355.54], [-469.21, -350.9], [-430.36, -315.18], [-427.43, -313.69], [-424.43, -312.96], [-422.4, -312.95], [-422.76, -312.53], [-410.08, -301.71], [-406.81, -298.87], [-401.66, -294.35], [-410.88, -283.82], [-437.71, -253.19], [-445.81, -243.85], [-451.62, -237.14], [-459.15, -228.86], [-479.46, -206.3], [-483.03, -202.49], [-488.17, -207.13], [-549.05, -262.03], [-553.7, -266.26], [-549.76, -270.01], [-545.17, -275.11], [-527.68, -294.49], [-522.2, -300.59], [-515.82, -307.66], [-503.53, -321.28], [-492.62, -333.37], [-480.3, -347.03]], [[-424.99, -320.3], [-426.33, -320.98], [-464.47, -356.05], [-469.87, -361.02], [-469.27, -361.67], [-463.74, -356.73], [-448.16, -342.79], [-436.3, -332.18], [-424.84, -321.91], [-424.28, -321.07], [-424.08, -320.48], [-424.08, -320.08], [-424.99, -320.3]], [[-473.74, -365.68], [-474.29, -365.08], [-477.81, -368.32], [-486.93, -376.7], [-486.21, -376.64], [-485.81, -376.49], [-477.25, -368.83], [-473.74, -365.68]], [[-392.78, 165.35], [-392.39, 165.71], [-385.29, 172.2], [-379.0, 177.93], [-361.83, 193.62], [-357.97, 197.13], [-358.86, 198.12], [-361.47, 201.01], [-386.94, 229.17], [-393.68, 236.62], [-397.91, 241.3], [-412.65, 257.61], [-414.87, 260.07], [-418.11, 263.65], [-422.05, 260.1], [-466.36, 220.1], [-468.45, 218.21], [-498.91, 190.73], [-507.49, 182.99], [-504.33, 179.47], [-490.64, 164.22], [-448.9, 117.7], [-447.07, 115.67], [-438.38, 123.75], [-396.25, 162.19], [-392.78, 165.35]], [[-397.29, 23.13], [-390.55, 29.09], [-393.84, 32.68], [-396.76, 37.75], [-398.04, 43.36], [-397.88, 47.05], [-400.94, 44.23], [-433.57, 79.67], [-431.97, 81.14], [-432.46, 81.17], [-437.17, 82.4], [-441.43, 84.9], [-444.66, 87.69], [-450.23, 93.81], [-456.47, 88.16], [-533.4, 19.13], [-537.13, 15.76], [-536.28, 14.83], [-514.89, -8.66], [-500.41, -24.55], [-480.39, -46.54], [-477.27, -49.96], [-473.7, -46.71], [-409.11, 12.33], [-397.29, 23.13]], [[-390.6, 35.06], [-387.61, 31.79], [-379.99, 39.1], [-382.8, 42.12], [-386.25, 44.56], [-390.32, 46.33], [-393.88, 46.74], [-394.02, 43.72], [-392.99, 39.22], [-390.6, 35.06]], [[-501.06, 154.86], [-514.75, 170.11], [-517.89, 173.6], [-521.75, 170.11], [-526.7, 165.63], [-555.6, 139.49], [-564.09, 131.81], [-567.71, 128.54], [-570.93, 125.63], [-574.53, 122.37], [-603.32, 96.35], [-607.27, 92.77], [-604.19, 89.4], [-602.22, 87.22], [-592.88, 76.97], [-563.34, 44.54], [-560.78, 41.74], [-548.34, 28.07], [-546.56, 26.11], [-542.77, 29.53], [-465.84, 98.57], [-457.39, 106.21], [-459.31, 108.35], [-501.06, 154.86]], [[-432.94, 93.71], [-434.81, 96.74], [-438.87, 101.3], [-441.66, 101.58], [-442.75, 100.56], [-443.86, 101.75], [-443.85, 101.64], [-442.83, 100.5], [-443.77, 99.64], [-443.67, 97.0], [-439.77, 92.71], [-437.34, 90.61], [-434.47, 88.93], [-431.7, 88.21], [-432.06, 90.8], [-432.94, 93.71]], [[-531.69, 203.68], [-531.46, 203.68], [-528.84, 202.98], [-526.28, 201.75], [-523.62, 200.03], [-519.92, 196.83], [-515.4, 192.5], [-514.25, 186.32], [-503.59, 195.93], [-473.14, 223.41], [-471.05, 225.3], [-426.74, 265.29], [-422.81, 268.84], [-427.0, 273.47], [-428.48, 275.12], [-440.91, 288.86], [-443.31, 291.51], [-463.52, 314.17], [-483.27, 335.72], [-486.08, 338.69], [-491.53, 333.76], [-508.81, 318.12], [-510.8, 316.32], [-511.89, 315.34], [-512.7, 314.6], [-534.17, 295.18], [-564.61, 267.65], [-566.62, 265.83], [-577.64, 255.86], [-573.95, 251.78], [-561.68, 238.2], [-558.44, 234.62], [-552.41, 227.95], [-547.92, 222.98], [-538.12, 212.15], [-531.02, 204.29], [-531.69, 203.68]], [[-530.06, 199.68], [-530.16, 199.71], [-530.01, 198.87], [-529.42, 197.21], [-528.31, 195.23], [-526.45, 192.49], [-522.49, 187.67], [-517.71, 185.75], [-518.63, 190.76], [-522.28, 194.24], [-525.72, 197.22], [-527.99, 198.69], [-530.06, 199.68]], [[-243.34, -468.5], [-249.11, -477.69], [-303.87, -527.78], [-306.24, -529.98], [-310.86, -534.28], [-306.05, -539.51], [-291.55, -555.25], [-267.75, -581.08], [-255.01, -594.91], [-248.94, -599.08], [-248.41, -585.29], [-245.91, -544.61], [-241.86, -476.83], [-242.15, -470.26], [-242.32, -467.4], [-242.36, -466.96], [-243.34, -468.5]], [[-200.47, -558.66], [-152.54, -515.94], [-143.34, -507.74], [-139.33, -504.17], [-130.03, -494.8], [-122.56, -488.14], [-117.92, -485.09], [-110.48, -478.46], [-106.83, -475.2], [-102.6, -471.43], [-105.29, -468.49], [-106.72, -466.94], [-133.16, -438.12], [-158.93, -410.52], [-161.61, -407.68], [-163.34, -404.92], [-168.19, -409.28], [-189.06, -428.43], [-196.24, -435.01], [-225.58, -459.57], [-229.87, -461.36], [-235.15, -462.61], [-235.69, -462.57], [-235.34, -466.91], [-235.16, -469.89], [-234.85, -476.88], [-238.92, -545.04], [-241.41, -585.64], [-241.82, -595.99], [-238.33, -592.4], [-212.06, -569.0], [-200.47, -558.66]], [[257.86, -3089.06], [266.61, -3082.28], [275.19, -3075.05], [280.07, -3069.85], [284.29, -3064.96], [287.36, -3059.78], [289.57, -3046.91], [293.49, -3029.08], [290.89, -3024.16], [289.34, -3024.98], [253.47, -2957.07], [244.19, -2939.5], [232.21, -2911.21], [221.94, -2881.35], [207.24, -2833.12], [213.88, -2831.09], [213.85, -2831.05], [210.54, -2831.95], [207.31, -2820.07], [203.89, -2814.33], [193.76, -2800.05], [187.59, -2794.16], [178.98, -2785.95], [164.16, -2775.98], [143.75, -2768.95], [134.68, -2765.04], [122.72, -2755.56], [117.89, -2749.07], [113.37, -2745.7], [114.38, -2744.35], [114.25, -2744.19], [110.68, -2748.0], [98.63, -2736.71], [65.55, -2704.15], [53.58, -2693.49], [49.61, -2689.94], [37.69, -2680.49], [34.72, -2678.59], [16.35, -2666.86], [-14.23, -2650.35], [-36.17, -2640.81], [-42.19, -2638.18], [-43.61, -2637.66], [-52.9, -2634.25], [-56.6, -2643.93], [-60.32, -2652.7], [-62.52, -2657.92], [-68.64, -2675.83], [-73.93, -2689.28], [-78.86, -2713.5], [-80.48, -2731.41], [-75.5, -2770.74], [-69.24, -2820.13], [-70.16, -2843.94], [-72.97, -2865.5], [-87.75, -2908.11], [-108.98, -2949.59], [-133.46, -2989.95], [-169.94, -3031.17], [-176.84, -3035.33], [-178.66, -3091.06], [-178.62, -3103.37], [-86.68, -3107.27], [-39.38, -3109.28], [22.91, -3112.79], [28.17, -3113.08], [69.19, -3112.78], [127.98, -3108.35], [144.97, -3106.65], [157.56, -3104.83], [180.29, -3101.43], [191.11, -3099.82], [248.94, -3090.31], [257.57, -3088.0], [257.86, -3089.06]], [[-92.36, -2225.49], [-100.69, -2225.24], [-23.58, -2342.17], [36.44, -2425.0], [48.02, -2441.21], [95.71, -2506.49], [112.8, -2533.49], [128.96, -2561.41], [140.53, -2584.53], [155.38, -2618.1], [165.6, -2647.32], [160.65, -2649.06], [167.25, -2646.74], [177.98, -2677.39], [183.7, -2695.69], [189.21, -2714.9], [204.56, -2766.17], [207.05, -2765.74], [205.39, -2759.74], [199.11, -2733.82], [183.33, -2679.98], [167.59, -2632.48], [153.21, -2597.1], [138.03, -2565.56], [119.98, -2533.22], [99.48, -2501.71], [50.47, -2437.77], [38.46, -2421.36], [-5.34, -2364.24], [-50.46, -2297.73], [-78.67, -2253.83], [-71.3, -2249.1], [-77.25, -2252.79], [-87.74, -2235.9], [-93.69, -2226.31], [-92.36, -2225.49]], [[-135.48, -2223.97], [-153.6, -2223.26], [-157.1, -2223.13], [-153.22, -2229.72], [-126.36, -2276.43], [-121.04, -2285.88], [-114.7, -2296.05], [-103.63, -2313.81], [-74.09, -2361.17], [-62.11, -2380.39], [-60.2, -2386.24], [-60.2, -2396.85], [-60.86, -2401.75], [-64.05, -2407.7], [-66.84, -2410.94], [-71.01, -2415.92], [-84.96, -2419.21], [-109.16, -2419.2], [-221.93, -2415.38], [-263.05, -2413.99], [-269.17, -2413.78], [-273.68, -2521.9], [-275.26, -2528.34], [-276.83, -2534.75], [-272.33, -2536.87], [-237.19, -2550.3], [-190.4, -2568.75], [-158.48, -2581.01], [-145.33, -2586.2], [-95.53, -2606.04], [-91.89, -2607.49], [-52.01, -2623.39], [-50.8, -2620.1], [-38.79, -2624.52], [-36.98, -2625.18], [-30.58, -2627.97], [-8.1, -2637.75], [23.46, -2654.79], [42.25, -2666.79], [45.83, -2669.08], [58.63, -2679.22], [62.9, -2683.04], [75.12, -2693.93], [108.33, -2726.61], [120.26, -2737.78], [117.88, -2740.32], [126.64, -2746.87], [139.42, -2753.69], [152.18, -2756.9], [161.42, -2756.05], [169.18, -2752.72], [173.94, -2746.92], [175.17, -2743.59], [176.33, -2740.42], [176.92, -2732.39], [176.38, -2722.59], [170.9, -2704.98], [161.25, -2671.98], [154.04, -2651.37], [155.69, -2650.79], [145.6, -2621.97], [131.03, -2589.0], [119.71, -2566.39], [103.82, -2538.93], [87.03, -2512.4], [39.51, -2447.36], [27.92, -2431.13], [-32.22, -2348.15], [-113.5, -2224.88], [-113.42, -2224.83], [-113.98, -2224.81], [-116.69, -2226.37], [-117.68, -2224.66], [-135.48, -2223.97]], [[-141.92, -2151.5], [-111.85, -2200.03], [-110.16, -2202.73], [-101.54, -2217.61], [-104.18, -2219.14], [-94.03, -2219.44], [-105.48, -2202.05], [-117.61, -2184.2], [-209.4, -2043.09], [-161.89, -2121.4], [-141.92, -2151.5]], [[-69.03, -2404.28], [-66.66, -2399.87], [-66.2, -2396.45], [-66.2, -2387.19], [-67.59, -2382.94], [-79.18, -2364.35], [-108.72, -2316.98], [-119.79, -2299.23], [-126.21, -2288.94], [-131.57, -2279.4], [-158.41, -2232.73], [-164.22, -2222.86], [-195.98, -2221.61], [-220.8, -2220.64], [-225.55, -2220.46], [-261.43, -2219.06], [-261.66, -2224.92], [-268.7, -2402.05], [-268.93, -2407.79], [-262.85, -2408.0], [-221.73, -2409.39], [-109.06, -2413.2], [-85.66, -2413.21], [-74.33, -2410.54], [-71.42, -2407.06], [-69.03, -2404.28]], [[-210.21, -3054.93], [-184.42, -3083.49], [-182.96, -3038.94], [-210.21, -3054.93]], [[-70.68, -2230.94], [-68.32, -2227.29], [-67.72, -2226.53], [-76.5, -2226.09], [-77.38, -2226.05], [-75.85, -2228.51], [-71.63, -2235.3], [-70.68, -2230.94]], [[-318.93, -820.53], [-316.71, -817.83], [-318.95, -820.52], [-325.5, -815.04], [-328.31, -812.09], [-329.88, -811.75], [-329.6, -812.99], [-327.0, -816.11], [-325.25, -818.09], [-307.76, -833.34], [-301.73, -837.67], [-299.5, -838.33], [-299.1, -838.28], [-300.77, -836.34], [-306.41, -830.85], [-318.93, -820.53]], [[-293.64, -824.19], [-297.73, -824.53], [-299.48, -824.27], [-303.89, -823.66], [-304.24, -823.57], [-301.73, -825.63], [-295.66, -831.54], [-294.01, -833.47], [-290.95, -829.2], [-284.24, -820.43], [-290.81, -823.34], [-293.64, -824.19]], [[-304.09, -845.31], [-305.3, -844.96], [-312.73, -839.62], [-318.52, -834.57], [-314.31, -843.0], [-311.83, -847.41], [-310.86, -851.83], [-310.48, -855.14], [-304.09, -845.31]], [[-265.55, -829.55], [-264.2, -827.19], [-266.25, -829.07], [-279.88, -841.56], [-284.11, -842.7], [-286.94, -843.4], [-288.84, -843.59], [-289.49, -844.34], [-288.94, -845.87], [-287.88, -850.29], [-288.3, -856.31], [-290.56, -862.15], [-294.1, -869.14], [-296.04, -873.57], [-292.7, -869.48], [-281.04, -852.76], [-265.55, -829.55]], [[-58.29, 177.13], [-56.61, 175.27], [-44.46, 161.8], [-40.46, 157.37], [-34.66, 150.93], [-15.89, 130.13], [-8.98, 122.48], [2.56, 109.68], [9.55, 101.94], [11.24, 100.12], [15.05, 95.87], [19.54, 100.03], [43.78, 122.39], [45.96, 124.42], [80.25, 156.36], [84.71, 160.49], [81.76, 163.69], [79.95, 165.65], [54.11, 193.64], [51.81, 196.14], [12.87, 239.98], [9.17, 243.86], [4.81, 239.95], [-26.81, 211.23], [-56.72, 184.36], [-61.1, 180.24], [-58.29, 177.13]], [[98.21, 146.21], [91.9, 152.83], [87.4, 148.67], [53.12, 116.74], [50.92, 114.69], [26.67, 92.32], [22.17, 88.15], [25.3, 84.84], [27.38, 82.65], [31.63, 86.56], [93.53, 142.01], [98.21, 146.21]], [[5.33, -40.91], [32.51, -70.55], [35.13, -73.41], [39.82, -69.32], [99.67, -17.2], [105.14, -12.44], [101.48, -8.42], [67.3, 29.93], [55.0, 43.34], [51.72, 46.92], [34.43, 66.43], [32.8, 68.19], [28.94, 72.27], [24.24, 68.11], [-38.68, 12.08], [-42.82, 11.94], [-36.91, 5.11], [5.33, -40.91]], [[-19.05, -128.74], [-19.83, -130.3], [-20.59, -141.64], [-20.89, -146.38], [-13.92, -146.79], [55.65, -150.39], [79.62, -151.59], [88.8, -152.05], [88.81, -151.23], [88.22, -147.12], [88.2, -146.97], [86.06, -140.94], [83.94, -137.44], [81.0, -133.73], [66.38, -118.23], [55.94, -107.18], [40.66, -90.99], [40.02, -90.32], [32.35, -82.18], [27.76, -86.25], [4.79, -106.53], [-10.96, -120.65], [-15.58, -125.24], [-19.05, -128.74]], [[21.4, -214.49], [22.87, -216.1], [28.72, -219.42], [33.77, -214.87], [82.93, -170.34], [85.61, -166.81], [86.92, -163.93], [88.26, -159.15], [88.4, -158.04], [79.32, -157.59], [55.35, -156.38], [-14.26, -152.78], [-20.13, -152.44], [-20.48, -155.96], [-20.88, -167.14], [-20.76, -168.03], [-20.08, -169.02], [21.4, -214.49]], [[59.95, -261.39], [68.71, -270.87], [75.41, -274.45], [73.37, -268.45], [63.72, -258.19], [37.13, -228.01], [32.84, -226.48], [32.72, -226.59], [32.51, -226.36], [32.38, -226.32], [33.48, -227.58], [32.73, -228.23], [33.34, -231.28], [46.86, -247.6], [59.95, -261.39]], [[-61.89, -312.51], [-59.55, -315.09], [-31.88, -344.93], [-4.76, -374.87], [-3.54, -376.31], [-1.43, -378.84], [6.43, -372.06], [10.19, -369.19], [11.17, -368.31], [30.51, -349.81], [40.08, -340.58], [49.73, -331.74], [57.51, -324.63], [62.87, -319.51], [85.08, -299.23], [90.24, -294.87], [87.76, -292.74], [76.28, -280.11], [77.13, -279.34], [66.54, -273.67], [57.39, -263.79], [44.24, -249.92], [30.07, -232.83], [29.69, -230.88], [26.34, -233.79], [0.78, -256.98], [-10.78, -267.4], [-54.51, -305.98], [-61.89, -312.51]], [[-232.62, 65.03], [-232.07, 64.7], [-231.38, 64.53], [-230.28, 64.39], [-222.75, 64.31], [-216.89, 64.07], [-216.63, 69.7], [-213.29, 141.93], [-212.23, 164.93], [-211.77, 174.98], [-213.22, 174.91], [-215.96, 173.91], [-218.79, 172.05], [-226.87, 164.67], [-233.19, 158.89], [-258.01, 136.2], [-273.28, 122.26], [-278.33, 117.63], [-276.19, 114.05], [-270.13, 107.2], [-261.61, 97.56], [-258.59, 94.16], [-233.25, 65.55], [-232.62, 65.03]], [[-197.87, 62.48], [-195.74, 62.5], [-193.81, 62.66], [-192.39, 62.96], [-191.19, 63.4], [-190.27, 63.85], [-189.51, 64.4], [-178.03, 75.18], [-146.36, 105.91], [-141.72, 110.43], [-148.62, 118.47], [-163.01, 132.5], [-195.74, 169.29], [-198.9, 172.67], [-202.06, 175.08], [-204.71, 176.04], [-205.71, 176.24], [-206.24, 164.65], [-207.3, 141.65], [-210.63, 69.42], [-210.94, 62.72], [-207.13, 62.73], [-197.87, 62.48]], [[-54.92, 24.54], [-53.84, 29.32], [7.44, 86.68], [11.78, 90.53], [6.81, 96.08], [5.12, 97.89], [-1.89, 105.66], [-13.44, 118.46], [-20.34, 126.11], [-39.11, 146.91], [-44.92, 153.35], [-48.91, 157.78], [-61.07, 171.25], [-62.74, 173.11], [-65.47, 176.12], [-69.26, 172.55], [-78.82, 163.62], [-118.03, 126.94], [-130.06, 114.6], [-133.38, 111.28], [-131.56, 109.0], [-108.5, 83.21], [-93.56, 66.7], [-89.55, 62.29], [-62.67, 32.64], [-54.92, 24.54]], [[-18.06, -122.77], [-13.37, -118.11], [2.46, -103.91], [25.44, -83.62], [29.97, -79.61], [26.61, -75.95], [-0.56, -46.32], [-42.88, -0.21], [-52.49, 10.9], [-57.17, 6.86], [-76.91, -10.94], [-89.12, -22.17], [-117.81, -48.47], [-127.48, -56.78], [-121.63, -63.51], [-57.28, -134.82], [-55.06, -137.99], [-53.95, -142.22], [-53.84, -144.23], [-39.52, -145.23], [-33.2, -145.64], [-24.38, -146.17], [-24.08, -141.42], [-23.27, -129.36], [-21.93, -126.68], [-18.06, -122.77]], [[-161.93, -389.36], [-81.67, -316.06], [-74.18, -309.38], [-76.66, -306.64], [-102.91, -277.64], [-133.25, -244.13], [-140.96, -235.62], [-147.53, -241.5], [-219.56, -305.8], [-225.21, -309.06], [-228.04, -309.25], [-228.68, -320.97], [-229.57, -337.17], [-226.64, -337.33], [-223.51, -337.48], [-216.26, -337.88], [-212.53, -338.92], [-209.58, -341.11], [-167.07, -387.54], [-164.48, -391.74], [-161.93, -389.36]], [[-239.95, -398.69], [-237.4, -352.16], [-237.15, -347.7], [-236.88, -342.77], [-241.37, -342.51], [-244.74, -342.39], [-249.7, -342.07], [-252.8, -342.5], [-255.14, -344.06], [-267.35, -354.85], [-298.41, -383.31], [-300.42, -386.25], [-303.34, -391.47], [-298.93, -396.33], [-276.11, -422.04], [-251.72, -448.24], [-248.35, -450.54], [-244.92, -452.07], [-242.9, -452.59], [-242.38, -443.08], [-240.23, -403.92], [-239.95, -398.69]], [[22.8, -222.96], [19.08, -220.85], [16.97, -218.53], [-24.79, -172.76], [-26.54, -170.23], [-26.89, -167.41], [-26.47, -155.55], [-26.12, -152.08], [-33.57, -151.62], [-39.92, -151.22], [-54.06, -150.22], [-54.16, -151.0], [-55.21, -155.42], [-57.15, -160.33], [-129.99, -225.22], [-135.83, -230.86], [-128.06, -239.44], [-97.72, -272.94], [-71.47, -301.94], [-68.94, -304.73], [-61.47, -298.11], [-17.77, -259.57], [-6.26, -249.19], [19.37, -225.94], [22.8, -222.96]], [[-319.98, -29.02], [-315.79, -33.41], [-306.24, -43.25], [-299.87, -37.61], [-228.37, 27.07], [-224.81, 28.6], [-220.39, 29.79], [-218.44, 29.9], [-218.28, 42.49], [-217.65, 58.1], [-222.9, 58.31], [-230.69, 58.39], [-232.47, 58.62], [-234.37, 59.08], [-236.09, 60.11], [-237.43, 61.22], [-263.08, 90.18], [-266.1, 93.58], [-274.63, 103.22], [-281.05, 110.49], [-282.85, 113.5], [-286.31, 110.34], [-307.8, 90.69], [-321.1, 78.53], [-324.48, 75.45], [-327.9, 72.33], [-333.96, 66.74], [-336.49, 64.47], [-363.07, 40.18], [-370.11, 33.93], [-367.79, 31.44], [-349.7, 11.9], [-346.73, 8.7], [-325.48, -14.25], [-322.88, -18.68], [-321.14, -24.03], [-320.84, -29.84], [-319.98, -29.02]], [[-81.63, -5.76], [-61.8, 12.11], [-56.82, 16.4], [-67.79, 27.87], [-94.74, 57.59], [-98.75, 62.0], [-113.71, 78.53], [-136.91, 104.48], [-139.49, 107.72], [-143.92, 103.4], [-175.61, 72.65], [-187.28, 61.69], [-188.47, 60.84], [-189.81, 60.18], [-191.42, 59.59], [-193.3, 59.19], [-195.58, 59.0], [-197.91, 58.98], [-207.17, 59.23], [-210.6, 59.22], [-211.29, 42.3], [-211.44, 29.51], [-209.33, 29.13], [-206.03, 27.61], [-204.08, 26.85], [-138.98, -44.54], [-132.2, -51.61], [-122.46, -43.24], [-93.85, -17.02], [-81.63, -5.76]], [[19.59, 73.34], [24.13, 77.36], [16.52, 85.39], [12.16, 81.51], [-47.49, 25.67], [-48.2, 22.53], [-48.22, 19.23], [-45.36, 18.86], [-41.44, 18.99], [19.59, 73.34]], [[-203.52, 351.2], [-199.94, 446.79], [-199.74, 450.4], [-199.52, 460.47], [-199.51, 460.9], [-205.15, 455.81], [-228.86, 434.41], [-259.11, 407.13], [-263.32, 403.32], [-260.27, 400.04], [-257.88, 397.46], [-252.85, 392.01], [-233.8, 371.42], [-208.35, 343.91], [-204.15, 339.36], [-203.52, 351.2]], [[-184.43, 353.57], [-164.05, 371.01], [-135.58, 395.38], [-133.58, 397.04], [-135.6, 399.23], [-136.39, 400.08], [-139.67, 403.65], [-189.37, 457.51], [-192.51, 460.91], [-192.52, 460.32], [-192.74, 450.13], [-192.95, 446.46], [-196.52, 350.88], [-197.0, 341.98], [-193.18, 345.57], [-184.43, 353.57]], [[-280.37, 130.0], [-265.1, 143.95], [-240.28, 166.63], [-233.95, 172.42], [-225.25, 180.37], [-220.71, 183.35], [-215.33, 185.32], [-211.32, 185.51], [-211.08, 191.58], [-210.48, 204.57], [-208.84, 240.36], [-207.7, 259.45], [-207.63, 260.66], [-207.56, 262.01], [-205.1, 308.13], [-204.72, 316.77], [-207.26, 314.05], [-216.94, 304.96], [-220.45, 302.0], [-234.21, 290.14], [-241.18, 284.82], [-255.16, 272.06], [-265.16, 262.93], [-277.53, 251.63], [-294.41, 236.21], [-295.62, 235.11], [-309.64, 222.31], [-310.37, 221.64], [-321.37, 211.6], [-323.46, 209.69], [-339.11, 195.39], [-343.41, 191.47], [-342.86, 190.86], [-341.17, 188.99], [-330.7, 177.41], [-313.43, 158.31], [-288.99, 131.28], [-286.85, 128.9], [-284.39, 126.32], [-280.37, 130.0]], [[-202.81, 182.79], [-198.67, 181.31], [-194.18, 177.88], [-190.57, 174.0], [-157.94, 137.33], [-143.51, 123.26], [-137.87, 116.69], [-135.04, 119.52], [-122.93, 131.94], [-83.6, 168.73], [-74.05, 177.66], [-70.16, 181.32], [-74.38, 186.0], [-76.47, 188.32], [-96.33, 210.33], [-110.68, 226.23], [-122.75, 239.61], [-148.71, 268.37], [-170.41, 292.43], [-184.25, 307.77], [-193.42, 317.94], [-198.42, 323.47], [-199.1, 307.84], [-201.57, 261.69], [-201.64, 260.32], [-201.71, 259.08], [-202.85, 240.05], [-204.48, 204.29], [-205.08, 191.32], [-205.4, 183.33], [-202.81, 182.79]], [[-89.17, 348.91], [-124.73, 387.45], [-126.45, 389.31], [-128.82, 387.34], [-157.22, 363.04], [-177.48, 345.71], [-186.04, 337.87], [-195.39, 329.07], [-188.97, 321.96], [-179.8, 311.79], [-165.96, 296.45], [-144.25, 272.39], [-118.3, 243.63], [-106.23, 230.25], [-91.88, 214.35], [-72.02, 192.34], [-69.93, 190.02], [-65.79, 185.44], [-61.46, 189.52], [-31.5, 216.43], [0.12, 245.15], [4.41, 249.0], [0.91, 252.88], [-2.27, 256.15], [-43.12, 299.01], [-89.17, 348.91]], [[-72.32, 453.23], [-74.86, 456.03], [-99.27, 482.92], [-130.95, 517.82], [-133.75, 520.92], [-138.18, 517.05], [-188.21, 471.29], [-191.27, 468.42], [-189.8, 466.82], [-184.96, 461.58], [-135.25, 407.71], [-131.99, 404.16], [-131.2, 403.31], [-129.06, 400.99], [-122.61, 406.97], [-76.52, 449.41], [-72.32, 453.23]], [[-63.75, 585.1], [-125.27, 529.0], [-129.34, 525.0], [-126.5, 521.85], [-94.82, 486.95], [-70.41, 460.06], [-67.87, 457.26], [-63.24, 461.47], [-1.8, 517.33], [2.26, 521.02], [0.6, 522.86], [-0.58, 524.19], [-54.29, 584.03], [-55.88, 585.8], [-59.03, 589.13], [-63.75, 585.1]], [[90.52, -132.86], [93.33, -137.5], [96.06, -145.19], [96.15, -146.13], [96.81, -150.68], [96.81, -151.52], [108.51, -152.29], [132.24, -153.34], [141.66, -153.81], [191.16, -156.08], [224.4, -157.84], [234.67, -156.23], [233.37, -153.27], [231.58, -150.57], [229.11, -146.84], [215.03, -131.64], [210.09, -126.23], [203.38, -118.62], [190.58, -104.99], [185.17, -99.13], [170.86, -83.65], [157.8, -69.54], [155.91, -67.5], [113.92, -22.0], [109.19, -16.87], [103.61, -21.73], [43.76, -73.85], [39.22, -77.8], [45.85, -84.84], [46.48, -85.51], [61.76, -101.69], [72.19, -112.74], [87.06, -128.49], [90.52, -132.86]], [[194.97, -100.9], [207.82, -114.58], [214.56, -122.23], [219.45, -127.58], [233.84, -143.12], [236.58, -147.25], [238.66, -150.39], [239.06, -151.31], [240.5, -149.13], [242.83, -146.71], [244.96, -144.36], [275.94, -117.12], [277.47, -115.78], [279.16, -114.31], [291.12, -103.86], [299.21, -97.91], [307.55, -92.39], [312.01, -89.65], [310.83, -88.35], [298.44, -74.7], [297.78, -73.95], [295.64, -71.85], [294.64, -70.77], [258.65, -31.32], [257.76, -30.34], [236.99, -7.58], [230.08, 0.38], [223.65, 7.52], [211.04, 21.52], [209.22, 23.54], [203.3, 30.16], [188.11, 46.76], [184.84, 50.37], [180.02, 46.08], [158.86, 27.27], [156.97, 25.59], [139.29, 9.86], [118.3, -8.81], [113.69, -12.91], [118.33, -17.93], [160.32, -63.43], [162.21, -65.47], [175.26, -79.58], [189.58, -95.05], [194.97, -100.9]], [[326.58, -89.93], [322.68, -92.41], [324.03, -93.87], [328.56, -90.8], [379.17, -45.21], [377.1, -42.94], [328.84, -88.37], [326.58, -89.93]], [[231.94, -168.19], [233.51, -165.44], [233.94, -164.44], [224.81, -165.87], [190.77, -164.07], [141.28, -161.8], [131.86, -161.34], [108.07, -160.28], [96.28, -159.5], [96.12, -160.74], [94.45, -166.68], [92.53, -170.93], [88.86, -175.77], [39.13, -220.8], [35.79, -223.82], [39.16, -225.02], [66.31, -255.83], [76.44, -266.61], [79.92, -276.81], [80.73, -276.07], [91.95, -288.43], [94.94, -290.99], [100.05, -286.93], [131.49, -259.45], [165.14, -230.52], [216.93, -184.4], [226.82, -174.72], [231.94, -168.19]], [[311.86, -99.13], [303.79, -104.47], [296.13, -110.11], [284.42, -120.33], [282.74, -121.8], [281.22, -123.13], [250.58, -150.07], [248.67, -152.17], [246.77, -154.15], [246.02, -155.29], [246.34, -155.24], [248.72, -154.69], [250.38, -153.43], [257.8, -146.88], [274.38, -131.92], [297.71, -111.17], [306.26, -104.65], [314.18, -99.89], [318.86, -97.11], [317.51, -95.65], [311.86, -99.13]], [[185.22, 58.86], [189.13, 62.57], [235.24, 104.84], [239.93, 109.04], [235.55, 113.5], [226.52, 123.2], [216.51, 134.33], [206.29, 145.72], [199.71, 153.02], [168.99, 187.18], [167.04, 189.35], [163.62, 193.2], [159.36, 189.07], [131.4, 162.84], [114.11, 146.63], [109.61, 142.41], [111.6, 140.0], [125.52, 124.62], [139.43, 109.3], [155.73, 91.36], [178.25, 66.55], [180.58, 63.9], [185.22, 58.86]], [[381.57, -29.48], [398.16, -16.69], [403.56, -12.85], [409.32, -9.38], [419.48, -4.32], [427.36, -1.05], [434.12, 1.18], [440.01, 2.81], [452.41, 4.84], [457.99, 6.15], [456.46, 10.47], [455.39, 12.22], [440.29, 32.44], [418.7, 55.82], [381.28, 98.24], [381.28, 98.24], [375.46, 104.55], [368.79, 111.79], [344.54, 138.56], [320.44, 164.76], [315.55, 170.43], [313.98, 168.85], [312.12, 166.77], [297.56, 153.45], [293.65, 149.96], [289.76, 146.4], [283.32, 140.5], [253.09, 113.04], [248.54, 108.79], [252.75, 104.42], [254.87, 102.06], [348.95, -3.0], [350.15, -4.31], [374.67, -31.49], [376.54, -33.49], [381.57, -29.48]], [[114.31, -4.33], [135.31, 14.34], [152.98, 30.08], [154.87, 31.76], [176.03, 50.56], [180.8, 54.8], [176.12, 59.89], [173.78, 62.55], [151.29, 87.32], [134.99, 105.27], [121.07, 120.59], [107.06, 136.08], [105.18, 138.36], [100.54, 134.19], [38.69, 78.79], [34.6, 75.02], [37.17, 72.29], [38.87, 70.47], [56.18, 50.94], [59.43, 47.4], [71.75, 33.95], [105.94, -4.4], [109.64, -8.48], [114.31, -4.33]], [[262.21, -26.31], [263.09, -27.29], [299.07, -66.72], [299.95, -67.68], [302.13, -69.82], [302.9, -70.69], [315.26, -84.31], [317.19, -86.42], [322.16, -83.26], [323.79, -82.13], [371.67, -37.07], [370.25, -35.55], [345.71, -8.34], [344.5, -7.03], [250.4, 98.05], [248.35, 100.34], [244.12, 104.74], [239.27, 100.39], [193.22, 58.18], [189.26, 54.43], [192.55, 50.8], [207.75, 34.18], [213.68, 27.55], [215.5, 25.53], [228.1, 11.54], [234.58, 4.35], [241.47, -3.59], [262.21, -26.31]], [[216.87, 265.92], [206.18, 256.5], [159.95, 215.12], [155.87, 211.45], [157.4, 209.8], [162.01, 204.25], [166.65, 208.22], [196.28, 237.18], [222.64, 259.4], [231.3, 266.81], [224.89, 273.22], [216.87, 265.92]], [[210.75, 149.74], [220.97, 138.34], [230.95, 127.25], [239.88, 117.64], [244.36, 113.09], [249.03, 117.45], [279.27, 144.94], [285.71, 150.83], [289.63, 154.41], [293.53, 157.9], [307.85, 171.0], [309.61, 172.97], [311.69, 175.07], [308.14, 179.57], [287.0, 202.89], [281.54, 209.09], [280.36, 210.36], [273.31, 218.91], [276.0, 221.13], [241.28, 256.28], [236.86, 261.04], [227.82, 253.3], [201.66, 231.25], [172.05, 202.32], [167.22, 198.18], [171.51, 193.35], [173.45, 191.2], [204.17, 157.04], [210.75, 149.74]], [[100.67, 160.68], [96.35, 156.86], [102.64, 150.27], [106.93, 154.29], [124.22, 170.5], [152.11, 196.66], [156.76, 201.18], [152.9, 205.84], [152.22, 206.56], [147.03, 202.08], [100.67, 160.68]], [[204.24, -2808.77], [201.43, -2798.45], [198.97, -2790.21], [194.21, -2774.32], [186.94, -2773.67], [177.38, -2772.81], [155.91, -2769.44], [165.73, -2772.82], [181.18, -2783.21], [190.01, -2791.63], [196.42, -2797.75], [204.24, -2808.77]], [[277.6, -3077.59], [268.81, -3085.01], [263.7, -3088.96], [267.78, -3088.83], [283.97, -3083.1], [291.59, -3078.14], [304.92, -3072.47], [311.96, -3071.82], [316.69, -3073.01], [296.02, -3033.87], [293.01, -3047.58], [290.7, -3061.01], [287.15, -3067.01], [282.67, -3072.19], [277.6, -3077.59]], [[222.22, -2828.55], [218.75, -2816.23], [212.35, -2792.49], [211.37, -2789.57], [209.7, -2784.59], [206.47, -2778.66], [209.03, -2787.2], [211.53, -2795.57], [220.63, -2829.04], [222.22, -2828.55]], [[259.84, -2917.94], [262.29, -2919.74], [250.11, -2892.76], [237.6, -2854.86], [227.76, -2819.83], [217.48, -2787.65], [212.79, -2772.88], [207.43, -2773.8], [209.42, -2775.71], [213.39, -2782.98], [215.16, -2788.3], [216.18, -2791.33], [222.61, -2815.17], [233.8, -2855.02], [239.6, -2873.18], [248.15, -2897.35], [251.24, -2904.19], [259.84, -2917.94]], [[171.34, -2755.6], [162.29, -2759.48], [151.91, -2760.44], [147.94, -2759.44], [153.73, -2762.01], [178.24, -2765.86], [187.57, -2766.69], [190.17, -2766.93], [180.31, -2734.0], [179.78, -2741.16], [178.45, -2744.79], [177.03, -2748.69], [171.34, -2755.6]], [[601.7, 1069.69], [603.28, 1067.94], [604.57, 1066.54], [608.93, 1070.66], [743.85, 1195.23], [748.75, 1199.76], [748.6, 1199.93], [747.5, 1201.23], [745.14, 1204.01], [723.86, 1227.69], [691.74, 1263.02], [687.24, 1267.97], [682.19, 1263.28], [545.7, 1139.86], [541.57, 1135.55], [545.68, 1131.15], [546.56, 1130.18], [599.17, 1072.46], [601.7, 1069.69]], [[613.82, 1056.38], [615.1, 1054.99], [669.73, 995.03], [673.88, 990.48], [678.34, 994.56], [680.63, 996.65], [811.49, 1116.09], [813.83, 1118.23], [818.59, 1122.59], [814.55, 1127.02], [759.6, 1187.47], [755.65, 1191.84], [750.98, 1187.52], [616.1, 1062.99], [611.64, 1058.77], [613.82, 1056.38]], [[894.38, 1056.81], [1029.96, 1180.04], [1033.65, 1183.41], [1029.41, 1188.1], [1028.0, 1189.64], [975.29, 1247.79], [971.43, 1252.06], [967.55, 1248.54], [965.53, 1246.69], [835.33, 1128.35], [832.33, 1125.71], [827.72, 1121.46], [831.96, 1116.78], [887.19, 1055.98], [890.01, 1052.89], [894.38, 1056.81]], [[954.75, 1029.27], [958.44, 1032.56], [972.8, 1045.31], [979.07, 1050.89], [1018.0, 1086.06], [1023.19, 1090.75], [1031.33, 1098.28], [1061.39, 1126.07], [1065.19, 1129.58], [1071.12, 1134.84], [1074.85, 1138.15], [1065.64, 1148.27], [1043.79, 1172.26], [1041.69, 1174.57], [1038.36, 1178.22], [1034.67, 1174.86], [899.07, 1051.61], [894.71, 1047.71], [898.88, 1043.11], [930.79, 1007.99], [935.55, 1012.22], [954.75, 1029.27]], [[885.26, 1039.11], [849.04, 1006.14], [822.97, 982.24], [821.39, 980.79], [791.65, 953.53], [749.92, 915.86], [745.52, 911.88], [749.82, 907.16], [751.14, 905.72], [816.13, 834.41], [819.05, 831.21], [821.77, 828.23], [833.9, 838.73], [852.64, 854.95], [898.12, 897.01], [912.14, 909.98], [959.29, 953.61], [966.24, 960.04], [963.25, 963.33], [952.03, 975.69], [939.15, 989.87], [928.35, 1001.75], [930.57, 1003.77], [928.35, 1001.75], [894.44, 1039.08], [890.26, 1043.68], [885.26, 1039.11]], [[859.7, 847.19], [857.52, 849.55], [857.48, 849.49], [859.58, 847.07], [848.45, 837.44], [842.64, 829.67], [840.21, 826.69], [842.81, 829.06], [870.62, 854.42], [902.51, 883.43], [916.51, 896.27], [931.21, 909.67], [941.63, 919.17], [968.13, 943.33], [975.36, 949.93], [973.28, 952.25], [966.42, 945.9], [919.27, 902.28], [905.25, 889.3], [859.7, 847.19]], [[925.96, 885.94], [911.95, 873.09], [880.04, 844.07], [852.24, 818.71], [840.39, 807.91], [843.79, 804.17], [845.93, 801.82], [868.9, 776.62], [870.66, 774.69], [879.32, 765.2], [881.49, 762.81], [889.5, 754.02], [913.18, 728.07], [917.34, 723.5], [920.52, 726.38], [984.12, 783.94], [995.46, 794.21], [1011.13, 808.38], [1055.21, 848.26], [1057.55, 850.38], [1061.17, 853.67], [1056.73, 858.58], [1042.07, 874.81], [1032.83, 884.36], [1022.92, 895.56], [988.72, 934.17], [984.31, 939.15], [977.56, 932.99], [951.06, 908.83], [940.64, 899.33], [925.96, 885.94]], [[822.57, 631.39], [774.65, 587.88], [770.21, 583.91], [775.87, 577.69], [800.6, 550.49], [829.05, 519.18], [830.28, 517.79], [839.53, 507.66], [842.81, 504.04], [867.78, 476.57], [888.11, 454.23], [891.65, 450.32], [903.49, 437.3], [931.34, 406.66], [942.65, 394.22], [965.35, 369.23], [968.82, 365.42], [973.71, 369.73], [995.92, 389.46], [1034.06, 423.3], [1046.95, 434.75], [1079.82, 463.91], [1086.16, 469.54], [1102.57, 484.1], [1110.19, 490.63], [1115.27, 494.98], [1111.25, 499.37], [1108.26, 502.64], [1085.54, 527.49], [1080.54, 532.96], [1078.66, 535.01], [1046.57, 568.36], [1036.59, 580.08], [1032.91, 585.0], [1024.42, 594.62], [1017.82, 602.07], [986.44, 637.55], [983.15, 641.03], [978.66, 646.04], [970.35, 655.28], [920.19, 710.02], [916.17, 714.4], [911.46, 710.22], [852.3, 657.76], [849.6, 655.37], [822.57, 631.39]], [[933.33, 323.01], [917.81, 308.6], [891.88, 284.54], [885.51, 278.63], [883.57, 276.83], [829.56, 227.14], [825.13, 222.73], [829.02, 218.57], [830.26, 217.26], [846.2, 200.2], [881.02, 162.92], [886.68, 156.87], [892.77, 158.41], [896.1, 160.95], [903.48, 166.32], [909.56, 171.28], [1029.67, 280.71], [1034.45, 285.06], [1029.55, 290.42], [1027.8, 292.38], [1010.44, 311.47], [974.46, 351.04], [969.45, 356.56], [963.53, 351.14], [949.6, 338.11], [941.21, 330.35], [933.33, 323.01]], [[921.51, 161.33], [926.77, 158.69], [931.33, 157.37], [936.49, 157.54], [962.49, 163.65], [962.2, 164.86], [966.51, 165.9], [1049.2, 185.63], [1076.78, 192.74], [1086.87, 195.7], [1096.9, 203.7], [1098.16, 204.74], [1103.47, 209.14], [1097.24, 216.0], [1095.59, 217.81], [1043.51, 275.09], [1042.84, 275.83], [1038.49, 280.62], [1033.7, 276.27], [914.8, 167.94], [917.07, 165.35], [919.4, 163.25], [920.19, 162.52], [921.51, 161.33]], [[395.91, 1004.71], [391.68, 1001.06], [396.11, 996.18], [452.25, 934.56], [454.05, 932.59], [454.79, 931.78], [459.1, 935.49], [468.77, 943.92], [483.27, 957.26], [497.7, 970.99], [516.7, 989.09], [523.16, 995.22], [521.34, 997.18], [494.17, 1026.49], [465.04, 1057.91], [461.35, 1061.88], [454.34, 1056.27], [449.26, 1051.83], [435.41, 1038.95], [420.87, 1026.35], [405.41, 1012.95], [395.91, 1004.71]], [[384.13, 855.78], [383.36, 855.08], [368.84, 841.6], [365.81, 838.73], [316.9, 792.54], [312.72, 788.52], [315.21, 785.79], [316.33, 784.56], [370.76, 724.9], [376.27, 718.84], [379.76, 722.02], [382.41, 724.48], [513.03, 845.38], [515.13, 847.36], [519.05, 850.88], [515.24, 855.06], [459.04, 916.73], [456.6, 919.4], [452.15, 915.44], [429.68, 895.56], [420.7, 887.75], [391.06, 862.03], [384.13, 855.78]], [[446.53, 649.21], [500.31, 698.16], [582.17, 772.67], [586.63, 776.72], [582.9, 780.81], [527.55, 841.56], [523.77, 845.7], [519.86, 842.2], [517.81, 840.27], [387.17, 719.34], [384.5, 716.86], [380.99, 713.67], [383.39, 711.05], [409.82, 682.07], [438.71, 650.39], [442.84, 645.86], [446.53, 649.21]], [[326.78, 531.96], [300.98, 508.82], [298.12, 506.2], [301.39, 502.61], [302.81, 501.06], [328.13, 473.28], [335.46, 465.25], [343.26, 456.7], [368.7, 428.8], [370.82, 426.47], [373.27, 423.79], [378.09, 428.08], [423.38, 468.38], [456.52, 497.95], [518.24, 552.81], [514.76, 556.62], [458.84, 617.93], [444.69, 633.04], [442.19, 636.0], [437.65, 632.17], [379.56, 579.45], [344.68, 548.13], [341.88, 545.54], [326.78, 531.96]], [[436.3, 450.13], [434.2, 452.4], [439.76, 457.53], [442.05, 462.45], [454.19, 476.42], [485.16, 506.38], [509.95, 529.8], [513.73, 533.2], [516.41, 535.49], [517.84, 536.87], [519.33, 538.78], [520.68, 540.93], [463.5, 490.11], [430.37, 460.54], [385.07, 420.23], [380.23, 415.93], [386.35, 408.8], [392.07, 413.45], [434.2, 452.4], [436.3, 450.13], [436.3, 450.13]], [[426.53, 364.93], [428.97, 362.37], [430.18, 360.9], [433.59, 356.95], [462.66, 323.36], [464.17, 321.62], [468.77, 317.23], [473.2, 320.79], [542.49, 381.52], [607.62, 444.3], [611.81, 448.33], [608.27, 452.23], [566.8, 497.93], [559.46, 506.9], [540.24, 528.39], [537.35, 531.07], [534.52, 528.52], [519.39, 515.14], [502.56, 500.54], [471.53, 472.61], [441.33, 444.69], [398.95, 405.51], [392.75, 400.48], [394.92, 397.88], [397.25, 395.42], [426.53, 364.93]], [[160.56, 664.49], [296.59, 787.95], [300.52, 791.51], [299.08, 793.09], [297.96, 794.32], [295.05, 797.5], [255.55, 840.8], [242.86, 854.72], [242.07, 855.59], [238.83, 859.14], [235.07, 855.65], [98.46, 733.01], [94.49, 729.26], [98.38, 725.39], [99.95, 723.7], [154.05, 664.19], [155.32, 662.8], [156.85, 661.13], [160.56, 664.49]], [[174.55, 398.68], [172.2, 401.28], [178.09, 406.61], [219.62, 444.21], [220.7, 445.2], [230.98, 454.55], [246.07, 468.13], [283.56, 502.41], [288.23, 506.66], [284.64, 510.6], [281.9, 513.6], [262.75, 534.6], [241.62, 557.79], [229.08, 571.54], [226.03, 574.88], [221.28, 570.47], [218.64, 568.3], [183.53, 536.67], [177.06, 530.89], [135.34, 493.63], [124.02, 483.51], [87.13, 450.57], [84.52, 448.2], [80.37, 444.45], [89.86, 433.75], [139.25, 378.09], [142.95, 373.81], [148.75, 379.13], [150.49, 380.73], [172.52, 400.9], [174.55, 398.68]], [[176.9, 396.09], [176.56, 396.46], [154.54, 376.3], [152.8, 374.71], [147.33, 369.69], [151.53, 365.2], [166.93, 348.76], [180.97, 333.11], [194.12, 318.45], [198.41, 313.67], [202.96, 308.6], [220.66, 288.51], [223.99, 284.97], [255.14, 314.03], [280.75, 337.9], [355.05, 407.2], [362.29, 413.82], [368.07, 419.1], [365.65, 421.75], [363.53, 424.08], [338.08, 451.99], [330.29, 460.53], [322.96, 468.57], [297.65, 496.33], [296.22, 497.89], [292.94, 501.49], [288.27, 497.24], [250.77, 462.95], [235.68, 449.36], [225.41, 440.02], [224.32, 439.03], [182.79, 401.42], [176.9, 396.09]], [[68.38, 305.11], [67.95, 305.25], [67.49, 305.27], [67.04, 305.16], [66.65, 304.93], [66.32, 304.59], [66.1, 304.19], [66.01, 303.74], [66.04, 303.29], [66.2, 302.86], [66.48, 302.49], [66.85, 302.21], [67.26, 302.05], [67.71, 302.0], [68.14, 302.07], [68.54, 302.25], [68.9, 302.55], [69.13, 302.88], [69.27, 303.27], [69.32, 303.68], [69.26, 304.07], [69.06, 304.49], [68.76, 304.85], [68.38, 305.11]], [[285.76, 637.9], [364.72, 708.33], [366.38, 709.81], [371.1, 714.13], [365.58, 720.18], [311.16, 779.84], [310.04, 781.07], [307.6, 783.75], [303.65, 780.18], [167.61, 656.71], [163.93, 653.38], [166.39, 650.68], [183.72, 631.67], [184.82, 630.46], [207.99, 605.05], [222.14, 589.52], [226.49, 584.77], [229.55, 587.52], [231.98, 589.95], [285.76, 637.9]], [[322.1, 537.17], [337.17, 550.71], [339.96, 553.3], [374.87, 584.65], [433.04, 637.44], [437.57, 641.26], [433.54, 645.67], [404.65, 677.35], [378.22, 706.33], [375.82, 708.96], [371.07, 704.61], [369.38, 703.11], [290.42, 632.68], [236.79, 584.85], [234.37, 582.44], [231.2, 579.59], [234.25, 576.25], [246.79, 562.51], [267.92, 539.32], [287.08, 518.32], [289.81, 515.31], [293.4, 511.38], [296.28, 514.01], [322.1, 537.17]], [[214.07, 573.6], [216.67, 575.75], [221.31, 580.05], [216.97, 584.81], [202.81, 600.34], [179.64, 625.75], [178.55, 626.96], [161.21, 645.96], [158.74, 648.68], [154.07, 644.44], [116.84, 610.71], [46.17, 546.65], [18.77, 521.81], [14.43, 517.88], [16.55, 515.48], [44.87, 484.03], [63.77, 462.95], [72.04, 453.74], [75.7, 449.66], [79.82, 453.4], [82.46, 455.77], [119.35, 488.73], [130.68, 498.85], [172.4, 536.11], [178.86, 541.88], [214.07, 573.6]], [[242.16, 1007.54], [242.55, 1007.1], [301.61, 939.52], [303.95, 936.84], [307.9, 932.33], [346.26, 967.79], [377.97, 997.93], [382.15, 1001.89], [379.65, 1004.65], [316.41, 1074.7], [312.53, 1071.19], [281.03, 1042.7], [242.16, 1007.54]], [[358.6, 846.36], [361.66, 849.26], [376.23, 862.78], [377.05, 863.54], [384.11, 869.9], [413.81, 895.67], [422.75, 903.45], [445.18, 923.29], [449.53, 927.16], [448.88, 927.87], [447.08, 929.85], [390.94, 991.47], [386.49, 996.36], [382.79, 992.85], [351.05, 962.68], [310.37, 925.08], [308.0, 927.65], [310.37, 925.08], [248.05, 867.65], [243.97, 863.9], [247.25, 860.31], [248.04, 859.44], [260.72, 845.52], [300.22, 802.22], [303.13, 799.04], [304.25, 797.8], [305.64, 796.28], [309.67, 800.14], [358.6, 846.36]], [[701.74, 125.58], [703.36, 127.04], [711.01, 133.9], [715.83, 138.22], [742.09, 161.8], [765.93, 183.18], [797.15, 211.2], [808.6, 221.75], [813.24, 225.94], [810.96, 228.4], [808.53, 230.93], [780.74, 260.58], [772.61, 269.24], [747.27, 298.87], [739.13, 308.02], [735.73, 311.91], [690.18, 360.91], [680.54, 371.2], [621.04, 437.81], [615.8, 443.84], [611.78, 439.98], [546.55, 377.1], [477.06, 316.2], [473.11, 313.02], [478.54, 307.67], [479.86, 306.09], [537.92, 243.37], [535.72, 241.33], [537.96, 243.32], [558.55, 220.09], [579.32, 196.65], [585.99, 188.88], [595.96, 176.95], [602.42, 169.28], [608.25, 160.37], [609.36, 159.05], [637.95, 127.79], [659.4, 104.71], [663.45, 101.48], [669.68, 105.26], [690.18, 118.29], [698.04, 122.02], [703.75, 123.35], [701.74, 125.58]], [[595.8, 36.99], [588.38, 33.85], [580.74, 31.21], [534.27, 18.56], [528.0, 17.02], [483.89, 5.44], [481.58, 4.8], [474.42, 2.97], [476.53, 1.54], [478.87, -3.49], [483.43, -2.52], [495.84, 1.05], [496.94, -2.79], [496.11, 0.61], [498.09, 1.1], [527.19, 8.29], [558.94, 16.78], [586.58, 25.64], [593.57, 28.09], [606.66, 35.15], [618.58, 44.74], [630.12, 57.21], [662.02, 84.3], [666.32, 88.01], [667.88, 89.2], [664.45, 92.89], [659.09, 87.87], [643.95, 73.84], [621.74, 53.54], [617.64, 50.22], [612.63, 46.52], [607.31, 43.19], [601.75, 39.9], [595.8, 36.99]], [[467.51, -0.8], [464.24, -8.08], [468.62, -6.75], [472.19, -5.73], [471.0, -3.16], [467.51, -0.8]], [[479.0, -42.11], [478.6, -43.04], [481.18, -37.9], [482.37, -33.86], [485.38, -23.36], [488.27, -16.92], [489.47, -15.49], [492.67, -8.18], [485.37, -10.29], [481.3, -11.15], [482.06, -14.87], [482.49, -16.95], [482.7, -18.1], [483.2, -21.55], [483.17, -24.81], [483.15, -27.48], [481.74, -33.48], [480.81, -36.42], [480.44, -37.58], [479.0, -42.11]], [[695.2, 111.19], [699.07, 114.76], [693.57, 112.15], [673.38, 99.31], [669.09, 96.71], [672.42, 93.12], [677.91, 96.82], [695.2, 111.19]], [[463.99, 622.68], [519.94, 561.34], [523.51, 557.43], [525.19, 558.89], [562.58, 591.26], [597.89, 624.14], [630.67, 654.38], [634.23, 650.52], [630.67, 654.38], [658.77, 680.28], [667.14, 688.37], [663.59, 692.26], [660.84, 695.29], [608.57, 752.64], [593.98, 768.34], [591.27, 771.48], [586.89, 767.49], [505.02, 692.99], [451.23, 644.03], [447.46, 640.6], [449.92, 637.7], [463.99, 622.68]], [[799.43, 784.23], [799.46, 784.28], [797.38, 786.67], [805.16, 793.43], [805.72, 793.92], [811.96, 803.51], [816.29, 808.76], [816.53, 809.2], [811.41, 804.46], [687.79, 693.04], [685.33, 690.81], [678.58, 684.71], [681.72, 681.25], [688.42, 687.36], [725.23, 720.91], [734.61, 729.43], [797.28, 786.59], [799.43, 784.23]], [[696.43, 665.07], [731.95, 626.01], [736.02, 621.51], [763.41, 591.38], [766.17, 588.35], [770.63, 592.34], [818.56, 635.86], [845.62, 659.86], [848.32, 662.25], [907.48, 714.71], [912.12, 718.83], [908.0, 723.35], [884.33, 749.3], [876.31, 758.1], [874.14, 760.49], [865.48, 769.98], [863.73, 771.91], [840.76, 797.11], [838.62, 799.46], [833.98, 804.55], [821.22, 793.47], [815.29, 788.31], [812.04, 785.5], [804.31, 778.78], [741.68, 721.67], [732.29, 713.14], [695.49, 679.6], [688.79, 673.48], [694.34, 667.37], [696.43, 665.07]], [[777.83, 273.91], [785.84, 265.37], [813.61, 235.74], [816.05, 233.2], [820.71, 228.2], [824.71, 232.2], [878.82, 281.97], [880.75, 283.76], [887.11, 289.67], [913.04, 313.73], [928.56, 328.14], [936.45, 335.48], [944.83, 343.24], [958.78, 356.28], [965.11, 362.08], [961.65, 365.86], [938.95, 390.86], [927.64, 403.29], [899.79, 433.93], [887.94, 446.96], [884.4, 450.86], [864.08, 473.21], [839.11, 500.68], [835.83, 504.3], [826.56, 514.45], [825.33, 515.84], [796.9, 547.12], [772.17, 574.33], [766.5, 580.57], [761.4, 575.94], [734.2, 551.29], [723.02, 541.16], [694.45, 515.68], [680.3, 502.37], [677.41, 499.81], [625.41, 452.69], [620.92, 448.62], [626.29, 442.44], [685.7, 375.93], [695.3, 365.69], [740.93, 316.6], [744.38, 312.65], [752.54, 303.48], [777.83, 273.91]], [[541.7, 555.81], [540.13, 553.51], [538.7, 551.37], [538.15, 549.64], [537.36, 546.74], [537.09, 545.17], [598.82, 603.56], [668.46, 669.14], [678.03, 677.88], [674.93, 681.3], [665.97, 672.64], [637.79, 646.66], [633.14, 642.38], [632.85, 641.56], [597.25, 607.04], [579.15, 590.12], [560.74, 573.89], [554.63, 568.37], [548.38, 562.31], [541.7, 555.81]], [[676.26, 506.8], [690.4, 520.1], [719.01, 545.62], [730.17, 555.73], [757.37, 580.38], [762.46, 585.0], [759.71, 588.02], [732.32, 618.15], [728.24, 622.64], [692.73, 661.7], [690.64, 664.01], [685.09, 670.11], [675.6, 661.44], [606.03, 595.92], [542.5, 535.84], [545.24, 533.3], [564.78, 511.45], [572.1, 502.5], [613.46, 456.93], [616.93, 453.11], [621.38, 457.14], [673.4, 504.28], [676.26, 506.8]], [[512.66, 526.86], [487.93, 503.49], [457.1, 473.66], [456.67, 473.17], [464.46, 480.37], [495.61, 508.41], [512.47, 523.04], [527.53, 536.35], [532.54, 540.87], [533.65, 541.92], [533.54, 542.36], [533.46, 544.76], [533.94, 547.5], [534.8, 550.64], [535.52, 552.9], [537.17, 555.37], [532.06, 550.95], [527.86, 547.31], [526.48, 546.08], [526.29, 544.78], [525.74, 542.17], [524.55, 539.56], [522.6, 536.48], [520.83, 534.19], [519.1, 532.53], [516.36, 530.19], [512.66, 526.86]], [[665.1, 982.71], [669.41, 986.48], [665.3, 990.99], [610.67, 1050.94], [609.39, 1052.33], [607.2, 1054.74], [602.34, 1050.49], [545.7, 1001.1], [532.44, 989.55], [523.93, 981.48], [504.94, 963.38], [490.44, 949.59], [475.77, 936.1], [465.98, 927.56], [461.87, 924.02], [464.22, 921.44], [520.41, 859.78], [524.33, 855.47], [529.06, 859.46], [531.24, 861.31], [662.35, 980.21], [665.1, 982.71]], [[591.8, 781.43], [595.67, 784.95], [731.66, 908.76], [736.35, 913.03], [733.06, 916.65], [730.29, 919.68], [677.54, 977.56], [674.13, 981.3], [669.76, 977.48], [667.05, 975.03], [535.86, 856.05], [533.58, 854.12], [529.05, 850.3], [532.72, 846.28], [588.08, 785.52], [591.8, 781.43]], [[804.33, 812.21], [817.3, 824.22], [814.61, 827.17], [811.7, 830.36], [746.7, 901.68], [745.39, 903.12], [741.07, 907.86], [736.37, 903.58], [600.38, 779.78], [596.45, 776.19], [599.2, 773.01], [613.72, 757.38], [666.01, 700.0], [668.76, 696.98], [672.25, 693.15], [678.28, 698.6], [680.75, 700.83], [804.33, 812.21]], [[832.94, 821.61], [834.77, 825.59], [826.54, 818.47], [823.56, 815.71], [822.8, 812.41], [819.63, 806.52], [818.09, 804.66], [829.55, 814.61], [828.37, 815.9], [832.62, 819.77], [832.94, 821.61]], [[541.27, 1127.09], [537.46, 1131.17], [533.32, 1126.71], [513.27, 1108.34], [477.61, 1075.37], [466.36, 1066.17], [465.92, 1065.78], [469.44, 1061.99], [498.57, 1030.57], [525.74, 1001.26], [527.6, 999.26], [538.8, 1009.02], [595.43, 1058.41], [600.13, 1062.5], [598.85, 1063.9], [597.26, 1065.65], [594.73, 1068.42], [542.13, 1126.14], [541.27, 1127.09]], [[818.23, 987.4], [844.32, 1011.31], [880.54, 1044.28], [885.56, 1048.86], [882.75, 1051.95], [827.52, 1112.75], [823.3, 1117.41], [818.55, 1113.06], [816.2, 1110.92], [685.35, 991.49], [683.07, 989.4], [678.6, 985.31], [681.98, 981.6], [734.73, 923.72], [737.49, 920.69], [740.8, 917.06], [745.23, 921.05], [786.94, 958.71], [816.65, 985.94], [818.23, 987.4]], [[894.57, 1517.08], [814.01, 1444.12], [809.63, 1440.15], [813.76, 1435.38], [830.57, 1416.84], [833.36, 1413.65], [836.27, 1410.47], [841.73, 1414.29], [865.83, 1431.15], [874.28, 1437.29], [887.39, 1444.69], [900.54, 1448.89], [913.27, 1451.26], [925.57, 1452.45], [950.89, 1451.7], [966.16, 1451.51], [985.16, 1453.9], [995.52, 1456.99], [1005.95, 1461.42], [1015.02, 1466.14], [1031.97, 1477.84], [1035.12, 1480.01], [1032.23, 1483.08], [1031.07, 1484.46], [991.32, 1528.21], [977.97, 1542.87], [965.87, 1554.1], [949.41, 1568.9], [946.88, 1566.46], [912.91, 1533.71], [894.57, 1517.08], [892.56, 1519.31], [894.57, 1517.08]], [[900.33, 1341.6], [902.96, 1338.76], [904.24, 1337.33], [907.99, 1340.78], [949.29, 1378.69], [1040.82, 1462.71], [1043.14, 1464.7], [1047.18, 1467.92], [1040.06, 1474.92], [1035.95, 1472.08], [1018.64, 1460.13], [1008.93, 1455.08], [997.89, 1450.4], [986.61, 1447.03], [966.56, 1444.51], [950.74, 1444.7], [925.8, 1445.44], [914.25, 1444.33], [902.25, 1442.09], [890.21, 1438.24], [878.07, 1431.39], [869.89, 1425.45], [845.74, 1408.55], [841.01, 1405.25], [844.69, 1401.19], [846.34, 1399.36], [863.87, 1379.95], [898.39, 1343.72], [900.33, 1341.6]], [[976.31, 1266.06], [978.2, 1267.81], [1024.61, 1310.65], [1038.34, 1323.18], [1043.22, 1327.63], [1053.67, 1337.17], [1068.88, 1351.06], [1092.67, 1372.78], [1108.92, 1387.6], [1110.95, 1389.46], [1111.95, 1390.38], [1109.06, 1393.6], [1107.04, 1395.85], [1102.51, 1401.9], [1092.31, 1417.51], [1055.1, 1459.29], [1052.02, 1462.82], [1047.61, 1459.3], [1045.46, 1457.47], [954.02, 1373.53], [912.72, 1335.62], [908.95, 1332.16], [912.42, 1328.43], [914.43, 1326.19], [968.08, 1264.91], [971.2, 1261.35], [976.31, 1266.06]], [[712.71, 1547.57], [718.64, 1541.1], [716.43, 1539.07], [718.66, 1541.08], [783.26, 1469.34], [805.65, 1444.65], [809.98, 1448.56], [888.06, 1519.28], [884.47, 1522.45], [699.26, 1686.22], [697.0, 1688.22], [693.09, 1683.82], [653.78, 1639.65], [651.54, 1636.69], [649.36, 1631.58], [647.5, 1626.6], [646.11, 1622.03], [644.88, 1618.0], [646.41, 1617.4], [648.17, 1616.46], [651.29, 1614.78], [655.69, 1611.16], [686.74, 1575.88], [712.71, 1547.57]], [[749.74, 1745.39], [746.48, 1748.1], [743.73, 1745.21], [704.14, 1696.37], [700.97, 1692.72], [703.23, 1690.72], [888.44, 1526.95], [892.53, 1523.33], [908.82, 1538.1], [942.71, 1570.78], [944.93, 1572.92], [906.41, 1607.55], [769.74, 1728.09], [749.74, 1745.39]], [[635.81, 1418.7], [640.2, 1422.79], [681.81, 1378.18], [707.8, 1402.61], [675.11, 1438.32], [673.97, 1439.98], [673.26, 1442.09], [673.16, 1444.32], [673.63, 1446.27], [706.13, 1529.3], [707.94, 1532.78], [709.23, 1535.28], [712.42, 1539.0], [708.29, 1543.51], [682.27, 1571.87], [651.5, 1606.83], [647.93, 1609.77], [645.33, 1611.17], [643.89, 1611.94], [643.1, 1612.25], [641.54, 1607.24], [621.05, 1541.68], [589.67, 1443.19], [574.25, 1395.17], [577.73, 1393.69], [587.45, 1387.24], [632.78, 1336.85], [635.1, 1334.27], [638.18, 1337.16], [677.44, 1374.07], [635.81, 1418.7]], [[827.38, 1402.95], [831.57, 1406.71], [828.88, 1409.65], [826.09, 1412.85], [809.26, 1431.4], [803.2, 1438.42], [780.86, 1463.06], [776.73, 1459.17], [714.07, 1400.27], [683.73, 1371.74], [681.67, 1373.93], [683.73, 1371.74], [642.29, 1332.79], [639.12, 1329.81], [683.97, 1280.48], [686.97, 1277.19], [690.68, 1280.51], [827.38, 1402.95]], [[634.91, 1329.98], [632.68, 1327.98], [628.32, 1332.83], [583.5, 1382.66], [574.87, 1388.39], [572.43, 1389.43], [570.64, 1383.72], [512.12, 1201.28], [507.21, 1185.5], [506.91, 1183.94], [506.8, 1182.44], [506.78, 1178.22], [507.73, 1175.41], [513.32, 1167.3], [516.65, 1163.63], [531.42, 1147.95], [534.36, 1144.82], [537.5, 1141.42], [540.82, 1144.89], [677.46, 1268.44], [682.53, 1273.15], [679.53, 1276.44], [632.69, 1327.96], [634.91, 1329.98]], [[894.95, 1328.67], [899.84, 1333.25], [898.52, 1334.72], [895.92, 1337.54], [894.01, 1339.62], [859.48, 1375.87], [841.89, 1395.34], [840.24, 1397.16], [836.28, 1401.53], [832.05, 1397.74], [695.35, 1275.29], [691.68, 1272.01], [696.18, 1267.05], [728.31, 1231.71], [749.67, 1207.95], [752.07, 1205.11], [753.18, 1203.81], [754.32, 1202.46], [758.65, 1206.34], [819.0, 1260.31], [894.95, 1328.67]], [[966.77, 1257.29], [963.56, 1260.96], [909.94, 1322.21], [907.99, 1324.38], [904.55, 1328.08], [899.68, 1323.51], [823.68, 1255.1], [763.32, 1201.12], [758.92, 1197.18], [764.05, 1191.49], [818.99, 1131.06], [823.01, 1126.64], [827.65, 1130.91], [830.67, 1133.57], [960.82, 1251.87], [962.84, 1253.71], [966.77, 1257.29]], [[679.19, 1443.73], [679.22, 1443.2], [679.39, 1442.68], [679.82, 1442.06], [712.18, 1406.72], [772.62, 1463.54], [776.84, 1467.51], [716.49, 1534.53], [714.24, 1531.9], [713.26, 1530.02], [711.6, 1526.82], [679.37, 1444.46], [679.19, 1443.73]], [[1183.31, 431.01], [1188.07, 425.81], [1191.65, 429.23], [1222.51, 456.66], [1308.97, 536.53], [1326.3, 552.99], [1329.98, 556.08], [1326.01, 560.48], [1299.89, 589.44], [1299.01, 590.42], [1291.59, 598.63], [1291.37, 598.88], [1272.12, 620.18], [1268.33, 624.38], [1264.0, 620.46], [1256.18, 613.5], [1248.08, 606.06], [1211.5, 573.7], [1195.91, 559.91], [1188.18, 553.04], [1183.67, 548.95], [1181.48, 546.95], [1174.34, 540.2], [1174.12, 540.01], [1159.35, 525.75], [1149.43, 516.75], [1129.71, 498.56], [1125.23, 494.45], [1128.56, 490.82], [1130.28, 488.94], [1148.11, 469.45], [1181.81, 432.66], [1183.31, 431.01]], [[1247.84, 355.61], [1249.67, 353.48], [1253.75, 348.73], [1259.33, 353.86], [1266.8, 360.73], [1286.64, 378.97], [1295.62, 387.22], [1325.3, 414.5], [1338.57, 426.69], [1341.82, 429.68], [1395.55, 476.84], [1398.95, 479.81], [1394.71, 484.5], [1339.79, 545.29], [1334.68, 550.89], [1330.97, 547.77], [1313.75, 531.42], [1227.21, 451.48], [1196.39, 424.08], [1192.5, 420.36], [1196.39, 416.32], [1209.51, 403.95], [1221.53, 389.89], [1235.11, 370.43], [1247.84, 355.61]], [[1173.23, 274.47], [1205.51, 304.21], [1247.39, 342.87], [1249.33, 344.66], [1245.12, 349.57], [1243.29, 351.7], [1230.37, 366.75], [1216.78, 386.22], [1205.16, 399.81], [1192.17, 412.05], [1187.77, 416.63], [1182.44, 411.76], [1046.57, 287.99], [1042.92, 284.67], [1047.28, 279.86], [1047.95, 279.12], [1100.03, 221.85], [1101.68, 220.03], [1107.97, 213.11], [1111.78, 216.71], [1173.23, 274.47]], [[1299.33, 288.47], [1300.93, 289.75], [1278.84, 313.17], [1259.36, 333.83], [1257.74, 335.54], [1253.35, 340.2], [1251.46, 338.46], [1211.79, 301.84], [1216.1, 297.19], [1217.43, 295.76], [1255.47, 254.74], [1257.32, 254.4], [1257.92, 254.67], [1296.03, 285.78], [1299.33, 288.47]], [[1183.29, 420.67], [1178.15, 426.29], [1176.64, 427.93], [1142.95, 464.73], [1125.11, 484.22], [1123.39, 486.1], [1120.0, 489.81], [1114.74, 485.32], [1107.17, 478.83], [1090.81, 464.31], [1084.46, 458.67], [1051.6, 429.51], [1038.7, 418.06], [1000.57, 384.23], [978.35, 364.49], [973.91, 360.57], [978.9, 355.08], [1014.88, 315.5], [1032.25, 296.4], [1034.0, 294.44], [1038.88, 289.1], [1042.53, 292.43], [1178.4, 416.2], [1183.29, 420.67]], [[1178.5, 1315.52], [1183.19, 1319.79], [1180.91, 1322.24], [1146.15, 1359.4], [1145.98, 1359.11], [1138.81, 1363.28], [1133.03, 1367.89], [1121.17, 1380.67], [1116.72, 1385.26], [1115.69, 1384.3], [1113.64, 1382.43], [1097.39, 1367.61], [1073.6, 1345.9], [1058.39, 1332.0], [1047.94, 1322.46], [1043.06, 1318.01], [1029.35, 1305.5], [982.95, 1262.67], [981.06, 1260.92], [975.85, 1256.12], [979.74, 1251.82], [1032.44, 1193.68], [1033.85, 1192.13], [1038.08, 1187.45], [1043.08, 1192.02], [1178.5, 1315.52]], [[1094.6, 1125.92], [1114.41, 1104.99], [1117.18, 1102.05], [1120.63, 1098.41], [1125.01, 1102.29], [1171.21, 1145.38], [1228.69, 1199.0], [1256.36, 1224.67], [1262.74, 1230.95], [1260.75, 1233.17], [1257.78, 1236.49], [1241.93, 1254.17], [1192.63, 1309.35], [1187.91, 1314.62], [1183.22, 1310.34], [1047.8, 1186.85], [1042.79, 1182.27], [1046.14, 1178.61], [1048.23, 1176.29], [1070.07, 1152.31], [1081.31, 1139.97], [1092.45, 1128.2], [1094.6, 1125.92]], [[1279.9, 771.6], [1212.56, 710.56], [1209.83, 708.09], [1205.75, 704.39], [1208.93, 701.31], [1247.25, 658.15], [1248.3, 656.99], [1264.7, 638.83], [1268.82, 634.28], [1274.22, 639.22], [1280.57, 645.02], [1282.13, 646.51], [1282.67, 647.0], [1297.6, 660.81], [1300.39, 663.38], [1311.86, 673.69], [1312.38, 674.19], [1318.11, 679.62], [1325.83, 686.2], [1384.6, 740.33], [1408.79, 762.94], [1412.99, 766.61], [1409.38, 770.58], [1390.14, 792.0], [1386.09, 796.5], [1376.43, 807.22], [1374.88, 808.94], [1368.89, 815.6], [1366.31, 818.46], [1354.29, 832.3], [1350.94, 835.89], [1348.09, 833.18], [1335.48, 821.96], [1331.41, 818.33], [1303.22, 792.73], [1290.24, 780.97], [1287.45, 778.45], [1279.9, 771.6]], [[1038.35, 589.42], [1042.06, 584.44], [1051.76, 573.06], [1083.76, 539.8], [1085.71, 537.68], [1090.7, 532.21], [1113.42, 507.37], [1116.42, 504.09], [1120.51, 499.62], [1124.97, 503.71], [1144.7, 521.91], [1154.57, 530.86], [1169.34, 545.12], [1169.58, 545.34], [1176.72, 552.08], [1178.96, 554.13], [1183.5, 558.25], [1191.26, 565.15], [1206.86, 578.94], [1243.39, 611.26], [1251.49, 618.7], [1259.33, 625.67], [1263.64, 629.57], [1259.51, 634.14], [1243.1, 652.3], [1242.03, 653.48], [1203.87, 696.46], [1200.46, 699.77], [1196.45, 696.4], [1194.11, 694.42], [1164.01, 668.97], [1148.83, 656.14], [1144.95, 660.72], [1160.13, 673.56], [1190.24, 699.0], [1192.59, 700.98], [1196.3, 704.1], [1191.94, 708.92], [1189.45, 711.68], [1185.74, 715.79], [1177.38, 725.04], [1174.67, 728.04], [1139.44, 767.06], [1131.05, 776.33], [1128.55, 779.09], [1125.56, 782.4], [1106.26, 803.75], [1092.99, 818.45], [1067.42, 846.75], [1065.19, 849.22], [1061.58, 845.94], [1059.24, 843.81], [1015.16, 803.93], [999.49, 789.76], [988.15, 779.49], [924.55, 721.93], [921.38, 719.07], [925.35, 714.75], [975.54, 659.99], [983.87, 650.71], [988.3, 645.77], [991.61, 642.27], [1023.06, 606.71], [1029.66, 599.26], [1038.35, 589.42]], [[976.78, 1040.83], [962.43, 1028.07], [958.73, 1024.79], [939.54, 1007.73], [934.83, 1003.55], [943.59, 993.9], [956.47, 979.72], [967.69, 967.37], [970.68, 964.08], [975.99, 968.83], [994.37, 985.3], [997.32, 987.94], [1012.64, 1001.67], [1044.11, 1029.87], [1058.19, 1042.49], [1074.55, 1057.14], [1111.12, 1089.93], [1116.14, 1094.42], [1112.82, 1097.93], [1110.05, 1100.86], [1090.24, 1121.8], [1088.09, 1124.08], [1078.93, 1133.75], [1075.1, 1130.35], [1069.22, 1125.14], [1065.46, 1121.66], [1035.41, 1093.87], [1027.24, 1086.32], [1022.03, 1081.61], [983.08, 1046.42], [976.78, 1040.83]], [[982.99, 961.01], [977.72, 956.29], [980.98, 952.66], [986.45, 957.59], [1120.43, 1078.29], [1134.75, 1091.14], [1266.11, 1209.47], [1268.84, 1211.93], [1274.4, 1216.93], [1269.35, 1222.72], [1263.61, 1217.08], [1235.85, 1191.31], [1178.37, 1137.7], [1132.07, 1094.52], [1125.48, 1088.68], [1118.13, 1082.11], [1081.55, 1049.32], [1065.2, 1034.67], [1051.12, 1022.05], [1019.65, 993.85], [1004.32, 980.12], [1001.37, 977.47], [982.99, 961.01]], [[1247.75, 1514.35], [1258.21, 1523.9], [1260.07, 1525.6], [1263.69, 1528.9], [1261.09, 1531.82], [1206.92, 1592.54], [1204.62, 1595.13], [1202.66, 1597.25], [1124.81, 1525.6], [1115.03, 1517.35], [1112.13, 1520.79], [1114.87, 1517.22], [1108.22, 1512.11], [1062.75, 1470.83], [1058.77, 1467.25], [1061.11, 1464.58], [1098.31, 1422.8], [1112.03, 1410.88], [1117.8, 1406.34], [1120.54, 1403.29], [1122.99, 1400.57], [1125.04, 1402.44], [1126.34, 1403.62], [1247.75, 1514.35]], [[1192.13, 1327.94], [1239.49, 1371.06], [1240.26, 1371.76], [1291.54, 1418.11], [1302.92, 1428.57], [1319.53, 1443.82], [1325.02, 1448.87], [1327.67, 1451.3], [1330.79, 1454.17], [1328.72, 1456.47], [1272.63, 1518.93], [1268.36, 1523.69], [1264.79, 1520.43], [1262.93, 1518.73], [1252.47, 1509.18], [1131.06, 1398.46], [1129.76, 1397.27], [1127.8, 1395.48], [1132.23, 1390.98], [1143.34, 1376.75], [1151.32, 1364.78], [1150.94, 1364.53], [1186.02, 1327.02], [1188.37, 1324.51], [1192.13, 1327.94]], [[1285.21, 1250.91], [1310.86, 1273.42], [1357.43, 1314.28], [1365.2, 1321.05], [1407.67, 1358.27], [1414.18, 1363.98], [1409.95, 1368.56], [1406.35, 1372.45], [1388.77, 1391.45], [1340.72, 1443.75], [1335.57, 1449.05], [1332.4, 1446.15], [1329.75, 1443.71], [1324.27, 1438.67], [1307.66, 1423.42], [1296.26, 1412.94], [1244.97, 1366.58], [1244.2, 1365.88], [1196.85, 1322.76], [1193.09, 1319.34], [1197.85, 1314.01], [1247.14, 1258.84], [1262.99, 1241.16], [1265.96, 1237.85], [1267.87, 1235.72], [1274.0, 1241.09], [1276.56, 1243.34], [1285.21, 1250.91]], [[1046.52, 1479.79], [1052.61, 1473.8], [1056.71, 1477.5], [1102.45, 1519.02], [1106.7, 1522.29], [1102.83, 1526.53], [1098.64, 1523.04], [1050.5, 1482.98], [1046.52, 1479.79]], [[1810.9, 2295.8], [1809.55, 2240.92], [1815.49, 2243.58], [1830.45, 2244.24], [1847.16, 2241.35], [1858.22, 2238.79], [1868.05, 2237.73], [1877.1, 2239.98], [1905.4, 2263.86], [1904.26, 2265.18], [1908.51, 2268.85], [1905.7, 2271.94], [1871.17, 2307.16], [1868.63, 2309.75], [1867.0, 2311.41], [1854.25, 2324.42], [1847.95, 2330.83], [1823.4, 2353.32], [1821.28, 2355.2], [1816.93, 2334.29], [1812.53, 2312.77], [1810.9, 2295.8]], [[1806.79, 2191.7], [1803.06, 2174.25], [1806.37, 2176.64], [1823.5, 2183.89], [1829.9, 2187.33], [1865.98, 2221.37], [1885.82, 2242.76], [1878.74, 2236.78], [1868.29, 2234.18], [1857.63, 2235.33], [1846.46, 2237.92], [1830.23, 2240.72], [1816.31, 2240.11], [1809.45, 2237.04], [1809.44, 2236.5], [1809.16, 2216.8], [1806.79, 2191.7]], [[1798.18, 2166.37], [1801.12, 2165.35], [1792.72, 2141.18], [1781.59, 2118.39], [1785.19, 2114.53], [1834.94, 2064.76], [1839.48, 2060.22], [1843.39, 2064.05], [1973.85, 2192.54], [1978.25, 2196.64], [1973.98, 2200.74], [1916.89, 2259.99], [1913.29, 2263.73], [1908.83, 2259.88], [1907.69, 2261.2], [1868.47, 2218.9], [1831.97, 2184.47], [1825.02, 2180.73], [1808.1, 2173.58], [1801.97, 2169.13], [1801.3, 2165.98], [1798.47, 2166.58], [1798.18, 2166.37]], [[2052.94, 2128.67], [2057.2, 2132.81], [2188.47, 2259.81], [2193.76, 2264.9], [2190.94, 2267.75], [2159.05, 2300.25], [2145.12, 2314.78], [2132.62, 2327.81], [2127.51, 2333.14], [2122.44, 2328.2], [1991.16, 2200.72], [1986.87, 2196.55], [1991.16, 2192.17], [2049.09, 2132.61], [2052.94, 2128.67]], [[2057.18, 2124.43], [2061.27, 2120.44], [2098.85, 2081.97], [2113.7, 2067.07], [2134.42, 2046.28], [2137.92, 2042.76], [2141.49, 2046.21], [2152.79, 2057.13], [2155.52, 2059.76], [2259.9, 2160.53], [2272.86, 2173.04], [2277.9, 2177.9], [2273.11, 2182.38], [2255.44, 2201.4], [2233.24, 2224.74], [2203.37, 2255.08], [2197.96, 2260.62], [2192.63, 2255.5], [2061.38, 2128.49], [2057.18, 2124.43]], [[2124.27, 2015.66], [2052.33, 1945.59], [2044.65, 1938.38], [2050.59, 1932.36], [2058.42, 1939.94], [2143.32, 2022.15], [2154.64, 2033.1], [2285.29, 2159.62], [2290.83, 2164.99], [2285.4, 2170.55], [2280.15, 2165.48], [2267.19, 2152.97], [2162.82, 2052.21], [2160.09, 2049.58], [2148.78, 2038.66], [2143.11, 2033.18], [2139.46, 2036.96], [2143.04, 2033.11], [2136.14, 2026.71], [2124.27, 2015.66]], [[2119.73, 1861.5], [2124.16, 1865.78], [2168.66, 1919.45], [2193.7, 1947.0], [2227.31, 1987.69], [2251.56, 2016.34], [2331.62, 2114.28], [2335.55, 2119.1], [2325.47, 2129.44], [2301.19, 2154.36], [2298.16, 2157.47], [2292.59, 2152.08], [2161.94, 2025.56], [2150.62, 2014.6], [2065.73, 1932.4], [2057.95, 1924.87], [2060.23, 1922.54], [2117.26, 1864.03], [2119.73, 1861.5]], [[2143.34, 1836.75], [2172.47, 1805.81], [2181.66, 1796.81], [2194.85, 1783.89], [2200.19, 1778.67], [2201.43, 1777.45], [2202.84, 1776.28], [2211.17, 1772.08], [2215.18, 1769.96], [2215.5, 1770.48], [2216.44, 1772.04], [2227.47, 1790.19], [2238.14, 1807.73], [2240.53, 1811.68], [2259.47, 1841.9], [2261.56, 1845.33], [2263.96, 1849.27], [2261.68, 1850.67], [2257.4, 1853.3], [2218.68, 1877.1], [2204.65, 1885.72], [2201.22, 1887.82], [2204.36, 1892.93], [2207.79, 1890.83], [2221.82, 1882.21], [2260.54, 1858.41], [2264.82, 1855.78], [2267.14, 1854.35], [2268.57, 1856.58], [2289.36, 1888.98], [2314.41, 1929.28], [2328.64, 1951.4], [2338.26, 1966.69], [2342.95, 1974.15], [2347.7, 1981.86], [2392.49, 2054.55], [2395.88, 2060.06], [2391.9, 2063.51], [2372.99, 2079.9], [2352.23, 2102.98], [2350.74, 2104.7], [2339.86, 2114.89], [2336.27, 2110.49], [2256.18, 2012.51], [2231.91, 1983.84], [2198.23, 1943.07], [2173.19, 1915.52], [2128.57, 1861.7], [2123.89, 1857.18], [2127.81, 1853.04], [2139.25, 1840.98], [2143.34, 1836.75]], [[2197.41, 1772.98], [2195.99, 1774.38], [2190.65, 1779.61], [2177.46, 1792.53], [2168.18, 1801.61], [2139.0, 1832.61], [2134.92, 1836.84], [2123.46, 1848.91], [2119.58, 1853.0], [2114.99, 1848.51], [1939.46, 1677.21], [1936.13, 1673.95], [1938.12, 1671.78], [1943.22, 1665.83], [1946.83, 1661.55], [1948.48, 1659.5], [1954.93, 1652.67], [1973.04, 1633.49], [1976.98, 1629.31], [1990.48, 1615.37], [1999.13, 1606.43], [1997.9, 1605.25], [2007.18, 1599.21], [2012.36, 1594.87], [2016.28, 1591.6], [2017.22, 1590.53], [2020.52, 1593.69], [2069.56, 1640.86], [2096.05, 1666.35], [2105.71, 1675.65], [2129.24, 1698.28], [2143.77, 1712.27], [2151.44, 1719.64], [2156.97, 1722.95], [2163.84, 1724.32], [2187.32, 1724.26], [2188.72, 1726.51], [2188.69, 1727.25], [2189.19, 1727.26], [2192.93, 1733.25], [2206.18, 1754.51], [2212.47, 1764.61], [2208.42, 1766.75], [2199.54, 1771.23], [2197.41, 1772.98]], [[2156.33, 1713.25], [2149.32, 1706.5], [2134.78, 1692.52], [2111.26, 1669.88], [2101.6, 1660.58], [2075.11, 1635.1], [2026.06, 1587.92], [2022.51, 1584.52], [2026.74, 1579.7], [2032.05, 1573.67], [2047.42, 1555.45], [2051.38, 1558.9], [2070.87, 1536.51], [2071.09, 1536.26], [2072.52, 1538.46], [2081.99, 1552.27], [2103.22, 1586.81], [2123.51, 1619.83], [2131.72, 1633.19], [2140.18, 1646.96], [2159.02, 1677.62], [2175.65, 1705.07], [2182.44, 1716.27], [2164.62, 1716.32], [2159.89, 1715.38], [2156.33, 1713.25]], [[2129.47, 1616.17], [2109.18, 1583.15], [2087.86, 1548.46], [2078.34, 1534.57], [2075.83, 1530.73], [2081.88, 1523.29], [2107.49, 1491.06], [2109.6, 1488.4], [2113.09, 1484.27], [2114.43, 1485.25], [2140.83, 1501.67], [2156.51, 1508.35], [2155.54, 1509.76], [2173.13, 1521.95], [2229.69, 1561.12], [2231.68, 1558.25], [2229.69, 1561.13], [2235.19, 1564.93], [2312.3, 1618.35], [2309.71, 1621.31], [2307.55, 1624.44], [2303.47, 1630.37], [2299.66, 1637.08], [2295.94, 1645.4], [2293.45, 1653.34], [2289.08, 1669.32], [2285.21, 1683.47], [2284.57, 1685.79], [2282.1, 1694.77], [2279.94, 1701.72], [2278.03, 1710.93], [2273.56, 1729.92], [2273.38, 1730.66], [2255.69, 1726.32], [2223.16, 1718.33], [2204.82, 1713.82], [2189.2, 1713.26], [2189.18, 1713.88], [2181.64, 1701.44], [2166.56, 1676.56], [2171.12, 1673.83], [2174.88, 1671.61], [2193.61, 1660.6], [2195.22, 1659.66], [2213.6, 1648.95], [2216.87, 1635.9], [2228.99, 1588.44], [2230.12, 1583.11], [2224.25, 1581.87], [2223.14, 1587.08], [2211.05, 1634.43], [2208.4, 1645.04], [2192.2, 1654.47], [2190.58, 1655.42], [2171.84, 1666.44], [2168.06, 1668.67], [2163.44, 1671.44], [2146.14, 1643.29], [2137.68, 1629.53], [2129.47, 1616.17]], [[2119.75, 1477.37], [2077.54, 1450.78], [2066.88, 1444.12], [2067.87, 1442.68], [2052.51, 1432.11], [2046.16, 1427.72], [2036.06, 1420.03], [2026.7, 1412.58], [2019.65, 1406.29], [2012.71, 1399.41], [1992.3, 1380.43], [1987.0, 1374.29], [1962.57, 1343.01], [1965.45, 1341.04], [1963.37, 1338.0], [1958.94, 1330.42], [1956.74, 1326.94], [1960.09, 1324.63], [1997.5, 1296.28], [2050.87, 1254.94], [2067.63, 1238.67], [2075.45, 1232.22], [2078.64, 1235.37], [2080.19, 1236.9], [2104.45, 1260.89], [2112.69, 1268.1], [2134.2, 1286.67], [2138.08, 1290.2], [2133.62, 1293.78], [2131.63, 1295.38], [2059.93, 1352.91], [2053.68, 1356.38], [2028.75, 1370.24], [2031.67, 1375.49], [2056.6, 1361.63], [2061.45, 1358.93], [2066.76, 1362.54], [2146.61, 1416.77], [2151.68, 1420.22], [2209.47, 1459.71], [2266.94, 1499.47], [2264.52, 1503.7], [2244.31, 1534.0], [2239.27, 1541.04], [2236.0, 1545.69], [2231.07, 1553.57], [2177.12, 1516.19], [2159.52, 1504.0], [2158.53, 1505.44], [2147.66, 1496.67], [2128.66, 1482.71], [2119.75, 1477.37]], [[2066.65, 1355.21], [2135.39, 1300.06], [2137.38, 1298.46], [2142.54, 1294.32], [2146.22, 1297.8], [2159.99, 1310.84], [2175.64, 1324.14], [2189.81, 1334.45], [2199.08, 1340.59], [2200.82, 1341.74], [2197.98, 1346.22], [2196.65, 1348.33], [2186.48, 1364.4], [2153.94, 1411.64], [2152.59, 1413.58], [2149.98, 1411.81], [2070.13, 1357.58], [2066.65, 1355.21]], [[2110.05, 1254.86], [2085.98, 1231.06], [2084.43, 1229.52], [2081.64, 1226.76], [2085.35, 1223.28], [2116.45, 1191.29], [2151.95, 1151.81], [2208.27, 1090.64], [2209.95, 1088.82], [2213.28, 1085.2], [2216.2, 1087.78], [2237.84, 1106.94], [2273.8, 1138.8], [2275.17, 1140.01], [2270.81, 1145.07], [2268.95, 1147.24], [2256.96, 1161.15], [2150.65, 1277.99], [2148.42, 1280.3], [2146.61, 1282.18], [2144.22, 1284.66], [2139.66, 1280.51], [2118.09, 1261.89], [2110.05, 1254.86]], [[2147.22, 1147.5], [2111.78, 1186.92], [2080.87, 1218.71], [2074.23, 1224.92], [2063.36, 1233.9], [2046.67, 1250.1], [1993.6, 1291.2], [1956.34, 1319.45], [1953.5, 1321.4], [1947.34, 1310.19], [1929.65, 1281.38], [1923.1, 1272.62], [1925.02, 1270.82], [1926.13, 1269.79], [1954.54, 1244.15], [1957.45, 1241.52], [2016.3, 1185.82], [2023.46, 1179.04], [2032.05, 1171.25], [2087.36, 1121.03], [2097.88, 1110.79], [2094.8, 1107.63], [2098.02, 1110.65], [2104.3, 1103.97], [2128.86, 1076.07], [2157.63, 1043.71], [2158.75, 1042.18], [2161.69, 1038.11], [2169.04, 1044.69], [2170.54, 1046.03], [2204.34, 1076.58], [2208.61, 1080.82], [2205.24, 1084.48], [2203.56, 1086.31], [2147.22, 1147.5]], [[1616.88, 1976.04], [1620.81, 1971.55], [1625.84, 1975.93], [1621.58, 1980.33], [1616.88, 1976.04]], [[1743.66, 2083.96], [1759.91, 2103.74], [1771.76, 2122.2], [1783.0, 2145.22], [1791.1, 2168.49], [1796.39, 2193.29], [1798.67, 2217.37], [1798.83, 2228.68], [1797.26, 2227.33], [1790.78, 2220.0], [1786.63, 2213.18], [1760.98, 2145.61], [1759.63, 2138.74], [1758.46, 2138.97], [1758.4, 2138.79], [1762.98, 2137.67], [1759.54, 2123.62], [1752.83, 2105.34], [1743.16, 2091.77], [1724.21, 2073.01], [1698.33, 2047.84], [1645.24, 1996.44], [1640.36, 1991.84], [1631.56, 1984.41], [1634.6, 1981.27], [1643.69, 1989.25], [1663.54, 2006.76], [1743.66, 2083.96]], [[1690.5, 1925.9], [1696.46, 1920.69], [1699.6, 1923.61], [1830.42, 2051.36], [1835.19, 2056.02], [1830.7, 2060.51], [1780.87, 2110.37], [1778.37, 2113.05], [1768.42, 2097.55], [1751.39, 2076.83], [1670.66, 1999.04], [1650.63, 1981.36], [1643.29, 1974.92], [1649.78, 1967.78], [1662.77, 1946.0], [1664.84, 1948.37], [1690.5, 1925.9]], [[1719.28, 1890.66], [1745.67, 1869.63], [1759.03, 1856.33], [1764.15, 1851.24], [1767.58, 1854.54], [1898.8, 1980.89], [1903.88, 1985.78], [1900.58, 1989.15], [1843.85, 2047.22], [1839.41, 2051.76], [1834.61, 2047.07], [1703.74, 1919.27], [1698.28, 1914.18], [1701.02, 1911.49], [1711.77, 1902.69], [1721.69, 1893.18], [1719.28, 1890.66]], [[1819.24, 1795.86], [1844.29, 1773.77], [1850.0, 1768.6], [1856.01, 1773.36], [1858.44, 1775.39], [1864.64, 1780.64], [1979.42, 1889.08], [2025.22, 1934.53], [2033.0, 1941.83], [2028.85, 1946.25], [2015.38, 1960.32], [1994.4, 1983.01], [1972.21, 2004.97], [1957.74, 2020.57], [1953.44, 2025.16], [1947.91, 2019.84], [1923.09, 1995.95], [1915.84, 1988.96], [1910.22, 1983.55], [1908.14, 1985.71], [1910.22, 1983.55], [1902.96, 1976.57], [1771.74, 1850.22], [1768.37, 1846.97], [1775.56, 1839.6], [1798.45, 1816.14], [1809.97, 1804.34], [1819.24, 1795.86]], [[1793.44, 1811.25], [1770.55, 1834.71], [1763.2, 1842.25], [1759.45, 1839.01], [1766.47, 1831.27], [1786.75, 1808.92], [1787.72, 1810.03], [1834.36, 1769.72], [1836.81, 1767.49], [1842.13, 1762.66], [1844.33, 1764.29], [1839.63, 1768.54], [1814.56, 1790.65], [1805.09, 1799.31], [1793.44, 1811.25]], [[1823.2, 1758.49], [1824.74, 1754.85], [1826.05, 1749.74], [1830.83, 1753.82], [1834.11, 1756.44], [1830.08, 1760.09], [1827.72, 1762.24], [1813.03, 1774.94], [1823.2, 1758.49]], [[1727.11, 1640.73], [1676.39, 1592.17], [1647.1, 1564.22], [1632.94, 1550.83], [1608.69, 1528.05], [1581.97, 1502.9], [1581.71, 1502.65], [1580.13, 1501.17], [1569.84, 1492.29], [1528.67, 1454.96], [1504.37, 1432.92], [1483.62, 1414.11], [1479.88, 1410.72], [1475.63, 1406.77], [1433.88, 1367.86], [1425.66, 1360.2], [1429.11, 1356.25], [1429.47, 1355.83], [1437.77, 1363.55], [1470.18, 1393.7], [1474.35, 1397.72], [1511.7, 1433.73], [1555.67, 1473.55], [1566.28, 1483.02], [1567.43, 1484.05], [1574.25, 1490.39], [1590.45, 1505.05], [1592.67, 1507.09], [1593.38, 1507.7], [1611.4, 1524.78], [1635.89, 1547.52], [1644.99, 1556.01], [1654.27, 1564.35], [1696.53, 1604.16], [1727.54, 1633.14], [1728.16, 1633.7], [1739.54, 1644.34], [1754.46, 1658.21], [1761.81, 1665.14], [1767.29, 1670.09], [1842.46, 1738.02], [1843.81, 1739.35], [1848.76, 1743.76], [1842.1, 1749.39], [1837.52, 1745.72], [1823.15, 1733.45], [1763.25, 1676.88], [1748.77, 1663.21], [1731.92, 1645.33], [1727.11, 1640.73]], [[1768.93, 1657.42], [1761.64, 1650.55], [1746.71, 1636.66], [1735.25, 1625.95], [1734.62, 1625.39], [1703.72, 1596.5], [1661.38, 1556.62], [1652.08, 1548.26], [1643.05, 1539.83], [1618.59, 1517.12], [1600.43, 1499.91], [1599.66, 1499.25], [1597.52, 1497.29], [1581.35, 1482.65], [1574.5, 1476.28], [1573.27, 1475.18], [1562.69, 1465.75], [1518.87, 1426.06], [1481.64, 1390.17], [1477.4, 1386.08], [1444.92, 1355.86], [1436.46, 1348.0], [1440.45, 1343.63], [1442.35, 1341.65], [1459.18, 1323.37], [1464.16, 1317.96], [1467.36, 1314.49], [1472.35, 1308.97], [1501.07, 1277.13], [1502.45, 1275.6], [1508.32, 1269.09], [1513.08, 1263.82], [1517.55, 1267.88], [1519.6, 1269.75], [1545.48, 1293.21], [1576.64, 1321.48], [1605.33, 1347.5], [1614.26, 1355.59], [1662.54, 1400.45], [1689.2, 1425.23], [1690.4, 1426.33], [1691.93, 1428.0], [1696.65, 1431.99], [1710.49, 1444.75], [1734.16, 1466.8], [1743.52, 1474.55], [1758.92, 1488.17], [1937.49, 1652.24], [1941.59, 1656.9], [1941.43, 1657.1], [1937.89, 1661.29], [1932.88, 1667.14], [1929.01, 1671.35], [1930.25, 1672.48], [1922.14, 1677.45], [1920.3, 1678.58], [1865.28, 1733.99], [1859.29, 1739.08], [1850.99, 1731.68], [1849.66, 1730.37], [1774.33, 1662.3], [1768.93, 1657.42]], [[1765.3, 1477.99], [1760.91, 1481.92], [1747.43, 1469.99], [1738.12, 1462.29], [1714.56, 1440.34], [1700.62, 1427.49], [1696.09, 1423.66], [1694.65, 1422.09], [1693.29, 1420.83], [1666.62, 1396.05], [1620.48, 1353.19], [1622.59, 1350.82], [1626.04, 1346.96], [1635.13, 1336.77], [1647.74, 1321.87], [1649.26, 1316.1], [1650.72, 1310.54], [1649.44, 1302.18], [1645.55, 1295.36], [1639.11, 1288.64], [1618.16, 1269.15], [1612.02, 1263.45], [1589.56, 1242.69], [1562.62, 1217.79], [1558.39, 1213.88], [1565.89, 1205.39], [1578.43, 1191.18], [1580.89, 1188.39], [1588.7, 1180.13], [1593.51, 1175.03], [1606.41, 1160.91], [1610.69, 1156.23], [1608.47, 1154.21], [1610.73, 1156.19], [1643.81, 1118.63], [1644.74, 1117.28], [1649.84, 1111.45], [1656.0, 1104.84], [1686.85, 1071.79], [1688.38, 1070.15], [1709.67, 1047.32], [1711.49, 1045.37], [1713.35, 1043.38], [1717.14, 1047.48], [1729.91, 1061.35], [1734.58, 1066.92], [1757.75, 1094.54], [1785.78, 1127.94], [1813.24, 1162.38], [1835.27, 1188.88], [1841.37, 1196.21], [1846.16, 1201.98], [1876.86, 1239.0], [1882.25, 1234.53], [1876.97, 1239.13], [1882.17, 1245.09], [1884.39, 1247.62], [1888.94, 1252.92], [1904.66, 1271.96], [1906.93, 1274.72], [1904.53, 1276.56], [1902.75, 1277.88], [1901.41, 1278.86], [1879.68, 1287.14], [1875.45, 1288.82], [1863.14, 1292.52], [1858.39, 1293.36], [1853.31, 1292.95], [1852.6, 1301.76], [1858.82, 1302.26], [1865.19, 1301.13], [1878.35, 1297.17], [1882.88, 1295.38], [1905.69, 1286.69], [1907.99, 1284.99], [1909.85, 1283.63], [1912.39, 1281.67], [1918.06, 1289.25], [1935.24, 1317.23], [1943.13, 1331.59], [1949.26, 1328.22], [1943.35, 1331.95], [1946.97, 1337.69], [1951.53, 1345.49], [1953.9, 1348.95], [1956.77, 1346.98], [1977.16, 1384.38], [1979.11, 1387.89], [1977.6, 1389.31], [1957.81, 1407.26], [1933.61, 1433.19], [1907.91, 1460.74], [1881.49, 1488.84], [1885.87, 1492.95], [1912.29, 1464.84], [1938.0, 1437.28], [1962.02, 1411.53], [1981.66, 1393.72], [1982.27, 1393.15], [1984.82, 1397.23], [2005.71, 1427.67], [2004.23, 1428.6], [2022.84, 1457.84], [2020.8, 1459.89], [1944.8, 1536.58], [1949.06, 1540.8], [2025.06, 1464.12], [2026.02, 1463.15], [2028.35, 1467.16], [2060.1, 1521.69], [2062.14, 1525.21], [2060.31, 1527.32], [2040.82, 1549.71], [2044.77, 1553.15], [2020.76, 1574.32], [2013.46, 1580.77], [2009.7, 1584.08], [2005.55, 1588.25], [2002.71, 1591.11], [1995.33, 1602.76], [1994.09, 1601.57], [1985.45, 1610.5], [1971.92, 1624.48], [1967.95, 1628.68], [1949.84, 1647.87], [1945.59, 1652.37], [1941.78, 1648.04], [1765.39, 1485.97], [1769.19, 1482.55], [1806.33, 1452.42], [1802.55, 1447.76], [1765.3, 1477.99]], [[1768.47, 1085.54], [1745.31, 1057.93], [1740.43, 1052.1], [1727.43, 1037.99], [1722.86, 1033.03], [1724.06, 1031.7], [1726.09, 1029.46], [1742.66, 1011.12], [1779.42, 970.44], [1782.96, 966.52], [1786.91, 970.11], [1803.47, 986.15], [1874.23, 1050.54], [1883.56, 1059.04], [1913.24, 1086.11], [1926.46, 1098.18], [1923.47, 1101.36], [1886.13, 1141.02], [1870.2, 1160.84], [1864.3, 1167.48], [1850.3, 1183.22], [1849.51, 1184.11], [1846.04, 1179.93], [1824.1, 1153.54], [1796.61, 1119.08], [1768.47, 1085.54]], [[1851.05, 891.71], [1854.33, 894.66], [1975.79, 1003.8], [1990.87, 1017.36], [1998.21, 1023.95], [2005.85, 1030.94], [2087.06, 1105.28], [2089.02, 1107.08], [2081.31, 1114.59], [2026.11, 1164.71], [2020.52, 1169.77], [2018.56, 1168.04], [1985.61, 1137.5], [1982.5, 1140.86], [1985.51, 1137.41], [1941.99, 1099.48], [1934.83, 1093.43], [1919.4, 1079.36], [1889.72, 1052.28], [1880.39, 1043.78], [1809.73, 979.48], [1793.17, 963.44], [1789.09, 959.74], [1791.52, 957.06], [1812.59, 934.05], [1847.01, 896.15], [1851.05, 891.71]], [[1707.65, 751.21], [1711.86, 746.58], [1765.91, 687.07], [1770.84, 681.64], [1774.46, 684.93], [1908.33, 806.26], [1911.06, 808.73], [1914.08, 811.47], [1909.42, 816.74], [1855.05, 878.21], [1851.32, 882.43], [1847.9, 879.19], [1802.02, 835.6], [1711.38, 754.54], [1707.65, 751.21]], [[1824.01, 621.61], [1825.17, 622.65], [1830.57, 616.63], [1833.4, 614.65], [1836.42, 613.71], [1839.87, 613.57], [1842.3, 614.58], [1846.09, 617.56], [1976.09, 735.86], [1981.16, 740.47], [1978.29, 743.5], [1921.64, 803.33], [1918.13, 807.05], [1915.09, 804.29], [1912.36, 801.82], [1778.5, 680.48], [1774.53, 676.89], [1777.5, 673.7], [1797.23, 652.5], [1816.11, 631.44], [1824.01, 621.61]], [[1499.69, 1871.68], [1448.63, 1830.31], [1381.17, 1768.84], [1385.21, 1771.97], [1421.56, 1801.0], [1495.78, 1861.55], [1503.0, 1867.57], [1504.34, 1868.68], [1504.65, 1870.54], [1506.02, 1878.8], [1505.48, 1878.2], [1499.69, 1871.68]], [[1210.12, 1614.35], [1298.51, 1694.45], [1321.73, 1715.79], [1339.13, 1731.46], [1321.75, 1717.5], [1209.05, 1615.15], [1200.93, 1608.0], [1201.73, 1607.13], [1210.12, 1614.35]], [[1554.89, 756.19], [1625.41, 822.15], [1627.36, 823.97], [1623.0, 828.9], [1571.46, 887.22], [1568.4, 890.34], [1565.13, 893.69], [1562.5, 891.31], [1525.69, 857.46], [1518.31, 850.8], [1509.91, 843.28], [1500.93, 835.18], [1468.59, 806.26], [1465.29, 803.31], [1463.85, 802.01], [1451.71, 791.15], [1450.38, 789.95], [1448.62, 788.38], [1426.1, 768.85], [1422.19, 765.38], [1425.67, 761.5], [1480.98, 699.97], [1484.68, 695.45], [1489.42, 699.89], [1554.89, 756.19]], [[1706.71, 759.76], [1797.28, 840.75], [1843.08, 884.26], [1846.64, 887.64], [1842.57, 892.12], [1808.16, 930.0], [1787.09, 953.02], [1784.65, 955.7], [1780.75, 952.16], [1644.5, 828.73], [1639.69, 824.37], [1643.06, 820.65], [1696.85, 762.42], [1697.92, 761.33], [1702.85, 756.31], [1706.71, 759.76]], [[1765.67, 676.92], [1760.72, 682.37], [1706.67, 741.87], [1702.11, 746.9], [1697.92, 743.11], [1562.02, 620.06], [1557.65, 616.1], [1561.72, 611.32], [1617.9, 550.69], [1621.15, 547.37], [1624.53, 550.36], [1707.55, 623.66], [1761.02, 672.67], [1765.67, 676.92]], [[1613.56, 546.56], [1557.23, 607.33], [1553.21, 612.07], [1548.65, 607.93], [1413.93, 485.25], [1407.88, 479.74], [1412.42, 474.96], [1469.7, 415.16], [1473.09, 411.39], [1476.51, 414.51], [1543.58, 475.64], [1611.6, 538.48], [1616.72, 543.32], [1613.56, 546.56]], [[1692.92, 756.42], [1691.78, 757.59], [1637.89, 815.92], [1633.81, 820.42], [1630.19, 817.04], [1559.56, 750.98], [1494.1, 694.68], [1489.26, 690.15], [1494.35, 684.59], [1524.34, 650.97], [1548.84, 625.52], [1553.62, 620.55], [1557.99, 624.51], [1693.9, 747.56], [1697.99, 751.26], [1692.92, 756.42]], [[1608.24, 1149.94], [1603.66, 1145.77], [1580.24, 1124.34], [1558.05, 1104.12], [1550.63, 1097.36], [1522.18, 1071.29], [1520.81, 1069.65], [1520.31, 1068.51], [1520.4, 1067.23], [1521.19, 1065.73], [1550.49, 1034.61], [1554.85, 1029.99], [1616.47, 1085.45], [1637.62, 1104.49], [1639.88, 1106.52], [1643.41, 1109.69], [1640.0, 1113.59], [1639.07, 1114.93], [1608.24, 1149.94]], [[1774.97, 966.42], [1738.21, 1007.1], [1721.64, 1025.43], [1719.61, 1027.68], [1718.58, 1028.82], [1714.08, 1024.72], [1692.52, 1005.08], [1662.89, 977.78], [1638.85, 955.74], [1628.88, 946.6], [1607.75, 927.52], [1579.87, 902.36], [1576.39, 899.18], [1576.9, 898.65], [1580.16, 895.32], [1631.91, 836.77], [1635.4, 832.82], [1638.37, 835.51], [1774.61, 958.94], [1778.52, 962.48], [1774.97, 966.42]], [[1653.42, 988.09], [1683.06, 1015.41], [1704.65, 1035.07], [1709.11, 1039.13], [1707.1, 1041.28], [1705.28, 1043.23], [1683.99, 1066.06], [1682.47, 1067.69], [1651.61, 1100.75], [1647.43, 1105.24], [1643.89, 1102.06], [1641.63, 1100.03], [1620.48, 1080.99], [1556.71, 1023.59], [1508.88, 978.38], [1504.98, 974.69], [1508.41, 970.83], [1529.2, 947.39], [1534.86, 940.99], [1544.93, 929.65], [1561.04, 911.48], [1561.75, 910.75], [1564.82, 907.58], [1570.47, 912.73], [1598.36, 937.91], [1619.46, 956.95], [1629.39, 966.06], [1653.42, 988.09]], [[1643.45, 1314.57], [1642.28, 1319.03], [1630.6, 1332.83], [1621.57, 1342.96], [1618.11, 1346.83], [1616.06, 1349.13], [1609.37, 1343.06], [1580.67, 1317.03], [1549.51, 1288.77], [1523.64, 1265.3], [1521.58, 1263.44], [1517.1, 1259.38], [1520.47, 1255.67], [1533.95, 1240.83], [1554.38, 1218.35], [1558.54, 1222.19], [1585.49, 1247.1], [1607.95, 1267.85], [1614.07, 1273.54], [1634.9, 1292.92], [1640.71, 1298.97], [1643.68, 1304.18], [1644.6, 1310.21], [1643.45, 1314.57]], [[1732.88, 1870.88], [1738.67, 1862.4], [1751.05, 1848.43], [1755.44, 1843.47], [1758.97, 1846.52], [1754.09, 1851.37], [1741.01, 1864.4], [1732.88, 1870.88]], [[1590.38, 1942.48], [1615.12, 1961.96], [1617.83, 1964.31], [1611.71, 1971.32], [1608.82, 1968.68], [1599.82, 1960.41], [1592.62, 1953.89], [1576.08, 1938.87], [1563.63, 1927.94], [1555.18, 1920.59], [1552.66, 1918.49], [1531.82, 1901.18], [1530.7, 1902.52], [1523.97, 1896.57], [1518.93, 1892.23], [1515.93, 1889.49], [1514.68, 1888.31], [1514.29, 1881.38], [1516.33, 1881.51], [1521.91, 1883.49], [1524.06, 1885.53], [1524.97, 1884.58], [1525.21, 1884.66], [1524.37, 1885.78], [1528.66, 1889.01], [1549.56, 1906.85], [1551.75, 1908.7], [1555.06, 1911.69], [1577.74, 1932.18], [1590.38, 1942.48]], [[1519.22, 1901.71], [1517.54, 1901.63], [1514.76, 1903.4], [1514.68, 1900.48], [1514.69, 1897.82], [1519.22, 1901.71]], [[1513.89, 1877.36], [1513.63, 1875.77], [1514.52, 1876.51], [1515.52, 1877.45], [1514.23, 1877.37], [1513.89, 1877.36]], [[1506.72, 1891.72], [1506.68, 1900.53], [1506.26, 1895.65], [1506.27, 1893.73], [1506.72, 1891.72]], [[1638.48, 1959.41], [1633.93, 1964.41], [1630.66, 1961.56], [1635.74, 1956.97], [1644.85, 1948.72], [1638.48, 1959.41]], [[1372.54, 2727.2], [1354.38, 2693.51], [1317.51, 2622.74], [1303.83, 2596.48], [1288.37, 2566.82], [1255.54, 2503.8], [1253.3, 2499.57], [1234.45, 2464.04], [1227.37, 2450.68], [1232.62, 2447.32], [1238.09, 2443.81], [1247.82, 2438.94], [1286.67, 2419.78], [1291.74, 2417.73], [1296.56, 2416.34], [1300.63, 2416.89], [1302.99, 2418.68], [1305.36, 2422.24], [1315.66, 2442.29], [1325.27, 2460.45], [1328.47, 2465.7], [1331.99, 2468.4], [1336.06, 2469.83], [1340.28, 2469.52], [1364.4, 2458.74], [1379.26, 2453.04], [1405.02, 2445.11], [1459.29, 2426.1], [1469.78, 2422.16], [1474.24, 2421.07], [1478.42, 2420.21], [1478.46, 2421.32], [1479.81, 2441.13], [1481.71, 2469.03], [1476.45, 2469.58], [1467.5, 2470.54], [1434.89, 2479.64], [1412.45, 2485.89], [1408.35, 2486.95], [1393.72, 2490.76], [1351.5, 2504.04], [1351.14, 2504.01], [1350.29, 2503.16], [1347.59, 2499.11], [1344.37, 2492.55], [1340.37, 2485.02], [1335.07, 2487.83], [1339.03, 2495.28], [1342.38, 2502.1], [1345.63, 2506.99], [1348.46, 2509.82], [1352.19, 2510.12], [1395.38, 2496.53], [1409.86, 2492.76], [1414.01, 2491.68], [1436.5, 2485.42], [1468.63, 2476.46], [1477.09, 2475.55], [1482.04, 2475.02], [1482.84, 2494.21], [1483.74, 2516.07], [1483.84, 2518.36], [1485.04, 2548.15], [1486.35, 2580.27], [1487.56, 2610.04], [1487.67, 2612.57], [1488.68, 2637.44], [1489.24, 2648.81], [1491.17, 2687.58], [1492.48, 2714.49], [1492.63, 2717.65], [1490.39, 2717.79], [1486.83, 2718.42], [1483.74, 2719.82], [1477.48, 2722.67], [1438.99, 2742.02], [1435.53, 2743.76], [1409.59, 2757.33], [1399.71, 2762.5], [1393.78, 2765.6], [1383.14, 2746.88], [1380.48, 2741.94], [1376.03, 2733.67], [1372.54, 2727.2]], [[1457.24, 2420.46], [1403.15, 2439.41], [1377.3, 2447.37], [1362.1, 2453.19], [1338.79, 2463.62], [1336.87, 2463.75], [1334.88, 2463.06], [1333.02, 2461.62], [1330.49, 2457.48], [1320.98, 2439.52], [1310.54, 2419.2], [1307.43, 2414.52], [1303.0, 2411.15], [1296.11, 2410.23], [1289.78, 2412.05], [1284.22, 2414.3], [1245.15, 2433.57], [1235.12, 2438.59], [1229.38, 2442.27], [1224.56, 2445.36], [1215.44, 2428.04], [1197.36, 2393.32], [1194.25, 2394.94], [1197.32, 2393.25], [1180.4, 2362.47], [1184.85, 2359.76], [1242.32, 2327.86], [1255.13, 2320.45], [1263.05, 2316.94], [1271.48, 2314.8], [1277.65, 2314.16], [1459.3, 2308.98], [1471.14, 2308.7], [1479.25, 2309.15], [1485.96, 2310.05], [1488.33, 2310.65], [1484.35, 2328.93], [1480.7, 2328.75], [1476.41, 2328.84], [1472.3, 2330.9], [1470.59, 2335.77], [1468.45, 2365.14], [1467.62, 2392.56], [1469.17, 2398.85], [1473.94, 2401.11], [1478.11, 2401.19], [1478.26, 2414.16], [1477.98, 2414.18], [1472.93, 2415.21], [1468.0, 2416.41], [1457.24, 2420.46]], [[958.01, 1994.45], [962.77, 1999.07], [970.39, 2007.14], [973.76, 2010.9], [969.89, 2007.07], [961.67, 1999.53], [958.01, 1994.45]], [[1271.04, 2174.11], [1275.91, 2152.38], [1282.55, 2153.81], [1277.75, 2175.59], [1273.65, 2174.7], [1271.04, 2174.11]], [[1219.92, 2451.56], [1228.27, 2467.32], [1247.11, 2502.85], [1249.34, 2507.06], [1282.16, 2570.05], [1297.62, 2599.71], [1311.3, 2625.98], [1345.98, 2692.53], [1343.87, 2692.69], [1297.39, 2696.07], [1290.07, 2690.68], [1277.09, 2682.19], [1266.36, 2671.1], [1244.58, 2647.34], [1235.66, 2636.82], [1231.21, 2630.89], [1219.47, 2612.29], [1197.4, 2572.15], [1171.18, 2518.45], [1156.68, 2484.77], [1150.44, 2467.89], [1147.21, 2452.8], [1148.79, 2440.66], [1154.34, 2432.72], [1170.67, 2415.73], [1188.4, 2403.32], [1192.86, 2399.84], [1209.24, 2431.28], [1219.91, 2451.55], [1223.01, 2449.92], [1219.92, 2451.56]], [[1192.07, 2574.92], [1214.3, 2615.34], [1226.27, 2634.3], [1230.96, 2640.56], [1240.07, 2651.31], [1261.99, 2675.22], [1273.24, 2686.85], [1286.65, 2695.62], [1288.13, 2696.71], [1274.26, 2697.66], [1217.41, 2698.93], [1181.68, 2700.28], [1167.42, 2700.02], [1158.61, 2698.87], [1148.29, 2696.83], [1139.59, 2692.51], [1134.92, 2688.83], [1132.49, 2686.92], [1116.97, 2671.25], [1102.15, 2649.45], [1097.49, 2642.59], [1088.22, 2625.41], [1081.35, 2606.26], [1074.17, 2579.71], [1067.92, 2561.01], [1065.17, 2552.8], [1063.16, 2546.21], [1060.77, 2538.31], [1059.39, 2527.77], [1060.38, 2520.4], [1062.69, 2513.28], [1066.57, 2506.0], [1066.66, 2505.83], [1067.89, 2504.68], [1065.83, 2502.49], [1067.96, 2504.61], [1076.67, 2495.89], [1091.45, 2487.96], [1111.66, 2475.42], [1125.39, 2466.27], [1134.12, 2459.36], [1140.9, 2451.96], [1141.36, 2451.31], [1141.13, 2453.05], [1144.66, 2469.56], [1151.11, 2487.0], [1165.73, 2520.96], [1192.07, 2574.92]], [[1795.4, 2236.28], [1798.98, 2238.28], [1800.41, 2296.43], [1802.13, 2314.33], [1806.65, 2336.41], [1811.96, 2361.94], [1809.92, 2362.91], [1807.67, 2363.98], [1801.53, 2336.67], [1800.43, 2331.73], [1775.43, 2216.18], [1770.61, 2194.58], [1770.18, 2192.38], [1779.41, 2216.71], [1784.32, 2224.76], [1791.63, 2233.04], [1795.4, 2236.28]], [[2130.03, 874.2], [2126.76, 877.82], [2071.51, 938.96], [2068.08, 942.75], [2063.77, 938.86], [1929.1, 816.97], [1926.69, 814.8], [1922.58, 811.08], [1926.0, 807.46], [1982.65, 747.63], [1985.62, 744.48], [1988.45, 747.0], [2098.07, 844.19], [2125.26, 869.72], [2130.03, 874.2]], [[1922.66, 819.25], [1925.07, 821.42], [2059.75, 943.31], [2064.04, 947.19], [2059.37, 952.33], [2005.53, 1011.45], [2000.69, 1016.77], [1995.55, 1012.15], [1980.46, 998.59], [1859.01, 889.45], [1855.72, 886.5], [1859.54, 882.19], [1913.91, 820.72], [1918.53, 815.5], [1922.66, 819.25]], [[2205.59, 975.66], [2205.31, 976.63], [2204.78, 977.51], [2164.51, 1020.45], [2162.81, 1022.25], [2159.96, 1025.29], [2158.7, 1024.08], [2078.09, 951.15], [2072.86, 946.41], [2075.96, 942.98], [2131.21, 881.84], [2134.38, 878.34], [2138.62, 882.42], [2142.72, 886.36], [2198.78, 962.76], [2205.16, 973.34], [2205.59, 975.66]], [[2122.24, 1070.21], [2097.75, 1098.02], [2093.94, 1102.09], [2091.79, 1100.12], [2010.58, 1025.78], [2005.13, 1020.8], [2009.97, 1015.49], [2063.81, 956.37], [2068.15, 951.59], [2073.39, 956.34], [2153.92, 1029.2], [2155.87, 1031.07], [2151.59, 1036.99], [2150.74, 1038.16], [2122.24, 1070.21]], [[1977.02, 1142.14], [1973.48, 1146.05], [1947.0, 1176.61], [1943.21, 1180.85], [1939.66, 1184.06], [1934.02, 1188.74], [1918.73, 1201.22], [1903.44, 1213.75], [1889.36, 1224.85], [1886.83, 1227.0], [1885.77, 1227.81], [1856.94, 1193.04], [1853.39, 1188.78], [1854.79, 1187.21], [1868.78, 1171.47], [1874.78, 1164.72], [1890.66, 1144.96], [1927.84, 1105.47], [1930.97, 1102.14], [1936.04, 1106.42], [1977.02, 1142.14]], [[1951.8, 1180.84], [1978.27, 1150.29], [1981.78, 1146.42], [2012.42, 1174.82], [2013.79, 1176.02], [2010.22, 1179.4], [1951.45, 1235.03], [1948.62, 1237.59], [1920.16, 1263.27], [1919.0, 1264.35], [1917.6, 1265.66], [1915.47, 1263.06], [1899.65, 1243.89], [1894.96, 1238.44], [1892.72, 1235.88], [1889.93, 1232.69], [1890.85, 1231.99], [1893.42, 1229.8], [1907.45, 1218.74], [1922.78, 1206.18], [1938.09, 1193.68], [1943.85, 1188.9], [1947.76, 1185.37], [1951.8, 1180.84]], [[1989.25, 1387.15], [2007.87, 1404.46], [2014.85, 1411.39], [2022.18, 1417.94], [2031.76, 1425.56], [2042.05, 1433.39], [2048.54, 1437.87], [2063.91, 1448.44], [2064.87, 1447.04], [2073.08, 1455.92], [2101.68, 1476.09], [2098.77, 1479.52], [2096.53, 1482.34], [2070.97, 1514.52], [2069.28, 1516.6], [2069.17, 1516.41], [2037.42, 1461.87], [2032.82, 1453.97], [2028.28, 1456.61], [2032.71, 1453.79], [2013.09, 1422.97], [2008.66, 1425.79], [2011.55, 1423.8], [1990.68, 1393.39], [1987.6, 1388.48], [1989.25, 1387.15]], [[1982.82, 1380.16], [1985.09, 1382.79], [1984.53, 1383.24], [1983.28, 1381.0], [1982.82, 1380.16]], [[2108.56, 1478.79], [2109.56, 1477.36], [2079.33, 1456.04], [2117.92, 1480.35], [2126.72, 1485.63], [2145.52, 1499.44], [2146.64, 1500.34], [2142.45, 1498.56], [2116.39, 1482.35], [2109.59, 1477.38], [2108.56, 1478.79]], [[2012.81, 1586.01], [2014.74, 1588.05], [2013.83, 1589.09], [2010.12, 1592.19], [2005.09, 1596.39], [2002.39, 1598.15], [2005.46, 1593.31], [2008.03, 1590.72], [2012.1, 1586.63], [2012.81, 1586.01]], [[2018.82, 1580.71], [2023.08, 1576.95], [2029.47, 1571.31], [2029.4, 1571.39], [2024.12, 1577.39], [2020.05, 1582.02], [2018.82, 1580.71]], [[1871.64, 1772.8], [1865.2, 1767.36], [1862.64, 1765.22], [1858.88, 1762.24], [1863.75, 1757.44], [1867.87, 1761.3], [2038.23, 1920.78], [2046.24, 1928.23], [2040.28, 1934.27], [2032.51, 1926.98], [1986.72, 1881.54], [1871.64, 1772.8]], [[2115.42, 1857.32], [2112.97, 1859.84], [2055.93, 1918.35], [2053.6, 1920.74], [2045.4, 1913.11], [1875.04, 1753.63], [1868.73, 1747.72], [1873.9, 1742.28], [1875.98, 1739.93], [1927.51, 1684.94], [1928.75, 1682.64], [1931.41, 1677.73], [1935.27, 1681.5], [2110.8, 1852.81], [2115.42, 1857.32]], [[1866.16, 1745.34], [1861.91, 1741.45], [1867.66, 1736.56], [1922.49, 1681.34], [1923.97, 1680.44], [1926.96, 1678.61], [1925.68, 1680.97], [1924.65, 1682.87], [1873.39, 1737.57], [1871.31, 1739.91], [1866.16, 1745.34]], [[1856.4, 1750.65], [1850.89, 1756.08], [1850.24, 1755.6], [1856.25, 1750.51], [1856.4, 1750.65]], [[1953.56, 2029.44], [1951.48, 2031.6], [1957.31, 2037.19], [2044.16, 2120.38], [2048.59, 2124.54], [2044.79, 2128.43], [1986.87, 2187.98], [1982.52, 2192.42], [1978.0, 2188.2], [1847.6, 2059.77], [1843.7, 2055.95], [1848.14, 2051.41], [1904.88, 1993.34], [1908.2, 1989.94], [1911.67, 1993.28], [1918.93, 2000.27], [1943.75, 2024.16], [1951.47, 2031.6], [1953.56, 2029.44]], [[2048.28, 2116.02], [1961.46, 2032.85], [1957.77, 2029.32], [1962.13, 2024.66], [1976.52, 2009.14], [1996.6, 1989.27], [2000.42, 1992.88], [2092.44, 2079.95], [2057.03, 2116.2], [2052.83, 2120.29], [2048.28, 2116.02]], [[2109.45, 2062.83], [2096.65, 2075.67], [2004.55, 1988.53], [2000.77, 1984.95], [2019.75, 1964.43], [2033.21, 1950.38], [2037.37, 1945.94], [2045.08, 1953.18], [2117.03, 2023.26], [2128.99, 2034.39], [2133.56, 2038.64], [2130.17, 2042.04], [2109.45, 2062.83]], [[1477.89, 2334.81], [1480.61, 2334.75], [1483.26, 2334.89], [1480.17, 2354.34], [1478.12, 2382.45], [1478.08, 2395.19], [1475.34, 2395.14], [1474.31, 2394.65], [1473.64, 2391.92], [1474.44, 2365.45], [1476.51, 2337.0], [1477.15, 2335.18], [1477.89, 2334.81]], [[2186.64, 2539.27], [2191.07, 2543.73], [2301.25, 2650.74], [2306.24, 2654.38], [2302.22, 2659.19], [2300.34, 2661.16], [2245.21, 2718.86], [2240.89, 2723.24], [2236.55, 2719.23], [2125.45, 2611.11], [2121.23, 2607.23], [2125.48, 2602.74], [2149.0, 2578.68], [2182.91, 2543.05], [2186.64, 2539.27]], [[2253.92, 2471.92], [2258.77, 2467.6], [2262.82, 2471.55], [2334.33, 2540.62], [2370.85, 2577.23], [2375.37, 2581.56], [2371.22, 2586.08], [2316.12, 2643.85], [2314.11, 2645.96], [2310.95, 2649.15], [2305.77, 2645.37], [2195.99, 2538.76], [2191.56, 2534.29], [2195.48, 2530.33], [2206.67, 2519.3], [2248.48, 2476.53], [2253.92, 2471.92]], [[2454.53, 2518.72], [2486.83, 2548.62], [2518.42, 2578.71], [2551.27, 2611.14], [2573.38, 2631.88], [2575.87, 2634.22], [2571.32, 2639.45], [2570.88, 2639.87], [2549.02, 2661.98], [2541.78, 2669.29], [2513.4, 2699.61], [2510.58, 2702.62], [2509.25, 2703.72], [2511.16, 2706.03], [2509.02, 2703.94], [2500.34, 2712.84], [2483.55, 2730.04], [2446.43, 2768.43], [2443.96, 2771.01], [2440.53, 2774.55], [2434.83, 2769.93], [2349.25, 2685.72], [2319.02, 2657.93], [2315.29, 2653.3], [2318.41, 2650.14], [2320.47, 2647.99], [2375.61, 2590.18], [2379.7, 2585.71], [2383.97, 2589.83], [2413.59, 2618.58], [2419.08, 2623.96], [2428.01, 2632.54], [2431.34, 2635.84], [2436.68, 2642.29], [2441.3, 2638.46], [2435.77, 2631.78], [2432.2, 2628.25], [2423.26, 2619.66], [2417.78, 2614.28], [2388.14, 2585.52], [2383.9, 2581.43], [2388.2, 2577.31], [2446.34, 2518.67], [2450.33, 2514.43], [2454.53, 2518.72]], [[2539.58, 2433.35], [2548.71, 2442.09], [2579.38, 2470.48], [2582.87, 2473.8], [2602.15, 2492.16], [2612.62, 2501.44], [2655.47, 2541.77], [2660.31, 2546.32], [2654.98, 2551.86], [2637.98, 2569.51], [2623.16, 2584.89], [2583.39, 2626.21], [2579.93, 2629.8], [2577.48, 2627.51], [2555.43, 2606.81], [2522.6, 2574.4], [2490.94, 2544.24], [2458.71, 2514.42], [2454.48, 2510.1], [2458.66, 2505.84], [2531.24, 2432.43], [2534.59, 2428.61], [2539.58, 2433.35]], [[2425.13, 2307.7], [2417.75, 2300.69], [2419.47, 2298.12], [2419.66, 2295.9], [2419.14, 2293.98], [2418.11, 2292.79], [2413.02, 2286.98], [2408.83, 2282.2], [2428.73, 2301.09], [2432.03, 2304.21], [2469.16, 2339.43], [2475.09, 2345.06], [2478.7, 2341.25], [2475.09, 2345.06], [2482.52, 2352.1], [2497.19, 2366.15], [2536.96, 2403.68], [2538.6, 2405.22], [2543.06, 2409.45], [2536.68, 2416.03], [2532.29, 2411.7], [2477.26, 2357.53], [2463.92, 2344.79], [2425.13, 2307.7]], [[2489.76, 2344.49], [2484.64, 2339.65], [2487.42, 2336.95], [2512.49, 2312.76], [2529.65, 2296.2], [2532.72, 2293.25], [2537.57, 2288.56], [2540.61, 2293.18], [2557.11, 2312.68], [2569.94, 2326.77], [2569.57, 2327.01], [2574.13, 2334.18], [2578.83, 2340.84], [2580.19, 2342.25], [2583.8, 2345.77], [2586.31, 2349.69], [2585.94, 2352.85], [2586.56, 2356.39], [2585.36, 2359.89], [2584.24, 2361.89], [2581.33, 2366.39], [2571.48, 2381.61], [2553.45, 2399.13], [2550.48, 2402.02], [2545.8, 2397.59], [2544.16, 2396.04], [2504.43, 2358.54], [2489.76, 2344.49]], [[2483.24, 2332.64], [2480.29, 2335.51], [2476.38, 2331.81], [2439.25, 2296.59], [2435.96, 2293.47], [2407.42, 2266.39], [2315.12, 2174.12], [2309.14, 2168.24], [2302.45, 2161.66], [2305.48, 2158.55], [2329.76, 2133.63], [2341.67, 2121.42], [2355.07, 2108.87], [2356.73, 2106.95], [2377.2, 2084.19], [2395.83, 2068.05], [2399.06, 2065.24], [2402.66, 2071.14], [2446.88, 2143.61], [2454.91, 2156.78], [2459.55, 2163.94], [2461.16, 2166.5], [2463.04, 2165.32], [2464.55, 2169.13], [2495.07, 2225.06], [2502.74, 2235.04], [2504.21, 2237.25], [2504.94, 2238.5], [2504.34, 2240.21], [2506.32, 2240.9], [2510.8, 2248.64], [2513.16, 2252.72], [2519.12, 2263.03], [2527.86, 2274.47], [2532.04, 2279.08], [2535.17, 2282.53], [2528.55, 2288.93], [2525.48, 2291.88], [2508.32, 2308.44], [2483.24, 2332.64]], [[2516.01, 2243.59], [2516.82, 2243.64], [2516.9, 2243.76], [2531.9, 2268.87], [2535.21, 2275.23], [2535.35, 2276.02], [2535.67, 2277.88], [2534.63, 2276.73], [2530.55, 2272.23], [2522.04, 2261.09], [2516.19, 2250.97], [2513.83, 2246.89], [2511.23, 2242.39], [2515.15, 2243.46], [2515.61, 2241.76], [2516.07, 2242.48], [2516.01, 2243.59]], [[2473.51, 2170.79], [2469.24, 2166.36], [2466.08, 2163.41], [2467.93, 2162.24], [2467.93, 2162.24], [2471.21, 2160.22], [2473.21, 2159.02], [2506.05, 2138.97], [2504.48, 2136.41], [2506.12, 2138.92], [2544.64, 2113.9], [2561.11, 2104.01], [2562.47, 2103.2], [2570.21, 2241.83], [2570.37, 2244.7], [2570.42, 2247.01], [2567.0, 2247.19], [2551.52, 2246.45], [2536.88, 2237.81], [2528.15, 2236.0], [2523.49, 2235.75], [2516.88, 2235.4], [2515.44, 2235.01], [2503.73, 2216.67], [2478.75, 2178.74], [2473.51, 2170.79]], [[2430.56, 2009.95], [2395.28, 1952.29], [2392.68, 1948.04], [2393.99, 1947.21], [2418.81, 1931.65], [2423.51, 1928.35], [2426.47, 1926.27], [2429.48, 1931.23], [2534.95, 2103.46], [2536.63, 2106.2], [2539.04, 2110.38], [2505.47, 2132.19], [2494.61, 2113.83], [2467.03, 2069.0], [2456.57, 2050.71], [2430.56, 2009.95]], [[2431.46, 1922.92], [2432.98, 1921.94], [2435.88, 1919.91], [2441.57, 1918.68], [2546.57, 1915.53], [2549.21, 1915.45], [2551.99, 1915.38], [2552.17, 1918.65], [2555.2, 1972.96], [2558.1, 2024.92], [2559.77, 2054.84], [2560.11, 2060.94], [2560.67, 2070.85], [2562.09, 2096.43], [2558.02, 2098.87], [2544.13, 2107.21], [2541.79, 2103.14], [2540.07, 2100.33], [2434.6, 1928.11], [2431.46, 1922.92]], [[2437.9, 1913.34], [2439.32, 1907.58], [2444.44, 1886.9], [2447.66, 1873.9], [2450.46, 1862.59], [2459.47, 1826.18], [2466.3, 1798.64], [2466.69, 1797.06], [2469.18, 1797.67], [2478.03, 1799.84], [2478.86, 1796.45], [2485.55, 1798.53], [2486.48, 1795.54], [2486.48, 1795.54], [2485.55, 1798.53], [2486.6, 1798.85], [2486.6, 1799.19], [2487.65, 1799.18], [2507.02, 1805.2], [2509.57, 1805.9], [2517.12, 1807.94], [2520.59, 1808.88], [2545.19, 1815.53], [2546.43, 1815.87], [2546.49, 1816.95], [2548.13, 1846.34], [2548.56, 1853.95], [2549.93, 1878.47], [2551.34, 1903.85], [2551.65, 1909.39], [2549.04, 1909.46], [2546.39, 1909.53], [2440.85, 1912.7], [2437.9, 1913.34]], [[2511.4, 1799.14], [2508.98, 1798.48], [2504.83, 1797.19], [2505.88, 1796.83], [2507.35, 1795.92], [2509.31, 1794.7], [2512.11, 1792.34], [2514.65, 1789.38], [2521.86, 1778.67], [2527.45, 1770.13], [2528.49, 1768.23], [2530.26, 1769.48], [2575.58, 1798.74], [2610.03, 1817.67], [2632.48, 1828.31], [2615.3, 1824.85], [2591.42, 1819.32], [2559.55, 1811.87], [2550.14, 1809.62], [2547.02, 1808.78], [2522.41, 1802.12], [2518.95, 1801.18], [2511.4, 1799.14]], [[2521.73, 1763.46], [2521.92, 1763.59], [2520.59, 1766.01], [2519.24, 1768.07], [2520.77, 1765.25], [2521.73, 1763.46]], [[2319.09, 1614.53], [2239.17, 1559.17], [2236.01, 1556.99], [2241.0, 1549.01], [2244.16, 1544.51], [2249.24, 1537.41], [2269.63, 1506.86], [2271.93, 1502.83], [2281.97, 1509.42], [2289.21, 1514.16], [2326.9, 1540.86], [2328.64, 1538.41], [2326.91, 1540.86], [2344.23, 1553.07], [2389.56, 1583.25], [2451.69, 1626.52], [2513.4, 1667.95], [2516.15, 1669.41], [2518.7, 1670.55], [2519.65, 1670.98], [2523.11, 1672.02], [2526.67, 1672.1], [2527.73, 1680.47], [2526.74, 1684.14], [2526.51, 1691.0], [2526.84, 1699.72], [2526.89, 1707.42], [2526.85, 1715.8], [2526.76, 1728.14], [2525.92, 1734.38], [2524.83, 1739.57], [2521.55, 1749.38], [2519.58, 1753.41], [2513.41, 1749.13], [2509.24, 1746.25], [2325.8, 1619.18], [2319.09, 1614.53]], [[2518.78, 1664.02], [2516.48, 1662.8], [2455.08, 1621.57], [2392.93, 1578.3], [2347.62, 1548.12], [2332.85, 1537.71], [2334.52, 1535.39], [2379.57, 1473.24], [2380.35, 1472.16], [2384.4, 1466.58], [2387.1, 1468.74], [2396.29, 1476.08], [2431.53, 1499.53], [2453.0, 1511.3], [2455.95, 1512.93], [2462.62, 1515.73], [2469.61, 1518.65], [2477.31, 1519.63], [2478.39, 1519.77], [2486.91, 1520.84], [2511.17, 1521.21], [2517.85, 1521.46], [2518.12, 1525.87], [2518.97, 1540.19], [2519.57, 1550.33], [2522.04, 1591.76], [2523.94, 1623.82], [2526.16, 1666.09], [2524.06, 1666.04], [2521.77, 1665.35], [2521.16, 1665.08], [2518.78, 1664.02]], [[2524.98, 1438.0], [2527.45, 1438.04], [2608.03, 1440.99], [2611.67, 1441.13], [2611.4, 1446.0], [2611.33, 1447.28], [2607.65, 1512.93], [2607.4, 1517.51], [2543.11, 1515.08], [2529.39, 1514.7], [2523.49, 1514.53], [2523.29, 1509.53], [2521.83, 1474.22], [2519.24, 1437.79], [2524.98, 1438.0]], [[2475.89, 1368.7], [2472.04, 1371.45], [2475.77, 1368.54], [2426.92, 1305.87], [2430.13, 1303.22], [2482.99, 1259.63], [2533.15, 1318.88], [2550.61, 1339.85], [2610.46, 1360.84], [2616.46, 1362.94], [2616.07, 1369.24], [2612.23, 1431.77], [2612.19, 1432.54], [2612.03, 1435.14], [2608.25, 1435.0], [2527.61, 1432.04], [2525.13, 1432.0], [2520.02, 1431.82], [2518.55, 1427.58], [2517.98, 1425.96], [2507.6, 1413.15], [2475.89, 1368.7]], [[2067.64, 2401.5], [2113.02, 2356.98], [2113.83, 2356.13], [2124.39, 2345.09], [2129.74, 2339.48], [2136.95, 2331.96], [2149.45, 2318.93], [2163.36, 2304.43], [2195.21, 2271.96], [2200.16, 2266.96], [2198.03, 2264.85], [2200.17, 2266.94], [2207.65, 2259.28], [2237.55, 2228.92], [2259.81, 2205.51], [2277.36, 2186.62], [2282.2, 2182.09], [2289.08, 2188.86], [2408.23, 2306.07], [2404.76, 2311.46], [2333.05, 2383.52], [2327.54, 2389.33], [2320.44, 2396.12], [2305.46, 2411.24], [2262.46, 2455.05], [2258.66, 2459.27], [2253.88, 2454.94], [2225.87, 2427.08], [2221.64, 2431.33], [2249.75, 2459.29], [2254.38, 2463.48], [2249.98, 2467.38], [2244.38, 2472.13], [2202.42, 2515.07], [2191.25, 2526.08], [2187.28, 2530.08], [2183.19, 2526.13], [2066.15, 2412.59], [2061.76, 2408.34], [2065.31, 2403.78], [2067.64, 2401.5]], [[2109.49, 2351.98], [2108.75, 2352.76], [2063.44, 2397.21], [2060.82, 2399.78], [2057.44, 2404.12], [2053.23, 2400.0], [2003.51, 2351.14], [1944.39, 2292.92], [1921.74, 2271.6], [1917.73, 2267.76], [1921.21, 2264.15], [1978.22, 2204.99], [1982.61, 2200.78], [1986.98, 2205.02], [2118.26, 2332.5], [2123.36, 2337.48], [2120.05, 2340.94], [2109.49, 2351.98]], [[2290.36, 1687.38], [2290.99, 1685.06], [2294.87, 1670.9], [2299.21, 1655.03], [2301.56, 1647.53], [2305.02, 1639.79], [2308.56, 1633.55], [2312.49, 1627.85], [2314.46, 1625.0], [2317.26, 1621.78], [2321.82, 1624.93], [2505.25, 1752.0], [2509.42, 1754.89], [2515.96, 1759.41], [2514.61, 1761.93], [2508.14, 1773.81], [2505.01, 1778.6], [2502.48, 1781.71], [2500.32, 1783.89], [2497.72, 1785.28], [2493.32, 1786.91], [2487.42, 1788.3], [2480.6, 1789.36], [2481.37, 1786.25], [2472.5, 1784.07], [2467.89, 1782.94], [2464.09, 1781.96], [2442.46, 1776.38], [2418.0, 1770.06], [2415.51, 1769.42], [2401.47, 1765.8], [2375.55, 1758.85], [2369.74, 1757.29], [2364.14, 1755.73], [2299.56, 1737.83], [2279.19, 1732.18], [2279.4, 1731.3], [2283.89, 1712.22], [2285.75, 1703.23], [2287.86, 1696.46], [2290.36, 1687.38]], [[2275.36, 1148.99], [2279.55, 1144.13], [2318.29, 1182.55], [2318.89, 1183.16], [2315.1, 1186.84], [2313.56, 1188.33], [2305.13, 1196.52], [2300.75, 1202.98], [2297.23, 1210.62], [2282.56, 1249.28], [2269.42, 1266.29], [2266.33, 1270.29], [2260.8, 1276.23], [2211.2, 1329.42], [2209.03, 1331.74], [2205.82, 1335.19], [2203.62, 1333.73], [2194.5, 1327.69], [2180.73, 1317.67], [2165.49, 1304.71], [2151.87, 1291.82], [2148.62, 1288.74], [2150.93, 1286.34], [2152.73, 1284.47], [2155.03, 1282.1], [2261.45, 1165.12], [2273.5, 1151.15], [2275.36, 1148.99]], [[2466.23, 1371.67], [2462.88, 1373.87], [2460.14, 1375.67], [2455.24, 1378.89], [2423.93, 1404.07], [2420.24, 1407.74], [2416.97, 1404.69], [2365.45, 1356.61], [2291.68, 1290.23], [2275.31, 1274.5], [2272.64, 1271.94], [2274.17, 1269.96], [2287.85, 1252.25], [2302.76, 1212.94], [2306.0, 1205.94], [2309.75, 1200.4], [2317.74, 1192.63], [2319.28, 1191.15], [2322.92, 1187.61], [2323.94, 1188.85], [2326.99, 1192.7], [2338.75, 1207.49], [2368.51, 1246.54], [2417.7, 1309.42], [2466.23, 1371.67]], [[2479.14, 1255.03], [2426.31, 1298.6], [2423.22, 1301.14], [2375.99, 1240.77], [2346.21, 1201.69], [2334.39, 1186.82], [2332.74, 1184.74], [2335.85, 1181.35], [2337.49, 1179.57], [2377.74, 1135.62], [2379.98, 1137.72], [2387.01, 1144.32], [2479.14, 1255.03]], [[2263.59, 1031.93], [2265.06, 1033.3], [2295.78, 1061.72], [2370.56, 1129.14], [2373.28, 1131.6], [2333.07, 1175.51], [2331.43, 1177.29], [2328.92, 1180.03], [2328.07, 1178.98], [2324.41, 1181.98], [2327.74, 1178.62], [2324.94, 1175.85], [2283.83, 1135.06], [2280.5, 1138.42], [2283.63, 1134.88], [2280.07, 1131.73], [2244.1, 1099.87], [2222.47, 1080.71], [2219.63, 1078.19], [2221.98, 1075.72], [2223.88, 1073.72], [2263.59, 1031.93]], [[2338.17, 1435.34], [2376.49, 1460.99], [2379.56, 1463.04], [2375.48, 1468.65], [2374.71, 1469.73], [2329.67, 1531.87], [2327.95, 1534.24], [2292.59, 1509.2], [2285.26, 1504.4], [2272.58, 1496.08], [2212.87, 1454.77], [2157.55, 1416.96], [2158.88, 1415.04], [2191.49, 1367.71], [2201.72, 1351.54], [2203.05, 1349.43], [2205.8, 1345.09], [2210.12, 1348.03], [2338.17, 1435.34]], [[2265.18, 1280.32], [2268.74, 1276.51], [2271.16, 1278.83], [2287.59, 1294.63], [2361.4, 1361.04], [2412.88, 1409.07], [2416.02, 1412.01], [2410.29, 1417.89], [2387.53, 1451.52], [2386.15, 1453.55], [2384.29, 1456.3], [2381.06, 1454.15], [2342.78, 1428.52], [2214.75, 1341.24], [2210.86, 1338.58], [2213.42, 1335.84], [2215.59, 1333.52], [2265.18, 1280.32]], [[2509.61, 1430.63], [2509.63, 1430.68], [2511.55, 1436.22], [2513.08, 1435.69], [2515.84, 1474.56], [2517.29, 1509.78], [2517.43, 1513.21], [2511.39, 1512.99], [2487.49, 1512.62], [2479.42, 1511.6], [2478.35, 1511.47], [2471.76, 1510.63], [2465.8, 1508.13], [2459.53, 1505.51], [2456.96, 1504.09], [2435.8, 1492.48], [2401.15, 1469.43], [2392.24, 1462.31], [2389.14, 1459.84], [2391.12, 1456.92], [2392.49, 1454.89], [2414.96, 1421.7], [2422.44, 1414.02], [2427.94, 1408.54], [2458.77, 1383.74], [2463.43, 1380.69], [2466.17, 1378.89], [2469.83, 1376.48], [2500.08, 1418.87], [2509.61, 1430.63]], [[2387.56, 1951.16], [2390.16, 1955.42], [2425.47, 2013.13], [2451.43, 2053.82], [2461.87, 2072.06], [2489.47, 2116.93], [2500.39, 2135.39], [2470.1, 2153.89], [2468.1, 2155.09], [2464.7, 2157.18], [2461.69, 2152.52], [2453.71, 2139.44], [2409.49, 2066.98], [2403.96, 2057.91], [2400.54, 2059.99], [2403.95, 2057.89], [2399.3, 2050.35], [2354.51, 1977.67], [2351.37, 1972.56], [2355.46, 1970.14], [2387.56, 1951.16]], [[2222.33, 1766.32], [2220.58, 1763.45], [2217.16, 1765.53], [2220.13, 1763.68], [2212.12, 1750.81], [2198.87, 1729.55], [2197.63, 1727.57], [2202.87, 1727.76], [2219.82, 1731.92], [2252.35, 1739.91], [2272.91, 1744.97], [2295.82, 1751.32], [2360.39, 1769.22], [2363.38, 1770.05], [2362.7, 1772.88], [2361.1, 1779.61], [2358.3, 1791.3], [2356.56, 1796.8], [2355.8, 1799.98], [2354.96, 1803.47], [2354.37, 1808.51], [2355.36, 1813.1], [2357.49, 1818.38], [2360.71, 1823.91], [2373.12, 1841.81], [2389.04, 1868.0], [2392.19, 1873.17], [2397.08, 1881.21], [2418.12, 1914.41], [2419.94, 1916.89], [2423.15, 1921.28], [2420.06, 1923.44], [2415.49, 1926.65], [2390.81, 1942.13], [2387.01, 1944.51], [2352.4, 1964.98], [2348.2, 1967.46], [2345.03, 1962.43], [2335.39, 1947.11], [2321.18, 1925.0], [2296.12, 1884.71], [2275.31, 1852.26], [2272.32, 1847.61], [2268.39, 1841.17], [2266.28, 1837.7], [2247.34, 1807.48], [2244.97, 1803.58], [2234.31, 1786.04], [2223.28, 1767.89], [2222.33, 1766.32]], [[2365.78, 1820.69], [2362.9, 1815.74], [2361.11, 1811.33], [2360.45, 1808.23], [2360.88, 1804.52], [2361.64, 1801.37], [2362.35, 1798.4], [2364.08, 1792.91], [2366.94, 1781.01], [2368.54, 1774.27], [2369.17, 1771.63], [2371.91, 1772.37], [2397.91, 1779.34], [2412.01, 1782.98], [2414.51, 1783.62], [2438.96, 1789.94], [2460.59, 1795.52], [2462.32, 1795.97], [2461.93, 1797.55], [2455.1, 1825.1], [2446.1, 1861.51], [2443.29, 1872.82], [2440.07, 1885.81], [2434.95, 1906.5], [2432.94, 1914.66], [2432.93, 1914.65], [2429.63, 1916.96], [2428.13, 1917.92], [2424.78, 1913.35], [2423.08, 1911.03], [2402.18, 1878.05], [2397.32, 1870.05], [2394.17, 1864.88], [2378.15, 1838.54], [2365.78, 1820.69]], [[2401.97, 2271.95], [2401.98, 2272.03], [2400.15, 2273.96], [2402.48, 2276.17], [2403.17, 2281.82], [2410.01, 2289.61], [2415.09, 2295.42], [2415.52, 2295.91], [2415.61, 2296.26], [2415.57, 2296.75], [2414.84, 2297.85], [2296.44, 2181.38], [2289.7, 2174.74], [2295.13, 2169.18], [2301.77, 2175.72], [2307.72, 2181.58], [2400.05, 2273.86], [2401.97, 2271.95]], [[2506.42, 2234.25], [2505.59, 2233.0], [2498.01, 2223.14], [2470.48, 2172.69], [2470.77, 2172.99], [2475.83, 2180.67], [2500.79, 2218.58], [2510.4, 2233.61], [2507.06, 2232.44], [2506.42, 2234.25]], [[2441.66, 2505.77], [2446.1, 2510.17], [2442.03, 2514.51], [2384.0, 2573.03], [2379.56, 2577.27], [2375.05, 2572.94], [2338.54, 2536.35], [2267.0, 2467.24], [2263.03, 2463.38], [2266.83, 2459.17], [2309.74, 2415.45], [2324.65, 2400.4], [2329.67, 2395.6], [2333.98, 2399.73], [2369.04, 2433.41], [2400.93, 2464.83], [2441.66, 2505.77]], [[2530.27, 2424.44], [2526.85, 2428.34], [2454.39, 2501.63], [2450.25, 2505.84], [2445.9, 2501.53], [2405.17, 2460.58], [2373.23, 2429.11], [2338.13, 2395.4], [2333.9, 2391.34], [2337.35, 2387.7], [2409.47, 2315.24], [2412.64, 2310.31], [2417.89, 2315.3], [2456.67, 2352.38], [2469.95, 2365.06], [2524.93, 2419.19], [2530.27, 2424.44]], [[2642.14, 1908.71], [2647.29, 1996.9], [2649.71, 2049.69], [2649.87, 2054.5], [2644.98, 2054.68], [2569.78, 2057.42], [2565.93, 2057.62], [2565.76, 2054.5], [2564.09, 2024.59], [2561.19, 1972.63], [2558.16, 1918.32], [2557.98, 1914.98], [2562.51, 1914.49], [2564.7, 1914.28], [2583.82, 1912.36], [2637.59, 1909.0], [2642.14, 1908.71]], [[2648.47, 1851.24], [2651.31, 1844.84], [2653.37, 1840.21], [2656.05, 1840.81], [2655.28, 1843.71], [2663.46, 1845.87], [2701.13, 1855.99], [2727.44, 1863.06], [2733.38, 1864.82], [2733.1, 1867.15], [2733.09, 1874.15], [2733.49, 1880.18], [2734.09, 1885.03], [2734.1, 1891.29], [2734.35, 1902.49], [2730.01, 1899.4], [2689.68, 1867.42], [2685.95, 1872.12], [2726.4, 1904.2], [2733.18, 1909.03], [2735.3, 1924.97], [2740.77, 2045.2], [2740.98, 2048.98], [2735.59, 2049.08], [2661.16, 2053.86], [2655.86, 2054.2], [2655.7, 2049.45], [2653.29, 1996.59], [2647.96, 1905.41], [2647.85, 1900.29], [2646.25, 1872.33], [2646.11, 1868.49], [2646.63, 1858.99], [2648.47, 1851.24]], [[2690.49, 1669.17], [2689.53, 1673.99], [2684.48, 1699.11], [2675.21, 1741.42], [2674.68, 1743.85], [2673.96, 1747.14], [2670.21, 1746.17], [2600.65, 1727.97], [2573.61, 1719.7], [2544.2, 1713.94], [2542.31, 1713.57], [2539.6, 1713.35], [2538.34, 1703.43], [2536.56, 1690.96], [2535.1, 1683.44], [2533.71, 1679.93], [2532.31, 1668.89], [2530.15, 1627.65], [2534.68, 1628.9], [2537.69, 1629.65], [2598.28, 1644.75], [2619.94, 1650.81], [2683.48, 1667.34], [2685.9, 1667.98], [2690.49, 1669.17]], [[2710.88, 1535.57], [2711.0, 1533.72], [2711.38, 1527.97], [2714.74, 1528.11], [2758.13, 1529.8], [2799.48, 1533.56], [2805.07, 1534.07], [2804.31, 1537.62], [2791.19, 1598.66], [2790.09, 1603.8], [2773.31, 1681.94], [2772.94, 1683.65], [2768.2, 1682.47], [2704.51, 1666.52], [2701.4, 1665.74], [2697.6, 1664.79], [2698.34, 1661.72], [2705.27, 1632.91], [2707.94, 1607.28], [2708.25, 1586.28], [2709.52, 1556.2], [2710.88, 1535.57]], [[2704.7, 1385.55], [2711.91, 1386.64], [2710.01, 1433.73], [2709.89, 1436.79], [2709.76, 1439.91], [2703.28, 1439.59], [2622.44, 1435.61], [2618.02, 1435.39], [2618.18, 1432.9], [2618.22, 1432.13], [2622.06, 1369.61], [2622.36, 1364.77], [2624.71, 1365.45], [2682.41, 1381.91], [2704.7, 1385.55]], [[2703.53, 1555.88], [2702.25, 1586.11], [2701.94, 1606.92], [2699.34, 1631.89], [2692.5, 1660.31], [2691.79, 1663.31], [2687.41, 1662.17], [2684.99, 1661.54], [2621.5, 1645.02], [2599.81, 1638.95], [2539.14, 1623.83], [2536.21, 1623.1], [2529.8, 1621.33], [2528.03, 1591.4], [2525.56, 1549.97], [2524.96, 1539.83], [2524.11, 1525.51], [2523.81, 1520.54], [2529.22, 1520.69], [2542.91, 1521.08], [2610.1, 1523.61], [2699.97, 1527.5], [2705.39, 1527.73], [2705.02, 1533.33], [2704.9, 1535.18], [2703.53, 1555.88]], [[2709.27, 1450.4], [2709.12, 1453.37], [2705.9, 1518.43], [2705.8, 1520.37], [2705.73, 1521.74], [2700.23, 1521.5], [2613.39, 1517.75], [2613.64, 1513.27], [2617.32, 1447.61], [2617.39, 1446.33], [2617.67, 1441.38], [2622.15, 1441.61], [2702.98, 1445.59], [2709.5, 1445.91], [2709.27, 1450.4]], [[2540.44, 1727.08], [2540.34, 1724.78], [2540.09, 1719.41], [2541.48, 1719.52], [2543.04, 1719.83], [2572.15, 1725.53], [2599.01, 1733.75], [2668.69, 1751.97], [2672.67, 1753.01], [2671.92, 1756.38], [2671.31, 1759.13], [2664.46, 1790.06], [2663.0, 1796.39], [2656.91, 1822.48], [2651.66, 1829.18], [2651.47, 1829.55], [2644.11, 1826.07], [2613.22, 1811.43], [2579.17, 1792.72], [2534.18, 1763.67], [2530.89, 1761.35], [2533.14, 1756.46], [2535.91, 1750.61], [2538.03, 1746.18], [2539.77, 1740.08], [2540.56, 1735.76], [2540.59, 1732.36], [2540.44, 1727.08]], [[2703.06, 1672.34], [2766.75, 1688.29], [2771.68, 1689.52], [2770.69, 1694.1], [2755.32, 1765.68], [2754.86, 1767.82], [2750.33, 1766.65], [2683.59, 1749.62], [2679.77, 1748.64], [2680.54, 1745.14], [2681.07, 1742.71], [2690.35, 1700.34], [2695.41, 1675.17], [2696.32, 1670.65], [2699.94, 1671.56], [2703.06, 1672.34]], [[2533.51, 1712.98], [2532.87, 1712.95], [2532.89, 1708.11], [2533.51, 1712.98]], [[2527.71, 1753.92], [2525.9, 1757.83], [2524.55, 1756.88], [2527.11, 1751.67], [2530.63, 1741.15], [2531.84, 1735.4], [2532.76, 1728.57], [2532.83, 1718.95], [2534.06, 1719.01], [2534.34, 1725.06], [2534.45, 1727.31], [2534.59, 1732.42], [2534.56, 1735.19], [2533.92, 1738.71], [2532.4, 1744.05], [2530.49, 1748.03], [2527.71, 1753.92]], [[2640.66, 1858.13], [2640.11, 1868.44], [2640.26, 1872.61], [2641.85, 1900.53], [2641.9, 1902.72], [2637.22, 1903.01], [2583.33, 1906.38], [2564.11, 1908.31], [2561.9, 1908.53], [2557.64, 1908.99], [2557.33, 1903.52], [2555.92, 1878.14], [2554.55, 1853.61], [2554.12, 1846.0], [2552.53, 1817.39], [2557.94, 1818.69], [2589.83, 1826.14], [2613.82, 1831.7], [2640.7, 1837.1], [2647.58, 1838.48], [2645.83, 1842.41], [2642.76, 1849.31], [2640.66, 1858.13]], [[2682.11, 1755.43], [2748.84, 1772.46], [2753.6, 1773.69], [2752.72, 1777.79], [2738.11, 1845.81], [2737.62, 1848.11], [2736.48, 1851.13], [2731.25, 1849.58], [2704.77, 1842.47], [2667.06, 1832.34], [2658.85, 1830.17], [2658.14, 1832.85], [2657.0, 1832.09], [2662.45, 1825.14], [2668.84, 1797.75], [2670.31, 1791.39], [2677.17, 1760.43], [2677.78, 1757.68], [2678.48, 1754.51], [2682.11, 1755.43]], [[2659.22, 2238.66], [2659.39, 2242.06], [2654.46, 2242.34], [2579.41, 2246.66], [2576.41, 2246.75], [2576.37, 2244.47], [2576.2, 2241.5], [2568.18, 2097.9], [2566.66, 2070.52], [2566.27, 2063.61], [2570.05, 2063.41], [2645.2, 2060.67], [2650.14, 2060.49], [2650.43, 2065.56], [2659.22, 2238.66]], [[2745.75, 2237.6], [2670.15, 2241.48], [2665.38, 2241.73], [2665.21, 2238.35], [2656.42, 2065.24], [2656.13, 2060.19], [2661.54, 2059.85], [2735.84, 2055.08], [2741.32, 2054.97], [2741.68, 2061.28], [2751.76, 2234.61], [2751.9, 2237.33], [2745.75, 2237.6]], [[2836.18, 2233.86], [2761.83, 2236.91], [2757.89, 2237.07], [2757.75, 2234.28], [2747.67, 2060.93], [2747.31, 2054.6], [2751.91, 2054.12], [2828.23, 2050.21], [2832.96, 2049.97], [2833.31, 2056.31], [2842.65, 2229.8], [2842.82, 2233.41], [2836.18, 2233.86]], [[2829.8, 1991.13], [2829.95, 1994.06], [2832.43, 2040.1], [2832.64, 2043.98], [2827.93, 2044.22], [2751.44, 2048.14], [2746.97, 2048.61], [2746.76, 2044.9], [2741.28, 1924.44], [2739.97, 1914.61], [2743.11, 1917.24], [2745.98, 1919.44], [2821.62, 1975.54], [2829.26, 1981.21], [2829.8, 1991.13]], [[2687.83, 2548.05], [2710.89, 2572.23], [2725.93, 2596.36], [2734.1, 2610.31], [2738.73, 2617.81], [2732.31, 2621.59], [2727.52, 2614.02], [2710.11, 2585.71], [2697.49, 2570.34], [2688.71, 2560.7], [2676.78, 2548.16], [2669.94, 2540.98], [2666.14, 2544.59], [2669.73, 2540.77], [2662.67, 2534.12], [2619.7, 2493.68], [2609.26, 2484.43], [2590.11, 2466.19], [2586.57, 2462.82], [2555.9, 2434.44], [2546.82, 2425.75], [2542.44, 2421.59], [2548.86, 2414.96], [2553.62, 2419.51], [2660.95, 2521.99], [2663.34, 2524.28], [2667.96, 2528.69], [2682.22, 2542.59], [2687.83, 2548.05]], [[2610.14, 2369.19], [2614.83, 2366.62], [2618.58, 2362.76], [2621.02, 2357.95], [2621.89, 2352.74], [2621.61, 2349.4], [2621.45, 2349.41], [2622.28, 2348.18], [2623.54, 2347.44], [2629.66, 2344.86], [2634.99, 2343.42], [2644.57, 2341.52], [2653.6, 2340.28], [2658.92, 2341.91], [2664.56, 2344.11], [2671.72, 2347.86], [2676.78, 2351.05], [2680.86, 2354.29], [2683.83, 2357.02], [2692.84, 2365.8], [2755.24, 2426.64], [2758.14, 2429.47], [2758.95, 2430.28], [2759.69, 2431.03], [2782.06, 2453.59], [2801.87, 2470.31], [2813.3, 2480.67], [2821.09, 2489.07], [2823.8, 2492.96], [2824.24, 2493.6], [2826.75, 2500.55], [2828.38, 2506.72], [2829.57, 2518.43], [2829.84, 2521.72], [2831.32, 2540.6], [2831.89, 2548.27], [2834.16, 2578.34], [2834.32, 2581.48], [2834.62, 2587.14], [2831.94, 2586.23], [2824.52, 2584.86], [2820.86, 2584.96], [2810.51, 2585.23], [2801.63, 2586.17], [2792.61, 2588.68], [2779.9, 2594.99], [2770.59, 2600.54], [2753.22, 2610.41], [2748.16, 2613.09], [2743.1, 2604.9], [2734.92, 2590.93], [2719.23, 2565.76], [2695.3, 2540.67], [2689.55, 2535.07], [2675.25, 2521.13], [2670.59, 2516.69], [2668.2, 2514.4], [2560.87, 2411.91], [2556.28, 2407.54], [2559.03, 2404.87], [2577.14, 2387.26], [2592.22, 2376.84], [2595.3, 2374.7], [2602.54, 2370.09], [2605.48, 2370.22], [2610.14, 2369.19]], [[2612.55, 2347.53], [2613.68, 2350.62], [2613.83, 2352.42], [2613.33, 2355.43], [2611.99, 2358.06], [2609.93, 2360.18], [2607.3, 2361.62], [2604.78, 2362.18], [2602.17, 2362.06], [2599.64, 2361.24], [2597.42, 2359.8], [2595.67, 2357.81], [2594.52, 2355.46], [2594.02, 2352.63], [2594.35, 2349.82], [2595.62, 2347.01], [2597.67, 2344.73], [2600.34, 2343.18], [2603.52, 2342.49], [2604.6, 2342.5], [2607.87, 2343.33], [2610.56, 2345.05], [2612.55, 2347.53]], [[2619.2, 2343.03], [2616.14, 2339.23], [2625.71, 2337.18], [2630.58, 2336.14], [2636.18, 2335.78], [2640.5, 2336.21], [2633.63, 2337.57], [2627.7, 2339.18], [2620.85, 2342.07], [2619.2, 2343.03]], [[2590.25, 2341.01], [2590.04, 2340.68], [2586.02, 2336.76], [2586.44, 2336.91], [2587.83, 2337.37], [2592.16, 2338.89], [2590.25, 2341.01]], [[2590.87, 2368.04], [2588.91, 2369.39], [2591.1, 2366.02], [2591.54, 2365.23], [2592.14, 2365.91], [2593.16, 2366.58], [2590.87, 2368.04]], [[2689.55, 2577.22], [2701.54, 2591.82], [2718.62, 2619.58], [2724.06, 2628.18], [2720.0, 2631.8], [2716.76, 2635.63], [2712.24, 2640.97], [2709.77, 2645.86], [2707.91, 2654.15], [2707.26, 2664.48], [2706.92, 2665.55], [2704.35, 2673.5], [2692.45, 2710.42], [2688.04, 2724.08], [2685.68, 2731.39], [2681.81, 2728.68], [2680.83, 2727.76], [2635.82, 2685.26], [2586.64, 2636.35], [2584.24, 2633.97], [2587.71, 2630.37], [2627.48, 2589.05], [2642.3, 2573.67], [2659.3, 2556.02], [2664.56, 2550.56], [2669.17, 2555.4], [2681.02, 2567.85], [2689.55, 2577.22]], [[2736.38, 2628.48], [2742.77, 2624.71], [2745.51, 2629.64], [2739.49, 2634.17], [2736.38, 2628.48]], [[2751.69, 2619.14], [2756.59, 2616.55], [2774.11, 2606.59], [2783.25, 2601.14], [2795.13, 2595.25], [2802.95, 2593.07], [2810.97, 2592.22], [2818.04, 2592.04], [2813.78, 2593.0], [2798.34, 2598.11], [2774.99, 2608.65], [2758.79, 2619.13], [2753.56, 2622.52], [2751.69, 2619.14]], [[2730.87, 2640.29], [2723.58, 2645.12], [2719.22, 2647.99], [2715.63, 2651.72], [2716.41, 2648.24], [2718.12, 2644.86], [2722.1, 2640.16], [2725.02, 2636.7], [2727.63, 2634.38], [2730.87, 2640.29]]]}}]} \ No newline at end of file +{"buildings": [{"shape": {"outer": [[-2355.77, -615.04], [-2357.04, -624.41], [-2352.18, -625.76], [-2354.37, -635.42], [-2361.14, -633.92], [-2363.76, -644.01], [-2365.16, -647.76], [-2367.12, -653.1], [-2369.3, -658.88], [-2371.66, -665.36], [-2373.09, -669.48], [-2367.46, -672.13], [-2372.0, -681.04], [-2378.66, -678.41], [-2378.97, -679.0], [-2381.64, -677.65], [-2394.01, -670.99], [-2395.41, -673.82], [-2398.66, -678.22], [-2401.77, -681.51], [-2404.61, -684.31], [-2407.5, -686.36], [-2411.22, -688.63], [-2414.99, -690.56], [-2418.82, -691.92], [-2422.47, -693.01], [-2426.68, -693.93], [-2426.18, -697.45], [-2486.48, -694.58], [-2487.88, -693.47], [-2490.05, -697.54], [-2495.25, -695.78], [-2500.17, -693.41], [-2502.66, -691.89], [-2504.32, -690.88], [-2507.72, -688.24], [-2508.7, -687.39], [-2511.65, -684.84], [-2507.35, -680.44], [-2503.54, -676.4], [-2505.8, -672.98], [-2526.23, -682.42], [-2528.07, -678.68], [-2532.03, -680.36], [-2543.1, -654.86], [-2540.21, -653.74], [-2542.72, -646.3], [-2544.94, -638.54], [-2546.13, -633.82], [-2546.08, -631.74], [-2542.99, -631.01], [-2544.21, -626.63], [-2545.06, -621.8], [-2542.35, -621.29], [-2543.61, -612.91], [-2544.63, -603.54], [-2544.84, -594.44], [-2544.72, -584.43], [-2544.27, -574.49], [-2543.61, -565.66], [-2542.12, -555.85], [-2540.33, -548.05], [-2543.52, -547.02], [-2541.03, -537.82], [-2543.53, -536.61], [-2544.39, -536.19], [-2543.2, -533.05], [-2542.52, -531.26], [-2540.18, -525.0], [-2537.86, -517.95], [-2535.09, -511.53], [-2537.33, -509.76], [-2534.13, -502.49], [-2528.4, -492.47], [-2523.31, -484.38], [-2516.53, -477.01], [-2515.05, -478.84], [-2513.65, -477.78], [-2505.27, -485.68], [-2500.26, -481.33], [-2495.11, -477.16], [-2501.76, -467.26], [-2500.4, -466.41], [-2496.1, -463.32], [-2496.42, -462.73], [-2489.48, -459.07], [-2482.41, -455.97], [-2473.99, -453.28], [-2466.62, -451.71], [-2458.49, -450.52], [-2451.0, -450.21], [-2442.85, -450.59], [-2436.24, -451.34], [-2427.86, -453.26], [-2419.32, -456.11], [-2411.25, -460.45], [-2407.27, -463.08], [-2399.46, -469.44], [-2393.18, -474.94], [-2388.41, -480.09], [-2385.63, -483.11], [-2379.59, -490.33], [-2374.32, -499.11], [-2370.56, -507.28], [-2367.41, -514.51], [-2366.09, -518.49], [-2364.23, -524.44], [-2357.27, -522.35], [-2353.88, -532.44], [-2360.93, -534.95], [-2358.77, -543.08], [-2357.56, -549.99], [-2355.7, -560.69], [-2354.42, -574.81], [-2354.37, -580.95], [-2354.29, -585.4], [-2347.23, -585.21], [-2347.41, -590.65], [-2354.41, -590.28], [-2354.43, -592.15], [-2354.99, -604.97], [-2355.77, -615.04]], "holes": [[[-2477.38, -649.17], [-2428.4, -650.61], [-2424.11, -648.89], [-2424.08, -643.39], [-2422.54, -643.33], [-2422.39, -637.23], [-2423.79, -637.09], [-2421.64, -631.16], [-2419.62, -623.08], [-2417.23, -612.84], [-2415.79, -601.75], [-2415.1, -585.77], [-2415.13, -569.79], [-2415.67, -562.73], [-2416.52, -555.19], [-2418.42, -544.79], [-2420.51, -536.26], [-2422.71, -527.79], [-2426.13, -524.56], [-2426.68, -524.94], [-2429.58, -520.92], [-2433.33, -517.18], [-2436.9, -514.74], [-2441.53, -512.2], [-2447.62, -510.96], [-2452.4, -510.39], [-2458.41, -511.44], [-2465.96, -514.73], [-2474.05, -522.16], [-2479.47, -526.92], [-2482.47, -537.8], [-2487.8, -559.04], [-2489.04, -575.03], [-2490.03, -586.21], [-2490.2, -599.68], [-2488.58, -615.24], [-2486.11, -625.91], [-2484.03, -634.62], [-2484.72, -646.68], [-2477.38, -649.17]]]}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 19455}}, {"shape": {"outer": [[-1895.36, -500.63], [-1898.69, -573.1], [-1927.8, -571.83], [-1927.61, -562.9], [-1928.82, -561.55], [-1941.4, -561.17], [-1951.86, -549.22], [-1951.5, -537.9], [-1943.84, -531.26], [-1954.53, -519.71], [-1953.57, -497.76], [-1895.36, -500.63]], "holes": [[[-1937.53, -520.62], [-1933.2, -525.08], [-1923.85, -535.77], [-1908.11, -536.12], [-1907.45, -519.4], [-1908.08, -519.36], [-1907.89, -511.82], [-1937.22, -510.66], [-1937.53, -520.62]]]}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1953}}, {"shape": {"outer": [[-1438.48, -202.34], [-1438.27, -200.89], [-1437.93, -194.03], [-1438.61, -194.0], [-1436.32, -147.41], [-1435.91, -139.65], [-1435.24, -128.84], [-1432.87, -88.17], [-1432.67, -86.4], [-1432.59, -84.15], [-1432.45, -82.7], [-1432.04, -76.42], [-1394.57, -78.25], [-1389.22, -78.5], [-1381.86, -78.91], [-1385.04, -142.46], [-1388.16, -202.23], [-1388.85, -215.48], [-1400.59, -214.86], [-1438.98, -212.86], [-1438.48, -202.34]], "holes": [[[-1421.92, -135.38], [-1421.14, -136.25], [-1420.22, -137.3], [-1399.37, -138.42], [-1398.4, -137.38], [-1397.74, -136.64], [-1397.01, -126.26], [-1397.81, -125.08], [-1421.14, -124.11], [-1421.58, -124.79], [-1421.92, -135.38]]]}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 11101}}, {"shape": {"outer": [[-2594.58, -702.06], [-2581.73, -702.32], [-2581.64, -697.32], [-2584.31, -697.26], [-2584.2, -692.03], [-2571.39, -692.29], [-2571.49, -697.52], [-2572.01, -697.51], [-2572.09, -701.37], [-2571.57, -701.39], [-2571.58, -703.67], [-2571.69, -707.38], [-2572.35, -707.36], [-2572.43, -711.33], [-2571.76, -711.34], [-2571.86, -716.17], [-2594.85, -715.7], [-2594.58, -702.06]], "holes": [[[-2586.2, -710.66], [-2582.73, -710.79], [-2582.54, -705.74], [-2585.1, -705.64], [-2586.01, -705.61], [-2586.2, -710.66]]]}, "height": 8.0, "data": {"type": "residential", "density": 0.328, "pop": 164, "jobs": 0}}, {"shape": {"outer": [[-937.35, -468.03], [-938.13, -488.65], [-939.71, -513.8], [-939.9, -516.82], [-972.07, -515.34], [-971.84, -510.24], [-976.64, -510.1], [-975.22, -486.86], [-971.54, -422.28], [-971.39, -416.26], [-968.09, -416.49], [-967.89, -411.91], [-945.31, -412.44], [-936.0, -412.75], [-936.72, -452.03], [-936.74, -453.33], [-926.28, -464.75], [-930.14, -468.2], [-937.35, -468.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1537, "jobs": 0}}, {"shape": {"outer": [[-2744.85, -145.63], [-2768.5, -146.66], [-2793.34, -147.09], [-2795.15, -147.16], [-2796.56, -147.22], [-2815.19, -147.64], [-2814.84, -146.52], [-2814.88, -145.62], [-2815.32, -144.6], [-2816.2, -143.93], [-2817.09, -143.62], [-2827.33, -143.76], [-2828.36, -144.19], [-2829.1, -144.82], [-2829.66, -145.77], [-2829.88, -147.05], [-2829.73, -147.97], [-2829.42, -148.69], [-2828.51, -149.61], [-2827.66, -150.03], [-2826.65, -150.17], [-2825.5, -150.02], [-2824.97, -153.42], [-2855.95, -158.64], [-2856.77, -152.31], [-2857.28, -148.38], [-2860.13, -148.67], [-2860.11, -139.25], [-2860.08, -129.89], [-2746.86, -128.45], [-2747.0, -133.52], [-2743.86, -132.84], [-2744.23, -137.66], [-2744.85, -145.63]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1453}}, {"shape": {"outer": [[1864.22, 1607.58], [1866.87, 1610.0], [1867.59, 1609.16], [1906.45, 1566.82], [1911.06, 1571.04], [1913.13, 1568.79], [1934.5, 1588.27], [1918.55, 1605.64], [1955.16, 1639.56], [1960.54, 1633.7], [1962.52, 1635.69], [1975.04, 1621.93], [1976.13, 1622.95], [1980.12, 1618.55], [1968.67, 1608.19], [1955.54, 1621.91], [1956.81, 1622.69], [1955.96, 1623.64], [1952.78, 1623.86], [1951.89, 1623.26], [1952.31, 1622.5], [1936.26, 1607.72], [1935.82, 1607.97], [1934.87, 1607.13], [1934.6, 1604.04], [1935.45, 1603.39], [1936.59, 1604.04], [1949.36, 1590.44], [1913.48, 1557.42], [1912.7, 1558.06], [1847.62, 1498.67], [1840.85, 1506.18], [1837.09, 1502.88], [1821.92, 1519.63], [1828.94, 1525.76], [1827.0, 1527.79], [1835.19, 1535.32], [1846.26, 1523.59], [1860.08, 1536.17], [1829.42, 1569.45], [1827.2, 1571.84], [1823.12, 1572.05], [1821.23, 1572.14], [1811.46, 1563.47], [1810.91, 1563.87], [1810.07, 1563.2], [1810.03, 1561.76], [1810.0, 1560.47], [1810.73, 1559.77], [1811.37, 1560.31], [1820.67, 1549.81], [1819.77, 1549.02], [1821.96, 1546.98], [1814.54, 1540.36], [1813.2, 1541.52], [1806.46, 1535.78], [1787.84, 1556.75], [1786.08, 1555.25], [1779.32, 1563.12], [1786.48, 1569.51], [1787.53, 1568.21], [1789.38, 1569.61], [1789.03, 1570.25], [1848.63, 1624.51], [1864.22, 1607.58]], "holes": [[[1843.38, 1584.83], [1875.93, 1549.36], [1893.29, 1565.18], [1879.42, 1580.29], [1878.55, 1579.5], [1870.9, 1587.83], [1869.08, 1586.18], [1859.13, 1597.03], [1859.57, 1597.42], [1858.31, 1598.79], [1851.99, 1598.77], [1843.65, 1591.17], [1843.38, 1584.83]]]}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 5246, "jobs": 0}}, {"shape": {"outer": [[-1755.24, 8.07], [-1754.55, 11.39], [-1747.51, 10.03], [-1747.42, 10.54], [-1743.85, 9.96], [-1741.47, 21.9], [-1759.31, 24.72], [-1758.64, 27.6], [-1759.22, 27.62], [-1757.14, 39.7], [-1756.56, 39.68], [-1756.5, 41.99], [-1751.31, 41.27], [-1750.72, 41.83], [-1742.66, 40.44], [-1742.65, 41.02], [-1729.99, 38.92], [-1730.03, 37.77], [-1721.97, 36.37], [-1721.99, 35.79], [-1716.82, 35.06], [-1719.49, 22.41], [-1724.66, 23.14], [-1726.08, 16.99], [-1725.41, 16.76], [-1725.61, 15.18], [-1725.8, 14.06], [-1725.91, 13.43], [-1726.78, 13.59], [-1727.92, 6.98], [-1725.03, 6.49], [-1726.07, 0.47], [-1721.71, -0.27], [-1720.7, -0.49], [-1719.69, -0.68], [-1718.11, -1.01], [-1718.4, -2.6], [-1719.34, -8.01], [-1720.36, -13.38], [-1720.67, -15.09], [-1721.93, -14.86], [-1723.19, -14.63], [-1724.19, -14.41], [-1728.59, -13.62], [-1729.67, -19.42], [-1732.71, -18.85], [-1733.92, -25.34], [-1732.91, -25.5], [-1733.01, -26.19], [-1733.27, -27.53], [-1733.37, -28.53], [-1733.5, -29.41], [-1734.37, -29.27], [-1735.64, -35.71], [-1730.89, -36.5], [-1733.23, -49.58], [-1738.2, -48.66], [-1738.3, -49.29], [-1746.74, -47.62], [-1746.88, -48.45], [-1747.98, -48.25], [-1759.25, -46.17], [-1759.1, -45.34], [-1767.15, -43.85], [-1767.05, -43.31], [-1772.23, -42.34], [-1771.93, -40.72], [-1799.96, -35.48], [-1799.6, -34.86], [-1797.53, -23.82], [-1794.59, -6.73], [-1794.46, -4.87], [-1795.9, -4.66], [-1795.14, -0.36], [-1793.99, 5.8], [-1792.1, 15.78], [-1774.12, 12.64], [-1774.33, 11.48], [-1755.24, 8.07]], "holes": [[[-1769.38, -25.99], [-1769.22, -25.13], [-1751.54, -28.34], [-1749.41, -15.99], [-1752.34, -15.44], [-1752.37, -14.67], [-1759.52, -13.35], [-1758.87, -10.25], [-1777.65, -7.08], [-1777.98, -8.41], [-1779.38, -8.16], [-1782.54, -23.88], [-1769.38, -25.99]]]}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4626}}, {"shape": {"outer": [[-3121.55, 39.25], [-3116.25, 53.8], [-3116.78, 64.96], [-3116.94, 65.52], [-3124.44, 65.07], [-3125.34, 80.34], [-3124.95, 80.36], [-3125.37, 87.72], [-3121.86, 121.13], [-3125.92, 121.53], [-3124.12, 139.8], [-3119.93, 139.39], [-3120.08, 140.81], [-3093.25, 139.83], [-3093.32, 137.79], [-3090.77, 137.69], [-3081.1, 137.34], [-3081.1, 137.21], [-3080.56, 137.19], [-3080.57, 137.08], [-3080.29, 137.07], [-3079.61, 137.04], [-3079.44, 140.93], [-3054.92, 140.03], [-3054.97, 138.23], [-3051.57, 138.11], [-3053.86, 74.44], [-3053.91, 72.99], [-3054.09, 68.11], [-3054.31, 61.95], [-3055.87, 62.38], [-3060.33, 62.57], [-3066.8, 62.78], [-3072.91, 63.02], [-3072.94, 62.41], [-3107.86, 63.7], [-3108.44, 48.0], [-3091.15, 44.76], [-3091.4, 38.16], [-3121.55, 39.25]], "holes": [[[-3080.66, 129.99], [-3091.06, 130.17], [-3091.41, 130.1], [-3091.75, 129.99], [-3092.09, 129.85], [-3092.41, 129.69], [-3092.71, 129.5], [-3093.0, 129.29], [-3093.26, 129.04], [-3093.51, 128.77], [-3113.89, 104.66], [-3114.32, 104.07], [-3114.71, 103.46], [-3115.04, 102.8], [-3115.31, 102.13], [-3115.53, 101.45], [-3115.69, 100.74], [-3115.79, 100.03], [-3116.69, 91.54], [-3116.7, 91.47], [-3088.6, 90.44], [-3088.56, 91.5], [-3087.53, 91.46], [-3087.68, 87.47], [-3082.25, 87.31], [-3080.66, 129.99]]]}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4028}}, {"shape": {"outer": [[-1541.27, -1209.95], [-1548.71, -1209.8], [-1549.16, -1224.79], [-1550.89, -1224.74], [-1551.1, -1231.59], [-1552.11, -1231.56], [-1552.15, -1232.97], [-1605.4, -1231.41], [-1605.02, -1218.5], [-1619.35, -1218.07], [-1618.32, -1182.87], [-1619.17, -1182.85], [-1619.05, -1179.08], [-1618.13, -1179.11], [-1618.04, -1176.03], [-1618.96, -1176.0], [-1618.86, -1172.55], [-1617.88, -1172.59], [-1617.76, -1168.79], [-1618.75, -1168.76], [-1618.41, -1156.88], [-1617.34, -1156.91], [-1616.89, -1141.6], [-1608.08, -1141.86], [-1608.06, -1140.89], [-1580.88, -1141.68], [-1580.15, -1144.09], [-1578.03, -1144.78], [-1576.74, -1142.62], [-1573.66, -1142.65], [-1573.12, -1145.21], [-1570.92, -1144.19], [-1571.1, -1150.28], [-1556.68, -1150.67], [-1531.23, -1151.37], [-1531.33, -1155.66], [-1539.55, -1155.37], [-1539.74, -1160.23], [-1526.55, -1160.49], [-1526.62, -1164.11], [-1522.66, -1164.19], [-1522.91, -1177.14], [-1522.32, -1177.16], [-1522.95, -1209.05], [-1527.54, -1208.97], [-1527.6, -1212.04], [-1523.89, -1212.13], [-1524.15, -1225.43], [-1528.27, -1229.1], [-1541.72, -1228.82], [-1541.27, -1209.95]], "holes": [[[-1582.43, -1181.32], [-1573.95, -1181.55], [-1573.9, -1179.68], [-1566.87, -1179.88], [-1566.44, -1164.12], [-1581.95, -1163.69], [-1582.43, -1181.32]]]}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4699}}, {"shape": {"outer": [[-1359.03, -114.84], [-1357.6, -81.97], [-1356.95, -82.0], [-1356.78, -78.21], [-1348.44, -78.61], [-1346.89, -78.57], [-1345.66, -78.64], [-1337.59, -79.01], [-1337.76, -82.73], [-1336.51, -82.79], [-1336.74, -87.63], [-1335.16, -87.69], [-1335.18, -88.25], [-1335.46, -94.08], [-1335.53, -96.19], [-1337.13, -96.12], [-1337.18, -98.33], [-1337.23, -99.44], [-1337.34, -100.67], [-1337.91, -113.27], [-1341.22, -113.14], [-1341.4, -115.94], [-1335.89, -116.18], [-1336.44, -127.21], [-1360.86, -126.05], [-1360.37, -114.78], [-1359.03, -114.84]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.67, "pop": 0, "jobs": 670}}, {"shape": {"outer": [[-1357.46, -152.05], [-1352.25, -152.34], [-1339.52, -153.01], [-1338.71, -153.06], [-1340.25, -190.64], [-1340.93, -204.83], [-1381.51, -202.34], [-1379.29, -150.91], [-1377.11, -151.03], [-1364.52, -151.69], [-1357.46, -152.05]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1345}}, {"shape": {"outer": [[-1215.57, 117.96], [-1215.61, 117.12], [-1220.07, 117.33], [-1221.55, 117.39], [-1238.71, 118.18], [-1241.57, 118.32], [-1241.43, 121.35], [-1241.28, 124.66], [-1243.21, 124.7], [-1243.24, 123.77], [-1250.42, 123.98], [-1251.69, 125.24], [-1254.83, 125.42], [-1253.61, 127.56], [-1252.85, 128.86], [-1251.39, 132.32], [-1250.65, 136.51], [-1250.53, 139.09], [-1250.74, 141.39], [-1251.58, 142.57], [-1252.46, 143.62], [-1253.43, 144.49], [-1254.38, 145.18], [-1252.55, 145.84], [-1249.98, 146.57], [-1247.34, 147.15], [-1245.36, 147.43], [-1243.09, 147.59], [-1237.86, 147.72], [-1237.75, 150.85], [-1206.82, 149.58], [-1207.11, 141.75], [-1195.68, 141.09], [-1196.05, 133.68], [-1194.78, 133.61], [-1192.34, 133.46], [-1192.68, 125.46], [-1195.28, 125.55], [-1196.35, 125.6], [-1196.68, 118.01], [-1204.63, 118.36], [-1210.83, 118.63], [-1215.53, 118.83], [-1215.57, 117.96]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1039}}, {"shape": {"outer": [[134.92, -528.11], [133.33, -526.78], [132.1, -525.61], [128.48, -528.84], [127.13, -527.57], [126.04, -526.08], [125.42, -524.59], [125.39, -522.8], [125.74, -520.85], [126.89, -518.98], [171.89, -474.1], [174.7, -471.37], [177.74, -468.57], [176.61, -467.03], [175.88, -465.53], [175.28, -463.72], [175.08, -461.94], [174.85, -460.34], [175.01, -458.45], [175.19, -456.62], [175.95, -454.58], [176.89, -452.55], [178.11, -450.79], [179.67, -449.0], [181.29, -447.68], [183.13, -446.77], [185.12, -445.97], [187.41, -445.59], [189.82, -445.55], [192.29, -445.77], [196.2, -447.15], [197.66, -448.17], [200.25, -445.58], [201.84, -443.86], [203.25, -442.54], [244.8, -401.51], [246.38, -399.81], [247.85, -398.61], [249.93, -397.64], [251.74, -397.53], [254.08, -398.0], [257.45, -400.73], [259.8, -398.67], [260.63, -398.49], [261.5, -398.52], [262.16, -398.94], [262.41, -399.51], [262.49, -400.06], [262.31, -400.91], [260.65, -402.59], [251.69, -410.92], [253.04, -412.45], [255.64, -415.46], [257.57, -418.35], [259.16, -420.99], [260.81, -424.24], [262.47, -428.39], [264.6, -429.14], [266.4, -430.1], [268.04, -431.62], [269.8, -433.07], [271.32, -435.32], [272.26, -437.48], [272.97, -440.04], [272.98, -440.66], [273.03, -443.37], [272.69, -446.62], [271.49, -449.85], [269.37, -453.18], [266.52, -456.05], [263.08, -457.96], [259.24, -458.95], [256.28, -459.14], [255.69, -460.29], [254.7, -461.48], [253.82, -462.19], [252.83, -462.73], [250.94, -463.23], [249.88, -463.27], [249.62, -466.44], [248.91, -470.33], [247.82, -475.29], [245.57, -481.95], [244.46, -484.36], [243.46, -486.51], [240.34, -492.16], [237.76, -496.13], [234.51, -499.91], [231.3, -503.2], [227.99, -506.4], [222.63, -510.53], [215.93, -514.13], [213.09, -515.43], [208.73, -517.28], [203.67, -518.42], [199.49, -519.35], [195.06, -519.97], [192.72, -520.26], [192.68, -522.02], [192.1, -523.87], [191.31, -525.1], [190.16, -526.21], [189.23, -526.79], [189.44, -529.33], [189.12, -531.44], [188.48, -534.22], [186.92, -537.05], [184.87, -539.45], [182.77, -541.16], [180.41, -542.3], [177.7, -543.02], [175.06, -543.29], [172.41, -543.29], [170.04, -542.96], [167.51, -542.25], [165.53, -541.4], [163.55, -540.34], [161.73, -538.82], [160.17, -537.41], [159.23, -536.34], [158.33, -534.71], [157.63, -533.02], [153.15, -531.08], [150.74, -530.04], [148.38, -528.92], [145.93, -527.6], [143.85, -526.18], [141.88, -524.78], [140.23, -523.2], [134.92, -528.11]], "holes": [[[192.51, -455.74], [191.11, -454.87], [189.52, -454.51], [187.88, -454.66], [186.38, -455.33], [185.17, -456.43], [184.36, -457.93], [184.09, -459.61], [184.39, -461.27], [185.24, -462.76], [186.52, -463.87], [188.11, -464.5], [189.81, -464.57], [191.44, -464.09], [192.82, -463.08], [193.75, -461.73], [194.21, -460.16], [194.14, -458.53], [193.56, -457.0], [192.51, -455.74]]]}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5679}}, {"shape": {"outer": [[-1436.45, 153.19], [-1434.85, 153.14], [-1434.81, 154.2], [-1434.54, 160.49], [-1430.44, 160.32], [-1410.83, 159.5], [-1411.04, 154.51], [-1411.24, 149.48], [-1409.3, 149.4], [-1410.63, 117.28], [-1409.23, 117.21], [-1409.3, 115.45], [-1407.8, 115.4], [-1408.06, 109.14], [-1408.79, 109.18], [-1409.13, 100.41], [-1406.71, 100.31], [-1403.35, 100.17], [-1403.25, 102.64], [-1400.91, 102.54], [-1400.89, 102.87], [-1398.94, 102.79], [-1396.18, 102.69], [-1396.04, 106.53], [-1395.0, 106.45], [-1394.21, 106.64], [-1393.01, 107.17], [-1391.65, 108.49], [-1390.26, 109.71], [-1389.05, 110.33], [-1387.41, 110.71], [-1385.79, 110.75], [-1384.16, 110.47], [-1382.56, 109.67], [-1381.12, 108.76], [-1379.95, 107.37], [-1379.2, 106.25], [-1378.41, 105.64], [-1377.42, 105.17], [-1376.65, 105.09], [-1375.67, 105.03], [-1373.33, 104.85], [-1371.87, 104.74], [-1371.69, 112.13], [-1371.06, 125.46], [-1330.31, 123.55], [-1332.82, 70.07], [-1340.57, 70.42], [-1340.59, 69.77], [-1350.54, 70.16], [-1360.26, 70.62], [-1360.23, 71.36], [-1369.3, 71.77], [-1369.33, 70.95], [-1370.45, 70.99], [-1370.51, 70.08], [-1370.65, 66.66], [-1371.04, 66.67], [-1379.55, 67.0], [-1379.5, 68.1], [-1383.89, 68.27], [-1391.99, 68.57], [-1395.8, 68.74], [-1395.85, 67.73], [-1396.22, 67.76], [-1399.68, 67.93], [-1401.48, 68.02], [-1404.5, 68.1], [-1404.84, 68.11], [-1404.65, 72.77], [-1405.7, 72.81], [-1405.66, 73.71], [-1406.27, 73.74], [-1406.33, 72.19], [-1406.85, 72.28], [-1410.62, 72.43], [-1414.82, 72.55], [-1414.78, 73.51], [-1417.22, 73.62], [-1417.34, 70.65], [-1418.71, 70.71], [-1431.56, 71.26], [-1432.89, 71.32], [-1432.75, 74.61], [-1434.27, 74.67], [-1434.24, 75.48], [-1438.13, 75.65], [-1442.38, 75.83], [-1443.9, 75.89], [-1443.44, 86.45], [-1441.96, 86.39], [-1439.81, 86.29], [-1439.38, 96.13], [-1440.34, 96.16], [-1439.8, 108.61], [-1438.72, 108.56], [-1438.36, 117.06], [-1440.59, 117.16], [-1442.22, 117.23], [-1441.69, 129.61], [-1440.68, 153.38], [-1436.45, 153.19]], "holes": [[[-1370.29, 105.01], [-1371.07, 105.04], [-1371.19, 102.58], [-1376.43, 102.83], [-1376.33, 104.81], [-1377.48, 104.87], [-1378.57, 105.37], [-1379.52, 106.09], [-1380.36, 107.4], [-1381.35, 108.61], [-1382.84, 109.49], [-1384.34, 110.08], [-1385.78, 110.41], [-1387.29, 110.32], [-1388.66, 110.0], [-1389.98, 109.33], [-1391.28, 108.28], [-1392.47, 106.95], [-1393.9, 106.25], [-1394.88, 106.03], [-1395.76, 106.08], [-1395.97, 102.31], [-1391.17, 102.05], [-1391.09, 103.47], [-1390.41, 104.97], [-1389.1, 106.31], [-1387.49, 107.16], [-1384.01, 106.78], [-1382.19, 105.63], [-1381.11, 103.93], [-1380.64, 102.56], [-1380.7, 101.47], [-1362.97, 100.61], [-1362.27, 115.13], [-1338.52, 113.98], [-1339.38, 96.19], [-1337.93, 96.12], [-1338.33, 87.83], [-1339.99, 87.9], [-1340.69, 73.35], [-1337.44, 73.2], [-1335.44, 73.1], [-1333.15, 120.97], [-1368.85, 122.67], [-1369.51, 105.0], [-1370.29, 105.01]]]}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6292}}, {"shape": {"outer": [[-2080.76, -187.01], [-2080.27, -175.84], [-2079.52, -158.58], [-2053.41, -159.72], [-2053.27, -156.68], [-2049.65, -156.84], [-2049.2, -146.45], [-2054.3, -146.23], [-2053.76, -133.96], [-2050.12, -134.12], [-2049.43, -133.22], [-2049.19, -124.8], [-2049.14, -123.19], [-2038.58, -123.49], [-2038.61, -124.5], [-2035.55, -124.59], [-2033.43, -130.93], [-2032.21, -130.99], [-2021.77, -131.43], [-2018.04, -131.59], [-2018.13, -133.81], [-2014.91, -133.93], [-2014.39, -121.82], [-2017.96, -121.67], [-2017.55, -111.6], [-2013.41, -107.59], [-1999.26, -108.05], [-2000.27, -135.32], [-1974.52, -136.28], [-1974.15, -126.33], [-1963.74, -126.72], [-1963.78, -127.55], [-1949.2, -128.09], [-1949.13, -128.77], [-1943.1, -129.02], [-1940.54, -129.13], [-1933.93, -129.41], [-1934.37, -139.13], [-1934.55, -145.07], [-1935.56, -164.27], [-1935.86, -170.07], [-1935.94, -171.53], [-1935.99, -172.78], [-1936.79, -192.77], [-1950.53, -192.18], [-1949.89, -177.07], [-1968.25, -176.28], [-1975.07, -176.0], [-1975.01, -174.62], [-1983.49, -174.27], [-1983.57, -176.06], [-2032.64, -173.95], [-2032.6, -172.99], [-2041.18, -172.62], [-2041.23, -173.7], [-2066.8, -172.59], [-2067.46, -187.6], [-2080.76, -187.01]], "holes": [[[-2039.74, -156.46], [-2038.01, -156.52], [-2038.22, -162.27], [-2032.34, -162.5], [-2032.29, -160.83], [-2020.68, -161.25], [-2020.36, -152.78], [-2021.4, -152.74], [-2021.3, -150.3], [-2039.49, -149.62], [-2039.74, -156.46]], [[-1994.77, -154.05], [-1995.13, -162.33], [-1985.77, -162.73], [-1985.54, -157.34], [-1975.73, -157.76], [-1975.48, -152.02], [-1993.33, -151.26], [-1993.45, -154.1], [-1994.77, -154.05]]]}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 8488}}, {"shape": {"outer": [[-1789.86, -51.57], [-1790.28, -55.42], [-1789.17, -55.46], [-1777.38, -55.93], [-1755.21, -56.78], [-1752.81, -66.73], [-1752.27, -68.93], [-1751.52, -71.89], [-1751.21, -73.31], [-1750.62, -75.74], [-1755.28, -76.13], [-1755.81, -75.5], [-1756.62, -75.49], [-1763.41, -75.35], [-1763.85, -77.47], [-1765.21, -84.18], [-1767.02, -84.13], [-1775.93, -83.89], [-1777.65, -89.18], [-1793.06, -88.53], [-1794.47, -83.01], [-1836.22, -81.45], [-1839.55, -81.25], [-1848.65, -80.94], [-1848.38, -74.29], [-1848.01, -64.8], [-1850.11, -64.14], [-1849.68, -53.89], [-1847.62, -53.42], [-1847.34, -49.83], [-1847.23, -46.62], [-1847.02, -40.44], [-1846.98, -39.47], [-1840.87, -39.66], [-1840.6, -38.82], [-1837.27, -39.0], [-1833.75, -39.18], [-1833.75, -40.04], [-1821.14, -40.36], [-1816.76, -40.49], [-1803.35, -43.76], [-1803.8, -46.9], [-1789.86, -51.57]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2798}}, {"shape": {"outer": [[171.89, -474.1], [126.89, -518.98], [125.74, -520.85], [125.39, -522.8], [125.42, -524.59], [126.04, -526.08], [127.13, -527.57], [128.48, -528.84], [132.1, -525.61], [133.33, -526.78], [134.92, -528.11], [132.42, -530.67], [127.04, -536.13], [123.02, -540.11], [106.15, -556.9], [97.96, -565.04], [98.8, -565.9], [104.49, -571.75], [107.71, -574.84], [109.1, -576.55], [110.18, -578.44], [110.55, -579.71], [110.77, -580.46], [111.11, -582.67], [110.92, -585.59], [110.43, -588.24], [108.9, -591.35], [106.96, -593.46], [105.26, -595.06], [102.04, -596.68], [98.31, -597.36], [95.02, -597.09], [91.08, -595.88], [90.16, -595.33], [89.34, -594.85], [88.14, -593.85], [87.29, -592.98], [86.53, -591.99], [85.57, -590.64], [84.85, -589.19], [84.25, -587.66], [83.83, -585.66], [83.75, -584.87], [83.68, -584.12], [83.78, -582.25], [84.03, -580.5], [85.16, -577.86], [86.63, -575.55], [82.69, -571.77], [79.17, -568.21], [74.64, -563.64], [65.25, -554.5], [53.35, -542.27], [48.54, -537.32], [48.01, -537.29], [47.37, -537.2], [46.85, -536.73], [46.64, -536.15], [46.57, -535.47], [31.13, -521.51], [35.4, -517.6], [37.58, -515.35], [42.09, -519.78], [53.78, -530.11], [56.47, -527.34], [67.06, -516.81], [122.58, -461.16], [125.12, -458.61], [143.04, -440.74], [145.16, -438.58], [145.69, -438.06], [146.35, -437.37], [168.62, -415.05], [169.4, -414.29], [171.99, -411.69], [172.56, -411.26], [185.87, -397.92], [221.32, -361.6], [243.52, -338.15], [248.45, -333.0], [252.2, -329.19], [254.6, -326.51], [258.1, -325.99], [264.09, -331.75], [275.74, -343.31], [285.17, -352.7], [289.95, -357.47], [293.11, -360.63], [295.04, -362.33], [297.23, -364.44], [298.38, -363.2], [300.34, -362.18], [302.5, -361.33], [304.79, -360.82], [307.12, -360.78], [308.85, -360.95], [309.69, -360.97], [311.73, -361.72], [313.65, -362.62], [315.32, -363.83], [316.93, -365.25], [318.33, -367.05], [319.23, -368.8], [319.76, -371.12], [320.02, -373.53], [319.97, -375.91], [319.56, -378.47], [318.58, -380.68], [317.4, -382.3], [315.68, -384.1], [313.65, -385.54], [311.4, -386.67], [309.92, -387.32], [307.31, -387.68], [304.49, -387.4], [301.65, -386.68], [298.57, -384.97], [289.26, -376.41], [287.96, -375.24], [277.76, -384.94], [271.36, -391.48], [262.31, -400.91], [262.49, -400.06], [262.41, -399.51], [262.16, -398.94], [261.5, -398.52], [260.63, -398.49], [259.8, -398.67], [257.45, -400.73], [254.08, -398.0], [251.74, -397.53], [249.93, -397.64], [247.85, -398.61], [246.38, -399.81], [244.8, -401.51], [203.25, -442.54], [201.84, -443.86], [200.25, -445.58], [197.66, -448.17], [196.2, -447.15], [192.29, -445.77], [189.82, -445.55], [187.41, -445.59], [185.12, -445.97], [183.13, -446.77], [181.29, -447.68], [179.67, -449.0], [178.11, -450.79], [176.89, -452.55], [175.95, -454.58], [175.19, -456.62], [175.01, -458.45], [174.85, -460.34], [175.08, -461.94], [175.28, -463.72], [175.88, -465.53], [176.61, -467.03], [177.74, -468.57], [174.7, -471.37], [171.89, -474.1]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 10083}}, {"shape": {"outer": [[-1494.0, -992.86], [-1485.47, -992.86], [-1481.76, -992.85], [-1481.92, -988.98], [-1481.28, -988.97], [-1476.06, -988.9], [-1475.88, -992.87], [-1434.8, -992.68], [-1434.73, -991.15], [-1435.17, -991.21], [-1435.05, -981.31], [-1434.83, -963.32], [-1430.8, -963.32], [-1430.86, -991.12], [-1430.88, -997.2], [-1480.57, -997.5], [-1485.29, -997.51], [-1493.8, -997.53], [-1506.01, -997.57], [-1511.33, -997.58], [-1519.86, -997.61], [-1527.63, -997.63], [-1527.8, -1001.01], [-1533.34, -1001.2], [-1533.6, -997.52], [-1573.68, -997.03], [-1573.57, -992.91], [-1520.02, -992.88], [-1511.61, -992.87], [-1506.26, -992.87], [-1494.0, -992.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.523, "pop": 0, "jobs": 523}}, {"shape": {"outer": [[-133.52, -96.37], [-133.28, -91.2], [-131.98, -63.16], [-125.97, -63.33], [-125.88, -61.16], [-125.11, -61.17], [-123.83, -61.19], [-123.73, -58.61], [-117.62, -58.82], [-116.48, -58.86], [-115.5, -58.9], [-113.53, -58.96], [-112.37, -59.01], [-111.27, -59.05], [-109.44, -59.11], [-108.6, -59.15], [-107.38, -59.19], [-102.03, -59.37], [-100.51, -59.45], [-100.62, -62.14], [-99.87, -62.17], [-98.54, -62.21], [-98.62, -64.33], [-92.77, -64.52], [-94.3, -92.96], [-94.56, -97.87], [-92.76, -98.01], [-90.9, -98.73], [-89.91, -99.12], [-88.26, -100.28], [-86.28, -103.2], [-85.71, -104.88], [-85.14, -107.78], [-80.78, -107.96], [-52.0, -109.13], [-52.25, -115.16], [-50.39, -115.23], [-50.42, -115.74], [-50.47, -117.04], [-47.91, -117.15], [-47.94, -117.88], [-48.18, -123.75], [-48.22, -124.89], [-48.26, -125.86], [-48.34, -127.84], [-48.38, -128.94], [-48.43, -130.08], [-48.5, -131.89], [-48.54, -132.94], [-48.59, -133.91], [-48.88, -140.66], [-51.4, -140.57], [-51.47, -142.08], [-51.5, -142.77], [-54.02, -142.68], [-54.25, -148.26], [-81.77, -146.97], [-87.31, -146.76], [-87.47, -148.7], [-88.89, -151.34], [-90.46, -153.23], [-92.52, -154.7], [-93.13, -155.14], [-95.09, -155.61], [-97.3, -155.67], [-97.49, -160.65], [-98.52, -188.85], [-104.9, -188.68], [-104.97, -190.52], [-106.85, -190.45], [-106.92, -193.14], [-113.41, -192.85], [-114.55, -192.8], [-115.53, -192.75], [-117.54, -192.66], [-118.63, -192.61], [-119.78, -192.55], [-121.54, -192.48], [-122.52, -192.43], [-123.55, -192.39], [-126.23, -192.29], [-130.3, -192.13], [-130.21, -189.33], [-131.82, -189.23], [-131.78, -187.41], [-137.51, -187.22], [-136.52, -158.03], [-136.23, -152.59], [-138.12, -152.55], [-140.62, -152.18], [-141.06, -151.87], [-142.9, -150.3], [-143.96, -148.71], [-144.17, -148.34], [-144.8, -145.95], [-144.76, -143.59], [-151.02, -143.49], [-178.65, -142.27], [-178.48, -136.43], [-179.66, -136.39], [-179.63, -135.7], [-179.59, -134.59], [-182.81, -134.47], [-182.57, -127.69], [-182.53, -126.62], [-182.49, -125.67], [-182.43, -123.86], [-182.36, -122.29], [-182.34, -121.61], [-182.28, -119.64], [-182.24, -118.65], [-182.21, -117.56], [-181.99, -111.77], [-181.96, -110.8], [-178.79, -110.88], [-178.76, -110.16], [-178.71, -108.98], [-176.92, -109.07], [-176.71, -103.29], [-149.47, -104.66], [-142.7, -104.69], [-142.18, -102.12], [-141.33, -100.13], [-140.92, -99.74], [-139.45, -98.35], [-137.88, -97.16], [-137.33, -96.74], [-135.22, -96.42], [-133.52, -96.37]], "holes": []}, "height": 86.6, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 61937}}, {"shape": {"outer": [[-1072.66, -877.29], [-1068.84, -868.71], [-1066.78, -868.55], [-1064.8, -867.65], [-1062.54, -866.63], [-1061.46, -865.48], [-1017.45, -884.9], [-1009.15, -866.21], [-1087.03, -831.82], [-1088.75, -835.7], [-1090.32, -839.21], [-1091.65, -842.22], [-1101.57, -864.52], [-1072.66, -877.29]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1887}}, {"shape": {"outer": [[-950.58, -856.06], [-953.0, -854.97], [-1077.45, -798.48], [-1075.85, -794.95], [-1032.98, -814.4], [-1028.35, -804.26], [-1010.22, -812.49], [-1013.25, -819.12], [-1003.33, -823.62], [-999.1, -814.36], [-987.9, -819.43], [-987.5, -818.54], [-958.82, -831.57], [-962.06, -838.63], [-945.95, -845.94], [-950.58, -856.06]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1011}}, {"shape": {"outer": [[-1126.0, -133.09], [-1124.35, -133.17], [-1124.29, -131.9], [-1124.21, -130.09], [-1118.73, -130.33], [-1118.65, -128.95], [-1111.17, -129.31], [-1109.67, -129.39], [-1108.18, -129.45], [-1089.74, -130.33], [-1080.77, -130.72], [-1078.53, -130.85], [-1079.31, -147.16], [-1074.62, -147.38], [-1074.97, -154.69], [-1079.81, -154.46], [-1079.91, -156.64], [-1080.01, -158.64], [-1075.79, -161.31], [-1075.92, -165.37], [-1080.21, -162.94], [-1080.32, -165.52], [-1081.13, -184.54], [-1076.36, -184.8], [-1076.64, -191.36], [-1081.56, -191.19], [-1081.62, -192.73], [-1081.74, -195.5], [-1077.38, -198.23], [-1077.79, -202.67], [-1082.06, -200.13], [-1082.16, -202.15], [-1082.24, -203.81], [-1129.25, -201.57], [-1126.0, -133.09]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3964}}, {"shape": {"outer": [[-498.05, -279.75], [-552.3, -221.03], [-567.97, -235.4], [-580.69, -246.86], [-525.76, -305.56], [-511.27, -291.88], [-498.05, -279.75]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1953}}, {"shape": {"outer": [[-76.23, 199.31], [-74.44, 201.01], [-77.81, 205.46], [-31.57, 248.35], [-27.54, 244.09], [-24.41, 246.61], [2.51, 217.32], [24.75, 192.52], [19.88, 187.88], [-26.19, 145.63], [-40.26, 160.97], [-72.83, 195.69], [-76.23, 199.31]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3509}}, {"shape": {"outer": [[-2847.41, -216.79], [-2845.06, -231.7], [-2846.05, -231.86], [-2844.3, -242.99], [-2843.3, -242.83], [-2842.83, -245.8], [-2827.78, -243.44], [-2829.61, -231.8], [-2821.64, -230.55], [-2820.18, -239.76], [-2803.13, -237.1], [-2804.55, -228.1], [-2796.7, -226.87], [-2795.04, -237.45], [-2777.0, -234.63], [-2777.35, -232.42], [-2776.03, -232.21], [-2777.5, -222.87], [-2779.34, -223.17], [-2780.72, -214.43], [-2779.82, -214.29], [-2781.15, -205.94], [-2788.35, -207.07], [-2787.98, -209.42], [-2798.62, -211.1], [-2799.02, -208.58], [-2810.51, -210.37], [-2810.11, -212.89], [-2817.9, -214.11], [-2818.31, -211.51], [-2829.85, -213.31], [-2829.44, -215.91], [-2840.23, -217.6], [-2840.53, -215.71], [-2847.41, -216.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 680, "jobs": 0}}, {"shape": {"outer": [[-2771.38, -206.76], [-2770.16, -215.87], [-2755.02, -213.86], [-2754.81, -215.34], [-2749.13, -214.58], [-2749.37, -212.78], [-2745.5, -212.27], [-2746.68, -203.48], [-2771.38, -206.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-2134.17, -399.92], [-2126.82, -400.28], [-2122.51, -400.5], [-2113.7, -401.05], [-2099.52, -417.29], [-2100.11, -428.38], [-2100.74, -440.21], [-2114.15, -452.99], [-2134.84, -452.05], [-2134.84, -449.69], [-2136.39, -449.6], [-2136.21, -445.44], [-2134.44, -403.94], [-2134.17, -399.92]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1827}}, {"shape": {"outer": [[-2603.94, -22.06], [-2605.04, -57.65], [-2634.59, -56.72], [-2634.63, -58.07], [-2640.28, -57.89], [-2640.24, -56.55], [-2671.07, -55.59], [-2669.95, -19.67], [-2650.44, -20.28], [-2650.26, -14.74], [-2640.0, -15.05], [-2640.03, -15.9], [-2636.31, -16.02], [-2631.44, -16.17], [-2631.42, -15.38], [-2622.45, -15.66], [-2622.63, -21.48], [-2603.94, -22.06]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1412}}, {"shape": {"outer": [[-2564.75, 33.82], [-2564.86, 30.64], [-2557.86, 30.4], [-2558.28, 18.42], [-2538.1, 17.71], [-2538.07, 18.66], [-2536.41, 18.6], [-2534.3, 18.51], [-2534.39, 15.81], [-2491.04, 14.29], [-2490.63, 26.1], [-2479.4, 25.72], [-2479.59, 20.15], [-2460.95, 19.5], [-2460.24, 39.76], [-2478.82, 40.41], [-2478.89, 38.38], [-2481.7, 38.49], [-2481.09, 55.77], [-2501.16, 56.48], [-2501.81, 37.94], [-2497.08, 37.77], [-2497.18, 34.75], [-2497.98, 34.77], [-2498.23, 27.8], [-2517.3, 28.47], [-2516.86, 41.09], [-2530.54, 41.57], [-2533.66, 41.68], [-2533.89, 35.06], [-2537.34, 35.19], [-2537.29, 36.52], [-2557.66, 37.23], [-2557.79, 33.57], [-2564.75, 33.82]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1413}}, {"shape": {"outer": [[-2520.88, 121.96], [-2521.14, 115.46], [-2522.74, 76.62], [-2527.27, 76.81], [-2527.5, 71.13], [-2541.19, 69.74], [-2550.4, 70.12], [-2566.27, 70.76], [-2578.82, 71.28], [-2576.66, 124.25], [-2520.88, 121.96]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1863}}, {"shape": {"outer": [[-2407.89, -93.95], [-2416.6, -93.75], [-2416.56, -95.87], [-2423.06, -95.6], [-2423.96, -124.59], [-2419.26, -124.79], [-2410.97, -128.72], [-2412.38, -131.87], [-2364.21, -153.63], [-2362.64, -151.0], [-2356.46, -154.3], [-2348.72, -154.57], [-2348.56, -149.06], [-2347.48, -149.12], [-2347.35, -143.38], [-2346.4, -120.48], [-2347.45, -120.45], [-2347.54, -117.18], [-2354.66, -116.95], [-2356.81, -116.79], [-2346.18, -94.43], [-2388.57, -92.93], [-2393.14, -91.07], [-2396.77, -99.16], [-2407.89, -93.95]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2299}}, {"shape": {"outer": [[-2677.04, 333.85], [-2678.01, 300.0], [-2667.18, 299.69], [-2666.21, 333.54], [-2677.04, 333.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.294, "pop": 147, "jobs": 0}}, {"shape": {"outer": [[-2627.57, 282.22], [-2627.71, 277.44], [-2625.9, 277.38], [-2625.93, 276.22], [-2626.1, 270.2], [-2664.0, 271.27], [-2664.72, 245.68], [-2669.37, 245.81], [-2669.42, 244.04], [-2676.34, 244.23], [-2675.51, 273.34], [-2677.51, 273.4], [-2677.34, 279.62], [-2674.53, 279.54], [-2674.4, 284.39], [-2657.74, 283.91], [-2657.76, 283.07], [-2627.57, 282.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.732, "pop": 366, "jobs": 0}}, {"shape": {"outer": [[-2709.45, 117.56], [-2710.46, 84.73], [-2737.22, 85.55], [-2736.96, 94.05], [-2747.2, 94.37], [-2746.99, 101.01], [-2803.15, 102.75], [-2802.39, 127.45], [-2746.96, 125.73], [-2747.06, 122.41], [-2744.36, 122.32], [-2742.53, 122.27], [-2742.33, 129.0], [-2725.01, 128.47], [-2725.32, 118.05], [-2709.45, 117.56]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1734}}, {"shape": {"outer": [[-2666.02, 120.93], [-2665.9, 123.92], [-2676.68, 124.35], [-2676.97, 116.96], [-2678.53, 117.01], [-2679.06, 103.73], [-2677.17, 103.66], [-2678.5, 70.74], [-2667.51, 70.3], [-2667.65, 66.97], [-2655.96, 66.5], [-2654.79, 95.43], [-2639.27, 94.82], [-2639.11, 99.13], [-2634.53, 98.94], [-2634.67, 95.21], [-2630.33, 95.04], [-2630.39, 93.48], [-2619.96, 93.06], [-2619.9, 94.6], [-2602.17, 93.89], [-2601.49, 110.62], [-2600.12, 110.57], [-2599.78, 118.82], [-2601.17, 118.87], [-2601.07, 121.29], [-2617.18, 121.95], [-2617.12, 123.42], [-2627.23, 123.84], [-2627.29, 122.35], [-2630.83, 122.5], [-2630.99, 118.72], [-2633.73, 118.84], [-2638.52, 119.04], [-2638.32, 124.1], [-2659.01, 124.93], [-2659.18, 120.66], [-2663.32, 120.83], [-2666.02, 120.93]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1753}}, {"shape": {"outer": [[-2644.21, 71.69], [-2644.53, 62.97], [-2647.17, 63.07], [-2647.4, 56.96], [-2644.37, 56.85], [-2644.51, 53.12], [-2631.18, 52.63], [-2595.4, 51.3], [-2595.28, 54.82], [-2592.88, 54.72], [-2592.67, 60.31], [-2595.1, 60.4], [-2594.75, 69.86], [-2644.21, 71.69]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.606, "pop": 0, "jobs": 606}}, {"shape": {"outer": [[-2464.89, 121.57], [-2465.04, 117.3], [-2465.15, 114.06], [-2465.27, 110.48], [-2465.29, 109.78], [-2458.51, 109.48], [-2458.66, 106.41], [-2464.21, 106.63], [-2465.4, 106.67], [-2465.51, 103.35], [-2465.72, 97.12], [-2464.21, 97.08], [-2464.36, 92.33], [-2465.88, 92.38], [-2466.14, 84.65], [-2466.21, 82.14], [-2466.43, 76.14], [-2471.56, 76.32], [-2473.88, 76.41], [-2480.76, 76.65], [-2486.74, 76.85], [-2488.36, 76.91], [-2490.01, 76.97], [-2499.08, 77.28], [-2500.83, 77.34], [-2503.29, 77.42], [-2510.58, 77.64], [-2512.45, 77.69], [-2511.67, 100.85], [-2511.45, 107.06], [-2511.41, 108.03], [-2511.12, 116.77], [-2510.9, 123.13], [-2508.64, 123.06], [-2501.55, 122.82], [-2495.46, 122.61], [-2483.08, 122.19], [-2480.0, 122.09], [-2477.03, 121.99], [-2474.4, 121.89], [-2471.75, 121.81], [-2468.76, 121.71], [-2464.89, 121.57]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1357}}, {"shape": {"outer": [[-2886.9, 60.65], [-2833.56, 58.39], [-2832.94, 73.09], [-2886.28, 75.35], [-2886.9, 60.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.503, "pop": 0, "jobs": 503}}, {"shape": {"outer": [[-2845.29, 115.85], [-2846.59, 83.97], [-2857.4, 84.4], [-2856.09, 116.23], [-2860.1, 116.39], [-2861.4, 84.43], [-2872.6, 84.88], [-2871.3, 116.86], [-2874.96, 117.01], [-2876.23, 85.58], [-2886.71, 86.0], [-2884.7, 135.58], [-2857.88, 134.5], [-2830.66, 133.4], [-2832.69, 83.38], [-2842.06, 83.75], [-2840.75, 115.66], [-2845.29, 115.85]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1481}}, {"shape": {"outer": [[-2734.1, 72.73], [-2734.86, 51.66], [-2812.81, 54.46], [-2811.9, 79.41], [-2803.56, 79.1], [-2803.25, 87.53], [-2756.28, 85.83], [-2756.6, 77.06], [-2746.4, 76.69], [-2746.53, 73.18], [-2734.1, 72.73]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1466}}, {"shape": {"outer": [[-1480.63, 27.45], [-1480.11, 36.26], [-1475.89, 36.06], [-1475.69, 40.15], [-1475.64, 41.29], [-1475.54, 43.88], [-1475.43, 46.19], [-1475.39, 47.26], [-1475.18, 51.1], [-1479.34, 51.3], [-1478.86, 60.36], [-1473.88, 60.24], [-1473.68, 66.42], [-1473.6, 67.49], [-1473.54, 68.64], [-1473.15, 75.0], [-1512.58, 76.76], [-1513.13, 64.19], [-1513.27, 61.87], [-1513.28, 60.83], [-1513.09, 60.12], [-1512.64, 59.54], [-1512.16, 59.1], [-1511.37, 58.8], [-1510.53, 58.75], [-1509.8, 58.85], [-1509.03, 59.31], [-1508.52, 60.05], [-1508.34, 60.84], [-1508.25, 61.84], [-1491.15, 61.2], [-1491.42, 53.74], [-1496.57, 53.99], [-1498.44, 52.38], [-1498.59, 48.59], [-1498.81, 44.04], [-1498.99, 40.19], [-1499.08, 37.64], [-1497.34, 35.6], [-1491.76, 35.28], [-1492.27, 28.3], [-1507.01, 28.78], [-1509.89, 28.87], [-1509.86, 30.01], [-1510.02, 30.66], [-1510.3, 31.19], [-1510.57, 31.57], [-1510.92, 31.88], [-1511.33, 32.12], [-1511.95, 32.32], [-1512.63, 32.32], [-1513.05, 32.24], [-1513.47, 32.06], [-1513.82, 31.82], [-1514.13, 31.53], [-1514.45, 31.02], [-1514.66, 30.58], [-1514.82, 29.98], [-1514.85, 29.06], [-1515.45, 13.91], [-1476.2, 12.45], [-1475.53, 27.29], [-1480.63, 27.45]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1142}}, {"shape": {"outer": [[-1543.55, 37.66], [-1524.44, 36.78], [-1522.62, 76.98], [-1526.24, 77.15], [-1526.14, 79.3], [-1526.11, 79.91], [-1526.95, 79.95], [-1533.84, 80.26], [-1533.86, 79.94], [-1534.02, 77.53], [-1539.3, 77.75], [-1542.93, 77.95], [-1543.1, 74.98], [-1548.08, 73.76], [-1543.94, 46.71], [-1544.95, 46.55], [-1544.62, 43.96], [-1543.55, 37.66]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.253, "pop": 0, "jobs": 253}}, {"shape": {"outer": [[-1960.85, -7.62], [-1960.19, 9.53], [-1962.48, 9.62], [-1962.07, 20.29], [-2002.66, 21.85], [-2001.79, 44.77], [-1954.8, 42.98], [-1954.24, 56.85], [-1952.24, 56.77], [-1952.16, 58.79], [-1939.66, 58.28], [-1939.74, 56.26], [-1937.11, 56.15], [-1937.2, 54.12], [-1935.19, 54.05], [-1935.86, 36.66], [-1923.06, 36.39], [-1922.77, 24.99], [-1922.92, 23.16], [-1923.7, -1.39], [-1923.82, -4.89], [-1923.88, -6.6], [-1924.46, -6.63], [-1926.73, -6.55], [-1930.93, -6.49], [-1932.82, -6.41], [-1943.81, -5.97], [-1945.73, -5.91], [-1951.13, -5.66], [-1951.23, -7.96], [-1951.91, -7.93], [-1960.85, -7.62]], "holes": []}, "height": 74.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 17905}}, {"shape": {"outer": [[-1819.08, 117.88], [-1779.98, 110.53], [-1783.48, 92.05], [-1793.54, 93.94], [-1826.47, 100.13], [-1833.53, 101.45], [-1837.12, 82.47], [-1865.37, 87.78], [-1861.43, 108.61], [-1850.6, 106.62], [-1849.96, 110.59], [-1849.88, 112.14], [-1850.39, 112.22], [-1850.25, 114.67], [-1852.2, 114.95], [-1852.03, 116.56], [-1851.85, 117.88], [-1861.06, 119.67], [-1858.43, 136.5], [-1833.0, 131.9], [-1830.11, 147.1], [-1829.24, 146.83], [-1827.68, 155.01], [-1834.6, 156.24], [-1834.73, 155.54], [-1838.72, 156.3], [-1838.1, 159.58], [-1840.97, 160.12], [-1839.17, 169.67], [-1836.3, 184.84], [-1805.75, 179.09], [-1806.33, 176.03], [-1800.56, 174.94], [-1804.64, 153.36], [-1816.08, 155.52], [-1818.28, 143.92], [-1814.3, 143.17], [-1819.08, 117.88]], "holes": []}, "height": 28.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 8372}}, {"shape": {"outer": [[-1584.53, 178.45], [-1583.01, 194.26], [-1513.18, 187.57], [-1514.0, 179.98], [-1514.7, 171.76], [-1553.51, 175.48], [-1553.7, 173.58], [-1561.07, 174.28], [-1560.88, 176.19], [-1584.53, 178.45]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.722, "pop": 0, "jobs": 722}}, {"shape": {"outer": [[-1468.76, 97.68], [-1468.41, 107.45], [-1472.65, 107.69], [-1472.43, 111.79], [-1466.39, 111.54], [-1461.66, 111.25], [-1461.07, 122.98], [-1460.88, 127.73], [-1460.19, 137.9], [-1459.98, 141.32], [-1459.93, 144.05], [-1459.85, 146.18], [-1459.47, 157.77], [-1464.29, 158.06], [-1470.05, 158.28], [-1469.89, 162.57], [-1543.77, 166.07], [-1543.98, 162.48], [-1548.28, 162.62], [-1548.96, 149.73], [-1550.32, 149.8], [-1550.5, 146.29], [-1549.14, 146.23], [-1550.39, 122.29], [-1551.84, 122.38], [-1552.01, 119.06], [-1550.57, 118.98], [-1551.21, 106.59], [-1546.76, 106.41], [-1546.84, 103.04], [-1519.43, 101.59], [-1518.55, 101.56], [-1518.4, 105.05], [-1513.64, 104.77], [-1513.39, 113.18], [-1512.91, 131.81], [-1502.67, 131.06], [-1490.33, 130.92], [-1490.6, 122.18], [-1469.46, 98.47], [-1468.76, 97.68]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 8897}}, {"shape": {"outer": [[-1623.24, 189.15], [-1622.34, 196.82], [-1621.06, 207.75], [-1620.69, 210.67], [-1652.86, 213.88], [-1653.07, 210.75], [-1655.19, 192.55], [-1646.42, 191.61], [-1623.24, 189.15]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.444, "pop": 0, "jobs": 444}}, {"shape": {"outer": [[-2141.07, 90.13], [-2141.1, 89.33], [-2135.95, 89.14], [-2133.67, 89.05], [-2130.59, 88.94], [-2130.56, 89.86], [-2122.93, 89.59], [-2122.8, 92.84], [-2118.01, 92.67], [-2118.06, 91.37], [-2115.1, 91.26], [-2114.65, 90.08], [-2113.61, 89.14], [-2112.09, 89.07], [-2110.95, 89.92], [-2110.7, 91.1], [-2107.88, 91.0], [-2107.82, 92.72], [-2107.29, 107.09], [-2117.47, 107.46], [-2117.86, 96.68], [-2122.89, 96.87], [-2122.85, 98.0], [-2130.27, 98.27], [-2130.63, 100.01], [-2131.64, 101.63], [-2133.18, 102.81], [-2135.32, 103.36], [-2137.53, 102.82], [-2139.26, 101.67], [-2140.51, 100.24], [-2141.17, 98.3], [-2149.01, 98.6], [-2149.31, 90.44], [-2141.07, 90.13]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.294, "pop": 0, "jobs": 294}}, {"shape": {"outer": [[-1994.03, 155.83], [-1992.46, 169.56], [-1991.92, 169.5], [-1991.8, 170.57], [-1991.41, 174.0], [-2016.96, 176.91], [-2015.68, 188.12], [-2018.12, 188.39], [-2018.89, 189.35], [-2019.21, 190.22], [-2018.77, 194.03], [-2018.62, 195.25], [-2045.91, 198.4], [-2045.52, 201.73], [-2048.35, 202.05], [-2047.52, 209.21], [-2044.8, 208.9], [-2044.46, 211.82], [-2010.84, 207.97], [-2012.09, 197.13], [-2012.28, 195.61], [-2010.2, 195.38], [-2010.28, 194.68], [-2010.79, 190.2], [-1982.28, 186.96], [-1981.78, 186.9], [-1983.19, 174.49], [-1969.45, 172.93], [-1969.25, 174.64], [-1957.09, 173.27], [-1957.28, 171.56], [-1943.67, 170.06], [-1942.36, 181.79], [-1941.93, 181.75], [-1913.04, 178.56], [-1912.46, 183.8], [-1910.98, 183.65], [-1910.79, 185.38], [-1909.57, 196.46], [-1875.37, 192.72], [-1875.71, 189.53], [-1872.81, 189.21], [-1873.64, 181.66], [-1876.68, 182.0], [-1876.96, 179.43], [-1877.15, 179.04], [-1877.61, 178.92], [-1881.69, 179.35], [-1881.65, 179.7], [-1904.44, 182.11], [-1905.02, 176.63], [-1906.24, 175.46], [-1907.16, 175.22], [-1908.74, 175.41], [-1910.02, 164.59], [-1935.74, 167.61], [-1936.0, 165.43], [-1936.27, 163.12], [-1935.87, 163.08], [-1937.43, 149.59], [-1957.85, 151.95], [-1959.38, 152.13], [-1959.54, 150.7], [-1966.07, 151.44], [-1971.99, 152.12], [-1971.85, 153.31], [-1994.03, 155.83]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 2183, "jobs": 0}}, {"shape": {"outer": [[-1650.42, 13.34], [-1649.19, 13.04], [-1638.13, 11.19], [-1637.05, 11.01], [-1631.34, 45.06], [-1644.25, 47.21], [-1650.42, 13.34]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 0.515, "pop": 0, "jobs": 515}}, {"shape": {"outer": [[-1615.7, 12.38], [-1614.8, 33.47], [-1613.44, 33.41], [-1612.56, 54.36], [-1602.46, 53.94], [-1597.64, 53.73], [-1597.7, 52.33], [-1592.84, 52.13], [-1587.09, 51.87], [-1580.19, 51.59], [-1576.33, 51.42], [-1575.88, 61.87], [-1566.04, 61.42], [-1560.97, 61.21], [-1562.09, 35.07], [-1562.17, 33.29], [-1562.28, 30.53], [-1561.18, 30.48], [-1562.04, 10.1], [-1578.26, 10.77], [-1578.19, 12.5], [-1584.85, 12.79], [-1589.89, 13.0], [-1593.92, 13.17], [-1599.54, 13.41], [-1599.61, 11.7], [-1615.7, 12.38]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2549}}, {"shape": {"outer": [[-1253.72, 114.29], [-1254.1, 113.06], [-1255.22, 111.64], [-1256.2, 111.16], [-1256.25, 110.21], [-1256.3, 108.98], [-1257.82, 72.64], [-1258.1, 65.99], [-1257.24, 65.24], [-1256.55, 64.29], [-1256.19, 63.24], [-1256.12, 61.89], [-1256.08, 60.49], [-1256.76, 59.56], [-1257.58, 58.56], [-1258.45, 57.86], [-1259.6, 57.51], [-1264.07, 57.6], [-1264.93, 58.03], [-1274.56, 58.35], [-1282.64, 58.75], [-1283.19, 58.58], [-1283.81, 58.62], [-1286.45, 58.87], [-1287.8, 59.13], [-1288.92, 60.05], [-1289.68, 61.05], [-1290.24, 62.23], [-1290.3, 63.53], [-1290.03, 64.75], [-1289.45, 65.88], [-1288.39, 66.8], [-1287.97, 67.07], [-1287.24, 83.96], [-1287.13, 86.58], [-1291.72, 86.79], [-1292.17, 86.03], [-1292.94, 85.63], [-1294.0, 85.6], [-1294.8, 85.95], [-1295.5, 86.77], [-1295.62, 87.52], [-1295.52, 88.4], [-1295.11, 89.24], [-1294.53, 89.74], [-1294.09, 89.99], [-1293.79, 97.52], [-1294.1, 97.83], [-1294.63, 98.36], [-1295.12, 99.2], [-1295.04, 100.09], [-1294.74, 100.99], [-1294.29, 101.42], [-1293.31, 101.86], [-1292.43, 101.89], [-1291.63, 101.47], [-1291.04, 100.79], [-1290.9, 100.41], [-1290.14, 100.41], [-1286.46, 100.37], [-1285.81, 112.8], [-1287.11, 113.78], [-1287.76, 115.42], [-1287.54, 116.99], [-1286.85, 117.95], [-1285.38, 118.83], [-1284.1, 119.0], [-1282.8, 118.71], [-1281.76, 117.89], [-1281.38, 117.0], [-1280.73, 116.96], [-1280.45, 117.51], [-1280.01, 117.88], [-1279.35, 118.05], [-1278.69, 117.84], [-1278.26, 117.39], [-1278.13, 116.82], [-1271.85, 116.47], [-1271.67, 117.0], [-1271.25, 117.35], [-1270.53, 117.51], [-1269.93, 117.34], [-1269.47, 116.92], [-1269.28, 116.32], [-1263.37, 116.0], [-1263.11, 116.55], [-1262.61, 116.96], [-1261.9, 117.11], [-1261.22, 116.89], [-1260.81, 116.42], [-1260.68, 115.84], [-1260.09, 115.81], [-1259.47, 116.65], [-1258.41, 117.32], [-1257.15, 117.64], [-1255.99, 117.35], [-1254.97, 116.86], [-1254.31, 116.12], [-1254.07, 115.24], [-1253.72, 114.29]], "holes": []}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3206}}, {"shape": {"outer": [[-1372.89, 21.38], [-1374.13, -5.89], [-1374.34, -11.11], [-1374.56, -16.23], [-1375.76, -43.43], [-1379.55, -43.27], [-1385.14, -43.02], [-1385.19, -44.08], [-1390.7, -43.85], [-1392.14, -43.78], [-1394.78, -43.66], [-1399.39, -43.45], [-1399.34, -42.33], [-1408.25, -41.94], [-1407.92, -34.26], [-1426.24, -33.45], [-1426.37, -34.63], [-1438.95, -34.06], [-1442.64, -33.89], [-1443.9, -33.83], [-1443.14, -17.45], [-1441.83, -17.51], [-1441.4, -8.22], [-1440.92, 2.09], [-1442.31, 2.16], [-1441.53, 18.86], [-1440.7, 18.83], [-1424.17, 18.07], [-1424.36, 16.7], [-1407.46, 15.95], [-1407.14, 23.19], [-1397.75, 22.78], [-1397.71, 23.62], [-1391.15, 23.33], [-1389.16, 23.24], [-1387.6, 23.18], [-1382.12, 22.93], [-1382.17, 21.79], [-1372.89, 21.38]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4457}}, {"shape": {"outer": [[-2660.91, 348.93], [-2627.31, 347.96], [-2627.62, 337.13], [-2661.22, 338.1], [-2660.91, 348.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.292, "pop": 146, "jobs": 0}}, {"shape": {"outer": [[-2652.83, 312.73], [-2619.05, 311.75], [-2619.36, 300.95], [-2653.14, 301.92], [-2652.83, 312.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.292, "pop": 146, "jobs": 0}}, {"shape": {"outer": [[-2705.14, 307.38], [-2705.33, 300.86], [-2707.9, 300.93], [-2708.05, 296.06], [-2726.03, 296.57], [-2727.03, 296.6], [-2727.16, 292.11], [-2761.7, 293.1], [-2761.5, 300.04], [-2759.75, 299.99], [-2759.62, 304.56], [-2736.96, 303.9], [-2736.11, 333.11], [-2731.44, 332.98], [-2731.39, 334.83], [-2724.27, 334.63], [-2725.01, 309.07], [-2715.43, 308.8], [-2715.47, 307.67], [-2713.72, 307.62], [-2705.14, 307.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.788, "pop": 394, "jobs": 0}}, {"shape": {"outer": [[-2860.9, 410.32], [-2861.87, 379.27], [-2884.66, 379.97], [-2884.8, 375.41], [-2886.61, 375.46], [-2886.83, 368.54], [-2853.01, 367.49], [-2853.0, 368.02], [-2837.92, 367.56], [-2837.8, 371.6], [-2832.54, 371.44], [-2832.39, 376.1], [-2830.19, 376.04], [-2829.97, 383.08], [-2840.45, 383.4], [-2840.43, 384.18], [-2849.71, 384.47], [-2848.92, 409.94], [-2860.9, 410.32]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 1.0, "pop": 557, "jobs": 0}}, {"shape": {"outer": [[-2916.36, 442.15], [-2917.0, 412.87], [-2939.98, 413.38], [-2940.08, 408.94], [-2941.88, 408.98], [-2942.04, 401.68], [-2908.54, 400.94], [-2908.43, 405.48], [-2888.09, 405.03], [-2887.98, 409.56], [-2885.59, 409.51], [-2885.43, 416.55], [-2895.7, 416.78], [-2895.68, 417.79], [-2905.35, 418.02], [-2904.79, 443.63], [-2911.63, 443.79], [-2911.68, 442.05], [-2916.36, 442.15]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.631, "pop": 0, "jobs": 631}}, {"shape": {"outer": [[-2607.26, 320.78], [-2573.05, 319.77], [-2573.02, 320.78], [-2570.16, 320.69], [-2569.88, 328.35], [-2573.01, 328.44], [-2572.93, 330.87], [-2606.93, 331.88], [-2607.26, 320.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.322, "pop": 161, "jobs": 0}}, {"shape": {"outer": [[-2458.03, 208.96], [-2458.66, 209.51], [-2478.07, 211.58], [-2478.91, 203.74], [-2477.22, 203.56], [-2477.29, 202.83], [-2476.77, 202.77], [-2477.36, 197.27], [-2457.68, 195.18], [-2457.45, 197.39], [-2456.59, 205.42], [-2458.05, 205.57], [-2457.79, 208.01], [-2458.03, 208.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[-2378.31, 192.04], [-2378.67, 180.37], [-2395.68, 180.9], [-2395.6, 183.57], [-2400.23, 183.72], [-2399.59, 203.8], [-2400.66, 203.83], [-2400.23, 217.18], [-2399.18, 217.15], [-2398.54, 237.26], [-2394.05, 237.12], [-2393.97, 239.74], [-2377.18, 239.21], [-2377.56, 227.45], [-2385.78, 227.71], [-2386.9, 192.31], [-2378.31, 192.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.764, "pop": 382, "jobs": 0}}, {"shape": {"outer": [[-1226.73, 48.22], [-1226.7, 49.26], [-1226.59, 53.21], [-1229.97, 53.31], [-1232.14, 53.56], [-1236.85, 53.73], [-1241.46, 53.89], [-1254.55, 54.69], [-1254.89, 60.4], [-1255.82, 69.83], [-1241.11, 71.29], [-1239.16, 112.76], [-1238.93, 115.5], [-1238.71, 118.18], [-1221.55, 117.39], [-1220.07, 117.33], [-1215.61, 117.12], [-1213.47, 116.96], [-1213.59, 113.71], [-1195.01, 112.83], [-1195.02, 112.44], [-1192.38, 112.31], [-1192.55, 109.6], [-1192.01, 109.52], [-1192.54, 101.11], [-1191.0, 101.01], [-1191.23, 96.6], [-1191.41, 93.42], [-1191.74, 87.02], [-1191.93, 83.58], [-1191.95, 83.14], [-1193.53, 83.15], [-1194.79, 51.04], [-1195.61, 51.11], [-1195.8, 47.3], [-1199.68, 47.45], [-1199.74, 46.81], [-1216.78, 47.7], [-1226.73, 48.22]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2822}}, {"shape": {"outer": [[-2649.71, 247.74], [-2649.89, 243.15], [-2651.74, 243.23], [-2652.02, 236.18], [-2608.44, 234.44], [-2608.26, 239.04], [-2578.64, 237.87], [-2578.37, 244.74], [-2580.32, 244.82], [-2580.14, 249.3], [-2607.03, 250.38], [-2606.98, 251.69], [-2619.35, 252.18], [-2619.57, 246.54], [-2649.71, 247.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.716, "pop": 358, "jobs": 0}}, {"shape": {"outer": [[-2471.75, 313.99], [-2506.6, 315.0], [-2506.92, 303.81], [-2472.06, 302.81], [-2471.75, 313.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[-2446.11, 362.43], [-2480.28, 363.02], [-2480.48, 351.59], [-2446.31, 350.99], [-2446.11, 362.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[-2454.09, 332.86], [-2455.06, 298.9], [-2444.06, 298.58], [-2443.08, 332.54], [-2454.09, 332.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[-2428.66, 363.64], [-2429.92, 326.49], [-2424.78, 326.32], [-2424.99, 320.04], [-2391.15, 318.9], [-2389.67, 362.31], [-2428.66, 363.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 665, "jobs": 0}}, {"shape": {"outer": [[-2732.37, 35.49], [-2732.46, 31.79], [-2730.44, 31.74], [-2730.49, 29.77], [-2731.63, 29.8], [-2731.76, 24.34], [-2730.51, 24.31], [-2730.65, 18.71], [-2699.58, 17.95], [-2699.45, 23.06], [-2697.03, 23.0], [-2696.87, 29.15], [-2699.3, 29.21], [-2699.17, 34.68], [-2732.37, 35.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.44, "pop": 220, "jobs": 0}}, {"shape": {"outer": [[-2891.11, 19.78], [-2891.07, 21.28], [-2902.68, 21.77], [-2903.65, 23.06], [-2904.01, 24.37], [-2903.47, 25.66], [-2902.35, 26.64], [-2890.84, 26.15], [-2890.43, 35.81], [-2831.35, 33.32], [-2831.58, 27.86], [-2831.79, 23.1], [-2827.12, 22.89], [-2825.82, 22.32], [-2825.38, 20.59], [-2825.85, 19.2], [-2827.32, 18.18], [-2831.99, 18.38], [-2832.09, 16.08], [-2813.52, 15.3], [-2813.79, 9.07], [-2814.89, 9.09], [-2887.84, 12.19], [-2891.76, 12.35], [-2891.67, 14.47], [-2898.33, 14.76], [-2898.4, 12.99], [-2898.94, 0.24], [-2926.97, 1.42], [-2926.13, 21.27], [-2891.11, 19.78]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1402}}, {"shape": {"outer": [[-3124.57, 32.53], [-3133.64, 32.86], [-3134.81, 0.32], [-3087.7, -1.39], [-3088.6, -26.36], [-3068.54, -27.08], [-3068.58, -28.17], [-3022.38, -29.84], [-3022.34, -28.6], [-3002.6, -29.32], [-3001.71, -4.51], [-2973.08, -5.55], [-2972.09, 21.79], [-2971.91, 26.92], [-2986.21, 27.43], [-2988.93, 27.53], [-2988.45, 40.94], [-3010.35, 41.74], [-3010.84, 28.32], [-3042.48, 29.46], [-3047.97, 29.67], [-3047.72, 36.58], [-3061.07, 37.09], [-3067.51, 37.27], [-3091.4, 38.16], [-3121.55, 39.25], [-3124.32, 39.35], [-3124.57, 32.53]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5298}}, {"shape": {"outer": [[-2455.98, 270.95], [-2456.98, 236.42], [-2445.97, 236.1], [-2444.98, 270.63], [-2455.98, 270.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.304, "pop": 152, "jobs": 0}}, {"shape": {"outer": [[-2462.78, 284.01], [-2496.33, 284.98], [-2496.65, 274.1], [-2463.09, 273.13], [-2462.78, 284.01]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.512, "pop": 256, "jobs": 0}}, {"shape": {"outer": [[-2518.87, 318.01], [-2518.44, 330.07], [-2569.75, 331.91], [-2569.88, 328.35], [-2570.16, 320.69], [-2570.24, 318.48], [-2556.0, 317.97], [-2555.91, 320.29], [-2553.08, 320.19], [-2553.12, 319.22], [-2518.87, 318.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.51, "pop": 255, "jobs": 0}}, {"shape": {"outer": [[-2556.22, 310.21], [-2556.0, 317.97], [-2570.24, 318.48], [-2570.59, 303.64], [-2565.75, 303.49], [-2565.9, 298.15], [-2580.13, 298.57], [-2580.3, 292.73], [-2588.93, 292.99], [-2589.2, 284.88], [-2589.46, 275.32], [-2585.13, 275.19], [-2585.22, 272.08], [-2580.4, 271.94], [-2580.43, 270.79], [-2559.03, 270.17], [-2558.99, 271.43], [-2555.01, 271.31], [-2554.83, 277.13], [-2554.58, 285.48], [-2558.49, 285.6], [-2558.14, 297.43], [-2555.16, 297.33], [-2555.09, 300.02], [-2553.2, 299.96], [-2553.11, 303.14], [-2550.67, 303.07], [-2550.46, 310.03], [-2556.22, 310.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.918, "pop": 459, "jobs": 0}}, {"shape": {"outer": [[-2715.41, -56.4], [-2715.64, -66.79], [-2716.59, -66.78], [-2716.85, -78.56], [-2739.45, -78.05], [-2739.39, -75.4], [-2741.79, -75.34], [-2741.95, -82.4], [-2765.29, -81.87], [-2765.03, -70.45], [-2771.15, -70.32], [-2770.91, -59.75], [-2741.34, -60.43], [-2741.44, -64.62], [-2737.51, -64.71], [-2737.4, -59.71], [-2724.9, -59.99], [-2724.81, -56.18], [-2715.41, -56.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.674, "pop": 0, "jobs": 674}}, {"shape": {"outer": [[-2743.17, -35.43], [-2759.01, -34.97], [-2759.61, -55.29], [-2771.12, -54.96], [-2770.53, -34.98], [-2787.12, -34.49], [-2787.43, -44.84], [-2810.56, -44.16], [-2810.24, -33.52], [-2826.8, -33.03], [-2827.39, -52.78], [-2838.59, -52.46], [-2838.0, -32.37], [-2853.77, -31.9], [-2853.41, -19.42], [-2809.5, -20.72], [-2809.3, -13.9], [-2794.54, -14.33], [-2794.44, -10.96], [-2791.56, -11.04], [-2791.52, -9.44], [-2783.15, -9.69], [-2783.3, -14.85], [-2784.0, -14.83], [-2784.11, -18.38], [-2786.2, -18.32], [-2786.31, -21.93], [-2742.8, -23.23], [-2743.17, -35.43]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1480}}, {"shape": {"outer": [[-2877.65, -41.22], [-2877.8, -47.6], [-2865.21, -47.9], [-2865.74, -70.12], [-2878.31, -69.83], [-2877.86, -51.09], [-2892.41, -50.75], [-2892.84, -69.15], [-2928.2, -68.31], [-2927.95, -57.8], [-2931.58, -57.72], [-2931.82, -67.72], [-2945.1, -67.4], [-2944.64, -48.1], [-2931.34, -48.41], [-2931.39, -50.56], [-2927.76, -50.65], [-2927.64, -45.42], [-2924.62, -45.48], [-2924.25, -30.05], [-2901.3, -30.87], [-2898.59, -27.57], [-2894.57, -27.67], [-2892.48, -29.93], [-2892.6, -34.18], [-2895.96, -36.91], [-2896.36, -43.9], [-2891.12, -44.03], [-2891.04, -40.91], [-2877.65, -41.22]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1275}}, {"shape": {"outer": [[-3153.7, -94.78], [-3153.64, -91.87], [-3144.06, -92.15], [-3144.03, -88.97], [-3137.48, -89.09], [-3137.53, -87.16], [-3134.93, -87.28], [-3134.81, -78.23], [-3137.27, -78.14], [-3137.24, -70.4], [-3118.15, -70.83], [-3117.81, -61.52], [-3111.18, -61.73], [-3110.17, -60.65], [-3110.12, -58.35], [-3111.35, -57.6], [-3114.6, -57.51], [-3114.34, -48.08], [-3117.61, -47.98], [-3117.48, -41.59], [-3141.01, -40.97], [-3141.0, -40.34], [-3142.18, -40.29], [-3142.77, -39.31], [-3164.74, -38.71], [-3169.91, -38.57], [-3169.97, -41.75], [-3170.01, -44.04], [-3168.37, -44.08], [-3168.48, -46.55], [-3176.64, -46.35], [-3177.73, -46.71], [-3178.29, -47.41], [-3178.44, -48.42], [-3178.09, -49.71], [-3177.02, -50.31], [-3175.4, -50.37], [-3175.39, -55.94], [-3181.3, -55.68], [-3181.94, -77.86], [-3184.66, -77.79], [-3185.66, -78.5], [-3185.96, -79.69], [-3185.86, -80.67], [-3184.83, -81.78], [-3181.38, -81.83], [-3181.89, -96.29], [-3162.96, -97.11], [-3163.03, -94.6], [-3153.7, -94.78]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1899}}, {"shape": {"outer": [[-1572.95, -66.8], [-1572.99, -70.35], [-1571.76, -70.37], [-1572.06, -81.14], [-1569.21, -81.19], [-1556.66, -81.16], [-1557.28, -106.79], [-1557.3, -108.43], [-1548.9, -108.62], [-1549.56, -129.36], [-1549.6, -130.46], [-1554.79, -130.32], [-1593.14, -129.29], [-1593.19, -132.17], [-1593.32, -138.94], [-1597.53, -138.82], [-1597.3, -118.03], [-1601.28, -117.94], [-1604.89, -117.82], [-1607.09, -127.01], [-1615.36, -125.72], [-1617.43, -125.43], [-1619.66, -125.05], [-1630.5, -123.2], [-1626.98, -105.02], [-1620.87, -106.15], [-1616.61, -82.35], [-1635.48, -78.9], [-1635.23, -77.47], [-1633.26, -66.39], [-1614.39, -69.72], [-1614.54, -65.41], [-1596.66, -66.19], [-1585.18, -66.54], [-1572.95, -66.8]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2646}}, {"shape": {"outer": [[-1668.64, -100.57], [-1671.07, -114.14], [-1671.62, -114.05], [-1671.84, -115.31], [-1672.07, -116.58], [-1669.64, -117.02], [-1669.8, -117.86], [-1669.02, -118.0], [-1671.33, -131.07], [-1672.22, -130.91], [-1672.37, -131.8], [-1676.32, -131.11], [-1677.42, -137.31], [-1678.21, -137.18], [-1678.33, -137.83], [-1682.07, -137.18], [-1690.78, -135.65], [-1690.66, -134.98], [-1691.47, -134.83], [-1690.06, -126.82], [-1692.18, -126.45], [-1692.76, -126.35], [-1692.09, -122.57], [-1692.84, -122.42], [-1693.57, -122.32], [-1693.17, -120.05], [-1694.5, -119.77], [-1697.56, -119.27], [-1697.76, -120.55], [-1705.97, -125.69], [-1715.59, -124.3], [-1721.33, -116.09], [-1721.06, -114.41], [-1719.85, -107.65], [-1720.56, -107.53], [-1720.45, -106.88], [-1722.69, -106.49], [-1723.75, -106.31], [-1723.6, -105.48], [-1733.02, -103.83], [-1743.48, -102.01], [-1744.2, -106.1], [-1748.17, -105.41], [-1748.34, -106.35], [-1737.51, -108.24], [-1739.14, -117.52], [-1736.9, -117.92], [-1737.41, -120.84], [-1742.51, -119.95], [-1741.85, -116.28], [-1750.49, -114.77], [-1753.36, -131.0], [-1769.32, -128.2], [-1768.04, -120.9], [-1767.76, -119.37], [-1767.57, -118.3], [-1762.57, -89.93], [-1762.24, -88.11], [-1762.04, -86.99], [-1747.03, -89.63], [-1746.11, -89.79], [-1745.93, -88.75], [-1744.42, -89.02], [-1742.35, -89.39], [-1742.06, -87.79], [-1741.18, -87.95], [-1720.54, -91.58], [-1720.37, -90.65], [-1716.95, -91.25], [-1716.76, -90.17], [-1715.92, -90.31], [-1694.37, -94.14], [-1692.96, -94.4], [-1693.11, -95.21], [-1689.54, -95.85], [-1689.72, -96.83], [-1684.64, -97.74], [-1680.01, -98.56], [-1671.53, -100.06], [-1668.64, -100.57]], "holes": []}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4807}}, {"shape": {"outer": [[-1821.74, -15.3], [-1824.24, -14.75], [-1824.85, -14.62], [-1825.89, -14.43], [-1828.71, -30.78], [-1840.89, -28.69], [-1840.31, -24.47], [-1842.12, -24.11], [-1840.99, -17.78], [-1839.12, -18.1], [-1838.91, -17.16], [-1838.72, -16.09], [-1838.51, -14.88], [-1838.07, -12.31], [-1841.56, -11.73], [-1841.72, -12.72], [-1842.47, -12.63], [-1843.59, -12.45], [-1844.45, -12.29], [-1845.22, -15.06], [-1846.96, -22.5], [-1847.81, -27.12], [-1867.67, -23.95], [-1866.18, -9.14], [-1867.99, -8.78], [-1870.14, -8.44], [-1869.62, -0.38], [-1869.19, 6.4], [-1857.74, 4.19], [-1855.88, 3.87], [-1853.99, 3.52], [-1843.0, 1.6], [-1842.56, 3.94], [-1839.17, 3.36], [-1835.13, 26.1], [-1834.69, 29.31], [-1857.21, 33.17], [-1858.11, 33.32], [-1856.57, 42.21], [-1860.5, 42.89], [-1859.2, 50.4], [-1860.27, 50.58], [-1859.2, 56.76], [-1858.29, 56.6], [-1856.92, 56.33], [-1854.34, 55.94], [-1854.67, 54.0], [-1844.14, 52.2], [-1819.59, 47.98], [-1817.73, 47.66], [-1814.28, 47.04], [-1813.23, 46.86], [-1813.76, 43.8], [-1814.3, 40.56], [-1814.71, 38.15], [-1812.45, 37.76], [-1813.17, 33.59], [-1813.58, 31.18], [-1817.02, 11.33], [-1817.24, 10.01], [-1817.51, 8.56], [-1821.74, -15.3]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3111}}, {"shape": {"outer": [[-2032.94, 54.56], [-2033.84, 26.02], [-2048.86, 26.49], [-2048.46, 38.96], [-2051.77, 39.06], [-2051.86, 36.24], [-2068.7, 36.78], [-2083.01, 37.25], [-2082.92, 39.95], [-2087.21, 40.08], [-2087.62, 27.27], [-2103.01, 27.75], [-2102.85, 32.76], [-2105.29, 32.84], [-2105.39, 29.5], [-2110.23, 29.66], [-2110.26, 28.92], [-2152.54, 30.25], [-2152.4, 34.94], [-2158.39, 35.12], [-2158.56, 29.81], [-2185.18, 30.65], [-2184.21, 62.46], [-2172.28, 62.03], [-2172.32, 63.75], [-2168.36, 63.22], [-2168.2, 64.49], [-2137.62, 60.38], [-2115.43, 61.5], [-2115.37, 60.57], [-2109.12, 60.69], [-2108.64, 55.83], [-2101.56, 55.61], [-2101.36, 62.09], [-2086.31, 61.62], [-2086.52, 55.14], [-2047.97, 53.92], [-2047.94, 55.04], [-2032.94, 54.56]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4683}}, {"shape": {"outer": [[-1998.56, -93.61], [-1998.74, -94.19], [-1999.26, -108.05], [-2013.41, -107.59], [-2017.55, -111.6], [-2021.32, -107.74], [-2029.38, -107.46], [-2028.79, -89.97], [-2028.7, -87.33], [-2034.03, -87.16], [-2033.46, -70.56], [-2034.23, -70.53], [-2033.85, -59.14], [-2032.92, -59.17], [-2032.37, -42.6], [-2018.03, -43.08], [-2019.5, -87.71], [-2020.51, -87.68], [-2020.61, -90.84], [-2020.67, -92.89], [-1998.56, -93.61]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.738, "pop": 0, "jobs": 738}}, {"shape": {"outer": [[-1974.98, -71.21], [-1980.76, -70.98], [-1980.74, -70.51], [-1990.18, -70.14], [-1989.02, -40.53], [-1962.05, -41.58], [-1962.09, -42.79], [-1958.89, -42.92], [-1958.41, -42.93], [-1959.08, -60.13], [-1974.53, -59.53], [-1974.98, -71.21]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.47, "pop": 0, "jobs": 470}}, {"shape": {"outer": [[-2049.84, -46.72], [-2092.86, -45.49], [-2093.62, -72.17], [-2050.6, -73.41], [-2049.84, -46.72]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.735, "pop": 0, "jobs": 735}}, {"shape": {"outer": [[-2114.86, -82.0], [-2116.06, -81.95], [-2116.24, -86.85], [-2129.23, -86.41], [-2129.08, -82.16], [-2130.48, -82.11], [-2129.67, -59.64], [-2136.48, -59.41], [-2136.42, -57.81], [-2137.79, -55.65], [-2137.82, -52.2], [-2157.9, -51.46], [-2157.87, -50.19], [-2165.24, -50.01], [-2165.13, -43.93], [-2164.56, -43.96], [-2164.44, -40.86], [-2165.01, -40.85], [-2164.89, -37.53], [-2158.12, -37.76], [-2157.54, -37.79], [-2157.51, -36.73], [-2130.83, -37.69], [-2130.75, -35.47], [-2110.27, -36.22], [-2110.6, -45.2], [-2110.95, -54.8], [-2113.88, -54.71], [-2114.86, -82.0]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.901, "pop": 0, "jobs": 901}}, {"shape": {"outer": [[-2219.18, -33.03], [-2220.05, -55.82], [-2220.94, -78.92], [-2191.38, -80.05], [-2189.62, -34.16], [-2219.18, -33.03]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.869, "pop": 0, "jobs": 869}}, {"shape": {"outer": [[-2419.75, 58.09], [-2418.7, 93.69], [-2416.39, 93.64], [-2416.33, 100.49], [-2409.9, 100.45], [-2404.6, 100.41], [-2404.15, 111.51], [-2397.47, 111.38], [-2397.37, 113.52], [-2388.68, 113.21], [-2366.97, 112.43], [-2368.11, 91.47], [-2386.18, 92.13], [-2384.71, 83.32], [-2381.7, 83.29], [-2375.72, 48.54], [-2371.06, 48.55], [-2371.02, 55.11], [-2321.99, 53.27], [-2322.05, 51.49], [-2315.92, 51.26], [-2315.99, 34.1], [-2320.5, 34.16], [-2320.82, 32.78], [-2337.07, 30.0], [-2337.28, 22.27], [-2332.96, 22.08], [-2333.01, 19.39], [-2333.14, 11.47], [-2339.57, 11.59], [-2339.66, 6.67], [-2357.03, 7.31], [-2373.13, 7.9], [-2373.03, 13.17], [-2381.8, 13.49], [-2381.47, 23.62], [-2374.5, 23.73], [-2377.98, 41.39], [-2379.82, 41.32], [-2380.17, 36.23], [-2420.42, 37.49], [-2419.75, 58.09]], "holes": []}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 9081}}, {"shape": {"outer": [[-2458.95, -28.81], [-2459.3, -37.21], [-2455.66, -37.36], [-2456.59, -59.05], [-2516.56, -56.47], [-2516.77, -62.52], [-2510.43, -64.47], [-2513.12, -72.66], [-2513.35, -78.67], [-2536.68, -77.65], [-2536.51, -68.25], [-2579.41, -66.88], [-2577.97, -21.39], [-2524.05, -24.06], [-2524.17, -26.65], [-2517.68, -26.92], [-2517.53, -23.39], [-2516.09, -23.46], [-2515.92, -19.47], [-2470.75, -21.42], [-2471.06, -28.3], [-2458.95, -28.81]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7201}}, {"shape": {"outer": [[-2430.5, -22.26], [-2431.88, -71.5], [-2413.26, -72.01], [-2411.89, -22.79], [-2430.5, -22.26]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.587, "pop": 0, "jobs": 587}}, {"shape": {"outer": [[-2353.84, -29.54], [-2354.29, -46.27], [-2356.45, -46.22], [-2391.66, -45.28], [-2392.03, -59.39], [-2360.78, -60.23], [-2361.41, -84.0], [-2376.52, -83.6], [-2376.73, -89.21], [-2387.99, -89.15], [-2388.05, -83.29], [-2393.42, -83.15], [-2392.94, -65.29], [-2407.26, -64.91], [-2406.4, -32.79], [-2400.55, -32.95], [-2400.43, -28.19], [-2377.53, -28.84], [-2353.84, -29.54]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1266}}, {"shape": {"outer": [[-2353.84, -29.54], [-2351.98, -29.59], [-2352.03, -31.29], [-2342.12, -31.6], [-2343.67, -81.67], [-2357.54, -81.24], [-2356.45, -46.22], [-2354.29, -46.27], [-2353.84, -29.54]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.426, "pop": 0, "jobs": 426}}, {"shape": {"outer": [[-2296.6, -31.44], [-2296.72, -35.68], [-2293.11, -35.79], [-2293.4, -47.89], [-2293.56, -54.57], [-2299.01, -54.41], [-2299.15, -59.2], [-2318.0, -58.66], [-2317.88, -54.42], [-2322.78, -54.37], [-2322.65, -49.25], [-2322.49, -42.18], [-2322.3, -34.39], [-2317.4, -34.53], [-2317.21, -31.04], [-2296.6, -31.44]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.468, "pop": 0, "jobs": 468}}, {"shape": {"outer": [[-2263.21, -31.12], [-2263.74, -49.29], [-2263.16, -49.31], [-2263.3, -54.78], [-2263.45, -59.6], [-2264.03, -59.58], [-2264.56, -77.95], [-2268.92, -77.83], [-2268.93, -78.24], [-2278.51, -77.96], [-2278.5, -77.55], [-2280.61, -77.49], [-2281.45, -77.47], [-2281.33, -73.01], [-2284.33, -72.93], [-2284.11, -65.36], [-2281.11, -65.45], [-2280.62, -48.36], [-2280.45, -42.71], [-2282.85, -42.64], [-2282.62, -34.68], [-2280.22, -34.74], [-2280.11, -30.64], [-2276.28, -30.75], [-2276.27, -30.43], [-2266.9, -30.7], [-2266.91, -31.01], [-2263.21, -31.12]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.542, "pop": 0, "jobs": 542}}, {"shape": {"outer": [[-2351.52, 90.28], [-2351.8, 78.73], [-2354.15, 78.79], [-2354.38, 69.62], [-2352.02, 69.57], [-2352.11, 66.02], [-2335.09, 65.61], [-2334.9, 73.51], [-2332.96, 73.46], [-2332.82, 79.18], [-2334.77, 79.23], [-2334.54, 88.14], [-2331.03, 88.05], [-2330.71, 100.91], [-2337.95, 101.08], [-2338.03, 97.61], [-2350.4, 97.91], [-2350.59, 90.27], [-2351.52, 90.28]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.401, "pop": 0, "jobs": 401}}, {"shape": {"outer": [[-2327.72, 95.43], [-2328.43, 69.05], [-2326.99, 69.01], [-2327.05, 68.49], [-2324.63, 67.28], [-2320.15, 67.2], [-2320.11, 68.87], [-2311.6, 68.64], [-2310.9, 94.97], [-2327.72, 95.43]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.29, "pop": 0, "jobs": 290}}, {"shape": {"outer": [[-2350.65, 128.42], [-2351.11, 112.31], [-2337.86, 111.93], [-2337.4, 128.04], [-2350.65, 128.42]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.18, "pop": 0, "jobs": 180}}, {"shape": {"outer": [[-2335.86, 150.72], [-2336.48, 130.48], [-2300.47, 129.39], [-2300.13, 140.52], [-2299.86, 149.64], [-2335.86, 150.72]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 0.817, "pop": 0, "jobs": 817}}, {"shape": {"outer": [[-2300.47, 129.39], [-2300.71, 123.29], [-2301.59, 97.58], [-2287.99, 97.11], [-2288.21, 90.66], [-2265.13, 89.87], [-2264.09, 120.27], [-2273.58, 120.59], [-2272.92, 139.59], [-2282.33, 139.91], [-2284.04, 141.88], [-2285.86, 141.94], [-2287.56, 142.0], [-2288.89, 140.13], [-2300.13, 140.52], [-2300.47, 129.39]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.995, "pop": 0, "jobs": 995}}, {"shape": {"outer": [[-2261.7, 74.35], [-2244.92, 73.87], [-2244.92, 72.1], [-2230.97, 71.75], [-2230.94, 73.02], [-2214.38, 72.8], [-2214.53, 64.2], [-2227.36, 64.57], [-2227.59, 56.5], [-2233.16, 51.04], [-2223.44, 50.81], [-2223.42, 51.69], [-2220.09, 51.56], [-2220.12, 50.59], [-2207.13, 50.33], [-2207.3, 42.44], [-2206.78, 42.43], [-2206.81, 40.96], [-2207.4, 40.97], [-2207.67, 29.39], [-2227.62, 29.84], [-2227.65, 28.88], [-2232.07, 28.95], [-2232.16, 24.96], [-2238.87, 25.12], [-2245.58, 25.28], [-2245.48, 29.27], [-2250.01, 29.4], [-2249.99, 30.5], [-2270.11, 30.95], [-2269.63, 52.07], [-2243.73, 51.35], [-2249.03, 57.05], [-2248.81, 64.92], [-2261.81, 65.29], [-2261.7, 74.35]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2293}}, {"shape": {"outer": [[-2028.16, 106.22], [-2021.84, 106.06], [-2021.81, 107.22], [-2014.66, 107.04], [-2014.72, 104.82], [-2013.68, 104.79], [-2014.05, 89.66], [-2024.02, 89.92], [-2023.99, 91.4], [-2028.53, 91.52], [-2028.16, 106.22]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.132, "pop": 0, "jobs": 132}}, {"shape": {"outer": [[-2317.42, 227.21], [-2325.39, 227.44], [-2328.7, 227.54], [-2333.98, 227.69], [-2334.15, 221.49], [-2334.77, 199.7], [-2334.95, 193.58], [-2332.55, 193.51], [-2332.62, 191.28], [-2330.1, 191.21], [-2327.55, 191.14], [-2327.5, 193.37], [-2318.76, 193.12], [-2318.54, 200.57], [-2304.37, 200.16], [-2304.29, 202.98], [-2301.8, 202.91], [-2301.41, 216.74], [-2304.38, 216.82], [-2304.13, 225.25], [-2317.46, 225.64], [-2317.42, 227.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.76, "pop": 380, "jobs": 0}}, {"shape": {"outer": [[-2109.95, -87.06], [-2116.24, -86.85], [-2129.23, -86.41], [-2155.49, -85.53], [-2156.21, -106.81], [-2110.66, -108.33], [-2109.95, -87.06]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.621, "pop": 0, "jobs": 621}}, {"shape": {"outer": [[-2174.15, -90.12], [-2174.45, -97.7], [-2175.24, -97.67], [-2175.53, -104.98], [-2174.73, -105.01], [-2175.1, -114.37], [-2175.47, -123.88], [-2176.26, -123.85], [-2176.52, -130.6], [-2175.73, -130.63], [-2175.95, -136.29], [-2176.99, -136.31], [-2178.14, -137.76], [-2178.14, -138.79], [-2165.18, -139.3], [-2164.74, -127.87], [-2163.74, -102.25], [-2163.29, -90.55], [-2174.15, -90.12]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.35, "pop": 0, "jobs": 350}}, {"shape": {"outer": [[-2221.9, -93.54], [-2222.06, -98.99], [-2222.81, -124.61], [-2222.99, -130.58], [-2218.62, -130.71], [-2218.87, -139.13], [-2218.9, -140.28], [-2212.16, -140.48], [-2211.89, -131.18], [-2200.69, -131.52], [-2199.6, -94.4], [-2203.56, -94.29], [-2203.51, -92.65], [-2217.23, -92.23], [-2217.27, -93.67], [-2221.9, -93.54]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.585, "pop": 0, "jobs": 585}}, {"shape": {"outer": [[-2203.52, -170.05], [-2203.62, -173.29], [-2202.78, -173.32], [-2202.96, -179.25], [-2203.07, -182.96], [-2224.76, -182.31], [-2223.69, -153.65], [-2223.14, -139.05], [-2218.87, -139.13], [-2218.9, -140.28], [-2212.16, -140.48], [-2169.19, -141.75], [-2169.36, -147.56], [-2157.6, -147.91], [-2157.81, -155.07], [-2152.79, -155.21], [-2152.68, -151.51], [-2113.89, -152.66], [-2114.69, -179.69], [-2113.48, -179.73], [-2113.69, -186.5], [-2150.41, -185.41], [-2150.37, -184.37], [-2156.76, -184.18], [-2158.72, -184.12], [-2158.74, -184.96], [-2169.5, -184.64], [-2169.1, -171.46], [-2170.01, -171.43], [-2176.31, -171.25], [-2176.47, -176.53], [-2190.22, -176.12], [-2190.05, -170.45], [-2203.52, -170.05]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4295}}, {"shape": {"outer": [[-1933.15, -110.71], [-1932.09, -110.76], [-1932.14, -112.04], [-1932.26, -115.64], [-1932.42, -119.78], [-1932.45, -120.48], [-1940.18, -120.19], [-1942.73, -120.1], [-1948.9, -119.87], [-1949.2, -128.09], [-1963.78, -127.55], [-1963.74, -126.72], [-1974.15, -126.33], [-1974.52, -136.28], [-2000.27, -135.32], [-1999.26, -108.05], [-1998.74, -94.19], [-1992.04, -94.44], [-1991.76, -86.98], [-1990.82, -87.02], [-1990.18, -70.14], [-1980.74, -70.51], [-1980.76, -70.98], [-1974.98, -71.21], [-1975.19, -75.95], [-1975.3, -80.56], [-1967.66, -80.85], [-1967.89, -85.85], [-1968.0, -88.67], [-1947.79, -89.43], [-1947.61, -84.54], [-1932.49, -85.14], [-1932.18, -85.01], [-1932.09, -85.19], [-1933.15, -110.71]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1939}}, {"shape": {"outer": [[-2068.57, -139.87], [-2069.16, -139.84], [-2069.34, -145.01], [-2080.63, -144.6], [-2080.44, -139.55], [-2081.12, -139.53], [-2079.99, -108.01], [-2095.7, -107.45], [-2095.2, -93.71], [-2051.05, -95.29], [-2051.54, -109.19], [-2067.45, -108.63], [-2068.57, -139.87]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.68, "pop": 0, "jobs": 680}}, {"shape": {"outer": [[-1889.27, -50.79], [-1889.49, -56.33], [-1889.53, -57.49], [-1889.57, -58.51], [-1890.43, -80.12], [-1890.51, -81.95], [-1891.72, -113.22], [-1862.73, -114.35], [-1859.54, -114.47], [-1855.77, -114.61], [-1855.83, -116.25], [-1835.95, -117.02], [-1835.86, -114.78], [-1799.52, -116.18], [-1799.26, -109.37], [-1799.19, -107.8], [-1799.15, -106.67], [-1798.9, -100.24], [-1811.5, -99.76], [-1836.19, -98.8], [-1836.15, -97.68], [-1836.89, -97.76], [-1840.27, -97.62], [-1873.24, -96.28], [-1873.11, -92.98], [-1873.06, -91.72], [-1873.01, -90.31], [-1872.26, -70.31], [-1859.28, -70.81], [-1859.25, -69.72], [-1859.18, -68.19], [-1858.6, -53.04], [-1859.43, -53.01], [-1871.5, -52.56], [-1871.73, -51.47], [-1889.27, -50.79]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1679}}, {"shape": {"outer": [[-1874.47, -120.1], [-1874.74, -128.01], [-1874.85, -131.46], [-1891.87, -130.88], [-1892.65, -153.64], [-1898.48, -153.43], [-1898.64, -158.1], [-1898.78, -162.2], [-1892.92, -162.4], [-1893.51, -179.84], [-1894.78, -179.79], [-1895.24, -193.25], [-1894.46, -193.29], [-1894.49, -193.85], [-1893.83, -193.87], [-1893.85, -194.29], [-1884.87, -194.61], [-1884.86, -194.13], [-1861.6, -194.94], [-1861.63, -195.83], [-1857.86, -195.96], [-1857.89, -196.74], [-1852.07, -196.94], [-1845.6, -197.15], [-1839.27, -197.37], [-1839.24, -196.68], [-1835.51, -196.81], [-1835.49, -196.28], [-1830.96, -196.43], [-1811.37, -197.09], [-1811.39, -197.68], [-1803.34, -197.96], [-1803.32, -197.44], [-1802.78, -197.46], [-1802.76, -196.89], [-1802.37, -196.91], [-1801.91, -183.3], [-1802.77, -183.27], [-1801.22, -138.14], [-1805.15, -138.01], [-1815.3, -137.66], [-1815.84, -153.68], [-1816.06, -159.92], [-1820.83, -159.76], [-1820.61, -153.49], [-1855.5, -152.3], [-1854.43, -120.79], [-1859.82, -120.6], [-1862.97, -120.5], [-1874.47, -120.1]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7282}}, {"shape": {"outer": [[-1733.42, -121.3], [-1728.13, -122.14], [-1726.74, -113.5], [-1721.06, -114.41], [-1721.33, -116.09], [-1715.59, -124.3], [-1705.97, -125.69], [-1697.76, -120.55], [-1697.56, -119.27], [-1694.5, -119.77], [-1695.06, -123.2], [-1693.49, -123.46], [-1694.41, -129.01], [-1695.91, -128.77], [-1699.62, -151.22], [-1705.83, -150.2], [-1705.93, -150.87], [-1712.14, -149.85], [-1711.97, -148.8], [-1730.79, -145.78], [-1730.39, -143.31], [-1730.19, -142.06], [-1736.59, -141.03], [-1733.42, -121.3]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.654, "pop": 0, "jobs": 654}}, {"shape": {"outer": [[-1691.2, -178.81], [-1674.63, -179.52], [-1674.73, -181.71], [-1660.03, -182.35], [-1659.82, -177.43], [-1652.49, -177.74], [-1645.64, -178.04], [-1645.85, -183.1], [-1630.82, -183.74], [-1630.73, -181.56], [-1614.2, -182.28], [-1614.94, -196.22], [-1615.31, -208.01], [-1631.88, -207.31], [-1631.78, -205.11], [-1650.62, -204.3], [-1654.06, -204.15], [-1657.18, -204.01], [-1663.54, -203.74], [-1675.73, -203.23], [-1675.81, -205.21], [-1692.29, -204.51], [-1691.2, -178.81]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1566}}, {"shape": {"outer": [[-1601.31, -171.19], [-1597.7, -171.44], [-1571.84, -172.55], [-1572.14, -179.49], [-1572.29, -188.42], [-1575.42, -188.29], [-1585.28, -187.9], [-1585.61, -196.41], [-1585.95, -205.04], [-1575.91, -205.43], [-1572.97, -205.55], [-1573.6, -221.61], [-1603.27, -220.44], [-1601.31, -171.19]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 1080, "jobs": 0}}, {"shape": {"outer": [[-1539.72, -82.8], [-1532.74, -83.06], [-1531.36, -83.11], [-1530.28, -83.15], [-1522.84, -83.42], [-1522.86, -84.02], [-1517.63, -84.22], [-1517.49, -80.35], [-1508.94, -80.66], [-1507.37, -80.72], [-1506.03, -80.77], [-1497.5, -81.07], [-1495.95, -81.12], [-1494.51, -81.18], [-1492.95, -81.23], [-1493.18, -87.45], [-1494.02, -87.43], [-1494.48, -100.67], [-1495.4, -100.65], [-1495.45, -102.4], [-1495.52, -104.03], [-1498.17, -103.93], [-1498.98, -103.91], [-1499.01, -104.7], [-1502.11, -104.59], [-1511.13, -104.27], [-1517.91, -104.04], [-1518.15, -103.34], [-1521.52, -103.22], [-1524.34, -103.12], [-1524.49, -107.15], [-1524.97, -107.12], [-1540.59, -106.55], [-1539.72, -82.8]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.593, "pop": 0, "jobs": 593}}, {"shape": {"outer": [[-1495.74, -154.74], [-1488.8, -158.92], [-1490.81, -161.61], [-1489.84, -162.2], [-1485.96, -164.6], [-1494.76, -178.77], [-1494.86, -181.58], [-1489.39, -181.79], [-1489.49, -184.49], [-1489.58, -186.87], [-1495.1, -186.66], [-1495.21, -189.66], [-1487.34, -204.86], [-1489.0, -205.71], [-1491.43, -206.96], [-1490.98, -207.84], [-1490.51, -208.74], [-1490.27, -209.21], [-1497.86, -213.11], [-1499.0, -210.91], [-1500.05, -211.46], [-1501.06, -209.51], [-1507.23, -197.58], [-1506.23, -197.07], [-1507.1, -195.4], [-1509.02, -194.22], [-1510.36, -196.38], [-1509.26, -197.07], [-1510.95, -199.8], [-1519.26, -194.68], [-1517.52, -191.88], [-1516.25, -192.66], [-1514.94, -190.54], [-1517.55, -188.93], [-1519.88, -188.84], [-1519.92, -190.04], [-1533.84, -189.51], [-1533.8, -188.25], [-1536.65, -188.14], [-1536.33, -181.18], [-1533.45, -181.31], [-1533.26, -176.73], [-1516.58, -177.38], [-1509.09, -173.47], [-1506.15, -171.93], [-1495.74, -154.74]], "holes": []}, "height": 38.5, "data": {"type": "residential", "density": 1.0, "pop": 2322, "jobs": 0}}, {"shape": {"outer": [[-1662.06, -51.89], [-1668.02, -86.34], [-1654.98, -88.58], [-1649.02, -54.13], [-1649.78, -54.0], [-1660.76, -52.12], [-1662.06, -51.89]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 0.518, "pop": 0, "jobs": 518}}, {"shape": {"outer": [[-1380.03, -2007.36], [-1365.4, -2035.02], [-1360.06, -2032.22], [-1353.52, -2028.79], [-1368.15, -2001.13], [-1380.03, -2007.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.336, "pop": 168, "jobs": 0}}, {"shape": {"outer": [[-1948.04, -1789.54], [-1821.35, -1793.06], [-1821.52, -1799.35], [-1816.76, -1799.48], [-1818.49, -1861.62], [-1824.04, -1861.46], [-1824.19, -1866.8], [-1885.52, -1865.09], [-1940.56, -1863.57], [-1944.37, -1863.46], [-1950.08, -1863.31], [-1948.04, -1789.54]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6172}}, {"shape": {"outer": [[-1230.41, -689.44], [-1230.5, -683.29], [-1230.24, -676.55], [-1228.4, -667.36], [-1227.1, -662.62], [-1224.23, -655.43], [-1221.18, -649.52], [-1218.31, -644.97], [-1212.83, -638.06], [-1210.27, -635.18], [-1208.1, -632.53], [-1207.72, -618.03], [-1200.41, -626.3], [-1193.41, -621.94], [-1187.03, -618.76], [-1179.81, -616.1], [-1172.81, -614.32], [-1170.88, -613.83], [-1163.92, -612.9], [-1157.24, -612.68], [-1150.31, -612.89], [-1142.73, -614.0], [-1135.6, -615.86], [-1133.41, -616.72], [-1129.09, -618.4], [-1122.84, -621.27], [-1118.25, -623.64], [-1114.08, -626.58], [-1112.09, -627.92], [-1110.54, -629.17], [-1101.1, -629.76], [-1107.04, -752.16], [-1107.64, -751.8], [-1107.74, -755.47], [-1112.5, -753.24], [-1116.6, -751.48], [-1116.38, -747.95], [-1116.85, -747.77], [-1125.02, -744.06], [-1125.86, -744.76], [-1127.25, -745.73], [-1129.17, -746.61], [-1130.53, -747.3], [-1132.59, -748.18], [-1134.46, -748.89], [-1136.86, -749.69], [-1138.99, -750.29], [-1141.34, -750.91], [-1143.61, -751.35], [-1146.48, -751.93], [-1149.32, -752.29], [-1151.43, -752.45], [-1154.17, -752.48], [-1156.47, -752.5], [-1158.96, -752.46], [-1161.21, -752.42], [-1163.73, -752.36], [-1166.05, -752.13], [-1168.47, -751.89], [-1170.67, -751.57], [-1172.59, -751.17], [-1175.18, -750.55], [-1177.32, -749.99], [-1180.93, -748.68], [-1183.42, -747.66], [-1186.87, -746.16], [-1187.27, -746.96], [-1212.31, -735.86], [-1213.28, -735.43], [-1211.23, -693.4], [-1230.41, -692.6], [-1230.41, -689.44]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 16461}}, {"shape": {"outer": [[-2448.98, -341.23], [-2449.31, -348.52], [-2448.58, -348.55], [-2452.42, -426.64], [-2453.22, -426.6], [-2453.38, -430.1], [-2446.35, -430.42], [-2446.4, -431.68], [-2441.12, -431.91], [-2441.18, -433.39], [-2438.37, -433.52], [-2438.32, -432.08], [-2437.05, -432.13], [-2407.85, -433.34], [-2403.53, -433.52], [-2403.61, -435.55], [-2396.51, -435.85], [-2396.43, -434.01], [-2395.72, -416.53], [-2395.44, -409.41], [-2393.06, -350.66], [-2391.82, -350.71], [-2391.66, -347.01], [-2398.5, -346.73], [-2398.44, -345.34], [-2417.73, -344.51], [-2422.75, -344.29], [-2441.51, -343.48], [-2441.42, -341.56], [-2448.98, -341.23]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6954}}, {"shape": {"outer": [[-2390.14, -302.97], [-2389.04, -275.9], [-2387.27, -235.02], [-2398.95, -234.52], [-2398.81, -231.16], [-2404.34, -230.92], [-2439.76, -229.41], [-2445.5, -229.17], [-2445.64, -232.55], [-2457.65, -232.04], [-2458.47, -249.64], [-2458.55, -252.88], [-2461.02, -310.89], [-2446.1, -311.53], [-2446.32, -316.57], [-2405.66, -318.3], [-2405.44, -313.26], [-2390.63, -313.9], [-2390.14, -302.97]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4977}}, {"shape": {"outer": [[-2529.31, -235.43], [-2532.67, -314.23], [-2530.04, -315.0], [-2530.1, -321.33], [-2498.19, -322.75], [-2496.16, -322.21], [-2481.83, -325.58], [-2479.38, -325.43], [-2479.51, -319.55], [-2478.38, -319.47], [-2478.29, -313.74], [-2479.65, -313.68], [-2479.77, -308.8], [-2478.04, -308.76], [-2475.33, -252.22], [-2475.19, -248.8], [-2474.22, -228.39], [-2481.91, -227.6], [-2490.21, -227.24], [-2498.66, -227.75], [-2508.07, -229.06], [-2513.92, -230.41], [-2520.91, -232.21], [-2529.31, -235.43]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4252}}, {"shape": {"outer": [[-2365.65, -307.69], [-2361.89, -307.84], [-2361.99, -310.69], [-2330.28, -311.9], [-2330.18, -309.37], [-2326.34, -309.51], [-2325.6, -290.24], [-2329.42, -290.09], [-2329.31, -287.38], [-2332.41, -287.26], [-2335.21, -287.16], [-2334.85, -277.92], [-2389.04, -275.9], [-2390.14, -302.97], [-2365.5, -303.86], [-2365.65, -307.69]], "holes": []}, "height": 56.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 8399}}, {"shape": {"outer": [[-2329.88, -348.24], [-2294.55, -349.77], [-2294.4, -346.47], [-2288.4, -346.74], [-2288.23, -342.9], [-2216.93, -345.97], [-2217.09, -349.81], [-2211.47, -350.05], [-2211.62, -353.34], [-2175.6, -354.89], [-2176.26, -369.94], [-2201.75, -368.84], [-2202.4, -384.04], [-2170.9, -385.39], [-2171.59, -401.28], [-2202.98, -399.93], [-2203.61, -414.51], [-2177.76, -415.62], [-2178.53, -433.48], [-2333.28, -426.82], [-2332.52, -409.48], [-2310.95, -410.41], [-2310.3, -395.37], [-2332.04, -394.43], [-2331.37, -378.81], [-2309.37, -379.77], [-2308.83, -367.34], [-2330.66, -366.41], [-2329.88, -348.24]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 16020}}, {"shape": {"outer": [[-2387.79, -447.96], [-2396.01, -447.52], [-2407.27, -463.08], [-2399.46, -469.44], [-2393.18, -474.94], [-2388.41, -480.09], [-2385.63, -483.11], [-2379.59, -490.33], [-2374.32, -499.11], [-2370.56, -507.28], [-2367.41, -514.51], [-2366.09, -518.49], [-2350.23, -518.65], [-2273.01, -520.4], [-2272.81, -512.32], [-2274.69, -512.21], [-2273.12, -456.87], [-2271.39, -456.92], [-2271.21, -448.32], [-2387.63, -445.14], [-2387.79, -447.96]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5236}}, {"shape": {"outer": [[-2360.09, -233.2], [-2359.04, -233.24], [-2358.97, -231.46], [-2346.25, -231.93], [-2346.32, -233.71], [-2337.35, -234.05], [-2337.32, -233.25], [-2331.81, -233.45], [-2326.51, -233.65], [-2326.54, -234.45], [-2318.01, -234.76], [-2317.95, -233.16], [-2303.39, -233.69], [-2303.45, -235.29], [-2296.78, -235.54], [-2298.0, -268.56], [-2327.67, -267.46], [-2327.77, -270.07], [-2331.75, -269.92], [-2334.51, -269.82], [-2339.54, -269.63], [-2339.44, -267.03], [-2346.9, -266.75], [-2346.89, -266.31], [-2356.13, -265.96], [-2355.9, -259.88], [-2361.06, -259.68], [-2360.09, -233.2]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1798}}, {"shape": {"outer": [[-562.05, -113.86], [-532.3, -146.84], [-536.03, -150.17], [-501.8, -188.1], [-497.48, -184.22], [-490.3, -192.19], [-494.3, -195.77], [-480.12, -211.49], [-476.44, -208.2], [-450.32, -237.13], [-406.77, -198.1], [-405.78, -199.2], [-389.08, -184.22], [-396.3, -176.25], [-394.77, -174.88], [-416.53, -150.79], [-418.19, -152.28], [-445.58, -121.97], [-452.28, -119.17], [-562.05, -113.86]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 8957}}, {"shape": {"outer": [[229.59, -203.41], [240.87, -192.98], [262.64, -216.4], [251.35, -226.81], [229.59, -203.41]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.413, "pop": 0, "jobs": 413}}, {"shape": {"outer": [[117.47, -335.46], [119.32, -333.8], [121.46, -331.99], [123.82, -329.97], [145.66, -310.2], [127.32, -289.99], [130.31, -287.31], [132.72, -285.13], [124.6, -276.16], [118.51, -281.64], [102.7, -264.19], [99.69, -266.9], [81.39, -283.36], [79.25, -285.3], [77.11, -287.22], [75.26, -288.89], [77.3, -291.14], [78.87, -292.87], [82.25, -296.6], [93.45, -308.96], [95.31, -311.01], [98.19, -314.18], [99.97, -316.14], [117.47, -335.46]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2057}}, {"shape": {"outer": [[-328.44, -70.83], [-253.66, -3.98], [-280.07, 25.35], [-290.93, 15.65], [-315.79, -6.57], [-339.81, -28.04], [-353.56, -40.33], [-353.16, -40.76], [-354.47, -41.93], [-349.67, -47.26], [-350.36, -47.87], [-333.73, -66.36], [-333.03, -65.73], [-328.44, -70.83]], "holes": []}, "height": 42.0, "data": {"type": "residential", "density": 1.0, "pop": 8362, "jobs": 0}}, {"shape": {"outer": [[-121.47, 60.5], [-146.91, 88.25], [-160.55, 75.85], [-159.46, 74.66], [-161.6, 72.72], [-138.4, 47.43], [-137.34, 46.28], [-136.42, 47.11], [-134.97, 48.43], [-133.66, 47.02], [-128.71, 51.54], [-124.6, 55.27], [-125.78, 56.58], [-121.47, 60.5]], "holes": []}, "height": 35.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2293}}, {"shape": {"outer": [[46.33, -93.76], [59.93, -81.68], [76.41, -67.03], [80.82, -63.11], [106.22, -40.54], [102.82, -36.74], [61.58, 9.34], [1.39, -44.15], [23.18, -68.49], [26.13, -65.87], [31.77, -72.18], [29.16, -74.5], [35.42, -81.5], [37.95, -79.24], [43.15, -85.06], [40.58, -87.34], [46.33, -93.76]], "holes": []}, "height": 35.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 14892}}, {"shape": {"outer": [[-196.31, -7.31], [-184.62, 3.35], [-182.73, 1.31], [-179.74, 4.05], [-177.06, 6.48], [-178.98, 8.58], [-166.02, 20.39], [-169.49, 24.21], [-192.79, 49.55], [-195.52, 52.52], [-225.86, 24.89], [-196.31, -7.31]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1161}}, {"shape": {"outer": [[191.52, -94.99], [218.05, -71.1], [226.69, -63.32], [242.98, -48.78], [218.61, -22.19], [167.98, -68.93], [191.52, -94.99]], "holes": []}, "height": 31.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6186}}, {"shape": {"outer": [[64.02, 64.96], [45.67, 85.36], [49.99, 89.22], [42.18, 97.89], [41.16, 96.99], [26.78, 84.37], [23.65, 81.58], [49.94, 52.37], [64.02, 64.96]], "holes": []}, "height": 35.0, "data": {"type": "residential", "density": 1.0, "pop": 1416, "jobs": 0}}, {"shape": {"outer": [[71.91, 72.31], [93.03, 91.79], [76.44, 109.66], [67.93, 101.81], [58.58, 111.85], [45.98, 100.23], [71.91, 72.31]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.599, "pop": 0, "jobs": 599}}, {"shape": {"outer": [[-138.4, 47.43], [-139.72, 46.22], [-140.78, 45.27], [-139.19, 43.54], [-141.41, 41.53], [-144.06, 39.1], [-161.59, 23.08], [-165.76, 27.61], [-169.49, 24.21], [-192.79, 49.55], [-188.57, 53.39], [-173.03, 67.59], [-175.75, 70.55], [-174.91, 71.31], [-173.96, 72.17], [-171.25, 69.22], [-170.37, 70.01], [-169.54, 69.11], [-168.57, 68.05], [-162.45, 73.63], [-161.6, 72.72], [-138.4, 47.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 606, "jobs": 0}}, {"shape": {"outer": [[270.47, -210.82], [293.3, -188.75], [287.17, -182.3], [284.76, -179.26], [284.2, -179.55], [284.68, -167.52], [285.05, -158.46], [285.16, -156.01], [276.7, -155.54], [276.74, -154.44], [260.04, -153.83], [259.53, -155.02], [251.35, -154.75], [249.81, -188.6], [270.47, -210.82]], "holes": []}, "height": 38.5, "data": {"type": "residential", "density": 1.0, "pop": 3231, "jobs": 0}}, {"shape": {"outer": [[264.27, -134.51], [296.14, -104.92], [252.49, -56.65], [236.45, -71.53], [235.0, -72.88], [221.07, -85.81], [264.27, -134.51]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5507}}, {"shape": {"outer": [[-115.55, 86.26], [-113.65, 129.89], [-117.35, 133.4], [-132.24, 133.94], [-137.52, 129.01], [-142.9, 134.73], [-152.74, 125.59], [-116.68, 86.1], [-115.55, 86.26]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1167}}, {"shape": {"outer": [[142.41, -47.73], [164.59, -27.59], [158.24, -20.01], [170.81, -8.6], [177.2, -14.44], [199.63, 5.82], [173.8, 35.3], [167.05, 28.53], [155.65, 42.34], [161.04, 47.42], [136.33, 74.15], [114.47, 54.52], [118.67, 48.63], [105.22, 36.81], [100.17, 43.48], [79.04, 22.75], [106.17, -6.77], [111.77, -1.81], [114.11, -4.21], [111.65, -6.49], [118.53, -13.98], [120.94, -11.92], [122.82, -14.08], [117.06, -19.71], [142.41, -47.73]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 9515}}, {"shape": {"outer": [[-150.9, 93.26], [-173.96, 72.17], [-174.91, 71.31], [-175.75, 70.55], [-195.52, 52.52], [-217.9, 76.83], [-220.62, 79.5], [-213.31, 86.19], [-209.92, 89.28], [-179.94, 116.69], [-176.35, 112.79], [-172.3, 116.48], [-161.23, 104.48], [-158.23, 101.22], [-150.9, 93.26]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1408}}, {"shape": {"outer": [[-83.28, -289.47], [-84.46, -288.16], [-90.6, -293.6], [-92.15, -291.87], [-95.97, -295.25], [-100.78, -299.51], [-99.33, -301.14], [-110.07, -310.65], [-97.58, -324.65], [-71.93, -353.41], [-58.02, -369.0], [-54.97, -366.29], [-29.5, -343.72], [-42.94, -328.74], [-80.45, -286.97], [-83.28, -289.47]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1911}}, {"shape": {"outer": [[-83.07, -284.06], [-80.45, -286.97], [-42.94, -328.74], [-29.5, -343.72], [16.96, -302.32], [-5.36, -277.45], [-30.4, -299.78], [-34.42, -295.31], [-61.67, -264.97], [-83.07, -284.06]], "holes": []}, "height": 28.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7662}}, {"shape": {"outer": [[-53.12, -257.48], [-36.24, -242.36], [-8.96, -272.31], [-25.83, -287.58], [-53.12, -257.48]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1805}}, {"shape": {"outer": [[-225.86, 24.89], [-230.66, 30.18], [-233.37, 33.16], [-247.8, 48.94], [-246.43, 50.18], [-249.63, 53.69], [-224.61, 76.38], [-221.79, 73.3], [-219.99, 74.94], [-217.9, 76.83], [-195.52, 52.52], [-225.86, 24.89]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2093}}, {"shape": {"outer": [[1325.59, 1728.09], [1334.15, 1723.95], [1340.88, 1728.38], [1343.36, 1727.76], [1351.9, 1738.33], [1346.83, 1741.74], [1349.49, 1745.17], [1340.0, 1752.9], [1337.9, 1751.34], [1325.56, 1762.32], [1316.03, 1751.21], [1324.57, 1742.83], [1321.85, 1736.34], [1325.59, 1728.09]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.473, "pop": 0, "jobs": 473}}, {"shape": {"outer": [[-1280.35, -51.14], [-1280.25, -48.95], [-1279.87, -40.7], [-1279.34, -40.73], [-1278.79, -28.74], [-1278.55, -23.59], [-1279.61, -23.55], [-1279.44, -19.9], [-1279.83, -19.88], [-1279.71, -17.28], [-1279.56, -14.13], [-1279.45, -11.77], [-1279.06, -11.78], [-1278.89, -8.17], [-1277.68, -8.22], [-1277.5, -4.36], [-1276.87, 9.15], [-1277.31, 9.17], [-1277.0, 15.81], [-1276.83, 19.25], [-1263.09, 18.6], [-1263.05, 19.53], [-1259.46, 19.36], [-1256.02, 19.21], [-1256.08, 17.9], [-1212.67, 15.86], [-1212.65, 16.18], [-1201.05, 15.64], [-1201.09, 14.74], [-1194.67, 14.44], [-1194.76, 12.45], [-1195.31, 0.7], [-1198.47, 0.85], [-1201.61, 1.0], [-1201.7, -0.87], [-1201.8, -3.12], [-1202.35, -3.1], [-1202.88, -14.33], [-1203.13, -19.82], [-1205.87, -19.69], [-1205.92, -20.79], [-1203.2, -20.91], [-1202.09, -20.97], [-1200.52, -21.04], [-1198.04, -21.16], [-1196.53, -21.23], [-1198.21, -57.5], [-1199.09, -57.45], [-1199.14, -58.64], [-1199.21, -60.15], [-1232.12, -58.64], [-1232.05, -57.18], [-1231.88, -53.4], [-1250.58, -52.55], [-1251.69, -53.5], [-1252.97, -53.74], [-1254.46, -53.31], [-1255.67, -52.27], [-1280.35, -51.14]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 11386}}, {"shape": {"outer": [[-1254.71, -77.72], [-1254.72, -78.04], [-1255.06, -85.15], [-1255.14, -87.4], [-1256.21, -108.96], [-1256.63, -117.45], [-1256.67, -118.2], [-1224.48, -119.8], [-1203.94, -120.82], [-1203.59, -113.71], [-1203.3, -107.99], [-1203.21, -106.08], [-1202.89, -106.1], [-1201.75, -83.43], [-1201.6, -80.27], [-1204.9, -80.11], [-1215.53, -79.58], [-1227.45, -78.98], [-1227.47, -79.43], [-1231.01, -79.25], [-1230.99, -78.87], [-1238.85, -78.49], [-1247.22, -78.08], [-1254.71, -77.72]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1204}}, {"shape": {"outer": [[-1249.83, -127.29], [-1242.49, -127.68], [-1242.33, -124.84], [-1225.58, -125.72], [-1225.75, -128.95], [-1222.01, -129.14], [-1217.57, -129.38], [-1218.99, -156.2], [-1219.11, -158.58], [-1219.25, -161.09], [-1219.34, -162.87], [-1227.89, -162.43], [-1228.1, -166.38], [-1228.21, -168.38], [-1244.6, -167.51], [-1244.5, -165.65], [-1244.31, -162.05], [-1251.66, -161.66], [-1251.5, -158.57], [-1251.29, -154.58], [-1250.38, -137.59], [-1250.2, -134.07], [-1249.88, -128.25], [-1249.83, -127.29]], "holes": []}, "height": 28.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2785}}, {"shape": {"outer": [[-1188.95, -862.99], [-1170.59, -871.35], [-1164.99, -859.13], [-1155.13, -863.63], [-1146.61, -845.04], [-1184.96, -827.6], [-1193.51, -846.25], [-1183.39, -850.85], [-1188.95, -862.99]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.952, "pop": 0, "jobs": 952}}, {"shape": {"outer": [[29.07, -458.08], [59.75, -491.5], [63.36, -495.45], [75.18, -484.68], [64.38, -472.92], [56.83, -464.69], [72.06, -450.82], [79.28, -458.68], [90.65, -471.06], [105.17, -457.84], [93.35, -444.95], [95.67, -442.84], [93.49, -440.48], [90.89, -442.85], [85.8, -437.3], [102.19, -422.36], [107.43, -428.07], [104.53, -430.72], [106.57, -432.95], [109.23, -430.51], [120.78, -443.09], [128.16, -436.3], [132.78, -432.16], [131.24, -430.48], [118.99, -417.13], [108.77, -405.99], [99.23, -395.59], [97.7, -396.98], [86.07, -407.58], [87.08, -408.67], [73.87, -420.71], [72.04, -418.72], [56.32, -433.03], [57.56, -434.39], [43.89, -446.83], [42.76, -445.6], [29.07, -458.08]], "holes": []}, "height": 53.9, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 15251}}, {"shape": {"outer": [[-1561.22, -526.72], [-1559.69, -528.48], [-1549.86, -528.83], [-1548.6, -527.47], [-1536.73, -528.04], [-1536.7, -528.93], [-1533.88, -529.01], [-1530.95, -529.09], [-1530.92, -528.3], [-1519.15, -528.83], [-1517.7, -530.39], [-1508.32, -530.79], [-1506.19, -528.84], [-1506.04, -519.67], [-1507.09, -518.24], [-1507.6, -517.54], [-1517.59, -517.12], [-1518.79, -518.47], [-1547.63, -517.38], [-1549.19, -515.73], [-1558.86, -515.42], [-1558.9, -517.26], [-1560.32, -517.27], [-1560.94, -517.27], [-1561.22, -526.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.506, "pop": 253, "jobs": 0}}, {"shape": {"outer": [[-1665.86, -510.6], [-1661.95, -515.18], [-1660.83, -514.23], [-1658.8, -515.7], [-1659.5, -517.32], [-1613.81, -539.75], [-1611.49, -535.02], [-1610.99, -525.46], [-1610.08, -524.07], [-1609.14, -514.4], [-1608.24, -513.13], [-1613.64, -507.3], [-1614.8, -508.18], [-1659.42, -506.73], [-1660.62, -505.24], [-1665.86, -510.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.88, "pop": 440, "jobs": 0}}, {"shape": {"outer": [[-1476.75, -1279.28], [-1477.47, -1300.18], [-1452.72, -1301.05], [-1440.54, -1288.35], [-1440.33, -1280.52], [-1443.09, -1280.44], [-1476.75, -1279.28]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.44, "pop": 0, "jobs": 440}}, {"shape": {"outer": [[-1550.41, -1333.18], [-1542.27, -1333.35], [-1541.77, -1310.45], [-1550.02, -1310.27], [-1550.22, -1319.53], [-1552.68, -1319.47], [-1552.91, -1330.36], [-1550.35, -1330.41], [-1550.41, -1333.18]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.138, "pop": 0, "jobs": 138}}, {"shape": {"outer": [[-1265.72, -832.83], [-1252.35, -838.64], [-1249.11, -841.3], [-1245.72, -843.65], [-1242.16, -845.9], [-1238.21, -847.77], [-1234.38, -849.25], [-1230.36, -850.43], [-1226.45, -851.44], [-1222.47, -852.21], [-1208.54, -858.83], [-1199.58, -839.25], [-1225.08, -827.65], [-1224.88, -827.23], [-1224.68, -826.8], [-1230.97, -823.95], [-1231.17, -824.37], [-1231.38, -824.82], [-1256.76, -813.28], [-1265.72, -832.83]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.895, "pop": 0, "jobs": 895}}, {"shape": {"outer": [[-1348.8, -831.7], [-1330.51, -791.3], [-1328.04, -785.95], [-1326.23, -782.18], [-1289.52, -798.97], [-1296.67, -815.01], [-1292.01, -817.22], [-1294.3, -822.45], [-1293.72, -822.72], [-1295.11, -825.76], [-1296.9, -829.79], [-1297.59, -829.49], [-1299.77, -834.46], [-1304.99, -832.58], [-1312.3, -848.7], [-1348.8, -831.7]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1942}}, {"shape": {"outer": [[-880.61, -848.66], [-853.46, -878.34], [-829.54, -856.63], [-844.5, -840.26], [-842.47, -838.43], [-850.61, -829.53], [-852.7, -831.43], [-856.75, -827.0], [-880.61, -848.66]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.746, "pop": 0, "jobs": 746}}, {"shape": {"outer": [[-1422.09, -766.64], [-1402.4, -767.64], [-1403.17, -782.44], [-1374.87, -783.93], [-1374.0, -783.63], [-1373.57, -782.93], [-1371.18, -737.19], [-1372.16, -736.2], [-1376.92, -736.01], [-1376.1, -718.45], [-1375.91, -714.75], [-1371.06, -713.36], [-1370.01, -712.09], [-1369.98, -708.9], [-1374.39, -706.77], [-1415.32, -687.02], [-1416.43, -686.49], [-1417.23, -686.21], [-1418.01, -686.29], [-1418.62, -686.76], [-1418.95, -687.48], [-1423.12, -765.58], [-1422.8, -766.2], [-1422.09, -766.64]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2166}}, {"shape": {"outer": [[-1087.14, -760.79], [-1041.61, -774.32], [-1027.44, -761.31], [-984.29, -721.69], [-983.92, -718.09], [-1015.48, -716.43], [-1008.36, -689.26], [-1032.48, -683.13], [-1034.04, -689.55], [-1074.97, -678.79], [-1083.18, -709.48], [-1075.0, -711.5], [-1087.14, -760.79]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3364}}, {"shape": {"outer": [[-825.93, -801.13], [-812.13, -816.07], [-805.15, -809.68], [-787.92, -828.34], [-784.5, -825.2], [-778.67, -819.86], [-773.8, -815.4], [-803.81, -782.84], [-804.82, -781.78], [-825.93, -801.13]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 936, "jobs": 0}}, {"shape": {"outer": [[-980.26, -951.55], [-974.1, -958.29], [-972.14, -956.53], [-966.98, -962.2], [-963.6, -959.14], [-963.98, -958.73], [-944.54, -941.13], [-938.9, -947.31], [-927.51, -937.0], [-948.47, -914.01], [-959.84, -924.29], [-958.81, -925.42], [-964.96, -930.98], [-965.87, -929.97], [-970.55, -934.22], [-969.61, -935.27], [-976.89, -941.86], [-977.69, -940.98], [-982.18, -945.06], [-978.07, -949.57], [-980.26, -951.55]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.656, "pop": 0, "jobs": 656}}, {"shape": {"outer": [[-841.92, -812.98], [-821.22, -835.43], [-813.55, -828.4], [-834.24, -805.96], [-841.92, -812.98]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.267, "pop": 0, "jobs": 267}}, {"shape": {"outer": [[-1483.9, -818.0], [-1483.11, -799.8], [-1479.02, -800.7], [-1478.74, -799.2], [-1480.06, -798.88], [-1481.59, -798.21], [-1482.76, -797.21], [-1483.86, -795.83], [-1484.55, -794.23], [-1484.87, -792.37], [-1484.66, -790.6], [-1484.15, -788.97], [-1483.48, -787.69], [-1482.64, -786.56], [-1481.46, -785.59], [-1480.17, -784.94], [-1478.4, -784.38], [-1476.56, -784.28], [-1474.56, -784.64], [-1472.94, -785.4], [-1471.84, -786.41], [-1470.88, -787.62], [-1470.26, -788.61], [-1469.9, -789.75], [-1469.64, -790.99], [-1467.44, -790.93], [-1466.94, -781.69], [-1454.44, -783.87], [-1373.29, -798.92], [-1373.54, -807.59], [-1373.79, -810.08], [-1373.96, -811.5], [-1371.38, -812.09], [-1373.98, -825.43], [-1374.65, -825.32], [-1375.15, -839.55], [-1469.1, -821.9], [-1469.09, -820.37], [-1483.9, -818.0]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2789}}, {"shape": {"outer": [[-1284.71, -928.6], [-1284.56, -918.76], [-1287.22, -918.71], [-1286.9, -898.4], [-1267.42, -898.71], [-1267.58, -908.69], [-1265.14, -908.73], [-1265.45, -928.89], [-1284.71, -928.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.488, "pop": 244, "jobs": 0}}, {"shape": {"outer": [[-1344.12, -952.55], [-1343.61, -930.28], [-1336.06, -930.45], [-1336.11, -932.83], [-1327.39, -933.04], [-1327.34, -930.41], [-1320.55, -930.56], [-1321.06, -952.73], [-1328.16, -952.58], [-1327.99, -944.68], [-1335.88, -944.5], [-1336.07, -952.73], [-1344.12, -952.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.342, "pop": 171, "jobs": 0}}, {"shape": {"outer": [[-1343.95, -986.98], [-1343.74, -976.74], [-1346.16, -976.69], [-1345.75, -956.5], [-1338.49, -956.65], [-1338.47, -955.23], [-1324.12, -955.53], [-1324.76, -987.37], [-1343.95, -986.98]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.418, "pop": 0, "jobs": 418}}, {"shape": {"outer": [[-1345.09, -926.65], [-1325.93, -927.25], [-1325.61, -917.28], [-1322.66, -917.37], [-1322.0, -896.77], [-1342.15, -896.13], [-1342.48, -906.55], [-1344.46, -906.48], [-1345.09, -926.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.401, "pop": 0, "jobs": 401}}, {"shape": {"outer": [[-1388.05, -1099.96], [-1371.78, -1100.32], [-1370.43, -1041.23], [-1386.7, -1040.86], [-1387.19, -1062.41], [-1405.65, -1061.99], [-1406.01, -1077.67], [-1387.54, -1078.08], [-1388.05, -1099.96]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.801, "pop": 0, "jobs": 801}}, {"shape": {"outer": [[-1405.26, -955.46], [-1405.27, -937.02], [-1368.0, -937.34], [-1367.03, -937.35], [-1366.89, -933.44], [-1386.86, -933.11], [-1386.7, -926.39], [-1383.04, -926.5], [-1382.73, -922.67], [-1381.82, -922.65], [-1381.72, -916.62], [-1386.67, -916.55], [-1386.76, -914.44], [-1411.69, -914.32], [-1411.72, -915.28], [-1416.16, -915.16], [-1416.11, -910.85], [-1453.71, -910.55], [-1455.48, -908.97], [-1459.93, -908.81], [-1461.95, -910.85], [-1462.15, -915.04], [-1460.3, -916.72], [-1460.62, -957.21], [-1440.33, -957.4], [-1440.35, -959.27], [-1436.08, -963.31], [-1434.83, -963.32], [-1430.8, -963.32], [-1430.8, -956.96], [-1427.45, -956.97], [-1425.43, -955.19], [-1405.26, -955.46]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1983}}, {"shape": {"outer": [[-1314.4, -908.6], [-1296.54, -909.14], [-1296.19, -897.38], [-1314.04, -896.84], [-1314.4, -908.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[-1288.76, -988.79], [-1269.38, -989.13], [-1269.24, -981.1], [-1279.51, -980.92], [-1279.47, -978.83], [-1265.75, -979.08], [-1265.39, -959.07], [-1285.61, -958.71], [-1285.73, -966.35], [-1275.91, -966.53], [-1275.94, -968.32], [-1288.38, -968.1], [-1288.76, -988.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.472, "pop": 236, "jobs": 0}}, {"shape": {"outer": [[-1339.46, -1168.59], [-1330.85, -1178.52], [-1318.55, -1179.17], [-1310.6, -1172.03], [-1309.58, -1148.5], [-1307.99, -1147.25], [-1307.84, -1142.91], [-1309.13, -1141.43], [-1308.92, -1137.72], [-1307.04, -1136.45], [-1273.26, -1138.26], [-1265.27, -1131.2], [-1264.95, -1118.85], [-1270.42, -1112.77], [-1274.28, -1116.22], [-1274.5, -1121.49], [-1277.86, -1121.27], [-1279.02, -1119.67], [-1283.33, -1119.48], [-1284.86, -1120.98], [-1302.15, -1120.02], [-1305.71, -1116.3], [-1323.24, -1115.34], [-1330.62, -1122.02], [-1337.69, -1128.35], [-1339.46, -1168.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 986, "jobs": 0}}, {"shape": {"outer": [[-1462.07, -1222.58], [-1461.23, -1222.6], [-1457.7, -1222.7], [-1457.75, -1224.23], [-1427.78, -1225.07], [-1427.42, -1212.31], [-1430.15, -1212.24], [-1430.07, -1208.98], [-1450.43, -1208.41], [-1457.93, -1208.2], [-1457.73, -1201.24], [-1472.52, -1200.83], [-1472.62, -1204.31], [-1475.23, -1204.25], [-1475.56, -1216.11], [-1461.89, -1216.49], [-1462.07, -1222.58]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 1066, "jobs": 0}}, {"shape": {"outer": [[-1416.35, -1217.53], [-1409.48, -1217.7], [-1409.41, -1214.67], [-1399.49, -1214.91], [-1399.41, -1211.8], [-1392.71, -1211.96], [-1392.44, -1201.21], [-1399.46, -1201.04], [-1399.54, -1204.4], [-1409.94, -1204.15], [-1410.01, -1206.91], [-1416.09, -1206.75], [-1416.35, -1217.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-1465.83, -1166.06], [-1465.5, -1146.3], [-1455.54, -1146.47], [-1455.56, -1148.22], [-1414.82, -1148.88], [-1414.78, -1146.31], [-1375.57, -1146.95], [-1376.22, -1186.64], [-1396.33, -1186.31], [-1396.15, -1175.45], [-1394.06, -1175.47], [-1393.88, -1164.64], [-1402.25, -1164.5], [-1402.3, -1167.56], [-1412.08, -1167.4], [-1412.45, -1190.41], [-1415.73, -1190.36], [-1415.35, -1166.88], [-1465.83, -1166.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 866, "jobs": 0}}, {"shape": {"outer": [[-1384.01, -1230.71], [-1383.89, -1223.97], [-1384.82, -1223.95], [-1384.64, -1213.95], [-1383.43, -1213.96], [-1383.25, -1204.24], [-1384.57, -1204.21], [-1384.44, -1197.28], [-1373.82, -1197.47], [-1373.95, -1204.35], [-1372.99, -1204.36], [-1373.17, -1214.38], [-1374.39, -1214.36], [-1374.55, -1223.87], [-1373.4, -1223.89], [-1373.53, -1230.9], [-1384.01, -1230.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[-1291.55, -931.76], [-1292.08, -954.54], [-1285.24, -954.7], [-1285.17, -951.64], [-1275.72, -951.85], [-1275.79, -954.67], [-1267.67, -954.86], [-1267.15, -932.37], [-1275.35, -932.18], [-1275.42, -935.24], [-1283.73, -935.05], [-1283.66, -931.94], [-1291.55, -931.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.4, "pop": 200, "jobs": 0}}, {"shape": {"outer": [[-1448.32, -768.09], [-1444.93, -768.21], [-1444.93, -769.68], [-1439.24, -770.01], [-1439.18, -768.56], [-1435.46, -768.58], [-1435.15, -765.67], [-1431.04, -765.94], [-1429.96, -742.5], [-1434.0, -742.38], [-1433.94, -737.18], [-1429.82, -737.5], [-1429.14, -714.09], [-1433.1, -713.98], [-1432.93, -708.7], [-1445.96, -708.13], [-1447.47, -707.07], [-1453.8, -706.92], [-1454.08, -713.12], [-1456.73, -713.04], [-1457.83, -713.01], [-1457.54, -703.64], [-1461.62, -703.5], [-1461.36, -697.53], [-1457.39, -697.73], [-1456.33, -677.0], [-1455.62, -664.42], [-1459.62, -664.13], [-1459.53, -661.11], [-1462.96, -660.96], [-1462.88, -659.58], [-1465.76, -659.43], [-1469.03, -659.26], [-1469.05, -660.56], [-1472.46, -660.45], [-1472.57, -663.45], [-1476.52, -663.21], [-1477.83, -697.07], [-1473.63, -697.2], [-1473.94, -702.62], [-1478.09, -702.52], [-1479.26, -725.7], [-1475.43, -725.91], [-1475.5, -729.54], [-1463.77, -729.97], [-1463.03, -731.49], [-1461.54, -733.06], [-1459.93, -733.86], [-1458.29, -734.02], [-1456.43, -733.75], [-1455.29, -732.58], [-1454.38, -731.19], [-1453.32, -728.39], [-1453.28, -726.07], [-1450.41, -726.1], [-1450.83, -736.48], [-1446.89, -736.6], [-1447.1, -741.85], [-1451.56, -741.72], [-1452.08, -764.66], [-1448.22, -764.77], [-1448.32, -768.09]], "holes": []}, "height": 24.5, "data": {"type": "residential", "density": 1.0, "pop": 3331, "jobs": 0}}, {"shape": {"outer": [[-1342.43, -2073.59], [-1335.7, -2085.59], [-1319.84, -2076.78], [-1326.57, -2064.77], [-1342.43, -2073.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.2, "pop": 100, "jobs": 0}}, {"shape": {"outer": [[-1129.78, -2452.38], [-1129.87, -2454.03], [-1121.14, -2469.05], [-1113.4, -2469.57], [-1113.45, -2470.37], [-1095.08, -2471.62], [-1093.71, -2454.51], [-1129.78, -2452.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.422, "pop": 211, "jobs": 0}}, {"shape": {"outer": [[-257.79, -448.04], [-220.32, -489.48], [-163.32, -437.48], [-161.06, -435.42], [-198.56, -394.2], [-219.08, -412.86], [-257.79, -448.04]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6259}}, {"shape": {"outer": [[-821.31, -79.7], [-820.43, -66.38], [-831.15, -65.75], [-843.21, -76.1], [-842.61, -78.66], [-821.31, -79.7]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.131, "pop": 0, "jobs": 131}}, {"shape": {"outer": [[-1056.55, -205.27], [-1056.42, -204.76], [-1056.06, -204.35], [-1055.52, -204.17], [-1054.96, -204.27], [-1053.2, -206.21], [-1041.84, -218.74], [-1040.99, -217.98], [-1038.04, -221.23], [-1036.17, -223.29], [-1043.75, -230.12], [-1056.46, -241.57], [-1057.09, -241.76], [-1057.72, -241.59], [-1058.18, -241.09], [-1058.28, -240.44], [-1057.25, -219.39], [-1056.89, -212.19], [-1056.55, -205.27]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.442, "pop": 221, "jobs": 0}}, {"shape": {"outer": [[-575.76, 431.67], [-574.28, 430.08], [-572.24, 427.96], [-566.26, 433.42], [-564.55, 431.73], [-558.07, 437.71], [-556.18, 435.52], [-546.72, 424.66], [-514.55, 389.43], [-520.8, 384.28], [-520.18, 383.63], [-533.82, 370.83], [-534.68, 370.31], [-535.67, 369.96], [-536.59, 369.96], [-537.5, 370.13], [-537.9, 370.28], [-538.5, 370.63], [-540.52, 372.72], [-541.9, 374.14], [-547.3, 380.05], [-549.94, 382.88], [-551.09, 381.88], [-552.89, 383.77], [-554.43, 385.51], [-553.36, 386.46], [-555.31, 388.87], [-557.72, 386.72], [-579.76, 366.25], [-580.98, 365.09], [-582.03, 366.14], [-583.11, 366.59], [-584.16, 367.19], [-585.11, 367.9], [-586.1, 368.78], [-586.68, 370.31], [-586.89, 371.59], [-588.6, 373.22], [-592.54, 377.11], [-594.74, 379.27], [-595.44, 379.96], [-596.4, 379.13], [-597.17, 378.53], [-598.91, 377.15], [-599.07, 376.65], [-599.2, 376.11], [-599.24, 375.83], [-599.28, 375.44], [-599.25, 374.99], [-599.17, 374.51], [-599.07, 374.24], [-598.91, 373.8], [-598.88, 373.34], [-598.96, 372.77], [-599.1, 372.23], [-599.32, 371.82], [-599.6, 371.46], [-599.81, 371.25], [-600.22, 370.97], [-600.7, 370.75], [-601.22, 370.68], [-601.73, 370.63], [-602.32, 370.63], [-602.9, 370.7], [-603.48, 370.83], [-604.02, 371.06], [-604.45, 371.29], [-604.86, 371.59], [-605.25, 371.92], [-605.62, 372.33], [-606.0, 372.79], [-613.5, 366.34], [-618.51, 372.34], [-617.2, 373.74], [-625.79, 383.42], [-626.7, 382.69], [-628.48, 384.59], [-629.33, 383.9], [-639.57, 395.22], [-630.3, 402.57], [-630.06, 404.26], [-629.47, 405.88], [-628.54, 407.2], [-627.12, 407.87], [-625.57, 408.08], [-624.31, 407.86], [-623.08, 406.92], [-620.45, 404.13], [-619.66, 404.88], [-618.78, 405.75], [-590.78, 430.9], [-589.16, 429.2], [-582.44, 435.27], [-577.58, 430.17], [-575.76, 431.67]], "holes": []}, "height": 35.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 14123}}, {"shape": {"outer": [[-1426.31, -2107.97], [-1393.18, -2109.7], [-1393.49, -2099.9], [-1417.38, -2098.78], [-1430.02, -2086.37], [-1438.7, -2094.16], [-1439.36, -2094.75], [-1426.31, -2107.97]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.324, "pop": 0, "jobs": 324}}, {"shape": {"outer": [[-1409.54, -2067.09], [-1401.94, -2080.08], [-1393.84, -2075.62], [-1397.97, -2068.11], [-1396.37, -2067.12], [-1398.17, -2064.1], [-1399.63, -2064.96], [-1401.08, -2062.43], [-1409.54, -2067.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1425.31, -2131.78], [-1419.96, -2132.04], [-1420.18, -2135.85], [-1413.2, -2136.38], [-1412.98, -2132.47], [-1395.08, -2133.52], [-1394.6, -2124.49], [-1396.03, -2124.35], [-1395.78, -2119.89], [-1396.52, -2118.78], [-1398.04, -2118.3], [-1403.61, -2118.14], [-1403.78, -2116.28], [-1404.72, -2115.05], [-1406.13, -2114.69], [-1424.26, -2113.95], [-1425.31, -2131.78]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.34, "pop": 0, "jobs": 340}}, {"shape": {"outer": [[-797.18, -117.84], [-796.78, -111.55], [-797.07, -111.53], [-796.7, -105.75], [-796.41, -105.77], [-796.1, -100.86], [-790.46, -101.22], [-790.76, -106.06], [-790.4, -106.08], [-790.75, -111.82], [-791.29, -111.74], [-791.7, -118.18], [-797.18, -117.84]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.063, "pop": 0, "jobs": 63}}, {"shape": {"outer": [[-962.0, -41.87], [-961.91, -40.11], [-962.67, -40.78], [-964.4, -38.81], [-963.73, -38.23], [-963.39, -31.47], [-953.32, -31.97], [-953.84, -42.28], [-962.0, -41.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-405.94, -279.52], [-349.58, -228.67], [-371.48, -203.44], [-370.8, -202.81], [-368.38, -200.6], [-374.99, -195.36], [-376.17, -194.4], [-377.29, -195.65], [-385.13, -204.48], [-394.37, -214.61], [-410.92, -229.34], [-434.01, -250.05], [-431.53, -252.72], [-430.69, -253.63], [-430.02, -253.01], [-428.9, -254.24], [-425.43, -258.0], [-427.71, -259.97], [-426.29, -261.61], [-424.01, -259.64], [-420.85, -263.11], [-405.94, -279.52]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2662}}, {"shape": {"outer": [[-787.44, 71.59], [-773.44, 84.29], [-787.79, 100.0], [-801.8, 87.3], [-787.44, 71.59]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.422, "pop": 211, "jobs": 0}}, {"shape": {"outer": [[-698.0, -37.39], [-690.2, -46.19], [-668.85, -27.42], [-676.65, -18.61], [-698.0, -37.39]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.468, "pop": 234, "jobs": 0}}, {"shape": {"outer": [[-818.57, 70.11], [-803.85, 53.91], [-799.8, 57.56], [-804.57, 62.81], [-800.03, 66.9], [-810.24, 78.13], [-812.62, 78.41], [-814.21, 76.97], [-814.08, 74.16], [-818.57, 70.11]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-857.59, 36.45], [-848.89, 26.53], [-848.0, 27.3], [-846.6, 25.71], [-847.23, 25.15], [-841.24, 18.31], [-832.06, 26.29], [-844.04, 39.96], [-844.83, 39.28], [-846.03, 40.65], [-845.31, 41.29], [-848.21, 44.6], [-857.59, 36.45]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[-966.77, -20.06], [-955.36, -20.74], [-953.87, 3.83], [-965.28, 4.51], [-966.77, -20.06]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.296, "pop": 148, "jobs": 0}}, {"shape": {"outer": [[-546.81, -218.49], [-519.57, -248.18], [-513.53, -242.67], [-510.51, -239.93], [-493.41, -224.33], [-492.16, -223.2], [-518.07, -194.96], [-518.81, -194.61], [-519.54, -194.51], [-520.34, -194.65], [-521.02, -194.99], [-546.81, -218.49]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.955, "pop": 0, "jobs": 955}}, {"shape": {"outer": [[-903.86, -9.99], [-895.2, -19.57], [-888.93, -13.94], [-885.74, -17.46], [-877.68, -10.22], [-891.65, 5.22], [-898.25, -0.72], [-899.47, -1.8], [-897.35, -4.14], [-903.86, -9.99]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.466, "pop": 233, "jobs": 0}}, {"shape": {"outer": [[-1150.47, -8.75], [-1146.99, -8.91], [-1144.91, -9.06], [-1145.19, -14.2], [-1138.38, -14.57], [-1136.86, 15.57], [-1139.79, 15.74], [-1146.76, 16.09], [-1147.69, 16.14], [-1154.03, 16.48], [-1155.18, 16.54], [-1162.73, 16.95], [-1167.63, 17.22], [-1174.51, 17.59], [-1174.63, 15.22], [-1175.73, -4.99], [-1170.99, -5.24], [-1163.3, -5.66], [-1163.24, -4.48], [-1150.28, -5.19], [-1150.47, -8.75]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 948, "jobs": 0}}, {"shape": {"outer": [[-886.91, 11.93], [-883.75, 14.7], [-883.44, 14.34], [-880.61, 16.82], [-880.11, 16.26], [-875.92, 19.94], [-859.49, 1.3], [-869.19, -7.19], [-883.5, 9.03], [-883.97, 8.61], [-886.91, 11.93]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.346, "pop": 173, "jobs": 0}}, {"shape": {"outer": [[-1090.75, -11.34], [-1086.45, -11.53], [-1086.57, -15.78], [-1086.85, -21.69], [-1073.37, -22.33], [-1073.54, -26.04], [-1071.99, -26.2], [-1064.12, -26.59], [-1062.52, -26.59], [-1062.5, -26.03], [-1062.06, -17.57], [-1061.09, 1.43], [-1064.23, 1.57], [-1063.76, 8.06], [-1071.28, 7.48], [-1071.35, 6.53], [-1081.55, 7.12], [-1081.37, 9.12], [-1085.34, 9.41], [-1085.31, 10.67], [-1089.66, 10.94], [-1089.85, 7.76], [-1091.78, 7.85], [-1092.26, -2.78], [-1090.37, -2.85], [-1090.75, -11.34]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 768, "jobs": 0}}, {"shape": {"outer": [[-976.32, -27.41], [-974.71, 5.82], [-1011.52, 7.6], [-1012.58, -14.55], [-1002.9, -15.01], [-1002.87, -14.41], [-999.59, -14.57], [-999.15, -5.69], [-988.14, -6.23], [-989.13, -26.79], [-976.32, -27.41]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 895, "jobs": 0}}, {"shape": {"outer": [[-1036.75, -68.46], [-1035.23, -37.95], [-1035.04, -34.11], [-1034.76, -28.49], [-1038.09, -28.32], [-1038.07, -27.9], [-1045.93, -27.51], [-1045.96, -28.0], [-1064.14, -27.1], [-1064.12, -26.59], [-1071.99, -26.2], [-1072.01, -26.76], [-1073.57, -26.67], [-1075.24, -26.59], [-1075.52, -32.2], [-1077.21, -66.35], [-1074.3, -66.5], [-1074.33, -67.12], [-1065.86, -67.54], [-1065.83, -66.96], [-1063.25, -67.08], [-1056.73, -67.4], [-1051.01, -67.69], [-1048.03, -67.83], [-1048.05, -68.29], [-1039.32, -68.72], [-1039.3, -68.33], [-1037.06, -68.44], [-1036.75, -68.46]], "holes": []}, "height": 38.5, "data": {"type": "residential", "density": 1.0, "pop": 3144, "jobs": 0}}, {"shape": {"outer": [[-1062.06, -17.57], [-1051.05, -18.1], [-1046.67, -18.32], [-1046.9, -22.92], [-1040.55, -23.23], [-1040.41, -20.53], [-1040.32, -18.61], [-1037.53, -18.75], [-1037.49, -17.74], [-1037.44, -16.64], [-1037.39, -15.54], [-1036.82, -3.88], [-1036.7, -1.49], [-1033.26, -1.66], [-1033.08, 1.96], [-1032.91, 5.35], [-1033.37, 5.39], [-1036.36, 5.54], [-1036.33, 6.21], [-1046.1, 6.71], [-1055.67, 7.2], [-1058.31, 7.32], [-1060.79, 7.44], [-1061.09, 1.43], [-1062.06, -17.57]], "holes": []}, "height": 24.5, "data": {"type": "residential", "density": 1.0, "pop": 817, "jobs": 0}}, {"shape": {"outer": [[-1167.33, 86.58], [-1167.29, 87.33], [-1166.97, 93.77], [-1166.55, 93.76], [-1166.51, 94.27], [-1166.49, 94.85], [-1167.64, 94.91], [-1167.55, 96.86], [-1167.17, 104.32], [-1166.43, 104.28], [-1165.85, 115.73], [-1149.03, 114.88], [-1149.36, 108.18], [-1149.81, 108.19], [-1150.57, 93.23], [-1150.73, 90.11], [-1150.21, 90.09], [-1150.43, 85.73], [-1167.33, 86.58]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 687, "jobs": 0}}, {"shape": {"outer": [[-1096.71, 125.24], [-1088.64, 124.85], [-1087.86, 141.03], [-1109.87, 142.1], [-1110.51, 128.85], [-1096.57, 128.18], [-1096.71, 125.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.252, "pop": 126, "jobs": 0}}, {"shape": {"outer": [[-1128.34, 90.64], [-1112.33, 89.79], [-1111.62, 103.33], [-1112.21, 104.35], [-1111.78, 112.51], [-1112.86, 113.44], [-1115.98, 113.61], [-1117.11, 112.67], [-1120.88, 112.87], [-1121.8, 113.79], [-1124.93, 113.96], [-1126.22, 112.95], [-1126.63, 105.27], [-1127.63, 104.01], [-1128.34, 90.64]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.5, "pop": 250, "jobs": 0}}, {"shape": {"outer": [[-1166.39, 128.68], [-1146.4, 127.77], [-1146.31, 129.67], [-1142.94, 129.51], [-1142.33, 142.77], [-1146.92, 142.98], [-1147.05, 140.2], [-1150.11, 140.33], [-1150.51, 142.33], [-1151.62, 144.04], [-1153.28, 145.25], [-1155.25, 145.78], [-1157.34, 145.54], [-1159.19, 144.55], [-1160.54, 142.96], [-1161.21, 140.96], [-1165.82, 141.18], [-1165.87, 140.12], [-1166.39, 128.68]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 0.714, "pop": 357, "jobs": 0}}, {"shape": {"outer": [[-1169.71, 84.72], [-1161.84, 84.35], [-1161.83, 84.71], [-1156.35, 84.45], [-1156.37, 84.04], [-1148.23, 83.65], [-1148.52, 77.53], [-1151.86, 77.69], [-1152.1, 72.78], [-1168.36, 73.54], [-1168.33, 74.26], [-1170.2, 74.34], [-1169.71, 84.72]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-1142.29, 88.95], [-1133.15, 88.55], [-1133.1, 89.59], [-1132.04, 110.09], [-1131.44, 110.06], [-1131.24, 114.11], [-1137.72, 114.44], [-1137.85, 112.09], [-1139.29, 112.16], [-1139.95, 111.6], [-1141.1, 111.67], [-1141.4, 106.55], [-1142.14, 105.69], [-1142.24, 103.62], [-1141.6, 102.36], [-1142.29, 88.95]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.404, "pop": 202, "jobs": 0}}, {"shape": {"outer": [[-1107.93, 75.16], [-1107.9, 75.77], [-1107.25, 88.21], [-1106.18, 109.06], [-1097.63, 108.61], [-1097.68, 107.77], [-1091.56, 107.45], [-1093.27, 74.4], [-1107.93, 75.16]], "holes": []}, "height": 31.5, "data": {"type": "residential", "density": 1.0, "pop": 776, "jobs": 0}}, {"shape": {"outer": [[-1169.57, 60.86], [-1169.41, 64.25], [-1171.13, 64.33], [-1170.75, 72.28], [-1155.83, 71.57], [-1155.89, 70.23], [-1150.55, 69.98], [-1150.76, 65.52], [-1148.83, 65.42], [-1149.08, 60.12], [-1153.74, 60.34], [-1153.75, 60.11], [-1159.32, 60.38], [-1159.36, 59.39], [-1162.79, 59.56], [-1162.74, 60.54], [-1169.57, 60.86]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-1169.05, 45.77], [-1162.35, 45.45], [-1162.33, 45.9], [-1160.69, 45.83], [-1160.82, 43.11], [-1159.47, 41.87], [-1156.98, 41.75], [-1157.0, 41.25], [-1152.73, 41.07], [-1148.03, 40.84], [-1147.32, 56.39], [-1168.51, 57.37], [-1169.05, 45.77]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.308, "pop": 154, "jobs": 0}}, {"shape": {"outer": [[-1079.22, 134.54], [-1066.12, 133.94], [-1064.84, 162.05], [-1077.94, 162.65], [-1079.22, 134.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.296, "pop": 148, "jobs": 0}}, {"shape": {"outer": [[-1043.15, 116.74], [-1029.32, 116.11], [-1028.04, 144.18], [-1041.87, 144.81], [-1043.15, 116.74]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 0.816, "pop": 408, "jobs": 0}}, {"shape": {"outer": [[-908.34, 185.0], [-886.96, 161.81], [-886.58, 162.16], [-885.84, 161.36], [-875.48, 170.87], [-897.59, 194.84], [-905.89, 187.24], [-908.34, 185.0]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.832, "pop": 416, "jobs": 0}}, {"shape": {"outer": [[-967.71, 194.49], [-964.25, 190.64], [-965.46, 189.56], [-959.74, 183.2], [-960.85, 182.21], [-958.89, 180.03], [-956.94, 177.85], [-955.81, 178.86], [-949.63, 171.97], [-940.24, 180.35], [-956.53, 198.48], [-958.07, 197.1], [-961.05, 200.42], [-967.71, 194.49]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.496, "pop": 248, "jobs": 0}}, {"shape": {"outer": [[-930.42, 176.5], [-921.59, 184.39], [-931.23, 195.1], [-930.42, 195.81], [-929.18, 196.92], [-932.19, 200.27], [-934.43, 198.28], [-941.9, 206.59], [-950.53, 198.89], [-930.42, 176.5]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.512, "pop": 256, "jobs": 0}}, {"shape": {"outer": [[-1086.89, 38.35], [-1077.33, 37.98], [-1077.21, 40.97], [-1075.14, 40.89], [-1074.86, 48.02], [-1076.11, 48.07], [-1075.99, 51.39], [-1074.66, 51.34], [-1074.0, 68.08], [-1075.35, 68.13], [-1075.32, 69.03], [-1081.22, 69.25], [-1081.28, 67.79], [-1086.39, 67.99], [-1086.45, 66.59], [-1087.79, 66.64], [-1088.77, 41.38], [-1086.77, 41.3], [-1086.89, 38.35]], "holes": []}, "height": 24.5, "data": {"type": "residential", "density": 0.972, "pop": 486, "jobs": 0}}, {"shape": {"outer": [[-1042.92, 162.29], [-1025.74, 161.53], [-1025.06, 176.94], [-1042.25, 177.7], [-1042.92, 162.29]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.372, "pop": 186, "jobs": 0}}, {"shape": {"outer": [[-967.13, 131.0], [-960.72, 124.02], [-958.56, 125.99], [-955.16, 122.27], [-953.63, 123.67], [-952.06, 125.1], [-948.2, 128.62], [-958.0, 139.31], [-967.13, 131.0]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[-1003.87, 100.4], [-1004.29, 90.94], [-1003.21, 90.89], [-1003.26, 89.48], [-1003.33, 88.06], [-1004.47, 88.1], [-1004.9, 78.52], [-975.37, 77.21], [-974.96, 86.52], [-982.72, 86.87], [-982.17, 99.43], [-1003.87, 100.4]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.956, "pop": 478, "jobs": 0}}, {"shape": {"outer": [[-917.65, 196.43], [-917.2, 196.84], [-916.73, 197.29], [-911.07, 191.18], [-901.13, 200.32], [-916.26, 216.67], [-916.64, 216.32], [-919.63, 219.55], [-928.29, 211.58], [-924.97, 207.99], [-926.05, 207.0], [-921.96, 202.59], [-922.71, 201.9], [-917.65, 196.43]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.382, "pop": 191, "jobs": 0}}, {"shape": {"outer": [[-922.93, 167.98], [-905.71, 149.49], [-902.16, 152.78], [-902.7, 153.36], [-897.3, 158.36], [-902.4, 163.84], [-903.72, 162.63], [-906.57, 165.69], [-909.0, 168.29], [-907.55, 169.63], [-911.77, 174.16], [-916.85, 169.46], [-918.92, 171.67], [-922.93, 167.98]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.376, "pop": 188, "jobs": 0}}, {"shape": {"outer": [[-922.98, 107.67], [-909.89, 93.26], [-908.23, 94.75], [-906.44, 92.79], [-902.92, 95.97], [-905.03, 98.3], [-901.49, 101.5], [-914.47, 115.77], [-915.96, 114.44], [-917.8, 116.47], [-921.35, 113.27], [-919.29, 111.0], [-922.98, 107.67]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.268, "pop": 134, "jobs": 0}}, {"shape": {"outer": [[-880.97, 182.68], [-869.95, 170.41], [-859.45, 179.76], [-859.28, 182.49], [-869.4, 193.75], [-872.98, 190.56], [-872.61, 190.14], [-880.97, 182.68]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[-1002.09, 137.69], [-1001.93, 140.98], [-1003.39, 141.05], [-1002.97, 149.26], [-1000.27, 149.12], [-1000.17, 151.16], [-998.63, 152.65], [-996.08, 152.53], [-994.85, 150.84], [-994.87, 150.49], [-990.4, 150.27], [-990.62, 145.98], [-988.22, 145.86], [-988.31, 144.15], [-986.84, 144.07], [-986.12, 143.24], [-986.2, 141.69], [-984.93, 141.62], [-985.17, 136.85], [-993.58, 137.27], [-993.62, 136.43], [-997.77, 136.64], [-997.73, 137.48], [-1002.09, 137.69]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.22, "pop": 110, "jobs": 0}}, {"shape": {"outer": [[-935.31, 152.78], [-919.68, 135.67], [-909.2, 145.17], [-924.83, 162.28], [-935.31, 152.78]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.344, "pop": 172, "jobs": 0}}, {"shape": {"outer": [[-1001.4, 165.39], [-977.93, 139.47], [-968.22, 148.2], [-991.7, 174.12], [-1001.4, 165.39]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.48, "pop": 240, "jobs": 0}}, {"shape": {"outer": [[-915.25, 222.57], [-910.66, 217.58], [-911.26, 217.03], [-898.35, 202.95], [-888.23, 212.18], [-897.56, 222.35], [-900.95, 226.03], [-901.22, 225.79], [-906.01, 231.0], [-915.25, 222.57]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.484, "pop": 242, "jobs": 0}}, {"shape": {"outer": [[-1140.23, 127.48], [-1139.63, 139.38], [-1138.43, 139.31], [-1138.47, 138.58], [-1137.37, 138.52], [-1137.33, 139.31], [-1136.42, 139.86], [-1134.73, 139.73], [-1133.92, 139.07], [-1133.96, 138.24], [-1133.12, 138.19], [-1133.09, 138.84], [-1130.59, 138.72], [-1130.63, 138.04], [-1129.73, 138.0], [-1129.71, 138.63], [-1127.06, 138.51], [-1127.1, 137.83], [-1126.27, 137.8], [-1126.24, 138.42], [-1123.68, 138.29], [-1123.7, 137.62], [-1123.09, 137.59], [-1123.06, 138.25], [-1120.85, 138.14], [-1120.88, 137.43], [-1115.17, 137.15], [-1115.13, 138.11], [-1114.27, 138.06], [-1114.85, 126.3], [-1118.12, 126.47], [-1118.22, 124.63], [-1124.31, 124.92], [-1124.22, 126.68], [-1140.23, 127.48]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[-845.99, 261.12], [-833.71, 247.53], [-821.87, 258.15], [-834.15, 271.74], [-845.99, 261.12]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.408, "pop": 204, "jobs": 0}}, {"shape": {"outer": [[-810.38, 167.67], [-806.03, 162.9], [-802.76, 165.87], [-785.17, 146.55], [-775.38, 155.39], [-797.32, 179.48], [-810.38, 167.67]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.32, "pop": 160, "jobs": 0}}, {"shape": {"outer": [[-775.61, 61.6], [-774.57, 60.42], [-775.54, 59.59], [-772.27, 55.85], [-771.31, 56.68], [-771.02, 56.35], [-767.67, 59.26], [-767.56, 59.13], [-758.77, 66.76], [-764.07, 72.83], [-768.88, 68.67], [-769.15, 68.98], [-773.25, 65.42], [-772.37, 64.41], [-775.61, 61.6]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-804.89, 250.43], [-794.75, 259.6], [-808.81, 275.03], [-814.79, 269.63], [-815.8, 270.74], [-820.44, 266.55], [-816.24, 261.95], [-815.77, 262.37], [-808.14, 253.99], [-808.92, 253.28], [-806.65, 250.8], [-805.87, 251.51], [-804.89, 250.43]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.316, "pop": 158, "jobs": 0}}, {"shape": {"outer": [[-874.94, 237.86], [-872.14, 234.88], [-872.75, 234.32], [-865.91, 227.05], [-865.31, 227.61], [-863.52, 225.71], [-856.74, 232.03], [-858.42, 233.81], [-850.98, 240.76], [-849.94, 239.66], [-843.65, 245.53], [-851.05, 253.41], [-852.09, 252.45], [-854.63, 255.17], [-861.37, 248.88], [-860.15, 247.58], [-865.94, 242.18], [-867.98, 244.35], [-874.94, 237.86]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.562, "pop": 281, "jobs": 0}}, {"shape": {"outer": [[-953.63, 123.67], [-952.19, 122.11], [-945.87, 115.23], [-948.43, 112.91], [-946.65, 110.97], [-948.1, 109.65], [-933.11, 93.32], [-924.74, 100.94], [-935.49, 112.66], [-922.97, 124.06], [-933.24, 135.25], [-948.56, 121.29], [-950.62, 123.53], [-952.06, 125.1], [-953.63, 123.67]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 508, "jobs": 0}}, {"shape": {"outer": [[-907.2, 86.98], [-890.73, 68.66], [-880.92, 77.4], [-897.39, 95.73], [-907.2, 86.98]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.34, "pop": 170, "jobs": 0}}, {"shape": {"outer": [[-842.99, 143.7], [-824.0, 123.25], [-815.38, 131.19], [-834.38, 151.64], [-842.99, 143.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.262, "pop": 131, "jobs": 0}}, {"shape": {"outer": [[-427.03, 98.79], [-423.99, 95.44], [-424.91, 94.6], [-407.64, 75.58], [-392.63, 89.1], [-393.42, 89.96], [-367.5, 113.26], [-382.81, 130.16], [-380.9, 131.88], [-385.72, 137.2], [-390.38, 142.34], [-393.5, 139.54], [-395.9, 142.2], [-396.71, 141.48], [-399.94, 145.05], [-398.74, 146.13], [-400.52, 148.09], [-402.48, 150.24], [-404.44, 148.49], [-411.92, 156.75], [-413.77, 155.09], [-418.69, 160.53], [-419.84, 159.5], [-421.32, 161.13], [-420.69, 161.7], [-421.57, 162.66], [-422.47, 163.65], [-427.57, 159.06], [-428.31, 159.87], [-434.0, 154.75], [-433.01, 153.66], [-437.19, 149.89], [-435.96, 148.53], [-436.21, 146.15], [-430.51, 139.89], [-432.67, 137.93], [-424.52, 128.98], [-435.79, 118.78], [-426.61, 108.72], [-433.1, 102.83], [-428.34, 97.62], [-427.03, 98.79]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2756}}, {"shape": {"outer": [[-509.73, 53.08], [-502.14, 44.95], [-482.4, 63.26], [-507.13, 89.72], [-518.37, 79.29], [-500.03, 59.65], [-503.24, 56.66], [-504.47, 57.96], [-509.73, 53.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.542, "pop": 271, "jobs": 0}}, {"shape": {"outer": [[-580.67, -28.89], [-575.01, -35.17], [-575.58, -35.67], [-556.53, -56.79], [-551.91, -52.65], [-551.35, -53.28], [-546.6, -49.03], [-547.35, -48.19], [-542.99, -44.29], [-561.76, -23.46], [-562.63, -24.25], [-568.49, -17.75], [-572.11, -20.99], [-572.45, -20.61], [-576.94, -24.62], [-576.47, -25.13], [-580.67, -28.89]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.706, "pop": 353, "jobs": 0}}, {"shape": {"outer": [[-500.52, 230.52], [-493.36, 222.59], [-478.56, 235.85], [-479.8, 237.22], [-477.67, 239.12], [-482.03, 243.95], [-484.62, 241.62], [-486.19, 243.37], [-500.52, 230.52]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-654.08, 17.78], [-643.17, 6.34], [-636.69, 12.48], [-642.9, 18.98], [-643.12, 18.77], [-647.83, 23.7], [-654.08, 17.78]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-676.49, 66.12], [-661.36, 49.09], [-651.98, 57.37], [-667.11, 74.39], [-676.49, 66.12]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[-647.98, 33.24], [-630.32, 13.86], [-624.74, 18.92], [-624.22, 18.35], [-620.08, 22.09], [-620.6, 22.66], [-614.87, 27.84], [-632.53, 47.22], [-647.98, 33.24]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.77, "pop": 385, "jobs": 0}}, {"shape": {"outer": [[-580.57, 140.64], [-567.65, 152.49], [-574.75, 160.18], [-583.8, 151.86], [-581.6, 149.48], [-585.47, 145.93], [-580.57, 140.64]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-672.11, 7.65], [-652.6, -13.95], [-638.65, -1.44], [-645.65, 6.3], [-648.56, 3.7], [-648.24, 3.35], [-656.38, -3.95], [-657.88, -2.28], [-652.49, 2.56], [-663.81, 15.09], [-672.11, 7.65]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.54, "pop": 270, "jobs": 0}}, {"shape": {"outer": [[-576.04, 22.39], [-566.8, 12.38], [-566.5, 12.66], [-564.44, 10.43], [-556.39, 17.8], [-558.45, 20.02], [-557.98, 20.45], [-567.22, 30.46], [-576.04, 22.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-685.56, 27.66], [-684.02, 25.97], [-685.43, 24.68], [-681.55, 20.45], [-680.1, 21.77], [-678.57, 20.09], [-668.59, 29.21], [-675.56, 36.79], [-685.56, 27.66]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[-676.97, 16.6], [-672.32, 11.35], [-661.67, 20.73], [-666.33, 25.99], [-676.97, 16.6]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-984.1, 175.77], [-978.27, 169.31], [-975.9, 171.44], [-963.48, 157.7], [-958.07, 162.53], [-960.34, 165.04], [-958.27, 166.91], [-968.73, 178.5], [-968.56, 178.65], [-968.48, 180.07], [-969.56, 181.26], [-970.99, 181.26], [-971.12, 181.15], [-974.25, 184.6], [-984.1, 175.77]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.414, "pop": 207, "jobs": 0}}, {"shape": {"outer": [[-1001.86, 125.08], [-996.67, 124.83], [-996.71, 124.06], [-991.09, 123.79], [-991.05, 124.57], [-982.76, 124.18], [-982.74, 124.8], [-981.15, 124.72], [-980.88, 130.26], [-982.14, 131.73], [-990.76, 132.13], [-990.67, 134.18], [-1001.41, 134.68], [-1001.45, 133.68], [-1004.58, 133.84], [-1004.93, 126.31], [-1001.82, 126.16], [-1001.86, 125.08]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.216, "pop": 108, "jobs": 0}}, {"shape": {"outer": [[-784.46, 172.67], [-773.02, 160.13], [-772.11, 160.96], [-770.12, 158.79], [-752.29, 174.94], [-756.2, 179.23], [-755.23, 180.12], [-764.95, 190.78], [-766.09, 189.73], [-769.6, 193.59], [-770.99, 192.33], [-771.6, 192.99], [-776.88, 188.19], [-776.28, 187.53], [-777.23, 186.67], [-773.5, 182.59], [-784.46, 172.67]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.612, "pop": 306, "jobs": 0}}, {"shape": {"outer": [[-859.88, 133.43], [-840.79, 112.85], [-838.48, 114.97], [-833.81, 109.94], [-825.37, 117.7], [-851.46, 145.83], [-855.95, 141.7], [-854.91, 140.58], [-860.73, 135.22], [-859.44, 133.84], [-859.88, 133.43]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.368, "pop": 184, "jobs": 0}}, {"shape": {"outer": [[-928.99, 53.89], [-915.48, 38.97], [-918.72, 36.05], [-913.26, 30.01], [-901.19, 40.87], [-920.16, 61.82], [-928.99, 53.89]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.39, "pop": 195, "jobs": 0}}, {"shape": {"outer": [[-918.46, 76.34], [-911.37, 68.39], [-900.7, 77.85], [-907.79, 85.8], [-918.46, 76.34]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-933.12, 47.33], [-933.24, 44.36], [-933.52, 44.37], [-934.07, 30.36], [-922.75, 29.92], [-922.61, 33.52], [-921.46, 34.6], [-921.32, 38.08], [-922.38, 39.21], [-922.27, 42.09], [-924.36, 44.19], [-928.3, 44.34], [-928.18, 47.13], [-933.12, 47.33]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[-910.25, 64.55], [-908.14, 62.33], [-908.3, 62.17], [-899.87, 53.34], [-890.9, 61.83], [-894.66, 65.77], [-892.79, 67.54], [-899.58, 74.65], [-910.25, 64.55]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-870.99, 111.64], [-852.66, 91.67], [-840.4, 102.83], [-858.73, 122.82], [-870.99, 111.64]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.472, "pop": 236, "jobs": 0}}, {"shape": {"outer": [[-779.94, 218.57], [-767.08, 204.45], [-757.26, 213.33], [-770.11, 227.45], [-771.49, 226.2], [-774.03, 228.99], [-780.32, 223.3], [-777.78, 220.51], [-779.94, 218.57]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[-1049.92, 51.6], [-1050.52, 37.59], [-1047.36, 37.45], [-1047.49, 34.41], [-1042.18, 34.18], [-1042.2, 33.76], [-1037.01, 33.55], [-1036.98, 34.28], [-1034.93, 34.19], [-1034.73, 39.02], [-1034.01, 38.98], [-1033.73, 45.7], [-1034.06, 45.72], [-1033.94, 48.49], [-1040.18, 48.75], [-1040.08, 51.18], [-1049.92, 51.6]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[-976.34, 62.67], [-976.83, 53.14], [-977.66, 53.19], [-977.93, 48.0], [-977.09, 47.95], [-977.6, 38.02], [-976.65, 37.97], [-976.39, 36.02], [-975.41, 34.31], [-973.83, 33.12], [-971.91, 32.62], [-969.95, 32.9], [-968.24, 33.93], [-967.07, 35.53], [-966.61, 37.46], [-965.58, 37.41], [-964.32, 62.06], [-976.34, 62.67]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.358, "pop": 179, "jobs": 0}}, {"shape": {"outer": [[-950.26, 77.94], [-933.29, 59.3], [-923.68, 68.0], [-940.65, 86.63], [-950.26, 77.94]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.344, "pop": 172, "jobs": 0}}, {"shape": {"outer": [[-950.4, 30.55], [-944.97, 30.32], [-944.94, 30.82], [-943.06, 30.74], [-943.08, 30.24], [-938.06, 30.02], [-938.01, 31.16], [-937.46, 31.14], [-937.35, 33.81], [-937.23, 36.53], [-936.14, 36.49], [-935.88, 42.65], [-936.96, 42.7], [-936.8, 46.34], [-937.86, 46.39], [-937.65, 51.25], [-948.88, 51.73], [-949.12, 46.1], [-948.54, 46.07], [-948.79, 40.11], [-949.98, 40.16], [-950.4, 30.55]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[-793.55, 235.99], [-792.52, 236.93], [-797.1, 241.92], [-788.05, 250.16], [-774.73, 235.66], [-783.93, 227.28], [-788.65, 232.43], [-789.54, 231.63], [-793.55, 235.99]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.264, "pop": 132, "jobs": 0}}, {"shape": {"outer": [[-962.8, 31.98], [-953.9, 31.43], [-953.45, 38.57], [-953.92, 38.61], [-953.22, 49.91], [-953.0, 49.9], [-952.54, 57.27], [-961.21, 57.8], [-962.8, 31.98]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-796.96, 207.34], [-792.92, 202.91], [-793.56, 202.34], [-789.66, 198.07], [-789.02, 198.64], [-785.99, 195.32], [-777.97, 202.6], [-781.77, 206.76], [-781.47, 207.04], [-784.51, 210.36], [-784.81, 210.09], [-788.94, 214.6], [-796.96, 207.34]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-972.75, 93.41], [-971.33, 91.84], [-972.84, 90.48], [-971.59, 89.08], [-970.08, 89.04], [-969.37, 89.69], [-968.82, 89.07], [-966.9, 90.78], [-962.48, 85.9], [-950.41, 96.76], [-958.12, 105.26], [-966.42, 97.79], [-967.08, 98.51], [-972.75, 93.41]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-1002.14, 34.71], [-990.48, 34.25], [-989.62, 56.3], [-987.71, 56.22], [-987.3, 66.77], [-1000.91, 67.3], [-1001.29, 57.54], [-1004.02, 57.64], [-1004.57, 43.77], [-1001.79, 43.65], [-1002.14, 34.71]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.462, "pop": 231, "jobs": 0}}, {"shape": {"outer": [[-1066.45, 38.41], [-1065.77, 53.47], [-1069.1, 53.62], [-1068.52, 66.69], [-1065.38, 66.56], [-1065.02, 74.45], [-1086.33, 75.41], [-1085.56, 92.44], [-1082.36, 92.29], [-1081.81, 104.43], [-1054.92, 103.2], [-1055.51, 91.51], [-1050.34, 91.26], [-1032.47, 90.37], [-1033.28, 72.45], [-1034.32, 72.49], [-1034.8, 61.9], [-1034.21, 61.87], [-1034.3, 59.9], [-1034.37, 58.16], [-1035.04, 58.19], [-1035.17, 55.4], [-1040.77, 55.65], [-1040.82, 54.56], [-1054.43, 55.17], [-1055.2, 37.91], [-1066.45, 38.41]], "holes": []}, "height": 24.5, "data": {"type": "residential", "density": 1.0, "pop": 2512, "jobs": 0}}, {"shape": {"outer": [[-1004.87, 120.12], [-992.91, 119.78], [-992.95, 118.63], [-985.2, 118.4], [-985.34, 113.45], [-987.27, 113.51], [-987.4, 108.98], [-996.68, 109.24], [-996.69, 108.94], [-1002.96, 109.12], [-1002.79, 114.97], [-1005.02, 115.04], [-1004.87, 120.12]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-880.43, 95.25], [-866.69, 80.2], [-858.01, 88.06], [-871.75, 103.12], [-880.43, 95.25]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[-928.45, 84.71], [-925.39, 81.34], [-924.3, 82.33], [-919.97, 77.55], [-910.52, 86.05], [-917.91, 94.2], [-928.45, 84.71]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-957.73, 87.78], [-950.82, 80.15], [-940.89, 89.09], [-947.8, 96.72], [-957.73, 87.78]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-861.54, 165.14], [-855.34, 158.1], [-856.06, 157.46], [-850.67, 151.34], [-840.31, 160.38], [-843.8, 164.35], [-842.19, 165.75], [-848.4, 172.82], [-851.52, 170.11], [-852.56, 171.27], [-856.47, 167.86], [-857.32, 168.83], [-861.54, 165.14]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[-954.22, 158.77], [-961.67, 152.14], [-956.82, 146.74], [-958.02, 145.68], [-952.02, 138.97], [-943.37, 146.65], [-954.22, 158.77]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-746.53, -204.84], [-740.87, -211.0], [-739.65, -209.89], [-738.87, -210.72], [-738.21, -211.45], [-741.92, -214.85], [-735.4, -221.94], [-721.7, -209.44], [-722.44, -208.63], [-735.24, -194.55], [-745.77, -204.17], [-746.53, -204.84]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.188, "pop": 0, "jobs": 188}}, {"shape": {"outer": [[-727.02, 236.93], [-708.8, 217.15], [-699.55, 225.62], [-705.77, 232.37], [-702.99, 234.91], [-714.99, 247.94], [-727.02, 236.93]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.424, "pop": 212, "jobs": 0}}, {"shape": {"outer": [[-1132.59, -19.9], [-1117.31, -20.68], [-1117.15, -17.55], [-1116.65, -8.2], [-1116.6, -7.25], [-1116.3, -1.29], [-1115.55, 12.89], [-1119.34, 13.09], [-1119.28, 14.08], [-1120.52, 14.16], [-1123.01, 14.29], [-1125.64, 14.42], [-1127.05, 14.48], [-1127.11, 13.45], [-1130.87, 13.64], [-1132.59, -19.9]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 732, "jobs": 0}}, {"shape": {"outer": [[-738.31, 321.98], [-715.67, 297.03], [-703.8, 307.72], [-726.44, 332.68], [-738.31, 321.98]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 754, "jobs": 0}}, {"shape": {"outer": [[-587.69, 336.83], [-584.75, 339.54], [-577.94, 332.18], [-572.86, 336.85], [-572.0, 337.63], [-570.09, 337.46], [-567.97, 339.41], [-567.92, 341.37], [-567.16, 342.07], [-581.69, 357.77], [-582.18, 357.33], [-590.54, 366.37], [-603.11, 354.82], [-596.34, 347.52], [-592.66, 350.9], [-591.35, 349.49], [-595.19, 345.96], [-589.06, 339.34], [-589.57, 338.87], [-587.69, 336.83]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.392, "pop": 196, "jobs": 0}}, {"shape": {"outer": [[-768.85, 276.33], [-760.46, 266.82], [-753.65, 272.79], [-752.92, 271.96], [-748.79, 275.58], [-749.52, 276.4], [-743.43, 281.74], [-751.75, 291.18], [-754.08, 289.13], [-756.3, 291.65], [-768.63, 280.85], [-766.46, 278.4], [-768.85, 276.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[-686.55, 253.39], [-681.71, 248.31], [-679.5, 250.4], [-675.49, 246.21], [-671.15, 250.33], [-669.79, 248.9], [-660.84, 257.37], [-666.23, 263.02], [-668.17, 261.17], [-671.38, 264.53], [-669.42, 266.39], [-670.17, 267.17], [-669.41, 267.9], [-674.74, 273.48], [-680.65, 267.88], [-678.37, 265.49], [-685.62, 258.62], [-683.43, 256.34], [-686.55, 253.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.282, "pop": 141, "jobs": 0}}, {"shape": {"outer": [[-789.27, 260.75], [-778.94, 269.86], [-784.91, 276.59], [-781.78, 279.35], [-783.28, 281.04], [-783.3, 284.13], [-784.78, 285.79], [-787.72, 286.01], [-789.86, 284.12], [-792.52, 284.25], [-795.51, 281.6], [-795.55, 279.47], [-799.64, 275.86], [-797.26, 273.19], [-798.97, 271.68], [-789.27, 260.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.238, "pop": 119, "jobs": 0}}, {"shape": {"outer": [[-658.0, 292.54], [-654.53, 288.9], [-655.68, 287.82], [-645.77, 277.45], [-643.38, 279.72], [-641.08, 277.32], [-639.4, 278.91], [-637.84, 277.29], [-634.38, 280.57], [-635.51, 281.76], [-630.17, 286.83], [-646.25, 303.67], [-658.0, 292.54]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.28, "pop": 140, "jobs": 0}}, {"shape": {"outer": [[-609.07, 333.18], [-602.27, 326.0], [-600.98, 327.21], [-600.85, 327.07], [-599.0, 328.82], [-591.4, 320.81], [-590.1, 322.02], [-589.57, 321.46], [-582.26, 328.34], [-591.33, 337.91], [-592.12, 337.17], [-598.11, 343.5], [-609.07, 333.18]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-696.66, 274.99], [-706.15, 285.42], [-693.77, 296.61], [-693.33, 296.13], [-691.03, 298.2], [-681.4, 287.62], [-691.7, 278.31], [-692.28, 278.94], [-696.66, 274.99]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 0.81, "pop": 405, "jobs": 0}}, {"shape": {"outer": [[-949.46, -24.61], [-934.57, -25.23], [-933.99, -11.67], [-936.26, -11.57], [-936.01, -5.91], [-941.49, -5.68], [-941.43, -4.21], [-941.38, -3.04], [-944.69, -2.9], [-944.74, -4.08], [-948.59, -3.91], [-949.46, -24.61]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.302, "pop": 151, "jobs": 0}}, {"shape": {"outer": [[-703.46, 248.75], [-688.28, 232.1], [-685.89, 234.26], [-685.59, 233.93], [-682.96, 236.3], [-683.26, 236.63], [-680.95, 238.73], [-696.13, 255.38], [-703.46, 248.75]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.314, "pop": 157, "jobs": 0}}, {"shape": {"outer": [[-870.02, 22.33], [-863.13, 14.09], [-862.69, 14.46], [-852.84, 2.71], [-846.13, 8.29], [-848.85, 11.53], [-846.95, 13.1], [-853.97, 21.48], [-852.48, 22.73], [-859.48, 31.09], [-870.02, 22.33]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.324, "pop": 162, "jobs": 0}}, {"shape": {"outer": [[-739.87, 303.64], [-746.89, 297.26], [-738.78, 288.4], [-740.55, 286.8], [-735.31, 281.06], [-733.75, 282.47], [-733.23, 281.9], [-725.97, 288.51], [-726.49, 289.08], [-724.36, 291.01], [-729.67, 296.8], [-731.82, 294.85], [-739.87, 303.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-629.52, 368.88], [-634.47, 364.37], [-626.25, 355.45], [-627.81, 354.02], [-624.61, 350.55], [-622.9, 352.12], [-619.92, 348.89], [-610.98, 357.07], [-625.06, 372.34], [-625.39, 372.05], [-627.17, 372.18], [-629.11, 370.4], [-629.13, 368.63], [-629.21, 368.55], [-629.52, 368.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.218, "pop": 109, "jobs": 0}}, {"shape": {"outer": [[-647.98, 346.59], [-641.6, 339.61], [-638.73, 342.21], [-624.23, 326.34], [-626.79, 324.01], [-620.72, 317.37], [-609.7, 327.37], [-615.55, 333.77], [-616.37, 333.04], [-637.47, 356.13], [-647.98, 346.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.392, "pop": 196, "jobs": 0}}, {"shape": {"outer": [[-1113.19, -19.66], [-1110.28, -19.8], [-1110.34, -21.12], [-1103.25, -21.47], [-1102.57, -21.5], [-1101.2, -21.55], [-1101.16, -20.76], [-1097.29, -20.95], [-1095.74, 11.47], [-1098.79, 11.61], [-1098.73, 12.79], [-1108.14, 13.26], [-1108.58, 13.27], [-1108.64, 12.18], [-1109.22, 12.21], [-1110.49, 12.27], [-1111.68, 12.31], [-1112.37, -1.57], [-1112.47, -3.48], [-1112.62, -7.09], [-1112.81, -10.94], [-1113.19, -19.66]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.938, "pop": 469, "jobs": 0}}, {"shape": {"outer": [[-617.22, 299.59], [-613.51, 302.92], [-619.05, 309.04], [-620.8, 307.47], [-622.87, 309.76], [-621.27, 311.19], [-626.52, 317.0], [-628.18, 315.52], [-630.35, 317.91], [-628.63, 319.45], [-633.79, 325.17], [-635.59, 323.55], [-640.27, 328.73], [-638.52, 330.31], [-644.4, 336.82], [-659.5, 323.27], [-653.44, 316.57], [-651.68, 318.15], [-647.31, 313.33], [-649.0, 311.8], [-643.54, 305.76], [-641.78, 307.34], [-639.64, 304.98], [-641.46, 303.35], [-636.13, 297.45], [-634.39, 299.01], [-632.46, 296.88], [-634.27, 295.26], [-628.58, 288.97], [-624.29, 292.83], [-622.37, 290.7], [-615.1, 297.23], [-617.22, 299.59]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.95, "pop": 475, "jobs": 0}}, {"shape": {"outer": [[-929.46, -5.42], [-930.07, -24.95], [-923.96, -25.13], [-923.67, -15.96], [-922.37, -16.0], [-922.52, -21.16], [-914.73, -21.41], [-914.08, -0.6], [-916.5, -0.52], [-916.46, 0.99], [-921.74, 1.17], [-922.11, -10.82], [-923.36, -10.77], [-923.2, -5.62], [-929.46, -5.42]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[-842.63, 50.35], [-822.31, 28.05], [-817.56, 32.34], [-819.02, 33.95], [-803.31, 48.15], [-823.18, 69.96], [-838.85, 55.8], [-837.84, 54.68], [-842.63, 50.35]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 573, "jobs": 0}}, {"shape": {"outer": [[-520.67, 262.16], [-513.13, 253.81], [-508.82, 257.67], [-508.5, 257.32], [-503.97, 261.38], [-504.28, 261.73], [-500.67, 264.98], [-508.21, 273.33], [-512.82, 269.19], [-513.22, 269.64], [-516.96, 266.27], [-516.56, 265.84], [-520.67, 262.16]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-609.48, 241.78], [-602.51, 233.9], [-593.06, 242.2], [-593.79, 243.02], [-588.64, 247.54], [-589.91, 248.97], [-584.39, 253.81], [-585.02, 254.52], [-579.01, 259.8], [-582.6, 263.84], [-594.08, 253.76], [-596.04, 255.98], [-602.44, 250.37], [-601.25, 249.02], [-609.48, 241.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.242, "pop": 121, "jobs": 0}}, {"shape": {"outer": [[-447.64, 383.62], [-435.93, 394.19], [-438.07, 396.54], [-437.85, 397.77], [-438.1, 399.02], [-438.78, 400.08], [-439.77, 400.82], [-440.96, 401.16], [-442.19, 401.07], [-444.59, 403.69], [-458.61, 391.04], [-452.23, 384.02], [-449.91, 386.11], [-447.64, 383.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-436.51, 382.35], [-429.85, 374.96], [-421.34, 382.58], [-428.0, 389.96], [-436.51, 382.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-549.24, 221.98], [-544.32, 226.41], [-543.82, 225.86], [-540.51, 228.84], [-548.77, 237.89], [-550.8, 240.21], [-552.62, 238.63], [-554.34, 240.56], [-558.86, 236.49], [-557.14, 234.6], [-559.09, 232.84], [-549.24, 221.98]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-465.24, 475.64], [-449.51, 458.38], [-436.87, 469.81], [-437.89, 470.94], [-434.9, 473.65], [-438.46, 477.55], [-437.31, 478.58], [-448.46, 490.82], [-453.09, 486.63], [-455.04, 487.03], [-457.02, 486.69], [-458.73, 485.69], [-459.99, 484.07], [-460.56, 482.09], [-460.36, 480.05], [-465.24, 475.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.426, "pop": 213, "jobs": 0}}, {"shape": {"outer": [[-525.87, 292.19], [-526.38, 292.77], [-524.62, 294.29], [-528.98, 299.29], [-530.56, 297.93], [-530.52, 298.52], [-532.13, 300.34], [-534.58, 300.39], [-536.31, 298.88], [-536.33, 297.97], [-538.32, 296.23], [-539.2, 296.26], [-541.66, 294.11], [-541.65, 293.3], [-546.06, 289.48], [-542.05, 284.88], [-541.7, 285.19], [-538.38, 281.38], [-525.87, 292.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[-427.29, 369.04], [-411.42, 352.19], [-408.62, 354.8], [-407.77, 353.88], [-404.18, 357.24], [-405.04, 358.15], [-402.05, 360.94], [-411.83, 371.32], [-409.08, 373.89], [-413.48, 378.56], [-415.14, 377.01], [-416.83, 378.81], [-427.29, 369.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.264, "pop": 132, "jobs": 0}}, {"shape": {"outer": [[-581.19, 211.38], [-571.24, 200.52], [-558.95, 211.72], [-568.9, 222.57], [-581.19, 211.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[-576.71, 296.42], [-556.42, 274.33], [-545.67, 284.13], [-549.42, 288.21], [-547.5, 290.14], [-549.8, 292.54], [-550.73, 293.62], [-537.9, 305.8], [-550.91, 319.95], [-576.71, 296.42]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 739, "jobs": 0}}, {"shape": {"outer": [[-538.34, 232.54], [-537.06, 233.68], [-536.38, 232.93], [-534.22, 234.85], [-534.94, 235.65], [-532.25, 238.02], [-535.26, 241.42], [-533.87, 242.65], [-537.09, 246.29], [-536.66, 246.66], [-539.65, 250.04], [-540.83, 248.99], [-543.46, 251.97], [-548.27, 247.75], [-546.13, 245.34], [-547.09, 244.5], [-544.25, 241.29], [-545.28, 240.37], [-538.34, 232.54]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-465.6, 389.98], [-445.11, 408.0], [-455.1, 419.29], [-475.61, 401.28], [-465.6, 389.98]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.72, "pop": 360, "jobs": 0}}, {"shape": {"outer": [[-595.26, 226.86], [-591.02, 222.26], [-589.85, 223.34], [-589.26, 222.71], [-583.91, 227.63], [-580.67, 224.11], [-574.4, 229.87], [-576.36, 231.98], [-573.35, 234.74], [-576.9, 238.57], [-573.13, 242.03], [-577.14, 246.37], [-585.24, 238.93], [-584.23, 237.84], [-587.34, 234.98], [-587.61, 235.27], [-595.03, 228.46], [-594.33, 227.71], [-595.26, 226.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-620.65, 255.16], [-617.88, 252.28], [-616.2, 253.9], [-612.9, 250.48], [-599.47, 263.34], [-606.46, 270.59], [-616.36, 261.13], [-615.43, 260.16], [-620.65, 255.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-485.15, 340.4], [-460.08, 312.93], [-445.98, 325.71], [-432.39, 338.01], [-457.46, 365.48], [-485.15, 340.4]], "holes": []}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2334}}, {"shape": {"outer": [[-536.97, 250.25], [-534.57, 247.56], [-535.46, 246.78], [-531.31, 242.12], [-530.96, 242.43], [-527.93, 239.02], [-514.22, 251.11], [-521.45, 259.26], [-522.64, 258.2], [-524.97, 260.82], [-536.97, 250.25]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-595.11, 280.47], [-598.56, 277.38], [-597.72, 276.46], [-601.49, 273.09], [-592.0, 262.54], [-588.05, 266.07], [-588.79, 266.89], [-585.51, 269.82], [-595.11, 280.47]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-795.09, 23.17], [-783.05, 10.16], [-782.77, 10.41], [-781.15, 10.23], [-780.5, 10.83], [-780.03, 10.31], [-775.4, 14.56], [-780.65, 20.23], [-780.28, 20.58], [-788.34, 29.29], [-788.7, 28.97], [-789.79, 30.17], [-792.87, 27.34], [-791.81, 26.19], [-795.09, 23.17]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-879.0, -32.66], [-854.71, -60.19], [-851.86, -57.7], [-851.54, -58.07], [-845.36, -52.65], [-845.69, -52.29], [-842.68, -49.65], [-866.97, -22.13], [-879.0, -32.66]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1158}}, {"shape": {"outer": [[-833.09, 5.67], [-813.38, -16.44], [-811.8, -15.04], [-808.68, -18.56], [-805.13, -15.41], [-806.15, -14.26], [-797.76, -6.84], [-796.26, -8.53], [-790.97, -3.86], [-793.83, -0.64], [-787.91, 4.58], [-785.5, 1.88], [-782.83, 4.24], [-805.71, 29.9], [-833.09, 5.67]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.771, "pop": 0, "jobs": 771}}, {"shape": {"outer": [[-864.71, -18.16], [-849.01, -35.8], [-847.89, -34.82], [-841.17, -42.39], [-829.75, -32.3], [-836.82, -24.37], [-835.99, -23.63], [-846.72, -11.58], [-845.4, -10.42], [-844.52, -9.64], [-849.16, -4.42], [-864.71, -18.16]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.333, "pop": 0, "jobs": 333}}, {"shape": {"outer": [[-994.8, -37.74], [-1015.4, -36.69], [-1015.49, -38.61], [-1016.53, -58.97], [-1017.1, -69.89], [-1015.22, -69.98], [-996.59, -71.01], [-996.01, -60.19], [-994.8, -37.74]], "holes": []}, "height": 31.5, "data": {"type": "residential", "density": 1.0, "pop": 1078, "jobs": 0}}, {"shape": {"outer": [[-775.01, 31.59], [-767.26, 23.09], [-760.1, 29.56], [-762.7, 32.4], [-762.34, 32.74], [-767.49, 38.4], [-775.01, 31.59]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-782.74, 38.11], [-775.82, 30.89], [-775.67, 31.03], [-771.9, 27.1], [-772.05, 26.96], [-769.38, 24.17], [-775.32, 18.52], [-788.68, 32.46], [-782.74, 38.11]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-745.05, 52.73], [-738.68, 45.59], [-753.2, 32.72], [-754.4, 34.07], [-756.79, 31.95], [-760.65, 36.27], [-758.1, 38.53], [-759.42, 40.0], [-745.05, 52.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-781.13, -24.72], [-757.97, -49.91], [-750.07, -42.71], [-750.56, -42.19], [-745.6, -37.66], [-749.12, -33.83], [-748.49, -33.25], [-764.51, -15.84], [-770.08, -20.91], [-773.22, -17.49], [-781.13, -24.72]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.325, "pop": 0, "jobs": 325}}, {"shape": {"outer": [[-788.13, -30.66], [-775.52, -44.43], [-769.28, -38.75], [-781.88, -24.99], [-788.13, -30.66]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-714.74, -35.35], [-704.36, -46.46], [-698.13, -40.68], [-700.65, -37.99], [-679.62, -18.47], [-682.47, -15.42], [-680.05, -13.19], [-684.4, -8.54], [-686.81, -10.77], [-687.48, -10.05], [-714.74, -35.35]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.84, "pop": 420, "jobs": 0}}, {"shape": {"outer": [[-707.97, -7.47], [-701.57, -1.42], [-702.24, -0.72], [-699.47, 1.91], [-699.43, 3.39], [-701.24, 5.29], [-702.54, 5.4], [-705.74, 8.76], [-708.58, 6.07], [-709.21, 6.74], [-717.18, -0.82], [-714.22, -3.92], [-712.71, -2.5], [-707.97, -7.47]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-726.59, 16.5], [-728.19, 18.24], [-723.96, 22.07], [-723.72, 23.87], [-721.92, 25.49], [-719.68, 25.35], [-710.37, 15.2], [-718.06, 8.21], [-722.63, 13.21], [-726.45, 9.75], [-729.88, 13.51], [-726.59, 16.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-748.1, 2.3], [-735.97, -10.9], [-729.55, -5.05], [-732.94, -1.37], [-731.83, -0.34], [-728.0, -4.52], [-721.51, 1.4], [-734.28, 15.29], [-740.16, 9.92], [-739.67, 9.38], [-741.34, 7.87], [-741.63, 8.18], [-748.1, 2.3]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.356, "pop": 178, "jobs": 0}}, {"shape": {"outer": [[-709.68, -13.23], [-705.69, -17.43], [-699.79, -11.84], [-698.87, -12.81], [-692.03, -6.35], [-697.31, -0.82], [-700.34, -3.69], [-701.08, -2.92], [-704.83, -6.47], [-703.74, -7.61], [-709.68, -13.23]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-680.74, 48.08], [-688.77, 56.56], [-689.9, 55.51], [-692.72, 58.48], [-700.94, 50.75], [-699.94, 49.69], [-702.14, 47.6], [-692.06, 36.97], [-689.16, 39.71], [-691.43, 42.1], [-687.99, 45.33], [-685.95, 43.18], [-680.74, 48.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-743.88, 97.82], [-738.3, 102.94], [-731.2, 109.48], [-705.91, 82.16], [-718.99, 70.14], [-721.96, 73.34], [-721.01, 74.22], [-724.0, 77.46], [-724.56, 76.95], [-727.86, 80.5], [-729.69, 78.83], [-741.9, 92.02], [-740.06, 93.7], [-743.88, 97.82]], "holes": []}, "height": 35.0, "data": {"type": "residential", "density": 1.0, "pop": 1198, "jobs": 0}}, {"shape": {"outer": [[-609.0, 178.2], [-601.63, 170.37], [-598.25, 173.53], [-597.93, 173.2], [-594.68, 176.24], [-594.95, 176.52], [-591.39, 179.86], [-591.79, 180.29], [-589.86, 182.1], [-596.88, 189.55], [-609.0, 178.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-768.11, 116.1], [-756.6, 103.12], [-754.28, 105.17], [-753.06, 103.81], [-742.55, 113.07], [-739.72, 109.86], [-731.66, 116.97], [-741.07, 127.57], [-742.73, 126.11], [-748.31, 132.39], [-750.88, 130.13], [-752.37, 131.82], [-767.1, 118.85], [-766.17, 117.81], [-768.11, 116.1]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.81, "pop": 405, "jobs": 0}}, {"shape": {"outer": [[-729.71, 150.09], [-715.76, 134.35], [-709.11, 140.21], [-715.19, 147.06], [-715.02, 147.22], [-718.11, 150.69], [-718.28, 150.54], [-723.07, 155.95], [-729.71, 150.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-693.57, 185.92], [-689.17, 189.77], [-691.05, 191.9], [-683.56, 198.43], [-674.96, 188.65], [-676.93, 186.93], [-672.91, 182.37], [-682.42, 174.08], [-686.53, 178.76], [-686.95, 178.39], [-693.57, 185.92]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[-664.94, 151.31], [-651.49, 136.98], [-645.2, 142.82], [-658.75, 157.28], [-663.41, 152.95], [-664.94, 151.31]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-709.2, 172.85], [-697.94, 161.1], [-690.18, 168.48], [-702.61, 181.46], [-706.41, 177.86], [-705.22, 176.62], [-709.2, 172.85]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-602.35, 140.72], [-600.74, 139.0], [-589.19, 126.64], [-579.07, 136.02], [-592.24, 150.1], [-602.35, 140.72]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.372, "pop": 186, "jobs": 0}}, {"shape": {"outer": [[-749.43, 137.06], [-742.75, 143.09], [-739.22, 139.21], [-739.08, 139.34], [-727.82, 126.97], [-734.65, 120.81], [-749.43, 137.06]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-724.82, 162.78], [-707.97, 144.14], [-702.54, 149.02], [-705.06, 151.81], [-700.91, 155.53], [-712.99, 168.9], [-716.59, 165.68], [-718.83, 168.15], [-724.82, 162.78]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.2, "pop": 100, "jobs": 0}}, {"shape": {"outer": [[-677.8, 140.12], [-670.09, 147.22], [-667.67, 147.11], [-666.14, 146.25], [-652.46, 131.49], [-661.7, 122.99], [-667.29, 129.02], [-666.41, 129.82], [-667.13, 130.6], [-666.06, 131.58], [-671.51, 137.45], [-673.57, 135.55], [-677.8, 140.12]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-741.05, 144.55], [-735.33, 138.41], [-735.12, 138.61], [-732.56, 135.87], [-731.91, 136.47], [-728.09, 132.37], [-727.46, 132.95], [-725.05, 130.37], [-719.27, 135.73], [-733.78, 151.28], [-741.05, 144.55]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-619.02, 190.09], [-617.6, 188.5], [-621.9, 184.68], [-617.54, 179.8], [-616.76, 180.51], [-614.3, 177.76], [-599.65, 190.74], [-604.16, 195.8], [-605.39, 194.72], [-609.59, 199.43], [-610.85, 198.29], [-612.81, 200.5], [-619.65, 194.42], [-617.21, 191.69], [-619.02, 190.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[-708.84, 117.92], [-701.04, 109.62], [-702.12, 108.61], [-692.66, 98.54], [-683.71, 106.88], [-700.96, 125.25], [-708.84, 117.92]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.306, "pop": 153, "jobs": 0}}, {"shape": {"outer": [[-687.02, 123.62], [-681.87, 117.89], [-674.71, 109.92], [-667.46, 116.39], [-675.08, 124.88], [-673.22, 126.54], [-677.18, 130.94], [-678.3, 129.94], [-681.8, 133.83], [-684.69, 131.26], [-681.92, 128.18], [-687.02, 123.62]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.222, "pop": 111, "jobs": 0}}, {"shape": {"outer": [[-636.73, 203.32], [-631.48, 197.54], [-631.14, 197.85], [-626.86, 193.13], [-618.81, 200.37], [-619.73, 201.38], [-616.23, 204.53], [-619.69, 208.34], [-617.81, 210.03], [-623.07, 215.85], [-628.45, 211.0], [-629.24, 211.87], [-633.12, 208.38], [-632.22, 207.38], [-636.73, 203.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[-617.49, 158.2], [-613.9, 161.53], [-613.4, 160.99], [-607.73, 166.22], [-620.03, 179.46], [-623.77, 176.01], [-625.84, 178.25], [-629.75, 174.65], [-628.18, 172.96], [-629.81, 171.46], [-617.49, 158.2]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-638.4, 152.15], [-626.3, 163.25], [-635.79, 173.52], [-634.09, 175.07], [-641.28, 182.86], [-648.4, 176.34], [-646.99, 174.81], [-647.85, 174.03], [-645.43, 171.46], [-648.48, 168.64], [-647.28, 167.33], [-648.23, 166.46], [-646.07, 164.12], [-647.9, 162.44], [-638.4, 152.15]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.256, "pop": 128, "jobs": 0}}, {"shape": {"outer": [[-675.15, 202.43], [-660.35, 186.55], [-657.68, 189.02], [-655.06, 186.21], [-652.83, 188.28], [-655.44, 191.09], [-651.99, 194.27], [-666.42, 209.75], [-671.09, 205.43], [-671.47, 205.84], [-675.15, 202.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-647.42, 198.35], [-641.64, 203.62], [-643.98, 206.16], [-642.47, 207.54], [-643.85, 209.05], [-637.75, 214.6], [-636.45, 213.17], [-628.85, 220.08], [-630.17, 221.52], [-629.98, 221.7], [-643.0, 235.89], [-653.51, 226.31], [-650.82, 223.39], [-652.82, 221.57], [-650.55, 219.1], [-658.71, 211.67], [-651.08, 203.35], [-650.67, 203.73], [-648.74, 201.61], [-649.65, 200.78], [-647.42, 198.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.408, "pop": 204, "jobs": 0}}, {"shape": {"outer": [[-408.5, 415.48], [-408.06, 415.0], [-410.4, 412.88], [-405.69, 407.73], [-403.35, 409.85], [-401.33, 407.65], [-388.82, 419.02], [-395.99, 426.85], [-408.5, 415.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-481.39, 8.57], [-478.36, 11.29], [-478.37, 13.69], [-470.54, 20.74], [-480.39, 31.61], [-480.66, 31.37], [-481.23, 32.0], [-485.59, 28.08], [-485.02, 27.46], [-485.72, 26.83], [-483.9, 24.82], [-488.23, 20.94], [-485.95, 18.42], [-488.36, 16.27], [-481.39, 8.57]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-538.68, 5.42], [-537.14, 6.78], [-541.54, 11.74], [-545.47, 8.26], [-545.8, 8.64], [-549.29, 8.42], [-552.66, 5.45], [-553.14, 1.94], [-552.92, 1.69], [-555.2, -0.31], [-551.81, -4.12], [-552.63, -4.84], [-549.42, -8.44], [-551.05, -9.88], [-544.56, -17.16], [-542.58, -15.42], [-529.08, -30.62], [-524.61, -26.67], [-523.42, -28.01], [-519.17, -24.27], [-520.1, -23.21], [-516.26, -19.81], [-538.68, 5.42]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.474, "pop": 0, "jobs": 474}}, {"shape": {"outer": [[-489.2, 41.31], [-484.31, 36.08], [-483.37, 36.96], [-481.43, 34.89], [-467.37, 47.95], [-474.2, 55.25], [-489.2, 41.31]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-531.63, 10.42], [-520.53, -1.35], [-523.81, -4.41], [-519.26, -9.24], [-515.67, -5.87], [-510.61, -11.24], [-510.19, -10.85], [-508.46, -12.7], [-504.96, -9.43], [-506.7, -7.58], [-503.15, -4.26], [-507.12, -0.05], [-505.73, 1.26], [-510.39, 6.2], [-511.69, 4.97], [-516.52, 10.1], [-518.83, 7.95], [-526.06, 15.63], [-531.63, 10.42]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.24, "pop": 120, "jobs": 0}}, {"shape": {"outer": [[-511.28, 221.3], [-508.43, 218.06], [-508.82, 217.72], [-505.26, 213.67], [-504.7, 214.16], [-501.37, 210.38], [-495.05, 215.9], [-504.8, 226.97], [-511.28, 221.3]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-553.55, 43.17], [-544.17, 33.41], [-538.1, 39.2], [-547.49, 48.96], [-547.68, 48.78], [-549.2, 50.36], [-554.71, 45.1], [-553.18, 43.51], [-553.55, 43.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-518.52, 20.04], [-496.73, -3.38], [-484.25, 8.15], [-506.04, 31.58], [-518.52, 20.04]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.762, "pop": 381, "jobs": 0}}, {"shape": {"outer": [[-498.71, 44.64], [-495.93, 41.57], [-494.65, 42.71], [-492.47, 40.31], [-484.58, 47.39], [-484.41, 47.21], [-479.64, 51.51], [-480.07, 51.98], [-476.76, 54.95], [-482.21, 60.96], [-490.13, 53.83], [-488.54, 52.09], [-494.96, 46.31], [-495.8, 47.25], [-498.71, 44.64]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-546.66, 49.93], [-537.65, 39.94], [-530.73, 46.12], [-539.78, 56.16], [-540.52, 55.49], [-541.7, 56.8], [-547.54, 51.58], [-546.33, 50.22], [-546.66, 49.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-562.29, 36.65], [-551.89, 25.84], [-545.72, 31.73], [-556.11, 42.54], [-562.29, 36.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-475.14, 34.38], [-465.78, 43.12], [-460.38, 37.38], [-459.29, 37.11], [-458.43, 36.38], [-458.01, 35.33], [-458.16, 34.14], [-458.88, 33.16], [-459.99, 32.67], [-467.2, 25.94], [-470.44, 29.37], [-471.93, 27.99], [-474.81, 31.07], [-473.33, 32.46], [-475.14, 34.38]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-535.82, 169.46], [-535.12, 168.72], [-536.73, 167.2], [-525.8, 155.62], [-521.01, 160.11], [-522.63, 161.83], [-517.33, 166.79], [-520.49, 170.14], [-515.02, 175.28], [-515.74, 176.04], [-513.15, 178.47], [-513.98, 179.35], [-512.28, 180.94], [-516.89, 185.85], [-521.85, 181.21], [-522.43, 181.83], [-527.76, 176.83], [-528.34, 177.44], [-530.46, 175.45], [-529.97, 174.94], [-535.82, 169.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.268, "pop": 134, "jobs": 0}}, {"shape": {"outer": [[-622.83, 45.3], [-620.67, 47.25], [-619.83, 46.32], [-617.57, 48.37], [-618.89, 49.82], [-614.6, 53.71], [-603.76, 41.82], [-612.48, 33.94], [-622.83, 45.3]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-531.48, 203.46], [-537.65, 198.08], [-536.88, 197.21], [-537.14, 196.98], [-528.39, 187.03], [-521.94, 192.66], [-525.04, 196.18], [-523.01, 197.96], [-526.36, 201.77], [-528.41, 199.97], [-531.48, 203.46]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-510.37, 173.96], [-501.3, 163.84], [-494.44, 169.94], [-494.06, 170.28], [-501.29, 178.34], [-500.08, 179.42], [-503.74, 183.5], [-510.57, 177.42], [-508.75, 175.4], [-510.37, 173.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-527.52, 204.98], [-522.9, 199.89], [-523.48, 199.36], [-519.69, 195.2], [-515.13, 199.31], [-514.06, 198.13], [-510.43, 201.39], [-519.92, 211.83], [-527.52, 204.98]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-515.37, 140.99], [-508.54, 133.29], [-507.26, 131.87], [-506.64, 132.4], [-504.34, 129.8], [-501.22, 132.55], [-500.37, 131.59], [-499.35, 132.5], [-497.83, 132.41], [-496.22, 133.79], [-496.27, 135.19], [-492.19, 138.8], [-493.57, 140.33], [-489.41, 144.0], [-487.22, 145.93], [-490.84, 150.03], [-489.79, 150.94], [-493.43, 155.04], [-494.39, 154.2], [-499.45, 149.73], [-500.63, 151.05], [-503.03, 148.94], [-505.89, 149.33], [-515.37, 140.99]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.203, "pop": 0, "jobs": 203}}, {"shape": {"outer": [[-488.72, 198.25], [-478.48, 207.6], [-472.26, 200.84], [-466.88, 205.75], [-464.44, 203.11], [-463.46, 204.02], [-460.26, 200.56], [-457.34, 197.39], [-452.51, 201.81], [-448.18, 205.77], [-447.25, 205.93], [-446.42, 205.55], [-436.8, 194.57], [-434.81, 196.29], [-432.91, 194.12], [-432.77, 193.39], [-432.88, 192.7], [-433.19, 192.09], [-433.84, 191.48], [-433.06, 190.66], [-449.28, 175.52], [-449.89, 175.26], [-450.61, 175.24], [-451.23, 175.54], [-460.93, 166.61], [-465.41, 171.44], [-465.51, 171.78], [-464.87, 172.36], [-476.31, 184.76], [-476.74, 184.56], [-477.35, 184.68], [-477.86, 185.04], [-478.63, 185.89], [-479.65, 187.02], [-478.91, 187.63], [-479.97, 188.75], [-488.72, 198.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.944, "pop": 472, "jobs": 0}}, {"shape": {"outer": [[-554.68, 183.47], [-551.5, 179.98], [-552.5, 179.08], [-547.64, 173.72], [-544.62, 173.7], [-542.72, 175.4], [-542.73, 176.77], [-537.24, 181.7], [-540.75, 185.57], [-542.15, 184.32], [-547.34, 190.06], [-554.68, 183.47]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-612.61, 56.06], [-609.05, 52.23], [-609.49, 51.83], [-607.39, 49.57], [-607.88, 49.12], [-604.4, 45.37], [-603.91, 45.84], [-601.21, 42.94], [-597.26, 46.59], [-598.31, 47.72], [-594.31, 51.42], [-594.11, 53.73], [-600.15, 60.2], [-602.06, 58.43], [-605.74, 62.39], [-612.61, 56.06]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-520.06, 213.22], [-507.49, 199.81], [-505.45, 201.72], [-504.74, 200.95], [-500.02, 205.35], [-513.29, 219.52], [-520.06, 213.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-592.19, 78.66], [-586.87, 73.05], [-588.45, 71.56], [-584.64, 67.54], [-583.07, 69.02], [-576.72, 62.3], [-568.14, 70.36], [-569.99, 72.31], [-569.3, 72.96], [-582.93, 87.36], [-592.19, 78.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.236, "pop": 118, "jobs": 0}}, {"shape": {"outer": [[-434.81, 260.44], [-427.33, 252.45], [-408.96, 269.49], [-416.44, 277.49], [-434.81, 260.44]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.48, "pop": 240, "jobs": 0}}, {"shape": {"outer": [[-540.78, 100.01], [-535.74, 94.38], [-523.44, 105.29], [-528.48, 110.92], [-540.78, 100.01]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-575.92, 133.8], [-566.92, 124.27], [-552.95, 137.38], [-553.24, 137.68], [-551.08, 139.7], [-558.58, 147.63], [-560.58, 145.76], [-561.81, 147.05], [-575.92, 133.8]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[-560.93, 122.38], [-555.64, 116.86], [-541.97, 129.9], [-547.16, 135.3], [-548.94, 133.61], [-549.39, 134.09], [-558.79, 125.12], [-558.44, 124.76], [-560.93, 122.38]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-549.68, 105.63], [-545.4, 101.17], [-540.22, 106.1], [-539.28, 105.11], [-536.0, 108.23], [-535.41, 107.61], [-533.38, 109.54], [-533.88, 110.06], [-530.48, 113.3], [-533.09, 116.02], [-532.18, 116.89], [-534.11, 118.91], [-535.02, 118.03], [-535.81, 118.84], [-549.68, 105.63]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-449.97, 274.96], [-439.56, 263.82], [-422.75, 279.43], [-433.17, 290.56], [-449.97, 274.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.28, "pop": 140, "jobs": 0}}, {"shape": {"outer": [[-613.26, 116.43], [-601.78, 104.16], [-591.9, 113.34], [-606.94, 129.41], [-613.86, 122.98], [-616.72, 126.03], [-619.84, 123.13], [-618.85, 122.05], [-620.96, 120.1], [-615.53, 114.3], [-613.26, 116.43]], "holes": []}, "height": 31.5, "data": {"type": "residential", "density": 1.0, "pop": 533, "jobs": 0}}, {"shape": {"outer": [[-655.81, 83.25], [-642.83, 70.05], [-636.99, 75.76], [-650.15, 89.14], [-652.63, 86.71], [-653.54, 87.63], [-655.46, 85.76], [-654.37, 84.65], [-655.81, 83.25]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-641.31, 99.38], [-630.75, 87.68], [-637.2, 81.9], [-647.76, 93.59], [-641.31, 99.38]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-428.95, 291.22], [-419.94, 281.75], [-410.87, 290.31], [-419.88, 299.79], [-428.95, 291.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-555.72, 113.24], [-551.46, 108.87], [-548.87, 111.37], [-547.83, 110.3], [-545.69, 112.39], [-544.9, 111.58], [-541.88, 114.49], [-542.5, 115.13], [-537.02, 120.44], [-542.49, 126.06], [-555.72, 113.24]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-641.18, 101.37], [-640.05, 100.14], [-640.3, 99.9], [-634.06, 93.19], [-634.52, 92.77], [-627.17, 84.85], [-624.05, 87.71], [-622.23, 85.75], [-617.64, 89.97], [-619.47, 91.93], [-619.03, 92.33], [-633.75, 108.21], [-641.18, 101.37]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-664.96, 76.07], [-659.01, 81.51], [-657.96, 80.37], [-657.29, 80.98], [-646.68, 69.45], [-653.44, 63.29], [-664.05, 74.82], [-663.92, 74.93], [-664.96, 76.07]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-575.91, 87.61], [-569.02, 80.09], [-565.58, 83.21], [-562.45, 79.79], [-556.46, 85.24], [-562.18, 91.48], [-559.47, 93.95], [-563.78, 98.65], [-575.91, 87.61]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-633.24, -216.79], [-605.43, -191.77], [-583.28, -216.22], [-611.09, -241.24], [-633.24, -216.79]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.79, "pop": 0, "jobs": 790}}, {"shape": {"outer": [[-545.88, -190.75], [-531.56, -177.83], [-586.13, -117.77], [-597.45, -127.97], [-583.02, -143.85], [-586.52, -147.01], [-556.28, -180.3], [-555.78, -179.85], [-545.88, -190.75]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1267}}, {"shape": {"outer": [[-698.52, -224.17], [-693.85, -229.31], [-691.15, -226.87], [-690.25, -227.88], [-684.47, -222.65], [-685.37, -221.66], [-680.29, -217.06], [-679.29, -218.15], [-673.43, -212.86], [-674.43, -211.77], [-671.62, -209.24], [-676.23, -204.18], [-679.19, -206.86], [-681.59, -204.23], [-687.45, -209.52], [-685.05, -212.15], [-690.25, -216.85], [-692.74, -214.1], [-698.34, -219.14], [-695.91, -221.83], [-698.52, -224.17]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.298, "pop": 149, "jobs": 0}}, {"shape": {"outer": [[-495.7, -96.51], [-490.73, -96.71], [-485.76, -96.92], [-484.57, -78.58], [-484.32, -75.3], [-456.31, -50.56], [-481.05, -23.56], [-511.48, -50.53], [-494.55, -69.49], [-494.77, -74.66], [-495.7, -96.51]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.965, "pop": 0, "jobs": 965}}, {"shape": {"outer": [[-1059.44, -380.0], [-1004.91, -382.65], [-1004.16, -367.42], [-1042.6, -365.56], [-1042.06, -354.66], [-1041.38, -340.6], [-1057.48, -339.81], [-1059.44, -380.0]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 1729, "jobs": 0}}, {"shape": {"outer": [[-759.45, -496.28], [-750.4, -505.83], [-744.69, -500.47], [-747.35, -497.67], [-746.88, -497.24], [-750.36, -493.57], [-750.82, -494.0], [-753.75, -490.91], [-759.45, -496.28]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-726.32, -321.25], [-711.47, -337.41], [-709.66, -337.52], [-707.9, -335.91], [-707.91, -334.3], [-707.8, -334.19], [-706.28, -334.29], [-704.5, -332.67], [-704.46, -331.01], [-704.33, -330.89], [-702.56, -330.98], [-700.91, -329.48], [-700.84, -327.8], [-700.75, -327.72], [-699.08, -327.81], [-697.36, -326.24], [-697.33, -324.63], [-697.06, -324.39], [-695.61, -324.42], [-693.91, -322.88], [-693.8, -321.33], [-693.61, -321.16], [-692.07, -321.19], [-690.33, -319.61], [-690.3, -316.08], [-691.79, -314.45], [-693.21, -314.44], [-694.74, -312.79], [-688.7, -307.28], [-688.75, -305.33], [-689.85, -304.12], [-691.64, -304.04], [-695.93, -299.36], [-695.76, -297.8], [-697.02, -296.42], [-699.03, -296.37], [-726.32, -321.25]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 556, "jobs": 0}}, {"shape": {"outer": [[-951.17, -326.54], [-951.34, -331.2], [-952.69, -331.15], [-952.84, -335.12], [-948.65, -335.27], [-948.7, -336.46], [-938.53, -336.85], [-938.36, -332.39], [-937.44, -331.57], [-937.32, -329.5], [-938.2, -328.56], [-938.14, -327.04], [-951.17, -326.54]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1098.94, -216.52], [-1095.24, -216.68], [-1095.27, -217.25], [-1086.16, -217.65], [-1086.14, -217.14], [-1079.44, -217.43], [-1079.07, -208.91], [-1096.93, -208.13], [-1097.07, -211.25], [-1098.7, -211.17], [-1098.94, -216.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1129.97, -217.25], [-1121.3, -217.76], [-1121.44, -220.1], [-1114.86, -220.49], [-1114.05, -206.78], [-1129.25, -205.82], [-1129.97, -217.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-1095.56, -126.21], [-1076.27, -127.13], [-1075.58, -127.16], [-1073.23, -127.27], [-1072.96, -121.49], [-1072.73, -116.77], [-1074.88, -116.67], [-1074.84, -115.84], [-1095.01, -114.89], [-1095.56, -126.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-1157.07, -113.32], [-1157.29, -116.89], [-1153.36, -117.12], [-1153.72, -123.24], [-1183.81, -121.44], [-1183.68, -119.27], [-1183.19, -111.16], [-1174.08, -111.71], [-1172.11, -110.0], [-1156.95, -110.91], [-1157.07, -113.32]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.207, "pop": 0, "jobs": 207}}, {"shape": {"outer": [[-1189.05, -207.84], [-1189.24, -211.74], [-1189.39, -214.96], [-1188.52, -215.0], [-1188.56, -216.07], [-1188.62, -217.08], [-1189.56, -217.03], [-1189.76, -221.02], [-1190.81, -242.96], [-1188.11, -243.09], [-1185.35, -243.23], [-1185.31, -242.31], [-1183.91, -242.37], [-1182.68, -242.43], [-1182.72, -243.35], [-1177.38, -243.6], [-1177.34, -242.68], [-1174.89, -242.79], [-1173.63, -215.4], [-1173.33, -209.24], [-1174.72, -209.18], [-1174.68, -208.52], [-1189.05, -207.84]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.77, "pop": 385, "jobs": 0}}, {"shape": {"outer": [[-997.16, -215.22], [-991.85, -221.22], [-990.69, -220.94], [-988.67, -223.22], [-983.85, -228.67], [-975.55, -221.36], [-982.59, -213.32], [-982.19, -212.1], [-987.23, -206.45], [-997.16, -215.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-1149.94, -109.89], [-1150.05, -112.67], [-1150.41, -112.65], [-1150.68, -119.26], [-1146.57, -119.42], [-1146.69, -122.14], [-1141.65, -122.34], [-1141.67, -122.69], [-1135.76, -122.94], [-1135.52, -118.17], [-1134.34, -118.22], [-1134.3, -117.37], [-1133.91, -109.33], [-1134.28, -109.32], [-1141.17, -109.06], [-1141.21, -109.97], [-1145.18, -109.81], [-1145.2, -110.08], [-1149.94, -109.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-1157.07, -113.32], [-1153.6, -113.48], [-1153.22, -105.63], [-1144.47, -106.05], [-1144.52, -107.26], [-1143.01, -107.34], [-1142.95, -106.14], [-1134.15, -106.56], [-1130.59, -106.73], [-1130.51, -105.03], [-1130.41, -103.39], [-1130.19, -98.78], [-1129.67, -87.94], [-1129.49, -83.93], [-1134.3, -83.7], [-1155.59, -82.69], [-1156.5, -102.17], [-1156.74, -106.53], [-1156.95, -110.91], [-1157.07, -113.32]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.656, "pop": 328, "jobs": 0}}, {"shape": {"outer": [[-1162.73, -215.9], [-1164.04, -244.53], [-1160.87, -244.39], [-1159.9, -244.12], [-1156.69, -241.34], [-1153.17, -238.28], [-1152.07, -237.99], [-1151.1, -238.23], [-1149.82, -239.35], [-1144.29, -244.85], [-1137.86, -245.14], [-1135.85, -205.35], [-1161.82, -203.95], [-1167.11, -208.75], [-1162.65, -212.42], [-1162.73, -215.9]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.568, "pop": 0, "jobs": 568}}, {"shape": {"outer": [[-1181.66, -81.45], [-1180.5, -81.5], [-1173.72, -81.83], [-1167.63, -82.12], [-1165.82, -82.2], [-1166.98, -106.03], [-1174.88, -105.64], [-1182.81, -105.26], [-1181.66, -81.45]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.396, "pop": 198, "jobs": 0}}, {"shape": {"outer": [[-1124.53, -108.63], [-1120.46, -108.84], [-1115.85, -109.07], [-1111.35, -109.3], [-1110.82, -98.17], [-1111.06, -98.16], [-1110.68, -90.11], [-1110.43, -84.87], [-1113.95, -84.69], [-1114.63, -84.66], [-1118.72, -84.46], [-1119.24, -84.43], [-1119.87, -84.4], [-1123.31, -84.23], [-1124.53, -108.63]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.334, "pop": 167, "jobs": 0}}, {"shape": {"outer": [[-943.25, -204.99], [-937.12, -199.4], [-936.39, -200.2], [-937.47, -201.18], [-934.1, -204.86], [-930.7, -201.77], [-934.06, -198.1], [-935.05, -199.0], [-935.81, -198.17], [-929.66, -192.57], [-949.06, -171.42], [-962.64, -183.79], [-956.51, -190.48], [-955.2, -189.28], [-947.5, -197.69], [-948.83, -198.9], [-946.93, -200.98], [-943.25, -204.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.426, "pop": 213, "jobs": 0}}, {"shape": {"outer": [[-886.21, -118.71], [-867.29, -139.96], [-856.67, -130.57], [-855.25, -132.16], [-852.96, -130.13], [-851.35, -131.94], [-848.61, -129.52], [-870.81, -104.69], [-874.15, -104.62], [-890.85, -119.28], [-889.09, -121.26], [-886.21, -118.71]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.38, "pop": 0, "jobs": 380}}, {"shape": {"outer": [[-920.69, -147.13], [-901.28, -168.37], [-886.15, -154.64], [-905.55, -133.41], [-911.34, -138.66], [-911.71, -138.27], [-915.16, -141.39], [-914.8, -141.79], [-920.69, -147.13]], "holes": []}, "height": 24.5, "data": {"type": "residential", "density": 1.0, "pop": 723, "jobs": 0}}, {"shape": {"outer": [[-930.42, -158.08], [-927.26, -161.54], [-927.77, -162.0], [-921.15, -169.27], [-914.56, -163.33], [-924.31, -152.57], [-930.42, -158.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-900.85, -128.28], [-883.02, -147.94], [-877.37, -142.85], [-895.06, -123.0], [-900.85, -128.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-1018.28, -234.14], [-1001.92, -252.68], [-996.8, -252.96], [-995.94, -252.21], [-993.21, -249.82], [-992.44, -249.15], [-990.38, -251.49], [-986.13, -247.77], [-1006.93, -224.2], [-1012.71, -229.26], [-1018.28, -234.14]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.368, "pop": 0, "jobs": 368}}, {"shape": {"outer": [[-1048.83, -199.05], [-1032.93, -216.82], [-1031.25, -218.69], [-1025.18, -213.31], [-1037.6, -199.42], [-1042.76, -193.65], [-1048.83, -199.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-1006.02, -222.84], [-984.96, -246.31], [-979.19, -241.15], [-987.5, -231.89], [-992.37, -226.47], [-1000.24, -217.7], [-1001.47, -218.8], [-1006.02, -222.84]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.156, "pop": 0, "jobs": 156}}, {"shape": {"outer": [[-866.46, -152.57], [-848.18, -172.59], [-835.44, -161.03], [-836.69, -159.66], [-831.24, -154.72], [-838.93, -146.3], [-835.83, -143.49], [-845.17, -133.26], [-866.46, -152.57]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.596, "pop": 0, "jobs": 596}}, {"shape": {"outer": [[-1024.19, -211.47], [-1022.29, -211.17], [-1020.02, -209.22], [-1019.96, -208.06], [-1017.99, -205.93], [-1016.95, -205.83], [-1014.77, -203.74], [-1014.65, -202.19], [-1026.28, -189.32], [-1027.64, -190.45], [-1036.17, -198.14], [-1024.19, -211.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[-973.91, -133.24], [-957.27, -151.84], [-952.38, -147.5], [-966.11, -132.14], [-972.58, -132.06], [-973.91, -133.24]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.098, "pop": 0, "jobs": 98}}, {"shape": {"outer": [[-909.17, -192.46], [-885.93, -218.59], [-874.66, -208.65], [-884.73, -197.31], [-874.13, -187.95], [-864.18, -199.15], [-852.63, -188.96], [-875.74, -162.96], [-909.17, -192.46]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 1409, "jobs": 0}}, {"shape": {"outer": [[-1035.96, -168.64], [-1036.25, -174.83], [-1036.4, -178.12], [-1026.28, -189.32], [-1014.65, -202.19], [-995.43, -184.95], [-1021.71, -155.86], [-1032.72, -165.73], [-1035.96, -168.64]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.633, "pop": 0, "jobs": 633}}, {"shape": {"outer": [[-828.78, -206.21], [-828.35, -206.71], [-827.0, -205.57], [-825.37, -207.47], [-824.96, -207.13], [-817.96, -215.34], [-808.34, -226.61], [-822.51, -238.62], [-823.95, -236.93], [-827.75, -240.16], [-826.33, -241.81], [-839.95, -253.35], [-843.01, -249.76], [-856.5, -233.95], [-856.01, -233.54], [-857.75, -231.5], [-856.28, -230.25], [-856.6, -229.89], [-852.99, -226.84], [-845.31, -220.33], [-844.42, -219.58], [-843.21, -221.0], [-841.43, -219.49], [-839.59, -217.93], [-840.86, -216.45], [-837.62, -213.7], [-831.56, -208.56], [-828.78, -206.21]], "holes": []}, "height": 31.5, "data": {"type": "residential", "density": 1.0, "pop": 1832, "jobs": 0}}, {"shape": {"outer": [[-566.71, -767.57], [-561.27, -773.38], [-548.72, -761.71], [-554.17, -755.9], [-566.71, -767.57]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-524.29, -823.11], [-511.88, -836.28], [-505.52, -830.32], [-517.93, -817.15], [-524.29, -823.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-588.97, -834.52], [-580.69, -843.06], [-580.48, -842.87], [-579.19, -844.21], [-575.08, -840.27], [-577.21, -838.07], [-574.33, -835.31], [-579.75, -829.73], [-582.29, -832.18], [-584.34, -830.08], [-588.97, -834.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-550.46, -781.36], [-545.05, -787.27], [-534.49, -777.67], [-539.62, -772.07], [-542.71, -774.88], [-542.99, -774.57], [-550.46, -781.36]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-582.17, -882.2], [-576.96, -887.79], [-577.8, -888.57], [-570.9, -895.97], [-565.89, -891.33], [-569.09, -887.9], [-567.69, -886.59], [-573.73, -880.1], [-574.59, -880.89], [-577.44, -877.83], [-582.17, -882.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-581.03, -769.1], [-575.51, -764.1], [-577.38, -762.04], [-576.82, -761.53], [-588.46, -748.76], [-594.56, -754.27], [-581.03, -769.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-587.55, -818.86], [-573.17, -834.29], [-568.58, -830.04], [-573.95, -824.27], [-573.03, -823.42], [-582.04, -813.76], [-587.55, -818.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-600.14, -895.43], [-590.55, -905.55], [-590.13, -905.15], [-588.22, -907.17], [-584.35, -903.53], [-586.27, -901.52], [-584.7, -900.05], [-594.29, -889.92], [-600.14, -895.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-560.13, -775.47], [-554.85, -781.19], [-551.8, -778.39], [-550.9, -779.37], [-541.85, -771.05], [-547.33, -765.11], [-552.04, -769.43], [-552.18, -769.29], [-555.38, -772.24], [-555.95, -771.62], [-560.13, -775.47]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-586.8, -746.87], [-575.01, -759.73], [-573.17, -758.06], [-572.07, -759.26], [-568.34, -755.88], [-581.24, -741.8], [-586.8, -746.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-559.47, -862.06], [-542.89, -879.89], [-531.94, -869.76], [-548.52, -851.94], [-559.47, -862.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.29, "pop": 145, "jobs": 0}}, {"shape": {"outer": [[-535.76, -793.77], [-530.62, -799.35], [-522.76, -792.14], [-523.82, -790.99], [-522.4, -789.68], [-525.56, -786.26], [-527.12, -787.68], [-528.04, -786.69], [-529.9, -788.4], [-530.27, -788.0], [-532.97, -790.47], [-532.6, -790.87], [-535.76, -793.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-582.31, -808.68], [-564.95, -827.37], [-555.04, -818.23], [-572.39, -799.54], [-582.31, -808.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[-539.44, -794.93], [-541.63, -792.54], [-541.1, -792.04], [-545.06, -787.73], [-534.37, -777.98], [-528.57, -784.31], [-531.4, -786.88], [-531.04, -787.28], [-539.44, -794.93]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-636.42, -853.55], [-625.82, -864.96], [-624.68, -863.91], [-623.02, -865.7], [-624.36, -866.93], [-617.67, -874.14], [-614.96, -871.64], [-613.89, -872.79], [-609.44, -868.69], [-610.58, -867.45], [-609.23, -866.21], [-608.1, -867.43], [-601.15, -861.03], [-602.19, -859.91], [-600.02, -857.92], [-598.92, -859.1], [-592.25, -852.96], [-593.34, -851.78], [-591.91, -850.47], [-590.8, -851.67], [-586.48, -847.7], [-587.55, -846.55], [-584.8, -844.0], [-591.38, -836.91], [-592.47, -837.91], [-594.13, -836.12], [-592.99, -835.07], [-603.62, -823.62], [-606.2, -825.99], [-607.24, -824.86], [-614.84, -831.85], [-608.44, -838.75], [-611.16, -841.25], [-609.01, -843.58], [-609.88, -844.38], [-612.08, -842.0], [-616.09, -845.69], [-614.94, -846.93], [-617.0, -848.82], [-618.16, -847.56], [-620.8, -850.0], [-627.25, -843.04], [-634.77, -849.97], [-633.74, -851.09], [-636.42, -853.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.934, "pop": 467, "jobs": 0}}, {"shape": {"outer": [[-649.0, -900.72], [-658.42, -890.47], [-657.25, -889.41], [-660.03, -886.38], [-655.72, -882.45], [-651.87, -886.65], [-651.2, -886.05], [-648.34, -889.16], [-648.63, -889.43], [-645.95, -892.34], [-646.4, -892.76], [-643.6, -895.8], [-644.38, -896.51], [-642.59, -898.46], [-645.11, -900.76], [-646.9, -898.82], [-649.0, -900.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-430.65, -912.79], [-425.15, -918.61], [-416.07, -910.08], [-416.3, -909.84], [-414.1, -907.78], [-418.98, -902.63], [-421.17, -904.69], [-421.57, -904.27], [-430.65, -912.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-556.7, -803.4], [-554.09, -806.25], [-555.42, -807.46], [-549.59, -813.81], [-549.18, -813.43], [-548.21, -814.49], [-543.8, -810.48], [-544.77, -809.42], [-544.46, -809.14], [-550.36, -802.71], [-550.48, -802.83], [-553.03, -800.06], [-556.7, -803.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-657.07, -877.93], [-649.97, -885.46], [-649.65, -885.15], [-640.98, -894.34], [-635.29, -889.02], [-651.05, -872.3], [-657.07, -877.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-648.27, -870.31], [-631.84, -888.39], [-620.86, -878.46], [-637.3, -860.4], [-648.27, -870.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.29, "pop": 145, "jobs": 0}}, {"shape": {"outer": [[-484.9, -853.93], [-467.37, -873.17], [-456.79, -863.6], [-474.32, -844.36], [-484.9, -853.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.298, "pop": 149, "jobs": 0}}, {"shape": {"outer": [[-554.01, -796.6], [-545.53, -805.89], [-545.12, -805.51], [-542.19, -808.73], [-536.5, -803.57], [-547.91, -791.07], [-554.01, -796.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-579.62, -739.11], [-578.24, -740.63], [-578.43, -740.8], [-566.18, -754.38], [-565.17, -753.48], [-564.25, -754.5], [-559.58, -750.31], [-559.95, -749.9], [-558.47, -748.58], [-571.29, -734.39], [-573.43, -736.31], [-574.8, -734.8], [-579.62, -739.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-513.04, -815.37], [-502.04, -827.31], [-493.3, -819.31], [-504.3, -807.38], [-513.04, -815.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-536.21, -841.97], [-519.99, -859.54], [-507.81, -848.37], [-524.02, -830.81], [-528.88, -835.27], [-529.37, -834.73], [-533.89, -838.88], [-533.4, -839.41], [-536.21, -841.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.32, "pop": 160, "jobs": 0}}, {"shape": {"outer": [[-573.08, -876.02], [-556.08, -894.43], [-546.4, -885.55], [-563.41, -867.15], [-573.08, -876.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.264, "pop": 132, "jobs": 0}}, {"shape": {"outer": [[-668.63, -896.59], [-664.31, -901.22], [-664.7, -901.59], [-660.31, -906.3], [-659.91, -905.94], [-657.18, -908.87], [-656.75, -908.48], [-655.42, -909.91], [-649.91, -904.8], [-651.23, -903.37], [-650.96, -903.11], [-662.42, -890.83], [-668.63, -896.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-545.58, -849.08], [-539.44, -855.72], [-539.24, -855.54], [-537.41, -857.51], [-533.34, -853.78], [-535.15, -851.83], [-533.3, -850.13], [-539.48, -843.46], [-545.58, -849.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-558.44, -954.1], [-556.78, -952.55], [-554.51, -954.93], [-550.72, -951.38], [-558.63, -943.02], [-562.68, -946.82], [-561.03, -948.57], [-562.42, -949.88], [-558.44, -954.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-558.39, -910.49], [-554.68, -914.63], [-550.53, -910.93], [-554.24, -906.79], [-558.39, -910.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-588.92, -937.86], [-583.58, -943.79], [-577.72, -938.56], [-583.06, -932.62], [-588.92, -937.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-560.07, -940.76], [-549.04, -952.49], [-544.05, -947.83], [-548.33, -943.27], [-547.43, -942.43], [-551.0, -938.64], [-549.93, -937.64], [-553.1, -934.26], [-554.84, -935.87], [-556.59, -934.0], [-559.72, -936.92], [-558.95, -937.76], [-559.93, -938.67], [-558.95, -939.71], [-560.07, -940.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-488.34, -867.95], [-475.65, -881.81], [-469.13, -875.88], [-481.83, -862.03], [-488.34, -867.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-584.85, -958.33], [-574.13, -970.2], [-568.13, -964.83], [-578.86, -952.95], [-584.85, -958.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-580.17, -913.95], [-574.77, -909.43], [-569.88, -915.24], [-572.74, -917.62], [-571.25, -919.39], [-575.63, -923.06], [-581.18, -916.46], [-579.35, -914.94], [-580.17, -913.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-529.18, -894.32], [-512.19, -912.76], [-502.17, -903.6], [-519.17, -885.16], [-529.18, -894.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.272, "pop": 136, "jobs": 0}}, {"shape": {"outer": [[-588.99, -968.03], [-577.7, -980.26], [-576.01, -978.71], [-576.27, -978.42], [-573.26, -975.66], [-574.63, -974.18], [-573.5, -973.14], [-583.15, -962.69], [-588.99, -968.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-574.1, -954.59], [-562.91, -966.24], [-558.03, -961.58], [-569.22, -949.92], [-574.1, -954.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-547.09, -921.53], [-543.51, -925.43], [-544.17, -926.02], [-539.8, -930.77], [-539.15, -930.17], [-536.26, -933.32], [-535.97, -933.08], [-534.46, -934.73], [-529.49, -930.2], [-531.02, -928.55], [-530.47, -928.04], [-537.27, -920.64], [-538.09, -921.38], [-540.89, -918.33], [-543.2, -920.43], [-544.43, -919.1], [-547.09, -921.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-696.04, -925.68], [-689.12, -933.47], [-685.48, -930.25], [-679.4, -937.08], [-668.36, -927.33], [-681.35, -912.72], [-696.04, -925.68]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.217, "pop": 0, "jobs": 217}}, {"shape": {"outer": [[-497.15, -842.18], [-491.72, -848.07], [-480.35, -837.66], [-485.78, -831.77], [-497.15, -842.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-564.83, -915.91], [-564.62, -916.12], [-566.5, -917.78], [-563.04, -921.69], [-561.16, -920.03], [-560.87, -920.36], [-555.78, -915.88], [-559.75, -911.43], [-564.83, -915.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-676.01, -831.6], [-655.31, -854.41], [-653.54, -852.82], [-651.91, -854.62], [-648.0, -851.1], [-648.66, -850.37], [-645.29, -847.34], [-649.65, -842.52], [-648.0, -841.04], [-646.96, -842.2], [-638.37, -834.46], [-639.52, -833.2], [-634.42, -828.61], [-633.37, -829.77], [-624.78, -822.02], [-625.79, -820.92], [-624.23, -819.52], [-619.83, -824.36], [-616.27, -821.15], [-615.82, -821.66], [-611.99, -818.21], [-613.57, -816.46], [-611.63, -814.72], [-632.3, -791.94], [-634.1, -793.57], [-635.61, -791.92], [-640.15, -796.0], [-639.67, -796.53], [-642.11, -798.73], [-637.9, -803.37], [-639.15, -804.49], [-640.0, -803.55], [-648.11, -810.85], [-647.36, -811.68], [-649.55, -813.65], [-648.28, -815.04], [-651.56, -817.99], [-652.85, -816.58], [-655.22, -818.71], [-655.97, -817.89], [-663.88, -825.01], [-663.03, -825.96], [-664.41, -827.21], [-668.49, -822.7], [-671.14, -825.09], [-671.7, -824.49], [-675.85, -828.22], [-674.23, -830.0], [-676.01, -831.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 646, "jobs": 0}}, {"shape": {"outer": [[-543.81, -940.28], [-543.48, -939.98], [-541.95, -941.65], [-538.26, -938.28], [-539.79, -936.61], [-539.51, -936.37], [-544.44, -931.0], [-543.61, -930.24], [-547.22, -926.31], [-552.35, -930.99], [-543.81, -940.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-594.66, -977.35], [-585.23, -987.22], [-579.17, -981.47], [-587.39, -972.86], [-587.66, -973.12], [-588.45, -972.29], [-590.68, -974.41], [-591.09, -973.98], [-594.66, -977.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-560.67, -929.14], [-564.37, -925.13], [-561.25, -922.26], [-557.54, -926.27], [-560.67, -929.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-505.45, -834.04], [-499.4, -840.59], [-486.72, -828.96], [-492.78, -822.41], [-505.45, -834.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-547.91, -908.43], [-536.5, -920.78], [-522.04, -907.52], [-533.45, -895.17], [-547.91, -908.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.264, "pop": 132, "jobs": 0}}, {"shape": {"outer": [[-516.25, -883.52], [-504.81, -895.99], [-483.71, -876.74], [-495.15, -864.27], [-516.25, -883.52]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.508, "pop": 254, "jobs": 0}}, {"shape": {"outer": [[-597.17, -971.89], [-594.82, -974.5], [-592.4, -972.34], [-590.73, -974.2], [-587.56, -971.35], [-591.58, -966.88], [-597.17, -971.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-603.52, -964.64], [-603.11, -965.09], [-604.06, -965.93], [-600.39, -970.02], [-599.45, -969.18], [-599.1, -969.57], [-589.44, -960.99], [-589.77, -960.62], [-587.69, -958.78], [-591.78, -954.21], [-603.52, -964.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-610.69, -958.03], [-607.01, -962.13], [-594.18, -950.68], [-594.41, -950.43], [-593.11, -949.28], [-595.51, -946.61], [-596.8, -947.76], [-597.86, -946.58], [-610.69, -958.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-506.08, -948.31], [-489.35, -966.58], [-479.98, -958.05], [-496.69, -939.79], [-506.08, -948.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.252, "pop": 126, "jobs": 0}}, {"shape": {"outer": [[-530.46, -971.07], [-523.85, -978.24], [-517.19, -972.15], [-524.07, -964.68], [-524.71, -965.26], [-526.27, -963.56], [-531.47, -968.33], [-529.64, -970.31], [-530.46, -971.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-402.8, -929.82], [-399.44, -934.88], [-394.27, -931.47], [-397.63, -926.41], [-402.8, -929.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-453.51, -959.13], [-448.94, -964.02], [-445.73, -961.03], [-450.31, -956.15], [-453.51, -959.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-556.9, -1021.6], [-541.01, -1039.03], [-528.9, -1028.08], [-520.93, -1021.3], [-517.97, -1018.34], [-513.13, -1022.96], [-503.59, -1014.22], [-511.81, -1004.53], [-525.05, -1008.12], [-537.23, -1012.01], [-556.9, -1021.6]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.516, "pop": 0, "jobs": 516}}, {"shape": {"outer": [[-459.18, -826.23], [-455.74, -830.0], [-455.05, -829.36], [-452.96, -831.64], [-439.2, -819.19], [-443.46, -814.52], [-446.08, -816.88], [-446.93, -815.95], [-447.61, -816.57], [-448.73, -815.35], [-451.95, -818.27], [-451.67, -818.57], [-455.23, -821.81], [-455.06, -822.0], [-458.52, -825.13], [-458.26, -825.4], [-459.18, -826.23]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-448.98, -832.4], [-444.18, -837.64], [-443.26, -836.8], [-440.85, -839.41], [-437.97, -836.79], [-435.48, -839.5], [-432.61, -836.88], [-429.2, -840.58], [-426.72, -838.3], [-425.81, -839.29], [-419.98, -833.96], [-419.84, -834.12], [-419.11, -833.46], [-418.95, -833.64], [-417.23, -833.0], [-416.49, -831.4], [-416.66, -831.22], [-415.54, -830.21], [-415.69, -830.06], [-414.16, -828.67], [-413.97, -828.87], [-413.14, -828.12], [-413.0, -828.27], [-411.26, -827.68], [-410.53, -826.0], [-410.66, -825.86], [-409.86, -825.12], [-410.05, -824.91], [-403.35, -818.79], [-406.21, -815.7], [-404.94, -814.55], [-410.37, -808.65], [-411.46, -809.65], [-428.72, -790.87], [-432.92, -794.7], [-433.66, -793.9], [-439.67, -799.38], [-440.7, -798.25], [-446.96, -803.96], [-445.17, -805.9], [-445.49, -806.19], [-438.49, -813.81], [-436.79, -812.26], [-432.29, -817.17], [-448.98, -832.4]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 1.0, "pop": 643, "jobs": 0}}, {"shape": {"outer": [[-484.83, -931.3], [-475.94, -941.26], [-474.58, -940.05], [-471.79, -943.16], [-466.87, -938.79], [-472.93, -932.01], [-472.65, -931.76], [-475.79, -928.24], [-476.07, -928.49], [-479.56, -924.59], [-484.0, -928.52], [-482.99, -929.66], [-484.83, -931.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-540.59, -978.53], [-533.59, -986.25], [-530.96, -983.88], [-528.84, -986.22], [-525.43, -983.15], [-528.04, -980.26], [-528.54, -980.7], [-535.03, -973.53], [-540.59, -978.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-447.92, -894.57], [-447.31, -895.23], [-449.07, -896.84], [-442.6, -903.86], [-440.84, -902.24], [-440.15, -903.0], [-427.93, -891.82], [-435.7, -883.39], [-447.92, -894.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-459.27, -927.81], [-449.39, -940.03], [-441.23, -949.39], [-433.05, -947.4], [-420.88, -936.4], [-440.26, -915.12], [-441.51, -916.25], [-443.06, -916.36], [-448.03, -916.58], [-450.85, -919.8], [-459.27, -927.81]], "holes": []}, "height": 24.5, "data": {"type": "residential", "density": 1.0, "pop": 892, "jobs": 0}}, {"shape": {"outer": [[-477.61, -925.03], [-474.82, -927.92], [-474.34, -927.45], [-468.05, -933.98], [-468.55, -934.45], [-462.01, -941.24], [-457.56, -937.0], [-460.89, -933.54], [-459.6, -932.45], [-463.67, -927.33], [-463.12, -926.93], [-466.65, -922.94], [-467.04, -923.34], [-470.33, -919.83], [-470.96, -920.37], [-471.81, -919.49], [-477.61, -925.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-504.15, -971.1], [-500.28, -974.97], [-497.65, -972.36], [-501.51, -968.48], [-504.15, -971.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-443.64, -953.73], [-439.4, -959.65], [-434.11, -955.88], [-438.36, -949.97], [-443.64, -953.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-491.15, -934.32], [-484.52, -941.86], [-483.72, -941.16], [-480.08, -945.29], [-476.5, -942.17], [-486.78, -930.5], [-491.15, -934.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-424.5, -924.29], [-417.94, -931.41], [-417.69, -931.18], [-416.78, -932.16], [-413.02, -928.73], [-413.93, -927.74], [-409.7, -923.88], [-408.15, -925.57], [-403.6, -921.41], [-403.44, -918.09], [-405.73, -915.61], [-405.93, -915.78], [-409.95, -911.42], [-415.17, -916.2], [-415.39, -915.96], [-424.5, -924.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[-522.81, -963.71], [-516.05, -970.97], [-510.01, -965.39], [-516.76, -958.13], [-517.03, -958.37], [-518.73, -956.54], [-523.96, -961.36], [-522.25, -963.2], [-522.81, -963.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-438.93, -904.98], [-437.27, -906.8], [-438.43, -907.84], [-435.43, -911.16], [-434.28, -910.12], [-433.33, -911.17], [-422.23, -901.23], [-422.57, -900.85], [-421.42, -899.82], [-426.0, -894.73], [-427.16, -895.76], [-427.82, -895.02], [-438.93, -904.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-516.63, -954.53], [-514.84, -956.49], [-515.17, -956.79], [-508.51, -964.06], [-502.71, -958.79], [-511.14, -949.56], [-516.63, -954.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-312.82, -769.72], [-310.56, -772.21], [-310.88, -772.5], [-307.61, -776.09], [-307.29, -775.8], [-305.56, -777.72], [-305.89, -778.02], [-302.64, -781.6], [-302.3, -781.3], [-300.09, -783.74], [-290.53, -775.14], [-303.25, -761.11], [-312.82, -769.72]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.26, "pop": 130, "jobs": 0}}, {"shape": {"outer": [[-343.6, -816.98], [-334.28, -827.35], [-333.09, -826.29], [-328.32, -831.59], [-324.51, -828.2], [-330.29, -821.76], [-329.44, -821.01], [-333.51, -816.48], [-334.54, -817.4], [-338.78, -812.67], [-343.6, -816.98]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-301.17, -820.16], [-295.11, -826.89], [-288.12, -820.64], [-289.02, -819.63], [-283.35, -814.55], [-289.37, -807.86], [-290.62, -808.97], [-292.11, -807.32], [-295.65, -810.49], [-294.1, -812.2], [-295.61, -813.55], [-296.22, -812.87], [-299.19, -815.52], [-297.75, -817.11], [-301.17, -820.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-338.2, -798.19], [-327.97, -809.5], [-321.13, -803.37], [-333.02, -790.21], [-339.53, -796.04], [-337.86, -797.88], [-338.2, -798.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-295.21, -765.97], [-288.99, -772.86], [-276.88, -762.0], [-283.11, -755.11], [-295.21, -765.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-383.91, -876.42], [-379.77, -872.69], [-377.42, -875.28], [-374.39, -872.55], [-376.75, -869.96], [-372.71, -866.31], [-376.89, -861.73], [-378.04, -862.77], [-387.7, -852.16], [-386.73, -851.28], [-391.14, -846.44], [-401.96, -856.22], [-397.5, -861.12], [-396.21, -859.94], [-386.54, -870.57], [-388.02, -871.9], [-383.91, -876.42]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.388, "pop": 194, "jobs": 0}}, {"shape": {"outer": [[-262.95, -798.29], [-253.16, -789.64], [-256.2, -786.23], [-255.38, -785.49], [-261.37, -778.78], [-266.08, -782.93], [-267.06, -781.83], [-270.7, -785.06], [-269.09, -786.87], [-269.88, -787.56], [-267.99, -789.68], [-271.06, -792.41], [-267.31, -796.62], [-265.71, -795.2], [-262.95, -798.29]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-374.66, -854.38], [-370.8, -858.91], [-368.1, -856.62], [-371.95, -852.1], [-374.66, -854.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-359.7, -834.22], [-356.56, -837.63], [-357.46, -838.45], [-354.86, -841.28], [-355.37, -841.74], [-353.68, -843.58], [-354.08, -843.95], [-350.06, -848.33], [-347.23, -845.74], [-345.79, -847.32], [-340.15, -842.2], [-348.74, -832.83], [-349.6, -833.62], [-353.9, -828.93], [-359.7, -834.22]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-352.05, -824.66], [-339.76, -838.07], [-338.27, -836.71], [-336.74, -838.37], [-333.04, -835.01], [-334.57, -833.35], [-333.2, -832.09], [-341.38, -823.16], [-342.5, -824.17], [-346.61, -819.7], [-352.05, -824.66]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-413.11, -798.53], [-408.34, -803.7], [-409.65, -804.9], [-402.53, -812.62], [-395.92, -806.55], [-407.81, -793.66], [-410.01, -795.69], [-410.95, -794.67], [-413.44, -796.96], [-412.5, -797.97], [-413.11, -798.53]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-253.09, -808.53], [-246.45, -815.67], [-236.76, -806.73], [-243.4, -799.58], [-253.09, -808.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-262.11, -802.36], [-259.81, -804.84], [-258.67, -803.79], [-254.56, -808.22], [-245.28, -799.7], [-251.68, -792.79], [-262.11, -802.36]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-381.87, -844.24], [-377.44, -849.23], [-376.32, -848.24], [-373.87, -850.98], [-371.16, -848.59], [-372.06, -847.56], [-365.23, -841.52], [-372.71, -833.13], [-379.32, -838.96], [-377.82, -840.65], [-381.87, -844.24]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-284.32, -769.37], [-275.31, -761.29], [-268.99, -768.27], [-277.99, -776.36], [-284.32, -769.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-329.37, -787.09], [-309.34, -808.8], [-298.18, -798.57], [-305.55, -790.59], [-311.39, -795.94], [-313.64, -793.49], [-310.4, -790.53], [-320.81, -779.25], [-329.37, -787.09]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.384, "pop": 192, "jobs": 0}}, {"shape": {"outer": [[-307.07, -839.96], [-302.35, -845.04], [-301.75, -844.49], [-299.8, -846.59], [-295.83, -842.94], [-296.06, -842.69], [-293.61, -840.43], [-293.38, -840.67], [-287.67, -835.42], [-294.33, -828.24], [-294.59, -828.47], [-295.41, -827.58], [-300.32, -832.1], [-301.93, -830.36], [-305.99, -834.1], [-303.55, -836.73], [-307.07, -839.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-575.23, -1075.15], [-569.3, -1070.19], [-570.89, -1068.63], [-556.88, -1056.29], [-536.11, -1079.1], [-542.72, -1084.57], [-535.51, -1088.7], [-577.52, -1151.3], [-584.74, -1144.35], [-588.81, -1148.72], [-609.69, -1125.86], [-611.34, -1124.07], [-592.82, -1108.49], [-585.81, -1116.44], [-565.37, -1085.55], [-575.23, -1075.15]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2418}}, {"shape": {"outer": [[-668.92, -1029.64], [-665.02, -1026.06], [-668.49, -1022.31], [-670.44, -1024.12], [-671.62, -1022.84], [-673.56, -1024.62], [-668.92, -1029.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-786.75, -1063.87], [-732.52, -1125.58], [-719.63, -1114.35], [-742.42, -1088.42], [-773.87, -1052.64], [-786.75, -1063.87]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.786, "pop": 0, "jobs": 786}}, {"shape": {"outer": [[-813.54, -1086.77], [-751.33, -1158.75], [-734.8, -1144.57], [-797.01, -1072.58], [-813.54, -1086.77]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1160}}, {"shape": {"outer": [[-785.76, -1147.94], [-793.1, -1154.39], [-788.77, -1159.29], [-781.43, -1152.83], [-785.76, -1147.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-800.04, -1128.76], [-797.62, -1131.38], [-795.24, -1129.2], [-792.25, -1132.41], [-790.28, -1130.6], [-795.69, -1124.76], [-800.04, -1128.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-808.04, -1140.97], [-805.03, -1144.21], [-801.14, -1140.63], [-798.85, -1143.09], [-792.34, -1137.08], [-797.62, -1131.38], [-808.04, -1140.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-818.4, -1118.98], [-810.66, -1127.25], [-802.03, -1119.77], [-809.44, -1111.5], [-818.4, -1118.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-803.39, -1125.17], [-801.06, -1127.74], [-797.55, -1124.35], [-799.9, -1121.78], [-803.39, -1125.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-834.25, -1060.82], [-832.52, -1059.29], [-836.9, -1054.35], [-830.12, -1048.37], [-831.4, -1046.93], [-824.55, -1040.9], [-823.23, -1042.39], [-818.15, -1037.91], [-817.23, -1038.96], [-814.55, -1036.6], [-828.85, -1020.5], [-827.99, -1019.74], [-829.66, -1017.86], [-830.78, -1018.86], [-839.58, -1008.95], [-842.2, -1011.26], [-841.11, -1012.49], [-846.56, -1017.3], [-845.38, -1018.63], [-851.36, -1023.89], [-852.79, -1022.29], [-859.68, -1028.36], [-863.88, -1023.64], [-865.72, -1025.27], [-871.36, -1018.93], [-869.68, -1017.45], [-872.9, -1013.82], [-868.51, -1009.94], [-870.09, -1008.15], [-861.01, -1000.13], [-859.47, -1001.86], [-854.32, -997.3], [-850.52, -1001.58], [-848.39, -999.7], [-848.9, -999.13], [-842.83, -993.78], [-844.14, -992.3], [-838.35, -987.2], [-836.83, -988.91], [-833.74, -986.18], [-828.57, -992.0], [-827.21, -990.81], [-819.71, -999.23], [-821.06, -1000.43], [-814.81, -1007.45], [-813.73, -1006.5], [-809.15, -1011.65], [-810.48, -1012.82], [-804.23, -1019.86], [-802.57, -1018.38], [-795.56, -1026.28], [-797.09, -1027.62], [-791.61, -1033.79], [-794.41, -1036.27], [-793.01, -1037.85], [-798.48, -1042.69], [-800.06, -1040.92], [-808.61, -1048.44], [-804.45, -1053.12], [-809.74, -1057.78], [-808.28, -1059.41], [-817.4, -1067.45], [-818.75, -1065.93], [-823.32, -1069.95], [-826.43, -1066.44], [-828.01, -1067.83], [-834.25, -1060.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1011, "jobs": 0}}, {"shape": {"outer": [[-764.71, -967.24], [-742.0, -992.15], [-730.23, -981.49], [-730.77, -980.89], [-752.1, -957.48], [-752.92, -956.58], [-764.71, -967.24]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.343, "pop": 0, "jobs": 343}}, {"shape": {"outer": [[-705.01, -911.16], [-700.68, -915.77], [-699.87, -915.0], [-694.51, -920.68], [-689.49, -915.96], [-694.78, -910.36], [-690.9, -906.73], [-695.3, -902.07], [-705.01, -911.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-777.37, -921.73], [-759.44, -941.29], [-720.41, -905.75], [-738.56, -885.96], [-751.87, -898.08], [-750.42, -899.64], [-754.36, -903.23], [-755.89, -901.57], [-761.05, -906.27], [-759.48, -907.98], [-763.09, -911.28], [-764.37, -909.88], [-777.37, -921.73]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 974, "jobs": 0}}, {"shape": {"outer": [[-1062.6, -1030.63], [-1058.1, -1035.55], [-1061.36, -1038.52], [-1063.02, -1036.7], [-1067.01, -1040.31], [-1065.14, -1042.37], [-1067.68, -1044.67], [-1075.06, -1036.59], [-1080.27, -1041.31], [-1081.01, -1040.5], [-1090.18, -1048.82], [-1085.49, -1053.94], [-1087.02, -1055.33], [-1079.02, -1064.09], [-1073.42, -1059.0], [-1072.35, -1060.18], [-1063.31, -1051.97], [-1067.64, -1047.23], [-1063.87, -1043.8], [-1062.31, -1045.5], [-1058.68, -1042.19], [-1060.53, -1040.17], [-1057.54, -1037.45], [-1049.98, -1045.7], [-1045.27, -1041.41], [-1044.1, -1042.69], [-1034.37, -1033.84], [-1039.39, -1028.36], [-1038.46, -1027.52], [-1046.47, -1018.76], [-1051.28, -1023.13], [-1052.67, -1021.63], [-1062.6, -1030.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.678, "pop": 339, "jobs": 0}}, {"shape": {"outer": [[-736.05, -951.03], [-730.66, -956.84], [-732.61, -958.64], [-727.63, -964.0], [-725.29, -961.85], [-717.83, -969.9], [-686.52, -941.06], [-704.4, -921.79], [-715.25, -931.78], [-713.79, -933.34], [-716.49, -935.82], [-717.92, -934.28], [-722.17, -938.2], [-720.53, -939.96], [-723.37, -942.57], [-724.98, -940.84], [-736.05, -951.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.902, "pop": 451, "jobs": 0}}, {"shape": {"outer": [[-734.26, -878.65], [-729.5, -883.9], [-727.52, -882.11], [-725.98, -883.81], [-722.49, -880.67], [-724.07, -878.91], [-721.3, -876.41], [-715.52, -882.78], [-711.59, -879.24], [-722.07, -867.69], [-734.26, -878.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.11, "pop": 0, "jobs": 110}}, {"shape": {"outer": [[-787.09, -929.94], [-775.21, -942.85], [-768.38, -936.62], [-780.27, -923.71], [-787.09, -929.94]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.091, "pop": 0, "jobs": 91}}, {"shape": {"outer": [[-1144.44, -1104.33], [-1138.84, -1099.8], [-1139.95, -1098.52], [-1130.69, -1090.02], [-1126.73, -1094.87], [-1122.65, -1091.77], [-1124.23, -1089.83], [-1117.98, -1084.66], [-1123.41, -1078.08], [-1118.2, -1073.49], [-1119.59, -1072.36], [-1110.06, -1063.98], [-1105.44, -1068.74], [-1104.49, -1067.84], [-1095.36, -1077.47], [-1101.02, -1082.04], [-1100.07, -1083.33], [-1109.25, -1091.12], [-1113.76, -1086.2], [-1118.23, -1089.94], [-1116.44, -1092.17], [-1122.76, -1097.33], [-1117.16, -1103.97], [-1121.99, -1108.34], [-1120.76, -1109.58], [-1130.4, -1117.49], [-1134.45, -1113.0], [-1135.83, -1114.15], [-1144.44, -1104.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.686, "pop": 343, "jobs": 0}}, {"shape": {"outer": [[-1193.65, -1151.71], [-1191.86, -1150.22], [-1196.85, -1145.18], [-1187.65, -1136.84], [-1186.28, -1138.3], [-1181.34, -1133.76], [-1174.86, -1140.47], [-1173.73, -1139.25], [-1172.49, -1137.93], [-1173.45, -1137.04], [-1170.08, -1133.64], [-1167.95, -1135.77], [-1164.24, -1131.96], [-1168.79, -1126.93], [-1159.7, -1118.7], [-1158.55, -1120.14], [-1152.94, -1115.29], [-1144.57, -1124.36], [-1146.36, -1125.94], [-1142.24, -1130.85], [-1150.88, -1138.77], [-1152.15, -1137.21], [-1157.08, -1141.53], [-1163.86, -1134.15], [-1166.78, -1136.89], [-1164.86, -1138.69], [-1168.57, -1141.97], [-1170.69, -1139.73], [-1172.12, -1141.2], [-1174.41, -1143.54], [-1169.96, -1148.78], [-1178.95, -1157.46], [-1180.45, -1156.22], [-1184.73, -1160.57], [-1193.65, -1151.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.656, "pop": 328, "jobs": 0}}, {"shape": {"outer": [[-979.02, -1038.63], [-965.38, -1053.06], [-961.77, -1049.67], [-957.23, -1054.49], [-949.67, -1047.42], [-953.79, -1043.06], [-950.07, -1039.56], [-964.13, -1024.67], [-979.02, -1038.63]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.305, "pop": 0, "jobs": 305}}, {"shape": {"outer": [[-1094.55, -1160.26], [-1089.31, -1155.31], [-1088.36, -1156.32], [-1079.98, -1148.38], [-1084.67, -1143.46], [-1080.01, -1139.05], [-1078.26, -1140.88], [-1074.29, -1137.12], [-1072.29, -1135.24], [-1066.26, -1141.57], [-1061.31, -1136.87], [-1060.2, -1138.04], [-1051.7, -1129.97], [-1056.14, -1125.33], [-1054.9, -1124.16], [-1063.64, -1115.01], [-1068.19, -1119.33], [-1069.3, -1118.16], [-1078.59, -1126.96], [-1074.41, -1131.34], [-1077.22, -1134.01], [-1077.8, -1134.56], [-1079.34, -1132.94], [-1085.51, -1138.78], [-1091.35, -1132.66], [-1096.13, -1137.18], [-1097.39, -1135.84], [-1107.13, -1145.03], [-1102.0, -1150.41], [-1103.0, -1151.36], [-1094.55, -1160.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.672, "pop": 336, "jobs": 0}}, {"shape": {"outer": [[-1046.26, -1098.33], [-1041.35, -1093.83], [-1042.43, -1092.66], [-1032.85, -1083.88], [-1028.66, -1088.41], [-1025.56, -1085.56], [-1027.47, -1083.49], [-1021.44, -1077.96], [-1026.91, -1072.04], [-1021.45, -1067.02], [-1022.22, -1066.19], [-1012.54, -1057.26], [-1007.61, -1062.57], [-1006.64, -1061.69], [-998.13, -1070.84], [-1003.45, -1075.76], [-1002.3, -1076.99], [-1011.14, -1085.15], [-1016.24, -1079.67], [-1021.0, -1084.07], [-1019.54, -1085.65], [-1025.6, -1091.23], [-1019.63, -1097.67], [-1024.62, -1102.26], [-1023.63, -1103.33], [-1032.1, -1111.11], [-1036.7, -1106.13], [-1037.98, -1107.31], [-1046.26, -1098.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.69, "pop": 345, "jobs": 0}}, {"shape": {"outer": [[-963.04, -1161.26], [-956.0, -1168.82], [-952.4, -1165.49], [-953.75, -1164.04], [-951.68, -1162.13], [-957.39, -1156.02], [-963.04, -1161.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1009.93, -1179.69], [-1004.34, -1172.8], [-1006.72, -1170.89], [-1004.92, -1168.66], [-1007.31, -1166.72], [-1004.83, -1163.67], [-1009.12, -1160.22], [-1016.04, -1168.75], [-1013.62, -1170.7], [-1016.57, -1174.34], [-1009.93, -1179.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1029.6, -1155.62], [-1025.98, -1159.61], [-1027.08, -1160.61], [-1023.62, -1164.41], [-1016.53, -1158.03], [-1014.89, -1159.84], [-1010.88, -1156.23], [-1016.18, -1150.39], [-1019.8, -1153.66], [-1023.24, -1149.87], [-1029.6, -1155.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-916.25, -1099.09], [-911.01, -1104.84], [-899.4, -1094.35], [-904.64, -1088.58], [-916.25, -1099.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-952.32, -1087.93], [-942.64, -1098.56], [-933.06, -1089.9], [-942.73, -1079.26], [-952.32, -1087.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-922.15, -1133.7], [-916.55, -1139.59], [-908.2, -1131.72], [-910.02, -1129.81], [-908.68, -1128.54], [-911.45, -1125.62], [-914.82, -1128.79], [-916.11, -1127.99], [-922.15, -1133.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-931.8, -1084.7], [-919.13, -1073.57], [-922.97, -1069.22], [-922.36, -1068.68], [-929.71, -1060.37], [-937.93, -1067.58], [-930.12, -1076.42], [-935.19, -1080.87], [-931.8, -1084.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-1002.36, -1131.13], [-996.86, -1137.19], [-1001.44, -1141.32], [-1003.99, -1138.51], [-1003.16, -1137.77], [-1006.11, -1134.51], [-1002.36, -1131.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-897.41, -1121.71], [-887.43, -1112.46], [-892.18, -1107.37], [-902.16, -1116.62], [-897.41, -1121.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-984.0, -1139.09], [-988.52, -1142.97], [-984.46, -1147.65], [-979.95, -1143.75], [-984.0, -1139.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-918.71, -1121.31], [-914.37, -1117.22], [-910.8, -1120.98], [-915.14, -1125.07], [-918.71, -1121.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-956.7, -1152.16], [-949.76, -1145.69], [-940.57, -1155.46], [-947.5, -1161.93], [-956.7, -1152.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1000.29, -1128.38], [-993.12, -1136.43], [-987.85, -1131.78], [-995.03, -1123.72], [-1000.29, -1128.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1000.66, -1181.62], [-994.53, -1186.25], [-988.68, -1178.56], [-994.81, -1173.93], [-1000.66, -1181.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1015.68, -1145.02], [-1005.59, -1155.89], [-1000.98, -1151.65], [-1002.75, -1149.76], [-1001.47, -1148.58], [-1009.81, -1139.61], [-1015.68, -1145.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-983.96, -1180.37], [-991.85, -1189.95], [-985.39, -1195.24], [-977.51, -1185.66], [-983.96, -1180.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-940.9, -1137.38], [-931.57, -1147.55], [-925.15, -1140.98], [-934.39, -1131.35], [-940.9, -1137.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-986.76, -1171.26], [-982.17, -1174.77], [-978.38, -1169.85], [-982.97, -1166.34], [-986.76, -1171.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-924.23, -1112.48], [-927.73, -1108.89], [-923.47, -1105.08], [-920.2, -1109.1], [-924.23, -1112.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-997.67, -1149.14], [-994.14, -1153.07], [-991.95, -1151.13], [-995.49, -1147.2], [-997.67, -1149.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[-918.81, -1093.04], [-917.05, -1091.45], [-918.88, -1089.43], [-912.46, -1083.67], [-910.88, -1085.43], [-909.64, -1084.31], [-905.95, -1088.39], [-915.36, -1096.85], [-918.81, -1093.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-988.69, -1116.12], [-987.23, -1117.82], [-986.55, -1117.26], [-979.76, -1125.23], [-984.34, -1129.1], [-987.56, -1125.33], [-988.79, -1126.37], [-993.83, -1120.46], [-988.69, -1116.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-976.83, -1109.02], [-968.02, -1119.0], [-963.29, -1114.85], [-972.1, -1104.87], [-976.83, -1109.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-920.87, -1088.55], [-912.28, -1081.12], [-917.85, -1074.72], [-924.95, -1080.87], [-923.48, -1082.56], [-924.98, -1083.85], [-920.87, -1088.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-972.51, -1158.95], [-968.18, -1163.69], [-963.52, -1159.47], [-967.85, -1154.72], [-972.51, -1158.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-966.71, -1098.55], [-962.01, -1094.4], [-962.9, -1093.4], [-958.32, -1089.36], [-951.65, -1096.88], [-960.93, -1105.06], [-966.71, -1098.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1003.51, -1168.78], [-999.06, -1171.88], [-996.07, -1167.61], [-1000.52, -1164.52], [-1003.51, -1168.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-987.41, -1115.35], [-976.85, -1126.96], [-971.73, -1122.34], [-982.28, -1110.72], [-987.41, -1115.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-910.49, -1110.99], [-906.48, -1115.22], [-905.46, -1114.26], [-904.29, -1115.5], [-893.06, -1104.95], [-896.57, -1101.25], [-898.39, -1102.96], [-900.06, -1101.2], [-910.49, -1110.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-839.24, -1311.62], [-837.13, -1308.8], [-839.89, -1306.76], [-834.85, -1299.99], [-831.54, -1302.45], [-829.73, -1300.01], [-825.05, -1303.48], [-834.02, -1315.49], [-839.24, -1311.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-878.73, -1226.5], [-874.57, -1231.04], [-864.97, -1222.32], [-867.42, -1219.64], [-866.03, -1218.37], [-867.72, -1216.51], [-878.73, -1226.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-946.34, -1223.76], [-938.38, -1229.92], [-931.35, -1220.93], [-935.39, -1217.8], [-937.27, -1220.22], [-941.19, -1217.17], [-946.34, -1223.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-878.69, -1232.24], [-875.61, -1235.44], [-879.34, -1239.0], [-882.42, -1235.79], [-878.69, -1232.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-883.26, -1271.9], [-880.23, -1274.11], [-881.94, -1276.41], [-877.23, -1279.85], [-873.98, -1275.43], [-872.69, -1276.37], [-868.97, -1271.32], [-877.99, -1264.73], [-883.26, -1271.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-865.67, -1238.89], [-871.44, -1232.88], [-862.97, -1224.79], [-861.8, -1226.02], [-860.23, -1224.52], [-856.38, -1228.52], [-858.38, -1230.43], [-857.62, -1231.2], [-865.67, -1238.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-927.37, -1185.26], [-921.21, -1191.73], [-916.44, -1187.23], [-922.59, -1180.76], [-927.37, -1185.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-823.46, -1282.22], [-817.69, -1288.66], [-809.34, -1281.24], [-815.11, -1274.8], [-823.46, -1282.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-923.05, -1244.36], [-921.35, -1242.15], [-923.29, -1240.67], [-917.27, -1232.8], [-916.27, -1233.56], [-910.51, -1226.2], [-905.0, -1230.73], [-918.07, -1248.16], [-923.05, -1244.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-925.8, -1164.15], [-918.92, -1171.54], [-913.54, -1166.57], [-920.43, -1159.18], [-925.8, -1164.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-833.83, -1272.73], [-829.28, -1277.87], [-820.67, -1271.04], [-825.22, -1265.57], [-833.83, -1272.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-870.26, -1241.08], [-868.1, -1243.5], [-871.62, -1246.62], [-873.78, -1244.2], [-870.26, -1241.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[-913.81, -1251.82], [-908.17, -1255.9], [-897.99, -1241.96], [-903.63, -1237.87], [-913.81, -1251.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-896.66, -1186.15], [-905.45, -1193.95], [-900.46, -1199.43], [-891.74, -1191.57], [-896.66, -1186.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-894.97, -1268.53], [-892.62, -1265.41], [-893.77, -1264.54], [-886.31, -1254.67], [-879.51, -1259.77], [-887.24, -1269.99], [-888.42, -1269.1], [-890.5, -1271.88], [-894.97, -1268.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-933.62, -1186.37], [-927.56, -1180.87], [-935.6, -1172.05], [-940.62, -1176.59], [-938.58, -1178.82], [-939.63, -1179.77], [-933.62, -1186.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-906.0, -1254.7], [-897.54, -1261.26], [-892.38, -1254.66], [-893.28, -1253.97], [-887.78, -1246.88], [-894.56, -1241.88], [-900.09, -1248.69], [-900.85, -1248.1], [-906.0, -1254.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-942.77, -1202.75], [-937.74, -1206.71], [-933.88, -1201.71], [-939.12, -1197.75], [-942.77, -1202.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-958.96, -1215.33], [-949.84, -1222.34], [-940.67, -1210.48], [-949.79, -1203.48], [-958.96, -1215.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-833.82, -1316.8], [-826.67, -1324.43], [-813.76, -1312.43], [-820.91, -1304.8], [-833.82, -1316.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-935.98, -1231.76], [-928.39, -1237.75], [-920.32, -1227.58], [-924.62, -1224.19], [-923.37, -1222.63], [-926.66, -1220.03], [-935.98, -1231.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-966.11, -1208.13], [-964.9, -1206.55], [-969.16, -1203.31], [-964.33, -1196.98], [-954.85, -1204.18], [-960.89, -1212.08], [-966.11, -1208.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-845.65, -1261.83], [-835.78, -1252.63], [-842.45, -1245.04], [-850.5, -1251.89], [-847.33, -1255.47], [-849.57, -1257.36], [-845.65, -1261.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-891.05, -1227.65], [-887.49, -1231.65], [-884.04, -1228.62], [-887.61, -1224.61], [-891.05, -1227.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-900.24, -1220.24], [-896.12, -1224.46], [-890.93, -1219.42], [-895.05, -1215.2], [-900.24, -1220.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-873.64, -1256.59], [-882.86, -1249.23], [-878.06, -1243.25], [-868.83, -1250.6], [-873.64, -1256.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-906.84, -1216.14], [-904.37, -1218.84], [-900.18, -1215.04], [-902.65, -1212.34], [-906.84, -1216.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-901.57, -1202.95], [-897.1, -1198.81], [-896.34, -1199.61], [-890.35, -1194.07], [-886.55, -1198.16], [-897.02, -1207.84], [-901.57, -1202.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-856.22, -1297.39], [-847.26, -1285.85], [-854.68, -1280.13], [-861.9, -1289.41], [-859.88, -1290.98], [-861.62, -1293.22], [-856.22, -1297.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-886.01, -1200.76], [-882.36, -1204.79], [-891.28, -1212.82], [-894.93, -1208.79], [-886.01, -1200.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-842.16, -1265.86], [-836.97, -1271.77], [-828.9, -1264.6], [-834.63, -1258.34], [-842.16, -1265.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-853.71, -1299.8], [-844.06, -1306.87], [-837.11, -1297.44], [-846.75, -1290.38], [-853.71, -1299.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-902.26, -1230.83], [-898.42, -1233.72], [-895.0, -1229.19], [-898.86, -1226.31], [-902.26, -1230.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-883.52, -1218.05], [-880.35, -1221.71], [-871.53, -1214.14], [-875.95, -1209.02], [-882.8, -1214.9], [-881.55, -1216.35], [-883.52, -1218.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-948.52, -1183.6], [-940.18, -1193.33], [-934.3, -1188.32], [-942.65, -1178.59], [-948.52, -1183.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-918.12, -1225.42], [-914.27, -1228.75], [-909.41, -1223.19], [-913.26, -1219.86], [-918.12, -1225.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-934.15, -1170.67], [-926.27, -1179.25], [-920.52, -1173.99], [-928.4, -1165.42], [-934.15, -1170.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-857.35, -1246.03], [-849.27, -1238.86], [-854.47, -1233.04], [-862.54, -1240.22], [-857.35, -1246.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-873.24, -1282.91], [-866.67, -1287.83], [-862.19, -1281.9], [-859.73, -1283.76], [-856.25, -1279.15], [-859.52, -1276.69], [-860.77, -1278.34], [-866.53, -1274.02], [-873.24, -1282.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-804.72, -1270.59], [-800.33, -1275.5], [-798.66, -1274.01], [-796.65, -1276.27], [-790.32, -1270.64], [-796.72, -1263.48], [-804.72, -1270.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-809.83, -1260.28], [-799.86, -1250.9], [-805.52, -1244.93], [-815.48, -1254.31], [-809.83, -1260.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-806.27, -1232.35], [-802.53, -1236.33], [-797.57, -1231.72], [-801.31, -1227.73], [-806.27, -1232.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-812.84, -1292.15], [-805.35, -1300.74], [-804.08, -1299.64], [-799.66, -1304.7], [-793.08, -1299.02], [-805.0, -1285.36], [-812.84, -1292.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-847.33, -1193.63], [-845.18, -1196.28], [-848.12, -1198.66], [-850.28, -1196.01], [-847.33, -1193.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[-837.85, -1187.33], [-832.56, -1182.49], [-837.82, -1176.78], [-833.43, -1172.78], [-837.74, -1168.11], [-847.41, -1176.96], [-837.85, -1187.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-793.85, -1262.17], [-791.29, -1265.06], [-785.56, -1260.01], [-788.12, -1257.13], [-793.85, -1262.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-807.65, -1231.95], [-802.34, -1227.15], [-805.14, -1224.07], [-810.46, -1228.87], [-807.65, -1231.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-863.51, -1139.64], [-871.97, -1147.68], [-867.38, -1152.48], [-858.91, -1144.44], [-863.51, -1139.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-874.97, -1170.5], [-870.78, -1175.0], [-864.6, -1169.27], [-868.78, -1164.79], [-874.97, -1170.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-803.9, -1223.21], [-801.18, -1220.97], [-799.5, -1222.98], [-793.94, -1218.37], [-799.52, -1211.68], [-805.0, -1216.21], [-803.61, -1217.87], [-806.42, -1220.19], [-803.9, -1223.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-847.56, -1169.56], [-855.96, -1160.57], [-849.54, -1154.62], [-845.83, -1158.59], [-845.04, -1157.87], [-840.35, -1162.89], [-847.56, -1169.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-767.36, -1254.49], [-759.95, -1262.95], [-753.76, -1257.59], [-761.17, -1249.12], [-767.36, -1254.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-845.76, -1193.26], [-843.13, -1195.82], [-840.68, -1193.3], [-843.32, -1190.75], [-845.76, -1193.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[-849.3, -1214.61], [-842.87, -1209.11], [-844.52, -1207.2], [-842.56, -1205.51], [-845.15, -1202.51], [-853.55, -1209.68], [-849.3, -1214.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-783.51, -1251.12], [-780.46, -1254.93], [-775.56, -1251.04], [-778.61, -1247.23], [-783.51, -1251.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-787.87, -1266.1], [-779.16, -1275.9], [-772.86, -1270.33], [-781.57, -1260.54], [-787.87, -1266.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-780.21, -1246.18], [-774.65, -1241.05], [-780.68, -1234.57], [-778.72, -1232.75], [-782.05, -1229.16], [-790.42, -1236.89], [-789.28, -1238.11], [-791.26, -1239.92], [-787.39, -1244.08], [-784.58, -1241.49], [-780.21, -1246.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-878.22, -1134.33], [-874.55, -1137.81], [-875.55, -1138.86], [-871.7, -1142.51], [-865.11, -1135.57], [-872.63, -1128.47], [-878.22, -1134.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-815.29, -1205.09], [-809.68, -1200.02], [-812.43, -1196.89], [-814.78, -1198.89], [-816.48, -1197.1], [-819.74, -1200.17], [-815.29, -1205.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-892.16, -1131.76], [-880.54, -1121.7], [-885.69, -1115.8], [-897.31, -1125.86], [-892.16, -1131.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-888.48, -1131.39], [-883.62, -1136.6], [-874.2, -1127.86], [-879.06, -1122.66], [-888.48, -1131.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-794.43, -1276.9], [-787.71, -1284.34], [-780.6, -1277.96], [-787.32, -1270.52], [-794.43, -1276.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-860.47, -1204.43], [-853.31, -1198.09], [-858.81, -1191.94], [-865.96, -1198.27], [-860.47, -1204.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-789.01, -1285.94], [-784.8, -1290.49], [-776.18, -1282.54], [-780.4, -1278.0], [-789.01, -1285.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-778.94, -1259.26], [-767.97, -1271.12], [-761.3, -1265.0], [-772.27, -1253.13], [-778.94, -1259.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-822.4, -1247.04], [-817.23, -1252.81], [-807.09, -1243.79], [-811.05, -1239.37], [-813.2, -1241.29], [-814.4, -1239.93], [-822.4, -1247.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-808.7, -1262.03], [-803.87, -1267.45], [-793.54, -1258.32], [-797.17, -1254.24], [-799.22, -1256.04], [-800.42, -1254.71], [-808.7, -1262.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-873.17, -1192.43], [-863.92, -1185.24], [-868.2, -1179.76], [-877.45, -1186.94], [-873.17, -1192.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-840.9, -1225.58], [-835.32, -1220.33], [-840.81, -1214.53], [-846.39, -1219.79], [-840.9, -1225.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-832.69, -1234.53], [-826.89, -1229.22], [-832.58, -1223.04], [-838.38, -1228.35], [-832.69, -1234.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-823.41, -1243.71], [-816.35, -1237.76], [-821.42, -1231.78], [-828.49, -1237.74], [-823.41, -1243.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-821.36, -1217.81], [-818.45, -1220.8], [-813.69, -1216.19], [-816.59, -1213.2], [-821.36, -1217.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-794.27, -1231.82], [-785.18, -1223.86], [-789.64, -1218.81], [-797.77, -1225.92], [-795.31, -1228.71], [-796.27, -1229.55], [-794.27, -1231.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-808.94, -1217.15], [-798.57, -1207.51], [-803.11, -1202.67], [-813.47, -1212.31], [-808.94, -1217.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-831.44, -1196.13], [-828.0, -1193.01], [-831.16, -1189.55], [-826.28, -1185.11], [-821.09, -1190.79], [-817.51, -1187.55], [-812.61, -1192.91], [-824.52, -1203.71], [-831.44, -1196.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-879.07, -1149.93], [-877.36, -1151.59], [-881.08, -1155.39], [-882.79, -1153.72], [-879.07, -1149.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[-911.03, -1148.23], [-905.61, -1153.75], [-901.42, -1149.66], [-906.84, -1144.15], [-911.03, -1148.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-912.22, -1147.35], [-907.62, -1143.02], [-912.61, -1137.76], [-917.21, -1142.09], [-912.22, -1147.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-706.81, -774.48], [-701.63, -780.12], [-702.29, -780.72], [-700.03, -783.18], [-697.09, -780.5], [-697.66, -779.89], [-693.92, -776.48], [-689.71, -781.07], [-690.6, -781.88], [-688.64, -784.01], [-691.31, -786.45], [-682.47, -796.08], [-679.74, -793.59], [-679.35, -794.0], [-676.91, -791.77], [-677.29, -791.35], [-674.63, -788.93], [-677.4, -785.9], [-677.12, -785.65], [-685.19, -776.88], [-685.45, -777.12], [-689.71, -772.5], [-688.43, -771.34], [-695.23, -763.93], [-706.81, -774.48]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.256, "pop": 128, "jobs": 0}}, {"shape": {"outer": [[-677.0, -738.86], [-650.34, -768.34], [-639.94, -759.0], [-666.61, -729.52], [-677.0, -738.86]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.584, "pop": 292, "jobs": 0}}, {"shape": {"outer": [[-943.21, -714.27], [-937.69, -720.3], [-909.04, -751.63], [-941.19, -780.82], [-947.55, -773.87], [-947.68, -770.71], [-926.84, -751.8], [-953.01, -723.17], [-943.21, -714.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.82, "pop": 410, "jobs": 0}}, {"shape": {"outer": [[-729.97, -828.38], [-720.37, -839.03], [-713.78, -833.13], [-723.38, -822.48], [-729.97, -828.38]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.081, "pop": 0, "jobs": 81}}, {"shape": {"outer": [[-951.09, -786.37], [-945.49, -781.52], [-949.52, -777.27], [-949.73, -769.09], [-946.81, -766.45], [-960.38, -751.91], [-946.02, -738.92], [-949.72, -734.57], [-949.54, -731.97], [-954.52, -726.71], [-981.7, -752.18], [-951.09, -786.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.764, "pop": 382, "jobs": 0}}, {"shape": {"outer": [[-689.26, -761.28], [-668.83, -783.51], [-660.02, -775.47], [-680.46, -753.25], [-689.26, -761.28]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.378, "pop": 189, "jobs": 0}}, {"shape": {"outer": [[-735.81, -806.89], [-715.1, -829.83], [-710.56, -825.76], [-717.94, -817.58], [-717.48, -817.17], [-730.81, -802.41], [-735.81, -806.89]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-714.65, -798.88], [-713.5, -797.85], [-711.32, -800.3], [-712.47, -801.33], [-699.59, -815.78], [-697.53, -813.95], [-696.14, -815.51], [-691.15, -811.09], [-693.53, -808.43], [-688.79, -804.25], [-690.01, -802.88], [-688.04, -801.14], [-694.67, -793.69], [-696.0, -794.86], [-697.37, -793.33], [-696.25, -792.34], [-700.07, -788.06], [-701.24, -789.09], [-705.74, -784.05], [-704.76, -783.19], [-715.05, -771.63], [-717.44, -773.74], [-718.36, -772.72], [-723.44, -777.21], [-722.63, -778.12], [-726.32, -781.38], [-725.22, -782.61], [-727.41, -784.55], [-714.65, -798.88]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.804, "pop": 402, "jobs": 0}}, {"shape": {"outer": [[-898.72, -744.73], [-890.52, -753.67], [-880.91, -744.91], [-889.11, -735.97], [-898.72, -744.73]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.101, "pop": 0, "jobs": 101}}, {"shape": {"outer": [[-719.0, -810.88], [-713.43, -805.89], [-700.7, -819.98], [-706.26, -824.98], [-719.0, -810.88]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1015.99, -768.95], [-1000.77, -755.09], [-992.42, -764.19], [-994.03, -765.66], [-964.68, -797.62], [-967.69, -800.37], [-966.26, -801.93], [-968.45, -803.93], [-967.77, -804.68], [-970.19, -806.88], [-971.08, -805.91], [-974.1, -808.67], [-975.41, -807.23], [-978.37, -809.92], [-1015.99, -768.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.862, "pop": 431, "jobs": 0}}, {"shape": {"outer": [[-892.95, -709.65], [-858.29, -748.06], [-847.96, -738.8], [-882.62, -700.39], [-892.95, -709.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.46, "pop": 0, "jobs": 460}}, {"shape": {"outer": [[-681.2, -671.52], [-671.81, -682.03], [-665.38, -676.31], [-674.78, -665.81], [-674.99, -666.0], [-675.98, -664.9], [-681.47, -669.78], [-680.49, -670.89], [-681.2, -671.52]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-873.42, -653.58], [-863.4, -664.42], [-857.84, -659.31], [-867.85, -648.47], [-868.07, -648.67], [-869.56, -647.07], [-874.63, -651.72], [-873.14, -653.32], [-873.42, -653.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-787.0, -709.21], [-774.82, -698.2], [-796.11, -674.84], [-793.79, -672.75], [-792.53, -674.14], [-783.76, -666.2], [-784.91, -664.93], [-781.37, -661.72], [-791.84, -650.24], [-808.67, -665.49], [-809.55, -664.53], [-818.07, -672.23], [-816.73, -673.69], [-822.09, -678.54], [-811.05, -690.66], [-807.12, -687.11], [-787.0, -709.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.958, "pop": 479, "jobs": 0}}, {"shape": {"outer": [[-621.89, -698.41], [-614.66, -706.3], [-606.82, -699.17], [-606.99, -698.99], [-605.34, -697.48], [-612.19, -690.0], [-613.85, -691.49], [-614.04, -691.28], [-621.89, -698.41]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-770.11, -656.4], [-752.44, -675.91], [-746.13, -670.24], [-763.79, -650.73], [-770.11, -656.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[-866.14, -646.25], [-865.15, -647.35], [-865.37, -647.53], [-855.45, -658.43], [-855.09, -658.1], [-853.41, -659.95], [-848.64, -655.65], [-850.33, -653.8], [-849.93, -653.44], [-859.79, -642.6], [-859.97, -642.76], [-861.02, -641.61], [-866.14, -646.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-675.85, -663.86], [-665.94, -674.68], [-660.09, -669.36], [-670.0, -658.54], [-675.85, -663.86]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-756.87, -655.64], [-746.24, -667.54], [-740.25, -662.25], [-744.85, -657.09], [-744.62, -656.89], [-750.65, -650.12], [-753.55, -652.69], [-754.6, -651.51], [-756.97, -653.62], [-755.92, -654.8], [-756.87, -655.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-640.75, -681.11], [-630.66, -672.03], [-631.22, -671.41], [-630.26, -670.55], [-633.51, -666.97], [-634.46, -667.83], [-635.6, -666.58], [-638.97, -669.6], [-639.61, -668.91], [-643.56, -672.46], [-642.93, -673.17], [-645.7, -675.66], [-644.69, -676.76], [-645.76, -677.73], [-642.16, -681.7], [-641.09, -680.74], [-640.75, -681.11]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-815.32, -692.87], [-821.89, -685.67], [-843.49, -705.24], [-816.84, -734.45], [-790.34, -710.47], [-801.04, -698.74], [-814.19, -710.64], [-823.59, -700.35], [-815.32, -692.87]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 1.0, "pop": 579, "jobs": 0}}, {"shape": {"outer": [[-660.58, -650.38], [-650.67, -661.06], [-643.68, -654.61], [-653.59, -643.93], [-655.08, -645.31], [-655.94, -644.39], [-660.54, -648.62], [-659.68, -649.55], [-660.58, -650.38]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-624.01, -697.84], [-615.22, -689.88], [-615.63, -689.43], [-613.96, -687.91], [-620.61, -680.63], [-622.26, -682.13], [-622.64, -681.71], [-631.44, -689.68], [-624.01, -697.84]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-667.79, -657.6], [-656.39, -670.18], [-655.98, -669.81], [-654.51, -671.42], [-651.24, -668.46], [-652.69, -666.86], [-649.6, -664.08], [-658.97, -653.73], [-659.38, -654.09], [-661.4, -651.86], [-661.76, -652.18], [-662.89, -650.95], [-668.6, -656.08], [-667.48, -657.32], [-667.79, -657.6]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-695.53, -685.7], [-694.3, -687.05], [-694.98, -687.67], [-691.09, -691.95], [-690.42, -691.34], [-686.35, -695.83], [-681.73, -691.68], [-684.11, -689.06], [-683.89, -688.85], [-688.78, -683.45], [-689.01, -683.66], [-690.92, -681.55], [-695.53, -685.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-618.99, -722.53], [-610.79, -731.57], [-604.78, -726.15], [-612.98, -717.11], [-618.99, -722.53]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-857.96, -642.01], [-848.24, -652.51], [-846.13, -650.57], [-845.2, -651.57], [-842.06, -648.69], [-842.99, -647.69], [-842.54, -647.28], [-845.58, -644.0], [-845.18, -643.64], [-848.23, -640.35], [-848.62, -640.7], [-852.27, -636.78], [-857.96, -642.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-774.68, -667.2], [-760.68, -682.45], [-753.89, -676.26], [-767.88, -661.0], [-774.68, -667.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-636.37, -748.91], [-635.29, -747.93], [-630.75, -752.91], [-625.63, -748.29], [-625.03, -748.95], [-621.99, -746.21], [-622.43, -745.72], [-621.29, -744.7], [-621.03, -744.98], [-615.31, -739.8], [-619.99, -734.66], [-617.46, -732.38], [-625.47, -723.59], [-629.73, -727.45], [-635.57, -721.05], [-631.39, -717.28], [-633.9, -714.52], [-632.78, -713.49], [-640.72, -704.79], [-643.07, -706.91], [-643.96, -705.93], [-652.96, -714.06], [-652.11, -714.99], [-654.04, -716.73], [-654.99, -715.67], [-660.51, -720.66], [-659.5, -721.78], [-661.71, -723.78], [-655.25, -730.87], [-654.19, -729.91], [-647.28, -737.5], [-646.07, -736.4], [-643.9, -738.77], [-644.84, -739.62], [-636.37, -748.91]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 737, "jobs": 0}}, {"shape": {"outer": [[-868.11, -673.64], [-864.43, -677.71], [-854.95, -669.22], [-858.62, -665.15], [-868.11, -673.64]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-776.01, -620.53], [-771.24, -625.92], [-764.98, -620.43], [-769.76, -615.04], [-776.01, -620.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-688.83, -678.93], [-679.13, -689.8], [-678.61, -689.34], [-676.83, -691.32], [-671.09, -686.23], [-672.87, -684.24], [-672.44, -683.85], [-682.14, -673.0], [-688.83, -678.93]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-632.7, -689.62], [-623.13, -680.71], [-623.35, -680.47], [-622.44, -679.62], [-626.39, -675.41], [-627.31, -676.26], [-628.39, -675.11], [-635.5, -681.73], [-637.2, -679.91], [-641.63, -684.04], [-639.59, -686.21], [-637.62, -684.38], [-635.36, -686.78], [-636.59, -687.92], [-634.24, -690.42], [-633.01, -689.28], [-632.7, -689.62]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-600.91, -728.31], [-588.05, -716.45], [-602.91, -700.46], [-615.77, -712.32], [-600.91, -728.31]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.534, "pop": 267, "jobs": 0}}, {"shape": {"outer": [[-817.35, -606.01], [-807.54, -616.71], [-813.01, -621.69], [-822.83, -610.99], [-822.5, -610.69], [-823.62, -609.46], [-818.72, -605.01], [-817.6, -606.23], [-817.35, -606.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-768.96, -786.31], [-767.83, -786.38], [-765.57, -784.31], [-765.38, -784.51], [-764.07, -784.56], [-753.62, -775.01], [-753.59, -773.66], [-763.16, -763.26], [-759.58, -759.99], [-756.06, -756.78], [-756.08, -755.5], [-762.84, -748.15], [-763.96, -748.12], [-767.51, -751.36], [-770.35, -753.95], [-771.77, -753.93], [-773.8, -751.73], [-783.34, -760.45], [-783.38, -762.17], [-787.01, -765.47], [-787.02, -766.67], [-768.96, -786.31]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.403, "pop": 0, "jobs": 403}}, {"shape": {"outer": [[-737.5, -658.94], [-732.31, -654.12], [-739.62, -646.3], [-739.84, -646.51], [-742.29, -643.89], [-747.26, -648.52], [-737.5, -658.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-730.94, -577.22], [-730.59, -577.62], [-734.7, -581.32], [-733.3, -582.88], [-739.08, -588.1], [-735.6, -591.92], [-729.83, -586.71], [-729.29, -587.3], [-724.98, -583.4], [-725.74, -582.57], [-717.18, -574.84], [-722.2, -569.32], [-730.94, -577.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-839.08, -623.15], [-827.54, -635.48], [-822.11, -630.44], [-832.61, -619.21], [-834.67, -621.13], [-835.71, -620.02], [-839.08, -623.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-793.6, -584.57], [-791.09, -587.31], [-791.51, -587.68], [-787.47, -592.12], [-787.06, -591.75], [-782.61, -596.64], [-776.51, -591.13], [-787.49, -579.05], [-793.6, -584.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-741.9, -571.87], [-731.9, -562.82], [-738.59, -555.48], [-748.59, -564.52], [-741.9, -571.87]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-800.67, -594.0], [-792.05, -603.17], [-790.62, -601.84], [-789.34, -603.19], [-786.3, -600.35], [-787.58, -598.99], [-785.59, -597.13], [-794.21, -587.97], [-800.67, -594.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-758.29, -559.06], [-743.58, -545.88], [-750.16, -538.59], [-756.27, -544.06], [-764.87, -551.77], [-758.29, -559.06]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.124, "pop": 0, "jobs": 124}}, {"shape": {"outer": [[-772.34, -562.82], [-768.57, -567.09], [-769.41, -567.82], [-766.3, -571.34], [-764.83, -570.05], [-760.88, -574.53], [-756.05, -570.3], [-765.31, -559.79], [-765.63, -560.07], [-767.19, -558.31], [-772.34, -562.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-787.12, -577.99], [-775.19, -590.76], [-769.21, -585.21], [-778.07, -575.72], [-778.27, -575.89], [-781.33, -572.62], [-787.12, -577.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-843.55, -630.37], [-836.57, -637.87], [-830.79, -632.53], [-837.77, -625.03], [-838.75, -625.93], [-840.39, -624.16], [-844.98, -628.39], [-843.33, -630.16], [-843.55, -630.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-815.47, -604.12], [-805.58, -614.92], [-805.26, -614.63], [-804.23, -615.75], [-801.88, -613.62], [-802.9, -612.5], [-799.95, -609.82], [-809.84, -599.01], [-815.47, -604.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-850.98, -636.48], [-839.99, -648.43], [-834.03, -642.99], [-841.95, -634.37], [-842.25, -634.64], [-845.31, -631.31], [-850.98, -636.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-778.49, -570.87], [-775.68, -573.92], [-776.03, -574.23], [-772.23, -578.36], [-771.88, -578.04], [-767.07, -583.26], [-761.47, -578.13], [-764.66, -574.67], [-764.48, -574.49], [-770.77, -567.68], [-770.96, -567.85], [-772.9, -565.75], [-778.49, -570.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-751.96, -554.75], [-744.17, -547.91], [-738.09, -554.8], [-745.88, -561.63], [-751.96, -554.75]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-808.54, -598.13], [-797.22, -610.51], [-791.15, -604.99], [-802.46, -592.62], [-808.54, -598.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-830.43, -616.53], [-824.18, -623.02], [-822.37, -621.3], [-819.62, -624.16], [-819.42, -623.97], [-818.42, -625.01], [-815.59, -622.3], [-816.63, -621.22], [-815.73, -620.37], [-818.33, -617.66], [-817.62, -616.98], [-822.09, -612.35], [-823.78, -613.97], [-825.69, -611.98], [-830.43, -616.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1068.95, -537.67], [-1069.76, -537.96], [-1070.02, -538.7], [-1071.54, -565.0], [-1069.86, -565.1], [-1070.58, -576.44], [-1070.54, -576.93], [-1070.19, -577.23], [-1049.91, -578.33], [-1049.52, -578.23], [-1049.39, -577.75], [-1048.95, -569.5], [-1048.44, -559.98], [-1029.93, -560.96], [-1030.43, -570.7], [-1030.92, -579.67], [-1002.68, -581.17], [-1002.06, -569.6], [-988.52, -570.32], [-987.99, -560.45], [-973.16, -561.23], [-973.36, -564.89], [-975.49, -564.77], [-975.82, -571.11], [-976.43, -582.31], [-957.96, -583.29], [-955.91, -545.31], [-956.32, -544.32], [-957.28, -543.53], [-999.22, -541.17], [-999.13, -539.61], [-1000.08, -538.6], [-1023.76, -537.06], [-1024.86, -537.46], [-1025.65, -538.31], [-1025.74, -540.01], [-1068.95, -537.67]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2449}}, {"shape": {"outer": [[-971.06, -321.53], [-934.06, -323.22], [-933.22, -304.9], [-951.28, -304.09], [-950.46, -285.8], [-969.13, -284.74], [-971.06, -321.53]], "holes": []}, "height": 38.5, "data": {"type": "residential", "density": 1.0, "pop": 1970, "jobs": 0}}, {"shape": {"outer": [[-873.48, -475.68], [-871.26, -473.62], [-869.88, -475.09], [-867.21, -472.63], [-865.01, -475.0], [-839.55, -451.44], [-840.21, -450.74], [-836.32, -447.14], [-840.79, -442.33], [-839.72, -441.34], [-844.84, -435.85], [-846.67, -437.54], [-850.39, -433.53], [-848.39, -431.68], [-854.19, -425.45], [-855.18, -426.38], [-858.23, -423.12], [-863.27, -427.77], [-864.32, -426.64], [-869.9, -431.82], [-868.88, -432.92], [-872.53, -436.29], [-864.28, -445.15], [-872.64, -452.89], [-876.07, -449.23], [-875.75, -448.94], [-878.8, -445.66], [-880.0, -446.77], [-881.9, -444.71], [-884.36, -446.99], [-885.5, -445.77], [-891.07, -450.93], [-890.07, -452.01], [-895.3, -456.85], [-892.29, -460.07], [-893.32, -461.02], [-887.76, -466.99], [-887.34, -466.61], [-884.95, -469.17], [-883.22, -467.56], [-877.27, -473.95], [-876.11, -472.87], [-873.48, -475.68]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 1329, "jobs": 0}}, {"shape": {"outer": [[-1017.43, -352.28], [-1014.38, -352.44], [-1014.24, -349.65], [-1011.34, -349.79], [-1010.8, -338.72], [-1016.76, -338.43], [-1017.43, -352.28]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1008.06, -353.32], [-998.87, -353.79], [-998.21, -341.19], [-1007.4, -340.72], [-1008.06, -353.32]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1033.9, -350.2], [-1030.87, -350.37], [-1030.77, -348.67], [-1026.7, -348.89], [-1026.2, -340.07], [-1033.31, -339.67], [-1033.9, -350.2]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-1025.5, -350.66], [-1021.99, -350.86], [-1021.91, -349.3], [-1018.92, -349.46], [-1018.37, -339.9], [-1024.86, -339.53], [-1025.5, -350.66]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-990.44, -355.24], [-991.98, -383.72], [-978.89, -384.43], [-978.07, -369.21], [-977.35, -355.95], [-990.44, -355.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[-1015.47, -495.04], [-1015.9, -504.01], [-1006.12, -504.48], [-1006.08, -503.67], [-1000.41, -503.93], [-1000.02, -495.77], [-1015.47, -495.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1015.83, -505.37], [-1016.07, -510.18], [-1012.05, -510.39], [-1012.17, -512.92], [-1007.07, -513.17], [-1007.04, -512.45], [-1002.79, -512.66], [-1002.45, -505.8], [-1011.67, -505.35], [-1011.68, -505.57], [-1015.83, -505.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1046.84, -483.13], [-1047.16, -490.32], [-1042.46, -490.53], [-1042.41, -489.52], [-1037.34, -489.75], [-1037.07, -483.55], [-1046.84, -483.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1045.15, -495.12], [-1045.6, -501.85], [-1043.51, -502.0], [-1044.03, -509.7], [-1040.38, -509.94], [-1040.49, -511.58], [-1037.61, -511.77], [-1037.5, -510.14], [-1037.34, -510.14], [-1036.37, -495.7], [-1045.15, -495.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1071.35, -499.35], [-1060.11, -500.09], [-1060.17, -500.98], [-1054.92, -501.33], [-1054.86, -500.43], [-1054.3, -500.47], [-1053.8, -493.05], [-1068.99, -492.04], [-1069.01, -492.33], [-1070.27, -492.24], [-1070.4, -494.3], [-1071.01, -494.27], [-1071.35, -499.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1071.77, -502.65], [-1053.85, -503.3], [-1054.18, -512.4], [-1072.11, -511.73], [-1071.77, -502.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1032.57, -503.96], [-1033.05, -512.99], [-1028.16, -513.25], [-1028.19, -513.86], [-1019.64, -514.33], [-1019.12, -504.67], [-1032.57, -503.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1020.92, -474.58], [-996.86, -475.71], [-996.18, -461.36], [-1020.25, -460.24], [-1020.92, -474.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[-1024.32, -411.48], [-1025.91, -446.22], [-997.07, -447.53], [-995.48, -412.81], [-1024.32, -411.48]], "holes": []}, "height": 42.0, "data": {"type": "residential", "density": 1.0, "pop": 2108, "jobs": 0}}, {"shape": {"outer": [[-1011.5, -485.97], [-1011.84, -494.13], [-1001.36, -494.57], [-1001.02, -486.42], [-1005.58, -486.22], [-1005.53, -485.08], [-1007.96, -484.97], [-1008.01, -486.12], [-1011.5, -485.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1067.78, -491.22], [-1062.91, -491.52], [-1062.86, -490.7], [-1055.17, -491.16], [-1054.76, -484.3], [-1058.3, -484.09], [-1058.28, -483.68], [-1062.71, -483.42], [-1062.68, -482.84], [-1067.26, -482.57], [-1067.34, -483.94], [-1068.51, -483.88], [-1068.85, -489.69], [-1067.7, -489.76], [-1067.78, -491.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1042.99, -424.25], [-1042.56, -410.72], [-1050.63, -410.39], [-1050.57, -408.55], [-1054.49, -408.39], [-1054.4, -407.14], [-1065.48, -406.77], [-1067.28, -408.47], [-1067.92, -427.04], [-1061.8, -427.24], [-1061.86, -429.27], [-1050.09, -429.78], [-1049.86, -424.01], [-1042.99, -424.25]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.264, "pop": 0, "jobs": 264}}, {"shape": {"outer": [[-1062.87, -329.69], [-1036.1, -330.85], [-1036.1, -330.54], [-1034.68, -330.61], [-1034.09, -317.03], [-1057.75, -316.0], [-1057.77, -316.41], [-1062.28, -316.21], [-1062.87, -329.69]], "holes": []}, "height": 42.0, "data": {"type": "residential", "density": 1.0, "pop": 818, "jobs": 0}}, {"shape": {"outer": [[-1064.08, -472.92], [-1044.79, -473.89], [-1044.13, -460.68], [-1063.42, -459.7], [-1064.08, -472.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-1058.07, -431.93], [-1058.9, -451.49], [-1044.25, -452.1], [-1043.41, -432.54], [-1058.07, -431.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[-907.3, -634.61], [-900.32, -642.13], [-899.59, -641.46], [-898.43, -642.72], [-893.86, -638.51], [-895.02, -637.26], [-894.19, -636.49], [-901.15, -628.96], [-902.33, -630.05], [-903.92, -628.32], [-907.93, -632.0], [-906.33, -633.72], [-907.3, -634.61]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2128.06, -544.33], [-2127.48, -529.82], [-2119.73, -530.13], [-2120.31, -544.64], [-2128.06, -544.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2116.77, -541.93], [-2116.33, -532.53], [-2107.93, -532.93], [-2108.36, -542.05], [-2110.55, -541.95], [-2110.66, -544.41], [-2114.88, -544.21], [-2114.77, -542.03], [-2116.77, -541.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2072.19, -534.95], [-2065.82, -535.01], [-2062.57, -535.05], [-2062.35, -512.67], [-2071.96, -512.58], [-2072.19, -534.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-2131.55, -543.07], [-2131.08, -528.83], [-2139.01, -528.58], [-2139.48, -542.82], [-2131.55, -543.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2139.29, -520.87], [-2126.26, -521.1], [-2126.13, -514.05], [-2132.79, -513.94], [-2132.81, -515.34], [-2139.2, -515.22], [-2139.29, -520.87]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2135.05, -555.61], [-2135.52, -570.89], [-2108.5, -571.73], [-2108.02, -556.45], [-2135.05, -555.61]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.578, "pop": 289, "jobs": 0}}, {"shape": {"outer": [[-2135.25, -505.7], [-2124.98, -506.01], [-2124.22, -480.6], [-2134.49, -480.29], [-2135.25, -505.7]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-2071.4, -508.37], [-2062.11, -508.53], [-2061.7, -485.79], [-2070.97, -485.63], [-2071.4, -508.37]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.222, "pop": 111, "jobs": 0}}, {"shape": {"outer": [[-2088.61, -522.72], [-2081.64, -522.87], [-2081.65, -523.5], [-2077.87, -523.59], [-2077.05, -485.81], [-2081.39, -485.72], [-2081.41, -486.46], [-2087.81, -486.32], [-2088.61, -522.72]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.556, "pop": 278, "jobs": 0}}, {"shape": {"outer": [[-1056.66, -291.62], [-1040.18, -292.5], [-1040.59, -300.19], [-1031.52, -300.67], [-1030.45, -280.94], [-1038.23, -280.52], [-1038.61, -287.61], [-1047.21, -287.14], [-1047.17, -286.45], [-1054.69, -286.04], [-1056.35, -285.95], [-1056.66, -291.62]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.166, "pop": 0, "jobs": 166}}, {"shape": {"outer": [[-1028.04, -300.64], [-1025.57, -300.66], [-1025.67, -302.68], [-1022.58, -302.82], [-1022.63, -303.92], [-1016.05, -304.24], [-1015.94, -302.05], [-1010.08, -302.34], [-1010.02, -301.22], [-992.98, -302.06], [-994.14, -325.29], [-996.19, -325.19], [-996.42, -329.8], [-977.6, -330.74], [-977.38, -326.47], [-978.58, -326.42], [-978.3, -320.75], [-975.85, -320.87], [-975.6, -315.91], [-976.76, -315.85], [-975.88, -298.07], [-974.54, -298.13], [-974.3, -293.41], [-975.91, -293.33], [-975.53, -285.69], [-986.44, -285.15], [-986.31, -282.6], [-992.59, -282.3], [-992.71, -284.64], [-1014.42, -283.57], [-1014.35, -282.5], [-1026.84, -281.72], [-1028.04, -300.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 579, "jobs": 0}}, {"shape": {"outer": [[-1060.71, -293.29], [-1043.01, -294.01], [-1043.8, -313.36], [-1061.5, -312.64], [-1060.71, -293.29]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.24, "pop": 120, "jobs": 0}}, {"shape": {"outer": [[-928.16, -568.2], [-911.57, -568.96], [-911.29, -563.09], [-916.18, -562.87], [-916.07, -560.44], [-927.78, -559.91], [-928.16, -568.2]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-782.3, -515.95], [-772.42, -526.34], [-766.58, -520.84], [-776.46, -510.44], [-782.3, -515.95]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-872.91, -595.34], [-864.86, -603.7], [-864.56, -603.42], [-861.35, -606.76], [-855.79, -601.44], [-867.05, -589.74], [-872.91, -595.34]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-829.72, -551.17], [-824.08, -546.05], [-810.87, -560.5], [-813.67, -563.05], [-812.62, -564.2], [-815.45, -566.77], [-829.72, -551.17]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-835.51, -562.98], [-826.16, -573.57], [-820.57, -568.67], [-829.93, -558.08], [-835.51, -562.98]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-879.3, -602.53], [-873.75, -597.51], [-863.41, -608.85], [-868.97, -613.87], [-879.3, -602.53]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-813.18, -541.64], [-802.12, -553.95], [-795.76, -548.27], [-806.82, -535.96], [-813.18, -541.64]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-798.55, -528.69], [-787.1, -541.17], [-784.51, -538.81], [-785.39, -537.85], [-781.85, -534.63], [-784.85, -531.37], [-784.46, -531.01], [-787.93, -527.21], [-788.33, -527.57], [-792.41, -523.1], [-794.37, -524.88], [-795.56, -523.58], [-798.85, -526.57], [-797.65, -527.87], [-798.55, -528.69]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-844.8, -567.67], [-833.56, -579.92], [-827.64, -574.53], [-830.34, -571.59], [-830.14, -571.4], [-834.18, -567.0], [-834.39, -567.19], [-838.89, -562.28], [-844.8, -567.67]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-844.29, -569.15], [-832.68, -581.76], [-837.67, -586.33], [-839.03, -584.85], [-839.87, -585.61], [-850.12, -574.49], [-844.29, -569.15]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-820.29, -545.81], [-815.51, -551.23], [-815.86, -551.53], [-812.75, -555.07], [-812.4, -554.77], [-808.61, -559.06], [-803.69, -554.76], [-815.35, -541.5], [-820.29, -545.81]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-805.35, -535.47], [-795.61, -546.12], [-790.26, -541.26], [-793.25, -538.0], [-793.05, -537.82], [-796.21, -534.38], [-796.39, -534.55], [-799.99, -530.61], [-805.35, -535.47]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-791.15, -520.78], [-786.88, -525.42], [-787.14, -525.66], [-783.76, -529.33], [-783.49, -529.08], [-778.59, -534.4], [-772.39, -528.72], [-784.95, -515.1], [-791.15, -520.78]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-902.5, -625.46], [-892.41, -636.39], [-886.59, -631.05], [-889.11, -628.31], [-888.7, -627.95], [-896.26, -619.75], [-902.5, -625.46]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-865.72, -590.56], [-860.17, -585.21], [-850.14, -595.56], [-855.68, -600.9], [-865.72, -590.56]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-856.28, -583.09], [-850.26, -577.64], [-841.28, -587.5], [-841.61, -587.8], [-840.32, -589.21], [-845.1, -593.53], [-846.39, -592.12], [-846.81, -592.5], [-849.25, -589.83], [-849.73, -590.27], [-856.28, -583.09]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-893.64, -619.05], [-886.87, -612.88], [-876.95, -623.71], [-879.84, -626.34], [-881.01, -625.06], [-884.9, -628.6], [-893.64, -619.05]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-886.34, -609.69], [-876.5, -620.28], [-876.03, -619.85], [-874.78, -621.2], [-870.21, -616.97], [-871.45, -615.63], [-870.98, -615.2], [-880.8, -604.6], [-886.34, -609.69]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-928.05, -580.44], [-928.46, -588.59], [-917.72, -589.13], [-917.31, -580.98], [-928.05, -580.44]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-837.29, -485.65], [-830.72, -479.53], [-821.74, -489.1], [-828.32, -495.23], [-837.29, -485.65]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-830.66, -475.02], [-829.07, -476.78], [-829.71, -477.35], [-827.87, -479.38], [-827.24, -478.81], [-825.18, -481.08], [-812.86, -470.03], [-818.34, -463.97], [-830.66, -475.02]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-852.71, -497.78], [-840.99, -510.41], [-834.92, -504.84], [-846.63, -492.19], [-852.71, -497.78]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-916.33, -620.49], [-912.91, -624.27], [-904.97, -617.13], [-905.93, -616.08], [-902.83, -613.29], [-905.29, -610.58], [-916.33, -620.49]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-873.72, -518.89], [-865.11, -528.13], [-864.41, -527.47], [-862.03, -530.03], [-858.19, -526.48], [-861.72, -522.68], [-860.32, -521.4], [-867.77, -513.4], [-873.72, -518.89]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-808.04, -500.11], [-803.66, -504.74], [-793.32, -495.05], [-798.56, -489.48], [-805.77, -496.24], [-804.89, -497.16], [-808.04, -500.11]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-902.02, -591.62], [-902.12, -595.56], [-895.68, -595.73], [-895.58, -591.78], [-902.02, -591.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-897.42, -567.33], [-891.58, -567.58], [-891.37, -562.59], [-897.22, -562.36], [-897.42, -567.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-844.72, -492.76], [-837.43, -500.67], [-837.2, -500.46], [-834.9, -502.97], [-829.17, -497.75], [-838.77, -487.33], [-844.72, -492.76]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-866.01, -511.78], [-855.67, -523.49], [-854.6, -522.55], [-851.34, -526.24], [-847.98, -523.3], [-851.34, -519.5], [-850.09, -518.4], [-860.35, -506.81], [-866.01, -511.78]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-925.85, -579.07], [-910.81, -579.42], [-910.73, -575.97], [-913.01, -575.91], [-912.96, -573.76], [-925.71, -573.46], [-925.72, -573.75], [-927.8, -573.7], [-927.93, -578.86], [-925.84, -578.9], [-925.85, -579.07]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-905.2, -546.96], [-899.8, -541.71], [-890.18, -551.55], [-891.41, -552.74], [-890.04, -554.14], [-893.28, -557.29], [-894.64, -555.9], [-895.57, -556.81], [-905.2, -546.96]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-882.66, -526.63], [-873.67, -536.41], [-869.22, -532.35], [-870.91, -530.52], [-869.9, -529.58], [-870.74, -528.66], [-870.21, -528.19], [-873.95, -524.12], [-874.99, -525.07], [-877.71, -522.11], [-882.66, -526.63]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-928.97, -598.72], [-923.33, -598.94], [-923.28, -597.82], [-917.24, -598.04], [-917.23, -597.71], [-913.92, -597.84], [-913.77, -593.78], [-928.76, -593.19], [-928.97, -598.72]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-928.47, -549.65], [-928.7, -556.49], [-917.81, -556.86], [-917.73, -554.35], [-914.32, -554.47], [-914.2, -550.58], [-917.6, -550.46], [-917.59, -550.02], [-928.47, -549.65]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-891.27, -531.78], [-878.36, -545.84], [-877.85, -545.37], [-876.44, -546.91], [-873.35, -544.1], [-874.83, -542.49], [-872.34, -540.23], [-883.41, -528.17], [-885.96, -530.48], [-887.74, -528.54], [-891.27, -531.78]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-922.83, -613.42], [-922.64, -613.63], [-923.97, -614.87], [-918.96, -620.17], [-909.16, -610.98], [-911.07, -608.95], [-908.52, -606.54], [-911.13, -603.76], [-913.7, -606.17], [-914.35, -605.47], [-922.83, -613.42]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-800.78, -504.13], [-794.43, -511.06], [-785.76, -503.18], [-792.1, -496.25], [-800.78, -504.13]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-822.31, -481.82], [-817.12, -487.51], [-813.79, -484.5], [-813.59, -484.73], [-810.64, -482.06], [-810.85, -481.83], [-808.03, -479.29], [-808.37, -478.91], [-807.3, -477.94], [-811.69, -473.12], [-812.76, -474.09], [-812.9, -473.95], [-814.15, -475.08], [-814.47, -474.73], [-822.31, -481.82]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-860.5, -504.29], [-856.65, -508.56], [-857.04, -508.91], [-849.79, -516.95], [-843.65, -511.46], [-854.76, -499.15], [-860.5, -504.29]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-898.76, -599.06], [-894.45, -603.74], [-887.9, -597.75], [-892.21, -593.07], [-898.76, -599.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-928.47, -608.18], [-919.24, -608.6], [-918.89, -600.99], [-928.12, -600.57], [-928.15, -601.1], [-930.25, -601.01], [-930.55, -607.8], [-928.45, -607.89], [-928.47, -608.18]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-817.22, -490.26], [-811.68, -496.25], [-803.46, -488.69], [-803.79, -488.32], [-800.77, -485.54], [-805.98, -479.91], [-817.22, -490.26]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-897.31, -540.24], [-886.67, -551.85], [-882.59, -548.13], [-883.74, -546.87], [-882.24, -545.52], [-888.26, -538.94], [-888.6, -539.25], [-892.06, -535.48], [-892.54, -535.9], [-893.33, -535.03], [-897.87, -539.16], [-897.08, -540.02], [-897.31, -540.24]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-886.71, -284.68], [-880.2, -291.78], [-866.45, -279.22], [-887.09, -256.78], [-888.3, -257.88], [-889.82, -259.27], [-902.16, -270.54], [-907.53, -275.45], [-908.09, -286.68], [-908.31, -291.27], [-890.72, -292.13], [-890.02, -277.86], [-886.39, -278.03], [-886.71, -284.68]], "holes": []}, "height": 35.0, "data": {"type": "residential", "density": 1.0, "pop": 1504, "jobs": 0}}, {"shape": {"outer": [[-832.05, -412.43], [-820.34, -425.21], [-792.95, -400.32], [-804.66, -387.53], [-832.05, -412.43]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.674, "pop": 337, "jobs": 0}}, {"shape": {"outer": [[-719.98, -301.55], [-718.27, -299.96], [-716.85, -301.48], [-704.58, -290.06], [-710.66, -283.58], [-724.02, -296.0], [-722.15, -298.0], [-722.76, -298.57], [-719.98, -301.55]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1786.42, -876.81], [-1768.75, -877.4], [-1768.36, -865.81], [-1786.03, -865.22], [-1786.42, -876.81]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.131, "pop": 0, "jobs": 131}}, {"shape": {"outer": [[-1746.39, -825.87], [-1725.11, -826.75], [-1725.88, -845.46], [-1747.16, -844.58], [-1746.39, -825.87]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.255, "pop": 0, "jobs": 255}}, {"shape": {"outer": [[-1802.28, -829.14], [-1787.86, -829.44], [-1787.32, -810.62], [-1801.74, -810.2], [-1801.91, -812.49], [-1804.64, -812.41], [-1804.7, -814.59], [-1801.87, -814.67], [-1802.02, -820.21], [-1807.04, -819.97], [-1807.14, -823.23], [-1802.11, -823.37], [-1802.28, -829.14]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.189, "pop": 0, "jobs": 189}}, {"shape": {"outer": [[-2063.09, -871.14], [-2036.38, -872.12], [-2036.92, -886.67], [-2063.62, -885.68], [-2063.09, -871.14]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-660.24, -213.92], [-665.58, -208.19], [-664.48, -207.16], [-666.92, -204.54], [-662.13, -200.13], [-659.56, -202.9], [-656.72, -200.28], [-651.51, -205.89], [-654.47, -208.61], [-649.67, -213.77], [-646.97, -211.28], [-641.75, -216.9], [-644.48, -219.4], [-639.71, -224.54], [-637.03, -222.06], [-631.97, -227.49], [-634.73, -230.04], [-632.23, -232.72], [-638.18, -238.21], [-640.4, -235.82], [-639.24, -234.75], [-639.56, -234.4], [-640.47, -235.23], [-645.67, -229.64], [-645.86, -229.81], [-650.07, -225.29], [-649.03, -224.34], [-649.46, -223.87], [-650.27, -224.62], [-655.56, -218.93], [-655.72, -219.08], [-659.96, -214.52], [-658.89, -213.53], [-659.32, -213.07], [-660.24, -213.92]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.602, "pop": 301, "jobs": 0}}, {"shape": {"outer": [[-704.44, -238.25], [-699.68, -233.86], [-697.13, -236.61], [-696.23, -235.78], [-690.93, -241.47], [-691.9, -242.37], [-687.18, -247.45], [-686.32, -246.65], [-681.18, -252.18], [-682.16, -253.08], [-677.37, -258.24], [-676.46, -257.4], [-671.29, -262.96], [-672.28, -263.88], [-669.75, -266.61], [-674.54, -271.04], [-676.97, -268.43], [-679.83, -271.07], [-685.0, -265.5], [-682.11, -262.82], [-686.92, -257.64], [-689.71, -260.22], [-694.94, -254.59], [-692.15, -252.0], [-696.68, -247.13], [-699.34, -249.59], [-704.73, -243.78], [-701.81, -241.09], [-704.44, -238.25]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.576, "pop": 288, "jobs": 0}}, {"shape": {"outer": [[-644.71, -308.37], [-633.96, -320.27], [-608.95, -348.03], [-606.81, -350.34], [-589.08, -334.45], [-586.41, -332.05], [-613.97, -301.52], [-615.85, -299.43], [-621.01, -304.05], [-629.95, -294.15], [-640.44, -303.56], [-639.95, -304.1], [-644.71, -308.37]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.413, "pop": 0, "jobs": 413}}, {"shape": {"outer": [[-576.34, -328.01], [-571.51, -333.13], [-572.6, -334.14], [-569.88, -337.04], [-568.68, -335.92], [-563.91, -341.01], [-540.74, -319.47], [-525.76, -305.56], [-580.69, -246.86], [-618.71, -282.2], [-614.05, -287.18], [-615.02, -288.09], [-611.97, -291.35], [-610.98, -290.45], [-606.43, -295.37], [-584.16, -274.96], [-585.11, -273.93], [-580.26, -269.5], [-575.34, -265.02], [-570.87, -269.88], [-561.19, -280.4], [-569.66, -288.12], [-564.95, -293.25], [-571.44, -299.18], [-571.61, -300.82], [-561.31, -311.74], [-560.2, -312.9], [-576.34, -328.01]], "holes": []}, "height": 56.0, "data": {"type": "residential", "density": 1.0, "pop": 7611, "jobs": 0}}, {"shape": {"outer": [[-650.13, -365.99], [-642.03, -358.02], [-646.03, -353.99], [-654.13, -361.96], [-653.65, -362.44], [-654.86, -363.62], [-651.66, -366.86], [-650.45, -365.67], [-650.13, -365.99]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-792.59, -456.32], [-791.98, -456.97], [-793.07, -458.0], [-788.78, -462.57], [-787.68, -461.54], [-787.22, -462.02], [-776.99, -452.45], [-782.35, -446.76], [-792.59, -456.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-722.5, -414.82], [-719.88, -412.44], [-718.66, -413.76], [-715.66, -411.03], [-733.7, -391.32], [-739.32, -396.42], [-722.5, -414.82]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[-727.2, -472.55], [-723.6, -469.32], [-724.41, -468.43], [-686.24, -434.1], [-685.52, -434.9], [-682.08, -431.81], [-693.75, -418.92], [-738.96, -459.57], [-727.2, -472.55]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 702, "jobs": 0}}, {"shape": {"outer": [[-655.28, -362.57], [-646.3, -353.74], [-651.44, -348.57], [-660.41, -357.4], [-655.28, -362.57]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-769.87, -425.39], [-758.77, -437.36], [-752.33, -431.43], [-756.43, -427.02], [-756.3, -426.9], [-760.47, -422.4], [-760.6, -422.52], [-763.44, -419.46], [-769.87, -425.39]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-748.12, -402.76], [-732.8, -419.37], [-726.84, -413.92], [-742.17, -397.31], [-748.12, -402.76]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-663.78, -348.46], [-661.84, -350.54], [-667.21, -355.49], [-663.95, -358.99], [-652.28, -348.23], [-657.47, -342.64], [-663.78, -348.46]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-754.01, -425.47], [-748.27, -420.25], [-751.51, -416.73], [-751.34, -416.56], [-753.83, -413.85], [-753.99, -414.01], [-755.46, -412.4], [-761.34, -417.76], [-759.08, -420.22], [-759.21, -420.33], [-756.05, -423.79], [-755.78, -423.55], [-754.01, -425.47]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-714.82, -396.0], [-708.46, -390.13], [-712.13, -386.17], [-711.94, -386.0], [-715.66, -381.98], [-715.86, -382.16], [-718.76, -379.05], [-725.12, -384.91], [-714.82, -396.0]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-754.74, -411.69], [-741.02, -426.47], [-735.24, -421.15], [-748.97, -406.36], [-754.74, -411.69]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-800.16, -448.93], [-799.73, -449.38], [-801.06, -450.6], [-796.1, -455.96], [-794.85, -454.8], [-794.69, -454.98], [-783.75, -444.93], [-788.94, -439.33], [-793.76, -443.77], [-794.12, -443.37], [-800.16, -448.93]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-775.22, -479.21], [-762.69, -468.21], [-758.88, -472.53], [-762.64, -475.84], [-761.36, -477.29], [-770.13, -484.97], [-775.22, -479.21]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-786.8, -464.68], [-781.41, -470.42], [-769.6, -459.4], [-774.99, -453.66], [-786.8, -464.68]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-754.17, -485.75], [-745.26, -495.36], [-744.48, -494.64], [-741.68, -497.66], [-736.73, -493.1], [-748.43, -480.47], [-754.17, -485.75]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-661.29, -393.27], [-648.59, -407.2], [-642.45, -401.65], [-655.15, -387.71], [-657.6, -389.92], [-658.46, -388.98], [-661.56, -391.78], [-660.7, -392.73], [-661.29, -393.27]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-748.23, -480.04], [-736.57, -492.62], [-731.32, -487.79], [-734.65, -484.18], [-733.87, -483.46], [-742.18, -474.49], [-748.23, -480.04]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-663.63, -336.58], [-666.36, -333.7], [-665.29, -332.69], [-669.22, -328.53], [-677.56, -336.36], [-673.79, -340.35], [-674.45, -340.98], [-671.56, -344.04], [-670.51, -343.04], [-668.11, -345.59], [-663.8, -341.55], [-666.21, -339.01], [-663.63, -336.58]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-776.29, -431.46], [-767.06, -441.4], [-761.33, -436.13], [-770.56, -426.17], [-770.85, -426.44], [-772.26, -424.94], [-777.47, -429.74], [-776.07, -431.25], [-776.29, -431.46]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-706.43, -406.3], [-711.45, -410.87], [-707.83, -414.81], [-702.81, -410.25], [-706.43, -406.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-784.75, -439.13], [-773.84, -451.04], [-767.13, -444.96], [-775.54, -435.77], [-776.18, -436.35], [-778.68, -433.62], [-784.75, -439.13]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-732.09, -392.23], [-730.75, -391.0], [-731.18, -390.54], [-727.89, -387.53], [-727.46, -387.99], [-726.59, -387.2], [-724.37, -389.61], [-723.84, -389.14], [-720.33, -392.95], [-720.85, -393.43], [-716.65, -398.0], [-722.14, -403.03], [-732.09, -392.23]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-780.92, -472.86], [-777.84, -476.23], [-777.26, -475.69], [-774.89, -478.28], [-768.65, -472.62], [-770.6, -470.49], [-766.56, -466.82], [-770.06, -462.99], [-780.92, -472.86]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-640.28, -386.59], [-637.21, -390.03], [-634.03, -387.23], [-630.58, -391.11], [-628.76, -389.49], [-628.59, -389.7], [-624.68, -386.24], [-631.35, -378.75], [-632.92, -380.14], [-637.74, -374.73], [-641.97, -378.48], [-637.19, -383.84], [-640.28, -386.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-686.99, -349.02], [-683.92, -352.29], [-684.39, -352.73], [-676.16, -361.48], [-670.26, -355.98], [-681.56, -343.95], [-686.99, -349.02]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-697.39, -355.72], [-685.73, -368.15], [-678.87, -361.78], [-685.88, -354.3], [-686.65, -355.02], [-691.3, -350.05], [-697.39, -355.72]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-671.5, -365.63], [-668.01, -362.37], [-667.74, -362.64], [-666.27, -361.26], [-657.41, -370.69], [-661.63, -374.65], [-665.56, -370.48], [-666.3, -371.16], [-671.5, -365.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-143.95, -425.19], [-140.47, -422.06], [-138.52, -391.05], [-142.16, -387.03], [-162.19, -405.08], [-143.95, -425.19]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.412, "pop": 0, "jobs": 412}}, {"shape": {"outer": [[-118.31, -386.18], [-97.62, -408.29], [-91.33, -402.46], [-71.29, -383.85], [-97.49, -355.84], [-115.19, -372.27], [-117.73, -372.17], [-118.31, -386.18]], "holes": []}, "height": 31.5, "data": {"type": "residential", "density": 1.0, "pop": 2124, "jobs": 0}}, {"shape": {"outer": [[-118.74, -367.19], [-113.58, -367.34], [-99.17, -353.92], [-114.13, -337.96], [-115.24, -337.33], [-116.9, -337.51], [-117.96, -338.35], [-118.74, -367.19]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.366, "pop": 183, "jobs": 0}}, {"shape": {"outer": [[-120.3, -426.38], [-117.77, -427.18], [-100.39, -410.78], [-115.38, -395.02], [-119.17, -394.88], [-120.3, -426.38]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.632, "pop": 316, "jobs": 0}}, {"shape": {"outer": [[311.67, -85.15], [320.25, -94.42], [335.82, -79.81], [338.67, -77.23], [330.2, -68.1], [311.67, -85.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.252, "pop": 126, "jobs": 0}}, {"shape": {"outer": [[289.91, -180.08], [296.48, -187.03], [326.78, -159.13], [326.06, -157.49], [303.45, -156.67], [303.39, -158.01], [302.76, -171.51], [299.92, -171.28], [289.91, -180.08]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.298, "pop": 149, "jobs": 0}}, {"shape": {"outer": [[-321.22, -229.66], [-305.74, -215.79], [-303.52, -213.75], [-293.0, -204.35], [-305.74, -190.17], [-315.77, -183.67], [-341.79, -206.91], [-321.22, -229.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.732, "pop": 0, "jobs": 732}}, {"shape": {"outer": [[-146.55, -527.47], [-145.69, -500.88], [-154.36, -500.63], [-156.64, -502.56], [-157.71, -526.95], [-146.55, -527.47]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-191.22, -521.17], [-185.99, -526.74], [-184.47, -525.34], [-184.16, -525.68], [-180.95, -522.71], [-180.56, -523.12], [-176.56, -519.38], [-176.94, -518.97], [-174.26, -516.49], [-178.78, -511.66], [-179.8, -512.6], [-180.49, -511.87], [-181.98, -513.25], [-182.55, -512.63], [-189.78, -519.36], [-189.54, -519.62], [-191.22, -521.17]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-157.86, -499.67], [-142.9, -485.98], [-148.3, -480.1], [-163.28, -493.79], [-157.86, -499.67]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[-183.49, -526.81], [-181.52, -528.97], [-183.46, -530.74], [-180.0, -534.51], [-165.81, -521.64], [-168.9, -518.26], [-170.32, -519.54], [-172.67, -516.98], [-183.49, -526.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2063.07, -570.34], [-2062.65, -560.22], [-2069.43, -559.94], [-2069.72, -567.02], [-2067.37, -567.12], [-2067.5, -570.16], [-2063.07, -570.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2050.72, -619.1], [-2032.92, -619.5], [-2032.54, -602.74], [-2050.34, -602.33], [-2050.72, -619.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.238, "pop": 119, "jobs": 0}}, {"shape": {"outer": [[-2075.22, -617.04], [-2057.76, -617.56], [-2057.14, -596.98], [-2058.25, -596.95], [-2058.07, -590.87], [-2073.41, -590.41], [-2073.58, -596.19], [-2074.6, -596.16], [-2075.22, -617.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.362, "pop": 181, "jobs": 0}}, {"shape": {"outer": [[-2094.49, -544.15], [-2085.72, -544.38], [-2085.38, -530.94], [-2092.24, -530.77], [-2092.32, -533.8], [-2094.24, -533.74], [-2094.49, -544.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2053.49, -503.47], [-2030.22, -504.44], [-2029.94, -497.91], [-2053.22, -496.95], [-2053.49, -503.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2082.76, -570.68], [-2074.13, -571.1], [-2073.5, -558.23], [-2080.53, -557.89], [-2080.63, -560.06], [-2082.24, -559.98], [-2082.76, -570.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2108.3, -591.59], [-2109.26, -611.21], [-2096.45, -611.84], [-2095.5, -592.21], [-2108.3, -591.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-2054.41, -515.45], [-2030.39, -516.46], [-2030.09, -509.28], [-2054.1, -508.26], [-2054.41, -515.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-2046.06, -542.38], [-2028.59, -543.0], [-2028.25, -533.54], [-2045.72, -532.91], [-2046.06, -542.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2141.53, -605.01], [-2118.56, -605.73], [-2118.96, -618.52], [-2141.94, -617.79], [-2141.53, -605.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.236, "pop": 118, "jobs": 0}}, {"shape": {"outer": [[-2050.0, -596.22], [-2032.31, -596.53], [-2032.03, -580.48], [-2049.72, -580.17], [-2050.0, -596.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.228, "pop": 114, "jobs": 0}}, {"shape": {"outer": [[-2085.5, -572.63], [-2084.83, -557.11], [-2093.23, -556.75], [-2093.75, -568.67], [-2091.77, -568.75], [-2091.92, -572.36], [-2085.5, -572.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2042.6, -566.42], [-2042.38, -561.44], [-2044.39, -561.35], [-2044.25, -557.97], [-2030.49, -558.57], [-2030.85, -566.93], [-2042.6, -566.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2069.46, -553.46], [-2057.06, -553.97], [-2056.71, -545.59], [-2069.11, -545.08], [-2069.46, -553.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2050.08, -576.29], [-2029.72, -576.95], [-2029.44, -568.24], [-2049.79, -567.57], [-2050.08, -576.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2045.58, -527.75], [-2030.9, -528.34], [-2030.54, -519.52], [-2045.22, -518.93], [-2045.58, -527.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2141.57, -597.92], [-2118.43, -598.79], [-2117.96, -586.49], [-2141.11, -585.61], [-2141.57, -597.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.228, "pop": 114, "jobs": 0}}, {"shape": {"outer": [[-2048.32, -554.62], [-2032.41, -555.27], [-2032.29, -552.22], [-2029.53, -552.32], [-2029.35, -547.65], [-2048.3, -546.9], [-2048.36, -548.25], [-2049.95, -548.19], [-2050.09, -551.66], [-2048.21, -551.74], [-2048.32, -554.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2045.94, -494.86], [-2028.35, -495.41], [-2028.15, -488.98], [-2034.27, -488.79], [-2034.23, -487.34], [-2044.19, -487.03], [-2044.24, -488.95], [-2045.76, -488.9], [-2045.94, -494.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2089.16, -616.02], [-2080.97, -616.14], [-2080.6, -592.58], [-2088.78, -592.44], [-2089.16, -616.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-396.82, -743.69], [-391.14, -738.42], [-406.54, -721.93], [-412.23, -727.19], [-396.82, -743.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-395.36, -777.05], [-393.29, -779.31], [-391.75, -777.91], [-379.86, -790.92], [-375.29, -786.77], [-385.12, -776.02], [-385.36, -776.25], [-389.51, -771.73], [-395.36, -777.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-365.54, -703.93], [-359.68, -698.44], [-363.02, -694.91], [-362.59, -694.51], [-366.25, -690.64], [-366.67, -691.04], [-369.85, -687.67], [-375.71, -693.16], [-372.58, -696.46], [-372.87, -696.75], [-369.21, -700.63], [-368.92, -700.35], [-365.54, -703.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-465.77, -772.56], [-460.77, -777.96], [-461.96, -779.07], [-466.83, -773.82], [-472.89, -779.39], [-462.38, -790.73], [-455.85, -784.71], [-458.4, -781.95], [-457.04, -780.7], [-453.7, -784.29], [-449.32, -780.26], [-460.74, -767.93], [-465.77, -772.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[-380.77, -701.29], [-364.52, -718.7], [-361.22, -715.65], [-362.72, -714.04], [-359.79, -711.32], [-372.95, -697.22], [-373.8, -698.0], [-374.34, -697.41], [-376.14, -699.09], [-377.19, -697.97], [-380.77, -701.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-362.11, -767.06], [-340.64, -747.79], [-351.49, -735.79], [-372.95, -755.07], [-362.11, -767.06]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.654, "pop": 327, "jobs": 0}}, {"shape": {"outer": [[-387.78, -724.61], [-383.04, -720.23], [-386.36, -716.66], [-384.98, -715.38], [-392.5, -707.28], [-397.66, -712.03], [-393.73, -716.27], [-394.7, -717.16], [-387.78, -724.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-472.93, -809.41], [-467.8, -814.89], [-463.6, -810.99], [-463.32, -811.28], [-459.03, -807.29], [-459.31, -807.0], [-456.01, -803.92], [-461.15, -798.44], [-472.93, -809.41]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-386.85, -705.07], [-384.27, -707.9], [-385.5, -709.02], [-378.38, -716.82], [-373.0, -711.94], [-376.81, -707.77], [-376.39, -707.39], [-382.28, -700.93], [-386.85, -705.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-367.29, -687.05], [-358.71, -695.98], [-351.81, -689.42], [-355.29, -685.81], [-355.1, -685.63], [-359.92, -680.59], [-363.07, -683.6], [-363.36, -683.3], [-367.29, -687.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-419.42, -730.39], [-417.84, -732.12], [-418.2, -732.44], [-414.52, -736.49], [-415.0, -736.93], [-411.76, -740.5], [-411.28, -740.07], [-409.06, -742.51], [-408.7, -742.18], [-405.57, -745.65], [-400.64, -741.22], [-414.5, -725.95], [-419.42, -730.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-421.35, -735.44], [-407.81, -750.21], [-413.58, -755.45], [-428.78, -738.87], [-425.39, -735.77], [-423.72, -737.6], [-421.35, -735.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-450.41, -760.96], [-436.31, -776.1], [-429.2, -769.53], [-442.39, -755.35], [-444.42, -757.23], [-445.32, -756.26], [-450.41, -760.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-347.89, -692.89], [-342.01, -687.54], [-347.69, -681.36], [-347.14, -680.85], [-350.85, -676.8], [-351.4, -677.31], [-353.66, -674.85], [-359.3, -679.99], [-353.91, -685.87], [-354.14, -686.08], [-347.89, -692.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-384.6, -772.76], [-372.26, -786.3], [-365.53, -780.21], [-377.86, -766.67], [-380.93, -769.44], [-382.75, -767.43], [-385.44, -769.87], [-383.61, -771.87], [-384.6, -772.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-479.2, -798.67], [-479.71, -798.14], [-481.4, -799.73], [-486.41, -794.44], [-484.93, -793.05], [-486.06, -791.85], [-476.5, -782.87], [-469.86, -789.88], [-479.2, -798.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-370.54, -760.04], [-359.59, -772.41], [-365.96, -778.01], [-376.91, -765.64], [-374.37, -763.41], [-376.24, -761.3], [-373.62, -759.0], [-371.75, -761.11], [-370.54, -760.04]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-395.88, -730.11], [-390.36, -724.99], [-393.34, -721.79], [-393.06, -721.53], [-396.2, -718.17], [-396.49, -718.44], [-399.95, -714.72], [-405.78, -720.14], [-399.1, -727.28], [-398.8, -726.99], [-395.88, -730.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-401.52, -783.6], [-400.37, -784.82], [-400.84, -785.27], [-395.44, -791.07], [-394.97, -790.62], [-391.68, -794.16], [-392.27, -794.72], [-386.68, -800.73], [-386.08, -800.18], [-384.86, -801.48], [-380.33, -797.3], [-381.47, -796.08], [-379.66, -794.41], [-394.05, -778.96], [-394.61, -779.48], [-395.74, -778.25], [-401.52, -783.6]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.304, "pop": 152, "jobs": 0}}, {"shape": {"outer": [[-474.52, -807.08], [-471.06, -803.82], [-471.57, -803.28], [-466.63, -798.64], [-471.06, -793.97], [-472.12, -794.97], [-473.1, -793.93], [-480.43, -800.83], [-474.52, -807.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-407.93, -789.27], [-404.06, -793.57], [-405.67, -795.0], [-402.86, -798.12], [-403.11, -798.35], [-400.43, -801.32], [-399.94, -800.87], [-394.09, -807.39], [-388.71, -802.57], [-390.61, -800.47], [-390.53, -800.4], [-393.39, -797.22], [-392.83, -796.72], [-396.55, -792.59], [-397.11, -793.09], [-400.01, -789.86], [-400.7, -790.47], [-404.52, -786.22], [-407.93, -789.27]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-429.01, -741.48], [-412.53, -759.65], [-416.22, -762.97], [-417.62, -761.44], [-420.31, -763.86], [-426.18, -757.4], [-424.71, -756.09], [-426.74, -753.86], [-428.3, -755.26], [-434.25, -748.71], [-431.58, -746.31], [-432.84, -744.93], [-429.01, -741.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-436.62, -747.41], [-419.85, -765.74], [-424.5, -769.97], [-441.27, -751.64], [-436.62, -747.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-447.25, -650.72], [-438.71, -643.03], [-451.97, -628.42], [-460.51, -636.11], [-447.25, -650.72]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.145, "pop": 0, "jobs": 145}}, {"shape": {"outer": [[-392.21, -644.76], [-378.08, -660.49], [-371.08, -654.25], [-385.22, -638.51], [-392.21, -644.76]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-427.99, -680.78], [-422.4, -675.71], [-412.73, -686.29], [-418.32, -691.36], [-427.99, -680.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-515.8, -759.53], [-512.96, -756.97], [-512.52, -757.44], [-508.72, -754.03], [-509.16, -753.55], [-503.32, -748.29], [-508.27, -742.84], [-520.74, -754.08], [-515.8, -759.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-456.66, -705.71], [-446.55, -716.71], [-441.86, -712.44], [-447.69, -706.09], [-446.71, -705.19], [-450.99, -700.53], [-451.27, -700.79], [-452.05, -699.96], [-455.32, -702.94], [-454.55, -703.78], [-456.66, -705.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-477.18, -728.0], [-473.94, -725.19], [-474.86, -724.13], [-472.35, -721.96], [-471.42, -723.01], [-471.2, -722.82], [-461.26, -734.23], [-467.25, -739.39], [-477.18, -728.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-490.59, -739.59], [-485.22, -745.36], [-486.3, -746.37], [-480.4, -752.71], [-475.68, -748.36], [-484.8, -738.55], [-486.5, -740.11], [-488.65, -737.8], [-490.59, -739.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-419.48, -614.59], [-413.39, -609.13], [-417.44, -604.65], [-417.01, -604.26], [-420.44, -600.47], [-420.86, -600.86], [-423.47, -597.97], [-423.71, -598.19], [-424.65, -597.15], [-430.26, -602.18], [-429.32, -603.22], [-429.56, -603.45], [-419.48, -614.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-461.83, -713.67], [-458.39, -717.43], [-458.0, -717.08], [-451.81, -723.86], [-447.94, -720.35], [-452.42, -715.45], [-451.56, -714.68], [-456.72, -709.04], [-458.55, -710.69], [-459.61, -709.52], [-461.56, -711.29], [-460.5, -712.47], [-461.83, -713.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-519.33, -738.73], [-508.65, -729.17], [-521.96, -714.4], [-532.65, -723.95], [-519.33, -738.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.228, "pop": 114, "jobs": 0}}, {"shape": {"outer": [[-405.45, -659.46], [-395.06, -670.73], [-388.18, -664.42], [-398.57, -653.16], [-405.45, -659.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-558.01, -717.9], [-546.23, -730.64], [-540.95, -725.79], [-552.73, -713.05], [-558.01, -717.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-492.3, -728.18], [-475.88, -746.33], [-469.46, -740.57], [-476.56, -732.72], [-478.06, -734.07], [-480.13, -731.78], [-478.57, -730.37], [-484.48, -723.84], [-487.25, -726.33], [-488.59, -724.84], [-492.3, -728.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-539.31, -724.28], [-538.58, -723.61], [-537.48, -724.82], [-531.98, -719.87], [-536.21, -715.2], [-535.7, -714.74], [-538.96, -711.13], [-539.47, -711.6], [-543.05, -707.66], [-544.41, -708.89], [-545.5, -707.68], [-549.76, -711.51], [-548.67, -712.72], [-549.29, -713.28], [-539.31, -724.28]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-386.74, -664.51], [-381.58, -659.76], [-384.52, -656.58], [-384.16, -656.26], [-390.99, -648.9], [-396.83, -654.28], [-390.74, -660.84], [-390.41, -660.55], [-386.74, -664.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-434.61, -686.04], [-431.2, -689.68], [-430.54, -689.08], [-423.57, -696.52], [-418.39, -691.7], [-428.78, -680.6], [-434.61, -686.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-506.83, -757.54], [-506.18, -756.95], [-506.91, -756.14], [-504.79, -754.23], [-504.06, -755.04], [-500.45, -751.78], [-490.04, -763.23], [-496.43, -769.0], [-506.83, -757.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-401.6, -640.6], [-392.3, -632.41], [-397.38, -626.69], [-406.67, -634.89], [-401.6, -640.6]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-514.75, -764.56], [-510.96, -768.59], [-511.45, -769.06], [-507.56, -773.2], [-507.07, -772.74], [-504.31, -775.68], [-497.72, -769.54], [-508.16, -758.41], [-514.75, -764.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-421.21, -620.51], [-416.33, -626.01], [-413.5, -623.5], [-413.13, -623.91], [-409.77, -620.95], [-410.14, -620.54], [-407.01, -617.78], [-409.83, -614.6], [-408.4, -613.34], [-410.46, -611.03], [-421.21, -620.51]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-472.27, -720.25], [-461.09, -732.15], [-454.71, -726.21], [-465.89, -714.3], [-467.04, -715.38], [-467.77, -714.61], [-470.59, -717.24], [-469.86, -718.0], [-472.27, -720.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-447.19, -702.4], [-443.15, -698.66], [-443.95, -697.81], [-441.87, -695.88], [-441.06, -696.72], [-433.32, -704.97], [-433.53, -705.17], [-431.57, -707.27], [-436.9, -712.22], [-438.86, -710.12], [-439.46, -710.67], [-447.19, -702.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-407.18, -659.48], [-396.07, -671.66], [-396.31, -671.87], [-394.83, -673.49], [-400.99, -679.07], [-402.47, -677.45], [-402.98, -677.9], [-414.09, -665.74], [-412.45, -664.25], [-413.32, -663.31], [-408.99, -659.38], [-408.12, -660.33], [-407.18, -659.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-437.69, -609.27], [-427.51, -620.32], [-421.6, -614.92], [-424.49, -611.79], [-424.15, -611.47], [-428.05, -607.24], [-428.39, -607.55], [-431.79, -603.87], [-437.69, -609.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-441.62, -692.4], [-436.05, -687.34], [-425.73, -698.61], [-431.29, -703.66], [-434.44, -700.23], [-434.99, -700.73], [-438.9, -696.47], [-438.34, -695.97], [-441.62, -692.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-519.11, -699.99], [-507.42, -712.76], [-447.81, -658.57], [-459.5, -645.81], [-519.11, -699.99]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 976, "jobs": 0}}, {"shape": {"outer": [[-408.81, -635.16], [-398.96, -626.17], [-399.11, -626.0], [-398.12, -625.1], [-402.88, -619.93], [-403.86, -620.83], [-404.17, -620.5], [-407.16, -623.21], [-407.54, -622.79], [-411.52, -626.41], [-411.12, -626.85], [-414.03, -629.49], [-408.81, -635.16]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-421.71, -673.17], [-414.28, -666.37], [-402.87, -678.72], [-410.31, -685.53], [-421.71, -673.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-431.15, -643.37], [-424.48, -637.37], [-440.73, -619.46], [-447.39, -625.46], [-431.15, -643.37]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.139, "pop": 0, "jobs": 139}}, {"shape": {"outer": [[-500.31, -749.52], [-489.42, -761.36], [-483.48, -755.93], [-494.36, -744.09], [-500.31, -749.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-520.97, -753.28], [-510.0, -743.22], [-514.23, -738.63], [-525.2, -748.7], [-520.97, -753.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-298.17, -670.81], [-291.44, -664.73], [-293.1, -662.92], [-293.5, -663.27], [-296.15, -660.36], [-295.74, -660.01], [-297.57, -657.99], [-298.64, -658.96], [-299.02, -658.55], [-297.95, -657.58], [-299.89, -655.44], [-300.29, -655.8], [-302.47, -653.39], [-302.08, -653.03], [-303.99, -650.94], [-310.72, -657.02], [-304.62, -663.72], [-303.91, -663.07], [-303.5, -663.52], [-304.22, -664.17], [-298.17, -670.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-270.28, -673.23], [-258.88, -685.41], [-252.79, -679.76], [-264.19, -667.57], [-270.28, -673.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-247.68, -576.95], [-244.95, -579.98], [-245.31, -580.29], [-237.23, -589.27], [-230.52, -583.27], [-241.33, -571.27], [-241.6, -571.51], [-242.63, -570.36], [-248.52, -575.61], [-247.47, -576.76], [-247.68, -576.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-251.68, -620.72], [-247.56, -625.17], [-242.97, -620.95], [-247.1, -616.5], [-251.68, -620.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-214.06, -645.48], [-207.43, -639.54], [-220.36, -625.17], [-227.0, -631.11], [-214.06, -645.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-208.24, -637.38], [-207.81, -637.0], [-206.96, -637.95], [-201.39, -633.01], [-202.22, -632.08], [-201.88, -631.78], [-204.81, -628.48], [-204.4, -628.12], [-208.51, -623.5], [-208.93, -623.87], [-211.68, -620.78], [-213.73, -622.59], [-216.5, -619.48], [-219.84, -622.43], [-217.01, -625.61], [-217.53, -626.08], [-214.78, -629.17], [-215.21, -629.54], [-208.24, -637.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-221.65, -577.41], [-234.99, -562.84], [-228.17, -556.63], [-214.82, -571.19], [-221.65, -577.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-203.83, -558.39], [-201.5, -560.9], [-201.78, -561.16], [-197.73, -565.55], [-189.3, -557.82], [-195.68, -550.92], [-203.83, -558.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-305.24, -690.66], [-307.25, -688.51], [-308.98, -690.13], [-312.87, -685.98], [-297.06, -671.26], [-292.64, -675.97], [-293.68, -676.94], [-292.2, -678.51], [-305.24, -690.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-353.84, -576.44], [-345.42, -569.0], [-351.31, -562.38], [-316.43, -531.53], [-318.54, -529.16], [-314.72, -525.78], [-308.91, -532.3], [-307.36, -530.92], [-304.18, -534.49], [-304.57, -536.88], [-306.57, -537.8], [-307.15, -542.68], [-305.14, -545.24], [-305.66, -552.86], [-314.3, -552.28], [-315.23, -550.39], [-319.81, -550.26], [-321.4, -552.08], [-323.58, -552.22], [-325.91, -554.3], [-338.16, -565.3], [-333.7, -570.23], [-354.18, -588.62], [-372.48, -568.39], [-374.17, -569.91], [-377.13, -566.64], [-380.27, -569.46], [-381.75, -567.83], [-390.24, -575.49], [-385.87, -580.31], [-389.38, -583.46], [-383.66, -589.76], [-380.64, -587.03], [-376.83, -591.22], [-379.3, -593.45], [-373.88, -599.41], [-369.63, -595.57], [-367.38, -598.04], [-368.53, -599.08], [-366.38, -601.43], [-370.32, -605.01], [-364.4, -611.48], [-359.79, -607.29], [-357.03, -610.3], [-358.87, -611.98], [-355.44, -615.73], [-353.55, -614.0], [-350.87, -616.9], [-355.37, -621.01], [-349.85, -627.01], [-344.8, -622.41], [-341.95, -625.5], [-327.18, -612.01], [-329.75, -609.21], [-328.36, -607.94], [-347.41, -587.27], [-339.46, -579.98], [-336.29, -580.18], [-326.08, -570.95], [-308.93, -589.78], [-313.13, -593.58], [-308.09, -599.11], [-296.68, -588.78], [-287.43, -580.44], [-279.42, -573.19], [-258.2, -554.01], [-276.41, -534.01], [-267.46, -525.91], [-252.63, -542.22], [-247.8, -537.86], [-246.02, -539.84], [-239.97, -534.4], [-241.79, -532.39], [-238.97, -529.86], [-258.47, -508.25], [-260.71, -510.27], [-264.1, -506.5], [-260.57, -503.35], [-277.18, -484.87], [-280.67, -488.05], [-282.52, -486.04], [-287.01, -490.11], [-289.95, -486.91], [-295.1, -491.5], [-293.0, -493.85], [-295.27, -495.88], [-277.86, -515.31], [-278.84, -516.17], [-279.81, -515.1], [-284.53, -519.28], [-287.14, -516.35], [-286.17, -515.49], [-299.75, -500.22], [-298.32, -498.97], [-302.48, -494.3], [-304.38, -495.98], [-305.97, -494.2], [-308.21, -496.17], [-308.96, -495.32], [-313.55, -499.37], [-312.76, -500.26], [-315.51, -502.68], [-314.91, -503.36], [-327.66, -514.61], [-329.24, -512.83], [-336.75, -519.47], [-342.68, -524.71], [-341.3, -526.26], [-362.58, -545.07], [-373.32, -554.57], [-353.84, -576.44]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5202}}, {"shape": {"outer": [[-239.51, -569.75], [-234.31, -575.45], [-234.99, -576.05], [-231.01, -580.4], [-224.81, -574.77], [-233.97, -564.73], [-234.39, -565.12], [-235.19, -564.25], [-240.0, -568.62], [-239.21, -569.49], [-239.51, -569.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-232.45, -594.61], [-227.33, -600.17], [-216.8, -590.53], [-221.92, -584.98], [-232.45, -594.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-308.12, -632.97], [-301.81, -639.95], [-301.66, -639.82], [-298.9, -642.88], [-294.69, -639.1], [-297.5, -635.99], [-296.51, -635.11], [-302.78, -628.17], [-303.11, -628.48], [-304.04, -627.44], [-305.8, -629.01], [-304.86, -630.05], [-308.12, -632.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-222.23, -651.64], [-215.53, -645.58], [-225.99, -634.09], [-227.36, -635.33], [-228.75, -633.8], [-232.92, -637.57], [-231.52, -639.09], [-232.7, -640.15], [-222.23, -651.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-251.4, -603.51], [-253.55, -601.12], [-254.37, -601.86], [-258.1, -597.76], [-257.27, -597.01], [-262.95, -590.75], [-257.79, -586.11], [-248.5, -596.36], [-248.91, -596.73], [-246.65, -599.23], [-251.4, -603.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-270.45, -597.85], [-263.29, -605.99], [-262.66, -605.44], [-261.88, -606.33], [-256.63, -601.74], [-257.42, -600.86], [-256.32, -599.9], [-263.48, -591.76], [-264.01, -592.22], [-265.4, -590.64], [-271.4, -595.88], [-270.01, -597.46], [-270.45, -597.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-318.49, -678.3], [-313.43, -683.85], [-310.26, -681.0], [-309.88, -681.41], [-305.96, -677.87], [-306.35, -677.45], [-303.45, -674.84], [-308.52, -669.28], [-318.49, -678.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-242.04, -629.82], [-236.87, -635.42], [-226.5, -625.91], [-231.68, -620.3], [-242.04, -629.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-279.08, -645.91], [-284.6, -639.91], [-284.23, -639.56], [-292.08, -631.01], [-292.45, -631.36], [-296.24, -627.23], [-296.53, -627.5], [-300.73, -622.92], [-295.87, -618.5], [-295.57, -618.82], [-294.45, -617.8], [-294.75, -617.47], [-287.47, -610.83], [-287.1, -611.24], [-286.04, -610.28], [-286.41, -609.87], [-281.7, -605.58], [-273.69, -614.31], [-274.15, -614.73], [-266.4, -623.16], [-266.2, -622.98], [-259.03, -630.77], [-261.5, -633.03], [-260.76, -633.84], [-268.75, -641.13], [-269.49, -640.32], [-270.79, -641.5], [-270.14, -642.21], [-275.49, -647.08], [-277.71, -644.66], [-279.08, -645.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.549, "pop": 0, "jobs": 549}}, {"shape": {"outer": [[-318.36, -637.1], [-306.35, -650.53], [-312.51, -655.98], [-324.51, -642.56], [-318.36, -637.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-257.11, -584.23], [-247.18, -595.21], [-239.78, -588.58], [-249.71, -577.58], [-257.11, -584.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-194.05, -576.79], [-192.62, -578.37], [-193.72, -579.37], [-191.0, -582.35], [-189.9, -581.35], [-188.7, -582.66], [-176.68, -571.75], [-176.94, -571.47], [-175.67, -570.33], [-180.49, -565.05], [-181.75, -566.21], [-182.03, -565.9], [-194.05, -576.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-206.11, -560.12], [-198.48, -553.07], [-198.83, -552.7], [-195.71, -549.82], [-201.61, -543.49], [-212.35, -553.42], [-206.11, -560.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-255.52, -660.28], [-243.21, -673.59], [-239.13, -669.85], [-238.63, -670.39], [-236.41, -668.35], [-249.23, -654.49], [-255.52, -660.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-177.43, -668.43], [-169.45, -661.14], [-177.69, -652.17], [-178.6, -653.0], [-179.46, -652.07], [-186.53, -658.51], [-177.43, -668.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-207.73, -612.57], [-205.71, -614.8], [-205.09, -614.25], [-197.2, -622.99], [-196.13, -622.99], [-195.24, -623.96], [-195.22, -625.29], [-196.32, -626.28], [-197.33, -626.27], [-201.69, -630.18], [-208.95, -622.15], [-208.15, -621.42], [-210.81, -618.46], [-209.86, -617.61], [-211.42, -615.89], [-207.73, -612.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-325.9, -669.78], [-322.29, -673.78], [-322.32, -674.53], [-321.25, -675.71], [-319.57, -675.74], [-318.45, -674.74], [-318.48, -673.87], [-309.11, -665.46], [-314.47, -659.53], [-325.9, -669.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-250.34, -647.34], [-234.99, -664.42], [-231.05, -660.91], [-246.4, -643.83], [-250.34, -647.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-221.06, -547.22], [-214.87, -553.97], [-203.75, -543.87], [-203.58, -544.05], [-200.97, -541.66], [-205.72, -536.46], [-207.71, -538.26], [-208.8, -537.07], [-209.91, -537.09], [-221.06, -547.22]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-260.95, -666.41], [-249.99, -678.22], [-245.39, -674.0], [-256.35, -662.17], [-260.95, -666.41]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-230.87, -619.72], [-225.79, -625.26], [-214.11, -614.62], [-219.18, -609.09], [-230.87, -619.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-338.12, -657.97], [-334.37, -662.12], [-335.0, -662.68], [-329.15, -669.15], [-323.19, -663.79], [-327.85, -658.64], [-328.37, -659.1], [-329.33, -658.03], [-328.23, -657.04], [-330.66, -654.36], [-331.24, -654.88], [-332.78, -653.17], [-333.23, -653.57], [-334.61, -652.05], [-339.29, -656.24], [-337.91, -657.77], [-338.12, -657.97]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-299.19, -690.72], [-293.85, -696.46], [-293.21, -695.88], [-290.9, -698.36], [-291.53, -698.95], [-283.71, -707.34], [-281.94, -705.7], [-280.77, -706.97], [-269.94, -696.95], [-271.09, -695.72], [-269.39, -694.14], [-285.96, -676.36], [-290.79, -680.82], [-290.46, -681.16], [-291.84, -682.44], [-292.16, -682.09], [-297.92, -687.42], [-296.86, -688.56], [-299.19, -690.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.392, "pop": 196, "jobs": 0}}, {"shape": {"outer": [[-276.32, -681.37], [-266.72, -691.69], [-260.1, -685.56], [-269.7, -675.25], [-276.32, -681.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-199.11, -567.91], [-193.56, -573.92], [-185.76, -566.78], [-186.18, -566.33], [-183.34, -563.73], [-188.46, -558.17], [-199.11, -567.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-260.0, -655.11], [-256.04, -651.28], [-264.26, -642.83], [-268.23, -646.67], [-260.0, -655.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-329.13, -653.7], [-328.64, -653.26], [-331.24, -650.37], [-328.52, -647.93], [-329.46, -646.88], [-326.1, -643.87], [-314.77, -656.46], [-321.35, -662.35], [-329.13, -653.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-220.38, -583.47], [-215.26, -589.12], [-199.91, -575.26], [-205.04, -569.62], [-220.38, -583.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-223.88, -556.14], [-221.06, -559.21], [-222.21, -560.26], [-217.96, -564.87], [-216.72, -563.72], [-214.58, -566.04], [-214.04, -565.54], [-213.41, -566.23], [-209.75, -562.89], [-210.39, -562.2], [-209.57, -561.45], [-218.77, -551.46], [-223.88, -556.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-277.9, -605.07], [-267.38, -616.65], [-261.3, -611.17], [-271.99, -599.4], [-275.72, -602.76], [-275.55, -602.95], [-277.9, -605.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-190.16, -599.6], [-179.74, -610.98], [-180.77, -611.92], [-178.58, -614.3], [-182.9, -618.24], [-185.19, -615.74], [-186.12, -616.6], [-196.45, -605.32], [-194.58, -603.62], [-196.15, -601.9], [-193.24, -599.25], [-191.67, -600.97], [-190.16, -599.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-184.83, -587.5], [-179.57, -593.27], [-179.99, -593.64], [-173.62, -600.64], [-168.22, -595.76], [-170.27, -593.51], [-170.02, -593.28], [-173.77, -589.17], [-173.51, -588.94], [-179.35, -582.54], [-184.83, -587.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-162.6, -598.56], [-164.19, -596.85], [-164.4, -597.03], [-167.66, -593.52], [-168.17, -593.99], [-172.79, -588.99], [-172.28, -588.53], [-174.02, -586.64], [-167.83, -580.96], [-164.72, -584.32], [-164.16, -583.81], [-160.17, -588.13], [-160.86, -588.76], [-156.76, -593.2], [-162.6, -598.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-202.75, -613.24], [-192.94, -623.93], [-186.25, -617.83], [-189.46, -614.34], [-189.01, -613.93], [-192.77, -609.83], [-193.21, -610.24], [-196.07, -607.14], [-202.75, -613.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-188.6, -598.12], [-186.7, -600.17], [-186.93, -600.37], [-176.2, -611.91], [-171.3, -607.38], [-173.12, -605.43], [-171.34, -603.78], [-180.09, -594.36], [-180.39, -594.64], [-182.44, -592.45], [-183.0, -592.97], [-188.6, -598.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-133.0, -696.3], [-126.49, -703.41], [-123.58, -700.77], [-122.32, -702.14], [-118.0, -698.22], [-119.26, -696.84], [-117.68, -695.4], [-116.43, -696.76], [-112.68, -693.36], [-113.97, -691.94], [-110.05, -688.39], [-108.85, -689.71], [-105.18, -686.39], [-106.44, -685.0], [-105.06, -683.74], [-103.73, -685.18], [-99.99, -681.8], [-101.33, -680.33], [-99.96, -679.09], [-98.78, -680.38], [-95.13, -677.06], [-96.37, -675.69], [-95.09, -674.54], [-93.87, -675.87], [-89.56, -671.96], [-90.84, -670.56], [-87.47, -667.5], [-102.63, -650.91], [-106.98, -654.84], [-105.68, -656.25], [-110.33, -660.47], [-111.53, -659.15], [-115.24, -662.52], [-113.98, -663.9], [-115.19, -664.99], [-116.38, -663.69], [-120.14, -667.08], [-118.88, -668.46], [-120.45, -669.88], [-121.64, -668.57], [-125.3, -671.9], [-124.09, -673.24], [-125.52, -674.54], [-126.78, -673.16], [-130.4, -676.45], [-129.06, -677.93], [-131.9, -680.51], [-128.7, -684.0], [-132.18, -687.15], [-129.76, -689.8], [-132.42, -692.22], [-130.65, -694.17], [-133.0, -696.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.89, "pop": 445, "jobs": 0}}, {"shape": {"outer": [[-129.96, -640.55], [-124.0, -647.17], [-114.15, -638.36], [-120.11, -631.75], [-123.6, -634.86], [-124.43, -633.92], [-127.07, -636.28], [-126.22, -637.21], [-129.96, -640.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-117.68, -467.59], [-113.08, -472.59], [-111.86, -471.44], [-95.65, -488.91], [-91.43, -493.46], [-85.25, -500.12], [-81.0, -496.39], [-66.35, -513.2], [-122.2, -563.77], [-117.68, -467.59]], "holes": []}, "height": 31.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6466}}, {"shape": {"outer": [[-92.76, -485.85], [-115.62, -463.07], [-115.49, -458.19], [-91.47, -437.01], [-91.38, -433.91], [-85.74, -428.46], [-83.08, -428.84], [-59.81, -407.92], [-54.93, -408.81], [-32.93, -431.27], [-45.37, -442.6], [-56.5, -452.74], [-61.28, -457.1], [-92.76, -485.85]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4044}}, {"shape": {"outer": [[-44.57, -470.67], [-35.17, -481.14], [-28.58, -475.25], [-34.12, -469.08], [-37.99, -464.78], [-44.57, -470.67]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-20.4, -469.72], [-5.98, -456.57], [-29.46, -431.03], [-43.87, -444.18], [-26.76, -462.8], [-20.4, -469.72]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 0.758, "pop": 0, "jobs": 758}}, {"shape": {"outer": [[-74.44, -575.65], [-75.16, -576.18], [-78.24, -578.48], [-52.53, -608.28], [-43.32, -599.73], [-69.17, -570.68], [-72.53, -573.96], [-73.48, -572.63], [-75.39, -574.31], [-74.44, -575.65]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.674, "pop": 337, "jobs": 0}}, {"shape": {"outer": [[-195.64, -663.99], [-190.34, -669.87], [-190.54, -670.06], [-186.77, -674.24], [-186.57, -674.06], [-183.12, -677.88], [-176.49, -671.95], [-189.01, -658.06], [-195.64, -663.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-11.04, -534.03], [-8.21, -537.15], [-7.34, -536.38], [4.88, -549.84], [8.03, -547.01], [9.14, -548.23], [20.42, -538.07], [20.87, -538.56], [27.14, -532.91], [25.59, -531.21], [28.18, -528.87], [18.39, -518.08], [16.28, -515.74], [17.27, -514.85], [15.11, -512.47], [14.18, -511.45], [8.92, -516.18], [10.31, -517.71], [-4.97, -531.46], [-6.42, -529.87], [-9.18, -532.36], [-11.04, -534.03]], "holes": []}, "height": 31.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1797}}, {"shape": {"outer": [[-160.05, -660.6], [-156.3, -657.13], [-154.21, -659.36], [-150.33, -655.77], [-152.94, -652.95], [-150.26, -650.47], [-153.16, -647.38], [-154.38, -648.51], [-163.74, -638.48], [-173.02, -647.06], [-164.83, -655.85], [-164.64, -655.67], [-160.05, -660.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.206, "pop": 103, "jobs": 0}}, {"shape": {"outer": [[-221.86, -756.45], [-217.03, -761.57], [-208.07, -753.17], [-212.89, -748.06], [-221.86, -756.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-230.62, -713.65], [-197.83, -683.64], [-205.6, -675.22], [-238.39, -705.23], [-230.62, -713.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.408, "pop": 204, "jobs": 0}}, {"shape": {"outer": [[-210.95, -771.11], [-205.36, -777.06], [-191.88, -764.53], [-197.46, -758.57], [-210.95, -771.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-170.86, -683.63], [-157.95, -684.15], [-157.9, -682.89], [-154.97, -683.01], [-154.56, -672.99], [-164.4, -672.59], [-164.45, -673.78], [-166.9, -673.67], [-167.0, -675.98], [-170.55, -675.84], [-170.86, -683.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-217.18, -786.59], [-212.24, -782.0], [-217.19, -776.7], [-222.14, -781.29], [-217.18, -786.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-202.16, -673.04], [-191.07, -685.01], [-185.81, -680.19], [-188.47, -677.32], [-187.14, -676.1], [-195.23, -667.38], [-198.23, -670.14], [-198.59, -669.76], [-202.16, -673.04]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-171.3, -738.33], [-193.72, -737.4], [-193.57, -732.06], [-196.21, -728.94], [-201.57, -728.9], [-203.26, -726.89], [-202.26, -707.31], [-200.46, -705.3], [-195.22, -705.33], [-191.98, -703.14], [-191.5, -697.6], [-169.77, -698.22], [-169.69, -703.02], [-167.26, -705.92], [-164.97, -710.12], [-163.89, -714.4], [-163.81, -719.19], [-164.5, -724.5], [-166.59, -728.58], [-170.99, -733.58], [-171.3, -738.33]], "holes": []}, "height": 45.4, "data": {"type": "residential", "density": 1.0, "pop": 2897, "jobs": 0}}, {"shape": {"outer": [[-232.98, -766.51], [-228.23, -771.63], [-220.67, -764.64], [-225.42, -759.54], [-232.98, -766.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-251.31, -746.99], [-234.98, -764.76], [-215.89, -747.34], [-232.22, -729.57], [-241.74, -738.03], [-251.31, -746.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.5, "pop": 250, "jobs": 0}}, {"shape": {"outer": [[-571.54, -575.27], [-565.73, -581.54], [-566.64, -582.38], [-552.1, -598.08], [-554.24, -600.05], [-550.81, -603.75], [-548.39, -601.53], [-545.19, -604.98], [-527.81, -588.98], [-554.81, -559.87], [-571.54, -575.27]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 668, "jobs": 0}}, {"shape": {"outer": [[-637.04, -628.56], [-634.17, -631.79], [-634.62, -632.19], [-630.94, -636.33], [-630.49, -635.93], [-627.02, -639.83], [-626.82, -639.65], [-622.79, -644.19], [-617.58, -639.59], [-625.21, -631.01], [-624.77, -630.62], [-628.41, -626.52], [-628.85, -626.91], [-631.63, -623.78], [-637.04, -628.56]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-472.65, -567.42], [-467.04, -573.45], [-456.46, -563.69], [-457.44, -562.63], [-455.89, -561.19], [-460.24, -556.5], [-461.8, -557.94], [-462.06, -557.66], [-472.65, -567.42]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-508.8, -517.06], [-502.58, -523.63], [-502.18, -523.25], [-499.44, -526.15], [-496.18, -523.09], [-495.18, -524.13], [-492.12, -521.25], [-502.92, -509.84], [-507.47, -514.12], [-506.62, -515.01], [-508.8, -517.06]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-518.52, -523.43], [-517.63, -524.4], [-516.89, -523.73], [-504.22, -537.73], [-510.71, -543.57], [-520.57, -532.68], [-520.29, -532.42], [-523.2, -529.2], [-522.41, -528.48], [-523.18, -527.62], [-518.52, -523.43]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-555.29, -683.48], [-546.67, -675.67], [-566.14, -654.33], [-573.61, -661.11], [-571.77, -663.12], [-572.92, -664.16], [-555.29, -683.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.266, "pop": 133, "jobs": 0}}, {"shape": {"outer": [[-487.45, -548.3], [-486.85, -548.95], [-488.03, -550.03], [-484.83, -553.53], [-483.65, -552.46], [-483.34, -552.79], [-480.48, -550.2], [-480.23, -550.49], [-476.84, -547.39], [-477.09, -547.12], [-473.38, -543.76], [-477.49, -539.27], [-481.98, -543.34], [-482.32, -542.97], [-484.84, -545.27], [-484.5, -545.63], [-487.45, -548.3]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-490.03, -584.26], [-484.5, -590.36], [-484.28, -590.16], [-481.47, -593.25], [-479.9, -591.84], [-479.1, -592.72], [-480.56, -594.04], [-476.7, -598.29], [-475.97, -597.65], [-472.83, -601.1], [-470.78, -599.25], [-470.04, -600.06], [-465.81, -596.23], [-482.68, -577.65], [-490.03, -584.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[-541.65, -671.39], [-536.87, -666.97], [-538.32, -665.4], [-538.12, -665.22], [-548.65, -653.88], [-553.78, -658.62], [-543.23, -669.98], [-543.08, -669.85], [-541.65, -671.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-493.32, -545.48], [-488.98, -541.62], [-486.93, -543.93], [-479.76, -537.56], [-482.66, -534.31], [-481.31, -533.12], [-485.2, -528.75], [-493.87, -536.44], [-492.8, -537.65], [-496.99, -541.36], [-493.32, -545.48]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-573.15, -637.86], [-568.0, -643.53], [-562.88, -638.91], [-568.02, -633.24], [-573.15, -637.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-571.42, -703.92], [-565.97, -698.96], [-567.18, -697.65], [-562.25, -693.15], [-561.76, -693.68], [-558.22, -690.44], [-558.7, -689.92], [-558.32, -689.57], [-574.56, -671.88], [-588.3, -684.41], [-584.97, -688.04], [-584.47, -687.6], [-575.53, -697.34], [-576.58, -698.29], [-571.42, -703.92]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.482, "pop": 241, "jobs": 0}}, {"shape": {"outer": [[-517.83, -520.15], [-513.46, -516.02], [-510.51, -519.1], [-509.72, -518.35], [-505.34, -522.94], [-506.14, -523.7], [-503.1, -526.88], [-507.47, -531.02], [-510.38, -527.98], [-510.91, -528.48], [-515.34, -523.83], [-514.8, -523.33], [-517.83, -520.15]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-521.2, -650.75], [-519.43, -649.14], [-519.16, -649.44], [-514.11, -644.82], [-514.39, -644.51], [-511.49, -641.85], [-516.79, -636.1], [-506.88, -627.02], [-501.6, -632.75], [-498.79, -630.17], [-498.46, -630.53], [-493.37, -625.87], [-493.7, -625.52], [-491.97, -623.93], [-500.91, -614.23], [-501.79, -615.04], [-507.64, -608.7], [-506.64, -607.79], [-515.74, -597.92], [-525.38, -606.76], [-521.58, -610.9], [-531.61, -620.08], [-535.26, -616.14], [-544.86, -624.94], [-536.04, -634.49], [-535.03, -633.56], [-529.04, -640.06], [-530.13, -641.07], [-521.2, -650.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.958, "pop": 479, "jobs": 0}}, {"shape": {"outer": [[-604.41, -665.78], [-598.7, -671.92], [-585.47, -659.69], [-591.18, -653.55], [-604.41, -665.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-554.27, -474.15], [-544.42, -484.6], [-535.44, -476.2], [-541.06, -470.24], [-540.62, -469.83], [-542.64, -467.68], [-543.07, -468.09], [-545.29, -465.75], [-554.27, -474.15]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-630.15, -621.53], [-620.15, -632.63], [-614.28, -627.38], [-616.65, -624.75], [-616.34, -624.47], [-620.25, -620.13], [-620.56, -620.41], [-624.28, -616.28], [-630.15, -621.53]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-617.88, -650.56], [-613.32, -655.65], [-598.53, -642.5], [-603.69, -636.74], [-605.37, -638.24], [-605.56, -638.02], [-614.05, -645.57], [-613.26, -646.46], [-617.88, -650.56]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-610.54, -655.68], [-610.31, -655.93], [-611.49, -657.0], [-606.22, -662.7], [-605.05, -661.62], [-604.86, -661.82], [-592.99, -650.92], [-598.67, -644.77], [-610.54, -655.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-612.0, -625.12], [-606.63, -620.3], [-615.49, -610.52], [-617.41, -612.25], [-617.65, -611.99], [-620.74, -614.77], [-617.68, -618.15], [-618.2, -618.61], [-614.94, -622.19], [-614.78, -622.05], [-612.0, -625.12]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-540.05, -541.44], [-529.17, -553.41], [-527.61, -552.01], [-526.4, -553.34], [-520.05, -547.61], [-519.06, -548.71], [-514.55, -544.64], [-525.11, -533.03], [-530.94, -538.28], [-533.46, -535.5], [-540.05, -541.44]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.194, "pop": 97, "jobs": 0}}, {"shape": {"outer": [[-492.92, -600.15], [-481.85, -612.02], [-481.5, -611.7], [-480.14, -613.15], [-475.48, -608.83], [-476.83, -607.38], [-475.9, -606.52], [-486.97, -594.64], [-487.33, -594.99], [-489.7, -592.45], [-495.11, -597.47], [-492.76, -600.0], [-492.92, -600.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-546.01, -552.49], [-533.82, -565.43], [-538.07, -569.41], [-551.33, -555.34], [-549.63, -553.76], [-548.56, -554.89], [-546.01, -552.49]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-534.27, -563.76], [-529.57, -559.61], [-532.94, -555.83], [-531.6, -554.64], [-536.07, -549.62], [-536.46, -549.95], [-540.23, -545.73], [-540.79, -546.23], [-542.48, -544.35], [-547.57, -548.86], [-534.27, -563.76]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-481.78, -559.8], [-478.92, -557.13], [-480.13, -555.84], [-470.95, -547.28], [-466.51, -552.0], [-467.26, -552.69], [-464.46, -555.68], [-468.36, -559.32], [-471.31, -556.17], [-478.72, -563.07], [-481.78, -559.8]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-464.78, -584.02], [-455.92, -593.77], [-441.26, -580.56], [-450.12, -570.81], [-464.78, -584.02]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-501.31, -606.48], [-489.14, -619.58], [-486.26, -616.93], [-484.88, -618.41], [-480.79, -614.64], [-494.34, -600.06], [-494.7, -600.39], [-495.34, -599.69], [-497.24, -601.45], [-496.6, -602.14], [-501.31, -606.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-427.02, -545.78], [-434.86, -552.74], [-422.11, -566.99], [-414.27, -560.03], [-427.02, -545.78]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.056, "pop": 0, "jobs": 56}}, {"shape": {"outer": [[-610.76, -608.73], [-599.51, -621.02], [-576.22, -599.87], [-587.5, -587.54], [-587.95, -587.95], [-590.81, -584.83], [-594.91, -588.56], [-592.02, -591.7], [-610.76, -608.73]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 0.767, "pop": 0, "jobs": 767}}, {"shape": {"outer": [[-596.07, -674.06], [-589.37, -681.46], [-579.02, -672.16], [-585.13, -665.4], [-591.73, -671.34], [-592.31, -670.69], [-596.07, -674.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-502.89, -542.5], [-496.14, -549.81], [-498.08, -551.59], [-495.6, -554.27], [-498.94, -557.33], [-501.42, -554.65], [-501.73, -554.93], [-508.48, -547.62], [-508.35, -547.5], [-509.42, -546.34], [-505.23, -542.52], [-504.17, -543.67], [-502.89, -542.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[13.37, -441.86], [17.93, -437.82], [18.75, -437.01], [17.15, -435.24], [18.67, -433.88], [17.91, -433.05], [18.85, -432.2], [21.66, -429.67], [20.99, -428.93], [24.56, -425.7], [50.91, -402.1], [52.93, -400.25], [62.54, -391.46], [64.13, -390.02], [62.87, -388.64], [72.38, -380.06], [60.59, -366.92], [58.54, -364.69], [60.26, -363.11], [50.74, -352.8], [44.05, -345.37], [42.82, -346.48], [41.43, -344.94], [40.6, -345.69], [29.39, -333.35], [26.49, -330.16], [13.44, -341.93], [11.62, -343.58], [-27.95, -379.29], [-29.6, -377.47], [-32.11, -379.74], [-33.62, -378.07], [-38.52, -382.49], [-40.37, -384.16], [-16.16, -410.81], [-18.2, -412.65], [-12.79, -418.62], [-10.02, -416.12], [11.97, -440.32], [13.37, -441.86]], "holes": []}, "height": 28.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 13709}}, {"shape": {"outer": [[-318.07, -338.11], [-293.17, -365.54], [-279.64, -352.73], [-271.26, -361.84], [-249.6, -341.46], [-262.61, -326.91], [-261.53, -325.87], [-270.77, -315.95], [-275.41, -313.25], [-279.33, -311.57], [-282.29, -310.66], [-285.3, -310.53], [-288.83, -313.84], [-290.03, -312.85], [-289.53, -312.36], [-290.78, -311.19], [-313.79, -334.19], [-318.07, -338.11]], "holes": []}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3620}}, {"shape": {"outer": [[-328.31, -403.77], [-353.66, -374.29], [-357.03, -377.32], [-358.79, -375.38], [-404.08, -415.88], [-394.32, -426.73], [-392.91, -425.47], [-389.37, -429.39], [-360.58, -401.47], [-344.55, -418.69], [-328.31, -403.77]], "holes": []}, "height": 40.5, "data": {"type": "residential", "density": 1.0, "pop": 3502, "jobs": 0}}, {"shape": {"outer": [[-431.09, -378.33], [-428.19, -378.36], [-417.5, -368.52], [-417.54, -367.03], [-425.12, -358.56], [-421.41, -355.44], [-419.25, -355.59], [-408.13, -345.59], [-408.03, -342.43], [-408.97, -341.23], [-418.96, -330.58], [-425.85, -322.74], [-423.76, -320.78], [-423.54, -314.35], [-425.86, -312.0], [-418.93, -305.39], [-418.86, -302.96], [-424.78, -295.44], [-438.01, -280.36], [-440.84, -279.96], [-475.38, -311.25], [-482.91, -318.07], [-483.01, -321.55], [-463.38, -342.98], [-460.42, -343.43], [-452.69, -351.66], [-452.31, -354.8], [-446.68, -361.05], [-431.09, -378.33]], "holes": []}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6302}}, {"shape": {"outer": [[-405.76, -338.24], [-398.91, -345.55], [-399.83, -346.41], [-396.2, -350.28], [-394.24, -348.45], [-393.36, -349.39], [-386.45, -342.94], [-387.37, -341.95], [-385.31, -340.03], [-389.1, -335.99], [-391.29, -338.03], [-397.66, -331.24], [-394.56, -328.33], [-404.81, -317.4], [-418.96, -330.58], [-408.97, -341.23], [-405.76, -338.24]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 0.677, "pop": 0, "jobs": 677}}, {"shape": {"outer": [[-427.24, -540.89], [-429.65, -543.14], [-432.02, -540.61], [-436.69, -544.96], [-446.32, -534.68], [-440.97, -529.7], [-443.32, -527.21], [-448.61, -532.13], [-486.79, -491.38], [-484.66, -489.41], [-483.65, -490.48], [-478.74, -485.92], [-427.24, -540.89]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.954, "pop": 477, "jobs": 0}}, {"shape": {"outer": [[-594.6, -422.06], [-588.01, -416.04], [-599.67, -403.37], [-605.77, -408.94], [-602.84, -412.14], [-603.31, -412.58], [-594.6, -422.06]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-680.68, -521.99], [-675.37, -517.13], [-676.76, -515.62], [-674.29, -513.36], [-673.9, -513.78], [-668.54, -508.89], [-659.68, -518.5], [-665.7, -524.01], [-666.39, -523.24], [-667.82, -524.56], [-666.32, -526.18], [-672.02, -531.39], [-680.68, -521.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[-688.56, -570.71], [-683.19, -576.68], [-680.23, -574.04], [-679.82, -574.5], [-676.52, -571.55], [-676.77, -571.27], [-673.18, -568.07], [-678.71, -561.93], [-688.56, -570.71]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-669.21, -561.27], [-652.54, -579.7], [-642.51, -570.69], [-660.54, -550.75], [-664.16, -553.99], [-662.79, -555.51], [-669.21, -561.27]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.242, "pop": 121, "jobs": 0}}, {"shape": {"outer": [[-576.74, -463.3], [-570.58, -469.93], [-555.77, -456.28], [-561.93, -449.65], [-576.74, -463.3]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-731.85, -525.35], [-727.51, -530.1], [-727.84, -530.4], [-724.34, -534.24], [-724.01, -533.94], [-719.3, -539.08], [-713.06, -533.43], [-725.6, -519.69], [-731.85, -525.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-601.08, -430.43], [-596.46, -435.56], [-590.47, -430.21], [-589.88, -430.86], [-584.93, -426.44], [-585.53, -425.78], [-582.58, -423.14], [-587.21, -418.01], [-601.08, -430.43]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-582.63, -451.93], [-579.75, -449.42], [-579.16, -450.09], [-573.32, -444.98], [-573.91, -444.31], [-569.81, -440.71], [-570.54, -439.89], [-569.65, -439.12], [-574.95, -433.11], [-588.65, -445.1], [-582.63, -451.93]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-626.86, -431.51], [-617.44, -441.6], [-616.94, -441.14], [-614.15, -444.13], [-610.31, -440.57], [-612.21, -438.54], [-611.23, -437.64], [-612.12, -436.69], [-611.91, -436.5], [-615.92, -432.2], [-616.13, -432.39], [-616.78, -432.98], [-622.19, -427.18], [-622.69, -427.65], [-623.71, -426.56], [-627.3, -429.87], [-626.28, -430.98], [-626.86, -431.51]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-668.3, -596.49], [-666.89, -595.19], [-665.93, -596.24], [-661.25, -591.95], [-662.8, -590.28], [-662.08, -589.62], [-671.96, -578.92], [-676.96, -583.5], [-676.3, -584.21], [-678.1, -585.86], [-668.3, -596.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-608.09, -437.64], [-602.17, -432.36], [-613.64, -419.6], [-617.83, -423.34], [-615.45, -426.0], [-617.18, -427.54], [-608.09, -437.64]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-708.17, -507.05], [-706.12, -505.19], [-707.03, -504.2], [-702.82, -500.4], [-692.84, -511.37], [-694.96, -513.29], [-696.07, -512.08], [-700.2, -515.81], [-708.17, -507.05]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-697.19, -560.88], [-691.31, -567.35], [-682.91, -559.76], [-688.79, -553.29], [-697.19, -560.88]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-564.93, -483.02], [-556.68, -492.14], [-552.8, -488.65], [-555.69, -485.45], [-555.08, -484.9], [-557.03, -482.74], [-555.93, -481.75], [-559.33, -477.99], [-564.93, -483.02]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-668.66, -580.85], [-667.04, -579.41], [-669.68, -576.48], [-668.46, -575.39], [-670.91, -572.66], [-666.69, -568.91], [-653.72, -583.36], [-660.76, -589.65], [-668.66, -580.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-713.51, -544.79], [-709.33, -549.51], [-699.44, -540.81], [-702.62, -537.22], [-704.45, -538.83], [-705.45, -537.7], [-713.51, -544.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-612.19, -418.21], [-602.4, -428.69], [-596.64, -423.35], [-600.69, -419.01], [-601.19, -419.47], [-606.93, -413.32], [-612.19, -418.21]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-569.56, -481.69], [-575.41, -486.94], [-565.49, -497.9], [-559.64, -492.63], [-569.56, -481.69]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-594.66, -466.0], [-593.06, -467.7], [-593.61, -468.22], [-587.7, -474.55], [-587.41, -474.28], [-585.43, -476.4], [-579.46, -470.87], [-587.26, -462.52], [-589.02, -464.15], [-590.71, -462.33], [-594.66, -466.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-717.62, -512.82], [-706.24, -524.9], [-704.5, -523.28], [-702.64, -525.24], [-699.51, -522.31], [-701.06, -520.66], [-700.08, -519.76], [-704.45, -515.12], [-703.89, -514.6], [-707.61, -510.66], [-708.04, -511.06], [-711.02, -507.91], [-714.52, -511.19], [-715.16, -510.51], [-717.62, -512.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-574.46, -457.72], [-563.99, -448.0], [-569.08, -442.54], [-572.3, -445.54], [-572.74, -445.07], [-576.43, -448.49], [-575.99, -448.96], [-579.55, -452.27], [-578.25, -453.66], [-579.66, -454.97], [-577.66, -457.1], [-576.25, -455.8], [-574.46, -457.72]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-563.94, -466.29], [-558.6, -471.95], [-548.87, -462.84], [-554.21, -457.18], [-563.94, -466.29]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-702.18, -499.19], [-690.49, -512.11], [-684.66, -506.87], [-696.35, -493.96], [-702.18, -499.19]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-655.23, -475.14], [-648.68, -469.26], [-658.0, -458.95], [-659.52, -460.32], [-658.69, -461.24], [-663.72, -465.75], [-655.23, -475.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-656.68, -459.51], [-650.08, -466.64], [-649.37, -466.0], [-646.17, -469.46], [-641.33, -465.03], [-644.52, -461.58], [-643.8, -460.92], [-647.83, -456.56], [-648.55, -457.22], [-651.85, -453.66], [-655.87, -457.34], [-655.16, -458.11], [-656.68, -459.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-649.37, -450.55], [-648.22, -451.78], [-648.46, -452.01], [-639.55, -461.64], [-634.42, -456.93], [-636.46, -454.73], [-635.66, -454.01], [-640.02, -449.28], [-640.81, -450.01], [-643.36, -447.25], [-643.52, -447.39], [-644.62, -446.19], [-649.37, -450.55]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-707.11, -551.6], [-703.65, -555.62], [-702.23, -554.42], [-697.96, -559.39], [-687.72, -550.65], [-691.6, -546.13], [-694.96, -548.99], [-698.8, -544.51], [-707.11, -551.6]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-724.55, -519.29], [-720.72, -523.43], [-720.87, -523.57], [-716.9, -527.87], [-716.75, -527.73], [-712.76, -532.03], [-706.6, -526.37], [-718.38, -513.62], [-724.55, -519.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-507.63, -400.7], [-507.9, -409.43], [-508.05, -414.19], [-508.42, -426.24], [-491.36, -427.51], [-489.76, -427.63], [-486.51, -427.87], [-485.92, -428.6], [-485.13, -429.11], [-483.75, -429.47], [-482.22, -429.34], [-480.65, -428.68], [-480.09, -428.14], [-479.75, -427.12], [-479.45, -426.18], [-439.03, -389.03], [-429.37, -380.13], [-431.09, -378.33], [-446.68, -361.05], [-448.15, -362.32], [-491.25, -401.46], [-493.72, -401.34], [-507.63, -400.7]], "holes": []}, "height": 49.0, "data": {"type": "residential", "density": 1.0, "pop": 5566, "jobs": 0}}, {"shape": {"outer": [[613.24, 479.3], [617.28, 474.94], [609.33, 467.65], [611.61, 465.18], [622.02, 474.72], [634.89, 486.53], [628.58, 493.36], [613.24, 479.3]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.147, "pop": 0, "jobs": 147}}, {"shape": {"outer": [[1986.61, 2378.8], [2006.06, 2374.66], [2012.77, 2406.09], [1993.29, 2410.23], [1990.06, 2395.09], [1988.36, 2386.97], [1986.61, 2378.8]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.409, "pop": 0, "jobs": 409}}, {"shape": {"outer": [[1986.39, 2439.42], [2000.5, 2430.24], [2002.26, 2432.94], [2007.1, 2440.33], [2008.67, 2442.74], [1994.57, 2451.92], [1992.85, 2449.29], [1988.29, 2442.33], [1986.39, 2439.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-53.12, -257.48], [-25.83, -287.58], [-34.42, -295.31], [-61.67, -264.97], [-53.12, -257.48]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.299, "pop": 0, "jobs": 299}}, {"shape": {"outer": [[-353.89, 178.66], [-322.78, 207.04], [-333.93, 219.18], [-361.51, 194.01], [-360.99, 193.44], [-364.52, 190.22], [-363.35, 188.95], [-365.02, 187.51], [-366.06, 185.57], [-366.34, 183.39], [-365.81, 181.25], [-364.56, 179.44], [-362.83, 178.25], [-360.81, 177.71], [-358.72, 177.88], [-356.81, 178.75], [-355.32, 180.22], [-353.89, 178.66]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.427, "pop": 0, "jobs": 427}}, {"shape": {"outer": [[-1189.65, -340.33], [-1187.3, -340.43], [-1187.24, -338.98], [-1178.27, -339.37], [-1178.3, -340.03], [-1125.48, -342.52], [-1125.73, -347.79], [-1121.24, -347.99], [-1120.99, -342.82], [-1093.6, -344.13], [-1092.04, -344.19], [-1092.14, -346.32], [-1090.69, -346.39], [-1089.22, -347.88], [-1089.32, -349.77], [-1087.1, -349.89], [-1087.24, -352.38], [-1087.42, -355.77], [-1088.58, -377.14], [-1092.1, -376.95], [-1094.51, -379.26], [-1094.62, -381.65], [-1122.59, -380.34], [-1122.36, -375.35], [-1126.55, -375.15], [-1126.69, -378.0], [-1131.33, -377.78], [-1132.58, -377.72], [-1132.69, -379.96], [-1186.53, -377.44], [-1186.42, -375.06], [-1189.2, -372.26], [-1191.02, -372.17], [-1190.14, -351.76], [-1189.65, -340.33]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2401}}, {"shape": {"outer": [[-1146.93, -332.71], [-1126.36, -333.78], [-1126.23, -331.14], [-1126.1, -328.72], [-1125.99, -326.68], [-1125.94, -325.63], [-1125.85, -323.91], [-1125.74, -321.87], [-1119.11, -322.19], [-1119.02, -320.62], [-1118.65, -313.32], [-1118.53, -311.05], [-1118.07, -302.1], [-1106.19, -302.71], [-1106.13, -301.53], [-1102.37, -301.72], [-1090.85, -302.31], [-1089.28, -300.93], [-1084.42, -296.63], [-1083.78, -296.06], [-1083.26, -286.49], [-1089.78, -279.47], [-1099.26, -278.99], [-1103.77, -283.16], [-1108.44, -282.95], [-1108.3, -279.84], [-1111.93, -279.67], [-1165.09, -277.22], [-1165.22, -279.99], [-1165.85, -279.41], [-1166.53, -278.77], [-1169.12, -278.65], [-1170.94, -280.37], [-1170.98, -281.4], [-1171.03, -282.68], [-1170.27, -283.71], [-1170.39, -285.94], [-1171.08, -299.37], [-1160.05, -299.93], [-1145.27, -300.69], [-1146.54, -325.15], [-1146.93, -332.71]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1720}}, {"shape": {"outer": [[-1094.55, -316.01], [-1092.46, -316.11], [-1092.33, -313.01], [-1088.66, -313.12], [-1088.87, -318.18], [-1088.91, -318.99], [-1088.87, -319.85], [-1088.88, -320.1], [-1094.72, -319.84], [-1094.55, -316.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[627.71, -33.84], [630.6, -33.11], [648.69, -28.6], [652.28, -27.28], [660.59, -24.24], [673.31, -19.57], [685.28, -14.71], [696.11, -9.05], [698.69, -7.81], [697.9, -5.39], [705.05, -2.67], [700.35, 13.17], [697.82, 21.72], [692.72, 20.37], [687.38, 18.93], [677.01, 16.17], [675.18, 15.67], [666.36, 13.32], [663.05, 12.43], [653.18, 9.79], [647.97, 8.41], [640.87, 6.51], [639.19, 6.08], [626.67, 2.88], [617.97, 0.39], [616.78, 0.47], [616.23, 0.41], [615.68, 0.25], [615.15, -0.09], [614.78, -0.39], [614.33, -1.09], [614.14, -1.96], [614.16, -2.59], [614.27, -3.23], [614.65, -4.12], [615.08, -4.61], [615.62, -4.93], [616.22, -5.09], [616.79, -5.11], [617.34, -5.01], [617.98, -4.78], [618.47, -4.54], [618.79, -4.19], [619.11, -3.75], [619.3, -3.16], [625.5, -26.91], [627.71, -33.84]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1770}}, {"shape": {"outer": [[498.9, -3.5], [509.58, 6.33], [491.73, 25.97], [488.21, 22.96], [489.66, 21.37], [482.32, 14.76], [498.9, -3.5]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.234, "pop": 0, "jobs": 234}}, {"shape": {"outer": [[506.6, 36.73], [501.82, 32.39], [518.35, 14.22], [523.15, 18.56], [506.6, 36.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[533.52, 27.53], [527.19, 34.54], [533.25, 39.97], [530.15, 43.41], [524.13, 38.01], [519.93, 42.66], [522.17, 44.67], [520.38, 46.64], [523.29, 49.25], [524.9, 47.48], [535.65, 57.13], [547.34, 44.19], [547.99, 42.95], [548.17, 42.31], [548.19, 41.64], [547.96, 40.97], [547.19, 39.8], [533.52, 27.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.328, "pop": 164, "jobs": 0}}, {"shape": {"outer": [[446.39, -16.81], [463.89, -35.5], [473.1, -27.63], [473.55, -26.84], [473.56, -25.46], [473.16, -24.71], [457.4, -7.44], [446.39, -16.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.292, "pop": 146, "jobs": 0}}, {"shape": {"outer": [[532.49, 27.0], [523.15, 18.56], [506.6, 36.73], [511.52, 41.19], [514.53, 37.9], [518.93, 41.87], [532.49, 27.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[518.35, 14.22], [509.58, 6.33], [491.73, 25.97], [499.15, 32.66], [500.51, 31.17], [501.82, 32.39], [518.35, 14.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.248, "pop": 124, "jobs": 0}}, {"shape": {"outer": [[456.8, -91.64], [464.3, -84.85], [467.53, -88.94], [485.6, -63.8], [478.5, -56.21], [456.75, -76.27], [449.28, -83.34], [456.8, -91.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.414, "pop": 207, "jobs": 0}}, {"shape": {"outer": [[848.08, 83.32], [853.29, 77.68], [855.39, 79.61], [872.4, 61.22], [892.91, 80.02], [870.7, 104.07], [848.08, 83.32]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.597, "pop": 0, "jobs": 597}}, {"shape": {"outer": [[312.72, 230.61], [314.19, 229.08], [328.43, 214.27], [328.14, 204.04], [311.08, 188.63], [297.92, 202.08], [299.05, 218.6], [312.72, 230.61]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.526, "pop": 0, "jobs": 526}}, {"shape": {"outer": [[-2353.39, -751.55], [-2346.59, -760.26], [-2348.41, -761.67], [-2345.24, -765.74], [-2341.19, -762.5], [-2339.9, -764.11], [-2335.97, -760.96], [-2334.84, -762.36], [-2327.69, -756.64], [-2326.1, -757.6], [-2322.21, -754.5], [-2324.32, -751.88], [-2318.79, -747.46], [-2330.27, -733.18], [-2333.27, -735.59], [-2332.15, -737.02], [-2338.61, -742.01], [-2339.53, -740.82], [-2345.42, -744.81], [-2353.39, -751.55]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.365, "pop": 0, "jobs": 365}}, {"shape": {"outer": [[-2253.92, -670.88], [-2262.54, -677.66], [-2242.05, -703.72], [-2235.86, -711.52], [-2204.15, -686.65], [-2216.24, -671.35], [-2214.89, -670.29], [-2220.17, -663.61], [-2215.8, -660.17], [-2219.76, -655.17], [-2223.72, -654.66], [-2226.99, -657.23], [-2230.63, -652.62], [-2253.92, -670.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1163}}, {"shape": {"outer": [[-2298.75, -729.4], [-2290.68, -723.17], [-2290.32, -723.74], [-2287.95, -726.71], [-2285.06, -730.34], [-2293.01, -736.62], [-2296.49, -732.24], [-2298.75, -729.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2242.44, -721.37], [-2236.03, -716.36], [-2236.51, -715.75], [-2244.48, -705.62], [-2242.05, -703.72], [-2262.54, -677.66], [-2263.59, -676.33], [-2285.76, -693.63], [-2283.69, -696.25], [-2263.15, -722.39], [-2249.82, -711.99], [-2242.44, -721.37]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.717, "pop": 0, "jobs": 717}}, {"shape": {"outer": [[2512.38, 2706.68], [2500.76, 2695.51], [2519.95, 2675.66], [2531.65, 2686.91], [2533.91, 2684.56], [2579.97, 2728.77], [2574.09, 2734.86], [2571.93, 2732.8], [2559.84, 2745.3], [2562.02, 2747.39], [2556.16, 2753.45], [2510.01, 2709.13], [2512.38, 2706.68]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1655}}, {"shape": {"outer": [[2348.44, 2404.06], [2354.92, 2411.16], [2327.96, 2439.02], [2283.83, 2396.29], [2311.11, 2368.2], [2328.98, 2350.94], [2326.62, 2348.51], [2321.38, 2352.9], [2316.34, 2348.04], [2305.4, 2359.23], [2277.97, 2331.59], [2311.24, 2298.98], [2313.14, 2300.56], [2318.49, 2296.28], [2320.84, 2298.5], [2341.54, 2277.12], [2342.54, 2277.86], [2345.41, 2275.06], [2363.46, 2291.42], [2366.55, 2288.61], [2361.57, 2282.44], [2378.87, 2264.43], [2379.67, 2265.6], [2387.1, 2258.1], [2396.8, 2257.18], [2396.75, 2255.44], [2406.37, 2255.61], [2406.38, 2267.69], [2421.08, 2281.86], [2421.77, 2281.08], [2428.33, 2287.1], [2427.17, 2288.43], [2442.72, 2303.72], [2453.92, 2303.57], [2454.05, 2314.13], [2452.25, 2314.07], [2452.14, 2326.0], [2454.38, 2326.03], [2454.84, 2326.79], [2467.46, 2326.92], [2468.26, 2326.13], [2468.91, 2325.79], [2469.51, 2326.15], [2469.87, 2327.02], [2469.56, 2328.01], [2469.36, 2345.86], [2469.7, 2346.34], [2470.0, 2347.2], [2469.92, 2348.24], [2469.26, 2348.37], [2468.49, 2348.17], [2468.15, 2347.59], [2451.44, 2347.83], [2452.11, 2359.79], [2454.41, 2359.94], [2454.05, 2370.61], [2451.82, 2370.73], [2407.68, 2415.45], [2392.12, 2400.0], [2392.97, 2399.21], [2387.31, 2393.88], [2386.89, 2394.44], [2377.34, 2385.29], [2377.71, 2384.84], [2371.5, 2379.36], [2348.44, 2404.06]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 12424}}, {"shape": {"outer": [[982.02, 1062.44], [964.21, 1081.61], [959.94, 1077.65], [957.94, 1079.89], [953.34, 1075.66], [931.41, 1099.8], [918.46, 1088.19], [917.94, 1089.08], [912.55, 1083.9], [913.18, 1083.22], [909.71, 1080.22], [911.99, 1077.7], [880.14, 1048.93], [878.19, 1051.11], [874.38, 1047.8], [873.8, 1048.74], [867.64, 1043.36], [871.73, 1039.21], [871.35, 1037.38], [873.77, 1034.26], [875.7, 1034.53], [882.69, 1026.82], [882.58, 1024.98], [885.07, 1022.19], [886.66, 1022.3], [889.96, 1018.77], [890.69, 1017.99], [896.68, 1023.27], [891.43, 1029.08], [895.48, 1032.83], [893.68, 1034.84], [927.57, 1064.8], [932.6, 1059.1], [930.35, 1056.83], [945.34, 1040.23], [952.92, 1047.15], [956.51, 1042.81], [961.6, 1047.29], [963.09, 1045.67], [982.02, 1062.44]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2112}}, {"shape": {"outer": [[-2109.36, -671.67], [-2100.28, -672.08], [-2098.95, -642.68], [-2107.36, -642.3], [-2107.71, -650.07], [-2110.42, -649.95], [-2111.05, -664.06], [-2109.02, -664.15], [-2109.36, -671.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.232, "pop": 116, "jobs": 0}}, {"shape": {"outer": [[-1362.37, -630.99], [-1374.81, -630.19], [-1374.99, -637.2], [-1362.69, -637.77], [-1362.37, -630.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1455.05, -608.13], [-1466.03, -602.48], [-1468.35, -606.99], [-1457.14, -612.65], [-1455.05, -608.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1435.43, -586.59], [-1466.01, -582.44], [-1468.0, -595.03], [-1437.29, -598.84], [-1435.43, -586.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.31, "pop": 155, "jobs": 0}}, {"shape": {"outer": [[-1452.26, -606.15], [-1455.73, -613.02], [-1446.1, -618.03], [-1442.62, -611.21], [-1452.26, -606.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1399.64, -521.87], [-1401.95, -521.71], [-1411.58, -521.09], [-1411.59, -521.74], [-1418.8, -521.38], [-1418.61, -520.73], [-1426.75, -520.38], [-1426.82, -521.15], [-1434.19, -520.88], [-1434.22, -520.0], [-1442.24, -519.56], [-1442.26, -520.22], [-1443.92, -520.15], [-1449.25, -519.9], [-1449.23, -519.19], [-1457.69, -518.8], [-1457.98, -525.16], [-1460.98, -525.13], [-1461.3, -536.39], [-1458.41, -536.47], [-1458.53, -538.74], [-1413.95, -540.95], [-1414.49, -552.15], [-1458.78, -555.29], [-1458.63, -557.69], [-1461.32, -558.1], [-1460.6, -569.07], [-1458.08, -568.92], [-1457.28, -575.31], [-1449.07, -574.79], [-1449.1, -573.91], [-1441.76, -573.26], [-1441.62, -574.13], [-1434.01, -573.64], [-1434.15, -572.82], [-1426.32, -572.23], [-1426.28, -572.82], [-1418.08, -572.51], [-1418.33, -571.75], [-1416.03, -571.59], [-1414.23, -571.53], [-1413.02, -571.62], [-1410.75, -572.08], [-1409.22, -572.39], [-1409.18, -572.88], [-1400.83, -573.34], [-1400.97, -572.41], [-1393.6, -572.78], [-1393.74, -573.6], [-1385.56, -574.16], [-1385.59, -573.34], [-1378.12, -573.77], [-1378.15, -574.75], [-1369.64, -575.27], [-1369.6, -568.35], [-1366.71, -568.49], [-1366.4, -563.43], [-1367.44, -563.46], [-1367.11, -557.42], [-1368.8, -557.37], [-1368.94, -554.87], [-1381.69, -554.2], [-1410.9, -552.69], [-1410.42, -541.54], [-1402.02, -542.11], [-1402.08, -538.52], [-1401.57, -537.82], [-1400.56, -538.61], [-1398.09, -534.93], [-1404.7, -530.76], [-1403.89, -529.43], [-1399.96, -529.54], [-1399.86, -527.19], [-1399.64, -521.87]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 3170, "jobs": 0}}, {"shape": {"outer": [[-1475.88, -2932.54], [-1475.92, -2922.73], [-1485.68, -2923.54], [-1497.13, -2926.38], [-1508.75, -2931.38], [-1512.98, -2933.88], [-1520.21, -2938.46], [-1521.69, -2936.67], [-1528.85, -2942.36], [-1532.9, -2946.15], [-1537.65, -2951.8], [-1535.85, -2953.98], [-1541.28, -2962.32], [-1543.82, -2967.09], [-1537.2, -2970.26], [-1532.13, -2972.82], [-1533.54, -2976.1], [-1535.0, -2979.38], [-1536.6, -2983.86], [-1537.58, -2987.59], [-1537.94, -2990.46], [-1487.46, -3020.22], [-1474.48, -2996.69], [-1497.31, -2982.53], [-1517.94, -2965.98], [-1516.1, -2964.11], [-1513.43, -2961.42], [-1508.84, -2957.41], [-1503.71, -2953.64], [-1498.6, -2950.85], [-1493.06, -2948.38], [-1486.33, -2946.3], [-1481.26, -2944.91], [-1475.45, -2944.43], [-1471.08, -2944.22], [-1471.07, -2936.27], [-1472.26, -2936.02], [-1472.16, -2932.54], [-1475.88, -2932.54]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2141}}, {"shape": {"outer": [[-1431.6, -2944.96], [-1446.09, -2942.04], [-1444.18, -2932.59], [-1430.34, -2935.38], [-1429.21, -2929.81], [-1418.91, -2931.9], [-1422.65, -2950.31], [-1432.29, -2948.35], [-1431.6, -2944.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.264, "pop": 132, "jobs": 0}}, {"shape": {"outer": [[-1573.47, -3078.98], [-1579.1, -3078.5], [-1579.39, -3082.05], [-1573.75, -3082.57], [-1573.47, -3078.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-2264.46, -1784.58], [-2287.25, -1761.9], [-2294.96, -1769.58], [-2278.45, -1786.01], [-2281.06, -1788.62], [-2274.77, -1794.87], [-2264.46, -1784.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.306, "pop": 153, "jobs": 0}}, {"shape": {"outer": [[-2571.39, -1804.7], [-2588.59, -1793.22], [-2590.46, -1796.04], [-2593.36, -1794.14], [-2595.6, -1789.47], [-2605.59, -1794.23], [-2601.7, -1802.35], [-2596.39, -1805.8], [-2596.73, -1806.32], [-2580.24, -1817.03], [-2579.96, -1816.61], [-2574.46, -1820.19], [-2571.11, -1820.43], [-2570.34, -1809.75], [-2573.41, -1807.68], [-2571.39, -1804.7]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.332, "pop": 0, "jobs": 332}}, {"shape": {"outer": [[-2537.95, -1669.88], [-2543.76, -1670.58], [-2543.28, -1674.67], [-2537.31, -1674.03], [-2537.95, -1669.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2293.14, -1841.46], [-2285.72, -1847.69], [-2278.37, -1853.87], [-2269.18, -1843.01], [-2265.4, -1842.89], [-2265.47, -1840.78], [-2265.53, -1838.7], [-2256.66, -1828.22], [-2256.88, -1828.03], [-2264.11, -1821.95], [-2271.43, -1815.79], [-2282.03, -1828.33], [-2293.14, -1841.46]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.42, "pop": 0, "jobs": 420}}, {"shape": {"outer": [[-2168.05, -1870.96], [-2184.38, -1874.58], [-2181.51, -1887.43], [-2165.18, -1883.82], [-2167.86, -1871.83], [-2168.05, -1870.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[-2358.1, -1805.0], [-2373.69, -1823.94], [-2354.72, -1839.44], [-2339.13, -1820.49], [-2358.1, -1805.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.48, "pop": 240, "jobs": 0}}, {"shape": {"outer": [[2162.25, 1129.72], [2135.76, 1158.94], [2130.6, 1154.07], [2128.14, 1155.88], [2126.15, 1156.19], [2124.21, 1155.88], [2122.44, 1155.07], [2117.33, 1160.0], [2107.49, 1151.67], [2109.38, 1149.23], [2093.14, 1134.88], [2095.26, 1132.76], [2088.52, 1126.3], [2087.36, 1127.53], [2051.36, 1094.26], [2054.53, 1090.73], [2051.06, 1087.94], [2050.11, 1087.05], [2049.54, 1086.2], [2049.01, 1084.68], [2048.75, 1083.38], [2048.87, 1081.86], [2049.22, 1080.44], [2050.05, 1079.21], [2050.79, 1078.21], [2053.33, 1075.2], [2051.53, 1073.67], [2064.67, 1058.97], [2086.01, 1035.09], [2118.23, 1063.9], [2107.74, 1075.58], [2112.23, 1079.53], [2114.19, 1077.46], [2114.33, 1076.53], [2114.5, 1075.05], [2115.07, 1073.68], [2115.87, 1073.06], [2117.32, 1072.42], [2118.63, 1072.22], [2120.45, 1072.71], [2121.57, 1073.77], [2122.32, 1075.21], [2122.41, 1076.52], [2122.18, 1078.0], [2160.46, 1112.69], [2156.92, 1116.81], [2157.93, 1117.98], [2158.63, 1119.43], [2158.66, 1120.48], [2158.69, 1121.49], [2158.3, 1123.08], [2157.78, 1124.08], [2156.84, 1124.98], [2162.25, 1129.72]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6087}}, {"shape": {"outer": [[-758.3, -2808.06], [-764.67, -2822.23], [-791.93, -2810.06], [-785.55, -2795.88], [-758.3, -2808.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.372, "pop": 186, "jobs": 0}}, {"shape": {"outer": [[-567.74, -2802.63], [-579.27, -2802.15], [-581.52, -2855.53], [-569.99, -2856.02], [-567.74, -2802.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.494, "pop": 247, "jobs": 0}}, {"shape": {"outer": [[-708.76, -2849.16], [-723.29, -2843.61], [-712.26, -2814.85], [-697.72, -2820.39], [-708.76, -2849.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.384, "pop": 192, "jobs": 0}}, {"shape": {"outer": [[-446.61, -2483.22], [-447.44, -2512.5], [-435.32, -2512.95], [-434.26, -2487.27], [-432.05, -2486.36], [-431.76, -2483.86], [-433.34, -2481.85], [-435.86, -2481.78], [-437.66, -2483.8], [-446.61, -2483.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[-519.53, -2715.22], [-563.97, -2713.5], [-562.78, -2682.6], [-518.33, -2684.31], [-519.53, -2715.22]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.88, "pop": 0, "jobs": 880}}, {"shape": {"outer": [[-566.34, -2730.77], [-566.35, -2731.08], [-568.31, -2779.37], [-547.86, -2780.2], [-548.13, -2786.84], [-543.24, -2787.04], [-543.65, -2796.99], [-549.17, -2796.77], [-549.79, -2812.11], [-544.26, -2812.35], [-544.35, -2814.63], [-523.97, -2815.46], [-522.23, -2772.84], [-512.52, -2773.23], [-511.84, -2756.44], [-513.51, -2756.38], [-513.37, -2753.11], [-512.86, -2753.13], [-512.47, -2743.61], [-520.62, -2743.27], [-520.56, -2742.01], [-536.82, -2741.35], [-536.59, -2735.45], [-542.32, -2735.21], [-542.18, -2731.75], [-566.34, -2730.77]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2014}}, {"shape": {"outer": [[-634.34, -2684.22], [-645.6, -2679.93], [-663.11, -2725.51], [-644.03, -2732.79], [-634.32, -2707.53], [-642.15, -2704.54], [-634.34, -2684.22]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.522, "pop": 0, "jobs": 522}}, {"shape": {"outer": [[-756.12, -2793.77], [-758.49, -2799.16], [-785.23, -2787.51], [-768.9, -2750.25], [-746.85, -2759.85], [-740.58, -2745.54], [-761.4, -2736.47], [-746.42, -2702.32], [-735.23, -2707.2], [-742.73, -2724.31], [-735.85, -2727.31], [-739.31, -2735.19], [-722.1, -2742.69], [-714.56, -2725.49], [-697.79, -2732.79], [-709.44, -2759.36], [-711.04, -2758.66], [-723.7, -2787.52], [-725.03, -2786.93], [-732.53, -2804.05], [-756.12, -2793.77]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2509}}, {"shape": {"outer": [[-721.95, -2690.61], [-727.6, -2703.77], [-712.06, -2710.39], [-706.42, -2697.25], [-721.95, -2690.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.194, "pop": 97, "jobs": 0}}, {"shape": {"outer": [[-551.92, -2853.17], [-580.43, -2875.64], [-569.19, -2889.82], [-540.67, -2867.35], [-551.92, -2853.17]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.42, "pop": 0, "jobs": 420}}, {"shape": {"outer": [[-443.76, -2469.03], [-445.41, -2473.12], [-453.51, -2469.52], [-451.54, -2465.76], [-453.05, -2464.84], [-447.48, -2453.56], [-436.47, -2458.57], [-435.42, -2456.42], [-426.24, -2460.27], [-427.3, -2462.96], [-424.28, -2464.36], [-425.8, -2467.59], [-425.29, -2469.01], [-425.91, -2471.4], [-427.34, -2472.0], [-429.08, -2475.44], [-430.27, -2474.92], [-443.76, -2469.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[-130.74, -2639.96], [-135.72, -2643.88], [-143.28, -2634.34], [-163.64, -2650.34], [-159.11, -2656.06], [-166.12, -2661.57], [-155.48, -2675.03], [-159.65, -2678.3], [-141.53, -2701.21], [-124.07, -2687.49], [-120.1, -2692.5], [-110.61, -2685.06], [-108.52, -2687.7], [-103.38, -2683.66], [-116.09, -2667.63], [-111.36, -2663.92], [-113.39, -2661.35], [-103.93, -2653.91], [-110.57, -2645.51], [-120.28, -2653.16], [-130.74, -2639.96]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1559}}, {"shape": {"outer": [[-16.22, -2671.07], [-14.02, -2651.48], [-28.88, -2649.82], [-31.08, -2669.48], [-36.97, -2668.82], [-37.22, -2671.03], [-43.61, -2670.31], [-46.0, -2691.64], [-32.14, -2693.18], [-32.42, -2695.78], [-14.21, -2697.81], [-13.95, -2695.51], [5.25, -2697.64], [5.8, -2692.79], [8.09, -2693.04], [8.91, -2685.76], [6.59, -2685.5], [7.67, -2675.86], [-14.38, -2673.41], [-14.14, -2671.29], [-16.22, -2671.07]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.856, "pop": 0, "jobs": 856}}, {"shape": {"outer": [[-27.99, -2771.48], [-24.96, -2763.78], [-54.95, -2752.06], [-58.21, -2760.36], [-67.5, -2756.73], [-75.98, -2778.28], [-20.26, -2800.05], [-15.66, -2788.38], [-11.54, -2777.9], [-27.99, -2771.48]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1078}}, {"shape": {"outer": [[501.23, -2481.96], [515.7, -2494.73], [524.89, -2484.38], [510.43, -2471.62], [501.23, -2481.96]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.171, "pop": 0, "jobs": 171}}, {"shape": {"outer": [[521.84, 260.52], [576.35, 310.82], [589.91, 294.95], [535.42, 245.98], [521.84, 260.52]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.961, "pop": 0, "jobs": 961}}, {"shape": {"outer": [[749.77, 151.14], [775.74, 174.61], [757.63, 194.49], [754.99, 192.1], [751.87, 189.29], [748.0, 185.79], [744.21, 189.96], [741.45, 187.47], [738.35, 184.66], [742.04, 180.6], [731.56, 171.14], [749.77, 151.14]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.632, "pop": 0, "jobs": 632}}, {"shape": {"outer": [[774.85, 122.76], [779.85, 126.01], [806.96, 143.07], [782.85, 169.98], [759.86, 148.96], [755.38, 145.0], [763.84, 135.91], [772.88, 125.72], [774.85, 122.76]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 1274, "jobs": 0}}, {"shape": {"outer": [[532.36, 390.67], [567.19, 422.59], [564.14, 425.81], [561.43, 428.67], [559.71, 427.06], [552.1, 434.61], [553.71, 436.1], [563.8, 445.4], [555.03, 454.64], [510.88, 414.65], [532.36, 390.67]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1051}}, {"shape": {"outer": [[1654.66, 793.13], [1688.46, 823.5], [1674.21, 839.25], [1665.74, 831.63], [1649.55, 848.63], [1641.66, 841.46], [1635.25, 836.06], [1635.09, 833.98], [1634.64, 831.8], [1635.72, 830.77], [1636.76, 829.72], [1628.36, 821.77], [1654.66, 793.13]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.475, "pop": 0, "jobs": 475}}, {"shape": {"outer": [[-2863.17, -1144.91], [-2862.18, -1145.24], [-2861.01, -1145.28], [-2859.91, -1145.11], [-2858.73, -1144.72], [-2857.7, -1144.1], [-2851.8, -1139.0], [-2846.69, -1134.59], [-2814.06, -1106.44], [-2814.32, -1106.19], [-2815.21, -1105.28], [-2814.57, -1104.58], [-2815.19, -1103.98], [-2812.94, -1101.86], [-2815.64, -1098.84], [-2815.85, -1099.07], [-2816.44, -1098.36], [-2816.91, -1097.62], [-2817.25, -1096.92], [-2817.56, -1096.23], [-2817.87, -1095.35], [-2818.13, -1094.48], [-2818.35, -1093.44], [-2818.47, -1092.69], [-2818.55, -1091.93], [-2818.57, -1091.27], [-2818.57, -1090.67], [-2818.55, -1090.11], [-2818.28, -1090.12], [-2818.27, -1086.9], [-2821.49, -1086.83], [-2821.48, -1085.58], [-2822.84, -1085.53], [-2824.31, -1085.44], [-2827.35, -1085.36], [-2832.5, -1085.21], [-2832.55, -1086.49], [-2834.77, -1086.46], [-2838.89, -1086.41], [-2841.73, -1086.37], [-2844.22, -1086.3], [-2849.3, -1086.22], [-2856.68, -1086.11], [-2859.97, -1086.07], [-2865.53, -1085.94], [-2868.99, -1085.86], [-2872.05, -1085.84], [-2875.35, -1085.77], [-2876.47, -1086.59], [-2880.04, -1089.22], [-2880.83, -1088.22], [-2883.64, -1084.66], [-2884.25, -1083.89], [-2886.8, -1085.79], [-2888.17, -1083.9], [-2891.13, -1086.19], [-2892.6, -1084.6], [-2897.07, -1088.14], [-2895.64, -1089.8], [-2898.76, -1092.21], [-2897.32, -1094.03], [-2899.69, -1095.96], [-2895.49, -1101.2], [-2897.49, -1102.81], [-2885.47, -1117.45], [-2864.62, -1143.81], [-2863.88, -1144.49], [-2863.17, -1144.91]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 2872, "jobs": 0}}, {"shape": {"outer": [[1774.97, 1242.66], [1872.56, 1331.77], [1873.62, 1332.74], [1903.46, 1300.3], [1863.82, 1263.16], [1804.83, 1210.2], [1774.97, 1242.66]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 4155, "jobs": 0}}, {"shape": {"outer": [[-1812.33, -374.28], [-1831.42, -373.5], [-1833.18, -416.58], [-1814.09, -417.36], [-1812.33, -374.28]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.527, "pop": 0, "jobs": 527}}, {"shape": {"outer": [[-1762.97, -412.99], [-1763.36, -421.14], [-1761.52, -421.23], [-1762.41, -440.04], [-1763.09, -439.98], [-1764.69, -439.91], [-1765.02, -447.91], [-1805.76, -445.97], [-1804.93, -428.6], [-1804.09, -411.03], [-1762.97, -412.99]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.942, "pop": 0, "jobs": 942}}, {"shape": {"outer": [[-350.42, 307.75], [-361.36, 298.39], [-357.31, 293.68], [-358.58, 292.58], [-353.82, 287.06], [-348.11, 291.95], [-349.89, 294.03], [-343.39, 299.59], [-350.42, 307.75]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-79.57, 370.34], [-60.11, 388.02], [-65.64, 394.06], [-64.29, 395.29], [-72.49, 404.24], [-78.57, 398.71], [-77.82, 397.88], [-80.84, 395.13], [-80.83, 393.86], [-78.77, 391.61], [-81.29, 389.3], [-76.76, 384.35], [-82.33, 379.29], [-82.54, 373.58], [-79.57, 370.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.31, "pop": 155, "jobs": 0}}, {"shape": {"outer": [[682.33, -3147.12], [671.46, -3136.51], [674.6, -3133.35], [669.33, -3128.41], [673.55, -3124.17], [678.84, -3129.27], [682.54, -3125.37], [729.14, -3167.58], [727.15, -3170.09], [742.19, -3183.74], [739.31, -3186.93], [742.95, -3190.2], [737.84, -3195.86], [734.19, -3192.59], [731.47, -3195.6], [720.36, -3185.87], [714.9, -3191.64], [720.95, -3199.84], [714.91, -3204.19], [718.19, -3208.71], [714.42, -3211.42], [711.14, -3206.91], [705.63, -3210.87], [687.82, -3187.23], [683.28, -3183.3], [672.13, -3172.94], [669.28, -3170.48], [642.1, -3153.67], [645.97, -3146.72], [641.5, -3144.25], [643.01, -3141.55], [647.49, -3144.02], [651.5, -3136.82], [679.07, -3152.57], [682.33, -3147.12]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2323}}, {"shape": {"outer": [[102.15, -2592.94], [166.96, -2626.67], [179.46, -2602.63], [165.24, -2594.83], [168.56, -2585.77], [137.44, -2570.69], [143.07, -2557.34], [124.56, -2549.24], [102.15, -2592.94]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1787}}, {"shape": {"outer": [[31.34, -2511.48], [92.24, -2499.7], [87.78, -2479.54], [27.3, -2492.19], [31.34, -2511.48]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.799, "pop": 0, "jobs": 799}}, {"shape": {"outer": [[186.98, -2658.8], [206.64, -2677.04], [221.92, -2660.22], [202.38, -2642.06], [186.98, -2658.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.486, "pop": 243, "jobs": 0}}, {"shape": {"outer": [[-476.47, -2253.72], [-467.17, -2254.12], [-467.2, -2254.73], [-461.53, -2254.98], [-461.57, -2255.87], [-457.64, -2256.04], [-457.55, -2253.85], [-448.48, -2254.23], [-445.62, -2257.63], [-440.11, -2257.87], [-437.13, -2254.71], [-428.07, -2255.1], [-428.18, -2257.59], [-423.31, -2257.79], [-423.23, -2256.09], [-415.86, -2256.41], [-414.78, -2231.09], [-413.68, -2231.15], [-412.77, -2209.66], [-434.55, -2208.73], [-435.32, -2226.8], [-456.14, -2225.91], [-456.1, -2224.83], [-460.96, -2224.62], [-461.15, -2229.05], [-468.35, -2228.74], [-469.07, -2245.56], [-476.12, -2245.26], [-476.47, -2253.72]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1281}}, {"shape": {"outer": [[-1753.34, -251.41], [-1754.51, -279.86], [-1759.09, -279.73], [-1760.4, -325.26], [-1755.5, -325.4], [-1755.97, -342.46], [-1758.58, -342.39], [-1758.64, -344.41], [-1757.58, -344.44], [-1759.25, -345.73], [-1761.82, -346.96], [-1765.1, -347.85], [-1768.09, -348.27], [-1770.56, -348.31], [-1773.36, -348.21], [-1773.31, -346.25], [-1774.91, -346.21], [-1774.8, -341.93], [-1776.26, -341.9], [-1776.11, -336.19], [-1797.51, -335.6], [-1798.72, -341.74], [-1841.75, -340.55], [-1841.83, -343.41], [-1849.01, -343.22], [-1849.03, -343.9], [-1856.33, -343.71], [-1856.24, -340.52], [-1862.35, -340.34], [-1861.62, -313.71], [-1860.45, -313.74], [-1860.16, -303.23], [-1852.36, -303.44], [-1852.33, -302.32], [-1849.46, -302.4], [-1849.44, -301.8], [-1845.82, -301.9], [-1845.77, -300.26], [-1837.28, -300.49], [-1837.33, -302.62], [-1834.66, -302.68], [-1834.68, -303.46], [-1833.42, -303.49], [-1833.67, -312.32], [-1804.34, -313.13], [-1803.83, -294.8], [-1804.53, -294.78], [-1804.28, -276.55], [-1806.46, -277.45], [-1820.42, -276.87], [-1822.58, -276.2], [-1821.57, -248.89], [-1753.34, -251.41]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4298}}, {"shape": {"outer": [[-1591.27, -257.57], [-1591.72, -264.29], [-1591.63, -264.63], [-1592.47, -282.68], [-1593.15, -297.03], [-1593.79, -297.03], [-1594.37, -308.41], [-1593.73, -308.43], [-1595.45, -341.05], [-1577.07, -342.15], [-1577.25, -347.02], [-1570.07, -347.38], [-1569.94, -342.42], [-1559.52, -342.91], [-1559.63, -345.73], [-1559.42, -347.93], [-1558.38, -351.34], [-1556.95, -353.93], [-1555.12, -356.13], [-1553.96, -357.32], [-1551.99, -358.78], [-1548.77, -360.33], [-1545.06, -361.19], [-1541.66, -361.2], [-1541.48, -357.01], [-1536.23, -357.36], [-1535.82, -350.39], [-1541.27, -350.24], [-1540.29, -330.57], [-1537.94, -330.0], [-1535.2, -328.67], [-1532.8, -326.53], [-1531.52, -324.17], [-1530.76, -321.83], [-1513.79, -322.79], [-1513.66, -324.23], [-1513.23, -325.75], [-1512.09, -327.9], [-1510.05, -330.12], [-1507.44, -331.58], [-1505.24, -332.36], [-1506.12, -351.87], [-1511.78, -351.57], [-1511.98, -358.46], [-1506.47, -358.71], [-1506.79, -362.92], [-1501.68, -363.13], [-1498.99, -363.02], [-1495.82, -362.16], [-1493.04, -360.73], [-1490.78, -358.86], [-1488.78, -356.7], [-1487.16, -353.9], [-1486.09, -351.37], [-1485.77, -349.09], [-1485.45, -347.68], [-1484.91, -346.96], [-1483.95, -346.7], [-1481.33, -295.36], [-1484.88, -295.24], [-1489.1, -288.69], [-1486.82, -286.7], [-1484.72, -284.19], [-1483.64, -282.51], [-1483.34, -281.94], [-1481.95, -282.7], [-1481.1, -280.64], [-1480.52, -278.41], [-1480.24, -274.39], [-1480.78, -270.85], [-1482.16, -267.46], [-1483.16, -265.57], [-1484.53, -263.54], [-1486.31, -261.89], [-1488.41, -260.2], [-1490.41, -259.04], [-1492.69, -258.03], [-1493.27, -259.49], [-1495.25, -258.94], [-1498.36, -258.59], [-1498.56, -262.26], [-1499.71, -262.36], [-1502.42, -262.91], [-1505.13, -264.0], [-1507.81, -266.01], [-1510.58, -270.07], [-1512.03, -275.02], [-1514.69, -274.92], [-1514.41, -267.88], [-1535.95, -266.91], [-1535.89, -264.96], [-1546.3, -264.38], [-1546.39, -266.2], [-1555.97, -265.78], [-1556.2, -270.22], [-1566.5, -269.85], [-1566.79, -266.04], [-1568.04, -262.91], [-1569.0, -261.12], [-1570.49, -259.3], [-1573.38, -256.59], [-1576.75, -254.88], [-1580.49, -253.84], [-1584.27, -253.6], [-1584.46, -257.86], [-1591.27, -257.57]], "holes": []}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 14919}}, {"shape": {"outer": [[-1438.06, -284.6], [-1440.2, -328.04], [-1438.52, -328.14], [-1438.62, -330.2], [-1443.15, -329.98], [-1444.94, -366.51], [-1402.51, -368.58], [-1402.39, -366.04], [-1389.39, -366.67], [-1387.83, -334.28], [-1384.82, -334.42], [-1384.65, -330.84], [-1374.9, -331.3], [-1374.57, -324.35], [-1370.66, -324.54], [-1354.87, -325.29], [-1354.65, -320.57], [-1354.5, -317.5], [-1353.24, -317.56], [-1352.58, -303.41], [-1353.84, -303.35], [-1353.7, -300.52], [-1353.64, -299.39], [-1351.51, -299.5], [-1351.39, -297.09], [-1344.97, -297.39], [-1343.58, -267.96], [-1349.32, -267.69], [-1362.07, -267.08], [-1371.05, -266.66], [-1373.61, -266.54], [-1374.25, -279.94], [-1390.23, -279.18], [-1415.46, -277.98], [-1415.38, -276.29], [-1422.21, -275.96], [-1422.31, -277.98], [-1436.76, -277.28], [-1437.12, -284.65], [-1438.06, -284.6]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 13521}}, {"shape": {"outer": [[-1947.93, -296.93], [-1931.04, -297.43], [-1930.95, -294.49], [-1912.84, -295.02], [-1912.03, -267.47], [-1889.86, -268.12], [-1890.89, -303.46], [-1896.67, -303.29], [-1896.76, -306.21], [-1896.85, -309.14], [-1888.42, -309.39], [-1888.82, -322.89], [-1910.79, -322.25], [-1910.85, -324.38], [-1907.47, -324.48], [-1907.61, -329.05], [-1907.74, -333.62], [-1910.97, -333.52], [-1911.22, -341.82], [-1931.68, -341.22], [-1931.6, -338.13], [-1944.39, -337.76], [-1949.13, -337.62], [-1947.93, -296.93]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1815}}, {"shape": {"outer": [[-2125.97, -273.86], [-2115.61, -277.74], [-2114.75, -276.03], [-2100.87, -282.11], [-2102.66, -285.95], [-2062.78, -304.79], [-2061.05, -301.15], [-2039.48, -313.0], [-2040.49, -314.66], [-2023.26, -324.78], [-2020.5, -234.26], [-2047.29, -233.45], [-2047.35, -235.75], [-2112.62, -233.8], [-2112.56, -231.83], [-2124.74, -231.48], [-2125.97, -273.86]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7425}}, {"shape": {"outer": [[-1323.55, -270.07], [-1324.56, -292.07], [-1324.12, -292.1], [-1325.66, -325.14], [-1327.84, -325.05], [-1331.04, -324.89], [-1331.54, -335.49], [-1328.39, -335.64], [-1327.81, -335.66], [-1328.1, -341.86], [-1325.38, -341.98], [-1325.51, -344.79], [-1326.45, -344.75], [-1327.61, -370.17], [-1295.83, -371.5], [-1291.5, -371.95], [-1270.17, -372.99], [-1234.57, -374.74], [-1234.64, -376.15], [-1220.83, -376.84], [-1219.78, -355.29], [-1220.94, -355.24], [-1220.59, -348.24], [-1221.28, -348.21], [-1220.91, -340.71], [-1220.66, -335.67], [-1220.44, -331.35], [-1218.72, -297.08], [-1215.91, -297.22], [-1214.75, -274.05], [-1249.42, -272.33], [-1249.49, -273.83], [-1319.45, -270.28], [-1323.55, -270.07]], "holes": []}, "height": 50.0, "data": {"type": "residential", "density": 1.0, "pop": 26985, "jobs": 0}}, {"shape": {"outer": [[-2185.19, -229.1], [-2155.52, -230.52], [-2154.53, -229.39], [-2153.09, -229.52], [-2152.43, -230.71], [-2152.47, -232.1], [-2153.48, -232.82], [-2153.66, -237.68], [-2153.12, -238.4], [-2153.16, -240.92], [-2153.8, -241.56], [-2154.37, -256.63], [-2166.49, -256.19], [-2166.39, -253.47], [-2173.49, -253.38], [-2176.19, -252.11], [-2176.26, -247.45], [-2185.7, -247.09], [-2185.19, -229.1]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.467, "pop": 0, "jobs": 467}}, {"shape": {"outer": [[-1162.6, -422.73], [-1163.58, -446.59], [-1164.41, -466.79], [-1169.03, -466.6], [-1169.08, -467.69], [-1169.21, -470.83], [-1162.63, -471.1], [-1163.07, -481.66], [-1169.75, -481.4], [-1170.43, -498.35], [-1172.6, -498.25], [-1172.69, -500.65], [-1180.17, -500.34], [-1180.08, -498.07], [-1183.09, -497.95], [-1182.99, -497.31], [-1182.26, -480.92], [-1183.65, -480.85], [-1183.1, -467.49], [-1181.7, -467.54], [-1181.63, -465.95], [-1185.66, -465.79], [-1183.86, -421.77], [-1185.37, -421.72], [-1185.5, -424.75], [-1189.53, -424.59], [-1189.39, -421.16], [-1190.77, -421.11], [-1190.66, -418.6], [-1192.96, -418.5], [-1192.68, -411.7], [-1190.27, -411.8], [-1190.17, -409.22], [-1159.26, -410.48], [-1159.18, -408.61], [-1145.88, -409.15], [-1145.97, -411.3], [-1115.65, -412.54], [-1115.74, -414.84], [-1113.55, -414.79], [-1114.01, -422.32], [-1116.24, -422.24], [-1116.35, -424.9], [-1146.76, -423.66], [-1147.03, -430.08], [-1157.4, -429.67], [-1157.13, -422.95], [-1162.6, -422.73]], "holes": []}, "height": 35.0, "data": {"type": "residential", "density": 1.0, "pop": 4384, "jobs": 0}}, {"shape": {"outer": [[-1351.04, -415.27], [-1351.41, -423.67], [-1353.62, -423.58], [-1353.73, -426.07], [-1377.33, -425.06], [-1377.36, -425.62], [-1377.62, -431.81], [-1389.56, -431.29], [-1389.44, -428.6], [-1400.96, -428.1], [-1403.57, -427.99], [-1403.78, -432.93], [-1407.34, -432.77], [-1407.46, -435.64], [-1407.85, -444.63], [-1409.88, -444.54], [-1409.92, -445.36], [-1420.26, -444.9], [-1420.18, -443.21], [-1420.9, -443.18], [-1426.28, -442.93], [-1426.34, -444.13], [-1437.25, -443.62], [-1438.36, -467.23], [-1440.47, -467.14], [-1440.58, -469.31], [-1450.16, -468.85], [-1450.04, -466.53], [-1452.34, -466.42], [-1451.22, -442.96], [-1453.33, -442.86], [-1452.54, -426.4], [-1450.42, -426.51], [-1450.39, -425.92], [-1454.26, -425.73], [-1454.19, -424.15], [-1453.12, -401.87], [-1449.16, -402.05], [-1448.89, -396.37], [-1446.19, -396.5], [-1446.06, -393.97], [-1436.83, -394.4], [-1436.91, -396.16], [-1436.96, -397.14], [-1434.39, -397.26], [-1434.72, -404.26], [-1422.17, -404.84], [-1421.9, -399.18], [-1416.71, -399.42], [-1411.95, -399.64], [-1412.19, -404.74], [-1392.12, -405.67], [-1392.29, -409.32], [-1376.76, -410.03], [-1376.82, -411.44], [-1353.06, -412.5], [-1353.18, -415.17], [-1351.04, -415.27]], "holes": []}, "height": 35.0, "data": {"type": "residential", "density": 1.0, "pop": 5915, "jobs": 0}}, {"shape": {"outer": [[-1644.98, -266.19], [-1644.75, -266.2], [-1645.12, -274.1], [-1657.06, -273.53], [-1656.93, -270.98], [-1661.52, -270.76], [-1661.39, -268.06], [-1661.35, -264.96], [-1661.25, -261.48], [-1661.11, -256.73], [-1660.96, -253.5], [-1654.99, -253.79], [-1655.24, -258.9], [-1644.66, -259.4], [-1644.98, -266.19]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.167, "pop": 0, "jobs": 167}}, {"shape": {"outer": [[-1645.75, -321.26], [-1645.5, -315.81], [-1645.26, -310.37], [-1633.22, -310.89], [-1634.14, -331.97], [-1626.74, -332.29], [-1627.64, -352.84], [-1635.11, -352.51], [-1635.26, -355.74], [-1647.31, -355.21], [-1646.56, -338.27], [-1666.87, -337.38], [-1667.09, -342.36], [-1673.76, -342.06], [-1672.82, -320.64], [-1674.26, -320.57], [-1674.11, -316.94], [-1672.61, -317.01], [-1672.61, -316.8], [-1667.71, -317.02], [-1667.5, -312.05], [-1663.7, -312.22], [-1663.82, -315.15], [-1664.06, -320.45], [-1645.75, -321.26]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.795, "pop": 0, "jobs": 795}}, {"shape": {"outer": [[-1693.34, -473.77], [-1696.63, -473.63], [-1696.94, -480.79], [-1721.82, -479.73], [-1721.41, -470.15], [-1723.45, -470.06], [-1723.37, -468.06], [-1732.71, -467.66], [-1731.67, -443.1], [-1724.59, -443.4], [-1724.43, -439.74], [-1729.12, -439.54], [-1728.94, -435.36], [-1719.84, -435.74], [-1719.7, -432.43], [-1700.89, -433.23], [-1701.07, -437.34], [-1687.18, -437.93], [-1687.48, -445.06], [-1687.36, -445.07], [-1687.63, -451.38], [-1684.55, -451.5], [-1685.33, -469.89], [-1689.07, -469.73], [-1689.17, -472.13], [-1689.24, -472.13], [-1689.53, -478.92], [-1693.54, -478.75], [-1693.34, -473.77]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2597}}, {"shape": {"outer": [[-1634.99, -409.43], [-1633.57, -409.49], [-1633.8, -414.55], [-1635.16, -414.49], [-1635.36, -418.78], [-1664.57, -417.45], [-1665.09, -417.42], [-1663.82, -389.48], [-1681.6, -388.67], [-1681.67, -390.26], [-1679.33, -390.37], [-1679.57, -395.82], [-1680.97, -395.75], [-1681.26, -402.14], [-1681.78, -413.28], [-1682.29, -424.53], [-1691.67, -424.11], [-1703.92, -423.55], [-1711.16, -423.22], [-1711.24, -424.81], [-1717.23, -424.54], [-1717.12, -422.0], [-1728.25, -421.49], [-1726.48, -382.84], [-1726.43, -381.87], [-1726.64, -381.86], [-1726.39, -376.26], [-1720.93, -376.52], [-1720.93, -376.82], [-1719.93, -376.87], [-1625.4, -381.18], [-1626.53, -405.97], [-1634.81, -405.59], [-1634.99, -409.43]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2325}}, {"shape": {"outer": [[-1601.1, -403.57], [-1600.53, -393.94], [-1582.13, -395.03], [-1582.69, -404.66], [-1601.1, -403.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-1585.04, -406.48], [-1585.57, -415.68], [-1604.84, -414.57], [-1604.31, -405.37], [-1585.04, -406.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-1687.54, -350.61], [-1688.67, -350.57], [-1690.08, -350.51], [-1690.14, -352.15], [-1707.06, -351.49], [-1706.99, -349.86], [-1709.88, -349.74], [-1709.76, -346.81], [-1717.12, -346.52], [-1717.08, -345.35], [-1721.54, -345.18], [-1721.61, -347.26], [-1730.61, -346.91], [-1730.27, -337.93], [-1729.26, -337.97], [-1727.61, -338.04], [-1727.54, -335.93], [-1728.04, -335.92], [-1727.95, -333.51], [-1729.08, -333.46], [-1729.04, -332.35], [-1730.05, -332.31], [-1731.83, -332.24], [-1731.71, -329.1], [-1733.34, -329.04], [-1732.48, -306.98], [-1729.72, -307.08], [-1729.63, -305.01], [-1713.47, -305.64], [-1713.6, -308.96], [-1704.52, -309.32], [-1704.39, -306.01], [-1688.28, -306.63], [-1688.35, -308.6], [-1685.91, -308.69], [-1686.68, -328.4], [-1687.16, -328.37], [-1687.22, -329.98], [-1687.28, -331.64], [-1686.8, -331.65], [-1687.54, -350.61]], "holes": []}, "height": 45.5, "data": {"type": "residential", "density": 1.0, "pop": 4323, "jobs": 0}}, {"shape": {"outer": [[-1597.14, -417.33], [-1592.87, -417.45], [-1592.92, -419.21], [-1582.1, -419.65], [-1582.5, -429.8], [-1603.84, -428.95], [-1603.43, -418.8], [-1597.19, -419.05], [-1597.14, -417.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-2118.4, -326.92], [-2042.91, -364.19], [-2045.1, -368.49], [-2040.74, -370.9], [-2038.6, -366.33], [-2031.74, -369.75], [-2027.4, -372.01], [-2027.79, -391.54], [-2025.57, -391.71], [-2023.58, -391.82], [-2024.59, -417.57], [-2025.85, -449.44], [-2032.06, -449.27], [-2047.7, -448.84], [-2055.71, -448.62], [-2055.38, -435.61], [-2056.43, -429.77], [-2058.34, -423.76], [-2060.89, -417.45], [-2064.22, -411.16], [-2068.77, -405.6], [-2074.04, -400.77], [-2080.61, -396.14], [-2085.75, -393.85], [-2091.37, -391.71], [-2095.47, -390.38], [-2099.69, -389.23], [-2104.41, -388.24], [-2109.15, -387.59], [-2119.74, -387.02], [-2119.92, -385.77], [-2121.03, -385.79], [-2128.4, -385.98], [-2128.16, -346.44], [-2118.76, -347.04], [-2118.56, -335.32], [-2118.4, -326.92]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7117}}, {"shape": {"outer": [[-1997.56, -501.0], [-1995.62, -501.08], [-1995.46, -497.64], [-1988.45, -497.98], [-1988.27, -494.36], [-1973.16, -495.09], [-1973.33, -498.71], [-1966.82, -499.02], [-1966.98, -502.46], [-1964.92, -502.57], [-1965.44, -513.29], [-1965.95, -523.92], [-1968.01, -523.82], [-1968.16, -526.94], [-1974.69, -526.63], [-1974.85, -529.99], [-1989.96, -529.27], [-1989.79, -525.62], [-1996.79, -525.28], [-1996.62, -521.78], [-1998.55, -521.69], [-1997.56, -501.0]], "holes": []}, "height": 54.9, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4346}}, {"shape": {"outer": [[-2640.52, -147.54], [-2637.52, -147.66], [-2637.59, -149.48], [-2630.98, -149.75], [-2632.06, -176.17], [-2637.59, -175.94], [-2637.63, -177.02], [-2647.59, -176.61], [-2647.39, -171.72], [-2647.31, -171.72], [-2646.38, -149.08], [-2661.33, -148.47], [-2662.28, -171.62], [-2673.1, -171.18], [-2673.2, -173.5], [-2675.51, -173.41], [-2676.62, -173.36], [-2676.52, -171.13], [-2687.34, -170.69], [-2686.38, -147.3], [-2686.52, -147.29], [-2686.21, -139.5], [-2675.52, -139.93], [-2675.42, -137.35], [-2665.15, -137.77], [-2665.26, -140.24], [-2661.12, -140.41], [-2661.14, -140.72], [-2640.27, -141.57], [-2640.52, -147.54]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.898, "pop": 0, "jobs": 898}}, {"shape": {"outer": [[-2733.26, -158.5], [-2714.53, -159.13], [-2714.9, -169.96], [-2733.63, -169.33], [-2733.26, -158.5]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.13, "pop": 0, "jobs": 130}}, {"shape": {"outer": [[-2618.52, -142.27], [-2585.14, -143.49], [-2586.69, -186.4], [-2620.08, -185.2], [-2618.52, -142.27]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.402, "pop": 0, "jobs": 402}}, {"shape": {"outer": [[-2003.34, -380.08], [-1907.39, -427.29], [-1907.61, -432.58], [-1911.58, -432.41], [-1912.7, -460.69], [-1912.88, -465.09], [-1952.22, -463.71], [-1951.59, -450.63], [-1957.67, -450.36], [-1962.87, -450.12], [-1963.44, -463.38], [-1990.49, -461.04], [-2004.45, -460.58], [-2001.2, -422.2], [-2004.12, -422.04], [-2004.05, -418.13], [-2003.34, -380.08]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 10593}}, {"shape": {"outer": [[2573.3, 1757.12], [2572.14, 1761.56], [2573.6, 1761.91], [2572.44, 1766.17], [2570.98, 1765.77], [2570.33, 1768.42], [2567.79, 1767.68], [2565.64, 1776.36], [2553.52, 1773.23], [2558.56, 1753.88], [2565.53, 1755.55], [2565.91, 1754.35], [2571.54, 1755.83], [2571.36, 1756.61], [2573.3, 1757.12]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.188, "pop": 0, "jobs": 188}}, {"shape": {"outer": [[2826.05, 2689.31], [2843.81, 2693.92], [2841.79, 2705.4], [2844.72, 2710.88], [2855.6, 2714.6], [2849.98, 2732.6], [2815.77, 2722.57], [2826.05, 2689.31]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.641, "pop": 0, "jobs": 641}}, {"shape": {"outer": [[943.82, 540.89], [984.77, 577.08], [934.23, 634.36], [892.08, 596.79], [943.82, 540.89]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2712}}, {"shape": {"outer": [[1276.42, 674.43], [1219.8, 623.04], [1243.84, 596.75], [1274.34, 624.44], [1275.49, 623.2], [1301.6, 646.9], [1276.42, 674.43]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1781}}, {"shape": {"outer": [[1586.0, 812.06], [1599.69, 797.54], [1609.93, 806.8], [1612.48, 804.01], [1618.0, 809.19], [1602.5, 826.08], [1586.0, 812.06]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.288, "pop": 0, "jobs": 288}}, {"shape": {"outer": [[2003.55, 1291.28], [2007.79, 1287.53], [2008.97, 1286.49], [1994.11, 1269.83], [1987.53, 1275.66], [1992.39, 1281.11], [1993.55, 1280.08], [1994.15, 1280.76], [2003.55, 1291.28]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.111, "pop": 0, "jobs": 111}}, {"shape": {"outer": [[-494.53, -2176.75], [-477.93, -2177.66], [-475.92, -2152.88], [-489.86, -2151.19], [-494.53, -2176.75]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.249, "pop": 0, "jobs": 249}}, {"shape": {"outer": [[-570.43, -2171.67], [-562.62, -2172.02], [-561.79, -2153.45], [-563.43, -2153.38], [-562.83, -2140.01], [-569.0, -2139.73], [-570.43, -2171.67]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.146, "pop": 0, "jobs": 146}}, {"shape": {"outer": [[-589.9, -2089.95], [-586.96, -2094.89], [-583.63, -2092.92], [-586.56, -2087.99], [-589.9, -2089.95]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.014, "pop": 0, "jobs": 14}}, {"shape": {"outer": [[-1165.46, -3161.87], [-1155.35, -3110.73], [-1134.46, -3114.84], [-1118.47, -3033.99], [-1099.41, -3037.74], [-1096.96, -3025.37], [-1089.32, -3026.87], [-1085.85, -3009.35], [-1049.58, -3016.47], [-1055.56, -3046.71], [-1076.62, -3042.58], [-1084.28, -3081.36], [-1079.33, -3082.34], [-1081.47, -3093.22], [-1086.39, -3092.26], [-1094.96, -3135.57], [-1115.83, -3131.46], [-1120.01, -3152.59], [-1137.91, -3149.06], [-1141.37, -3166.6], [-1165.46, -3161.87]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4471}}, {"shape": {"outer": [[-2354.67, -1912.02], [-2340.81, -1915.69], [-2340.37, -1914.95], [-2336.69, -1908.92], [-2335.05, -1906.24], [-2338.35, -1904.56], [-2343.39, -1902.0], [-2344.53, -1901.42], [-2354.67, -1912.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-1773.42, -1838.8], [-1730.74, -1840.65], [-1725.56, -1840.72], [-1723.69, -1795.59], [-1735.28, -1784.39], [-1772.27, -1819.11], [-1773.42, -1838.8]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1253}}, {"shape": {"outer": [[-1623.08, -1744.38], [-1613.01, -1744.63], [-1604.01, -1744.85], [-1537.02, -1746.49], [-1538.21, -1795.46], [-1543.75, -1795.18], [-1544.21, -1804.42], [-1595.7, -1802.42], [-1595.84, -1811.18], [-1599.24, -1811.13], [-1601.1, -1811.03], [-1600.99, -1802.69], [-1607.41, -1802.62], [-1612.15, -1802.56], [-1611.97, -1797.95], [-1618.33, -1797.75], [-1618.31, -1793.49], [-1620.41, -1793.36], [-1620.43, -1789.07], [-1619.92, -1773.39], [-1619.29, -1753.95], [-1623.33, -1753.61], [-1623.08, -1744.38]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3027}}, {"shape": {"outer": [[-1725.56, -1840.72], [-1723.69, -1795.59], [-1723.26, -1791.84], [-1712.85, -1792.11], [-1709.39, -1793.35], [-1710.55, -1840.99], [-1725.56, -1840.72]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.455, "pop": 0, "jobs": 455}}, {"shape": {"outer": [[-1544.21, -1804.42], [-1543.75, -1795.18], [-1538.21, -1795.46], [-1531.62, -1795.78], [-1531.79, -1804.45], [-1519.54, -1825.32], [-1524.2, -1827.56], [-1522.22, -1830.51], [-1593.72, -1869.19], [-1596.54, -1864.09], [-1597.93, -1864.85], [-1606.79, -1847.61], [-1604.93, -1846.56], [-1606.36, -1844.13], [-1600.01, -1840.37], [-1599.74, -1830.49], [-1599.51, -1821.77], [-1599.24, -1811.13], [-1595.84, -1811.18], [-1595.7, -1802.42], [-1544.21, -1804.42]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2401}}, {"shape": {"outer": [[-1697.4, -1780.38], [-1686.38, -1769.37], [-1691.06, -1764.99], [-1695.74, -1760.6], [-1709.98, -1774.94], [-1721.42, -1785.16], [-1712.85, -1792.11], [-1709.39, -1793.35], [-1697.4, -1780.38]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.293, "pop": 0, "jobs": 293}}, {"shape": {"outer": [[-1710.61, -1844.69], [-1681.19, -1874.44], [-1676.88, -1878.8], [-1686.22, -1887.82], [-1704.05, -1869.48], [-1714.83, -1857.98], [-1719.75, -1857.91], [-1728.41, -1849.61], [-1724.93, -1845.39], [-1725.56, -1840.72], [-1710.55, -1840.99], [-1710.61, -1844.69]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.503, "pop": 0, "jobs": 503}}, {"shape": {"outer": [[-1756.85, -1932.46], [-1676.27, -1889.9], [-1669.63, -1902.07], [-1750.02, -1945.94], [-1756.85, -1932.46]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.847, "pop": 0, "jobs": 847}}, {"shape": {"outer": [[-1697.4, -1780.38], [-1657.2, -1766.06], [-1644.43, -1793.22], [-1635.84, -1824.24], [-1634.55, -1830.09], [-1631.77, -1840.97], [-1629.72, -1848.16], [-1652.01, -1854.17], [-1656.34, -1840.95], [-1659.88, -1841.57], [-1662.89, -1832.32], [-1710.61, -1844.69], [-1710.55, -1840.99], [-1709.39, -1793.35], [-1697.4, -1780.38]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2952}}, {"shape": {"outer": [[-1735.28, -1784.39], [-1766.46, -1751.22], [-1759.18, -1739.18], [-1755.98, -1741.89], [-1753.96, -1740.2], [-1750.33, -1743.14], [-1745.85, -1739.34], [-1709.98, -1774.94], [-1721.42, -1785.16], [-1712.85, -1792.11], [-1723.26, -1791.84], [-1723.69, -1795.59], [-1735.28, -1784.39]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.886, "pop": 0, "jobs": 886}}, {"shape": {"outer": [[-1776.11, -1918.18], [-1748.59, -1918.97], [-1710.98, -1898.4], [-1718.67, -1883.8], [-1724.8, -1872.17], [-1730.66, -1872.1], [-1730.83, -1856.09], [-1733.89, -1856.16], [-1733.94, -1846.49], [-1731.16, -1842.62], [-1730.74, -1840.65], [-1773.42, -1838.8], [-1773.97, -1854.87], [-1776.11, -1918.18]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2432}}, {"shape": {"outer": [[-1813.99, 84.97], [-1815.18, 78.09], [-1811.72, 77.49], [-1808.45, 76.93], [-1807.25, 83.79], [-1813.99, 84.97]], "holes": []}, "height": 25.9, "data": {"type": "commercial", "density": 0.099, "pop": 0, "jobs": 99}}, {"shape": {"outer": [[-3244.71, -1699.9], [-3233.68, -1690.54], [-3237.93, -1685.57], [-3230.53, -1679.29], [-3229.32, -1680.72], [-3206.43, -1661.27], [-3199.57, -1669.29], [-3189.81, -1660.99], [-3184.62, -1667.07], [-3179.52, -1662.74], [-3181.67, -1660.23], [-3176.66, -1655.97], [-3171.42, -1651.52], [-3169.24, -1654.07], [-3164.19, -1649.77], [-3169.11, -1644.03], [-3159.48, -1635.85], [-3162.3, -1632.55], [-3165.13, -1634.95], [-3185.61, -1611.07], [-3181.61, -1607.66], [-3177.43, -1604.1], [-3175.08, -1606.85], [-3166.29, -1599.35], [-3169.41, -1595.73], [-3147.4, -1576.98], [-3137.6, -1588.4], [-3136.15, -1590.09], [-3134.74, -1588.9], [-3116.78, -1609.82], [-3129.78, -1620.9], [-3128.47, -1622.44], [-3122.65, -1629.2], [-3125.38, -1631.52], [-3124.42, -1632.63], [-3156.14, -1659.65], [-3158.81, -1656.54], [-3163.93, -1660.9], [-3162.47, -1662.6], [-3172.68, -1671.3], [-3174.08, -1669.67], [-3179.21, -1674.04], [-3180.38, -1672.67], [-3183.46, -1675.3], [-3164.31, -1697.67], [-3163.75, -1697.18], [-3157.64, -1704.32], [-3158.63, -1705.15], [-3152.14, -1712.74], [-3162.34, -1721.41], [-3163.28, -1720.3], [-3165.01, -1721.78], [-3151.7, -1737.34], [-3187.73, -1767.91], [-3193.43, -1761.25], [-3196.5, -1763.86], [-3200.62, -1767.35], [-3212.66, -1753.27], [-3205.47, -1747.16], [-3206.88, -1745.51], [-3206.2, -1744.94], [-3244.71, -1699.9]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7442}}, {"shape": {"outer": [[-3173.27, -1866.3], [-3159.65, -1855.29], [-3161.2, -1853.37], [-3154.05, -1847.6], [-3152.5, -1849.51], [-3143.11, -1841.93], [-3138.89, -1829.87], [-3136.53, -1830.62], [-3124.65, -1799.29], [-3117.55, -1802.07], [-3117.06, -1800.83], [-3111.48, -1803.03], [-3111.96, -1804.26], [-3104.02, -1807.36], [-3120.93, -1851.44], [-3119.58, -1853.04], [-3129.88, -1861.89], [-3130.93, -1860.67], [-3153.14, -1878.53], [-3137.47, -1897.43], [-3150.56, -1907.98], [-3158.48, -1898.58], [-3160.59, -1900.01], [-3173.79, -1883.53], [-3169.48, -1880.24], [-3174.75, -1873.87], [-3170.06, -1870.26], [-3173.27, -1866.3]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1726}}, {"shape": {"outer": [[-3102.45, -1725.23], [-3102.84, -1724.46], [-3112.76, -1730.45], [-3111.35, -1733.18], [-3114.1, -1734.94], [-3106.72, -1747.94], [-3096.29, -1741.22], [-3081.12, -1759.72], [-3038.27, -1724.83], [-3053.11, -1706.75], [-3043.82, -1699.19], [-3050.0, -1691.65], [-3050.86, -1692.35], [-3055.95, -1686.14], [-3078.42, -1704.45], [-3068.15, -1716.96], [-3063.09, -1712.84], [-3058.27, -1718.71], [-3082.84, -1738.72], [-3086.94, -1733.72], [-3082.57, -1730.97], [-3084.38, -1728.16], [-3083.7, -1727.62], [-3090.06, -1717.68], [-3102.45, -1725.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 844, "jobs": 0}}, {"shape": {"outer": [[-3044.81, -1774.49], [-3031.6, -1790.0], [-3044.2, -1800.64], [-3057.4, -1785.13], [-3044.81, -1774.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.268, "pop": 134, "jobs": 0}}, {"shape": {"outer": [[-3148.61, -2021.76], [-3127.49, -1994.29], [-3137.83, -1986.41], [-3136.91, -1985.2], [-3145.34, -1978.76], [-3149.69, -1984.43], [-3150.72, -1983.64], [-3153.6, -1987.39], [-3157.11, -1991.96], [-3152.45, -1995.52], [-3163.74, -2010.21], [-3148.61, -2021.76]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.488, "pop": 0, "jobs": 488}}, {"shape": {"outer": [[-1238.77, -2819.74], [-1238.9, -2824.46], [-1240.21, -2824.43], [-1240.65, -2839.76], [-1239.34, -2839.8], [-1239.8, -2855.85], [-1203.09, -2856.89], [-1203.18, -2859.8], [-1191.05, -2860.14], [-1189.84, -2817.8], [-1195.53, -2817.63], [-1195.37, -2812.27], [-1231.23, -2811.26], [-1231.47, -2819.95], [-1238.77, -2819.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1376}}, {"shape": {"outer": [[-2143.56, -638.34], [-2116.24, -638.96], [-2116.65, -656.55], [-2122.97, -656.41], [-2123.72, -689.44], [-2123.86, -695.33], [-2124.41, -696.65], [-2136.14, -696.38], [-2136.18, -698.46], [-2144.94, -698.26], [-2143.56, -638.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 538, "jobs": 0}}, {"shape": {"outer": [[-2079.76, -643.61], [-2090.95, -643.28], [-2092.05, -681.68], [-2080.87, -682.0], [-2080.76, -678.3], [-2079.76, -643.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.344, "pop": 172, "jobs": 0}}, {"shape": {"outer": [[-2056.38, -670.89], [-2055.57, -645.13], [-2034.14, -645.79], [-2034.74, -665.13], [-2034.94, -671.55], [-2056.38, -670.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.442, "pop": 221, "jobs": 0}}, {"shape": {"outer": [[-2076.72, -643.68], [-2066.14, -643.93], [-2066.95, -678.38], [-2077.53, -678.14], [-2076.72, -643.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.292, "pop": 146, "jobs": 0}}, {"shape": {"outer": [[-1977.45, -648.02], [-1977.93, -658.89], [-1984.91, -658.59], [-1985.08, -662.36], [-2005.16, -661.5], [-2004.53, -646.84], [-1977.45, -648.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.296, "pop": 148, "jobs": 0}}, {"shape": {"outer": [[-2006.65, -591.51], [-2006.23, -579.56], [-1994.86, -579.95], [-1995.28, -591.9], [-2006.65, -591.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1955.54, -585.4], [-1956.68, -624.64], [-1924.28, -625.58], [-1923.89, -612.01], [-1931.37, -611.8], [-1930.62, -586.11], [-1955.54, -585.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.864, "pop": 432, "jobs": 0}}, {"shape": {"outer": [[-1912.94, -616.77], [-1913.19, -624.94], [-1897.39, -625.41], [-1897.13, -617.25], [-1912.94, -616.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1974.2, -589.05], [-1962.31, -589.29], [-1962.95, -621.07], [-1974.84, -620.83], [-1974.2, -589.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.302, "pop": 151, "jobs": 0}}, {"shape": {"outer": [[-1989.94, -598.79], [-1990.54, -619.25], [-1979.4, -619.57], [-1978.8, -599.11], [-1989.94, -598.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-2006.69, -610.17], [-1993.42, -610.81], [-1993.87, -620.25], [-2007.14, -619.62], [-2006.69, -610.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1866.34, -247.43], [-1867.14, -276.97], [-1855.18, -277.3], [-1854.95, -268.94], [-1839.15, -269.37], [-1839.16, -269.83], [-1835.08, -269.94], [-1835.19, -274.15], [-1825.25, -274.42], [-1824.87, -260.23], [-1834.95, -259.96], [-1834.73, -252.14], [-1837.03, -252.09], [-1839.15, -252.02], [-1839.25, -255.67], [-1854.81, -255.25], [-1854.6, -247.75], [-1860.26, -247.6], [-1866.34, -247.43]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.501, "pop": 0, "jobs": 501}}, {"shape": {"outer": [[-2596.68, -915.27], [-2604.76, -922.17], [-2619.6, -904.93], [-2625.31, -898.31], [-2617.23, -891.4], [-2596.68, -915.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.268, "pop": 134, "jobs": 0}}, {"shape": {"outer": [[-2627.24, -901.42], [-2632.7, -906.02], [-2643.26, -914.89], [-2649.17, -919.86], [-2655.76, -912.08], [-2633.82, -893.64], [-2627.24, -901.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[-2651.89, -921.52], [-2646.43, -927.87], [-2637.01, -938.64], [-2631.28, -945.46], [-2639.39, -952.4], [-2660.01, -928.45], [-2651.89, -921.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.27, "pop": 135, "jobs": 0}}, {"shape": {"outer": [[-2680.08, -941.37], [-2674.37, -948.12], [-2657.47, -967.69], [-2649.44, -960.85], [-2672.05, -934.52], [-2680.08, -941.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.294, "pop": 147, "jobs": 0}}, {"shape": {"outer": [[-2687.52, -948.52], [-2688.44, -997.41], [-2698.82, -997.22], [-2697.9, -948.32], [-2687.52, -948.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.406, "pop": 203, "jobs": 0}}, {"shape": {"outer": [[-2981.98, -1223.21], [-2968.64, -1239.01], [-2960.56, -1232.24], [-2941.08, -1215.93], [-2933.6, -1209.65], [-2935.57, -1207.33], [-2946.94, -1193.85], [-2954.42, -1200.13], [-2973.89, -1216.44], [-2981.98, -1223.21]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.794, "pop": 0, "jobs": 794}}, {"shape": {"outer": [[-2981.78, -1242.22], [-2989.01, -1233.68], [-2981.55, -1227.42], [-2974.32, -1235.97], [-2977.1, -1238.29], [-2981.78, -1242.22]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.03, "pop": 0, "jobs": 30}}, {"shape": {"outer": [[-2162.86, -1429.68], [-2163.34, -1444.3], [-2150.83, -1444.72], [-2150.35, -1430.1], [-2162.86, -1429.68]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.117, "pop": 0, "jobs": 117}}, {"shape": {"outer": [[-794.06, -2225.24], [-788.19, -2235.51], [-786.51, -2245.89], [-787.04, -2253.38], [-785.75, -2253.45], [-786.11, -2260.76], [-788.09, -2301.76], [-788.81, -2316.81], [-786.02, -2334.13], [-781.79, -2340.95], [-780.66, -2340.47], [-777.78, -2345.3], [-773.96, -2351.7], [-761.81, -2360.85], [-744.17, -2364.97], [-729.05, -2362.53], [-729.27, -2361.06], [-726.75, -2360.53], [-724.31, -2359.19], [-723.85, -2360.19], [-710.22, -2351.86], [-700.5, -2338.28], [-696.49, -2322.52], [-696.74, -2315.49], [-700.01, -2292.62], [-697.66, -2282.54], [-689.15, -2271.75], [-702.11, -2258.7], [-711.47, -2271.44], [-710.52, -2272.27], [-712.82, -2275.16], [-713.39, -2277.43], [-714.74, -2276.73], [-718.38, -2292.18], [-714.83, -2314.52], [-713.73, -2314.43], [-713.39, -2316.65], [-714.82, -2316.95], [-717.12, -2330.56], [-723.53, -2339.35], [-732.71, -2344.71], [-743.68, -2346.17], [-753.89, -2343.86], [-762.92, -2338.0], [-758.51, -2333.89], [-752.38, -2328.5], [-755.29, -2323.18], [-763.45, -2326.03], [-767.98, -2327.68], [-769.9, -2317.31], [-769.58, -2304.04], [-768.96, -2291.54], [-768.11, -2277.57], [-767.57, -2268.05], [-767.34, -2261.81], [-767.13, -2257.0], [-768.73, -2257.01], [-768.22, -2246.52], [-770.74, -2229.04], [-781.49, -2211.73], [-790.79, -2220.38], [-790.02, -2221.81], [-794.06, -2225.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 2049, "jobs": 0}}, {"shape": {"outer": [[1575.13, 2456.44], [1571.26, 2445.12], [1548.16, 2452.96], [1552.04, 2464.28], [1575.13, 2456.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[-1585.85, -942.22], [-1585.16, -911.37], [-1533.06, -912.53], [-1533.74, -943.38], [-1560.48, -942.78], [-1566.86, -942.64], [-1570.58, -942.56], [-1585.85, -942.22]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1029}}, {"shape": {"outer": [[-1556.02, -854.7], [-1554.86, -825.6], [-1566.86, -825.18], [-1566.0, -807.14], [-1523.11, -808.64], [-1524.57, -846.34], [-1523.72, -846.38], [-1524.0, -849.26], [-1524.3, -851.08], [-1524.85, -852.77], [-1525.75, -854.17], [-1527.17, -855.38], [-1528.73, -856.16], [-1530.46, -856.47], [-1533.9, -856.38], [-1533.86, -855.5], [-1556.02, -854.7]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 1771, "jobs": 0}}, {"shape": {"outer": [[-1543.69, -952.63], [-1544.41, -979.36], [-1575.71, -978.52], [-1579.32, -978.43], [-1602.15, -977.82], [-1601.44, -951.09], [-1570.79, -951.9], [-1567.08, -952.01], [-1543.69, -952.63]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.989, "pop": 0, "jobs": 989}}, {"shape": {"outer": [[-2321.07, -1729.25], [-2331.69, -1739.34], [-2336.77, -1734.03], [-2351.16, -1718.69], [-2345.84, -1713.74], [-2347.92, -1711.52], [-2343.48, -1707.4], [-2339.36, -1706.75], [-2337.87, -1706.51], [-2332.75, -1705.7], [-2329.82, -1702.92], [-2327.55, -1700.76], [-2317.76, -1711.32], [-2320.83, -1714.57], [-2327.49, -1722.26], [-2321.07, -1729.25]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.434, "pop": 0, "jobs": 434}}, {"shape": {"outer": [[-2279.56, -1719.26], [-2270.39, -1726.97], [-2258.79, -1713.26], [-2267.96, -1705.56], [-2279.56, -1719.26]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.138, "pop": 0, "jobs": 138}}, {"shape": {"outer": [[-1878.48, -1883.07], [-1879.53, -1912.31], [-1860.05, -1913.02], [-1860.14, -1915.41], [-1852.12, -1915.7], [-1852.67, -1930.9], [-1810.7, -1932.41], [-1809.01, -1885.57], [-1878.48, -1883.07]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1788}}, {"shape": {"outer": [[50.23, 124.43], [59.34, 114.06], [82.67, 134.4], [73.55, 144.77], [50.23, 124.43]], "holes": []}, "height": 24.5, "data": {"type": "residential", "density": 1.0, "pop": 523, "jobs": 0}}, {"shape": {"outer": [[-326.1, 249.19], [-328.79, 246.73], [-330.29, 248.38], [-336.18, 243.01], [-334.68, 241.38], [-335.25, 240.86], [-328.51, 233.52], [-319.37, 241.85], [-326.1, 249.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-356.78, 221.95], [-381.87, 199.35], [-372.75, 189.31], [-347.67, 211.91], [-356.78, 221.95]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.48, "pop": 240, "jobs": 0}}, {"shape": {"outer": [[-398.48, 517.56], [-396.29, 505.13], [-366.89, 510.25], [-369.08, 522.68], [-398.48, 517.56]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.241, "pop": 0, "jobs": 241}}, {"shape": {"outer": [[-200.57, 142.94], [-216.96, 128.1], [-207.51, 117.74], [-191.13, 132.59], [-200.57, 142.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.248, "pop": 124, "jobs": 0}}, {"shape": {"outer": [[-92.98, 57.72], [-82.66, 46.7], [-57.33, 70.25], [-55.79, 71.69], [-66.11, 82.71], [-92.98, 57.72]], "holes": []}, "height": 38.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1707}}, {"shape": {"outer": [[-326.43, 252.63], [-315.54, 240.96], [-308.72, 247.27], [-309.77, 248.4], [-309.19, 248.95], [-311.22, 251.13], [-311.81, 250.58], [-317.06, 256.21], [-316.49, 256.74], [-318.35, 258.74], [-318.93, 258.21], [-319.61, 258.94], [-320.07, 258.52], [-321.33, 259.87], [-326.47, 255.1], [-325.22, 253.76], [-326.43, 252.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-255.34, 132.33], [-250.51, 126.96], [-252.58, 125.11], [-230.3, 100.31], [-225.94, 104.21], [-225.22, 103.4], [-217.86, 109.97], [-218.24, 110.4], [-214.26, 113.95], [-233.74, 135.64], [-241.7, 144.5], [-255.34, 132.33]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 741, "jobs": 0}}, {"shape": {"outer": [[-360.54, 438.01], [-375.09, 425.17], [-355.07, 402.65], [-340.52, 415.49], [-342.33, 417.47], [-360.54, 438.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.468, "pop": 234, "jobs": 0}}, {"shape": {"outer": [[-337.31, 519.76], [-291.11, 470.75], [-276.86, 483.99], [-280.47, 487.9], [-271.28, 495.94], [-246.26, 494.09], [-266.77, 516.56], [-337.31, 519.76]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1331}}, {"shape": {"outer": [[177.94, 251.29], [163.88, 238.44], [178.82, 222.21], [192.88, 235.06], [177.94, 251.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.336, "pop": 168, "jobs": 0}}, {"shape": {"outer": [[-292.39, 228.19], [-291.73, 228.79], [-292.25, 229.37], [-287.6, 233.59], [-287.08, 233.02], [-284.09, 235.75], [-282.46, 233.97], [-281.86, 234.52], [-277.8, 230.08], [-278.4, 229.53], [-272.24, 222.8], [-271.76, 223.25], [-267.64, 218.75], [-268.12, 218.31], [-266.62, 216.66], [-268.72, 214.75], [-265.12, 210.81], [-266.58, 209.48], [-264.75, 207.49], [-266.0, 206.34], [-264.26, 204.43], [-265.22, 203.55], [-264.76, 203.05], [-268.85, 199.32], [-269.32, 199.84], [-276.1, 193.66], [-283.7, 201.96], [-276.45, 208.53], [-276.19, 210.5], [-292.39, 228.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.408, "pop": 204, "jobs": 0}}, {"shape": {"outer": [[-90.53, 176.64], [-91.71, 155.5], [-93.58, 124.0], [-80.28, 123.41], [-78.73, 124.59], [-65.78, 110.03], [-46.32, 127.09], [-90.53, 176.64]], "holes": []}, "height": 49.0, "data": {"type": "residential", "density": 1.0, "pop": 3693, "jobs": 0}}, {"shape": {"outer": [[-339.72, 236.58], [-330.51, 226.63], [-341.63, 216.42], [-350.84, 226.38], [-339.72, 236.58]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[-375.55, 464.28], [-401.72, 493.4], [-413.88, 482.55], [-400.8, 468.01], [-388.79, 454.65], [-385.64, 457.46], [-383.77, 455.4], [-377.91, 460.62], [-378.69, 461.48], [-375.55, 464.28]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.41, "pop": 0, "jobs": 410}}, {"shape": {"outer": [[-317.23, 260.84], [-310.51, 253.45], [-310.34, 253.61], [-304.51, 247.22], [-304.38, 247.34], [-302.92, 245.73], [-299.9, 248.47], [-301.34, 250.05], [-298.2, 252.89], [-310.76, 266.69], [-311.6, 265.94], [-313.15, 267.64], [-318.45, 262.84], [-316.9, 261.14], [-317.23, 260.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-528.5, -2156.19], [-531.97, -2175.21], [-516.38, -2175.92], [-513.88, -2157.04], [-528.5, -2156.19]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.185, "pop": 0, "jobs": 185}}, {"shape": {"outer": [[-531.87, -2195.02], [-532.18, -2208.76], [-532.24, -2211.38], [-532.34, -2215.94], [-524.28, -2216.13], [-523.81, -2195.2], [-531.87, -2195.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-572.6, -2194.52], [-573.57, -2204.73], [-574.57, -2204.65], [-576.13, -2221.07], [-569.81, -2221.68], [-568.5, -2207.87], [-567.43, -2207.97], [-566.2, -2195.13], [-572.6, -2194.52]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.111, "pop": 0, "jobs": 111}}, {"shape": {"outer": [[-512.08, -2155.57], [-502.95, -2155.89], [-506.3, -2175.11], [-515.26, -2174.86], [-512.08, -2155.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-599.58, -2146.96], [-600.21, -2163.86], [-590.23, -2164.22], [-589.6, -2147.33], [-599.58, -2146.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-605.56, -2196.91], [-605.77, -2198.72], [-606.83, -2198.59], [-608.41, -2211.96], [-598.63, -2213.11], [-597.09, -2199.99], [-598.01, -2199.88], [-597.77, -2197.82], [-605.56, -2196.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-500.38, -2151.75], [-491.47, -2153.32], [-495.16, -2175.43], [-504.76, -2174.94], [-500.38, -2151.75]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.137, "pop": 0, "jobs": 137}}, {"shape": {"outer": [[-580.15, -2158.88], [-580.32, -2164.69], [-581.8, -2164.65], [-582.02, -2172.05], [-577.05, -2172.2], [-576.67, -2158.98], [-580.15, -2158.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.037, "pop": 0, "jobs": 37}}, {"shape": {"outer": [[-1870.8, -698.4], [-1847.35, -699.06], [-1847.7, -711.39], [-1834.19, -711.77], [-1834.89, -736.24], [-1855.18, -735.66], [-1855.59, -749.73], [-1872.26, -749.25], [-1870.8, -698.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.915, "pop": 0, "jobs": 915}}, {"shape": {"outer": [[-1953.99, -742.21], [-1898.25, -744.71], [-1898.82, -757.39], [-1899.61, -757.36], [-1900.06, -767.33], [-1925.76, -766.17], [-1925.63, -763.29], [-1935.62, -762.84], [-1935.71, -764.78], [-1954.97, -763.92], [-1953.99, -742.21]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.774, "pop": 0, "jobs": 774}}, {"shape": {"outer": [[-2008.69, -740.78], [-1989.68, -741.49], [-1989.93, -748.02], [-1967.15, -748.87], [-1967.64, -761.67], [-2003.24, -760.33], [-2002.97, -753.16], [-2009.15, -752.92], [-2008.69, -740.78]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.394, "pop": 0, "jobs": 394}}, {"shape": {"outer": [[-2010.45, -696.2], [-1984.33, -689.78], [-1940.59, -690.85], [-1940.46, -685.65], [-1925.7, -686.01], [-1925.75, -687.74], [-1918.09, -687.95], [-1918.19, -691.46], [-1902.36, -691.89], [-1901.54, -691.91], [-1902.23, -717.04], [-1943.14, -715.91], [-1943.32, -722.41], [-1946.33, -722.34], [-1946.44, -726.09], [-1949.39, -726.0], [-1949.28, -722.35], [-1954.78, -722.19], [-1954.89, -725.94], [-1957.37, -725.86], [-1980.71, -725.13], [-1980.45, -716.69], [-2010.92, -715.74], [-2010.8, -711.69], [-2011.51, -710.83], [-2011.25, -700.8], [-2010.54, -700.27], [-2010.45, -696.2]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2016}}, {"shape": {"outer": [[-1875.7, -656.07], [-1831.42, -657.88], [-1832.3, -679.24], [-1876.57, -677.42], [-1875.7, -656.07]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.606, "pop": 0, "jobs": 606}}, {"shape": {"outer": [[-1959.08, -60.13], [-1958.41, -42.93], [-1958.89, -42.92], [-1958.82, -41.27], [-1931.29, -42.37], [-1931.32, -43.06], [-1930.8, -43.07], [-1932.3, -80.37], [-1932.49, -85.14], [-1947.61, -84.54], [-1948.91, -84.43], [-1948.69, -79.71], [-1948.36, -72.41], [-1948.32, -70.84], [-1963.88, -70.22], [-1964.12, -76.39], [-1975.19, -75.95], [-1974.98, -71.21], [-1974.53, -59.53], [-1959.08, -60.13]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.803, "pop": 0, "jobs": 803}}, {"shape": {"outer": [[-1994.4, -559.42], [-1993.72, -545.57], [-2000.61, -545.22], [-2000.16, -535.99], [-1968.34, -537.56], [-1968.79, -546.77], [-1985.51, -545.96], [-1986.17, -559.5], [-1986.31, -562.21], [-1983.02, -562.37], [-1983.3, -568.12], [-1969.78, -568.78], [-1970.25, -578.3], [-2001.96, -576.75], [-2001.49, -567.32], [-1994.8, -567.64], [-1994.4, -559.42]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.51, "pop": 0, "jobs": 510}}, {"shape": {"outer": [[-1904.05, -366.14], [-1904.67, -382.14], [-1892.73, -382.61], [-1892.67, -381.08], [-1891.09, -381.14], [-1890.88, -375.83], [-1890.59, -368.3], [-1892.17, -368.24], [-1892.11, -366.61], [-1904.05, -366.14]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-2831.5, -175.15], [-2841.41, -176.63], [-2841.98, -171.57], [-2853.66, -173.26], [-2855.95, -158.64], [-2824.97, -153.42], [-2825.5, -150.02], [-2826.65, -150.17], [-2827.66, -150.03], [-2828.51, -149.61], [-2829.42, -148.69], [-2829.73, -147.97], [-2829.88, -147.05], [-2829.66, -145.77], [-2829.1, -144.82], [-2828.36, -144.19], [-2827.33, -143.76], [-2817.09, -143.62], [-2816.2, -143.93], [-2815.32, -144.6], [-2814.88, -145.62], [-2814.84, -146.52], [-2815.19, -147.64], [-2815.86, -148.21], [-2816.91, -148.61], [-2819.66, -149.03], [-2819.38, -150.7], [-2819.12, -152.43], [-2812.61, -151.34], [-2809.69, -151.87], [-2807.24, -153.09], [-2805.59, -154.46], [-2804.32, -156.8], [-2803.98, -160.09], [-2805.75, -163.14], [-2806.95, -164.69], [-2810.09, -165.76], [-2807.28, -182.21], [-2820.1, -183.9], [-2821.4, -183.63], [-2822.56, -183.12], [-2823.1, -179.46], [-2830.77, -180.48], [-2831.5, -175.15]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1363}}, {"shape": {"outer": [[-2334.49, -75.92], [-2294.17, -77.22], [-2294.66, -92.57], [-2281.64, -92.99], [-2265.01, -93.52], [-2265.53, -109.84], [-2266.05, -125.98], [-2284.41, -125.39], [-2284.56, -129.83], [-2286.05, -129.79], [-2336.18, -128.17], [-2335.05, -93.34], [-2334.49, -75.92]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1999}}, {"shape": {"outer": [[-2407.85, -82.39], [-2407.26, -64.91], [-2392.94, -65.29], [-2393.42, -83.15], [-2407.85, -82.39]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.163, "pop": 0, "jobs": 163}}, {"shape": {"outer": [[-2908.61, 345.62], [-2906.04, 352.76], [-2897.24, 350.37], [-2897.28, 348.28], [-2887.35, 340.95], [-2887.41, 339.74], [-2886.17, 338.73], [-2884.78, 338.81], [-2875.97, 328.33], [-2876.15, 327.07], [-2875.16, 325.62], [-2873.8, 325.48], [-2868.45, 314.31], [-2864.15, 316.48], [-2851.67, 335.44], [-2819.02, 314.87], [-2792.19, 297.97], [-2800.71, 284.89], [-2802.15, 285.82], [-2805.99, 279.93], [-2797.31, 275.77], [-2787.48, 275.48], [-2769.98, 271.9], [-2756.73, 266.89], [-2757.53, 264.77], [-2759.56, 259.38], [-2761.9, 260.16], [-2765.8, 261.46], [-2766.59, 255.36], [-2770.68, 255.46], [-2771.21, 254.4], [-2777.85, 254.7], [-2777.9, 255.25], [-2785.66, 255.47], [-2785.69, 256.71], [-2794.71, 257.05], [-2794.74, 256.07], [-2810.25, 256.67], [-2810.22, 257.39], [-2812.96, 257.49], [-2812.98, 256.77], [-2826.08, 257.27], [-2833.45, 256.31], [-2844.37, 253.78], [-2853.2, 253.41], [-2865.82, 253.94], [-2865.71, 256.68], [-2865.61, 259.4], [-2868.83, 260.81], [-2866.41, 266.41], [-2870.05, 267.85], [-2879.47, 268.11], [-2878.88, 283.35], [-2876.84, 283.35], [-2877.08, 291.7], [-2879.66, 291.95], [-2881.53, 300.76], [-2885.8, 309.37], [-2897.56, 304.74], [-2901.55, 313.74], [-2891.39, 318.97], [-2896.1, 324.59], [-2894.5, 326.15], [-2899.32, 330.79], [-2900.93, 329.48], [-2910.19, 335.22], [-2913.23, 337.82], [-2907.94, 344.31], [-2908.61, 345.62]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 4624, "jobs": 0}}, {"shape": {"outer": [[-2397.88, 310.93], [-2398.94, 273.95], [-2387.2, 273.61], [-2387.38, 267.54], [-2373.14, 267.13], [-2373.36, 259.54], [-2366.98, 259.36], [-2366.9, 262.26], [-2364.23, 262.18], [-2364.41, 256.03], [-2351.25, 255.65], [-2350.93, 266.83], [-2349.77, 266.8], [-2349.52, 275.67], [-2350.67, 275.71], [-2349.7, 309.74], [-2350.44, 309.76], [-2350.34, 313.03], [-2347.16, 312.94], [-2346.76, 326.82], [-2355.05, 327.06], [-2355.03, 327.74], [-2364.94, 328.02], [-2364.96, 327.35], [-2386.37, 327.96], [-2386.77, 314.15], [-2371.83, 313.72], [-2371.86, 312.85], [-2366.79, 312.71], [-2362.3, 312.58], [-2362.27, 313.44], [-2352.89, 313.17], [-2352.99, 309.64], [-2362.98, 309.93], [-2363.82, 280.61], [-2367.53, 280.72], [-2385.24, 281.23], [-2384.93, 291.94], [-2384.4, 310.54], [-2397.88, 310.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 865, "jobs": 0}}, {"shape": {"outer": [[-2318.18, 327.76], [-2318.34, 319.88], [-2319.66, 319.91], [-2319.87, 310.16], [-2318.56, 310.13], [-2319.01, 288.66], [-2311.34, 288.5], [-2311.42, 284.34], [-2313.7, 284.38], [-2313.87, 276.42], [-2305.1, 276.23], [-2304.93, 284.03], [-2302.49, 283.98], [-2302.65, 276.74], [-2265.56, 275.95], [-2265.3, 287.89], [-2259.56, 287.77], [-2259.13, 307.41], [-2271.72, 307.67], [-2272.09, 290.2], [-2302.29, 290.84], [-2302.34, 288.26], [-2305.86, 288.33], [-2305.75, 293.32], [-2305.37, 311.57], [-2288.03, 311.2], [-2288.04, 310.66], [-2278.39, 310.45], [-2278.37, 311.01], [-2247.4, 310.34], [-2247.1, 324.11], [-2258.68, 324.37], [-2258.66, 325.43], [-2268.31, 325.65], [-2268.33, 324.57], [-2301.18, 325.28], [-2301.4, 315.11], [-2305.2, 315.19], [-2304.93, 327.47], [-2318.18, 327.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 867, "jobs": 0}}, {"shape": {"outer": [[-1550.42, -463.06], [-1568.61, -462.14], [-1568.17, -453.52], [-1567.16, -453.57], [-1567.12, -453.01], [-1549.95, -453.87], [-1550.42, -463.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2937.05, 372.99], [-2932.61, 380.11], [-2921.39, 373.18], [-2925.84, 366.06], [-2937.05, 372.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1603.86, -435.45], [-1595.75, -435.85], [-1595.69, -434.63], [-1583.69, -435.22], [-1584.17, -444.82], [-1604.27, -443.82], [-1603.86, -435.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2157.66, -110.3], [-2082.66, -113.17], [-2084.11, -151.11], [-2102.28, -150.41], [-2107.61, -150.21], [-2150.92, -148.55], [-2156.83, -148.33], [-2156.74, -146.19], [-2159.95, -146.06], [-2159.8, -142.23], [-2158.89, -142.26], [-2157.66, -110.3]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1823}}, {"shape": {"outer": [[-1228.4, -667.36], [-1230.24, -676.55], [-1230.5, -683.29], [-1230.41, -689.44], [-1230.41, -692.6], [-1211.23, -693.4], [-1213.28, -735.43], [-1214.08, -735.09], [-1255.6, -716.95], [-1251.02, -706.63], [-1246.25, -695.92], [-1263.26, -688.09], [-1298.43, -685.82], [-1296.91, -681.99], [-1303.12, -679.16], [-1286.08, -641.03], [-1272.65, -647.07], [-1228.4, -667.36]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2426}}, {"shape": {"outer": [[-2501.5, -694.5], [-2502.14, -716.3], [-2502.96, -716.28], [-2503.02, -718.29], [-2538.62, -717.25], [-2538.55, -715.23], [-2539.44, -715.21], [-2538.91, -697.8], [-2538.8, -693.41], [-2524.22, -693.84], [-2508.7, -687.39], [-2507.72, -688.24], [-2504.32, -690.88], [-2502.66, -691.89], [-2501.5, -694.5]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.271, "pop": 0, "jobs": 271}}, {"shape": {"outer": [[-2426.18, -697.45], [-2426.3, -699.71], [-2423.5, -699.85], [-2423.97, -709.94], [-2426.09, -756.28], [-2424.56, -756.35], [-2424.94, -765.25], [-2425.03, -767.5], [-2429.06, -767.34], [-2429.13, -769.14], [-2485.66, -766.97], [-2485.57, -764.64], [-2489.51, -764.49], [-2489.3, -759.03], [-2489.12, -754.57], [-2488.13, -754.61], [-2486.65, -717.85], [-2489.46, -717.73], [-2489.3, -713.96], [-2486.46, -714.07], [-2486.12, -706.26], [-2487.03, -706.21], [-2486.69, -699.03], [-2486.48, -694.58], [-2426.18, -697.45]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6310}}, {"shape": {"outer": [[-2407.5, -686.36], [-2404.61, -684.31], [-2401.77, -681.51], [-2398.66, -678.22], [-2395.41, -673.82], [-2394.01, -670.99], [-2381.64, -677.65], [-2383.39, -679.82], [-2374.65, -686.35], [-2365.74, -693.14], [-2369.87, -698.51], [-2370.56, -698.02], [-2384.5, -688.2], [-2388.13, -692.22], [-2392.2, -695.78], [-2396.52, -699.38], [-2401.14, -702.37], [-2406.99, -704.98], [-2401.19, -718.4], [-2414.53, -723.08], [-2416.15, -717.12], [-2418.28, -709.21], [-2423.62, -710.1], [-2423.97, -709.94], [-2423.5, -699.85], [-2426.3, -699.71], [-2426.18, -697.45], [-2426.68, -693.93], [-2422.47, -693.01], [-2418.82, -691.92], [-2414.99, -690.56], [-2411.22, -688.63], [-2407.5, -686.36]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1574}}, {"shape": {"outer": [[-1679.59, -937.7], [-1668.24, -938.0], [-1668.17, -935.14], [-1658.96, -935.38], [-1659.03, -938.23], [-1647.25, -938.55], [-1648.37, -981.18], [-1656.65, -980.96], [-1659.73, -980.88], [-1680.7, -980.33], [-1679.59, -937.7]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.9, "pop": 0, "jobs": 900}}, {"shape": {"outer": [[-1613.69, -997.45], [-1613.62, -994.33], [-1657.03, -992.97], [-1656.65, -980.96], [-1659.73, -980.88], [-1660.2, -995.99], [-1613.69, -997.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-1669.25, -1141.51], [-1652.95, -1141.56], [-1650.08, -1141.57], [-1650.12, -1145.96], [-1651.81, -1145.85], [-1652.31, -1168.64], [-1651.02, -1168.67], [-1650.8, -1172.06], [-1648.57, -1173.08], [-1647.33, -1174.88], [-1647.41, -1189.01], [-1648.28, -1191.39], [-1651.68, -1191.77], [-1651.48, -1195.8], [-1652.94, -1196.39], [-1653.55, -1217.42], [-1652.09, -1217.14], [-1652.07, -1228.05], [-1684.76, -1227.11], [-1684.24, -1214.77], [-1670.56, -1214.99], [-1670.13, -1194.62], [-1668.76, -1146.81], [-1669.37, -1145.52], [-1669.25, -1141.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 712, "jobs": 0}}, {"shape": {"outer": [[-1575.58, -1082.56], [-1583.89, -1082.36], [-1589.33, -1082.21], [-1615.8, -1081.55], [-1613.83, -1002.88], [-1613.69, -997.45], [-1613.62, -994.33], [-1613.54, -991.18], [-1579.62, -992.03], [-1576.01, -992.12], [-1573.55, -992.18], [-1573.57, -992.91], [-1573.68, -997.03], [-1573.75, -1000.33], [-1573.84, -1003.74], [-1574.3, -1021.86], [-1575.32, -1063.11], [-1571.67, -1063.2], [-1571.78, -1067.65], [-1574.61, -1067.58], [-1574.83, -1076.34], [-1575.43, -1076.32], [-1575.51, -1079.72], [-1575.58, -1082.56]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2330}}, {"shape": {"outer": [[-1570.01, -1020.07], [-1568.28, -1021.93], [-1566.7, -1021.97], [-1566.66, -1020.64], [-1559.63, -1020.84], [-1558.25, -1020.88], [-1541.44, -1021.4], [-1536.19, -1021.56], [-1536.19, -1024.78], [-1532.76, -1025.0], [-1530.9, -1025.12], [-1527.76, -1025.71], [-1530.23, -1115.01], [-1531.23, -1151.37], [-1556.68, -1150.67], [-1571.1, -1150.28], [-1570.92, -1144.19], [-1570.66, -1137.56], [-1570.34, -1128.17], [-1570.2, -1121.24], [-1570.15, -1115.09], [-1569.99, -1110.02], [-1569.81, -1104.13], [-1569.69, -1100.57], [-1569.48, -1093.76], [-1569.04, -1080.01], [-1571.46, -1082.11], [-1574.0, -1079.78], [-1575.51, -1079.72], [-1575.43, -1076.32], [-1574.83, -1076.34], [-1574.61, -1067.58], [-1571.78, -1067.65], [-1571.67, -1063.2], [-1575.32, -1063.11], [-1574.3, -1021.86], [-1571.77, -1021.93], [-1570.01, -1020.07]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3525}}, {"shape": {"outer": [[-156.32, 451.65], [-154.2, 453.56], [-152.57, 451.77], [-150.3, 453.84], [-151.86, 455.54], [-149.72, 457.48], [-158.21, 466.79], [-164.74, 460.89], [-156.32, 451.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.075, "pop": 0, "jobs": 75}}, {"shape": {"outer": [[-2900.3, -1182.37], [-2917.91, -1161.46], [-2926.94, -1169.02], [-2909.34, -1189.94], [-2900.3, -1182.37]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.452, "pop": 226, "jobs": 0}}, {"shape": {"outer": [[-2909.5, -1163.77], [-2902.73, -1172.03], [-2894.1, -1165.01], [-2900.88, -1156.75], [-2909.5, -1163.77]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2898.47, -1157.1], [-2887.14, -1170.55], [-2877.88, -1162.8], [-2889.19, -1149.35], [-2898.47, -1157.1]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.119, "pop": 0, "jobs": 119}}, {"shape": {"outer": [[-2869.4, -733.77], [-2860.11, -734.04], [-2860.22, -737.68], [-2838.5, -738.32], [-2838.45, -736.65], [-2807.22, -737.57], [-2807.54, -748.36], [-2810.21, -748.28], [-2811.07, -777.45], [-2808.7, -777.52], [-2809.02, -788.22], [-2839.92, -787.31], [-2839.87, -785.58], [-2862.02, -784.92], [-2862.11, -787.74], [-2870.71, -787.48], [-2870.31, -774.1], [-2870.21, -770.97], [-2838.01, -771.94], [-2837.4, -751.79], [-2869.92, -750.81], [-2869.85, -748.65], [-2869.4, -733.77]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1989}}, {"shape": {"outer": [[-2923.62, -1175.43], [-2910.33, -1190.77], [-2919.82, -1198.94], [-2929.81, -1187.4], [-2927.08, -1185.04], [-2930.38, -1181.24], [-2923.62, -1175.43]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.132, "pop": 0, "jobs": 132}}, {"shape": {"outer": [[-2570.34, -145.98], [-2571.29, -145.98], [-2571.56, -155.45], [-2572.74, -155.42], [-2573.67, -156.1], [-2574.75, -166.13], [-2574.91, -179.12], [-2565.45, -179.38], [-2565.44, -181.83], [-2550.37, -182.51], [-2546.5, -182.69], [-2543.39, -182.8], [-2533.45, -182.62], [-2528.91, -181.6], [-2524.21, -179.7], [-2524.93, -177.01], [-2530.69, -176.19], [-2530.57, -174.92], [-2530.38, -172.96], [-2533.96, -172.82], [-2532.88, -169.83], [-2530.33, -166.03], [-2527.87, -166.33], [-2525.12, -159.77], [-2511.52, -160.76], [-2510.21, -156.36], [-2526.8, -150.91], [-2534.72, -149.05], [-2534.54, -145.47], [-2543.51, -141.53], [-2549.11, -139.4], [-2555.01, -137.84], [-2559.71, -136.97], [-2564.96, -136.46], [-2569.76, -136.51], [-2570.34, -145.98]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2179}}, {"shape": {"outer": [[-1318.91, -458.1], [-1255.22, -461.15], [-1242.77, -461.74], [-1242.89, -464.36], [-1222.88, -465.31], [-1223.39, -475.89], [-1234.73, -475.35], [-1235.99, -501.6], [-1298.06, -498.63], [-1297.98, -497.02], [-1309.08, -496.48], [-1309.13, -497.56], [-1312.02, -497.41], [-1312.11, -499.34], [-1333.27, -498.26], [-1331.66, -467.02], [-1330.55, -467.07], [-1330.5, -466.19], [-1333.32, -466.05], [-1332.98, -458.99], [-1325.79, -459.34], [-1318.98, -459.67], [-1318.91, -458.1]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3309}}, {"shape": {"outer": [[-1312.55, -596.21], [-1317.63, -594.75], [-1321.47, -593.56], [-1327.07, -592.25], [-1334.1, -608.0], [-1337.24, -614.68], [-1336.89, -615.46], [-1341.34, -625.46], [-1341.4, -629.18], [-1335.26, -632.3], [-1337.72, -637.7], [-1342.68, -648.57], [-1342.88, -649.0], [-1343.52, -660.32], [-1341.7, -665.24], [-1337.35, -670.09], [-1305.57, -684.47], [-1303.12, -679.16], [-1286.08, -641.03], [-1272.65, -647.07], [-1271.06, -643.33], [-1269.57, -643.91], [-1267.43, -640.02], [-1259.76, -622.89], [-1268.46, -617.31], [-1275.08, -613.41], [-1280.58, -610.3], [-1286.37, -607.47], [-1296.29, -603.01], [-1312.55, -596.21]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2890}}, {"shape": {"outer": [[-2524.26, 292.9], [-2527.16, 292.98], [-2527.14, 294.22], [-2531.65, 294.35], [-2531.7, 292.44], [-2539.43, 292.66], [-2540.56, 251.43], [-2564.12, 252.07], [-2564.1, 252.93], [-2567.94, 253.04], [-2568.18, 244.71], [-2570.78, 244.79], [-2570.97, 237.54], [-2527.45, 236.37], [-2527.43, 237.11], [-2521.46, 236.95], [-2521.26, 244.62], [-2526.47, 244.75], [-2526.43, 246.0], [-2524.83, 245.96], [-2523.63, 290.48], [-2524.32, 290.5], [-2524.26, 292.9]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 942, "jobs": 0}}, {"shape": {"outer": [[-2013.59, -824.71], [-2013.94, -833.72], [-2001.43, -834.23], [-2001.07, -825.21], [-2013.59, -824.71]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.072, "pop": 0, "jobs": 72}}, {"shape": {"outer": [[-2188.81, -885.8], [-2176.02, -874.92], [-2188.84, -859.93], [-2201.63, -870.8], [-2188.81, -885.8]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.212, "pop": 0, "jobs": 212}}, {"shape": {"outer": [[-1591.15, -610.58], [-1599.69, -610.16], [-1599.59, -608.05], [-1607.9, -607.64], [-1608.3, -615.94], [-1610.65, -615.83], [-1611.09, -624.88], [-1605.62, -625.15], [-1606.66, -646.01], [-1611.33, -645.77], [-1611.82, -655.62], [-1609.22, -655.75], [-1609.65, -664.19], [-1600.86, -664.63], [-1600.74, -662.19], [-1594.98, -662.48], [-1595.15, -665.81], [-1585.33, -666.29], [-1584.93, -658.31], [-1587.29, -658.2], [-1586.99, -652.29], [-1593.98, -651.95], [-1594.1, -654.49], [-1597.05, -654.34], [-1596.72, -647.72], [-1592.41, -647.94], [-1591.26, -624.88], [-1596.64, -624.62], [-1596.27, -617.08], [-1591.48, -617.32], [-1591.15, -610.58]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.992, "pop": 496, "jobs": 0}}, {"shape": {"outer": [[-1624.83, -600.98], [-1625.61, -617.4], [-1654.75, -616.01], [-1653.96, -599.59], [-1624.83, -600.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.384, "pop": 192, "jobs": 0}}, {"shape": {"outer": [[-1551.88, -671.06], [-1576.06, -669.86], [-1574.81, -644.91], [-1574.07, -644.95], [-1573.63, -635.96], [-1574.81, -635.9], [-1574.58, -631.32], [-1582.1, -630.94], [-1581.09, -610.77], [-1578.66, -610.9], [-1578.55, -608.85], [-1568.29, -609.36], [-1568.39, -611.21], [-1563.61, -611.46], [-1563.66, -612.46], [-1560.59, -612.6], [-1560.85, -617.83], [-1553.93, -618.17], [-1554.13, -622.05], [-1550.11, -622.25], [-1550.93, -638.68], [-1562.02, -638.11], [-1562.37, -645.17], [-1550.62, -645.77], [-1551.88, -671.06]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 991, "jobs": 0}}, {"shape": {"outer": [[-1627.26, -644.18], [-1644.49, -643.4], [-1643.48, -621.23], [-1626.25, -622.01], [-1627.26, -644.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.306, "pop": 153, "jobs": 0}}, {"shape": {"outer": [[-1657.89, -601.29], [-1659.31, -630.1], [-1676.57, -629.25], [-1675.14, -600.44], [-1657.89, -601.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.398, "pop": 199, "jobs": 0}}, {"shape": {"outer": [[-1661.02, -662.75], [-1677.65, -661.88], [-1676.13, -632.8], [-1659.49, -633.67], [-1661.02, -662.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.388, "pop": 194, "jobs": 0}}, {"shape": {"outer": [[-1628.37, -664.19], [-1657.57, -662.64], [-1656.69, -646.13], [-1627.49, -647.68], [-1628.37, -664.19]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.508, "pop": 254, "jobs": 0}}, {"shape": {"outer": [[-1739.78, -638.6], [-1738.79, -616.81], [-1721.6, -617.59], [-1722.59, -639.38], [-1739.78, -638.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[-1710.69, -643.97], [-1711.5, -660.71], [-1738.03, -659.74], [-1739.77, -659.73], [-1740.84, -658.94], [-1740.97, -657.68], [-1739.79, -656.46], [-1740.44, -656.4], [-1740.6, -648.6], [-1740.04, -642.63], [-1710.69, -643.97]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.868, "pop": 434, "jobs": 0}}, {"shape": {"outer": [[-1691.87, -661.93], [-1708.35, -661.14], [-1706.94, -631.67], [-1690.46, -632.46], [-1691.87, -661.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.39, "pop": 195, "jobs": 0}}, {"shape": {"outer": [[-1690.3, -628.97], [-1719.33, -627.83], [-1718.65, -610.59], [-1689.61, -611.73], [-1690.3, -628.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.402, "pop": 201, "jobs": 0}}, {"shape": {"outer": [[-838.88, -889.73], [-853.51, -903.01], [-825.93, -933.17], [-811.3, -919.89], [-838.88, -889.73]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 0.904, "pop": 0, "jobs": 904}}, {"shape": {"outer": [[-803.15, -896.96], [-791.05, -886.01], [-791.81, -885.17], [-790.15, -883.67], [-781.02, -893.7], [-766.45, -880.55], [-791.07, -853.51], [-805.2, -866.29], [-814.04, -856.59], [-828.23, -869.43], [-803.15, -896.96]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1188}}, {"shape": {"outer": [[-781.28, -833.57], [-757.36, -859.48], [-764.64, -866.15], [-759.02, -872.23], [-737.74, -852.72], [-767.28, -820.73], [-773.01, -825.98], [-778.85, -831.32], [-781.28, -833.57]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 636, "jobs": 0}}, {"shape": {"outer": [[-537.66, -1198.82], [-528.58, -1202.35], [-555.49, -1264.53], [-565.01, -1260.77], [-537.66, -1198.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.54, "pop": 270, "jobs": 0}}, {"shape": {"outer": [[-2557.44, -213.56], [-2557.75, -224.43], [-2558.09, -236.32], [-2566.2, -236.09], [-2566.23, -236.9], [-2582.98, -236.43], [-2583.1, -240.85], [-2591.94, -240.59], [-2594.14, -240.53], [-2594.29, -245.56], [-2599.29, -245.41], [-2602.66, -245.32], [-2602.52, -240.7], [-2614.36, -240.37], [-2614.19, -234.23], [-2615.24, -234.2], [-2614.53, -209.33], [-2598.98, -209.78], [-2595.83, -209.87], [-2595.85, -210.82], [-2566.24, -211.68], [-2566.29, -213.31], [-2557.44, -213.56]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1039}}, {"shape": {"outer": [[-3231.9, -1952.72], [-3232.65, -1951.78], [-3228.81, -1948.66], [-3243.74, -1930.41], [-3243.06, -1929.85], [-3247.96, -1923.86], [-3240.63, -1917.9], [-3235.74, -1923.89], [-3234.86, -1923.18], [-3234.29, -1923.89], [-3230.27, -1920.63], [-3215.15, -1939.11], [-3193.05, -1921.16], [-3193.81, -1920.22], [-3190.35, -1917.41], [-3189.51, -1918.42], [-3188.06, -1917.03], [-3195.72, -1907.15], [-3204.71, -1911.01], [-3207.03, -1906.39], [-3209.88, -1907.49], [-3214.53, -1897.9], [-3191.3, -1887.0], [-3156.75, -1929.43], [-3166.41, -1942.8], [-3180.82, -1925.73], [-3189.26, -1932.57], [-3210.24, -1949.57], [-3212.38, -1951.31], [-3198.08, -1968.78], [-3207.06, -1976.08], [-3214.24, -1967.3], [-3218.16, -1970.49], [-3221.14, -1966.84], [-3217.19, -1963.63], [-3221.33, -1958.57], [-3223.15, -1960.19], [-3224.65, -1961.52], [-3231.9, -1952.72]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 1.0, "pop": 1327, "jobs": 0}}, {"shape": {"outer": [[-1201.8, -2968.91], [-1213.17, -3029.59], [-1230.88, -3026.29], [-1231.84, -3031.39], [-1239.35, -3029.98], [-1227.03, -2964.21], [-1201.8, -2968.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1039}}, {"shape": {"outer": [[-1154.55, -3002.66], [-1166.1, -3063.04], [-1196.65, -3057.23], [-1184.73, -2994.92], [-1172.44, -2997.26], [-1172.8, -2999.2], [-1154.55, -3002.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1239}}, {"shape": {"outer": [[-1344.21, -3048.59], [-1308.96, -3049.6], [-1310.28, -3095.97], [-1324.49, -3095.56], [-1324.6, -3099.58], [-1338.37, -3099.19], [-1338.25, -3095.17], [-1352.73, -3094.75], [-1352.55, -3088.36], [-1358.26, -3088.19], [-1364.47, -3088.02], [-1363.12, -3041.02], [-1344.01, -3041.56], [-1344.21, -3048.59]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1687}}, {"shape": {"outer": [[-972.93, -3004.07], [-979.7, -3005.08], [-983.65, -2992.63], [-980.31, -2983.44], [-950.11, -2984.47], [-950.85, -2999.32], [-949.87, -2999.36], [-950.39, -3013.44], [-942.14, -3013.74], [-941.99, -3009.61], [-933.4, -3009.92], [-934.01, -3026.72], [-942.89, -3026.39], [-943.28, -3037.12], [-951.26, -3036.83], [-951.41, -3040.81], [-959.96, -3040.52], [-960.53, -3057.44], [-973.8, -3056.99], [-973.24, -3040.07], [-974.43, -3040.03], [-972.93, -3004.07]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1302}}, {"shape": {"outer": [[221.68, -286.39], [251.67, -319.46], [253.69, -317.65], [255.75, -319.92], [260.88, -317.31], [265.73, -314.15], [269.5, -310.91], [273.06, -307.25], [276.57, -302.92], [279.72, -298.33], [277.46, -295.85], [279.81, -293.74], [249.85, -260.73], [246.39, -263.84], [244.57, -261.84], [223.1, -281.17], [225.07, -283.34], [221.68, -286.39]], "holes": []}, "height": 35.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5425}}, {"shape": {"outer": [[-2919.29, -1224.57], [-2903.07, -1243.07], [-2890.56, -1232.18], [-2906.78, -1213.68], [-2919.29, -1224.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.326, "pop": 163, "jobs": 0}}, {"shape": {"outer": [[-1905.39, -1006.74], [-1906.22, -1045.66], [-1910.44, -1045.56], [-1910.46, -1046.6], [-1950.09, -1045.75], [-1950.07, -1044.7], [-1952.95, -1044.64], [-1952.66, -1030.51], [-1945.2, -1030.67], [-1944.67, -1005.9], [-1905.39, -1006.74]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1407}}, {"shape": {"outer": [[-1900.5, -1012.35], [-1895.99, -1012.47], [-1895.65, -1009.16], [-1892.56, -1005.75], [-1887.63, -1005.84], [-1884.97, -1009.42], [-1884.83, -1012.74], [-1880.42, -1012.86], [-1880.69, -1023.73], [-1877.74, -1023.81], [-1877.88, -1029.01], [-1880.82, -1028.94], [-1881.06, -1038.44], [-1880.0, -1038.47], [-1880.17, -1045.01], [-1884.66, -1044.9], [-1884.73, -1047.66], [-1898.52, -1047.32], [-1898.45, -1044.55], [-1902.45, -1044.45], [-1902.28, -1037.84], [-1901.14, -1037.87], [-1900.5, -1012.35]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.497, "pop": 0, "jobs": 497}}, {"shape": {"outer": [[-2680.62, -1020.43], [-2666.03, -1037.95], [-2658.6, -1031.81], [-2673.2, -1014.3], [-2680.62, -1020.43]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.141, "pop": 0, "jobs": 141}}, {"shape": {"outer": [[-2311.34, -792.28], [-2301.48, -792.69], [-2301.53, -793.9], [-2283.99, -794.62], [-2276.14, -794.95], [-2275.99, -791.17], [-2255.1, -792.04], [-2255.26, -795.89], [-2246.89, -796.23], [-2237.52, -796.61], [-2229.32, -796.96], [-2229.17, -793.22], [-2208.58, -794.07], [-2208.74, -797.84], [-2182.76, -798.91], [-2182.73, -798.19], [-2173.44, -798.58], [-2173.74, -805.85], [-2172.39, -805.9], [-2172.57, -810.14], [-2173.54, -810.1], [-2173.86, -817.64], [-2177.14, -817.5], [-2183.53, -817.23], [-2183.48, -815.97], [-2198.91, -815.32], [-2209.17, -814.88], [-2209.33, -818.88], [-2211.99, -818.77], [-2219.98, -818.43], [-2227.65, -818.09], [-2230.46, -817.98], [-2230.44, -817.39], [-2253.22, -816.41], [-2259.35, -816.16], [-2266.56, -815.85], [-2274.17, -815.52], [-2276.94, -815.41], [-2276.78, -811.8], [-2292.94, -811.12], [-2297.61, -810.92], [-2302.61, -810.7], [-2302.66, -811.79], [-2311.83, -811.41], [-2311.8, -810.83], [-2311.52, -804.24], [-2313.6, -804.14], [-2313.4, -799.57], [-2311.65, -799.64], [-2311.34, -792.28]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 3923, "jobs": 0}}, {"shape": {"outer": [[1215.07, 2076.93], [1220.23, 2084.99], [1218.35, 2086.12], [1229.56, 2103.64], [1234.94, 2101.03], [1237.91, 2105.61], [1240.88, 2110.21], [1235.91, 2113.21], [1249.16, 2136.25], [1226.04, 2149.33], [1219.65, 2137.97], [1216.81, 2139.75], [1193.79, 2101.69], [1195.84, 2100.41], [1190.54, 2091.89], [1215.07, 2076.93]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1298}}, {"shape": {"outer": [[329.47, -182.74], [330.7, -182.56], [331.91, -182.8], [332.79, -183.73], [364.02, -217.55], [365.24, -219.15], [342.38, -239.59], [310.24, -204.28], [309.93, -203.08], [309.75, -202.06], [309.91, -200.94], [310.3, -200.09], [329.47, -182.74]], "holes": []}, "height": 49.0, "data": {"type": "residential", "density": 1.0, "pop": 3813, "jobs": 0}}, {"shape": {"outer": [[330.75, -181.52], [333.06, -179.39], [352.56, -161.42], [385.05, -196.86], [382.68, -198.88], [383.26, -199.51], [382.28, -200.41], [383.0, -201.18], [375.94, -207.66], [366.75, -216.09], [366.23, -215.52], [364.02, -217.55], [332.79, -183.73], [330.75, -181.52]], "holes": []}, "height": 49.0, "data": {"type": "residential", "density": 1.0, "pop": 3588, "jobs": 0}}, {"shape": {"outer": [[352.56, -161.42], [374.32, -141.92], [374.93, -142.57], [401.97, -172.56], [404.46, -175.05], [385.05, -196.86], [352.56, -161.42]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 1417, "jobs": 0}}, {"shape": {"outer": [[374.93, -142.57], [384.21, -134.4], [403.95, -156.5], [407.27, -153.33], [409.28, -155.81], [419.95, -145.74], [422.47, -148.54], [423.76, -152.48], [425.55, -154.89], [418.85, -159.56], [417.33, -157.31], [404.77, -169.64], [401.97, -172.56], [374.93, -142.57]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.42, "pop": 0, "jobs": 420}}, {"shape": {"outer": [[397.74, -121.0], [418.37, -102.52], [428.89, -95.95], [447.25, -116.37], [440.03, -122.82], [440.95, -123.84], [432.95, -130.98], [435.73, -134.08], [437.91, -137.6], [422.47, -148.54], [420.59, -146.43], [400.9, -124.52], [399.2, -122.63], [398.27, -121.6], [397.74, -121.0]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.863, "pop": 0, "jobs": 863}}, {"shape": {"outer": [[-409.15, -282.41], [-402.72, -289.54], [-379.51, -315.15], [-368.07, -327.75], [-329.22, -292.8], [-308.42, -274.09], [-343.79, -235.07], [-346.18, -232.42], [-349.58, -228.67], [-405.94, -279.52], [-409.15, -282.41]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2752}}, {"shape": {"outer": [[190.22, -311.65], [192.09, -310.01], [192.63, -308.44], [194.54, -306.77], [196.04, -306.26], [197.9, -304.58], [199.45, -303.19], [200.55, -301.36], [202.24, -299.89], [203.8, -299.25], [205.4, -297.81], [208.74, -301.48], [208.08, -302.09], [214.6, -309.28], [215.23, -308.72], [218.17, -311.96], [216.64, -313.34], [217.15, -313.91], [217.63, -314.43], [219.09, -313.11], [221.93, -316.24], [221.3, -316.8], [227.86, -324.05], [228.68, -323.31], [232.16, -327.16], [230.4, -328.73], [229.6, -330.39], [227.96, -331.95], [226.63, -332.36], [222.61, -335.63], [222.11, -336.87], [219.83, -338.94], [218.74, -339.01], [216.66, -340.88], [213.42, -337.29], [214.2, -336.59], [210.61, -332.61], [211.24, -332.05], [209.57, -330.22], [208.15, -331.49], [204.99, -328.0], [206.65, -326.51], [206.58, -324.78], [210.73, -320.95], [209.35, -319.46], [205.21, -323.3], [203.6, -323.3], [201.98, -324.72], [198.67, -320.98], [200.08, -319.74], [198.4, -317.84], [197.7, -318.45], [194.25, -314.55], [193.43, -315.27], [190.22, -311.65]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 664, "jobs": 0}}, {"shape": {"outer": [[559.15, 163.0], [547.31, 152.35], [548.7, 150.82], [509.44, 115.55], [517.46, 106.68], [532.83, 120.48], [552.58, 98.64], [538.14, 85.68], [564.29, 56.76], [574.2, 65.65], [583.14, 83.6], [580.92, 85.93], [595.94, 100.16], [593.67, 101.62], [599.76, 107.1], [596.98, 110.16], [602.52, 115.15], [559.15, 163.0]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2799}}, {"shape": {"outer": [[584.01, 179.46], [588.32, 183.53], [640.69, 230.69], [644.3, 226.89], [647.9, 230.7], [666.15, 211.68], [663.66, 208.7], [666.64, 205.56], [664.46, 203.67], [612.19, 158.13], [608.57, 154.98], [603.45, 150.52], [583.74, 171.99], [587.54, 175.71], [584.01, 179.46]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1929}}, {"shape": {"outer": [[743.22, 1.23], [711.89, -8.39], [716.21, -19.81], [746.6, -10.09], [743.22, 1.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.31, "pop": 155, "jobs": 0}}, {"shape": {"outer": [[772.38, 51.04], [731.88, 38.67], [731.11, 40.25], [728.43, 39.53], [726.15, 35.52], [724.92, 35.25], [717.6, 21.7], [715.53, 17.88], [713.1, 17.16], [705.43, 15.18], [705.63, 14.51], [707.14, 9.27], [710.66, -3.62], [741.45, 5.54], [737.17, 19.66], [777.81, 32.47], [775.91, 39.01], [772.38, 51.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 664, "jobs": 0}}, {"shape": {"outer": [[2492.77, 1764.02], [2493.92, 1759.6], [2492.11, 1759.14], [2497.44, 1736.52], [2525.51, 1743.19], [2518.22, 1772.61], [2496.94, 1767.15], [2497.43, 1765.23], [2492.77, 1764.02]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 0.942, "pop": 0, "jobs": 942}}, {"shape": {"outer": [[2269.39, 1720.21], [2275.83, 1713.79], [2271.7, 1710.37], [2271.48, 1708.34], [2270.47, 1706.19], [2268.67, 1704.72], [2269.21, 1703.85], [2238.11, 1654.12], [2216.63, 1671.56], [2258.64, 1712.47], [2259.19, 1712.06], [2260.22, 1713.77], [2261.96, 1715.3], [2263.83, 1716.02], [2265.53, 1716.02], [2269.39, 1720.21]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.745, "pop": 0, "jobs": 745}}, {"shape": {"outer": [[2391.81, 1742.3], [2402.67, 1700.1], [2403.34, 1697.49], [2424.57, 1703.18], [2419.18, 1722.58], [2421.55, 1723.84], [2422.61, 1725.82], [2422.0, 1729.33], [2469.72, 1741.88], [2464.79, 1760.65], [2391.81, 1742.3]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 1455, "jobs": 0}}, {"shape": {"outer": [[-111.99, 449.82], [-119.24, 443.3], [-118.41, 442.38], [-119.52, 441.39], [-116.45, 437.99], [-115.34, 438.99], [-115.24, 438.87], [-113.15, 438.74], [-112.06, 439.71], [-111.11, 438.66], [-109.43, 438.6], [-107.5, 440.33], [-107.52, 441.86], [-108.49, 442.92], [-106.98, 444.29], [-111.99, 449.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-123.47, 438.64], [-130.64, 432.14], [-122.76, 423.52], [-114.62, 430.9], [-116.42, 432.87], [-117.4, 431.99], [-123.47, 438.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-125.53, 412.24], [-133.67, 404.99], [-129.83, 400.71], [-129.04, 401.4], [-126.17, 398.19], [-118.81, 404.75], [-125.53, 412.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-107.43, 454.02], [-107.65, 445.41], [-106.29, 445.37], [-106.38, 441.96], [-100.89, 441.82], [-100.81, 445.06], [-98.45, 445.0], [-98.09, 458.8], [-103.49, 458.95], [-103.62, 453.93], [-107.43, 454.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-290.97, 284.06], [-286.93, 287.85], [-287.29, 288.25], [-283.8, 291.54], [-283.43, 291.14], [-279.12, 295.2], [-277.7, 293.7], [-276.61, 294.74], [-273.78, 291.76], [-274.88, 290.72], [-272.06, 287.74], [-283.9, 276.6], [-290.97, 284.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-283.22, 273.9], [-277.79, 267.9], [-269.77, 275.11], [-270.62, 276.05], [-268.44, 278.01], [-270.61, 280.41], [-272.79, 278.45], [-275.19, 281.11], [-283.22, 273.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-275.53, 298.18], [-267.16, 288.85], [-264.51, 291.22], [-263.63, 290.23], [-260.9, 292.65], [-261.79, 293.64], [-259.44, 295.73], [-269.57, 307.0], [-276.98, 300.4], [-275.23, 298.46], [-275.53, 298.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-258.81, 279.45], [-266.71, 272.07], [-267.74, 272.04], [-269.63, 270.28], [-269.62, 269.36], [-272.73, 266.47], [-273.88, 266.7], [-275.0, 266.31], [-275.75, 265.38], [-275.9, 264.21], [-275.48, 263.2], [-274.62, 262.52], [-273.52, 262.34], [-269.23, 257.79], [-266.57, 260.28], [-266.03, 259.7], [-253.71, 271.19], [-256.54, 274.2], [-255.11, 275.52], [-258.81, 279.45]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-256.19, 264.42], [-266.46, 254.97], [-264.13, 252.46], [-265.51, 251.19], [-258.87, 244.02], [-252.54, 249.85], [-253.66, 251.06], [-248.35, 255.96], [-256.19, 264.42]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-256.15, 239.23], [-250.42, 232.95], [-248.49, 234.71], [-248.11, 234.3], [-240.08, 241.57], [-241.47, 243.1], [-239.01, 245.32], [-243.72, 250.48], [-247.42, 247.14], [-247.76, 247.52], [-251.69, 243.95], [-251.35, 243.57], [-256.15, 239.23]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-248.14, 232.69], [-244.07, 228.26], [-243.05, 229.19], [-239.85, 225.7], [-230.35, 234.35], [-230.72, 234.74], [-228.38, 236.87], [-233.73, 242.69], [-234.15, 242.32], [-235.71, 244.01], [-248.14, 232.69]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[-265.89, 307.81], [-249.79, 289.2], [-243.16, 294.89], [-259.26, 313.5], [-265.89, 307.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-255.57, 316.92], [-239.89, 299.3], [-233.44, 304.99], [-249.12, 322.61], [-255.57, 316.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-242.41, 327.39], [-240.42, 325.19], [-242.98, 322.89], [-237.02, 316.29], [-227.04, 325.25], [-234.99, 334.05], [-242.41, 327.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-232.42, 333.96], [-222.28, 322.86], [-221.79, 323.29], [-221.08, 322.51], [-218.87, 324.52], [-218.67, 324.29], [-215.25, 327.39], [-226.31, 339.5], [-226.47, 339.36], [-228.58, 341.68], [-234.1, 336.67], [-231.99, 334.36], [-232.42, 333.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-223.48, 341.96], [-216.97, 334.76], [-216.19, 335.45], [-210.73, 329.39], [-205.28, 334.27], [-205.8, 334.84], [-204.74, 335.8], [-208.04, 339.46], [-207.33, 340.1], [-216.92, 350.72], [-222.06, 346.12], [-220.62, 344.52], [-223.48, 341.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-180.5, 181.42], [-187.62, 174.59], [-188.01, 173.19], [-192.15, 169.23], [-187.66, 164.57], [-186.48, 165.69], [-185.91, 165.11], [-174.91, 175.61], [-180.5, 181.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-187.32, 162.05], [-181.47, 155.92], [-167.19, 169.48], [-173.04, 175.6], [-187.32, 162.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-125.8, 259.66], [-108.7, 258.71], [-108.83, 254.52], [-110.25, 206.83], [-116.93, 201.2], [-142.05, 228.0], [-126.68, 242.04], [-125.8, 259.66]], "holes": []}, "height": 24.5, "data": {"type": "residential", "density": 1.0, "pop": 1410, "jobs": 0}}, {"shape": {"outer": [[-134.37, 210.52], [-124.36, 199.44], [-130.74, 193.72], [-142.93, 207.21], [-138.76, 210.96], [-136.57, 208.54], [-134.37, 210.52]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-147.18, 200.11], [-143.19, 203.63], [-141.67, 201.92], [-141.51, 202.06], [-130.59, 189.82], [-134.73, 186.16], [-147.18, 200.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-149.13, 197.92], [-138.44, 186.31], [-147.1, 178.4], [-157.79, 190.01], [-157.24, 190.5], [-158.67, 192.06], [-154.17, 196.19], [-152.73, 194.63], [-149.13, 197.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-161.73, 192.55], [-145.79, 175.25], [-152.01, 169.56], [-167.95, 186.86], [-161.73, 192.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-155.08, 171.75], [-161.59, 165.76], [-173.99, 179.16], [-167.49, 185.14], [-155.08, 171.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-226.4, 208.31], [-224.26, 205.91], [-225.26, 205.03], [-220.74, 199.98], [-208.4, 210.94], [-213.01, 216.1], [-212.34, 216.7], [-214.37, 218.99], [-218.22, 215.58], [-218.68, 216.09], [-222.76, 212.46], [-222.3, 211.95], [-226.4, 208.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-218.47, 196.98], [-212.66, 190.88], [-201.17, 201.74], [-206.97, 207.84], [-218.47, 196.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-200.11, 201.01], [-210.26, 192.05], [-203.92, 184.92], [-199.99, 188.38], [-199.05, 187.32], [-192.83, 192.81], [-200.11, 201.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-179.43, 198.25], [-186.64, 191.63], [-180.79, 185.3], [-176.45, 189.28], [-178.21, 191.19], [-175.34, 193.82], [-179.43, 198.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-178.56, 198.85], [-172.59, 192.38], [-165.59, 198.8], [-171.56, 205.27], [-178.56, 198.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-209.14, 220.14], [-196.52, 206.52], [-191.84, 210.82], [-192.04, 211.04], [-190.93, 212.06], [-192.59, 213.84], [-191.2, 215.12], [-193.46, 217.55], [-191.47, 219.38], [-192.69, 220.71], [-192.31, 221.05], [-197.8, 226.99], [-198.18, 226.64], [-199.97, 228.57], [-209.14, 220.14]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-194.1, 236.01], [-192.87, 234.62], [-193.33, 234.21], [-187.39, 227.49], [-187.57, 227.33], [-184.31, 223.64], [-178.92, 228.36], [-183.47, 233.52], [-179.48, 237.03], [-184.32, 242.49], [-188.24, 239.04], [-189.29, 240.23], [-194.1, 236.01]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-180.68, 245.53], [-170.37, 233.96], [-169.9, 234.38], [-168.33, 232.61], [-165.91, 234.74], [-167.38, 236.38], [-163.06, 240.19], [-173.47, 251.89], [-175.3, 250.28], [-176.88, 252.05], [-179.05, 250.13], [-178.35, 249.33], [-180.51, 247.43], [-179.64, 246.44], [-180.68, 245.53]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-314.24, 125.4], [-293.79, 102.85], [-289.49, 106.71], [-283.56, 100.18], [-278.94, 104.34], [-276.93, 102.13], [-272.05, 106.53], [-272.94, 107.51], [-253.82, 124.72], [-252.54, 125.87], [-263.42, 137.87], [-259.16, 141.71], [-275.76, 160.02], [-314.24, 125.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1256}}, {"shape": {"outer": [[-381.23, -463.62], [-412.28, -429.29], [-414.26, -431.07], [-412.23, -433.32], [-424.44, -444.28], [-420.47, -448.66], [-418.9, -447.25], [-416.65, -449.73], [-418.52, -451.41], [-395.71, -476.63], [-381.23, -463.62]], "holes": []}, "height": 38.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2585}}, {"shape": {"outer": [[-439.89, -518.09], [-471.73, -483.0], [-453.96, -466.99], [-442.67, -456.82], [-430.79, -469.91], [-424.53, -476.81], [-418.25, -471.15], [-404.54, -486.25], [-417.0, -497.43], [-418.64, -498.99], [-439.89, -518.09]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2269}}, {"shape": {"outer": [[-360.61, -445.18], [-341.26, -427.33], [-331.87, -437.42], [-351.24, -455.28], [-360.61, -445.18]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.382, "pop": 191, "jobs": 0}}, {"shape": {"outer": [[-353.91, -457.31], [-363.2, -447.24], [-368.84, -452.38], [-370.32, -453.71], [-361.03, -463.84], [-353.91, -457.31]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[-367.27, -442.38], [-373.16, -447.58], [-374.65, -448.92], [-388.58, -433.33], [-381.24, -426.8], [-367.27, -442.38]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.288, "pop": 144, "jobs": 0}}, {"shape": {"outer": [[-403.28, -139.2], [-390.45, -153.28], [-381.58, -145.26], [-376.83, -140.97], [-375.95, -121.88], [-381.94, -121.6], [-381.97, -122.26], [-382.37, -122.25], [-382.33, -121.2], [-388.84, -120.91], [-388.88, -121.91], [-389.27, -121.9], [-389.25, -121.23], [-389.84, -121.2], [-389.82, -120.87], [-396.72, -120.55], [-396.74, -120.83], [-402.44, -120.57], [-403.22, -138.0], [-403.28, -139.2]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 0.761, "pop": 0, "jobs": 761}}, {"shape": {"outer": [[-345.93, -123.89], [-346.78, -142.49], [-343.92, -142.62], [-327.37, -127.54], [-326.84, -126.15], [-326.94, -124.9], [-327.58, -123.86], [-328.62, -123.47], [-346.66, -122.65], [-346.68, -123.0], [-346.72, -123.85], [-345.93, -123.89]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.26, "pop": 130, "jobs": 0}}, {"shape": {"outer": [[-375.92, -121.15], [-375.95, -121.88], [-376.83, -140.97], [-362.74, -156.44], [-362.05, -155.83], [-360.89, -157.09], [-353.57, -150.48], [-360.45, -142.93], [-359.52, -122.55], [-369.23, -122.11], [-369.2, -121.46], [-375.92, -121.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.404, "pop": 202, "jobs": 0}}, {"shape": {"outer": [[-345.93, -123.89], [-346.78, -142.49], [-346.87, -144.41], [-353.57, -150.48], [-360.45, -142.93], [-359.52, -122.55], [-359.51, -122.42], [-346.68, -123.0], [-346.72, -123.85], [-345.93, -123.89]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.232, "pop": 116, "jobs": 0}}, {"shape": {"outer": [[-1052.36, -86.28], [-1052.86, -96.03], [-1053.65, -111.58], [-1054.01, -118.91], [-1054.78, -134.09], [-1055.17, -141.8], [-1053.97, -141.87], [-1054.14, -145.15], [-1055.36, -145.09], [-1055.57, -149.17], [-1054.35, -149.24], [-1054.41, -150.29], [-1055.59, -150.23], [-1055.72, -152.6], [-1054.52, -152.66], [-1054.59, -154.08], [-1055.76, -154.02], [-1056.03, -159.43], [-1054.87, -159.48], [-1054.94, -160.88], [-1056.09, -160.82], [-1056.22, -163.17], [-1055.07, -163.24], [-1055.11, -164.23], [-1056.3, -164.18], [-1056.43, -166.73], [-1055.25, -166.8], [-1055.29, -167.65], [-1054.12, -167.72], [-1035.96, -168.64], [-1032.72, -165.73], [-1021.71, -155.86], [-995.43, -184.95], [-957.27, -151.84], [-973.91, -133.24], [-974.73, -132.34], [-977.03, -132.23], [-976.01, -113.04], [-975.66, -106.81], [-974.88, -91.77], [-982.89, -91.37], [-983.93, -91.32], [-983.87, -90.27], [-994.02, -89.7], [-994.05, -90.79], [-994.93, -90.74], [-1030.64, -88.95], [-1030.6, -88.01], [-1032.71, -87.91], [-1032.75, -88.75], [-1034.25, -88.67], [-1034.2, -87.74], [-1035.35, -87.69], [-1036.39, -87.63], [-1036.44, -88.58], [-1037.88, -88.5], [-1037.82, -87.5], [-1040.08, -87.39], [-1040.14, -88.36], [-1041.75, -88.27], [-1041.69, -87.26], [-1043.99, -87.15], [-1044.04, -88.17], [-1045.63, -88.09], [-1045.55, -86.62], [-1048.28, -86.48], [-1052.36, -86.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 2665, "jobs": 0}}, {"shape": {"outer": [[-1077.21, -66.35], [-1077.24, -67.52], [-1083.2, -67.22], [-1085.21, -67.12], [-1085.13, -65.96], [-1086.07, -65.94], [-1086.78, -65.94], [-1086.3, -56.89], [-1084.98, -31.62], [-1075.52, -32.2], [-1077.21, -66.35]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.094, "pop": 0, "jobs": 94}}, {"shape": {"outer": [[-902.17, -338.41], [-896.47, -344.71], [-894.42, -346.98], [-893.41, -346.09], [-893.03, -346.5], [-893.32, -346.76], [-885.36, -355.61], [-884.16, -354.53], [-876.49, -347.68], [-876.99, -347.12], [-875.15, -345.48], [-873.13, -343.68], [-862.94, -334.56], [-860.0, -337.83], [-859.82, -338.02], [-855.81, -334.45], [-858.63, -331.32], [-855.58, -328.58], [-842.13, -316.56], [-839.05, -313.81], [-839.85, -312.93], [-838.46, -311.68], [-839.87, -310.12], [-859.88, -288.04], [-877.19, -303.63], [-885.92, -311.48], [-898.42, -297.68], [-909.19, -307.37], [-908.2, -308.46], [-907.66, -309.06], [-909.12, -310.37], [-910.31, -311.45], [-910.09, -314.18], [-909.42, -316.96], [-908.45, -320.06], [-907.35, -323.04], [-906.02, -326.41], [-904.52, -329.45], [-903.15, -332.23], [-901.74, -334.77], [-900.4, -336.83], [-902.17, -338.41]], "holes": []}, "height": 35.0, "data": {"type": "residential", "density": 1.0, "pop": 4414, "jobs": 0}}, {"shape": {"outer": [[-2216.81, -637.7], [-2167.02, -599.13], [-2167.87, -638.89], [-2168.0, -645.19], [-2165.05, -648.97], [-2169.22, -652.2], [-2184.66, -664.17], [-2193.27, -653.13], [-2200.43, -658.68], [-2216.81, -637.7]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 1858, "jobs": 0}}, {"shape": {"outer": [[-78.76, 43.45], [-69.94, 33.76], [-47.17, 54.31], [-43.62, 57.51], [-52.43, 67.21], [-53.52, 66.22], [-78.76, 43.45]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.39, "pop": 0, "jobs": 390}}, {"shape": {"outer": [[1663.45, 888.73], [1657.1, 883.0], [1669.42, 869.43], [1675.77, 875.15], [1674.3, 876.76], [1666.15, 885.74], [1663.45, 888.73]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.1, "pop": 0, "jobs": 100}}, {"shape": {"outer": [[-719.62, -1329.34], [-717.48, -1328.29], [-715.41, -1327.28], [-714.37, -1328.94], [-708.84, -1330.73], [-707.52, -1330.23], [-706.54, -1331.68], [-705.21, -1333.66], [-706.21, -1334.29], [-704.86, -1336.39], [-705.96, -1340.94], [-707.74, -1341.65], [-707.65, -1342.42], [-711.74, -1344.16], [-713.11, -1342.26], [-718.0, -1341.14], [-719.44, -1341.86], [-721.83, -1337.88], [-721.06, -1337.24], [-722.31, -1335.46], [-720.89, -1331.37], [-719.12, -1330.65], [-719.62, -1329.34]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.125, "pop": 0, "jobs": 125}}, {"shape": {"outer": [[-1277.47, -1358.31], [-1275.09, -1364.39], [-1269.94, -1368.24], [-1263.72, -1369.89], [-1257.12, -1367.4], [-1253.02, -1362.08], [-1252.08, -1355.21], [-1254.36, -1349.24], [-1260.25, -1345.36], [-1266.58, -1344.47], [-1272.79, -1347.2], [-1275.34, -1350.28], [-1276.57, -1352.02], [-1276.86, -1354.03], [-1277.47, -1358.31]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.312, "pop": 0, "jobs": 312}}, {"shape": {"outer": [[742.02, 15.62], [745.64, 4.21], [783.82, 16.25], [780.2, 27.66], [742.02, 15.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.384, "pop": 192, "jobs": 0}}, {"shape": {"outer": [[872.38, 224.79], [870.42, 223.06], [865.67, 218.84], [876.52, 206.69], [882.55, 212.04], [894.0, 222.19], [888.97, 227.82], [893.28, 231.63], [889.32, 236.08], [885.0, 232.26], [877.77, 240.34], [867.01, 230.81], [871.44, 225.84], [872.38, 224.79]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.34, "pop": 0, "jobs": 340}}, {"shape": {"outer": [[904.63, 199.21], [900.15, 195.15], [908.28, 186.27], [909.36, 187.27], [913.37, 182.88], [916.93, 186.12], [913.01, 190.4], [914.98, 192.17], [910.75, 196.78], [909.94, 196.04], [906.47, 199.83], [905.15, 198.63], [904.63, 199.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[911.05, 198.65], [921.04, 187.58], [924.44, 190.63], [927.66, 193.51], [917.67, 204.58], [911.05, 198.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[927.25, 210.77], [932.32, 205.07], [938.7, 210.7], [934.07, 215.89], [931.45, 213.57], [931.0, 214.07], [927.25, 210.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[924.82, 269.03], [919.27, 264.0], [928.33, 254.08], [930.73, 254.02], [935.0, 257.9], [924.82, 269.03]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.072, "pop": 0, "jobs": 72}}, {"shape": {"outer": [[926.16, 272.92], [924.86, 271.73], [920.29, 267.54], [907.22, 281.69], [908.87, 283.2], [907.86, 284.28], [915.81, 291.56], [916.86, 290.42], [921.58, 294.75], [920.53, 295.88], [930.28, 304.82], [931.3, 303.71], [933.52, 305.75], [946.76, 291.41], [938.7, 284.01], [940.67, 281.88], [941.85, 282.97], [948.42, 275.84], [944.56, 272.31], [940.09, 268.2], [940.59, 267.66], [937.93, 265.23], [935.4, 262.9], [926.16, 272.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.768, "pop": 384, "jobs": 0}}, {"shape": {"outer": [[935.95, 309.33], [958.74, 284.8], [968.94, 294.21], [946.15, 318.73], [935.95, 309.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.372, "pop": 186, "jobs": 0}}, {"shape": {"outer": [[962.86, 333.54], [948.6, 320.9], [971.03, 295.81], [985.29, 308.47], [962.86, 333.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.514, "pop": 257, "jobs": 0}}, {"shape": {"outer": [[949.62, 243.17], [943.24, 237.43], [954.32, 224.72], [960.86, 231.12], [949.62, 243.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[951.69, 243.32], [966.14, 227.46], [970.7, 231.59], [968.69, 233.8], [962.04, 241.1], [964.9, 243.69], [959.11, 250.03], [951.69, 243.32]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.046, "pop": 0, "jobs": 46}}, {"shape": {"outer": [[973.77, 263.26], [966.87, 257.01], [975.93, 247.08], [982.83, 253.34], [973.77, 263.26]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.08, "pop": 0, "jobs": 80}}, {"shape": {"outer": [[979.69, 260.29], [979.97, 260.54], [979.01, 261.63], [981.29, 263.63], [982.25, 262.54], [985.46, 265.35], [994.74, 254.83], [988.96, 249.78], [979.69, 260.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1008.04, 285.66], [1013.01, 290.18], [1022.15, 280.21], [1017.18, 275.69], [1008.04, 285.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1023.89, 308.84], [1018.48, 303.74], [1032.01, 289.47], [1037.43, 294.58], [1023.89, 308.84]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.094, "pop": 0, "jobs": 94}}, {"shape": {"outer": [[1028.41, 366.37], [1035.87, 358.6], [1034.93, 357.69], [1037.86, 354.64], [1032.46, 349.5], [1022.07, 360.32], [1028.41, 366.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1041.01, 321.69], [1034.88, 315.87], [1047.7, 302.47], [1051.97, 306.53], [1050.7, 307.85], [1052.56, 309.61], [1041.01, 321.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-784.5, -825.2], [-778.85, -831.32], [-773.01, -825.98], [-778.67, -819.86], [-784.5, -825.2]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[69.73, 705.14], [72.92, 707.95], [72.08, 708.9], [78.31, 714.39], [79.05, 713.56], [82.4, 716.52], [94.79, 702.57], [88.36, 696.9], [82.01, 691.3], [69.73, 705.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.262, "pop": 131, "jobs": 0}}, {"shape": {"outer": [[793.65, 35.7], [795.99, 27.83], [794.53, 27.4], [794.71, 26.78], [803.12, 29.27], [805.21, 22.27], [814.54, 25.04], [812.25, 32.7], [824.96, 36.46], [829.76, 20.4], [823.38, 18.5], [824.79, 13.79], [813.58, 10.48], [813.83, 9.66], [803.88, 6.71], [802.7, 10.65], [796.72, 8.89], [795.09, 14.36], [791.34, 13.25], [790.67, 15.5], [787.64, 14.6], [783.64, 28.05], [788.88, 29.6], [787.6, 33.92], [793.65, 35.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.628, "pop": 314, "jobs": 0}}, {"shape": {"outer": [[870.46, 108.17], [875.5, 112.81], [867.41, 121.55], [862.37, 116.92], [870.46, 108.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[883.59, 110.5], [886.93, 113.61], [883.91, 116.84], [884.71, 117.59], [878.41, 124.32], [873.37, 119.64], [881.32, 111.14], [882.21, 111.98], [883.59, 110.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[890.53, 129.55], [896.95, 131.11], [899.95, 118.88], [899.27, 118.72], [899.77, 116.66], [901.51, 117.09], [902.15, 114.46], [903.17, 114.71], [904.22, 110.44], [897.8, 108.88], [896.73, 113.24], [894.65, 112.74], [890.53, 129.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[891.23, 104.61], [896.51, 108.37], [908.23, 92.04], [902.95, 88.27], [891.23, 104.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[909.77, 112.02], [909.98, 112.15], [909.55, 112.92], [911.81, 114.19], [912.81, 114.75], [913.25, 113.98], [916.93, 116.05], [922.94, 105.46], [915.78, 101.41], [909.77, 112.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[906.5, 132.32], [908.39, 125.63], [913.57, 119.7], [917.55, 121.11], [917.42, 121.66], [922.43, 122.91], [923.89, 116.49], [932.61, 118.46], [930.14, 129.25], [926.07, 128.32], [924.21, 136.42], [918.62, 135.15], [917.37, 134.87], [918.77, 128.39], [917.99, 128.2], [917.07, 128.0], [916.39, 127.83], [915.83, 127.7], [914.1, 134.28], [912.41, 133.85], [906.5, 132.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[930.79, 138.11], [933.55, 126.52], [941.49, 128.39], [938.74, 139.98], [930.79, 138.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[942.48, 137.9], [947.27, 128.99], [954.77, 132.99], [949.19, 143.37], [945.64, 141.48], [946.43, 140.01], [942.48, 137.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[956.22, 130.77], [964.61, 132.93], [961.72, 144.12], [961.42, 144.05], [960.82, 146.35], [953.25, 144.4], [953.84, 142.14], [953.31, 142.0], [956.22, 130.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[963.86, 144.56], [972.99, 146.82], [976.61, 132.31], [975.61, 132.06], [976.37, 129.01], [967.25, 126.75], [964.19, 139.03], [965.18, 139.27], [963.86, 144.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[978.6, 143.45], [979.49, 143.65], [980.54, 138.5], [993.87, 142.26], [992.57, 146.66], [993.45, 146.84], [992.54, 149.59], [990.87, 152.04], [991.86, 152.66], [989.3, 154.7], [987.62, 153.43], [984.65, 152.65], [983.39, 150.28], [977.34, 148.93], [978.6, 143.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1023.02, 157.95], [1024.74, 158.16], [1028.55, 158.61], [1028.59, 158.24], [1032.42, 158.69], [1032.78, 155.68], [1033.6, 155.78], [1034.35, 149.45], [1033.34, 149.33], [1033.7, 146.3], [1031.94, 146.1], [1032.04, 145.24], [1030.48, 145.06], [1031.01, 140.57], [1025.15, 139.88], [1024.04, 149.28], [1023.02, 157.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1039.19, 146.94], [1048.84, 148.49], [1046.96, 160.15], [1044.79, 159.81], [1044.44, 161.99], [1041.02, 161.45], [1041.38, 159.26], [1038.03, 158.72], [1037.41, 157.98], [1039.19, 146.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-82.66, 46.7], [-78.76, 43.45], [-53.52, 66.22], [-57.33, 70.25], [-82.66, 46.7]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.152, "pop": 0, "jobs": 152}}, {"shape": {"outer": [[-30.15, -11.29], [-26.07, -15.89], [-23.94, -16.84], [3.38, 7.12], [3.49, 9.33], [4.75, 10.85], [6.19, 10.63], [11.81, 15.85], [3.7, 24.54], [-3.07, 18.25], [-0.17, 15.15], [-1.08, 14.31], [-4.76, 11.04], [-30.15, -11.29]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.367, "pop": 0, "jobs": 367}}, {"shape": {"outer": [[-30.15, -11.29], [-38.09, -1.91], [-13.32, 20.87], [-4.76, 11.04], [-30.15, -11.29]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.239, "pop": 0, "jobs": 239}}, {"shape": {"outer": [[-38.09, -1.91], [-44.88, 6.1], [-18.91, 29.45], [-12.22, 21.91], [-13.32, 20.87], [-38.09, -1.91]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.202, "pop": 0, "jobs": 202}}, {"shape": {"outer": [[-44.88, 6.1], [-51.45, 13.36], [-25.49, 36.71], [-18.91, 29.45], [-44.88, 6.1]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.191, "pop": 0, "jobs": 191}}, {"shape": {"outer": [[-51.45, 13.36], [-60.75, 24.02], [-33.76, 49.07], [-24.17, 38.39], [-25.49, 36.71], [-51.45, 13.36]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.298, "pop": 0, "jobs": 298}}, {"shape": {"outer": [[-33.76, 49.07], [-37.95, 53.68], [-42.52, 49.32], [-64.94, 28.6], [-60.75, 24.02], [-33.76, 49.07]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.127, "pop": 0, "jobs": 127}}, {"shape": {"outer": [[-47.17, 54.31], [-69.94, 33.76], [-64.94, 28.6], [-42.52, 49.32], [-47.17, 54.31]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.12, "pop": 0, "jobs": 120}}, {"shape": {"outer": [[-95.75, 91.68], [-91.34, 86.61], [-76.84, 99.7], [-81.56, 104.94], [-95.75, 91.68]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.075, "pop": 0, "jobs": 75}}, {"shape": {"outer": [[-28.53, 61.75], [-25.04, 57.99], [-21.91, 60.87], [-28.37, 67.82], [-32.08, 71.81], [-38.13, 78.28], [-52.83, 94.11], [-62.58, 85.13], [-35.2, 55.6], [-28.53, 61.75]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.468, "pop": 0, "jobs": 468}}, {"shape": {"outer": [[-38.13, 78.28], [-32.33, 83.58], [-46.85, 99.45], [-52.83, 94.11], [-38.13, 78.28]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-46.85, 99.45], [-32.92, 112.37], [-14.89, 92.48], [-17.32, 89.14], [-28.23, 79.04], [-32.33, 83.58], [-46.85, 99.45]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.73, "pop": 365, "jobs": 0}}, {"shape": {"outer": [[-960.53, -113.56], [-960.46, -112.14], [-959.44, -92.39], [-959.4, -91.73], [-952.33, -92.1], [-953.31, -111.25], [-953.45, -113.92], [-960.53, -113.56]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.099, "pop": 0, "jobs": 99}}, {"shape": {"outer": [[-952.33, -92.1], [-944.29, -92.51], [-944.35, -92.97], [-945.28, -111.67], [-945.97, -125.66], [-946.36, -133.06], [-946.38, -133.52], [-942.28, -138.2], [-951.49, -146.22], [-959.49, -137.1], [-959.52, -135.87], [-958.04, -134.56], [-957.69, -127.74], [-954.16, -127.92], [-953.45, -113.92], [-953.31, -111.25], [-952.33, -92.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.388, "pop": 194, "jobs": 0}}, {"shape": {"outer": [[-944.35, -92.97], [-929.63, -93.66], [-930.08, -102.91], [-930.43, -109.9], [-930.69, -109.85], [-931.41, -124.33], [-929.38, -126.59], [-938.1, -134.4], [-945.97, -125.66], [-945.28, -111.67], [-944.35, -92.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.44, "pop": 220, "jobs": 0}}, {"shape": {"outer": [[-918.34, -107.66], [-916.62, -107.74], [-916.76, -110.62], [-914.79, -112.79], [-914.41, -113.29], [-918.39, -116.76], [-923.57, -110.85], [-924.14, -110.2], [-930.43, -109.9], [-930.08, -102.91], [-929.63, -93.66], [-922.21, -94.03], [-915.97, -94.33], [-916.42, -103.58], [-918.14, -103.49], [-918.34, -107.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[-918.39, -116.76], [-927.29, -124.49], [-928.73, -125.8], [-930.37, -123.95], [-930.2, -121.17], [-929.67, -112.71], [-923.57, -110.85], [-918.39, -116.76]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-914.79, -112.79], [-911.43, -109.76], [-910.72, -94.58], [-915.97, -94.33], [-916.42, -103.58], [-916.62, -107.74], [-916.76, -110.62], [-914.79, -112.79]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.057, "pop": 0, "jobs": 57}}, {"shape": {"outer": [[-911.43, -109.76], [-910.27, -111.0], [-896.35, -98.04], [-895.92, -96.86], [-896.03, -95.92], [-896.4, -95.21], [-897.1, -94.83], [-910.7, -94.2], [-910.72, -94.58], [-911.43, -109.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2137.58, -572.9], [-2137.79, -581.46], [-2122.31, -581.83], [-2122.16, -575.44], [-2125.67, -575.35], [-2125.62, -573.19], [-2137.58, -572.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-831.15, -65.75], [-824.59, -60.12], [-819.52, -65.62], [-820.43, -66.38], [-831.15, -65.75]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.023, "pop": 0, "jobs": 23}}, {"shape": {"outer": [[-820.43, -66.38], [-819.52, -65.62], [-819.18, -65.74], [-818.76, -66.21], [-812.9, -72.7], [-811.34, -74.42], [-811.54, -80.27], [-821.31, -79.7], [-820.43, -66.38]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.065, "pop": 0, "jobs": 65}}, {"shape": {"outer": [[-389.33, 271.44], [-379.59, 280.31], [-369.64, 269.46], [-368.35, 270.62], [-357.71, 259.02], [-370.09, 247.75], [-379.87, 258.43], [-378.53, 259.65], [-389.33, 271.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.364, "pop": 182, "jobs": 0}}, {"shape": {"outer": [[-381.27, 233.19], [-377.1, 237.05], [-379.42, 239.54], [-377.14, 241.64], [-375.05, 239.4], [-371.25, 242.91], [-376.34, 248.38], [-376.21, 250.08], [-381.44, 255.7], [-382.8, 255.32], [-388.98, 261.96], [-389.35, 261.62], [-391.37, 263.8], [-400.19, 255.65], [-398.17, 253.47], [-398.59, 253.08], [-392.77, 246.83], [-393.4, 244.76], [-387.94, 238.9], [-386.58, 238.89], [-381.27, 233.19]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.564, "pop": 282, "jobs": 0}}, {"shape": {"outer": [[-447.83, 453.15], [-443.49, 448.55], [-440.1, 451.72], [-436.51, 447.91], [-435.0, 449.31], [-434.44, 448.72], [-421.84, 460.37], [-426.64, 465.47], [-430.01, 462.29], [-433.77, 466.28], [-447.83, 453.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-421.56, 428.82], [-414.42, 421.24], [-411.98, 423.52], [-410.77, 422.24], [-402.7, 429.81], [-400.97, 427.97], [-396.52, 432.13], [-400.93, 436.8], [-399.28, 438.34], [-403.56, 442.9], [-405.63, 440.97], [-407.71, 443.18], [-412.81, 438.41], [-412.36, 437.93], [-419.11, 431.6], [-418.87, 431.33], [-421.56, 428.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[-397.27, 400.76], [-391.47, 405.92], [-384.82, 398.5], [-382.07, 400.94], [-373.18, 391.0], [-375.1, 389.29], [-374.43, 388.54], [-380.77, 382.9], [-381.44, 383.65], [-382.91, 382.35], [-384.12, 383.7], [-385.16, 382.78], [-387.94, 385.88], [-386.9, 386.8], [-391.81, 392.28], [-390.63, 393.34], [-397.27, 400.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[-414.65, 303.15], [-409.38, 297.13], [-408.87, 297.58], [-404.13, 292.18], [-400.61, 295.25], [-398.07, 292.35], [-392.59, 297.12], [-395.98, 300.98], [-395.52, 301.38], [-401.64, 308.38], [-401.4, 308.59], [-404.97, 312.67], [-405.73, 312.0], [-406.27, 312.63], [-412.48, 307.23], [-411.93, 306.61], [-414.17, 304.66], [-413.63, 304.04], [-414.65, 303.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.194, "pop": 97, "jobs": 0}}, {"shape": {"outer": [[-367.41, -22.33], [-329.38, 12.25], [-346.2, 30.62], [-372.91, 6.33], [-386.77, 21.48], [-361.93, 44.07], [-365.34, 47.79], [-361.91, 50.91], [-372.72, 62.7], [-412.14, 26.86], [-405.67, 19.78], [-403.97, 21.33], [-393.48, 9.89], [-393.64, 8.09], [-389.43, 3.55], [-387.57, 3.5], [-382.16, -2.41], [-384.07, -4.14], [-367.41, -22.33]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3672}}, {"shape": {"outer": [[884.43, 1904.67], [893.13, 1901.06], [893.7, 1908.17], [892.35, 1923.98], [879.51, 1915.21], [874.9, 1909.05], [884.43, 1904.67]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.151, "pop": 0, "jobs": 151}}, {"shape": {"outer": [[1056.67, 332.77], [1065.63, 322.43], [1064.66, 321.59], [1064.96, 321.26], [1060.73, 317.62], [1051.47, 328.29], [1056.67, 332.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1034.01, 364.5], [1042.49, 355.12], [1043.83, 356.33], [1048.47, 360.5], [1040.0, 369.86], [1035.06, 365.43], [1034.01, 364.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1028.98, 372.21], [1033.92, 376.61], [1040.0, 369.86], [1035.06, 365.43], [1028.98, 372.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1039.37, 375.19], [1049.72, 363.23], [1053.69, 366.64], [1057.68, 370.06], [1047.34, 382.02], [1039.37, 375.19]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.106, "pop": 0, "jobs": 106}}, {"shape": {"outer": [[1058.68, 337.49], [1064.88, 343.42], [1075.17, 332.71], [1068.97, 326.79], [1058.68, 337.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1068.49, 349.08], [1074.95, 354.95], [1077.82, 357.54], [1089.06, 345.23], [1087.3, 343.64], [1083.46, 340.17], [1079.73, 336.77], [1068.49, 349.08]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.134, "pop": 0, "jobs": 134}}, {"shape": {"outer": [[1097.02, 426.89], [1102.07, 421.35], [1108.02, 414.62], [1101.84, 409.09], [1090.81, 421.33], [1097.02, 426.89]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.088, "pop": 0, "jobs": 88}}, {"shape": {"outer": [[-2849.5, -1165.2], [-2837.8, -1178.96], [-2830.74, -1173.0], [-2842.44, -1159.24], [-2849.5, -1165.2]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.107, "pop": 0, "jobs": 107}}, {"shape": {"outer": [[-2842.44, -1159.24], [-2835.88, -1153.7], [-2824.18, -1167.46], [-2830.74, -1173.0], [-2842.44, -1159.24]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.087, "pop": 0, "jobs": 87}}, {"shape": {"outer": [[-2835.88, -1153.7], [-2828.61, -1147.56], [-2816.9, -1161.33], [-2824.18, -1167.46], [-2835.88, -1153.7]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.11, "pop": 0, "jobs": 110}}, {"shape": {"outer": [[-2494.82, -861.43], [-2483.35, -874.94], [-2475.26, -868.12], [-2476.8, -866.29], [-2486.72, -854.6], [-2494.82, -861.43]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.105, "pop": 0, "jobs": 105}}, {"shape": {"outer": [[884.85, 241.56], [890.02, 246.24], [893.81, 249.67], [906.68, 235.53], [908.08, 234.01], [913.74, 239.12], [899.48, 254.79], [896.61, 252.2], [894.21, 254.83], [883.61, 266.47], [871.85, 255.85], [882.25, 244.42], [884.85, 241.56]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.299, "pop": 0, "jobs": 299}}, {"shape": {"outer": [[961.02, 185.56], [960.66, 185.24], [957.21, 189.04], [950.63, 183.1], [952.22, 181.36], [950.56, 179.87], [953.19, 176.97], [951.39, 175.35], [956.48, 169.75], [960.28, 173.17], [962.32, 170.92], [968.92, 176.87], [961.02, 185.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[992.93, 223.78], [990.15, 221.28], [992.49, 218.7], [987.8, 214.49], [990.29, 211.72], [993.25, 214.38], [993.88, 213.7], [998.39, 217.75], [992.93, 223.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[872.24, 170.92], [876.94, 175.17], [884.11, 167.3], [877.24, 161.08], [873.98, 164.65], [876.16, 166.62], [872.24, 170.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[881.1, 158.38], [887.87, 164.18], [895.02, 155.89], [889.91, 151.52], [887.85, 153.9], [886.18, 152.48], [881.1, 158.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[923.44, 181.95], [929.17, 175.89], [923.29, 170.37], [917.56, 176.43], [920.4, 179.1], [923.44, 181.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[914.06, 171.54], [906.81, 165.19], [911.38, 160.0], [914.39, 162.63], [915.21, 161.69], [919.46, 165.42], [914.06, 171.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[947.85, 171.29], [944.42, 168.32], [944.08, 168.71], [941.03, 166.06], [934.47, 173.56], [940.47, 178.77], [941.23, 177.89], [941.71, 178.31], [947.85, 171.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[935.8, 192.49], [941.01, 196.95], [942.32, 195.44], [945.61, 198.27], [949.86, 193.34], [951.44, 194.7], [953.31, 192.52], [943.23, 183.88], [935.8, 192.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[969.42, 222.96], [963.24, 217.34], [966.29, 214.01], [967.45, 212.74], [966.05, 211.47], [967.09, 210.34], [970.76, 206.35], [978.32, 213.22], [969.42, 222.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[996.17, 180.44], [993.48, 183.44], [992.81, 182.85], [988.56, 187.58], [989.23, 188.19], [984.87, 193.03], [990.86, 198.38], [1002.16, 185.79], [996.17, 180.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[996.13, 206.01], [1000.77, 210.13], [1006.68, 203.53], [1006.15, 203.07], [1012.35, 196.13], [1007.55, 191.87], [1005.04, 194.67], [1003.24, 193.08], [997.27, 199.75], [999.75, 201.96], [996.13, 206.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1013.67, 218.89], [1005.3, 211.44], [1014.64, 201.02], [1023.02, 208.47], [1013.67, 218.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1017.05, 216.99], [1017.55, 217.42], [1010.92, 225.03], [1011.39, 225.43], [1009.06, 228.09], [1012.44, 231.01], [1014.66, 228.45], [1015.98, 229.59], [1019.67, 225.35], [1018.66, 224.48], [1021.69, 221.0], [1023.1, 222.22], [1030.06, 214.22], [1024.01, 208.99], [1017.05, 216.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1029.88, 232.88], [1035.56, 237.79], [1038.32, 234.63], [1039.33, 235.51], [1042.79, 231.53], [1041.81, 230.67], [1044.74, 227.3], [1039.04, 222.37], [1029.88, 232.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1035.51, 244.42], [1040.5, 248.82], [1043.69, 245.23], [1044.14, 245.63], [1054.49, 233.95], [1051.41, 231.24], [1050.32, 232.47], [1047.94, 230.37], [1045.05, 233.62], [1044.35, 233.0], [1040.73, 237.07], [1041.07, 237.37], [1038.55, 240.22], [1038.93, 240.55], [1035.51, 244.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1044.2, 247.68], [1055.69, 235.38], [1060.92, 240.23], [1049.44, 252.54], [1044.2, 247.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1054.26, 254.99], [1056.87, 252.12], [1055.14, 250.55], [1059.17, 246.13], [1059.69, 246.6], [1061.98, 244.1], [1063.53, 245.5], [1065.29, 243.58], [1069.35, 247.26], [1058.66, 258.98], [1054.26, 254.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1066.3, 266.22], [1076.71, 254.89], [1069.48, 248.28], [1059.07, 259.61], [1060.0, 260.46], [1058.44, 262.16], [1059.71, 263.32], [1058.48, 264.65], [1061.87, 267.75], [1063.1, 266.42], [1063.92, 267.17], [1065.48, 265.47], [1066.3, 266.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[1069.8, 265.77], [1078.65, 256.19], [1084.36, 261.44], [1075.51, 271.01], [1069.8, 265.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1071.48, 277.84], [1078.55, 284.08], [1091.85, 269.11], [1084.78, 262.87], [1071.48, 277.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1081.56, 287.28], [1088.56, 293.52], [1100.43, 280.28], [1099.48, 279.43], [1098.31, 278.4], [1093.42, 274.04], [1081.56, 287.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1091.85, 296.79], [1095.73, 292.57], [1095.36, 292.23], [1103.66, 283.25], [1111.88, 290.78], [1111.22, 291.49], [1112.42, 292.59], [1106.35, 299.15], [1104.6, 297.54], [1101.0, 301.43], [1100.21, 300.71], [1098.33, 302.73], [1098.21, 302.61], [1096.44, 304.52], [1090.35, 298.93], [1092.11, 297.02], [1091.85, 296.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[1111.21, 303.7], [1116.77, 297.64], [1119.39, 300.03], [1124.2, 294.79], [1130.03, 300.11], [1123.43, 307.31], [1122.14, 306.13], [1118.38, 310.23], [1111.21, 303.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1093.58, 315.89], [1097.83, 311.34], [1100.04, 313.39], [1102.66, 310.6], [1109.73, 317.18], [1102.34, 325.08], [1095.2, 318.45], [1095.73, 317.88], [1093.58, 315.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1057.11, 197.63], [1063.79, 190.51], [1068.93, 195.31], [1069.7, 194.5], [1074.59, 199.05], [1069.59, 204.37], [1065.82, 200.86], [1063.37, 203.47], [1057.11, 197.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1068.18, 210.57], [1071.89, 213.99], [1081.91, 203.2], [1081.61, 202.93], [1086.77, 197.39], [1081.7, 192.72], [1078.49, 196.18], [1078.1, 195.81], [1068.83, 205.79], [1070.87, 207.67], [1068.18, 210.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1076.48, 215.75], [1083.76, 207.68], [1093.97, 216.81], [1086.7, 224.89], [1076.48, 215.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1096.39, 206.27], [1099.03, 203.45], [1098.69, 203.13], [1104.94, 196.46], [1110.58, 201.73], [1101.69, 211.2], [1096.39, 206.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1089.07, 227.5], [1092.68, 223.55], [1092.25, 223.16], [1094.21, 221.02], [1094.64, 221.41], [1098.42, 217.26], [1104.81, 223.06], [1103.14, 224.89], [1103.78, 225.47], [1099.14, 230.55], [1098.21, 229.71], [1095.39, 232.78], [1093.62, 231.17], [1093.4, 231.42], [1089.07, 227.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1105.11, 208.83], [1108.3, 211.68], [1108.73, 211.2], [1112.01, 214.13], [1119.48, 205.82], [1115.8, 202.54], [1116.22, 202.06], [1113.42, 199.56], [1105.11, 208.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1113.87, 216.33], [1125.51, 203.57], [1127.03, 204.95], [1128.58, 203.24], [1133.13, 207.37], [1119.94, 221.82], [1113.87, 216.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1125.16, 219.22], [1130.95, 224.33], [1143.57, 210.1], [1137.77, 204.99], [1125.16, 219.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1139.77, 219.02], [1142.31, 221.29], [1141.4, 222.3], [1143.05, 223.77], [1143.96, 222.77], [1145.44, 224.1], [1155.28, 213.19], [1149.6, 208.12], [1139.77, 219.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1156.47, 232.1], [1158.41, 230.02], [1162.38, 233.7], [1168.37, 227.27], [1167.68, 226.63], [1169.53, 224.66], [1159.18, 215.06], [1157.29, 217.08], [1156.27, 216.14], [1150.36, 222.48], [1151.78, 223.8], [1149.8, 225.92], [1156.47, 232.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[1171.2, 228.91], [1179.25, 220.04], [1190.3, 230.01], [1182.24, 238.88], [1171.2, 228.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[1041.9, 186.26], [1040.17, 184.74], [1043.84, 180.62], [1044.73, 180.14], [1045.37, 180.1], [1045.99, 180.27], [1049.09, 182.99], [1050.37, 181.56], [1056.18, 186.66], [1056.28, 188.55], [1050.13, 195.47], [1045.49, 191.35], [1044.45, 191.47], [1043.31, 190.46], [1043.29, 189.4], [1040.95, 187.33], [1041.9, 186.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1162.47, 237.68], [1165.76, 233.99], [1167.7, 235.71], [1169.69, 233.48], [1180.21, 242.77], [1177.17, 246.18], [1174.01, 249.73], [1172.63, 251.28], [1165.72, 245.18], [1168.03, 242.59], [1162.47, 237.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1172.71, 253.54], [1162.63, 244.49], [1155.62, 252.24], [1165.69, 261.29], [1172.71, 253.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1140.94, 269.79], [1144.32, 266.12], [1143.37, 265.25], [1148.05, 260.15], [1150.64, 262.53], [1154.55, 258.28], [1160.2, 263.43], [1156.19, 267.79], [1156.86, 268.4], [1152.33, 273.33], [1151.98, 273.0], [1148.55, 276.73], [1147.23, 275.54], [1146.05, 276.81], [1143.71, 274.69], [1144.9, 273.4], [1140.94, 269.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[1103.95, 241.33], [1109.24, 245.98], [1117.99, 236.06], [1112.69, 231.42], [1103.95, 241.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1112.29, 248.0], [1115.42, 250.47], [1116.13, 249.84], [1118.76, 252.2], [1128.47, 241.47], [1122.32, 235.68], [1112.29, 248.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1097.98, 235.17], [1103.89, 240.25], [1113.6, 229.03], [1109.53, 225.53], [1107.41, 227.98], [1106.27, 227.0], [1104.61, 228.91], [1103.14, 229.2], [1101.92, 229.62], [1101.1, 230.48], [1100.98, 231.71], [1097.98, 235.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1120.79, 253.94], [1126.52, 259.02], [1137.12, 247.12], [1130.88, 241.59], [1123.16, 250.24], [1123.68, 250.71], [1120.79, 253.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1131.83, 257.1], [1137.0, 261.54], [1142.73, 254.91], [1143.87, 255.89], [1148.28, 250.78], [1144.56, 247.58], [1140.47, 252.31], [1137.89, 250.09], [1131.83, 257.1]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1033.82, 277.22], [1027.08, 284.26], [1046.76, 302.95], [1053.49, 295.91], [1033.82, 277.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[1093.17, 372.73], [1103.95, 382.19], [1112.07, 373.0], [1101.27, 363.54], [1093.17, 372.73]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.049, "pop": 0, "jobs": 49}}, {"shape": {"outer": [[1117.29, 393.31], [1122.97, 398.51], [1131.14, 389.67], [1130.29, 388.88], [1131.33, 387.74], [1126.98, 383.76], [1125.93, 384.89], [1125.46, 384.46], [1117.29, 393.31]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.065, "pop": 0, "jobs": 65}}, {"shape": {"outer": [[1125.89, 396.77], [1133.04, 403.09], [1140.07, 395.19], [1138.52, 393.83], [1139.81, 392.38], [1134.2, 387.43], [1125.89, 396.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1030.45, 443.59], [1040.65, 432.64], [1068.98, 458.85], [1058.78, 469.81], [1030.45, 443.59]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.324, "pop": 0, "jobs": 324}}, {"shape": {"outer": [[1069.91, 479.78], [1075.2, 474.02], [1073.23, 472.23], [1074.88, 470.44], [1066.98, 463.25], [1060.05, 470.81], [1069.91, 479.78]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.083, "pop": 0, "jobs": 83}}, {"shape": {"outer": [[1071.61, 482.15], [1081.72, 470.91], [1111.34, 497.4], [1101.23, 508.63], [1071.61, 482.15]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.384, "pop": 0, "jobs": 384}}, {"shape": {"outer": [[1136.91, 326.77], [1163.9, 351.54], [1172.38, 342.38], [1167.45, 337.85], [1159.37, 330.42], [1149.85, 321.68], [1145.4, 317.6], [1136.91, 326.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.366, "pop": 183, "jobs": 0}}, {"shape": {"outer": [[1170.25, 361.9], [1181.42, 349.76], [1180.66, 349.07], [1181.73, 347.91], [1181.04, 347.28], [1180.12, 346.44], [1176.08, 342.74], [1175.01, 343.91], [1174.29, 343.24], [1163.12, 355.38], [1170.25, 361.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1170.66, 363.56], [1176.9, 369.23], [1180.77, 365.01], [1180.9, 365.12], [1184.62, 361.06], [1183.66, 360.2], [1187.96, 355.5], [1182.54, 350.57], [1170.66, 363.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1203.84, 386.65], [1207.48, 382.63], [1208.07, 383.16], [1211.13, 379.77], [1209.81, 378.59], [1212.8, 375.28], [1208.09, 371.05], [1200.44, 379.5], [1201.58, 380.53], [1199.54, 382.78], [1203.84, 386.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1207.5, 389.1], [1211.96, 393.17], [1212.68, 392.38], [1215.05, 394.52], [1220.7, 388.35], [1219.61, 387.37], [1222.45, 384.27], [1217.35, 379.63], [1212.04, 385.45], [1211.38, 384.86], [1207.5, 389.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1217.85, 399.74], [1219.16, 400.98], [1218.3, 401.88], [1221.62, 405.0], [1222.81, 403.74], [1224.93, 405.74], [1227.69, 402.83], [1229.06, 404.12], [1231.14, 401.93], [1229.77, 400.63], [1234.43, 395.71], [1233.68, 395.0], [1234.97, 393.64], [1229.18, 388.2], [1227.9, 389.56], [1227.69, 389.35], [1217.85, 399.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1229.73, 410.88], [1236.11, 416.74], [1245.31, 406.8], [1238.94, 400.94], [1229.73, 410.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1239.14, 418.73], [1246.39, 425.36], [1255.5, 415.49], [1248.78, 409.33], [1247.2, 411.05], [1246.66, 410.57], [1239.14, 418.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1252.12, 436.38], [1263.23, 424.16], [1262.26, 423.29], [1258.09, 419.53], [1256.59, 418.17], [1253.44, 421.63], [1252.94, 421.17], [1248.59, 425.96], [1248.86, 426.19], [1245.24, 430.17], [1249.95, 434.42], [1247.75, 436.82], [1249.54, 438.44], [1251.73, 436.02], [1252.12, 436.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1251.69, 438.76], [1261.46, 428.02], [1265.18, 431.39], [1267.21, 433.22], [1269.51, 435.3], [1259.74, 446.03], [1251.69, 438.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1281.78, 404.13], [1296.35, 417.29], [1305.92, 406.77], [1306.42, 407.23], [1312.14, 400.94], [1310.01, 399.01], [1310.92, 398.02], [1302.62, 390.52], [1301.71, 391.52], [1297.08, 387.33], [1281.78, 404.13]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.299, "pop": 0, "jobs": 299}}, {"shape": {"outer": [[1275.27, 394.66], [1282.13, 400.92], [1289.48, 392.91], [1287.07, 390.71], [1287.76, 389.96], [1283.87, 386.41], [1283.18, 387.17], [1282.62, 386.66], [1275.27, 394.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1258.49, 380.69], [1262.64, 384.54], [1264.15, 382.93], [1267.41, 385.97], [1276.68, 376.06], [1274.09, 373.65], [1278.99, 368.41], [1274.66, 364.38], [1269.75, 369.63], [1269.27, 369.17], [1258.49, 380.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[1248.36, 368.24], [1248.79, 368.64], [1247.54, 370.01], [1252.67, 374.7], [1253.94, 373.33], [1254.17, 373.55], [1264.72, 362.07], [1257.97, 355.9], [1253.68, 360.56], [1254.63, 361.42], [1248.36, 368.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1238.02, 362.04], [1244.8, 368.14], [1258.09, 353.5], [1256.96, 352.48], [1257.9, 351.45], [1253.38, 347.38], [1252.44, 348.41], [1251.31, 347.39], [1238.02, 362.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[1226.66, 349.3], [1230.22, 352.41], [1231.31, 353.36], [1232.03, 353.99], [1243.32, 341.12], [1237.42, 335.97], [1226.76, 348.12], [1227.29, 348.58], [1226.66, 349.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1224.39, 340.16], [1216.96, 333.02], [1223.35, 326.4], [1221.76, 324.87], [1225.78, 320.7], [1228.24, 323.05], [1231.25, 319.93], [1237.83, 326.24], [1224.39, 340.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[1207.16, 323.46], [1212.35, 328.26], [1219.1, 321.0], [1213.91, 316.2], [1207.16, 323.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1194.8, 319.12], [1196.2, 320.4], [1200.67, 324.54], [1201.97, 325.74], [1215.53, 311.19], [1208.37, 304.56], [1204.86, 308.32], [1194.8, 319.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[1189.29, 314.02], [1194.8, 319.12], [1204.86, 308.32], [1200.35, 304.14], [1196.19, 308.61], [1195.18, 307.68], [1189.29, 314.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1180.12, 308.48], [1185.97, 313.71], [1189.49, 309.8], [1189.89, 310.15], [1196.24, 303.09], [1189.62, 297.18], [1183.66, 303.82], [1184.02, 304.14], [1180.12, 308.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1169.37, 294.91], [1173.35, 298.53], [1174.57, 297.18], [1177.53, 299.88], [1183.45, 293.43], [1176.25, 286.88], [1171.14, 292.46], [1171.4, 292.69], [1169.37, 294.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1246.28, 444.84], [1254.7, 452.57], [1254.51, 452.77], [1257.34, 455.36], [1257.01, 455.71], [1258.79, 457.34], [1255.01, 461.44], [1254.3, 462.2], [1253.7, 462.86], [1240.66, 450.92], [1246.28, 444.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1246.92, 468.35], [1252.04, 462.66], [1245.12, 456.47], [1239.66, 462.55], [1242.99, 465.52], [1243.33, 465.15], [1246.92, 468.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1229.46, 468.53], [1240.49, 478.19], [1245.11, 472.95], [1240.8, 469.18], [1241.38, 468.51], [1237.48, 465.09], [1236.89, 465.75], [1234.08, 463.3], [1229.46, 468.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1231.34, 475.9], [1237.25, 481.27], [1228.35, 491.02], [1222.44, 485.67], [1231.34, 475.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2821.6, -1141.64], [-2809.88, -1155.4], [-2816.9, -1161.33], [-2828.61, -1147.56], [-2821.6, -1141.64]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.093, "pop": 0, "jobs": 93}}, {"shape": {"outer": [[-2821.6, -1141.64], [-2814.99, -1136.06], [-2801.08, -1152.41], [-2798.01, -1156.02], [-2804.62, -1161.6], [-2809.88, -1155.4], [-2821.6, -1141.64]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.063, "pop": 0, "jobs": 63}}, {"shape": {"outer": [[-2872.18, -1185.12], [-2855.29, -1204.48], [-2847.59, -1197.8], [-2864.48, -1178.45], [-2872.18, -1185.12]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.073, "pop": 0, "jobs": 73}}, {"shape": {"outer": [[907.62, 1300.01], [920.02, 1312.49], [934.29, 1298.4], [921.9, 1285.94], [907.62, 1300.01]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.246, "pop": 123, "jobs": 0}}, {"shape": {"outer": [[1376.81, 1277.88], [1388.09, 1266.17], [1378.31, 1256.82], [1367.04, 1268.53], [1376.81, 1277.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.141, "pop": 0, "jobs": 141}}, {"shape": {"outer": [[1340.25, 1247.32], [1352.28, 1233.98], [1342.82, 1223.98], [1329.36, 1237.84], [1340.25, 1247.32]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.168, "pop": 0, "jobs": 168}}, {"shape": {"outer": [[1371.33, 293.66], [1368.32, 290.96], [1369.5, 289.66], [1367.4, 287.76], [1374.13, 280.35], [1375.91, 281.96], [1376.61, 281.19], [1378.62, 283.0], [1377.56, 284.16], [1378.89, 285.34], [1371.33, 293.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1391.81, 277.22], [1398.14, 269.75], [1406.04, 276.41], [1401.1, 282.24], [1395.32, 277.38], [1393.93, 279.02], [1391.81, 277.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1402.87, 285.06], [1409.74, 277.61], [1415.04, 282.45], [1410.64, 287.21], [1411.69, 288.18], [1409.21, 290.87], [1402.87, 285.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1382.56, 268.02], [1384.64, 269.69], [1383.45, 271.17], [1389.68, 276.15], [1397.48, 266.47], [1389.17, 259.82], [1382.56, 268.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1369.79, 257.76], [1377.22, 248.98], [1384.95, 255.46], [1377.52, 264.25], [1369.79, 257.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1341.95, 269.19], [1350.89, 259.6], [1357.0, 265.27], [1348.04, 274.84], [1341.95, 269.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1429.6, 300.71], [1439.33, 290.37], [1447.69, 298.19], [1437.97, 308.52], [1429.6, 300.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1440.54, 312.31], [1441.88, 313.39], [1445.47, 316.26], [1448.94, 319.05], [1461.34, 303.68], [1452.93, 296.95], [1440.54, 312.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[1450.7, 320.23], [1459.12, 327.32], [1469.76, 316.24], [1462.68, 310.27], [1459.72, 312.93], [1458.23, 311.39], [1450.7, 320.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1448.5, 356.78], [1449.34, 355.82], [1462.1, 341.18], [1481.19, 357.69], [1477.64, 361.77], [1478.98, 362.93], [1467.49, 376.13], [1461.29, 370.77], [1458.66, 373.79], [1459.28, 374.33], [1456.74, 377.25], [1455.78, 376.43], [1452.63, 380.04], [1453.67, 380.94], [1450.81, 384.23], [1449.9, 383.45], [1447.2, 386.54], [1447.86, 387.1], [1444.56, 390.88], [1443.63, 390.08], [1441.7, 392.29], [1440.45, 393.73], [1438.26, 391.84], [1437.24, 393.0], [1434.4, 390.53], [1429.78, 386.54], [1435.24, 380.27], [1433.95, 379.15], [1436.46, 376.27], [1437.54, 377.21], [1439.95, 374.44], [1439.04, 373.65], [1441.59, 370.74], [1442.6, 371.62], [1445.89, 367.86], [1445.18, 367.24], [1447.77, 364.27], [1448.87, 365.23], [1451.45, 362.27], [1450.28, 361.25], [1451.74, 359.58], [1448.5, 356.78]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.673, "pop": 0, "jobs": 673}}, {"shape": {"outer": [[1474.08, 377.18], [1527.79, 348.42], [1535.34, 362.41], [1474.52, 394.97], [1468.16, 383.17], [1475.27, 379.37], [1474.08, 377.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.862, "pop": 431, "jobs": 0}}, {"shape": {"outer": [[1727.07, 497.35], [1721.21, 492.16], [1733.74, 478.11], [1739.61, 483.3], [1727.07, 497.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1727.58, 497.97], [1729.24, 499.39], [1727.83, 501.02], [1731.76, 504.39], [1733.04, 502.92], [1735.03, 504.64], [1748.44, 489.17], [1740.86, 482.65], [1727.58, 497.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[1735.29, 505.34], [1736.43, 506.36], [1735.16, 507.78], [1739.57, 511.68], [1740.95, 510.13], [1741.93, 511.01], [1754.34, 497.06], [1747.79, 491.28], [1735.29, 505.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[1755.56, 497.91], [1761.88, 503.63], [1749.46, 517.27], [1743.14, 511.56], [1755.56, 497.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1773.97, 533.21], [1778.85, 526.57], [1777.9, 525.86], [1782.55, 519.53], [1787.26, 522.96], [1785.43, 525.45], [1788.42, 527.63], [1780.99, 537.75], [1782.37, 538.76], [1779.37, 542.84], [1773.87, 538.82], [1775.93, 536.03], [1773.97, 533.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1788.73, 538.54], [1798.17, 528.15], [1800.16, 525.96], [1812.25, 536.86], [1810.39, 538.91], [1800.82, 549.43], [1788.73, 538.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.222, "pop": 111, "jobs": 0}}, {"shape": {"outer": [[1805.2, 551.72], [1815.44, 541.66], [1822.27, 548.51], [1812.46, 558.55], [1805.2, 551.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1816.65, 565.48], [1830.08, 550.32], [1842.07, 560.88], [1828.63, 576.03], [1816.65, 565.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.258, "pop": 129, "jobs": 0}}, {"shape": {"outer": [[1724.45, 531.12], [1731.4, 537.25], [1740.64, 526.82], [1734.87, 521.74], [1733.74, 523.0], [1732.56, 521.97], [1724.45, 531.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1701.6, 511.08], [1708.92, 502.1], [1710.42, 503.31], [1712.24, 501.09], [1718.21, 505.92], [1709.08, 517.13], [1701.6, 511.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1708.94, 517.81], [1716.4, 509.02], [1724.01, 515.42], [1716.55, 524.22], [1708.94, 517.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1716.4, 524.69], [1723.45, 530.88], [1731.46, 521.82], [1730.58, 521.06], [1732.22, 519.21], [1726.6, 514.28], [1725.21, 515.85], [1724.65, 515.37], [1716.4, 524.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1535.96, 368.13], [1542.88, 361.22], [1544.64, 362.18], [1548.37, 361.49], [1551.32, 363.86], [1551.13, 366.12], [1542.54, 374.68], [1535.96, 368.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1520.27, 381.84], [1527.22, 388.01], [1516.98, 399.46], [1510.03, 393.29], [1520.27, 381.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1517.89, 403.8], [1529.79, 389.99], [1537.49, 396.57], [1525.59, 410.39], [1517.89, 403.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[1550.71, 382.45], [1547.52, 379.31], [1549.84, 376.97], [1546.07, 373.23], [1553.3, 365.97], [1560.27, 372.86], [1550.71, 382.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1551.45, 383.39], [1559.26, 390.92], [1566.06, 383.93], [1558.24, 376.39], [1551.45, 383.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1560.88, 392.09], [1569.79, 382.42], [1577.41, 388.83], [1568.41, 398.51], [1560.88, 392.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1569.85, 399.95], [1572.63, 402.23], [1574.68, 400.51], [1579.61, 404.73], [1585.54, 397.76], [1578.05, 390.95], [1569.85, 399.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1605.02, 423.57], [1611.49, 429.37], [1621.56, 418.23], [1615.12, 412.46], [1612.07, 415.83], [1611.72, 415.52], [1607.35, 420.35], [1607.66, 420.64], [1605.02, 423.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1612.2, 431.1], [1613.18, 430.02], [1612.37, 429.29], [1621.31, 419.33], [1628.25, 425.51], [1619.11, 435.71], [1618.57, 435.22], [1617.79, 436.08], [1612.2, 431.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1620.59, 436.81], [1629.76, 426.5], [1637.03, 432.92], [1627.89, 443.19], [1625.12, 440.74], [1624.06, 441.92], [1619.91, 438.26], [1620.94, 437.1], [1620.59, 436.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1536.04, 424.67], [1544.3, 432.2], [1545.7, 430.7], [1548.44, 433.19], [1553.84, 427.31], [1552.77, 426.33], [1558.47, 420.12], [1548.77, 411.28], [1545.45, 414.9], [1543.65, 413.26], [1538.04, 419.37], [1539.6, 420.79], [1536.04, 424.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.216, "pop": 108, "jobs": 0}}, {"shape": {"outer": [[1604.08, 408.34], [1604.5, 408.72], [1607.36, 405.57], [1609.58, 407.57], [1610.3, 406.79], [1613.63, 409.8], [1610.65, 413.07], [1611.51, 413.84], [1608.83, 416.79], [1609.27, 417.19], [1606.04, 420.75], [1605.65, 420.39], [1604.36, 421.82], [1597.48, 415.6], [1604.08, 408.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1378.05, 292.86], [1383.85, 285.9], [1393.53, 293.9], [1401.07, 300.13], [1396.61, 305.5], [1395.75, 306.52], [1395.27, 307.1], [1378.05, 292.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[1690.13, 497.41], [1701.3, 484.45], [1706.3, 483.16], [1710.46, 487.07], [1710.56, 490.66], [1712.04, 492.19], [1707.71, 497.21], [1709.25, 499.17], [1703.64, 505.18], [1701.12, 502.89], [1698.15, 506.02], [1692.94, 501.29], [1693.71, 500.39], [1690.13, 497.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[1675.51, 481.55], [1678.07, 484.02], [1676.37, 485.75], [1680.3, 489.53], [1681.49, 488.31], [1685.14, 491.83], [1689.43, 487.4], [1689.33, 485.98], [1691.69, 483.04], [1691.41, 482.42], [1690.97, 481.85], [1692.44, 481.18], [1692.89, 478.3], [1688.58, 474.5], [1684.59, 474.29], [1685.45, 473.41], [1682.81, 470.87], [1677.61, 476.2], [1678.57, 477.13], [1675.98, 479.78], [1676.62, 480.4], [1675.51, 481.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[1660.13, 469.3], [1669.97, 458.31], [1679.08, 466.4], [1674.27, 471.79], [1673.67, 473.12], [1669.17, 478.15], [1665.26, 474.68], [1664.54, 475.48], [1661.42, 472.72], [1662.56, 471.45], [1660.13, 469.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[1632.4, 438.81], [1633.87, 437.29], [1634.36, 437.75], [1637.28, 434.73], [1640.44, 437.75], [1642.68, 435.42], [1650.76, 443.15], [1649.27, 444.7], [1650.27, 445.66], [1642.07, 454.18], [1630.04, 442.67], [1633.1, 439.48], [1632.4, 438.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[1647.28, 459.99], [1657.92, 448.36], [1663.11, 453.08], [1660.74, 455.67], [1662.32, 457.11], [1660.85, 458.71], [1661.7, 459.49], [1658.57, 462.9], [1657.95, 462.33], [1653.54, 467.15], [1651.83, 465.59], [1652.57, 464.79], [1647.28, 459.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1978.67, 626.94], [1987.45, 618.38], [1999.01, 630.15], [1990.24, 638.71], [1978.67, 626.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[2048.64, 690.51], [2058.21, 679.95], [2050.51, 673.02], [2040.94, 683.57], [2048.64, 690.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2085.06, 719.34], [2094.26, 708.76], [2085.3, 701.02], [2076.1, 711.59], [2085.06, 719.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2011.6, 657.47], [2020.08, 647.72], [2029.71, 656.03], [2021.23, 665.78], [2011.6, 657.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1997.43, 645.19], [2006.22, 636.91], [2012.8, 643.85], [2004.01, 652.12], [1997.43, 645.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1973.68, 624.78], [1982.04, 614.8], [1971.45, 606.0], [1963.1, 615.99], [1973.68, 624.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[2089.17, 726.79], [2101.15, 713.81], [2107.34, 719.51], [2095.36, 732.47], [2089.17, 726.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2036.62, 680.1], [2045.1, 670.56], [2031.61, 658.66], [2023.13, 668.2], [2036.62, 680.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[2071.5, 709.74], [2078.58, 701.3], [2070.23, 694.35], [2063.16, 702.8], [2071.5, 709.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2057.7, 693.77], [2066.72, 684.35], [2071.5, 688.89], [2060.28, 700.6], [2055.5, 696.06], [2057.7, 693.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1413.07, 323.2], [1419.82, 329.19], [1429.38, 318.49], [1422.64, 312.5], [1413.07, 323.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1424.89, 330.88], [1430.7, 335.89], [1440.54, 324.53], [1434.74, 319.52], [1424.89, 330.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1430.99, 343.31], [1440.26, 349.59], [1449.44, 336.09], [1440.17, 329.83], [1430.99, 343.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[1316.17, 295.38], [1317.04, 296.19], [1318.28, 297.34], [1323.2, 301.9], [1334.95, 289.32], [1333.31, 287.81], [1334.45, 286.58], [1330.83, 283.22], [1329.69, 284.45], [1327.91, 282.8], [1316.17, 295.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1280.63, 263.71], [1287.87, 270.14], [1298.08, 258.74], [1296.82, 257.62], [1300.54, 253.47], [1296.22, 249.62], [1295.78, 250.1], [1293.84, 248.38], [1291.66, 250.81], [1291.25, 250.44], [1288.48, 253.54], [1289.17, 254.17], [1287.11, 256.47], [1286.5, 255.94], [1282.71, 260.17], [1283.31, 260.71], [1280.63, 263.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[1233.36, 220.92], [1244.58, 209.36], [1253.43, 217.88], [1242.21, 229.44], [1233.36, 220.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[1308.17, 288.45], [1315.69, 295.24], [1329.26, 280.34], [1321.74, 273.54], [1308.17, 288.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[1270.49, 254.26], [1278.88, 261.82], [1291.96, 247.39], [1283.57, 239.84], [1270.49, 254.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[1298.75, 279.97], [1302.59, 283.46], [1301.01, 285.19], [1301.88, 285.98], [1303.21, 287.19], [1304.05, 287.96], [1318.49, 272.23], [1317.49, 271.32], [1318.74, 269.96], [1313.85, 265.51], [1312.6, 266.88], [1311.6, 265.97], [1298.75, 279.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[1262.72, 247.49], [1265.25, 249.83], [1264.91, 250.21], [1269.05, 254.03], [1272.19, 250.67], [1272.37, 250.83], [1277.28, 245.56], [1277.1, 245.38], [1281.27, 240.9], [1274.59, 234.73], [1269.19, 240.53], [1268.63, 240.0], [1264.76, 244.16], [1265.33, 244.68], [1262.72, 247.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1288.96, 271.62], [1292.21, 274.53], [1294.6, 276.66], [1296.08, 277.98], [1306.96, 265.88], [1304.47, 263.67], [1305.91, 262.07], [1302.02, 258.59], [1300.58, 260.19], [1299.84, 259.53], [1288.96, 271.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1252.32, 238.52], [1265.55, 224.19], [1273.51, 231.49], [1260.28, 245.82], [1260.07, 245.63], [1258.63, 247.18], [1255.59, 244.4], [1257.02, 242.84], [1252.32, 238.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[-1375.05, -2427.36], [-1339.34, -2428.44], [-1338.96, -2416.5], [-1279.76, -2418.9], [-1276.72, -2377.52], [-1372.71, -2374.18], [-1375.05, -2427.36]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2793}}, {"shape": {"outer": [[-1173.11, -2568.98], [-1154.56, -2569.8], [-1152.86, -2568.96], [-1153.6, -2567.47], [-1144.12, -2562.82], [-1137.27, -2576.68], [-1135.28, -2575.7], [-1117.83, -2611.0], [-1119.7, -2611.92], [-1115.79, -2619.84], [-1116.22, -2620.05], [-1114.95, -2622.63], [-1126.65, -2628.38], [-1150.66, -2626.83], [-1152.11, -2623.9], [-1158.12, -2626.85], [-1169.32, -2604.21], [-1170.71, -2604.9], [-1171.57, -2603.17], [-1174.58, -2603.0], [-1173.11, -2568.98]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1666}}, {"shape": {"outer": [[-1044.8, -2581.74], [-1032.86, -2582.26], [-1033.52, -2597.4], [-1035.26, -2597.33], [-1035.3, -2598.29], [-1038.79, -2598.14], [-1038.75, -2597.17], [-1045.45, -2596.88], [-1044.8, -2581.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.118, "pop": 0, "jobs": 118}}, {"shape": {"outer": [[-1220.2, -2406.4], [-1221.98, -2403.27], [-1220.32, -2402.34], [-1223.61, -2396.54], [-1214.49, -2391.41], [-1217.12, -2386.79], [-1208.4, -2381.88], [-1200.71, -2395.44], [-1220.2, -2406.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.216, "pop": 108, "jobs": 0}}, {"shape": {"outer": [[-1526.25, -2024.19], [-1516.35, -2041.23], [-1498.88, -2031.16], [-1508.77, -2014.12], [-1526.25, -2024.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.318, "pop": 159, "jobs": 0}}, {"shape": {"outer": [[-1446.29, -2024.63], [-1437.18, -2019.68], [-1427.38, -2037.57], [-1436.49, -2042.52], [-1446.29, -2024.63]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.135, "pop": 0, "jobs": 135}}, {"shape": {"outer": [[-1513.24, -2046.5], [-1503.91, -2063.93], [-1487.11, -2055.01], [-1496.44, -2037.58], [-1513.24, -2046.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[-1484.81, -1960.37], [-1480.89, -1967.45], [-1483.57, -1968.92], [-1478.76, -1977.61], [-1475.83, -1976.01], [-1477.47, -1973.06], [-1453.82, -1960.07], [-1451.94, -1953.99], [-1454.9, -1948.64], [-1460.59, -1947.05], [-1484.81, -1960.37]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.307, "pop": 0, "jobs": 307}}, {"shape": {"outer": [[-1467.78, -1990.5], [-1467.32, -1991.34], [-1460.43, -2004.16], [-1445.71, -1996.3], [-1448.18, -1991.71], [-1431.47, -1982.79], [-1436.35, -1973.71], [-1438.2, -1974.7], [-1467.78, -1990.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.364, "pop": 182, "jobs": 0}}, {"shape": {"outer": [[-1440.36, -1896.19], [-1434.88, -1893.21], [-1424.36, -1887.46], [-1408.61, -1916.11], [-1414.93, -1919.56], [-1407.76, -1932.61], [-1406.49, -1931.92], [-1401.43, -1941.11], [-1392.56, -1936.26], [-1386.09, -1948.03], [-1394.83, -1952.8], [-1397.88, -1947.25], [-1403.64, -1950.4], [-1408.95, -1953.29], [-1440.36, -1896.19]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.713, "pop": 0, "jobs": 713}}, {"shape": {"outer": [[2276.76, 895.56], [2282.21, 890.53], [2291.64, 900.67], [2286.2, 905.7], [2276.76, 895.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2181.16, 806.19], [2189.92, 796.27], [2197.03, 802.52], [2188.28, 812.44], [2181.16, 806.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2139.2, 750.56], [2140.72, 748.73], [2136.2, 744.98], [2131.94, 750.12], [2129.11, 747.78], [2122.16, 756.16], [2131.83, 764.16], [2141.52, 752.48], [2139.2, 750.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2151.28, 782.32], [2160.21, 772.58], [2165.92, 777.78], [2156.99, 787.52], [2151.28, 782.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2113.7, 747.59], [2118.58, 742.49], [2126.09, 749.62], [2121.2, 754.73], [2113.7, 747.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2143.13, 774.39], [2152.06, 765.16], [2158.42, 771.27], [2149.49, 780.51], [2143.13, 774.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2190.77, 817.51], [2201.38, 806.31], [2208.79, 813.28], [2198.16, 824.48], [2190.77, 817.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2135.15, 765.83], [2141.11, 759.34], [2148.17, 765.78], [2142.2, 772.26], [2135.15, 765.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2211.43, 833.47], [2218.47, 826.58], [2220.87, 829.04], [2223.78, 826.2], [2226.4, 828.86], [2216.45, 838.58], [2211.43, 833.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2263.31, 881.59], [2274.03, 870.36], [2281.62, 877.53], [2276.24, 883.19], [2279.6, 886.37], [2274.27, 891.97], [2263.31, 881.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2323.05, 964.4], [2333.54, 954.1], [2339.91, 960.54], [2327.38, 972.82], [2323.43, 968.82], [2325.46, 966.83], [2323.05, 964.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-737.03, -1025.43], [-725.73, -1018.69], [-722.43, -1023.94], [-716.62, -1020.14], [-681.76, -1072.69], [-688.53, -1077.65], [-687.12, -1079.28], [-690.21, -1080.92], [-689.98, -1081.85], [-697.08, -1088.78], [-737.03, -1025.43]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 1268, "jobs": 0}}, {"shape": {"outer": [[-653.98, -1210.87], [-652.17, -1212.5], [-653.52, -1213.66], [-658.87, -1218.26], [-660.86, -1216.6], [-663.1, -1217.72], [-666.76, -1212.04], [-668.89, -1213.4], [-675.31, -1217.22], [-703.42, -1171.77], [-707.76, -1175.66], [-728.34, -1194.07], [-708.07, -1209.06], [-720.6, -1224.83], [-722.43, -1223.86], [-723.92, -1225.14], [-729.71, -1219.03], [-733.11, -1221.7], [-740.85, -1213.81], [-739.05, -1211.35], [-746.21, -1206.38], [-743.87, -1203.41], [-749.15, -1197.84], [-751.86, -1199.61], [-756.09, -1194.6], [-753.78, -1192.81], [-754.93, -1190.93], [-751.0, -1188.0], [-753.07, -1186.62], [-746.77, -1179.39], [-744.31, -1181.58], [-716.11, -1156.07], [-716.85, -1153.94], [-710.17, -1147.92], [-711.96, -1145.35], [-700.5, -1139.07], [-659.62, -1203.83], [-653.98, -1210.87]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 2983, "jobs": 0}}, {"shape": {"outer": [[-2298.75, -729.4], [-2290.68, -723.17], [-2285.07, -718.84], [-2295.37, -705.59], [-2293.96, -704.48], [-2296.38, -701.37], [-2299.71, -703.93], [-2299.41, -704.32], [-2307.69, -710.68], [-2308.65, -711.09], [-2311.59, -713.49], [-2309.57, -715.94], [-2308.95, -716.7], [-2309.06, -718.69], [-2309.58, -719.08], [-2302.49, -728.2], [-2300.74, -726.85], [-2298.75, -729.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.248, "pop": 0, "jobs": 248}}, {"shape": {"outer": [[-1309.33, -580.0], [-1314.82, -579.84], [-1320.03, -590.47], [-1321.47, -593.56], [-1317.63, -594.75], [-1316.25, -591.77], [-1313.07, -584.88], [-1294.57, -585.92], [-1294.64, -584.64], [-1309.48, -583.72], [-1309.33, -580.0]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2839.65, -47.77], [-2839.46, -47.46], [-2839.4, -47.1], [-2839.49, -46.75], [-2839.7, -46.46], [-2840.01, -46.27], [-2840.37, -46.21], [-2840.72, -46.29], [-2841.01, -46.51], [-2841.2, -46.81], [-2841.26, -47.18], [-2841.17, -47.52], [-2840.96, -47.82], [-2840.66, -48.01], [-2840.3, -48.06], [-2839.95, -47.98], [-2839.65, -47.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.002, "pop": 1, "jobs": 0}}, {"shape": {"outer": [[-2839.55, -45.5], [-2839.36, -45.2], [-2839.3, -44.84], [-2839.39, -44.5], [-2839.6, -44.2], [-2839.91, -44.02], [-2840.26, -43.95], [-2840.61, -44.04], [-2840.91, -44.25], [-2841.1, -44.56], [-2841.16, -44.91], [-2841.07, -45.26], [-2840.86, -45.55], [-2840.55, -45.74], [-2840.19, -45.8], [-2839.84, -45.72], [-2839.55, -45.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.002, "pop": 1, "jobs": 0}}, {"shape": {"outer": [[-2838.86, -58.48], [-2838.09, -57.77], [-2837.67, -56.82], [-2837.64, -55.78], [-2838.01, -54.81], [-2838.72, -54.05], [-2839.68, -53.63], [-2840.72, -53.6], [-2841.69, -53.97], [-2842.45, -54.68], [-2842.87, -55.62], [-2842.91, -56.67], [-2842.54, -57.63], [-2841.82, -58.39], [-2840.87, -58.81], [-2839.83, -58.84], [-2838.86, -58.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2831.26, -58.85], [-2830.62, -57.9], [-2830.38, -56.78], [-2830.6, -55.67], [-2831.23, -54.71], [-2832.19, -54.07], [-2833.3, -53.84], [-2834.43, -54.07], [-2835.38, -54.69], [-2836.03, -55.63], [-2836.26, -56.76], [-2836.04, -57.88], [-2835.4, -58.83], [-2834.46, -59.47], [-2833.33, -59.7], [-2832.21, -59.48], [-2831.26, -58.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2839.71, -50.01], [-2839.52, -49.71], [-2839.46, -49.35], [-2839.55, -48.99], [-2839.76, -48.7], [-2840.08, -48.51], [-2840.43, -48.46], [-2840.79, -48.54], [-2841.08, -48.75], [-2841.26, -49.06], [-2841.32, -49.42], [-2841.24, -49.77], [-2841.02, -50.06], [-2840.72, -50.25], [-2840.36, -50.3], [-2840.01, -50.23], [-2839.71, -50.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.002, "pop": 1, "jobs": 0}}, {"shape": {"outer": [[-2842.06, -46.31], [-2841.86, -45.99], [-2841.81, -45.64], [-2841.89, -45.29], [-2842.1, -45.0], [-2842.41, -44.81], [-2842.77, -44.76], [-2843.12, -44.83], [-2843.41, -45.05], [-2843.6, -45.35], [-2843.66, -45.71], [-2843.58, -46.07], [-2843.36, -46.35], [-2843.06, -46.55], [-2842.7, -46.6], [-2842.35, -46.51], [-2842.06, -46.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.002, "pop": 1, "jobs": 0}}, {"shape": {"outer": [[-2842.15, -48.46], [-2841.96, -48.16], [-2841.9, -47.79], [-2841.99, -47.45], [-2842.2, -47.15], [-2842.51, -46.96], [-2842.87, -46.91], [-2843.22, -46.99], [-2843.51, -47.2], [-2843.71, -47.51], [-2843.76, -47.86], [-2843.68, -48.22], [-2843.47, -48.51], [-2843.15, -48.7], [-2842.8, -48.76], [-2842.44, -48.68], [-2842.15, -48.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.002, "pop": 1, "jobs": 0}}, {"shape": {"outer": [[-2841.94, -52.44], [-2841.69, -52.04], [-2841.62, -51.59], [-2841.72, -51.13], [-2841.99, -50.76], [-2842.38, -50.51], [-2842.84, -50.43], [-2843.3, -50.54], [-2843.68, -50.81], [-2843.92, -51.2], [-2844.0, -51.66], [-2843.89, -52.1], [-2843.62, -52.49], [-2843.23, -52.73], [-2842.77, -52.8], [-2842.32, -52.7], [-2841.94, -52.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[-2824.18, -36.5], [-2815.17, -36.71], [-2815.37, -45.42], [-2824.39, -45.21], [-2824.18, -36.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2475.19, -248.8], [-2466.65, -249.22], [-2458.47, -249.64], [-2458.55, -252.88], [-2466.74, -252.57], [-2475.33, -252.22], [-2475.19, -248.8]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2093.78, -490.1], [-2094.74, -523.55], [-2101.33, -523.37], [-2123.48, -522.79], [-2123.19, -511.59], [-2122.23, -511.62], [-2122.12, -507.67], [-2119.81, -507.73], [-2119.17, -483.61], [-2116.16, -483.7], [-2116.11, -481.7], [-2109.04, -481.88], [-2109.1, -483.89], [-2102.76, -484.05], [-2102.82, -486.1], [-2095.88, -488.17], [-2095.86, -490.04], [-2093.78, -490.1]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 1440, "jobs": 0}}, {"shape": {"outer": [[-1984.91, -360.48], [-1985.06, -366.72], [-1980.02, -366.84], [-1980.08, -369.21], [-1973.19, -369.37], [-1973.14, -367.09], [-1975.16, -367.03], [-1975.0, -360.73], [-1984.91, -360.48]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1532.35, -156.07], [-1533.26, -176.73], [-1533.45, -181.31], [-1536.33, -181.18], [-1536.65, -188.14], [-1536.68, -188.95], [-1540.06, -188.8], [-1540.08, -189.46], [-1559.69, -188.62], [-1559.32, -180.04], [-1572.14, -179.49], [-1571.84, -172.55], [-1597.7, -171.44], [-1597.6, -168.96], [-1596.89, -152.26], [-1580.82, -152.94], [-1580.85, -153.72], [-1576.46, -153.91], [-1557.97, -154.71], [-1557.93, -153.7], [-1538.89, -154.53], [-1538.96, -155.78], [-1532.35, -156.07]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1079}}, {"shape": {"outer": [[-1318.78, -191.73], [-1320.93, -191.62], [-1322.21, -191.56], [-1322.15, -190.26], [-1329.06, -189.92], [-1333.87, -189.7], [-1336.32, -189.57], [-1336.38, -190.83], [-1338.06, -190.74], [-1339.13, -190.69], [-1340.25, -190.64], [-1340.93, -204.83], [-1339.74, -204.89], [-1329.84, -205.38], [-1321.61, -205.75], [-1277.95, -207.85], [-1277.68, -202.23], [-1277.31, -194.55], [-1276.61, -179.93], [-1273.99, -180.06], [-1273.4, -167.69], [-1274.71, -167.63], [-1276.1, -167.55], [-1275.55, -156.1], [-1279.19, -155.93], [-1279.06, -153.36], [-1306.37, -152.06], [-1306.49, -154.55], [-1309.47, -154.41], [-1316.92, -154.06], [-1316.99, -155.67], [-1317.93, -155.62], [-1318.07, -158.59], [-1318.55, -168.58], [-1318.62, -170.16], [-1318.72, -172.19], [-1317.84, -172.23], [-1318.78, -191.73]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1659}}, {"shape": {"outer": [[-1905.51, -395.42], [-1905.79, -403.72], [-1891.49, -404.21], [-1891.21, -395.91], [-1905.51, -395.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1862.73, -114.35], [-1859.54, -114.47], [-1859.82, -120.6], [-1862.97, -120.5], [-1862.73, -114.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1839.6, -81.31], [-1836.22, -81.45], [-1836.89, -97.76], [-1840.27, -97.62], [-1839.6, -81.31]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1790.49, -632.0], [-1768.5, -632.84], [-1768.58, -635.01], [-1763.75, -635.19], [-1763.09, -617.9], [-1769.1, -617.68], [-1771.52, -620.21], [-1776.55, -620.06], [-1776.62, -622.73], [-1785.83, -622.46], [-1790.35, -623.88], [-1790.49, -632.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.26, "pop": 130, "jobs": 0}}, {"shape": {"outer": [[-1806.21, -657.87], [-1797.58, -658.06], [-1797.73, -665.05], [-1796.56, -665.08], [-1796.76, -674.4], [-1801.19, -674.31], [-1801.24, -676.61], [-1806.61, -676.5], [-1806.49, -670.6], [-1807.63, -670.57], [-1807.45, -662.31], [-1806.31, -662.35], [-1806.21, -657.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1903.39, -428.47], [-1892.07, -434.62], [-1892.65, -466.18], [-1893.38, -466.17], [-1893.41, -467.73], [-1893.73, -467.73], [-1893.77, -469.53], [-1894.94, -469.5], [-1894.95, -470.12], [-1906.73, -469.85], [-1906.66, -467.19], [-1908.55, -467.15], [-1908.39, -460.61], [-1906.53, -460.65], [-1905.94, -436.47], [-1907.78, -436.43], [-1907.7, -432.97], [-1905.87, -433.03], [-1903.39, -428.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.44, "pop": 220, "jobs": 0}}, {"shape": {"outer": [[-1776.55, -668.35], [-1776.23, -658.77], [-1764.1, -659.18], [-1764.43, -668.76], [-1776.55, -668.35]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.074, "pop": 0, "jobs": 74}}, {"shape": {"outer": [[-1671.84, -471.97], [-1672.15, -479.26], [-1663.66, -479.63], [-1663.35, -472.34], [-1665.23, -472.26], [-1665.08, -468.67], [-1668.5, -468.53], [-1668.66, -472.11], [-1671.84, -471.97]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2610.66, -262.18], [-2599.8, -262.54], [-2600.11, -271.82], [-2601.71, -273.24], [-2601.83, -276.95], [-2611.13, -276.65], [-2611.03, -273.3], [-2613.88, -273.2], [-2613.63, -265.24], [-2610.76, -265.32], [-2610.66, -262.18]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.111, "pop": 0, "jobs": 111}}, {"shape": {"outer": [[-2701.34, -213.58], [-2701.69, -223.73], [-2680.07, -224.47], [-2679.73, -214.32], [-2690.43, -213.96], [-2690.35, -211.3], [-2692.37, -211.23], [-2692.21, -206.64], [-2695.71, -206.51], [-2695.87, -211.12], [-2697.71, -211.06], [-2697.8, -213.7], [-2701.34, -213.58]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.163, "pop": 0, "jobs": 163}}, {"shape": {"outer": [[-2893.17, -177.59], [-2903.05, -179.1], [-2900.59, -195.09], [-2890.71, -193.6], [-2893.17, -177.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2870.69, -173.62], [-2879.74, -174.94], [-2876.99, -193.53], [-2867.94, -192.2], [-2870.69, -173.62]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.11, "pop": 0, "jobs": 110}}, {"shape": {"outer": [[-2881.71, -176.24], [-2890.97, -177.76], [-2888.22, -194.61], [-2878.95, -193.11], [-2881.71, -176.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2876.08, -136.27], [-2884.91, -137.63], [-2882.54, -152.93], [-2873.71, -151.59], [-2876.08, -136.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2575.14, -245.39], [-2575.45, -254.68], [-2559.19, -255.22], [-2558.89, -245.92], [-2575.14, -245.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2655.13, -244.0], [-2655.47, -253.8], [-2644.3, -254.18], [-2643.97, -244.85], [-2646.2, -244.77], [-2646.19, -244.3], [-2655.13, -244.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2575.8, -273.54], [-2576.16, -283.33], [-2560.38, -283.91], [-2560.29, -281.23], [-2558.05, -281.31], [-2557.79, -274.22], [-2575.8, -273.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2659.24, -276.24], [-2658.85, -263.56], [-2657.43, -263.6], [-2657.37, -261.91], [-2647.44, -262.22], [-2647.5, -263.91], [-2642.69, -264.05], [-2643.08, -276.74], [-2659.24, -276.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[-2656.53, -225.23], [-2656.95, -236.16], [-2643.81, -236.62], [-2643.79, -236.2], [-2641.62, -236.28], [-2641.19, -226.27], [-2643.29, -226.17], [-2643.27, -225.73], [-2656.53, -225.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2106.0, -786.89], [-2107.19, -817.83], [-2105.0, -817.92], [-2105.45, -829.87], [-2095.08, -830.27], [-2094.32, -810.43], [-2099.49, -810.24], [-2098.93, -795.78], [-2090.57, -796.1], [-2090.24, -787.5], [-2106.0, -786.89]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.298, "pop": 0, "jobs": 298}}, {"shape": {"outer": [[-2046.62, -766.43], [-2057.84, -766.25], [-2057.83, -765.71], [-2068.97, -765.53], [-2068.96, -765.03], [-2086.69, -764.76], [-2086.87, -776.13], [-2069.43, -776.41], [-2069.45, -777.0], [-2058.89, -777.17], [-2058.9, -777.7], [-2046.8, -777.9], [-2046.62, -766.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.368, "pop": 184, "jobs": 0}}, {"shape": {"outer": [[-2079.83, -717.37], [-2079.95, -721.76], [-2083.42, -721.67], [-2083.44, -722.83], [-2086.96, -722.74], [-2087.81, -755.23], [-2079.9, -755.44], [-2079.85, -753.98], [-2072.11, -754.18], [-2071.55, -732.85], [-2054.68, -733.28], [-2054.48, -725.83], [-2053.08, -725.87], [-2052.87, -718.08], [-2079.83, -717.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.654, "pop": 327, "jobs": 0}}, {"shape": {"outer": [[-2058.61, -831.9], [-2058.55, -830.07], [-2057.81, -808.55], [-2057.72, -806.05], [-2032.35, -806.92], [-2033.26, -832.77], [-2058.61, -831.9]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.184, "pop": 0, "jobs": 184}}, {"shape": {"outer": [[-2125.15, -730.11], [-2125.52, -745.35], [-2092.47, -746.15], [-2092.1, -730.9], [-2125.15, -730.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.404, "pop": 202, "jobs": 0}}, {"shape": {"outer": [[-2079.66, -780.43], [-2068.23, -780.66], [-2068.58, -797.97], [-2080.01, -797.74], [-2079.66, -780.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-2210.91, -772.14], [-2210.59, -762.13], [-2210.51, -759.68], [-2201.71, -759.95], [-2175.16, -760.81], [-2175.55, -773.24], [-2210.91, -772.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.352, "pop": 176, "jobs": 0}}, {"shape": {"outer": [[-1985.8, -799.67], [-1985.46, -789.15], [-1968.46, -789.7], [-1968.8, -800.22], [-1985.8, -799.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2127.06, -766.14], [-2127.4, -781.44], [-2093.11, -782.2], [-2092.77, -766.91], [-2127.06, -766.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.42, "pop": 210, "jobs": 0}}, {"shape": {"outer": [[-2010.13, -769.52], [-2010.67, -785.11], [-1986.69, -785.95], [-1978.16, -775.35], [-1982.47, -771.57], [-1987.19, -770.33], [-2010.13, -769.52]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.283, "pop": 0, "jobs": 283}}, {"shape": {"outer": [[-2035.19, -717.54], [-2042.52, -717.35], [-2042.54, -718.44], [-2049.11, -718.28], [-2049.94, -752.34], [-2036.05, -752.69], [-2035.19, -717.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.386, "pop": 193, "jobs": 0}}, {"shape": {"outer": [[-2146.28, -800.19], [-2147.12, -821.89], [-2142.95, -827.07], [-2108.22, -828.34], [-2107.53, -809.27], [-2112.05, -809.11], [-2126.22, -808.59], [-2126.92, -807.62], [-2127.61, -806.64], [-2127.39, -800.88], [-2146.28, -800.19]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.926, "pop": 463, "jobs": 0}}, {"shape": {"outer": [[-2128.96, -737.67], [-2135.26, -737.54], [-2135.24, -736.52], [-2142.82, -736.37], [-2143.28, -760.83], [-2135.84, -760.97], [-2135.82, -759.6], [-2129.37, -759.72], [-2128.96, -737.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.26, "pop": 130, "jobs": 0}}, {"shape": {"outer": [[-2044.1, -768.29], [-2032.47, -768.63], [-2033.51, -805.72], [-2057.57, -805.04], [-2057.39, -798.69], [-2046.84, -798.98], [-2046.89, -801.02], [-2045.02, -801.08], [-2044.1, -768.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.406, "pop": 203, "jobs": 0}}, {"shape": {"outer": [[532.16, 1029.3], [515.22, 1014.04], [524.82, 1003.46], [535.32, 1012.92], [539.04, 1008.83], [528.62, 999.43], [538.23, 988.84], [555.1, 1004.05], [532.16, 1029.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.558, "pop": 279, "jobs": 0}}, {"shape": {"outer": [[546.86, 1042.5], [536.42, 1033.12], [544.47, 1024.23], [551.69, 1016.26], [562.13, 1025.63], [546.86, 1042.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.256, "pop": 128, "jobs": 0}}, {"shape": {"outer": [[561.15, 1055.39], [551.11, 1046.26], [566.43, 1029.56], [576.46, 1038.69], [569.01, 1046.82], [561.15, 1055.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.246, "pop": 123, "jobs": 0}}, {"shape": {"outer": [[578.33, 1036.95], [586.02, 1028.57], [593.67, 1020.23], [583.44, 1010.91], [568.1, 1027.64], [578.33, 1036.95]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.33, "pop": 165, "jobs": 0}}, {"shape": {"outer": [[594.56, 1018.79], [602.34, 1010.3], [609.29, 1002.72], [609.65, 1002.33], [599.77, 993.34], [584.68, 1009.8], [594.56, 1018.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.238, "pop": 119, "jobs": 0}}, {"shape": {"outer": [[610.86, 1034.09], [626.47, 1017.07], [625.46, 1016.16], [616.28, 1007.79], [615.72, 1008.41], [613.32, 1011.02], [614.99, 1012.54], [610.35, 1017.6], [606.0, 1022.35], [603.99, 1020.52], [600.33, 1024.5], [610.86, 1034.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.232, "pop": 116, "jobs": 0}}, {"shape": {"outer": [[594.33, 1052.52], [610.02, 1035.4], [599.38, 1025.72], [596.28, 1029.11], [598.16, 1030.82], [593.77, 1035.62], [589.52, 1040.25], [587.47, 1038.37], [583.52, 1042.68], [594.33, 1052.52]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.318, "pop": 159, "jobs": 0}}, {"shape": {"outer": [[577.68, 1070.38], [593.14, 1053.52], [582.92, 1044.22], [580.05, 1047.34], [581.72, 1048.87], [576.96, 1054.06], [572.8, 1058.61], [570.95, 1056.91], [567.28, 1060.92], [577.68, 1070.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[626.29, 1042.76], [642.08, 1026.09], [631.33, 1015.98], [628.46, 1019.01], [615.54, 1032.65], [626.29, 1042.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.272, "pop": 136, "jobs": 0}}, {"shape": {"outer": [[580.13, 1006.06], [595.31, 989.64], [584.86, 980.05], [569.68, 996.46], [580.13, 1006.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.254, "pop": 127, "jobs": 0}}, {"shape": {"outer": [[-2495.32, 195.72], [-2494.7, 200.44], [-2515.49, 202.8], [-2515.95, 198.08], [-2495.32, 195.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2524.01, 168.89], [-2519.43, 168.36], [-2519.0, 172.04], [-2523.49, 172.73], [-2524.01, 168.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-277.06, -29.06], [-251.41, -57.65], [-225.08, -34.22], [-246.14, -10.8], [-248.87, -7.76], [-250.8, -5.61], [-277.06, -29.06]], "holes": []}, "height": 42.0, "data": {"type": "residential", "density": 1.0, "pop": 2843, "jobs": 0}}, {"shape": {"outer": [[-275.23, -78.87], [-270.26, -74.46], [-295.33, -46.55], [-300.28, -51.01], [-275.23, -78.87]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.14, "pop": 0, "jobs": 140}}, {"shape": {"outer": [[-300.28, -51.01], [-310.92, -60.5], [-311.3, -60.06], [-326.07, -73.25], [-300.63, -101.55], [-275.23, -78.87], [-300.28, -51.01]], "holes": []}, "height": 35.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3604}}, {"shape": {"outer": [[-270.26, -74.46], [-251.41, -57.65], [-277.06, -29.06], [-295.93, -45.86], [-295.33, -46.55], [-270.26, -74.46]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.815, "pop": 0, "jobs": 815}}, {"shape": {"outer": [[-405.55, 225.52], [-397.6, 216.84], [-382.65, 230.42], [-390.59, 239.11], [-405.55, 225.52]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.133, "pop": 0, "jobs": 133}}, {"shape": {"outer": [[-366.87, 271.86], [-364.26, 268.95], [-364.69, 268.57], [-358.04, 261.17], [-357.33, 261.81], [-356.21, 260.55], [-353.69, 262.8], [-354.3, 263.48], [-351.17, 266.26], [-354.1, 269.53], [-353.59, 269.98], [-357.86, 274.74], [-358.37, 274.28], [-360.94, 277.15], [-361.97, 276.23], [-363.29, 277.7], [-367.12, 274.29], [-365.8, 272.82], [-366.87, 271.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-353.14, 172.28], [-331.27, 191.82], [-333.38, 194.16], [-313.63, 211.82], [-286.86, 182.1], [-306.97, 164.12], [-308.51, 165.83], [-330.01, 146.6], [-353.14, 172.28]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1162}}, {"shape": {"outer": [[-354.6, 286.15], [-352.94, 284.35], [-352.57, 284.7], [-342.69, 274.01], [-348.89, 268.32], [-358.69, 278.92], [-356.96, 280.5], [-358.69, 282.38], [-354.6, 286.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-341.84, 276.35], [-335.3, 281.55], [-333.77, 281.51], [-331.74, 283.74], [-331.47, 285.69], [-331.44, 286.72], [-336.92, 293.57], [-341.52, 289.51], [-343.02, 290.75], [-349.85, 284.9], [-341.84, 276.35]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.143, "pop": 0, "jobs": 143}}, {"shape": {"outer": [[-362.41, 319.82], [-354.49, 311.1], [-365.84, 300.87], [-368.32, 303.61], [-370.1, 301.99], [-375.55, 307.99], [-362.41, 319.82]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[-369.13, 323.85], [-370.12, 323.0], [-369.44, 322.22], [-378.66, 314.16], [-379.34, 314.94], [-381.46, 313.09], [-384.42, 316.45], [-387.52, 313.74], [-391.95, 318.78], [-387.82, 322.39], [-389.63, 324.46], [-385.72, 327.87], [-387.1, 329.43], [-379.85, 335.77], [-375.54, 330.87], [-373.65, 332.51], [-370.94, 329.43], [-372.69, 327.9], [-369.13, 323.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[-1566.97, -837.0], [-1558.3, -837.33], [-1558.95, -854.31], [-1567.61, -853.97], [-1566.97, -837.0]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.094, "pop": 0, "jobs": 94}}, {"shape": {"outer": [[-1579.85, -829.29], [-1569.79, -829.61], [-1570.56, -853.54], [-1580.62, -853.21], [-1580.32, -843.96], [-1579.85, -829.29]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.154, "pop": 0, "jobs": 154}}, {"shape": {"outer": [[-1617.25, -803.83], [-1618.27, -827.99], [-1617.52, -828.02], [-1618.14, -830.11], [-1612.43, -831.18], [-1607.55, -832.07], [-1606.67, -828.48], [-1592.93, -829.06], [-1582.63, -829.5], [-1581.6, -805.34], [-1617.25, -803.83]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.572, "pop": 0, "jobs": 572}}, {"shape": {"outer": [[-1592.93, -829.06], [-1593.4, -843.51], [-1582.99, -843.9], [-1582.63, -829.5], [-1592.93, -829.06]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.096, "pop": 0, "jobs": 96}}, {"shape": {"outer": [[1629.52, 1569.1], [1639.01, 1553.1], [1659.96, 1565.46], [1650.34, 1581.66], [1644.73, 1578.35], [1639.34, 1587.43], [1631.76, 1582.96], [1635.92, 1575.95], [1630.76, 1572.92], [1632.12, 1570.64], [1629.52, 1569.1]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.361, "pop": 0, "jobs": 361}}, {"shape": {"outer": [[1509.44, 1588.29], [1536.89, 1612.94], [1533.21, 1617.0], [1542.23, 1625.1], [1544.55, 1622.53], [1555.65, 1632.5], [1556.66, 1631.38], [1566.8, 1640.5], [1581.02, 1624.77], [1591.66, 1613.01], [1539.55, 1566.22], [1521.16, 1586.55], [1515.56, 1581.52], [1509.44, 1588.29]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1748}}, {"shape": {"outer": [[1496.13, 1577.14], [1502.37, 1582.77], [1527.24, 1555.35], [1521.0, 1549.73], [1496.13, 1577.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.248, "pop": 124, "jobs": 0}}, {"shape": {"outer": [[1454.33, 1567.69], [1460.89, 1573.63], [1446.24, 1589.72], [1439.67, 1583.78], [1454.33, 1567.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[1630.67, 1490.58], [1646.7, 1504.38], [1652.9, 1509.72], [1641.19, 1522.48], [1644.85, 1525.64], [1632.95, 1538.62], [1622.15, 1500.19], [1630.67, 1490.58]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.466, "pop": 0, "jobs": 466}}, {"shape": {"outer": [[1396.14, 1536.7], [1413.53, 1552.54], [1418.92, 1546.67], [1435.85, 1562.08], [1483.54, 1510.08], [1455.06, 1484.15], [1453.39, 1485.96], [1447.54, 1480.65], [1396.14, 1536.7]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2204}}, {"shape": {"outer": [[1461.04, 1468.06], [1548.19, 1548.16], [1559.54, 1537.04], [1544.61, 1522.58], [1581.06, 1480.17], [1580.13, 1469.39], [1575.73, 1465.44], [1573.98, 1449.16], [1571.28, 1433.37], [1557.62, 1421.4], [1534.01, 1400.72], [1527.09, 1394.66], [1512.81, 1410.52], [1497.47, 1427.57], [1477.63, 1449.62], [1461.04, 1468.06]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5337}}, {"shape": {"outer": [[1615.06, 1370.91], [1626.67, 1367.2], [1656.45, 1394.4], [1670.42, 1379.3], [1689.33, 1395.99], [1685.25, 1400.21], [1691.33, 1405.45], [1681.09, 1416.54], [1691.9, 1425.75], [1660.62, 1460.29], [1621.34, 1424.06], [1615.06, 1370.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2684}}, {"shape": {"outer": [[1313.92, 982.89], [1353.73, 939.07], [1375.29, 958.53], [1371.66, 962.52], [1421.9, 1007.84], [1431.74, 997.01], [1455.01, 1018.0], [1445.18, 1028.82], [1480.56, 1060.74], [1456.51, 1087.22], [1425.9, 1059.61], [1413.76, 1072.97], [1396.41, 1057.32], [1322.88, 990.97], [1313.92, 982.89]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5968}}, {"shape": {"outer": [[1713.61, 1407.29], [1700.63, 1421.31], [1729.43, 1447.81], [1727.58, 1449.81], [1728.8, 1450.94], [1727.0, 1452.88], [1738.46, 1463.44], [1739.77, 1462.03], [1747.74, 1469.35], [1750.03, 1466.87], [1754.22, 1470.73], [1761.76, 1462.61], [1767.25, 1456.67], [1728.67, 1421.15], [1713.61, 1407.29]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.972, "pop": 0, "jobs": 972}}, {"shape": {"outer": [[1710.94, 1404.83], [1728.28, 1386.13], [1748.84, 1405.04], [1747.7, 1406.26], [1748.97, 1407.43], [1746.16, 1410.46], [1744.57, 1409.0], [1742.28, 1411.47], [1743.52, 1412.62], [1740.82, 1415.54], [1737.07, 1412.09], [1728.67, 1421.15], [1713.61, 1407.29], [1710.94, 1404.83]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.433, "pop": 0, "jobs": 433}}, {"shape": {"outer": [[1404.02, 1229.28], [1521.11, 1334.51], [1522.04, 1332.65], [1541.77, 1311.38], [1499.75, 1272.67], [1514.09, 1257.21], [1521.11, 1263.69], [1543.93, 1239.09], [1539.66, 1235.14], [1543.66, 1230.39], [1537.48, 1224.7], [1542.19, 1219.63], [1529.5, 1207.92], [1541.85, 1194.61], [1527.6, 1182.19], [1525.65, 1174.31], [1508.58, 1158.8], [1521.63, 1144.45], [1498.92, 1124.18], [1419.07, 1213.01], [1409.55, 1223.68], [1404.02, 1229.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 5742, "jobs": 0}}, {"shape": {"outer": [[1388.5, 1205.22], [1408.39, 1222.66], [1409.55, 1223.68], [1419.07, 1213.01], [1417.75, 1211.84], [1402.69, 1198.47], [1398.24, 1194.45], [1388.5, 1205.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.322, "pop": 161, "jobs": 0}}, {"shape": {"outer": [[1364.39, 1181.61], [1388.5, 1205.22], [1398.24, 1194.45], [1373.75, 1171.83], [1364.39, 1181.61]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.301, "pop": 0, "jobs": 301}}, {"shape": {"outer": [[1366.73, 1090.21], [1388.4, 1111.28], [1356.83, 1145.94], [1341.37, 1130.13], [1335.21, 1124.8], [1366.73, 1090.21]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.901, "pop": 0, "jobs": 901}}, {"shape": {"outer": [[1413.76, 1072.97], [1466.23, 1121.0], [1478.49, 1106.68], [1456.51, 1087.22], [1425.9, 1059.61], [1413.76, 1072.97]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.833, "pop": 0, "jobs": 833}}, {"shape": {"outer": [[1314.36, 1002.93], [1386.66, 1068.32], [1366.73, 1090.21], [1335.21, 1124.8], [1322.67, 1138.57], [1319.89, 1141.63], [1248.99, 1076.25], [1309.76, 1007.97], [1314.36, 1002.93]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6127}}, {"shape": {"outer": [[1335.21, 1124.8], [1322.67, 1138.57], [1328.07, 1143.71], [1325.36, 1146.66], [1364.39, 1181.61], [1373.75, 1171.83], [1376.46, 1168.61], [1354.55, 1148.0], [1338.29, 1133.09], [1341.37, 1130.13], [1335.21, 1124.8]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.707, "pop": 0, "jobs": 707}}, {"shape": {"outer": [[-235.19, 263.17], [-233.01, 260.83], [-234.18, 259.76], [-233.67, 259.21], [-236.46, 256.65], [-229.34, 249.0], [-229.16, 249.17], [-224.04, 243.66], [-217.82, 249.4], [-222.92, 254.88], [-221.84, 255.87], [-229.75, 264.36], [-230.24, 263.92], [-232.16, 265.98], [-235.19, 263.17]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-122.76, 399.69], [-121.64, 398.53], [-125.68, 394.67], [-113.0, 381.53], [-101.11, 392.91], [-114.91, 407.21], [-122.76, 399.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.254, "pop": 127, "jobs": 0}}, {"shape": {"outer": [[-72.49, 404.24], [-60.57, 415.08], [-73.75, 429.47], [-70.35, 432.56], [-74.8, 437.42], [-74.58, 437.62], [-64.95, 446.37], [-63.08, 444.33], [-63.6, 443.84], [-57.48, 437.15], [-56.48, 438.07], [-33.33, 412.78], [-58.97, 389.48], [-64.29, 395.29], [-72.49, 404.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.906, "pop": 453, "jobs": 0}}, {"shape": {"outer": [[1418.11, 1294.09], [1461.83, 1332.69], [1431.03, 1366.3], [1388.91, 1328.35], [1418.11, 1294.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1042, "jobs": 0}}, {"shape": {"outer": [[1741.19, 1261.74], [1726.0, 1278.08], [1746.89, 1297.35], [1762.08, 1281.0], [1741.19, 1261.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.406, "pop": 0, "jobs": 406}}, {"shape": {"outer": [[1690.17, 1214.26], [1708.88, 1231.22], [1694.01, 1247.5], [1675.31, 1230.54], [1690.17, 1214.26]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.356, "pop": 0, "jobs": 356}}, {"shape": {"outer": [[1489.84, 1379.5], [1501.14, 1390.63], [1509.18, 1381.45], [1497.51, 1371.11], [1489.84, 1379.5]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.119, "pop": 0, "jobs": 119}}, {"shape": {"outer": [[1718.43, 1256.31], [1727.05, 1264.13], [1735.26, 1255.15], [1726.64, 1247.32], [1718.43, 1256.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1673.67, 1198.08], [1642.07, 1170.34], [1627.67, 1186.62], [1644.93, 1201.76], [1659.27, 1214.35], [1663.69, 1209.36], [1673.67, 1198.08]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.585, "pop": 0, "jobs": 585}}, {"shape": {"outer": [[1642.07, 1170.34], [1610.23, 1142.38], [1595.83, 1158.67], [1618.61, 1178.67], [1627.67, 1186.62], [1642.07, 1170.34]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.59, "pop": 0, "jobs": 590}}, {"shape": {"outer": [[1708.88, 1231.22], [1726.64, 1247.32], [1718.43, 1256.31], [1711.76, 1263.6], [1694.01, 1247.5], [1708.88, 1231.22]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.338, "pop": 0, "jobs": 338}}, {"shape": {"outer": [[1610.4, 1192.56], [1595.96, 1208.9], [1634.75, 1242.94], [1649.19, 1226.61], [1634.43, 1213.64], [1610.4, 1192.56]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.72, "pop": 0, "jobs": 720}}, {"shape": {"outer": [[1608.11, 1190.53], [1618.61, 1178.67], [1627.67, 1186.62], [1644.93, 1201.76], [1634.43, 1213.64], [1610.4, 1192.56], [1608.11, 1190.53]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.355, "pop": 0, "jobs": 355}}, {"shape": {"outer": [[1469.08, 1364.17], [1478.5, 1353.86], [1497.51, 1371.11], [1489.84, 1379.5], [1476.12, 1367.05], [1474.37, 1368.97], [1469.08, 1364.17]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.199, "pop": 0, "jobs": 199}}, {"shape": {"outer": [[1684.61, 1279.94], [1690.55, 1285.35], [1691.74, 1284.06], [1700.98, 1292.5], [1708.57, 1284.26], [1695.53, 1272.36], [1691.12, 1272.45], [1684.61, 1279.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.194, "pop": 97, "jobs": 0}}, {"shape": {"outer": [[1309.76, 1007.97], [1236.25, 943.11], [1216.71, 925.48], [1176.52, 927.87], [1174.22, 884.28], [1135.33, 926.9], [1137.55, 975.85], [1248.99, 1076.25], [1309.76, 1007.97]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4276}}, {"shape": {"outer": [[1665.26, 1296.74], [1669.22, 1300.28], [1667.07, 1302.67], [1687.43, 1320.88], [1699.92, 1307.01], [1684.36, 1293.09], [1685.89, 1291.39], [1677.14, 1283.56], [1665.26, 1296.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.396, "pop": 0, "jobs": 396}}, {"shape": {"outer": [[1799.43, 1411.69], [1812.5, 1411.82], [1814.88, 1409.83], [1817.33, 1412.75], [1820.24, 1410.31], [1821.62, 1411.95], [1826.96, 1407.48], [1825.33, 1405.54], [1827.43, 1403.79], [1828.94, 1405.57], [1834.39, 1401.0], [1832.75, 1399.06], [1834.81, 1397.32], [1836.29, 1399.09], [1843.08, 1393.41], [1841.76, 1391.83], [1845.4, 1388.77], [1846.64, 1390.24], [1853.92, 1384.14], [1852.46, 1382.41], [1856.28, 1379.22], [1850.52, 1372.38], [1847.39, 1375.0], [1839.58, 1365.73], [1831.28, 1372.67], [1832.68, 1374.33], [1828.76, 1377.6], [1827.59, 1376.22], [1816.96, 1385.1], [1818.39, 1386.79], [1816.6, 1388.29], [1815.24, 1386.69], [1811.28, 1390.0], [1812.85, 1391.88], [1810.92, 1393.5], [1809.69, 1392.04], [1806.84, 1391.93], [1802.97, 1391.78], [1801.82, 1393.01], [1799.83, 1391.18], [1801.46, 1389.45], [1798.41, 1386.61], [1796.79, 1388.34], [1795.05, 1386.73], [1796.35, 1385.33], [1790.81, 1380.19], [1789.44, 1381.65], [1785.12, 1377.64], [1786.45, 1376.21], [1783.49, 1373.46], [1782.08, 1374.98], [1780.15, 1373.17], [1781.44, 1371.79], [1776.21, 1366.95], [1774.63, 1368.64], [1771.95, 1366.15], [1770.67, 1364.96], [1772.11, 1363.42], [1766.17, 1357.91], [1763.96, 1360.26], [1762.49, 1358.9], [1756.41, 1365.41], [1752.04, 1361.36], [1746.07, 1367.75], [1749.36, 1370.81], [1747.9, 1372.38], [1755.09, 1379.05], [1756.47, 1377.55], [1759.96, 1380.79], [1758.58, 1382.26], [1765.17, 1388.37], [1766.62, 1386.8], [1768.32, 1388.38], [1766.9, 1389.9], [1772.2, 1394.82], [1773.84, 1393.07], [1775.95, 1395.02], [1774.2, 1396.89], [1779.57, 1401.88], [1781.26, 1400.06], [1785.7, 1404.18], [1784.11, 1405.88], [1790.5, 1411.82], [1792.02, 1410.18], [1794.46, 1412.46], [1797.16, 1409.57], [1799.43, 1411.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1025, "jobs": 0}}, {"shape": {"outer": [[-73.91, 457.77], [-78.12, 453.95], [-76.65, 452.33], [-77.95, 451.14], [-75.2, 448.14], [-78.28, 445.33], [-76.43, 443.29], [-78.26, 441.62], [-74.58, 437.62], [-64.95, 446.37], [-64.15, 447.1], [-73.91, 457.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-47.68, 488.04], [-25.52, 463.48], [4.87, 490.69], [-17.29, 515.26], [-47.68, 488.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 540, "jobs": 0}}, {"shape": {"outer": [[-58.62, 491.27], [-54.38, 486.67], [-55.28, 485.86], [-49.27, 479.35], [-48.48, 480.07], [-44.33, 475.56], [-45.12, 474.84], [-43.04, 472.57], [-42.39, 473.16], [-38.23, 468.65], [-38.89, 468.06], [-34.09, 462.85], [-33.5, 463.4], [-29.33, 458.87], [-29.93, 458.33], [-21.33, 449.0], [-21.56, 442.72], [-19.54, 442.73], [-19.56, 448.47], [-15.39, 452.27], [-16.32, 453.28], [-13.41, 455.94], [-13.91, 456.48], [-9.14, 460.83], [-8.65, 460.3], [-2.98, 465.47], [-4.16, 466.75], [0.56, 471.06], [1.03, 470.56], [11.69, 480.3], [22.77, 468.27], [12.76, 459.12], [13.17, 458.68], [8.5, 454.41], [8.09, 454.85], [6.15, 453.08], [6.86, 452.31], [4.31, 449.97], [4.75, 449.49], [0.58, 445.67], [0.13, 446.15], [-3.61, 442.74], [-2.68, 441.72], [-5.38, 439.25], [-5.06, 438.91], [-9.77, 434.6], [-10.09, 434.95], [-15.18, 430.29], [-13.87, 428.88], [-16.14, 426.81], [-16.5, 427.21], [-19.21, 424.74], [-20.65, 426.3], [-21.7, 425.36], [-25.11, 429.07], [-26.01, 428.25], [-27.94, 430.35], [-27.47, 430.78], [-29.58, 433.06], [-29.77, 432.89], [-33.92, 437.4], [-33.71, 437.58], [-37.94, 442.18], [-38.15, 441.98], [-42.39, 446.6], [-42.06, 446.9], [-50.43, 455.98], [-50.76, 455.68], [-55.07, 460.36], [-54.67, 460.73], [-67.6, 474.76], [-68.0, 474.4], [-72.04, 478.79], [-69.84, 480.8], [-69.62, 480.57], [-60.44, 488.95], [-60.76, 489.31], [-58.62, 491.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 813, "jobs": 0}}, {"shape": {"outer": [[-4.03, 545.74], [8.48, 532.07], [1.53, 525.75], [-9.2, 537.48], [-8.97, 537.67], [-10.76, 539.63], [-4.03, 545.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2.08, 553.64], [13.63, 540.86], [8.06, 535.87], [4.04, 540.32], [5.12, 541.27], [-1.57, 548.68], [-0.43, 549.7], [-1.28, 550.64], [2.08, 553.64]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[4.75, 523.67], [9.02, 518.78], [11.4, 520.85], [12.14, 519.99], [21.59, 528.18], [21.15, 528.68], [23.46, 530.67], [19.71, 534.97], [19.11, 534.45], [18.38, 535.29], [19.06, 535.88], [18.12, 536.95], [15.38, 534.57], [15.05, 534.96], [8.26, 529.07], [8.55, 528.74], [6.19, 526.68], [7.06, 525.68], [4.75, 523.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[28.79, 530.35], [32.63, 526.13], [30.37, 524.11], [33.5, 520.65], [22.79, 511.01], [22.45, 511.37], [20.25, 509.4], [15.97, 514.12], [17.34, 515.37], [15.57, 517.34], [24.22, 525.13], [23.67, 525.73], [28.79, 530.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[44.65, 513.4], [42.96, 511.86], [43.2, 511.59], [31.95, 501.3], [31.55, 501.73], [29.77, 500.11], [25.08, 505.2], [34.24, 513.58], [34.55, 513.25], [40.1, 518.33], [44.65, 513.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[47.09, 430.91], [47.81, 431.58], [49.01, 430.29], [51.51, 432.59], [50.31, 433.88], [52.62, 435.99], [41.46, 448.04], [40.28, 446.95], [39.31, 448.01], [35.42, 444.43], [36.39, 443.38], [35.94, 442.96], [47.09, 430.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[28.63, 435.58], [40.34, 423.03], [46.81, 429.02], [35.1, 441.58], [34.83, 441.33], [33.74, 442.5], [30.61, 439.61], [31.71, 438.43], [28.63, 435.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[19.17, 430.43], [32.67, 415.33], [35.57, 417.9], [36.23, 417.15], [38.92, 419.53], [38.24, 420.27], [40.28, 422.08], [28.26, 435.53], [25.38, 432.98], [23.91, 434.63], [19.17, 430.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[17.34, 430.21], [11.82, 425.08], [27.24, 408.6], [31.16, 412.25], [28.37, 415.23], [29.55, 416.33], [28.27, 417.69], [28.69, 418.08], [17.34, 430.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[5.6, 414.97], [17.27, 402.52], [23.68, 408.48], [12.01, 420.93], [5.6, 414.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[5.4, 414.69], [-0.63, 409.09], [9.89, 397.86], [15.92, 403.48], [5.4, 414.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-152.41, 274.98], [-140.07, 260.99], [-133.13, 267.06], [-144.2, 279.6], [-147.42, 276.78], [-148.7, 278.23], [-152.41, 274.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-171.88, 253.44], [-164.45, 245.55], [-163.11, 246.81], [-157.54, 240.9], [-153.91, 244.3], [-156.37, 246.92], [-155.81, 247.45], [-166.34, 258.63], [-169.9, 255.29], [-170.44, 255.89], [-171.96, 254.46], [-171.4, 253.88], [-171.88, 253.44]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-213.51, 288.22], [-206.7, 281.15], [-208.0, 279.91], [-202.24, 273.92], [-193.58, 282.2], [-199.11, 287.95], [-200.06, 287.04], [-207.09, 294.35], [-213.51, 288.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-195.37, 298.23], [-191.58, 294.06], [-192.81, 292.95], [-184.75, 284.08], [-184.3, 284.49], [-182.67, 282.7], [-175.59, 289.09], [-185.17, 299.62], [-187.62, 297.41], [-191.53, 301.71], [-195.37, 298.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-220.52, 271.0], [-226.22, 265.99], [-223.48, 262.91], [-223.7, 262.71], [-214.62, 252.49], [-213.25, 253.7], [-211.69, 251.95], [-208.03, 255.18], [-209.61, 256.94], [-208.73, 257.72], [-211.87, 261.25], [-211.23, 261.81], [-214.47, 265.46], [-215.1, 264.9], [-220.52, 271.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-186.84, 314.25], [-169.96, 295.75], [-160.48, 304.35], [-177.35, 322.84], [-186.84, 314.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.256, "pop": 128, "jobs": 0}}, {"shape": {"outer": [[-149.82, 314.2], [-157.56, 307.27], [-165.39, 315.95], [-163.64, 317.52], [-168.21, 322.59], [-162.22, 327.95], [-157.77, 323.01], [-157.06, 323.65], [-152.45, 318.54], [-153.16, 317.9], [-149.82, 314.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-289.46, 357.84], [-290.29, 358.76], [-293.38, 356.0], [-292.26, 354.75], [-293.85, 353.35], [-287.74, 346.53], [-291.72, 343.0], [-289.04, 340.01], [-288.87, 338.66], [-287.88, 337.62], [-286.35, 337.02], [-284.09, 334.5], [-282.38, 336.01], [-280.41, 333.79], [-272.48, 340.84], [-279.11, 348.23], [-278.43, 348.83], [-286.04, 357.33], [-287.31, 356.2], [-289.08, 358.17], [-289.46, 357.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[-331.95, 332.37], [-326.87, 326.6], [-325.38, 327.89], [-318.74, 320.36], [-306.85, 330.76], [-314.86, 339.85], [-316.25, 338.64], [-319.97, 342.86], [-331.95, 332.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.228, "pop": 114, "jobs": 0}}, {"shape": {"outer": [[-320.07, 343.95], [-329.43, 354.0], [-343.87, 340.66], [-334.51, 330.6], [-320.07, 343.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.216, "pop": 108, "jobs": 0}}, {"shape": {"outer": [[-338.31, 368.7], [-330.55, 359.94], [-331.0, 359.55], [-330.52, 359.02], [-334.61, 355.42], [-333.78, 354.49], [-342.9, 346.48], [-343.81, 347.5], [-347.08, 344.63], [-352.1, 350.31], [-352.51, 349.94], [-357.66, 355.77], [-347.68, 364.55], [-345.64, 362.25], [-338.31, 368.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.27, "pop": 135, "jobs": 0}}, {"shape": {"outer": [[-287.82, 388.5], [-302.34, 403.86], [-305.47, 400.93], [-305.89, 401.37], [-306.8, 400.51], [-308.01, 401.77], [-313.98, 396.17], [-312.78, 394.9], [-313.13, 394.58], [-298.62, 379.24], [-296.35, 381.37], [-293.32, 378.17], [-288.83, 382.38], [-289.22, 382.79], [-286.82, 385.05], [-289.02, 387.38], [-287.82, 388.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.282, "pop": 141, "jobs": 0}}, {"shape": {"outer": [[-291.91, 368.79], [-286.9, 363.4], [-278.48, 371.08], [-274.53, 366.79], [-271.18, 369.85], [-268.2, 372.38], [-277.11, 382.27], [-278.07, 381.42], [-279.0, 382.46], [-281.62, 380.11], [-280.57, 378.95], [-291.91, 368.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-255.4, 388.38], [-259.56, 384.78], [-257.87, 382.85], [-261.63, 379.6], [-257.08, 374.38], [-258.29, 373.33], [-248.85, 362.51], [-242.14, 368.31], [-242.3, 368.49], [-235.13, 374.7], [-239.02, 379.15], [-241.95, 376.63], [-244.12, 379.12], [-245.11, 378.26], [-253.0, 387.33], [-253.84, 386.6], [-255.4, 388.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.254, "pop": 127, "jobs": 0}}, {"shape": {"outer": [[-275.83, 429.51], [-282.72, 422.89], [-280.79, 420.89], [-281.29, 420.41], [-273.77, 412.64], [-273.56, 412.85], [-266.87, 405.92], [-260.48, 412.06], [-266.74, 418.53], [-265.55, 419.68], [-273.15, 427.54], [-273.55, 427.16], [-275.83, 429.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[-318.87, 455.98], [-322.16, 453.01], [-330.96, 462.65], [-331.49, 462.18], [-332.93, 463.75], [-339.05, 458.21], [-337.61, 456.64], [-338.08, 456.22], [-329.81, 447.15], [-330.55, 446.47], [-321.53, 436.59], [-318.41, 439.42], [-317.68, 438.62], [-317.26, 439.0], [-315.75, 437.33], [-312.59, 440.19], [-314.11, 441.85], [-309.66, 445.88], [-318.87, 455.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.284, "pop": 142, "jobs": 0}}, {"shape": {"outer": [[-78.56, 342.97], [-68.33, 331.91], [-56.04, 343.21], [-66.27, 354.27], [-78.56, 342.97]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[15.72, 394.86], [17.78, 392.6], [17.43, 392.28], [19.74, 389.74], [31.6, 400.47], [27.22, 405.27], [15.72, 394.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[21.3, 388.81], [22.59, 387.42], [22.0, 386.88], [25.35, 383.25], [37.4, 394.3], [32.76, 399.33], [21.3, 388.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[27.27, 383.81], [28.77, 382.1], [27.77, 381.24], [33.56, 374.61], [34.89, 375.77], [36.27, 374.19], [43.21, 380.22], [42.78, 380.72], [46.14, 383.65], [41.75, 388.67], [38.38, 385.75], [34.54, 390.12], [27.27, 383.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[39.02, 367.12], [44.81, 360.93], [57.02, 372.29], [51.76, 377.9], [47.3, 373.76], [46.77, 374.33], [39.02, 367.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[6.09, 365.31], [-5.12, 355.3], [-10.94, 361.75], [0.27, 371.78], [6.09, 365.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-23.75, 390.6], [-10.27, 375.93], [-4.29, 381.37], [-15.48, 393.57], [-17.86, 391.38], [-20.16, 393.88], [-23.75, 390.6]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-39.86, 377.28], [-35.6, 372.65], [-35.93, 372.33], [-32.4, 368.49], [-32.06, 368.79], [-28.01, 364.39], [-21.8, 370.05], [-29.42, 378.34], [-29.76, 378.03], [-32.92, 381.45], [-35.01, 379.54], [-36.08, 380.72], [-39.86, 377.28]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-30.83, 383.17], [-27.74, 379.85], [-28.85, 378.82], [-25.36, 375.07], [-24.77, 375.62], [-21.41, 372.0], [-19.74, 373.53], [-17.65, 371.28], [-14.11, 374.55], [-16.2, 376.8], [-15.62, 377.33], [-25.56, 388.04], [-28.61, 385.22], [-29.58, 386.25], [-31.4, 384.56], [-30.45, 383.52], [-30.83, 383.17]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-48.98, 354.86], [-36.97, 342.17], [-23.15, 355.16], [-35.16, 367.85], [-48.98, 354.86]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.348, "pop": 174, "jobs": 0}}, {"shape": {"outer": [[-42.81, 337.01], [-37.25, 330.87], [-49.15, 320.16], [-50.26, 321.38], [-50.78, 320.92], [-55.23, 325.84], [-42.81, 337.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-47.11, 316.85], [-46.4, 316.05], [-47.2, 315.36], [-45.47, 313.38], [-44.68, 314.07], [-42.13, 311.17], [-29.49, 322.17], [-34.84, 328.28], [-40.53, 323.34], [-40.16, 322.9], [-47.11, 316.85]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-41.31, 309.58], [-41.06, 309.29], [-42.54, 307.92], [-40.94, 306.18], [-39.44, 307.55], [-34.66, 302.36], [-22.57, 313.43], [-24.3, 315.31], [-23.31, 316.2], [-27.84, 321.12], [-28.7, 320.33], [-29.09, 320.77], [-41.31, 309.58]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-33.94, 301.81], [-27.52, 294.85], [-14.38, 306.89], [-20.81, 313.85], [-33.94, 301.81]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-26.98, 293.75], [-25.11, 291.7], [-26.92, 290.05], [-22.68, 285.4], [-12.62, 294.51], [-13.92, 295.94], [-7.99, 301.3], [-10.5, 304.05], [-9.84, 304.65], [-11.41, 306.37], [-23.01, 295.87], [-23.75, 296.68], [-26.98, 293.75]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-20.86, 286.69], [-15.41, 280.63], [-3.65, 291.15], [-6.9, 294.75], [-6.42, 295.18], [-8.27, 297.22], [-8.75, 296.8], [-9.1, 297.2], [-20.86, 286.69]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-14.26, 280.07], [-8.53, 273.81], [1.97, 283.37], [-3.76, 289.63], [-14.26, 280.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-9.23, 273.01], [-2.71, 265.97], [11.01, 278.55], [4.51, 285.59], [-9.23, 273.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2.6, 256.5], [7.53, 251.17], [19.74, 262.36], [14.8, 267.7], [2.6, 256.5]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[9.86, 249.25], [16.78, 241.88], [19.82, 244.72], [20.85, 243.62], [25.15, 247.64], [24.57, 248.25], [27.49, 250.97], [27.09, 251.39], [29.47, 253.61], [27.28, 255.93], [31.49, 259.87], [27.83, 263.75], [25.51, 261.58], [23.67, 263.55], [20.41, 260.51], [21.12, 259.75], [9.86, 249.25]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[47.43, 235.89], [53.11, 241.05], [64.04, 229.1], [61.27, 226.59], [61.81, 226.0], [58.9, 223.36], [47.43, 235.89]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-1434.41, -2011.57], [-1421.09, -2035.6], [-1414.13, -2031.78], [-1427.45, -2007.74], [-1434.41, -2011.57]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.14, "pop": 0, "jobs": 140}}, {"shape": {"outer": [[-1366.1, -2207.6], [-1366.16, -2209.28], [-1367.36, -2209.21], [-1367.84, -2220.51], [-1357.57, -2220.69], [-1357.77, -2227.61], [-1368.31, -2227.2], [-1368.88, -2241.49], [-1368.39, -2241.45], [-1368.73, -2249.84], [-1338.22, -2251.03], [-1297.94, -2228.14], [-1300.09, -2224.3], [-1299.7, -2224.12], [-1301.4, -2221.32], [-1300.96, -2221.12], [-1311.95, -2202.01], [-1321.72, -2207.34], [-1317.81, -2214.15], [-1343.69, -2228.33], [-1355.75, -2227.61], [-1355.54, -2218.62], [-1344.84, -2219.15], [-1343.43, -2187.06], [-1345.85, -2187.05], [-1345.02, -2169.9], [-1344.15, -2169.33], [-1343.03, -2171.87], [-1337.64, -2168.9], [-1337.24, -2169.52], [-1331.09, -2165.97], [-1360.84, -2112.87], [-1363.56, -2113.53], [-1367.96, -2207.52], [-1366.1, -2207.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1578, "jobs": 0}}, {"shape": {"outer": [[-348.82, -78.32], [-347.89, -79.34], [-328.3, -100.86], [-327.76, -101.46], [-327.59, -102.23], [-327.65, -102.97], [-328.02, -103.7], [-328.61, -104.32], [-329.42, -104.64], [-346.59, -103.89], [-360.39, -103.3], [-360.38, -102.97], [-359.73, -88.19], [-348.82, -78.32]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 0.592, "pop": 0, "jobs": 592}}, {"shape": {"outer": [[-348.82, -78.32], [-359.73, -88.19], [-360.38, -102.97], [-360.81, -102.96], [-361.16, -102.93], [-362.15, -103.88], [-364.87, -103.76], [-365.83, -103.72], [-366.66, -102.73], [-367.45, -102.69], [-366.59, -84.84], [-353.79, -73.2], [-353.15, -73.89], [-352.28, -73.85], [-350.91, -75.35], [-349.6, -76.77], [-349.66, -77.4], [-349.22, -77.88], [-348.82, -78.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[-427.93, -81.87], [-442.83, -95.72], [-442.95, -97.35], [-445.45, -99.52], [-448.24, -99.77], [-449.58, -98.45], [-452.1, -98.28], [-450.88, -68.43], [-449.52, -62.8], [-445.69, -62.47], [-427.93, -81.87]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 0.59, "pop": 0, "jobs": 590}}, {"shape": {"outer": [[19.8, 92.07], [34.55, 104.61], [41.16, 96.99], [26.78, 84.37], [19.8, 92.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-856.05, -2422.51], [-856.39, -2433.74], [-853.15, -2433.84], [-853.17, -2434.65], [-851.12, -2434.72], [-851.09, -2433.84], [-847.78, -2433.93], [-847.66, -2429.84], [-844.73, -2429.93], [-844.63, -2426.6], [-847.17, -2426.53], [-847.07, -2422.95], [-849.98, -2422.87], [-849.93, -2421.2], [-852.82, -2421.12], [-852.87, -2422.61], [-856.05, -2422.51]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-858.91, -2447.11], [-850.11, -2447.52], [-850.52, -2456.3], [-859.45, -2455.89], [-859.3, -2452.56], [-862.93, -2452.39], [-862.74, -2448.21], [-858.97, -2448.39], [-858.91, -2447.11]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-861.5, -2433.44], [-860.84, -2420.65], [-869.04, -2420.18], [-869.81, -2433.0], [-861.5, -2433.44]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-817.52, -2424.78], [-811.34, -2424.87], [-811.5, -2435.84], [-820.7, -2435.7], [-820.58, -2427.39], [-817.56, -2427.43], [-817.52, -2424.78]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-842.71, -2391.81], [-842.53, -2386.21], [-842.36, -2380.81], [-850.75, -2380.54], [-851.1, -2391.55], [-842.71, -2391.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-883.75, -2419.27], [-875.93, -2419.53], [-876.26, -2430.14], [-884.09, -2429.89], [-883.75, -2419.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-909.93, -2418.29], [-901.65, -2418.6], [-902.11, -2430.62], [-910.38, -2430.3], [-909.93, -2418.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-924.63, -2420.87], [-912.65, -2421.27], [-912.95, -2430.55], [-924.93, -2430.17], [-924.63, -2420.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-806.37, -2426.61], [-794.2, -2427.04], [-794.54, -2436.52], [-802.0, -2436.26], [-802.15, -2440.48], [-806.86, -2440.31], [-806.37, -2426.61]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-817.42, -2453.97], [-807.22, -2454.39], [-807.62, -2463.91], [-815.98, -2463.57], [-815.85, -2460.33], [-816.93, -2460.28], [-816.86, -2458.79], [-817.62, -2458.76], [-817.42, -2453.97]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-712.3, -2428.47], [-683.94, -2429.4], [-684.29, -2439.91], [-690.03, -2439.72], [-690.39, -2450.67], [-713.01, -2449.93], [-712.3, -2428.47]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.35, "pop": 0, "jobs": 350}}, {"shape": {"outer": [[-856.32, -2440.34], [-850.45, -2440.53], [-850.58, -2444.71], [-856.45, -2444.52], [-856.32, -2440.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-869.12, -2455.87], [-862.46, -2456.17], [-862.58, -2460.25], [-869.3, -2460.06], [-869.12, -2455.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-861.7, -2463.55], [-851.31, -2464.04], [-851.44, -2466.76], [-850.21, -2466.82], [-850.38, -2470.59], [-851.51, -2470.54], [-851.64, -2473.19], [-862.14, -2472.69], [-861.7, -2463.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-857.03, -2478.44], [-848.34, -2478.93], [-848.82, -2487.49], [-852.32, -2487.29], [-852.25, -2486.11], [-857.45, -2485.82], [-857.03, -2478.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-956.36, -2370.73], [-956.99, -2384.42], [-948.06, -2384.8], [-947.45, -2371.14], [-956.36, -2370.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-941.15, -2385.43], [-931.4, -2385.88], [-930.69, -2368.88], [-940.39, -2368.46], [-941.15, -2385.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-926.76, -2368.51], [-927.33, -2386.05], [-917.08, -2386.39], [-916.51, -2368.82], [-926.76, -2368.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-913.53, -2370.68], [-914.01, -2386.39], [-904.48, -2386.67], [-904.0, -2370.98], [-913.53, -2370.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[599.77, 993.34], [603.51, 989.27], [615.77, 1000.43], [611.67, 1004.89], [609.29, 1002.72], [609.65, 1002.33], [599.77, 993.34]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.06, "pop": 0, "jobs": 60}}, {"shape": {"outer": [[615.72, 1008.41], [613.54, 1006.42], [617.69, 1001.89], [629.05, 1012.24], [625.46, 1016.16], [616.28, 1007.79], [615.72, 1008.41]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.054, "pop": 0, "jobs": 54}}, {"shape": {"outer": [[341.78, 65.5], [347.51, 59.14], [332.42, 45.66], [329.49, 48.92], [327.62, 47.25], [324.34, 50.91], [333.95, 59.49], [334.44, 58.94], [341.78, 65.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[338.55, 40.21], [350.46, 50.88], [355.56, 45.24], [343.65, 34.55], [338.55, 40.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[344.25, 31.42], [349.75, 25.11], [363.36, 36.87], [357.86, 43.18], [344.25, 31.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[352.25, 22.66], [362.2, 11.73], [380.17, 28.0], [370.23, 38.92], [352.25, 22.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.286, "pop": 143, "jobs": 0}}, {"shape": {"outer": [[363.33, 9.74], [370.54, 2.26], [382.2, 13.42], [374.99, 20.9], [363.33, 9.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[371.35, 2.34], [377.62, -4.77], [391.88, 7.7], [385.61, 14.81], [371.35, 2.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[380.77, -6.29], [390.37, -16.78], [407.51, -1.2], [397.91, 9.28], [380.77, -6.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.264, "pop": 132, "jobs": 0}}, {"shape": {"outer": [[392.66, -18.84], [400.14, -27.63], [407.58, -21.34], [406.02, -19.51], [408.16, -17.71], [402.23, -10.75], [392.66, -18.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[400.01, -29.53], [405.73, -35.97], [417.72, -25.37], [412.01, -18.94], [400.01, -29.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[405.74, -39.77], [412.61, -46.82], [427.68, -32.26], [420.82, -25.21], [405.74, -39.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[1208.21, 259.65], [1214.51, 265.07], [1221.57, 256.9], [1221.9, 257.18], [1223.77, 255.02], [1223.27, 254.59], [1224.47, 253.19], [1223.97, 252.76], [1223.25, 252.15], [1222.57, 251.57], [1223.01, 251.06], [1218.58, 247.26], [1215.55, 250.77], [1214.36, 249.74], [1210.7, 253.98], [1212.09, 255.17], [1208.21, 259.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1329.14, 305.73], [1333.4, 309.37], [1334.85, 310.61], [1336.11, 311.68], [1346.9, 299.15], [1339.93, 293.2], [1329.14, 305.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[433.48, 277.28], [437.71, 281.07], [433.99, 285.2], [439.27, 290.21], [424.26, 305.93], [424.32, 308.51], [424.46, 308.64], [440.75, 322.9], [450.85, 311.44], [449.56, 310.31], [444.49, 305.79], [450.59, 299.02], [462.89, 309.99], [464.32, 311.24], [467.62, 307.5], [467.94, 307.78], [469.74, 305.74], [471.55, 307.33], [476.25, 302.01], [477.65, 300.17], [481.43, 302.96], [482.77, 306.26], [484.19, 308.67], [486.13, 310.69], [488.63, 312.66], [490.81, 313.87], [492.88, 314.65], [495.3, 315.23], [497.93, 315.45], [500.4, 315.29], [502.55, 314.85], [504.6, 314.17], [507.22, 312.84], [509.35, 311.28], [511.23, 309.4], [512.85, 307.16], [513.97, 305.02], [514.88, 302.27], [515.32, 299.54], [515.15, 295.46], [514.43, 292.58], [513.19, 289.8], [510.02, 285.73], [508.04, 284.1], [504.69, 282.27], [502.6, 281.55], [500.32, 281.1], [493.11, 275.3], [493.66, 274.78], [492.38, 273.65], [495.03, 270.89], [463.62, 242.59], [454.14, 253.81], [458.97, 257.97], [439.36, 278.92], [435.39, 275.19], [433.48, 277.28]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2309}}, {"shape": {"outer": [[501.39, 333.97], [526.98, 305.83], [531.41, 300.95], [536.04, 305.13], [536.8, 304.29], [562.23, 327.25], [531.44, 361.11], [501.39, 333.97]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1181}}, {"shape": {"outer": [[469.97, 159.36], [481.36, 169.54], [491.32, 158.89], [496.72, 163.54], [513.33, 146.48], [496.62, 129.48], [469.97, 159.36]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.512, "pop": 0, "jobs": 512}}, {"shape": {"outer": [[-869.54, -2390.07], [-860.91, -2390.41], [-860.49, -2379.64], [-869.11, -2379.3], [-869.54, -2390.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-884.2, -2388.62], [-874.87, -2388.93], [-874.41, -2375.16], [-883.74, -2374.85], [-884.2, -2388.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-896.24, -2370.08], [-897.08, -2388.13], [-886.69, -2388.63], [-885.64, -2370.6], [-896.24, -2370.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-1156.26, -2407.39], [-1135.96, -2408.57], [-1136.82, -2423.42], [-1147.25, -2422.79], [-1156.26, -2407.39]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.146, "pop": 0, "jobs": 146}}, {"shape": {"outer": [[-880.14, -2536.79], [-861.03, -2538.17], [-861.21, -2540.66], [-852.6, -2545.7], [-853.33, -2555.7], [-861.55, -2560.26], [-861.89, -2565.04], [-886.32, -2563.28], [-885.62, -2553.59], [-876.05, -2554.29], [-875.43, -2545.8], [-880.77, -2545.42], [-880.14, -2536.79]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.417, "pop": 0, "jobs": 417}}, {"shape": {"outer": [[-821.81, -2490.14], [-813.63, -2490.55], [-814.49, -2507.73], [-822.67, -2507.32], [-821.81, -2490.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-937.89, -2420.55], [-929.69, -2420.73], [-930.03, -2436.0], [-931.67, -2435.97], [-931.75, -2439.59], [-938.31, -2439.43], [-937.89, -2420.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-955.31, -2420.0], [-946.7, -2420.42], [-947.16, -2429.5], [-955.77, -2429.08], [-955.31, -2420.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-966.91, -2419.18], [-957.8, -2419.55], [-958.19, -2429.38], [-967.31, -2429.02], [-966.91, -2419.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-977.04, -2418.48], [-968.73, -2418.61], [-969.28, -2433.85], [-977.9, -2433.6], [-977.04, -2418.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-991.81, -2415.11], [-983.03, -2415.44], [-983.69, -2433.44], [-992.47, -2433.12], [-991.81, -2415.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1006.95, -2414.49], [-998.23, -2414.81], [-998.87, -2431.78], [-1007.59, -2431.45], [-1006.95, -2414.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1023.36, -2414.49], [-1015.39, -2414.88], [-1015.99, -2426.82], [-1017.47, -2426.75], [-1017.56, -2428.52], [-1019.61, -2428.42], [-1019.7, -2430.21], [-1025.01, -2429.93], [-1024.56, -2420.94], [-1023.69, -2420.99], [-1023.36, -2414.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1037.42, -2415.66], [-1025.47, -2416.19], [-1025.86, -2425.27], [-1037.82, -2424.74], [-1037.42, -2415.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1054.81, -2413.29], [-1046.79, -2413.58], [-1047.3, -2427.11], [-1055.32, -2426.8], [-1054.81, -2413.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1067.87, -2414.19], [-1057.28, -2414.56], [-1057.64, -2424.82], [-1068.23, -2424.45], [-1067.87, -2414.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1078.84, -2412.77], [-1072.26, -2412.96], [-1072.44, -2418.94], [-1070.49, -2419.0], [-1070.74, -2427.82], [-1079.26, -2427.57], [-1078.84, -2412.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1099.5, -2413.32], [-1088.75, -2413.72], [-1088.9, -2417.76], [-1090.53, -2417.7], [-1090.68, -2421.93], [-1094.65, -2421.79], [-1094.74, -2424.32], [-1098.94, -2424.17], [-1098.85, -2421.57], [-1099.8, -2421.53], [-1099.5, -2413.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1113.67, -2410.95], [-1104.23, -2411.28], [-1104.81, -2427.78], [-1114.26, -2427.44], [-1113.67, -2410.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1120.97, -2413.27], [-1121.58, -2424.65], [-1129.3, -2424.24], [-1128.7, -2412.87], [-1120.97, -2413.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-895.99, -2493.92], [-886.63, -2494.24], [-886.97, -2504.53], [-887.79, -2504.49], [-887.86, -2506.57], [-895.45, -2506.31], [-895.38, -2504.24], [-896.33, -2504.22], [-895.99, -2493.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-909.95, -2488.33], [-904.98, -2488.49], [-905.06, -2490.99], [-900.84, -2491.12], [-901.24, -2504.01], [-910.42, -2503.73], [-909.95, -2488.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-923.05, -2498.34], [-914.65, -2498.64], [-914.94, -2507.19], [-916.29, -2507.14], [-916.36, -2509.25], [-922.42, -2509.03], [-922.35, -2506.93], [-923.35, -2506.89], [-923.05, -2498.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-934.67, -2496.38], [-934.6, -2505.88], [-943.14, -2505.95], [-943.21, -2496.43], [-934.67, -2496.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-957.41, -2494.07], [-953.2, -2494.27], [-953.32, -2496.82], [-949.97, -2496.98], [-950.49, -2507.85], [-958.05, -2507.49], [-957.41, -2494.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-968.25, -2495.5], [-960.32, -2495.77], [-960.65, -2505.43], [-963.55, -2505.33], [-963.62, -2507.33], [-967.66, -2507.19], [-967.59, -2505.2], [-968.58, -2505.16], [-968.25, -2495.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-980.16, -2498.33], [-971.63, -2498.69], [-971.05, -2484.71], [-979.58, -2484.36], [-980.16, -2498.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1007.33, -2489.31], [-999.77, -2489.67], [-1000.31, -2501.09], [-1007.87, -2500.73], [-1007.33, -2489.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1023.78, -2489.68], [-1015.4, -2489.93], [-1015.68, -2499.13], [-1024.06, -2498.87], [-1023.78, -2489.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1036.81, -2497.34], [-1030.18, -2497.65], [-1029.73, -2488.06], [-1036.37, -2487.75], [-1036.81, -2497.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2867.77, -1211.4], [-2859.03, -1203.95], [-2874.27, -1186.2], [-2883.01, -1193.65], [-2867.77, -1211.4]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.15, "pop": 0, "jobs": 150}}, {"shape": {"outer": [[-2814.99, -1136.06], [-2806.8, -1129.15], [-2792.89, -1145.51], [-2801.08, -1152.41], [-2814.99, -1136.06]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.147, "pop": 0, "jobs": 147}}, {"shape": {"outer": [[1272.27, 566.37], [1278.51, 572.0], [1271.85, 579.34], [1265.6, 573.71], [1272.27, 566.37]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.053, "pop": 0, "jobs": 53}}, {"shape": {"outer": [[-881.3, -2654.77], [-870.18, -2655.47], [-871.3, -2673.41], [-882.42, -2672.71], [-881.3, -2654.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[2271.49, 1305.33], [2272.88, 1303.72], [2271.69, 1302.32], [2275.03, 1298.05], [2276.51, 1299.45], [2277.35, 1298.42], [2284.58, 1304.39], [2283.19, 1306.29], [2286.14, 1308.51], [2281.67, 1313.66], [2271.49, 1305.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-885.02, -2676.37], [-877.07, -2676.52], [-877.26, -2686.26], [-885.21, -2686.1], [-885.02, -2676.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-177.67, 154.8], [-172.85, 149.65], [-161.8, 159.93], [-168.0, 166.56], [-175.36, 159.71], [-174.42, 158.7], [-176.34, 156.91], [-175.91, 156.44], [-177.67, 154.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-674.39, -434.59], [-667.06, -428.05], [-667.98, -427.01], [-664.06, -423.51], [-664.96, -422.51], [-658.33, -416.58], [-656.58, -418.53], [-654.49, -416.67], [-654.12, -417.07], [-650.46, -413.79], [-650.82, -413.39], [-648.83, -411.62], [-664.06, -394.68], [-664.41, -394.99], [-667.83, -391.19], [-669.15, -392.38], [-671.37, -389.91], [-695.33, -411.31], [-674.39, -434.59]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 725, "jobs": 0}}, {"shape": {"outer": [[-698.58, -395.42], [-696.07, -393.12], [-694.75, -394.57], [-691.27, -391.38], [-690.72, -391.97], [-683.81, -385.65], [-684.28, -385.13], [-680.71, -381.87], [-682.28, -380.15], [-679.76, -377.85], [-696.71, -359.45], [-699.37, -361.88], [-700.83, -360.3], [-703.88, -363.09], [-704.31, -362.62], [-711.48, -369.18], [-711.02, -369.69], [-714.56, -372.92], [-712.79, -374.83], [-715.38, -377.19], [-698.58, -395.42]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 518, "jobs": 0}}, {"shape": {"outer": [[-613.13, -954.14], [-598.27, -940.6], [-604.28, -934.04], [-605.52, -935.16], [-610.0, -930.28], [-596.77, -918.24], [-594.87, -920.31], [-588.34, -914.37], [-602.09, -899.38], [-610.37, -906.93], [-607.87, -909.67], [-615.31, -916.44], [-617.83, -913.69], [-635.08, -929.41], [-627.58, -937.58], [-626.98, -937.03], [-623.94, -940.35], [-624.93, -941.27], [-613.13, -954.14]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 748, "jobs": 0}}, {"shape": {"outer": [[-850.22, -185.68], [-866.81, -167.82], [-863.38, -164.66], [-861.68, -166.51], [-857.77, -162.9], [-840.39, -181.59], [-845.65, -186.44], [-848.14, -183.75], [-850.22, -185.68]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.215, "pop": 0, "jobs": 215}}, {"shape": {"outer": [[203.63, -161.98], [196.34, -168.91], [197.55, -170.18], [205.96, -179.05], [210.34, -175.41], [213.31, -172.85], [203.63, -161.98]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[345.35, 47.86], [344.42, 47.02], [341.39, 50.34], [342.3, 51.17], [341.5, 52.05], [351.78, 61.36], [355.93, 56.82], [345.67, 47.52], [345.35, 47.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-681.03, -863.87], [-698.0, -845.48], [-707.49, -854.18], [-690.59, -872.49], [-687.75, -869.88], [-685.87, -871.91], [-682.77, -869.06], [-684.57, -867.11], [-681.03, -863.87]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.213, "pop": 0, "jobs": 213}}, {"shape": {"outer": [[2940.53, 1905.03], [2949.93, 1907.43], [2943.37, 1932.88], [2933.97, 1930.47], [2940.53, 1905.03]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.143, "pop": 0, "jobs": 143}}, {"shape": {"outer": [[-1368.0, -937.34], [-1367.98, -946.89], [-1367.96, -963.09], [-1367.91, -991.63], [-1430.86, -991.12], [-1430.8, -963.32], [-1430.8, -956.96], [-1427.45, -956.97], [-1425.43, -955.19], [-1405.26, -955.46], [-1405.27, -937.02], [-1368.0, -937.34]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1879}}, {"shape": {"outer": [[-1575.71, -978.52], [-1576.01, -992.12], [-1579.62, -992.03], [-1579.32, -978.43], [-1575.71, -978.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-1566.86, -942.64], [-1567.08, -952.01], [-1570.79, -951.9], [-1570.58, -942.56], [-1566.86, -942.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1865.41, -866.73], [-1854.8, -867.04], [-1855.01, -873.91], [-1841.44, -874.32], [-1841.88, -888.96], [-1853.48, -888.6], [-1853.59, -892.11], [-1866.16, -891.73], [-1865.41, -866.73]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.301, "pop": 0, "jobs": 301}}, {"shape": {"outer": [[-1707.92, -743.56], [-1708.45, -755.86], [-1702.84, -756.1], [-1702.89, -757.47], [-1696.82, -757.74], [-1696.77, -756.36], [-1691.49, -756.59], [-1691.55, -757.87], [-1685.68, -758.12], [-1685.62, -756.85], [-1679.67, -757.09], [-1679.15, -745.04], [-1685.53, -744.77], [-1685.58, -745.91], [-1690.72, -745.69], [-1690.67, -744.64], [-1696.74, -744.38], [-1696.79, -745.42], [-1701.86, -745.21], [-1701.79, -743.82], [-1707.92, -743.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.282, "pop": 141, "jobs": 0}}, {"shape": {"outer": [[-1674.44, -774.33], [-1674.96, -786.43], [-1662.91, -786.94], [-1662.85, -785.69], [-1657.78, -785.9], [-1657.83, -787.16], [-1651.77, -787.42], [-1651.7, -785.98], [-1646.57, -786.21], [-1646.63, -787.64], [-1637.46, -788.04], [-1636.94, -775.94], [-1645.75, -775.56], [-1645.71, -774.57], [-1651.78, -774.31], [-1651.82, -775.3], [-1656.89, -775.09], [-1656.84, -773.93], [-1662.84, -773.67], [-1662.89, -774.83], [-1674.44, -774.33]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.318, "pop": 159, "jobs": 0}}, {"shape": {"outer": [[-1675.56, -745.22], [-1676.13, -757.22], [-1664.55, -757.76], [-1664.61, -759.15], [-1658.6, -759.43], [-1658.54, -758.05], [-1653.07, -758.3], [-1653.13, -759.69], [-1647.19, -759.96], [-1647.13, -758.57], [-1635.96, -759.09], [-1635.4, -747.09], [-1646.99, -746.55], [-1647.05, -747.76], [-1652.25, -747.52], [-1652.2, -746.31], [-1658.33, -746.03], [-1658.39, -747.3], [-1663.46, -747.06], [-1663.4, -745.78], [-1675.56, -745.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.39, "pop": 195, "jobs": 0}}, {"shape": {"outer": [[-1718.92, -772.3], [-1719.4, -784.42], [-1707.7, -784.89], [-1707.65, -783.71], [-1702.84, -783.91], [-1702.89, -785.08], [-1696.35, -785.34], [-1696.3, -784.06], [-1691.69, -784.25], [-1691.74, -785.53], [-1679.9, -785.99], [-1679.41, -773.87], [-1690.68, -773.43], [-1690.63, -772.16], [-1696.37, -771.93], [-1696.42, -773.2], [-1701.89, -772.97], [-1701.85, -771.85], [-1707.65, -771.62], [-1707.69, -772.75], [-1718.92, -772.3]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.338, "pop": 169, "jobs": 0}}, {"shape": {"outer": [[-1605.12, -750.38], [-1597.35, -750.71], [-1597.4, -751.82], [-1590.48, -752.09], [-1591.39, -774.14], [-1573.68, -774.86], [-1572.73, -751.89], [-1564.2, -752.25], [-1564.25, -753.63], [-1558.11, -753.89], [-1559.0, -775.46], [-1540.92, -776.2], [-1540.03, -754.66], [-1533.56, -754.93], [-1533.5, -753.52], [-1526.1, -753.84], [-1527.12, -778.63], [-1531.32, -778.45], [-1531.34, -782.12], [-1529.66, -784.11], [-1529.76, -788.03], [-1530.22, -788.02], [-1530.36, -791.3], [-1603.54, -788.31], [-1603.18, -779.7], [-1602.2, -779.74], [-1602.01, -774.98], [-1606.12, -774.82], [-1605.12, -750.38]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 1.0, "pop": 716, "jobs": 0}}, {"shape": {"outer": [[-1536.9, -695.91], [-1522.35, -696.61], [-1524.4, -738.94], [-1538.95, -738.23], [-1536.9, -695.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.494, "pop": 247, "jobs": 0}}, {"shape": {"outer": [[-1823.48, -657.99], [-1815.24, -658.35], [-1816.33, -682.19], [-1824.56, -681.81], [-1823.48, -657.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-1573.2, -721.37], [-1573.82, -735.9], [-1541.72, -737.25], [-1541.1, -722.72], [-1573.2, -721.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.374, "pop": 187, "jobs": 0}}, {"shape": {"outer": [[-1742.52, -722.27], [-1742.77, -731.0], [-1724.62, -731.53], [-1724.36, -722.79], [-1742.52, -722.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1637.42, -807.01], [-1649.23, -806.72], [-1650.32, -850.46], [-1638.5, -850.75], [-1637.42, -807.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.414, "pop": 207, "jobs": 0}}, {"shape": {"outer": [[-1571.94, -694.6], [-1572.63, -708.98], [-1540.79, -710.51], [-1540.1, -696.13], [-1571.94, -694.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.368, "pop": 184, "jobs": 0}}, {"shape": {"outer": [[-1695.94, -804.94], [-1709.51, -804.47], [-1710.24, -825.25], [-1696.68, -825.73], [-1695.94, -804.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[-1662.92, -824.92], [-1678.06, -824.3], [-1678.24, -828.51], [-1681.29, -828.38], [-1682.02, -846.32], [-1663.83, -847.07], [-1662.92, -824.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[-1721.33, -945.09], [-1745.63, -944.34], [-1746.13, -960.72], [-1745.0, -960.76], [-1745.69, -982.99], [-1722.52, -983.7], [-1721.33, -945.09]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.585, "pop": 0, "jobs": 585}}, {"shape": {"outer": [[-1741.1, -684.4], [-1742.57, -716.69], [-1731.49, -717.2], [-1730.52, -695.78], [-1721.1, -696.21], [-1720.6, -685.33], [-1741.1, -684.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.368, "pop": 184, "jobs": 0}}, {"shape": {"outer": [[-1644.61, -879.14], [-1692.07, -876.67], [-1692.91, -892.62], [-1693.75, -908.56], [-1671.3, -909.73], [-1671.62, -916.07], [-1646.61, -917.37], [-1644.61, -879.14]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1073}}, {"shape": {"outer": [[-1716.87, -711.36], [-1717.74, -731.28], [-1706.88, -731.76], [-1706.46, -722.49], [-1685.28, -723.42], [-1684.81, -712.76], [-1716.87, -711.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.354, "pop": 177, "jobs": 0}}, {"shape": {"outer": [[-1743.9, -800.56], [-1744.24, -809.28], [-1725.36, -810.01], [-1725.22, -806.35], [-1723.45, -806.42], [-1723.33, -803.5], [-1725.11, -803.43], [-1725.02, -801.3], [-1743.9, -800.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-1636.58, -690.83], [-1666.63, -689.64], [-1668.1, -726.68], [-1662.53, -726.91], [-1662.61, -728.83], [-1645.21, -729.53], [-1645.15, -727.8], [-1638.06, -728.08], [-1636.58, -690.83]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.736, "pop": 0, "jobs": 736}}, {"shape": {"outer": [[-1819.65, -745.01], [-1820.41, -777.27], [-1768.19, -778.5], [-1768.02, -771.29], [-1768.98, -771.27], [-1768.55, -753.32], [-1767.58, -753.35], [-1767.41, -746.24], [-1819.65, -745.01]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1868}}, {"shape": {"outer": [[-1694.47, -1067.57], [-1689.21, -1067.69], [-1689.16, -1064.97], [-1684.59, -1065.07], [-1684.64, -1067.79], [-1682.17, -1067.84], [-1682.21, -1069.42], [-1661.02, -1069.87], [-1660.98, -1068.28], [-1658.81, -1068.33], [-1658.75, -1065.77], [-1653.6, -1065.88], [-1653.65, -1068.43], [-1648.86, -1068.54], [-1649.62, -1105.01], [-1660.0, -1104.79], [-1659.98, -1103.74], [-1669.69, -1103.53], [-1670.34, -1104.91], [-1671.51, -1105.44], [-1672.62, -1105.49], [-1673.82, -1104.61], [-1674.43, -1103.44], [-1684.94, -1103.21], [-1684.96, -1104.27], [-1695.23, -1104.05], [-1694.47, -1067.57]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1048}}, {"shape": {"outer": [[-1608.04, -714.54], [-1608.36, -722.03], [-1595.34, -722.58], [-1595.02, -715.09], [-1608.04, -714.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1742.52, -766.14], [-1742.93, -775.0], [-1724.66, -775.82], [-1724.26, -766.98], [-1742.52, -766.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1743.15, -753.86], [-1743.56, -763.01], [-1725.74, -763.8], [-1725.34, -754.64], [-1743.15, -753.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1924.22, -870.63], [-1924.48, -878.61], [-1908.2, -879.12], [-1907.96, -871.14], [-1924.22, -870.63]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.083, "pop": 0, "jobs": 83}}, {"shape": {"outer": [[-1963.59, -856.75], [-1957.26, -856.91], [-1957.72, -875.71], [-1964.07, -875.55], [-1963.59, -856.75]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.076, "pop": 0, "jobs": 76}}, {"shape": {"outer": [[-1741.79, -743.78], [-1742.17, -752.21], [-1726.38, -752.92], [-1726.0, -744.5], [-1741.79, -743.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2130.71, -858.14], [-2130.88, -862.0], [-2119.11, -862.4], [-2118.71, -853.26], [-2122.8, -853.21], [-2130.71, -858.14]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.056, "pop": 0, "jobs": 56}}, {"shape": {"outer": [[-2115.35, -849.74], [-2112.25, -849.89], [-2068.49, -851.93], [-2069.99, -876.01], [-2078.14, -875.46], [-2078.86, -896.26], [-2070.85, -896.36], [-2071.26, -907.53], [-2112.76, -906.25], [-2112.31, -895.63], [-2099.94, -895.45], [-2099.83, -874.7], [-2113.14, -874.16], [-2116.24, -874.03], [-2115.35, -849.74]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 1.0, "pop": 1064, "jobs": 0}}, {"shape": {"outer": [[-1594.54, -836.29], [-1598.54, -836.18], [-1598.5, -834.8], [-1602.82, -834.68], [-1602.86, -835.93], [-1605.11, -835.87], [-1605.45, -847.46], [-1604.78, -847.48], [-1604.84, -849.57], [-1597.57, -849.78], [-1597.51, -847.56], [-1596.87, -847.57], [-1596.73, -842.63], [-1594.72, -842.69], [-1594.54, -836.29]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.085, "pop": 0, "jobs": 85}}, {"shape": {"outer": [[-1988.37, -815.37], [-1989.27, -834.53], [-1966.64, -835.58], [-1965.74, -816.44], [-1974.09, -816.04], [-1973.98, -813.96], [-1978.84, -813.75], [-1978.94, -815.82], [-1988.37, -815.37]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.284, "pop": 0, "jobs": 284}}, {"shape": {"outer": [[-1879.3, -799.62], [-1847.67, -800.69], [-1847.98, -809.69], [-1853.98, -809.48], [-1854.49, -824.53], [-1848.51, -824.73], [-1848.97, -839.96], [-1861.9, -841.07], [-1880.69, -840.43], [-1879.3, -799.62]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.334, "pop": 0, "jobs": 334}}, {"shape": {"outer": [[305.36, 305.45], [315.13, 294.55], [310.62, 290.54], [310.9, 290.24], [306.88, 286.66], [306.6, 286.97], [304.28, 284.91], [294.52, 295.81], [305.36, 305.45]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[164.18, 194.88], [150.28, 182.46], [146.9, 186.21], [141.27, 181.19], [145.21, 176.81], [142.15, 174.08], [150.91, 164.35], [145.46, 159.49], [151.62, 152.66], [157.33, 157.76], [161.36, 153.3], [183.67, 173.23], [164.18, 194.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.628, "pop": 0, "jobs": 628}}, {"shape": {"outer": [[251.98, 155.03], [242.49, 165.51], [245.52, 168.24], [242.11, 172.01], [227.11, 158.52], [235.2, 149.59], [236.1, 150.4], [239.11, 147.07], [240.68, 148.48], [242.49, 146.5], [251.98, 155.03]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.202, "pop": 0, "jobs": 202}}, {"shape": {"outer": [[347.21, 365.6], [330.46, 350.42], [341.49, 338.34], [357.97, 353.27], [367.93, 342.35], [377.21, 350.75], [343.55, 387.62], [334.55, 379.46], [347.21, 365.6]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.628, "pop": 0, "jobs": 628}}, {"shape": {"outer": [[388.7, 367.38], [364.28, 394.6], [369.72, 399.45], [367.11, 402.36], [396.21, 428.27], [397.92, 426.37], [399.82, 428.07], [409.36, 417.45], [410.59, 418.55], [412.38, 416.54], [417.9, 421.45], [431.9, 405.84], [388.7, 367.38]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1195}}, {"shape": {"outer": [[336.39, 443.05], [365.39, 411.04], [334.48, 383.24], [320.72, 398.43], [315.11, 393.38], [300.11, 409.95], [316.08, 424.31], [326.06, 413.28], [330.96, 417.7], [320.75, 428.97], [336.39, 443.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 744, "jobs": 0}}, {"shape": {"outer": [[-88.97, 256.19], [-86.92, 256.1], [-85.23, 257.51], [-85.14, 259.57], [-83.2, 259.48], [-78.19, 263.89], [-77.92, 269.93], [-75.49, 269.81], [-75.39, 272.07], [-77.98, 272.18], [-77.59, 281.01], [-83.13, 281.26], [-82.99, 284.29], [-87.7, 284.5], [-88.97, 256.19]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.43, "pop": 215, "jobs": 0}}, {"shape": {"outer": [[-89.25, 251.75], [-83.23, 245.18], [-70.34, 256.91], [-76.36, 263.48], [-89.25, 251.75]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-75.2, 250.49], [-74.1, 249.31], [-73.21, 250.13], [-69.3, 245.94], [-70.36, 244.96], [-69.73, 244.27], [-70.14, 243.91], [-66.02, 239.49], [-70.94, 234.94], [-75.06, 239.35], [-83.02, 231.97], [-83.38, 232.36], [-84.98, 230.87], [-88.33, 234.47], [-88.31, 238.35], [-85.48, 240.97], [-85.83, 241.35], [-81.85, 245.04], [-81.5, 244.65], [-75.2, 250.49]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[-73.3, 229.89], [-68.19, 224.19], [-64.64, 227.36], [-61.57, 223.91], [-71.94, 214.69], [-74.97, 218.07], [-78.37, 215.04], [-83.91, 221.21], [-76.61, 227.71], [-76.23, 227.29], [-73.3, 229.89]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-84.6, 301.44], [-84.71, 299.1], [-85.82, 299.15], [-85.97, 296.09], [-84.86, 296.03], [-84.99, 293.31], [-75.95, 292.89], [-75.89, 294.33], [-73.27, 294.21], [-72.95, 300.88], [-84.6, 301.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1949.94, 2338.55], [1962.82, 2325.12], [1962.02, 2324.33], [1927.55, 2290.92], [1922.23, 2296.1], [1923.7, 2312.57], [1949.94, 2338.55]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.235, "pop": 0, "jobs": 235}}, {"shape": {"outer": [[-320.57, 389.1], [-313.31, 380.72], [-310.32, 383.29], [-307.01, 379.49], [-311.51, 375.62], [-309.11, 372.85], [-315.66, 367.2], [-320.78, 373.1], [-321.07, 372.85], [-328.93, 381.91], [-320.57, 389.1]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-331.93, 380.54], [-339.0, 374.17], [-328.74, 362.87], [-321.02, 369.82], [-327.6, 377.06], [-328.24, 376.47], [-331.93, 380.54]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-228.12, 475.87], [-235.89, 468.83], [-220.54, 452.01], [-212.77, 459.05], [-228.12, 475.87]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.334, "pop": 167, "jobs": 0}}, {"shape": {"outer": [[-238.19, 466.27], [-244.74, 460.41], [-242.67, 458.1], [-243.24, 457.59], [-232.89, 446.11], [-225.32, 452.89], [-229.05, 457.03], [-228.32, 457.69], [-229.96, 459.5], [-230.63, 458.91], [-235.59, 464.41], [-236.1, 463.95], [-238.19, 466.27]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-212.67, 457.26], [-226.04, 445.33], [-224.29, 443.38], [-228.03, 440.04], [-223.31, 434.79], [-214.78, 442.42], [-214.35, 441.94], [-210.05, 445.78], [-210.58, 446.38], [-207.81, 448.85], [-208.28, 449.38], [-206.78, 450.71], [-212.67, 457.26]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-201.2, 441.44], [-208.87, 434.34], [-200.62, 425.48], [-192.94, 432.58], [-201.2, 441.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-208.82, 425.61], [-215.58, 419.6], [-198.48, 400.52], [-191.72, 406.53], [-208.82, 425.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[-216.4, 418.85], [-223.23, 412.75], [-205.91, 393.46], [-199.08, 399.56], [-216.4, 418.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-111.06, 416.35], [-111.39, 410.01], [-107.43, 409.81], [-107.62, 406.09], [-101.66, 405.79], [-101.14, 415.83], [-111.06, 416.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-107.57, 436.56], [-107.74, 432.96], [-112.49, 433.18], [-112.68, 428.98], [-111.66, 428.94], [-111.7, 428.04], [-109.44, 427.94], [-109.4, 428.83], [-102.55, 428.5], [-102.42, 431.3], [-99.19, 431.14], [-98.95, 436.14], [-107.57, 436.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[38.34, 580.3], [35.13, 577.4], [33.68, 578.99], [28.07, 573.93], [29.51, 572.34], [28.86, 571.74], [36.47, 563.37], [37.87, 564.64], [39.28, 563.1], [42.55, 566.05], [41.15, 567.59], [45.94, 571.92], [38.34, 580.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[23.03, 570.49], [17.18, 565.17], [18.64, 563.59], [17.55, 562.59], [21.56, 558.21], [20.42, 557.18], [23.09, 554.26], [24.24, 555.29], [28.72, 550.38], [32.24, 553.59], [33.62, 552.07], [36.07, 554.29], [34.68, 555.79], [37.17, 558.06], [26.6, 569.62], [25.08, 568.24], [23.03, 570.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[15.53, 562.22], [13.6, 560.53], [12.87, 561.37], [9.57, 558.49], [10.3, 557.65], [10.03, 557.42], [15.58, 551.1], [14.5, 550.17], [17.9, 546.3], [20.32, 548.41], [21.69, 546.84], [25.85, 550.47], [15.53, 562.22]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[58.79, 518.64], [51.9, 512.44], [55.84, 508.11], [56.38, 508.61], [62.57, 501.81], [67.18, 505.97], [64.66, 508.75], [66.38, 510.3], [58.79, 518.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[45.06, 508.46], [40.27, 504.24], [50.36, 492.87], [53.71, 495.81], [55.02, 494.35], [58.37, 497.31], [51.62, 504.94], [49.69, 503.24], [45.06, 508.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[106.91, 452.84], [90.54, 438.17], [92.24, 436.28], [90.9, 435.08], [99.22, 425.87], [100.8, 427.29], [102.56, 425.35], [118.68, 439.79], [115.42, 443.41], [116.95, 444.79], [110.11, 452.38], [108.57, 451.0], [106.91, 452.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.344, "pop": 172, "jobs": 0}}, {"shape": {"outer": [[71.11, 477.44], [61.59, 468.8], [65.46, 464.57], [67.73, 466.62], [70.3, 463.82], [73.61, 466.82], [74.87, 465.44], [78.8, 469.0], [71.11, 477.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[80.71, 458.88], [74.08, 452.89], [77.51, 449.13], [77.03, 448.69], [78.49, 447.09], [85.59, 453.52], [80.71, 458.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[88.02, 452.93], [85.49, 450.7], [86.61, 449.44], [82.86, 446.14], [85.07, 443.66], [84.05, 442.77], [86.29, 440.26], [87.3, 441.15], [88.19, 440.16], [94.82, 446.02], [94.34, 446.55], [96.1, 448.11], [94.35, 450.08], [96.19, 451.7], [93.17, 455.1], [89.2, 451.59], [88.02, 452.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[122.74, 430.33], [111.65, 420.14], [113.99, 417.61], [113.34, 417.01], [115.57, 414.59], [116.23, 415.19], [117.24, 414.09], [129.71, 425.54], [124.56, 431.13], [123.18, 429.85], [122.74, 430.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[129.88, 423.16], [113.84, 408.07], [120.02, 401.54], [120.64, 402.14], [120.99, 401.76], [127.08, 407.48], [126.65, 407.94], [135.99, 416.72], [129.88, 423.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[134.6, 411.66], [120.32, 398.26], [125.73, 392.54], [127.05, 393.76], [127.31, 393.49], [140.27, 405.65], [134.6, 411.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[60.53, 426.18], [59.2, 425.01], [59.09, 425.15], [49.45, 416.68], [50.97, 414.95], [50.42, 414.46], [53.75, 410.71], [54.31, 411.19], [54.8, 410.64], [64.35, 419.04], [61.95, 421.74], [63.37, 422.98], [60.53, 426.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[64.15, 416.88], [55.04, 408.61], [59.23, 404.02], [63.29, 407.69], [66.1, 404.61], [69.87, 408.03], [66.0, 412.27], [67.29, 413.45], [64.15, 416.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[74.93, 408.91], [62.63, 398.04], [66.84, 393.32], [79.14, 404.18], [74.93, 408.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[69.46, 395.35], [73.67, 390.62], [83.7, 399.5], [79.5, 404.22], [69.46, 395.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[58.55, 370.23], [47.8, 360.39], [53.75, 353.93], [65.52, 364.69], [59.94, 370.76], [58.92, 369.83], [58.55, 370.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[66.04, 352.6], [57.46, 344.86], [62.7, 339.09], [63.64, 339.94], [64.11, 339.42], [75.28, 349.5], [70.24, 355.07], [66.7, 351.87], [66.04, 352.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[85.94, 396.74], [78.39, 389.86], [80.09, 388.01], [76.79, 385.0], [79.49, 382.06], [90.34, 391.95], [85.94, 396.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[92.48, 389.67], [80.69, 379.12], [81.6, 378.11], [81.13, 377.68], [84.56, 373.85], [96.84, 384.82], [92.48, 389.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[49.47, 576.24], [45.65, 580.65], [45.03, 580.12], [42.09, 583.52], [41.79, 583.27], [40.03, 585.32], [43.6, 588.4], [44.03, 587.89], [48.0, 591.31], [56.11, 581.95], [49.47, 576.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[58.15, 576.88], [50.22, 569.86], [53.17, 566.55], [50.05, 563.78], [53.17, 560.28], [55.16, 562.04], [55.81, 561.31], [66.49, 570.76], [62.46, 575.29], [60.84, 573.86], [58.15, 576.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[53.94, 553.76], [56.89, 550.43], [59.58, 552.81], [60.64, 551.61], [64.28, 554.81], [64.9, 554.1], [73.79, 561.92], [68.7, 567.68], [67.49, 566.61], [67.17, 566.98], [63.64, 563.87], [63.12, 564.46], [58.96, 560.8], [60.02, 559.6], [56.33, 556.36], [56.58, 556.07], [53.94, 553.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[76.53, 557.87], [63.33, 545.96], [70.62, 537.92], [83.83, 549.84], [76.53, 557.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[65.37, 527.68], [63.76, 526.2], [63.22, 526.79], [60.57, 524.37], [61.11, 523.78], [59.58, 522.4], [63.78, 517.83], [63.25, 517.36], [66.91, 513.39], [67.29, 513.74], [70.46, 510.3], [76.38, 515.7], [65.37, 527.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[79.83, 540.61], [79.53, 540.34], [78.51, 541.46], [74.71, 537.99], [75.74, 536.87], [75.39, 536.54], [79.74, 531.83], [80.22, 532.27], [87.17, 524.74], [92.38, 529.5], [90.92, 531.08], [91.25, 531.39], [85.28, 537.86], [84.95, 537.56], [83.4, 539.23], [82.16, 538.09], [79.83, 540.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[70.56, 531.5], [68.45, 529.49], [69.15, 528.77], [67.36, 527.06], [77.74, 516.28], [82.48, 520.81], [78.17, 525.29], [77.33, 524.48], [70.56, 531.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[117.98, 516.99], [113.95, 513.36], [112.81, 514.62], [109.24, 511.41], [118.33, 501.38], [125.93, 508.21], [117.98, 516.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[109.94, 510.11], [102.96, 503.97], [110.84, 495.08], [117.82, 501.22], [109.94, 510.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[101.84, 502.8], [98.29, 499.51], [98.06, 499.78], [94.01, 496.02], [100.17, 489.42], [103.7, 492.68], [103.93, 492.43], [108.01, 496.19], [101.84, 502.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[127.14, 500.98], [115.27, 490.31], [121.01, 483.98], [132.88, 494.65], [132.37, 495.21], [133.5, 496.23], [128.49, 501.75], [127.36, 500.73], [127.14, 500.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[134.85, 494.23], [131.66, 491.42], [131.23, 491.92], [126.97, 488.17], [127.41, 487.68], [123.94, 484.63], [128.75, 479.2], [139.66, 488.8], [134.85, 494.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[142.64, 486.11], [124.91, 470.08], [132.89, 461.32], [149.83, 476.63], [147.69, 478.99], [148.46, 479.71], [142.64, 486.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.224, "pop": 112, "jobs": 0}}, {"shape": {"outer": [[154.25, 472.82], [139.34, 460.06], [144.0, 454.66], [157.73, 466.42], [156.6, 467.73], [157.77, 468.73], [154.25, 472.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[160.38, 464.13], [148.66, 453.58], [151.0, 451.0], [152.16, 452.05], [154.7, 449.25], [165.26, 458.76], [160.38, 464.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[176.78, 444.41], [164.06, 432.07], [169.28, 426.72], [182.0, 439.06], [176.78, 444.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[168.36, 456.34], [153.98, 443.25], [156.93, 440.03], [158.66, 441.59], [161.38, 438.63], [174.97, 451.0], [172.86, 453.31], [171.94, 452.46], [168.36, 456.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[6.72, 364.26], [5.28, 363.01], [5.07, 363.26], [-2.22, 356.96], [-0.8, 355.33], [-3.94, 352.61], [-0.23, 348.35], [10.44, 357.6], [10.05, 358.04], [11.25, 359.08], [6.72, 364.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[13.07, 356.43], [1.67, 346.71], [7.39, 340.06], [18.79, 349.77], [13.07, 356.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[20.5, 350.64], [6.58, 338.69], [12.17, 332.21], [25.11, 343.3], [23.88, 344.72], [24.88, 345.57], [20.5, 350.64]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[28.97, 340.31], [10.9, 324.05], [20.16, 313.83], [38.23, 330.1], [28.97, 340.31]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.352, "pop": 176, "jobs": 0}}, {"shape": {"outer": [[39.66, 326.09], [27.46, 314.89], [33.38, 308.49], [45.59, 319.69], [39.66, 326.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[39.58, 497.95], [34.2, 492.89], [36.29, 490.67], [35.46, 489.89], [38.72, 486.45], [37.99, 485.76], [40.31, 483.31], [43.68, 486.48], [44.83, 485.26], [48.41, 488.63], [39.58, 497.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[87.83, 490.0], [83.43, 486.22], [83.81, 485.78], [82.42, 484.59], [88.01, 478.11], [93.81, 483.07], [87.83, 490.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[81.51, 480.51], [75.11, 474.87], [79.57, 469.83], [85.98, 475.48], [81.51, 480.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[146.87, 397.18], [132.6, 384.1], [136.77, 379.57], [137.73, 380.45], [139.01, 379.07], [140.46, 379.06], [153.0, 390.54], [146.87, 397.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[152.41, 387.97], [144.33, 380.54], [144.73, 380.09], [139.97, 375.71], [145.4, 369.85], [150.99, 374.99], [151.5, 374.44], [155.86, 378.46], [155.36, 379.0], [158.25, 381.66], [152.41, 387.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[160.26, 380.66], [149.33, 370.39], [154.54, 364.9], [165.46, 375.17], [160.26, 380.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[163.37, 371.89], [153.73, 362.93], [158.61, 357.72], [168.25, 366.68], [163.37, 371.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[174.42, 367.76], [166.68, 360.79], [167.15, 360.26], [159.71, 353.55], [164.57, 348.19], [176.51, 358.94], [176.06, 359.43], [179.32, 362.36], [177.22, 364.66], [178.35, 365.69], [176.64, 367.57], [175.51, 366.55], [174.42, 367.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[187.71, 373.49], [182.7, 368.97], [184.25, 367.27], [181.4, 364.7], [191.1, 354.06], [191.09, 353.28], [192.34, 351.9], [194.21, 351.77], [195.66, 353.06], [197.33, 351.22], [205.57, 358.67], [200.24, 364.52], [198.6, 363.04], [193.92, 368.16], [194.09, 370.29], [192.13, 372.42], [189.84, 372.46], [189.18, 371.87], [187.71, 373.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.218, "pop": 109, "jobs": 0}}, {"shape": {"outer": [[201.76, 380.56], [195.68, 374.9], [201.01, 369.24], [200.45, 368.72], [207.6, 361.11], [214.22, 367.28], [201.76, 380.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[194.14, 421.59], [181.65, 409.96], [189.55, 401.54], [202.04, 413.15], [194.14, 421.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[186.63, 433.43], [175.6, 423.55], [181.61, 416.89], [192.64, 426.76], [191.98, 427.5], [193.6, 428.94], [188.63, 434.46], [187.01, 433.01], [186.63, 433.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[225.15, 396.75], [217.65, 389.71], [228.79, 377.92], [233.4, 382.24], [233.76, 381.87], [237.0, 384.91], [234.01, 388.07], [233.66, 387.75], [225.15, 396.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[213.28, 388.26], [207.39, 382.83], [209.22, 380.85], [207.98, 379.7], [218.71, 368.14], [226.18, 375.03], [220.84, 380.79], [220.5, 380.49], [213.28, 388.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[211.0, 405.85], [204.79, 400.25], [211.43, 392.92], [217.65, 398.54], [215.23, 401.19], [216.27, 402.12], [213.99, 404.63], [212.96, 403.71], [211.0, 405.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[178.07, 517.86], [162.43, 503.49], [163.0, 502.88], [162.22, 502.17], [164.36, 499.84], [163.94, 499.46], [167.76, 495.33], [168.1, 495.64], [169.77, 493.84], [170.62, 494.63], [172.9, 492.17], [172.36, 491.66], [176.25, 487.46], [176.79, 487.96], [182.6, 481.68], [181.04, 480.25], [185.05, 475.91], [190.41, 480.83], [190.17, 481.09], [192.05, 482.81], [190.94, 484.03], [191.93, 484.95], [192.45, 484.39], [195.88, 487.54], [196.48, 486.88], [199.17, 489.35], [198.05, 490.56], [199.64, 492.02], [201.0, 490.55], [205.36, 494.55], [204.03, 495.98], [207.05, 498.76], [198.73, 507.75], [201.67, 510.45], [195.64, 516.98], [192.53, 514.13], [191.48, 515.27], [188.59, 512.62], [189.65, 511.49], [186.57, 508.66], [182.83, 512.71], [183.92, 513.71], [181.55, 516.27], [180.46, 515.28], [178.07, 517.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.804, "pop": 402, "jobs": 0}}, {"shape": {"outer": [[163.05, 520.5], [153.22, 511.38], [158.91, 505.3], [168.73, 514.42], [163.05, 520.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[155.76, 531.52], [152.53, 528.62], [151.85, 529.37], [144.71, 522.98], [148.05, 519.27], [147.35, 518.65], [149.19, 516.62], [151.04, 518.29], [151.4, 517.89], [157.78, 523.61], [156.98, 524.5], [159.8, 527.03], [155.76, 531.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[133.49, 534.27], [141.67, 525.3], [152.79, 535.36], [144.61, 544.32], [139.37, 539.58], [138.69, 540.34], [136.19, 538.06], [136.86, 537.32], [133.49, 534.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[157.23, 552.05], [149.0, 544.33], [158.95, 533.79], [167.17, 541.51], [157.23, 552.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[76.0, 618.14], [65.39, 608.44], [72.5, 600.72], [83.11, 610.43], [76.0, 618.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[82.6, 606.98], [72.42, 597.22], [78.53, 590.9], [80.21, 592.51], [81.09, 591.61], [89.58, 599.75], [82.6, 606.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[92.99, 597.4], [84.06, 589.14], [84.89, 588.22], [82.92, 586.4], [88.45, 580.46], [92.13, 583.87], [93.36, 582.55], [97.95, 586.81], [96.86, 587.98], [100.17, 591.05], [97.91, 593.48], [97.23, 592.85], [92.99, 597.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[94.9, 628.97], [94.37, 628.49], [92.41, 630.6], [81.83, 620.84], [83.79, 618.73], [83.08, 618.07], [90.6, 609.98], [93.29, 612.46], [95.79, 609.77], [102.22, 615.7], [99.67, 618.46], [102.36, 620.94], [94.9, 628.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.2, "pop": 100, "jobs": 0}}, {"shape": {"outer": [[107.73, 641.4], [96.96, 631.85], [106.95, 620.66], [113.83, 626.77], [112.94, 627.76], [116.83, 631.21], [107.73, 641.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[117.88, 651.67], [117.33, 651.17], [115.21, 653.48], [109.23, 648.03], [111.34, 645.72], [110.6, 645.04], [120.33, 634.43], [127.61, 641.05], [117.88, 651.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[124.82, 658.93], [124.44, 658.6], [123.16, 660.04], [118.07, 655.51], [119.36, 654.08], [118.92, 653.68], [128.41, 643.08], [131.13, 645.51], [132.82, 643.61], [136.01, 646.45], [124.82, 658.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[131.88, 665.57], [125.29, 659.6], [128.27, 656.32], [127.96, 656.03], [130.14, 653.64], [130.46, 653.93], [132.27, 651.94], [138.86, 657.91], [131.88, 665.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[139.2, 671.71], [132.47, 665.66], [141.07, 656.17], [146.1, 660.7], [143.98, 663.04], [145.67, 664.55], [139.2, 671.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[152.8, 682.66], [152.52, 682.38], [150.82, 684.18], [145.26, 678.97], [146.95, 677.18], [146.38, 676.64], [154.08, 668.47], [160.51, 674.49], [152.8, 682.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[132.03, 729.47], [127.89, 725.71], [128.26, 725.3], [125.72, 723.01], [126.21, 722.47], [125.01, 721.4], [126.07, 720.23], [125.18, 719.43], [128.29, 715.99], [130.22, 716.12], [133.59, 712.45], [141.24, 719.39], [132.03, 729.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[147.03, 740.23], [146.39, 739.64], [144.35, 741.86], [137.93, 736.02], [139.71, 734.09], [138.93, 733.38], [149.02, 722.4], [156.85, 729.54], [147.03, 740.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[167.78, 695.81], [158.76, 687.67], [159.5, 686.85], [157.38, 684.93], [162.49, 679.31], [164.61, 681.23], [165.3, 680.49], [168.86, 683.7], [170.79, 681.59], [176.25, 686.52], [167.78, 695.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[182.63, 709.59], [173.86, 701.27], [180.57, 694.25], [181.73, 695.35], [187.59, 689.24], [195.19, 696.46], [182.63, 709.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[190.66, 721.43], [184.71, 716.07], [194.53, 705.24], [200.48, 710.59], [190.66, 721.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[197.67, 727.1], [192.18, 722.09], [201.4, 712.08], [206.88, 717.1], [197.67, 727.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[209.38, 714.18], [200.37, 705.93], [206.05, 699.78], [215.06, 708.04], [209.38, 714.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[35.79, 255.22], [31.84, 251.51], [32.1, 251.24], [20.24, 240.11], [25.69, 234.35], [41.5, 249.18], [41.02, 249.69], [41.8, 250.41], [39.03, 253.34], [38.25, 252.61], [35.79, 255.22]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[25.58, 233.71], [31.93, 226.84], [45.3, 239.1], [38.95, 245.99], [25.58, 233.71]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[43.59, 231.16], [34.8, 222.86], [40.82, 216.55], [44.02, 219.58], [48.66, 214.7], [53.96, 219.71], [49.38, 224.52], [49.66, 224.78], [43.59, 231.16]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[62.0, 246.49], [55.55, 240.71], [66.05, 229.08], [72.5, 234.85], [62.0, 246.49]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.038, "pop": 0, "jobs": 38}}, {"shape": {"outer": [[68.59, 255.2], [61.51, 248.75], [73.46, 235.76], [80.54, 242.22], [68.59, 255.2]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[74.19, 260.06], [70.37, 256.53], [74.16, 252.46], [73.86, 252.18], [80.56, 244.98], [86.8, 250.75], [80.22, 257.83], [78.1, 255.87], [74.19, 260.06]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[84.51, 266.64], [84.15, 266.32], [83.39, 267.15], [79.79, 263.92], [80.54, 263.08], [77.93, 260.73], [86.7, 251.04], [93.28, 256.95], [84.51, 266.64]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[92.42, 275.83], [88.24, 272.02], [87.61, 272.69], [85.26, 270.55], [85.89, 269.87], [85.13, 269.18], [94.82, 258.62], [100.69, 263.97], [100.72, 265.36], [99.52, 266.67], [99.89, 267.02], [99.94, 267.65], [92.42, 275.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[81.46, 282.68], [71.56, 273.63], [76.39, 268.36], [86.31, 277.42], [81.46, 282.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[72.95, 289.59], [61.19, 278.83], [63.8, 276.0], [64.61, 276.73], [67.32, 273.79], [73.46, 279.41], [72.78, 280.16], [77.59, 284.56], [72.95, 289.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[40.38, 304.62], [43.04, 307.02], [43.46, 306.56], [48.03, 310.67], [47.65, 311.09], [50.93, 314.06], [46.04, 319.44], [35.53, 309.97], [40.38, 304.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[53.98, 310.66], [43.06, 301.11], [48.24, 295.23], [59.16, 304.78], [53.98, 310.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[52.92, 288.81], [64.29, 298.95], [59.3, 304.51], [50.53, 296.69], [52.59, 294.39], [49.99, 292.08], [52.92, 288.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[66.84, 297.01], [55.71, 287.21], [60.35, 281.98], [66.82, 287.68], [66.99, 287.48], [71.65, 291.59], [66.84, 297.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[88.05, 330.54], [79.58, 322.94], [88.01, 313.63], [96.47, 321.24], [88.05, 330.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[103.32, 317.16], [92.2, 307.28], [97.69, 301.14], [100.78, 303.87], [101.11, 303.51], [105.09, 307.04], [104.76, 307.4], [108.82, 311.01], [103.32, 317.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[110.8, 308.98], [107.71, 306.16], [107.48, 306.42], [103.61, 302.89], [103.84, 302.64], [99.11, 298.33], [104.64, 292.3], [116.34, 302.95], [110.8, 308.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[150.0, 274.04], [135.48, 260.97], [137.91, 258.29], [137.47, 257.9], [139.4, 255.78], [139.83, 256.17], [142.6, 253.12], [157.12, 266.19], [150.0, 274.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[156.52, 263.04], [148.06, 255.21], [148.48, 254.76], [144.19, 250.78], [149.96, 244.59], [153.27, 247.66], [153.76, 247.14], [158.31, 251.34], [157.98, 251.7], [162.87, 256.23], [156.52, 263.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[165.7, 252.96], [156.16, 244.27], [156.49, 243.9], [152.38, 240.16], [157.84, 234.22], [171.49, 246.66], [165.7, 252.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[175.72, 292.82], [172.54, 289.99], [171.85, 290.76], [165.56, 285.14], [169.77, 280.46], [172.57, 282.97], [174.02, 281.35], [180.69, 287.31], [175.72, 292.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[184.67, 285.53], [172.75, 275.0], [179.88, 266.98], [191.8, 277.52], [184.67, 285.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[194.07, 275.74], [190.17, 272.03], [189.81, 272.41], [185.83, 268.65], [186.2, 268.26], [183.2, 265.42], [187.99, 260.4], [190.79, 263.06], [191.65, 262.16], [195.68, 265.98], [194.82, 266.88], [198.86, 270.72], [194.07, 275.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[208.73, 262.35], [195.09, 250.01], [200.9, 243.64], [214.54, 255.98], [208.73, 262.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[5.68, 145.23], [2.4, 142.49], [6.25, 137.92], [5.32, 137.14], [9.94, 131.64], [15.58, 136.34], [14.21, 137.97], [18.74, 141.74], [13.08, 148.46], [10.33, 146.16], [7.79, 149.16], [6.77, 148.32], [5.54, 149.78], [3.38, 147.97], [5.68, 145.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[460.39, 317.35], [474.4, 330.31], [472.07, 332.85], [472.82, 333.5], [449.56, 358.68], [449.37, 358.9], [434.64, 345.54], [460.39, 317.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.606, "pop": 303, "jobs": 0}}, {"shape": {"outer": [[488.96, 346.54], [464.77, 372.48], [449.56, 358.68], [472.82, 333.5], [473.83, 332.65], [488.96, 346.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.586, "pop": 293, "jobs": 0}}, {"shape": {"outer": [[461.23, 206.91], [441.96, 190.04], [469.97, 159.36], [481.36, 169.54], [486.98, 174.61], [485.38, 176.29], [483.79, 177.97], [486.15, 180.08], [461.23, 206.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.674, "pop": 0, "jobs": 674}}, {"shape": {"outer": [[-1405.58, -1332.71], [-1399.57, -1339.26], [-1388.64, -1329.3], [-1387.14, -1330.94], [-1370.74, -1316.02], [-1380.0, -1305.92], [-1389.34, -1314.41], [-1391.27, -1312.3], [-1397.86, -1318.29], [-1398.49, -1318.87], [-1394.8, -1322.9], [-1403.59, -1330.9], [-1405.58, -1332.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.372, "pop": 186, "jobs": 0}}, {"shape": {"outer": [[-2486.72, -854.6], [-2476.8, -866.29], [-2473.31, -863.31], [-2468.5, -868.9], [-2465.59, -866.4], [-2463.84, -868.44], [-2446.6, -853.68], [-2445.36, -852.61], [-2446.7, -851.04], [-2440.18, -845.46], [-2438.59, -847.31], [-2425.52, -836.11], [-2460.36, -834.92], [-2466.35, -840.04], [-2467.69, -838.48], [-2486.72, -854.6]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 729, "jobs": 0}}, {"shape": {"outer": [[-356.2, -468.09], [-325.13, -439.49], [-338.02, -425.57], [-322.93, -411.68], [-290.07, -447.11], [-336.24, -489.61], [-354.14, -470.31], [-356.2, -468.09]], "holes": []}, "height": 38.5, "data": {"type": "residential", "density": 1.0, "pop": 4295, "jobs": 0}}, {"shape": {"outer": [[-1315.61, -122.32], [-1314.75, -122.36], [-1314.71, -119.21], [-1315.01, -119.2], [-1314.96, -118.29], [-1312.07, -118.39], [-1312.06, -118.11], [-1263.95, -120.36], [-1264.41, -128.69], [-1263.2, -128.73], [-1263.52, -135.49], [-1264.62, -135.45], [-1264.9, -143.44], [-1280.73, -142.75], [-1280.77, -143.46], [-1285.68, -143.24], [-1285.73, -142.25], [-1295.3, -141.8], [-1295.44, -142.78], [-1300.26, -142.65], [-1300.3, -141.65], [-1313.11, -141.08], [-1313.1, -140.94], [-1316.17, -140.89], [-1316.15, -139.87], [-1315.7, -139.89], [-1315.62, -136.57], [-1316.19, -136.55], [-1315.61, -122.32]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 1254, "jobs": 0}}, {"shape": {"outer": [[21.22, 159.06], [26.28, 163.24], [36.44, 153.01], [29.5, 147.19], [27.24, 149.26], [25.55, 149.87], [23.44, 152.64], [23.48, 153.99], [21.32, 156.58], [22.44, 157.85], [21.22, 159.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[33.86, 171.35], [45.8, 158.77], [41.93, 155.03], [40.44, 156.56], [37.98, 154.5], [27.49, 165.82], [33.86, 171.35]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[44.67, 177.55], [44.61, 175.42], [53.56, 165.26], [47.24, 160.29], [40.24, 167.86], [40.65, 168.41], [36.59, 172.6], [41.87, 177.54], [44.67, 177.55]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[39.74, 151.12], [54.31, 163.66], [60.74, 156.76], [46.88, 143.47], [39.74, 151.12]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[61.47, 152.34], [70.25, 143.96], [55.98, 131.11], [48.11, 139.65], [61.47, 152.34]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[124.74, 120.37], [145.46, 139.61], [125.9, 160.52], [119.32, 154.41], [116.45, 157.48], [114.12, 155.31], [108.45, 161.36], [99.94, 153.3], [96.7, 150.36], [107.75, 138.54], [124.74, 120.37]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.655, "pop": 0, "jobs": 655}}, {"shape": {"outer": [[99.94, 153.3], [87.27, 166.57], [76.0, 178.38], [74.12, 180.36], [81.82, 187.65], [81.14, 188.36], [88.26, 195.12], [88.99, 194.35], [95.81, 200.81], [108.12, 187.93], [97.22, 177.6], [110.69, 163.49], [108.45, 161.36], [99.94, 153.3]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 1164, "jobs": 0}}, {"shape": {"outer": [[56.52, 194.17], [67.34, 182.42], [94.65, 207.4], [83.91, 219.05], [75.35, 211.21], [75.57, 210.97], [63.89, 200.28], [63.58, 200.63], [56.52, 194.17]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.816, "pop": 408, "jobs": 0}}, {"shape": {"outer": [[91.57, 219.48], [91.67, 221.23], [93.28, 222.68], [95.1, 222.67], [93.02, 224.94], [96.26, 227.88], [97.91, 226.06], [101.13, 228.98], [109.37, 219.95], [99.39, 210.92], [91.57, 219.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[103.32, 236.46], [112.27, 244.45], [112.51, 244.19], [114.24, 245.73], [119.79, 239.54], [118.07, 238.0], [118.53, 237.49], [109.57, 229.5], [103.32, 236.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[121.05, 237.99], [127.52, 230.97], [116.76, 221.13], [114.44, 223.64], [113.54, 222.81], [109.39, 227.31], [121.05, 237.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[118.58, 302.07], [105.44, 290.33], [117.19, 277.28], [130.32, 289.01], [118.58, 302.07]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.198, "pop": 0, "jobs": 198}}, {"shape": {"outer": [[130.18, 293.33], [156.09, 316.64], [145.37, 328.46], [119.47, 305.15], [130.18, 293.33]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.778, "pop": 389, "jobs": 0}}, {"shape": {"outer": [[171.38, 339.59], [184.53, 351.63], [184.33, 351.85], [186.51, 353.84], [183.57, 357.02], [181.47, 355.09], [179.27, 357.46], [166.06, 345.35], [171.38, 339.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[180.12, 345.28], [186.13, 338.79], [178.81, 332.04], [172.79, 338.53], [180.12, 345.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1218.25, 483.71], [1224.72, 476.84], [1220.23, 472.64], [1213.76, 479.49], [1218.25, 483.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1226.28, 464.14], [1220.88, 458.99], [1218.15, 461.83], [1217.67, 461.37], [1214.13, 465.06], [1214.62, 465.51], [1211.73, 468.52], [1212.01, 468.79], [1211.13, 469.7], [1212.82, 471.31], [1213.7, 470.4], [1216.85, 473.41], [1219.74, 470.39], [1220.01, 470.65], [1226.28, 464.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1178.06, 439.85], [1181.96, 435.63], [1182.67, 436.27], [1189.7, 428.65], [1183.32, 422.8], [1172.38, 434.64], [1178.06, 439.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1188.41, 458.11], [1196.7, 448.96], [1196.07, 448.4], [1197.86, 446.41], [1193.21, 442.24], [1183.13, 453.37], [1188.41, 458.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1206.45, 467.88], [1210.32, 463.51], [1210.61, 463.76], [1214.63, 459.22], [1208.91, 454.17], [1201.0, 463.08], [1206.45, 467.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1204.17, 458.46], [1210.54, 451.21], [1203.49, 445.07], [1202.96, 445.68], [1202.46, 445.24], [1198.51, 449.73], [1201.69, 452.51], [1199.81, 454.65], [1204.17, 458.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1180.84, 423.72], [1175.27, 419.01], [1167.76, 427.81], [1168.06, 428.06], [1166.56, 429.83], [1171.83, 434.29], [1180.84, 423.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1158.34, 479.67], [1167.69, 469.27], [1162.61, 464.75], [1159.24, 468.5], [1158.39, 467.74], [1152.41, 474.38], [1158.34, 479.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1172.47, 488.6], [1179.78, 480.48], [1174.02, 475.34], [1174.6, 474.69], [1170.55, 471.07], [1161.68, 480.95], [1165.53, 484.38], [1157.0, 493.87], [1157.16, 494.02], [1156.35, 494.92], [1160.65, 498.76], [1161.42, 497.9], [1164.6, 500.74], [1174.16, 490.11], [1172.47, 488.6]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.198, "pop": 0, "jobs": 198}}, {"shape": {"outer": [[1176.93, 521.89], [1163.82, 510.4], [1184.32, 487.21], [1195.66, 497.17], [1187.22, 506.72], [1188.98, 508.27], [1176.93, 521.89]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.326, "pop": 0, "jobs": 326}}, {"shape": {"outer": [[1427.23, 736.77], [1436.45, 744.88], [1450.34, 729.19], [1441.11, 721.08], [1427.23, 736.77]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.165, "pop": 0, "jobs": 165}}, {"shape": {"outer": [[-2947.79, -1249.71], [-2934.93, -1264.38], [-2924.34, -1255.15], [-2937.21, -1240.49], [-2947.79, -1249.71]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.153, "pop": 0, "jobs": 153}}, {"shape": {"outer": [[-2929.81, -1232.46], [-2908.45, -1256.29], [-2899.28, -1248.15], [-2920.63, -1224.3], [-2929.81, -1232.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.314, "pop": 157, "jobs": 0}}, {"shape": {"outer": [[-2904.25, -1210.74], [-2885.85, -1233.02], [-2870.59, -1220.49], [-2876.73, -1213.06], [-2874.85, -1211.53], [-2876.63, -1209.39], [-2875.11, -1208.14], [-2878.98, -1203.45], [-2877.47, -1202.2], [-2881.7, -1197.09], [-2883.64, -1198.69], [-2886.04, -1195.8], [-2904.25, -1210.74]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.694, "pop": 347, "jobs": 0}}, {"shape": {"outer": [[-2806.8, -1129.15], [-2800.73, -1124.02], [-2784.15, -1143.53], [-2790.22, -1148.64], [-2806.8, -1129.15]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.057, "pop": 0, "jobs": 57}}, {"shape": {"outer": [[-2800.73, -1124.02], [-2794.56, -1118.5], [-2793.14, -1120.07], [-2791.64, -1121.85], [-2777.28, -1138.73], [-2773.34, -1143.35], [-2779.72, -1148.73], [-2800.73, -1124.02]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.174, "pop": 0, "jobs": 174}}, {"shape": {"outer": [[-2791.64, -1121.85], [-2777.28, -1138.73], [-2762.68, -1126.41], [-2766.45, -1121.96], [-2778.64, -1107.63], [-2780.96, -1109.6], [-2781.58, -1108.86], [-2784.15, -1111.03], [-2783.3, -1112.03], [-2787.61, -1115.66], [-2788.93, -1114.1], [-2791.87, -1116.58], [-2790.68, -1117.99], [-2793.14, -1120.07], [-2791.64, -1121.85]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.134, "pop": 0, "jobs": 134}}, {"shape": {"outer": [[-2778.64, -1107.63], [-2766.45, -1121.96], [-2759.03, -1115.69], [-2760.81, -1113.58], [-2771.2, -1101.36], [-2778.64, -1107.63]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.117, "pop": 0, "jobs": 117}}, {"shape": {"outer": [[-2771.2, -1101.36], [-2764.67, -1095.85], [-2754.28, -1108.06], [-2760.81, -1113.58], [-2771.2, -1101.36]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.077, "pop": 0, "jobs": 77}}, {"shape": {"outer": [[-2751.3, -1080.59], [-2744.73, -1074.97], [-2739.69, -1080.83], [-2738.98, -1081.66], [-2739.83, -1082.38], [-2736.94, -1085.73], [-2735.92, -1084.86], [-2732.02, -1089.4], [-2738.75, -1095.16], [-2751.3, -1080.59]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.091, "pop": 0, "jobs": 91}}, {"shape": {"outer": [[-2744.73, -1074.97], [-2739.69, -1080.83], [-2738.58, -1079.91], [-2731.4, -1088.44], [-2725.68, -1083.66], [-2726.13, -1083.13], [-2725.43, -1082.55], [-2719.03, -1090.12], [-2713.41, -1085.41], [-2724.37, -1072.44], [-2724.8, -1072.81], [-2731.59, -1064.78], [-2731.77, -1064.93], [-2732.71, -1064.79], [-2735.14, -1066.79], [-2735.14, -1067.9], [-2737.16, -1069.59], [-2737.68, -1068.96], [-2744.73, -1074.97]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.205, "pop": 0, "jobs": 205}}, {"shape": {"outer": [[-2729.76, -1063.77], [-2722.48, -1072.44], [-2721.96, -1071.99], [-2717.52, -1077.29], [-2711.4, -1072.2], [-2723.1, -1058.23], [-2723.79, -1058.79], [-2724.76, -1058.44], [-2727.32, -1060.54], [-2727.24, -1061.67], [-2729.76, -1063.77]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.1, "pop": 0, "jobs": 100}}, {"shape": {"outer": [[-2722.8, -1056.21], [-2716.99, -1063.03], [-2713.49, -1060.08], [-2710.4, -1063.71], [-2709.89, -1063.54], [-2709.03, -1064.55], [-2708.6, -1064.19], [-2707.06, -1065.98], [-2711.05, -1069.37], [-2704.98, -1076.47], [-2698.19, -1070.7], [-2700.28, -1068.25], [-2697.11, -1065.57], [-2702.88, -1058.83], [-2701.96, -1058.04], [-2705.39, -1054.04], [-2706.44, -1054.94], [-2709.28, -1051.61], [-2710.01, -1052.23], [-2713.39, -1048.27], [-2722.8, -1056.21]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.085, "pop": 0, "jobs": 85}}, {"shape": {"outer": [[-1921.08, -724.04], [-1921.57, -732.99], [-1902.39, -734.05], [-1901.9, -725.09], [-1921.08, -724.04]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.11, "pop": 0, "jobs": 110}}, {"shape": {"outer": [[-1931.26, -722.5], [-1937.65, -722.27], [-1938.02, -732.19], [-1931.63, -732.43], [-1931.26, -722.5]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.041, "pop": 0, "jobs": 41}}, {"shape": {"outer": [[-1942.22, -721.79], [-1938.3, -721.95], [-1938.7, -731.56], [-1942.62, -731.4], [-1942.22, -721.79]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.024, "pop": 0, "jobs": 24}}, {"shape": {"outer": [[-2584.27, -554.8], [-2568.29, -555.3], [-2568.35, -557.23], [-2567.74, -557.25], [-2568.08, -567.99], [-2568.69, -567.97], [-2568.74, -569.61], [-2573.08, -569.48], [-2573.22, -573.85], [-2569.0, -573.99], [-2569.05, -575.83], [-2568.31, -575.85], [-2568.65, -586.64], [-2569.4, -586.62], [-2569.45, -588.26], [-2585.32, -587.74], [-2585.07, -579.85], [-2577.59, -580.09], [-2577.51, -577.44], [-2582.89, -577.28], [-2582.53, -565.76], [-2577.39, -565.93], [-2577.3, -563.08], [-2584.53, -562.85], [-2584.27, -554.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.366, "pop": 183, "jobs": 0}}, {"shape": {"outer": [[2286.19, 1795.52], [2300.28, 1781.43], [2291.99, 1773.21], [2277.9, 1787.29], [2286.19, 1795.52]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.149, "pop": 0, "jobs": 149}}, {"shape": {"outer": [[2272.14, 1781.57], [2286.22, 1767.48], [2291.99, 1773.21], [2277.9, 1787.29], [2272.14, 1781.57]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.104, "pop": 0, "jobs": 104}}, {"shape": {"outer": [[2303.02, 1719.83], [2309.21, 1696.79], [2310.32, 1692.69], [2310.89, 1692.81], [2316.77, 1694.04], [2317.94, 1689.51], [2321.45, 1690.47], [2324.29, 1691.23], [2323.58, 1693.45], [2315.79, 1723.28], [2303.02, 1719.83]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.258, "pop": 0, "jobs": 258}}, {"shape": {"outer": [[2315.79, 1723.28], [2329.33, 1726.92], [2335.18, 1705.75], [2330.28, 1704.55], [2328.8, 1704.19], [2331.39, 1695.19], [2323.58, 1693.45], [2315.79, 1723.28]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.245, "pop": 0, "jobs": 245}}, {"shape": {"outer": [[2524.1, 1854.44], [2532.73, 1819.63], [2535.11, 1820.22], [2539.51, 1802.48], [2546.35, 1804.17], [2553.53, 1806.09], [2567.71, 1809.42], [2563.2, 1827.63], [2554.37, 1825.46], [2554.0, 1826.97], [2545.85, 1859.79], [2527.96, 1855.39], [2524.1, 1854.44]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.856, "pop": 0, "jobs": 856}}, {"shape": {"outer": [[2778.69, 1839.0], [2782.31, 1819.97], [2793.88, 1822.83], [2793.23, 1826.0], [2795.27, 1826.4], [2794.0, 1832.65], [2797.55, 1833.38], [2795.94, 1841.97], [2794.82, 1846.6], [2784.58, 1843.48], [2778.69, 1839.0]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.219, "pop": 0, "jobs": 219}}, {"shape": {"outer": [[2853.24, 1887.52], [2853.08, 1881.98], [2856.85, 1882.9], [2861.88, 1884.12], [2861.05, 1889.7], [2856.09, 1888.32], [2853.24, 1887.52]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.03, "pop": 0, "jobs": 30}}, {"shape": {"outer": [[2926.7, 1901.68], [2932.72, 1903.14], [2928.13, 1921.83], [2922.11, 1920.36], [2926.7, 1901.68]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.076, "pop": 0, "jobs": 76}}, {"shape": {"outer": [[2928.13, 1921.83], [2932.72, 1903.14], [2940.53, 1905.03], [2933.97, 1930.47], [2931.71, 1938.93], [2924.81, 1934.64], [2928.13, 1921.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[2585.18, 1570.82], [2601.88, 1570.51], [2620.57, 1570.8], [2620.07, 1541.32], [2591.22, 1540.72], [2590.7, 1559.41], [2590.67, 1560.22], [2585.86, 1560.02], [2585.18, 1570.82]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.594, "pop": 0, "jobs": 594}}, {"shape": {"outer": [[2541.34, 1616.46], [2622.08, 1671.45], [2626.72, 1669.14], [2621.69, 1579.81], [2602.6, 1580.56], [2601.88, 1570.51], [2585.18, 1570.82], [2573.53, 1562.88], [2567.24, 1558.59], [2554.68, 1576.54], [2559.32, 1579.98], [2540.18, 1610.18], [2541.34, 1616.46]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3640}}, {"shape": {"outer": [[116.66, 550.48], [124.03, 556.99], [123.51, 557.58], [129.35, 562.75], [128.64, 563.55], [133.4, 567.77], [134.02, 567.07], [141.09, 573.31], [127.51, 588.57], [120.89, 582.72], [121.16, 582.44], [118.06, 579.7], [115.19, 582.93], [117.86, 585.28], [111.45, 592.47], [106.12, 587.75], [105.85, 588.06], [98.99, 581.99], [101.44, 579.24], [100.22, 578.16], [100.72, 577.6], [95.06, 572.6], [97.69, 569.63], [98.76, 570.57], [101.85, 567.11], [102.49, 567.67], [105.9, 563.82], [104.34, 562.44], [107.59, 558.78], [108.1, 559.22], [112.91, 553.82], [113.35, 554.2], [116.66, 550.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.786, "pop": 393, "jobs": 0}}, {"shape": {"outer": [[143.89, 622.45], [143.44, 622.04], [142.72, 622.83], [139.93, 620.28], [140.65, 619.49], [135.78, 615.05], [134.4, 616.55], [131.18, 613.62], [132.56, 612.11], [125.58, 605.75], [132.12, 598.63], [135.76, 601.96], [138.57, 598.9], [129.01, 590.19], [138.99, 579.33], [139.43, 579.73], [142.9, 575.96], [149.42, 581.91], [149.1, 582.25], [153.44, 586.21], [153.81, 585.81], [160.34, 591.77], [159.98, 592.17], [163.28, 595.18], [163.54, 594.89], [166.63, 597.71], [143.89, 622.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.782, "pop": 391, "jobs": 0}}, {"shape": {"outer": [[171.26, 639.06], [168.59, 636.61], [167.62, 637.65], [164.91, 635.15], [165.54, 634.48], [162.47, 631.67], [162.02, 632.15], [157.69, 628.17], [161.41, 624.15], [161.61, 624.33], [164.11, 621.62], [162.73, 620.35], [162.56, 620.53], [156.16, 614.65], [159.0, 611.58], [158.6, 611.23], [169.12, 599.85], [172.77, 603.2], [172.54, 603.45], [175.34, 606.02], [175.74, 605.58], [180.11, 609.59], [179.63, 610.12], [181.04, 611.41], [181.49, 610.92], [186.12, 615.17], [185.67, 615.66], [187.81, 617.62], [188.23, 617.16], [191.0, 619.7], [188.17, 622.76], [187.91, 622.52], [186.2, 624.36], [186.72, 624.83], [180.51, 631.56], [179.99, 631.08], [175.41, 636.05], [174.67, 635.37], [171.26, 639.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.584, "pop": 292, "jobs": 0}}, {"shape": {"outer": [[199.88, 657.38], [185.34, 644.26], [197.41, 631.0], [211.94, 644.13], [199.88, 657.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.28, "pop": 140, "jobs": 0}}, {"shape": {"outer": [[216.93, 706.04], [207.07, 696.93], [212.75, 690.83], [219.21, 696.8], [218.75, 697.29], [222.16, 700.43], [216.93, 706.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[221.52, 698.17], [210.38, 687.91], [212.82, 685.28], [211.64, 684.2], [214.09, 681.57], [215.26, 682.65], [216.64, 681.16], [227.78, 691.41], [227.32, 691.91], [228.49, 692.99], [222.95, 698.97], [221.78, 697.89], [221.52, 698.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[251.17, 638.76], [244.82, 632.79], [251.45, 625.8], [252.89, 627.14], [256.22, 623.63], [260.08, 627.26], [256.94, 630.56], [258.0, 631.56], [251.17, 638.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[260.47, 643.93], [260.18, 643.68], [259.03, 644.92], [253.97, 640.25], [255.21, 638.9], [254.91, 638.62], [264.92, 627.82], [270.58, 633.03], [260.47, 643.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[241.56, 629.78], [231.51, 620.77], [251.31, 598.86], [261.35, 607.86], [241.56, 629.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.318, "pop": 159, "jobs": 0}}, {"shape": {"outer": [[229.04, 618.45], [222.1, 612.16], [235.21, 597.81], [242.15, 604.11], [229.04, 618.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[224.13, 608.27], [223.92, 608.08], [221.66, 610.54], [215.91, 605.28], [218.18, 602.82], [217.9, 602.56], [229.29, 590.24], [235.51, 595.94], [224.13, 608.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[212.96, 603.65], [212.63, 603.35], [211.26, 604.83], [206.34, 600.3], [207.7, 598.83], [207.29, 598.44], [214.67, 590.47], [215.31, 591.05], [216.55, 589.71], [219.71, 592.61], [218.46, 593.95], [220.33, 595.68], [212.96, 603.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[206.58, 598.22], [201.1, 593.23], [205.27, 588.69], [204.76, 588.24], [207.51, 585.24], [208.01, 585.69], [208.51, 585.16], [213.98, 590.15], [206.58, 598.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[170.54, 561.37], [162.78, 554.58], [172.43, 543.62], [180.19, 550.41], [170.54, 561.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[180.5, 567.95], [179.96, 567.47], [179.02, 568.54], [177.46, 567.19], [178.4, 566.12], [175.74, 563.8], [181.05, 557.76], [185.8, 561.89], [180.5, 567.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[191.72, 585.36], [186.14, 580.59], [193.79, 571.71], [199.37, 576.49], [191.72, 585.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[198.37, 590.45], [193.51, 586.28], [195.92, 583.49], [194.94, 582.65], [199.27, 577.64], [205.1, 582.63], [198.37, 590.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[99.49, 381.92], [87.56, 370.75], [90.81, 367.3], [97.17, 373.25], [100.12, 370.12], [103.88, 373.65], [101.39, 376.29], [103.2, 377.98], [99.49, 381.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[106.57, 374.59], [97.52, 366.59], [98.78, 365.18], [97.17, 363.77], [101.52, 358.88], [103.03, 360.21], [103.43, 359.76], [112.57, 367.85], [106.57, 374.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[114.26, 366.81], [99.47, 354.04], [105.6, 346.98], [120.39, 359.75], [114.26, 366.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[129.46, 350.24], [125.62, 346.72], [124.78, 347.63], [118.8, 342.17], [120.0, 340.87], [119.09, 340.05], [118.33, 340.87], [114.73, 337.59], [119.4, 332.52], [133.73, 345.6], [129.46, 350.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[123.58, 355.22], [117.61, 350.1], [118.75, 348.78], [115.44, 345.94], [110.79, 351.31], [120.07, 359.27], [123.58, 355.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[216.4, 314.91], [203.44, 303.4], [197.54, 310.0], [199.13, 311.42], [198.63, 311.97], [201.83, 314.82], [201.91, 316.06], [204.25, 318.15], [205.52, 318.09], [210.01, 322.08], [211.02, 320.94], [211.53, 321.39], [216.0, 316.39], [215.49, 315.94], [216.4, 314.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[249.98, 368.2], [237.51, 356.92], [245.28, 348.37], [257.77, 359.65], [249.98, 368.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[226.05, 349.01], [220.38, 343.87], [221.44, 342.71], [220.93, 342.26], [228.86, 333.58], [229.18, 333.87], [230.72, 332.18], [234.37, 335.5], [232.83, 337.19], [235.03, 339.18], [226.05, 349.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[221.78, 340.53], [221.22, 340.0], [219.69, 341.62], [215.18, 337.42], [216.7, 335.79], [216.19, 335.33], [222.26, 328.84], [227.86, 334.04], [221.78, 340.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[205.98, 303.1], [208.38, 300.47], [207.97, 300.1], [211.05, 296.73], [216.25, 301.44], [213.74, 304.19], [217.71, 307.76], [214.96, 310.79], [211.66, 307.8], [211.44, 308.04], [205.98, 303.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[230.11, 308.21], [234.76, 303.1], [226.62, 295.75], [226.85, 295.5], [223.03, 292.05], [222.8, 292.3], [219.79, 289.59], [215.15, 294.7], [215.43, 294.95], [213.75, 296.8], [219.31, 301.81], [219.46, 301.63], [225.94, 307.49], [227.46, 305.82], [230.11, 308.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[235.26, 289.87], [233.06, 287.89], [233.49, 287.41], [225.9, 280.57], [221.4, 285.53], [221.71, 285.81], [219.55, 288.19], [229.04, 296.73], [229.3, 296.43], [231.61, 298.5], [233.78, 296.1], [231.48, 294.04], [235.26, 289.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[238.29, 289.75], [227.31, 279.72], [232.53, 274.03], [236.08, 277.28], [236.61, 276.71], [241.45, 281.14], [240.92, 281.71], [243.51, 284.07], [238.29, 289.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[250.4, 277.74], [240.59, 268.83], [240.27, 269.18], [237.73, 266.86], [232.67, 272.4], [245.02, 283.61], [250.4, 277.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[270.65, 287.28], [265.15, 282.34], [271.56, 275.26], [269.8, 273.68], [269.64, 273.86], [264.66, 269.39], [266.96, 266.84], [266.22, 266.16], [269.33, 262.73], [270.08, 263.4], [272.8, 260.4], [277.91, 264.99], [275.0, 268.2], [277.23, 270.22], [281.36, 265.66], [286.49, 270.27], [275.49, 282.42], [275.25, 282.19], [270.65, 287.28]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.177, "pop": 0, "jobs": 177}}, {"shape": {"outer": [[262.42, 353.88], [277.39, 337.04], [275.8, 335.64], [277.69, 333.51], [279.27, 334.93], [294.14, 318.2], [281.91, 307.41], [275.74, 314.35], [277.79, 316.15], [274.83, 319.48], [250.7, 298.19], [236.38, 314.3], [242.43, 319.64], [244.19, 317.66], [262.69, 334.0], [258.8, 338.36], [255.82, 335.74], [249.69, 342.63], [262.42, 353.88]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 928, "jobs": 0}}, {"shape": {"outer": [[264.49, 264.91], [262.89, 263.45], [260.87, 265.64], [256.91, 262.03], [258.93, 259.82], [258.59, 259.51], [267.36, 249.98], [273.26, 255.38], [264.49, 264.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[263.62, 300.95], [266.55, 297.75], [265.98, 297.24], [268.49, 294.5], [267.83, 293.89], [271.26, 290.15], [277.39, 295.72], [271.57, 302.08], [271.13, 301.67], [268.08, 305.0], [263.62, 300.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[282.33, 289.59], [275.36, 283.35], [283.41, 274.41], [283.67, 274.65], [286.46, 271.55], [287.3, 272.29], [288.09, 271.41], [293.96, 276.68], [282.33, 289.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[283.47, 290.38], [294.33, 278.6], [300.86, 284.59], [290.0, 296.36], [283.47, 290.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[213.46, 550.02], [203.07, 540.63], [207.98, 535.22], [209.7, 536.77], [210.99, 535.35], [209.28, 533.8], [213.53, 529.12], [223.6, 538.21], [222.8, 539.09], [223.74, 539.94], [221.23, 542.7], [220.29, 541.86], [218.19, 544.17], [218.51, 544.46], [218.12, 544.89], [219.2, 545.87], [216.74, 548.59], [215.65, 547.61], [213.46, 550.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[216.57, 524.89], [225.85, 514.66], [229.83, 518.26], [230.57, 517.45], [237.7, 523.88], [236.89, 524.78], [239.69, 527.3], [238.83, 528.23], [240.92, 530.11], [242.44, 528.44], [249.11, 534.46], [248.39, 535.25], [251.81, 538.34], [242.95, 548.1], [239.66, 545.14], [238.38, 546.56], [235.64, 544.1], [236.38, 543.29], [233.48, 540.68], [233.02, 541.19], [230.07, 538.53], [231.14, 537.34], [228.5, 534.96], [227.17, 536.42], [224.38, 533.91], [225.6, 532.57], [223.37, 530.55], [222.0, 532.07], [218.83, 529.21], [219.97, 527.95], [216.57, 524.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.414, "pop": 207, "jobs": 0}}, {"shape": {"outer": [[260.5, 564.43], [257.74, 562.0], [256.77, 563.08], [254.32, 560.9], [255.22, 559.89], [252.6, 557.57], [251.54, 558.77], [248.81, 556.36], [249.76, 555.29], [246.24, 552.19], [255.3, 542.02], [258.83, 545.13], [259.69, 544.16], [267.43, 551.0], [266.72, 551.78], [269.54, 554.27], [260.5, 564.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.222, "pop": 111, "jobs": 0}}, {"shape": {"outer": [[285.55, 586.25], [277.81, 579.23], [276.48, 580.69], [273.98, 578.43], [275.19, 577.11], [274.85, 576.8], [275.66, 575.93], [273.88, 574.32], [272.64, 575.68], [272.29, 575.35], [271.05, 576.71], [268.41, 574.32], [269.51, 573.12], [267.0, 570.85], [276.61, 560.32], [279.32, 562.77], [280.29, 561.71], [287.56, 568.3], [286.71, 569.23], [289.64, 571.88], [286.94, 574.85], [291.87, 579.32], [285.55, 586.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.26, "pop": 130, "jobs": 0}}, {"shape": {"outer": [[283.98, 630.5], [282.88, 629.48], [280.99, 631.53], [276.68, 627.54], [277.63, 626.51], [272.52, 621.78], [280.14, 613.6], [290.66, 623.32], [283.98, 630.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[291.04, 619.89], [281.11, 610.78], [283.26, 608.46], [282.12, 607.41], [284.51, 604.83], [285.82, 606.02], [286.41, 605.39], [288.19, 603.47], [286.9, 602.28], [289.32, 599.68], [290.43, 600.7], [297.47, 593.11], [304.74, 599.79], [300.2, 604.69], [302.94, 607.21], [300.43, 609.91], [301.39, 610.78], [294.71, 618.01], [293.66, 617.05], [291.04, 619.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.26, "pop": 130, "jobs": 0}}, {"shape": {"outer": [[308.53, 600.33], [315.75, 592.34], [302.12, 580.12], [294.9, 588.11], [308.53, 600.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[281.33, 527.83], [289.99, 518.4], [284.79, 513.66], [284.56, 513.91], [283.28, 512.75], [283.66, 512.33], [277.45, 506.69], [277.08, 507.1], [273.28, 503.65], [273.63, 503.27], [267.9, 498.05], [267.55, 498.43], [266.33, 497.31], [266.72, 496.89], [261.75, 492.36], [252.85, 502.06], [259.32, 507.95], [259.71, 507.51], [266.18, 513.41], [265.43, 514.23], [267.54, 516.15], [268.29, 515.33], [268.99, 515.96], [268.66, 516.32], [272.26, 519.6], [271.39, 520.55], [272.96, 521.99], [273.83, 521.04], [273.98, 521.17], [274.31, 520.81], [275.24, 521.65], [274.37, 522.59], [276.11, 524.16], [276.65, 523.56], [281.33, 527.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.396, "pop": 198, "jobs": 0}}, {"shape": {"outer": [[294.23, 541.69], [284.52, 532.93], [308.09, 507.02], [317.8, 515.79], [294.23, 541.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.366, "pop": 183, "jobs": 0}}, {"shape": {"outer": [[299.5, 548.13], [311.74, 534.57], [321.58, 543.38], [309.33, 556.94], [303.37, 551.6], [303.0, 552.01], [300.52, 549.78], [300.89, 549.37], [299.5, 548.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.194, "pop": 97, "jobs": 0}}, {"shape": {"outer": [[488.85, 586.78], [442.66, 545.2], [475.29, 509.22], [514.34, 545.57], [523.85, 534.2], [531.73, 540.25], [488.85, 586.78]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2011}}, {"shape": {"outer": [[437.35, 540.87], [469.75, 505.71], [447.22, 485.11], [414.82, 520.27], [437.35, 540.87]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.934, "pop": 0, "jobs": 934}}, {"shape": {"outer": [[416.15, 578.96], [432.88, 560.38], [424.67, 553.05], [423.84, 553.97], [409.03, 540.74], [410.05, 539.61], [401.89, 532.32], [384.98, 551.11], [393.03, 558.3], [393.77, 557.48], [408.66, 570.8], [407.92, 571.61], [416.15, 578.96]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.702, "pop": 351, "jobs": 0}}, {"shape": {"outer": [[423.13, 632.27], [435.75, 618.5], [402.14, 587.93], [389.52, 601.72], [423.13, 632.27]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.543, "pop": 0, "jobs": 543}}, {"shape": {"outer": [[375.87, 564.62], [401.53, 587.27], [388.27, 602.2], [362.6, 579.55], [375.87, 564.62]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.437, "pop": 0, "jobs": 437}}, {"shape": {"outer": [[314.59, 659.14], [303.41, 649.02], [308.58, 643.34], [311.68, 646.14], [312.66, 645.06], [320.74, 652.38], [314.59, 659.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[309.76, 641.86], [315.33, 635.8], [318.4, 638.6], [318.79, 638.18], [323.17, 642.18], [322.79, 642.6], [327.34, 646.75], [321.78, 652.81], [309.76, 641.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[279.73, 668.62], [285.34, 662.52], [292.71, 654.52], [305.81, 666.51], [292.82, 680.59], [279.73, 668.62]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.095, "pop": 0, "jobs": 95}}, {"shape": {"outer": [[213.28, 664.25], [207.44, 658.95], [211.84, 654.15], [211.62, 653.95], [218.24, 646.7], [224.3, 652.2], [213.28, 664.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[221.24, 672.73], [215.66, 667.79], [220.58, 662.26], [219.88, 661.64], [223.93, 657.1], [224.62, 657.72], [227.35, 654.65], [232.94, 659.6], [221.24, 672.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[229.72, 675.03], [224.46, 670.36], [227.32, 667.15], [226.92, 666.79], [233.29, 659.63], [238.96, 664.64], [235.86, 668.13], [236.36, 668.58], [233.0, 672.36], [232.49, 671.9], [229.72, 675.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[187.42, 678.66], [180.2, 672.0], [185.41, 666.4], [192.62, 673.08], [187.42, 678.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[218.76, 743.29], [219.8, 742.14], [219.2, 741.59], [225.94, 734.13], [226.56, 734.69], [227.9, 733.21], [233.7, 738.41], [233.14, 739.04], [237.26, 742.75], [236.65, 743.42], [237.23, 743.94], [230.79, 751.07], [228.9, 749.37], [227.83, 750.55], [226.21, 749.09], [225.77, 749.59], [218.76, 743.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[253.82, 723.08], [242.89, 713.21], [263.15, 690.94], [273.68, 700.49], [274.08, 700.81], [253.82, 723.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.354, "pop": 177, "jobs": 0}}, {"shape": {"outer": [[282.26, 725.23], [279.71, 722.92], [278.05, 724.74], [275.22, 722.17], [276.92, 720.3], [276.25, 719.71], [286.25, 708.76], [291.77, 713.75], [288.08, 717.78], [288.08, 718.84], [282.26, 725.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[289.54, 729.38], [289.05, 728.94], [285.57, 732.82], [281.38, 729.08], [293.59, 715.45], [298.28, 719.63], [289.54, 729.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[245.43, 764.87], [236.33, 756.58], [240.48, 752.05], [239.93, 751.54], [242.93, 748.28], [241.8, 747.24], [244.94, 743.83], [248.72, 747.28], [246.96, 749.19], [253.96, 755.56], [245.43, 764.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[295.75, 739.93], [290.59, 735.25], [302.17, 722.58], [307.32, 727.25], [295.75, 739.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[301.95, 743.92], [296.95, 739.3], [308.48, 726.92], [313.47, 731.55], [301.95, 743.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[305.69, 747.72], [309.01, 744.09], [307.94, 743.12], [315.39, 734.97], [316.01, 735.53], [316.9, 734.57], [322.17, 739.36], [321.45, 740.14], [322.17, 740.8], [316.84, 746.61], [317.23, 746.97], [314.98, 749.42], [313.82, 748.35], [310.44, 752.04], [305.69, 747.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[317.06, 761.2], [310.6, 755.51], [320.0, 744.91], [326.46, 750.59], [317.06, 761.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[324.34, 765.87], [319.14, 761.05], [327.58, 751.99], [332.79, 756.81], [324.34, 765.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[269.9, 718.13], [270.69, 718.79], [266.67, 723.49], [261.66, 719.23], [269.13, 710.51], [273.36, 714.09], [269.9, 718.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[278.66, 712.65], [288.07, 702.15], [281.11, 695.96], [271.54, 706.66], [274.98, 709.71], [274.29, 710.47], [277.44, 713.27], [278.3, 712.33], [278.66, 712.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[311.86, 668.67], [321.23, 677.26], [320.71, 677.84], [322.57, 679.54], [317.16, 685.39], [317.93, 686.09], [310.6, 694.04], [296.45, 681.07], [309.05, 667.43], [311.2, 669.39], [311.86, 668.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.288, "pop": 144, "jobs": 0}}, {"shape": {"outer": [[193.98, 790.23], [180.89, 778.43], [189.82, 768.49], [196.29, 774.27], [203.03, 780.28], [193.98, 790.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[221.97, 830.42], [215.76, 824.93], [217.44, 823.04], [205.98, 812.91], [204.08, 815.05], [197.77, 809.49], [205.21, 801.13], [203.18, 799.34], [209.2, 792.59], [210.86, 794.06], [211.92, 794.99], [215.09, 791.45], [238.08, 811.74], [233.87, 816.48], [235.13, 817.6], [236.26, 818.59], [231.37, 824.08], [229.27, 822.22], [221.97, 830.42]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.83, "pop": 415, "jobs": 0}}, {"shape": {"outer": [[198.38, 458.83], [204.4, 451.97], [217.14, 463.05], [211.12, 469.92], [198.38, 458.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[219.36, 460.88], [211.46, 453.93], [211.89, 453.44], [207.57, 449.64], [212.55, 444.01], [224.78, 454.77], [219.36, 460.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[214.24, 444.67], [218.56, 439.86], [222.18, 443.08], [223.38, 441.73], [232.92, 450.23], [227.39, 456.39], [214.24, 444.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[221.89, 434.01], [225.86, 429.82], [230.25, 433.94], [230.59, 433.57], [234.68, 437.41], [233.84, 438.3], [238.44, 442.61], [233.67, 447.66], [224.92, 439.45], [225.77, 438.55], [222.76, 435.73], [223.22, 435.25], [221.89, 434.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[227.43, 429.37], [227.66, 429.11], [226.22, 427.79], [229.96, 423.73], [231.4, 425.03], [231.82, 424.59], [238.31, 430.51], [233.92, 435.29], [227.43, 429.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[243.56, 430.76], [233.24, 421.2], [240.65, 413.25], [250.98, 422.8], [243.56, 430.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[247.19, 412.07], [243.34, 408.59], [251.62, 399.53], [255.46, 403.01], [247.19, 412.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[252.35, 417.04], [248.89, 413.93], [250.22, 412.47], [249.33, 411.68], [256.34, 403.93], [260.68, 407.82], [252.35, 417.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[256.43, 421.78], [253.29, 418.86], [255.04, 416.97], [254.44, 416.42], [261.86, 408.48], [266.12, 412.42], [258.92, 420.13], [258.41, 419.66], [256.43, 421.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[270.3, 437.7], [264.13, 432.05], [272.75, 422.69], [274.76, 424.54], [276.46, 422.69], [281.24, 427.05], [277.81, 430.76], [277.2, 430.21], [270.3, 437.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[245.26, 494.43], [232.2, 482.53], [261.72, 450.37], [265.67, 453.97], [256.32, 464.17], [257.66, 465.4], [253.98, 469.41], [261.74, 476.49], [245.26, 494.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.436, "pop": 218, "jobs": 0}}, {"shape": {"outer": [[231.8, 482.62], [224.87, 476.29], [235.4, 464.84], [236.22, 465.6], [245.27, 455.74], [250.28, 460.32], [241.39, 469.99], [242.49, 470.99], [231.8, 482.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[310.19, 473.77], [290.9, 455.79], [299.67, 446.44], [318.97, 464.41], [310.19, 473.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.27, "pop": 135, "jobs": 0}}, {"shape": {"outer": [[290.51, 500.87], [282.84, 493.69], [283.79, 492.67], [278.25, 487.48], [277.29, 488.5], [269.07, 480.79], [270.72, 479.05], [270.38, 478.72], [273.41, 475.51], [273.75, 475.84], [277.7, 471.65], [277.13, 471.12], [280.59, 467.45], [281.15, 467.98], [283.29, 465.71], [291.28, 473.2], [289.78, 474.78], [295.42, 480.05], [296.53, 478.87], [304.35, 486.18], [302.78, 487.85], [303.28, 488.31], [300.03, 491.76], [299.53, 491.3], [295.66, 495.4], [296.28, 495.98], [292.96, 499.5], [292.34, 498.93], [290.51, 500.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.47, "pop": 235, "jobs": 0}}, {"shape": {"outer": [[319.15, 484.22], [314.45, 480.12], [325.71, 467.29], [328.0, 469.29], [328.46, 468.77], [332.28, 472.1], [332.02, 472.41], [332.59, 472.9], [324.58, 482.03], [324.01, 481.54], [322.02, 483.79], [320.61, 482.57], [319.15, 484.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[337.81, 525.06], [328.24, 516.28], [351.62, 490.94], [361.19, 499.72], [337.81, 525.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.358, "pop": 179, "jobs": 0}}, {"shape": {"outer": [[353.32, 554.82], [334.02, 537.44], [339.11, 531.82], [358.41, 549.2], [353.32, 554.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[359.18, 548.43], [349.79, 539.78], [354.37, 534.84], [356.74, 537.01], [357.61, 536.08], [361.87, 540.0], [361.03, 540.9], [363.8, 543.45], [359.18, 548.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[356.67, 530.49], [360.73, 525.94], [361.79, 526.88], [362.91, 525.62], [371.88, 533.57], [367.93, 538.01], [366.71, 536.93], [365.49, 538.3], [356.67, 530.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[375.41, 529.86], [373.36, 527.97], [371.72, 529.74], [367.81, 526.15], [377.48, 515.71], [383.43, 521.18], [375.41, 529.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[368.78, 524.57], [363.57, 519.86], [365.96, 517.25], [365.52, 516.85], [368.89, 513.14], [369.33, 513.54], [372.0, 510.61], [377.21, 515.32], [368.78, 524.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[362.64, 515.23], [357.04, 509.92], [364.73, 501.89], [370.32, 507.2], [362.64, 515.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[349.38, 592.96], [359.83, 581.35], [393.75, 611.61], [383.3, 623.23], [349.38, 592.96]], "holes": []}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1193}}, {"shape": {"outer": [[328.31, 644.2], [333.61, 638.36], [329.74, 634.88], [330.0, 634.59], [326.12, 631.1], [325.86, 631.37], [321.13, 627.11], [318.04, 630.53], [319.21, 631.57], [317.0, 634.0], [328.31, 644.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[346.72, 651.68], [345.81, 650.85], [344.32, 652.49], [340.33, 648.88], [341.24, 647.87], [339.8, 646.56], [349.57, 635.79], [351.06, 637.14], [353.87, 634.05], [358.74, 638.43], [346.72, 651.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[358.88, 652.52], [353.06, 647.12], [360.21, 639.45], [360.67, 639.87], [362.03, 638.4], [366.99, 642.99], [365.73, 644.35], [366.15, 644.74], [358.88, 652.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[333.51, 772.46], [333.12, 772.11], [331.21, 774.28], [327.66, 771.18], [329.38, 769.23], [326.66, 766.86], [327.4, 766.03], [327.05, 765.73], [334.84, 756.87], [341.84, 762.98], [333.51, 772.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[342.03, 779.18], [340.62, 777.95], [337.78, 781.15], [332.41, 776.43], [337.77, 770.38], [337.14, 769.82], [342.36, 763.91], [349.77, 770.43], [342.03, 779.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[349.0, 783.78], [343.58, 778.08], [351.72, 770.41], [357.13, 776.11], [349.0, 783.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[354.62, 795.65], [348.61, 790.31], [358.1, 779.71], [358.53, 780.08], [360.23, 778.18], [365.37, 782.75], [363.56, 784.78], [364.01, 785.16], [354.62, 795.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[363.67, 800.71], [357.52, 794.98], [368.95, 782.8], [375.1, 788.52], [363.67, 800.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[391.2, 811.69], [378.92, 800.21], [383.62, 795.52], [384.77, 796.52], [385.1, 796.01], [396.55, 805.96], [391.2, 811.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[380.18, 823.06], [372.48, 816.14], [379.41, 808.48], [387.12, 815.39], [380.18, 823.06]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[359.24, 815.63], [352.79, 809.26], [360.75, 801.27], [367.19, 807.65], [359.24, 815.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[373.0, 833.33], [363.29, 824.07], [366.09, 821.17], [368.25, 823.23], [372.74, 818.56], [379.01, 824.55], [375.19, 828.54], [376.46, 829.73], [373.0, 833.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[364.38, 843.29], [355.68, 835.68], [356.63, 834.6], [354.01, 832.29], [359.4, 826.17], [368.62, 834.25], [365.85, 837.39], [367.95, 839.23], [364.38, 843.29]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[345.51, 857.15], [345.03, 856.71], [344.31, 857.51], [342.36, 855.77], [343.24, 854.78], [342.89, 854.47], [343.47, 853.83], [338.27, 849.16], [346.87, 839.65], [353.83, 845.9], [351.88, 848.06], [352.42, 848.54], [347.47, 854.02], [347.95, 854.45], [345.51, 857.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[333.55, 846.85], [321.55, 836.33], [331.13, 825.49], [343.13, 835.99], [333.55, 846.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[319.83, 833.18], [316.86, 830.47], [315.86, 831.57], [313.79, 829.68], [315.16, 828.18], [314.19, 827.3], [321.91, 818.89], [321.56, 818.58], [324.21, 815.69], [329.55, 820.55], [327.15, 823.15], [328.17, 824.09], [319.83, 833.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[312.45, 827.15], [307.04, 822.22], [317.09, 811.25], [322.5, 816.16], [312.45, 827.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[302.81, 819.91], [302.48, 819.6], [300.99, 821.21], [296.39, 817.01], [297.64, 815.66], [297.11, 815.16], [307.5, 803.86], [312.53, 808.45], [309.55, 811.69], [309.98, 812.1], [302.81, 819.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[295.68, 815.29], [290.41, 810.48], [296.16, 804.23], [295.82, 803.9], [299.44, 799.98], [304.48, 804.58], [298.73, 810.83], [299.3, 811.35], [295.68, 815.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[288.29, 810.51], [281.33, 804.15], [292.32, 792.22], [296.84, 796.36], [300.14, 792.79], [302.61, 795.05], [299.3, 798.65], [299.77, 799.08], [290.67, 808.96], [290.15, 808.49], [288.29, 810.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[280.08, 800.4], [273.71, 794.51], [283.32, 784.2], [283.97, 784.79], [285.7, 782.93], [291.43, 788.23], [280.08, 800.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[271.61, 790.42], [267.53, 786.73], [266.31, 788.08], [259.35, 781.83], [267.42, 772.92], [274.49, 779.29], [276.43, 777.16], [279.64, 780.04], [275.7, 784.4], [276.45, 785.08], [271.61, 790.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[257.57, 779.29], [249.86, 772.28], [258.84, 762.48], [260.46, 763.96], [259.79, 764.69], [260.66, 765.48], [259.32, 766.94], [261.41, 768.84], [259.97, 770.41], [263.1, 773.26], [257.57, 779.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[296.92, 780.12], [291.51, 775.26], [294.18, 772.31], [297.97, 768.14], [298.63, 767.41], [304.02, 772.26], [296.92, 780.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[281.8, 930.4], [270.33, 919.73], [270.81, 919.22], [267.98, 916.57], [274.67, 909.45], [277.24, 911.85], [279.3, 909.65], [291.02, 920.56], [281.8, 930.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.2, "pop": 100, "jobs": 0}}, {"shape": {"outer": [[291.9, 916.78], [283.22, 908.94], [284.39, 907.65], [282.13, 905.6], [286.9, 900.35], [289.17, 902.4], [291.12, 900.27], [299.79, 908.11], [291.9, 916.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[271.61, 937.82], [263.89, 930.83], [265.29, 929.3], [262.04, 926.34], [262.27, 926.09], [261.41, 925.31], [264.59, 921.82], [265.52, 922.66], [267.64, 920.33], [278.55, 930.22], [271.61, 937.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[259.01, 955.12], [248.75, 945.84], [256.26, 937.6], [255.1, 936.54], [257.99, 933.37], [262.46, 937.41], [263.03, 936.79], [266.06, 939.53], [265.49, 940.15], [269.42, 943.7], [259.01, 955.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[300.27, 907.35], [306.05, 901.11], [299.99, 895.55], [294.21, 901.79], [300.27, 907.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[271.27, 902.06], [266.03, 897.24], [269.72, 893.25], [274.96, 898.08], [271.27, 902.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[294.84, 882.26], [286.74, 874.82], [297.28, 863.44], [297.79, 863.91], [299.54, 862.02], [307.12, 868.99], [294.84, 882.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[329.81, 941.01], [343.1, 926.02], [331.59, 915.9], [318.31, 930.89], [318.9, 931.42], [318.35, 932.05], [327.94, 940.48], [328.49, 939.86], [329.81, 941.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.254, "pop": 127, "jobs": 0}}, {"shape": {"outer": [[316.43, 985.0], [304.86, 974.54], [312.45, 966.19], [314.92, 968.42], [313.47, 970.02], [322.58, 978.23], [316.43, 985.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[356.36, 966.16], [349.2, 959.78], [352.91, 955.65], [351.35, 954.26], [372.45, 930.76], [374.09, 932.23], [377.38, 928.57], [384.56, 934.97], [380.53, 939.46], [381.82, 940.62], [360.95, 963.86], [359.54, 962.61], [356.36, 966.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.422, "pop": 211, "jobs": 0}}, {"shape": {"outer": [[345.43, 953.05], [341.39, 949.23], [339.13, 951.61], [335.93, 948.58], [337.51, 946.91], [334.5, 944.07], [339.97, 938.33], [340.75, 939.06], [346.41, 933.12], [346.75, 933.43], [348.94, 931.14], [354.68, 936.56], [352.42, 938.94], [356.22, 942.53], [347.95, 951.21], [347.55, 950.83], [345.43, 953.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[323.89, 949.76], [317.12, 943.46], [322.8, 937.39], [329.58, 943.69], [323.89, 949.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[290.92, 981.6], [283.47, 975.15], [291.96, 965.43], [299.4, 971.87], [290.92, 981.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[303.4, 1008.86], [298.61, 1004.56], [298.08, 1005.16], [289.93, 997.86], [293.02, 994.44], [292.21, 993.72], [296.26, 989.24], [297.07, 989.96], [298.46, 988.42], [303.01, 992.5], [302.62, 992.94], [306.12, 996.08], [303.18, 999.33], [308.06, 1003.71], [303.4, 1008.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[321.36, 1042.45], [337.71, 1024.56], [329.34, 1016.97], [319.52, 1027.73], [322.58, 1030.5], [317.86, 1035.67], [319.62, 1037.27], [317.81, 1039.24], [321.36, 1042.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[336.91, 1046.85], [335.92, 1045.97], [335.63, 1046.31], [331.24, 1042.4], [333.2, 1040.21], [330.27, 1037.61], [337.41, 1029.65], [346.04, 1037.33], [338.73, 1045.48], [338.4, 1045.19], [336.91, 1046.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[353.35, 1065.85], [345.48, 1058.63], [356.22, 1046.97], [358.68, 1049.22], [359.74, 1048.07], [362.08, 1050.21], [361.03, 1051.36], [364.1, 1054.19], [353.35, 1065.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[363.82, 1080.22], [355.2, 1072.41], [365.66, 1060.94], [366.73, 1061.91], [368.31, 1060.17], [371.22, 1062.81], [369.64, 1064.55], [373.38, 1067.92], [374.29, 1066.91], [377.15, 1069.5], [368.47, 1079.03], [366.52, 1077.26], [363.82, 1080.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[379.83, 1095.32], [368.2, 1084.99], [378.8, 1073.13], [381.61, 1075.62], [381.91, 1075.29], [382.73, 1076.02], [384.24, 1074.33], [388.25, 1077.9], [386.75, 1079.58], [387.87, 1080.59], [387.57, 1080.92], [390.44, 1083.46], [379.83, 1095.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[389.44, 1113.51], [383.07, 1107.4], [384.94, 1105.46], [382.28, 1102.9], [394.53, 1090.2], [404.41, 1099.67], [392.27, 1112.25], [391.44, 1111.45], [389.44, 1113.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[404.38, 1151.1], [395.72, 1143.1], [405.91, 1132.15], [406.09, 1132.32], [407.85, 1130.42], [416.04, 1137.98], [414.38, 1139.77], [414.67, 1140.03], [404.38, 1151.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[429.11, 1138.1], [418.71, 1128.45], [418.91, 1128.22], [417.16, 1126.61], [424.8, 1118.44], [436.5, 1129.3], [431.82, 1134.32], [432.26, 1134.73], [429.11, 1138.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[368.15, 1031.8], [362.41, 1026.49], [363.87, 1024.92], [363.32, 1024.42], [371.33, 1015.82], [372.33, 1016.73], [373.25, 1015.74], [377.88, 1020.01], [376.85, 1021.12], [377.91, 1022.09], [369.96, 1030.63], [369.58, 1030.27], [368.15, 1031.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[389.31, 1053.75], [379.37, 1044.51], [382.02, 1041.69], [381.18, 1040.9], [386.74, 1034.96], [397.53, 1044.98], [389.31, 1053.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[384.41, 1013.43], [373.14, 1003.09], [379.1, 996.66], [391.27, 1007.84], [390.42, 1008.76], [393.98, 1012.04], [390.77, 1015.51], [386.29, 1011.39], [384.41, 1013.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[386.52, 682.33], [381.51, 677.77], [391.05, 667.37], [396.06, 671.93], [386.52, 682.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[394.12, 692.09], [387.75, 686.09], [391.61, 682.03], [391.16, 681.6], [395.06, 677.49], [395.51, 677.91], [398.73, 674.52], [405.1, 680.52], [394.12, 692.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[409.83, 704.15], [408.34, 702.79], [405.54, 705.82], [402.66, 703.17], [405.46, 700.14], [403.79, 698.62], [410.64, 691.2], [411.01, 691.56], [413.78, 688.55], [419.44, 693.74], [409.83, 704.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[402.82, 695.33], [408.93, 688.91], [408.24, 688.26], [411.05, 685.31], [405.81, 680.34], [396.87, 689.71], [399.08, 691.81], [394.86, 696.23], [398.42, 699.59], [402.64, 695.17], [402.82, 695.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[385.85, 760.51], [378.83, 753.99], [389.14, 742.97], [396.17, 749.5], [385.85, 760.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[393.65, 767.18], [387.43, 761.25], [398.33, 749.91], [399.83, 751.34], [401.26, 749.85], [405.56, 753.94], [404.12, 755.44], [404.55, 755.85], [393.65, 767.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[410.24, 763.54], [404.14, 757.7], [401.13, 760.81], [400.84, 760.53], [397.14, 764.36], [397.44, 764.64], [393.5, 768.73], [396.07, 771.2], [396.75, 770.5], [400.26, 773.88], [410.24, 763.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[432.25, 764.37], [423.82, 756.68], [429.16, 750.86], [437.59, 758.55], [437.39, 758.76], [438.88, 760.12], [436.05, 763.2], [434.56, 761.85], [432.25, 764.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[426.27, 731.56], [411.12, 717.96], [418.99, 709.27], [434.13, 722.87], [426.27, 731.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[450.37, 813.27], [448.53, 811.55], [449.56, 810.46], [448.75, 809.71], [448.8, 809.07], [445.91, 806.4], [446.3, 805.97], [441.9, 801.91], [441.37, 802.26], [438.54, 799.78], [438.12, 800.04], [437.01, 799.01], [435.24, 800.88], [435.93, 801.54], [432.84, 804.82], [436.25, 808.01], [435.92, 808.35], [440.1, 812.26], [440.78, 811.54], [443.94, 814.49], [444.36, 814.04], [447.17, 816.67], [450.37, 813.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[451.01, 807.37], [447.39, 804.07], [446.82, 804.7], [442.34, 800.62], [442.82, 800.1], [439.47, 797.05], [445.31, 791.15], [456.61, 801.25], [451.01, 807.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[462.83, 794.81], [452.5, 785.69], [446.84, 792.06], [451.55, 796.22], [452.38, 796.3], [457.5, 800.82], [462.83, 794.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[463.26, 792.08], [455.54, 785.16], [455.82, 784.84], [453.55, 782.8], [457.95, 777.94], [467.94, 786.9], [463.26, 792.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[476.95, 776.24], [468.26, 768.56], [472.93, 763.32], [481.61, 771.0], [476.95, 776.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[487.89, 766.2], [484.87, 763.41], [485.8, 762.4], [481.83, 758.74], [480.83, 759.82], [477.31, 756.56], [474.6, 759.47], [475.03, 759.87], [473.17, 761.87], [480.17, 768.32], [480.48, 768.0], [483.57, 770.86], [487.89, 766.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[426.24, 747.57], [431.19, 742.1], [442.75, 752.46], [437.8, 757.95], [426.24, 747.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[406.28, 783.77], [407.21, 782.3], [418.98, 769.61], [419.37, 769.97], [421.34, 767.76], [424.91, 770.94], [422.89, 773.19], [426.2, 776.14], [414.62, 789.05], [411.38, 786.18], [410.31, 787.36], [406.28, 783.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[445.7, 751.47], [435.65, 742.95], [439.77, 738.11], [442.56, 740.48], [442.99, 739.98], [446.71, 743.14], [446.29, 743.63], [449.83, 746.63], [445.7, 751.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[453.75, 743.17], [452.88, 742.36], [452.59, 742.67], [449.85, 740.11], [449.54, 740.45], [444.03, 735.29], [445.47, 733.76], [442.42, 730.91], [450.9, 721.9], [460.61, 730.98], [455.9, 735.97], [458.36, 738.27], [453.75, 743.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[451.38, 824.32], [478.28, 794.86], [489.13, 804.7], [480.09, 814.6], [478.3, 812.99], [460.45, 832.54], [451.38, 824.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.416, "pop": 208, "jobs": 0}}, {"shape": {"outer": [[470.12, 841.1], [480.52, 829.92], [486.24, 835.19], [475.95, 846.61], [470.12, 841.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2922.42, -183.04], [-2932.88, -184.67], [-2932.55, -186.75], [-2938.3, -187.64], [-2935.7, -204.2], [-2929.56, -203.24], [-2930.16, -199.42], [-2927.5, -199.01], [-2927.26, -200.56], [-2919.85, -199.41], [-2922.42, -183.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.216, "pop": 108, "jobs": 0}}, {"shape": {"outer": [[-2891.07, -287.29], [-2893.17, -274.38], [-2876.1, -271.62], [-2874.91, -278.95], [-2872.41, -278.55], [-2874.51, -265.65], [-2862.8, -263.75], [-2861.12, -274.05], [-2859.62, -273.8], [-2858.28, -281.98], [-2891.07, -287.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.38, "pop": 190, "jobs": 0}}, {"shape": {"outer": [[-2982.79, -235.78], [-2994.28, -237.39], [-2991.68, -255.84], [-2980.18, -254.24], [-2982.79, -235.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-2942.87, -148.33], [-2950.54, -149.51], [-2948.87, -160.29], [-2941.2, -159.11], [-2942.87, -148.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2895.83, -136.91], [-2887.62, -135.7], [-2885.36, -150.93], [-2893.58, -152.14], [-2895.83, -136.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2959.85, -179.64], [-2970.56, -181.32], [-2966.64, -206.05], [-2955.93, -204.36], [-2959.85, -179.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.218, "pop": 109, "jobs": 0}}, {"shape": {"outer": [[-2931.62, -142.45], [-2940.12, -143.67], [-2938.02, -158.17], [-2929.53, -156.95], [-2931.62, -142.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2909.36, -140.95], [-2917.93, -142.25], [-2915.76, -156.33], [-2907.19, -155.02], [-2909.36, -140.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2898.79, -137.73], [-2907.01, -138.96], [-2904.8, -153.58], [-2896.58, -152.35], [-2898.79, -137.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2911.98, -198.38], [-2913.38, -189.81], [-2908.88, -189.09], [-2909.31, -186.52], [-2905.38, -185.89], [-2903.56, -197.02], [-2911.98, -198.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2920.79, -142.82], [-2928.64, -144.31], [-2926.35, -156.25], [-2923.73, -155.76], [-2923.46, -157.18], [-2921.05, -156.71], [-2921.33, -155.29], [-2918.5, -154.75], [-2920.79, -142.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-321.22, -229.66], [-294.08, -259.74], [-278.61, -245.88], [-305.74, -215.79], [-321.22, -229.66]], "holes": []}, "height": 35.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2357}}, {"shape": {"outer": [[-2277.92, -1309.75], [-2275.03, -1294.24], [-2268.89, -1295.19], [-2269.47, -1298.11], [-2264.01, -1299.13], [-2264.34, -1300.49], [-2263.18, -1300.72], [-2264.35, -1307.41], [-2266.0, -1307.17], [-2267.02, -1311.92], [-2277.92, -1309.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2292.21, -1300.08], [-2292.19, -1292.38], [-2304.51, -1292.32], [-2304.47, -1300.9], [-2295.47, -1301.16], [-2295.44, -1299.98], [-2292.21, -1300.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2287.97, -1305.66], [-2287.84, -1301.28], [-2289.41, -1301.14], [-2289.29, -1293.73], [-2277.75, -1293.87], [-2278.2, -1306.04], [-2287.97, -1305.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2258.92, -1312.64], [-2251.2, -1312.76], [-2251.39, -1315.97], [-2249.83, -1316.01], [-2249.98, -1324.79], [-2247.74, -1324.95], [-2247.97, -1333.13], [-2261.55, -1332.64], [-2260.48, -1315.91], [-2259.11, -1315.84], [-2258.92, -1312.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[-2272.69, -1392.17], [-2272.41, -1389.8], [-2273.87, -1389.71], [-2273.26, -1378.37], [-2269.54, -1378.48], [-2269.49, -1376.63], [-2265.29, -1376.65], [-2265.3, -1378.78], [-2264.65, -1378.8], [-2265.03, -1389.97], [-2266.46, -1389.98], [-2266.64, -1392.47], [-2272.69, -1392.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2344.27, -1298.74], [-2334.29, -1298.73], [-2334.34, -1290.25], [-2344.11, -1290.07], [-2344.27, -1298.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2262.19, -1377.99], [-2261.9, -1363.68], [-2254.31, -1364.01], [-2254.37, -1365.91], [-2252.58, -1365.84], [-2252.97, -1375.17], [-2253.03, -1377.31], [-2250.71, -1379.51], [-2252.96, -1383.22], [-2256.7, -1380.99], [-2256.62, -1378.27], [-2262.19, -1377.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2246.02, -1377.45], [-2245.71, -1366.39], [-2233.18, -1366.75], [-2233.5, -1377.8], [-2246.02, -1377.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2437.58, -1326.01], [-2427.8, -1325.9], [-2427.32, -1309.34], [-2437.29, -1309.05], [-2437.58, -1326.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2409.01, -1325.85], [-2408.43, -1319.24], [-2404.91, -1319.34], [-2404.14, -1305.92], [-2393.79, -1306.79], [-2394.43, -1315.16], [-2391.3, -1315.45], [-2391.84, -1320.5], [-2388.32, -1320.6], [-2388.49, -1326.64], [-2409.01, -1325.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[-2478.56, -1376.68], [-2478.35, -1362.65], [-2466.23, -1362.81], [-2466.76, -1377.25], [-2470.43, -1377.27], [-2470.42, -1379.45], [-2478.64, -1379.6], [-2478.56, -1376.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2357.68, -1299.53], [-2357.66, -1292.13], [-2366.46, -1291.87], [-2366.56, -1295.37], [-2369.49, -1295.29], [-2369.45, -1294.17], [-2375.76, -1294.23], [-2375.97, -1305.94], [-2364.45, -1305.91], [-2364.4, -1304.26], [-2361.91, -1304.33], [-2361.77, -1299.6], [-2357.68, -1299.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-2411.19, -1328.43], [-2411.1, -1315.39], [-2421.54, -1315.01], [-2421.83, -1322.26], [-2423.63, -1322.27], [-2423.61, -1326.66], [-2421.95, -1326.71], [-2421.99, -1327.93], [-2411.19, -1328.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2414.72, -1298.26], [-2409.6, -1298.26], [-2409.38, -1290.93], [-2414.43, -1290.78], [-2414.72, -1298.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2427.92, -1300.89], [-2421.65, -1301.07], [-2421.65, -1290.87], [-2427.34, -1290.78], [-2427.92, -1300.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2291.06, -1392.2], [-2287.62, -1392.3], [-2287.8, -1394.41], [-2283.06, -1394.67], [-2283.58, -1404.72], [-2294.62, -1404.75], [-2293.97, -1394.0], [-2291.23, -1393.96], [-2291.06, -1392.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2248.42, -1409.04], [-2248.19, -1404.79], [-2240.59, -1405.01], [-2240.84, -1409.26], [-2248.42, -1409.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2408.97, -1378.63], [-2407.99, -1377.46], [-2407.94, -1367.53], [-2390.26, -1368.04], [-2390.44, -1378.57], [-2397.21, -1378.49], [-2397.94, -1379.41], [-2399.38, -1379.85], [-2401.04, -1379.57], [-2404.82, -1382.89], [-2408.97, -1378.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-2420.7, -1381.98], [-2420.87, -1375.69], [-2419.68, -1375.62], [-2419.65, -1366.03], [-2433.29, -1365.63], [-2433.65, -1373.91], [-2431.52, -1374.09], [-2431.56, -1375.63], [-2427.41, -1375.75], [-2427.58, -1381.89], [-2420.7, -1381.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2344.55, -1406.23], [-2334.22, -1406.41], [-2334.11, -1398.25], [-2344.19, -1397.96], [-2344.55, -1406.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2349.66, -1410.34], [-2349.39, -1396.62], [-2361.37, -1396.17], [-2361.77, -1410.12], [-2349.66, -1410.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2378.26, -1391.4], [-2378.37, -1399.45], [-2364.24, -1399.73], [-2364.24, -1391.57], [-2378.26, -1391.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2304.73, -1283.81], [-2304.65, -1272.57], [-2289.34, -1273.13], [-2289.85, -1282.46], [-2292.82, -1282.49], [-2292.87, -1284.03], [-2304.73, -1283.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2489.67, -1375.9], [-2493.95, -1379.58], [-2488.51, -1385.77], [-2484.14, -1381.81], [-2489.67, -1375.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2227.85, -1332.84], [-2218.75, -1333.1], [-2218.36, -1319.56], [-2227.46, -1319.3], [-2227.85, -1332.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2244.58, -1332.93], [-2233.53, -1333.26], [-2233.07, -1317.19], [-2244.11, -1316.88], [-2244.58, -1332.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2212.14, -1334.36], [-2211.73, -1320.04], [-2202.25, -1320.31], [-2202.66, -1334.63], [-2212.14, -1334.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2192.48, -1317.57], [-2193.34, -1333.73], [-2183.96, -1334.0], [-2182.91, -1317.85], [-2192.48, -1317.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2182.64, -1305.53], [-2182.04, -1294.84], [-2196.67, -1294.28], [-2197.11, -1304.82], [-2182.64, -1305.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2184.73, -1315.38], [-2184.28, -1307.28], [-2190.11, -1307.11], [-2190.56, -1315.15], [-2184.73, -1315.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2434.01, -1402.29], [-2433.6, -1387.87], [-2421.62, -1388.57], [-2422.17, -1399.56], [-2427.39, -1399.29], [-2427.37, -1402.6], [-2434.01, -1402.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2420.42, -1412.86], [-2420.9, -1429.66], [-2433.02, -1429.78], [-2432.29, -1412.52], [-2420.42, -1412.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-2404.57, -1444.1], [-2404.64, -1446.57], [-2398.12, -1446.88], [-2398.02, -1435.17], [-2404.42, -1434.86], [-2404.46, -1436.16], [-2408.86, -1436.39], [-2407.31, -1444.48], [-2404.57, -1444.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2393.9, -1445.78], [-2393.71, -1437.31], [-2391.83, -1437.36], [-2391.72, -1432.58], [-2384.5, -1432.76], [-2384.81, -1446.0], [-2393.9, -1445.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2396.25, -1431.55], [-2396.22, -1426.23], [-2389.92, -1426.17], [-2390.07, -1431.61], [-2396.25, -1431.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2344.9, -1448.67], [-2344.93, -1437.42], [-2340.89, -1437.41], [-2340.75, -1432.45], [-2335.53, -1432.49], [-2335.51, -1448.58], [-2344.9, -1448.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2350.86, -1445.57], [-2350.41, -1433.28], [-2361.15, -1432.89], [-2361.6, -1445.18], [-2350.86, -1445.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2367.35, -1445.82], [-2367.19, -1442.2], [-2363.68, -1442.35], [-2363.28, -1433.3], [-2374.34, -1432.82], [-2374.89, -1445.49], [-2367.35, -1445.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2199.85, -1437.04], [-2192.25, -1437.26], [-2192.36, -1432.76], [-2199.83, -1432.31], [-2199.85, -1437.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2211.17, -1438.37], [-2210.82, -1430.1], [-2217.11, -1430.03], [-2217.34, -1438.32], [-2211.17, -1438.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2216.58, -1453.01], [-2204.71, -1453.35], [-2204.47, -1440.81], [-2215.87, -1440.48], [-2216.58, -1453.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2199.89, -1438.58], [-2200.36, -1454.78], [-2188.38, -1455.25], [-2188.02, -1438.81], [-2199.89, -1438.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2219.42, -1452.57], [-2218.63, -1437.8], [-2228.72, -1437.51], [-2228.8, -1452.31], [-2219.42, -1452.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2205.27, -1425.66], [-2190.67, -1426.04], [-2190.44, -1417.24], [-2201.82, -1416.94], [-2201.89, -1419.17], [-2205.1, -1419.09], [-2205.27, -1425.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2201.5, -1407.15], [-2193.67, -1407.18], [-2193.66, -1404.71], [-2190.92, -1404.71], [-2190.88, -1392.57], [-2204.36, -1392.52], [-2204.37, -1399.08], [-2201.47, -1399.09], [-2201.5, -1407.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2203.89, -1375.15], [-2191.08, -1375.63], [-2190.88, -1372.91], [-2188.38, -1372.75], [-2188.31, -1366.13], [-2203.5, -1365.93], [-2203.89, -1375.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2215.3, -1375.41], [-2214.98, -1364.36], [-2207.09, -1364.58], [-2207.41, -1375.64], [-2215.3, -1375.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2228.46, -1380.64], [-2228.15, -1366.03], [-2216.87, -1366.27], [-2217.18, -1380.88], [-2228.46, -1380.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2222.2, -1404.92], [-2222.28, -1399.24], [-2216.46, -1399.29], [-2216.74, -1404.84], [-2222.2, -1404.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2189.21, -1377.2], [-2189.44, -1385.04], [-2191.25, -1384.97], [-2191.28, -1385.66], [-2201.89, -1385.33], [-2201.61, -1376.18], [-2191.18, -1376.51], [-2191.19, -1377.14], [-2189.21, -1377.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2303.99, -1258.74], [-2303.45, -1244.96], [-2294.45, -1245.28], [-2295.21, -1259.13], [-2303.99, -1258.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2288.48, -1255.0], [-2288.24, -1245.85], [-2276.32, -1246.15], [-2276.55, -1255.3], [-2288.48, -1255.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2276.59, -1258.59], [-2276.95, -1266.27], [-2272.2, -1266.55], [-2272.05, -1258.72], [-2276.59, -1258.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2273.19, -1256.33], [-2273.0, -1246.01], [-2264.31, -1246.18], [-2264.33, -1247.85], [-2261.75, -1247.9], [-2261.89, -1254.94], [-2263.98, -1254.91], [-2264.01, -1256.5], [-2273.19, -1256.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2256.1, -1251.73], [-2256.45, -1261.79], [-2245.75, -1262.18], [-2245.33, -1249.95], [-2252.96, -1249.69], [-2253.04, -1251.84], [-2256.1, -1251.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2237.73, -1286.36], [-2237.02, -1279.27], [-2243.49, -1278.79], [-2243.98, -1285.61], [-2237.73, -1286.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2252.6, -1277.1], [-2252.31, -1269.49], [-2260.22, -1268.91], [-2260.67, -1276.8], [-2252.6, -1277.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2238.31, -1265.03], [-2238.18, -1258.79], [-2236.94, -1258.82], [-2236.81, -1252.11], [-2229.37, -1252.27], [-2229.6, -1263.84], [-2233.73, -1263.76], [-2233.76, -1265.11], [-2238.31, -1265.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2226.22, -1270.25], [-2225.79, -1257.05], [-2216.53, -1257.35], [-2216.97, -1270.56], [-2226.22, -1270.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2211.26, -1268.94], [-2211.17, -1265.83], [-2212.19, -1265.79], [-2211.83, -1253.79], [-2200.3, -1254.15], [-2200.64, -1265.23], [-2203.4, -1265.14], [-2203.53, -1269.17], [-2211.26, -1268.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2184.42, -1288.39], [-2184.35, -1280.64], [-2194.06, -1280.15], [-2194.51, -1288.04], [-2184.42, -1288.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2193.18, -1267.09], [-2183.17, -1267.31], [-2183.09, -1259.77], [-2192.96, -1259.48], [-2193.18, -1267.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-623.54, -89.84], [-622.91, -77.16], [-613.92, -86.96], [-613.18, -87.12], [-612.42, -87.92], [-612.2, -88.85], [-612.31, -89.43], [-612.61, -90.04], [-612.93, -90.35], [-613.37, -90.63], [-614.31, -90.79], [-615.23, -90.49], [-615.68, -90.22], [-623.54, -89.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-478.13, -97.22], [-477.56, -78.77], [-484.57, -78.58], [-485.76, -96.92], [-478.13, -97.22]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-478.13, -97.22], [-477.56, -78.77], [-477.5, -77.25], [-476.54, -76.3], [-477.8, -73.88], [-467.48, -65.18], [-463.63, -65.43], [-463.84, -68.07], [-464.94, -97.76], [-478.13, -97.22]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.408, "pop": 204, "jobs": 0}}, {"shape": {"outer": [[-464.94, -97.76], [-452.1, -98.28], [-450.88, -68.43], [-463.84, -68.07], [-464.94, -97.76]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.538, "pop": 269, "jobs": 0}}, {"shape": {"outer": [[-541.31, -94.12], [-540.24, -79.68], [-542.43, -77.13], [-548.37, -82.32], [-548.16, -84.44], [-556.6, -92.0], [-555.97, -93.35], [-543.58, -94.0], [-541.31, -94.12]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.086, "pop": 0, "jobs": 86}}, {"shape": {"outer": [[-513.81, -71.13], [-519.93, -76.71], [-521.1, -95.18], [-506.76, -95.93], [-505.49, -74.19], [-508.51, -74.05], [-508.19, -66.45], [-508.64, -66.42], [-513.81, -71.13]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.474, "pop": 237, "jobs": 0}}, {"shape": {"outer": [[-506.76, -95.93], [-505.49, -74.19], [-497.73, -74.54], [-494.77, -74.66], [-495.7, -96.51], [-506.76, -95.93]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.2, "pop": 0, "jobs": 200}}, {"shape": {"outer": [[-1307.42, -100.85], [-1313.15, -100.67], [-1313.2, -103.94], [-1314.05, -103.9], [-1314.43, -112.17], [-1313.58, -112.19], [-1313.68, -115.42], [-1290.92, -116.36], [-1290.74, -112.98], [-1289.58, -111.51], [-1289.37, -106.1], [-1290.21, -104.76], [-1289.2, -82.25], [-1289.15, -81.29], [-1301.13, -80.9], [-1301.89, -95.88], [-1307.19, -95.65], [-1307.42, -100.85]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.4, "pop": 0, "jobs": 400}}, {"shape": {"outer": [[-1260.81, -77.73], [-1262.78, -112.35], [-1263.07, -117.52], [-1269.0, -117.21], [-1268.95, -116.36], [-1274.86, -116.04], [-1274.89, -116.69], [-1280.21, -116.39], [-1280.15, -115.34], [-1288.57, -114.85], [-1288.12, -107.23], [-1287.21, -107.28], [-1286.34, -93.1], [-1287.76, -93.02], [-1287.1, -82.33], [-1286.91, -79.25], [-1279.66, -79.66], [-1279.2, -76.78], [-1275.27, -77.01], [-1275.3, -77.52], [-1265.03, -78.09], [-1265.0, -77.57], [-1260.81, -77.73]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.62, "pop": 0, "jobs": 620}}, {"shape": {"outer": [[-1637.26, -260.69], [-1638.42, -280.58], [-1658.86, -279.39], [-1659.94, -298.05], [-1648.84, -298.69], [-1648.97, -300.96], [-1620.15, -302.63], [-1617.78, -261.82], [-1637.26, -260.69]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 1683, "jobs": 0}}, {"shape": {"outer": [[-2580.73, -895.48], [-2580.68, -888.9], [-2580.6, -878.17], [-2589.14, -880.37], [-2589.67, -895.47], [-2585.95, -895.47], [-2580.73, -895.48]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.09, "pop": 0, "jobs": 90}}, {"shape": {"outer": [[-2938.25, -820.86], [-2935.78, -820.92], [-2935.75, -819.53], [-2927.66, -819.73], [-2927.69, -821.11], [-2925.59, -821.16], [-2925.86, -832.12], [-2919.68, -832.26], [-2919.76, -835.58], [-2916.73, -835.66], [-2917.06, -849.45], [-2937.43, -848.95], [-2937.4, -847.71], [-2940.2, -847.64], [-2940.13, -844.68], [-2942.99, -844.6], [-2942.78, -835.77], [-2938.61, -835.87], [-2938.25, -820.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.354, "pop": 0, "jobs": 354}}, {"shape": {"outer": [[-2300.76, -1081.86], [-2297.49, -1079.07], [-2298.33, -1078.09], [-2295.86, -1075.99], [-2295.02, -1076.97], [-2284.22, -1067.77], [-2285.1, -1066.75], [-2282.6, -1064.62], [-2281.72, -1065.65], [-2280.17, -1064.33], [-2278.19, -1066.94], [-2277.07, -1066.08], [-2274.97, -1068.83], [-2276.09, -1069.69], [-2274.15, -1072.24], [-2290.18, -1086.05], [-2278.77, -1086.31], [-2278.64, -1080.38], [-2276.49, -1077.92], [-2270.41, -1078.14], [-2270.73, -1092.68], [-2279.69, -1092.48], [-2279.72, -1093.89], [-2283.34, -1093.81], [-2283.32, -1092.4], [-2295.28, -1092.12], [-2295.31, -1093.38], [-2298.74, -1093.3], [-2298.71, -1092.04], [-2300.99, -1091.99], [-2300.76, -1081.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.43, "pop": 215, "jobs": 0}}, {"shape": {"outer": [[-2911.28, -1052.79], [-2908.37, -1063.48], [-2896.33, -1060.22], [-2899.24, -1049.53], [-2911.28, -1052.79]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2938.89, -1049.76], [-2934.69, -1054.58], [-2929.84, -1050.39], [-2934.03, -1045.56], [-2938.89, -1049.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2589.14, -880.37], [-2580.6, -878.17], [-2571.96, -875.61], [-2571.65, -863.48], [-2592.17, -869.99], [-2589.14, -880.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[-2930.45, -1060.13], [-2921.03, -1052.82], [-2914.43, -1061.25], [-2916.05, -1062.5], [-2914.56, -1064.4], [-2918.81, -1067.69], [-2920.29, -1065.79], [-2923.85, -1068.55], [-2930.45, -1060.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2556.66, -919.89], [-2552.51, -916.4], [-2550.74, -918.49], [-2548.52, -916.62], [-2537.4, -929.75], [-2541.72, -933.39], [-2543.31, -931.51], [-2545.34, -933.23], [-2556.66, -919.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2181.71, -1094.64], [-2202.7, -1093.89], [-2202.65, -1092.2], [-2214.22, -1091.79], [-2214.28, -1093.56], [-2231.04, -1092.97], [-2230.6, -1080.49], [-2225.23, -1080.67], [-2224.8, -1068.53], [-2205.15, -1069.22], [-2204.9, -1062.18], [-2200.62, -1062.34], [-2200.59, -1061.44], [-2180.55, -1062.14], [-2179.8, -1066.07], [-2179.22, -1070.01], [-2178.82, -1074.24], [-2178.77, -1078.37], [-2179.07, -1082.6], [-2179.72, -1086.65], [-2180.63, -1090.69], [-2181.71, -1094.64]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.875, "pop": 0, "jobs": 875}}, {"shape": {"outer": [[-3009.63, -1122.71], [-3016.14, -1128.48], [-3012.58, -1132.48], [-3014.48, -1134.17], [-3010.99, -1138.09], [-3009.09, -1136.4], [-3006.96, -1138.78], [-3002.7, -1135.01], [-3003.16, -1134.49], [-3000.91, -1132.5], [-3009.63, -1122.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-3133.13, -906.1], [-3133.48, -915.56], [-3122.01, -915.98], [-3121.66, -906.52], [-3133.13, -906.1]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2822.63, -970.63], [-2817.03, -970.68], [-2817.08, -976.5], [-2812.57, -976.54], [-2812.66, -985.72], [-2822.79, -985.62], [-2822.63, -970.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2910.14, -980.39], [-2900.43, -979.07], [-2899.08, -988.83], [-2899.55, -988.89], [-2899.27, -990.88], [-2907.27, -991.97], [-2907.54, -989.99], [-2908.8, -990.16], [-2910.14, -980.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-3076.08, -1131.43], [-3070.44, -1138.35], [-3068.21, -1136.54], [-3067.42, -1137.49], [-3057.92, -1129.8], [-3063.62, -1122.8], [-3065.94, -1124.68], [-3066.65, -1123.8], [-3076.08, -1131.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2926.6, -1120.07], [-2925.08, -1118.86], [-2926.59, -1116.98], [-2923.04, -1114.15], [-2921.53, -1116.03], [-2920.13, -1114.91], [-2912.54, -1124.38], [-2919.01, -1129.53], [-2926.6, -1120.07]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2913.94, -991.28], [-2914.67, -982.58], [-2923.63, -983.33], [-2922.89, -992.03], [-2913.94, -991.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2940.8, -994.38], [-2940.33, -994.33], [-2940.27, -994.88], [-2939.16, -995.93], [-2931.66, -995.12], [-2933.1, -981.89], [-2933.25, -980.51], [-2934.18, -980.62], [-2942.21, -981.48], [-2940.8, -994.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2959.7, -984.53], [-2952.97, -983.77], [-2953.08, -982.76], [-2950.21, -982.44], [-2949.63, -987.63], [-2948.65, -996.39], [-2958.25, -997.45], [-2959.7, -984.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2933.1, -981.89], [-2927.47, -981.4], [-2927.94, -976.06], [-2934.52, -976.63], [-2934.18, -980.62], [-2933.25, -980.51], [-2933.1, -981.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2919.05, -978.26], [-2919.7, -972.41], [-2913.55, -971.74], [-2912.9, -977.59], [-2919.05, -978.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2912.88, -976.82], [-2905.82, -976.11], [-2906.44, -970.08], [-2913.5, -970.8], [-2912.88, -976.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2892.31, -990.03], [-2885.04, -988.91], [-2885.38, -986.65], [-2884.85, -986.56], [-2886.4, -976.51], [-2894.81, -977.81], [-2893.25, -987.85], [-2892.66, -987.77], [-2892.31, -990.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2875.64, -986.44], [-2865.8, -986.63], [-2865.54, -973.02], [-2870.39, -972.93], [-2870.3, -968.15], [-2875.77, -968.05], [-2875.85, -972.44], [-2878.39, -972.39], [-2878.5, -977.7], [-2875.47, -977.76], [-2875.64, -986.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2862.07, -986.88], [-2853.71, -987.19], [-2853.09, -970.19], [-2861.45, -969.9], [-2862.07, -986.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2850.33, -977.9], [-2850.53, -986.09], [-2840.8, -986.33], [-2840.47, -972.8], [-2847.24, -972.63], [-2847.37, -977.96], [-2850.33, -977.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2834.74, -985.01], [-2829.61, -985.18], [-2829.6, -984.79], [-2827.3, -984.86], [-2827.1, -979.35], [-2826.63, -979.36], [-2826.44, -973.65], [-2827.08, -973.63], [-2826.94, -969.76], [-2833.12, -969.55], [-2833.26, -973.88], [-2834.36, -973.83], [-2834.74, -985.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2900.72, -1151.96], [-2893.53, -1146.07], [-2895.69, -1142.96], [-2894.67, -1142.09], [-2897.79, -1137.78], [-2906.45, -1144.89], [-2900.72, -1151.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2912.73, -1137.89], [-2909.86, -1141.12], [-2905.34, -1137.57], [-2907.94, -1134.08], [-2912.73, -1137.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2931.6, -1138.69], [-2921.63, -1130.38], [-2928.66, -1122.0], [-2935.01, -1127.27], [-2933.2, -1129.43], [-2936.83, -1132.45], [-2931.6, -1138.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3012.39, -1210.79], [-3004.17, -1203.5], [-3012.79, -1193.79], [-3020.55, -1200.8], [-3012.39, -1210.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-3004.65, -1188.11], [-2996.49, -1197.35], [-2994.34, -1195.45], [-2993.88, -1195.97], [-2989.57, -1192.2], [-2998.19, -1182.44], [-3004.65, -1188.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2984.75, -1196.5], [-2981.73, -1200.71], [-2977.68, -1197.6], [-2980.87, -1193.2], [-2984.75, -1196.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2985.4, -1190.24], [-2977.06, -1183.47], [-2985.83, -1172.74], [-2986.62, -1173.38], [-2988.26, -1171.37], [-2995.48, -1177.21], [-2993.67, -1179.42], [-2994.02, -1179.7], [-2985.4, -1190.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-2978.12, -1167.62], [-2972.98, -1173.68], [-2961.27, -1163.82], [-2966.41, -1157.76], [-2978.12, -1167.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2680.5, -1532.79], [-2672.8, -1540.55], [-2663.27, -1531.85], [-2670.43, -1523.93], [-2680.5, -1532.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2665.81, -1523.09], [-2661.03, -1528.78], [-2657.25, -1525.83], [-2656.64, -1526.66], [-2648.89, -1519.89], [-2653.94, -1513.91], [-2657.72, -1517.22], [-2658.86, -1516.02], [-2663.48, -1520.18], [-2662.96, -1520.83], [-2665.81, -1523.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2652.68, -1510.9], [-2646.41, -1518.08], [-2644.11, -1516.35], [-2642.18, -1518.37], [-2638.32, -1515.53], [-2639.87, -1513.24], [-2637.48, -1511.52], [-2640.1, -1508.58], [-2636.88, -1506.16], [-2640.96, -1500.93], [-2652.68, -1510.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2639.77, -1498.87], [-2634.25, -1506.21], [-2622.0, -1497.05], [-2628.82, -1487.99], [-2633.67, -1491.61], [-2632.37, -1493.34], [-2639.77, -1498.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2624.99, -1485.8], [-2619.4, -1492.37], [-2618.2, -1491.37], [-2615.34, -1494.73], [-2609.37, -1489.69], [-2608.74, -1490.43], [-2605.67, -1487.83], [-2614.74, -1477.15], [-2624.99, -1485.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-2611.76, -1474.92], [-2603.68, -1484.0], [-2596.0, -1477.21], [-2592.2, -1481.48], [-2587.25, -1477.11], [-2599.12, -1463.76], [-2611.76, -1474.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.194, "pop": 97, "jobs": 0}}, {"shape": {"outer": [[-2593.97, -1459.48], [-2591.58, -1462.25], [-2592.57, -1463.08], [-2583.82, -1473.25], [-2574.8, -1465.55], [-2585.92, -1452.62], [-2593.97, -1459.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-2581.4, -1450.22], [-2574.05, -1458.47], [-2570.42, -1455.25], [-2568.54, -1457.36], [-2561.4, -1451.07], [-2570.62, -1440.71], [-2581.4, -1450.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-2518.37, -1416.55], [-2508.34, -1428.51], [-2503.77, -1424.65], [-2505.78, -1422.22], [-2498.19, -1415.94], [-2505.49, -1406.87], [-2518.37, -1416.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[-2524.4, -1415.04], [-2510.78, -1405.24], [-2516.76, -1396.64], [-2518.58, -1398.07], [-2519.44, -1397.01], [-2530.83, -1406.43], [-2524.4, -1415.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-2565.72, -1435.86], [-2556.44, -1447.61], [-2547.98, -1440.96], [-2557.26, -1429.22], [-2565.72, -1435.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2554.1, -1424.58], [-2538.57, -1442.73], [-2533.28, -1438.24], [-2539.32, -1431.17], [-2534.66, -1427.23], [-2544.15, -1416.13], [-2554.1, -1424.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-2259.25, -1427.38], [-2251.93, -1427.41], [-2252.87, -1447.75], [-2262.59, -1447.64], [-2261.67, -1431.08], [-2259.68, -1431.04], [-2259.25, -1427.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-2260.25, -843.12], [-2248.31, -843.7], [-2249.02, -858.52], [-2256.57, -858.03], [-2265.23, -865.45], [-2274.99, -853.82], [-2268.73, -848.41], [-2264.87, -847.19], [-2260.25, -843.12]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.231, "pop": 0, "jobs": 231}}, {"shape": {"outer": [[-2388.36, -905.35], [-2382.51, -912.14], [-2379.63, -909.68], [-2378.51, -910.98], [-2376.35, -909.14], [-2377.47, -907.83], [-2376.44, -906.95], [-2382.89, -899.46], [-2385.49, -901.7], [-2384.89, -902.39], [-2388.36, -905.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2334.78, -859.03], [-2332.3, -856.92], [-2333.74, -855.22], [-2328.28, -850.6], [-2319.64, -860.71], [-2322.74, -863.33], [-2322.02, -864.18], [-2322.93, -864.94], [-2322.67, -865.26], [-2326.61, -868.6], [-2334.78, -859.03]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2686.84, -928.41], [-2682.14, -935.31], [-2674.26, -929.98], [-2673.36, -931.29], [-2669.01, -928.35], [-2674.61, -920.13], [-2678.29, -922.62], [-2678.79, -921.89], [-2683.39, -925.0], [-2682.88, -925.74], [-2686.84, -928.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2424.81, -872.58], [-2413.53, -885.53], [-2409.57, -882.11], [-2410.98, -880.5], [-2396.38, -867.88], [-2393.25, -871.49], [-2388.2, -867.12], [-2400.28, -853.22], [-2419.52, -869.85], [-2420.44, -868.79], [-2424.81, -872.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.382, "pop": 191, "jobs": 0}}, {"shape": {"outer": [[-2333.52, -985.02], [-2335.86, -987.05], [-2334.67, -988.41], [-2338.74, -991.94], [-2329.6, -1002.38], [-2328.64, -1001.54], [-2326.92, -1003.5], [-2322.79, -999.92], [-2324.51, -997.96], [-2322.96, -996.6], [-2332.18, -986.07], [-2332.41, -986.27], [-2333.52, -985.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2353.86, -876.21], [-2354.53, -876.76], [-2355.86, -875.12], [-2361.22, -879.44], [-2359.89, -881.08], [-2360.45, -881.53], [-2354.23, -889.18], [-2352.5, -887.77], [-2351.91, -888.49], [-2350.5, -887.34], [-2347.99, -890.43], [-2344.56, -887.65], [-2353.86, -876.21]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2377.36, -839.2], [-2384.7, -845.29], [-2380.26, -850.6], [-2381.24, -851.41], [-2379.02, -854.07], [-2378.04, -853.25], [-2375.78, -855.96], [-2370.38, -851.49], [-2372.15, -849.39], [-2370.19, -847.76], [-2373.16, -844.22], [-2372.6, -843.75], [-2374.16, -841.88], [-2374.72, -842.35], [-2377.36, -839.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2297.4, -982.14], [-2292.6, -987.61], [-2286.51, -982.3], [-2291.31, -976.84], [-2297.4, -982.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2213.07, -907.03], [-2217.28, -910.56], [-2212.97, -915.66], [-2208.77, -912.15], [-2213.07, -907.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2371.24, -918.19], [-2376.21, -922.33], [-2371.73, -927.67], [-2366.76, -923.52], [-2371.24, -918.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2331.42, -882.63], [-2334.85, -885.57], [-2329.48, -891.79], [-2326.06, -888.86], [-2331.42, -882.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2370.6, -890.18], [-2363.8, -884.41], [-2355.1, -894.6], [-2361.9, -900.36], [-2370.6, -890.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2737.01, -989.3], [-2737.24, -998.49], [-2722.18, -998.86], [-2721.96, -989.68], [-2737.01, -989.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2353.41, -904.66], [-2349.55, -909.23], [-2344.48, -904.98], [-2348.33, -900.41], [-2353.41, -904.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2221.52, -886.96], [-2214.57, -881.05], [-2204.67, -892.6], [-2211.62, -898.51], [-2221.52, -886.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2655.18, -888.58], [-2653.25, -894.95], [-2624.47, -886.29], [-2626.39, -879.93], [-2655.18, -888.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-2340.73, -915.28], [-2337.46, -912.54], [-2333.66, -917.05], [-2336.93, -919.79], [-2340.73, -915.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2182.1, -895.94], [-2187.7, -889.22], [-2177.6, -880.85], [-2172.0, -887.58], [-2182.1, -895.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2381.54, -925.89], [-2385.8, -929.66], [-2380.92, -935.14], [-2376.66, -931.36], [-2381.54, -925.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2322.46, -1006.73], [-2318.14, -1011.29], [-2313.16, -1006.62], [-2317.49, -1002.05], [-2322.46, -1006.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2456.37, -887.75], [-2462.1, -892.64], [-2456.04, -899.71], [-2450.3, -894.83], [-2456.37, -887.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2270.69, -960.33], [-2265.91, -965.47], [-2260.21, -960.22], [-2264.99, -955.07], [-2270.69, -960.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2327.37, -880.28], [-2323.19, -885.2], [-2317.84, -880.69], [-2322.02, -875.77], [-2327.37, -880.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2374.73, -893.39], [-2380.88, -898.62], [-2372.04, -908.96], [-2365.89, -903.74], [-2374.73, -893.39]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2344.63, -895.05], [-2348.61, -898.29], [-2344.46, -903.33], [-2340.49, -900.09], [-2344.63, -895.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2769.0, -987.12], [-2762.31, -987.16], [-2762.34, -994.12], [-2769.04, -994.08], [-2769.0, -987.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2336.98, -912.01], [-2332.68, -917.01], [-2326.71, -911.91], [-2331.01, -906.92], [-2336.98, -912.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2625.27, -879.7], [-2623.27, -886.44], [-2597.14, -878.73], [-2599.14, -872.01], [-2625.27, -879.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2565.16, -976.19], [-2560.33, -981.51], [-2555.26, -976.95], [-2560.08, -971.62], [-2565.16, -976.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2321.48, -874.02], [-2316.9, -879.61], [-2310.34, -874.26], [-2314.92, -868.67], [-2321.48, -874.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2424.6, -877.38], [-2430.68, -882.55], [-2424.52, -889.76], [-2423.95, -889.28], [-2420.04, -893.86], [-2414.53, -889.17], [-2424.6, -877.38]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2147.3, -887.44], [-2147.48, -895.92], [-2134.94, -896.18], [-2134.94, -895.74], [-2132.7, -895.78], [-2132.53, -887.75], [-2147.3, -887.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2477.38, -891.24], [-2481.38, -886.03], [-2478.64, -883.95], [-2479.9, -882.31], [-2475.44, -878.9], [-2470.19, -885.74], [-2477.38, -891.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2231.84, -909.67], [-2236.78, -903.68], [-2233.3, -900.84], [-2234.39, -899.51], [-2231.34, -897.01], [-2225.31, -904.33], [-2231.84, -909.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2251.83, -912.61], [-2257.8, -917.76], [-2249.6, -927.18], [-2246.85, -924.79], [-2245.99, -925.77], [-2242.79, -923.01], [-2251.83, -912.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2315.31, -968.59], [-2318.26, -971.19], [-2316.39, -973.3], [-2320.57, -976.97], [-2311.56, -987.15], [-2307.79, -983.84], [-2308.97, -982.5], [-2305.62, -979.55], [-2315.31, -968.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2309.76, -924.65], [-2314.91, -918.62], [-2308.75, -913.38], [-2308.2, -914.02], [-2306.48, -912.56], [-2302.12, -917.65], [-2303.78, -919.06], [-2303.52, -919.36], [-2309.76, -924.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2393.59, -855.88], [-2387.43, -863.08], [-2386.6, -862.37], [-2384.98, -864.25], [-2378.89, -859.08], [-2380.5, -857.19], [-2379.9, -856.69], [-2386.05, -849.49], [-2393.59, -855.88]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2620.28, -975.12], [-2613.5, -969.46], [-2603.65, -981.17], [-2605.27, -982.51], [-2604.11, -983.89], [-2607.72, -986.91], [-2608.88, -985.53], [-2610.44, -986.83], [-2620.28, -975.12]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2501.82, -932.96], [-2503.96, -930.45], [-2504.3, -930.73], [-2507.92, -926.48], [-2507.0, -925.71], [-2507.37, -925.29], [-2499.86, -918.94], [-2499.4, -919.47], [-2497.76, -918.07], [-2492.55, -924.18], [-2494.09, -925.48], [-2493.62, -926.03], [-2501.82, -932.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2144.77, -884.17], [-2144.45, -874.79], [-2135.51, -875.09], [-2135.69, -880.49], [-2133.57, -880.56], [-2133.69, -884.0], [-2135.81, -883.94], [-2135.82, -884.48], [-2144.77, -884.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2456.89, -982.57], [-2449.79, -976.47], [-2441.62, -985.91], [-2444.44, -988.34], [-2443.0, -990.01], [-2446.88, -993.33], [-2448.34, -991.63], [-2448.75, -991.97], [-2456.89, -982.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2779.79, -972.92], [-2769.06, -973.13], [-2769.14, -977.39], [-2765.01, -977.48], [-2765.14, -984.29], [-2769.25, -984.21], [-2769.25, -984.53], [-2780.01, -984.33], [-2779.79, -972.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2398.11, -913.23], [-2392.69, -919.65], [-2390.07, -917.46], [-2388.83, -918.92], [-2386.34, -916.84], [-2387.58, -915.37], [-2385.69, -913.8], [-2391.11, -907.36], [-2398.11, -913.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2184.03, -915.29], [-2183.73, -903.81], [-2181.94, -903.86], [-2181.88, -901.41], [-2175.96, -901.56], [-2176.02, -904.01], [-2174.74, -904.04], [-2175.04, -915.52], [-2184.03, -915.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2332.1, -922.07], [-2336.52, -925.89], [-2332.62, -930.39], [-2334.57, -932.08], [-2327.6, -940.11], [-2324.58, -937.5], [-2323.22, -939.08], [-2319.84, -936.16], [-2332.1, -922.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-3026.72, -282.6], [-3025.79, -288.74], [-3023.2, -288.35], [-3022.74, -291.34], [-3011.55, -289.66], [-3011.61, -289.29], [-3009.84, -289.03], [-3011.11, -280.68], [-3012.92, -280.95], [-3012.98, -280.53], [-3026.72, -282.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-3059.34, -199.8], [-3065.9, -200.83], [-3064.93, -206.97], [-3065.49, -207.05], [-3064.87, -210.94], [-3066.75, -211.24], [-3064.69, -224.2], [-3059.36, -223.37], [-3059.84, -220.35], [-3055.13, -219.6], [-3055.63, -216.45], [-3056.65, -216.61], [-3059.34, -199.8]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-3088.9, -504.6], [-3089.86, -492.69], [-3072.68, -491.31], [-3072.78, -490.12], [-3066.32, -489.59], [-3065.8, -495.88], [-3064.04, -495.74], [-3063.97, -496.57], [-3061.49, -496.37], [-3061.01, -502.36], [-3070.54, -503.13], [-3070.31, -506.02], [-3081.86, -506.94], [-3082.09, -504.05], [-3088.9, -504.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.282, "pop": 141, "jobs": 0}}, {"shape": {"outer": [[-3027.8, -245.64], [-3018.65, -244.23], [-3016.03, -261.04], [-3025.19, -262.46], [-3027.8, -245.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-3003.94, -168.14], [-3002.32, -178.53], [-2983.58, -175.65], [-2985.2, -165.24], [-3003.94, -168.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-3055.71, -487.86], [-3054.93, -496.46], [-3044.02, -495.47], [-3044.81, -486.88], [-3055.71, -487.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2989.55, -196.95], [-2979.12, -195.3], [-2976.91, -209.14], [-2987.34, -210.8], [-2989.55, -196.95]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-3071.47, -148.89], [-3056.36, -146.26], [-3053.35, -163.43], [-3068.46, -166.07], [-3071.47, -148.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[-2825.03, -245.47], [-2819.58, -244.69], [-2818.67, -251.1], [-2824.12, -251.87], [-2825.03, -245.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-3045.19, -147.1], [-3043.44, -158.21], [-3029.35, -155.99], [-3031.11, -144.89], [-3045.19, -147.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2761.91, -260.48], [-2762.34, -270.45], [-2748.31, -271.05], [-2747.88, -261.1], [-2761.91, -260.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-3099.7, -212.06], [-3101.08, -201.64], [-3086.43, -199.69], [-3085.04, -210.12], [-3099.7, -212.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-3082.34, -256.03], [-3079.01, -276.33], [-3064.21, -273.91], [-3067.54, -253.62], [-3082.34, -256.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.246, "pop": 123, "jobs": 0}}, {"shape": {"outer": [[-3090.83, -173.13], [-3092.03, -165.13], [-3102.88, -166.74], [-3101.69, -174.74], [-3090.83, -173.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-3095.94, -149.0], [-3094.51, -157.22], [-3109.89, -159.89], [-3111.32, -151.66], [-3095.94, -149.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2993.76, -185.37], [-3002.72, -186.78], [-2998.58, -212.76], [-2989.63, -211.35], [-2993.76, -185.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-3089.43, -179.39], [-3088.04, -188.7], [-3102.84, -190.87], [-3104.22, -181.56], [-3089.43, -179.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2828.53, -249.76], [-2841.06, -251.83], [-2837.06, -275.75], [-2824.54, -273.68], [-2828.53, -249.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.246, "pop": 123, "jobs": 0}}, {"shape": {"outer": [[-3098.59, -218.71], [-3096.86, -229.96], [-3082.31, -227.75], [-3084.04, -216.5], [-3098.59, -218.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-3042.41, -170.32], [-3043.12, -166.02], [-3041.5, -165.74], [-3042.17, -161.71], [-3027.8, -159.34], [-3026.41, -167.68], [-3042.41, -170.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3021.82, -175.37], [-3036.46, -177.68], [-3035.34, -184.68], [-3030.9, -183.99], [-3025.46, -218.19], [-3015.26, -216.58], [-3021.82, -175.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.37, "pop": 185, "jobs": 0}}, {"shape": {"outer": [[-3062.74, -254.24], [-3051.78, -252.35], [-3050.85, -257.74], [-3052.09, -257.96], [-3050.67, -266.15], [-3060.38, -267.82], [-3062.74, -254.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2617.42, -409.95], [-2617.83, -421.63], [-2602.21, -422.18], [-2602.11, -419.31], [-2599.95, -419.39], [-2599.75, -413.28], [-2601.89, -413.21], [-2601.8, -410.5], [-2617.42, -409.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2867.41, -224.78], [-2869.29, -225.07], [-2869.66, -222.63], [-2875.54, -223.54], [-2875.16, -225.97], [-2876.88, -226.23], [-2874.45, -242.01], [-2864.98, -240.56], [-2867.41, -224.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-3151.0, -266.02], [-3149.38, -276.48], [-3150.93, -276.71], [-3149.34, -287.04], [-3127.29, -283.65], [-3129.53, -269.15], [-3127.83, -268.89], [-3128.8, -262.61], [-3151.0, -266.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.37, "pop": 185, "jobs": 0}}, {"shape": {"outer": [[-3119.3, -175.82], [-3140.25, -179.64], [-3131.03, -229.77], [-3126.12, -228.87], [-3125.8, -230.59], [-3114.41, -228.5], [-3114.73, -226.79], [-3110.08, -225.94], [-3119.3, -175.82]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 774, "jobs": 0}}, {"shape": {"outer": [[-2943.82, -271.45], [-2935.1, -270.1], [-2932.09, -289.46], [-2932.8, -289.56], [-2932.51, -291.34], [-2934.63, -291.67], [-2934.44, -292.86], [-2940.33, -293.78], [-2943.82, -271.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-3054.25, -206.01], [-3044.3, -204.43], [-3042.15, -217.89], [-3044.21, -218.2], [-3043.75, -221.05], [-3049.84, -222.02], [-3050.3, -219.17], [-3052.11, -219.46], [-3054.25, -206.01]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-3058.23, -298.56], [-3050.29, -297.21], [-3048.74, -306.26], [-3050.05, -306.48], [-3049.47, -309.88], [-3053.29, -310.53], [-3053.18, -311.18], [-3055.99, -311.65], [-3058.23, -298.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2931.53, -279.63], [-2929.9, -290.27], [-2927.19, -289.86], [-2926.91, -291.7], [-2921.34, -290.85], [-2921.62, -289.01], [-2918.9, -288.6], [-2920.53, -277.96], [-2931.53, -279.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3031.36, -202.11], [-3041.42, -203.76], [-3039.18, -217.26], [-3036.97, -216.9], [-3036.48, -219.86], [-3030.89, -218.94], [-3031.37, -215.99], [-3029.12, -215.62], [-3031.36, -202.11]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-3005.76, -154.84], [-3004.51, -163.76], [-2989.02, -161.6], [-2989.25, -159.96], [-2987.39, -159.7], [-2987.99, -155.46], [-2989.85, -155.72], [-2990.28, -152.68], [-3005.76, -154.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2977.48, -1680.65], [-2983.33, -1685.39], [-2972.53, -1698.6], [-2968.58, -1695.38], [-2967.04, -1697.25], [-2969.25, -1699.04], [-2968.63, -1700.97], [-2967.66, -1702.13], [-2965.86, -1703.18], [-2955.97, -1695.14], [-2958.76, -1691.72], [-2957.09, -1690.37], [-2959.37, -1687.58], [-2957.38, -1685.97], [-2961.65, -1680.76], [-2971.1, -1688.45], [-2977.48, -1680.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.252, "pop": 126, "jobs": 0}}, {"shape": {"outer": [[-3102.26, -1651.87], [-3110.81, -1658.9], [-3094.42, -1678.7], [-3090.02, -1675.08], [-3088.32, -1677.14], [-3084.89, -1674.33], [-3080.64, -1679.46], [-3092.15, -1688.93], [-3085.89, -1696.49], [-3069.53, -1683.05], [-3084.11, -1665.45], [-3082.9, -1664.46], [-3087.11, -1659.37], [-3092.43, -1663.74], [-3095.73, -1659.76], [-3093.77, -1658.16], [-3096.36, -1655.04], [-3098.31, -1656.64], [-3102.26, -1651.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.51, "pop": 255, "jobs": 0}}, {"shape": {"outer": [[-3118.65, -1674.36], [-3127.36, -1681.57], [-3116.85, -1694.17], [-3108.14, -1686.96], [-3118.65, -1674.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-3116.22, -1699.74], [-3109.37, -1707.62], [-3098.31, -1698.08], [-3105.16, -1690.19], [-3116.22, -1699.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2887.39, -2899.2], [-2881.95, -2913.35], [-2876.21, -2911.16], [-2878.45, -2905.35], [-2868.59, -2901.59], [-2870.83, -2895.76], [-2876.41, -2897.89], [-2878.95, -2891.28], [-2884.84, -2893.53], [-2883.26, -2897.63], [-2887.39, -2899.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-3060.21, -2981.04], [-3063.68, -2982.9], [-3064.32, -2981.73], [-3070.33, -2984.97], [-3067.15, -2990.83], [-3069.5, -2992.09], [-3066.41, -2997.76], [-3057.27, -2992.85], [-3060.34, -2987.19], [-3057.66, -2985.74], [-3060.21, -2981.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2902.33, -3021.25], [-2894.62, -3014.71], [-2889.06, -3021.2], [-2889.9, -3021.91], [-2885.32, -3027.27], [-2886.45, -3028.23], [-2879.43, -3036.42], [-2886.34, -3042.29], [-2891.57, -3036.18], [-2890.4, -3035.19], [-2902.33, -3021.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.194, "pop": 97, "jobs": 0}}, {"shape": {"outer": [[-3032.41, -2988.77], [-3032.42, -2993.61], [-3029.31, -2993.76], [-3029.59, -2999.51], [-3023.12, -2999.84], [-3022.93, -2996.14], [-3010.0, -2996.79], [-3009.49, -2986.54], [-3016.46, -2986.2], [-3020.44, -2983.17], [-3032.41, -2988.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-3215.79, -2998.31], [-3208.19, -3005.75], [-3198.55, -2995.98], [-3196.4, -2998.1], [-3190.91, -2992.55], [-3194.97, -2988.56], [-3191.91, -2985.47], [-3197.61, -2979.88], [-3201.93, -2984.27], [-3203.11, -2983.11], [-3212.08, -2992.2], [-3210.9, -2993.36], [-3215.79, -2998.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.246, "pop": 123, "jobs": 0}}, {"shape": {"outer": [[-2929.56, -2928.37], [-2922.41, -2921.15], [-2917.69, -2925.8], [-2910.54, -2918.59], [-2904.77, -2924.26], [-2910.16, -2929.7], [-2906.75, -2933.05], [-2910.58, -2936.92], [-2913.99, -2933.57], [-2916.03, -2935.62], [-2921.29, -2930.44], [-2924.33, -2933.51], [-2929.56, -2928.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-2993.26, -2921.13], [-3000.11, -2924.56], [-3006.72, -2927.4], [-3009.56, -2933.25], [-3003.92, -2937.69], [-3001.02, -2937.45], [-3000.12, -2939.53], [-2996.37, -2940.36], [-2994.0, -2938.72], [-2983.11, -2948.14], [-2975.17, -2939.71], [-2987.8, -2928.17], [-2988.18, -2926.89], [-2993.26, -2921.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.346, "pop": 173, "jobs": 0}}, {"shape": {"outer": [[-3103.6, -2932.55], [-3089.63, -2928.22], [-3084.09, -2946.01], [-3098.06, -2950.33], [-3103.6, -2932.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.218, "pop": 109, "jobs": 0}}, {"shape": {"outer": [[-2877.65, -3050.42], [-2868.32, -3043.55], [-2855.96, -3060.2], [-2865.29, -3067.07], [-2877.65, -3050.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-2880.66, -2977.83], [-2887.98, -2970.15], [-2874.51, -2957.4], [-2867.19, -2965.07], [-2880.66, -2977.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-3149.01, -2955.0], [-3153.51, -2945.55], [-3141.62, -2939.93], [-3137.11, -2949.37], [-3149.01, -2955.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-3195.75, -2965.85], [-3186.46, -2980.09], [-3171.71, -2970.53], [-3181.0, -2956.3], [-3195.75, -2965.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.24, "pop": 120, "jobs": 0}}, {"shape": {"outer": [[-3116.89, -3015.32], [-3108.79, -3009.81], [-3099.01, -3024.09], [-3107.11, -3029.6], [-3116.89, -3015.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2991.01, -2992.91], [-2989.51, -3003.85], [-2969.09, -3001.08], [-2970.95, -2987.41], [-2977.89, -2988.34], [-2977.51, -2991.09], [-2991.01, -2992.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[-2863.48, -2996.76], [-2852.98, -2989.18], [-2841.15, -3005.42], [-2849.96, -3011.78], [-2853.6, -3006.77], [-2855.3, -3007.99], [-2863.48, -2996.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[-2951.84, -3036.66], [-2944.62, -3045.99], [-2924.61, -3030.63], [-2935.33, -3016.77], [-2942.0, -3021.88], [-2938.49, -3026.41], [-2951.84, -3036.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[-3125.63, -2982.08], [-3132.71, -2986.27], [-3123.96, -3000.95], [-3117.76, -2997.27], [-3121.81, -2990.45], [-3120.95, -2989.94], [-3125.63, -2982.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2950.66, -2993.05], [-2959.3, -2984.52], [-2950.17, -2975.34], [-2948.15, -2977.32], [-2936.91, -2966.02], [-2928.78, -2974.04], [-2941.65, -2987.0], [-2943.16, -2985.51], [-2950.66, -2993.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[-312.11, -1959.93], [-300.64, -1960.53], [-300.69, -1962.44], [-290.88, -1962.72], [-290.64, -1944.81], [-307.54, -1944.2], [-307.92, -1953.11], [-311.9, -1952.93], [-312.11, -1959.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.256, "pop": 128, "jobs": 0}}, {"shape": {"outer": [[-301.84, -1981.6], [-291.14, -1982.12], [-290.69, -1966.24], [-301.07, -1965.83], [-301.84, -1981.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-303.49, -2001.37], [-293.12, -2001.78], [-292.56, -1985.79], [-302.84, -1985.38], [-303.49, -2001.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-326.71, -2002.53], [-314.89, -2003.18], [-314.51, -1995.34], [-326.25, -1994.59], [-326.71, -2002.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-308.65, -2013.08], [-299.8, -2013.57], [-299.25, -2005.4], [-307.84, -2004.75], [-308.65, -2013.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-306.63, -2016.96], [-301.85, -2017.1], [-301.59, -2013.92], [-296.21, -2014.17], [-296.32, -2015.36], [-293.93, -2015.58], [-294.1, -2018.11], [-290.68, -2018.3], [-291.18, -2023.8], [-306.92, -2023.1], [-306.63, -2016.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-172.65, -2021.1], [-164.1, -2021.52], [-163.43, -2008.06], [-171.98, -2007.64], [-172.65, -2021.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-150.97, -2112.3], [-145.82, -2112.54], [-145.71, -2105.47], [-150.85, -2105.32], [-150.97, -2112.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-177.75, -2103.55], [-177.98, -2111.81], [-163.53, -2112.2], [-163.29, -2102.97], [-176.2, -2102.62], [-176.23, -2103.59], [-177.75, -2103.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-153.35, -2099.56], [-146.35, -2099.92], [-146.06, -2092.62], [-153.14, -2092.34], [-153.35, -2099.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-143.1, -2096.0], [-136.49, -2096.03], [-136.18, -2087.92], [-142.62, -2087.74], [-143.1, -2096.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-141.35, -2114.03], [-132.5, -2114.28], [-132.19, -2100.81], [-141.05, -2100.71], [-141.35, -2114.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-125.81, -2114.39], [-117.44, -2114.55], [-117.25, -2102.19], [-125.63, -2102.19], [-125.81, -2114.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-177.92, -2093.73], [-162.63, -2094.4], [-162.39, -2086.06], [-177.61, -2085.7], [-177.92, -2093.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-175.29, -2081.79], [-164.12, -2082.18], [-164.01, -2079.24], [-161.25, -2079.33], [-161.11, -2075.23], [-163.99, -2075.13], [-163.89, -2072.22], [-173.48, -2071.89], [-173.57, -2074.6], [-175.04, -2074.55], [-175.29, -2081.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-159.75, -2068.53], [-151.65, -2068.81], [-151.47, -2063.69], [-159.57, -2063.42], [-159.75, -2068.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-159.79, -2069.78], [-160.0, -2074.31], [-152.87, -2074.51], [-152.9, -2069.98], [-159.79, -2069.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-173.47, -2064.51], [-162.29, -2064.81], [-162.05, -2055.81], [-175.75, -2055.44], [-175.92, -2062.03], [-173.41, -2062.09], [-173.47, -2064.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-173.15, -2050.36], [-165.17, -2050.74], [-165.05, -2048.3], [-161.53, -2048.47], [-161.2, -2041.63], [-173.93, -2041.01], [-174.27, -2047.91], [-173.04, -2047.98], [-173.15, -2050.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-172.77, -2035.26], [-163.13, -2035.61], [-162.88, -2026.71], [-172.59, -2026.36], [-172.77, -2035.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-161.64, -2038.54], [-155.54, -2038.87], [-155.45, -2035.75], [-161.4, -2035.58], [-161.64, -2038.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-154.02, -2046.34], [-147.41, -2046.48], [-147.26, -2039.58], [-153.87, -2039.43], [-154.02, -2046.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-125.18, -2099.96], [-118.13, -2100.01], [-118.09, -2092.14], [-125.13, -2092.09], [-125.18, -2099.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-475.33, -1948.18], [-473.76, -1936.63], [-459.55, -1938.55], [-460.13, -1942.81], [-459.29, -1942.92], [-461.24, -1957.3], [-472.07, -1955.83], [-471.11, -1948.76], [-475.33, -1948.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-471.82, -1959.84], [-461.89, -1960.94], [-463.0, -1970.83], [-472.93, -1969.72], [-471.82, -1959.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-485.85, -1970.62], [-478.28, -1971.56], [-477.68, -1966.81], [-485.27, -1965.87], [-485.85, -1970.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-439.03, -1970.18], [-432.43, -1970.85], [-431.16, -1958.74], [-435.86, -1958.25], [-436.09, -1960.5], [-438.45, -1960.26], [-438.71, -1962.73], [-439.72, -1962.62], [-440.06, -1965.89], [-438.6, -1966.04], [-439.03, -1970.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-428.99, -1969.92], [-425.06, -1970.18], [-424.69, -1964.7], [-419.25, -1965.07], [-418.56, -1954.91], [-422.23, -1954.66], [-422.07, -1952.14], [-426.2, -1951.87], [-427.02, -1963.95], [-428.58, -1963.85], [-428.99, -1969.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-403.96, -1961.59], [-397.61, -1961.9], [-397.32, -1955.49], [-403.66, -1955.2], [-403.96, -1961.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-394.88, -1956.02], [-384.85, -1956.38], [-384.6, -1947.47], [-394.39, -1947.27], [-394.88, -1956.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-395.64, -1969.22], [-385.31, -1969.65], [-385.14, -1960.82], [-389.31, -1960.73], [-389.36, -1961.39], [-395.21, -1961.14], [-395.64, -1969.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-404.36, -1959.35], [-404.15, -1955.69], [-406.19, -1955.57], [-406.15, -1954.93], [-406.85, -1954.89], [-406.68, -1951.85], [-413.98, -1951.44], [-414.83, -1966.47], [-406.7, -1966.93], [-406.27, -1959.24], [-404.36, -1959.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-415.18, -1967.42], [-406.83, -1968.04], [-407.83, -1981.54], [-414.9, -1981.02], [-414.62, -1977.19], [-415.9, -1977.1], [-415.18, -1967.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-360.76, -1972.55], [-352.82, -1972.91], [-351.92, -1953.44], [-361.88, -1952.98], [-362.58, -1968.41], [-360.58, -1968.5], [-360.76, -1972.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-332.98, -1970.35], [-326.66, -1970.74], [-327.2, -1979.49], [-332.68, -1979.15], [-332.48, -1975.9], [-333.32, -1975.85], [-332.98, -1970.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-333.11, -1969.61], [-327.05, -1969.89], [-326.47, -1957.33], [-332.53, -1957.05], [-333.11, -1969.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-361.13, -1983.87], [-349.73, -1984.33], [-349.42, -1976.56], [-360.83, -1976.1], [-361.13, -1983.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-390.47, -1974.2], [-385.04, -1974.5], [-385.69, -1986.4], [-394.36, -1985.93], [-393.77, -1975.19], [-390.53, -1975.37], [-390.47, -1974.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-394.81, -1994.36], [-384.49, -1994.81], [-384.18, -1987.64], [-394.5, -1987.19], [-394.81, -1994.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[416.87, 982.54], [409.64, 976.01], [420.68, 963.88], [427.91, 970.41], [416.87, 982.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[414.35, 987.46], [400.63, 975.14], [394.8, 981.58], [408.51, 993.91], [414.35, 987.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2269.62, 1779.14], [2283.74, 1764.79], [2278.63, 1759.8], [2264.52, 1774.16], [2269.62, 1779.14]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.092, "pop": 0, "jobs": 92}}, {"shape": {"outer": [[2277.05, 1758.56], [2270.9, 1752.64], [2257.47, 1766.52], [2263.62, 1772.44], [2277.05, 1758.56]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.106, "pop": 0, "jobs": 106}}, {"shape": {"outer": [[2251.11, 1761.92], [2256.72, 1767.31], [2257.47, 1766.52], [2270.9, 1752.64], [2265.3, 1747.26], [2251.11, 1761.92]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.101, "pop": 0, "jobs": 101}}, {"shape": {"outer": [[2240.68, 1751.4], [2249.3, 1759.71], [2263.5, 1745.11], [2254.86, 1736.78], [2240.68, 1751.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.156, "pop": 0, "jobs": 156}}, {"shape": {"outer": [[2338.85, 1776.38], [2320.65, 1746.64], [2322.35, 1745.28], [2363.5, 1756.91], [2361.69, 1762.03], [2338.85, 1776.38]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.401, "pop": 0, "jobs": 401}}, {"shape": {"outer": [[2131.64, 1643.18], [2123.15, 1651.74], [2125.73, 1654.29], [2128.61, 1651.4], [2131.26, 1654.01], [2130.66, 1654.63], [2136.77, 1660.67], [2137.47, 1659.96], [2142.13, 1664.56], [2141.45, 1665.26], [2144.57, 1668.34], [2139.04, 1673.91], [2139.85, 1674.72], [2141.92, 1672.64], [2144.5, 1675.18], [2142.44, 1677.26], [2143.24, 1678.05], [2141.15, 1680.15], [2136.69, 1684.65], [2132.46, 1680.48], [2131.96, 1680.98], [2129.03, 1678.1], [2128.38, 1678.76], [2125.69, 1676.11], [2126.15, 1675.64], [2121.66, 1671.21], [2121.18, 1671.68], [2118.36, 1668.89], [2118.78, 1668.47], [2115.78, 1665.52], [2121.52, 1659.72], [2118.38, 1656.63], [2114.96, 1660.07], [2111.1, 1656.27], [2111.55, 1655.82], [2104.67, 1649.05], [2104.17, 1649.55], [2100.29, 1645.72], [2104.18, 1641.8], [2104.48, 1642.11], [2111.5, 1635.04], [2110.57, 1634.13], [2117.61, 1627.04], [2118.56, 1627.97], [2125.27, 1621.2], [2124.23, 1620.19], [2128.93, 1615.45], [2133.54, 1620.0], [2132.86, 1620.69], [2139.52, 1627.26], [2140.06, 1626.71], [2144.07, 1630.66], [2141.44, 1633.3], [2143.5, 1635.32], [2145.13, 1633.67], [2150.53, 1639.0], [2150.92, 1638.61], [2152.9, 1640.56], [2152.51, 1640.94], [2157.58, 1645.95], [2158.15, 1645.39], [2160.79, 1647.99], [2153.64, 1655.18], [2151.51, 1653.08], [2151.86, 1652.72], [2150.75, 1651.62], [2144.85, 1657.56], [2142.24, 1654.99], [2142.93, 1654.3], [2135.41, 1646.88], [2134.36, 1647.93], [2131.7, 1645.32], [2132.75, 1644.26], [2131.64, 1643.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 691, "jobs": 0}}, {"shape": {"outer": [[2340.45, 1779.6], [2355.29, 1770.77], [2359.86, 1780.19], [2346.32, 1788.83], [2340.45, 1779.6]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.114, "pop": 0, "jobs": 114}}, {"shape": {"outer": [[2346.32, 1788.83], [2353.36, 1799.86], [2366.41, 1790.92], [2359.86, 1780.19], [2346.32, 1788.83]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.131, "pop": 0, "jobs": 131}}, {"shape": {"outer": [[-2394.79, -1765.66], [-2394.74, -1763.85], [-2394.65, -1760.71], [-2395.36, -1760.69], [-2395.13, -1752.41], [-2390.97, -1752.53], [-2390.83, -1747.47], [-2375.5, -1747.91], [-2375.54, -1749.34], [-2375.75, -1756.6], [-2370.52, -1756.75], [-2370.54, -1757.46], [-2370.8, -1766.35], [-2385.77, -1765.92], [-2390.07, -1765.8], [-2394.79, -1765.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.306, "pop": 153, "jobs": 0}}, {"shape": {"outer": [[-2104.67, -1850.51], [-2106.31, -1865.2], [-2076.47, -1868.52], [-2074.83, -1853.83], [-2085.81, -1852.61], [-2084.56, -1841.44], [-2093.59, -1840.44], [-2093.43, -1838.96], [-2100.55, -1838.17], [-2101.97, -1850.81], [-2104.67, -1850.51]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.408, "pop": 0, "jobs": 408}}, {"shape": {"outer": [[-2094.66, -1830.28], [-2096.71, -1818.7], [-2074.18, -1814.74], [-2072.13, -1826.33], [-2094.66, -1830.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.216, "pop": 108, "jobs": 0}}, {"shape": {"outer": [[-2257.61, -1838.39], [-2244.21, -1850.47], [-2232.3, -1837.35], [-2245.7, -1825.28], [-2257.61, -1838.39]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.205, "pop": 0, "jobs": 205}}, {"shape": {"outer": [[-2263.2, -1644.53], [-2276.2, -1633.31], [-2268.42, -1624.35], [-2263.29, -1628.77], [-2258.8, -1623.6], [-2263.93, -1619.19], [-2255.79, -1609.83], [-2242.8, -1621.04], [-2263.2, -1644.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.39, "pop": 195, "jobs": 0}}, {"shape": {"outer": [[-2383.23, -1813.93], [-2378.26, -1807.56], [-2379.11, -1798.8], [-2383.37, -1795.89], [-2379.34, -1790.44], [-2384.47, -1786.32], [-2388.54, -1790.93], [-2393.64, -1791.37], [-2395.21, -1793.86], [-2397.35, -1792.26], [-2401.53, -1797.19], [-2400.63, -1797.99], [-2400.66, -1800.76], [-2401.32, -1800.85], [-2400.51, -1807.73], [-2391.86, -1814.98], [-2383.23, -1813.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.366, "pop": 183, "jobs": 0}}, {"shape": {"outer": [[2303.02, 1719.83], [2293.29, 1703.57], [2307.76, 1694.65], [2309.21, 1696.79], [2303.02, 1719.83]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.118, "pop": 0, "jobs": 118}}, {"shape": {"outer": [[2293.29, 1703.57], [2288.99, 1696.71], [2299.13, 1690.76], [2306.16, 1686.63], [2308.01, 1685.53], [2309.13, 1687.68], [2311.63, 1689.12], [2310.89, 1692.81], [2310.32, 1692.69], [2309.21, 1696.79], [2307.76, 1694.65], [2293.29, 1703.57]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.114, "pop": 0, "jobs": 114}}, {"shape": {"outer": [[2288.99, 1696.71], [2284.92, 1690.29], [2294.82, 1683.98], [2299.13, 1690.76], [2288.99, 1696.71]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.059, "pop": 0, "jobs": 59}}, {"shape": {"outer": [[1555.91, 792.01], [1562.29, 797.78], [1582.97, 775.1], [1576.58, 769.33], [1570.22, 776.31], [1555.91, 792.01]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.169, "pop": 0, "jobs": 169}}, {"shape": {"outer": [[1549.84, 786.51], [1555.91, 792.01], [1570.22, 776.31], [1564.15, 770.81], [1549.84, 786.51]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.111, "pop": 0, "jobs": 111}}, {"shape": {"outer": [[1541.99, 777.44], [1542.06, 779.47], [1549.84, 786.51], [1564.15, 770.81], [1555.31, 762.81], [1541.99, 777.44]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.161, "pop": 0, "jobs": 161}}, {"shape": {"outer": [[1507.83, 607.64], [1513.03, 612.27], [1523.76, 600.33], [1518.57, 595.69], [1507.83, 607.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1553.33, 645.85], [1553.62, 646.1], [1552.5, 647.34], [1557.88, 652.14], [1558.99, 650.91], [1559.22, 651.1], [1567.69, 641.71], [1561.79, 636.45], [1553.33, 645.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1485.02, 586.93], [1495.54, 575.38], [1501.91, 581.14], [1491.39, 592.7], [1490.47, 591.87], [1489.12, 590.64], [1485.02, 586.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1538.55, 632.36], [1544.37, 637.36], [1553.7, 626.61], [1547.88, 621.59], [1544.83, 625.11], [1544.31, 624.67], [1541.01, 628.47], [1541.53, 628.92], [1538.55, 632.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1524.84, 620.15], [1525.55, 620.77], [1524.83, 621.61], [1526.56, 623.09], [1527.28, 622.26], [1529.9, 624.51], [1537.31, 615.98], [1532.25, 611.62], [1524.84, 620.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1620.55, 707.71], [1626.54, 712.98], [1636.63, 700.77], [1630.8, 695.58], [1620.55, 707.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1584.11, 673.35], [1584.27, 673.51], [1582.5, 675.34], [1586.4, 679.1], [1588.17, 677.26], [1588.29, 677.39], [1594.9, 670.58], [1593.72, 669.46], [1597.61, 665.45], [1598.11, 665.93], [1600.66, 663.31], [1595.92, 658.74], [1587.79, 667.11], [1589.02, 668.29], [1584.11, 673.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1458.18, 616.05], [1465.38, 607.92], [1472.12, 613.86], [1463.84, 623.19], [1462.77, 622.25], [1461.15, 624.08], [1457.33, 620.72], [1460.03, 617.68], [1458.18, 616.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1446.43, 612.83], [1457.33, 600.81], [1457.86, 601.28], [1458.85, 600.18], [1459.93, 601.15], [1460.9, 602.03], [1464.25, 605.04], [1463.26, 606.14], [1463.53, 606.38], [1452.62, 618.41], [1446.43, 612.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1369.61, 313.49], [1379.63, 322.18], [1385.63, 315.31], [1375.61, 306.62], [1369.61, 313.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1487.47, 541.28], [1489.06, 542.74], [1489.82, 541.92], [1499.45, 550.68], [1491.7, 559.15], [1480.46, 548.91], [1487.47, 541.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1569.66, 660.24], [1574.28, 664.54], [1577.02, 661.6], [1577.91, 662.42], [1581.02, 659.09], [1580.7, 658.79], [1581.92, 657.48], [1581.37, 656.96], [1582.56, 655.69], [1578.33, 651.78], [1576.01, 654.25], [1575.61, 653.89], [1569.66, 660.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1632.79, 714.4], [1641.78, 722.8], [1649.52, 714.32], [1640.23, 705.86], [1632.79, 714.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1299.31, 383.91], [1313.7, 396.44], [1319.32, 390.03], [1318.24, 389.1], [1318.54, 388.77], [1315.27, 385.91], [1315.77, 385.33], [1311.35, 381.49], [1310.85, 382.06], [1308.22, 379.77], [1307.93, 380.11], [1304.93, 377.5], [1299.31, 383.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1545.62, 638.77], [1545.96, 639.07], [1544.66, 640.53], [1549.68, 644.99], [1550.99, 643.54], [1551.23, 643.76], [1553.39, 641.35], [1553.9, 641.81], [1557.12, 638.21], [1556.61, 637.76], [1558.84, 635.28], [1553.22, 630.28], [1545.62, 638.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1485.89, 563.71], [1475.59, 554.53], [1463.6, 567.9], [1473.9, 577.08], [1485.89, 563.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[1365.29, 399.87], [1372.98, 406.73], [1380.48, 398.37], [1372.79, 391.52], [1365.29, 399.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1514.73, 614.56], [1521.31, 620.26], [1532.11, 607.9], [1525.54, 602.19], [1514.73, 614.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1349.13, 325.37], [1358.53, 314.82], [1359.83, 315.96], [1362.63, 312.82], [1368.98, 318.45], [1365.24, 322.65], [1364.44, 321.95], [1355.98, 331.44], [1352.07, 327.98], [1350.07, 326.21], [1349.13, 325.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1575.43, 669.1], [1580.11, 673.32], [1590.15, 662.31], [1585.47, 658.08], [1575.43, 669.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1619.05, 706.0], [1629.82, 693.32], [1623.53, 687.76], [1612.14, 700.16], [1617.05, 704.31], [1618.29, 705.35], [1619.05, 706.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1531.2, 625.87], [1531.52, 626.15], [1530.31, 627.58], [1535.39, 631.9], [1536.61, 630.48], [1537.18, 630.97], [1539.49, 628.29], [1539.75, 628.51], [1542.69, 625.09], [1542.43, 624.87], [1544.7, 622.21], [1538.71, 617.12], [1531.2, 625.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1562.1, 653.91], [1567.4, 658.72], [1575.99, 649.31], [1570.69, 644.5], [1562.1, 653.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1340.66, 318.47], [1347.63, 324.71], [1359.48, 311.56], [1352.51, 305.33], [1340.66, 318.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1463.95, 623.93], [1472.04, 614.95], [1477.33, 619.68], [1474.58, 622.74], [1474.79, 622.92], [1469.46, 628.85], [1463.95, 623.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1374.16, 303.96], [1386.63, 314.62], [1387.97, 313.06], [1390.94, 309.62], [1392.64, 307.64], [1380.18, 296.99], [1374.16, 303.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1500.38, 598.81], [1509.05, 589.27], [1516.12, 595.65], [1507.44, 605.19], [1506.92, 604.72], [1505.67, 606.09], [1499.7, 600.71], [1500.95, 599.33], [1500.38, 598.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1317.87, 358.1], [1321.01, 354.61], [1321.68, 355.21], [1329.18, 346.89], [1319.28, 338.02], [1313.82, 344.09], [1316.24, 346.25], [1313.59, 349.2], [1314.25, 349.78], [1311.71, 352.59], [1317.87, 358.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[1371.11, 318.59], [1355.82, 335.5], [1364.01, 342.86], [1380.27, 324.87], [1377.45, 322.35], [1376.48, 323.41], [1371.11, 318.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.206, "pop": 103, "jobs": 0}}, {"shape": {"outer": [[1331.78, 370.45], [1341.58, 360.01], [1337.16, 355.89], [1333.48, 352.45], [1332.25, 351.3], [1330.59, 353.07], [1329.7, 352.23], [1320.27, 362.27], [1326.53, 368.1], [1327.8, 366.74], [1331.78, 370.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[1394.07, 435.78], [1396.96, 438.37], [1398.12, 437.09], [1401.95, 440.53], [1403.87, 438.41], [1404.95, 439.37], [1412.05, 431.51], [1404.25, 424.52], [1394.07, 435.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1446.08, 587.44], [1450.53, 591.38], [1449.47, 592.58], [1452.05, 594.87], [1446.05, 601.58], [1443.09, 598.95], [1444.71, 597.15], [1440.63, 593.54], [1446.08, 587.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1493.7, 591.74], [1495.63, 593.48], [1494.62, 594.59], [1499.39, 598.87], [1504.27, 593.5], [1503.75, 593.03], [1505.52, 591.07], [1502.56, 588.39], [1499.84, 591.37], [1496.65, 588.49], [1493.7, 591.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1408.5, 440.8], [1413.96, 434.79], [1415.11, 435.84], [1417.96, 432.69], [1418.89, 433.53], [1420.34, 431.93], [1424.63, 435.81], [1423.18, 437.4], [1424.12, 438.25], [1415.8, 447.4], [1408.5, 440.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1367.97, 416.76], [1386.59, 433.79], [1397.31, 422.17], [1391.94, 417.25], [1392.92, 416.2], [1384.72, 408.71], [1383.66, 409.85], [1378.6, 405.22], [1367.97, 416.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.332, "pop": 166, "jobs": 0}}, {"shape": {"outer": [[1498.64, 531.93], [1512.25, 517.2], [1520.35, 524.63], [1512.24, 533.41], [1515.39, 536.3], [1512.14, 539.83], [1509.0, 536.95], [1506.11, 540.08], [1501.59, 535.93], [1502.24, 535.23], [1498.64, 531.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[-1857.63, -1417.26], [-1839.44, -1417.89], [-1839.08, -1407.67], [-1837.15, -1407.74], [-1836.3, -1383.32], [-1837.5, -1383.28], [-1837.39, -1380.1], [-1841.55, -1379.96], [-1841.56, -1380.59], [-1850.2, -1380.29], [-1850.39, -1385.55], [-1852.86, -1385.47], [-1853.14, -1393.31], [-1855.25, -1393.23], [-1857.2, -1393.16], [-1857.37, -1397.87], [-1857.97, -1397.85], [-1858.07, -1400.75], [-1860.05, -1400.68], [-1860.2, -1405.02], [-1857.21, -1405.13], [-1857.63, -1417.26]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.439, "pop": 0, "jobs": 439}}, {"shape": {"outer": [[-1922.06, -826.0], [-1921.65, -814.9], [-1926.33, -814.72], [-1927.06, -814.69], [-1929.97, -814.56], [-1931.28, -814.5], [-1945.53, -813.9], [-1954.28, -813.54], [-1957.48, -813.4], [-1956.5, -790.4], [-1923.74, -791.83], [-1900.08, -792.9], [-1901.53, -826.78], [-1922.06, -826.0]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.976, "pop": 0, "jobs": 976}}, {"shape": {"outer": [[-1935.4, -837.68], [-1923.28, -838.33], [-1922.59, -825.52], [-1922.15, -817.07], [-1926.42, -816.85], [-1926.33, -814.72], [-1929.97, -814.56], [-1930.27, -817.02], [-1934.28, -816.8], [-1935.4, -837.68]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.169, "pop": 0, "jobs": 169}}, {"shape": {"outer": [[-1929.97, -814.56], [-1931.28, -814.5], [-1945.53, -813.9], [-1954.28, -813.54], [-1954.36, -815.75], [-1956.69, -815.72], [-1957.8, -836.34], [-1935.4, -837.68], [-1934.28, -816.8], [-1930.27, -817.02], [-1929.97, -814.56]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.335, "pop": 0, "jobs": 335}}, {"shape": {"outer": [[-2934.33, -477.08], [-2926.71, -475.31], [-2928.01, -469.74], [-2920.75, -468.06], [-2919.32, -474.17], [-2913.96, -472.93], [-2912.55, -478.96], [-2917.93, -480.21], [-2916.48, -486.37], [-2920.21, -487.24], [-2918.86, -492.97], [-2925.45, -494.49], [-2928.22, -482.7], [-2932.77, -483.75], [-2934.33, -477.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[-2178.28, -460.97], [-2178.33, -462.73], [-2177.54, -462.75], [-2177.59, -464.51], [-2178.25, -464.5], [-2178.32, -466.65], [-2178.5, -469.32], [-2177.79, -469.34], [-2177.85, -471.22], [-2178.99, -471.19], [-2179.05, -472.98], [-2181.34, -472.91], [-2181.24, -469.29], [-2181.17, -466.63], [-2181.1, -464.26], [-2181.0, -460.89], [-2178.28, -460.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1358.02, 1238.19], [1362.32, 1242.0], [1362.55, 1244.32], [1352.82, 1254.84], [1347.41, 1249.96], [1358.02, 1238.19]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.074, "pop": 0, "jobs": 74}}, {"shape": {"outer": [[643.45, 268.92], [612.44, 303.19], [621.6, 311.33], [630.09, 301.83], [649.66, 319.18], [646.17, 323.09], [655.5, 331.37], [647.68, 340.13], [691.91, 379.36], [683.93, 388.28], [698.22, 400.97], [706.32, 391.9], [715.87, 400.36], [750.17, 361.98], [678.55, 298.45], [677.73, 299.38], [643.45, 268.92]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4384}}, {"shape": {"outer": [[750.87, 367.0], [756.93, 372.46], [764.72, 379.47], [743.87, 402.67], [755.12, 413.45], [742.8, 427.25], [717.71, 404.39], [750.87, 367.0]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.778, "pop": 0, "jobs": 778}}, {"shape": {"outer": [[696.65, 420.57], [703.48, 413.36], [720.75, 429.05], [719.72, 430.08], [731.06, 440.3], [725.43, 446.85], [696.65, 420.57]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.233, "pop": 0, "jobs": 233}}, {"shape": {"outer": [[1596.37, 610.69], [1606.25, 600.04], [1602.97, 597.02], [1603.57, 596.37], [1600.5, 593.53], [1599.86, 594.23], [1599.46, 593.86], [1592.47, 601.4], [1593.4, 602.26], [1590.56, 605.33], [1592.79, 607.38], [1590.24, 610.13], [1593.07, 612.74], [1595.62, 610.0], [1596.37, 610.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1507.13, 920.88], [1511.84, 915.64], [1593.23, 989.21], [1580.72, 1002.73], [1558.73, 983.07], [1564.46, 976.88], [1544.68, 958.24], [1543.17, 960.14], [1519.61, 939.61], [1512.77, 928.34], [1514.13, 926.91], [1507.13, 920.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.893, "pop": 0, "jobs": 893}}, {"shape": {"outer": [[1537.43, 982.12], [1546.18, 978.47], [1549.14, 984.42], [1547.61, 985.09], [1556.75, 1006.49], [1549.22, 1009.34], [1537.43, 982.12]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.161, "pop": 0, "jobs": 161}}, {"shape": {"outer": [[1562.81, 1006.32], [1569.29, 999.48], [1577.42, 1006.84], [1570.93, 1013.67], [1562.81, 1006.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1527.4, 793.79], [1541.78, 807.11], [1539.96, 809.06], [1525.26, 824.81], [1510.88, 811.49], [1527.4, 793.79]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.133, "pop": 0, "jobs": 133}}, {"shape": {"outer": [[1539.96, 809.06], [1544.66, 813.41], [1533.42, 825.46], [1536.57, 828.37], [1531.32, 834.0], [1523.48, 826.73], [1525.26, 824.81], [1539.96, 809.06]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.12, "pop": 0, "jobs": 120}}, {"shape": {"outer": [[1545.71, 821.35], [1546.27, 821.85], [1549.36, 818.4], [1554.37, 822.86], [1546.09, 832.12], [1541.47, 828.01], [1543.88, 825.32], [1542.92, 824.47], [1545.71, 821.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1546.56, 833.28], [1550.28, 829.21], [1549.77, 828.75], [1554.79, 823.24], [1555.54, 823.91], [1556.51, 822.84], [1560.45, 826.41], [1549.22, 838.73], [1546.01, 835.81], [1547.52, 834.15], [1546.56, 833.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1570.56, 806.44], [1582.18, 793.62], [1581.53, 793.03], [1585.22, 788.99], [1590.17, 793.48], [1589.15, 794.6], [1590.52, 795.84], [1576.43, 811.77], [1570.56, 806.44]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.115, "pop": 0, "jobs": 115}}, {"shape": {"outer": [[1564.53, 826.92], [1572.24, 833.91], [1557.81, 849.71], [1550.1, 842.73], [1564.53, 826.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[1553.16, 858.15], [1557.04, 853.9], [1573.84, 835.5], [1581.81, 842.74], [1580.65, 844.0], [1561.13, 865.38], [1553.16, 858.15]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.211, "pop": 0, "jobs": 211}}, {"shape": {"outer": [[1580.65, 844.0], [1585.74, 848.62], [1564.08, 872.34], [1560.17, 876.62], [1555.08, 872.01], [1561.13, 865.38], [1580.65, 844.0]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.167, "pop": 0, "jobs": 167}}, {"shape": {"outer": [[1564.08, 872.34], [1568.15, 876.03], [1570.25, 873.73], [1572.85, 876.09], [1576.25, 872.37], [1592.98, 854.05], [1593.46, 853.52], [1586.78, 847.47], [1585.74, 848.62], [1564.08, 872.34]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.187, "pop": 0, "jobs": 187}}, {"shape": {"outer": [[1592.98, 854.05], [1598.07, 858.66], [1586.78, 871.03], [1581.34, 876.98], [1576.25, 872.37], [1592.98, 854.05]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.048, "pop": 0, "jobs": 48}}, {"shape": {"outer": [[1588.47, 894.43], [1603.11, 878.42], [1602.05, 877.51], [1610.0, 868.84], [1616.3, 874.5], [1593.11, 898.61], [1588.47, 894.43]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.134, "pop": 0, "jobs": 134}}, {"shape": {"outer": [[1590.16, 874.09], [1601.69, 861.47], [1607.76, 866.98], [1596.24, 879.6], [1590.16, 874.09]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.078, "pop": 0, "jobs": 78}}, {"shape": {"outer": [[1482.95, 786.57], [1499.51, 768.62], [1510.64, 779.02], [1510.91, 781.74], [1496.39, 798.5], [1482.95, 786.57]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.296, "pop": 148, "jobs": 0}}, {"shape": {"outer": [[1476.85, 775.69], [1490.8, 760.78], [1497.13, 766.66], [1483.18, 781.58], [1476.85, 775.69]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.113, "pop": 0, "jobs": 113}}, {"shape": {"outer": [[1354.84, 741.47], [1370.09, 724.84], [1376.55, 730.72], [1375.57, 731.81], [1377.3, 733.38], [1378.29, 732.3], [1384.52, 737.98], [1383.48, 739.12], [1386.26, 741.64], [1387.3, 740.51], [1393.83, 746.45], [1392.77, 747.6], [1394.41, 749.09], [1392.72, 750.94], [1394.48, 752.55], [1396.69, 752.43], [1398.26, 750.71], [1396.92, 749.49], [1398.49, 747.78], [1397.27, 746.67], [1402.87, 740.55], [1419.52, 755.72], [1413.82, 761.94], [1412.66, 760.88], [1407.93, 766.04], [1409.08, 767.09], [1403.35, 773.34], [1402.67, 772.71], [1396.51, 779.43], [1374.16, 759.08], [1376.54, 756.49], [1371.25, 751.67], [1371.94, 750.9], [1369.65, 748.81], [1366.58, 752.17], [1354.84, 741.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 576, "jobs": 0}}, {"shape": {"outer": [[1351.02, 737.5], [1365.77, 721.27], [1361.87, 717.76], [1361.42, 718.26], [1359.01, 716.07], [1356.93, 718.35], [1355.35, 716.92], [1355.21, 714.51], [1356.64, 712.94], [1358.0, 714.15], [1359.58, 712.41], [1360.05, 712.83], [1362.21, 710.46], [1362.63, 710.84], [1365.74, 707.43], [1349.44, 692.71], [1344.29, 698.37], [1345.23, 699.21], [1343.98, 700.58], [1343.05, 699.74], [1333.79, 709.92], [1334.39, 710.46], [1332.05, 713.04], [1332.5, 713.45], [1331.81, 714.21], [1330.43, 714.23], [1328.93, 715.95], [1328.96, 718.13], [1330.57, 719.53], [1332.04, 719.5], [1334.65, 721.85], [1334.21, 722.33], [1340.28, 727.8], [1340.55, 727.5], [1345.36, 731.85], [1345.09, 732.14], [1351.02, 737.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.702, "pop": 351, "jobs": 0}}, {"shape": {"outer": [[1348.72, 660.14], [1362.26, 644.59], [1356.68, 639.49], [1342.36, 654.74], [1348.72, 660.14]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.106, "pop": 0, "jobs": 106}}, {"shape": {"outer": [[1363.44, 616.96], [1377.99, 601.07], [1384.6, 607.08], [1370.04, 622.96], [1363.44, 616.96]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.123, "pop": 0, "jobs": 123}}, {"shape": {"outer": [[1370.04, 622.96], [1376.8, 629.11], [1391.36, 613.23], [1384.6, 607.08], [1370.04, 622.96]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.126, "pop": 0, "jobs": 126}}, {"shape": {"outer": [[1391.87, 643.12], [1409.97, 623.01], [1415.67, 628.1], [1406.05, 638.8], [1404.17, 637.13], [1395.7, 646.54], [1391.87, 643.12]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.112, "pop": 0, "jobs": 112}}, {"shape": {"outer": [[1402.73, 651.45], [1410.52, 642.93], [1415.26, 647.16], [1407.43, 655.73], [1402.73, 651.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1407.43, 655.73], [1406.78, 656.44], [1413.43, 662.46], [1427.65, 646.9], [1421.0, 640.88], [1415.26, 647.16], [1407.43, 655.73]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.121, "pop": 0, "jobs": 121}}, {"shape": {"outer": [[1439.49, 651.91], [1446.56, 644.1], [1460.34, 656.49], [1453.27, 664.31], [1448.53, 660.04], [1439.49, 651.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.125, "pop": 0, "jobs": 125}}, {"shape": {"outer": [[1422.39, 806.04], [1437.62, 789.92], [1458.51, 809.12], [1444.17, 825.48], [1422.39, 806.04]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.405, "pop": 0, "jobs": 405}}, {"shape": {"outer": [[1472.44, 854.07], [1485.67, 838.89], [1498.57, 850.21], [1485.32, 865.21], [1472.44, 854.07]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.22, "pop": 0, "jobs": 220}}, {"shape": {"outer": [[1501.93, 870.77], [1518.49, 852.08], [1528.15, 860.56], [1511.58, 879.27], [1501.93, 870.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.256, "pop": 128, "jobs": 0}}, {"shape": {"outer": [[1526.21, 892.13], [1542.32, 873.94], [1551.79, 882.26], [1535.67, 900.45], [1526.21, 892.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.246, "pop": 123, "jobs": 0}}, {"shape": {"outer": [[23.17, 123.03], [29.35, 116.59], [37.21, 124.08], [31.04, 130.51], [23.17, 123.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1039.21, 731.03], [1076.74, 689.04], [1086.75, 697.14], [1095.49, 687.92], [1085.86, 679.43], [1090.79, 674.22], [1124.32, 704.65], [1122.22, 706.66], [1132.46, 715.92], [1137.04, 711.89], [1166.96, 739.3], [1159.75, 747.1], [1162.56, 749.56], [1170.34, 741.35], [1221.8, 790.38], [1204.71, 808.79], [1207.52, 811.24], [1203.53, 815.44], [1201.12, 813.17], [1199.02, 814.98], [1188.79, 805.92], [1190.12, 804.32], [1166.43, 782.77], [1151.82, 798.98], [1132.76, 781.78], [1156.52, 755.45], [1159.12, 752.58], [1156.72, 750.7], [1154.06, 753.5], [1135.6, 736.87], [1094.82, 782.07], [1039.21, 731.03]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5812}}, {"shape": {"outer": [[1000.96, 632.02], [968.45, 667.55], [1024.61, 717.0], [1059.42, 679.03], [1059.44, 676.98], [1051.25, 669.58], [1058.51, 661.76], [1016.69, 623.83], [1014.46, 624.22], [1009.31, 625.0], [1007.33, 625.4], [1003.3, 629.52], [1000.96, 632.02]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2977}}, {"shape": {"outer": [[998.08, 779.43], [1026.53, 748.05], [1084.25, 800.34], [1079.1, 805.78], [1084.55, 810.9], [1090.24, 805.46], [1128.91, 840.85], [1102.59, 868.17], [1088.4, 856.92], [1029.72, 807.66], [1014.75, 794.55], [1008.29, 801.17], [1023.15, 814.97], [1019.91, 818.18], [1047.03, 843.33], [1018.55, 873.57], [996.26, 853.15], [1006.9, 842.13], [1019.94, 853.64], [1031.31, 841.05], [1013.64, 824.4], [1001.58, 837.52], [990.3, 849.8], [972.4, 833.91], [983.25, 821.75], [978.83, 817.78], [1006.52, 786.99], [998.08, 779.43]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 5150}}, {"shape": {"outer": [[934.25, 794.69], [950.48, 776.26], [959.73, 784.34], [943.5, 802.78], [934.25, 794.69]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.193, "pop": 0, "jobs": 193}}, {"shape": {"outer": [[1117.29, 435.13], [1096.28, 458.4], [1107.18, 468.17], [1133.83, 438.64], [1122.93, 428.88], [1117.29, 435.13]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.372, "pop": 0, "jobs": 372}}, {"shape": {"outer": [[1096.28, 458.4], [1080.88, 444.58], [1097.02, 426.89], [1102.07, 421.35], [1117.29, 435.13], [1096.28, 458.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.414, "pop": 0, "jobs": 414}}, {"shape": {"outer": [[878.14, 309.33], [880.22, 307.06], [884.95, 301.91], [890.45, 295.91], [892.8, 293.36], [902.34, 302.04], [905.04, 304.5], [903.34, 306.35], [921.95, 323.31], [923.94, 321.14], [936.85, 332.89], [921.9, 349.18], [878.14, 309.33]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.785, "pop": 0, "jobs": 785}}, {"shape": {"outer": [[1077.5, 927.43], [1074.09, 924.65], [1072.85, 918.58], [1079.13, 911.78], [1070.83, 904.48], [1073.78, 900.8], [1075.44, 902.19], [1088.36, 888.02], [1091.3, 890.45], [1093.9, 886.79], [1105.62, 896.67], [1077.5, 927.43]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.408, "pop": 0, "jobs": 408}}, {"shape": {"outer": [[1106.06, 896.98], [1121.19, 910.76], [1092.06, 942.49], [1077.17, 928.93], [1106.06, 896.98]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.56, "pop": 0, "jobs": 560}}, {"shape": {"outer": [[1055.78, 578.59], [1070.36, 562.62], [1102.43, 591.67], [1087.86, 607.65], [1055.78, 578.59]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.599, "pop": 0, "jobs": 599}}, {"shape": {"outer": [[998.03, 502.39], [1010.45, 488.66], [1049.15, 523.41], [1044.6, 528.44], [1036.73, 537.14], [998.03, 502.39]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.616, "pop": 0, "jobs": 616}}, {"shape": {"outer": [[833.77, 272.42], [840.47, 278.5], [842.8, 280.6], [858.67, 294.97], [866.66, 286.3], [876.12, 276.03], [879.59, 272.28], [867.22, 260.99], [864.66, 263.8], [860.76, 268.08], [859.3, 266.75], [858.06, 268.1], [855.73, 266.0], [859.76, 261.57], [851.99, 254.54], [850.94, 253.58], [848.19, 256.61], [833.77, 272.42]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 806, "jobs": 0}}, {"shape": {"outer": [[1351.42, 687.67], [1355.41, 683.43], [1366.8, 694.1], [1362.8, 698.35], [1351.42, 687.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1359.99, 681.06], [1364.93, 675.59], [1370.22, 680.32], [1365.28, 685.79], [1359.99, 681.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1369.63, 668.23], [1373.12, 664.28], [1373.88, 664.96], [1377.15, 661.26], [1382.42, 665.89], [1379.07, 669.69], [1379.73, 670.26], [1373.04, 677.82], [1369.57, 674.77], [1369.12, 675.28], [1366.99, 673.41], [1367.83, 672.45], [1367.25, 671.95], [1370.13, 668.67], [1369.63, 668.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1373.86, 679.67], [1377.74, 675.31], [1378.72, 676.18], [1385.4, 668.68], [1387.58, 670.62], [1386.97, 671.31], [1389.89, 673.89], [1379.95, 685.06], [1373.86, 679.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1380.47, 685.39], [1390.47, 674.02], [1395.34, 678.29], [1384.32, 690.79], [1382.89, 689.53], [1383.9, 688.38], [1380.47, 685.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1388.72, 689.48], [1391.11, 686.79], [1390.39, 686.16], [1397.66, 678.0], [1404.73, 684.25], [1397.08, 692.84], [1396.19, 692.05], [1394.18, 694.3], [1388.72, 689.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1395.65, 699.5], [1406.79, 686.53], [1412.87, 691.73], [1401.73, 704.68], [1395.65, 699.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1407.77, 703.06], [1415.66, 694.24], [1421.35, 699.29], [1413.44, 708.11], [1407.77, 703.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1413.41, 708.95], [1422.52, 699.13], [1427.58, 703.78], [1418.46, 713.6], [1413.41, 708.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1427.23, 736.77], [1424.02, 740.39], [1422.98, 741.57], [1433.22, 750.58], [1437.47, 745.78], [1436.45, 744.88], [1427.23, 736.77]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.056, "pop": 0, "jobs": 56}}, {"shape": {"outer": [[1470.76, 765.64], [1482.65, 753.06], [1486.86, 757.02], [1480.06, 764.21], [1481.28, 765.36], [1476.19, 770.75], [1470.76, 765.64]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.072, "pop": 0, "jobs": 72}}, {"shape": {"outer": [[1469.03, 766.11], [1463.37, 760.76], [1475.87, 747.63], [1481.53, 752.98], [1469.03, 766.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1455.99, 751.54], [1467.14, 739.15], [1473.43, 744.76], [1462.28, 757.16], [1455.99, 751.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1453.49, 826.05], [1458.75, 819.96], [1466.91, 826.98], [1461.64, 833.05], [1453.49, 826.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1449.13, 823.22], [1454.31, 827.87], [1450.25, 832.36], [1448.44, 830.74], [1445.06, 827.7], [1449.13, 823.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1469.11, 823.92], [1462.12, 817.29], [1467.56, 811.6], [1474.54, 818.23], [1469.11, 823.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1470.07, 808.7], [1471.97, 806.69], [1470.95, 805.74], [1475.58, 800.82], [1483.5, 808.22], [1478.88, 813.12], [1475.85, 810.29], [1473.94, 812.31], [1470.07, 808.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1489.55, 838.38], [1491.33, 836.37], [1492.0, 836.97], [1494.95, 833.64], [1504.26, 841.8], [1500.91, 845.59], [1500.67, 845.39], [1499.05, 847.23], [1490.03, 839.31], [1490.28, 839.03], [1489.55, 838.38]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1502.89, 825.1], [1502.24, 825.8], [1500.6, 824.29], [1497.18, 828.01], [1498.83, 829.52], [1497.98, 830.44], [1506.77, 838.45], [1511.67, 833.11], [1502.89, 825.1]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1500.81, 855.64], [1510.23, 845.33], [1515.5, 850.12], [1506.08, 860.43], [1500.81, 855.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1598.98, 896.6], [1601.26, 894.09], [1600.79, 893.67], [1604.97, 889.06], [1604.39, 888.55], [1608.06, 884.51], [1608.66, 885.05], [1611.46, 881.96], [1616.89, 886.85], [1614.2, 889.81], [1614.94, 890.48], [1611.16, 894.63], [1610.68, 894.2], [1606.56, 898.74], [1603.62, 896.09], [1601.28, 898.67], [1598.98, 896.6]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1610.14, 899.94], [1616.18, 905.42], [1623.13, 897.82], [1622.5, 897.25], [1626.09, 893.32], [1620.85, 888.57], [1616.93, 892.86], [1616.32, 892.31], [1613.33, 895.6], [1613.76, 895.97], [1610.14, 899.94]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1621.39, 901.63], [1626.47, 896.05], [1627.31, 896.81], [1630.01, 893.86], [1636.33, 899.57], [1627.09, 909.72], [1622.63, 905.7], [1624.11, 904.08], [1621.39, 901.63]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1654.75, 922.75], [1652.51, 920.76], [1651.39, 922.0], [1652.13, 922.66], [1645.55, 930.01], [1644.75, 929.3], [1640.7, 933.84], [1641.3, 934.36], [1634.62, 941.84], [1616.36, 925.65], [1623.22, 917.98], [1626.07, 920.5], [1632.04, 913.83], [1629.33, 911.43], [1633.19, 907.11], [1632.72, 906.69], [1637.85, 900.95], [1638.63, 901.64], [1641.41, 898.53], [1651.77, 907.73], [1652.22, 907.24], [1659.92, 914.08], [1660.09, 916.77], [1654.75, 922.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.712, "pop": 356, "jobs": 0}}, {"shape": {"outer": [[1662.85, 944.77], [1675.4, 930.64], [1676.03, 930.15], [1676.79, 929.92], [1677.52, 929.93], [1678.21, 930.18], [1684.85, 936.02], [1670.84, 951.8], [1662.85, 944.77]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.143, "pop": 0, "jobs": 143}}, {"shape": {"outer": [[1670.84, 951.8], [1677.47, 957.64], [1691.47, 941.85], [1684.85, 936.02], [1670.84, 951.8]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.119, "pop": 0, "jobs": 119}}, {"shape": {"outer": [[1665.84, 891.3], [1675.55, 900.01], [1687.94, 886.31], [1678.81, 878.12], [1669.64, 888.27], [1669.04, 887.75], [1665.84, 891.3]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.147, "pop": 0, "jobs": 147}}, {"shape": {"outer": [[1676.82, 872.76], [1682.02, 866.97], [1694.91, 878.47], [1689.71, 884.26], [1676.82, 872.76]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.086, "pop": 0, "jobs": 86}}, {"shape": {"outer": [[1716.44, 887.64], [1760.48, 927.18], [1751.49, 937.15], [1745.65, 931.92], [1730.38, 948.86], [1718.88, 938.57], [1718.36, 939.14], [1691.39, 915.09], [1716.44, 887.64]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1281}}, {"shape": {"outer": [[1713.51, 962.63], [1721.22, 969.49], [1709.04, 983.08], [1706.99, 985.37], [1699.27, 978.51], [1713.51, 962.63]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.141, "pop": 0, "jobs": 141}}, {"shape": {"outer": [[1716.57, 983.06], [1723.17, 975.75], [1729.7, 981.44], [1728.76, 982.51], [1731.72, 985.1], [1724.83, 992.95], [1719.99, 988.73], [1721.32, 987.2], [1716.57, 983.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1709.04, 983.08], [1713.18, 986.8], [1716.57, 983.06], [1723.17, 975.75], [1725.42, 973.26], [1721.22, 969.49], [1709.04, 983.08]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.065, "pop": 0, "jobs": 65}}, {"shape": {"outer": [[1420.44, 657.27], [1428.75, 648.01], [1432.32, 651.19], [1430.93, 652.74], [1433.9, 655.38], [1423.68, 666.79], [1418.53, 662.2], [1421.83, 658.51], [1420.44, 657.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1425.31, 671.0], [1429.42, 666.55], [1427.25, 664.56], [1431.08, 660.42], [1432.98, 662.17], [1434.7, 660.31], [1436.15, 661.64], [1440.55, 656.88], [1444.62, 660.62], [1442.09, 663.35], [1442.61, 663.83], [1431.09, 676.3], [1425.31, 671.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1440.1, 682.2], [1441.09, 683.12], [1440.04, 684.25], [1443.97, 687.9], [1455.96, 675.11], [1452.53, 671.92], [1447.74, 677.02], [1446.25, 675.64], [1440.1, 682.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1440.08, 622.32], [1445.72, 627.41], [1440.91, 632.7], [1435.28, 627.61], [1440.08, 622.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1458.7, 636.46], [1463.92, 631.07], [1467.05, 634.09], [1461.83, 639.47], [1458.7, 636.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1476.77, 646.33], [1480.12, 649.48], [1475.56, 654.3], [1472.21, 651.13], [1476.77, 646.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1477.87, 636.85], [1486.3, 627.81], [1486.16, 627.67], [1487.19, 626.56], [1483.38, 623.02], [1482.33, 624.14], [1482.0, 623.82], [1473.05, 633.39], [1475.66, 635.81], [1476.16, 635.26], [1477.87, 636.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1479.87, 636.6], [1486.97, 628.89], [1489.2, 630.93], [1490.69, 629.31], [1494.51, 632.8], [1488.04, 639.84], [1485.99, 637.96], [1483.87, 640.27], [1479.87, 636.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1485.66, 646.94], [1489.95, 642.13], [1491.07, 643.12], [1496.58, 636.95], [1501.38, 641.21], [1491.58, 652.19], [1485.66, 646.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1493.72, 650.49], [1503.05, 640.15], [1508.81, 645.31], [1505.6, 648.88], [1506.01, 649.25], [1502.21, 653.48], [1501.2, 652.57], [1498.91, 655.13], [1493.72, 650.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1447.16, 690.39], [1448.71, 688.67], [1448.32, 688.32], [1453.58, 682.55], [1458.83, 687.29], [1453.05, 693.65], [1450.78, 691.61], [1449.76, 692.74], [1447.16, 690.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1453.12, 695.95], [1459.67, 688.62], [1466.09, 694.31], [1459.54, 701.64], [1453.12, 695.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1464.17, 702.52], [1466.93, 699.46], [1466.61, 699.17], [1469.89, 695.56], [1470.2, 695.85], [1472.61, 693.2], [1473.67, 694.16], [1475.11, 692.56], [1478.48, 695.59], [1477.04, 697.19], [1477.61, 697.71], [1469.17, 707.03], [1464.17, 702.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1473.08, 703.56], [1469.6, 707.35], [1475.77, 712.96], [1479.29, 709.13], [1477.28, 707.31], [1483.26, 700.78], [1484.55, 701.95], [1487.96, 698.23], [1486.02, 696.46], [1483.05, 699.69], [1480.19, 697.09], [1473.72, 704.15], [1473.08, 703.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1483.62, 720.81], [1492.81, 711.07], [1486.42, 705.08], [1477.22, 714.82], [1483.62, 720.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1508.77, 664.01], [1512.33, 660.22], [1511.68, 659.61], [1517.02, 653.9], [1516.74, 653.65], [1518.11, 652.2], [1513.9, 648.28], [1506.31, 656.37], [1507.9, 657.85], [1505.22, 660.71], [1508.77, 664.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1507.78, 666.82], [1520.2, 653.16], [1521.06, 653.94], [1522.42, 655.16], [1523.36, 656.02], [1521.28, 658.32], [1523.69, 660.5], [1513.37, 671.86], [1507.78, 666.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1412.93, 623.52], [1418.17, 618.06], [1427.22, 626.67], [1423.83, 630.2], [1424.52, 630.85], [1422.65, 632.79], [1412.93, 623.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1426.13, 625.2], [1428.61, 622.62], [1433.26, 627.03], [1430.78, 629.62], [1426.13, 625.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1419.66, 613.78], [1424.77, 608.13], [1428.51, 611.49], [1429.01, 610.93], [1436.73, 617.85], [1431.12, 624.05], [1419.66, 613.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1416.38, 582.62], [1419.18, 579.57], [1420.12, 580.44], [1424.06, 576.14], [1423.29, 575.45], [1426.5, 571.94], [1420.9, 566.83], [1413.91, 574.46], [1415.24, 575.67], [1412.3, 578.89], [1416.38, 582.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1335.95, 588.09], [1358.93, 562.8], [1373.87, 576.29], [1371.15, 579.29], [1371.48, 579.59], [1369.87, 581.37], [1367.19, 584.31], [1366.92, 584.06], [1363.23, 588.1], [1363.37, 589.34], [1368.9, 594.32], [1367.65, 595.7], [1372.74, 600.29], [1362.26, 611.82], [1355.18, 605.43], [1353.95, 606.78], [1344.45, 598.19], [1345.35, 597.19], [1342.08, 594.23], [1341.52, 594.85], [1338.92, 592.5], [1339.79, 591.55], [1335.95, 588.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.78, "pop": 390, "jobs": 0}}, {"shape": {"outer": [[1401.32, 572.12], [1404.51, 568.71], [1403.99, 568.23], [1407.48, 564.51], [1408.0, 564.99], [1413.19, 559.44], [1420.34, 566.08], [1408.7, 578.53], [1406.52, 576.5], [1405.4, 577.69], [1401.63, 574.18], [1402.51, 573.23], [1401.32, 572.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[1400.08, 567.25], [1409.05, 557.62], [1403.21, 552.22], [1394.24, 561.85], [1400.08, 567.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1385.49, 553.54], [1389.4, 549.37], [1389.63, 549.59], [1395.38, 543.46], [1401.37, 549.03], [1391.7, 559.33], [1385.49, 553.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-276.24, -239.22], [-296.58, -216.45], [-294.54, -214.64], [-297.79, -211.02], [-292.25, -206.1], [-292.71, -205.58], [-279.11, -193.5], [-279.91, -192.61], [-262.33, -176.64], [-254.43, -185.49], [-253.62, -184.77], [-250.32, -188.46], [-254.98, -192.58], [-244.95, -203.82], [-240.98, -200.3], [-242.0, -199.14], [-241.04, -198.35], [-240.06, -199.44], [-238.87, -198.39], [-237.93, -199.43], [-239.03, -200.46], [-237.86, -201.79], [-236.36, -203.5], [-235.31, -202.6], [-234.36, -203.62], [-235.47, -204.62], [-234.64, -205.46], [-235.67, -206.35], [-236.43, -205.54], [-237.63, -206.63], [-239.24, -208.08], [-238.37, -209.06], [-239.47, -210.02], [-240.41, -208.92], [-241.96, -210.32], [-242.59, -209.61], [-251.16, -217.16], [-263.56, -203.17], [-264.36, -202.27], [-265.09, -202.88], [-266.04, -203.37], [-267.02, -203.67], [-268.12, -203.85], [-269.22, -203.85], [-269.44, -204.04], [-270.64, -205.1], [-271.64, -205.99], [-275.26, -209.21], [-276.29, -210.13], [-279.82, -213.26], [-279.2, -213.96], [-278.63, -214.6], [-269.4, -224.91], [-268.43, -225.99], [-267.37, -227.19], [-268.28, -227.94], [-264.58, -232.05], [-270.04, -236.99], [-271.62, -235.11], [-276.24, -239.22]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.934, "pop": 0, "jobs": 934}}, {"shape": {"outer": [[-269.57, -164.16], [-295.67, -187.9], [-286.15, -198.29], [-279.91, -192.61], [-262.33, -176.64], [-260.06, -174.63], [-269.57, -164.16]], "holes": []}, "height": 35.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1391}}, {"shape": {"outer": [[-389.05, 297.68], [-391.99, 300.9], [-392.35, 300.58], [-404.46, 313.92], [-396.75, 320.88], [-383.97, 306.82], [-387.49, 303.65], [-385.21, 301.14], [-389.05, 297.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-424.0, 246.55], [-418.06, 239.83], [-416.48, 241.22], [-415.83, 241.14], [-414.59, 242.22], [-414.47, 242.87], [-402.45, 253.4], [-408.44, 260.18], [-424.0, 246.55]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-412.29, 236.01], [-405.3, 228.08], [-395.78, 236.4], [-397.86, 238.76], [-395.12, 241.16], [-399.94, 246.62], [-402.7, 244.2], [-403.75, 245.4], [-410.43, 239.55], [-409.47, 238.47], [-412.29, 236.01]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-296.05, 408.75], [-282.52, 393.92], [-279.72, 396.46], [-279.4, 396.12], [-276.26, 398.96], [-280.69, 403.81], [-279.73, 404.69], [-286.02, 411.57], [-286.58, 413.21], [-287.86, 414.38], [-289.54, 414.8], [-291.23, 414.35], [-292.5, 413.15], [-293.02, 411.49], [-296.05, 408.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-257.9, 399.56], [-249.42, 390.15], [-242.78, 396.1], [-244.84, 398.39], [-240.53, 402.25], [-246.95, 409.37], [-257.9, 399.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-227.38, 426.29], [-222.28, 420.84], [-216.8, 425.91], [-221.89, 431.37], [-227.38, 426.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-197.12, 420.66], [-189.48, 412.54], [-180.26, 421.17], [-187.9, 429.28], [-197.12, 420.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-229.28, 400.87], [-223.87, 395.06], [-221.27, 397.45], [-215.32, 391.06], [-223.38, 383.61], [-234.74, 395.83], [-229.28, 400.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-499.5, 188.26], [-495.26, 183.7], [-499.27, 179.99], [-500.08, 179.42], [-503.74, 183.5], [-504.13, 183.98], [-499.5, 188.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-172.11, 340.24], [-167.55, 335.27], [-162.48, 339.89], [-167.03, 344.85], [-172.11, 340.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-211.73, 348.61], [-207.43, 343.88], [-206.58, 344.64], [-201.08, 338.61], [-196.39, 342.85], [-195.26, 341.61], [-193.63, 343.07], [-196.64, 346.39], [-196.12, 346.86], [-199.48, 350.54], [-198.22, 351.67], [-205.27, 359.41], [-207.84, 357.08], [-209.48, 358.88], [-214.45, 354.39], [-210.35, 349.86], [-211.73, 348.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[-195.42, 371.21], [-180.88, 355.37], [-188.44, 348.47], [-199.14, 360.12], [-198.59, 360.62], [-198.97, 361.63], [-199.1, 362.7], [-198.95, 363.81], [-198.53, 364.84], [-200.3, 366.76], [-195.42, 371.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-188.73, 374.13], [-177.3, 361.8], [-170.22, 368.33], [-183.92, 383.1], [-189.21, 378.23], [-187.83, 376.73], [-188.58, 376.03], [-188.73, 374.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-172.96, 388.01], [-165.43, 379.61], [-164.01, 380.87], [-163.22, 379.99], [-152.6, 389.44], [-160.92, 398.73], [-161.6, 398.11], [-163.22, 399.93], [-170.53, 393.42], [-168.91, 391.62], [-172.96, 388.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[-165.21, 369.18], [-157.41, 360.69], [-140.39, 376.21], [-148.2, 384.71], [-165.21, 369.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[-141.74, 283.67], [-131.47, 272.59], [-121.78, 281.52], [-132.05, 292.58], [-141.74, 283.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-122.76, 303.25], [-118.56, 298.75], [-118.06, 299.21], [-116.49, 297.52], [-117.24, 296.83], [-115.25, 294.7], [-114.49, 295.41], [-112.87, 293.67], [-113.03, 293.52], [-110.07, 290.35], [-105.67, 290.17], [-104.44, 316.93], [-106.58, 318.25], [-122.76, 303.25]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.406, "pop": 203, "jobs": 0}}, {"shape": {"outer": [[-125.14, 302.26], [-131.72, 296.0], [-130.38, 294.58], [-130.61, 294.37], [-115.29, 278.35], [-113.86, 278.37], [-112.56, 279.6], [-111.69, 278.69], [-109.4, 278.59], [-107.46, 280.44], [-107.22, 282.73], [-108.67, 284.25], [-107.61, 285.25], [-113.5, 291.4], [-113.77, 291.14], [-119.95, 297.59], [-120.32, 297.23], [-125.14, 302.26]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[-154.4, 270.4], [-142.85, 258.21], [-148.65, 252.75], [-160.2, 264.94], [-159.93, 265.2], [-161.42, 266.77], [-156.16, 271.72], [-154.67, 270.15], [-154.4, 270.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-165.33, 258.41], [-166.11, 259.26], [-165.87, 259.49], [-165.79, 260.84], [-164.0, 262.48], [-163.13, 262.45], [-164.26, 263.67], [-161.77, 265.95], [-159.65, 263.65], [-159.88, 263.44], [-156.54, 259.81], [-155.31, 259.33], [-152.3, 256.06], [-152.24, 255.16], [-151.39, 254.23], [-151.16, 254.44], [-148.22, 251.25], [-153.65, 246.28], [-165.05, 258.66], [-165.33, 258.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-125.8, 259.66], [-108.7, 258.71], [-107.29, 258.62], [-106.48, 272.8], [-121.19, 273.61], [-125.01, 273.83], [-125.8, 259.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[-226.35, 141.72], [-223.24, 138.25], [-224.56, 137.08], [-221.86, 134.08], [-220.43, 135.35], [-217.31, 131.87], [-215.8, 133.2], [-215.52, 132.9], [-206.26, 141.15], [-205.86, 140.69], [-200.8, 145.2], [-211.04, 156.61], [-216.15, 152.05], [-215.53, 151.36], [-226.35, 141.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.248, "pop": 124, "jobs": 0}}, {"shape": {"outer": [[-218.04, 164.72], [-212.72, 158.91], [-226.58, 146.34], [-231.0, 151.16], [-227.74, 154.13], [-228.63, 155.11], [-218.04, 164.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-251.46, 168.74], [-243.36, 159.92], [-227.7, 174.2], [-228.18, 174.74], [-226.9, 175.9], [-229.63, 178.87], [-230.91, 177.7], [-232.83, 179.79], [-237.37, 175.65], [-238.44, 176.83], [-243.73, 172.01], [-245.62, 174.07], [-251.46, 168.74]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-239.35, 161.14], [-237.04, 158.49], [-237.87, 157.78], [-235.54, 155.13], [-234.72, 155.84], [-232.72, 153.55], [-220.27, 164.34], [-220.53, 164.64], [-218.78, 166.17], [-223.94, 172.08], [-225.09, 171.09], [-226.29, 172.46], [-230.78, 168.56], [-231.11, 168.94], [-235.55, 165.09], [-235.23, 164.72], [-239.35, 161.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-268.6, 170.5], [-259.79, 160.51], [-259.37, 160.86], [-257.24, 158.46], [-251.01, 163.92], [-254.18, 167.52], [-253.19, 168.38], [-259.2, 175.2], [-261.33, 173.33], [-263.08, 175.32], [-268.6, 170.5]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-256.4, 182.04], [-249.35, 173.88], [-240.84, 181.19], [-242.61, 183.23], [-238.53, 186.73], [-243.13, 192.07], [-245.02, 190.44], [-245.7, 191.23], [-256.4, 182.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-149.74, 360.52], [-142.32, 352.52], [-134.85, 359.38], [-133.21, 357.62], [-127.58, 362.8], [-136.63, 372.57], [-149.74, 360.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-150.05, 337.28], [-139.17, 325.09], [-131.62, 331.78], [-134.67, 335.21], [-132.61, 337.04], [-138.64, 343.8], [-141.08, 341.63], [-142.87, 343.63], [-150.05, 337.28]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[-157.49, 329.02], [-154.81, 326.06], [-155.25, 325.68], [-145.45, 314.87], [-139.03, 320.65], [-151.51, 334.41], [-157.49, 329.02]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-130.41, 355.8], [-124.18, 348.91], [-127.49, 345.95], [-126.27, 344.59], [-126.71, 344.2], [-120.75, 337.6], [-110.97, 346.38], [-118.24, 354.43], [-118.85, 353.88], [-121.84, 357.2], [-122.15, 356.92], [-125.3, 360.39], [-130.41, 355.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-531.46, 65.09], [-525.18, 58.36], [-524.1, 59.37], [-520.42, 55.43], [-515.19, 60.28], [-525.15, 70.95], [-526.84, 69.37], [-528.47, 71.12], [-531.75, 68.08], [-530.12, 66.33], [-531.46, 65.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2300.85, 1312.66], [2305.51, 1316.42], [2309.73, 1311.22], [2305.06, 1307.47], [2300.85, 1312.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2330.26, 1279.94], [2335.25, 1284.37], [2338.96, 1280.22], [2333.98, 1275.79], [2330.26, 1279.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2390.1, 1193.6], [2396.53, 1199.84], [2406.55, 1189.57], [2400.12, 1183.34], [2390.1, 1193.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2349.27, 1279.76], [2358.57, 1288.78], [2364.07, 1283.15], [2354.77, 1274.14], [2349.27, 1279.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2293.23, 1278.16], [2301.45, 1286.14], [2307.28, 1280.17], [2299.05, 1272.19], [2293.23, 1278.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2378.19, 1191.99], [2382.38, 1195.79], [2385.95, 1191.89], [2381.75, 1188.09], [2378.19, 1191.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2379.15, 1241.34], [2385.55, 1247.55], [2391.97, 1240.98], [2385.56, 1234.77], [2379.15, 1241.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2290.01, 1317.14], [2292.78, 1319.91], [2295.86, 1316.85], [2293.09, 1314.07], [2290.01, 1317.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2356.32, 1270.26], [2366.36, 1280.0], [2372.28, 1273.93], [2362.24, 1264.2], [2356.32, 1270.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2285.5, 1288.22], [2293.18, 1295.67], [2299.23, 1289.46], [2291.55, 1282.03], [2285.5, 1288.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2300.03, 1331.13], [2309.54, 1340.34], [2314.98, 1334.77], [2305.48, 1325.55], [2300.03, 1331.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2383.39, 1228.98], [2389.21, 1234.62], [2395.35, 1228.33], [2389.25, 1223.07], [2383.39, 1228.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2324.74, 1242.48], [2334.92, 1252.35], [2341.77, 1245.33], [2331.59, 1235.46], [2324.74, 1242.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2310.83, 1284.99], [2314.83, 1288.6], [2317.54, 1285.62], [2313.53, 1282.01], [2310.83, 1284.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2365.19, 1259.56], [2376.18, 1270.21], [2382.05, 1264.2], [2371.06, 1253.54], [2365.19, 1259.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2309.7, 1327.3], [2315.78, 1333.2], [2322.58, 1326.24], [2316.49, 1320.34], [2309.7, 1327.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2345.24, 1249.57], [2351.26, 1254.75], [2355.72, 1249.61], [2349.7, 1244.43], [2345.24, 1249.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2391.15, 1214.35], [2393.95, 1217.07], [2397.14, 1220.16], [2402.06, 1215.12], [2396.06, 1209.31], [2391.15, 1214.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2333.22, 1258.88], [2337.74, 1263.05], [2341.9, 1258.59], [2337.38, 1254.41], [2333.22, 1258.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2353.83, 1215.08], [2360.45, 1221.49], [2366.44, 1215.35], [2359.83, 1208.94], [2353.83, 1215.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2380.91, 1259.81], [2387.37, 1253.2], [2380.38, 1246.43], [2373.92, 1253.04], [2380.91, 1259.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2326.34, 1284.28], [2331.55, 1288.59], [2334.86, 1284.63], [2329.65, 1280.3], [2326.34, 1284.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2380.7, 1183.02], [2387.18, 1189.3], [2396.7, 1179.55], [2390.22, 1173.26], [2380.7, 1183.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2354.11, 1252.58], [2358.62, 1256.71], [2363.43, 1251.49], [2358.93, 1247.36], [2354.11, 1252.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2393.22, 1204.49], [2398.35, 1209.28], [2404.02, 1203.26], [2400.34, 1199.81], [2398.9, 1198.46], [2393.22, 1204.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2344.01, 1225.2], [2353.4, 1234.31], [2360.25, 1227.3], [2350.84, 1218.19], [2344.01, 1225.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2305.6, 1307.14], [2309.63, 1310.81], [2313.6, 1306.47], [2309.55, 1302.81], [2305.6, 1307.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2367.89, 1197.8], [2376.67, 1206.3], [2382.74, 1200.09], [2373.95, 1191.58], [2367.89, 1197.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2328.48, 1306.62], [2334.19, 1312.15], [2339.91, 1306.3], [2334.2, 1300.77], [2328.48, 1306.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2341.87, 1266.98], [2346.71, 1271.53], [2350.64, 1267.4], [2345.81, 1262.85], [2341.87, 1266.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2407.48, 1192.49], [2400.34, 1199.81], [2404.02, 1203.26], [2406.85, 1205.91], [2413.9, 1198.7], [2407.48, 1192.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2301.23, 1269.78], [2310.65, 1278.9], [2316.72, 1272.7], [2308.5, 1264.74], [2307.81, 1265.45], [2306.61, 1264.27], [2301.23, 1269.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2334.71, 1231.89], [2345.57, 1242.41], [2352.23, 1235.59], [2342.8, 1226.44], [2340.04, 1229.28], [2338.61, 1227.89], [2334.71, 1231.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2319.5, 1252.55], [2325.02, 1257.89], [2326.85, 1256.01], [2329.37, 1258.45], [2332.75, 1255.0], [2324.71, 1247.21], [2319.5, 1252.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2317.89, 1270.03], [2324.75, 1263.0], [2316.53, 1255.03], [2315.8, 1255.79], [2314.28, 1254.29], [2308.14, 1260.58], [2317.89, 1270.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2277.45, 1296.88], [2287.73, 1306.83], [2293.88, 1300.55], [2285.56, 1292.49], [2283.56, 1294.54], [2281.59, 1292.64], [2277.45, 1296.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2323.96, 1308.92], [2318.07, 1314.96], [2324.38, 1321.08], [2326.87, 1318.52], [2328.38, 1319.98], [2331.78, 1316.5], [2323.96, 1308.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2333.77, 1298.18], [2338.58, 1302.85], [2339.95, 1301.44], [2341.55, 1303.0], [2345.39, 1299.07], [2338.97, 1292.85], [2333.77, 1298.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2342.91, 1288.7], [2350.81, 1296.36], [2352.92, 1294.21], [2353.75, 1295.02], [2357.08, 1291.59], [2356.25, 1290.79], [2357.4, 1289.62], [2349.5, 1281.95], [2342.91, 1288.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2370.24, 1214.93], [2372.35, 1212.77], [2374.03, 1214.41], [2376.45, 1211.94], [2374.76, 1210.29], [2376.55, 1208.47], [2367.16, 1199.36], [2360.85, 1205.83], [2370.24, 1214.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[202.58, -2163.07], [208.9, -2166.1], [212.69, -2158.22], [215.6, -2159.61], [225.87, -2138.27], [216.64, -2133.86], [202.58, -2163.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.242, "pop": 121, "jobs": 0}}, {"shape": {"outer": [[214.7, -2180.85], [219.48, -2183.62], [219.94, -2182.82], [221.73, -2183.85], [225.08, -2178.1], [222.34, -2176.51], [221.98, -2177.13], [220.75, -2176.42], [223.16, -2172.29], [226.82, -2174.41], [233.79, -2162.47], [225.55, -2157.7], [216.14, -2173.87], [218.1, -2175.01], [214.7, -2180.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[221.95, -2190.67], [231.15, -2197.05], [236.02, -2190.08], [226.82, -2183.7], [221.95, -2190.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[228.2, -2181.72], [231.35, -2183.92], [231.77, -2183.31], [235.32, -2185.78], [237.53, -2182.64], [239.87, -2184.28], [247.0, -2174.14], [237.96, -2167.82], [228.2, -2181.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[240.53, -2190.47], [248.44, -2197.49], [257.63, -2187.22], [249.73, -2180.19], [240.53, -2190.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[262.4, -2210.94], [268.81, -2218.05], [277.07, -2210.63], [270.65, -2203.54], [262.4, -2210.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[257.26, -2194.41], [263.02, -2200.87], [254.36, -2208.56], [252.86, -2206.88], [250.55, -2208.94], [246.28, -2204.16], [257.26, -2194.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[251.86, -2221.93], [258.33, -2229.25], [249.3, -2237.18], [242.82, -2229.86], [251.86, -2221.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[266.46, -2225.25], [273.2, -2230.84], [274.66, -2229.11], [277.82, -2231.73], [280.73, -2228.26], [282.47, -2229.71], [291.52, -2218.87], [282.17, -2211.12], [276.23, -2218.24], [273.92, -2216.31], [266.46, -2225.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[294.46, -2221.36], [280.79, -2237.03], [287.72, -2243.04], [301.39, -2227.36], [294.46, -2221.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[294.28, -2237.48], [296.8, -2239.93], [292.17, -2244.67], [289.65, -2242.21], [294.28, -2237.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[275.39, -2284.35], [272.71, -2281.04], [273.48, -2280.43], [270.91, -2277.26], [280.96, -2269.17], [287.25, -2276.93], [277.64, -2284.66], [276.6, -2283.38], [275.39, -2284.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[269.2, -2265.91], [274.79, -2272.11], [288.95, -2259.46], [278.77, -2248.15], [272.84, -2253.45], [275.02, -2255.88], [273.74, -2257.02], [276.14, -2259.7], [269.2, -2265.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[294.44, -2266.26], [299.03, -2271.23], [306.68, -2264.24], [297.96, -2254.76], [292.06, -2260.14], [296.21, -2264.65], [294.44, -2266.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[307.75, -2248.53], [315.14, -2256.01], [320.58, -2250.67], [318.54, -2248.6], [323.47, -2243.76], [318.12, -2238.35], [307.75, -2248.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[295.77, -2236.36], [303.58, -2243.67], [312.72, -2233.99], [304.91, -2226.67], [295.77, -2236.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[319.64, -2226.49], [321.85, -2228.78], [325.9, -2224.89], [323.69, -2222.6], [319.64, -2226.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[324.43, -2230.18], [326.85, -2232.73], [331.11, -2228.71], [328.7, -2226.17], [324.43, -2230.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[125.83, -2075.82], [143.92, -2087.34], [140.16, -2093.2], [162.98, -2107.75], [156.98, -2117.1], [159.3, -2118.58], [163.35, -2121.16], [168.95, -2112.43], [173.98, -2115.64], [174.95, -2114.13], [177.42, -2110.29], [183.35, -2114.07], [187.02, -2108.37], [190.47, -2110.57], [191.34, -2109.21], [195.83, -2102.21], [153.16, -2074.99], [160.36, -2063.77], [141.1, -2051.49], [137.04, -2057.81], [136.25, -2057.3], [131.74, -2064.35], [132.77, -2065.0], [125.83, -2075.82]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1150}}, {"shape": {"outer": [[512.86, -3066.85], [521.63, -3074.91], [525.26, -3071.11], [530.42, -3075.54], [538.89, -3066.61], [548.84, -3074.31], [552.28, -3070.7], [557.26, -3074.55], [566.54, -3064.67], [544.6, -3044.75], [540.34, -3043.07], [537.02, -3042.98], [535.06, -3043.11], [531.48, -3044.96], [512.86, -3066.85]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.648, "pop": 0, "jobs": 648}}, {"shape": {"outer": [[-2054.15, -902.2], [-2054.53, -911.24], [-2036.54, -911.98], [-2036.17, -902.95], [-2054.15, -902.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2053.28, -889.79], [-2053.68, -898.53], [-2038.96, -899.21], [-2038.93, -898.44], [-2036.53, -898.55], [-2036.19, -891.18], [-2038.59, -891.07], [-2038.56, -890.47], [-2053.28, -889.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1828.56, -904.55], [-1828.81, -913.76], [-1828.21, -913.78], [-1828.26, -915.8], [-1821.18, -916.0], [-1821.13, -913.98], [-1820.03, -914.01], [-1819.77, -904.81], [-1820.46, -904.79], [-1820.39, -902.24], [-1827.52, -902.04], [-1827.6, -904.58], [-1828.56, -904.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1787.85, -880.95], [-1777.44, -881.25], [-1777.46, -882.09], [-1775.34, -882.15], [-1775.6, -891.21], [-1777.72, -891.15], [-1777.75, -892.1], [-1788.16, -891.8], [-1788.15, -891.44], [-1789.32, -891.41], [-1789.03, -881.5], [-1787.87, -881.54], [-1787.85, -880.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2207.53, -904.05], [-2203.71, -908.47], [-2196.53, -902.32], [-2200.34, -897.89], [-2207.53, -904.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1949.08, -890.92], [-1949.21, -897.16], [-1941.41, -897.33], [-1941.28, -891.07], [-1949.08, -890.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2187.82, -896.76], [-2190.99, -899.31], [-2195.47, -893.75], [-2192.29, -891.2], [-2187.82, -896.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2147.81, -898.85], [-2148.09, -908.04], [-2135.76, -908.42], [-2135.47, -899.24], [-2147.81, -898.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2285.54, -867.68], [-2282.53, -865.03], [-2277.36, -870.86], [-2280.37, -873.52], [-2285.54, -867.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1803.77, -878.66], [-1795.87, -878.86], [-1796.12, -888.4], [-1804.03, -888.2], [-1803.77, -878.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1918.36, -892.23], [-1918.15, -883.46], [-1903.63, -883.82], [-1903.84, -892.59], [-1918.36, -892.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1950.6, -901.98], [-1950.84, -912.97], [-1944.14, -913.11], [-1943.9, -902.11], [-1950.6, -901.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2281.98, -864.32], [-2276.65, -870.33], [-2271.61, -865.89], [-2276.94, -859.87], [-2281.98, -864.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2237.13, -851.97], [-2229.35, -849.47], [-2226.65, -847.12], [-2219.88, -854.69], [-2238.76, -870.78], [-2237.13, -851.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-1874.74, -898.29], [-1861.89, -898.62], [-1862.02, -903.76], [-1864.89, -903.69], [-1865.19, -915.71], [-1875.16, -915.47], [-1874.74, -898.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-1792.94, -906.35], [-1793.1, -916.96], [-1787.79, -917.05], [-1787.81, -917.92], [-1778.2, -918.06], [-1778.18, -917.19], [-1772.39, -917.28], [-1772.22, -906.67], [-1792.94, -906.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-2272.41, -892.11], [-2279.42, -883.9], [-2275.68, -880.74], [-2274.81, -881.76], [-2271.89, -879.29], [-2265.02, -887.33], [-2267.69, -889.59], [-2268.42, -888.74], [-2272.41, -892.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1940.74, -902.56], [-1940.91, -910.45], [-1937.51, -910.52], [-1937.53, -911.38], [-1934.99, -911.43], [-1934.98, -910.57], [-1932.13, -910.64], [-1931.96, -902.77], [-1940.74, -902.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2222.56, -903.5], [-2230.03, -895.0], [-2223.67, -889.44], [-2216.2, -897.95], [-2219.31, -900.66], [-2218.63, -901.44], [-2220.41, -903.0], [-2221.1, -902.22], [-2222.56, -903.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1918.4, -900.52], [-1918.71, -911.49], [-1906.62, -911.84], [-1906.52, -908.13], [-1905.02, -908.17], [-1904.91, -904.56], [-1906.41, -904.52], [-1906.31, -900.87], [-1918.4, -900.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2269.95, -876.12], [-2263.77, -883.19], [-2262.25, -881.88], [-2260.52, -883.86], [-2255.56, -879.57], [-2257.35, -877.52], [-2256.87, -877.11], [-2263.0, -870.08], [-2269.95, -876.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2211.15, -881.17], [-2205.32, -876.09], [-2199.7, -882.49], [-2200.26, -882.98], [-2197.9, -885.67], [-2202.68, -889.84], [-2205.05, -887.14], [-2205.53, -887.56], [-2211.15, -881.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1445.61, -1799.77], [-1441.08, -1807.65], [-1436.43, -1804.98], [-1434.41, -1808.48], [-1428.09, -1804.88], [-1427.11, -1806.58], [-1422.6, -1804.01], [-1426.47, -1797.28], [-1427.88, -1798.09], [-1428.99, -1796.14], [-1431.26, -1797.43], [-1432.0, -1796.13], [-1437.74, -1799.42], [-1439.54, -1796.31], [-1445.61, -1799.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1445.8, -1819.79], [-1442.25, -1826.33], [-1435.39, -1822.64], [-1438.95, -1816.09], [-1445.8, -1819.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1413.45, -1844.76], [-1409.08, -1852.44], [-1403.39, -1849.23], [-1404.54, -1847.2], [-1400.29, -1844.81], [-1403.51, -1839.15], [-1413.45, -1844.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1418.12, -1834.22], [-1410.75, -1830.22], [-1409.16, -1833.12], [-1407.89, -1832.44], [-1405.96, -1835.96], [-1407.22, -1836.65], [-1406.28, -1838.36], [-1413.66, -1842.37], [-1418.12, -1834.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1434.5, -1815.24], [-1430.34, -1823.25], [-1418.69, -1817.24], [-1418.92, -1816.82], [-1416.75, -1815.69], [-1418.6, -1812.1], [-1417.36, -1811.47], [-1419.43, -1807.49], [-1434.5, -1815.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1473.08, -1667.52], [-1480.15, -1667.29], [-1480.13, -1666.75], [-1486.26, -1666.55], [-1486.39, -1670.27], [-1492.97, -1670.07], [-1493.74, -1694.84], [-1473.96, -1695.46], [-1473.08, -1667.52]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.343, "pop": 0, "jobs": 343}}, {"shape": {"outer": [[72.05, 333.65], [82.53, 343.07], [85.23, 340.09], [84.06, 339.05], [86.65, 336.17], [77.34, 327.8], [72.05, 333.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1521.05, -1342.64], [-1536.1, -1333.46], [-1535.78, -1322.39], [-1520.65, -1331.66], [-1521.05, -1342.64]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.109, "pop": 0, "jobs": 109}}, {"shape": {"outer": [[436.07, 73.25], [422.98, 61.63], [461.4, 18.65], [474.5, 30.27], [436.07, 73.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.808, "pop": 404, "jobs": 0}}, {"shape": {"outer": [[269.3, 6.05], [255.79, 20.65], [266.01, 30.05], [272.46, 23.08], [274.94, 25.36], [282.0, 17.74], [269.3, 6.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[-417.68, -871.93], [-380.27, -913.37], [-378.0, -915.88], [-365.71, -904.87], [-405.38, -860.91], [-417.68, -871.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.782, "pop": 391, "jobs": 0}}, {"shape": {"outer": [[1612.2, 2430.63], [1673.03, 2423.94], [1705.24, 2724.4], [1676.38, 2727.82], [1676.83, 2735.62], [1683.47, 2735.43], [1685.19, 2762.58], [1678.31, 2763.01], [1678.8, 2771.99], [1692.32, 2771.37], [1691.37, 2762.88], [1709.39, 2761.9], [1722.31, 2883.59], [1702.38, 2884.16], [1700.92, 2857.47], [1633.38, 2861.74], [1632.76, 2848.03], [1633.65, 2847.5], [1632.56, 2827.31], [1620.51, 2828.08], [1618.12, 2774.19], [1643.19, 2772.96], [1641.51, 2737.23], [1669.3, 2736.02], [1668.94, 2728.56], [1644.38, 2731.27], [1639.13, 2683.16], [1626.63, 2684.52], [1624.89, 2669.05], [1622.02, 2669.13], [1621.44, 2664.13], [1624.53, 2663.93], [1622.71, 2647.57], [1635.06, 2646.23], [1612.2, 2430.63]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 18617}}, {"shape": {"outer": [[-1815.74, -1063.77], [-1792.04, -1064.2], [-1792.28, -1077.7], [-1800.5, -1077.55], [-1800.53, -1078.63], [-1807.57, -1078.5], [-1807.55, -1077.41], [-1815.98, -1077.26], [-1815.74, -1063.77]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[-497.05, -2131.11], [-480.94, -2133.12], [-482.16, -2145.13], [-498.4, -2142.93], [-497.05, -2131.11]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-471.36, -2118.27], [-481.52, -2116.87], [-483.12, -2131.03], [-473.33, -2132.76], [-471.36, -2118.27]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2321.21, -178.81], [-2268.54, -180.86], [-2267.73, -160.29], [-2266.9, -139.06], [-2286.23, -138.31], [-2319.82, -137.01], [-2320.4, -152.08], [-2320.93, -152.07], [-2321.4, -164.04], [-2320.64, -164.07], [-2321.21, -178.81]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1419}}, {"shape": {"outer": [[-1709.08, -297.77], [-1733.17, -296.7], [-1732.47, -281.13], [-1723.44, -281.53], [-1722.88, -269.0], [-1724.39, -268.93], [-1724.26, -266.12], [-1728.63, -265.92], [-1728.24, -257.18], [-1724.14, -257.37], [-1723.9, -252.09], [-1707.08, -252.84], [-1709.08, -297.77]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.566, "pop": 0, "jobs": 566}}, {"shape": {"outer": [[-1706.5, -298.8], [-1678.02, -300.38], [-1677.73, -293.78], [-1677.22, -293.8], [-1677.2, -293.4], [-1666.35, -293.68], [-1664.64, -264.55], [-1674.03, -264.06], [-1671.11, -261.42], [-1675.04, -257.51], [-1674.96, -254.68], [-1682.42, -254.46], [-1682.35, -252.66], [-1697.21, -252.06], [-1697.24, -253.03], [-1699.86, -253.01], [-1700.82, -277.18], [-1705.72, -277.04], [-1706.5, -298.8]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1014}}, {"shape": {"outer": [[382.64, 54.26], [367.77, 70.22], [366.98, 69.49], [359.19, 77.85], [361.79, 80.25], [344.33, 99.0], [352.7, 106.74], [356.17, 103.02], [361.03, 97.8], [366.9, 91.49], [369.34, 88.87], [371.02, 87.07], [369.08, 85.27], [370.58, 83.67], [374.13, 79.86], [375.71, 78.15], [376.52, 78.91], [380.09, 75.07], [383.9, 70.99], [387.75, 66.84], [390.03, 64.4], [391.68, 62.63], [382.64, 54.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.564, "pop": 282, "jobs": 0}}, {"shape": {"outer": [[411.14, 75.38], [409.95, 76.49], [409.56, 78.15], [397.73, 90.63], [419.62, 110.12], [419.68, 112.49], [422.64, 112.48], [425.17, 115.0], [438.53, 100.6], [435.49, 97.74], [435.64, 95.37], [433.27, 95.58], [427.11, 89.58], [427.67, 88.92], [425.67, 87.03], [425.25, 87.48], [413.93, 77.32], [413.98, 76.45], [413.01, 75.33], [411.14, 75.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.606, "pop": 303, "jobs": 0}}, {"shape": {"outer": [[429.46, 134.7], [409.03, 157.26], [426.8, 173.24], [447.23, 150.68], [429.46, 134.7]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.465, "pop": 0, "jobs": 465}}, {"shape": {"outer": [[249.97, 14.8], [233.59, -0.02], [267.2, -36.91], [282.98, -22.65], [284.84, -20.97], [279.97, -15.63], [280.82, -14.86], [278.21, -12.0], [276.11, -13.89], [249.97, 14.8]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.72, "pop": 0, "jobs": 720}}, {"shape": {"outer": [[-1158.31, -62.61], [-1157.9, -54.16], [-1157.05, -36.51], [-1156.94, -34.73], [-1156.82, -32.24], [-1156.7, -29.78], [-1164.0, -29.42], [-1164.12, -31.88], [-1164.14, -32.37], [-1166.01, -32.28], [-1170.47, -32.06], [-1170.45, -31.56], [-1177.34, -31.22], [-1177.46, -33.74], [-1178.68, -58.57], [-1179.63, -58.52], [-1180.65, -58.48], [-1180.85, -62.52], [-1180.87, -63.05], [-1180.69, -63.36], [-1180.36, -63.49], [-1179.55, -63.54], [-1159.09, -64.53], [-1159.05, -63.75], [-1159.0, -62.58], [-1158.31, -62.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.55, "pop": 275, "jobs": 0}}, {"shape": {"outer": [[-1158.31, -62.61], [-1157.26, -62.66], [-1152.21, -62.91], [-1151.79, -54.3], [-1150.88, -35.3], [-1154.46, -35.13], [-1155.07, -35.1], [-1155.14, -36.6], [-1157.05, -36.51], [-1157.9, -54.16], [-1158.31, -62.61]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.046, "pop": 0, "jobs": 46}}, {"shape": {"outer": [[-1152.21, -62.91], [-1150.33, -62.98], [-1148.27, -63.07], [-1139.79, -63.48], [-1138.02, -63.57], [-1137.19, -46.27], [-1136.41, -30.09], [-1154.17, -29.24], [-1154.46, -35.13], [-1150.88, -35.3], [-1151.79, -54.3], [-1152.21, -62.91]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.278, "pop": 0, "jobs": 278}}, {"shape": {"outer": [[-1117.98, -64.53], [-1116.79, -64.58], [-1112.37, -64.79], [-1110.94, -64.85], [-1108.41, -64.97], [-1106.11, -65.07], [-1105.08, -65.12], [-1104.16, -65.16], [-1098.85, -65.4], [-1097.53, -65.46], [-1097.22, -58.79], [-1098.37, -58.74], [-1097.56, -41.07], [-1103.05, -40.83], [-1104.6, -40.75], [-1104.5, -37.67], [-1104.42, -35.97], [-1109.61, -35.73], [-1115.11, -35.47], [-1115.16, -36.47], [-1116.27, -36.42], [-1116.44, -40.11], [-1115.2, -40.17], [-1116.09, -59.66], [-1117.75, -59.59], [-1117.98, -64.53]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.526, "pop": 263, "jobs": 0}}, {"shape": {"outer": [[-1097.53, -65.46], [-1096.79, -65.43], [-1095.97, -65.47], [-1096.03, -66.91], [-1093.04, -67.06], [-1091.49, -67.14], [-1087.3, -67.34], [-1087.23, -65.92], [-1086.78, -65.94], [-1086.3, -56.89], [-1084.98, -31.62], [-1090.43, -31.34], [-1095.78, -31.05], [-1096.11, -37.9], [-1097.22, -58.79], [-1097.53, -65.46]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.402, "pop": 201, "jobs": 0}}, {"shape": {"outer": [[-1135.61, -46.35], [-1136.24, -60.21], [-1136.75, -60.19], [-1136.91, -63.67], [-1128.32, -64.07], [-1127.91, -64.08], [-1121.75, -64.35], [-1117.98, -64.53], [-1117.75, -59.59], [-1116.09, -59.66], [-1115.2, -40.17], [-1116.44, -40.11], [-1116.27, -36.42], [-1116.23, -35.41], [-1115.83, -26.74], [-1122.22, -26.46], [-1123.14, -26.41], [-1124.06, -26.38], [-1126.2, -26.28], [-1126.86, -26.25], [-1132.88, -25.98], [-1134.69, -25.89], [-1136.23, -25.83], [-1136.35, -28.64], [-1136.41, -30.09], [-1137.19, -46.27], [-1136.34, -46.32], [-1135.61, -46.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.616, "pop": 308, "jobs": 0}}, {"shape": {"outer": [[158.64, -367.93], [161.93, -371.57], [167.34, -377.53], [171.34, -381.95], [184.06, -396.06], [196.22, -384.36], [221.32, -361.6], [206.12, -344.05], [199.52, -337.37], [196.09, -333.54], [194.09, -335.3], [178.97, -348.52], [176.83, -346.11], [175.43, -346.86], [174.16, -347.83], [172.84, -349.32], [171.67, -351.3], [171.02, -352.82], [170.59, -354.45], [170.42, -355.56], [171.04, -356.31], [168.77, -358.36], [161.67, -365.14], [158.64, -367.93]], "holes": []}, "height": 45.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7155}}, {"shape": {"outer": [[176.83, -346.11], [170.17, -338.52], [174.37, -334.84], [171.1, -331.12], [177.5, -325.53], [180.17, -328.56], [184.67, -324.62], [194.09, -335.3], [178.97, -348.52], [176.83, -346.11]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.177, "pop": 0, "jobs": 177}}, {"shape": {"outer": [[161.67, -365.14], [155.69, -358.67], [152.64, -361.49], [145.74, -354.02], [133.38, -365.37], [153.46, -387.1], [151.11, -389.26], [156.08, -394.65], [156.61, -394.15], [172.56, -411.26], [185.87, -397.92], [184.06, -396.06], [171.34, -381.95], [167.34, -377.53], [161.93, -371.57], [158.64, -367.93], [161.67, -365.14]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.935, "pop": 0, "jobs": 935}}, {"shape": {"outer": [[-9.18, -532.36], [-29.14, -510.35], [-23.96, -505.66], [-9.81, -492.94], [-5.02, -488.64], [-3.77, -487.51], [17.18, -510.61], [15.11, -512.47], [14.18, -511.45], [8.92, -516.18], [10.31, -517.71], [-4.97, -531.46], [-6.42, -529.87], [-9.18, -532.36]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.681, "pop": 0, "jobs": 681}}, {"shape": {"outer": [[145.87, -105.79], [145.13, -104.96], [132.89, -91.02], [143.63, -81.48], [156.53, -95.63], [145.87, -105.79]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.158, "pop": 0, "jobs": 158}}, {"shape": {"outer": [[132.89, -91.02], [127.55, -95.69], [138.06, -107.65], [139.97, -109.83], [145.13, -104.96], [132.89, -91.02]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.111, "pop": 0, "jobs": 111}}, {"shape": {"outer": [[104.59, -89.1], [80.82, -63.11], [106.22, -40.54], [124.43, -60.75], [124.31, -63.55], [127.19, -63.66], [127.0, -69.19], [124.26, -69.18], [124.04, -71.94], [107.9, -86.35], [104.59, -89.1]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.992, "pop": 0, "jobs": 992}}, {"shape": {"outer": [[104.59, -89.1], [70.02, -120.5], [56.21, -104.97], [60.43, -100.98], [58.7, -99.15], [59.33, -98.57], [63.18, -95.13], [65.37, -97.53], [74.8, -88.96], [71.7, -85.58], [70.66, -86.52], [68.05, -83.67], [77.08, -75.46], [75.24, -73.47], [79.08, -69.96], [76.41, -67.03], [80.82, -63.11], [104.59, -89.1]], "holes": []}, "height": 38.1, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3673}}, {"shape": {"outer": [[127.55, -95.69], [121.97, -100.88], [127.72, -107.66], [130.13, -110.39], [134.09, -111.1], [138.06, -107.65], [127.55, -95.69]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[121.97, -100.88], [117.59, -104.6], [120.1, -108.34], [119.97, -110.58], [121.51, -110.68], [120.69, -127.38], [126.73, -127.62], [127.56, -110.97], [127.72, -107.66], [121.97, -100.88]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[148.2, -128.48], [148.92, -108.18], [159.92, -98.52], [167.41, -107.1], [160.88, -112.61], [156.97, -112.59], [156.48, -128.81], [148.2, -128.48]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.304, "pop": 152, "jobs": 0}}, {"shape": {"outer": [[148.2, -128.48], [140.08, -128.16], [140.91, -111.45], [143.37, -111.53], [143.41, -110.22], [148.92, -108.18], [148.2, -128.48]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.083, "pop": 0, "jobs": 83}}, {"shape": {"outer": [[140.91, -111.45], [139.65, -111.38], [127.56, -110.97], [126.73, -127.62], [140.08, -128.16], [140.91, -111.45]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.125, "pop": 0, "jobs": 125}}, {"shape": {"outer": [[117.59, -104.6], [113.49, -108.15], [114.57, -109.91], [113.6, -127.16], [120.69, -127.38], [121.51, -110.68], [119.97, -110.58], [120.1, -108.34], [117.59, -104.6]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[113.6, -127.16], [98.25, -126.54], [97.3, -126.15], [96.8, -125.37], [96.4, -124.42], [96.42, -123.58], [96.75, -122.77], [97.97, -121.5], [113.49, -108.15], [114.57, -109.91], [113.6, -127.16]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[155.0, -179.72], [142.74, -165.94], [143.55, -148.47], [149.55, -148.76], [155.75, -149.05], [155.14, -162.15], [163.83, -171.92], [155.0, -179.72]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.313, "pop": 0, "jobs": 313}}, {"shape": {"outer": [[143.55, -148.47], [118.22, -147.3], [117.1, -171.45], [125.68, -181.05], [142.74, -165.94], [143.55, -148.47]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.378, "pop": 0, "jobs": 378}}, {"shape": {"outer": [[125.68, -181.05], [137.95, -194.81], [155.0, -179.72], [142.74, -165.94], [125.68, -181.05]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 0.588, "pop": 0, "jobs": 588}}, {"shape": {"outer": [[117.1, -171.45], [98.57, -150.32], [100.0, -146.45], [118.22, -147.3], [117.1, -171.45]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.152, "pop": 0, "jobs": 152}}, {"shape": {"outer": [[155.75, -149.05], [164.17, -149.45], [163.65, -160.29], [169.52, -166.91], [163.83, -171.92], [155.14, -162.15], [155.75, -149.05]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.155, "pop": 0, "jobs": 155}}, {"shape": {"outer": [[164.17, -149.45], [184.29, -150.41], [185.11, -150.91], [185.27, -151.45], [185.29, -152.49], [185.04, -153.21], [169.52, -166.91], [163.65, -160.29], [164.17, -149.45]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.246, "pop": 123, "jobs": 0}}, {"shape": {"outer": [[203.63, -161.98], [213.31, -172.85], [210.34, -175.41], [210.88, -176.15], [210.45, -176.78], [219.9, -187.56], [228.08, -180.27], [230.88, -177.76], [228.55, -175.01], [237.12, -165.18], [237.55, -152.65], [216.24, -151.58], [211.22, -155.37], [203.63, -161.98]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.629, "pop": 0, "jobs": 629}}, {"shape": {"outer": [[-220.32, -489.48], [-205.13, -506.56], [-147.9, -454.41], [-163.32, -437.48], [-220.32, -489.48]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1485}}, {"shape": {"outer": [[-146.86, -344.55], [-136.57, -355.49], [-135.31, -337.53], [-137.89, -336.16], [-146.86, -344.55]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.065, "pop": 0, "jobs": 65}}, {"shape": {"outer": [[-146.86, -344.55], [-157.06, -353.91], [-137.61, -374.77], [-136.57, -355.49], [-146.86, -344.55]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.254, "pop": 0, "jobs": 254}}, {"shape": {"outer": [[-157.06, -353.91], [-166.53, -362.63], [-145.03, -385.75], [-139.49, -380.64], [-141.56, -378.42], [-137.61, -374.77], [-157.06, -353.91]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.328, "pop": 0, "jobs": 328}}, {"shape": {"outer": [[-180.22, -375.3], [-159.46, -397.73], [-164.35, -402.23], [-185.11, -379.79], [-180.22, -375.3]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.13, "pop": 0, "jobs": 130}}, {"shape": {"outer": [[-180.22, -375.3], [-175.86, -371.27], [-156.33, -392.35], [-155.06, -393.72], [-159.46, -397.73], [-180.22, -375.3]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.116, "pop": 0, "jobs": 116}}, {"shape": {"outer": [[-175.86, -371.27], [-166.53, -362.63], [-145.03, -385.75], [-150.03, -390.36], [-151.94, -388.3], [-156.33, -392.35], [-175.86, -371.27]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.247, "pop": 0, "jobs": 247}}, {"shape": {"outer": [[-1612.03, -989.94], [-1534.87, -992.1], [-1533.82, -951.61], [-1611.34, -949.55], [-1612.03, -989.94]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2003}}, {"shape": {"outer": [[-833.77, -114.02], [-832.79, -98.57], [-847.55, -97.64], [-849.33, -99.31], [-835.48, -113.91], [-833.77, -114.02]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-820.97, -131.46], [-805.06, -149.7], [-792.48, -138.81], [-806.5, -122.73], [-808.11, -120.88], [-808.7, -120.84], [-820.97, -131.46]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.422, "pop": 211, "jobs": 0}}, {"shape": {"outer": [[-798.46, -121.47], [-798.28, -118.46], [-797.24, -100.79], [-797.9, -100.77], [-798.67, -99.86], [-800.66, -99.73], [-801.49, -100.59], [-803.01, -100.49], [-803.79, -99.53], [-805.84, -99.41], [-806.66, -100.21], [-807.45, -100.16], [-808.65, -119.97], [-808.7, -120.84], [-808.11, -120.88], [-800.7, -121.33], [-798.46, -121.47]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.121, "pop": 0, "jobs": 121}}, {"shape": {"outer": [[-833.93, -116.58], [-826.28, -125.63], [-821.35, -116.93], [-820.62, -115.65], [-819.6, -99.4], [-832.79, -98.57], [-833.77, -114.02], [-833.93, -116.58]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-826.28, -125.63], [-825.58, -126.37], [-825.54, -126.94], [-824.57, -127.95], [-824.02, -128.08], [-823.31, -128.83], [-823.18, -129.4], [-822.32, -130.29], [-821.82, -130.44], [-820.97, -131.46], [-808.7, -120.84], [-808.65, -119.97], [-814.54, -119.6], [-816.48, -117.93], [-816.43, -117.22], [-821.35, -116.93], [-826.28, -125.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2587.74, -591.8], [-2588.06, -601.88], [-2580.0, -602.13], [-2580.02, -602.81], [-2574.79, -602.97], [-2574.76, -602.31], [-2569.11, -602.48], [-2568.82, -593.39], [-2582.8, -592.94], [-2582.77, -591.95], [-2587.74, -591.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2674.58, -832.12], [-2680.49, -831.93], [-2680.52, -833.1], [-2682.57, -833.04], [-2682.93, -843.83], [-2681.48, -843.87], [-2681.72, -851.22], [-2676.86, -851.39], [-2676.62, -844.03], [-2674.98, -844.09], [-2674.58, -832.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2613.48, -354.18], [-2603.58, -354.42], [-2603.67, -358.33], [-2602.63, -359.06], [-2602.69, -361.61], [-2603.78, -362.62], [-2603.89, -367.42], [-2612.8, -367.21], [-2612.58, -358.17], [-2613.58, -358.15], [-2613.48, -354.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2617.81, -692.81], [-2622.12, -692.66], [-2622.09, -691.72], [-2627.18, -691.54], [-2627.91, -712.95], [-2618.5, -713.26], [-2618.21, -704.84], [-2616.3, -704.9], [-2616.18, -701.3], [-2618.09, -701.24], [-2617.81, -692.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-2603.9, -335.01], [-2612.46, -334.8], [-2612.9, -351.83], [-2604.33, -352.04], [-2604.32, -351.39], [-2601.14, -351.48], [-2600.98, -345.43], [-2602.46, -345.4], [-2602.32, -339.9], [-2604.02, -339.85], [-2603.9, -335.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2578.08, -501.69], [-2578.13, -503.26], [-2580.28, -503.2], [-2580.4, -507.82], [-2578.26, -507.89], [-2578.31, -509.77], [-2564.94, -510.16], [-2564.85, -507.02], [-2561.53, -507.11], [-2561.39, -502.16], [-2578.08, -501.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2612.49, -316.96], [-2612.67, -322.4], [-2612.02, -322.42], [-2612.26, -329.39], [-2599.97, -329.8], [-2599.83, -325.38], [-2592.72, -325.62], [-2592.5, -318.88], [-2599.6, -318.64], [-2599.57, -317.39], [-2612.49, -316.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-2581.14, -440.02], [-2581.22, -443.79], [-2582.23, -443.77], [-2582.31, -447.19], [-2581.3, -447.22], [-2581.37, -449.62], [-2563.41, -450.05], [-2563.27, -444.42], [-2561.75, -444.45], [-2561.67, -441.46], [-2563.2, -441.43], [-2563.18, -440.45], [-2581.14, -440.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2579.52, -471.18], [-2566.58, -471.48], [-2566.71, -477.41], [-2564.04, -477.47], [-2564.23, -486.02], [-2566.91, -485.95], [-2567.03, -491.28], [-2579.97, -490.99], [-2579.89, -487.22], [-2582.63, -487.16], [-2582.34, -474.54], [-2579.59, -474.6], [-2579.52, -471.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.252, "pop": 126, "jobs": 0}}, {"shape": {"outer": [[-2783.38, -829.22], [-2783.73, -839.23], [-2777.07, -839.45], [-2777.17, -842.24], [-2772.22, -842.4], [-2771.95, -834.4], [-2772.8, -834.36], [-2772.64, -829.58], [-2775.8, -829.47], [-2775.73, -827.54], [-2780.05, -827.39], [-2780.12, -829.33], [-2783.38, -829.22]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2575.86, -511.57], [-2564.1, -511.94], [-2564.12, -512.51], [-2561.46, -512.59], [-2561.59, -516.5], [-2564.25, -516.43], [-2564.68, -530.3], [-2561.98, -530.37], [-2562.1, -534.24], [-2564.8, -534.16], [-2564.82, -534.84], [-2576.58, -534.47], [-2575.86, -511.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.232, "pop": 116, "jobs": 0}}, {"shape": {"outer": [[-2581.36, -664.23], [-2572.52, -664.5], [-2572.76, -672.36], [-2570.79, -672.41], [-2570.89, -675.45], [-2572.86, -675.4], [-2572.88, -676.2], [-2581.72, -675.93], [-2581.68, -674.8], [-2584.02, -674.72], [-2583.83, -668.9], [-2581.5, -668.98], [-2581.36, -664.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2746.04, -782.27], [-2740.62, -782.46], [-2740.65, -782.98], [-2738.54, -783.05], [-2738.57, -783.77], [-2734.93, -783.9], [-2735.29, -794.11], [-2739.58, -793.96], [-2739.66, -796.41], [-2745.94, -796.19], [-2745.85, -793.73], [-2746.45, -793.72], [-2746.04, -782.27]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2751.98, -830.66], [-2752.22, -840.87], [-2751.3, -840.89], [-2751.33, -842.39], [-2745.48, -842.53], [-2745.45, -841.03], [-2742.12, -841.11], [-2741.87, -830.88], [-2742.81, -830.87], [-2742.75, -828.62], [-2751.22, -828.43], [-2751.27, -830.68], [-2751.98, -830.66]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2620.11, -600.72], [-2608.78, -601.02], [-2608.8, -601.89], [-2602.09, -602.07], [-2602.27, -608.81], [-2608.97, -608.64], [-2609.05, -611.63], [-2620.39, -611.34], [-2620.36, -610.31], [-2622.12, -610.26], [-2621.93, -602.75], [-2620.16, -602.79], [-2620.11, -600.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2586.96, -374.31], [-2587.18, -381.44], [-2583.34, -381.56], [-2583.28, -379.81], [-2581.21, -379.87], [-2581.48, -388.95], [-2572.33, -389.23], [-2572.26, -387.14], [-2567.65, -387.27], [-2567.54, -383.61], [-2566.67, -383.63], [-2566.54, -379.34], [-2567.41, -379.31], [-2567.28, -374.9], [-2586.96, -374.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[-2575.65, -354.28], [-2565.49, -354.64], [-2565.66, -359.51], [-2563.84, -359.57], [-2563.96, -362.95], [-2565.78, -362.89], [-2565.95, -367.44], [-2568.82, -367.33], [-2568.96, -371.23], [-2576.25, -370.98], [-2575.99, -363.8], [-2577.47, -363.75], [-2577.16, -355.21], [-2575.69, -355.26], [-2575.65, -354.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2575.3, -339.87], [-2570.27, -340.02], [-2570.19, -337.29], [-2566.48, -337.4], [-2566.56, -340.12], [-2565.25, -340.16], [-2565.33, -342.98], [-2564.02, -343.02], [-2564.13, -346.72], [-2565.44, -346.68], [-2565.52, -349.57], [-2567.16, -349.52], [-2567.24, -352.35], [-2578.16, -352.04], [-2578.06, -348.77], [-2575.55, -348.84], [-2575.3, -339.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2602.95, -672.39], [-2597.17, -672.55], [-2597.51, -684.41], [-2603.29, -684.25], [-2602.95, -672.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2579.55, -411.72], [-2579.99, -422.05], [-2563.12, -422.76], [-2562.69, -412.42], [-2579.55, -411.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2623.28, -514.99], [-2614.88, -515.27], [-2615.35, -529.53], [-2623.75, -529.25], [-2623.28, -514.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2738.2, -771.77], [-2732.78, -771.96], [-2733.01, -778.64], [-2738.43, -778.47], [-2738.2, -771.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2613.71, -691.03], [-2613.87, -696.68], [-2607.92, -696.85], [-2607.76, -691.2], [-2613.71, -691.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2579.2, -743.3], [-2579.45, -751.96], [-2570.18, -752.22], [-2569.93, -743.57], [-2579.2, -743.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2691.21, -854.86], [-2691.42, -862.26], [-2685.58, -862.43], [-2685.37, -855.03], [-2691.21, -854.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2587.67, -556.91], [-2593.4, -556.74], [-2593.72, -568.01], [-2587.99, -568.17], [-2587.67, -556.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2656.37, -830.75], [-2651.87, -830.91], [-2651.83, -829.68], [-2649.01, -829.79], [-2649.05, -830.69], [-2648.11, -830.72], [-2648.76, -847.78], [-2657.01, -847.48], [-2656.37, -830.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2621.44, -486.96], [-2621.72, -495.66], [-2603.37, -496.25], [-2603.1, -487.54], [-2621.44, -486.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2765.87, -830.58], [-2766.19, -837.81], [-2765.95, -837.83], [-2766.04, -839.78], [-2761.8, -839.96], [-2761.72, -838.01], [-2755.48, -838.28], [-2755.16, -831.06], [-2765.87, -830.58]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2585.0, -265.17], [-2579.33, -265.33], [-2579.49, -271.09], [-2585.17, -270.93], [-2585.0, -265.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2705.78, -862.47], [-2710.5, -862.24], [-2710.79, -868.34], [-2706.06, -868.55], [-2705.78, -862.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2746.01, -846.7], [-2746.09, -853.23], [-2739.53, -853.3], [-2739.46, -846.78], [-2746.01, -846.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2628.57, -753.64], [-2628.66, -757.65], [-2621.73, -757.8], [-2621.64, -753.79], [-2628.57, -753.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2609.0, -512.14], [-2603.06, -512.35], [-2603.33, -519.54], [-2609.26, -519.32], [-2609.0, -512.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2585.45, -770.46], [-2585.21, -762.14], [-2573.69, -762.47], [-2573.93, -770.79], [-2585.45, -770.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2618.52, -450.66], [-2610.77, -450.82], [-2610.95, -460.12], [-2618.72, -459.96], [-2618.52, -450.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2585.46, -774.27], [-2585.73, -782.5], [-2574.26, -782.88], [-2573.99, -774.65], [-2585.46, -774.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2665.25, -790.92], [-2654.12, -791.19], [-2654.38, -801.95], [-2665.51, -801.67], [-2665.25, -790.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2774.1, -734.86], [-2765.53, -735.24], [-2765.96, -745.29], [-2774.54, -744.93], [-2774.1, -734.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2576.04, -287.95], [-2576.38, -297.27], [-2558.43, -297.91], [-2558.1, -288.59], [-2576.04, -287.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2771.61, -752.89], [-2771.85, -762.35], [-2761.15, -762.63], [-2760.9, -753.17], [-2771.61, -752.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2759.57, -735.28], [-2759.83, -742.69], [-2748.96, -743.06], [-2748.71, -735.64], [-2759.57, -735.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2588.4, -578.83], [-2593.97, -578.67], [-2594.13, -584.17], [-2588.56, -584.33], [-2588.4, -578.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2732.76, -853.93], [-2727.2, -854.06], [-2727.36, -861.01], [-2732.92, -860.87], [-2732.76, -853.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2671.99, -830.11], [-2663.3, -830.24], [-2663.48, -842.75], [-2664.79, -842.73], [-2664.81, -844.09], [-2665.66, -844.07], [-2665.72, -848.58], [-2671.68, -848.49], [-2671.6, -843.31], [-2671.08, -843.33], [-2671.06, -842.45], [-2672.19, -842.44], [-2671.99, -830.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2599.45, -476.53], [-2592.0, -476.66], [-2592.17, -485.97], [-2599.61, -485.84], [-2599.45, -476.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2668.27, -853.22], [-2668.39, -860.43], [-2661.09, -860.57], [-2660.96, -853.36], [-2668.27, -853.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2621.34, -475.75], [-2621.5, -484.38], [-2609.65, -484.61], [-2609.49, -475.98], [-2621.34, -475.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2709.86, -829.29], [-2699.33, -829.55], [-2699.73, -846.19], [-2710.25, -845.94], [-2709.86, -829.29]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2605.97, -767.48], [-2606.08, -771.44], [-2600.13, -771.61], [-2600.02, -767.65], [-2605.97, -767.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2607.28, -778.71], [-2607.42, -783.72], [-2600.48, -783.92], [-2600.34, -778.91], [-2607.28, -778.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2772.92, -766.09], [-2763.47, -766.21], [-2763.61, -778.72], [-2773.06, -778.61], [-2772.92, -766.09]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2619.6, -552.73], [-2619.98, -563.1], [-2601.97, -563.76], [-2601.59, -553.4], [-2619.6, -552.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-2769.17, -873.82], [-2769.42, -885.03], [-2768.74, -885.05], [-2768.8, -887.94], [-2761.19, -888.11], [-2761.12, -885.21], [-2760.44, -885.23], [-2760.21, -875.5], [-2764.37, -875.41], [-2764.33, -873.93], [-2769.17, -873.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2599.78, -556.18], [-2600.01, -562.22], [-2594.38, -562.44], [-2594.15, -556.4], [-2599.78, -556.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2600.06, -784.31], [-2596.06, -784.38], [-2596.18, -790.21], [-2600.17, -790.13], [-2600.06, -784.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2618.45, -437.98], [-2618.75, -448.32], [-2606.24, -448.68], [-2605.94, -438.34], [-2618.45, -437.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2621.81, -615.66], [-2622.08, -624.74], [-2603.29, -625.28], [-2603.03, -616.2], [-2621.81, -615.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2599.6, -772.12], [-2599.73, -776.69], [-2592.74, -776.89], [-2592.61, -772.32], [-2599.6, -772.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2698.95, -785.48], [-2699.39, -798.33], [-2690.11, -798.65], [-2689.67, -785.81], [-2698.95, -785.48]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2618.83, -462.75], [-2607.51, -462.95], [-2607.69, -473.02], [-2619.01, -472.81], [-2618.83, -462.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2764.25, -787.64], [-2764.48, -795.8], [-2774.21, -795.52], [-2773.97, -787.36], [-2764.25, -787.64]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2577.51, -304.63], [-2577.79, -315.67], [-2565.22, -315.99], [-2564.95, -304.95], [-2577.51, -304.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2621.31, -590.24], [-2621.52, -597.56], [-2605.95, -598.01], [-2605.81, -593.09], [-2608.82, -593.0], [-2608.75, -590.6], [-2621.31, -590.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2728.42, -782.57], [-2722.47, -782.8], [-2722.58, -785.4], [-2719.31, -785.54], [-2719.78, -797.19], [-2729.0, -796.82], [-2728.42, -782.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2620.28, -626.92], [-2609.87, -627.33], [-2609.99, -630.26], [-2607.28, -630.37], [-2607.58, -637.82], [-2620.69, -637.3], [-2620.28, -626.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2620.13, -654.75], [-2620.23, -658.67], [-2623.09, -658.6], [-2623.21, -662.91], [-2610.96, -663.24], [-2610.74, -655.01], [-2620.13, -654.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2564.13, -318.97], [-2573.78, -318.76], [-2574.15, -334.5], [-2565.06, -334.71], [-2564.98, -331.38], [-2564.42, -331.38], [-2564.13, -318.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2621.39, -498.44], [-2621.68, -508.61], [-2610.0, -508.95], [-2609.75, -500.41], [-2611.39, -500.36], [-2611.34, -498.73], [-2621.39, -498.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2634.75, -829.28], [-2635.27, -844.17], [-2624.91, -844.53], [-2624.46, -832.04], [-2625.86, -831.99], [-2625.77, -829.59], [-2634.75, -829.28]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2606.55, -784.24], [-2600.23, -784.37], [-2600.35, -790.09], [-2604.29, -790.0], [-2604.25, -787.67], [-2606.62, -787.61], [-2606.55, -784.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2621.28, -788.6], [-2626.2, -788.41], [-2626.31, -791.28], [-2629.74, -791.16], [-2630.14, -801.88], [-2621.77, -802.19], [-2621.28, -788.6]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2624.51, -678.96], [-2624.72, -683.63], [-2621.84, -683.76], [-2622.04, -688.35], [-2608.67, -688.96], [-2608.25, -679.69], [-2624.51, -678.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2572.73, -790.14], [-2583.42, -789.88], [-2583.76, -803.52], [-2570.98, -803.83], [-2570.86, -799.27], [-2572.96, -799.23], [-2572.73, -790.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2617.27, -739.22], [-2617.72, -751.71], [-2594.27, -752.54], [-2593.9, -742.24], [-2608.18, -741.73], [-2608.11, -739.55], [-2617.27, -739.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[-2622.93, -640.95], [-2623.17, -649.59], [-2605.7, -650.09], [-2605.59, -646.33], [-2606.63, -646.3], [-2606.49, -641.42], [-2622.93, -640.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2627.3, -758.69], [-2617.64, -758.97], [-2617.74, -762.67], [-2615.83, -762.72], [-2615.97, -767.57], [-2617.88, -767.51], [-2617.92, -768.88], [-2627.59, -768.6], [-2627.3, -758.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2713.02, -828.88], [-2718.08, -828.75], [-2718.15, -831.35], [-2720.16, -831.29], [-2720.14, -830.6], [-2722.79, -830.52], [-2723.09, -841.84], [-2718.05, -841.97], [-2718.13, -844.49], [-2713.45, -844.63], [-2713.02, -828.88]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2612.84, -795.42], [-2613.11, -803.1], [-2603.71, -803.43], [-2603.45, -795.75], [-2606.29, -795.65], [-2606.19, -792.8], [-2610.83, -792.64], [-2610.93, -795.49], [-2612.84, -795.42]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2582.63, -610.95], [-2582.98, -622.48], [-2571.57, -622.83], [-2571.52, -621.2], [-2568.27, -621.3], [-2568.0, -612.54], [-2571.25, -612.45], [-2571.21, -611.3], [-2582.63, -610.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2589.45, -514.87], [-2590.0, -533.1], [-2579.59, -533.42], [-2579.04, -515.18], [-2580.07, -515.15], [-2580.02, -513.53], [-2583.63, -513.41], [-2583.67, -515.04], [-2589.45, -514.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2619.46, -425.93], [-2619.72, -434.9], [-2601.98, -435.41], [-2601.92, -433.18], [-2599.13, -433.26], [-2599.0, -428.58], [-2601.78, -428.5], [-2601.72, -426.44], [-2619.46, -425.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-2589.08, -676.55], [-2589.37, -683.45], [-2592.96, -683.3], [-2593.12, -687.22], [-2589.54, -687.37], [-2589.58, -688.38], [-2570.81, -689.16], [-2570.3, -677.34], [-2589.08, -676.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-2581.83, -451.55], [-2582.0, -456.49], [-2582.91, -456.46], [-2583.05, -460.7], [-2582.15, -460.74], [-2582.18, -461.59], [-2563.57, -462.25], [-2563.21, -452.21], [-2581.83, -451.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-2760.0, -783.95], [-2750.29, -784.27], [-2750.35, -786.02], [-2747.52, -786.12], [-2747.74, -792.91], [-2750.58, -792.82], [-2750.67, -795.64], [-2760.37, -795.32], [-2760.0, -783.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2694.94, -830.41], [-2695.18, -845.8], [-2692.06, -845.85], [-2692.08, -847.12], [-2687.5, -847.2], [-2687.48, -845.92], [-2686.58, -845.94], [-2686.34, -830.55], [-2694.94, -830.41]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2607.04, -564.42], [-2619.49, -564.0], [-2619.61, -567.26], [-2618.46, -567.29], [-2618.75, -575.95], [-2608.53, -576.29], [-2608.3, -569.39], [-2607.21, -569.42], [-2607.04, -564.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2597.56, -792.55], [-2597.93, -805.28], [-2588.22, -805.56], [-2587.85, -792.83], [-2592.6, -792.69], [-2592.56, -791.33], [-2596.6, -791.21], [-2596.63, -792.58], [-2597.56, -792.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2609.89, -302.12], [-2601.53, -302.31], [-2601.66, -307.75], [-2598.58, -307.82], [-2598.71, -313.0], [-2612.25, -312.68], [-2612.1, -306.2], [-2609.99, -306.25], [-2609.89, -302.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2619.04, -741.11], [-2620.62, -741.08], [-2620.55, -738.28], [-2625.36, -738.17], [-2625.42, -740.97], [-2628.74, -740.89], [-2628.97, -750.64], [-2619.26, -750.87], [-2619.04, -741.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2621.27, -676.7], [-2621.02, -665.81], [-2609.88, -666.08], [-2609.96, -669.46], [-2607.64, -669.52], [-2607.75, -673.98], [-2610.06, -673.93], [-2610.13, -676.97], [-2621.27, -676.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2647.02, -828.73], [-2647.4, -838.99], [-2646.57, -839.02], [-2646.78, -844.74], [-2639.72, -845.0], [-2639.54, -840.12], [-2640.79, -840.08], [-2640.77, -839.38], [-2638.36, -839.47], [-2637.97, -829.06], [-2647.02, -828.73]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2713.3, -783.54], [-2709.58, -783.64], [-2709.52, -781.77], [-2703.27, -781.94], [-2703.66, -795.66], [-2709.31, -795.5], [-2709.29, -794.64], [-2713.61, -794.53], [-2713.3, -783.54]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2581.17, -625.53], [-2568.73, -625.89], [-2569.03, -636.51], [-2581.48, -636.15], [-2581.43, -634.35], [-2582.24, -634.33], [-2582.08, -628.62], [-2581.26, -628.64], [-2581.17, -625.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2584.1, -643.44], [-2571.87, -643.86], [-2572.42, -659.91], [-2584.65, -659.49], [-2584.43, -653.1], [-2586.77, -653.02], [-2586.66, -649.76], [-2584.32, -649.84], [-2584.1, -643.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-2627.68, -772.32], [-2627.84, -781.54], [-2617.27, -781.72], [-2617.25, -780.87], [-2615.13, -780.91], [-2615.01, -773.45], [-2617.12, -773.41], [-2617.11, -772.51], [-2627.68, -772.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2739.05, -841.17], [-2738.79, -830.5], [-2728.17, -830.76], [-2728.43, -841.32], [-2730.27, -841.28], [-2730.34, -844.44], [-2736.74, -844.28], [-2736.66, -841.23], [-2739.05, -841.17]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2574.86, -427.31], [-2575.26, -437.34], [-2565.11, -437.74], [-2565.08, -436.91], [-2562.79, -437.0], [-2562.46, -428.51], [-2564.74, -428.43], [-2564.71, -427.72], [-2574.86, -427.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2621.35, -577.37], [-2621.61, -586.1], [-2608.33, -586.48], [-2608.21, -582.56], [-2607.2, -582.59], [-2607.08, -578.35], [-2608.09, -578.32], [-2608.08, -577.76], [-2621.35, -577.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2613.9, -371.89], [-2604.81, -372.19], [-2604.94, -376.16], [-2602.8, -376.24], [-2603.05, -383.83], [-2607.19, -383.7], [-2607.27, -386.33], [-2614.36, -386.11], [-2613.9, -371.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2618.04, -830.45], [-2609.86, -830.72], [-2610.29, -843.61], [-2618.47, -843.34], [-2618.34, -839.42], [-2621.42, -839.32], [-2621.16, -831.37], [-2618.07, -831.47], [-2618.04, -830.45]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2776.26, -854.21], [-2783.99, -854.07], [-2784.02, -855.69], [-2786.54, -855.64], [-2786.71, -864.56], [-2784.19, -864.61], [-2784.2, -865.29], [-2776.47, -865.43], [-2776.26, -854.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2575.6, -259.66], [-2575.7, -263.69], [-2576.99, -263.65], [-2577.08, -267.52], [-2575.81, -267.55], [-2575.83, -268.72], [-2559.25, -269.14], [-2559.02, -260.08], [-2575.6, -259.66]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-2726.2, -847.92], [-2726.45, -854.56], [-2725.9, -854.59], [-2726.07, -859.23], [-2722.08, -859.37], [-2721.92, -854.72], [-2719.46, -854.82], [-2719.21, -848.18], [-2726.2, -847.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2604.73, -831.32], [-2604.95, -839.7], [-2602.61, -839.76], [-2602.67, -841.97], [-2598.58, -842.08], [-2598.52, -839.86], [-2597.68, -839.88], [-2597.46, -831.52], [-2604.73, -831.32]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2602.22, -516.03], [-2602.8, -532.53], [-2593.71, -532.85], [-2593.14, -516.35], [-2594.59, -516.3], [-2594.53, -514.76], [-2600.75, -514.55], [-2600.81, -516.08], [-2602.22, -516.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2666.58, -773.73], [-2666.64, -775.25], [-2668.46, -775.19], [-2668.61, -778.99], [-2666.79, -779.06], [-2666.95, -782.99], [-2656.03, -783.42], [-2655.67, -774.16], [-2666.58, -773.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2599.46, -697.33], [-2608.16, -697.13], [-2608.48, -711.12], [-2607.68, -711.13], [-2607.76, -714.51], [-2601.97, -714.64], [-2601.89, -711.26], [-2599.77, -711.31], [-2599.46, -697.33]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-900.95, -208.23], [-904.83, -211.79], [-911.4, -204.76], [-910.85, -204.34], [-916.1, -198.53], [-918.44, -200.78], [-919.61, -199.62], [-928.81, -207.81], [-927.91, -208.68], [-930.93, -211.15], [-925.11, -218.04], [-932.37, -224.65], [-950.57, -204.41], [-946.93, -200.98], [-948.83, -198.9], [-956.51, -190.48], [-962.64, -183.79], [-984.87, -204.06], [-971.93, -218.17], [-969.02, -221.47], [-958.09, -233.78], [-973.23, -247.91], [-979.24, -253.0], [-971.94, -253.24], [-972.06, -254.89], [-935.88, -256.42], [-935.82, -255.58], [-930.88, -254.9], [-926.16, -253.62], [-921.27, -251.51], [-917.47, -249.33], [-916.43, -250.68], [-886.42, -223.61], [-900.95, -208.23]], "holes": []}, "height": 42.0, "data": {"type": "residential", "density": 1.0, "pop": 7705, "jobs": 0}}, {"shape": {"outer": [[-694.32, -105.76], [-676.64, -106.63], [-677.09, -115.31], [-677.78, -128.7], [-677.91, -131.33], [-695.57, -130.43], [-694.32, -105.76]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.28, "pop": 0, "jobs": 280}}, {"shape": {"outer": [[-676.64, -106.63], [-666.84, -107.05], [-667.77, -123.55], [-675.92, -123.09], [-675.55, -116.73], [-677.09, -115.31], [-676.64, -106.63]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.096, "pop": 0, "jobs": 96}}, {"shape": {"outer": [[-666.84, -107.05], [-659.25, -107.42], [-660.31, -127.23], [-665.64, -132.1], [-668.25, -131.95], [-667.95, -126.64], [-667.77, -123.55], [-666.84, -107.05]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[-659.25, -107.42], [-652.8, -107.76], [-642.49, -108.31], [-640.51, -108.42], [-641.11, -119.79], [-641.93, -135.23], [-639.93, -137.41], [-651.27, -147.74], [-665.64, -132.1], [-660.31, -127.23], [-659.25, -107.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.552, "pop": 276, "jobs": 0}}, {"shape": {"outer": [[-640.51, -108.42], [-628.63, -109.0], [-629.77, -128.29], [-633.69, -131.72], [-635.4, -129.59], [-634.88, -119.88], [-641.11, -119.79], [-640.51, -108.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-641.11, -119.79], [-641.93, -135.23], [-639.93, -137.41], [-633.69, -131.72], [-635.4, -129.59], [-634.88, -119.88], [-641.11, -119.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-628.63, -109.0], [-612.23, -109.71], [-611.37, -112.16], [-629.77, -128.29], [-628.63, -109.0]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-914.46, -75.86], [-914.17, -68.98], [-915.1, -68.95], [-914.11, -45.71], [-922.44, -45.36], [-922.59, -49.05], [-923.1, -49.02], [-924.22, -75.44], [-914.46, -75.86]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.284, "pop": 142, "jobs": 0}}, {"shape": {"outer": [[-913.44, -51.71], [-897.87, -52.38], [-898.89, -76.52], [-914.46, -75.86], [-914.17, -68.98], [-913.44, -51.71]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.105, "pop": 0, "jobs": 105}}, {"shape": {"outer": [[-898.89, -76.52], [-888.71, -76.95], [-887.55, -49.29], [-897.72, -48.86], [-897.87, -52.38], [-898.89, -76.52]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.158, "pop": 0, "jobs": 158}}, {"shape": {"outer": [[-888.71, -76.95], [-879.32, -77.33], [-878.01, -45.84], [-877.9, -43.34], [-881.2, -39.49], [-886.08, -39.29], [-887.15, -40.05], [-887.55, -49.29], [-888.71, -76.95]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.244, "pop": 122, "jobs": 0}}, {"shape": {"outer": [[-638.25, -75.1], [-638.87, -89.11], [-623.54, -89.84], [-622.91, -77.16], [-630.91, -67.89], [-638.25, -75.1]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.172, "pop": 0, "jobs": 172}}, {"shape": {"outer": [[-682.21, -65.62], [-701.65, -83.36], [-700.87, -84.94], [-700.25, -86.2], [-677.28, -87.28], [-676.56, -71.85], [-682.21, -65.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.266, "pop": 133, "jobs": 0}}, {"shape": {"outer": [[-676.56, -71.85], [-672.19, -67.92], [-671.27, -68.94], [-670.4, -68.16], [-677.02, -60.88], [-682.21, -65.62], [-676.56, -71.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-677.28, -87.28], [-669.83, -87.6], [-669.12, -73.26], [-669.04, -71.6], [-671.27, -68.94], [-672.19, -67.92], [-676.56, -71.85], [-677.28, -87.28]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-669.12, -73.26], [-667.14, -73.35], [-667.06, -71.74], [-666.91, -68.49], [-660.18, -68.8], [-660.23, -69.94], [-660.4, -74.15], [-661.06, -88.08], [-669.83, -87.6], [-669.12, -73.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-661.06, -88.08], [-646.3, -88.79], [-645.62, -74.86], [-652.3, -74.53], [-660.4, -74.15], [-661.06, -88.08]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.132, "pop": 0, "jobs": 132}}, {"shape": {"outer": [[-677.02, -60.88], [-670.4, -68.16], [-667.06, -71.74], [-666.91, -68.49], [-660.18, -68.8], [-660.23, -69.94], [-652.04, -70.32], [-638.77, -58.42], [-653.6, -41.91], [-654.8, -40.6], [-655.72, -41.44], [-677.02, -60.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.51, "pop": 255, "jobs": 0}}, {"shape": {"outer": [[-645.62, -74.86], [-652.3, -74.53], [-637.35, -60.87], [-630.91, -67.89], [-638.25, -75.1], [-638.87, -89.11], [-646.3, -88.79], [-645.62, -74.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-585.13, -33.76], [-597.79, -45.04], [-599.16, -46.22], [-611.61, -57.28], [-612.76, -58.42], [-613.26, -58.84], [-631.61, -38.41], [-627.31, -34.57], [-608.9, -18.17], [-603.48, -13.33], [-585.13, -33.76]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.662, "pop": 0, "jobs": 662}}, {"shape": {"outer": [[-608.9, -18.17], [-611.32, -15.48], [-612.97, -16.95], [-614.71, -15.02], [-615.42, -15.67], [-618.12, -12.65], [-619.37, -12.77], [-621.86, -15.17], [-621.97, -16.21], [-619.88, -18.55], [-632.0, -29.34], [-627.31, -34.57], [-608.9, -18.17]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.118, "pop": 0, "jobs": 118}}, {"shape": {"outer": [[-604.4, -67.6], [-589.48, -54.34], [-584.27, -59.96], [-582.64, -58.49], [-577.22, -64.48], [-578.8, -65.9], [-570.78, -74.78], [-584.85, -87.39], [-585.61, -87.54], [-586.31, -87.48], [-586.95, -87.18], [-604.4, -67.6]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.323, "pop": 0, "jobs": 323}}, {"shape": {"outer": [[-599.16, -46.22], [-594.38, -51.55], [-596.45, -53.4], [-596.15, -53.74], [-599.58, -56.8], [-598.94, -57.52], [-595.07, -54.07], [-594.65, -54.55], [-591.65, -51.9], [-589.48, -54.34], [-604.4, -67.6], [-607.91, -63.66], [-606.79, -62.67], [-608.58, -60.64], [-611.61, -57.28], [-599.16, -46.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-224.67, -250.39], [-267.04, -288.88], [-239.68, -318.77], [-239.15, -318.26], [-229.73, -309.72], [-216.21, -297.45], [-206.71, -288.82], [-209.19, -286.13], [-204.4, -281.78], [-210.42, -275.22], [-211.89, -273.61], [-207.26, -269.41], [-224.67, -250.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 881, "jobs": 0}}, {"shape": {"outer": [[-212.85, -258.01], [-222.11, -247.75], [-206.94, -234.21], [-197.71, -244.52], [-212.85, -258.01]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.157, "pop": 0, "jobs": 157}}, {"shape": {"outer": [[-197.71, -244.52], [-188.13, -255.24], [-203.2, -268.75], [-212.85, -258.01], [-197.71, -244.52]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-188.13, -255.24], [-179.7, -264.57], [-200.97, -283.64], [-206.71, -288.82], [-209.19, -286.13], [-204.4, -281.78], [-210.42, -275.22], [-203.2, -268.75], [-188.13, -255.24]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.28, "pop": 140, "jobs": 0}}, {"shape": {"outer": [[-239.15, -318.26], [-227.22, -331.33], [-189.06, -296.74], [-199.41, -285.41], [-214.61, -299.2], [-216.21, -297.45], [-229.73, -309.72], [-239.15, -318.26]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.552, "pop": 0, "jobs": 552}}, {"shape": {"outer": [[-182.86, -349.45], [-206.91, -322.7], [-210.32, -318.92], [-187.52, -298.56], [-166.24, -279.55], [-158.84, -287.77], [-138.77, -310.08], [-182.86, -349.45]], "holes": []}, "height": 31.5, "data": {"type": "residential", "density": 1.0, "pop": 3823, "jobs": 0}}, {"shape": {"outer": [[-206.91, -322.7], [-223.26, -337.3], [-199.22, -364.05], [-182.86, -349.45], [-206.91, -322.7]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1545}}, {"shape": {"outer": [[-1494.72, -1707.91], [-1494.86, -1719.91], [-1472.08, -1720.19], [-1471.94, -1708.19], [-1494.72, -1707.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.175, "pop": 0, "jobs": 175}}, {"shape": {"outer": [[-1486.89, -1800.63], [-1487.07, -1806.77], [-1485.28, -1806.71], [-1478.0, -1826.33], [-1459.69, -1817.15], [-1466.68, -1804.4], [-1470.01, -1804.43], [-1470.27, -1801.11], [-1486.89, -1800.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.34, "pop": 170, "jobs": 0}}, {"shape": {"outer": [[-1503.68, -1906.68], [-1493.51, -1901.13], [-1493.78, -1900.63], [-1497.1, -1894.57], [-1490.87, -1891.17], [-1488.97, -1894.63], [-1484.64, -1892.26], [-1490.57, -1881.48], [-1500.76, -1887.03], [-1504.99, -1879.33], [-1515.55, -1885.08], [-1503.68, -1906.68]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.262, "pop": 0, "jobs": 262}}, {"shape": {"outer": [[-1494.38, -1998.92], [-1490.68, -2006.06], [-1479.58, -2000.37], [-1483.28, -1993.23], [-1494.38, -1998.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1539.26, -1999.05], [-1530.05, -2015.72], [-1514.19, -2007.02], [-1523.41, -1990.35], [-1539.26, -1999.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[-1546.85, -1987.52], [-1555.5, -1971.04], [-1537.56, -1961.7], [-1528.91, -1978.19], [-1546.85, -1987.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.302, "pop": 151, "jobs": 0}}, {"shape": {"outer": [[-1532.0, -1957.85], [-1524.31, -1972.26], [-1513.33, -1966.45], [-1521.02, -1952.04], [-1532.0, -1957.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-1512.13, -1958.31], [-1516.83, -1949.27], [-1507.51, -1944.47], [-1502.82, -1953.52], [-1512.13, -1958.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1473.7, -2040.18], [-1464.54, -2035.15], [-1482.14, -2003.32], [-1491.3, -2008.35], [-1473.7, -2040.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.304, "pop": 152, "jobs": 0}}, {"shape": {"outer": [[-1431.22, -1844.13], [-1425.98, -1841.1], [-1427.64, -1838.25], [-1432.89, -1841.29], [-1431.22, -1844.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1435.6, -1827.9], [-1432.65, -1833.23], [-1438.95, -1836.7], [-1441.91, -1831.37], [-1435.6, -1827.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1427.15, -1826.26], [-1423.04, -1833.63], [-1412.9, -1828.0], [-1416.04, -1822.38], [-1418.73, -1823.87], [-1419.7, -1822.14], [-1427.15, -1826.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1718.67, -1883.8], [-1704.05, -1869.48], [-1714.83, -1857.98], [-1719.75, -1857.91], [-1728.41, -1849.61], [-1724.93, -1845.39], [-1725.56, -1840.72], [-1730.74, -1840.65], [-1731.16, -1842.62], [-1733.94, -1846.49], [-1733.89, -1856.16], [-1730.83, -1856.09], [-1730.66, -1872.1], [-1724.8, -1872.17], [-1718.67, -1883.8]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.355, "pop": 0, "jobs": 355}}, {"shape": {"outer": [[-946.95, -73.14], [-946.43, -62.22], [-945.35, -39.7], [-934.8, -40.2], [-935.43, -53.53], [-936.39, -73.65], [-946.95, -73.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.284, "pop": 142, "jobs": 0}}, {"shape": {"outer": [[-935.43, -53.53], [-926.58, -53.96], [-927.55, -74.08], [-936.39, -73.65], [-935.43, -53.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-945.35, -39.7], [-945.3, -38.85], [-953.29, -38.47], [-953.7, -47.09], [-954.14, -47.07], [-954.17, -47.57], [-955.05, -66.06], [-955.78, -66.03], [-956.09, -72.7], [-948.25, -73.08], [-946.95, -73.14], [-946.43, -62.22], [-945.35, -39.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.232, "pop": 116, "jobs": 0}}, {"shape": {"outer": [[-954.17, -47.57], [-961.94, -47.19], [-962.03, -49.03], [-963.33, -48.97], [-963.71, -56.88], [-964.19, -56.86], [-964.48, -62.85], [-964.14, -62.87], [-964.58, -72.3], [-956.09, -72.7], [-955.78, -66.03], [-955.05, -66.06], [-954.17, -47.57]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.19, "pop": 0, "jobs": 190}}, {"shape": {"outer": [[-3158.43, -1253.03], [-3152.04, -1260.78], [-3151.51, -1260.34], [-3149.66, -1262.58], [-3140.74, -1255.3], [-3142.58, -1253.05], [-3141.77, -1252.39], [-3147.16, -1245.84], [-3150.5, -1248.57], [-3151.49, -1247.36], [-3158.43, -1253.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-3149.17, -1147.92], [-3144.81, -1144.26], [-3146.22, -1142.59], [-3144.14, -1140.85], [-3151.34, -1132.32], [-3152.77, -1133.52], [-3155.14, -1130.71], [-3158.2, -1133.28], [-3159.43, -1131.82], [-3163.2, -1134.98], [-3159.05, -1139.88], [-3157.23, -1138.37], [-3149.17, -1147.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-3142.27, -1178.98], [-3134.57, -1187.59], [-3130.04, -1183.58], [-3132.06, -1181.33], [-3130.11, -1179.6], [-3132.05, -1177.42], [-3129.93, -1175.54], [-3133.03, -1172.07], [-3135.15, -1173.95], [-3135.8, -1173.23], [-3137.97, -1175.16], [-3138.54, -1174.52], [-3139.9, -1175.73], [-3139.32, -1176.36], [-3142.27, -1178.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-3130.09, -1115.58], [-3123.96, -1110.34], [-3116.14, -1119.44], [-3122.26, -1124.67], [-3130.09, -1115.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-3125.9, -1175.49], [-3122.61, -1172.69], [-3117.24, -1178.95], [-3120.52, -1181.75], [-3125.9, -1175.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-3132.14, -1192.23], [-3135.34, -1195.01], [-3131.69, -1199.19], [-3128.49, -1196.43], [-3132.14, -1192.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-3127.45, -1182.8], [-3123.87, -1186.75], [-3120.1, -1183.37], [-3123.69, -1179.41], [-3127.45, -1182.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-3143.41, -1114.97], [-3146.38, -1117.46], [-3142.69, -1121.86], [-3139.71, -1119.37], [-3143.41, -1114.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-3147.5, -1130.7], [-3141.53, -1137.78], [-3135.35, -1132.61], [-3141.32, -1125.53], [-3147.5, -1130.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-3156.75, -1209.93], [-3152.01, -1206.21], [-3148.53, -1210.61], [-3153.27, -1214.33], [-3156.75, -1209.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-3157.76, -1123.59], [-3152.93, -1119.72], [-3148.24, -1125.51], [-3153.06, -1129.4], [-3157.76, -1123.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-3163.51, -1225.06], [-3158.51, -1231.0], [-3153.12, -1226.49], [-3158.12, -1220.56], [-3163.51, -1225.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-3161.6, -1141.4], [-3168.14, -1146.98], [-3160.9, -1155.4], [-3154.36, -1149.83], [-3161.6, -1141.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-3158.22, -1231.46], [-3152.89, -1227.17], [-3148.7, -1232.35], [-3154.02, -1236.64], [-3158.22, -1231.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-3135.23, -1107.88], [-3131.66, -1112.1], [-3127.34, -1108.47], [-3130.92, -1104.25], [-3135.23, -1107.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-3161.94, -1272.46], [-3156.33, -1267.82], [-3163.44, -1259.26], [-3160.26, -1256.63], [-3165.44, -1250.41], [-3174.24, -1257.67], [-3161.94, -1272.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-3137.51, -1124.51], [-3132.28, -1130.84], [-3130.38, -1129.28], [-3129.39, -1130.47], [-3126.82, -1128.36], [-3127.8, -1127.17], [-3125.85, -1125.57], [-3131.08, -1119.24], [-3137.51, -1124.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-3164.36, -1196.38], [-3159.32, -1202.44], [-3156.56, -1200.16], [-3155.81, -1201.06], [-3154.32, -1199.83], [-3153.22, -1201.15], [-3149.61, -1198.16], [-3156.5, -1189.88], [-3164.36, -1196.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-3152.92, -1188.91], [-3145.02, -1198.23], [-3137.01, -1191.49], [-3144.91, -1182.17], [-3145.72, -1182.86], [-3146.92, -1181.45], [-3153.24, -1186.76], [-3152.04, -1188.17], [-3152.92, -1188.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1639.58, 789.41], [1651.77, 776.01], [1646.9, 771.59], [1646.38, 771.12], [1645.9, 770.71], [1641.04, 776.06], [1640.49, 775.55], [1633.16, 783.61], [1634.42, 784.75], [1632.89, 786.42], [1636.23, 789.43], [1637.75, 787.75], [1639.58, 789.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1633.13, 779.4], [1641.83, 769.93], [1635.28, 763.96], [1626.59, 773.43], [1633.13, 779.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1625.75, 773.43], [1634.87, 763.49], [1634.3, 762.98], [1633.64, 762.37], [1629.02, 758.17], [1619.9, 768.11], [1620.37, 768.53], [1619.37, 769.63], [1624.01, 773.86], [1625.01, 772.76], [1625.75, 773.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1614.92, 770.19], [1627.76, 756.25], [1621.44, 750.47], [1617.96, 754.26], [1617.68, 754.0], [1608.32, 764.16], [1614.92, 770.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1609.8, 761.82], [1620.04, 750.71], [1613.87, 745.06], [1610.69, 748.5], [1610.52, 748.35], [1607.09, 752.07], [1607.26, 752.22], [1603.63, 756.17], [1609.8, 761.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1600.29, 755.2], [1611.33, 743.07], [1605.44, 737.76], [1594.4, 749.89], [1600.29, 755.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1598.27, 744.73], [1607.85, 734.14], [1601.54, 728.47], [1591.96, 739.07], [1598.27, 744.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1589.59, 738.27], [1600.4, 726.71], [1599.5, 725.88], [1598.0, 724.49], [1593.88, 720.67], [1583.08, 732.22], [1589.59, 738.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1588.11, 752.46], [1594.46, 745.43], [1582.65, 734.82], [1577.99, 739.99], [1581.61, 743.24], [1579.92, 745.11], [1588.11, 752.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[552.43, 832.07], [545.46, 825.8], [555.58, 814.62], [556.12, 815.11], [557.29, 813.83], [563.08, 819.04], [561.75, 820.51], [562.39, 821.07], [552.43, 832.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[539.11, 819.42], [541.76, 816.37], [540.79, 815.53], [544.58, 811.16], [545.6, 812.03], [548.45, 808.74], [549.76, 809.86], [551.04, 808.38], [555.96, 812.62], [548.12, 821.64], [547.15, 820.8], [544.39, 823.98], [539.11, 819.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1727.12, 1892.22], [1735.87, 1900.59], [1723.11, 1913.83], [1732.24, 1922.58], [1729.16, 1925.78], [1733.83, 1930.25], [1736.91, 1927.04], [1743.43, 1933.28], [1756.19, 1920.04], [1763.03, 1926.58], [1780.19, 1908.78], [1778.56, 1907.22], [1788.68, 1896.72], [1794.46, 1902.26], [1808.06, 1888.15], [1767.99, 1849.83], [1727.12, 1892.22]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2274}}, {"shape": {"outer": [[1821.25, 1846.16], [1828.22, 1838.84], [1839.07, 1849.07], [1832.1, 1856.4], [1821.25, 1846.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1928.79, 1818.71], [1938.01, 1827.74], [1956.71, 1808.79], [1947.48, 1799.76], [1928.79, 1818.71]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.22, "pop": 0, "jobs": 220}}, {"shape": {"outer": [[1803.84, 1857.26], [1796.21, 1849.8], [1807.61, 1838.22], [1799.23, 1830.02], [1808.0, 1821.11], [1824.02, 1836.78], [1803.84, 1857.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.362, "pop": 181, "jobs": 0}}, {"shape": {"outer": [[-699.61, -2614.54], [-694.82, -2603.41], [-655.67, -2620.16], [-660.46, -2631.28], [-663.82, -2629.85], [-666.7, -2636.54], [-659.84, -2639.47], [-660.52, -2641.06], [-665.74, -2641.85], [-670.3, -2652.26], [-672.98, -2651.11], [-670.98, -2646.43], [-695.84, -2635.8], [-688.7, -2619.21], [-699.61, -2614.54]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.682, "pop": 0, "jobs": 682}}, {"shape": {"outer": [[-612.2, -2683.15], [-619.99, -2682.26], [-622.32, -2702.56], [-614.52, -2703.44], [-612.2, -2683.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-693.52, -2805.76], [-674.66, -2812.73], [-656.43, -2763.69], [-675.29, -2756.72], [-693.52, -2805.76]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.674, "pop": 0, "jobs": 674}}, {"shape": {"outer": [[-822.04, -2898.05], [-803.69, -2905.73], [-781.59, -2877.0], [-788.39, -2874.01], [-795.04, -2870.84], [-807.55, -2865.61], [-808.59, -2868.07], [-809.28, -2867.78], [-822.04, -2898.05]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.554, "pop": 0, "jobs": 554}}, {"shape": {"outer": [[-729.48, -2663.45], [-737.24, -2680.5], [-715.83, -2690.17], [-708.07, -2673.1], [-729.48, -2663.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.352, "pop": 176, "jobs": 0}}, {"shape": {"outer": [[-656.68, -2748.14], [-659.33, -2755.53], [-650.85, -2758.56], [-648.2, -2751.17], [-656.68, -2748.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-878.33, -2884.52], [-852.91, -2882.39], [-852.18, -2891.13], [-849.75, -2890.92], [-848.57, -2904.96], [-841.25, -2904.35], [-839.33, -2927.11], [-874.49, -2930.04], [-878.33, -2884.52]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.911, "pop": 0, "jobs": 911}}, {"shape": {"outer": [[-1290.99, -2843.67], [-1291.15, -2847.2], [-1294.88, -2847.04], [-1295.44, -2859.64], [-1274.07, -2860.58], [-1273.81, -2854.72], [-1271.82, -2854.81], [-1271.65, -2850.85], [-1273.64, -2850.76], [-1273.36, -2844.44], [-1290.99, -2843.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.272, "pop": 136, "jobs": 0}}, {"shape": {"outer": [[-975.01, -2859.2], [-966.97, -2858.85], [-966.88, -2860.91], [-956.84, -2860.47], [-956.19, -2874.93], [-974.29, -2875.72], [-974.66, -2867.31], [-977.67, -2867.45], [-977.9, -2862.32], [-974.89, -2862.18], [-975.01, -2859.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.236, "pop": 118, "jobs": 0}}, {"shape": {"outer": [[-1423.15, -2749.7], [-1428.0, -2757.54], [-1426.48, -2758.47], [-1428.36, -2761.51], [-1427.01, -2762.33], [-1429.44, -2766.29], [-1422.97, -2770.26], [-1420.93, -2766.96], [-1419.53, -2767.82], [-1417.36, -2764.31], [-1414.62, -2765.99], [-1409.67, -2757.98], [-1423.15, -2749.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[-854.8, -2815.49], [-855.08, -2829.51], [-838.33, -2830.27], [-841.04, -2836.44], [-848.84, -2855.07], [-840.88, -2859.03], [-828.9, -2831.07], [-832.66, -2830.91], [-832.28, -2821.49], [-845.23, -2820.81], [-845.23, -2815.63], [-854.8, -2815.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.41, "pop": 205, "jobs": 0}}, {"shape": {"outer": [[-935.1, -2925.86], [-923.12, -2927.34], [-923.06, -2926.81], [-920.75, -2927.1], [-921.06, -2929.52], [-914.48, -2930.33], [-913.17, -2919.8], [-919.59, -2919.01], [-919.99, -2922.23], [-922.82, -2921.88], [-922.42, -2918.66], [-923.82, -2918.49], [-923.47, -2915.73], [-933.68, -2914.46], [-935.1, -2925.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-1124.68, -2715.84], [-1125.55, -2745.02], [-1118.7, -2745.39], [-1118.91, -2751.31], [-1112.48, -2751.54], [-1112.27, -2745.62], [-1103.06, -2745.94], [-1102.65, -2734.33], [-1091.18, -2734.72], [-1071.42, -2735.24], [-1074.45, -2713.2], [-1082.63, -2713.13], [-1082.99, -2713.92], [-1102.32, -2713.9], [-1102.8, -2716.09], [-1124.68, -2715.84]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.85, "pop": 0, "jobs": 850}}, {"shape": {"outer": [[-1085.87, -2785.92], [-1082.76, -2785.39], [-1083.65, -2780.15], [-1069.35, -2777.71], [-1069.17, -2778.78], [-1067.03, -2778.42], [-1066.45, -2781.75], [-1068.6, -2782.11], [-1068.46, -2782.94], [-1067.01, -2782.7], [-1060.12, -2822.72], [-1061.56, -2822.97], [-1060.78, -2827.54], [-1059.34, -2827.3], [-1058.06, -2834.73], [-1059.63, -2835.01], [-1058.82, -2839.71], [-1074.71, -2842.42], [-1075.52, -2837.71], [-1076.93, -2837.95], [-1078.11, -2831.07], [-1074.89, -2830.53], [-1075.79, -2825.28], [-1079.01, -2825.83], [-1085.87, -2785.92]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.735, "pop": 0, "jobs": 735}}, {"shape": {"outer": [[-1434.21, -2808.01], [-1431.79, -2804.78], [-1435.0, -2802.39], [-1424.51, -2788.41], [-1421.3, -2790.8], [-1415.46, -2783.02], [-1397.66, -2796.27], [-1395.77, -2793.76], [-1389.31, -2798.57], [-1387.16, -2795.31], [-1387.07, -2791.5], [-1336.35, -2793.9], [-1339.85, -2806.97], [-1319.31, -2807.62], [-1323.66, -2825.34], [-1320.95, -2826.01], [-1324.16, -2839.1], [-1321.36, -2839.78], [-1324.13, -2851.09], [-1340.35, -2847.43], [-1340.79, -2849.48], [-1387.86, -2838.23], [-1387.38, -2836.82], [-1392.65, -2835.53], [-1393.52, -2837.94], [-1403.08, -2835.45], [-1410.51, -2829.79], [-1408.81, -2827.61], [-1434.21, -2808.01]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3078}}, {"shape": {"outer": [[-997.97, -2784.34], [-994.36, -2795.85], [-969.82, -2788.21], [-973.42, -2776.7], [-997.97, -2784.34]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.198, "pop": 0, "jobs": 198}}, {"shape": {"outer": [[-951.9, -3087.46], [-952.81, -3099.77], [-918.83, -3102.28], [-917.92, -3089.95], [-951.9, -3087.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.336, "pop": 168, "jobs": 0}}, {"shape": {"outer": [[-920.82, -2888.91], [-921.54, -2898.43], [-901.69, -2899.92], [-900.97, -2890.4], [-920.82, -2888.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.122, "pop": 0, "jobs": 122}}, {"shape": {"outer": [[-1391.59, -2989.96], [-1384.0, -2991.08], [-1385.36, -3000.3], [-1392.95, -2999.18], [-1391.59, -2989.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1018.07, -2699.54], [-999.62, -2694.82], [-995.69, -2710.07], [-1014.14, -2714.79], [-1018.07, -2699.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.24, "pop": 120, "jobs": 0}}, {"shape": {"outer": [[-997.81, -2727.22], [-976.87, -2721.68], [-971.29, -2742.64], [-992.23, -2748.17], [-997.81, -2727.22]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.301, "pop": 0, "jobs": 301}}, {"shape": {"outer": [[-956.36, -2891.26], [-938.46, -2890.76], [-937.56, -2922.43], [-955.46, -2922.93], [-956.36, -2891.26]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.363, "pop": 0, "jobs": 363}}, {"shape": {"outer": [[-965.06, -2776.62], [-962.55, -2785.98], [-948.46, -2782.25], [-950.96, -2772.88], [-965.06, -2776.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-874.55, -2842.76], [-864.75, -2843.1], [-865.24, -2857.17], [-875.03, -2856.83], [-874.55, -2842.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-942.29, -2869.39], [-941.57, -2887.88], [-905.68, -2886.52], [-906.39, -2868.02], [-942.29, -2869.39]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.425, "pop": 0, "jobs": 425}}, {"shape": {"outer": [[-888.01, -3064.83], [-888.47, -3075.81], [-871.32, -3076.52], [-870.86, -3065.54], [-888.01, -3064.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-999.15, -2774.01], [-996.34, -2783.01], [-967.38, -2774.03], [-969.41, -2767.56], [-967.21, -2766.89], [-968.0, -2764.36], [-999.15, -2774.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[-1412.7, -2751.2], [-1418.81, -2746.96], [-1417.29, -2744.77], [-1419.38, -2743.32], [-1411.33, -2731.78], [-1403.12, -2737.48], [-1412.7, -2751.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1004.99, -2752.72], [-1001.54, -2770.23], [-986.4, -2766.48], [-967.01, -2761.39], [-971.62, -2743.97], [-1004.99, -2752.72]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.404, "pop": 0, "jobs": 404}}, {"shape": {"outer": [[-1283.94, -2700.41], [-1266.73, -2701.17], [-1269.54, -2765.02], [-1286.75, -2764.27], [-1285.73, -2740.99], [-1288.01, -2740.89], [-1287.25, -2723.71], [-1284.98, -2723.8], [-1283.94, -2700.41]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.73, "pop": 0, "jobs": 730}}, {"shape": {"outer": [[-1281.88, -2628.25], [-1265.08, -2628.94], [-1267.66, -2692.48], [-1284.46, -2691.8], [-1283.52, -2668.41], [-1286.04, -2668.3], [-1285.36, -2651.77], [-1282.84, -2651.88], [-1281.88, -2628.25]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.711, "pop": 0, "jobs": 711}}, {"shape": {"outer": [[-1268.72, -2773.77], [-1285.61, -2773.09], [-1286.55, -2796.25], [-1289.43, -2796.13], [-1290.11, -2813.11], [-1287.24, -2813.22], [-1288.18, -2836.4], [-1271.29, -2837.1], [-1268.72, -2773.77]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.717, "pop": 0, "jobs": 717}}, {"shape": {"outer": [[-978.14, -2822.4], [-978.03, -2825.31], [-980.98, -2825.42], [-980.66, -2834.42], [-977.71, -2834.31], [-977.6, -2837.59], [-941.86, -2836.35], [-942.4, -2821.16], [-978.14, -2822.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.456, "pop": 228, "jobs": 0}}, {"shape": {"outer": [[-745.35, -2978.52], [-746.25, -2987.0], [-737.16, -2987.97], [-736.12, -2978.31], [-739.11, -2977.99], [-738.97, -2976.77], [-741.7, -2976.49], [-741.83, -2977.7], [-742.48, -2977.63], [-742.6, -2978.8], [-745.35, -2978.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-886.96, -3047.69], [-886.13, -3040.58], [-880.2, -3041.27], [-880.03, -3039.91], [-871.07, -3040.95], [-871.3, -3042.91], [-869.47, -3043.12], [-870.11, -3048.56], [-871.93, -3048.34], [-872.06, -3049.42], [-886.96, -3047.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-778.06, -3065.81], [-771.25, -3066.83], [-771.49, -3068.41], [-761.05, -3069.95], [-762.11, -3077.0], [-772.69, -3075.43], [-773.22, -3079.05], [-779.89, -3078.07], [-779.36, -3074.55], [-780.17, -3074.43], [-779.86, -3072.37], [-779.06, -3072.48], [-778.06, -3065.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-717.32, -3074.11], [-717.36, -3074.95], [-719.54, -3074.84], [-719.68, -3077.62], [-717.5, -3077.73], [-717.74, -3082.37], [-712.95, -3082.62], [-713.0, -3083.6], [-702.97, -3084.11], [-702.52, -3075.43], [-712.03, -3074.94], [-711.99, -3074.38], [-717.32, -3074.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-850.6, -3010.89], [-843.68, -3011.85], [-844.63, -3018.83], [-846.39, -3018.59], [-846.61, -3020.23], [-844.74, -3020.49], [-845.75, -3027.77], [-848.28, -3027.42], [-848.57, -3029.48], [-852.4, -3028.96], [-852.11, -3026.9], [-852.79, -3026.8], [-852.36, -3023.69], [-853.91, -3023.48], [-853.45, -3020.27], [-851.92, -3020.48], [-850.6, -3010.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-755.07, -3053.18], [-755.32, -3058.15], [-748.11, -3058.5], [-747.87, -3053.55], [-755.07, -3053.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-772.93, -3033.45], [-772.66, -3026.4], [-762.07, -3026.81], [-762.34, -3033.86], [-772.93, -3033.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-820.24, -3017.28], [-821.3, -3023.94], [-813.3, -3025.2], [-812.25, -3018.54], [-820.24, -3017.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-801.55, -2982.53], [-793.82, -2983.36], [-794.86, -2992.91], [-802.58, -2992.08], [-801.55, -2982.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-713.32, -3072.5], [-712.7, -3063.35], [-701.41, -3064.12], [-702.03, -3073.27], [-713.32, -3072.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-673.2, -3076.37], [-673.63, -3085.31], [-660.2, -3085.96], [-659.77, -3077.03], [-673.2, -3076.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-768.03, -3010.82], [-768.39, -3019.73], [-755.67, -3020.25], [-755.3, -3011.34], [-768.03, -3010.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-814.32, -3045.45], [-814.79, -3054.08], [-806.0, -3054.54], [-805.54, -3045.91], [-814.32, -3045.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-820.23, -3057.1], [-820.74, -3063.35], [-803.94, -3064.7], [-803.43, -3058.45], [-820.23, -3057.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-776.1, -3056.34], [-775.47, -3047.36], [-761.95, -3048.29], [-762.57, -3057.27], [-776.1, -3056.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-680.27, -3114.47], [-671.09, -3114.67], [-670.85, -3104.11], [-680.03, -3103.9], [-680.27, -3114.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-655.02, -3008.05], [-665.19, -3007.37], [-666.14, -3021.62], [-655.97, -3022.29], [-655.02, -3008.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-712.78, -3022.9], [-713.24, -3029.74], [-706.32, -3030.21], [-705.85, -3023.38], [-712.78, -3022.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-713.04, -3051.11], [-714.25, -3060.14], [-703.48, -3061.59], [-702.25, -3052.57], [-713.04, -3051.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-672.27, -3053.37], [-663.69, -3053.98], [-664.33, -3062.88], [-672.9, -3062.27], [-672.27, -3053.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-821.07, -3025.32], [-821.66, -3030.47], [-814.58, -3031.27], [-813.99, -3026.12], [-821.07, -3025.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-727.15, -3074.34], [-727.44, -3079.26], [-720.62, -3079.67], [-720.32, -3074.76], [-727.15, -3074.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-661.12, -2980.37], [-661.4, -2985.3], [-650.16, -2985.94], [-649.88, -2981.01], [-661.12, -2980.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-741.78, -3104.76], [-742.18, -3111.43], [-731.38, -3112.07], [-730.98, -3105.39], [-741.78, -3104.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-780.49, -3099.19], [-781.02, -3107.78], [-766.24, -3108.69], [-765.7, -3100.1], [-780.49, -3099.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-717.9, -3007.07], [-718.22, -3011.98], [-710.64, -3012.47], [-710.32, -3007.57], [-717.9, -3007.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-776.84, -3035.09], [-777.55, -3042.54], [-764.45, -3043.8], [-763.73, -3036.35], [-776.84, -3035.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-806.62, -3006.57], [-806.24, -2998.52], [-797.06, -2998.95], [-797.43, -3006.98], [-806.62, -3006.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-758.67, -3041.26], [-759.03, -3046.69], [-751.72, -3047.18], [-751.36, -3041.74], [-758.67, -3041.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-705.04, -3002.7], [-705.39, -3011.03], [-692.44, -3011.56], [-692.1, -3003.23], [-705.04, -3002.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-806.39, -3008.47], [-797.22, -3009.83], [-798.5, -3018.46], [-807.67, -3017.1], [-806.39, -3008.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-669.28, -3041.56], [-669.86, -3050.51], [-655.53, -3051.43], [-654.96, -3042.48], [-669.28, -3041.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-695.69, -2973.77], [-697.04, -2983.18], [-686.48, -2984.68], [-685.13, -2975.27], [-695.69, -2973.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-669.4, -3037.91], [-668.76, -3029.34], [-660.33, -3029.95], [-660.46, -3031.79], [-658.05, -3031.97], [-658.54, -3038.71], [-669.4, -3037.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-662.15, -2993.12], [-653.13, -2993.51], [-653.48, -3001.51], [-654.97, -3001.44], [-655.13, -3005.05], [-662.65, -3004.71], [-662.15, -2993.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-816.19, -3038.59], [-815.66, -3034.29], [-811.36, -3034.82], [-810.75, -3029.89], [-800.9, -3031.1], [-802.05, -3040.34], [-816.19, -3038.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-826.72, -3096.61], [-826.95, -3100.86], [-830.01, -3100.7], [-830.19, -3103.9], [-827.13, -3104.07], [-827.2, -3105.59], [-814.65, -3106.27], [-814.16, -3097.3], [-826.72, -3096.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-767.92, -2986.92], [-768.94, -2995.8], [-755.64, -2997.33], [-754.62, -2988.44], [-756.24, -2988.26], [-755.43, -2981.15], [-763.27, -2980.25], [-764.09, -2987.36], [-767.92, -2986.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-708.32, -3109.73], [-710.93, -3109.45], [-710.66, -3106.92], [-713.07, -3106.66], [-713.35, -3109.19], [-716.07, -3108.89], [-717.52, -3122.25], [-709.79, -3123.1], [-708.32, -3109.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-769.09, -2998.48], [-769.2, -3000.12], [-770.12, -3000.06], [-770.31, -3002.99], [-769.38, -3003.05], [-769.67, -3007.61], [-755.37, -3008.51], [-754.8, -2999.38], [-769.09, -2998.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-715.56, -3038.03], [-716.78, -3047.02], [-708.99, -3048.06], [-708.79, -3046.61], [-703.16, -3047.37], [-702.28, -3040.84], [-707.9, -3040.08], [-707.77, -3039.07], [-715.56, -3038.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-723.57, -2973.91], [-717.34, -2974.5], [-717.84, -2979.64], [-707.13, -2980.66], [-707.98, -2989.56], [-719.18, -2988.5], [-719.09, -2987.49], [-724.82, -2986.95], [-723.57, -2973.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-707.17, -3014.08], [-707.3, -3016.42], [-710.51, -3016.24], [-710.8, -3021.31], [-704.64, -3021.67], [-704.72, -3023.01], [-694.52, -3023.6], [-694.02, -3014.83], [-707.17, -3014.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1126.88, -2438.92], [-1118.98, -2439.2], [-1119.26, -2447.3], [-1127.16, -2447.02], [-1126.88, -2438.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1459.28, -2507.56], [-1466.76, -2507.19], [-1466.93, -2510.72], [-1470.66, -2510.54], [-1471.01, -2517.66], [-1466.52, -2517.89], [-1466.81, -2523.87], [-1461.79, -2524.12], [-1461.49, -2518.14], [-1459.81, -2518.22], [-1459.28, -2507.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1476.34, -2734.33], [-1470.54, -2724.24], [-1469.92, -2724.59], [-1468.47, -2722.07], [-1463.83, -2724.72], [-1465.28, -2727.25], [-1461.9, -2729.17], [-1463.67, -2732.24], [-1462.34, -2733.0], [-1466.37, -2740.01], [-1476.34, -2734.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1523.61, -2516.57], [-1523.29, -2520.58], [-1523.99, -2520.64], [-1523.58, -2525.83], [-1514.98, -2525.14], [-1514.72, -2528.39], [-1508.1, -2527.87], [-1508.4, -2524.06], [-1510.14, -2524.2], [-1510.83, -2515.56], [-1523.61, -2516.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1499.8, -2639.82], [-1507.04, -2640.39], [-1506.79, -2643.6], [-1511.91, -2644.0], [-1511.26, -2652.29], [-1504.52, -2651.76], [-1504.27, -2655.0], [-1496.01, -2654.36], [-1496.45, -2648.86], [-1499.07, -2649.06], [-1499.8, -2639.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1507.99, -2658.65], [-1500.47, -2658.16], [-1500.1, -2663.68], [-1496.59, -2663.45], [-1496.23, -2668.75], [-1499.74, -2668.98], [-1499.51, -2672.45], [-1509.19, -2673.1], [-1509.81, -2663.81], [-1507.65, -2663.66], [-1507.99, -2658.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1507.74, -2584.81], [-1516.3, -2585.49], [-1515.89, -2590.58], [-1517.66, -2590.72], [-1516.97, -2599.43], [-1506.64, -2598.61], [-1507.0, -2594.09], [-1502.53, -2593.74], [-1503.18, -2585.54], [-1507.65, -2585.89], [-1507.74, -2584.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-1494.64, -2734.64], [-1494.17, -2739.17], [-1485.46, -2738.28], [-1485.92, -2733.74], [-1494.64, -2734.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1446.2, -2669.48], [-1437.14, -2671.94], [-1434.33, -2661.7], [-1443.39, -2659.24], [-1446.2, -2669.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1492.97, -2685.12], [-1492.3, -2691.7], [-1485.0, -2690.95], [-1485.67, -2684.39], [-1492.97, -2685.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1423.59, -2616.35], [-1432.16, -2614.89], [-1433.8, -2624.43], [-1425.22, -2625.9], [-1423.59, -2616.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1430.64, -2515.35], [-1430.85, -2520.18], [-1438.93, -2519.85], [-1438.73, -2515.01], [-1430.64, -2515.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1493.75, -2726.44], [-1493.07, -2733.28], [-1486.17, -2732.6], [-1486.84, -2725.76], [-1493.75, -2726.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1494.71, -2704.68], [-1494.2, -2710.12], [-1487.02, -2709.46], [-1487.53, -2704.01], [-1494.71, -2704.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1446.14, -2650.18], [-1444.25, -2642.44], [-1433.07, -2645.15], [-1434.96, -2652.9], [-1446.14, -2650.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1422.0, -2597.18], [-1430.48, -2596.26], [-1431.74, -2607.76], [-1423.26, -2608.69], [-1422.0, -2597.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1490.5, -2520.98], [-1482.77, -2521.33], [-1483.08, -2528.55], [-1490.81, -2528.22], [-1490.5, -2520.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1431.5, -2545.38], [-1431.16, -2536.38], [-1420.02, -2536.81], [-1420.37, -2545.81], [-1431.5, -2545.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1428.04, -2548.59], [-1419.49, -2549.02], [-1419.98, -2558.7], [-1428.54, -2558.27], [-1428.04, -2548.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1472.48, -2703.29], [-1476.26, -2710.79], [-1469.68, -2714.09], [-1465.91, -2706.59], [-1472.48, -2703.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1474.04, -2713.87], [-1476.82, -2719.37], [-1470.74, -2722.44], [-1467.95, -2716.93], [-1474.04, -2713.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1435.24, -2630.18], [-1426.66, -2632.07], [-1428.73, -2641.43], [-1437.31, -2639.54], [-1435.24, -2630.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1502.02, -2503.56], [-1492.62, -2502.58], [-1491.85, -2510.02], [-1501.25, -2510.99], [-1502.02, -2503.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1438.5, -2572.09], [-1438.76, -2577.13], [-1431.44, -2577.5], [-1431.19, -2572.46], [-1438.5, -2572.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1421.42, -2582.81], [-1421.73, -2591.44], [-1430.14, -2591.14], [-1429.84, -2582.52], [-1421.42, -2582.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1465.83, -2677.02], [-1467.34, -2680.83], [-1460.73, -2683.43], [-1459.22, -2679.62], [-1465.83, -2677.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1506.04, -2566.97], [-1505.7, -2571.36], [-1498.39, -2570.8], [-1498.73, -2566.41], [-1506.04, -2566.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1472.77, -2694.46], [-1466.02, -2697.92], [-1462.95, -2691.96], [-1469.7, -2688.51], [-1472.77, -2694.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-1432.63, -2578.96], [-1432.71, -2582.72], [-1440.25, -2582.56], [-1440.17, -2578.8], [-1432.63, -2578.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1450.08, -2665.43], [-1451.37, -2669.77], [-1457.49, -2667.97], [-1456.2, -2663.62], [-1450.08, -2665.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1438.07, -2557.21], [-1438.23, -2561.38], [-1431.4, -2561.64], [-1431.25, -2557.46], [-1438.07, -2557.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1427.44, -2517.89], [-1427.74, -2525.48], [-1417.91, -2525.86], [-1417.61, -2518.28], [-1427.44, -2517.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1463.0, -2526.67], [-1455.26, -2526.94], [-1455.62, -2537.43], [-1463.35, -2537.18], [-1463.0, -2526.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1456.97, -2648.46], [-1458.15, -2653.04], [-1451.91, -2654.63], [-1450.74, -2650.05], [-1456.97, -2648.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1525.78, -2502.94], [-1524.84, -2513.31], [-1513.12, -2512.26], [-1511.72, -2509.96], [-1506.24, -2509.48], [-1506.98, -2501.26], [-1525.78, -2502.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-1436.23, -2563.66], [-1436.49, -2571.02], [-1428.63, -2571.29], [-1428.74, -2574.15], [-1420.76, -2574.43], [-1420.39, -2564.21], [-1436.23, -2563.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1500.23, -2620.71], [-1514.66, -2622.0], [-1514.12, -2627.97], [-1512.49, -2627.81], [-1511.6, -2637.61], [-1498.8, -2636.45], [-1500.23, -2620.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-1496.72, -2694.6], [-1506.65, -2695.65], [-1505.95, -2702.21], [-1506.58, -2702.27], [-1505.98, -2707.84], [-1495.43, -2706.73], [-1496.72, -2694.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1450.88, -2685.94], [-1441.1, -2689.23], [-1436.98, -2677.03], [-1447.68, -2673.45], [-1449.35, -2678.4], [-1448.44, -2678.71], [-1450.88, -2685.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1445.0, -2503.22], [-1445.28, -2510.26], [-1430.03, -2510.86], [-1430.11, -2513.21], [-1417.79, -2513.68], [-1417.43, -2504.29], [-1445.0, -2503.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[-1487.3, -2504.96], [-1487.72, -2514.13], [-1485.33, -2514.23], [-1485.47, -2517.38], [-1474.71, -2517.87], [-1474.14, -2505.55], [-1487.3, -2504.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1508.92, -2677.63], [-1496.53, -2676.54], [-1496.1, -2681.37], [-1499.9, -2681.7], [-1499.33, -2687.95], [-1507.92, -2688.72], [-1508.92, -2677.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1519.56, -2564.49], [-1520.24, -2557.22], [-1518.57, -2557.07], [-1518.86, -2553.94], [-1501.68, -2552.34], [-1500.71, -2562.74], [-1519.56, -2564.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-1515.8, -2605.22], [-1506.15, -2604.36], [-1504.9, -2618.24], [-1510.47, -2618.73], [-1510.8, -2615.01], [-1514.9, -2615.37], [-1515.8, -2605.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1457.8, -2698.43], [-1447.4, -2702.95], [-1443.98, -2695.15], [-1445.17, -2694.64], [-1444.26, -2692.54], [-1453.47, -2688.53], [-1457.8, -2698.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1519.32, -2534.16], [-1505.71, -2533.24], [-1504.73, -2547.65], [-1520.85, -2548.74], [-1521.3, -2542.26], [-1518.78, -2542.08], [-1519.32, -2534.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-1481.71, -2767.84], [-1488.66, -2764.12], [-1478.78, -2745.83], [-1471.83, -2749.55], [-1477.38, -2759.83], [-1476.46, -2760.32], [-1478.78, -2764.62], [-1479.7, -2764.13], [-1481.71, -2767.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-1517.89, -2571.13], [-1508.02, -2570.41], [-1507.89, -2572.36], [-1503.94, -2572.08], [-1503.58, -2577.11], [-1507.52, -2577.38], [-1507.17, -2582.17], [-1517.04, -2582.88], [-1517.89, -2571.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1434.26, -2463.94], [-1434.67, -2470.91], [-1424.96, -2471.49], [-1425.17, -2475.08], [-1418.1, -2475.51], [-1417.88, -2471.68], [-1416.89, -2471.73], [-1416.49, -2464.99], [-1434.26, -2463.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-1505.32, -2714.6], [-1495.11, -2713.86], [-1494.94, -2716.17], [-1491.06, -2715.88], [-1490.6, -2722.2], [-1494.48, -2722.48], [-1494.22, -2725.93], [-1504.44, -2726.67], [-1505.32, -2714.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1503.5, -2740.58], [-1494.93, -2739.87], [-1494.71, -2742.39], [-1489.74, -2741.98], [-1491.43, -2747.98], [-1494.23, -2748.21], [-1493.75, -2753.96], [-1502.32, -2754.67], [-1503.5, -2740.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1458.91, -2704.77], [-1450.86, -2708.8], [-1451.95, -2710.96], [-1451.16, -2711.35], [-1452.9, -2714.79], [-1453.68, -2714.4], [-1454.97, -2716.96], [-1463.02, -2712.93], [-1458.91, -2704.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-821.57, -2771.66], [-811.36, -2772.05], [-811.65, -2779.84], [-810.42, -2779.89], [-810.52, -2782.5], [-811.75, -2782.45], [-811.88, -2785.74], [-814.52, -2785.64], [-814.67, -2789.67], [-822.24, -2789.39], [-821.57, -2771.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-765.29, -2546.32], [-765.52, -2554.48], [-758.32, -2554.69], [-758.61, -2564.97], [-753.7, -2565.11], [-753.22, -2548.24], [-756.0, -2548.16], [-755.93, -2545.44], [-763.08, -2545.24], [-763.11, -2546.38], [-765.29, -2546.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-808.93, -2539.93], [-809.33, -2549.16], [-806.82, -2549.26], [-807.05, -2554.79], [-799.89, -2555.09], [-799.6, -2548.27], [-798.95, -2548.3], [-798.7, -2542.31], [-804.76, -2542.05], [-804.67, -2540.11], [-808.93, -2539.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-866.62, -2655.46], [-867.09, -2664.58], [-862.51, -2664.81], [-862.63, -2667.19], [-857.65, -2667.44], [-857.07, -2655.95], [-860.35, -2655.78], [-860.3, -2654.84], [-862.86, -2654.71], [-862.91, -2655.65], [-866.62, -2655.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-666.79, -2486.39], [-667.12, -2494.46], [-658.39, -2494.81], [-658.44, -2496.08], [-653.4, -2496.29], [-653.37, -2495.81], [-651.66, -2495.88], [-651.5, -2491.86], [-653.21, -2491.79], [-653.02, -2486.95], [-666.79, -2486.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-897.98, -2654.84], [-898.37, -2665.89], [-896.01, -2665.98], [-896.06, -2667.52], [-893.33, -2667.61], [-893.27, -2666.07], [-890.12, -2666.18], [-889.64, -2652.64], [-894.89, -2652.46], [-894.98, -2654.95], [-897.98, -2654.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-788.58, -2703.49], [-779.61, -2703.84], [-779.92, -2711.65], [-781.71, -2711.58], [-781.84, -2714.96], [-780.42, -2715.01], [-780.52, -2717.73], [-781.94, -2717.68], [-782.01, -2719.32], [-789.18, -2719.05], [-788.58, -2703.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-804.42, -2725.8], [-799.47, -2726.0], [-799.71, -2731.71], [-795.46, -2731.88], [-795.78, -2739.87], [-798.74, -2739.75], [-798.78, -2740.74], [-801.34, -2740.63], [-801.31, -2739.65], [-804.97, -2739.5], [-804.42, -2725.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-884.63, -2723.89], [-884.86, -2730.43], [-886.87, -2730.35], [-887.18, -2739.23], [-881.38, -2739.43], [-881.31, -2737.26], [-880.85, -2737.29], [-880.69, -2732.74], [-875.48, -2732.92], [-875.19, -2724.21], [-884.63, -2723.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-701.49, -2511.16], [-701.71, -2518.56], [-693.46, -2518.79], [-693.37, -2515.62], [-692.11, -2515.65], [-692.05, -2513.48], [-693.3, -2513.44], [-693.23, -2510.8], [-697.49, -2510.68], [-697.5, -2511.28], [-701.49, -2511.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-821.0, -2730.95], [-821.55, -2741.89], [-816.15, -2742.16], [-816.1, -2741.02], [-812.81, -2741.18], [-812.74, -2739.81], [-811.22, -2739.88], [-810.8, -2731.46], [-814.57, -2731.28], [-814.52, -2730.34], [-816.87, -2730.22], [-816.92, -2731.15], [-821.0, -2730.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-893.68, -2612.84], [-894.04, -2620.27], [-891.03, -2620.43], [-891.1, -2621.77], [-889.08, -2621.86], [-889.01, -2620.53], [-884.55, -2620.75], [-884.19, -2613.31], [-886.42, -2613.2], [-886.35, -2611.82], [-889.24, -2611.68], [-889.31, -2613.06], [-893.68, -2612.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-853.8, -2770.11], [-854.3, -2782.33], [-850.43, -2782.48], [-850.53, -2784.79], [-845.95, -2784.98], [-845.85, -2782.67], [-845.18, -2782.7], [-844.69, -2770.49], [-845.72, -2770.44], [-845.63, -2768.27], [-852.9, -2767.97], [-852.98, -2770.15], [-853.8, -2770.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-978.37, -2679.12], [-971.98, -2679.39], [-972.13, -2682.83], [-970.1, -2682.93], [-970.21, -2685.48], [-972.24, -2685.4], [-972.31, -2687.27], [-978.7, -2687.0], [-978.59, -2684.24], [-980.55, -2684.16], [-980.43, -2681.54], [-978.47, -2681.62], [-978.37, -2679.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-908.48, -2608.83], [-909.01, -2619.94], [-907.9, -2619.99], [-908.01, -2622.24], [-902.45, -2622.51], [-902.34, -2620.22], [-901.09, -2620.27], [-900.56, -2609.2], [-904.16, -2609.03], [-904.06, -2606.75], [-907.27, -2606.6], [-907.39, -2608.88], [-908.48, -2608.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-838.79, -2769.92], [-839.17, -2778.9], [-837.51, -2778.97], [-837.6, -2781.15], [-832.25, -2781.37], [-832.16, -2779.19], [-831.26, -2779.24], [-830.88, -2770.25], [-831.42, -2770.23], [-831.35, -2768.45], [-835.77, -2768.26], [-835.84, -2770.04], [-838.79, -2769.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-701.17, -2483.58], [-696.21, -2483.76], [-696.22, -2484.21], [-692.14, -2484.35], [-692.24, -2487.38], [-691.11, -2487.42], [-691.18, -2489.55], [-692.32, -2489.51], [-692.43, -2492.74], [-696.34, -2492.6], [-696.39, -2494.05], [-701.99, -2493.85], [-701.69, -2485.2], [-701.23, -2485.22], [-701.17, -2483.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1012.15, -2480.41], [-1007.05, -2480.61], [-1007.26, -2485.84], [-1012.36, -2485.63], [-1012.15, -2480.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1049.53, -2441.76], [-1042.34, -2442.09], [-1042.65, -2448.88], [-1049.83, -2448.56], [-1049.53, -2441.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-883.24, -2766.57], [-883.93, -2777.59], [-874.22, -2778.19], [-873.53, -2767.18], [-883.24, -2766.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-883.14, -2819.55], [-883.97, -2828.29], [-874.05, -2829.23], [-873.22, -2820.49], [-883.14, -2819.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-668.1, -2425.17], [-659.77, -2425.5], [-660.23, -2437.53], [-668.57, -2437.2], [-668.1, -2425.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-924.21, -2608.4], [-924.51, -2618.95], [-917.79, -2619.14], [-917.49, -2608.59], [-924.21, -2608.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-778.56, -2659.0], [-778.85, -2666.74], [-771.65, -2667.0], [-771.37, -2659.27], [-778.56, -2659.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-780.93, -2615.36], [-781.22, -2625.65], [-775.6, -2625.81], [-775.3, -2615.53], [-780.93, -2615.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-678.07, -2575.27], [-680.15, -2580.4], [-689.87, -2576.48], [-687.8, -2571.35], [-678.07, -2575.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-834.23, -2717.6], [-834.62, -2725.54], [-826.1, -2725.95], [-825.72, -2718.01], [-834.23, -2717.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-981.43, -2529.54], [-973.45, -2529.96], [-974.02, -2540.89], [-982.0, -2540.47], [-981.43, -2529.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-740.51, -2543.5], [-740.88, -2550.94], [-732.2, -2551.37], [-731.83, -2543.93], [-740.51, -2543.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1094.6, -2439.17], [-1094.74, -2445.56], [-1102.0, -2445.41], [-1101.87, -2439.02], [-1094.6, -2439.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-962.97, -2560.95], [-956.54, -2561.17], [-956.8, -2568.41], [-963.23, -2568.18], [-962.97, -2560.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-829.67, -2599.44], [-822.5, -2599.6], [-822.67, -2607.32], [-829.83, -2607.17], [-829.67, -2599.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-921.93, -2530.83], [-922.47, -2541.33], [-914.11, -2541.76], [-913.57, -2531.27], [-921.93, -2530.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-993.92, -2483.72], [-994.63, -2497.64], [-985.35, -2498.12], [-984.65, -2484.19], [-993.92, -2483.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-792.63, -2657.73], [-793.0, -2665.76], [-783.78, -2666.18], [-783.41, -2658.16], [-792.63, -2657.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1052.52, -2535.14], [-1045.86, -2535.39], [-1045.47, -2525.39], [-1052.13, -2525.12], [-1052.52, -2535.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-813.54, -2708.82], [-808.44, -2708.98], [-808.65, -2716.16], [-813.75, -2716.02], [-813.54, -2708.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-645.94, -2562.14], [-640.61, -2563.77], [-642.77, -2570.84], [-648.11, -2569.21], [-645.94, -2562.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1004.84, -2544.41], [-1000.45, -2544.62], [-1000.92, -2554.95], [-1005.33, -2554.75], [-1004.84, -2544.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-628.92, -2432.9], [-629.24, -2443.9], [-621.1, -2444.13], [-620.79, -2433.14], [-628.92, -2432.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1017.56, -2432.06], [-1017.79, -2438.49], [-1010.91, -2438.74], [-1010.68, -2432.31], [-1017.56, -2432.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-899.5, -2725.12], [-899.99, -2736.9], [-889.79, -2737.31], [-889.29, -2725.54], [-899.5, -2725.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1054.95, -2537.74], [-1062.76, -2537.35], [-1062.11, -2524.29], [-1054.3, -2524.68], [-1054.95, -2537.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-964.29, -2593.8], [-964.49, -2598.08], [-958.04, -2598.36], [-957.84, -2594.09], [-964.29, -2593.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-804.48, -2707.77], [-797.71, -2708.08], [-798.06, -2715.54], [-804.83, -2715.21], [-804.48, -2707.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-793.48, -2683.63], [-788.36, -2683.87], [-788.67, -2690.56], [-793.79, -2690.31], [-793.48, -2683.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-968.55, -2545.86], [-962.07, -2546.18], [-962.61, -2557.38], [-969.09, -2557.07], [-968.55, -2545.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-917.6, -2725.84], [-908.98, -2726.24], [-909.41, -2735.43], [-918.04, -2735.03], [-917.6, -2725.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-994.13, -2528.58], [-984.14, -2529.03], [-984.73, -2542.03], [-994.72, -2541.58], [-994.13, -2528.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-956.32, -2705.18], [-956.21, -2710.66], [-948.57, -2710.5], [-948.68, -2705.03], [-956.32, -2705.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1107.48, -2438.58], [-1102.78, -2438.68], [-1102.9, -2444.83], [-1107.61, -2444.74], [-1107.48, -2438.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-854.46, -2789.89], [-845.72, -2790.34], [-846.54, -2806.11], [-855.27, -2805.66], [-854.46, -2789.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-870.56, -2588.26], [-870.75, -2594.1], [-857.26, -2594.54], [-857.07, -2588.69], [-870.56, -2588.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-682.7, -2597.8], [-678.4, -2599.59], [-680.75, -2605.18], [-685.05, -2603.39], [-682.7, -2597.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-996.42, -2442.24], [-1004.04, -2441.88], [-1004.45, -2450.2], [-996.82, -2450.57], [-996.42, -2442.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-649.21, -2477.47], [-641.81, -2477.92], [-642.22, -2484.66], [-649.62, -2484.21], [-649.21, -2477.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-718.89, -2542.25], [-719.27, -2550.7], [-709.55, -2551.13], [-709.17, -2542.7], [-718.89, -2542.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1043.25, -2535.06], [-1035.3, -2535.38], [-1034.99, -2527.88], [-1042.94, -2527.54], [-1043.25, -2535.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-981.77, -2649.42], [-975.29, -2649.56], [-975.5, -2659.61], [-981.99, -2659.47], [-981.77, -2649.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-768.11, -2612.46], [-759.64, -2612.66], [-759.84, -2621.42], [-768.31, -2621.23], [-768.11, -2612.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-960.79, -2705.85], [-965.86, -2699.47], [-957.99, -2693.27], [-952.92, -2699.64], [-960.79, -2705.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-826.93, -2704.57], [-821.52, -2704.76], [-821.83, -2713.57], [-827.23, -2713.39], [-826.93, -2704.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-766.98, -2668.65], [-761.66, -2668.84], [-761.91, -2675.54], [-767.23, -2675.34], [-766.98, -2668.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-949.69, -2536.33], [-950.41, -2549.67], [-941.57, -2550.14], [-940.85, -2536.79], [-949.69, -2536.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-669.7, -2586.57], [-663.7, -2588.83], [-665.83, -2594.44], [-671.83, -2592.18], [-669.7, -2586.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-733.13, -2577.85], [-729.86, -2570.89], [-718.8, -2576.06], [-722.07, -2583.01], [-733.13, -2577.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-691.98, -2470.06], [-699.95, -2469.67], [-700.37, -2478.49], [-692.4, -2478.88], [-691.98, -2470.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-726.65, -2545.96], [-723.11, -2546.15], [-723.45, -2552.56], [-726.99, -2552.37], [-726.65, -2545.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-883.44, -2485.88], [-877.97, -2486.16], [-878.35, -2493.55], [-883.81, -2493.27], [-883.44, -2485.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-977.41, -2468.2], [-977.67, -2474.36], [-971.28, -2474.64], [-971.02, -2468.48], [-977.41, -2468.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-767.09, -2658.33], [-767.56, -2666.25], [-758.19, -2666.8], [-757.72, -2658.87], [-767.09, -2658.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-901.54, -2797.23], [-901.94, -2804.96], [-893.84, -2805.37], [-893.45, -2797.63], [-901.54, -2797.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1126.59, -2317.14], [-1121.23, -2317.3], [-1121.41, -2323.6], [-1126.77, -2323.45], [-1126.59, -2317.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-805.58, -2613.87], [-806.13, -2626.29], [-812.96, -2625.99], [-812.41, -2613.57], [-805.58, -2613.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-945.26, -2700.06], [-945.4, -2706.3], [-939.51, -2706.44], [-939.36, -2700.21], [-945.26, -2700.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-782.96, -2692.43], [-776.38, -2692.67], [-776.17, -2686.75], [-782.74, -2686.5], [-782.96, -2692.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-887.03, -2801.93], [-892.24, -2801.68], [-891.94, -2795.39], [-886.72, -2795.64], [-887.03, -2801.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-979.02, -2556.84], [-974.0, -2557.09], [-974.32, -2563.56], [-979.34, -2563.31], [-979.02, -2556.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-695.67, -2584.68], [-698.8, -2592.09], [-685.72, -2597.58], [-682.6, -2590.18], [-695.67, -2584.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-871.21, -2726.18], [-862.27, -2726.61], [-862.94, -2740.48], [-871.88, -2740.06], [-871.21, -2726.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1005.27, -2601.18], [-1012.3, -2601.01], [-1012.65, -2614.78], [-1005.61, -2614.95], [-1005.27, -2601.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1157.55, -2291.92], [-1151.38, -2292.15], [-1151.68, -2300.15], [-1157.86, -2299.91], [-1157.55, -2291.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-834.5, -2730.61], [-834.94, -2739.11], [-825.61, -2739.59], [-825.16, -2731.1], [-834.5, -2730.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1136.51, -2361.44], [-1124.72, -2362.03], [-1125.41, -2375.84], [-1137.19, -2375.26], [-1136.51, -2361.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-888.18, -2667.18], [-884.73, -2667.3], [-884.9, -2672.35], [-888.35, -2672.24], [-888.18, -2667.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-964.95, -2643.73], [-972.26, -2643.57], [-972.53, -2656.69], [-965.21, -2656.85], [-964.95, -2643.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-919.1, -2488.9], [-925.96, -2488.56], [-925.58, -2480.89], [-918.72, -2481.23], [-919.1, -2488.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-940.97, -2429.26], [-945.69, -2429.05], [-945.93, -2434.44], [-941.21, -2434.65], [-940.97, -2429.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1120.92, -2358.09], [-1108.85, -2358.65], [-1109.69, -2376.5], [-1121.77, -2375.93], [-1120.92, -2358.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-1018.19, -2461.99], [-1018.49, -2468.05], [-1026.35, -2467.67], [-1026.05, -2461.6], [-1018.19, -2461.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-803.92, -2685.41], [-808.58, -2685.19], [-808.85, -2690.84], [-804.18, -2691.06], [-803.92, -2685.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1005.48, -2641.04], [-1005.86, -2648.54], [-993.25, -2649.17], [-992.87, -2641.67], [-1005.48, -2641.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1054.11, -2484.33], [-1062.74, -2483.95], [-1063.17, -2493.64], [-1054.54, -2494.03], [-1054.11, -2484.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-740.83, -2579.81], [-739.11, -2576.14], [-733.28, -2578.87], [-735.01, -2582.53], [-740.83, -2579.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1066.7, -2441.98], [-1060.84, -2442.28], [-1061.2, -2449.3], [-1067.07, -2448.99], [-1066.7, -2441.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-868.66, -2600.34], [-859.88, -2600.65], [-860.16, -2608.54], [-868.95, -2608.23], [-868.66, -2600.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-868.11, -2667.45], [-861.16, -2667.77], [-861.49, -2675.01], [-868.44, -2674.69], [-868.11, -2667.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-870.86, -2820.33], [-866.32, -2820.73], [-866.81, -2826.27], [-871.35, -2825.88], [-870.86, -2820.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-933.43, -2650.12], [-940.52, -2649.84], [-940.97, -2661.32], [-933.87, -2661.6], [-933.43, -2650.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-903.42, -2651.74], [-910.2, -2651.42], [-910.76, -2663.5], [-903.97, -2663.82], [-903.42, -2651.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-961.8, -2483.7], [-958.22, -2483.83], [-958.42, -2489.16], [-962.01, -2489.03], [-961.8, -2483.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1161.37, -2290.98], [-1166.91, -2290.76], [-1167.27, -2299.79], [-1161.74, -2300.01], [-1161.37, -2290.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-661.29, -2514.56], [-669.76, -2514.07], [-670.27, -2522.66], [-661.79, -2523.15], [-661.29, -2514.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-958.49, -2649.41], [-958.78, -2659.53], [-949.01, -2659.81], [-948.72, -2649.69], [-958.49, -2649.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-645.41, -2429.98], [-651.08, -2429.72], [-651.61, -2441.14], [-645.96, -2441.4], [-645.41, -2429.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-666.3, -2498.12], [-666.92, -2509.71], [-650.98, -2510.55], [-650.37, -2498.95], [-666.3, -2498.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-642.33, -2456.75], [-648.79, -2456.4], [-649.16, -2463.04], [-642.7, -2463.39], [-642.33, -2456.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-892.83, -2679.64], [-886.0, -2679.91], [-886.29, -2687.04], [-893.12, -2686.77], [-892.83, -2679.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-776.52, -2568.28], [-781.57, -2568.1], [-781.84, -2575.72], [-776.8, -2575.89], [-776.52, -2568.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-891.36, -2779.2], [-886.7, -2779.55], [-887.15, -2785.41], [-891.81, -2785.07], [-891.36, -2779.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-646.62, -2538.1], [-649.39, -2544.06], [-642.59, -2547.18], [-639.83, -2541.24], [-646.62, -2538.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-945.49, -2676.99], [-938.31, -2677.14], [-938.48, -2685.14], [-945.65, -2684.99], [-945.49, -2676.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1081.63, -2486.61], [-1081.99, -2495.49], [-1089.46, -2495.19], [-1089.1, -2486.31], [-1081.63, -2486.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-879.51, -2700.84], [-885.63, -2700.63], [-885.92, -2708.85], [-879.8, -2709.05], [-879.51, -2700.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-896.78, -2767.88], [-897.14, -2775.99], [-890.26, -2776.29], [-889.9, -2768.18], [-896.78, -2767.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-995.11, -2445.9], [-989.92, -2446.17], [-990.25, -2452.53], [-995.44, -2452.26], [-995.11, -2445.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-671.61, -2527.26], [-674.94, -2534.79], [-659.79, -2541.47], [-656.44, -2533.94], [-671.61, -2527.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-904.56, -2669.87], [-901.02, -2670.0], [-901.23, -2675.72], [-904.78, -2675.6], [-904.56, -2669.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-901.85, -2600.92], [-897.62, -2601.11], [-897.91, -2607.26], [-902.14, -2607.06], [-901.85, -2600.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-937.53, -2606.74], [-928.83, -2607.12], [-929.5, -2621.91], [-938.18, -2621.52], [-937.53, -2606.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-666.11, -2473.88], [-666.41, -2481.04], [-657.11, -2481.44], [-657.0, -2478.74], [-654.83, -2478.84], [-654.65, -2474.37], [-666.11, -2473.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-743.19, -2626.3], [-745.77, -2626.23], [-745.8, -2627.68], [-748.68, -2627.61], [-748.39, -2616.57], [-742.94, -2616.71], [-743.19, -2626.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-778.28, -2543.51], [-778.69, -2553.83], [-771.71, -2554.12], [-771.65, -2552.64], [-769.35, -2552.73], [-769.0, -2543.87], [-778.28, -2543.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-675.05, -2544.33], [-678.0, -2551.48], [-670.37, -2554.6], [-669.25, -2551.9], [-667.44, -2552.65], [-665.6, -2548.18], [-675.05, -2544.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1011.43, -2527.86], [-1011.87, -2537.71], [-1000.95, -2538.19], [-1000.46, -2526.88], [-1006.63, -2526.61], [-1006.69, -2528.08], [-1011.43, -2527.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-640.77, -2430.9], [-641.3, -2445.77], [-636.91, -2445.93], [-636.82, -2443.57], [-634.18, -2443.67], [-633.72, -2431.16], [-640.77, -2430.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1027.87, -2531.26], [-1028.05, -2536.34], [-1019.53, -2536.63], [-1019.22, -2527.66], [-1025.67, -2527.43], [-1025.8, -2531.33], [-1027.87, -2531.26]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-730.74, -2563.1], [-728.61, -2558.14], [-725.64, -2559.4], [-724.7, -2557.2], [-714.81, -2561.42], [-717.88, -2568.59], [-730.74, -2563.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-797.35, -2614.46], [-797.72, -2627.21], [-787.84, -2627.5], [-787.38, -2611.87], [-792.57, -2611.71], [-792.66, -2614.6], [-797.35, -2614.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-920.76, -2767.3], [-920.98, -2774.87], [-918.19, -2774.95], [-918.3, -2778.7], [-912.45, -2778.87], [-912.13, -2767.55], [-920.76, -2767.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-829.93, -2654.55], [-823.36, -2654.82], [-823.82, -2665.79], [-825.1, -2665.74], [-825.33, -2671.25], [-830.62, -2671.03], [-829.93, -2654.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-984.12, -2601.02], [-976.21, -2601.36], [-976.81, -2615.66], [-980.65, -2615.5], [-980.76, -2618.1], [-984.83, -2617.93], [-984.12, -2601.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1000.35, -2598.19], [-990.78, -2598.45], [-991.09, -2610.25], [-993.39, -2610.19], [-993.51, -2615.07], [-1000.79, -2614.88], [-1000.35, -2598.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-924.31, -2648.64], [-919.07, -2648.9], [-919.39, -2655.5], [-916.55, -2655.63], [-916.89, -2662.68], [-924.98, -2662.29], [-924.31, -2648.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1102.36, -2296.68], [-1095.04, -2296.98], [-1095.63, -2311.37], [-1102.36, -2311.1], [-1102.18, -2306.56], [-1102.76, -2306.53], [-1102.36, -2296.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-701.28, -2495.13], [-691.32, -2495.55], [-691.72, -2505.02], [-695.4, -2504.86], [-695.34, -2503.5], [-701.62, -2503.23], [-701.28, -2495.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-906.97, -2535.25], [-907.71, -2552.45], [-895.95, -2552.95], [-895.26, -2536.65], [-901.0, -2536.39], [-900.96, -2535.51], [-906.97, -2535.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-867.59, -2769.8], [-867.98, -2778.88], [-859.89, -2779.21], [-859.48, -2769.3], [-862.38, -2769.17], [-862.41, -2770.02], [-867.59, -2769.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-740.18, -2587.51], [-742.86, -2593.38], [-738.23, -2595.48], [-740.18, -2599.75], [-733.64, -2602.71], [-729.01, -2592.56], [-740.18, -2587.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-954.1, -2606.7], [-946.0, -2607.01], [-946.5, -2620.38], [-953.44, -2620.13], [-953.35, -2617.63], [-954.5, -2617.59], [-954.1, -2606.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-903.37, -2813.89], [-903.73, -2821.45], [-891.74, -2822.0], [-891.4, -2814.45], [-903.37, -2813.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-826.18, -2537.25], [-817.91, -2537.52], [-818.33, -2550.33], [-822.99, -2550.19], [-822.9, -2547.77], [-826.52, -2547.64], [-826.18, -2537.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1075.61, -2545.64], [-1066.84, -2545.95], [-1066.09, -2525.52], [-1074.73, -2525.21], [-1075.05, -2534.05], [-1077.62, -2533.97], [-1077.9, -2541.49], [-1075.61, -2545.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-968.18, -2616.53], [-967.74, -2602.76], [-960.48, -2602.99], [-960.92, -2616.75], [-963.3, -2616.68], [-963.37, -2618.94], [-966.43, -2618.84], [-966.36, -2616.58], [-968.18, -2616.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-940.33, -2715.44], [-932.52, -2715.69], [-933.06, -2732.59], [-933.49, -2732.57], [-933.55, -2734.61], [-940.43, -2734.4], [-940.37, -2732.43], [-940.87, -2732.42], [-940.33, -2715.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1116.49, -2298.9], [-1116.84, -2308.11], [-1106.91, -2308.48], [-1106.61, -2300.66], [-1105.75, -2300.7], [-1105.61, -2297.26], [-1114.02, -2296.95], [-1114.09, -2298.99], [-1116.49, -2298.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-937.04, -2535.38], [-937.47, -2543.81], [-927.48, -2544.31], [-927.05, -2535.88], [-930.61, -2535.7], [-930.48, -2533.36], [-933.49, -2533.21], [-933.6, -2535.55], [-937.04, -2535.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-730.84, -2553.29], [-730.93, -2553.94], [-733.68, -2553.55], [-734.41, -2558.81], [-731.01, -2559.28], [-730.72, -2557.21], [-725.38, -2557.94], [-724.86, -2554.12], [-730.84, -2553.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1102.4, -2364.01], [-1094.21, -2364.44], [-1094.81, -2375.86], [-1096.12, -2375.79], [-1096.24, -2378.11], [-1101.97, -2377.81], [-1101.85, -2375.49], [-1103.01, -2375.43], [-1102.4, -2364.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-681.9, -2556.92], [-682.33, -2557.92], [-684.42, -2557.04], [-686.48, -2561.88], [-684.37, -2562.77], [-684.84, -2563.86], [-673.29, -2568.71], [-670.36, -2561.78], [-681.9, -2556.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1141.0, -2356.29], [-1146.71, -2356.08], [-1146.99, -2363.69], [-1150.93, -2363.53], [-1151.39, -2375.83], [-1143.19, -2376.13], [-1142.75, -2364.22], [-1141.29, -2364.27], [-1141.0, -2356.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1130.89, -2297.26], [-1127.03, -2297.4], [-1126.95, -2295.32], [-1122.96, -2295.48], [-1123.04, -2297.56], [-1122.18, -2297.6], [-1122.61, -2308.85], [-1131.33, -2308.52], [-1130.89, -2297.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1144.36, -2296.37], [-1136.17, -2296.66], [-1136.48, -2305.31], [-1144.66, -2305.02], [-1144.57, -2302.52], [-1148.2, -2302.4], [-1148.01, -2296.85], [-1144.38, -2296.97], [-1144.36, -2296.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-818.63, -2656.01], [-819.06, -2667.65], [-810.61, -2667.97], [-810.18, -2656.32], [-813.12, -2656.22], [-813.08, -2655.25], [-815.16, -2655.17], [-815.19, -2656.13], [-818.63, -2656.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-795.33, -2543.98], [-795.71, -2555.29], [-786.31, -2555.6], [-785.95, -2544.29], [-788.94, -2544.18], [-788.91, -2542.94], [-792.12, -2542.83], [-792.17, -2544.08], [-795.33, -2543.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-709.77, -2503.11], [-703.79, -2503.32], [-703.98, -2508.97], [-709.95, -2508.78], [-709.92, -2508.07], [-712.15, -2507.99], [-712.01, -2503.8], [-709.79, -2503.88], [-709.77, -2503.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-907.14, -2767.49], [-907.48, -2778.56], [-898.75, -2778.85], [-898.4, -2767.76], [-899.84, -2767.72], [-899.78, -2765.84], [-902.46, -2765.75], [-902.51, -2767.64], [-907.14, -2767.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-864.16, -2610.77], [-864.58, -2621.1], [-863.97, -2621.13], [-864.05, -2622.98], [-857.07, -2623.26], [-856.99, -2621.41], [-856.17, -2621.44], [-855.76, -2611.11], [-864.16, -2610.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-805.44, -2656.5], [-805.75, -2663.82], [-804.78, -2663.86], [-804.91, -2666.93], [-800.31, -2667.13], [-800.19, -2664.05], [-797.51, -2664.16], [-797.2, -2656.84], [-805.44, -2656.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1121.24, -2079.41], [-1121.33, -2081.27], [-1122.55, -2081.22], [-1123.02, -2091.38], [-1113.11, -2091.84], [-1112.88, -2086.88], [-1111.88, -2086.93], [-1111.52, -2078.95], [-1117.85, -2078.66], [-1117.89, -2079.57], [-1121.24, -2079.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1135.11, -2081.35], [-1135.26, -2085.18], [-1138.64, -2085.05], [-1138.94, -2093.04], [-1135.57, -2093.17], [-1135.6, -2093.96], [-1131.97, -2094.09], [-1132.04, -2096.08], [-1126.32, -2096.3], [-1125.77, -2081.7], [-1135.11, -2081.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1275.78, -2120.51], [-1266.05, -2120.78], [-1266.16, -2124.32], [-1265.4, -2124.34], [-1265.61, -2131.73], [-1266.04, -2131.72], [-1266.24, -2138.75], [-1270.07, -2138.64], [-1269.89, -2132.32], [-1276.11, -2132.14], [-1275.78, -2120.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1102.97, -2103.51], [-1103.18, -2108.3], [-1098.82, -2108.49], [-1099.05, -2113.72], [-1086.3, -2114.27], [-1086.1, -2109.75], [-1088.25, -2109.66], [-1087.94, -2102.64], [-1092.94, -2102.42], [-1093.01, -2103.95], [-1102.97, -2103.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1246.51, -2124.97], [-1246.96, -2136.03], [-1244.74, -2136.12], [-1244.8, -2137.54], [-1240.21, -2137.73], [-1240.16, -2136.31], [-1237.96, -2136.39], [-1237.65, -2128.83], [-1239.56, -2128.75], [-1239.42, -2125.26], [-1246.51, -2124.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1110.17, -2136.59], [-1110.61, -2146.38], [-1103.99, -2146.68], [-1103.9, -2144.93], [-1100.6, -2145.08], [-1100.24, -2137.04], [-1102.59, -2136.93], [-1102.46, -2134.18], [-1108.79, -2133.9], [-1108.92, -2136.64], [-1110.17, -2136.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1126.14, -2136.35], [-1126.57, -2145.49], [-1114.95, -2146.03], [-1114.52, -2136.9], [-1115.7, -2136.84], [-1115.58, -2134.1], [-1119.29, -2133.93], [-1119.23, -2132.65], [-1124.58, -2132.41], [-1124.76, -2136.43], [-1126.14, -2136.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1266.93, -2086.5], [-1262.8, -2090.67], [-1260.73, -2088.63], [-1259.3, -2090.06], [-1261.44, -2092.17], [-1257.02, -2096.63], [-1251.05, -2090.75], [-1254.98, -2086.8], [-1252.62, -2084.48], [-1253.19, -2083.91], [-1251.54, -2082.28], [-1257.04, -2076.75], [-1266.93, -2086.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1216.55, -2130.47], [-1216.75, -2135.98], [-1214.13, -2136.08], [-1214.23, -2138.77], [-1208.92, -2138.98], [-1209.03, -2141.9], [-1205.3, -2142.04], [-1204.86, -2130.92], [-1206.06, -2130.88], [-1205.86, -2125.52], [-1210.12, -2125.35], [-1210.33, -2130.71], [-1216.55, -2130.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1168.45, -2083.67], [-1168.93, -2093.62], [-1166.2, -2093.74], [-1166.41, -2098.23], [-1160.46, -2098.52], [-1160.25, -2094.03], [-1159.11, -2094.09], [-1158.95, -2090.51], [-1157.56, -2090.57], [-1157.34, -2085.82], [-1162.31, -2085.58], [-1162.23, -2083.97], [-1168.45, -2083.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1230.71, -2093.75], [-1226.95, -2093.85], [-1227.14, -2101.25], [-1230.89, -2101.15], [-1230.71, -2093.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1277.15, -2105.65], [-1277.44, -2113.76], [-1269.69, -2114.03], [-1269.4, -2105.93], [-1277.15, -2105.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1200.19, -2100.65], [-1196.27, -2100.76], [-1196.48, -2108.27], [-1200.42, -2108.16], [-1200.19, -2100.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1300.37, -2072.8], [-1306.87, -2076.41], [-1302.56, -2084.12], [-1296.06, -2080.49], [-1300.37, -2072.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1195.8, -2085.16], [-1196.04, -2093.75], [-1187.57, -2094.0], [-1187.33, -2085.4], [-1195.8, -2085.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1247.18, -2093.27], [-1242.59, -2093.37], [-1242.75, -2100.67], [-1247.33, -2100.57], [-1247.18, -2093.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1293.92, -2080.29], [-1291.73, -2083.96], [-1285.67, -2080.38], [-1287.86, -2076.7], [-1293.92, -2080.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1210.06, -2085.08], [-1210.35, -2093.7], [-1202.64, -2093.96], [-1202.36, -2085.34], [-1210.06, -2085.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1238.11, -2120.05], [-1232.87, -2120.25], [-1233.09, -2125.96], [-1238.33, -2125.77], [-1238.11, -2120.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1188.94, -2129.28], [-1198.51, -2128.81], [-1199.16, -2141.86], [-1189.58, -2142.32], [-1188.94, -2129.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1211.62, -2101.48], [-1215.76, -2101.36], [-1216.0, -2109.47], [-1211.85, -2109.58], [-1211.62, -2101.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1101.38, -2092.78], [-1101.65, -2100.21], [-1094.27, -2100.46], [-1094.01, -2093.04], [-1101.38, -2092.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1231.0, -2123.69], [-1227.44, -2123.87], [-1227.69, -2129.19], [-1231.26, -2129.01], [-1231.0, -2123.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1283.12, -2092.63], [-1280.82, -2096.73], [-1276.26, -2094.19], [-1278.57, -2090.09], [-1283.12, -2092.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1118.21, -2121.27], [-1118.51, -2127.91], [-1111.68, -2128.22], [-1111.38, -2121.58], [-1118.21, -2121.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1163.78, -2104.59], [-1156.64, -2104.89], [-1156.96, -2112.4], [-1164.1, -2112.09], [-1163.78, -2104.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1109.65, -2093.63], [-1113.94, -2093.44], [-1114.23, -2099.58], [-1109.94, -2099.78], [-1109.65, -2093.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1154.76, -2100.58], [-1150.77, -2100.7], [-1151.02, -2108.11], [-1155.01, -2107.97], [-1154.76, -2100.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1106.62, -2075.48], [-1097.51, -2075.82], [-1098.0, -2088.77], [-1107.11, -2088.44], [-1106.62, -2075.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1262.83, -2118.64], [-1258.19, -2118.77], [-1258.4, -2126.06], [-1263.04, -2125.93], [-1262.83, -2118.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1092.53, -2117.13], [-1092.9, -2123.89], [-1086.35, -2124.24], [-1085.99, -2117.49], [-1092.53, -2117.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1108.43, -2111.23], [-1108.62, -2115.4], [-1101.85, -2115.72], [-1101.66, -2111.54], [-1108.43, -2111.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1186.06, -2101.79], [-1186.25, -2107.56], [-1180.13, -2107.76], [-1179.95, -2101.99], [-1186.06, -2101.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1186.27, -2112.42], [-1186.51, -2117.69], [-1180.4, -2117.97], [-1180.16, -2112.7], [-1186.27, -2112.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1169.27, -2123.68], [-1159.11, -2124.2], [-1160.11, -2143.88], [-1170.27, -2143.37], [-1169.27, -2123.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-1279.61, -2074.76], [-1274.31, -2084.45], [-1260.87, -2077.16], [-1266.68, -2066.54], [-1277.96, -2072.66], [-1277.46, -2073.59], [-1279.61, -2074.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-1243.05, -2084.57], [-1243.27, -2092.14], [-1232.45, -2092.45], [-1232.18, -2082.97], [-1239.12, -2082.77], [-1239.18, -2084.68], [-1243.05, -2084.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1260.24, -2127.12], [-1260.75, -2136.54], [-1251.31, -2137.04], [-1250.62, -2124.1], [-1255.52, -2123.84], [-1255.7, -2127.36], [-1260.24, -2127.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1094.27, -2134.82], [-1094.86, -2145.82], [-1089.93, -2146.08], [-1089.78, -2143.37], [-1084.23, -2143.66], [-1083.79, -2135.37], [-1094.27, -2134.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1152.99, -2134.12], [-1153.37, -2143.85], [-1144.74, -2144.2], [-1144.2, -2130.32], [-1148.73, -2130.15], [-1148.89, -2134.28], [-1152.99, -2134.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1290.02, -2073.97], [-1294.63, -2065.61], [-1282.69, -2059.09], [-1283.43, -2057.73], [-1278.77, -2055.19], [-1273.42, -2064.91], [-1290.02, -2073.97]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1227.7, -2082.89], [-1227.92, -2090.77], [-1218.86, -2091.03], [-1218.66, -2084.18], [-1221.83, -2084.09], [-1221.8, -2083.06], [-1227.7, -2082.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1140.63, -2133.95], [-1141.08, -2143.45], [-1133.06, -2143.82], [-1132.94, -2141.39], [-1129.6, -2141.54], [-1129.27, -2134.48], [-1140.63, -2133.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1185.09, -2122.46], [-1186.21, -2142.74], [-1176.12, -2143.31], [-1174.99, -2123.03], [-1176.73, -2122.94], [-1176.53, -2119.4], [-1183.03, -2119.03], [-1183.23, -2122.57], [-1185.09, -2122.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-1287.99, -2044.32], [-1284.35, -2051.03], [-1281.32, -2049.39], [-1279.67, -2052.43], [-1285.53, -2055.57], [-1286.64, -2053.52], [-1295.43, -2058.24], [-1299.59, -2050.55], [-1287.99, -2044.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1227.56, -2131.41], [-1227.85, -2139.5], [-1225.17, -2139.6], [-1225.15, -2138.77], [-1220.67, -2138.93], [-1220.25, -2127.51], [-1226.55, -2127.28], [-1226.7, -2131.45], [-1227.56, -2131.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1152.47, -2082.09], [-1152.79, -2090.08], [-1142.91, -2090.46], [-1142.8, -2087.54], [-1140.79, -2087.62], [-1140.66, -2084.35], [-1142.66, -2084.28], [-1142.6, -2082.49], [-1152.47, -2082.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1091.45, -2076.08], [-1091.9, -2089.55], [-1085.96, -2089.75], [-1085.79, -2084.51], [-1081.13, -2084.67], [-1080.8, -2074.71], [-1085.66, -2074.54], [-1085.72, -2076.27], [-1091.45, -2076.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1308.13, -2095.62], [-1298.03, -2089.89], [-1286.32, -2110.4], [-1287.22, -2110.91], [-1284.08, -2116.43], [-1292.22, -2121.05], [-1293.02, -2119.65], [-1294.08, -2120.25], [-1308.13, -2095.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.272, "pop": 136, "jobs": 0}}, {"shape": {"outer": [[-1182.12, -2085.47], [-1182.3, -2093.49], [-1171.92, -2093.71], [-1171.74, -2085.7], [-1174.38, -2085.65], [-1174.34, -2083.46], [-1179.14, -2083.36], [-1179.19, -2085.54], [-1182.12, -2085.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-837.42, -2099.9], [-837.77, -2106.92], [-835.45, -2107.04], [-835.8, -2113.93], [-833.83, -2114.03], [-833.94, -2116.24], [-830.2, -2116.42], [-830.08, -2114.22], [-827.66, -2114.34], [-826.97, -2100.42], [-837.42, -2099.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-701.43, -2106.09], [-701.92, -2118.08], [-699.8, -2118.16], [-699.9, -2120.55], [-701.63, -2120.48], [-701.93, -2127.56], [-695.35, -2127.84], [-694.95, -2118.37], [-692.76, -2118.46], [-692.25, -2106.47], [-701.43, -2106.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-983.07, -2137.09], [-983.66, -2151.52], [-974.52, -2151.9], [-973.86, -2135.82], [-977.1, -2135.7], [-977.17, -2137.33], [-978.64, -2137.26], [-978.59, -2135.9], [-981.98, -2135.77], [-982.04, -2137.13], [-983.07, -2137.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-685.3, -2105.11], [-685.57, -2112.57], [-685.25, -2112.59], [-685.53, -2120.34], [-683.72, -2120.4], [-683.84, -2123.78], [-680.4, -2123.9], [-680.28, -2120.52], [-677.1, -2120.63], [-676.56, -2105.41], [-685.3, -2105.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-809.73, -2159.08], [-801.94, -2159.4], [-801.65, -2152.39], [-800.06, -2152.46], [-799.87, -2148.05], [-801.47, -2147.99], [-801.25, -2142.76], [-810.19, -2142.38], [-810.6, -2152.23], [-809.45, -2152.28], [-809.73, -2159.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1028.38, -2140.36], [-1029.18, -2148.49], [-1027.23, -2148.68], [-1027.31, -2149.56], [-1020.43, -2150.23], [-1019.25, -2138.23], [-1021.09, -2138.04], [-1023.51, -2137.81], [-1023.6, -2138.79], [-1023.81, -2140.81], [-1028.38, -2140.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1044.11, -2139.17], [-1044.49, -2148.05], [-1043.49, -2148.09], [-1043.54, -2149.3], [-1035.04, -2149.66], [-1034.62, -2139.57], [-1035.56, -2139.53], [-1035.46, -2137.07], [-1040.96, -2136.84], [-1041.06, -2139.3], [-1044.11, -2139.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-822.11, -2100.67], [-822.52, -2108.85], [-819.81, -2109.0], [-820.05, -2113.58], [-819.09, -2113.63], [-819.16, -2114.89], [-816.86, -2115.01], [-816.79, -2113.74], [-812.31, -2113.97], [-811.66, -2101.2], [-822.11, -2100.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1054.38, -2115.72], [-1054.02, -2108.09], [-1047.56, -2108.39], [-1047.28, -2102.42], [-1036.56, -2102.91], [-1037.11, -2114.55], [-1038.95, -2114.47], [-1039.01, -2115.8], [-1042.01, -2115.67], [-1042.04, -2116.29], [-1054.38, -2115.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-716.46, -2104.4], [-717.05, -2117.0], [-712.01, -2117.24], [-712.18, -2120.71], [-707.72, -2120.92], [-707.26, -2111.03], [-705.26, -2111.12], [-705.01, -2105.79], [-707.01, -2105.7], [-706.97, -2104.83], [-716.46, -2104.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-750.09, -2149.97], [-750.51, -2162.9], [-742.61, -2163.16], [-742.52, -2160.58], [-738.5, -2160.71], [-738.34, -2155.76], [-736.94, -2155.79], [-736.63, -2146.35], [-743.84, -2146.11], [-743.97, -2150.17], [-750.09, -2149.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-941.92, -2112.67], [-942.36, -2121.57], [-941.52, -2121.62], [-941.55, -2122.35], [-934.38, -2122.7], [-933.9, -2113.05], [-938.1, -2112.86], [-938.07, -2112.09], [-939.92, -2112.0], [-939.96, -2112.76], [-941.92, -2112.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-994.29, -2082.58], [-994.64, -2090.44], [-992.39, -2090.53], [-992.53, -2093.76], [-983.92, -2094.14], [-983.43, -2083.05], [-987.37, -2082.89], [-987.32, -2081.78], [-990.6, -2081.63], [-990.65, -2082.74], [-994.29, -2082.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-646.17, -2111.57], [-646.5, -2121.22], [-637.66, -2121.52], [-637.31, -2111.82], [-637.87, -2111.8], [-637.73, -2107.68], [-642.1, -2107.53], [-642.19, -2110.2], [-645.13, -2110.1], [-645.18, -2111.61], [-646.17, -2111.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-647.63, -2154.36], [-647.88, -2163.22], [-645.04, -2163.3], [-645.07, -2164.45], [-640.11, -2164.59], [-639.82, -2154.58], [-641.56, -2154.53], [-641.5, -2152.3], [-646.42, -2152.16], [-646.48, -2154.39], [-647.63, -2154.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-658.86, -2106.69], [-654.27, -2106.91], [-654.22, -2105.91], [-651.16, -2106.06], [-651.77, -2118.85], [-655.03, -2118.69], [-654.95, -2116.93], [-657.47, -2116.81], [-657.45, -2116.36], [-659.31, -2116.27], [-658.86, -2106.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-762.0, -2100.92], [-755.99, -2101.07], [-756.01, -2101.91], [-753.54, -2101.97], [-753.69, -2107.9], [-750.79, -2107.97], [-750.89, -2112.01], [-753.79, -2111.93], [-753.86, -2115.17], [-763.69, -2114.92], [-763.49, -2106.87], [-762.15, -2106.91], [-762.0, -2100.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-747.76, -2101.59], [-748.07, -2110.11], [-746.96, -2110.15], [-747.09, -2113.79], [-743.32, -2113.93], [-743.19, -2110.29], [-740.68, -2110.39], [-740.75, -2112.24], [-736.72, -2112.39], [-736.61, -2109.38], [-735.64, -2109.42], [-735.36, -2102.06], [-747.76, -2101.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-947.44, -2140.05], [-947.98, -2153.85], [-937.3, -2154.27], [-936.75, -2140.31], [-937.2, -2140.3], [-937.11, -2137.89], [-939.47, -2137.79], [-939.43, -2136.72], [-944.28, -2136.53], [-944.39, -2139.29], [-946.0, -2139.22], [-946.05, -2140.12], [-947.44, -2140.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-870.41, -2096.48], [-870.83, -2105.3], [-869.79, -2105.34], [-870.13, -2112.71], [-867.98, -2112.8], [-868.12, -2115.73], [-862.35, -2116.0], [-862.29, -2114.5], [-859.94, -2114.6], [-859.53, -2105.82], [-857.86, -2105.9], [-857.44, -2097.09], [-870.41, -2096.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[-930.55, -2091.41], [-930.98, -2102.51], [-927.77, -2102.64], [-927.7, -2100.82], [-924.64, -2100.94], [-924.76, -2104.1], [-918.05, -2104.36], [-917.83, -2098.62], [-920.27, -2098.53], [-920.04, -2092.64], [-924.46, -2092.47], [-924.4, -2090.96], [-927.7, -2090.84], [-927.72, -2091.52], [-930.55, -2091.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-761.88, -2146.3], [-762.03, -2150.82], [-765.55, -2150.7], [-765.78, -2157.34], [-762.26, -2157.46], [-762.36, -2160.38], [-758.29, -2160.52], [-758.36, -2162.1], [-755.46, -2162.19], [-755.4, -2160.61], [-753.62, -2160.68], [-753.14, -2146.61], [-754.03, -2146.57], [-753.89, -2142.46], [-758.15, -2142.32], [-758.29, -2146.43], [-761.88, -2146.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-1056.62, -2128.11], [-1050.38, -2128.4], [-1050.77, -2136.49], [-1046.75, -2136.69], [-1047.08, -2143.8], [-1047.89, -2143.77], [-1048.25, -2151.53], [-1053.06, -2151.29], [-1052.97, -2149.48], [-1057.03, -2149.29], [-1056.79, -2144.32], [-1057.76, -2143.24], [-1057.66, -2141.12], [-1056.59, -2139.92], [-1056.4, -2135.9], [-1056.99, -2135.87], [-1056.62, -2128.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-703.63, -2153.52], [-703.98, -2162.29], [-694.98, -2162.66], [-694.62, -2153.89], [-703.63, -2153.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-717.73, -2153.66], [-718.07, -2161.86], [-709.5, -2162.21], [-709.16, -2154.02], [-717.73, -2153.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1037.16, -2090.74], [-1043.86, -2090.5], [-1044.11, -2097.37], [-1037.41, -2097.62], [-1037.16, -2090.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1027.87, -2086.96], [-1023.68, -2087.16], [-1023.93, -2092.49], [-1028.13, -2092.29], [-1027.87, -2086.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-697.13, -2134.81], [-697.45, -2140.95], [-690.19, -2141.31], [-689.87, -2135.19], [-697.13, -2134.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-633.4, -2127.84], [-633.66, -2134.54], [-627.93, -2134.76], [-627.67, -2128.05], [-633.4, -2127.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-997.2, -2098.02], [-990.28, -2098.32], [-990.59, -2105.45], [-997.51, -2105.15], [-997.2, -2098.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-825.38, -2117.36], [-819.38, -2117.65], [-819.74, -2124.95], [-825.74, -2124.66], [-825.38, -2117.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-688.29, -2124.49], [-688.59, -2132.7], [-681.72, -2132.95], [-681.41, -2124.75], [-688.29, -2124.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-733.39, -2153.03], [-733.71, -2161.1], [-724.83, -2161.46], [-724.5, -2153.39], [-733.39, -2153.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-856.75, -2129.09], [-857.15, -2137.45], [-848.75, -2137.86], [-848.35, -2129.5], [-856.75, -2129.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-864.35, -2119.62], [-857.11, -2119.98], [-857.49, -2127.59], [-864.73, -2127.23], [-864.35, -2119.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-841.25, -2122.18], [-841.59, -2128.37], [-835.31, -2128.7], [-834.98, -2122.52], [-841.25, -2122.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-852.82, -2098.76], [-853.21, -2108.48], [-843.93, -2108.85], [-843.54, -2099.14], [-852.82, -2098.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-986.68, -2109.78], [-987.01, -2119.02], [-971.45, -2119.57], [-971.12, -2110.34], [-986.68, -2109.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-816.88, -2138.94], [-812.34, -2139.11], [-812.56, -2144.94], [-817.1, -2144.76], [-816.88, -2138.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-776.39, -2131.35], [-776.57, -2137.62], [-770.18, -2137.8], [-770.0, -2131.53], [-776.39, -2131.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-674.58, -2124.65], [-674.93, -2133.13], [-662.54, -2133.65], [-662.18, -2125.16], [-674.58, -2124.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1038.6, -2122.08], [-1039.02, -2129.75], [-1030.56, -2130.2], [-1030.14, -2122.53], [-1038.6, -2122.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-769.96, -2145.37], [-779.88, -2145.17], [-780.18, -2159.81], [-770.27, -2160.01], [-769.96, -2145.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-719.62, -2133.51], [-714.2, -2133.64], [-714.4, -2142.29], [-719.81, -2142.17], [-719.62, -2133.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-841.76, -2143.63], [-838.49, -2143.75], [-838.72, -2149.78], [-841.98, -2149.67], [-841.76, -2143.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-642.75, -2126.05], [-643.04, -2133.95], [-635.94, -2134.21], [-635.65, -2126.3], [-642.75, -2126.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-727.52, -2132.97], [-727.8, -2139.08], [-721.19, -2139.38], [-720.92, -2133.27], [-727.52, -2132.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-980.4, -2085.75], [-971.6, -2086.15], [-972.05, -2096.43], [-980.85, -2096.03], [-980.4, -2085.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-942.85, -2124.18], [-934.18, -2124.49], [-934.48, -2132.83], [-943.15, -2132.53], [-942.85, -2124.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-918.94, -2125.08], [-926.87, -2124.64], [-927.3, -2132.25], [-919.38, -2132.7], [-918.94, -2125.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-1030.45, -2112.34], [-1030.77, -2118.84], [-1022.91, -2119.22], [-1022.6, -2112.73], [-1030.45, -2112.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-641.73, -2144.89], [-637.25, -2145.14], [-637.57, -2150.9], [-642.06, -2150.65], [-641.73, -2144.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-883.66, -2097.02], [-884.0, -2104.63], [-874.4, -2105.06], [-874.05, -2097.45], [-883.66, -2097.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1023.19, -2120.56], [-1014.86, -2120.98], [-1015.4, -2131.67], [-1023.74, -2131.24], [-1023.19, -2120.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1004.65, -2131.37], [-1000.22, -2131.62], [-1000.55, -2137.5], [-1004.98, -2137.26], [-1004.65, -2131.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-668.7, -2134.21], [-669.01, -2140.49], [-662.3, -2140.82], [-661.99, -2134.55], [-668.7, -2134.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-894.63, -2134.88], [-888.41, -2135.21], [-888.77, -2141.88], [-894.98, -2141.55], [-894.63, -2134.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-879.87, -2113.73], [-872.5, -2114.06], [-872.94, -2123.74], [-880.31, -2123.41], [-879.87, -2113.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-651.66, -2122.3], [-647.95, -2122.41], [-648.13, -2128.67], [-651.84, -2128.57], [-651.66, -2122.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-999.15, -2132.02], [-995.49, -2132.27], [-995.88, -2138.08], [-999.54, -2137.84], [-999.15, -2132.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1003.46, -2120.76], [-996.65, -2121.08], [-996.32, -2113.97], [-1003.13, -2113.67], [-1003.46, -2120.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-805.82, -2121.61], [-798.73, -2121.87], [-799.01, -2129.73], [-806.1, -2129.47], [-805.82, -2121.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-680.88, -2134.19], [-681.18, -2140.69], [-674.9, -2140.98], [-674.6, -2134.48], [-680.88, -2134.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-856.42, -2117.5], [-848.08, -2117.89], [-848.5, -2127.08], [-856.85, -2126.69], [-856.42, -2117.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-688.95, -2152.42], [-689.39, -2162.93], [-677.99, -2163.42], [-677.53, -2152.91], [-688.95, -2152.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-974.31, -2123.34], [-974.6, -2130.33], [-982.52, -2129.99], [-982.23, -2123.0], [-974.31, -2123.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1024.82, -2073.81], [-1025.1, -2083.55], [-1014.77, -2083.85], [-1014.49, -2074.11], [-1024.82, -2073.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-734.12, -2123.02], [-727.62, -2123.37], [-727.99, -2130.29], [-734.5, -2129.93], [-734.12, -2123.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-823.98, -2148.03], [-824.42, -2160.1], [-816.72, -2160.38], [-816.39, -2151.15], [-819.61, -2151.04], [-819.51, -2148.19], [-823.98, -2148.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-915.93, -2146.18], [-916.31, -2155.01], [-908.39, -2155.35], [-907.93, -2144.44], [-911.86, -2144.27], [-911.95, -2146.35], [-915.93, -2146.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-933.61, -2091.44], [-942.23, -2091.24], [-942.31, -2094.58], [-944.04, -2094.54], [-944.2, -2101.55], [-933.85, -2101.79], [-933.61, -2091.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-836.46, -2147.59], [-836.61, -2151.07], [-838.37, -2150.99], [-838.7, -2158.41], [-830.23, -2158.79], [-829.74, -2147.89], [-836.46, -2147.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-719.11, -2131.76], [-718.83, -2124.72], [-713.65, -2124.94], [-713.68, -2125.61], [-709.4, -2125.78], [-709.66, -2132.14], [-719.11, -2131.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-673.88, -2151.21], [-666.35, -2151.5], [-666.8, -2163.43], [-671.99, -2163.24], [-672.03, -2164.46], [-674.38, -2164.37], [-673.88, -2151.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-914.38, -2093.36], [-914.84, -2102.99], [-903.82, -2103.53], [-903.29, -2092.74], [-909.84, -2092.42], [-909.9, -2093.58], [-914.38, -2093.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-886.79, -2141.68], [-887.51, -2155.98], [-878.48, -2156.44], [-878.32, -2153.27], [-875.07, -2153.43], [-874.51, -2142.31], [-886.79, -2141.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1010.26, -2077.17], [-1010.87, -2092.92], [-1005.04, -2093.15], [-1004.8, -2086.89], [-1000.05, -2087.07], [-999.68, -2077.58], [-1010.26, -2077.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-807.37, -2101.26], [-796.97, -2101.72], [-797.6, -2115.74], [-800.85, -2115.6], [-800.97, -2118.27], [-808.12, -2117.95], [-807.37, -2101.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-671.32, -2106.28], [-671.61, -2113.31], [-669.16, -2113.41], [-669.29, -2116.32], [-662.6, -2116.6], [-662.2, -2106.64], [-671.32, -2106.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-659.4, -2151.34], [-659.84, -2164.01], [-652.36, -2164.26], [-651.92, -2151.59], [-652.8, -2151.56], [-652.7, -2148.56], [-658.21, -2148.38], [-658.31, -2151.37], [-659.4, -2151.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-731.32, -2102.55], [-731.89, -2115.58], [-723.69, -2115.95], [-723.32, -2107.55], [-720.51, -2107.67], [-720.33, -2103.49], [-726.43, -2103.21], [-726.42, -2102.77], [-731.32, -2102.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-632.84, -2108.82], [-633.17, -2117.07], [-630.03, -2117.2], [-630.17, -2120.56], [-625.91, -2120.72], [-625.78, -2117.36], [-625.04, -2117.39], [-624.7, -2109.14], [-632.84, -2108.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1044.05, -2073.15], [-1052.94, -2072.8], [-1053.36, -2083.32], [-1049.73, -2083.47], [-1049.87, -2087.19], [-1046.43, -2087.32], [-1046.35, -2085.28], [-1044.54, -2085.35], [-1044.05, -2073.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-636.92, -2146.74], [-630.96, -2147.0], [-631.2, -2152.71], [-628.36, -2152.83], [-628.8, -2162.84], [-636.15, -2162.52], [-635.97, -2158.31], [-637.42, -2158.24], [-636.92, -2146.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-775.77, -2100.57], [-766.46, -2100.89], [-766.64, -2106.57], [-767.79, -2106.52], [-768.12, -2116.25], [-774.95, -2116.02], [-774.76, -2110.36], [-776.1, -2110.31], [-775.77, -2100.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-871.38, -2144.13], [-862.51, -2144.62], [-862.63, -2146.74], [-859.68, -2146.92], [-860.12, -2154.58], [-863.06, -2154.41], [-863.21, -2157.05], [-872.09, -2156.55], [-871.38, -2144.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-995.74, -2140.82], [-987.44, -2141.28], [-988.09, -2152.63], [-988.89, -2152.59], [-989.04, -2155.11], [-995.59, -2154.74], [-995.45, -2152.22], [-996.38, -2152.17], [-995.74, -2140.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-854.8, -2149.03], [-855.32, -2157.64], [-846.64, -2158.16], [-846.55, -2156.45], [-844.56, -2156.56], [-844.26, -2151.56], [-846.25, -2151.44], [-846.13, -2149.55], [-854.8, -2149.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1029.09, -2074.18], [-1037.35, -2073.89], [-1037.64, -2082.11], [-1036.68, -2082.13], [-1036.85, -2087.13], [-1035.73, -2087.17], [-1035.86, -2090.73], [-1029.68, -2090.94], [-1029.09, -2074.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-899.85, -2095.95], [-900.53, -2110.01], [-889.23, -2110.55], [-888.56, -2096.49], [-891.5, -2096.35], [-891.44, -2095.08], [-894.18, -2094.95], [-894.24, -2096.21], [-899.85, -2095.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1013.66, -2142.74], [-1013.97, -2151.23], [-1012.17, -2151.29], [-1012.27, -2153.95], [-1007.58, -2154.13], [-1007.54, -2153.15], [-1005.02, -2153.25], [-1004.65, -2143.08], [-1013.66, -2142.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-901.75, -2147.14], [-902.09, -2155.49], [-892.81, -2155.86], [-892.47, -2147.51], [-894.17, -2147.44], [-894.05, -2144.38], [-897.48, -2144.24], [-897.6, -2147.31], [-901.75, -2147.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-932.28, -2141.97], [-932.85, -2154.54], [-922.86, -2154.99], [-922.21, -2140.67], [-924.91, -2140.55], [-924.79, -2137.98], [-931.2, -2137.69], [-931.4, -2142.0], [-932.28, -2141.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-764.95, -2492.58], [-765.05, -2494.77], [-766.04, -2494.72], [-766.16, -2497.36], [-768.76, -2497.23], [-769.26, -2507.83], [-760.25, -2508.26], [-759.76, -2497.95], [-759.19, -2497.98], [-758.94, -2492.87], [-764.95, -2492.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-653.23, -2294.65], [-653.78, -2299.35], [-648.47, -2299.96], [-649.11, -2305.5], [-641.17, -2306.42], [-640.67, -2302.03], [-639.82, -2302.12], [-639.51, -2299.43], [-640.36, -2299.33], [-639.99, -2296.17], [-653.23, -2294.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-653.21, -2312.7], [-654.04, -2319.23], [-641.05, -2320.88], [-640.96, -2320.16], [-640.04, -2320.27], [-639.73, -2317.79], [-640.64, -2317.68], [-640.17, -2314.01], [-650.05, -2312.76], [-650.09, -2313.1], [-653.21, -2312.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-895.8, -2302.57], [-888.19, -2302.83], [-888.26, -2304.66], [-884.36, -2304.81], [-884.55, -2310.17], [-885.18, -2310.15], [-885.43, -2317.3], [-889.82, -2317.14], [-889.89, -2319.1], [-896.37, -2318.87], [-895.8, -2302.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1176.41, -2343.38], [-1173.46, -2348.35], [-1169.23, -2345.86], [-1167.16, -2349.36], [-1163.71, -2347.33], [-1160.18, -2353.28], [-1153.82, -2349.54], [-1157.71, -2342.98], [-1153.67, -2340.6], [-1158.34, -2332.74], [-1176.41, -2343.38]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.15, "pop": 0, "jobs": 150}}, {"shape": {"outer": [[-1186.69, -2176.16], [-1187.13, -2185.89], [-1180.96, -2186.17], [-1180.82, -2183.03], [-1178.04, -2183.15], [-1177.74, -2176.56], [-1181.09, -2176.41], [-1181.05, -2175.32], [-1183.77, -2175.21], [-1183.83, -2176.28], [-1186.69, -2176.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-610.21, -2260.58], [-610.07, -2255.39], [-606.11, -2255.49], [-606.04, -2252.93], [-596.7, -2253.2], [-596.74, -2254.44], [-592.64, -2254.56], [-592.74, -2258.37], [-593.3, -2258.36], [-593.36, -2261.04], [-610.21, -2260.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-828.37, -2194.25], [-828.78, -2202.18], [-827.24, -2202.26], [-827.26, -2202.78], [-819.64, -2203.16], [-819.56, -2201.68], [-818.8, -2201.71], [-818.3, -2191.85], [-823.71, -2191.58], [-823.86, -2194.47], [-828.37, -2194.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1000.02, -2185.32], [-1000.55, -2196.83], [-997.77, -2196.96], [-997.85, -2198.73], [-991.56, -2199.03], [-990.95, -2185.74], [-991.77, -2185.7], [-991.67, -2183.52], [-999.03, -2183.17], [-999.13, -2185.36], [-1000.02, -2185.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1282.6, -2176.17], [-1268.75, -2168.53], [-1270.65, -2165.1], [-1273.74, -2163.7], [-1280.02, -2163.5], [-1280.57, -2163.64], [-1280.96, -2163.89], [-1281.28, -2164.31], [-1281.45, -2164.79], [-1283.22, -2170.92], [-1282.6, -2176.17]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.071, "pop": 0, "jobs": 71}}, {"shape": {"outer": [[-984.71, -2187.87], [-985.28, -2201.06], [-979.36, -2201.32], [-979.15, -2196.35], [-977.27, -2196.43], [-976.92, -2188.21], [-978.94, -2188.13], [-980.73, -2186.42], [-983.34, -2186.3], [-983.41, -2187.93], [-984.71, -2187.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1190.2, -2248.34], [-1190.61, -2258.61], [-1182.87, -2258.92], [-1182.79, -2256.98], [-1180.15, -2257.09], [-1179.83, -2248.74], [-1184.26, -2248.57], [-1184.09, -2244.42], [-1189.23, -2244.22], [-1189.38, -2248.37], [-1190.2, -2248.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-618.27, -2332.49], [-609.39, -2333.05], [-609.63, -2336.62], [-605.44, -2336.89], [-605.83, -2342.89], [-618.88, -2342.06], [-618.84, -2341.47], [-621.15, -2341.32], [-620.61, -2332.73], [-618.3, -2332.89], [-618.27, -2332.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-605.41, -2229.13], [-605.44, -2229.68], [-605.94, -2229.64], [-606.32, -2235.63], [-605.66, -2235.67], [-605.78, -2237.51], [-593.16, -2238.31], [-592.68, -2230.62], [-598.98, -2230.22], [-598.95, -2229.54], [-605.41, -2229.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1054.5, -2253.48], [-1054.62, -2258.37], [-1053.8, -2258.39], [-1053.92, -2262.74], [-1057.58, -2262.65], [-1057.6, -2263.28], [-1059.84, -2263.23], [-1059.82, -2262.6], [-1061.94, -2262.54], [-1061.7, -2253.3], [-1054.5, -2253.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1156.32, -2177.58], [-1156.8, -2187.85], [-1151.38, -2188.1], [-1151.2, -2184.36], [-1147.83, -2184.53], [-1147.53, -2178.0], [-1150.37, -2177.86], [-1150.32, -2176.7], [-1153.16, -2176.57], [-1153.21, -2177.74], [-1156.32, -2177.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-946.91, -2192.58], [-947.54, -2207.41], [-946.42, -2207.45], [-946.63, -2212.29], [-941.01, -2212.54], [-940.8, -2207.69], [-939.91, -2207.72], [-939.32, -2194.08], [-943.58, -2193.89], [-943.53, -2192.72], [-946.91, -2192.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-948.59, -2250.03], [-941.57, -2250.32], [-941.82, -2256.61], [-944.82, -2256.49], [-944.95, -2259.75], [-942.35, -2259.85], [-942.68, -2268.2], [-951.83, -2267.83], [-951.5, -2259.47], [-948.97, -2259.56], [-948.59, -2250.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1033.43, -2252.64], [-1033.96, -2263.4], [-1030.28, -2263.59], [-1030.33, -2264.54], [-1028.08, -2264.65], [-1028.04, -2263.69], [-1024.3, -2263.88], [-1023.77, -2253.11], [-1025.68, -2253.01], [-1025.58, -2250.95], [-1030.77, -2250.7], [-1030.87, -2252.76], [-1033.43, -2252.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1199.27, -2242.63], [-1203.98, -2242.46], [-1204.13, -2246.53], [-1206.1, -2246.46], [-1206.43, -2255.66], [-1205.75, -2255.68], [-1205.82, -2257.76], [-1200.48, -2257.96], [-1200.43, -2256.32], [-1196.31, -2256.46], [-1196.06, -2249.55], [-1199.51, -2249.43], [-1199.27, -2242.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-656.87, -2331.33], [-657.16, -2334.19], [-660.59, -2333.85], [-661.19, -2339.82], [-657.75, -2340.17], [-657.93, -2341.96], [-644.96, -2343.24], [-644.88, -2342.44], [-642.73, -2342.65], [-641.86, -2333.89], [-644.01, -2333.69], [-643.91, -2332.61], [-656.87, -2331.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-619.72, -2350.41], [-610.94, -2351.01], [-611.3, -2356.12], [-609.44, -2356.25], [-609.68, -2359.83], [-611.55, -2359.7], [-611.61, -2360.61], [-620.38, -2360.0], [-620.32, -2359.1], [-622.38, -2358.97], [-621.82, -2350.84], [-619.76, -2350.97], [-619.72, -2350.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1140.81, -2178.02], [-1141.0, -2184.61], [-1139.25, -2184.66], [-1139.33, -2187.66], [-1134.47, -2187.8], [-1134.39, -2184.8], [-1132.47, -2184.85], [-1132.28, -2178.27], [-1135.07, -2178.19], [-1135.03, -2176.94], [-1138.1, -2176.86], [-1138.13, -2178.1], [-1140.81, -2178.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-656.73, -2375.64], [-656.78, -2376.25], [-658.99, -2376.05], [-659.46, -2381.49], [-657.25, -2381.68], [-657.55, -2385.07], [-649.13, -2385.8], [-648.91, -2383.27], [-647.32, -2383.41], [-647.11, -2380.96], [-647.7, -2380.91], [-647.31, -2376.45], [-656.73, -2375.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-642.09, -2195.69], [-642.2, -2198.95], [-641.53, -2198.97], [-641.61, -2201.15], [-640.5, -2201.18], [-640.72, -2207.73], [-630.73, -2208.07], [-630.69, -2206.69], [-628.24, -2206.77], [-627.96, -2198.46], [-630.4, -2198.38], [-630.33, -2196.08], [-642.09, -2195.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-918.96, -2258.86], [-919.16, -2262.67], [-920.25, -2262.61], [-920.55, -2268.45], [-917.84, -2268.6], [-917.89, -2269.68], [-913.74, -2269.9], [-913.69, -2268.8], [-911.37, -2268.92], [-910.67, -2254.94], [-916.31, -2254.66], [-916.53, -2258.97], [-918.96, -2258.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1014.81, -2185.06], [-1006.54, -2185.38], [-1006.91, -2194.94], [-1008.66, -2194.87], [-1008.78, -2198.19], [-1007.69, -2198.23], [-1007.78, -2200.62], [-1005.46, -2200.71], [-1005.6, -2204.32], [-1011.29, -2204.1], [-1011.16, -2200.73], [-1015.42, -2200.57], [-1014.81, -2185.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1045.25, -2196.07], [-1044.71, -2185.14], [-1042.48, -2185.25], [-1042.42, -2184.14], [-1039.52, -2184.27], [-1039.58, -2185.38], [-1037.15, -2185.51], [-1037.22, -2187.09], [-1034.2, -2187.24], [-1034.51, -2193.38], [-1040.29, -2193.09], [-1040.44, -2196.31], [-1045.25, -2196.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-819.57, -2236.07], [-823.16, -2235.94], [-823.23, -2237.58], [-827.84, -2237.42], [-827.86, -2238.04], [-829.56, -2237.98], [-829.68, -2241.26], [-830.19, -2241.24], [-830.45, -2248.47], [-828.23, -2248.54], [-828.31, -2250.6], [-826.49, -2250.66], [-826.53, -2252.04], [-820.14, -2252.26], [-819.57, -2236.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-621.27, -2386.57], [-626.08, -2386.49], [-626.12, -2388.48], [-626.73, -2388.46], [-626.78, -2391.4], [-628.07, -2391.38], [-628.09, -2392.94], [-629.46, -2392.92], [-629.6, -2400.75], [-621.51, -2400.89], [-621.4, -2393.87], [-620.91, -2393.88], [-620.82, -2388.62], [-621.3, -2388.62], [-621.27, -2386.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-934.68, -2201.46], [-935.12, -2214.33], [-928.91, -2214.54], [-928.88, -2213.81], [-925.89, -2213.9], [-925.75, -2209.6], [-924.87, -2209.63], [-924.71, -2204.85], [-925.58, -2204.81], [-925.48, -2201.77], [-926.37, -2201.74], [-926.28, -2199.32], [-933.33, -2199.09], [-933.41, -2201.5], [-934.68, -2201.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-856.93, -2306.1], [-857.26, -2314.08], [-850.44, -2314.38], [-848.71, -2316.25], [-849.08, -2324.85], [-843.67, -2325.08], [-843.58, -2322.95], [-839.89, -2323.1], [-839.56, -2315.15], [-840.24, -2315.13], [-839.9, -2307.11], [-846.96, -2306.81], [-846.91, -2305.6], [-851.65, -2305.39], [-851.69, -2306.32], [-856.93, -2306.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-935.93, -2255.52], [-932.88, -2255.64], [-932.48, -2244.95], [-928.8, -2245.09], [-928.9, -2248.0], [-925.51, -2248.13], [-925.71, -2253.63], [-923.97, -2253.69], [-924.24, -2260.82], [-928.74, -2260.65], [-928.9, -2265.07], [-929.68, -2265.03], [-929.82, -2269.01], [-936.42, -2268.77], [-936.28, -2264.8], [-937.25, -2264.76], [-937.06, -2259.59], [-936.08, -2259.63], [-935.93, -2255.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-854.41, -2348.45], [-854.69, -2355.84], [-842.41, -2356.3], [-842.13, -2348.91], [-854.41, -2348.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-863.58, -2363.15], [-863.83, -2369.37], [-859.08, -2369.56], [-858.83, -2363.34], [-863.58, -2363.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-953.61, -2344.35], [-953.76, -2351.36], [-945.51, -2351.55], [-945.36, -2344.53], [-953.61, -2344.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-608.67, -2359.87], [-609.07, -2365.01], [-602.45, -2365.54], [-602.05, -2360.38], [-608.67, -2359.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1227.39, -2239.59], [-1230.36, -2234.23], [-1224.7, -2231.12], [-1221.73, -2236.5], [-1227.39, -2239.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-899.98, -2303.37], [-909.2, -2302.95], [-909.87, -2317.75], [-900.65, -2318.17], [-899.98, -2303.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1069.67, -2368.95], [-1070.02, -2377.97], [-1060.09, -2378.36], [-1059.74, -2369.35], [-1069.67, -2368.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-922.72, -2223.35], [-919.22, -2223.42], [-919.31, -2228.7], [-922.82, -2228.64], [-922.72, -2223.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-803.45, -2500.53], [-803.67, -2508.53], [-811.7, -2508.3], [-811.48, -2500.3], [-803.45, -2500.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1023.91, -2239.53], [-1020.37, -2239.66], [-1020.59, -2245.81], [-1024.14, -2245.68], [-1023.91, -2239.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-952.25, -2321.46], [-952.35, -2324.84], [-947.7, -2324.97], [-947.61, -2321.6], [-952.25, -2321.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[-801.44, -2460.72], [-801.65, -2464.84], [-795.16, -2465.19], [-794.94, -2461.07], [-801.44, -2460.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-591.5, -2251.17], [-591.67, -2254.86], [-585.51, -2255.14], [-585.33, -2251.46], [-591.5, -2251.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1020.26, -2247.7], [-1016.5, -2247.87], [-1016.8, -2254.5], [-1020.56, -2254.34], [-1020.26, -2247.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-672.21, -2388.92], [-668.08, -2389.0], [-668.19, -2394.66], [-672.31, -2394.58], [-672.21, -2388.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-743.24, -2501.59], [-734.0, -2502.01], [-734.5, -2513.0], [-743.74, -2512.58], [-743.24, -2501.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-937.65, -2229.52], [-937.87, -2233.18], [-932.41, -2233.5], [-932.2, -2229.84], [-937.65, -2229.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-609.25, -2241.03], [-609.84, -2249.73], [-598.54, -2250.49], [-597.96, -2241.78], [-609.25, -2241.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1132.16, -2234.91], [-1139.66, -2234.64], [-1139.41, -2227.36], [-1131.89, -2227.63], [-1132.16, -2234.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-987.41, -2239.59], [-981.45, -2239.86], [-981.76, -2246.6], [-987.7, -2246.34], [-987.41, -2239.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1129.63, -2205.85], [-1129.82, -2212.38], [-1119.22, -2212.69], [-1119.04, -2206.16], [-1129.63, -2205.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1148.87, -2189.43], [-1144.86, -2189.5], [-1144.95, -2194.62], [-1148.95, -2194.55], [-1148.87, -2189.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1167.98, -2230.08], [-1175.68, -2229.86], [-1175.41, -2220.23], [-1167.7, -2220.45], [-1167.98, -2230.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-860.11, -2199.39], [-860.58, -2207.12], [-848.36, -2207.86], [-847.89, -2200.11], [-860.11, -2199.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1101.15, -2238.4], [-1101.46, -2244.76], [-1094.75, -2245.09], [-1094.43, -2238.74], [-1101.15, -2238.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1061.03, -2366.45], [-1067.5, -2366.2], [-1067.28, -2360.27], [-1060.82, -2360.52], [-1061.03, -2366.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1128.63, -2249.34], [-1129.07, -2259.44], [-1121.26, -2259.78], [-1120.83, -2249.67], [-1128.63, -2249.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-994.18, -2202.35], [-988.61, -2202.54], [-988.86, -2209.45], [-994.43, -2209.26], [-994.18, -2202.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-865.22, -2206.62], [-873.96, -2206.32], [-873.63, -2197.07], [-864.89, -2197.37], [-865.22, -2206.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-656.45, -2270.84], [-649.67, -2271.27], [-649.96, -2275.79], [-656.74, -2275.35], [-656.45, -2270.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-585.92, -2263.56], [-586.89, -2274.91], [-580.9, -2275.41], [-579.94, -2264.07], [-585.92, -2263.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-657.5, -2220.03], [-657.62, -2226.74], [-663.03, -2226.63], [-662.91, -2219.92], [-657.5, -2220.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1099.07, -2224.53], [-1090.28, -2225.19], [-1090.99, -2234.53], [-1099.77, -2233.88], [-1099.07, -2224.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-611.93, -2281.46], [-613.01, -2290.81], [-601.63, -2292.12], [-600.54, -2282.77], [-611.93, -2281.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-602.1, -2314.2], [-602.38, -2319.55], [-596.46, -2319.86], [-596.17, -2314.51], [-602.1, -2314.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-749.03, -2485.79], [-745.03, -2485.87], [-745.15, -2492.13], [-749.15, -2492.05], [-749.03, -2485.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-609.7, -2264.7], [-610.84, -2275.15], [-591.66, -2277.22], [-590.53, -2266.77], [-609.7, -2264.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-1050.77, -2246.06], [-1054.61, -2245.83], [-1055.02, -2252.45], [-1051.18, -2252.7], [-1050.77, -2246.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-660.1, -2201.77], [-664.42, -2201.58], [-664.72, -2208.65], [-660.4, -2208.84], [-660.1, -2201.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-797.36, -2507.62], [-788.7, -2507.94], [-788.26, -2496.25], [-796.92, -2495.92], [-797.36, -2507.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1051.44, -2334.65], [-1051.56, -2338.19], [-1042.55, -2338.5], [-1042.43, -2334.96], [-1051.44, -2334.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-670.43, -2367.02], [-662.44, -2367.68], [-663.11, -2375.72], [-671.1, -2375.06], [-670.43, -2367.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-651.6, -2254.67], [-651.94, -2259.52], [-645.45, -2259.97], [-645.11, -2255.12], [-651.6, -2254.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-993.45, -2246.55], [-990.14, -2246.7], [-990.44, -2253.66], [-993.75, -2253.51], [-993.45, -2246.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-832.72, -2269.66], [-833.13, -2275.76], [-827.68, -2276.12], [-827.26, -2270.02], [-832.72, -2269.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-889.37, -2324.01], [-882.96, -2324.21], [-883.25, -2333.25], [-889.66, -2333.04], [-889.37, -2324.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1034.88, -2298.41], [-1035.26, -2305.97], [-1025.44, -2306.47], [-1025.06, -2298.91], [-1034.88, -2298.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-586.56, -2246.67], [-586.3, -2242.77], [-578.06, -2243.34], [-578.33, -2247.24], [-586.56, -2246.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1024.91, -2353.07], [-1016.41, -2353.42], [-1016.06, -2344.86], [-1024.56, -2344.51], [-1024.91, -2353.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-850.42, -2329.06], [-850.71, -2333.1], [-844.44, -2333.55], [-844.15, -2329.51], [-850.42, -2329.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1058.23, -2199.41], [-1058.5, -2204.78], [-1050.2, -2205.2], [-1049.93, -2199.84], [-1058.23, -2199.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-717.4, -2509.62], [-717.72, -2515.16], [-724.98, -2514.74], [-724.66, -2509.2], [-717.4, -2509.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-643.64, -2245.58], [-633.59, -2245.91], [-634.0, -2258.48], [-644.04, -2258.15], [-643.64, -2245.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-612.45, -2295.82], [-613.23, -2303.53], [-604.89, -2304.37], [-604.11, -2296.66], [-612.45, -2295.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1017.5, -2298.05], [-1011.55, -2298.28], [-1012.06, -2311.44], [-1018.01, -2311.22], [-1017.5, -2298.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-834.39, -2234.75], [-834.67, -2244.28], [-845.32, -2243.98], [-845.05, -2234.45], [-834.39, -2234.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-842.85, -2194.0], [-843.14, -2202.5], [-832.6, -2202.86], [-832.31, -2194.36], [-842.85, -2194.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1229.95, -2252.65], [-1230.24, -2259.24], [-1219.38, -2259.71], [-1219.08, -2253.12], [-1229.95, -2252.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-620.66, -2371.87], [-621.37, -2378.91], [-615.38, -2379.52], [-614.67, -2372.47], [-620.66, -2371.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1027.16, -2204.09], [-1027.42, -2211.29], [-1019.99, -2211.56], [-1019.74, -2204.36], [-1027.16, -2204.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1048.56, -2361.63], [-1042.55, -2361.81], [-1042.81, -2370.25], [-1048.83, -2370.06], [-1048.56, -2361.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-987.38, -2204.3], [-987.62, -2210.63], [-981.89, -2210.84], [-981.64, -2204.52], [-987.38, -2204.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-917.16, -2302.16], [-924.42, -2301.86], [-924.96, -2315.18], [-917.7, -2315.48], [-917.16, -2302.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-770.37, -2484.8], [-770.67, -2491.37], [-764.39, -2491.66], [-764.08, -2485.09], [-770.37, -2484.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-645.4, -2234.43], [-645.63, -2242.75], [-631.92, -2243.14], [-631.68, -2234.82], [-645.4, -2234.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-660.17, -2303.98], [-660.83, -2309.59], [-654.19, -2310.37], [-653.52, -2304.77], [-660.17, -2303.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-867.98, -2348.54], [-861.53, -2348.73], [-861.75, -2356.12], [-868.19, -2355.94], [-867.98, -2348.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1002.27, -2210.79], [-1002.51, -2217.6], [-995.42, -2217.85], [-995.17, -2211.05], [-1002.27, -2210.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-771.22, -2491.65], [-775.33, -2491.49], [-775.55, -2497.47], [-771.44, -2497.63], [-771.22, -2491.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1062.75, -2334.65], [-1062.28, -2324.81], [-1053.82, -2325.22], [-1054.29, -2335.06], [-1062.75, -2334.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1135.75, -2243.96], [-1145.58, -2243.53], [-1146.24, -2258.63], [-1136.41, -2259.07], [-1135.75, -2243.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-927.78, -2218.7], [-923.37, -2218.87], [-923.76, -2228.6], [-928.17, -2228.43], [-927.78, -2218.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-904.48, -2190.63], [-904.99, -2201.38], [-892.7, -2201.96], [-892.19, -2191.2], [-904.48, -2190.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1119.36, -2190.73], [-1114.36, -2190.92], [-1114.58, -2197.01], [-1119.59, -2196.83], [-1119.36, -2190.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-901.67, -2323.54], [-897.56, -2323.69], [-897.84, -2331.4], [-901.94, -2331.25], [-901.67, -2323.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-950.01, -2218.01], [-950.21, -2225.14], [-943.55, -2225.33], [-943.34, -2218.2], [-950.01, -2218.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-892.92, -2245.78], [-888.38, -2245.97], [-888.68, -2252.78], [-893.22, -2252.57], [-892.92, -2245.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-787.82, -2426.09], [-788.43, -2439.2], [-776.04, -2439.76], [-775.43, -2426.66], [-787.82, -2426.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1024.27, -2315.27], [-1027.32, -2315.12], [-1027.68, -2322.18], [-1024.64, -2322.34], [-1024.27, -2315.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-921.67, -2240.11], [-916.9, -2240.31], [-917.35, -2250.55], [-922.12, -2250.33], [-921.67, -2240.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-809.43, -2469.6], [-818.32, -2469.2], [-818.7, -2477.69], [-809.81, -2478.09], [-809.43, -2469.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-600.33, -2216.05], [-591.27, -2216.85], [-592.03, -2225.29], [-601.08, -2224.48], [-600.33, -2216.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1113.3, -2190.9], [-1108.34, -2191.05], [-1108.5, -2196.98], [-1113.47, -2196.83], [-1113.3, -2190.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-661.11, -2318.01], [-661.62, -2321.23], [-655.25, -2322.23], [-654.74, -2319.0], [-661.11, -2318.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1217.5, -2250.01], [-1213.42, -2250.17], [-1213.7, -2256.92], [-1217.79, -2256.76], [-1217.5, -2250.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-871.6, -2255.37], [-877.95, -2255.02], [-877.61, -2248.71], [-871.26, -2249.06], [-871.6, -2255.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1124.88, -2226.81], [-1125.23, -2235.34], [-1114.97, -2235.76], [-1114.62, -2227.22], [-1124.88, -2226.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1018.04, -2210.02], [-1011.39, -2210.25], [-1011.78, -2221.27], [-1018.43, -2221.03], [-1018.04, -2210.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-879.99, -2305.99], [-871.43, -2306.32], [-871.86, -2317.63], [-880.42, -2317.31], [-879.99, -2305.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1040.93, -2362.77], [-1034.87, -2362.94], [-1035.05, -2369.43], [-1041.11, -2369.25], [-1040.93, -2362.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-954.59, -2329.87], [-948.19, -2329.93], [-948.3, -2340.98], [-954.7, -2340.92], [-954.59, -2329.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-665.48, -2327.5], [-666.03, -2332.39], [-658.69, -2333.24], [-658.12, -2328.33], [-665.48, -2327.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1100.33, -2247.64], [-1091.49, -2247.93], [-1091.87, -2259.19], [-1100.7, -2258.91], [-1100.33, -2247.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1255.71, -2231.3], [-1248.66, -2244.35], [-1232.2, -2235.53], [-1237.6, -2225.54], [-1235.34, -2224.33], [-1236.98, -2221.27], [-1255.71, -2231.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.228, "pop": 114, "jobs": 0}}, {"shape": {"outer": [[-891.57, -2259.92], [-891.97, -2269.12], [-887.41, -2269.32], [-887.44, -2269.97], [-881.36, -2270.24], [-880.92, -2260.38], [-891.57, -2259.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-785.07, -2500.01], [-785.37, -2504.77], [-782.84, -2504.93], [-783.09, -2508.9], [-774.49, -2509.44], [-773.94, -2500.72], [-785.07, -2500.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-657.82, -2389.33], [-665.73, -2389.11], [-665.87, -2394.08], [-666.66, -2394.06], [-666.83, -2400.17], [-658.13, -2400.41], [-657.82, -2389.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-889.41, -2226.38], [-879.09, -2226.76], [-878.72, -2216.89], [-880.32, -2216.84], [-880.24, -2214.74], [-888.96, -2214.41], [-889.41, -2226.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1203.55, -2175.21], [-1203.89, -2182.86], [-1198.99, -2183.08], [-1199.14, -2186.52], [-1195.09, -2186.7], [-1194.6, -2175.61], [-1203.55, -2175.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1175.23, -2242.12], [-1175.95, -2257.16], [-1164.87, -2257.69], [-1164.38, -2247.55], [-1169.62, -2247.3], [-1169.39, -2242.41], [-1175.23, -2242.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-714.93, -2432.69], [-715.36, -2440.26], [-719.09, -2440.05], [-719.29, -2443.83], [-727.47, -2443.38], [-726.83, -2432.03], [-714.93, -2432.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1112.51, -2249.47], [-1112.93, -2257.92], [-1109.75, -2258.08], [-1109.88, -2260.78], [-1104.93, -2261.02], [-1104.38, -2249.87], [-1112.51, -2249.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1018.15, -2256.03], [-1018.55, -2264.22], [-1010.42, -2264.62], [-1009.89, -2253.71], [-1014.25, -2253.5], [-1014.39, -2256.21], [-1018.15, -2256.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1064.63, -2297.86], [-1056.59, -2298.19], [-1056.67, -2299.97], [-1055.82, -2300.0], [-1056.28, -2311.18], [-1065.16, -2310.82], [-1064.63, -2297.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1160.41, -2246.52], [-1160.74, -2257.95], [-1151.13, -2258.22], [-1150.91, -2250.39], [-1156.15, -2250.24], [-1156.05, -2246.64], [-1160.41, -2246.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-617.14, -2324.61], [-616.4, -2315.03], [-603.38, -2316.04], [-603.9, -2322.66], [-607.76, -2322.36], [-607.98, -2325.3], [-617.14, -2324.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1051.64, -2297.93], [-1052.01, -2310.67], [-1040.65, -2310.99], [-1040.31, -2298.91], [-1042.82, -2298.84], [-1042.8, -2298.18], [-1051.64, -2297.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-652.03, -2279.16], [-652.61, -2284.94], [-647.76, -2285.42], [-648.0, -2287.77], [-637.64, -2288.81], [-636.82, -2280.69], [-652.03, -2279.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1170.97, -2177.46], [-1171.14, -2183.47], [-1167.92, -2183.56], [-1168.05, -2188.07], [-1162.09, -2188.24], [-1161.74, -2175.96], [-1167.91, -2175.78], [-1167.96, -2177.55], [-1170.97, -2177.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-872.55, -2256.64], [-873.62, -2273.35], [-868.19, -2273.69], [-868.04, -2271.34], [-865.3, -2271.51], [-864.38, -2257.15], [-872.55, -2256.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1038.05, -2370.98], [-1038.35, -2379.51], [-1027.93, -2379.88], [-1027.77, -2375.15], [-1030.43, -2375.05], [-1030.3, -2371.24], [-1038.05, -2370.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-659.16, -2284.82], [-652.12, -2285.46], [-652.84, -2293.33], [-656.07, -2293.03], [-655.99, -2292.09], [-659.79, -2291.74], [-659.16, -2284.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1058.77, -2206.85], [-1046.39, -2207.46], [-1046.74, -2214.52], [-1048.88, -2214.42], [-1049.21, -2221.18], [-1059.45, -2220.68], [-1058.77, -2206.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1103.19, -2207.48], [-1103.66, -2217.06], [-1089.91, -2217.74], [-1089.77, -2214.94], [-1087.13, -2215.07], [-1086.8, -2208.28], [-1103.19, -2207.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-1057.76, -2224.13], [-1057.86, -2226.74], [-1060.2, -2226.65], [-1060.49, -2234.51], [-1048.6, -2234.96], [-1048.2, -2224.49], [-1057.76, -2224.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1003.75, -2299.62], [-1004.18, -2310.9], [-999.39, -2311.08], [-999.46, -2313.03], [-991.21, -2313.34], [-990.7, -2300.12], [-1003.75, -2299.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-603.67, -2374.3], [-608.84, -2373.86], [-609.04, -2376.17], [-612.0, -2375.91], [-612.85, -2385.77], [-604.73, -2386.48], [-603.67, -2374.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1023.06, -2372.49], [-1023.39, -2380.23], [-1013.21, -2380.67], [-1013.05, -2376.78], [-1015.36, -2376.68], [-1015.2, -2372.82], [-1023.06, -2372.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1262.8, -2218.39], [-1260.42, -2222.92], [-1248.11, -2216.49], [-1247.49, -2217.68], [-1241.21, -2214.4], [-1244.21, -2208.68], [-1262.8, -2218.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1230.51, -2173.13], [-1231.17, -2185.39], [-1222.28, -2185.87], [-1221.62, -2173.59], [-1223.92, -2173.47], [-1223.8, -2171.16], [-1228.44, -2170.92], [-1228.56, -2173.23], [-1230.51, -2173.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1181.28, -2359.82], [-1179.26, -2364.28], [-1177.71, -2365.02], [-1160.54, -2357.31], [-1159.68, -2355.93], [-1161.76, -2351.34], [-1163.42, -2350.55], [-1180.89, -2358.39], [-1181.28, -2359.82]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.098, "pop": 0, "jobs": 98}}, {"shape": {"outer": [[-987.31, -2328.09], [-997.13, -2327.86], [-997.31, -2336.03], [-1000.11, -2335.96], [-1000.23, -2341.41], [-993.79, -2341.56], [-993.71, -2337.8], [-987.53, -2337.94], [-987.31, -2328.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1216.99, -2173.88], [-1217.35, -2182.91], [-1207.58, -2183.3], [-1207.21, -2174.27], [-1210.54, -2174.13], [-1210.5, -2173.07], [-1213.23, -2172.95], [-1213.28, -2174.03], [-1216.99, -2173.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1258.92, -2225.72], [-1256.09, -2231.0], [-1249.36, -2227.43], [-1249.69, -2226.81], [-1244.15, -2223.84], [-1246.48, -2219.5], [-1252.23, -2222.57], [-1252.4, -2222.25], [-1258.92, -2225.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-656.76, -2193.99], [-648.17, -2194.15], [-648.41, -2207.04], [-650.74, -2207.0], [-650.78, -2209.52], [-655.09, -2209.43], [-655.05, -2206.92], [-657.0, -2206.89], [-656.76, -2193.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-647.21, -2215.53], [-634.32, -2215.82], [-634.53, -2225.03], [-647.41, -2224.75], [-647.37, -2222.82], [-651.36, -2222.73], [-651.21, -2216.03], [-647.21, -2216.13], [-647.21, -2215.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-953.82, -2303.01], [-954.1, -2311.29], [-950.37, -2311.41], [-950.45, -2313.45], [-946.68, -2313.58], [-946.6, -2311.54], [-944.58, -2311.61], [-944.3, -2303.34], [-953.82, -2303.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-755.92, -2499.49], [-756.53, -2510.43], [-748.57, -2510.86], [-747.95, -2499.93], [-749.65, -2499.83], [-749.48, -2496.82], [-754.7, -2496.53], [-754.87, -2499.55], [-755.92, -2499.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-999.88, -2252.04], [-994.46, -2252.2], [-994.89, -2265.57], [-1004.6, -2265.26], [-1004.44, -2260.09], [-1001.99, -2260.17], [-1001.89, -2257.03], [-1000.04, -2257.09], [-999.88, -2252.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1056.19, -2370.95], [-1056.47, -2378.84], [-1048.83, -2379.1], [-1048.54, -2371.22], [-1050.35, -2371.15], [-1050.21, -2367.16], [-1055.73, -2366.97], [-1055.88, -2370.96], [-1056.19, -2370.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1047.26, -2251.75], [-1047.62, -2262.79], [-1039.33, -2263.07], [-1038.95, -2252.02], [-1040.38, -2251.98], [-1040.29, -2249.26], [-1045.58, -2249.08], [-1045.67, -2251.8], [-1047.26, -2251.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-938.61, -2303.39], [-939.08, -2312.78], [-937.35, -2312.88], [-937.44, -2314.61], [-933.57, -2314.81], [-933.47, -2313.06], [-931.5, -2313.16], [-931.03, -2303.77], [-938.61, -2303.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-989.19, -2214.94], [-989.3, -2217.78], [-990.63, -2217.74], [-990.89, -2224.71], [-977.05, -2225.24], [-976.81, -2219.06], [-979.94, -2218.94], [-979.8, -2215.3], [-989.19, -2214.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1031.72, -2185.78], [-1032.09, -2195.27], [-1021.94, -2195.67], [-1021.56, -2186.18], [-1024.89, -2186.05], [-1024.83, -2184.4], [-1027.51, -2184.31], [-1027.57, -2185.94], [-1031.72, -2185.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-985.96, -2253.66], [-980.81, -2253.83], [-980.9, -2256.84], [-977.79, -2256.94], [-978.17, -2268.25], [-984.07, -2268.05], [-983.99, -2265.65], [-986.35, -2265.57], [-985.96, -2253.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-861.41, -2271.73], [-861.08, -2263.5], [-859.18, -2263.58], [-859.09, -2261.28], [-851.71, -2261.58], [-852.17, -2273.11], [-856.98, -2272.92], [-856.93, -2271.9], [-861.41, -2271.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-918.58, -2204.79], [-919.16, -2219.89], [-909.0, -2220.28], [-908.42, -2205.17], [-909.47, -2205.12], [-909.36, -2202.3], [-915.59, -2202.07], [-915.69, -2204.89], [-918.58, -2204.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-650.65, -2265.42], [-650.95, -2270.81], [-648.61, -2270.94], [-648.66, -2271.64], [-636.91, -2272.29], [-636.37, -2262.73], [-644.24, -2262.29], [-644.43, -2265.77], [-650.65, -2265.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1006.08, -2371.12], [-1006.49, -2379.76], [-1005.61, -2379.8], [-1005.72, -2382.04], [-999.39, -2382.34], [-999.28, -2380.1], [-997.81, -2380.17], [-997.4, -2371.54], [-1006.08, -2371.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1125.8, -2178.68], [-1126.06, -2185.17], [-1117.11, -2185.54], [-1116.84, -2179.04], [-1119.79, -2178.93], [-1119.75, -2177.67], [-1123.61, -2177.52], [-1123.67, -2178.76], [-1125.8, -2178.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-752.13, -2430.88], [-743.63, -2431.31], [-744.35, -2445.33], [-747.13, -2445.18], [-747.27, -2447.79], [-752.18, -2447.54], [-751.79, -2439.71], [-752.58, -2439.67], [-752.13, -2430.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-907.85, -2260.16], [-908.15, -2268.89], [-906.12, -2268.96], [-906.17, -2270.53], [-900.93, -2270.71], [-900.87, -2269.15], [-896.62, -2269.29], [-896.33, -2260.55], [-907.85, -2260.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1107.91, -2178.32], [-1108.17, -2185.74], [-1099.27, -2186.05], [-1099.02, -2178.63], [-1103.44, -2178.47], [-1103.4, -2177.48], [-1106.89, -2177.36], [-1106.93, -2178.35], [-1107.91, -2178.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1051.11, -2183.37], [-1058.8, -2182.99], [-1059.02, -2187.4], [-1059.55, -2187.37], [-1059.82, -2192.81], [-1059.29, -2192.83], [-1059.47, -2196.43], [-1051.78, -2196.82], [-1051.11, -2183.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1268.9, -2208.08], [-1265.12, -2215.12], [-1254.84, -2209.64], [-1255.21, -2208.97], [-1253.1, -2207.84], [-1256.29, -2201.89], [-1258.4, -2203.02], [-1258.63, -2202.6], [-1268.9, -2208.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1275.72, -2196.72], [-1271.77, -2203.88], [-1262.31, -2198.72], [-1263.02, -2197.41], [-1255.58, -2193.34], [-1258.16, -2188.63], [-1265.61, -2192.7], [-1266.24, -2191.55], [-1275.72, -2196.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-659.72, -2360.42], [-658.61, -2352.72], [-644.8, -2354.71], [-645.75, -2361.28], [-649.6, -2360.73], [-649.85, -2362.5], [-654.81, -2361.79], [-654.71, -2361.14], [-659.72, -2360.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1244.9, -2248.03], [-1239.56, -2257.23], [-1227.67, -2250.39], [-1228.25, -2249.38], [-1224.12, -2246.99], [-1228.21, -2239.94], [-1232.35, -2242.32], [-1233.01, -2241.18], [-1244.9, -2248.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-994.44, -2371.38], [-994.76, -2380.7], [-985.7, -2381.02], [-985.43, -2373.29], [-983.74, -2373.35], [-983.55, -2367.87], [-992.62, -2367.57], [-992.75, -2371.44], [-994.44, -2371.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1095.73, -2178.72], [-1089.19, -2179.05], [-1089.28, -2180.86], [-1086.65, -2181.01], [-1086.91, -2186.13], [-1088.05, -2186.07], [-1088.41, -2193.0], [-1096.46, -2192.58], [-1095.73, -2178.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1284.71, -2180.13], [-1278.33, -2191.68], [-1270.53, -2187.4], [-1268.58, -2190.93], [-1262.62, -2187.67], [-1264.57, -2184.14], [-1246.02, -2173.96], [-1250.57, -2165.73], [-1257.32, -2165.1], [-1284.71, -2180.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.402, "pop": 201, "jobs": 0}}, {"shape": {"outer": [[-1718.35, -2073.05], [-1724.72, -2079.08], [-1720.74, -2083.25], [-1721.51, -2083.99], [-1711.43, -2094.54], [-1703.59, -2087.11], [-1707.94, -2082.55], [-1707.4, -2082.04], [-1712.46, -2076.74], [-1713.71, -2077.92], [-1718.35, -2073.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-1718.17, -1957.13], [-1716.63, -1960.04], [-1718.58, -1961.05], [-1716.7, -1964.63], [-1715.16, -1963.82], [-1713.44, -1967.08], [-1705.28, -1962.81], [-1710.06, -1953.73], [-1713.51, -1955.53], [-1713.86, -1954.87], [-1718.17, -1957.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1376.38, -1962.18], [-1389.76, -1969.5], [-1389.01, -1970.87], [-1389.51, -1971.13], [-1386.66, -1976.29], [-1385.06, -1976.9], [-1382.89, -1976.64], [-1377.87, -1973.88], [-1374.07, -1980.8], [-1367.97, -1977.46], [-1376.38, -1962.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-1640.15, -2105.34], [-1629.06, -2099.58], [-1627.0, -2103.52], [-1625.7, -2102.84], [-1623.72, -2106.62], [-1625.02, -2107.3], [-1621.8, -2113.44], [-1635.78, -2120.71], [-1638.06, -2116.33], [-1635.18, -2114.83], [-1640.15, -2105.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-1462.04, -2378.25], [-1462.03, -2388.58], [-1452.49, -2388.57], [-1452.48, -2389.77], [-1446.46, -2389.77], [-1446.47, -2381.84], [-1449.76, -2381.85], [-1449.76, -2379.8], [-1452.9, -2379.8], [-1452.9, -2378.25], [-1462.04, -2378.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-1569.16, -2249.99], [-1565.83, -2256.54], [-1561.39, -2254.3], [-1560.54, -2255.98], [-1556.55, -2253.98], [-1554.98, -2257.08], [-1547.77, -2253.44], [-1552.1, -2244.91], [-1560.08, -2248.94], [-1561.51, -2246.13], [-1569.16, -2249.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1520.43, -2210.08], [-1526.5, -2215.26], [-1521.62, -2220.95], [-1520.92, -2220.36], [-1518.64, -2223.02], [-1513.26, -2218.44], [-1514.81, -2216.64], [-1511.85, -2214.11], [-1516.11, -2209.14], [-1519.07, -2211.66], [-1520.43, -2210.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1358.49, -1952.51], [-1355.16, -1958.86], [-1346.52, -1954.36], [-1347.04, -1953.39], [-1344.88, -1952.28], [-1347.7, -1946.89], [-1351.07, -1948.64], [-1352.02, -1946.85], [-1356.29, -1949.08], [-1355.35, -1950.87], [-1358.49, -1952.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1572.72, -2310.34], [-1569.3, -2320.52], [-1560.8, -2317.69], [-1562.92, -2311.39], [-1561.69, -2310.98], [-1563.0, -2307.1], [-1567.53, -2308.61], [-1568.82, -2304.79], [-1573.08, -2306.21], [-1571.8, -2310.03], [-1572.72, -2310.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1393.88, -1886.05], [-1396.38, -1881.25], [-1394.04, -1880.04], [-1395.14, -1877.93], [-1386.08, -1873.26], [-1384.74, -1875.83], [-1386.04, -1876.51], [-1383.41, -1881.57], [-1391.01, -1885.5], [-1391.39, -1884.76], [-1393.88, -1886.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1201.67, -2447.27], [-1197.81, -2453.82], [-1188.3, -2448.26], [-1189.23, -2446.67], [-1181.11, -2442.16], [-1176.53, -2439.61], [-1184.7, -2425.09], [-1190.94, -2428.91], [-1186.89, -2436.21], [-1187.38, -2436.58], [-1188.32, -2434.96], [-1198.02, -2440.49], [-1196.0, -2443.96], [-1201.67, -2447.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[-1478.92, -2384.62], [-1479.0, -2392.54], [-1474.41, -2392.58], [-1474.39, -2390.11], [-1464.99, -2390.21], [-1464.91, -2382.13], [-1464.46, -2382.13], [-1464.44, -2379.42], [-1470.46, -2379.36], [-1470.48, -2381.9], [-1475.45, -2381.86], [-1475.49, -2384.65], [-1478.92, -2384.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1463.71, -2231.27], [-1464.06, -2239.89], [-1460.41, -2240.04], [-1460.45, -2240.88], [-1457.28, -2241.0], [-1457.25, -2240.17], [-1453.95, -2240.3], [-1453.62, -2231.67], [-1455.31, -2231.6], [-1455.11, -2226.6], [-1462.49, -2226.31], [-1462.68, -2231.31], [-1463.71, -2231.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1549.91, -2174.13], [-1544.56, -2183.71], [-1534.29, -2178.01], [-1539.64, -2168.43], [-1542.8, -2170.19], [-1543.55, -2168.85], [-1541.27, -2167.6], [-1544.63, -2161.59], [-1550.83, -2165.03], [-1547.4, -2171.17], [-1546.82, -2170.85], [-1546.16, -2172.05], [-1549.91, -2174.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-1333.09, -2000.02], [-1331.15, -2003.05], [-1332.68, -2004.02], [-1330.93, -2006.75], [-1327.81, -2004.76], [-1325.48, -2008.39], [-1319.56, -2004.63], [-1321.34, -2001.84], [-1320.4, -2001.25], [-1322.23, -1998.39], [-1321.11, -1997.68], [-1323.51, -1993.92], [-1333.09, -2000.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1531.76, -2458.53], [-1530.85, -2464.71], [-1528.84, -2464.41], [-1528.26, -2468.3], [-1521.45, -2467.3], [-1520.9, -2471.0], [-1513.63, -2469.93], [-1514.52, -2463.89], [-1515.74, -2464.07], [-1517.05, -2455.26], [-1525.65, -2456.53], [-1525.49, -2457.61], [-1531.76, -2458.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-1434.42, -2375.2], [-1434.82, -2383.68], [-1426.17, -2384.08], [-1426.07, -2381.85], [-1422.63, -2382.0], [-1422.74, -2384.23], [-1411.67, -2384.75], [-1411.23, -2375.29], [-1422.27, -2374.78], [-1422.37, -2376.68], [-1425.48, -2376.53], [-1425.43, -2375.61], [-1434.42, -2375.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-1534.92, -2441.05], [-1522.57, -2438.82], [-1520.66, -2449.28], [-1525.19, -2450.09], [-1525.05, -2450.83], [-1526.59, -2451.1], [-1526.31, -2452.63], [-1532.61, -2453.77], [-1533.49, -2448.98], [-1534.71, -2449.2], [-1535.36, -2445.67], [-1534.13, -2445.45], [-1534.92, -2441.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1356.91, -1929.65], [-1365.25, -1933.95], [-1364.21, -1935.94], [-1367.36, -1937.56], [-1364.45, -1943.15], [-1359.08, -1940.37], [-1357.29, -1943.8], [-1351.17, -1940.64], [-1353.22, -1936.7], [-1354.18, -1937.19], [-1356.32, -1933.09], [-1355.37, -1932.59], [-1356.91, -1929.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1596.23, -2232.98], [-1607.58, -2239.15], [-1604.56, -2244.66], [-1602.63, -2243.62], [-1599.38, -2249.54], [-1594.54, -2246.9], [-1593.63, -2248.55], [-1589.05, -2246.05], [-1590.21, -2243.95], [-1586.31, -2241.83], [-1589.68, -2235.7], [-1593.58, -2237.81], [-1596.23, -2232.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-1500.52, -2278.16], [-1500.33, -2289.53], [-1496.28, -2289.47], [-1496.23, -2292.55], [-1491.91, -2292.47], [-1491.96, -2289.39], [-1490.98, -2289.37], [-1491.16, -2278.01], [-1494.07, -2278.06], [-1494.09, -2276.69], [-1497.15, -2276.74], [-1497.13, -2278.11], [-1500.52, -2278.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1619.01, -2206.03], [-1612.69, -2218.09], [-1606.05, -2214.65], [-1608.22, -2210.52], [-1600.36, -2206.43], [-1602.22, -2202.87], [-1596.37, -2199.83], [-1601.06, -2190.88], [-1608.26, -2194.62], [-1606.68, -2197.64], [-1612.85, -2200.86], [-1612.04, -2202.4], [-1619.01, -2206.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[-1470.06, -2276.92], [-1465.2, -2277.16], [-1465.15, -2276.25], [-1462.86, -2276.36], [-1462.91, -2277.28], [-1461.4, -2277.35], [-1462.16, -2292.59], [-1457.7, -2292.8], [-1458.02, -2299.32], [-1462.63, -2299.09], [-1462.38, -2294.23], [-1467.56, -2293.98], [-1467.48, -2292.37], [-1470.81, -2292.21], [-1470.06, -2276.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1591.34, -2269.61], [-1594.49, -2262.76], [-1593.33, -2262.23], [-1596.12, -2256.14], [-1587.41, -2252.17], [-1586.16, -2254.88], [-1583.68, -2253.74], [-1582.14, -2257.11], [-1576.44, -2254.51], [-1573.29, -2261.35], [-1585.39, -2266.89], [-1584.1, -2269.68], [-1588.67, -2271.77], [-1589.96, -2268.98], [-1591.34, -2269.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-1692.0, -2112.87], [-1684.69, -2107.1], [-1677.52, -2116.13], [-1679.47, -2117.68], [-1677.67, -2119.96], [-1676.02, -2118.67], [-1673.65, -2121.65], [-1679.33, -2126.13], [-1683.51, -2120.86], [-1684.83, -2121.9], [-1686.89, -2119.31], [-1687.97, -2120.17], [-1692.06, -2115.03], [-1690.97, -2114.17], [-1692.0, -2112.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1412.61, -2410.69], [-1421.86, -2410.29], [-1422.34, -2421.22], [-1413.09, -2421.62], [-1412.61, -2410.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1599.51, -2037.82], [-1593.65, -2034.62], [-1587.78, -2045.29], [-1593.64, -2048.49], [-1599.51, -2037.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1487.74, -2443.07], [-1482.56, -2443.32], [-1482.91, -2450.56], [-1488.1, -2450.3], [-1487.74, -2443.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1480.83, -2103.67], [-1471.13, -2110.95], [-1463.4, -2100.71], [-1473.11, -2093.44], [-1480.83, -2103.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1503.66, -2320.7], [-1495.77, -2319.37], [-1494.52, -2326.7], [-1502.41, -2328.03], [-1503.66, -2320.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-1485.13, -2276.68], [-1485.23, -2284.38], [-1474.85, -2284.52], [-1474.75, -2276.82], [-1485.13, -2276.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1577.03, -2031.48], [-1571.61, -2041.39], [-1556.67, -2033.27], [-1562.1, -2023.36], [-1577.03, -2031.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-1578.61, -2124.32], [-1572.59, -2134.96], [-1557.35, -2126.38], [-1563.37, -2115.76], [-1578.61, -2124.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-1579.67, -2293.2], [-1576.7, -2301.6], [-1567.49, -2298.38], [-1570.45, -2289.98], [-1579.67, -2293.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1270.3, -2319.43], [-1264.65, -2329.41], [-1245.27, -2318.53], [-1250.91, -2308.54], [-1270.3, -2319.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-1452.91, -2277.77], [-1453.67, -2292.1], [-1439.97, -2292.81], [-1439.22, -2278.5], [-1452.91, -2277.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-1619.94, -2052.53], [-1614.59, -2062.11], [-1602.26, -2055.27], [-1607.6, -2045.7], [-1619.94, -2052.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1230.83, -2349.74], [-1240.7, -2355.21], [-1229.31, -2375.63], [-1219.44, -2370.16], [-1230.83, -2349.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[-1470.84, -2121.27], [-1460.63, -2127.58], [-1453.98, -2116.88], [-1464.2, -2110.58], [-1470.84, -2121.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-1530.29, -2181.9], [-1532.41, -2178.39], [-1527.09, -2175.21], [-1524.98, -2178.73], [-1530.29, -2181.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1481.3, -2457.96], [-1481.76, -2467.9], [-1469.48, -2468.46], [-1469.02, -2458.52], [-1481.3, -2457.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1666.35, -1967.12], [-1670.09, -1959.95], [-1660.82, -1955.16], [-1657.09, -1962.32], [-1666.35, -1967.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1487.94, -2291.04], [-1487.89, -2298.52], [-1480.4, -2298.47], [-1480.46, -2290.98], [-1487.94, -2291.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1554.09, -2118.67], [-1548.8, -2115.72], [-1543.04, -2125.96], [-1548.34, -2128.91], [-1554.09, -2118.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1549.71, -2287.47], [-1546.8, -2295.62], [-1535.15, -2291.49], [-1538.06, -2283.34], [-1549.71, -2287.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1419.43, -2326.37], [-1412.71, -2326.59], [-1412.91, -2332.68], [-1419.62, -2332.46], [-1419.43, -2326.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1588.47, -2244.09], [-1586.27, -2248.17], [-1578.11, -2243.77], [-1580.31, -2239.69], [-1588.47, -2244.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1455.23, -2301.44], [-1455.53, -2309.21], [-1444.34, -2309.64], [-1444.04, -2301.88], [-1455.23, -2301.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1601.6, -2061.11], [-1611.8, -2066.59], [-1603.65, -2081.68], [-1593.45, -2076.22], [-1601.6, -2061.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-1457.83, -2134.68], [-1447.97, -2138.34], [-1442.31, -2123.21], [-1452.19, -2119.55], [-1457.83, -2134.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-1484.47, -2173.59], [-1480.01, -2176.01], [-1486.2, -2187.33], [-1490.64, -2184.92], [-1484.47, -2173.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1651.13, -2109.25], [-1657.84, -2112.9], [-1652.51, -2122.66], [-1645.79, -2119.03], [-1651.13, -2109.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1550.9, -2132.65], [-1547.32, -2138.79], [-1538.82, -2133.85], [-1542.4, -2127.73], [-1550.9, -2132.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1642.27, -1969.66], [-1635.91, -1966.17], [-1632.16, -1972.92], [-1638.52, -1976.42], [-1642.27, -1969.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1256.45, -2370.14], [-1252.16, -2377.94], [-1235.89, -2369.06], [-1240.18, -2361.26], [-1256.45, -2370.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1714.34, -1969.12], [-1710.57, -1976.42], [-1699.6, -1970.8], [-1703.36, -1963.5], [-1714.34, -1969.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1473.16, -2207.91], [-1464.85, -2208.32], [-1465.24, -2216.15], [-1473.55, -2215.74], [-1473.16, -2207.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1419.63, -2275.89], [-1420.17, -2285.14], [-1405.61, -2285.99], [-1405.06, -2276.75], [-1419.63, -2275.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1585.91, -2080.02], [-1600.68, -2088.09], [-1594.66, -2099.05], [-1579.89, -2090.99], [-1585.91, -2080.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[-1523.6, -2329.88], [-1522.17, -2337.43], [-1514.14, -2335.92], [-1515.57, -2328.37], [-1523.6, -2329.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1631.21, -2123.66], [-1619.08, -2117.17], [-1611.87, -2130.55], [-1623.99, -2137.04], [-1631.21, -2123.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[-1552.68, -2135.49], [-1568.96, -2144.38], [-1559.61, -2161.37], [-1543.33, -2152.48], [-1552.68, -2135.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.288, "pop": 144, "jobs": 0}}, {"shape": {"outer": [[-1648.96, -1960.98], [-1646.46, -1965.82], [-1640.52, -1962.77], [-1643.02, -1957.94], [-1648.96, -1960.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1674.17, -1934.16], [-1670.23, -1941.87], [-1679.31, -1946.47], [-1683.24, -1938.76], [-1674.17, -1934.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1236.6, -2373.76], [-1234.16, -2372.42], [-1232.61, -2375.24], [-1235.04, -2376.59], [-1236.6, -2373.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[-1745.49, -2000.51], [-1742.03, -2007.15], [-1734.49, -2003.24], [-1737.94, -1996.61], [-1745.49, -2000.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1671.91, -2061.82], [-1668.64, -2067.79], [-1677.3, -2072.5], [-1680.57, -2066.53], [-1671.91, -2061.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1453.86, -2219.25], [-1448.93, -2219.47], [-1449.23, -2226.1], [-1454.16, -2225.88], [-1453.86, -2219.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1423.28, -2289.08], [-1423.48, -2293.35], [-1416.82, -2293.64], [-1416.62, -2289.38], [-1423.28, -2289.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1576.3, -2080.02], [-1570.42, -2076.79], [-1564.29, -2087.88], [-1570.18, -2091.1], [-1576.3, -2080.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1527.56, -2195.3], [-1535.17, -2199.51], [-1530.47, -2207.94], [-1522.86, -2203.72], [-1527.56, -2195.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1528.94, -2344.43], [-1527.22, -2353.16], [-1514.3, -2350.64], [-1516.02, -2341.92], [-1528.94, -2344.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1700.9, -1992.06], [-1697.14, -1998.98], [-1685.81, -1992.88], [-1689.57, -1985.96], [-1700.9, -1992.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1422.44, -2311.15], [-1422.91, -2322.3], [-1407.06, -2322.96], [-1406.6, -2311.82], [-1422.44, -2311.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-1663.11, -2073.19], [-1658.23, -2082.08], [-1644.07, -2074.37], [-1648.95, -2065.48], [-1663.11, -2073.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1619.71, -1920.17], [-1627.08, -1924.07], [-1623.35, -1931.06], [-1615.99, -1927.16], [-1619.71, -1920.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1772.26, -2003.18], [-1768.68, -2009.0], [-1761.83, -2004.82], [-1765.4, -1999.0], [-1772.26, -2003.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1406.68, -2295.04], [-1415.33, -2294.57], [-1415.91, -2305.23], [-1407.25, -2305.7], [-1406.68, -2295.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1563.91, -2103.96], [-1557.04, -2100.24], [-1553.3, -2107.11], [-1560.17, -2110.83], [-1563.91, -2103.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-1447.63, -2186.4], [-1455.08, -2186.16], [-1455.32, -2193.65], [-1447.88, -2193.9], [-1447.63, -2186.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1556.6, -2354.43], [-1554.07, -2363.73], [-1538.54, -2359.54], [-1541.07, -2350.24], [-1556.6, -2354.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1708.89, -1994.33], [-1715.49, -1997.83], [-1712.33, -2003.76], [-1705.72, -2000.24], [-1708.89, -1994.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-1636.24, -1925.29], [-1633.97, -1929.59], [-1628.15, -1926.54], [-1630.42, -1922.24], [-1636.24, -1925.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1437.23, -2278.91], [-1437.47, -2284.8], [-1425.55, -2285.28], [-1425.32, -2279.38], [-1437.23, -2278.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1569.5, -2211.3], [-1577.13, -2215.07], [-1572.42, -2224.52], [-1564.8, -2220.75], [-1569.5, -2211.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1445.18, -2175.7], [-1445.64, -2184.59], [-1431.23, -2185.33], [-1430.77, -2176.45], [-1445.18, -2175.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1513.07, -2459.15], [-1505.16, -2457.93], [-1503.98, -2465.49], [-1511.88, -2466.72], [-1513.07, -2459.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-1723.82, -2061.48], [-1719.79, -2058.14], [-1715.18, -2063.64], [-1719.21, -2066.98], [-1723.82, -2061.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1709.55, -2008.85], [-1705.68, -2006.91], [-1703.38, -2011.45], [-1707.24, -2013.39], [-1709.55, -2008.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1655.27, -1948.54], [-1657.88, -1943.8], [-1652.54, -1940.89], [-1649.94, -1945.65], [-1655.27, -1948.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1403.39, -1867.63], [-1398.84, -1875.84], [-1387.64, -1869.68], [-1392.2, -1861.46], [-1403.39, -1867.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1438.1, -2191.09], [-1438.55, -2199.06], [-1431.41, -2199.46], [-1430.96, -2191.49], [-1438.1, -2191.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1703.83, -2052.53], [-1694.83, -2047.74], [-1687.42, -2061.57], [-1696.41, -2066.35], [-1703.83, -2052.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1708.21, -1991.64], [-1709.87, -1988.43], [-1714.4, -1990.76], [-1712.75, -1993.95], [-1708.21, -1991.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-1525.56, -2123.05], [-1519.62, -2133.87], [-1505.57, -2126.23], [-1511.52, -2115.4], [-1525.56, -2123.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-1412.01, -1871.86], [-1418.17, -1875.39], [-1414.63, -1881.54], [-1408.47, -1878.01], [-1412.01, -1871.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-1333.41, -2018.69], [-1340.44, -2022.65], [-1335.13, -2032.0], [-1328.1, -2028.05], [-1333.41, -2018.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1519.83, -2448.3], [-1518.96, -2453.33], [-1511.6, -2452.07], [-1512.47, -2447.04], [-1519.83, -2448.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1688.18, -2044.37], [-1682.09, -2055.44], [-1671.77, -2049.8], [-1677.86, -2038.73], [-1688.18, -2044.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1510.65, -2141.0], [-1503.09, -2136.64], [-1496.13, -2148.61], [-1503.69, -2152.98], [-1510.65, -2141.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1367.49, -1952.96], [-1373.64, -1956.07], [-1370.69, -1961.88], [-1364.54, -1958.77], [-1367.49, -1952.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1360.6, -1962.47], [-1367.53, -1966.27], [-1363.8, -1973.06], [-1356.86, -1969.28], [-1360.6, -1962.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1445.2, -2323.51], [-1445.45, -2330.0], [-1430.79, -2330.58], [-1430.53, -2324.07], [-1445.2, -2323.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1602.94, -2014.36], [-1596.81, -2011.2], [-1593.4, -2017.78], [-1599.52, -2020.94], [-1602.94, -2014.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-1372.99, -1933.37], [-1370.73, -1937.64], [-1380.21, -1942.65], [-1382.48, -1938.39], [-1372.99, -1933.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1492.63, -2382.7], [-1484.6, -2382.88], [-1484.77, -2390.65], [-1492.8, -2390.48], [-1492.63, -2382.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1517.74, -2140.68], [-1524.09, -2144.67], [-1520.02, -2151.11], [-1513.67, -2147.12], [-1517.74, -2140.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1612.97, -1955.61], [-1609.19, -1962.93], [-1597.47, -1956.93], [-1601.25, -1949.6], [-1612.97, -1955.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1621.08, -1945.71], [-1617.15, -1952.99], [-1603.2, -1945.51], [-1607.13, -1938.22], [-1621.08, -1945.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1609.09, -2020.98], [-1602.81, -2017.54], [-1599.23, -2024.01], [-1605.5, -2027.46], [-1609.09, -2020.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1498.72, -2393.24], [-1493.51, -2393.27], [-1493.54, -2400.29], [-1498.75, -2400.27], [-1498.72, -2393.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1587.26, -1911.72], [-1583.18, -1919.16], [-1573.97, -1914.14], [-1578.05, -1906.7], [-1587.26, -1911.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1573.71, -1934.65], [-1569.45, -1942.08], [-1561.61, -1937.63], [-1565.88, -1930.19], [-1573.71, -1934.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1543.72, -2305.29], [-1539.14, -2303.82], [-1537.13, -2310.03], [-1541.71, -2311.5], [-1543.72, -2305.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1648.14, -2152.03], [-1644.28, -2155.94], [-1639.1, -2150.87], [-1642.98, -2146.96], [-1648.14, -2152.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1501.51, -2402.43], [-1505.72, -2401.33], [-1507.44, -2407.93], [-1503.24, -2409.02], [-1501.51, -2402.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1471.6, -2333.08], [-1471.98, -2342.07], [-1460.13, -2342.57], [-1459.75, -2333.58], [-1471.6, -2333.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1564.0, -2336.26], [-1553.68, -2333.11], [-1556.55, -2323.8], [-1566.87, -2326.95], [-1564.0, -2336.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1595.85, -1898.51], [-1599.83, -1891.09], [-1586.62, -1884.06], [-1582.64, -1891.49], [-1595.85, -1898.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1582.75, -1985.95], [-1591.69, -1990.93], [-1579.14, -2013.32], [-1570.19, -2008.34], [-1582.75, -1985.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[-1567.32, -2232.6], [-1563.33, -2239.95], [-1555.94, -2235.98], [-1559.94, -2228.63], [-1567.32, -2232.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1533.18, -2282.78], [-1531.32, -2290.84], [-1521.36, -2288.57], [-1523.23, -2280.49], [-1533.18, -2282.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1657.0, -2142.42], [-1665.35, -2148.84], [-1657.56, -2158.92], [-1649.2, -2152.5], [-1657.0, -2142.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1435.69, -2453.05], [-1428.71, -2453.41], [-1429.09, -2460.86], [-1436.06, -2460.5], [-1435.69, -2453.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1766.11, -2013.82], [-1762.52, -2020.35], [-1756.09, -2016.83], [-1759.68, -2010.3], [-1766.11, -2013.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1473.7, -2322.1], [-1468.72, -2322.62], [-1469.4, -2329.08], [-1474.37, -2328.57], [-1473.7, -2322.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1324.82, -2028.15], [-1331.78, -2032.13], [-1328.08, -2038.54], [-1321.12, -2034.56], [-1324.82, -2028.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-1544.41, -2088.78], [-1538.63, -2099.64], [-1524.54, -2092.21], [-1530.31, -2081.35], [-1544.41, -2088.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-1388.39, -1887.13], [-1380.85, -1883.01], [-1376.39, -1891.16], [-1383.92, -1895.26], [-1388.39, -1887.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1517.78, -2297.07], [-1513.25, -2296.48], [-1512.29, -2303.89], [-1516.81, -2304.47], [-1517.78, -2297.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1500.94, -2213.75], [-1496.65, -2214.13], [-1497.17, -2220.04], [-1501.46, -2219.66], [-1500.94, -2213.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1436.09, -2400.51], [-1443.73, -2400.21], [-1443.98, -2406.5], [-1436.35, -2406.82], [-1436.09, -2400.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1629.59, -2011.79], [-1639.59, -2017.08], [-1633.67, -2028.18], [-1623.68, -2022.91], [-1629.59, -2011.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1487.04, -2320.47], [-1486.64, -2328.41], [-1476.18, -2327.89], [-1476.58, -2319.95], [-1487.04, -2320.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1322.09, -2028.22], [-1319.01, -2026.57], [-1317.4, -2029.55], [-1320.48, -2031.21], [-1322.09, -2028.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[-1660.21, -2051.49], [-1653.68, -2047.88], [-1648.79, -2056.69], [-1655.32, -2060.3], [-1660.21, -2051.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1553.31, -2073.64], [-1547.2, -2084.85], [-1533.03, -2077.19], [-1539.15, -2065.98], [-1553.31, -2073.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-1521.59, -2436.35], [-1522.64, -2431.1], [-1515.85, -2429.75], [-1514.8, -2435.0], [-1521.59, -2436.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1570.9, -1916.78], [-1565.47, -1913.85], [-1562.72, -1918.92], [-1568.14, -1921.86], [-1570.9, -1916.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1627.3, -2180.79], [-1635.96, -2186.85], [-1628.28, -2197.75], [-1619.62, -2191.69], [-1627.3, -2180.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1436.27, -2408.38], [-1443.55, -2408.06], [-1443.89, -2415.8], [-1436.6, -2416.11], [-1436.27, -2408.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1626.94, -2032.59], [-1620.16, -2028.85], [-1616.26, -2035.88], [-1623.04, -2039.62], [-1626.94, -2032.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1500.11, -2070.71], [-1477.7, -2058.07], [-1467.66, -2075.72], [-1490.08, -2088.37], [-1500.11, -2070.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.418, "pop": 209, "jobs": 0}}, {"shape": {"outer": [[-1482.16, -2334.31], [-1491.4, -2335.49], [-1490.31, -2344.03], [-1481.06, -2342.86], [-1482.16, -2334.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1570.62, -2047.73], [-1554.03, -2038.6], [-1544.49, -2055.82], [-1561.08, -2064.94], [-1570.62, -2047.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.298, "pop": 149, "jobs": 0}}, {"shape": {"outer": [[-1580.88, -2099.12], [-1591.18, -2104.82], [-1582.66, -2120.11], [-1572.36, -2114.4], [-1580.88, -2099.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-1536.59, -2424.68], [-1527.53, -2422.98], [-1525.45, -2434.0], [-1536.06, -2435.98], [-1537.52, -2428.22], [-1535.97, -2427.93], [-1536.59, -2424.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1667.44, -1970.74], [-1661.83, -1967.67], [-1659.91, -1971.17], [-1655.0, -1968.49], [-1651.47, -1974.88], [-1661.99, -1980.63], [-1667.44, -1970.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1438.89, -2333.99], [-1439.33, -2343.81], [-1433.9, -2344.06], [-1433.95, -2345.0], [-1423.49, -2345.48], [-1423.0, -2334.71], [-1438.89, -2333.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-1661.64, -1981.76], [-1655.49, -1978.4], [-1653.41, -1982.19], [-1652.22, -1981.54], [-1648.73, -1987.89], [-1656.07, -1991.9], [-1661.64, -1981.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1434.12, -2235.93], [-1434.39, -2242.24], [-1445.53, -2241.77], [-1445.14, -2232.8], [-1437.5, -2233.13], [-1437.61, -2235.78], [-1434.12, -2235.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1725.67, -2004.65], [-1719.98, -2001.53], [-1717.31, -2006.36], [-1715.06, -2005.13], [-1709.62, -2014.97], [-1717.56, -2019.32], [-1725.67, -2004.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1651.11, -2087.58], [-1647.34, -2094.75], [-1635.05, -2088.33], [-1636.33, -2085.89], [-1637.25, -2086.38], [-1639.74, -2081.65], [-1651.11, -2087.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1412.28, -2391.31], [-1421.46, -2390.97], [-1421.78, -2399.53], [-1425.72, -2399.39], [-1425.91, -2404.37], [-1412.77, -2404.86], [-1412.28, -2391.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1637.54, -1917.3], [-1634.53, -1923.08], [-1621.88, -1916.53], [-1626.12, -1908.39], [-1633.29, -1912.11], [-1632.07, -1914.47], [-1637.54, -1917.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1581.3, -2186.36], [-1589.61, -2190.78], [-1580.78, -2207.22], [-1575.63, -2204.48], [-1576.15, -2203.51], [-1573.0, -2201.84], [-1581.3, -2186.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1513.98, -2228.23], [-1504.65, -2233.13], [-1500.52, -2225.32], [-1501.67, -2224.72], [-1500.01, -2221.58], [-1508.19, -2217.29], [-1513.98, -2228.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1673.3, -2035.93], [-1670.3, -2041.66], [-1669.31, -2041.14], [-1666.33, -2046.81], [-1656.88, -2041.88], [-1662.86, -2030.48], [-1673.3, -2035.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1770.15, -1998.13], [-1774.55, -1990.05], [-1761.23, -1982.84], [-1760.67, -1983.85], [-1757.45, -1982.12], [-1753.61, -1989.18], [-1770.15, -1998.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-1604.71, -1998.31], [-1598.13, -2010.43], [-1590.02, -2006.05], [-1597.11, -1993.02], [-1604.57, -1997.04], [-1604.08, -1997.97], [-1604.71, -1998.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1625.43, -1934.61], [-1621.83, -1941.51], [-1610.96, -1935.89], [-1612.01, -1933.87], [-1610.67, -1933.18], [-1613.21, -1928.29], [-1625.43, -1934.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1742.53, -1976.37], [-1739.13, -1982.77], [-1733.94, -1980.03], [-1733.35, -1981.11], [-1730.33, -1979.52], [-1734.31, -1972.04], [-1742.53, -1976.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1379.57, -1909.33], [-1372.95, -1905.7], [-1371.63, -1908.1], [-1369.85, -1907.11], [-1366.13, -1913.86], [-1374.54, -1918.46], [-1379.57, -1909.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1454.19, -2444.73], [-1449.15, -2444.77], [-1449.2, -2452.12], [-1457.57, -2452.06], [-1457.55, -2447.44], [-1454.21, -2447.45], [-1454.19, -2444.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1518.34, -2279.44], [-1516.92, -2290.89], [-1514.65, -2290.61], [-1514.21, -2294.17], [-1505.86, -2293.14], [-1507.71, -2278.15], [-1518.34, -2279.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1650.98, -2166.81], [-1640.58, -2159.57], [-1635.03, -2167.48], [-1633.82, -2166.64], [-1628.61, -2174.06], [-1642.16, -2183.5], [-1647.51, -2175.9], [-1645.55, -2174.54], [-1650.98, -2166.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.218, "pop": 109, "jobs": 0}}, {"shape": {"outer": [[-1427.46, -2457.2], [-1419.95, -2457.59], [-1419.86, -2455.78], [-1415.72, -2455.99], [-1415.17, -2445.46], [-1428.54, -2444.77], [-1428.83, -2450.37], [-1427.11, -2450.46], [-1427.46, -2457.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1511.36, -2335.63], [-1509.33, -2347.08], [-1505.72, -2346.45], [-1505.58, -2347.28], [-1500.08, -2346.31], [-1500.23, -2345.48], [-1496.94, -2344.9], [-1498.97, -2333.45], [-1511.36, -2335.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-1670.65, -1945.49], [-1678.12, -1949.42], [-1673.87, -1957.44], [-1666.39, -1953.51], [-1667.72, -1951.01], [-1664.92, -1949.53], [-1667.59, -1944.5], [-1670.39, -1945.97], [-1670.65, -1945.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1709.11, -1982.94], [-1707.14, -1986.43], [-1703.95, -1984.67], [-1702.33, -1987.55], [-1692.88, -1982.29], [-1697.16, -1974.65], [-1701.15, -1976.87], [-1700.44, -1978.12], [-1709.11, -1982.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1250.35, -2327.19], [-1242.25, -2322.4], [-1237.03, -2331.15], [-1245.14, -2335.94], [-1245.69, -2335.02], [-1249.25, -2337.12], [-1253.45, -2330.08], [-1249.89, -2327.97], [-1250.35, -2327.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1534.38, -2183.34], [-1543.01, -2188.1], [-1538.13, -2196.89], [-1529.49, -2192.14], [-1530.24, -2190.79], [-1526.43, -2188.69], [-1529.64, -2182.9], [-1533.45, -2185.0], [-1534.38, -2183.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1464.5, -2458.16], [-1464.88, -2468.62], [-1460.96, -2468.77], [-1461.0, -2469.73], [-1451.59, -2470.08], [-1451.09, -2456.47], [-1456.95, -2456.25], [-1457.03, -2458.44], [-1464.5, -2458.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1774.05, -2027.37], [-1766.71, -2040.19], [-1764.97, -2039.2], [-1763.13, -2042.42], [-1757.31, -2039.11], [-1759.15, -2035.89], [-1756.22, -2034.23], [-1763.54, -2021.41], [-1774.05, -2027.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-1462.98, -2171.98], [-1464.84, -2180.58], [-1464.17, -2180.72], [-1464.98, -2184.44], [-1455.37, -2186.5], [-1454.45, -2182.27], [-1451.58, -2182.89], [-1449.83, -2174.81], [-1462.98, -2171.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1608.88, -2135.84], [-1619.18, -2141.38], [-1615.83, -2147.55], [-1616.32, -2147.82], [-1614.78, -2150.66], [-1614.29, -2150.4], [-1611.03, -2156.43], [-1600.73, -2150.89], [-1608.88, -2135.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-1729.75, -2074.02], [-1735.9, -2066.73], [-1733.58, -2064.79], [-1733.89, -2064.41], [-1732.19, -2063.0], [-1731.88, -2063.36], [-1728.13, -2060.22], [-1721.99, -2067.52], [-1729.75, -2074.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1649.62, -1925.55], [-1645.74, -1932.7], [-1638.69, -1928.91], [-1642.57, -1921.75], [-1645.52, -1923.34], [-1646.3, -1921.9], [-1648.06, -1922.84], [-1647.27, -1924.28], [-1649.62, -1925.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1598.08, -2155.87], [-1607.04, -2160.68], [-1604.68, -2165.05], [-1607.73, -2166.67], [-1602.49, -2176.36], [-1597.44, -2173.65], [-1598.55, -2171.6], [-1591.6, -2167.87], [-1598.08, -2155.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-1457.18, -2333.5], [-1457.53, -2342.65], [-1444.41, -2343.13], [-1444.06, -2333.99], [-1448.31, -2333.83], [-1448.16, -2329.95], [-1455.41, -2329.68], [-1455.55, -2333.56], [-1457.18, -2333.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1473.6, -2446.31], [-1473.7, -2453.78], [-1465.66, -2453.88], [-1465.56, -2446.42], [-1466.81, -2446.4], [-1466.78, -2443.76], [-1472.45, -2443.68], [-1472.49, -2446.32], [-1473.6, -2446.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1562.22, -2338.92], [-1558.43, -2352.0], [-1550.74, -2349.78], [-1551.87, -2345.87], [-1550.38, -2345.44], [-1550.6, -2344.67], [-1545.39, -2343.18], [-1547.82, -2334.78], [-1562.22, -2338.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-1475.75, -2166.45], [-1479.99, -2174.38], [-1478.18, -2175.35], [-1479.82, -2178.42], [-1474.1, -2181.46], [-1472.47, -2178.39], [-1470.89, -2179.22], [-1466.64, -2171.29], [-1475.75, -2166.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1355.22, -1963.28], [-1351.14, -1971.03], [-1340.18, -1965.29], [-1342.13, -1961.59], [-1339.63, -1960.28], [-1342.07, -1955.66], [-1352.66, -1961.19], [-1352.34, -1961.79], [-1355.22, -1963.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1357.17, -2049.16], [-1352.59, -2057.3], [-1343.21, -2052.06], [-1342.05, -2054.11], [-1335.86, -2050.66], [-1339.98, -2043.32], [-1335.73, -2040.94], [-1337.35, -2038.08], [-1357.17, -2049.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-1326.49, -2015.51], [-1323.04, -2021.38], [-1318.09, -2018.49], [-1317.64, -2019.25], [-1309.96, -2014.77], [-1314.03, -2007.85], [-1321.66, -2012.3], [-1321.49, -2012.6], [-1326.49, -2015.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1481.14, -2227.24], [-1474.46, -2227.54], [-1474.52, -2228.89], [-1468.28, -2229.18], [-1468.86, -2241.42], [-1477.79, -2241.0], [-1477.71, -2239.49], [-1481.71, -2239.3], [-1481.14, -2227.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1373.17, -1919.55], [-1365.31, -1915.41], [-1363.53, -1918.75], [-1362.28, -1918.09], [-1360.71, -1921.02], [-1361.97, -1921.69], [-1360.62, -1924.24], [-1368.48, -1928.38], [-1373.17, -1919.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1314.95, -2022.92], [-1310.05, -2031.66], [-1309.04, -2031.1], [-1307.7, -2033.5], [-1302.42, -2030.56], [-1303.76, -2028.17], [-1302.6, -2027.52], [-1307.5, -2018.78], [-1314.95, -2022.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1497.19, -2151.79], [-1506.86, -2162.73], [-1499.83, -2168.9], [-1495.7, -2164.22], [-1488.6, -2170.45], [-1482.23, -2163.24], [-1493.44, -2153.42], [-1494.26, -2154.35], [-1497.19, -2151.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[-1376.99, -1893.51], [-1385.34, -1898.11], [-1381.92, -1904.26], [-1383.78, -1905.27], [-1382.43, -1907.69], [-1380.58, -1906.67], [-1380.0, -1907.71], [-1371.64, -1903.1], [-1376.99, -1893.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1335.24, -1974.25], [-1339.05, -1976.38], [-1342.99, -1969.41], [-1349.93, -1973.31], [-1345.33, -1981.43], [-1343.47, -1980.37], [-1335.85, -1993.85], [-1326.98, -1988.87], [-1335.24, -1974.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-1625.26, -2009.36], [-1616.49, -2004.7], [-1608.93, -2018.84], [-1611.48, -2020.2], [-1610.53, -2021.99], [-1613.9, -2023.77], [-1614.85, -2021.99], [-1617.7, -2023.49], [-1625.26, -2009.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-1699.52, -2003.2], [-1696.78, -2008.0], [-1694.53, -2006.72], [-1693.22, -2009.03], [-1681.54, -2002.42], [-1683.59, -1998.81], [-1681.99, -1997.91], [-1683.99, -1994.41], [-1699.52, -2003.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1580.55, -1923.61], [-1573.89, -1920.17], [-1569.68, -1928.24], [-1570.64, -1928.74], [-1569.66, -1930.63], [-1574.62, -1933.2], [-1575.6, -1931.3], [-1576.35, -1931.69], [-1580.55, -1923.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1516.4, -2389.78], [-1513.69, -2400.45], [-1506.64, -2398.67], [-1507.28, -2396.16], [-1502.6, -2394.99], [-1505.14, -2384.98], [-1511.69, -2386.64], [-1511.22, -2388.47], [-1516.4, -2389.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1678.93, -2131.39], [-1669.85, -2124.28], [-1667.1, -2127.77], [-1665.18, -2126.27], [-1658.42, -2134.84], [-1662.29, -2137.87], [-1660.55, -2140.06], [-1667.69, -2145.65], [-1678.93, -2131.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[-1193.8, -2452.24], [-1190.81, -2457.19], [-1188.44, -2455.86], [-1187.03, -2458.45], [-1176.99, -2452.61], [-1177.89, -2450.99], [-1176.23, -2450.21], [-1173.94, -2454.49], [-1169.38, -2451.73], [-1176.53, -2439.61], [-1181.11, -2442.16], [-1179.8, -2444.3], [-1193.8, -2452.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-1544.15, -2394.83], [-1535.76, -2392.88], [-1531.78, -2409.81], [-1540.16, -2411.77], [-1542.61, -2401.38], [-1543.86, -2401.68], [-1544.5, -2398.94], [-1543.25, -2398.66], [-1544.15, -2394.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1746.86, -2011.99], [-1739.79, -2008.39], [-1731.4, -2024.74], [-1737.03, -2027.61], [-1738.43, -2024.87], [-1741.03, -2026.2], [-1745.18, -2018.11], [-1744.03, -2017.52], [-1746.86, -2011.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1500.22, -2455.62], [-1500.58, -2464.77], [-1496.86, -2464.92], [-1496.95, -2467.41], [-1488.21, -2467.76], [-1488.12, -2465.27], [-1486.26, -2465.34], [-1485.9, -2456.2], [-1500.22, -2455.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1497.87, -2229.1], [-1498.31, -2236.8], [-1484.77, -2237.56], [-1483.95, -2222.99], [-1494.24, -2222.4], [-1494.44, -2225.93], [-1496.7, -2225.8], [-1496.89, -2229.16], [-1497.87, -2229.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-1594.14, -1901.6], [-1590.36, -1908.48], [-1576.11, -1900.73], [-1574.81, -1903.08], [-1569.68, -1900.3], [-1573.04, -1894.16], [-1580.54, -1898.25], [-1582.25, -1895.12], [-1594.14, -1901.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1697.67, -2091.32], [-1705.7, -2098.44], [-1703.36, -2101.06], [-1704.41, -2101.98], [-1700.9, -2105.89], [-1699.86, -2104.97], [-1695.69, -2109.62], [-1687.66, -2102.49], [-1697.67, -2091.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-1416.83, -2338.33], [-1417.39, -2348.18], [-1400.57, -2349.15], [-1400.22, -2343.0], [-1400.94, -2342.96], [-1400.84, -2341.11], [-1401.74, -2340.01], [-1411.29, -2339.46], [-1411.24, -2338.66], [-1416.83, -2338.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-434.47, -2068.11], [-443.27, -2067.49], [-443.59, -2071.99], [-445.27, -2071.86], [-445.7, -2077.84], [-441.86, -2078.12], [-442.2, -2082.78], [-431.95, -2083.51], [-430.98, -2069.98], [-434.58, -2069.72], [-434.47, -2068.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-450.42, -2113.04], [-450.78, -2117.27], [-449.69, -2117.36], [-450.2, -2123.54], [-440.73, -2124.33], [-439.89, -2114.44], [-435.34, -2114.83], [-434.91, -2109.75], [-440.62, -2109.27], [-441.01, -2113.83], [-450.42, -2113.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-489.77, -2099.14], [-489.36, -2093.77], [-486.28, -2094.0], [-486.14, -2092.14], [-484.38, -2092.28], [-484.32, -2091.47], [-475.7, -2092.1], [-475.94, -2095.28], [-473.96, -2095.42], [-474.33, -2100.28], [-489.77, -2099.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-362.09, -2349.66], [-368.88, -2349.4], [-369.17, -2356.97], [-369.63, -2356.95], [-370.09, -2368.75], [-368.24, -2368.83], [-368.25, -2369.24], [-362.3, -2369.47], [-361.82, -2357.13], [-362.38, -2357.11], [-362.09, -2349.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-373.65, -2307.64], [-374.15, -2318.34], [-367.94, -2318.64], [-367.7, -2313.81], [-366.15, -2313.89], [-365.88, -2308.01], [-366.43, -2307.98], [-366.33, -2305.72], [-372.93, -2305.41], [-373.04, -2307.67], [-373.65, -2307.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-463.8, -2001.63], [-473.48, -2000.49], [-474.54, -2009.57], [-466.26, -2010.55], [-466.06, -2008.92], [-464.97, -2009.04], [-464.68, -2006.65], [-465.77, -2006.51], [-465.58, -2004.84], [-464.2, -2005.0], [-463.8, -2001.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-444.69, -2053.64], [-445.08, -2061.32], [-443.65, -2061.4], [-443.71, -2062.44], [-432.8, -2062.99], [-432.65, -2059.97], [-429.98, -2060.11], [-429.77, -2055.87], [-432.43, -2055.73], [-432.36, -2054.27], [-444.69, -2053.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-499.74, -2347.81], [-494.28, -2347.98], [-494.38, -2351.12], [-490.98, -2351.23], [-491.22, -2359.39], [-494.92, -2359.27], [-495.09, -2364.55], [-493.76, -2364.59], [-493.9, -2369.12], [-500.4, -2368.92], [-499.74, -2347.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-448.07, -2086.17], [-438.66, -2087.1], [-439.27, -2093.16], [-436.28, -2093.46], [-436.74, -2098.08], [-429.87, -2098.77], [-430.47, -2104.7], [-437.07, -2104.04], [-436.75, -2100.76], [-449.4, -2099.51], [-448.07, -2086.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-421.81, -2300.55], [-422.38, -2310.99], [-418.61, -2311.2], [-418.47, -2308.7], [-416.35, -2308.82], [-416.57, -2313.08], [-415.66, -2313.13], [-415.77, -2315.15], [-411.68, -2315.37], [-411.57, -2313.35], [-410.93, -2313.38], [-410.27, -2301.18], [-421.81, -2300.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-445.09, -2357.58], [-440.67, -2357.75], [-440.75, -2359.82], [-436.04, -2359.99], [-436.29, -2366.52], [-438.8, -2366.43], [-438.96, -2370.58], [-443.72, -2370.4], [-443.66, -2368.97], [-447.08, -2368.84], [-446.87, -2363.45], [-445.32, -2363.52], [-445.09, -2357.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-406.43, -2076.57], [-406.57, -2080.53], [-409.97, -2080.42], [-410.1, -2084.05], [-403.64, -2084.27], [-403.72, -2086.55], [-390.78, -2087.01], [-390.43, -2077.14], [-393.71, -2077.02], [-393.52, -2071.61], [-399.64, -2071.41], [-399.83, -2076.8], [-406.43, -2076.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-406.38, -2104.6], [-406.54, -2108.17], [-403.25, -2108.3], [-403.34, -2110.27], [-406.63, -2110.12], [-406.87, -2115.45], [-403.58, -2115.6], [-403.63, -2116.8], [-391.51, -2117.33], [-391.13, -2108.74], [-401.06, -2108.3], [-400.91, -2104.85], [-406.38, -2104.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-439.63, -2129.93], [-451.05, -2129.12], [-451.07, -2129.46], [-452.39, -2129.37], [-452.81, -2135.21], [-451.49, -2135.31], [-452.05, -2143.0], [-445.61, -2143.47], [-445.42, -2140.75], [-444.4, -2140.82], [-444.15, -2137.25], [-440.17, -2137.53], [-439.63, -2129.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-441.16, -2029.4], [-441.3, -2032.29], [-443.08, -2032.19], [-443.34, -2037.31], [-441.56, -2037.39], [-441.6, -2038.22], [-428.85, -2038.86], [-428.74, -2036.67], [-426.11, -2036.8], [-425.91, -2032.84], [-428.55, -2032.7], [-428.41, -2030.04], [-441.16, -2029.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-477.91, -2301.07], [-474.21, -2301.28], [-474.19, -2300.99], [-472.85, -2299.44], [-470.34, -2299.58], [-469.01, -2301.27], [-469.02, -2301.56], [-468.4, -2301.6], [-469.2, -2316.06], [-472.05, -2315.9], [-472.22, -2319.04], [-475.92, -2318.84], [-475.75, -2315.71], [-478.7, -2315.54], [-477.91, -2301.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-496.91, -2296.71], [-496.97, -2298.41], [-497.69, -2298.39], [-498.03, -2308.67], [-497.31, -2308.69], [-497.42, -2311.78], [-493.14, -2311.92], [-493.23, -2314.57], [-487.83, -2314.75], [-487.61, -2308.05], [-489.37, -2307.99], [-489.06, -2298.97], [-489.68, -2298.95], [-489.61, -2296.95], [-496.91, -2296.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-530.48, -2297.02], [-525.16, -2297.26], [-525.35, -2301.52], [-524.03, -2301.58], [-524.28, -2307.13], [-525.6, -2307.07], [-525.76, -2310.77], [-526.18, -2310.76], [-526.34, -2314.21], [-531.92, -2313.96], [-531.61, -2307.07], [-533.15, -2306.99], [-532.88, -2301.01], [-530.67, -2301.1], [-530.48, -2297.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-408.37, -2135.01], [-408.69, -2143.74], [-405.56, -2143.85], [-405.59, -2144.9], [-403.24, -2144.98], [-403.3, -2146.76], [-395.35, -2147.05], [-395.28, -2145.34], [-392.67, -2145.43], [-392.42, -2138.63], [-395.03, -2138.54], [-394.99, -2137.28], [-401.97, -2137.03], [-401.9, -2135.25], [-408.37, -2135.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-394.87, -2227.02], [-395.37, -2234.82], [-394.92, -2234.85], [-395.16, -2238.59], [-390.82, -2238.87], [-390.73, -2237.47], [-389.44, -2237.55], [-389.3, -2235.45], [-385.38, -2235.71], [-385.27, -2233.92], [-382.83, -2234.08], [-382.51, -2229.15], [-385.19, -2228.99], [-385.16, -2228.45], [-390.03, -2228.13], [-389.98, -2227.34], [-394.87, -2227.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-409.01, -2006.45], [-409.28, -2012.94], [-403.06, -2013.2], [-402.79, -2006.71], [-409.01, -2006.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-456.53, -2358.24], [-449.26, -2358.65], [-449.92, -2370.34], [-457.19, -2369.93], [-456.53, -2358.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-426.29, -2159.86], [-420.51, -2160.14], [-421.18, -2174.01], [-426.95, -2173.74], [-426.29, -2159.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-499.65, -2321.75], [-492.37, -2322.13], [-492.84, -2330.89], [-500.12, -2330.51], [-499.65, -2321.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-471.24, -2337.45], [-471.39, -2341.6], [-465.01, -2341.84], [-464.85, -2337.69], [-471.24, -2337.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-441.46, -2041.86], [-441.87, -2049.9], [-432.55, -2050.39], [-432.12, -2042.35], [-441.46, -2041.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-378.7, -2242.96], [-378.95, -2248.07], [-371.1, -2248.46], [-370.85, -2243.35], [-378.7, -2242.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-436.09, -2152.94], [-430.26, -2153.24], [-431.29, -2173.82], [-437.13, -2173.52], [-436.09, -2152.94]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.077, "pop": 0, "jobs": 77}}, {"shape": {"outer": [[-474.45, -2025.79], [-468.58, -2026.36], [-469.43, -2034.94], [-475.3, -2034.36], [-474.45, -2025.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-507.79, -2325.33], [-508.07, -2330.78], [-501.31, -2331.14], [-501.02, -2325.69], [-507.79, -2325.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-500.9, -2336.94], [-493.54, -2337.2], [-493.81, -2344.6], [-501.17, -2344.34], [-500.9, -2336.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-410.86, -2009.62], [-417.26, -2009.04], [-417.9, -2015.88], [-411.5, -2016.46], [-410.86, -2009.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-440.58, -2301.27], [-441.06, -2311.24], [-429.66, -2311.78], [-429.18, -2301.8], [-440.58, -2301.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-532.86, -2336.22], [-533.17, -2343.48], [-525.96, -2343.79], [-525.65, -2336.53], [-532.86, -2336.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-378.23, -2236.03], [-378.4, -2242.23], [-372.4, -2242.4], [-372.22, -2236.2], [-378.23, -2236.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-482.4, -2318.43], [-476.21, -2318.81], [-476.61, -2325.44], [-482.81, -2325.06], [-482.4, -2318.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-402.22, -2339.64], [-402.59, -2346.8], [-393.04, -2347.28], [-392.67, -2340.12], [-402.22, -2339.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-452.7, -2145.06], [-458.59, -2144.54], [-459.39, -2153.39], [-453.5, -2153.92], [-452.7, -2145.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-526.69, -2322.95], [-519.96, -2323.23], [-520.26, -2330.14], [-526.99, -2329.85], [-526.69, -2322.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-518.45, -2340.8], [-512.77, -2340.96], [-512.99, -2348.62], [-518.67, -2348.46], [-518.45, -2340.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-459.92, -2302.7], [-451.39, -2303.02], [-451.86, -2315.42], [-460.39, -2315.1], [-459.92, -2302.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-403.31, -2046.88], [-403.79, -2057.06], [-390.15, -2057.69], [-389.67, -2047.52], [-403.31, -2046.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-481.68, -2051.23], [-482.49, -2059.51], [-471.79, -2060.56], [-470.96, -2052.28], [-481.68, -2051.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-438.7, -2003.82], [-439.07, -2010.33], [-430.34, -2010.81], [-429.98, -2004.3], [-438.7, -2003.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-462.73, -2155.19], [-463.18, -2164.98], [-452.17, -2165.49], [-451.72, -2155.7], [-462.73, -2155.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-381.45, -2304.89], [-389.96, -2304.6], [-390.34, -2315.86], [-381.82, -2316.15], [-381.45, -2304.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-398.45, -2030.5], [-389.26, -2030.99], [-389.85, -2042.09], [-399.04, -2041.6], [-398.45, -2030.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-472.18, -1989.18], [-473.05, -1996.99], [-464.78, -1997.92], [-463.91, -1990.11], [-472.18, -1989.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-382.86, -2346.88], [-377.8, -2347.24], [-378.23, -2353.49], [-383.29, -2353.14], [-382.86, -2346.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-521.14, -2258.79], [-517.77, -2258.91], [-518.0, -2264.79], [-521.37, -2264.66], [-521.14, -2258.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-404.61, -2154.55], [-404.86, -2159.25], [-396.63, -2159.7], [-396.36, -2155.0], [-404.61, -2154.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-402.25, -2121.73], [-392.04, -2122.02], [-392.34, -2132.57], [-402.55, -2132.28], [-402.25, -2121.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-412.94, -2128.82], [-413.26, -2134.15], [-405.66, -2134.6], [-405.35, -2129.27], [-412.94, -2128.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-486.11, -1978.46], [-486.59, -1982.6], [-481.57, -1983.18], [-481.1, -1979.04], [-486.11, -1978.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-491.58, -2082.32], [-491.99, -2085.77], [-487.26, -2086.34], [-486.84, -2082.88], [-491.58, -2082.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-485.03, -1950.34], [-485.53, -1954.77], [-479.65, -1955.43], [-479.15, -1950.99], [-485.03, -1950.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-493.13, -2087.06], [-493.72, -2091.89], [-487.12, -2092.68], [-486.54, -2087.85], [-493.13, -2087.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-393.23, -2205.65], [-383.49, -2206.05], [-384.3, -2225.75], [-394.04, -2225.35], [-393.23, -2205.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-475.66, -2014.37], [-476.03, -2017.65], [-480.95, -2017.09], [-481.49, -2021.89], [-466.87, -2023.54], [-465.96, -2015.46], [-475.66, -2014.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-397.92, -2017.5], [-398.31, -2026.61], [-393.63, -2026.81], [-393.7, -2028.28], [-387.08, -2028.57], [-386.62, -2017.99], [-397.92, -2017.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-400.16, -2357.61], [-400.49, -2365.96], [-389.95, -2366.37], [-389.46, -2353.72], [-396.89, -2353.44], [-397.05, -2357.74], [-400.16, -2357.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-440.74, -2026.42], [-440.41, -2017.53], [-431.51, -2017.87], [-431.64, -2021.28], [-428.77, -2021.38], [-428.98, -2026.87], [-440.74, -2026.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-383.01, -2268.83], [-383.23, -2275.6], [-373.29, -2275.91], [-372.99, -2266.41], [-378.59, -2266.23], [-378.67, -2268.96], [-383.01, -2268.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-474.14, -1974.6], [-474.65, -1979.33], [-471.22, -1979.7], [-471.62, -1983.41], [-463.39, -1984.3], [-462.48, -1975.87], [-474.14, -1974.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-424.93, -2357.94], [-417.1, -2358.28], [-417.67, -2371.47], [-424.9, -2371.16], [-424.82, -2369.49], [-425.43, -2369.48], [-424.93, -2357.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-400.86, -2092.24], [-392.38, -2092.57], [-392.51, -2096.24], [-390.62, -2096.31], [-390.89, -2103.2], [-401.27, -2102.8], [-400.86, -2092.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-421.68, -2341.48], [-412.68, -2341.9], [-413.11, -2350.99], [-416.22, -2350.84], [-416.36, -2354.1], [-422.24, -2353.83], [-421.68, -2341.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-513.09, -2352.28], [-518.87, -2352.01], [-519.59, -2367.34], [-508.39, -2367.86], [-508.01, -2359.87], [-513.43, -2359.61], [-513.09, -2352.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-419.78, -2161.68], [-414.65, -2161.86], [-415.0, -2171.9], [-412.41, -2171.99], [-412.55, -2175.79], [-415.13, -2175.7], [-415.26, -2179.38], [-420.39, -2179.21], [-419.78, -2161.68]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.064, "pop": 0, "jobs": 64}}, {"shape": {"outer": [[-478.47, -2038.46], [-469.46, -2039.34], [-469.75, -2042.36], [-468.58, -2042.47], [-468.85, -2045.24], [-470.02, -2045.13], [-470.3, -2048.03], [-479.32, -2047.15], [-478.47, -2038.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-439.16, -1982.73], [-439.77, -1990.19], [-430.57, -1990.95], [-430.16, -1985.82], [-428.11, -1985.99], [-427.86, -1982.93], [-433.83, -1982.45], [-433.89, -1983.15], [-439.16, -1982.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-395.33, -1999.72], [-387.05, -2000.04], [-387.2, -2003.87], [-386.2, -2003.91], [-386.3, -2006.58], [-387.3, -2006.54], [-387.46, -2010.43], [-395.74, -2010.11], [-395.33, -1999.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-524.93, -2355.59], [-525.29, -2365.72], [-526.65, -2365.67], [-526.71, -2367.69], [-531.68, -2367.52], [-531.61, -2365.5], [-534.57, -2365.4], [-534.22, -2355.27], [-524.93, -2355.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-476.58, -2350.2], [-467.75, -2350.52], [-468.31, -2366.13], [-471.13, -2366.04], [-471.17, -2367.25], [-474.01, -2367.15], [-473.94, -2365.21], [-477.11, -2365.09], [-476.58, -2350.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-397.96, -2266.78], [-398.22, -2274.58], [-394.8, -2274.69], [-394.83, -2275.53], [-392.53, -2275.61], [-392.5, -2274.77], [-388.78, -2274.9], [-388.52, -2267.11], [-397.96, -2266.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-373.02, -2360.13], [-381.59, -2359.77], [-381.69, -2362.06], [-380.54, -2362.11], [-380.82, -2368.86], [-381.97, -2368.8], [-382.09, -2371.51], [-373.52, -2371.88], [-373.02, -2360.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-481.26, -2065.61], [-481.34, -2066.44], [-485.86, -2066.04], [-486.37, -2071.79], [-481.85, -2072.2], [-481.96, -2073.39], [-472.85, -2074.19], [-472.16, -2066.42], [-481.26, -2065.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-534.91, -2262.47], [-531.15, -2262.62], [-531.13, -2262.18], [-522.78, -2262.52], [-523.13, -2270.97], [-526.49, -2270.83], [-526.54, -2271.97], [-535.28, -2271.62], [-534.91, -2262.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-512.86, -2295.53], [-505.02, -2295.74], [-505.39, -2309.38], [-506.52, -2309.35], [-506.67, -2315.07], [-512.41, -2314.91], [-512.2, -2307.31], [-513.17, -2307.28], [-512.86, -2295.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-402.74, -2162.11], [-403.23, -2172.3], [-399.25, -2172.49], [-399.33, -2174.15], [-394.74, -2174.37], [-394.61, -2171.77], [-393.97, -2171.8], [-393.53, -2162.55], [-402.74, -2162.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-484.61, -2076.83], [-485.07, -2081.81], [-481.92, -2082.1], [-482.3, -2086.16], [-472.87, -2087.05], [-472.22, -2080.2], [-481.22, -2079.35], [-481.01, -2077.17], [-484.61, -2076.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-395.99, -2245.11], [-388.73, -2245.44], [-389.08, -2253.16], [-396.34, -2252.83], [-396.3, -2251.76], [-398.3, -2251.67], [-398.07, -2246.61], [-396.06, -2246.7], [-395.99, -2245.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-145.94, -2336.52], [-146.25, -2342.72], [-144.98, -2342.79], [-145.19, -2346.84], [-134.97, -2347.34], [-134.62, -2340.08], [-135.5, -2340.03], [-135.31, -2336.24], [-139.84, -2336.01], [-139.88, -2336.82], [-145.94, -2336.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-143.0, -2175.95], [-143.27, -2184.25], [-132.97, -2184.6], [-132.77, -2178.58], [-135.6, -2178.48], [-135.52, -2176.2], [-139.09, -2176.08], [-139.01, -2173.96], [-142.02, -2173.85], [-142.09, -2175.98], [-143.0, -2175.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-87.37, -2309.29], [-56.4, -2310.67], [-57.24, -2329.67], [-54.0, -2329.82], [-53.51, -2318.86], [-30.36, -2319.89], [-30.62, -2325.63], [-16.22, -2326.27], [-16.48, -2332.07], [-15.01, -2332.13], [-15.34, -2339.41], [-16.84, -2339.35], [-17.12, -2345.5], [-54.79, -2343.8], [-54.55, -2338.63], [-57.64, -2338.5], [-59.66, -2383.54], [-90.64, -2382.16], [-87.37, -2309.29]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2021}}, {"shape": {"outer": [[-72.2, -2162.14], [-74.05, -2163.29], [-75.81, -2161.04], [-78.32, -2159.33], [-80.59, -2158.35], [-82.71, -2157.79], [-82.55, -2155.89], [-110.81, -2154.54], [-111.44, -2168.74], [-102.27, -2169.0], [-102.38, -2173.08], [-91.9, -2173.52], [-89.07, -2175.8], [-86.33, -2177.4], [-83.0, -2178.65], [-77.38, -2187.59], [-74.11, -2185.54], [-69.15, -2193.43], [-67.5, -2192.39], [-66.7, -2193.66], [-58.24, -2188.38], [-59.04, -2187.11], [-57.22, -2185.98], [-72.2, -2162.14]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.652, "pop": 0, "jobs": 652}}, {"shape": {"outer": [[-148.08, -2319.11], [-148.45, -2329.28], [-137.57, -2329.66], [-137.21, -2319.49], [-148.08, -2319.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-129.77, -2315.8], [-121.97, -2316.08], [-122.24, -2323.8], [-130.05, -2323.53], [-129.77, -2315.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-127.94, -2172.46], [-128.36, -2184.6], [-119.52, -2184.91], [-119.09, -2172.77], [-127.94, -2172.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-144.96, -2298.21], [-145.56, -2309.87], [-136.29, -2310.35], [-135.68, -2298.69], [-144.96, -2298.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-130.24, -2272.44], [-124.37, -2272.66], [-124.59, -2278.37], [-130.45, -2278.15], [-130.24, -2272.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-129.6, -2219.31], [-122.48, -2219.61], [-122.8, -2227.23], [-129.92, -2226.92], [-129.6, -2219.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-24.61, -2361.64], [-25.75, -2387.96], [11.04, -2389.55], [12.18, -2363.23], [-24.61, -2361.64]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.621, "pop": 0, "jobs": 621}}, {"shape": {"outer": [[-149.97, -2370.42], [-150.26, -2378.29], [-136.66, -2378.79], [-136.38, -2370.91], [-149.97, -2370.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-40.1, -2551.86], [-51.97, -2536.18], [-2.38, -2498.92], [9.5, -2514.6], [-40.1, -2551.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.781, "pop": 0, "jobs": 781}}, {"shape": {"outer": [[-141.63, -2133.61], [-142.13, -2144.52], [-131.16, -2145.02], [-130.75, -2136.13], [-135.78, -2135.89], [-135.68, -2133.87], [-141.63, -2133.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-134.62, -2249.64], [-139.01, -2249.45], [-139.09, -2251.4], [-142.88, -2251.24], [-143.26, -2260.12], [-135.09, -2260.48], [-134.62, -2249.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-130.82, -2153.11], [-126.95, -2153.28], [-127.08, -2156.06], [-125.87, -2156.12], [-126.13, -2161.65], [-131.2, -2161.43], [-130.82, -2153.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-102.93, -2214.16], [-109.07, -2213.91], [-109.49, -2223.9], [-109.99, -2223.89], [-110.68, -2240.18], [-104.04, -2240.46], [-102.93, -2214.16]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.109, "pop": 0, "jobs": 109}}, {"shape": {"outer": [[-8.63, -2421.52], [-9.05, -2431.91], [-14.9, -2432.5], [-13.44, -2445.44], [22.96, -2442.03], [21.78, -2432.37], [27.56, -2432.61], [27.95, -2422.99], [-8.63, -2421.52]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.506, "pop": 0, "jobs": 506}}, {"shape": {"outer": [[-149.79, -2358.31], [-149.99, -2366.9], [-136.36, -2367.23], [-136.28, -2364.18], [-135.14, -2364.22], [-135.05, -2360.69], [-136.2, -2360.65], [-136.15, -2358.64], [-149.79, -2358.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-146.55, -2281.07], [-146.9, -2289.32], [-134.94, -2289.81], [-134.9, -2288.86], [-132.11, -2288.98], [-131.89, -2283.7], [-134.68, -2283.58], [-134.6, -2281.57], [-146.55, -2281.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-143.43, -2263.89], [-143.73, -2271.53], [-131.54, -2271.99], [-131.26, -2264.35], [-134.54, -2264.23], [-134.51, -2263.47], [-139.64, -2263.28], [-139.67, -2264.04], [-143.43, -2263.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-127.48, -2133.53], [-118.52, -2133.8], [-118.92, -2147.34], [-121.16, -2147.28], [-121.21, -2148.86], [-124.98, -2148.75], [-124.93, -2147.17], [-127.88, -2147.08], [-127.48, -2133.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-143.05, -2223.49], [-133.23, -2223.88], [-133.89, -2240.68], [-139.03, -2240.48], [-139.14, -2243.42], [-144.55, -2243.21], [-144.26, -2236.03], [-143.55, -2236.06], [-143.05, -2223.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-280.66, -2318.1], [-280.76, -2321.1], [-279.66, -2321.14], [-279.86, -2326.84], [-274.81, -2327.0], [-274.74, -2324.84], [-270.42, -2324.98], [-270.49, -2327.15], [-264.12, -2327.36], [-263.84, -2318.66], [-280.66, -2318.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-287.71, -2406.11], [-288.24, -2421.22], [-282.86, -2421.4], [-282.77, -2418.67], [-279.63, -2418.78], [-279.19, -2406.4], [-282.48, -2406.3], [-282.41, -2404.27], [-287.33, -2404.09], [-287.39, -2406.13], [-287.71, -2406.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-362.54, -2400.99], [-362.81, -2406.07], [-363.17, -2406.05], [-363.44, -2411.4], [-358.31, -2411.66], [-358.27, -2410.9], [-353.55, -2411.13], [-353.02, -2400.84], [-356.46, -2400.66], [-356.5, -2401.29], [-362.54, -2400.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-186.68, -2320.55], [-187.01, -2328.6], [-180.72, -2328.86], [-180.79, -2330.59], [-172.73, -2330.92], [-172.56, -2326.69], [-174.11, -2326.62], [-173.9, -2321.54], [-181.49, -2321.23], [-181.47, -2320.77], [-186.68, -2320.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-376.8, -2402.3], [-377.22, -2411.46], [-376.63, -2411.49], [-376.76, -2414.21], [-372.34, -2414.41], [-372.26, -2412.81], [-367.94, -2413.02], [-367.44, -2402.11], [-370.45, -2401.98], [-370.47, -2402.6], [-376.8, -2402.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-310.7, -2402.55], [-311.2, -2412.67], [-303.74, -2413.04], [-303.56, -2409.28], [-302.74, -2409.31], [-302.43, -2402.96], [-304.46, -2402.86], [-304.38, -2401.26], [-307.76, -2401.09], [-307.84, -2402.7], [-310.7, -2402.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-345.74, -2356.37], [-345.99, -2362.51], [-344.68, -2362.57], [-345.02, -2371.38], [-337.16, -2371.69], [-336.96, -2366.74], [-336.52, -2366.75], [-336.3, -2361.1], [-338.93, -2360.99], [-338.75, -2356.64], [-345.74, -2356.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-206.52, -2370.25], [-207.13, -2382.59], [-178.31, -2384.01], [-178.27, -2383.18], [-176.63, -2383.26], [-176.49, -2380.45], [-174.61, -2380.55], [-174.38, -2375.86], [-176.26, -2375.77], [-176.06, -2371.76], [-206.52, -2370.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.308, "pop": 154, "jobs": 0}}, {"shape": {"outer": [[-281.47, -2305.6], [-281.73, -2312.07], [-279.74, -2312.15], [-279.79, -2313.18], [-276.22, -2313.33], [-276.27, -2314.48], [-269.22, -2314.77], [-269.09, -2311.66], [-267.44, -2311.73], [-267.33, -2309.01], [-268.97, -2308.94], [-268.86, -2306.12], [-281.47, -2305.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-310.24, -2360.27], [-310.71, -2371.61], [-308.65, -2371.7], [-308.71, -2373.13], [-300.38, -2373.47], [-300.18, -2368.42], [-301.93, -2368.34], [-301.62, -2360.67], [-302.02, -2360.66], [-301.89, -2357.52], [-309.46, -2357.22], [-309.59, -2360.29], [-310.24, -2360.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-279.89, -2329.0], [-279.92, -2329.66], [-282.23, -2329.56], [-282.54, -2336.69], [-280.22, -2336.79], [-280.26, -2337.45], [-268.74, -2337.95], [-268.71, -2337.27], [-267.03, -2337.34], [-266.88, -2333.81], [-268.55, -2333.73], [-268.37, -2329.5], [-279.89, -2329.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-238.92, -2410.16], [-239.25, -2417.29], [-236.55, -2417.41], [-236.68, -2420.27], [-232.53, -2420.47], [-232.4, -2417.6], [-229.71, -2417.74], [-229.61, -2415.95], [-224.59, -2416.18], [-224.31, -2410.15], [-229.52, -2409.91], [-229.56, -2410.59], [-238.92, -2410.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-280.33, -2341.17], [-280.35, -2341.65], [-282.74, -2341.55], [-283.05, -2348.92], [-280.66, -2349.02], [-280.69, -2349.78], [-269.64, -2350.24], [-269.61, -2349.36], [-267.57, -2349.44], [-267.29, -2342.85], [-269.33, -2342.77], [-269.28, -2341.63], [-280.33, -2341.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-202.04, -2483.88], [-202.41, -2491.53], [-197.89, -2491.75], [-197.86, -2490.99], [-196.05, -2491.08], [-196.14, -2492.77], [-184.88, -2493.31], [-184.74, -2490.49], [-183.43, -2490.55], [-183.15, -2484.72], [-195.7, -2484.12], [-195.81, -2486.24], [-197.82, -2486.15], [-197.73, -2484.09], [-202.04, -2483.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-335.28, -2360.94], [-335.47, -2365.72], [-334.92, -2365.74], [-335.08, -2369.94], [-333.06, -2370.0], [-333.12, -2371.43], [-327.99, -2371.62], [-327.82, -2367.26], [-326.94, -2367.3], [-326.67, -2360.07], [-327.08, -2360.06], [-326.99, -2357.63], [-334.17, -2357.35], [-334.31, -2360.97], [-335.28, -2360.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-281.94, -2362.7], [-281.9, -2361.95], [-284.18, -2361.85], [-283.92, -2356.11], [-283.33, -2356.14], [-283.27, -2354.75], [-281.57, -2354.82], [-281.49, -2353.08], [-268.21, -2353.68], [-268.35, -2356.83], [-265.46, -2356.97], [-265.74, -2363.08], [-268.63, -2362.96], [-268.64, -2363.31], [-281.94, -2362.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-397.91, -2399.79], [-405.55, -2399.46], [-405.66, -2401.73], [-406.25, -2401.7], [-406.8, -2414.37], [-403.96, -2414.49], [-404.06, -2416.83], [-399.8, -2417.01], [-399.7, -2414.67], [-397.81, -2414.75], [-397.69, -2411.91], [-396.75, -2411.95], [-396.52, -2406.68], [-397.46, -2406.64], [-397.27, -2402.24], [-398.01, -2402.21], [-397.91, -2399.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-322.15, -2344.63], [-322.39, -2351.3], [-329.7, -2351.04], [-329.46, -2344.37], [-322.15, -2344.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-218.59, -2411.66], [-218.82, -2421.04], [-211.82, -2421.2], [-211.6, -2411.83], [-218.59, -2411.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-268.17, -2296.34], [-268.46, -2302.73], [-282.22, -2302.13], [-281.93, -2295.72], [-268.17, -2296.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-398.16, -2420.07], [-398.45, -2424.88], [-391.69, -2425.29], [-391.4, -2420.48], [-398.16, -2420.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-209.26, -2447.45], [-209.46, -2452.86], [-202.35, -2453.11], [-202.16, -2447.69], [-209.26, -2447.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-333.85, -2327.68], [-334.13, -2333.92], [-326.97, -2334.23], [-326.7, -2327.99], [-333.85, -2327.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-191.25, -2443.67], [-191.66, -2451.34], [-182.38, -2451.84], [-181.97, -2444.17], [-191.25, -2443.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-313.21, -2328.22], [-313.52, -2335.29], [-321.78, -2334.93], [-321.46, -2327.87], [-313.21, -2328.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-262.81, -2333.57], [-263.05, -2340.49], [-255.47, -2340.76], [-255.22, -2333.84], [-262.81, -2333.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-385.19, -2425.23], [-389.45, -2425.11], [-389.32, -2420.49], [-385.06, -2420.61], [-385.19, -2425.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-218.31, -2354.44], [-222.93, -2354.23], [-223.21, -2360.32], [-218.59, -2360.53], [-218.31, -2354.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-197.93, -2421.84], [-198.23, -2428.3], [-192.45, -2428.58], [-192.14, -2422.12], [-197.93, -2421.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-267.44, -2431.13], [-267.86, -2438.04], [-260.98, -2438.45], [-260.57, -2431.55], [-267.44, -2431.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-339.53, -2428.77], [-344.86, -2428.64], [-345.05, -2435.72], [-339.71, -2435.85], [-339.53, -2428.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-286.18, -2440.63], [-279.0, -2440.99], [-279.38, -2448.66], [-286.56, -2448.3], [-286.18, -2440.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-322.22, -2360.58], [-315.2, -2361.15], [-316.29, -2374.46], [-323.31, -2373.89], [-322.22, -2360.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-310.28, -2342.62], [-310.51, -2347.62], [-304.12, -2347.91], [-303.9, -2342.91], [-310.28, -2342.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-309.81, -2430.27], [-309.99, -2434.79], [-303.27, -2435.06], [-303.08, -2430.54], [-309.81, -2430.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-215.79, -2360.01], [-208.15, -2360.34], [-208.94, -2378.57], [-216.58, -2378.24], [-215.79, -2360.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-280.4, -2282.49], [-280.75, -2291.32], [-269.44, -2291.76], [-269.1, -2282.91], [-280.4, -2282.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-236.45, -2456.26], [-236.67, -2462.32], [-229.57, -2462.56], [-229.36, -2456.51], [-236.45, -2456.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-206.68, -2458.57], [-206.88, -2464.24], [-199.62, -2464.51], [-199.41, -2458.83], [-206.68, -2458.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-337.78, -2428.21], [-332.28, -2428.46], [-332.58, -2435.31], [-338.08, -2435.07], [-337.78, -2428.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-265.43, -2366.39], [-265.76, -2373.94], [-258.06, -2374.27], [-257.74, -2366.72], [-265.43, -2366.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-353.34, -2348.78], [-353.06, -2343.96], [-347.6, -2344.28], [-347.88, -2349.1], [-353.34, -2348.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-272.37, -2439.33], [-272.57, -2443.16], [-265.47, -2443.53], [-265.28, -2439.7], [-272.37, -2439.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-227.09, -2455.22], [-227.44, -2462.58], [-220.17, -2462.93], [-219.83, -2455.57], [-227.09, -2455.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-258.35, -2305.06], [-258.54, -2309.25], [-252.43, -2309.51], [-252.24, -2305.33], [-258.35, -2305.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-192.05, -2455.77], [-192.47, -2463.68], [-182.85, -2464.16], [-182.45, -2456.27], [-192.05, -2455.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-315.57, -2402.55], [-322.29, -2402.32], [-322.66, -2413.41], [-315.94, -2413.64], [-315.57, -2402.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-284.6, -2367.45], [-284.99, -2376.7], [-270.52, -2377.32], [-270.12, -2368.08], [-284.6, -2367.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-183.0, -2334.39], [-183.23, -2340.81], [-174.96, -2341.11], [-174.72, -2334.69], [-183.0, -2334.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-226.14, -2466.3], [-226.59, -2477.34], [-214.31, -2477.85], [-213.85, -2466.8], [-226.14, -2466.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-380.09, -2403.47], [-388.22, -2403.28], [-388.47, -2414.02], [-380.34, -2414.21], [-380.09, -2403.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-192.65, -2314.0], [-192.79, -2318.63], [-197.59, -2318.5], [-197.46, -2313.86], [-192.65, -2314.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-263.18, -2358.44], [-263.43, -2365.27], [-256.17, -2365.53], [-255.93, -2358.71], [-263.18, -2358.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-232.1, -2360.75], [-239.99, -2360.46], [-240.49, -2374.55], [-232.61, -2374.84], [-232.1, -2360.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-371.61, -2422.9], [-366.69, -2423.1], [-366.94, -2429.63], [-371.87, -2429.43], [-371.61, -2422.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-320.9, -2345.15], [-316.37, -2345.28], [-316.55, -2351.44], [-321.08, -2351.31], [-320.9, -2345.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-189.55, -2434.66], [-189.79, -2441.37], [-183.46, -2441.6], [-183.21, -2434.9], [-189.55, -2434.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-228.47, -2369.83], [-228.8, -2377.27], [-221.42, -2377.59], [-221.11, -2370.15], [-228.47, -2369.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-194.32, -2469.98], [-194.6, -2478.49], [-183.13, -2478.87], [-182.85, -2470.36], [-194.32, -2469.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-309.32, -2328.11], [-301.36, -2328.38], [-301.69, -2337.95], [-309.65, -2337.68], [-309.32, -2328.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-345.2, -2307.65], [-335.11, -2308.02], [-335.55, -2320.08], [-339.25, -2319.95], [-339.3, -2321.48], [-345.69, -2321.25], [-345.2, -2307.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-306.15, -2306.77], [-300.03, -2307.04], [-300.66, -2321.6], [-307.24, -2321.32], [-306.72, -2309.41], [-306.27, -2309.43], [-306.15, -2306.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-358.17, -2360.0], [-347.73, -2360.52], [-348.17, -2369.14], [-350.02, -2369.06], [-350.22, -2372.83], [-358.79, -2372.4], [-358.17, -2360.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-286.34, -2451.69], [-286.83, -2459.24], [-280.19, -2459.67], [-280.27, -2460.83], [-260.12, -2462.14], [-259.56, -2453.42], [-286.34, -2451.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-231.24, -2285.53], [-231.33, -2288.5], [-232.7, -2288.47], [-232.78, -2291.51], [-220.94, -2291.87], [-220.76, -2285.85], [-231.24, -2285.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-336.76, -2401.09], [-337.18, -2412.63], [-326.9, -2413.02], [-326.49, -2401.89], [-331.4, -2401.71], [-331.38, -2401.28], [-336.76, -2401.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-241.41, -2463.46], [-241.75, -2471.38], [-238.31, -2471.52], [-238.37, -2472.9], [-230.04, -2473.24], [-229.64, -2463.96], [-241.41, -2463.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-232.48, -2319.42], [-232.52, -2320.29], [-234.5, -2320.2], [-234.71, -2324.93], [-232.73, -2325.02], [-232.86, -2327.9], [-223.03, -2328.33], [-222.65, -2319.85], [-232.48, -2319.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-346.04, -2399.6], [-337.86, -2399.9], [-337.94, -2402.01], [-337.57, -2402.03], [-338.0, -2414.0], [-346.9, -2413.68], [-346.47, -2401.71], [-346.12, -2401.72], [-346.04, -2399.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-320.46, -2307.13], [-321.17, -2322.82], [-312.23, -2323.22], [-312.06, -2319.31], [-311.33, -2319.34], [-310.86, -2308.95], [-314.79, -2308.77], [-314.73, -2307.4], [-320.46, -2307.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-271.82, -2406.56], [-272.31, -2418.2], [-269.15, -2418.34], [-269.21, -2419.68], [-263.91, -2419.91], [-263.29, -2404.82], [-271.15, -2404.49], [-271.24, -2406.58], [-271.82, -2406.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-236.2, -2331.11], [-236.53, -2339.97], [-225.12, -2340.4], [-225.05, -2338.72], [-220.84, -2338.87], [-220.62, -2333.11], [-224.84, -2332.96], [-224.79, -2331.54], [-236.2, -2331.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-188.11, -2413.19], [-188.41, -2420.03], [-174.85, -2420.62], [-174.7, -2417.03], [-176.85, -2416.94], [-176.67, -2412.75], [-185.08, -2412.39], [-185.12, -2413.32], [-188.11, -2413.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-180.51, -2288.86], [-172.5, -2289.14], [-172.53, -2289.74], [-170.02, -2289.83], [-170.26, -2296.95], [-172.77, -2296.86], [-172.8, -2297.65], [-180.81, -2297.37], [-180.51, -2288.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-357.04, -2306.28], [-357.65, -2322.02], [-353.79, -2322.17], [-353.69, -2319.71], [-351.3, -2319.8], [-351.26, -2318.59], [-349.21, -2318.67], [-348.74, -2306.59], [-357.04, -2306.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-208.49, -2428.13], [-207.24, -2428.19], [-207.15, -2426.35], [-204.31, -2426.48], [-204.4, -2428.33], [-198.89, -2428.58], [-199.45, -2440.38], [-209.05, -2439.93], [-208.49, -2428.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-182.89, -2301.49], [-183.12, -2309.31], [-181.15, -2309.37], [-181.24, -2312.58], [-175.4, -2312.75], [-175.31, -2309.54], [-173.29, -2309.59], [-173.06, -2301.76], [-182.89, -2301.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-330.39, -2309.54], [-330.74, -2317.89], [-322.93, -2318.22], [-322.58, -2309.87], [-323.78, -2309.82], [-323.69, -2307.68], [-329.44, -2307.43], [-329.52, -2309.58], [-330.39, -2309.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-199.4, -2010.17], [-210.06, -2009.76], [-210.29, -2015.33], [-207.11, -2015.45], [-207.28, -2019.62], [-199.79, -2019.92], [-199.66, -2016.81], [-198.18, -2016.86], [-198.05, -2013.5], [-199.53, -2013.44], [-199.4, -2010.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-320.22, -2165.44], [-320.38, -2169.35], [-321.08, -2169.32], [-321.43, -2177.89], [-311.09, -2178.31], [-310.87, -2173.22], [-309.88, -2173.26], [-309.62, -2167.2], [-313.34, -2167.04], [-313.29, -2165.74], [-320.22, -2165.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-262.58, -2214.0], [-263.2, -2229.69], [-258.17, -2229.9], [-257.97, -2224.91], [-253.18, -2225.1], [-252.75, -2214.39], [-255.65, -2214.28], [-255.6, -2213.08], [-258.87, -2212.95], [-258.92, -2214.15], [-262.58, -2214.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-166.42, -2172.58], [-160.63, -2172.74], [-160.69, -2174.87], [-159.86, -2174.89], [-160.11, -2183.54], [-170.16, -2183.25], [-169.97, -2176.78], [-167.08, -2176.86], [-167.03, -2174.84], [-166.48, -2174.86], [-166.42, -2172.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-248.01, -2172.76], [-248.34, -2181.19], [-245.41, -2181.3], [-245.44, -2182.29], [-242.39, -2182.42], [-242.34, -2181.44], [-239.62, -2181.55], [-239.17, -2170.8], [-243.16, -2170.64], [-243.26, -2172.95], [-248.01, -2172.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-348.44, -2160.38], [-348.6, -2163.96], [-349.92, -2163.9], [-350.44, -2175.38], [-347.9, -2175.5], [-347.94, -2176.55], [-341.73, -2176.83], [-341.49, -2171.34], [-335.44, -2171.61], [-334.96, -2160.97], [-348.44, -2160.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-353.25, -2212.03], [-353.89, -2227.98], [-348.76, -2228.18], [-348.67, -2225.83], [-344.46, -2225.99], [-343.92, -2212.4], [-344.62, -2212.37], [-344.52, -2209.9], [-352.39, -2209.58], [-352.49, -2212.06], [-353.25, -2212.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-231.47, -2215.32], [-232.18, -2231.47], [-225.64, -2231.76], [-225.49, -2228.52], [-220.88, -2228.73], [-220.31, -2215.82], [-223.72, -2215.67], [-223.65, -2214.12], [-227.52, -2213.95], [-227.59, -2215.5], [-231.47, -2215.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-180.75, -2174.41], [-181.05, -2183.1], [-177.7, -2183.22], [-177.76, -2184.77], [-174.59, -2184.87], [-174.54, -2183.33], [-173.79, -2183.35], [-173.48, -2174.66], [-175.76, -2174.58], [-175.66, -2171.51], [-180.02, -2171.36], [-180.13, -2174.42], [-180.75, -2174.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-294.45, -2212.34], [-303.07, -2212.03], [-303.25, -2216.99], [-305.73, -2216.9], [-305.69, -2215.83], [-311.24, -2215.63], [-311.53, -2223.69], [-305.99, -2223.9], [-305.94, -2222.34], [-303.45, -2222.43], [-303.58, -2225.84], [-294.95, -2226.15], [-294.45, -2212.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-265.54, -2080.18], [-265.56, -2080.78], [-267.21, -2080.71], [-267.38, -2085.12], [-265.74, -2085.19], [-265.76, -2085.84], [-258.0, -2086.15], [-258.05, -2087.3], [-250.7, -2087.6], [-250.57, -2084.51], [-247.78, -2084.62], [-247.63, -2080.9], [-265.54, -2080.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-211.47, -2023.29], [-211.84, -2032.18], [-208.23, -2032.34], [-208.25, -2033.05], [-203.89, -2033.24], [-203.86, -2032.52], [-200.05, -2032.68], [-200.01, -2031.73], [-197.35, -2031.83], [-197.04, -2024.65], [-199.71, -2024.54], [-199.68, -2023.78], [-211.47, -2023.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-201.08, -2069.43], [-210.38, -2068.94], [-210.44, -2070.21], [-214.24, -2070.0], [-214.54, -2075.6], [-210.74, -2075.8], [-210.85, -2077.8], [-201.55, -2078.3], [-201.43, -2076.05], [-200.0, -2076.14], [-199.81, -2072.49], [-201.24, -2072.41], [-201.08, -2069.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-265.93, -2067.02], [-255.08, -2067.38], [-255.16, -2069.47], [-253.44, -2069.53], [-253.62, -2074.58], [-255.33, -2074.52], [-255.4, -2076.91], [-266.25, -2076.55], [-266.2, -2074.94], [-268.51, -2074.85], [-268.27, -2067.79], [-265.96, -2067.86], [-265.93, -2067.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-361.91, -2016.83], [-361.93, -2017.58], [-363.44, -2017.54], [-363.66, -2024.09], [-360.91, -2024.18], [-360.94, -2025.07], [-351.33, -2025.39], [-351.25, -2022.85], [-348.33, -2022.94], [-348.15, -2017.55], [-351.04, -2017.46], [-351.0, -2015.89], [-356.89, -2015.69], [-356.94, -2016.98], [-361.91, -2016.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-171.48, -2260.6], [-179.18, -2260.38], [-179.21, -2261.41], [-181.67, -2261.34], [-181.73, -2263.41], [-183.86, -2263.35], [-184.0, -2268.03], [-179.4, -2268.16], [-179.43, -2269.2], [-171.74, -2269.41], [-171.66, -2266.75], [-169.36, -2266.81], [-169.27, -2263.44], [-171.56, -2263.37], [-171.48, -2260.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-311.92, -2069.38], [-312.29, -2079.13], [-304.82, -2079.42], [-304.94, -2082.4], [-300.47, -2082.59], [-300.35, -2079.59], [-295.15, -2079.78], [-294.84, -2071.98], [-298.5, -2071.83], [-298.43, -2069.91], [-303.9, -2069.7], [-303.76, -2066.44], [-310.59, -2066.18], [-310.72, -2069.42], [-311.92, -2069.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-309.34, -2122.82], [-309.78, -2130.75], [-299.8, -2131.31], [-299.35, -2123.37], [-309.34, -2122.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-325.9, -2232.55], [-326.05, -2240.29], [-318.48, -2240.43], [-318.31, -2232.7], [-325.9, -2232.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-344.92, -2062.02], [-345.11, -2066.26], [-338.39, -2066.55], [-338.2, -2062.32], [-344.92, -2062.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-313.75, -2133.86], [-314.18, -2142.54], [-301.58, -2143.16], [-301.14, -2134.49], [-313.75, -2133.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-348.81, -2040.78], [-348.91, -2045.72], [-341.32, -2045.88], [-341.22, -2040.94], [-348.81, -2040.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-321.72, -2141.26], [-321.98, -2146.16], [-315.08, -2146.53], [-314.82, -2141.63], [-321.72, -2141.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-267.9, -2042.37], [-268.16, -2051.46], [-253.31, -2051.88], [-253.05, -2042.79], [-267.9, -2042.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-234.29, -2175.0], [-234.58, -2183.13], [-226.13, -2183.44], [-225.83, -2175.3], [-234.29, -2175.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-330.54, -2084.43], [-330.72, -2088.26], [-324.5, -2088.54], [-324.33, -2084.71], [-330.54, -2084.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-195.73, -2215.69], [-196.07, -2224.15], [-181.88, -2224.71], [-181.54, -2216.25], [-195.73, -2215.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-270.48, -2142.34], [-270.74, -2148.83], [-261.95, -2149.19], [-261.68, -2142.7], [-270.48, -2142.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-218.88, -2086.08], [-218.73, -2082.02], [-224.73, -2081.79], [-224.89, -2085.85], [-218.88, -2086.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-250.76, -2040.64], [-250.96, -2045.77], [-244.03, -2046.05], [-243.83, -2040.92], [-250.76, -2040.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-233.61, -2245.92], [-233.89, -2252.94], [-221.39, -2253.43], [-221.11, -2246.4], [-233.61, -2245.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-178.21, -2249.19], [-171.01, -2249.44], [-171.29, -2257.17], [-178.49, -2256.92], [-178.21, -2249.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-214.48, -2168.32], [-210.82, -2168.43], [-210.98, -2173.93], [-214.64, -2173.82], [-214.48, -2168.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-260.1, -2169.33], [-251.55, -2169.7], [-252.04, -2180.9], [-260.6, -2180.53], [-260.1, -2169.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-222.1, -2174.91], [-222.35, -2183.73], [-214.38, -2183.95], [-214.13, -2175.14], [-222.1, -2174.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-265.69, -2181.44], [-272.48, -2181.11], [-272.03, -2171.49], [-265.24, -2171.8], [-265.69, -2181.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-227.73, -2097.59], [-227.94, -2104.72], [-219.74, -2104.95], [-219.54, -2097.82], [-227.73, -2097.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-179.81, -2130.64], [-180.04, -2137.52], [-166.93, -2137.94], [-166.71, -2131.07], [-179.81, -2130.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-227.04, -2166.17], [-222.43, -2166.34], [-222.65, -2172.33], [-227.27, -2172.15], [-227.04, -2166.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-237.82, -2141.31], [-244.17, -2140.94], [-244.6, -2148.33], [-238.24, -2148.7], [-237.82, -2141.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-180.63, -2145.76], [-180.92, -2156.15], [-170.28, -2156.45], [-169.98, -2146.06], [-180.63, -2145.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-193.97, -2255.22], [-194.35, -2261.96], [-186.77, -2262.4], [-186.38, -2255.65], [-193.97, -2255.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-219.23, -1996.55], [-219.55, -2005.33], [-226.7, -2005.07], [-226.39, -1996.29], [-219.23, -1996.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-270.14, -2132.54], [-270.25, -2139.63], [-257.74, -2139.82], [-257.63, -2132.73], [-270.14, -2132.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-258.24, -2263.2], [-258.55, -2267.46], [-252.07, -2267.93], [-251.76, -2263.67], [-258.24, -2263.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-240.66, -2085.35], [-233.55, -2085.69], [-233.96, -2094.28], [-241.06, -2093.95], [-240.66, -2085.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-220.28, -2006.59], [-220.5, -2011.21], [-214.66, -2011.49], [-214.45, -2006.86], [-220.28, -2006.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-153.11, -2132.41], [-146.45, -2132.66], [-146.68, -2139.02], [-153.35, -2138.77], [-153.11, -2132.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-367.25, -2122.27], [-367.7, -2132.8], [-352.04, -2133.47], [-351.58, -2122.93], [-367.25, -2122.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-232.78, -2128.81], [-224.85, -2129.04], [-225.06, -2136.7], [-232.99, -2136.49], [-232.78, -2128.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-270.47, -2117.07], [-270.83, -2125.88], [-258.28, -2126.4], [-257.91, -2117.58], [-270.47, -2117.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-360.44, -1992.33], [-360.57, -1999.06], [-351.37, -1999.23], [-351.23, -1992.5], [-360.44, -1992.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-344.12, -2130.73], [-344.43, -2137.18], [-337.65, -2137.49], [-337.36, -2131.04], [-344.12, -2130.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-351.83, -2056.71], [-352.08, -2061.04], [-346.19, -2061.38], [-345.94, -2057.03], [-351.83, -2056.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-361.64, -2253.07], [-356.92, -2253.29], [-357.3, -2261.48], [-362.02, -2261.27], [-361.64, -2253.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-279.77, -2269.43], [-280.15, -2278.12], [-270.59, -2278.54], [-270.22, -2269.84], [-279.77, -2269.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-232.39, -2119.13], [-227.04, -2119.28], [-227.25, -2126.79], [-232.6, -2126.64], [-232.39, -2119.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-167.4, -2216.93], [-174.86, -2216.61], [-175.18, -2224.0], [-167.72, -2224.33], [-167.4, -2216.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-353.65, -2256.92], [-356.88, -2256.78], [-357.24, -2265.3], [-354.0, -2265.43], [-353.65, -2256.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-156.0, -2175.38], [-149.01, -2175.58], [-149.25, -2184.12], [-156.24, -2183.92], [-156.0, -2175.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-349.34, -2231.82], [-349.53, -2237.97], [-342.32, -2238.19], [-342.13, -2232.04], [-349.34, -2231.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-342.69, -2092.47], [-342.89, -2096.24], [-333.55, -2096.72], [-333.35, -2092.95], [-342.69, -2092.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-325.24, -2248.53], [-325.42, -2252.82], [-319.53, -2253.08], [-319.34, -2248.79], [-325.24, -2248.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-255.94, -2003.16], [-265.1, -2002.56], [-265.88, -2014.46], [-256.72, -2015.06], [-255.94, -2003.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-258.29, -2245.88], [-258.48, -2250.08], [-251.05, -2250.4], [-250.87, -2246.2], [-258.29, -2245.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-149.82, -2167.82], [-145.62, -2167.94], [-145.79, -2173.81], [-149.99, -2173.69], [-149.82, -2167.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-311.44, -2106.65], [-311.83, -2115.77], [-300.05, -2116.28], [-299.66, -2107.14], [-311.44, -2106.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-269.69, -2230.87], [-269.83, -2234.34], [-278.02, -2234.0], [-277.88, -2230.54], [-269.69, -2230.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-214.88, -2131.93], [-215.15, -2139.18], [-201.44, -2139.69], [-201.18, -2132.44], [-214.88, -2131.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-181.73, -2272.94], [-182.11, -2280.57], [-169.72, -2281.19], [-169.34, -2273.56], [-181.73, -2272.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-320.52, -2024.1], [-320.64, -2028.35], [-314.58, -2028.52], [-314.46, -2024.27], [-320.52, -2024.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-346.14, -2010.7], [-346.27, -2015.66], [-338.13, -2015.87], [-338.0, -2010.91], [-346.14, -2010.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-257.42, -2251.15], [-257.64, -2255.18], [-250.65, -2255.55], [-250.43, -2251.53], [-257.42, -2251.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-366.95, -2138.45], [-367.25, -2147.64], [-355.68, -2148.03], [-355.38, -2138.83], [-366.95, -2138.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-218.39, -2230.24], [-211.93, -2230.53], [-212.23, -2237.28], [-218.69, -2236.98], [-218.39, -2230.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-233.02, -2149.01], [-225.56, -2149.27], [-225.84, -2157.49], [-233.31, -2157.22], [-233.02, -2149.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-210.14, -2159.73], [-210.28, -2163.29], [-204.55, -2163.5], [-204.4, -2159.95], [-210.14, -2159.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-232.84, -2261.52], [-233.2, -2268.95], [-222.89, -2269.46], [-222.52, -2262.04], [-232.84, -2261.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-204.29, -2215.06], [-212.77, -2214.65], [-213.3, -2225.75], [-204.83, -2226.16], [-204.29, -2215.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-372.59, -2259.67], [-372.78, -2264.1], [-376.17, -2263.95], [-375.97, -2259.52], [-372.59, -2259.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[-338.25, -2251.3], [-332.02, -2251.51], [-332.28, -2259.29], [-338.51, -2259.08], [-338.25, -2251.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-350.13, -2146.77], [-350.35, -2152.56], [-343.85, -2152.8], [-343.64, -2147.01], [-350.13, -2146.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-218.98, -2031.89], [-218.99, -2035.24], [-224.89, -2035.23], [-224.88, -2031.89], [-218.98, -2031.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-219.84, -2077.74], [-220.0, -2081.38], [-214.26, -2081.65], [-214.09, -2078.02], [-219.84, -2077.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-213.73, -2250.74], [-207.25, -2251.03], [-207.54, -2257.5], [-214.02, -2257.21], [-213.73, -2250.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-257.3, -2230.96], [-251.14, -2231.18], [-251.34, -2236.95], [-257.51, -2236.73], [-257.3, -2230.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-209.71, -2175.32], [-202.33, -2175.73], [-202.78, -2183.94], [-210.16, -2183.53], [-209.71, -2175.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-363.16, -2071.51], [-362.88, -2063.63], [-351.82, -2064.02], [-351.84, -2064.46], [-347.22, -2064.63], [-347.49, -2072.08], [-363.16, -2071.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-369.61, -2262.7], [-361.32, -2263.01], [-361.83, -2276.4], [-367.06, -2276.21], [-366.97, -2273.91], [-370.03, -2273.8], [-369.61, -2262.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-201.04, -2056.64], [-201.26, -2060.92], [-200.33, -2060.97], [-200.46, -2063.52], [-213.51, -2062.85], [-213.16, -2056.02], [-201.04, -2056.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-216.13, -1983.56], [-216.58, -1994.39], [-210.93, -1994.62], [-211.01, -1996.72], [-204.28, -1997.0], [-203.74, -1984.07], [-216.13, -1983.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-215.73, -2101.47], [-215.91, -2106.74], [-219.78, -2106.62], [-219.93, -2111.26], [-202.88, -2111.82], [-202.55, -2101.9], [-215.73, -2101.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-268.24, -2021.67], [-268.75, -2031.41], [-262.29, -2031.74], [-262.2, -2030.04], [-257.04, -2030.3], [-256.62, -2022.27], [-268.24, -2021.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-365.92, -2093.74], [-366.41, -2104.08], [-360.88, -2104.34], [-360.76, -2101.63], [-356.84, -2101.81], [-356.48, -2094.17], [-365.92, -2093.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-277.73, -2245.22], [-264.97, -2245.74], [-265.17, -2250.51], [-267.68, -2250.4], [-267.85, -2254.61], [-278.1, -2254.19], [-277.73, -2245.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-269.25, -2214.09], [-276.75, -2213.76], [-277.2, -2223.59], [-267.6, -2224.03], [-267.28, -2217.06], [-269.38, -2216.97], [-269.25, -2214.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-306.62, -2029.45], [-307.04, -2040.44], [-295.14, -2040.89], [-294.65, -2027.91], [-300.01, -2027.72], [-300.08, -2029.7], [-306.62, -2029.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-265.67, -2104.03], [-265.71, -2105.11], [-269.01, -2104.98], [-269.3, -2112.41], [-256.57, -2112.92], [-256.23, -2104.41], [-265.67, -2104.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-329.59, -2210.54], [-330.38, -2226.32], [-321.62, -2226.75], [-321.46, -2223.51], [-322.41, -2223.46], [-321.8, -2210.93], [-329.59, -2210.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-354.09, -2266.57], [-354.5, -2276.45], [-352.51, -2276.53], [-352.54, -2277.43], [-345.96, -2277.71], [-345.38, -2263.68], [-349.7, -2263.5], [-349.83, -2266.75], [-354.09, -2266.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-340.33, -2212.83], [-340.72, -2222.04], [-332.19, -2222.38], [-331.82, -2213.18], [-332.42, -2213.15], [-332.32, -2210.79], [-339.4, -2210.51], [-339.49, -2212.86], [-340.33, -2212.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-212.14, -2039.22], [-212.5, -2048.65], [-200.54, -2049.11], [-200.47, -2047.28], [-198.07, -2047.37], [-197.84, -2041.01], [-200.23, -2040.92], [-200.19, -2039.67], [-212.14, -2039.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-263.81, -1976.82], [-258.88, -1976.96], [-258.96, -1979.68], [-253.71, -1979.83], [-253.93, -1987.29], [-263.17, -1987.02], [-263.1, -1984.84], [-264.05, -1984.81], [-263.81, -1976.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-297.02, -2262.42], [-305.55, -2262.05], [-306.19, -2277.07], [-305.26, -2277.11], [-305.38, -2279.87], [-298.99, -2280.15], [-298.87, -2277.38], [-297.67, -2277.44], [-297.02, -2262.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-362.04, -2031.14], [-362.19, -2034.74], [-363.87, -2034.67], [-364.05, -2039.18], [-350.45, -2039.75], [-350.28, -2035.83], [-354.02, -2035.67], [-353.85, -2031.49], [-362.04, -2031.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-342.18, -2266.69], [-342.56, -2277.83], [-340.2, -2277.91], [-340.23, -2278.72], [-337.29, -2278.82], [-337.22, -2277.13], [-332.93, -2277.28], [-332.58, -2267.02], [-342.18, -2266.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-368.65, -2161.44], [-369.4, -2175.77], [-360.96, -2176.21], [-360.2, -2161.88], [-361.33, -2161.82], [-361.15, -2158.3], [-367.32, -2157.96], [-367.5, -2161.49], [-368.65, -2161.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-210.91, -2084.4], [-211.25, -2093.2], [-201.1, -2093.59], [-201.07, -2092.9], [-199.0, -2092.98], [-198.75, -2086.46], [-200.81, -2086.38], [-200.75, -2084.8], [-210.91, -2084.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-213.37, -2115.09], [-202.29, -2115.48], [-202.62, -2125.21], [-213.7, -2124.83], [-213.66, -2123.59], [-217.61, -2123.45], [-217.35, -2115.84], [-213.4, -2115.97], [-213.37, -2115.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-316.84, -2148.36], [-316.98, -2151.04], [-320.76, -2150.85], [-321.03, -2156.4], [-317.24, -2156.59], [-317.32, -2158.31], [-302.97, -2158.99], [-302.49, -2149.05], [-316.84, -2148.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-370.5, -2210.85], [-370.96, -2220.82], [-365.77, -2221.07], [-365.92, -2224.31], [-360.57, -2224.57], [-360.42, -2221.31], [-359.54, -2221.36], [-359.08, -2211.38], [-370.5, -2210.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-212.31, -2147.32], [-212.55, -2155.09], [-203.87, -2155.34], [-203.86, -2155.03], [-201.82, -2155.1], [-201.6, -2147.97], [-203.64, -2147.9], [-203.63, -2147.58], [-212.31, -2147.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-231.25, -2273.11], [-231.52, -2280.42], [-214.18, -2281.07], [-213.98, -2275.73], [-208.11, -2275.95], [-207.94, -2271.35], [-219.3, -2270.93], [-219.4, -2273.55], [-231.25, -2273.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-354.53, -2109.16], [-354.75, -2114.17], [-353.24, -2114.24], [-353.39, -2118.05], [-354.91, -2117.98], [-354.99, -2119.92], [-367.34, -2119.41], [-366.87, -2108.63], [-354.53, -2109.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-330.33, -2270.23], [-330.68, -2278.47], [-328.89, -2278.54], [-328.96, -2280.4], [-324.17, -2280.61], [-324.09, -2278.74], [-321.88, -2278.83], [-321.54, -2270.6], [-330.33, -2270.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-362.44, -2047.15], [-362.75, -2054.77], [-353.56, -2055.15], [-353.52, -2054.09], [-351.06, -2054.19], [-350.95, -2051.26], [-353.4, -2051.16], [-353.25, -2047.52], [-362.44, -2047.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-359.51, -2001.86], [-350.22, -2002.12], [-350.51, -2012.2], [-359.8, -2011.93], [-359.72, -2009.42], [-360.82, -2009.39], [-360.72, -2006.03], [-359.63, -2006.06], [-359.51, -2001.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-363.95, -2078.08], [-364.37, -2088.3], [-351.46, -2088.84], [-351.4, -2087.32], [-349.51, -2087.39], [-349.28, -2081.85], [-351.17, -2081.78], [-351.04, -2078.61], [-363.95, -2078.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-278.58, -2257.44], [-278.87, -2265.64], [-266.48, -2266.1], [-266.41, -2264.32], [-261.24, -2264.51], [-261.07, -2260.17], [-266.26, -2259.97], [-266.18, -2257.9], [-278.58, -2257.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-307.67, -2090.23], [-307.77, -2093.03], [-308.91, -2092.98], [-309.04, -2096.47], [-307.9, -2096.51], [-308.02, -2099.73], [-295.51, -2100.19], [-295.16, -2090.68], [-307.67, -2090.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-309.67, -2053.03], [-309.78, -2056.05], [-315.95, -2055.82], [-316.2, -2062.37], [-305.62, -2062.78], [-305.57, -2061.33], [-294.7, -2061.75], [-294.38, -2053.62], [-309.67, -2053.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-307.86, -2268.87], [-315.12, -2268.66], [-315.36, -2276.88], [-314.59, -2276.9], [-314.66, -2279.45], [-309.09, -2279.61], [-309.02, -2277.06], [-308.09, -2277.09], [-307.86, -2268.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-246.33, -1975.97], [-246.86, -1987.4], [-237.14, -1987.86], [-236.66, -1977.61], [-239.34, -1977.49], [-239.31, -1976.87], [-242.49, -1976.72], [-242.46, -1976.15], [-246.33, -1975.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1450.19, -1553.46], [-1450.46, -1562.08], [-1437.13, -1562.5], [-1437.03, -1559.66], [-1434.87, -1559.73], [-1434.68, -1553.96], [-1440.36, -1553.78], [-1440.33, -1552.94], [-1445.69, -1552.78], [-1445.71, -1553.61], [-1450.19, -1553.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1451.66, -1747.93], [-1451.72, -1751.85], [-1454.46, -1751.8], [-1454.52, -1755.38], [-1441.84, -1755.61], [-1441.83, -1754.97], [-1438.99, -1755.03], [-1438.89, -1749.19], [-1441.73, -1749.14], [-1441.71, -1748.11], [-1451.66, -1747.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1449.08, -1449.71], [-1449.12, -1451.23], [-1451.54, -1451.18], [-1451.64, -1455.36], [-1449.22, -1455.42], [-1449.25, -1456.78], [-1448.31, -1456.8], [-1448.4, -1460.66], [-1436.73, -1460.94], [-1436.47, -1450.02], [-1449.08, -1449.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1534.71, -1275.08], [-1534.87, -1282.31], [-1532.98, -1282.36], [-1533.01, -1283.92], [-1526.85, -1284.05], [-1526.82, -1282.55], [-1521.5, -1282.67], [-1521.38, -1276.9], [-1526.69, -1276.79], [-1526.66, -1275.26], [-1534.71, -1275.08]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1447.23, -1780.43], [-1447.31, -1782.71], [-1451.45, -1782.56], [-1451.66, -1788.26], [-1447.53, -1788.41], [-1447.57, -1789.47], [-1442.83, -1789.65], [-1442.79, -1788.58], [-1434.92, -1788.87], [-1434.74, -1783.87], [-1435.55, -1783.84], [-1435.44, -1780.86], [-1447.23, -1780.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1446.0, -1384.29], [-1446.06, -1386.36], [-1448.9, -1386.27], [-1449.06, -1391.66], [-1446.22, -1391.74], [-1446.26, -1393.01], [-1435.01, -1393.33], [-1434.99, -1392.77], [-1432.58, -1392.84], [-1432.35, -1385.22], [-1435.1, -1385.15], [-1435.08, -1384.6], [-1446.0, -1384.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1456.13, -1464.77], [-1456.42, -1472.9], [-1445.23, -1473.3], [-1445.25, -1474.05], [-1441.18, -1474.19], [-1441.09, -1471.61], [-1438.72, -1471.7], [-1438.7, -1471.04], [-1435.51, -1471.15], [-1435.34, -1466.31], [-1438.53, -1466.2], [-1438.5, -1465.37], [-1441.17, -1465.29], [-1441.12, -1463.62], [-1443.41, -1463.54], [-1443.47, -1465.21], [-1456.13, -1464.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1464.55, -1852.93], [-1468.53, -1845.87], [-1454.14, -1837.84], [-1450.17, -1844.91], [-1464.55, -1852.93]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.085, "pop": 0, "jobs": 85}}, {"shape": {"outer": [[-1564.81, -1262.41], [-1555.38, -1262.7], [-1556.16, -1287.94], [-1565.59, -1287.65], [-1564.81, -1262.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-1456.47, -1780.41], [-1460.92, -1780.32], [-1461.03, -1785.82], [-1456.57, -1785.91], [-1456.47, -1780.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1457.51, -1708.07], [-1465.22, -1707.71], [-1465.64, -1716.79], [-1457.93, -1717.15], [-1457.51, -1708.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1533.82, -1292.42], [-1522.8, -1292.32], [-1522.74, -1299.34], [-1533.74, -1299.45], [-1533.82, -1292.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1453.95, -1688.73], [-1454.13, -1698.07], [-1442.33, -1698.3], [-1442.15, -1688.95], [-1453.95, -1688.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1546.88, -1292.54], [-1550.81, -1292.39], [-1551.06, -1299.36], [-1547.13, -1299.5], [-1546.88, -1292.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1439.87, -1626.32], [-1440.03, -1634.96], [-1455.05, -1634.69], [-1454.9, -1626.05], [-1439.87, -1626.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1449.2, -1528.33], [-1449.45, -1536.06], [-1437.0, -1536.47], [-1436.75, -1528.75], [-1449.2, -1528.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1464.73, -1778.87], [-1471.56, -1778.62], [-1471.8, -1785.22], [-1464.97, -1785.47], [-1464.73, -1778.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1494.97, -1641.98], [-1494.92, -1648.12], [-1484.49, -1648.04], [-1484.53, -1641.9], [-1494.97, -1641.98]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.041, "pop": 0, "jobs": 41}}, {"shape": {"outer": [[-1459.42, -1582.47], [-1468.21, -1582.2], [-1468.74, -1599.15], [-1459.94, -1599.43], [-1459.42, -1582.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-1463.74, -1661.64], [-1464.04, -1667.6], [-1470.15, -1667.3], [-1469.86, -1661.33], [-1463.74, -1661.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1460.02, -1453.93], [-1466.89, -1453.83], [-1467.12, -1462.49], [-1460.14, -1462.59], [-1460.02, -1453.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-1450.56, -1707.89], [-1451.04, -1718.78], [-1443.73, -1719.1], [-1443.25, -1708.21], [-1450.56, -1707.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1464.01, -1673.57], [-1464.13, -1677.66], [-1469.97, -1677.49], [-1469.85, -1673.4], [-1464.01, -1673.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1456.54, -1649.51], [-1456.93, -1658.02], [-1440.66, -1658.75], [-1440.28, -1650.24], [-1456.54, -1649.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1454.86, -1437.94], [-1463.68, -1437.78], [-1463.58, -1432.34], [-1454.76, -1432.5], [-1454.86, -1437.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1467.12, -1462.49], [-1460.14, -1462.59], [-1458.64, -1462.7], [-1458.91, -1473.68], [-1467.41, -1473.46], [-1467.12, -1462.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1464.93, -1386.06], [-1458.1, -1386.24], [-1458.32, -1394.35], [-1465.14, -1394.17], [-1464.93, -1386.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1437.54, -1577.29], [-1446.0, -1577.09], [-1446.29, -1589.17], [-1437.83, -1589.38], [-1437.54, -1577.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1480.66, -1569.8], [-1471.7, -1570.06], [-1472.15, -1585.62], [-1481.1, -1585.36], [-1480.66, -1569.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1463.51, -1856.78], [-1459.55, -1864.48], [-1451.67, -1860.46], [-1455.64, -1852.75], [-1463.51, -1856.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1482.66, -1750.47], [-1473.25, -1750.71], [-1473.56, -1763.71], [-1482.98, -1763.48], [-1482.66, -1750.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1554.94, -1673.04], [-1555.18, -1682.28], [-1528.25, -1683.01], [-1528.01, -1673.76], [-1554.94, -1673.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.2, "pop": 100, "jobs": 0}}, {"shape": {"outer": [[-1459.63, -1504.81], [-1466.61, -1504.69], [-1466.72, -1511.35], [-1459.74, -1511.47], [-1459.63, -1504.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1457.18, -1868.72], [-1452.65, -1876.88], [-1442.99, -1871.54], [-1447.53, -1863.39], [-1457.18, -1868.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1485.5, -1750.23], [-1493.09, -1750.02], [-1493.39, -1760.73], [-1485.8, -1760.95], [-1485.5, -1750.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1463.49, -1653.44], [-1470.44, -1653.19], [-1470.7, -1660.34], [-1463.75, -1660.59], [-1463.49, -1653.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-1452.23, -1515.89], [-1452.56, -1524.39], [-1437.01, -1525.0], [-1436.67, -1516.5], [-1452.23, -1515.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1447.66, -1415.39], [-1447.72, -1419.96], [-1444.13, -1420.02], [-1444.23, -1426.69], [-1436.02, -1426.81], [-1435.86, -1415.57], [-1447.66, -1415.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1453.73, -1760.41], [-1454.15, -1777.35], [-1438.97, -1777.73], [-1438.76, -1768.89], [-1445.09, -1768.73], [-1444.89, -1760.63], [-1453.73, -1760.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-1474.03, -1383.88], [-1468.67, -1383.96], [-1469.0, -1403.67], [-1477.3, -1403.52], [-1477.07, -1390.4], [-1474.14, -1390.45], [-1474.03, -1383.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1453.68, -1664.02], [-1454.01, -1672.9], [-1441.81, -1673.35], [-1441.6, -1667.79], [-1439.65, -1667.86], [-1439.53, -1664.53], [-1453.68, -1664.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1451.8, -1402.63], [-1451.88, -1411.12], [-1435.76, -1411.28], [-1435.65, -1399.65], [-1444.7, -1399.57], [-1444.72, -1402.7], [-1451.8, -1402.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1453.57, -1675.4], [-1453.95, -1684.34], [-1442.0, -1684.84], [-1441.77, -1679.38], [-1440.04, -1679.46], [-1439.89, -1675.97], [-1453.57, -1675.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1450.77, -1541.19], [-1451.08, -1549.42], [-1437.49, -1549.94], [-1437.32, -1545.52], [-1439.34, -1545.44], [-1439.19, -1541.64], [-1450.77, -1541.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1449.91, -1638.02], [-1441.67, -1638.3], [-1441.79, -1641.86], [-1436.85, -1642.02], [-1437.03, -1647.32], [-1450.2, -1646.89], [-1449.91, -1638.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1490.19, -1443.66], [-1470.84, -1444.1], [-1471.05, -1452.4], [-1472.55, -1452.35], [-1472.85, -1463.75], [-1490.76, -1463.28], [-1490.19, -1443.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.233, "pop": 0, "jobs": 233}}, {"shape": {"outer": [[-1450.77, -1504.29], [-1451.13, -1513.56], [-1434.32, -1514.2], [-1434.0, -1505.97], [-1436.02, -1505.89], [-1435.98, -1504.86], [-1450.77, -1504.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1451.18, -1433.29], [-1438.5, -1433.46], [-1438.68, -1445.76], [-1446.98, -1445.65], [-1446.96, -1443.85], [-1451.32, -1443.79], [-1451.18, -1433.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1463.13, -1749.88], [-1466.85, -1749.78], [-1466.87, -1750.54], [-1470.15, -1750.45], [-1470.6, -1766.07], [-1463.6, -1766.27], [-1463.13, -1749.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1536.7, -1259.82], [-1536.91, -1268.63], [-1520.48, -1269.02], [-1520.27, -1260.22], [-1526.55, -1260.07], [-1526.53, -1259.23], [-1532.32, -1259.1], [-1532.33, -1259.93], [-1536.7, -1259.82]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1554.82, -1692.22], [-1554.99, -1701.72], [-1549.79, -1701.81], [-1549.73, -1698.17], [-1543.34, -1698.27], [-1543.41, -1701.92], [-1531.01, -1702.13], [-1530.84, -1692.63], [-1554.82, -1692.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-1492.49, -1542.24], [-1492.83, -1562.1], [-1482.14, -1562.28], [-1482.16, -1563.24], [-1471.88, -1563.42], [-1471.48, -1540.3], [-1486.12, -1540.04], [-1486.16, -1542.36], [-1492.49, -1542.24]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.294, "pop": 0, "jobs": 294}}, {"shape": {"outer": [[-1452.6, -1566.2], [-1452.7, -1571.16], [-1451.15, -1571.19], [-1451.25, -1576.31], [-1435.53, -1576.64], [-1435.4, -1570.59], [-1437.2, -1570.55], [-1437.12, -1566.53], [-1452.6, -1566.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[1126.72, 1294.38], [1135.84, 1284.32], [1142.23, 1289.84], [1132.75, 1299.88], [1126.72, 1294.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1166.5, 1195.43], [1178.18, 1182.59], [1186.93, 1190.22], [1175.38, 1203.06], [1166.5, 1195.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-990.41, -673.01], [-956.43, -617.64], [-915.29, -659.73], [-953.64, -696.46], [-990.41, -673.01]], "holes": []}, "height": 38.5, "data": {"type": "residential", "density": 1.0, "pop": 5734, "jobs": 0}}, {"shape": {"outer": [[-2712.12, -735.89], [-2712.5, -751.73], [-2711.64, -751.75], [-2711.67, -753.21], [-2709.88, -753.25], [-2709.91, -754.49], [-2702.26, -754.67], [-2702.19, -751.98], [-2701.8, -751.99], [-2701.43, -736.15], [-2712.12, -735.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2666.68, -733.72], [-2666.72, -735.52], [-2667.53, -735.5], [-2667.63, -740.12], [-2666.83, -740.15], [-2666.9, -743.22], [-2656.98, -743.47], [-2656.97, -742.72], [-2654.25, -742.78], [-2654.06, -734.67], [-2656.78, -734.61], [-2656.76, -733.96], [-2666.68, -733.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2734.2, -737.32], [-2734.4, -749.74], [-2736.67, -749.7], [-2736.69, -750.91], [-2741.28, -750.83], [-2741.26, -749.63], [-2744.01, -749.58], [-2743.82, -737.16], [-2738.65, -737.25], [-2738.61, -734.72], [-2735.66, -734.76], [-2735.7, -737.29], [-2734.2, -737.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2727.08, -737.38], [-2727.33, -748.03], [-2724.92, -748.09], [-2724.99, -750.94], [-2720.57, -751.05], [-2720.5, -748.19], [-2716.89, -748.28], [-2716.64, -737.62], [-2717.74, -737.59], [-2717.69, -735.29], [-2721.98, -735.19], [-2721.97, -734.64], [-2725.91, -734.54], [-2725.98, -737.4], [-2727.08, -737.38]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2667.92, -759.69], [-2667.94, -760.4], [-2668.66, -760.38], [-2668.73, -762.77], [-2668.01, -762.79], [-2668.04, -763.99], [-2669.77, -763.94], [-2669.89, -768.06], [-2658.06, -768.41], [-2658.03, -767.5], [-2655.6, -767.57], [-2655.41, -760.93], [-2657.84, -760.86], [-2657.82, -759.98], [-2667.92, -759.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2753.14, -686.16], [-2753.27, -692.44], [-2746.61, -692.58], [-2746.47, -686.29], [-2753.14, -686.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2738.54, -640.77], [-2747.88, -640.49], [-2748.32, -655.07], [-2738.98, -655.35], [-2738.54, -640.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2704.82, -768.11], [-2700.59, -768.2], [-2700.71, -774.34], [-2704.94, -774.26], [-2704.82, -768.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2753.88, -654.71], [-2748.63, -654.9], [-2748.86, -661.26], [-2754.11, -661.07], [-2753.88, -654.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2670.94, -678.62], [-2671.12, -687.85], [-2652.62, -688.21], [-2652.44, -678.99], [-2670.94, -678.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2762.67, -743.92], [-2765.68, -743.8], [-2765.91, -750.01], [-2762.91, -750.12], [-2762.67, -743.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-2720.24, -760.88], [-2720.39, -769.17], [-2714.38, -769.28], [-2714.23, -760.99], [-2720.24, -760.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2760.21, -698.26], [-2760.53, -707.47], [-2769.92, -707.15], [-2769.59, -697.93], [-2760.21, -698.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2669.55, -755.26], [-2669.42, -747.44], [-2665.93, -747.5], [-2665.92, -746.41], [-2654.11, -746.63], [-2654.27, -755.54], [-2669.55, -755.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2691.21, -645.65], [-2691.87, -663.95], [-2699.06, -663.68], [-2699.0, -662.05], [-2706.29, -661.79], [-2705.69, -645.13], [-2691.21, -645.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-2696.99, -691.51], [-2697.43, -704.31], [-2687.47, -704.65], [-2687.17, -696.11], [-2692.6, -695.92], [-2692.45, -691.66], [-2696.99, -691.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2743.41, -688.29], [-2743.76, -701.06], [-2726.56, -701.55], [-2726.29, -691.82], [-2734.55, -691.59], [-2734.47, -688.54], [-2743.41, -688.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2663.57, -661.7], [-2654.58, -661.9], [-2654.78, -671.04], [-2656.75, -670.99], [-2656.82, -674.26], [-2661.02, -674.17], [-2660.96, -670.9], [-2663.77, -670.85], [-2663.57, -661.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2770.27, -661.73], [-2761.42, -661.9], [-2761.6, -671.48], [-2772.59, -671.27], [-2772.51, -666.97], [-2771.43, -666.99], [-2771.4, -665.32], [-2770.33, -665.34], [-2770.27, -661.73]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2664.11, -644.81], [-2664.13, -645.65], [-2665.95, -645.61], [-2666.11, -653.06], [-2664.3, -653.1], [-2664.36, -655.64], [-2653.99, -655.88], [-2653.74, -645.05], [-2664.11, -644.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2769.29, -686.62], [-2760.61, -686.97], [-2761.0, -696.65], [-2769.69, -696.3], [-2769.64, -694.94], [-2772.2, -694.83], [-2772.02, -690.38], [-2769.45, -690.49], [-2769.29, -686.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2723.53, -644.81], [-2724.21, -664.24], [-2715.16, -664.55], [-2714.48, -645.12], [-2715.51, -645.09], [-2715.41, -642.19], [-2722.78, -641.93], [-2722.88, -644.84], [-2723.53, -644.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-2694.99, -738.8], [-2695.28, -749.58], [-2694.37, -749.59], [-2694.46, -753.08], [-2689.11, -753.22], [-2689.02, -749.73], [-2683.76, -749.89], [-2683.47, -739.11], [-2694.99, -738.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2762.29, -641.21], [-2772.68, -640.92], [-2773.07, -654.98], [-2768.03, -655.12], [-2768.17, -659.91], [-2760.53, -660.13], [-2760.4, -655.35], [-2762.68, -655.28], [-2762.29, -641.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2771.03, -674.25], [-2771.29, -684.3], [-2758.07, -684.66], [-2758.04, -683.72], [-2754.92, -683.81], [-2754.74, -677.42], [-2756.47, -677.37], [-2756.39, -674.65], [-2771.03, -674.25]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2671.21, -691.02], [-2671.29, -693.9], [-2672.81, -693.86], [-2672.97, -699.25], [-2671.45, -699.29], [-2671.49, -700.7], [-2653.3, -701.22], [-2653.03, -691.54], [-2671.21, -691.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-2736.91, -641.69], [-2728.42, -641.94], [-2728.98, -660.99], [-2731.64, -660.91], [-2731.6, -659.5], [-2736.47, -659.35], [-2736.29, -653.14], [-2737.25, -653.11], [-2736.91, -641.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2710.05, -696.52], [-2710.17, -700.84], [-2712.27, -700.78], [-2712.42, -706.58], [-2699.8, -706.93], [-2699.47, -695.32], [-2703.62, -695.21], [-2703.67, -696.69], [-2710.05, -696.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2671.74, -703.91], [-2671.86, -706.9], [-2673.03, -706.85], [-2673.25, -712.02], [-2672.07, -712.07], [-2672.13, -713.46], [-2653.62, -714.22], [-2653.24, -704.66], [-2671.74, -703.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2690.4, -602.99], [-2682.08, -603.22], [-2682.35, -613.1], [-2682.95, -613.09], [-2683.04, -616.4], [-2683.4, -616.38], [-2683.46, -618.35], [-2690.26, -618.17], [-2690.2, -616.2], [-2690.77, -616.18], [-2690.4, -602.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2705.94, -601.13], [-2706.36, -614.26], [-2705.72, -614.27], [-2705.75, -615.34], [-2703.34, -615.41], [-2701.28, -616.56], [-2698.6, -616.65], [-2696.74, -615.47], [-2696.66, -613.14], [-2697.44, -613.1], [-2697.31, -609.16], [-2696.86, -609.17], [-2696.72, -604.72], [-2697.17, -604.71], [-2697.07, -601.41], [-2705.94, -601.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2663.53, -607.02], [-2663.57, -608.85], [-2664.84, -608.83], [-2664.88, -610.69], [-2668.4, -610.63], [-2668.44, -612.41], [-2669.59, -612.39], [-2669.7, -618.06], [-2667.61, -618.1], [-2667.63, -619.11], [-2664.02, -619.18], [-2664.0, -618.17], [-2652.4, -618.41], [-2652.38, -617.31], [-2649.85, -617.36], [-2649.78, -614.1], [-2648.28, -614.13], [-2648.23, -612.01], [-2649.74, -611.97], [-2649.66, -608.22], [-2652.2, -608.17], [-2652.18, -607.25], [-2663.53, -607.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-2680.1, -604.3], [-2680.25, -610.41], [-2673.97, -610.57], [-2673.82, -604.45], [-2680.1, -604.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2693.58, -584.88], [-2699.75, -584.75], [-2699.89, -591.56], [-2693.73, -591.68], [-2693.58, -584.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2725.74, -334.25], [-2714.24, -334.68], [-2714.41, -339.2], [-2712.88, -339.25], [-2713.01, -342.96], [-2714.55, -342.9], [-2714.69, -346.48], [-2728.48, -345.96], [-2728.27, -340.48], [-2725.98, -340.57], [-2725.74, -334.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2756.43, -404.72], [-2747.49, -404.95], [-2747.72, -414.35], [-2750.75, -414.28], [-2750.84, -418.01], [-2758.69, -417.82], [-2758.61, -414.49], [-2761.12, -414.43], [-2760.99, -409.1], [-2756.54, -409.21], [-2756.43, -404.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2745.24, -470.97], [-2745.42, -477.75], [-2748.2, -477.68], [-2748.4, -485.18], [-2734.97, -485.53], [-2734.59, -471.25], [-2738.61, -471.15], [-2738.59, -470.11], [-2741.7, -470.02], [-2741.72, -471.07], [-2745.24, -470.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2738.84, -388.88], [-2748.17, -377.07], [-2743.23, -373.2], [-2744.97, -371.0], [-2741.68, -368.41], [-2739.94, -370.62], [-2734.32, -366.21], [-2727.6, -374.72], [-2737.22, -382.27], [-2734.62, -385.56], [-2738.84, -388.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-2707.23, -259.18], [-2707.45, -268.2], [-2692.41, -268.57], [-2692.24, -261.37], [-2695.37, -261.29], [-2695.32, -259.48], [-2698.44, -259.4], [-2698.3, -253.9], [-2705.15, -253.72], [-2705.28, -259.23], [-2707.23, -259.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2709.7, -396.99], [-2706.62, -401.24], [-2710.46, -404.01], [-2704.84, -411.78], [-2699.96, -408.27], [-2701.68, -405.9], [-2693.46, -399.99], [-2698.28, -393.34], [-2698.84, -393.73], [-2701.01, -390.73], [-2709.7, -396.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2726.53, -300.02], [-2727.08, -313.92], [-2721.66, -314.14], [-2721.82, -318.29], [-2716.07, -318.51], [-2715.86, -313.34], [-2715.06, -313.36], [-2714.96, -310.61], [-2713.57, -310.66], [-2713.17, -300.54], [-2726.53, -300.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-2734.34, -599.35], [-2724.62, -599.58], [-2724.96, -613.46], [-2726.1, -613.43], [-2726.14, -614.85], [-2727.69, -615.63], [-2730.04, -615.57], [-2731.33, -614.73], [-2734.11, -614.66], [-2734.08, -613.24], [-2734.67, -613.23], [-2734.34, -599.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2711.36, -455.09], [-2711.84, -466.04], [-2709.84, -466.13], [-2709.96, -468.84], [-2705.84, -469.02], [-2705.72, -466.31], [-2699.45, -466.58], [-2699.31, -463.46], [-2696.57, -463.58], [-2696.3, -457.33], [-2699.03, -457.2], [-2698.96, -455.64], [-2711.36, -455.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2755.27, -504.97], [-2766.79, -504.56], [-2766.93, -508.55], [-2769.71, -508.45], [-2770.01, -516.93], [-2767.23, -517.04], [-2767.37, -520.88], [-2755.85, -521.29], [-2755.71, -517.37], [-2754.87, -517.39], [-2754.55, -508.25], [-2755.39, -508.23], [-2755.27, -504.97]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[-2648.97, -352.32], [-2659.18, -351.98], [-2659.39, -358.71], [-2663.17, -358.59], [-2663.38, -364.95], [-2659.6, -365.07], [-2659.7, -368.03], [-2649.49, -368.37], [-2649.3, -362.59], [-2646.98, -362.67], [-2646.78, -356.36], [-2649.1, -356.28], [-2648.97, -352.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-2718.64, -601.74], [-2709.05, -602.01], [-2709.17, -606.64], [-2707.66, -606.68], [-2707.76, -610.16], [-2709.27, -610.12], [-2709.39, -614.41], [-2710.72, -614.37], [-2710.8, -617.1], [-2718.01, -616.9], [-2717.93, -614.18], [-2718.99, -614.15], [-2718.64, -601.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2758.17, -387.5], [-2751.35, -387.69], [-2751.45, -391.28], [-2749.27, -391.34], [-2749.39, -395.49], [-2750.53, -395.45], [-2750.62, -398.55], [-2751.66, -398.52], [-2751.7, -399.82], [-2761.25, -399.55], [-2760.95, -389.37], [-2758.23, -389.45], [-2758.17, -387.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2661.56, -571.08], [-2661.72, -575.09], [-2668.72, -574.8], [-2668.95, -580.39], [-2662.96, -580.64], [-2663.01, -581.9], [-2662.01, -581.94], [-2662.05, -582.9], [-2651.35, -583.34], [-2651.29, -581.9], [-2648.89, -582.0], [-2648.52, -572.92], [-2650.91, -572.82], [-2650.86, -571.52], [-2661.56, -571.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-2732.33, -468.2], [-2732.65, -477.32], [-2727.87, -477.48], [-2727.99, -480.85], [-2721.96, -481.07], [-2721.78, -476.01], [-2717.62, -476.15], [-2717.51, -472.85], [-2714.2, -472.97], [-2713.93, -465.34], [-2717.17, -465.23], [-2717.14, -464.52], [-2728.74, -464.11], [-2728.89, -468.32], [-2732.33, -468.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-2701.11, -304.0], [-2701.62, -319.05], [-2696.71, -319.21], [-2696.77, -320.93], [-2691.47, -321.11], [-2691.41, -319.39], [-2684.84, -319.61], [-2684.74, -316.6], [-2681.55, -316.71], [-2681.32, -309.64], [-2686.63, -309.45], [-2686.47, -304.5], [-2690.42, -304.37], [-2690.33, -301.49], [-2696.39, -301.28], [-2696.49, -304.17], [-2701.11, -304.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.232, "pop": 116, "jobs": 0}}, {"shape": {"outer": [[-2720.62, -256.6], [-2716.86, -256.69], [-2716.82, -255.07], [-2716.46, -255.08], [-2716.35, -250.12], [-2709.69, -250.27], [-2709.82, -256.06], [-2711.61, -256.02], [-2711.72, -261.38], [-2710.57, -261.4], [-2710.63, -264.4], [-2711.78, -264.37], [-2711.86, -267.7], [-2719.24, -267.55], [-2719.2, -265.4], [-2722.56, -265.33], [-2722.47, -260.97], [-2720.72, -261.01], [-2720.62, -256.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2749.93, -399.23], [-2749.99, -403.97], [-2742.68, -404.08], [-2742.61, -399.33], [-2749.93, -399.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2714.13, -584.21], [-2714.37, -591.45], [-2720.93, -591.23], [-2720.68, -584.0], [-2714.13, -584.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2759.11, -419.97], [-2759.17, -427.18], [-2750.92, -427.25], [-2750.85, -420.05], [-2759.11, -419.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2739.32, -395.23], [-2736.16, -390.56], [-2729.56, -394.99], [-2732.73, -399.67], [-2739.32, -395.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2705.91, -331.73], [-2697.81, -331.9], [-2697.95, -338.92], [-2706.06, -338.75], [-2705.91, -331.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2698.81, -576.61], [-2698.94, -583.18], [-2692.45, -583.31], [-2692.31, -576.75], [-2698.81, -576.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2749.53, -564.8], [-2749.68, -569.68], [-2742.59, -569.91], [-2742.44, -565.02], [-2749.53, -564.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2712.02, -353.93], [-2704.65, -356.87], [-2709.65, -369.31], [-2717.01, -366.37], [-2712.02, -353.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2672.05, -349.48], [-2672.26, -354.15], [-2678.54, -353.87], [-2678.33, -349.2], [-2672.05, -349.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2727.18, -584.29], [-2727.34, -590.0], [-2721.17, -590.18], [-2721.01, -584.47], [-2727.18, -584.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2662.89, -481.06], [-2663.28, -490.09], [-2647.89, -490.75], [-2647.5, -481.72], [-2662.89, -481.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2749.7, -512.64], [-2750.04, -524.28], [-2740.15, -524.56], [-2739.82, -512.92], [-2749.7, -512.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2694.42, -376.54], [-2697.92, -371.76], [-2706.63, -378.09], [-2703.12, -382.88], [-2694.42, -376.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2673.97, -586.75], [-2674.24, -592.77], [-2681.44, -592.47], [-2681.18, -586.43], [-2673.97, -586.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2752.02, -497.03], [-2752.23, -503.02], [-2745.24, -503.25], [-2745.04, -497.28], [-2752.02, -497.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2720.83, -575.73], [-2721.04, -582.95], [-2731.52, -582.64], [-2731.31, -575.42], [-2720.83, -575.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2673.62, -426.62], [-2669.62, -435.36], [-2657.44, -429.84], [-2661.44, -421.1], [-2673.62, -426.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2771.14, -583.46], [-2771.57, -593.5], [-2756.4, -594.16], [-2755.96, -584.11], [-2771.14, -583.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2680.11, -558.43], [-2672.75, -558.61], [-2672.94, -566.88], [-2680.31, -566.7], [-2680.11, -558.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2765.29, -475.48], [-2765.61, -485.54], [-2752.32, -485.96], [-2752.01, -475.89], [-2765.29, -475.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2672.0, -271.73], [-2667.39, -271.82], [-2667.28, -266.26], [-2671.89, -266.18], [-2672.0, -271.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2710.63, -554.44], [-2711.03, -568.25], [-2704.7, -568.43], [-2704.63, -566.26], [-2699.61, -566.4], [-2699.27, -554.76], [-2710.63, -554.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2696.03, -514.94], [-2696.24, -521.03], [-2693.72, -521.11], [-2693.83, -524.19], [-2682.31, -524.6], [-2681.99, -515.45], [-2696.03, -514.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2768.79, -572.09], [-2769.04, -580.79], [-2758.83, -581.09], [-2758.74, -578.05], [-2756.72, -578.1], [-2756.56, -572.44], [-2768.79, -572.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2692.38, -440.3], [-2691.53, -448.98], [-2685.32, -448.38], [-2684.92, -452.49], [-2679.37, -451.96], [-2680.6, -439.17], [-2692.38, -440.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2688.12, -258.79], [-2688.6, -269.26], [-2680.89, -269.61], [-2680.75, -266.58], [-2678.65, -266.67], [-2678.3, -259.24], [-2688.12, -258.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2728.25, -415.05], [-2726.88, -429.38], [-2715.62, -428.32], [-2716.9, -414.95], [-2722.78, -415.5], [-2722.88, -414.54], [-2728.25, -415.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-2695.15, -554.83], [-2695.44, -563.48], [-2694.28, -563.52], [-2694.36, -566.07], [-2683.66, -566.43], [-2683.28, -555.22], [-2695.15, -554.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2689.72, -386.53], [-2681.91, -396.61], [-2677.84, -393.48], [-2676.59, -395.09], [-2670.54, -390.43], [-2679.6, -378.75], [-2689.72, -386.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2732.14, -436.28], [-2731.54, -442.77], [-2726.09, -442.29], [-2726.23, -440.9], [-2722.99, -440.62], [-2723.46, -435.49], [-2732.14, -436.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2748.25, -598.76], [-2738.93, -599.01], [-2739.45, -617.42], [-2745.01, -617.26], [-2744.92, -614.05], [-2748.68, -613.94], [-2748.25, -598.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2759.16, -598.17], [-2749.0, -598.47], [-2749.37, -611.19], [-2750.41, -611.16], [-2750.56, -616.28], [-2759.67, -616.02], [-2759.16, -598.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2657.37, -441.74], [-2648.19, -442.03], [-2648.57, -453.8], [-2649.81, -453.76], [-2649.9, -456.45], [-2656.72, -456.23], [-2656.63, -453.54], [-2657.75, -453.51], [-2657.37, -441.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2662.21, -463.95], [-2662.5, -474.11], [-2646.88, -474.54], [-2646.6, -464.39], [-2647.63, -464.36], [-2647.56, -462.04], [-2652.25, -461.92], [-2652.32, -464.24], [-2662.21, -463.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2722.19, -510.85], [-2722.36, -516.78], [-2719.53, -516.87], [-2719.66, -521.65], [-2722.5, -521.57], [-2722.52, -522.46], [-2732.46, -522.18], [-2732.13, -510.57], [-2722.19, -510.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2762.3, -598.03], [-2766.25, -597.91], [-2766.22, -596.66], [-2770.75, -596.53], [-2770.79, -597.78], [-2772.29, -597.74], [-2772.8, -615.49], [-2762.81, -615.78], [-2762.3, -598.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2662.08, -516.16], [-2662.43, -525.96], [-2650.55, -526.38], [-2650.51, -525.4], [-2648.28, -525.49], [-2648.01, -517.76], [-2650.24, -517.68], [-2650.2, -516.57], [-2662.08, -516.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2759.9, -559.5], [-2767.98, -559.26], [-2768.28, -569.55], [-2760.2, -569.78], [-2760.15, -568.04], [-2757.31, -568.12], [-2757.18, -563.65], [-2760.02, -563.57], [-2759.9, -559.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2762.17, -431.54], [-2758.61, -431.54], [-2758.6, -429.72], [-2754.11, -429.72], [-2754.13, -442.38], [-2756.69, -442.37], [-2756.68, -445.32], [-2762.18, -445.31], [-2762.17, -431.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2741.66, -554.23], [-2741.99, -564.52], [-2740.59, -564.58], [-2740.73, -568.57], [-2731.23, -568.88], [-2731.09, -564.87], [-2730.14, -564.91], [-2729.81, -554.62], [-2741.66, -554.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2713.11, -511.4], [-2713.46, -523.59], [-2712.26, -523.62], [-2712.34, -526.24], [-2704.53, -526.47], [-2704.45, -523.85], [-2703.31, -523.88], [-2702.96, -511.7], [-2713.11, -511.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2646.9, -499.93], [-2647.18, -509.62], [-2666.05, -509.07], [-2666.01, -507.92], [-2666.94, -507.89], [-2666.85, -504.73], [-2665.92, -504.76], [-2665.77, -499.38], [-2646.9, -499.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-2645.99, -334.32], [-2657.88, -333.89], [-2657.92, -335.07], [-2660.06, -335.0], [-2660.34, -342.56], [-2658.2, -342.63], [-2658.42, -348.75], [-2646.53, -349.18], [-2645.99, -334.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2767.92, -547.62], [-2768.16, -557.29], [-2754.35, -557.63], [-2754.11, -547.96], [-2760.27, -547.8], [-2760.21, -545.09], [-2766.55, -544.94], [-2766.61, -547.64], [-2767.92, -547.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2748.72, -429.74], [-2748.8, -437.7], [-2736.09, -437.82], [-2736.02, -429.86], [-2741.14, -429.81], [-2741.13, -428.68], [-2744.13, -428.65], [-2744.14, -429.78], [-2748.72, -429.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2669.14, -366.0], [-2670.73, -369.83], [-2674.51, -368.28], [-2676.87, -374.0], [-2664.57, -386.06], [-2657.69, -380.76], [-2653.47, -382.49], [-2649.92, -373.9], [-2669.14, -366.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.24, "pop": 120, "jobs": 0}}, {"shape": {"outer": [[-2724.92, -553.53], [-2725.49, -566.93], [-2719.24, -567.19], [-2719.1, -563.91], [-2712.85, -564.17], [-2712.31, -551.2], [-2720.22, -550.87], [-2720.34, -553.72], [-2724.92, -553.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2664.0, -553.66], [-2664.24, -561.12], [-2660.18, -561.25], [-2660.22, -562.58], [-2654.98, -562.75], [-2654.93, -561.42], [-2648.41, -561.63], [-2648.17, -554.17], [-2664.0, -553.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2661.17, -302.85], [-2661.6, -313.51], [-2661.12, -313.54], [-2661.34, -318.96], [-2661.81, -318.95], [-2662.14, -327.32], [-2661.53, -327.35], [-2661.59, -328.97], [-2652.38, -329.34], [-2652.27, -326.74], [-2651.8, -326.75], [-2651.49, -318.97], [-2651.97, -318.96], [-2651.85, -316.19], [-2646.25, -316.41], [-2645.67, -301.9], [-2650.3, -301.72], [-2650.36, -303.27], [-2661.17, -302.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.27, "pop": 135, "jobs": 0}}, {"shape": {"outer": [[-2828.53, -320.53], [-2826.62, -332.53], [-2814.51, -330.61], [-2814.92, -328.03], [-2810.17, -327.29], [-2810.86, -323.01], [-2815.19, -323.7], [-2815.55, -321.46], [-2819.98, -322.16], [-2820.45, -319.25], [-2828.53, -320.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-2808.23, -350.47], [-2806.07, -364.01], [-2794.03, -362.11], [-2794.76, -357.51], [-2791.06, -356.93], [-2792.22, -349.65], [-2796.15, -350.27], [-2795.73, -352.9], [-2801.77, -353.86], [-2802.46, -349.55], [-2808.23, -350.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2798.35, -251.62], [-2795.49, -269.77], [-2794.93, -269.69], [-2794.52, -272.28], [-2789.06, -271.42], [-2789.47, -268.83], [-2785.89, -268.28], [-2789.12, -247.79], [-2795.06, -248.72], [-2794.69, -251.06], [-2798.35, -251.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[-2790.85, -347.0], [-2787.47, -354.3], [-2785.22, -353.26], [-2781.98, -360.28], [-2777.99, -358.45], [-2777.32, -359.88], [-2772.99, -357.89], [-2773.66, -356.45], [-2769.71, -354.63], [-2774.98, -343.24], [-2781.21, -346.1], [-2782.56, -343.18], [-2790.85, -347.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-2764.5, -302.05], [-2764.52, -302.88], [-2766.27, -302.82], [-2766.5, -310.77], [-2764.75, -310.82], [-2764.92, -316.52], [-2755.8, -316.79], [-2755.42, -303.57], [-2752.58, -303.65], [-2752.46, -299.36], [-2759.34, -299.16], [-2759.43, -302.2], [-2764.5, -302.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2806.84, -314.22], [-2802.46, -313.53], [-2802.69, -312.1], [-2798.49, -311.43], [-2800.09, -301.41], [-2802.0, -301.71], [-2802.35, -299.51], [-2809.64, -300.65], [-2810.71, -301.92], [-2810.2, -305.14], [-2808.77, -306.11], [-2808.27, -309.26], [-2807.64, -309.16], [-2806.84, -314.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2798.89, -298.18], [-2793.19, -297.43], [-2792.43, -303.09], [-2786.9, -302.36], [-2786.14, -308.05], [-2784.69, -307.86], [-2784.01, -312.92], [-2789.18, -313.6], [-2788.58, -318.05], [-2794.46, -318.83], [-2795.97, -307.58], [-2796.89, -307.71], [-2797.26, -304.98], [-2797.97, -305.07], [-2798.89, -298.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2781.8, -252.26], [-2782.31, -268.32], [-2780.67, -268.37], [-2780.74, -270.31], [-2775.82, -270.46], [-2775.76, -268.53], [-2772.21, -268.64], [-2772.28, -270.61], [-2767.55, -270.76], [-2767.49, -268.79], [-2765.58, -268.86], [-2765.06, -252.8], [-2773.36, -252.53], [-2773.51, -257.3], [-2774.02, -257.29], [-2773.87, -252.51], [-2781.8, -252.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.228, "pop": 114, "jobs": 0}}, {"shape": {"outer": [[-2765.21, -222.49], [-2765.54, -231.77], [-2747.52, -232.4], [-2747.2, -223.13], [-2765.21, -222.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2819.31, -307.99], [-2814.9, -307.29], [-2813.93, -313.42], [-2818.34, -314.12], [-2819.31, -307.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2776.97, -321.25], [-2782.02, -321.19], [-2782.09, -327.39], [-2777.04, -327.45], [-2776.97, -321.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2818.72, -257.72], [-2816.91, -269.98], [-2816.3, -269.88], [-2816.02, -271.77], [-2806.53, -270.38], [-2806.81, -268.49], [-2806.23, -268.41], [-2808.04, -256.15], [-2818.72, -257.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2820.98, -303.43], [-2824.3, -303.86], [-2824.41, -303.14], [-2827.13, -303.5], [-2826.48, -308.24], [-2828.24, -308.47], [-2827.57, -313.44], [-2819.77, -312.39], [-2820.98, -303.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2823.46, -346.67], [-2821.39, -346.31], [-2821.82, -343.85], [-2815.98, -342.83], [-2815.54, -345.29], [-2812.42, -344.74], [-2809.87, -359.25], [-2820.9, -361.19], [-2823.46, -346.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2761.77, -237.51], [-2761.99, -244.53], [-2762.67, -244.51], [-2762.83, -249.35], [-2762.16, -249.37], [-2762.18, -250.1], [-2748.48, -250.55], [-2748.07, -237.96], [-2761.77, -237.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2774.27, -343.47], [-2766.87, -354.05], [-2756.5, -346.83], [-2763.9, -336.26], [-2764.74, -336.85], [-2766.82, -333.9], [-2772.56, -337.9], [-2770.5, -340.85], [-2774.27, -343.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-2920.22, -228.63], [-2912.66, -227.44], [-2911.55, -234.47], [-2910.68, -234.33], [-2909.75, -240.17], [-2910.62, -240.31], [-2909.5, -247.43], [-2915.05, -248.31], [-2915.44, -245.82], [-2917.45, -246.13], [-2920.22, -228.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-3072.77, -292.48], [-3069.21, -291.9], [-3069.29, -291.43], [-3063.83, -290.53], [-3060.68, -309.38], [-3063.51, -309.85], [-3063.14, -312.05], [-3068.82, -312.99], [-3069.19, -310.79], [-3069.7, -310.88], [-3072.77, -292.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-3087.15, -295.18], [-3084.8, -294.8], [-3085.2, -292.29], [-3078.22, -291.17], [-3074.94, -311.46], [-3078.19, -311.99], [-3077.72, -314.92], [-3082.95, -315.75], [-3083.43, -312.83], [-3084.28, -312.96], [-3087.15, -295.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-3117.87, -263.26], [-3115.46, -278.68], [-3112.61, -278.24], [-3112.2, -280.89], [-3107.39, -280.14], [-3107.81, -277.5], [-3106.29, -277.26], [-3109.12, -259.12], [-3114.75, -260.01], [-3114.33, -262.72], [-3117.87, -263.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-2982.97, -288.06], [-2975.84, -286.95], [-2973.79, -299.76], [-2974.35, -299.86], [-2974.05, -301.71], [-2979.87, -302.62], [-2980.17, -300.78], [-2980.92, -300.89], [-2981.44, -297.65], [-2982.43, -297.8], [-2983.35, -292.06], [-2982.36, -291.9], [-2982.97, -288.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-3039.48, -296.23], [-3037.97, -305.57], [-3027.64, -303.9], [-3029.16, -294.58], [-3039.48, -296.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-3128.33, -298.73], [-3124.43, -323.65], [-3110.47, -321.48], [-3114.37, -296.56], [-3128.33, -298.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.286, "pop": 143, "jobs": 0}}, {"shape": {"outer": [[-3106.01, -261.38], [-3097.1, -259.79], [-3094.61, -273.69], [-3103.52, -275.28], [-3106.01, -261.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2918.83, -277.42], [-2909.4, -275.68], [-2907.24, -287.36], [-2916.66, -289.1], [-2918.83, -277.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2966.55, -237.04], [-2974.64, -238.23], [-2972.24, -254.4], [-2964.16, -253.21], [-2966.55, -237.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-3037.44, -278.39], [-3036.73, -282.6], [-3030.63, -281.57], [-3031.34, -277.36], [-3037.44, -278.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-3019.9, -268.88], [-3025.83, -269.81], [-3024.82, -276.18], [-3018.9, -275.25], [-3019.9, -268.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-3032.54, -270.85], [-3026.33, -269.77], [-3025.26, -275.85], [-3031.48, -276.93], [-3032.54, -270.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2887.01, -225.53], [-2901.72, -227.88], [-2898.71, -246.54], [-2884.0, -244.19], [-2887.01, -225.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[-3042.15, -250.94], [-3032.61, -249.38], [-3030.35, -263.12], [-3035.82, -264.02], [-3035.43, -266.4], [-3039.51, -267.07], [-3042.15, -250.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2965.02, -281.56], [-2958.15, -280.43], [-2955.78, -294.7], [-2963.59, -295.99], [-2964.84, -288.5], [-2963.9, -288.35], [-2965.02, -281.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-3092.36, -305.21], [-3102.79, -306.97], [-3100.64, -319.63], [-3093.12, -318.36], [-3093.49, -316.16], [-3090.58, -315.67], [-3092.36, -305.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2932.28, -232.75], [-2929.83, -232.38], [-2930.03, -231.04], [-2925.86, -230.39], [-2925.65, -231.73], [-2923.26, -231.35], [-2920.29, -250.41], [-2929.31, -251.81], [-2932.28, -232.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2906.9, -276.22], [-2905.23, -286.57], [-2903.56, -286.31], [-2903.18, -288.7], [-2895.53, -287.48], [-2895.92, -285.08], [-2894.53, -284.87], [-2896.19, -274.5], [-2906.9, -276.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2947.77, -234.1], [-2957.08, -235.65], [-2954.59, -250.6], [-2952.75, -250.3], [-2952.42, -252.3], [-2948.53, -251.65], [-2948.86, -249.65], [-2945.28, -249.07], [-2947.77, -234.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-3022.63, -297.15], [-3021.3, -305.71], [-3019.57, -305.45], [-3019.22, -307.67], [-3012.71, -306.67], [-3013.06, -304.44], [-3006.42, -303.41], [-3007.75, -294.86], [-3022.63, -297.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-3095.35, -257.33], [-3086.5, -255.71], [-3084.42, -266.98], [-3085.31, -267.15], [-3085.04, -268.6], [-3090.15, -269.53], [-3090.42, -268.08], [-3093.27, -268.61], [-3095.35, -257.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1033.75, 2102.69], [1041.59, 2095.67], [1045.94, 2091.86], [1051.1, 2097.93], [1055.16, 2094.35], [1061.67, 2101.79], [1054.36, 2107.77], [1045.6, 2115.51], [1044.95, 2114.89], [1036.46, 2105.55], [1033.75, 2102.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.266, "pop": 133, "jobs": 0}}, {"shape": {"outer": [[1145.36, 1082.95], [1150.76, 1087.95], [1157.87, 1080.34], [1152.47, 1075.33], [1145.36, 1082.95]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.049, "pop": 0, "jobs": 49}}, {"shape": {"outer": [[2122.4, 1884.1], [2127.94, 1889.38], [2135.24, 1881.76], [2133.79, 1880.37], [2136.67, 1877.37], [2132.58, 1873.46], [2129.8, 1876.36], [2129.46, 1876.03], [2126.07, 1879.56], [2126.42, 1879.89], [2122.4, 1884.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2024.82, 1784.63], [2019.5, 1779.3], [2022.92, 1775.92], [2022.43, 1775.42], [2026.1, 1771.79], [2026.6, 1772.29], [2030.22, 1768.71], [2034.37, 1772.86], [2033.05, 1774.17], [2034.23, 1775.34], [2024.82, 1784.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2108.01, 1863.56], [2110.74, 1860.78], [2110.21, 1860.27], [2114.32, 1856.06], [2116.1, 1857.79], [2117.8, 1856.05], [2120.86, 1859.04], [2119.17, 1860.77], [2120.13, 1861.71], [2113.3, 1868.69], [2108.01, 1863.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2039.62, 1718.42], [2040.25, 1719.06], [2037.12, 1722.18], [2040.93, 1725.96], [2044.06, 1722.83], [2045.54, 1724.3], [2049.76, 1720.08], [2048.93, 1719.26], [2053.0, 1715.19], [2047.91, 1710.14], [2039.62, 1718.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2189.31, 1864.22], [2194.35, 1869.11], [2196.34, 1867.08], [2196.95, 1867.67], [2202.35, 1862.15], [2199.59, 1859.47], [2200.68, 1858.35], [2198.28, 1856.03], [2197.19, 1857.15], [2196.69, 1856.67], [2189.31, 1864.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1944.43, 1710.84], [1949.9, 1704.94], [1950.95, 1705.9], [1956.25, 1700.17], [1957.72, 1701.53], [1956.51, 1702.84], [1960.17, 1706.21], [1953.34, 1713.59], [1952.43, 1712.76], [1949.72, 1715.69], [1944.43, 1710.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2041.86, 1801.9], [2036.49, 1796.65], [2040.58, 1792.49], [2039.95, 1791.89], [2043.34, 1788.45], [2043.96, 1789.05], [2046.28, 1786.7], [2047.57, 1787.95], [2048.5, 1787.0], [2052.59, 1790.99], [2041.86, 1801.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2171.9, 1845.49], [2178.14, 1838.86], [2180.82, 1841.36], [2182.12, 1839.98], [2186.19, 1843.79], [2178.65, 1851.81], [2175.79, 1849.13], [2173.4, 1851.66], [2170.02, 1848.5], [2172.41, 1845.97], [2171.9, 1845.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2086.9, 1769.94], [2081.77, 1765.14], [2084.88, 1761.85], [2084.13, 1761.15], [2084.8, 1760.45], [2084.21, 1759.9], [2087.23, 1756.7], [2087.81, 1757.25], [2090.68, 1754.22], [2096.92, 1760.06], [2090.41, 1766.97], [2090.03, 1766.62], [2086.9, 1769.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2081.43, 1836.89], [2084.52, 1833.78], [2083.86, 1833.11], [2086.8, 1830.16], [2087.47, 1830.82], [2089.18, 1829.1], [2094.8, 1834.66], [2087.05, 1842.44], [2086.42, 1841.82], [2084.67, 1843.58], [2080.31, 1839.28], [2082.06, 1837.51], [2081.43, 1836.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2061.18, 1817.16], [2055.33, 1811.59], [2058.12, 1808.68], [2057.66, 1808.24], [2060.83, 1804.93], [2061.29, 1805.37], [2063.29, 1803.29], [2065.57, 1805.45], [2067.22, 1803.74], [2070.25, 1806.63], [2068.61, 1808.35], [2069.14, 1808.86], [2061.18, 1817.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2105.89, 1788.62], [2099.46, 1782.31], [2106.58, 1775.1], [2107.2, 1775.7], [2110.05, 1772.82], [2110.44, 1773.21], [2111.95, 1771.68], [2116.8, 1776.43], [2115.28, 1777.96], [2115.86, 1778.53], [2112.03, 1782.41], [2112.36, 1782.74], [2108.74, 1786.42], [2108.39, 1786.08], [2105.89, 1788.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2143.89, 1596.88], [2147.13, 1593.71], [2148.28, 1594.88], [2154.42, 1588.89], [2155.03, 1589.5], [2171.24, 1573.65], [2169.22, 1571.61], [2173.99, 1566.94], [2176.92, 1569.9], [2178.27, 1568.59], [2183.39, 1573.79], [2187.88, 1578.35], [2186.52, 1579.67], [2189.61, 1582.82], [2189.0, 1583.41], [2201.51, 1596.12], [2170.28, 1621.91], [2158.21, 1609.64], [2161.52, 1606.41], [2155.76, 1600.56], [2151.55, 1604.67], [2143.89, 1596.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.951, "pop": 0, "jobs": 951}}, {"shape": {"outer": [[2112.86, 1787.18], [2120.27, 1779.89], [2125.88, 1785.56], [2118.48, 1792.85], [2112.86, 1787.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2069.5, 1764.75], [2065.72, 1761.38], [2070.75, 1755.75], [2074.54, 1759.12], [2069.5, 1764.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2140.39, 1832.86], [2144.35, 1836.67], [2148.27, 1832.62], [2144.31, 1828.82], [2140.39, 1832.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2082.8, 1759.91], [2076.62, 1753.9], [2083.5, 1746.88], [2089.68, 1752.89], [2082.8, 1759.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2035.03, 1759.16], [2040.11, 1753.94], [2045.34, 1759.0], [2040.26, 1764.23], [2035.03, 1759.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2192.11, 1889.99], [2187.36, 1895.0], [2179.45, 1887.55], [2184.2, 1882.54], [2192.11, 1889.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1970.82, 1702.54], [1973.56, 1699.45], [1978.09, 1703.47], [1975.35, 1706.55], [1970.82, 1702.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2172.01, 1800.49], [2165.22, 1794.25], [2173.22, 1785.59], [2180.01, 1791.83], [2172.01, 1800.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2127.95, 1800.42], [2133.48, 1794.88], [2126.94, 1788.38], [2121.4, 1793.92], [2127.95, 1800.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2109.41, 1839.2], [2114.43, 1834.36], [2119.27, 1839.34], [2114.25, 1844.18], [2109.41, 1839.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2008.49, 1609.8], [2001.67, 1603.33], [2009.94, 1594.66], [2016.76, 1601.13], [2008.49, 1609.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2010.0, 1697.46], [2015.54, 1691.88], [2007.05, 1683.51], [2001.51, 1689.09], [2010.0, 1697.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2169.99, 1845.6], [2163.65, 1839.49], [2172.94, 1829.93], [2179.29, 1836.04], [2169.99, 1845.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2143.46, 1772.23], [2138.23, 1766.97], [2142.64, 1762.6], [2147.87, 1767.86], [2143.46, 1772.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2211.06, 1870.61], [2204.81, 1864.72], [2197.66, 1872.24], [2203.91, 1878.14], [2211.06, 1870.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2128.94, 1813.38], [2123.36, 1808.19], [2134.63, 1796.15], [2140.21, 1801.34], [2128.94, 1813.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1999.63, 1599.71], [1992.17, 1592.73], [2003.15, 1581.09], [2010.6, 1588.07], [1999.63, 1599.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2000.04, 1572.66], [1996.26, 1569.13], [2000.9, 1564.22], [2004.67, 1567.75], [2000.04, 1572.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2154.55, 1845.77], [2158.38, 1849.25], [2162.57, 1844.67], [2158.73, 1841.18], [2154.55, 1845.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2133.44, 1757.59], [2138.85, 1762.7], [2145.32, 1755.87], [2139.91, 1750.78], [2133.44, 1757.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2146.62, 1904.24], [2141.69, 1899.43], [2149.53, 1891.47], [2154.47, 1896.29], [2146.62, 1904.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1945.85, 1688.36], [1941.97, 1684.47], [1944.74, 1681.72], [1948.62, 1685.61], [1945.85, 1688.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2169.06, 1901.85], [2171.96, 1898.94], [2176.3, 1903.23], [2173.39, 1906.14], [2169.06, 1901.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1925.6, 1693.2], [1932.15, 1686.02], [1938.14, 1691.46], [1931.6, 1698.63], [1925.6, 1693.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2080.74, 1780.78], [2076.07, 1785.64], [2080.62, 1789.98], [2085.29, 1785.12], [2080.74, 1780.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1954.48, 1719.76], [1959.58, 1714.18], [1966.13, 1720.14], [1961.03, 1725.71], [1954.48, 1719.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2052.44, 1734.79], [2046.65, 1729.12], [2056.82, 1718.8], [2062.61, 1724.45], [2052.44, 1734.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2069.37, 1800.43], [2065.36, 1796.7], [2070.02, 1791.72], [2074.04, 1795.46], [2069.37, 1800.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2054.06, 1738.64], [2050.11, 1734.92], [2047.46, 1737.72], [2051.41, 1741.44], [2054.06, 1738.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2081.68, 1808.39], [2076.6, 1803.35], [2081.69, 1798.24], [2086.78, 1803.27], [2081.68, 1808.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1975.51, 1698.65], [1977.71, 1696.15], [1982.41, 1700.27], [1980.22, 1702.76], [1975.51, 1698.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2173.12, 1803.39], [2178.59, 1808.55], [2186.07, 1800.66], [2180.61, 1795.51], [2173.12, 1803.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2102.74, 1798.13], [2100.43, 1795.93], [2104.52, 1791.68], [2106.82, 1793.89], [2102.74, 1798.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1990.65, 1685.54], [1988.38, 1689.46], [1984.32, 1687.13], [1986.6, 1683.2], [1990.65, 1685.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2190.49, 1818.37], [2197.86, 1810.74], [2188.94, 1802.18], [2181.56, 1809.81], [2190.49, 1818.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2070.09, 1781.53], [2074.94, 1785.97], [2079.17, 1781.39], [2074.34, 1776.95], [2070.09, 1781.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2154.22, 1913.97], [2147.56, 1907.46], [2158.22, 1896.6], [2164.9, 1903.11], [2154.22, 1913.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2028.52, 1625.94], [2035.28, 1632.27], [2043.93, 1623.1], [2037.18, 1616.78], [2028.52, 1625.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2207.56, 1825.5], [2201.92, 1831.06], [2210.01, 1839.21], [2215.65, 1833.65], [2207.56, 1825.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2027.91, 1785.75], [2034.21, 1779.56], [2040.51, 1785.9], [2034.21, 1792.1], [2027.91, 1785.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2025.51, 1624.93], [2018.89, 1618.61], [2026.74, 1610.44], [2033.37, 1616.76], [2025.51, 1624.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2136.2, 1811.69], [2142.0, 1817.36], [2150.28, 1808.95], [2144.47, 1803.26], [2136.2, 1811.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2057.17, 1780.21], [2053.34, 1776.58], [2058.01, 1771.67], [2061.85, 1775.3], [2057.17, 1780.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2115.3, 1743.73], [2109.97, 1738.81], [2115.32, 1733.06], [2120.65, 1737.98], [2115.3, 1743.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2138.65, 1824.61], [2135.16, 1821.23], [2130.7, 1825.82], [2134.2, 1829.19], [2138.65, 1824.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1923.68, 1642.65], [1927.38, 1637.41], [1935.16, 1642.86], [1931.46, 1648.1], [1923.68, 1642.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2185.61, 1860.83], [2178.79, 1854.42], [2186.32, 1846.48], [2193.14, 1852.9], [2185.61, 1860.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1958.71, 1699.39], [1955.66, 1696.42], [1959.0, 1693.0], [1962.05, 1695.97], [1958.71, 1699.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2053.2, 1636.35], [2050.29, 1633.52], [2053.73, 1629.98], [2056.66, 1632.83], [2053.2, 1636.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1975.83, 1628.3], [1984.62, 1618.61], [2006.99, 1638.79], [1998.21, 1648.46], [1975.83, 1628.3]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.252, "pop": 0, "jobs": 252}}, {"shape": {"outer": [[2049.85, 1751.87], [2046.96, 1749.19], [2051.26, 1744.61], [2054.14, 1747.3], [2049.85, 1751.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2050.94, 1808.18], [2045.16, 1802.98], [2051.6, 1795.88], [2051.93, 1796.17], [2054.04, 1793.84], [2059.49, 1798.75], [2050.94, 1808.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2158.56, 1838.94], [2152.57, 1833.1], [2159.3, 1826.25], [2159.78, 1826.72], [2163.72, 1822.72], [2169.23, 1828.1], [2158.56, 1838.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2095.88, 1855.14], [2101.87, 1861.16], [2103.53, 1859.53], [2103.95, 1859.96], [2110.22, 1853.75], [2103.79, 1847.31], [2095.88, 1855.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2068.16, 1827.03], [2062.54, 1821.61], [2070.33, 1813.58], [2073.04, 1816.2], [2074.78, 1814.39], [2077.7, 1817.2], [2068.16, 1827.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1941.55, 1708.74], [1935.98, 1703.85], [1943.56, 1695.3], [1946.53, 1697.91], [1944.93, 1699.71], [1947.53, 1701.99], [1941.55, 1708.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1963.61, 1728.2], [1969.31, 1722.47], [1975.31, 1728.38], [1973.3, 1730.4], [1974.53, 1731.6], [1970.84, 1735.31], [1963.61, 1728.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2094.53, 1853.47], [2087.18, 1846.3], [2098.57, 1834.7], [2101.5, 1837.56], [2100.22, 1838.86], [2104.64, 1843.17], [2094.53, 1853.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1871.82, 1633.06], [1880.27, 1623.77], [1898.7, 1640.42], [1891.1, 1648.77], [1882.11, 1640.64], [1881.26, 1641.59], [1871.82, 1633.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.238, "pop": 119, "jobs": 0}}, {"shape": {"outer": [[2007.16, 1768.28], [2001.68, 1763.1], [2005.72, 1758.86], [2005.12, 1758.3], [2009.15, 1754.08], [2015.22, 1759.82], [2007.16, 1768.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1985.96, 1706.79], [1993.4, 1714.0], [1996.63, 1710.68], [1995.28, 1709.39], [1997.95, 1706.65], [1991.85, 1700.75], [1985.96, 1706.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2015.49, 1616.23], [2010.46, 1611.52], [2021.18, 1600.17], [2027.04, 1605.66], [2020.37, 1612.73], [2019.54, 1611.95], [2015.49, 1616.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1975.33, 1723.81], [1970.77, 1719.69], [1971.21, 1719.21], [1967.89, 1716.2], [1971.96, 1711.73], [1979.84, 1718.85], [1975.33, 1723.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1914.95, 1683.69], [1918.14, 1680.26], [1920.56, 1682.49], [1923.28, 1679.56], [1928.72, 1684.56], [1922.81, 1690.93], [1914.95, 1683.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2134.31, 1889.55], [2139.83, 1894.82], [2147.68, 1886.65], [2146.29, 1885.33], [2147.64, 1883.91], [2144.21, 1880.64], [2142.86, 1882.04], [2142.16, 1881.38], [2134.31, 1889.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2064.46, 1748.1], [2073.27, 1738.49], [2080.6, 1745.15], [2071.79, 1754.77], [2071.37, 1754.39], [2070.09, 1755.77], [2063.65, 1749.91], [2064.92, 1748.53], [2064.46, 1748.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1991.85, 1590.1], [1986.37, 1584.94], [1988.82, 1582.37], [1988.28, 1581.87], [1991.57, 1578.41], [1992.11, 1578.9], [1994.89, 1575.97], [2000.36, 1581.13], [1991.85, 1590.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2180.26, 1900.87], [2173.59, 1894.63], [2179.2, 1888.68], [2185.87, 1894.93], [2185.37, 1895.45], [2187.2, 1897.17], [2182.52, 1902.12], [2180.7, 1900.42], [2180.26, 1900.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2096.75, 1780.8], [2089.65, 1773.84], [2100.35, 1762.98], [2101.03, 1763.64], [2101.75, 1762.92], [2103.71, 1764.83], [2102.99, 1765.55], [2107.47, 1769.93], [2096.75, 1780.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1977.33, 1714.98], [1983.01, 1709.05], [1989.52, 1715.24], [1988.64, 1716.15], [1990.25, 1717.67], [1986.23, 1721.88], [1984.62, 1720.36], [1983.84, 1721.17], [1977.33, 1714.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2149.27, 1827.19], [2143.79, 1821.94], [2146.28, 1819.36], [2145.92, 1819.0], [2149.11, 1815.7], [2149.47, 1816.06], [2153.13, 1812.27], [2158.61, 1817.51], [2149.27, 1827.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2017.49, 1774.74], [2011.68, 1769.06], [2020.61, 1759.99], [2022.39, 1761.74], [2023.4, 1760.72], [2026.29, 1763.54], [2025.29, 1764.56], [2026.41, 1765.66], [2017.49, 1774.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2115.91, 1870.47], [2121.45, 1864.9], [2127.48, 1870.86], [2121.95, 1876.43], [2121.29, 1875.78], [2119.38, 1877.7], [2114.83, 1873.21], [2116.73, 1871.29], [2115.91, 1870.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1991.33, 1695.97], [1997.71, 1689.75], [2006.03, 1698.22], [2005.13, 1699.11], [2006.94, 1700.96], [2002.11, 1705.67], [2000.29, 1703.82], [1999.65, 1704.44], [1991.33, 1695.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2161.48, 1921.39], [2154.72, 1914.64], [2166.04, 1903.39], [2167.03, 1904.38], [2168.1, 1903.32], [2172.73, 1907.96], [2171.68, 1909.01], [2172.79, 1910.13], [2161.48, 1921.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2055.87, 1739.61], [2062.6, 1745.68], [2071.68, 1735.68], [2068.35, 1732.67], [2068.94, 1732.02], [2066.7, 1730.01], [2066.11, 1730.66], [2064.94, 1729.61], [2055.87, 1739.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2116.59, 1744.36], [2120.45, 1748.17], [2121.19, 1747.41], [2122.57, 1748.77], [2125.58, 1745.74], [2131.99, 1752.07], [2136.15, 1747.88], [2124.49, 1736.39], [2116.59, 1744.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2077.2, 1835.58], [2071.89, 1830.45], [2075.78, 1826.43], [2075.32, 1825.99], [2078.72, 1822.51], [2079.17, 1822.95], [2082.49, 1819.54], [2087.8, 1824.67], [2077.2, 1835.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2042.59, 1627.51], [2038.06, 1632.6], [2040.16, 1634.46], [2039.47, 1635.24], [2041.41, 1636.96], [2042.11, 1636.18], [2043.98, 1637.84], [2048.52, 1632.73], [2042.59, 1627.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2043.37, 1645.94], [2047.45, 1641.39], [2052.24, 1645.65], [2053.08, 1644.71], [2054.21, 1645.71], [2054.87, 1644.97], [2059.49, 1649.1], [2053.9, 1655.32], [2043.37, 1645.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2013.77, 1870.6], [2011.92, 1868.82], [2009.76, 1871.04], [2006.82, 1868.21], [2008.97, 1865.98], [2007.14, 1864.23], [2016.75, 1854.29], [2019.83, 1857.25], [2021.48, 1855.56], [2025.03, 1858.96], [2013.77, 1870.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1942.51, 1894.38], [1950.48, 1886.26], [1953.4, 1889.1], [1952.49, 1890.02], [1955.92, 1893.37], [1948.86, 1900.57], [1948.22, 1899.95], [1946.78, 1901.42], [1942.0, 1896.76], [1943.45, 1895.29], [1942.51, 1894.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1960.01, 1895.03], [1964.47, 1890.37], [1969.28, 1894.93], [1967.89, 1896.38], [1968.42, 1896.89], [1966.66, 1898.73], [1967.39, 1899.42], [1956.72, 1910.59], [1951.85, 1905.96], [1961.21, 1896.17], [1960.01, 1895.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1918.24, 1832.69], [1928.23, 1842.94], [1933.57, 1837.76], [1923.58, 1827.52], [1923.33, 1827.77], [1922.19, 1826.6], [1919.17, 1829.54], [1918.23, 1828.57], [1916.81, 1829.94], [1917.75, 1830.9], [1917.39, 1831.26], [1918.52, 1832.43], [1918.24, 1832.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1969.93, 1828.35], [1967.92, 1826.38], [1966.63, 1827.68], [1962.86, 1823.99], [1964.15, 1822.67], [1963.71, 1822.25], [1973.38, 1812.44], [1975.99, 1815.0], [1977.48, 1813.5], [1980.57, 1816.52], [1979.09, 1818.03], [1979.6, 1818.54], [1969.93, 1828.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1974.91, 1827.21], [1981.68, 1820.19], [1982.08, 1820.57], [1983.44, 1819.16], [1989.86, 1825.32], [1988.36, 1826.87], [1988.91, 1827.4], [1982.3, 1834.27], [1981.06, 1833.09], [1979.64, 1834.56], [1976.65, 1831.7], [1978.08, 1830.23], [1974.91, 1827.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2019.77, 1866.4], [2025.31, 1860.74], [2027.13, 1862.51], [2027.71, 1861.93], [2029.78, 1863.94], [2029.2, 1864.53], [2031.09, 1866.36], [2025.55, 1872.02], [2024.7, 1871.18], [2023.64, 1872.25], [2019.15, 1867.88], [2020.21, 1866.82], [2019.77, 1866.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2074.34, 1984.52], [2082.44, 1992.21], [2095.78, 1978.25], [2097.88, 1980.25], [2102.65, 1975.27], [2099.18, 1971.96], [2103.02, 1967.96], [2090.97, 1956.52], [2095.62, 1951.67], [2084.74, 1941.34], [2080.09, 1946.2], [2069.3, 1935.96], [2059.42, 1946.3], [2086.41, 1971.9], [2074.34, 1984.52]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.638, "pop": 0, "jobs": 638}}, {"shape": {"outer": [[2062.22, 1986.01], [2052.71, 1976.76], [2052.08, 1977.41], [2049.65, 1975.05], [2050.29, 1974.4], [2045.43, 1969.66], [2054.63, 1960.27], [2071.44, 1976.62], [2062.22, 1986.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[2019.94, 1926.11], [2029.48, 1916.24], [2033.33, 1919.92], [2034.22, 1919.0], [2037.56, 1922.2], [2036.45, 1923.35], [2041.11, 1927.82], [2040.19, 1928.77], [2044.17, 1932.59], [2044.9, 1931.81], [2049.08, 1935.82], [2048.09, 1936.84], [2053.11, 1941.65], [2051.77, 1943.04], [2054.13, 1945.31], [2044.55, 1955.22], [2040.87, 1951.7], [2042.28, 1950.25], [2039.65, 1947.72], [2041.98, 1945.3], [2040.87, 1944.24], [2040.31, 1944.82], [2037.39, 1942.02], [2036.21, 1943.25], [2030.06, 1937.35], [2031.4, 1935.97], [2028.72, 1933.4], [2030.4, 1931.66], [2029.29, 1930.61], [2028.34, 1931.6], [2025.58, 1928.96], [2024.29, 1930.29], [2019.94, 1926.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.402, "pop": 201, "jobs": 0}}, {"shape": {"outer": [[1985.54, 1936.93], [1979.29, 1930.82], [1987.72, 1922.23], [1993.98, 1928.32], [1985.54, 1936.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1957.54, 1884.98], [1960.42, 1882.19], [1964.25, 1886.1], [1961.36, 1888.89], [1957.54, 1884.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2038.55, 1886.62], [2033.09, 1881.43], [2039.22, 1875.03], [2044.68, 1880.23], [2038.55, 1886.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1989.19, 1917.01], [1993.7, 1921.26], [1999.7, 1914.95], [1995.18, 1910.69], [1989.19, 1917.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1939.27, 1878.25], [1941.93, 1880.76], [1945.65, 1876.84], [1942.98, 1874.34], [1939.27, 1878.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2025.21, 1886.83], [2019.92, 1881.91], [2031.9, 1869.11], [2037.19, 1874.02], [2025.21, 1886.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1914.41, 1856.13], [1918.0, 1852.49], [1922.54, 1856.93], [1918.96, 1860.58], [1914.41, 1856.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2021.78, 1902.81], [2017.19, 1898.29], [2012.52, 1902.99], [2017.11, 1907.52], [2021.78, 1902.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1985.62, 1910.27], [1982.81, 1907.63], [1986.45, 1903.79], [1989.26, 1906.45], [1985.62, 1910.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2007.96, 1859.22], [2002.03, 1853.41], [2010.21, 1845.12], [2016.14, 1850.93], [2007.96, 1859.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1972.08, 1897.45], [1974.9, 1900.21], [1978.94, 1896.08], [1976.12, 1893.32], [1972.08, 1897.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1907.55, 1840.23], [1913.22, 1834.61], [1921.61, 1843.01], [1915.93, 1848.63], [1907.55, 1840.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1999.28, 1879.39], [1994.0, 1874.63], [2000.14, 1867.86], [2005.42, 1872.64], [1999.28, 1879.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2010.76, 1879.72], [2014.4, 1883.56], [2019.03, 1879.18], [2015.38, 1875.35], [2010.76, 1879.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1968.77, 1893.62], [1971.95, 1896.68], [1977.03, 1891.43], [1973.86, 1888.38], [1968.77, 1893.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1935.26, 1887.64], [1940.43, 1892.66], [1949.03, 1883.88], [1944.26, 1879.25], [1941.56, 1882.02], [1941.16, 1881.62], [1935.26, 1887.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1988.02, 1843.35], [1981.48, 1837.16], [1990.17, 1828.04], [1993.17, 1830.89], [1995.0, 1828.97], [1998.54, 1832.32], [1988.02, 1843.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1932.33, 1884.11], [1930.38, 1882.24], [1928.99, 1883.68], [1924.72, 1879.59], [1934.92, 1869.02], [1941.14, 1874.99], [1932.33, 1884.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1961.36, 1819.41], [1958.21, 1816.46], [1956.66, 1818.09], [1953.59, 1815.22], [1965.54, 1802.57], [1971.75, 1808.4], [1961.36, 1819.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1931.96, 1867.5], [1928.76, 1864.6], [1930.2, 1863.03], [1928.59, 1861.58], [1931.45, 1858.45], [1936.25, 1862.82], [1931.96, 1867.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1969.06, 1923.47], [1980.75, 1911.54], [1982.12, 1912.88], [1984.35, 1910.61], [1988.05, 1914.22], [1983.73, 1918.62], [1984.76, 1919.61], [1975.16, 1929.41], [1969.06, 1923.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1907.28, 1856.87], [1900.87, 1850.79], [1902.41, 1849.17], [1900.59, 1847.45], [1903.96, 1843.94], [1905.76, 1845.67], [1906.44, 1844.96], [1912.85, 1851.06], [1907.28, 1856.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2043.8, 1898.07], [2037.97, 1892.66], [2041.55, 1888.83], [2041.12, 1888.43], [2044.52, 1884.8], [2044.94, 1885.19], [2048.97, 1880.88], [2054.8, 1886.3], [2043.8, 1898.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1992.14, 1845.0], [2002.2, 1834.53], [2008.71, 1840.75], [1998.65, 1851.22], [1997.37, 1849.99], [1996.24, 1851.17], [1992.77, 1847.85], [1993.89, 1846.68], [1992.14, 1845.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1961.2, 1912.49], [1969.33, 1904.2], [1975.31, 1910.02], [1967.18, 1918.32], [1966.77, 1917.92], [1965.28, 1919.44], [1960.24, 1914.53], [1961.73, 1913.01], [1961.2, 1912.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2344.94, 1873.73], [2342.34, 1869.51], [2342.88, 1869.19], [2341.37, 1866.73], [2333.32, 1871.67], [2329.48, 1865.44], [2337.87, 1860.29], [2339.27, 1862.55], [2359.21, 1850.32], [2365.78, 1860.95], [2344.94, 1873.73]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.237, "pop": 0, "jobs": 237}}, {"shape": {"outer": [[2388.53, 1839.84], [2399.59, 1833.06], [2395.35, 1826.22], [2390.09, 1829.45], [2387.39, 1825.07], [2394.65, 1820.61], [2390.31, 1813.59], [2377.29, 1821.57], [2379.71, 1825.48], [2378.42, 1826.27], [2383.49, 1834.48], [2384.75, 1833.7], [2388.53, 1839.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.224, "pop": 112, "jobs": 0}}, {"shape": {"outer": [[2425.44, 1840.81], [2429.09, 1847.18], [2438.21, 1841.98], [2434.55, 1835.62], [2425.44, 1840.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2369.34, 1737.09], [2374.94, 1738.5], [2380.3, 1717.51], [2374.71, 1716.09], [2369.34, 1737.09]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.08, "pop": 0, "jobs": 80}}, {"shape": {"outer": [[2335.25, 1854.5], [2331.05, 1847.58], [2334.54, 1845.48], [2334.0, 1844.59], [2344.15, 1838.49], [2348.88, 1846.28], [2335.25, 1854.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2435.77, 1834.49], [2440.0, 1841.09], [2447.61, 1836.24], [2447.29, 1835.74], [2454.08, 1831.41], [2450.15, 1825.3], [2435.77, 1834.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2403.46, 1883.88], [2408.86, 1892.53], [2440.17, 1873.12], [2418.88, 1839.04], [2416.8, 1840.32], [2410.05, 1829.51], [2396.82, 1837.72], [2397.65, 1839.06], [2382.02, 1848.75], [2387.86, 1858.1], [2406.63, 1846.44], [2422.61, 1872.0], [2403.46, 1883.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.771, "pop": 0, "jobs": 771}}, {"shape": {"outer": [[2457.87, 1971.55], [2449.51, 1957.85], [2468.31, 1946.46], [2476.67, 1960.17], [2457.87, 1971.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.282, "pop": 141, "jobs": 0}}, {"shape": {"outer": [[2452.81, 1950.82], [2448.96, 1944.47], [2458.46, 1938.77], [2462.31, 1945.13], [2452.81, 1950.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2422.26, 1901.2], [2426.42, 1907.88], [2440.1, 1899.42], [2435.94, 1892.73], [2422.26, 1901.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2449.12, 1940.95], [2444.63, 1933.61], [2456.77, 1926.22], [2461.27, 1933.55], [2449.12, 1940.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2405.94, 1878.22], [2401.21, 1870.5], [2413.49, 1862.71], [2418.34, 1870.53], [2405.94, 1878.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2431.79, 1917.48], [2426.83, 1910.04], [2435.65, 1904.19], [2440.62, 1911.64], [2431.79, 1917.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2423.02, 1893.6], [2419.14, 1887.57], [2430.54, 1880.31], [2434.4, 1886.32], [2423.02, 1893.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2440.23, 1926.46], [2444.33, 1933.02], [2452.99, 1927.64], [2448.5, 1920.47], [2444.83, 1922.76], [2445.2, 1923.36], [2440.23, 1926.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2438.99, 1924.48], [2438.85, 1924.24], [2437.06, 1925.36], [2433.75, 1920.07], [2435.53, 1918.97], [2435.27, 1918.55], [2443.86, 1913.19], [2447.58, 1919.13], [2438.99, 1924.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2237.37, 1613.24], [2233.24, 1606.7], [2248.47, 1597.12], [2249.28, 1598.4], [2251.55, 1596.97], [2254.87, 1602.24], [2247.61, 1606.81], [2246.6, 1605.21], [2245.21, 1606.08], [2246.22, 1607.68], [2237.37, 1613.24]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.098, "pop": 0, "jobs": 98}}, {"shape": {"outer": [[2301.1, 1628.77], [2299.49, 1635.89], [2302.58, 1636.58], [2302.18, 1638.29], [2313.6, 1640.85], [2314.73, 1635.84], [2312.59, 1635.37], [2313.54, 1631.18], [2304.2, 1629.09], [2304.12, 1629.44], [2301.1, 1628.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2364.95, 1689.16], [2365.06, 1688.73], [2362.52, 1688.1], [2363.53, 1684.01], [2366.08, 1684.63], [2366.82, 1681.66], [2383.49, 1685.77], [2381.87, 1692.32], [2375.17, 1690.67], [2374.94, 1691.62], [2364.95, 1689.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2449.84, 1850.84], [2446.12, 1844.81], [2448.58, 1843.3], [2448.1, 1842.51], [2455.96, 1837.69], [2456.36, 1838.33], [2458.67, 1836.91], [2462.06, 1842.4], [2459.74, 1843.82], [2460.17, 1844.52], [2449.84, 1850.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2417.77, 1656.31], [2438.67, 1661.25], [2437.8, 1664.92], [2442.38, 1666.0], [2441.17, 1671.07], [2436.6, 1669.98], [2433.74, 1681.97], [2439.23, 1683.27], [2437.86, 1689.01], [2432.3, 1687.7], [2432.23, 1687.99], [2411.4, 1683.06], [2417.77, 1656.31]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.415, "pop": 0, "jobs": 415}}, {"shape": {"outer": [[2360.95, 1700.52], [2361.06, 1700.06], [2358.57, 1699.45], [2359.63, 1695.1], [2362.13, 1695.7], [2362.69, 1693.4], [2380.62, 1697.74], [2378.88, 1704.86], [2373.07, 1703.45], [2372.9, 1704.15], [2367.73, 1702.89], [2367.91, 1702.2], [2360.95, 1700.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2478.55, 1827.92], [2478.75, 1827.06], [2477.01, 1826.65], [2478.48, 1820.38], [2480.22, 1820.78], [2480.35, 1820.24], [2493.1, 1823.22], [2491.3, 1830.89], [2487.54, 1830.01], [2487.42, 1830.52], [2482.84, 1829.46], [2482.97, 1828.95], [2478.55, 1827.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2342.95, 1611.65], [2340.91, 1618.5], [2345.64, 1619.89], [2345.43, 1620.62], [2348.94, 1621.64], [2348.69, 1622.47], [2353.37, 1623.85], [2353.9, 1622.08], [2356.7, 1622.9], [2358.53, 1616.74], [2355.48, 1615.85], [2355.75, 1614.9], [2350.02, 1613.21], [2349.88, 1613.69], [2342.95, 1611.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2381.53, 1675.58], [2386.89, 1676.94], [2387.02, 1676.42], [2389.24, 1676.99], [2389.11, 1677.5], [2394.57, 1678.89], [2396.0, 1673.31], [2397.06, 1673.58], [2398.29, 1668.79], [2397.23, 1668.52], [2397.93, 1665.77], [2384.9, 1662.47], [2382.56, 1671.57], [2382.22, 1671.48], [2381.47, 1674.4], [2381.81, 1674.49], [2381.53, 1675.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2360.65, 1670.21], [2361.79, 1665.72], [2360.69, 1665.44], [2362.49, 1658.34], [2363.42, 1658.57], [2363.81, 1657.02], [2381.49, 1661.48], [2380.78, 1664.28], [2382.3, 1664.67], [2381.06, 1669.51], [2379.46, 1669.11], [2378.97, 1671.0], [2379.5, 1671.14], [2378.58, 1674.74], [2372.88, 1673.3], [2372.96, 1672.93], [2370.66, 1672.35], [2370.56, 1672.72], [2360.65, 1670.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[2386.89, 1645.01], [2388.24, 1639.51], [2387.24, 1639.27], [2388.34, 1634.81], [2389.34, 1635.06], [2390.19, 1631.59], [2395.76, 1632.94], [2395.56, 1633.75], [2397.81, 1634.3], [2398.0, 1633.49], [2403.2, 1634.76], [2402.22, 1638.76], [2403.42, 1639.05], [2402.43, 1643.11], [2401.22, 1642.81], [2399.9, 1648.17], [2394.59, 1646.89], [2394.67, 1646.56], [2392.3, 1645.99], [2392.22, 1646.31], [2386.89, 1645.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[2369.21, 1640.56], [2370.57, 1635.06], [2369.57, 1634.81], [2370.67, 1630.36], [2371.66, 1630.6], [2372.52, 1627.13], [2378.08, 1628.48], [2377.88, 1629.29], [2380.14, 1629.83], [2380.33, 1629.03], [2385.53, 1630.29], [2384.54, 1634.3], [2385.74, 1634.6], [2384.75, 1638.65], [2383.54, 1638.36], [2382.22, 1643.72], [2376.91, 1642.43], [2376.99, 1642.12], [2374.62, 1641.54], [2374.55, 1641.85], [2369.21, 1640.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[2510.92, 1848.87], [2507.78, 1843.62], [2517.1, 1838.07], [2520.25, 1843.32], [2510.92, 1848.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2456.55, 1862.47], [2452.67, 1856.08], [2465.34, 1848.43], [2469.23, 1854.81], [2456.55, 1862.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2290.67, 1605.54], [2292.05, 1600.08], [2300.1, 1602.11], [2298.71, 1607.57], [2290.67, 1605.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2500.96, 1862.71], [2495.42, 1853.84], [2506.26, 1847.11], [2511.8, 1855.98], [2500.96, 1862.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2541.57, 1781.8], [2534.3, 1779.87], [2527.04, 1777.94], [2527.21, 1775.47], [2528.17, 1761.69], [2529.58, 1761.78], [2529.81, 1758.67], [2528.45, 1758.58], [2528.81, 1753.23], [2530.19, 1753.39], [2530.76, 1746.74], [2529.25, 1746.66], [2530.09, 1734.85], [2540.36, 1735.89], [2542.32, 1737.19], [2548.76, 1741.45], [2548.27, 1747.32], [2547.64, 1747.3], [2547.46, 1749.57], [2546.75, 1758.49], [2547.86, 1758.61], [2546.53, 1762.85], [2541.57, 1781.8]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 532, "jobs": 0}}, {"shape": {"outer": [[2463.68, 1867.49], [2460.21, 1861.58], [2468.76, 1856.6], [2472.23, 1862.52], [2463.68, 1867.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2265.0, 1657.77], [2261.79, 1652.58], [2271.44, 1646.65], [2274.65, 1651.84], [2265.0, 1657.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2486.21, 1839.7], [2482.89, 1834.72], [2488.88, 1830.74], [2492.21, 1835.72], [2486.21, 1839.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2302.53, 1582.63], [2303.62, 1578.7], [2312.68, 1581.21], [2311.58, 1585.15], [2302.53, 1582.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2495.81, 1822.31], [2496.63, 1818.39], [2500.67, 1819.23], [2499.85, 1823.15], [2495.81, 1822.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2454.95, 1878.06], [2451.89, 1873.21], [2457.87, 1869.47], [2460.92, 1874.32], [2454.95, 1878.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2247.82, 1630.65], [2251.88, 1637.21], [2266.24, 1628.38], [2262.18, 1621.81], [2247.82, 1630.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.083, "pop": 0, "jobs": 83}}, {"shape": {"outer": [[2225.65, 1589.26], [2219.66, 1579.6], [2240.93, 1566.55], [2244.66, 1572.58], [2246.91, 1576.21], [2225.65, 1589.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[2278.26, 1638.45], [2286.66, 1633.31], [2281.28, 1624.59], [2272.88, 1629.74], [2278.26, 1638.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2247.24, 1628.63], [2238.37, 1614.35], [2265.88, 1597.39], [2274.75, 1611.69], [2247.24, 1628.63]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.348, "pop": 0, "jobs": 348}}, {"shape": {"outer": [[2518.89, 1861.43], [2516.64, 1857.6], [2521.7, 1854.66], [2523.95, 1858.48], [2518.89, 1861.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2451.01, 1856.58], [2448.56, 1852.76], [2443.27, 1856.11], [2445.72, 1859.94], [2451.01, 1856.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2294.76, 1599.55], [2295.96, 1594.85], [2302.48, 1596.52], [2301.27, 1601.21], [2294.76, 1599.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2302.32, 1645.98], [2294.94, 1650.02], [2299.54, 1658.36], [2306.92, 1654.32], [2302.32, 1645.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2415.85, 1790.01], [2419.75, 1774.33], [2463.86, 1785.22], [2459.97, 1800.9], [2415.85, 1790.01]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.514, "pop": 257, "jobs": 0}}, {"shape": {"outer": [[2503.55, 1867.5], [2513.03, 1862.38], [2517.59, 1870.78], [2508.12, 1875.9], [2503.55, 1867.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2432.55, 1853.94], [2437.99, 1850.58], [2434.57, 1845.09], [2429.14, 1848.47], [2432.55, 1853.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2247.08, 1565.91], [2261.27, 1557.58], [2256.23, 1549.04], [2260.23, 1546.69], [2257.19, 1541.53], [2254.84, 1539.82], [2251.26, 1534.99], [2249.13, 1533.2], [2250.36, 1531.86], [2248.68, 1530.22], [2245.98, 1528.75], [2243.78, 1527.99], [2241.68, 1529.22], [2241.03, 1528.11], [2241.48, 1527.84], [2239.06, 1523.74], [2236.05, 1525.51], [2231.93, 1518.53], [2227.58, 1521.08], [2226.06, 1518.5], [2223.09, 1520.24], [2220.25, 1515.44], [2217.52, 1517.02], [2216.33, 1515.05], [2212.91, 1518.11], [2211.16, 1520.93], [2209.96, 1523.08], [2208.44, 1527.18], [2207.59, 1530.06], [2202.28, 1533.21], [2202.91, 1534.27], [2196.24, 1538.23], [2198.43, 1541.95], [2204.16, 1551.68], [2210.83, 1547.77], [2211.28, 1548.51], [2215.55, 1546.0], [2214.13, 1543.61], [2216.34, 1542.31], [2217.15, 1543.67], [2228.61, 1536.94], [2232.94, 1544.28], [2234.62, 1543.3], [2236.17, 1545.92], [2234.49, 1546.9], [2237.84, 1552.59], [2239.79, 1551.45], [2241.16, 1553.77], [2239.22, 1554.91], [2241.17, 1558.23], [2242.2, 1557.63], [2247.08, 1565.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 578, "jobs": 0}}, {"shape": {"outer": [[2216.2, 1569.23], [2228.43, 1562.1], [2230.5, 1565.63], [2227.63, 1567.31], [2229.59, 1570.66], [2220.23, 1576.11], [2216.2, 1569.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2302.34, 1626.54], [2304.56, 1618.05], [2318.22, 1621.59], [2316.23, 1629.23], [2314.46, 1628.77], [2314.23, 1629.62], [2302.34, 1626.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2334.52, 1645.54], [2335.54, 1641.49], [2336.57, 1641.75], [2337.63, 1637.47], [2350.38, 1640.63], [2348.29, 1648.97], [2334.52, 1645.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2359.35, 1810.88], [2353.02, 1800.65], [2377.99, 1785.29], [2381.14, 1790.39], [2380.28, 1790.91], [2383.46, 1796.06], [2359.35, 1810.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[2306.98, 1614.87], [2308.89, 1607.61], [2310.51, 1608.03], [2315.6, 1606.83], [2320.84, 1608.18], [2318.32, 1617.82], [2306.98, 1614.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2263.85, 1646.69], [2258.57, 1638.22], [2271.31, 1630.34], [2273.58, 1633.97], [2272.58, 1634.59], [2275.6, 1639.44], [2263.85, 1646.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2455.35, 1701.8], [2448.3, 1700.22], [2451.33, 1686.79], [2443.13, 1684.95], [2446.74, 1669.01], [2461.99, 1672.43], [2455.35, 1701.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.284, "pop": 142, "jobs": 0}}, {"shape": {"outer": [[2367.78, 1823.11], [2361.87, 1813.61], [2382.23, 1801.03], [2384.89, 1805.32], [2397.66, 1797.43], [2400.91, 1802.64], [2367.78, 1823.11]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.23, "pop": 0, "jobs": 230}}, {"shape": {"outer": [[2266.32, 1660.62], [2275.12, 1655.13], [2282.87, 1667.48], [2288.32, 1664.08], [2290.97, 1668.32], [2276.73, 1677.2], [2266.32, 1660.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[2231.8, 1604.12], [2227.06, 1596.6], [2234.83, 1591.73], [2235.59, 1592.95], [2246.56, 1586.07], [2250.53, 1592.37], [2231.8, 1604.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2419.75, 1774.33], [2420.68, 1770.6], [2408.51, 1767.6], [2401.14, 1797.25], [2413.31, 1800.25], [2415.85, 1790.01], [2419.75, 1774.33]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.245, "pop": 0, "jobs": 245}}, {"shape": {"outer": [[2308.96, 1594.29], [2307.33, 1600.18], [2308.62, 1600.53], [2308.27, 1601.8], [2321.44, 1605.42], [2321.64, 1604.74], [2323.41, 1605.22], [2325.21, 1598.76], [2308.96, 1594.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2514.68, 1816.31], [2507.5, 1814.65], [2510.82, 1800.46], [2518.0, 1802.13], [2516.62, 1808.01], [2517.76, 1808.28], [2516.63, 1813.09], [2515.5, 1812.83], [2514.68, 1816.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2313.32, 1590.97], [2315.45, 1582.98], [2326.59, 1585.94], [2326.49, 1586.33], [2328.63, 1586.89], [2326.75, 1593.92], [2324.63, 1593.36], [2324.49, 1593.92], [2313.32, 1590.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2529.71, 1819.72], [2519.81, 1817.13], [2521.93, 1809.05], [2522.88, 1809.3], [2525.08, 1800.94], [2524.14, 1800.69], [2524.88, 1797.89], [2534.78, 1800.48], [2529.71, 1819.72]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.125, "pop": 0, "jobs": 125}}, {"shape": {"outer": [[2491.73, 1848.63], [2486.66, 1840.07], [2499.31, 1832.64], [2504.38, 1841.2], [2503.95, 1841.44], [2505.84, 1844.64], [2496.35, 1850.23], [2494.45, 1847.03], [2491.73, 1848.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2338.01, 1629.16], [2336.41, 1634.6], [2338.13, 1635.1], [2337.94, 1635.72], [2346.29, 1638.18], [2348.22, 1631.69], [2340.14, 1629.31], [2340.01, 1629.75], [2338.01, 1629.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2215.25, 1567.35], [2213.64, 1564.8], [2212.71, 1565.39], [2211.21, 1563.0], [2212.14, 1562.42], [2210.14, 1559.24], [2222.43, 1551.54], [2227.54, 1559.66], [2215.25, 1567.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2325.75, 1673.25], [2327.91, 1664.91], [2344.94, 1669.28], [2344.45, 1671.17], [2345.85, 1671.53], [2344.86, 1675.37], [2343.45, 1675.01], [2342.78, 1677.62], [2325.75, 1673.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2270.02, 1845.09], [2272.72, 1848.42], [2270.16, 1850.47], [2290.42, 1876.35], [2293.75, 1873.28], [2295.27, 1875.18], [2314.39, 1860.06], [2304.34, 1847.46], [2292.73, 1832.92], [2291.84, 1833.76], [2288.61, 1829.83], [2270.02, 1845.09]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.706, "pop": 0, "jobs": 706}}, {"shape": {"outer": [[2222.5, 1781.26], [2239.58, 1768.17], [2245.62, 1776.0], [2242.14, 1778.65], [2247.95, 1786.18], [2245.21, 1788.29], [2247.66, 1791.47], [2248.16, 1790.73], [2251.92, 1793.76], [2250.57, 1795.23], [2251.12, 1795.96], [2257.79, 1789.22], [2268.95, 1798.86], [2267.36, 1800.6], [2273.31, 1806.04], [2253.7, 1826.54], [2236.38, 1804.09], [2238.72, 1802.29], [2222.5, 1781.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.946, "pop": 473, "jobs": 0}}, {"shape": {"outer": [[2164.81, 1719.3], [2159.69, 1714.3], [2158.58, 1714.78], [2155.13, 1711.29], [2152.04, 1708.17], [2153.34, 1706.88], [2150.05, 1703.58], [2163.53, 1690.27], [2164.66, 1691.41], [2167.94, 1688.15], [2161.57, 1681.8], [2160.85, 1681.09], [2175.55, 1666.45], [2177.76, 1668.64], [2179.06, 1667.34], [2195.79, 1683.82], [2191.94, 1687.71], [2193.99, 1689.71], [2164.81, 1719.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.934, "pop": 467, "jobs": 0}}, {"shape": {"outer": [[-1420.49, -2171.82], [-1395.47, -2172.8], [-1395.87, -2183.66], [-1396.99, -2183.62], [-1397.09, -2186.29], [-1399.93, -2186.26], [-1400.3, -2196.29], [-1396.85, -2196.48], [-1397.01, -2200.5], [-1396.17, -2200.53], [-1396.31, -2204.19], [-1397.52, -2204.14], [-1398.07, -2218.29], [-1397.71, -2218.3], [-1398.02, -2226.18], [-1401.94, -2226.23], [-1402.28, -2236.14], [-1399.5, -2236.26], [-1399.63, -2238.94], [-1398.43, -2239.02], [-1398.78, -2247.18], [-1400.85, -2247.07], [-1400.98, -2249.72], [-1408.67, -2249.33], [-1408.52, -2242.11], [-1412.23, -2241.89], [-1412.14, -2238.85], [-1417.71, -2238.74], [-1417.7, -2236.24], [-1422.39, -2236.05], [-1422.26, -2233.28], [-1423.73, -2233.2], [-1423.56, -2230.11], [-1424.03, -2230.13], [-1422.57, -2196.99], [-1422.22, -2189.21], [-1421.69, -2189.23], [-1421.38, -2182.42], [-1423.08, -2182.28], [-1422.73, -2174.46], [-1420.52, -2174.51], [-1420.49, -2171.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 691, "jobs": 0}}, {"shape": {"outer": [[-1294.43, -2236.37], [-1327.94, -2254.47], [-1307.72, -2291.61], [-1306.23, -2294.35], [-1303.65, -2299.1], [-1273.32, -2282.73], [-1275.43, -2278.87], [-1272.24, -2277.14], [-1294.43, -2236.37]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1228}}, {"shape": {"outer": [[2093.77, 1593.61], [2087.88, 1599.39], [2096.22, 1607.81], [2097.1, 1606.94], [2098.4, 1608.24], [2102.99, 1603.73], [2101.69, 1602.42], [2102.1, 1602.03], [2093.77, 1593.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2097.32, 1592.74], [2101.9, 1588.3], [2109.11, 1595.67], [2107.22, 1597.5], [2108.62, 1598.93], [2105.93, 1601.54], [2097.32, 1592.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2114.8, 1573.13], [2109.54, 1578.17], [2117.98, 1586.91], [2123.24, 1581.87], [2114.8, 1573.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2118.87, 1566.49], [2119.49, 1565.87], [2118.25, 1564.63], [2121.75, 1561.18], [2122.99, 1562.44], [2124.4, 1561.04], [2126.96, 1563.64], [2127.27, 1563.33], [2130.67, 1566.76], [2130.35, 1567.06], [2133.13, 1569.86], [2132.86, 1570.11], [2134.29, 1571.55], [2129.23, 1576.51], [2127.89, 1575.16], [2127.68, 1575.37], [2124.97, 1572.63], [2124.41, 1573.18], [2120.94, 1569.68], [2121.5, 1569.13], [2118.87, 1566.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2125.85, 1558.26], [2131.81, 1552.19], [2143.27, 1563.35], [2137.31, 1569.42], [2125.85, 1558.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2138.09, 1552.52], [2143.61, 1546.59], [2151.85, 1554.19], [2146.33, 1560.13], [2138.09, 1552.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2110.47, 1595.05], [2113.68, 1591.9], [2111.01, 1589.2], [2111.73, 1588.49], [2107.47, 1584.18], [2103.55, 1588.05], [2110.47, 1595.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2381.22, 2445.45], [2385.24, 2441.53], [2383.59, 2439.87], [2384.11, 2439.37], [2374.89, 2430.0], [2368.85, 2435.9], [2378.0, 2445.19], [2378.66, 2444.56], [2379.59, 2445.5], [2380.45, 2444.67], [2381.22, 2445.45]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1894.47, 1853.86], [1890.61, 1857.91], [1892.31, 1859.52], [1891.81, 1860.02], [1901.36, 1869.07], [1907.18, 1862.94], [1897.71, 1854.0], [1897.07, 1854.65], [1896.1, 1853.74], [1895.27, 1854.6], [1894.47, 1853.86]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2018.21, 1260.55], [2027.7, 1271.91], [2050.4, 1253.07], [2040.9, 1241.71], [2018.21, 1260.55]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.279, "pop": 0, "jobs": 279}}, {"shape": {"outer": [[2774.96, 2610.82], [2776.37, 2612.13], [2782.01, 2606.05], [2791.92, 2594.89], [2787.23, 2590.2], [2784.15, 2594.01], [2782.15, 2591.59], [2780.13, 2593.43], [2777.86, 2591.28], [2773.57, 2591.4], [2771.43, 2593.53], [2769.49, 2593.73], [2767.15, 2590.2], [2765.69, 2587.25], [2763.74, 2586.3], [2760.58, 2586.73], [2757.22, 2589.58], [2748.54, 2598.35], [2759.03, 2608.67], [2756.43, 2611.29], [2762.71, 2617.46], [2765.79, 2614.34], [2769.01, 2617.52], [2771.7, 2614.8], [2772.49, 2615.58], [2774.88, 2613.15], [2773.75, 2612.05], [2774.96, 2610.82]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.468, "pop": 0, "jobs": 468}}, {"shape": {"outer": [[-2033.01, -1786.34], [-2040.82, -1786.15], [-2041.01, -1793.92], [-2033.2, -1794.12], [-2033.01, -1786.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2048.07, -1778.52], [-2058.79, -1778.08], [-2059.02, -1783.61], [-2061.69, -1783.5], [-2062.33, -1799.22], [-2052.89, -1799.6], [-2052.63, -1793.04], [-2049.99, -1793.15], [-2049.85, -1789.84], [-2048.54, -1789.89], [-2048.07, -1778.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-2044.89, -1765.93], [-2045.09, -1776.35], [-2034.96, -1776.53], [-2034.87, -1771.76], [-2035.82, -1771.74], [-2035.71, -1766.11], [-2044.89, -1765.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2030.43, -1754.02], [-2041.94, -1753.71], [-2042.08, -1758.97], [-2045.0, -1758.88], [-2045.14, -1763.94], [-2030.7, -1764.32], [-2030.43, -1754.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2039.25, -1741.54], [-2039.26, -1742.8], [-2043.92, -1742.74], [-2043.99, -1748.61], [-2039.26, -1748.67], [-2039.3, -1751.8], [-2029.45, -1751.92], [-2029.33, -1741.66], [-2039.25, -1741.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2034.84, -1729.32], [-2034.99, -1738.71], [-2029.14, -1738.81], [-2029.17, -1740.68], [-2023.08, -1740.77], [-2022.89, -1729.52], [-2034.84, -1729.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2060.79, -1728.39], [-2060.89, -1736.31], [-2052.28, -1736.41], [-2052.19, -1728.5], [-2060.79, -1728.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1991.26, -1833.69], [-1996.05, -1833.58], [-1996.08, -1834.98], [-1997.56, -1834.95], [-1997.61, -1836.75], [-2003.7, -1836.59], [-2003.93, -1845.78], [-2001.73, -1845.83], [-2002.19, -1864.12], [-1997.96, -1864.23], [-1998.02, -1866.02], [-1990.17, -1866.22], [-1990.14, -1864.67], [-1984.62, -1864.81], [-1983.92, -1836.98], [-1991.34, -1836.79], [-1991.26, -1833.69]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.344, "pop": 0, "jobs": 344}}, {"shape": {"outer": [[-1676.17, -1549.57], [-1676.38, -1555.43], [-1681.82, -1555.23], [-1681.62, -1549.38], [-1676.17, -1549.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1685.19, -1535.55], [-1685.49, -1541.77], [-1680.18, -1542.04], [-1679.88, -1535.81], [-1685.19, -1535.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1678.81, -1535.62], [-1678.87, -1541.89], [-1674.55, -1541.92], [-1674.49, -1535.66], [-1678.81, -1535.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1699.44, -1530.63], [-1699.55, -1538.09], [-1692.65, -1538.19], [-1692.55, -1530.74], [-1699.44, -1530.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1698.85, -1503.02], [-1699.24, -1517.25], [-1694.34, -1517.38], [-1694.26, -1514.68], [-1691.55, -1514.76], [-1691.24, -1503.24], [-1698.85, -1503.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1659.93, -1532.93], [-1672.59, -1532.6], [-1672.76, -1539.2], [-1660.1, -1539.53], [-1659.93, -1532.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1690.27, -1551.64], [-1690.66, -1560.48], [-1683.5, -1560.79], [-1683.11, -1551.96], [-1690.27, -1551.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1667.21, -1550.19], [-1667.39, -1557.58], [-1658.59, -1557.78], [-1658.42, -1550.4], [-1667.21, -1550.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1633.32, -1537.0], [-1633.42, -1544.72], [-1619.68, -1544.9], [-1619.57, -1537.19], [-1633.32, -1537.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1617.78, -1521.57], [-1618.25, -1529.71], [-1609.87, -1530.18], [-1609.4, -1522.06], [-1617.78, -1521.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1622.89, -1524.37], [-1633.66, -1524.21], [-1633.77, -1531.75], [-1623.0, -1531.92], [-1622.89, -1524.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1628.79, -1512.68], [-1628.79, -1519.01], [-1619.13, -1519.0], [-1619.14, -1512.66], [-1628.79, -1512.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-1618.56, -1502.14], [-1618.49, -1512.84], [-1610.26, -1512.79], [-1610.32, -1502.09], [-1618.56, -1502.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1621.58, -1502.56], [-1621.57, -1507.87], [-1627.47, -1507.88], [-1627.47, -1509.43], [-1633.69, -1509.44], [-1633.71, -1501.01], [-1627.95, -1501.0], [-1627.95, -1502.56], [-1621.58, -1502.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1669.18, -1520.5], [-1669.29, -1527.63], [-1657.74, -1527.81], [-1657.64, -1520.66], [-1663.71, -1520.58], [-1663.7, -1519.1], [-1667.75, -1519.05], [-1667.77, -1520.52], [-1669.18, -1520.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1664.94, -1502.89], [-1665.24, -1513.56], [-1656.06, -1513.81], [-1655.77, -1503.16], [-1664.94, -1502.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1685.87, -1505.27], [-1686.17, -1515.7], [-1676.83, -1515.97], [-1676.53, -1505.54], [-1685.87, -1505.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1843.87, -1499.17], [-1844.1, -1516.64], [-1842.85, -1516.66], [-1842.88, -1519.47], [-1837.65, -1519.53], [-1837.62, -1517.03], [-1835.9, -1517.06], [-1835.72, -1502.2], [-1838.89, -1502.17], [-1838.85, -1499.23], [-1843.87, -1499.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-1849.48, -1523.09], [-1849.57, -1528.32], [-1845.12, -1528.4], [-1845.03, -1523.16], [-1849.48, -1523.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1833.81, -1526.0], [-1834.08, -1532.3], [-1828.06, -1532.55], [-1827.79, -1526.25], [-1833.81, -1526.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1804.36, -1527.11], [-1804.5, -1535.3], [-1785.89, -1535.64], [-1785.82, -1531.85], [-1788.19, -1531.81], [-1788.11, -1527.41], [-1804.36, -1527.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1818.35, -1535.54], [-1818.49, -1539.04], [-1824.77, -1538.8], [-1824.64, -1535.31], [-1818.35, -1535.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1836.82, -1532.76], [-1844.3, -1532.61], [-1844.43, -1538.79], [-1836.94, -1538.94], [-1836.82, -1532.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1833.74, -1499.53], [-1834.03, -1510.21], [-1824.68, -1510.46], [-1824.39, -1499.79], [-1833.74, -1499.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1852.17, -1498.96], [-1852.15, -1504.21], [-1853.46, -1504.22], [-1853.44, -1511.2], [-1852.2, -1511.19], [-1852.2, -1512.87], [-1848.35, -1512.85], [-1848.36, -1511.42], [-1845.56, -1511.41], [-1845.6, -1498.94], [-1852.17, -1498.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1721.1, -1532.93], [-1721.23, -1538.85], [-1711.89, -1539.06], [-1711.76, -1533.14], [-1721.1, -1532.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1748.43, -1534.07], [-1748.52, -1540.23], [-1742.97, -1540.32], [-1742.88, -1534.15], [-1748.43, -1534.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1750.58, -1530.07], [-1761.53, -1529.89], [-1761.66, -1537.8], [-1758.45, -1537.85], [-1758.48, -1539.67], [-1750.73, -1539.79], [-1750.58, -1530.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1557.31, -1701.45], [-1557.45, -1713.64], [-1565.25, -1713.55], [-1565.1, -1701.35], [-1557.31, -1701.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1574.12, -1704.75], [-1574.2, -1712.75], [-1567.06, -1712.83], [-1566.98, -1704.82], [-1574.12, -1704.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1576.61, -1715.36], [-1575.89, -1696.2], [-1580.54, -1696.03], [-1580.7, -1700.15], [-1582.18, -1700.1], [-1582.74, -1715.13], [-1576.61, -1715.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1594.2, -1697.33], [-1594.27, -1700.58], [-1598.2, -1700.51], [-1598.44, -1713.73], [-1586.44, -1713.96], [-1586.2, -1700.74], [-1589.72, -1700.67], [-1589.66, -1697.41], [-1594.2, -1697.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1601.48, -1702.6], [-1609.79, -1702.46], [-1609.96, -1713.34], [-1606.12, -1713.4], [-1606.15, -1715.66], [-1601.68, -1715.73], [-1601.48, -1702.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1620.11, -1715.33], [-1619.84, -1700.41], [-1612.32, -1700.54], [-1612.49, -1709.69], [-1613.35, -1709.67], [-1613.45, -1715.45], [-1620.11, -1715.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1635.07, -1701.36], [-1635.16, -1713.73], [-1623.19, -1713.81], [-1623.11, -1701.45], [-1635.07, -1701.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1955.61, 799.55], [1965.42, 788.58], [1959.08, 782.96], [1949.28, 793.92], [1955.61, 799.55]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1951.33, 789.22], [1960.06, 779.23], [1953.68, 773.7], [1944.95, 783.69], [1951.33, 789.22]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1637.68, 700.96], [1644.11, 694.18], [1639.82, 690.14], [1633.39, 696.93], [1637.68, 700.96]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1957.95, 801.78], [1968.21, 790.44], [1975.35, 796.85], [1965.09, 808.19], [1957.95, 801.78]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2054.04, 1391.07], [2061.14, 1397.28], [2067.1, 1391.5], [2060.15, 1384.95], [2054.04, 1391.07]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2047.95, 1374.87], [2052.59, 1379.71], [2058.86, 1373.6], [2054.2, 1368.44], [2047.95, 1374.87]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2086.26, 1351.15], [2087.64, 1334.24], [2095.76, 1327.59], [2113.41, 1329.82], [2112.21, 1345.42], [2113.81, 1347.4], [2110.97, 1350.16], [2115.34, 1355.61], [2117.85, 1353.99], [2129.52, 1368.64], [2122.46, 1373.48], [2114.66, 1363.85], [2111.23, 1366.37], [2102.12, 1354.52], [2086.26, 1351.15]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.549, "pop": 0, "jobs": 549}}, {"shape": {"outer": [[2828.82, 1854.53], [2833.13, 1835.72], [2846.21, 1838.7], [2841.9, 1857.5], [2828.82, 1854.53]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.217, "pop": 0, "jobs": 217}}, {"shape": {"outer": [[2828.82, 1854.53], [2819.91, 1852.5], [2824.21, 1833.7], [2833.13, 1835.72], [2828.82, 1854.53]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.049, "pop": 0, "jobs": 49}}, {"shape": {"outer": [[2802.97, 1848.54], [2811.02, 1850.45], [2814.96, 1834.07], [2814.44, 1833.94], [2814.93, 1831.91], [2809.11, 1830.53], [2808.58, 1832.76], [2806.86, 1832.35], [2804.84, 1840.77], [2802.97, 1848.54]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.085, "pop": 0, "jobs": 85}}, {"shape": {"outer": [[2802.97, 1848.54], [2804.84, 1840.77], [2802.08, 1840.12], [2801.33, 1843.25], [2795.94, 1841.97], [2794.82, 1846.6], [2802.97, 1848.54]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2765.19, -492.03], [-2759.08, -492.21], [-2759.2, -496.56], [-2765.54, -496.38], [-2765.19, -492.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1973.7, 816.83], [1984.52, 805.04], [1977.66, 798.8], [1966.97, 810.46], [1968.69, 812.02], [1966.91, 813.96], [1969.69, 816.49], [1971.35, 814.69], [1973.7, 816.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1981.91, 827.38], [1993.02, 814.93], [1985.03, 807.85], [1974.27, 819.91], [1976.64, 822.02], [1974.92, 823.95], [1978.96, 827.53], [1980.33, 825.98], [1981.91, 827.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2001.28, 836.85], [2008.52, 828.63], [2007.26, 827.52], [2009.56, 824.91], [2005.6, 821.44], [2003.39, 823.95], [2001.63, 822.41], [1994.3, 830.73], [2001.28, 836.85]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1940.93, 786.12], [1950.98, 775.29], [1949.15, 773.59], [1951.34, 771.24], [1947.29, 767.51], [1945.06, 769.92], [1943.38, 768.36], [1933.37, 779.15], [1940.93, 786.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[1934.0, 776.54], [1942.57, 767.03], [1936.76, 761.84], [1928.19, 771.35], [1934.0, 776.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1926.13, 773.02], [1936.41, 761.35], [1929.47, 755.29], [1919.19, 766.94], [1926.13, 773.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1918.4, 765.88], [1928.87, 754.35], [1927.74, 753.32], [1926.25, 751.98], [1921.94, 748.09], [1911.47, 759.63], [1918.4, 765.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1911.74, 754.33], [1914.7, 751.12], [1916.61, 752.88], [1919.54, 749.71], [1917.13, 747.5], [1918.37, 746.15], [1914.81, 742.87], [1907.67, 750.59], [1911.74, 754.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1903.2, 753.59], [1915.5, 740.41], [1914.29, 739.29], [1912.74, 737.85], [1907.76, 733.23], [1895.45, 746.42], [1903.2, 753.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[1893.97, 739.46], [1902.88, 729.75], [1895.48, 722.99], [1886.56, 732.7], [1893.97, 739.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1878.18, 730.37], [1888.97, 718.35], [1880.01, 710.36], [1869.23, 722.38], [1878.18, 730.37]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[2922.11, 1920.36], [2926.7, 1901.68], [2918.5, 1899.54], [2913.98, 1918.15], [2922.11, 1920.36]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.091, "pop": 0, "jobs": 91}}, {"shape": {"outer": [[2916.24, 1900.56], [2912.36, 1915.84], [2904.3, 1913.8], [2908.18, 1898.53], [2916.24, 1900.56]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2905.24, 1896.18], [2902.2, 1909.49], [2895.47, 1907.97], [2898.51, 1894.66], [2905.24, 1896.18]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2888.26, 1890.86], [2885.88, 1900.54], [2879.52, 1899.0], [2881.97, 1889.26], [2888.26, 1890.86]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2881.97, 1889.26], [2879.52, 1899.0], [2878.88, 1901.51], [2873.02, 1900.04], [2873.36, 1898.69], [2870.23, 1897.9], [2871.29, 1893.67], [2865.93, 1892.33], [2867.61, 1885.67], [2881.97, 1889.26]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2888.98, -639.72], [-2889.28, -649.9], [-2887.09, -649.96], [-2887.13, -651.59], [-2881.9, -651.74], [-2881.85, -650.11], [-2879.12, -650.19], [-2879.0, -646.1], [-2876.55, -646.17], [-2876.37, -640.09], [-2888.98, -639.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2843.78, -639.34], [-2844.29, -653.81], [-2838.98, -653.99], [-2838.91, -652.18], [-2835.5, -652.3], [-2835.04, -639.65], [-2835.76, -639.63], [-2835.68, -637.53], [-2842.56, -637.28], [-2842.64, -639.37], [-2843.78, -639.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2864.5, -683.33], [-2865.04, -698.81], [-2860.21, -698.99], [-2860.13, -696.63], [-2855.74, -696.78], [-2855.28, -683.66], [-2855.98, -683.62], [-2855.87, -680.38], [-2860.35, -680.22], [-2860.46, -683.47], [-2864.5, -683.33]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2936.34, -682.43], [-2929.2, -682.62], [-2929.37, -688.74], [-2925.14, -688.87], [-2925.36, -696.63], [-2929.5, -696.52], [-2929.53, -697.34], [-2936.15, -697.16], [-2936.03, -692.81], [-2937.56, -692.76], [-2937.41, -687.77], [-2936.49, -687.78], [-2936.34, -682.43]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2919.78, -638.78], [-2915.96, -638.92], [-2915.88, -636.9], [-2912.0, -637.06], [-2912.08, -639.08], [-2910.68, -639.14], [-2911.27, -653.93], [-2913.76, -653.84], [-2913.85, -656.18], [-2917.78, -656.02], [-2917.69, -653.68], [-2920.37, -653.57], [-2919.78, -638.78]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-2844.17, -684.83], [-2844.52, -693.71], [-2847.19, -693.6], [-2847.42, -699.45], [-2841.09, -699.7], [-2841.16, -701.25], [-2837.71, -701.38], [-2837.65, -699.84], [-2833.99, -699.97], [-2833.6, -690.05], [-2836.71, -689.93], [-2836.53, -685.13], [-2844.17, -684.83]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2901.59, -683.41], [-2901.83, -693.62], [-2896.17, -693.76], [-2896.2, -694.84], [-2888.88, -695.01], [-2888.82, -692.89], [-2886.15, -692.96], [-2885.95, -684.53], [-2888.47, -684.47], [-2888.45, -683.72], [-2895.06, -683.56], [-2895.02, -682.43], [-2900.54, -682.31], [-2900.57, -683.43], [-2901.59, -683.41]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2949.22, -633.33], [-2940.65, -633.72], [-2941.11, -643.81], [-2943.44, -643.7], [-2943.51, -645.11], [-2941.45, -646.46], [-2941.57, -649.18], [-2943.75, -650.28], [-2943.84, -652.19], [-2945.31, -652.13], [-2945.37, -653.48], [-2949.74, -653.28], [-2949.62, -650.71], [-2951.97, -650.61], [-2951.71, -644.8], [-2949.75, -644.89], [-2949.22, -633.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2915.12, -683.42], [-2915.63, -694.98], [-2904.6, -695.46], [-2904.1, -683.9], [-2915.12, -683.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2890.1, -659.57], [-2883.39, -659.76], [-2883.58, -666.5], [-2890.3, -666.31], [-2890.1, -659.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2818.58, -685.46], [-2818.69, -689.23], [-2810.78, -689.48], [-2810.65, -685.71], [-2818.58, -685.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2897.67, -660.28], [-2897.84, -667.09], [-2891.67, -667.25], [-2891.5, -660.44], [-2897.67, -660.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2884.47, -669.03], [-2884.64, -676.85], [-2876.4, -677.03], [-2876.23, -669.21], [-2884.47, -669.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2865.91, -660.1], [-2861.1, -660.24], [-2861.34, -668.55], [-2866.15, -668.42], [-2865.91, -660.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2866.07, -673.25], [-2862.65, -673.36], [-2862.87, -680.87], [-2866.29, -680.77], [-2866.07, -673.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2837.56, -677.41], [-2837.3, -672.13], [-2831.57, -672.39], [-2831.83, -677.69], [-2837.56, -677.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2811.22, -657.77], [-2801.88, -658.11], [-2802.24, -668.17], [-2811.58, -667.82], [-2811.22, -657.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2829.27, -651.57], [-2823.45, -651.83], [-2823.92, -662.43], [-2829.74, -662.17], [-2829.27, -651.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2856.01, -660.73], [-2859.87, -660.59], [-2860.15, -668.79], [-2856.3, -668.92], [-2856.01, -660.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2935.21, -633.92], [-2925.97, -634.29], [-2926.74, -653.44], [-2935.97, -653.06], [-2935.21, -633.92]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2833.23, -652.91], [-2829.46, -653.05], [-2829.66, -658.81], [-2833.43, -658.68], [-2833.23, -652.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2814.19, -692.05], [-2814.4, -697.51], [-2815.1, -697.47], [-2815.29, -702.4], [-2803.12, -702.87], [-2802.73, -692.5], [-2814.19, -692.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2940.26, -676.06], [-2940.04, -669.3], [-2936.43, -669.42], [-2936.32, -666.16], [-2925.12, -666.55], [-2925.47, -676.56], [-2940.26, -676.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2874.02, -640.31], [-2874.27, -648.96], [-2867.73, -649.15], [-2867.81, -651.93], [-2862.89, -652.07], [-2862.56, -640.64], [-2874.02, -640.31]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2818.34, -640.68], [-2818.55, -648.27], [-2812.86, -648.43], [-2812.89, -649.44], [-2803.34, -649.71], [-2803.03, -638.66], [-2811.19, -638.43], [-2811.25, -640.88], [-2818.34, -640.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2882.81, -684.37], [-2883.04, -693.99], [-2869.05, -694.35], [-2868.8, -684.73], [-2875.63, -684.56], [-2875.6, -683.33], [-2880.18, -683.22], [-2880.22, -684.45], [-2882.81, -684.37]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2970.56, -628.87], [-2970.85, -639.19], [-2957.5, -639.57], [-2957.47, -638.67], [-2953.59, -638.78], [-2953.36, -630.79], [-2957.24, -630.68], [-2957.2, -629.25], [-2970.56, -628.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2857.94, -638.74], [-2858.72, -656.04], [-2849.59, -656.44], [-2848.81, -639.15], [-2850.11, -639.1], [-2850.0, -636.57], [-2856.61, -636.27], [-2856.72, -638.8], [-2857.94, -638.74]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2904.04, -639.12], [-2904.4, -649.59], [-2898.19, -649.81], [-2898.1, -647.4], [-2894.06, -647.54], [-2893.75, -638.41], [-2900.85, -638.17], [-2900.88, -639.23], [-2904.04, -639.12]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2828.67, -692.73], [-2828.93, -700.77], [-2826.16, -700.86], [-2826.19, -702.07], [-2819.03, -702.3], [-2818.66, -690.85], [-2822.84, -690.7], [-2822.91, -692.91], [-2828.67, -692.73]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2809.82, -672.08], [-2801.92, -672.33], [-2802.25, -683.21], [-2803.99, -683.16], [-2804.05, -685.19], [-2809.29, -685.03], [-2809.23, -682.99], [-2810.16, -682.97], [-2809.82, -672.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-3011.98, -642.17], [-3015.97, -649.68], [-3011.2, -652.19], [-3013.16, -655.89], [-3007.0, -659.15], [-3005.92, -657.13], [-2999.33, -660.61], [-2995.18, -652.8], [-3001.01, -649.73], [-3000.28, -648.34], [-3011.98, -642.17]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-3028.93, -679.4], [-3028.76, -674.69], [-3017.45, -675.1], [-3017.6, -678.86], [-3015.72, -678.94], [-3015.96, -685.41], [-3017.82, -685.34], [-3017.9, -687.41], [-3026.42, -687.11], [-3026.15, -679.51], [-3028.93, -679.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2992.75, -671.01], [-2985.97, -671.25], [-2986.22, -678.09], [-2981.78, -678.25], [-2981.92, -681.98], [-2979.71, -682.06], [-2979.75, -683.29], [-2976.03, -683.43], [-2976.24, -689.14], [-2979.95, -689.0], [-2980.0, -690.15], [-2991.6, -689.73], [-2991.28, -680.83], [-2993.54, -680.76], [-2993.44, -677.91], [-2993.01, -677.93], [-2992.75, -671.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-3029.87, -656.43], [-3035.92, -656.0], [-3036.32, -661.48], [-3030.27, -661.92], [-3029.87, -656.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-3034.0, -632.51], [-3034.47, -645.16], [-3032.86, -645.22], [-3032.96, -648.06], [-3021.95, -648.48], [-3021.74, -642.94], [-3020.94, -642.97], [-3020.57, -633.01], [-3034.0, -632.51]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2898.88, -487.14], [-2898.98, -489.57], [-2901.63, -489.46], [-2901.92, -496.15], [-2897.19, -496.35], [-2897.32, -499.37], [-2886.9, -499.82], [-2886.38, -487.68], [-2888.11, -487.61], [-2887.99, -484.87], [-2894.1, -484.6], [-2894.21, -487.34], [-2898.88, -487.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-3026.07, -540.88], [-3015.98, -546.51], [-3014.04, -543.06], [-3013.36, -543.45], [-3012.98, -542.77], [-3009.7, -544.6], [-3006.69, -539.23], [-3009.97, -537.4], [-3009.24, -536.1], [-3021.08, -529.5], [-3024.93, -536.36], [-3023.87, -536.96], [-3026.07, -540.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-3017.9, -523.38], [-3010.65, -530.66], [-3009.98, -529.98], [-3006.66, -533.31], [-3003.65, -530.33], [-2999.36, -534.63], [-2994.54, -529.86], [-2998.83, -525.55], [-2997.66, -524.41], [-3008.22, -513.81], [-3012.46, -518.0], [-3011.96, -518.5], [-3013.43, -519.96], [-3013.94, -519.46], [-3017.9, -523.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-2983.24, -493.14], [-2973.65, -484.05], [-2966.71, -491.34], [-2968.91, -493.43], [-2965.98, -496.51], [-2964.19, -494.83], [-2959.56, -499.69], [-2964.0, -503.89], [-2965.06, -502.79], [-2969.77, -507.25], [-2973.12, -503.74], [-2973.99, -504.56], [-2980.64, -497.58], [-2980.31, -497.27], [-2982.36, -495.13], [-2981.82, -494.61], [-2983.24, -493.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[-2984.63, -584.08], [-2978.96, -593.8], [-2974.93, -591.46], [-2974.4, -592.37], [-2971.36, -590.61], [-2971.88, -589.71], [-2967.4, -587.11], [-2971.65, -579.81], [-2973.0, -580.58], [-2974.19, -578.53], [-2976.11, -579.64], [-2976.32, -579.28], [-2978.2, -580.35], [-2979.05, -578.89], [-2982.37, -580.81], [-2981.51, -582.27], [-2984.63, -584.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-3017.74, -592.84], [-3012.71, -586.04], [-3011.19, -587.15], [-3009.62, -585.03], [-3008.98, -585.5], [-3008.51, -584.88], [-3003.21, -583.27], [-3001.8, -587.92], [-3005.02, -588.58], [-3006.92, -591.14], [-3003.44, -593.7], [-3003.78, -594.14], [-3001.03, -596.17], [-3004.74, -601.19], [-3007.49, -599.17], [-3008.06, -599.94], [-3011.57, -597.36], [-3012.04, -598.01], [-3014.32, -596.33], [-3013.84, -595.69], [-3017.74, -592.84]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2945.03, -521.4], [-2941.23, -517.51], [-2936.46, -522.13], [-2940.25, -526.02], [-2945.03, -521.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2966.82, -583.87], [-2971.79, -576.6], [-2962.5, -570.28], [-2957.52, -577.56], [-2966.82, -583.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2938.19, -493.89], [-2950.05, -498.04], [-2946.88, -507.04], [-2935.01, -502.88], [-2938.19, -493.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2969.74, -481.98], [-2963.8, -490.83], [-2951.97, -482.93], [-2957.91, -474.08], [-2969.74, -481.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2961.82, -516.29], [-2956.52, -522.05], [-2948.27, -514.51], [-2953.58, -508.74], [-2961.82, -516.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2976.4, -523.5], [-2972.18, -519.14], [-2967.34, -523.8], [-2971.57, -528.15], [-2976.4, -523.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2959.97, -565.01], [-2951.69, -557.28], [-2942.31, -567.24], [-2950.58, -574.97], [-2959.97, -565.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2996.57, -589.99], [-2995.08, -594.93], [-2996.96, -595.5], [-2995.35, -600.81], [-2987.99, -598.61], [-2988.41, -597.21], [-2983.51, -595.74], [-2986.17, -586.89], [-2996.57, -589.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2945.54, -544.85], [-2951.75, -550.43], [-2943.91, -559.09], [-2942.52, -557.84], [-2940.19, -560.42], [-2936.97, -557.54], [-2939.3, -554.96], [-2937.71, -553.52], [-2945.54, -544.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2938.72, -535.41], [-2931.95, -529.34], [-2920.77, -541.69], [-2927.54, -547.77], [-2933.27, -541.43], [-2934.36, -542.39], [-2936.79, -539.7], [-2935.71, -538.73], [-2938.72, -535.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-2993.68, -505.03], [-2984.1, -514.42], [-2975.09, -505.3], [-2984.67, -495.91], [-2987.36, -498.62], [-2988.2, -497.79], [-2991.35, -500.98], [-2990.51, -501.81], [-2993.68, -505.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-3028.76, -570.26], [-3020.87, -568.55], [-3018.43, -579.69], [-3021.02, -580.25], [-3020.36, -583.31], [-3024.48, -584.21], [-3025.11, -581.31], [-3026.29, -581.57], [-3028.76, -570.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2874.66, -419.03], [-2866.82, -436.37], [-2861.36, -433.93], [-2863.53, -429.11], [-2860.4, -427.7], [-2859.78, -429.07], [-2854.7, -426.79], [-2859.4, -416.39], [-2864.82, -418.82], [-2866.4, -415.32], [-2874.66, -419.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[-2947.64, -408.46], [-2947.19, -419.74], [-2934.98, -419.26], [-2935.03, -418.09], [-2930.49, -417.91], [-2930.9, -407.79], [-2933.5, -407.9], [-2933.62, -404.99], [-2943.63, -405.39], [-2943.52, -408.3], [-2947.64, -408.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-3008.36, -462.47], [-3007.25, -463.54], [-3009.54, -465.9], [-3005.28, -470.02], [-2994.94, -459.42], [-3000.55, -454.0], [-3003.71, -457.25], [-3005.11, -455.9], [-3008.53, -459.43], [-3006.92, -461.0], [-3008.36, -462.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2849.62, -412.97], [-2840.73, -409.93], [-2839.97, -412.08], [-2838.07, -412.9], [-2837.42, -414.78], [-2835.31, -415.68], [-2833.87, -419.86], [-2834.97, -421.87], [-2834.42, -423.45], [-2835.51, -424.99], [-2844.42, -428.05], [-2849.62, -412.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-3025.0, -474.69], [-3018.78, -480.94], [-3013.93, -476.16], [-3014.5, -475.58], [-3013.07, -474.17], [-3010.76, -476.49], [-3006.51, -472.29], [-3014.47, -464.29], [-3017.82, -467.61], [-3020.48, -464.94], [-3026.18, -470.58], [-3023.53, -473.24], [-3025.0, -474.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-2917.48, -434.66], [-2918.99, -441.61], [-2902.52, -445.17], [-2901.73, -441.56], [-2898.41, -442.28], [-2896.5, -433.47], [-2899.04, -432.92], [-2900.28, -431.68], [-2903.85, -430.91], [-2905.01, -431.64], [-2910.51, -430.44], [-2911.69, -435.91], [-2917.48, -434.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-3040.76, -484.61], [-3040.38, -485.22], [-3041.64, -485.97], [-3039.5, -489.5], [-3038.23, -488.74], [-3035.21, -493.7], [-3026.08, -488.18], [-3031.62, -479.08], [-3033.37, -480.14], [-3038.6, -471.59], [-3043.37, -474.47], [-3038.16, -483.03], [-3040.76, -484.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-3066.47, -441.72], [-3065.25, -444.1], [-3066.19, -444.58], [-3065.55, -445.83], [-3070.34, -448.26], [-3066.91, -454.98], [-3062.12, -452.53], [-3061.65, -453.44], [-3048.12, -446.55], [-3052.45, -438.1], [-3055.66, -439.74], [-3057.09, -436.95], [-3066.47, -441.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-2818.38, -398.08], [-2818.08, -399.84], [-2820.31, -400.21], [-2818.79, -409.14], [-2816.78, -408.79], [-2816.38, -411.16], [-2810.33, -410.15], [-2811.11, -405.56], [-2807.56, -404.96], [-2807.78, -403.67], [-2805.54, -403.29], [-2806.5, -397.58], [-2808.75, -397.96], [-2808.99, -396.5], [-2818.38, -398.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2994.36, -406.62], [-2993.49, -418.96], [-2992.94, -418.92], [-2992.66, -422.87], [-2982.88, -422.19], [-2983.11, -418.79], [-2980.74, -418.63], [-2978.51, -416.62], [-2978.71, -413.83], [-2981.25, -411.48], [-2981.65, -405.73], [-2983.5, -405.86], [-2983.71, -402.96], [-2993.45, -403.64], [-2993.24, -406.54], [-2994.36, -406.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-2822.86, -449.13], [-2822.99, -457.95], [-2811.31, -458.14], [-2811.17, -449.3], [-2822.86, -449.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2803.78, -395.68], [-2802.39, -404.23], [-2789.71, -402.21], [-2791.1, -393.64], [-2803.78, -395.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2799.96, -426.0], [-2792.15, -426.22], [-2792.43, -435.91], [-2800.24, -435.68], [-2799.96, -426.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2791.39, -441.76], [-2800.95, -441.48], [-2801.23, -451.28], [-2791.67, -451.55], [-2791.39, -441.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2850.49, -450.4], [-2848.09, -457.08], [-2842.02, -454.9], [-2844.42, -448.23], [-2850.49, -450.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2821.94, -417.25], [-2815.88, -417.39], [-2816.05, -425.33], [-2822.11, -425.19], [-2821.94, -417.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2829.74, -422.3], [-2823.53, -422.39], [-2823.61, -429.19], [-2829.82, -429.11], [-2829.74, -422.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2973.69, -444.24], [-2978.25, -438.43], [-2969.75, -431.81], [-2965.2, -437.63], [-2973.69, -444.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2872.16, -451.41], [-2869.77, -458.3], [-2868.1, -457.72], [-2866.45, -462.47], [-2857.92, -459.53], [-2861.95, -447.89], [-2872.16, -451.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2862.78, -468.14], [-2857.07, -466.19], [-2856.07, -469.09], [-2852.11, -467.74], [-2847.59, -480.88], [-2857.26, -484.19], [-2862.78, -468.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2998.74, -448.28], [-2992.61, -454.99], [-2985.11, -448.17], [-2988.05, -444.95], [-2985.65, -442.77], [-2988.84, -439.29], [-2998.74, -448.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2975.29, -406.68], [-2975.76, -413.91], [-2958.91, -415.0], [-2958.28, -405.31], [-2971.21, -404.49], [-2971.37, -406.93], [-2975.29, -406.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-3034.15, -424.41], [-3027.88, -434.95], [-3029.73, -436.03], [-3026.78, -440.99], [-3019.76, -436.85], [-3021.66, -433.64], [-3015.23, -429.85], [-3022.52, -417.57], [-3034.15, -424.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[-3067.85, -540.92], [-3068.27, -549.28], [-3066.61, -549.36], [-3066.82, -553.66], [-3065.76, -553.71], [-3065.92, -556.79], [-3057.89, -557.19], [-3057.73, -553.94], [-3056.98, -553.97], [-3056.37, -541.48], [-3067.85, -540.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-3117.17, -580.29], [-3117.49, -589.59], [-3105.43, -590.0], [-3105.36, -588.1], [-3102.53, -588.19], [-3102.33, -582.11], [-3105.16, -582.0], [-3105.11, -580.7], [-3111.31, -580.49], [-3111.27, -579.34], [-3116.25, -579.17], [-3116.28, -580.33], [-3117.17, -580.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-3120.26, -576.58], [-3122.89, -576.43], [-3122.65, -571.93], [-3127.93, -571.64], [-3128.18, -576.14], [-3132.68, -575.9], [-3132.97, -581.19], [-3128.87, -581.42], [-3129.28, -588.83], [-3130.37, -588.77], [-3130.56, -592.45], [-3124.32, -592.79], [-3124.15, -589.71], [-3121.0, -589.88], [-3120.26, -576.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-3078.88, -560.28], [-3070.92, -560.56], [-3071.21, -568.61], [-3079.16, -568.33], [-3078.88, -560.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-3100.71, -587.88], [-3101.09, -596.07], [-3088.31, -596.65], [-3087.94, -588.46], [-3100.71, -587.88]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-3077.63, -589.24], [-3078.05, -596.91], [-3067.19, -597.52], [-3066.69, -588.6], [-3073.96, -588.19], [-3074.03, -589.45], [-3077.63, -589.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-3088.14, -551.0], [-3087.82, -544.88], [-3084.94, -545.03], [-3084.67, -539.94], [-3073.46, -540.53], [-3074.05, -551.74], [-3088.14, -551.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-3121.74, -544.23], [-3112.03, -544.51], [-3112.3, -554.03], [-3118.26, -563.61], [-3123.56, -559.81], [-3119.35, -554.1], [-3122.02, -553.75], [-3121.74, -544.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-3102.59, -539.49], [-3103.07, -547.86], [-3099.48, -548.08], [-3099.61, -550.36], [-3095.64, -550.6], [-3095.5, -548.3], [-3092.06, -548.5], [-3091.58, -540.11], [-3102.59, -539.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-3064.09, -578.19], [-3055.43, -576.68], [-3053.18, -589.54], [-3053.93, -589.67], [-3053.28, -593.4], [-3059.84, -594.55], [-3060.5, -590.81], [-3061.84, -591.05], [-3064.09, -578.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-3047.39, -631.65], [-3047.84, -642.43], [-3047.46, -642.44], [-3047.58, -645.23], [-3042.14, -645.47], [-3042.02, -642.68], [-3037.55, -642.86], [-3037.08, -632.11], [-3037.86, -632.07], [-3037.73, -628.95], [-3043.82, -628.7], [-3043.96, -631.8], [-3047.39, -631.65]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-3062.47, -669.68], [-3062.99, -681.98], [-3050.75, -682.5], [-3050.23, -670.2], [-3051.15, -670.16], [-3051.05, -667.81], [-3056.24, -667.58], [-3056.34, -669.94], [-3062.47, -669.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2810.52, -544.62], [-2797.86, -545.09], [-2798.01, -549.12], [-2796.25, -549.18], [-2796.44, -554.41], [-2798.2, -554.33], [-2798.35, -558.35], [-2811.0, -557.89], [-2810.8, -552.29], [-2812.33, -552.23], [-2812.1, -545.76], [-2810.56, -545.82], [-2810.52, -544.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-2930.49, -589.98], [-2922.84, -596.72], [-2930.24, -605.06], [-2931.82, -603.67], [-2932.2, -604.09], [-2938.56, -606.15], [-2940.25, -600.33], [-2937.65, -599.29], [-2938.67, -598.4], [-2936.86, -596.36], [-2935.68, -597.4], [-2932.94, -594.32], [-2933.73, -593.63], [-2930.49, -589.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2813.4, -601.0], [-2813.42, -601.59], [-2815.09, -601.53], [-2815.22, -605.18], [-2814.76, -605.21], [-2814.91, -609.12], [-2813.7, -609.15], [-2813.72, -609.95], [-2800.12, -610.44], [-2800.09, -609.43], [-2798.78, -609.48], [-2798.5, -601.53], [-2800.19, -601.47], [-2800.13, -599.98], [-2810.67, -599.6], [-2810.73, -601.09], [-2813.4, -601.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2826.38, -501.64], [-2821.59, -508.32], [-2811.21, -500.95], [-2816.01, -494.26], [-2826.38, -501.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2810.46, -563.73], [-2810.88, -576.04], [-2798.81, -576.45], [-2798.4, -564.13], [-2810.46, -563.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2803.04, -504.78], [-2793.97, -505.02], [-2794.27, -516.37], [-2803.35, -516.13], [-2803.04, -504.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2793.58, -482.32], [-2802.16, -482.06], [-2802.5, -493.49], [-2793.92, -493.75], [-2793.58, -482.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2847.11, -517.27], [-2842.14, -524.0], [-2830.79, -515.69], [-2835.75, -508.96], [-2847.11, -517.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2863.99, -578.14], [-2870.93, -577.84], [-2871.27, -585.41], [-2864.32, -585.71], [-2863.99, -578.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2898.94, -596.46], [-2899.47, -607.3], [-2888.56, -607.84], [-2888.03, -596.99], [-2898.94, -596.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2856.21, -517.77], [-2849.45, -525.76], [-2861.14, -535.59], [-2867.91, -527.61], [-2856.21, -517.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2908.33, -567.62], [-2900.72, -575.45], [-2892.7, -567.72], [-2900.31, -559.89], [-2908.33, -567.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2897.19, -554.33], [-2889.61, -562.37], [-2886.13, -559.12], [-2884.26, -561.1], [-2879.64, -556.79], [-2881.52, -554.8], [-2879.56, -552.98], [-2887.13, -544.92], [-2897.19, -554.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2862.6, -590.44], [-2862.91, -605.85], [-2852.04, -606.07], [-2851.71, -589.38], [-2858.92, -589.24], [-2858.95, -590.51], [-2862.6, -590.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2915.61, -592.87], [-2907.09, -593.22], [-2907.57, -605.24], [-2914.09, -604.98], [-2913.92, -600.72], [-2915.92, -600.64], [-2915.61, -592.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2844.57, -595.03], [-2844.95, -606.38], [-2830.26, -606.86], [-2829.84, -593.96], [-2836.57, -593.74], [-2836.52, -592.33], [-2840.67, -592.2], [-2840.77, -595.16], [-2844.57, -595.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-2811.63, -593.27], [-2811.13, -582.23], [-2799.29, -582.77], [-2799.47, -586.59], [-2797.4, -586.68], [-2797.66, -592.23], [-2799.73, -592.14], [-2799.8, -593.81], [-2811.63, -593.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2881.87, -593.79], [-2874.91, -594.1], [-2875.1, -598.4], [-2872.5, -598.52], [-2872.79, -605.09], [-2875.39, -604.98], [-2875.53, -608.02], [-2882.5, -607.71], [-2881.87, -593.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2810.39, -537.76], [-2810.15, -529.76], [-2791.31, -530.31], [-2791.55, -538.31], [-2801.74, -538.0], [-2801.77, -538.99], [-2807.18, -538.84], [-2807.15, -537.85], [-2810.39, -537.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2870.32, -366.38], [-2868.57, -376.71], [-2852.54, -374.02], [-2854.29, -363.69], [-2859.1, -364.49], [-2859.33, -363.14], [-2863.65, -363.86], [-2863.86, -362.58], [-2869.33, -363.5], [-2868.89, -366.14], [-2870.32, -366.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-2917.78, -368.39], [-2915.06, -384.69], [-2912.98, -384.35], [-2912.55, -386.94], [-2906.15, -385.89], [-2906.58, -383.29], [-2904.4, -382.93], [-2907.13, -366.63], [-2908.81, -366.91], [-2909.31, -363.97], [-2916.63, -365.18], [-2916.14, -368.12], [-2917.78, -368.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-2911.85, -317.29], [-2903.83, -316.02], [-2901.73, -329.14], [-2909.74, -330.41], [-2911.85, -317.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2874.51, -319.49], [-2872.9, -329.58], [-2859.79, -327.51], [-2861.39, -317.42], [-2874.51, -319.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2887.11, -328.17], [-2880.26, -327.2], [-2878.9, -336.77], [-2885.74, -337.74], [-2887.11, -328.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2857.41, -344.16], [-2867.61, -345.57], [-2865.98, -357.23], [-2855.78, -355.81], [-2857.41, -344.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-3054.56, -359.65], [-3049.6, -358.89], [-3050.39, -353.85], [-3055.35, -354.62], [-3054.56, -359.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2947.42, -358.36], [-2956.43, -358.98], [-2955.52, -371.83], [-2946.51, -371.2], [-2947.42, -358.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2940.84, -324.06], [-2939.48, -332.95], [-2929.02, -331.38], [-2930.38, -322.47], [-2940.84, -324.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2929.23, -342.85], [-2925.47, -342.25], [-2924.59, -347.65], [-2928.34, -348.27], [-2929.23, -342.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-3006.52, -360.99], [-3005.32, -371.28], [-2992.11, -369.76], [-2993.3, -359.45], [-3006.52, -360.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2901.77, -336.34], [-2900.4, -343.54], [-2892.43, -342.02], [-2893.81, -334.84], [-2901.77, -336.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2925.05, -340.03], [-2919.31, -339.04], [-2917.95, -346.8], [-2923.69, -347.8], [-2925.05, -340.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2899.5, -315.32], [-2890.84, -314.01], [-2888.56, -328.92], [-2892.91, -329.57], [-2893.46, -325.93], [-2897.78, -326.59], [-2899.5, -315.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-3050.0, -340.36], [-3048.23, -353.06], [-3043.37, -352.4], [-3043.66, -350.29], [-3034.66, -349.05], [-3036.13, -338.45], [-3050.0, -340.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2972.97, -332.7], [-2972.69, -334.73], [-2976.07, -335.18], [-2975.14, -342.08], [-2962.16, -340.34], [-2963.37, -331.41], [-2972.97, -332.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-3029.78, -334.54], [-3025.91, -342.55], [-3015.09, -337.36], [-3015.48, -336.57], [-3012.83, -335.31], [-3015.85, -329.06], [-3018.49, -330.33], [-3018.97, -329.35], [-3029.78, -334.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2978.92, -368.53], [-2979.62, -357.96], [-2969.5, -357.31], [-2969.25, -361.07], [-2965.52, -360.83], [-2964.98, -369.03], [-2974.38, -369.64], [-2974.47, -368.23], [-2978.92, -368.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2897.81, -372.71], [-2896.15, -381.96], [-2883.76, -379.77], [-2884.46, -375.88], [-2881.66, -375.38], [-2883.44, -365.39], [-2893.86, -367.25], [-2893.04, -371.86], [-2897.81, -372.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2924.49, -322.02], [-2922.07, -336.65], [-2913.25, -335.2], [-2915.66, -320.57], [-2916.52, -320.7], [-2916.9, -318.41], [-2923.98, -319.57], [-2923.6, -321.86], [-2924.49, -322.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2956.35, -330.2], [-2954.76, -340.03], [-2943.51, -338.22], [-2945.09, -328.4], [-2950.12, -329.2], [-2950.74, -325.38], [-2955.24, -326.1], [-2954.62, -329.93], [-2956.35, -330.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3063.89, -367.68], [-3061.75, -382.07], [-3060.53, -381.89], [-3060.27, -383.63], [-3056.7, -383.11], [-3056.97, -381.36], [-3049.18, -380.22], [-3050.92, -368.52], [-3051.65, -368.63], [-3052.17, -365.15], [-3060.85, -366.42], [-3060.73, -367.21], [-3063.89, -367.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-3140.05, -349.88], [-3138.83, -356.88], [-3136.14, -356.41], [-3135.58, -359.68], [-3122.46, -357.41], [-3122.75, -355.79], [-3121.4, -355.56], [-3120.74, -359.32], [-3115.25, -358.37], [-3116.26, -352.63], [-3123.09, -353.81], [-3124.26, -347.14], [-3140.05, -349.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-3130.52, -400.87], [-3128.78, -410.59], [-3118.23, -408.71], [-3119.97, -398.99], [-3130.52, -400.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-3095.46, -350.48], [-3104.83, -352.19], [-3102.23, -366.36], [-3092.86, -364.66], [-3095.46, -350.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-3113.34, -391.76], [-3112.02, -400.62], [-3099.36, -398.75], [-3101.04, -387.44], [-3110.06, -388.77], [-3109.69, -391.23], [-3113.34, -391.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-3095.18, -389.94], [-3093.67, -399.92], [-3084.79, -398.58], [-3084.94, -397.56], [-3081.63, -397.06], [-3082.66, -390.33], [-3085.96, -390.83], [-3086.31, -388.59], [-3095.18, -389.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-3078.96, -386.84], [-3077.39, -397.28], [-3065.81, -395.54], [-3066.07, -393.81], [-3062.93, -393.35], [-3063.95, -386.6], [-3067.09, -387.08], [-3067.38, -385.1], [-3078.96, -386.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-3133.19, -715.94], [-3133.25, -717.24], [-3135.48, -717.14], [-3135.94, -727.14], [-3133.72, -727.25], [-3133.76, -728.04], [-3121.38, -728.61], [-3121.17, -724.45], [-3120.08, -724.5], [-3119.72, -716.56], [-3133.19, -715.94]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-3098.69, -675.44], [-3099.04, -684.97], [-3086.52, -685.42], [-3086.6, -687.59], [-3079.58, -687.84], [-3079.16, -676.15], [-3088.49, -675.82], [-3088.4, -673.54], [-3094.62, -673.32], [-3094.71, -675.59], [-3098.69, -675.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-3031.9, -725.41], [-3032.18, -732.75], [-3030.9, -732.8], [-3031.06, -736.94], [-3024.57, -737.19], [-3024.41, -733.05], [-3016.67, -733.35], [-3016.25, -722.32], [-3028.86, -721.83], [-3029.01, -725.52], [-3031.9, -725.41]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-3099.26, -768.29], [-3099.71, -776.6], [-3086.32, -777.31], [-3086.27, -776.41], [-3084.11, -776.53], [-3083.77, -770.28], [-3085.94, -770.18], [-3085.88, -769.0], [-3088.17, -768.88], [-3087.86, -763.18], [-3095.67, -762.76], [-3095.98, -768.47], [-3099.26, -768.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-3135.18, -734.19], [-3135.24, -735.34], [-3137.66, -735.23], [-3138.23, -747.18], [-3135.81, -747.31], [-3135.87, -748.63], [-3121.69, -749.31], [-3121.42, -743.67], [-3118.98, -743.78], [-3118.73, -738.67], [-3121.17, -738.55], [-3121.0, -734.87], [-3135.18, -734.19]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-2984.35, -777.94], [-2984.64, -785.47], [-2976.64, -785.78], [-2976.67, -786.76], [-2972.15, -786.93], [-2972.1, -785.96], [-2968.71, -786.09], [-2968.36, -776.88], [-2975.86, -776.59], [-2975.93, -778.28], [-2978.38, -778.18], [-2978.31, -776.33], [-2980.66, -776.24], [-2980.73, -778.09], [-2984.35, -777.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-3105.03, -723.99], [-3105.44, -732.57], [-3099.93, -732.84], [-3100.14, -737.09], [-3094.3, -737.37], [-3094.09, -733.13], [-3092.03, -733.23], [-3091.61, -724.65], [-3096.03, -724.43], [-3096.0, -723.67], [-3098.26, -723.56], [-3098.2, -722.41], [-3103.79, -722.14], [-3103.89, -724.04], [-3105.03, -723.99]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-3116.29, -732.32], [-3116.59, -740.87], [-3107.09, -741.2], [-3106.79, -732.65], [-3116.29, -732.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-3119.89, -770.65], [-3120.44, -779.3], [-3105.5, -780.24], [-3104.96, -771.59], [-3119.89, -770.65]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2990.04, -725.78], [-2990.4, -733.81], [-2983.42, -734.11], [-2983.05, -726.1], [-2990.04, -725.78]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-3026.77, -761.39], [-3016.97, -761.91], [-3017.45, -770.99], [-3027.26, -770.47], [-3026.77, -761.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-3084.17, -653.04], [-3079.09, -653.19], [-3079.27, -659.55], [-3084.35, -659.41], [-3084.17, -653.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2996.67, -771.65], [-2990.7, -771.9], [-2991.06, -780.55], [-2997.03, -780.3], [-2996.67, -771.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-3121.55, -756.32], [-3125.51, -756.13], [-3125.88, -763.36], [-3121.92, -763.56], [-3121.55, -756.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2988.36, -771.73], [-2983.5, -771.87], [-2983.65, -776.82], [-2988.51, -776.68], [-2988.36, -771.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-3127.3, -763.65], [-3137.08, -763.19], [-3137.66, -775.15], [-3127.87, -775.61], [-3127.3, -763.65]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-3085.7, -724.3], [-3086.54, -739.25], [-3073.42, -739.98], [-3072.97, -732.05], [-3070.12, -732.21], [-3069.72, -725.2], [-3085.7, -724.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-2981.81, -739.64], [-2982.27, -749.22], [-2970.5, -749.79], [-2970.33, -746.46], [-2968.03, -746.57], [-2967.73, -740.31], [-2981.81, -739.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-3081.65, -631.41], [-3069.52, -632.07], [-3070.22, -645.07], [-3078.25, -644.62], [-3077.95, -639.13], [-3082.06, -638.91], [-3081.65, -631.41]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-3016.79, -764.35], [-3006.68, -764.84], [-3006.91, -769.45], [-3003.61, -769.61], [-3004.27, -782.89], [-3017.67, -782.23], [-3016.79, -764.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-3114.12, -751.71], [-3114.39, -758.05], [-3103.15, -758.54], [-3102.84, -751.23], [-3108.46, -750.98], [-3108.5, -751.95], [-3114.12, -751.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-3133.02, -624.79], [-3133.48, -638.69], [-3125.46, -638.96], [-3125.37, -636.16], [-3119.9, -636.34], [-3119.54, -625.24], [-3133.02, -624.79]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-3066.9, -738.38], [-3066.34, -726.23], [-3059.35, -726.55], [-3059.47, -729.21], [-3056.67, -729.34], [-3056.69, -729.81], [-3048.26, -730.18], [-3048.67, -739.2], [-3066.9, -738.38]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-3065.27, -768.81], [-3065.8, -778.65], [-3054.83, -779.25], [-3054.09, -765.4], [-3059.75, -765.09], [-3059.88, -767.38], [-3062.29, -767.26], [-3062.38, -768.96], [-3065.27, -768.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-3046.57, -771.76], [-3047.02, -780.87], [-3035.61, -781.43], [-3035.16, -772.32], [-3037.5, -772.21], [-3037.05, -763.17], [-3043.93, -762.84], [-3044.38, -771.87], [-3046.57, -771.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-3099.08, -629.96], [-3099.44, -639.6], [-3096.57, -639.7], [-3096.68, -642.81], [-3088.83, -643.11], [-3088.71, -640.0], [-3086.5, -640.08], [-3086.14, -630.45], [-3099.08, -629.96]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3133.39, -677.38], [-3133.99, -689.8], [-3120.55, -690.43], [-3120.49, -689.28], [-3117.55, -689.42], [-3117.07, -679.3], [-3118.82, -679.22], [-3118.77, -678.08], [-3133.39, -677.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-2974.25, -724.12], [-2974.82, -735.17], [-2964.78, -735.67], [-2964.21, -724.62], [-2968.2, -724.43], [-2968.16, -723.53], [-2972.8, -723.29], [-2972.84, -724.19], [-2974.25, -724.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-3010.02, -727.2], [-3010.52, -737.84], [-3006.3, -738.04], [-3006.55, -743.26], [-2999.69, -743.58], [-2999.44, -738.32], [-2998.57, -738.37], [-2998.06, -727.77], [-3010.02, -727.2]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-3006.32, -820.58], [-2996.43, -820.94], [-2996.48, -822.14], [-2995.22, -822.19], [-2995.65, -833.6], [-3006.79, -833.19], [-3006.66, -829.8], [-3010.24, -829.67], [-3010.02, -823.69], [-3006.44, -823.82], [-3006.32, -820.58]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2959.65, -912.78], [-2960.22, -923.25], [-2954.76, -923.54], [-2954.91, -926.32], [-2948.04, -926.7], [-2947.32, -913.45], [-2953.95, -913.09], [-2953.85, -911.05], [-2958.91, -910.78], [-2959.03, -912.81], [-2959.65, -912.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2864.59, -915.01], [-2863.47, -922.53], [-2859.01, -921.87], [-2859.14, -920.99], [-2850.04, -919.65], [-2851.87, -907.4], [-2859.63, -908.55], [-2859.22, -911.35], [-2861.9, -911.75], [-2861.48, -914.56], [-2864.59, -915.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2897.98, -913.18], [-2897.9, -922.34], [-2896.0, -922.33], [-2895.96, -927.23], [-2889.11, -927.17], [-2889.18, -918.98], [-2886.43, -918.96], [-2886.47, -914.44], [-2889.22, -914.46], [-2889.23, -913.11], [-2897.98, -913.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-3015.66, -927.75], [-3010.53, -927.55], [-3010.48, -928.89], [-3006.26, -928.72], [-3006.12, -932.16], [-3008.57, -932.25], [-3008.5, -933.95], [-3008.12, -933.92], [-3007.62, -946.42], [-3014.9, -946.71], [-3015.66, -927.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-3089.79, -815.04], [-3098.01, -814.66], [-3098.22, -819.05], [-3100.62, -818.94], [-3100.97, -826.29], [-3090.84, -826.77], [-3091.04, -831.05], [-3087.79, -831.2], [-3087.47, -824.53], [-3090.23, -824.39], [-3089.79, -815.04]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2912.05, -914.35], [-2912.34, -922.79], [-2911.59, -922.82], [-2911.74, -927.1], [-2903.59, -927.37], [-2903.46, -923.09], [-2901.37, -923.16], [-2901.01, -912.79], [-2907.3, -912.58], [-2907.36, -914.51], [-2912.05, -914.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-3073.09, -857.13], [-3073.44, -868.04], [-3072.14, -868.09], [-3072.19, -869.41], [-3070.97, -869.45], [-3071.01, -870.56], [-3062.94, -870.83], [-3062.85, -868.21], [-3060.72, -868.28], [-3060.36, -857.56], [-3073.09, -857.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-3102.01, -973.57], [-3099.0, -981.22], [-3095.66, -979.91], [-3095.35, -980.71], [-3094.7, -980.46], [-3093.01, -984.78], [-3088.51, -983.02], [-3090.2, -978.7], [-3089.19, -978.31], [-3093.3, -967.86], [-3097.88, -969.65], [-3097.09, -971.65], [-3102.01, -973.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-3040.3, -915.82], [-3039.7, -917.05], [-3042.09, -918.22], [-3040.3, -921.87], [-3037.91, -920.7], [-3036.59, -923.4], [-3034.14, -922.21], [-3032.27, -926.06], [-3022.89, -921.5], [-3025.19, -916.79], [-3026.91, -917.63], [-3030.19, -910.92], [-3040.3, -915.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2912.12, -824.4], [-2912.2, -826.31], [-2913.77, -826.25], [-2913.93, -830.38], [-2912.37, -830.45], [-2912.45, -832.47], [-2908.82, -832.62], [-2908.88, -834.12], [-2905.66, -834.25], [-2905.6, -832.74], [-2902.7, -832.86], [-2902.37, -824.79], [-2912.12, -824.4]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-3134.55, -940.17], [-3134.76, -948.8], [-3131.08, -948.88], [-3131.11, -949.8], [-3127.56, -949.88], [-3127.53, -948.97], [-3123.35, -949.07], [-3123.32, -948.17], [-3120.62, -948.24], [-3120.49, -943.06], [-3123.2, -942.99], [-3123.14, -940.44], [-3134.55, -940.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-3009.75, -868.02], [-3010.15, -877.09], [-3001.36, -877.47], [-3001.3, -876.24], [-2998.16, -876.38], [-2997.96, -871.71], [-3001.1, -871.57], [-3000.96, -868.4], [-3004.23, -868.26], [-3004.18, -867.32], [-3007.9, -867.16], [-3007.94, -868.11], [-3009.75, -868.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2820.76, -827.8], [-2817.33, -827.92], [-2817.24, -825.54], [-2812.71, -825.7], [-2812.79, -828.08], [-2812.29, -828.1], [-2812.47, -833.16], [-2811.67, -833.19], [-2811.8, -836.71], [-2818.06, -836.49], [-2818.16, -839.22], [-2821.16, -839.11], [-2820.76, -827.8]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2845.93, -908.33], [-2844.67, -911.68], [-2846.99, -912.55], [-2845.22, -917.29], [-2842.89, -916.42], [-2842.7, -916.94], [-2832.52, -913.16], [-2833.53, -910.46], [-2831.59, -909.74], [-2833.45, -904.78], [-2835.38, -905.5], [-2835.74, -904.55], [-2845.93, -908.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-3056.94, -945.84], [-3049.71, -944.78], [-3048.92, -950.15], [-3046.65, -949.82], [-3046.39, -951.6], [-3040.85, -950.8], [-3040.38, -954.02], [-3039.72, -953.93], [-3038.37, -963.08], [-3052.72, -965.18], [-3054.42, -953.66], [-3055.76, -953.86], [-3056.94, -945.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-3129.07, -856.1], [-3127.32, -856.16], [-3127.22, -853.51], [-3122.14, -853.69], [-3122.24, -856.34], [-3121.23, -856.38], [-3121.37, -860.5], [-3116.91, -860.66], [-3117.11, -866.23], [-3113.39, -866.36], [-3113.59, -872.0], [-3129.61, -871.43], [-3129.07, -856.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-2914.65, -867.48], [-2909.67, -867.64], [-2909.71, -868.96], [-2908.28, -869.0], [-2908.36, -871.51], [-2904.76, -871.62], [-2905.07, -882.25], [-2905.89, -882.23], [-2905.96, -884.76], [-2914.05, -884.52], [-2913.96, -881.99], [-2915.1, -881.95], [-2914.65, -867.48]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3076.75, -959.64], [-3072.62, -965.78], [-3072.24, -965.53], [-3067.58, -972.47], [-3062.59, -969.14], [-3065.97, -964.1], [-3062.82, -962.0], [-3063.42, -961.1], [-3060.9, -959.42], [-3064.9, -953.48], [-3067.42, -955.16], [-3068.23, -953.95], [-3076.75, -959.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-3144.93, -905.63], [-3145.24, -917.61], [-3143.82, -917.65], [-3143.88, -920.0], [-3138.53, -920.13], [-3138.47, -917.78], [-3136.55, -917.83], [-3136.25, -905.86], [-3137.05, -905.84], [-3137.0, -903.55], [-3141.25, -903.44], [-3141.31, -905.73], [-3144.93, -905.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-3039.49, -866.91], [-3039.66, -872.31], [-3040.67, -872.27], [-3040.8, -876.46], [-3036.33, -876.6], [-3036.25, -874.17], [-3028.75, -874.41], [-3028.47, -865.61], [-3029.45, -865.58], [-3029.38, -863.41], [-3036.69, -863.17], [-3036.79, -866.24], [-3038.31, -866.18], [-3038.34, -866.95], [-3039.49, -866.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2987.71, -866.07], [-2989.18, -867.66], [-2989.26, -870.49], [-2988.31, -871.65], [-2988.52, -878.89], [-2985.57, -878.98], [-2985.58, -879.24], [-2973.78, -879.58], [-2973.72, -877.52], [-2970.83, -877.6], [-2970.62, -870.32], [-2973.51, -870.23], [-2973.45, -867.94], [-2982.24, -867.69], [-2982.2, -866.23], [-2987.71, -866.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-2920.74, -933.43], [-2913.89, -933.75], [-2914.21, -940.48], [-2921.05, -940.17], [-2920.74, -933.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2838.28, -847.72], [-2838.09, -843.77], [-2830.22, -844.17], [-2830.42, -848.11], [-2838.28, -847.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2862.79, -837.32], [-2859.29, -837.45], [-2859.52, -843.28], [-2863.01, -843.14], [-2862.79, -837.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-3045.45, -856.1], [-3055.71, -855.53], [-3056.79, -875.15], [-3046.53, -875.72], [-3045.45, -856.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-2887.9, -853.75], [-2892.76, -853.61], [-2892.94, -859.6], [-2888.08, -859.74], [-2887.9, -853.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2851.52, -861.71], [-2854.69, -861.58], [-2854.52, -857.71], [-2851.36, -857.85], [-2851.52, -861.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[-3047.46, -840.48], [-3041.76, -840.71], [-3042.0, -846.64], [-3047.7, -846.42], [-3047.46, -840.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2830.15, -903.75], [-2826.59, -903.68], [-2826.43, -910.42], [-2829.99, -910.51], [-2830.15, -903.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-3117.69, -936.52], [-3117.86, -943.9], [-3107.47, -944.15], [-3107.29, -936.76], [-3117.69, -936.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-3019.44, -840.7], [-3025.5, -840.52], [-3025.67, -846.68], [-3019.62, -846.85], [-3019.44, -840.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2887.04, -836.95], [-2883.5, -837.08], [-2883.71, -842.58], [-2887.25, -842.44], [-2887.04, -836.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-3041.25, -839.15], [-3041.6, -846.65], [-3031.72, -847.1], [-3031.38, -839.6], [-3041.25, -839.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-3083.47, -984.96], [-3080.72, -991.08], [-3074.62, -988.37], [-3077.38, -982.24], [-3083.47, -984.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-3130.73, -934.61], [-3130.83, -937.98], [-3125.75, -938.13], [-3125.65, -934.75], [-3130.73, -934.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-3058.08, -816.33], [-3066.18, -815.94], [-3066.72, -826.98], [-3058.62, -827.37], [-3058.08, -816.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-3101.64, -982.77], [-3098.08, -981.39], [-3095.92, -986.91], [-3099.48, -988.29], [-3101.64, -982.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2968.38, -942.58], [-2961.62, -942.83], [-2961.88, -949.55], [-2968.63, -949.29], [-2968.38, -942.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-3148.34, -945.18], [-3148.57, -952.91], [-3139.07, -953.2], [-3138.84, -945.47], [-3148.34, -945.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2879.64, -913.25], [-2879.18, -922.01], [-2869.79, -921.53], [-2870.24, -912.77], [-2879.64, -913.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-3038.4, -816.2], [-3028.7, -816.62], [-3029.32, -830.6], [-3039.03, -830.17], [-3038.4, -816.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2980.02, -851.26], [-2980.26, -859.69], [-2971.25, -859.95], [-2971.01, -851.52], [-2980.02, -851.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2895.75, -928.86], [-2899.67, -928.78], [-2899.79, -934.67], [-2895.87, -934.75], [-2895.75, -928.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2989.66, -865.13], [-2994.96, -864.91], [-2995.23, -871.37], [-2989.94, -871.6], [-2989.66, -865.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2847.72, -826.59], [-2848.13, -835.06], [-2839.76, -835.45], [-2839.35, -827.0], [-2847.72, -826.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2933.89, -936.11], [-2928.54, -936.26], [-2928.75, -943.87], [-2934.1, -943.72], [-2933.89, -936.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2843.76, -856.0], [-2838.95, -856.25], [-2839.31, -863.21], [-2844.12, -862.96], [-2843.76, -856.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-3082.73, -848.37], [-3089.9, -853.75], [-3084.71, -860.62], [-3077.55, -855.25], [-3082.73, -848.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2895.74, -836.22], [-2899.07, -836.1], [-2899.27, -841.81], [-2895.94, -841.93], [-2895.74, -836.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-2850.43, -838.48], [-2847.17, -838.59], [-2847.35, -843.97], [-2850.61, -843.87], [-2850.43, -838.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-2915.39, -853.66], [-2920.03, -853.52], [-2920.18, -858.81], [-2915.54, -858.94], [-2915.39, -853.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2903.62, -835.76], [-2899.24, -835.96], [-2899.52, -841.95], [-2903.9, -841.74], [-2903.62, -835.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2992.2, -941.94], [-2984.83, -942.26], [-2985.16, -949.65], [-2992.52, -949.32], [-2992.2, -941.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2875.04, -837.07], [-2871.39, -837.22], [-2871.63, -843.04], [-2875.28, -842.89], [-2875.04, -837.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-3146.07, -847.0], [-3146.21, -851.68], [-3139.05, -851.88], [-3138.91, -847.21], [-3146.07, -847.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2834.98, -837.58], [-2838.65, -837.43], [-2838.86, -843.09], [-2835.2, -843.23], [-2834.98, -837.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-3148.5, -990.25], [-3146.38, -997.03], [-3137.22, -994.19], [-3139.36, -987.39], [-3148.5, -990.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-3146.59, -855.8], [-3135.37, -856.18], [-3135.76, -867.93], [-3146.99, -867.55], [-3146.59, -855.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2826.86, -899.59], [-2817.97, -894.7], [-2812.85, -903.93], [-2821.75, -908.82], [-2826.86, -899.59]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-3147.98, -939.97], [-3147.85, -935.38], [-3141.57, -935.56], [-3141.7, -940.15], [-3147.98, -939.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2982.37, -909.49], [-2982.84, -920.75], [-2980.2, -920.87], [-2980.62, -930.87], [-2970.25, -931.3], [-2969.36, -910.03], [-2982.37, -909.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.2, "pop": 100, "jobs": 0}}, {"shape": {"outer": [[-2887.43, -867.7], [-2878.29, -868.02], [-2878.82, -883.1], [-2880.98, -883.03], [-2881.04, -884.75], [-2888.02, -884.5], [-2887.43, -867.7]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-3052.68, -820.82], [-3052.86, -830.54], [-3043.63, -830.72], [-3043.38, -817.43], [-3050.42, -817.31], [-3050.49, -820.86], [-3052.68, -820.82]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-3132.53, -984.72], [-3129.54, -993.43], [-3121.09, -990.55], [-3124.84, -979.62], [-3132.63, -982.27], [-3131.86, -984.49], [-3132.53, -984.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-3117.85, -813.85], [-3118.05, -821.89], [-3103.25, -822.26], [-3103.03, -813.61], [-3109.31, -813.45], [-3109.33, -814.06], [-3117.85, -813.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-3087.39, -968.48], [-3084.35, -974.46], [-3081.4, -972.97], [-3079.2, -977.3], [-3073.17, -974.25], [-3078.4, -963.95], [-3087.39, -968.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-3101.38, -907.71], [-3101.86, -920.65], [-3093.18, -920.96], [-3092.6, -905.38], [-3098.99, -905.14], [-3099.09, -907.8], [-3101.38, -907.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3014.36, -912.6], [-3006.29, -912.22], [-3005.55, -927.62], [-3010.21, -927.84], [-3010.37, -924.54], [-3013.78, -924.7], [-3014.36, -912.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-3084.2, -816.34], [-3084.57, -824.85], [-3073.82, -825.32], [-3073.39, -815.42], [-3079.66, -815.14], [-3079.72, -816.54], [-3084.2, -816.34]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2926.3, -914.82], [-2916.52, -915.21], [-2916.85, -923.36], [-2919.95, -923.24], [-2920.18, -928.96], [-2926.86, -928.69], [-2926.3, -914.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2872.19, -825.83], [-2872.58, -834.0], [-2864.4, -834.4], [-2863.87, -823.58], [-2868.24, -823.36], [-2868.36, -826.02], [-2872.19, -825.83]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2851.04, -866.4], [-2851.56, -878.56], [-2842.89, -878.93], [-2842.44, -868.54], [-2845.49, -868.41], [-2845.41, -866.64], [-2851.04, -866.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2895.95, -824.62], [-2896.32, -833.01], [-2893.48, -833.13], [-2893.66, -837.11], [-2888.74, -837.33], [-2888.2, -824.97], [-2895.95, -824.62]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-3025.68, -867.48], [-3025.93, -876.3], [-3017.08, -876.56], [-3017.06, -875.63], [-3013.78, -875.73], [-3013.55, -867.83], [-3025.68, -867.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-3116.65, -905.82], [-3116.86, -915.46], [-3111.84, -915.57], [-3111.94, -920.15], [-3106.76, -920.26], [-3106.4, -904.63], [-3113.91, -904.46], [-3113.94, -905.87], [-3116.65, -905.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2884.17, -825.15], [-2875.85, -825.49], [-2876.2, -834.09], [-2877.28, -834.05], [-2877.45, -838.27], [-2882.47, -838.07], [-2882.3, -833.85], [-2884.52, -833.76], [-2884.17, -825.15]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-3116.95, -979.71], [-3115.6, -979.19], [-3116.75, -976.24], [-3110.48, -973.82], [-3109.32, -976.78], [-3108.2, -976.35], [-3103.83, -987.64], [-3112.57, -991.01], [-3116.95, -979.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-3002.13, -912.9], [-3002.55, -926.07], [-3001.46, -926.11], [-3001.5, -927.18], [-2990.05, -927.55], [-2989.95, -924.58], [-2989.29, -924.6], [-2988.91, -913.34], [-3002.13, -912.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-2820.6, -844.91], [-2812.46, -845.14], [-2812.71, -853.57], [-2813.47, -853.55], [-2813.54, -855.84], [-2817.47, -855.73], [-2817.4, -853.44], [-2820.84, -853.34], [-2820.6, -844.91]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2943.86, -870.75], [-2944.37, -880.7], [-2940.43, -880.9], [-2940.57, -883.56], [-2934.74, -883.87], [-2934.0, -869.44], [-2939.35, -869.17], [-2939.45, -870.98], [-2943.86, -870.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2899.82, -872.11], [-2900.3, -884.44], [-2892.07, -884.76], [-2891.57, -872.44], [-2892.39, -872.41], [-2892.27, -869.29], [-2898.43, -869.04], [-2898.56, -872.16], [-2899.82, -872.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-3020.99, -818.25], [-3013.24, -818.52], [-3013.4, -822.97], [-3011.63, -823.03], [-3011.88, -829.88], [-3015.13, -829.76], [-3015.18, -831.07], [-3021.44, -830.85], [-3020.99, -818.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2983.34, -826.33], [-2972.49, -826.77], [-2972.63, -830.27], [-2971.2, -830.33], [-2971.53, -838.72], [-2972.96, -838.67], [-2973.12, -842.6], [-2983.97, -842.17], [-2983.34, -826.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-2927.95, -869.65], [-2918.14, -870.02], [-2918.59, -882.05], [-2919.48, -882.02], [-2919.58, -884.54], [-2927.93, -884.23], [-2927.83, -881.71], [-2928.4, -881.69], [-2927.95, -869.65]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-3088.75, -908.55], [-3080.84, -908.81], [-3081.0, -913.5], [-3078.53, -913.58], [-3078.65, -917.66], [-3079.85, -917.63], [-3080.1, -925.33], [-3089.27, -925.03], [-3088.75, -908.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2835.92, -826.77], [-2836.23, -834.58], [-2825.31, -834.99], [-2825.01, -827.19], [-2828.56, -827.05], [-2828.48, -825.15], [-2832.47, -825.01], [-2832.54, -826.9], [-2835.92, -826.77]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-3031.37, -927.32], [-3030.19, -933.52], [-3026.8, -932.88], [-3027.3, -930.24], [-3024.12, -929.63], [-3025.11, -924.49], [-3029.01, -925.23], [-3028.7, -926.82], [-3031.37, -927.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2836.12, -863.68], [-2834.49, -865.93], [-2836.97, -867.72], [-2833.84, -872.04], [-2820.32, -862.29], [-2823.44, -857.99], [-2826.15, -859.94], [-2827.79, -857.68], [-2836.12, -863.68]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2860.04, -826.32], [-2860.5, -834.88], [-2852.05, -835.33], [-2851.59, -826.78], [-2852.32, -826.73], [-2852.2, -824.4], [-2855.96, -824.19], [-2856.09, -826.54], [-2860.04, -826.32]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2875.64, -871.74], [-2867.41, -872.07], [-2867.54, -875.3], [-2865.55, -875.38], [-2865.71, -879.24], [-2867.69, -879.15], [-2867.8, -881.84], [-2876.03, -881.5], [-2875.64, -871.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2940.06, -912.42], [-2930.87, -912.75], [-2931.31, -925.1], [-2932.81, -926.78], [-2935.92, -926.67], [-2937.28, -924.9], [-2939.15, -924.82], [-2939.05, -921.8], [-2940.39, -921.75], [-2940.06, -912.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2863.12, -870.58], [-2863.6, -881.05], [-2862.18, -882.07], [-2859.01, -882.22], [-2857.93, -881.3], [-2855.0, -881.44], [-2854.47, -869.8], [-2859.38, -869.58], [-2859.44, -870.75], [-2863.12, -870.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2753.78, -931.23], [-2754.01, -940.95], [-2748.66, -941.07], [-2748.74, -944.62], [-2744.18, -944.72], [-2744.23, -946.81], [-2733.13, -947.06], [-2733.01, -941.8], [-2726.58, -941.95], [-2726.35, -931.85], [-2753.78, -931.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[-2785.19, -989.08], [-2776.26, -989.38], [-2776.61, -999.51], [-2785.54, -999.19], [-2785.5, -998.22], [-2786.22, -998.2], [-2786.15, -996.02], [-2787.47, -995.97], [-2787.27, -989.99], [-2785.22, -990.06], [-2785.19, -989.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2722.49, -921.22], [-2719.04, -928.6], [-2709.05, -923.96], [-2709.43, -923.14], [-2707.21, -922.1], [-2710.13, -915.84], [-2713.3, -917.3], [-2713.8, -916.23], [-2721.55, -919.83], [-2721.18, -920.62], [-2722.49, -921.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2782.84, -934.66], [-2778.86, -934.78], [-2779.01, -940.11], [-2782.99, -939.99], [-2782.84, -934.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-2763.59, -1009.16], [-2756.16, -1009.33], [-2756.4, -1020.57], [-2763.83, -1020.42], [-2763.59, -1009.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2764.84, -947.57], [-2758.13, -947.67], [-2758.28, -958.65], [-2764.99, -958.56], [-2764.84, -947.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2785.36, -1002.19], [-2773.64, -1002.56], [-2773.83, -1008.67], [-2775.25, -1008.63], [-2775.36, -1011.85], [-2785.66, -1011.52], [-2785.36, -1002.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2788.45, -1015.07], [-2788.76, -1025.68], [-2769.98, -1026.22], [-2769.78, -1019.52], [-2771.31, -1019.48], [-2771.2, -1015.57], [-2788.45, -1015.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2777.97, -946.05], [-2769.55, -946.28], [-2769.8, -955.58], [-2772.66, -955.5], [-2772.71, -957.81], [-2777.51, -957.68], [-2777.45, -955.38], [-2778.22, -955.37], [-2777.97, -946.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2734.49, -974.77], [-2734.51, -975.74], [-2736.69, -975.69], [-2736.78, -979.79], [-2737.8, -979.76], [-2737.95, -986.41], [-2722.2, -986.77], [-2721.94, -975.06], [-2734.49, -974.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2789.98, -941.08], [-2782.86, -941.24], [-2782.97, -946.68], [-2781.82, -946.72], [-2782.01, -955.13], [-2785.51, -955.05], [-2785.58, -957.9], [-2790.35, -957.8], [-2789.98, -941.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2703.63, -1046.5], [-2696.34, -1040.57], [-2689.58, -1048.79], [-2690.18, -1049.28], [-2687.71, -1052.29], [-2688.43, -1052.88], [-2686.92, -1054.7], [-2691.7, -1058.59], [-2695.66, -1053.77], [-2696.85, -1054.75], [-2703.63, -1046.5]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2621.45, -996.06], [-2631.67, -984.26], [-2624.96, -978.49], [-2614.74, -990.28], [-2621.45, -996.06]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2685.99, -1054.69], [-2681.49, -1051.04], [-2677.55, -1055.87], [-2682.06, -1059.52], [-2685.99, -1054.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2618.86, -1014.99], [-2624.7, -1008.4], [-2612.95, -998.05], [-2607.11, -1004.65], [-2618.86, -1014.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2638.93, -984.92], [-2643.89, -989.19], [-2632.11, -1002.77], [-2627.15, -998.51], [-2637.57, -986.48], [-2638.93, -984.92]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.066, "pop": 0, "jobs": 66}}, {"shape": {"outer": [[-2683.66, -1023.31], [-2695.25, -1033.13], [-2680.59, -1050.32], [-2677.34, -1047.57], [-2671.91, -1053.93], [-2663.58, -1046.87], [-2683.66, -1023.31]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.122, "pop": 0, "jobs": 122}}, {"shape": {"outer": [[-2637.57, -986.48], [-2627.15, -998.51], [-2625.16, -1000.81], [-2620.68, -996.95], [-2621.45, -996.06], [-2631.67, -984.26], [-2633.09, -982.63], [-2637.57, -986.48]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.031, "pop": 0, "jobs": 31}}, {"shape": {"outer": [[-2460.25, -964.99], [-2467.92, -971.65], [-2465.69, -974.21], [-2466.64, -975.03], [-2460.88, -981.62], [-2452.25, -974.13], [-2454.45, -971.63], [-2452.54, -969.97], [-2456.32, -965.64], [-2458.24, -967.29], [-2460.25, -964.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2401.6, -914.14], [-2403.58, -915.83], [-2404.29, -915.01], [-2408.26, -918.39], [-2407.55, -919.21], [-2409.59, -920.95], [-2398.97, -933.33], [-2397.87, -932.38], [-2396.42, -934.07], [-2390.79, -929.29], [-2392.24, -927.59], [-2390.97, -926.51], [-2401.6, -914.14]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2416.88, -929.47], [-2411.23, -936.14], [-2405.36, -931.19], [-2411.01, -924.53], [-2416.88, -929.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2464.11, -894.26], [-2469.28, -898.91], [-2464.13, -904.59], [-2458.97, -899.95], [-2464.11, -894.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2453.51, -906.11], [-2459.15, -911.03], [-2451.33, -919.91], [-2445.7, -914.99], [-2453.51, -906.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2427.99, -949.92], [-2422.11, -956.57], [-2413.69, -949.19], [-2419.59, -942.53], [-2427.99, -949.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2493.33, -945.41], [-2490.97, -948.11], [-2491.89, -948.91], [-2489.45, -951.69], [-2488.55, -950.92], [-2486.72, -953.0], [-2474.62, -942.53], [-2481.24, -934.93], [-2493.33, -945.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2445.39, -900.9], [-2452.23, -906.89], [-2445.89, -914.08], [-2439.05, -908.08], [-2445.39, -900.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2425.92, -932.21], [-2419.68, -939.54], [-2429.17, -947.57], [-2435.42, -940.24], [-2425.92, -932.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2497.31, -934.29], [-2491.43, -941.0], [-2484.52, -934.98], [-2490.4, -928.28], [-2497.31, -934.29]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2463.51, -992.93], [-2458.33, -998.71], [-2451.6, -992.74], [-2456.78, -986.94], [-2463.51, -992.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2402.77, -956.21], [-2406.67, -951.67], [-2401.78, -947.5], [-2397.89, -952.04], [-2402.77, -956.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2419.57, -956.47], [-2412.93, -950.54], [-2406.95, -957.17], [-2409.83, -959.75], [-2408.13, -961.63], [-2411.88, -964.99], [-2419.57, -956.47]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.059, "pop": 0, "jobs": 59}}, {"shape": {"outer": [[-2444.11, -898.7], [-2437.94, -906.02], [-2437.04, -905.27], [-2435.51, -907.09], [-2430.62, -903.0], [-2432.17, -901.18], [-2431.04, -900.23], [-2437.22, -892.92], [-2444.11, -898.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2286.71, -946.52], [-2293.0, -951.78], [-2287.06, -958.81], [-2286.35, -958.21], [-2285.42, -959.33], [-2283.36, -957.6], [-2282.39, -958.75], [-2279.36, -956.21], [-2281.01, -954.26], [-2280.52, -953.85], [-2286.71, -946.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2362.94, -954.89], [-2356.18, -949.28], [-2350.21, -956.42], [-2351.77, -957.71], [-2351.09, -958.53], [-2352.37, -959.59], [-2351.35, -960.82], [-2354.68, -963.58], [-2356.39, -961.54], [-2356.98, -962.03], [-2362.94, -954.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2354.18, -946.49], [-2351.32, -944.03], [-2352.12, -943.1], [-2348.67, -940.12], [-2341.44, -948.45], [-2344.05, -950.69], [-2342.14, -952.88], [-2345.17, -955.5], [-2347.07, -953.31], [-2347.75, -953.89], [-2354.18, -946.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2303.39, -960.22], [-2297.85, -966.72], [-2291.52, -961.36], [-2292.79, -959.88], [-2291.09, -958.43], [-2294.86, -954.0], [-2296.57, -955.45], [-2297.07, -954.87], [-2298.27, -955.88], [-2299.76, -954.12], [-2304.22, -957.91], [-2302.73, -959.66], [-2303.39, -960.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2268.92, -928.85], [-2275.49, -934.86], [-2266.11, -945.03], [-2259.54, -939.02], [-2268.92, -928.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2324.93, -926.94], [-2319.76, -932.65], [-2313.57, -927.11], [-2318.74, -921.39], [-2324.93, -926.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2307.22, -993.3], [-2302.81, -989.51], [-2299.37, -993.49], [-2303.78, -997.28], [-2307.22, -993.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2351.3, -873.49], [-2344.62, -867.99], [-2337.74, -876.29], [-2344.43, -881.79], [-2351.3, -873.49]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2277.82, -937.07], [-2284.6, -943.02], [-2274.74, -954.16], [-2267.96, -948.21], [-2277.82, -937.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2248.6, -910.21], [-2242.35, -904.89], [-2233.59, -915.11], [-2239.84, -920.43], [-2248.6, -910.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2360.43, -932.04], [-2356.08, -928.43], [-2352.48, -932.72], [-2356.83, -936.33], [-2360.43, -932.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2226.17, -920.76], [-2229.95, -924.03], [-2226.19, -928.34], [-2222.42, -925.06], [-2226.17, -920.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2305.45, -909.48], [-2299.56, -916.32], [-2293.37, -911.04], [-2299.26, -904.19], [-2305.45, -909.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2310.08, -1004.98], [-2314.12, -1000.5], [-2307.25, -994.33], [-2303.21, -998.81], [-2310.08, -1004.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2304.06, -884.05], [-2299.24, -889.74], [-2310.06, -898.85], [-2314.89, -893.17], [-2304.06, -884.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2355.73, -928.22], [-2351.03, -924.23], [-2347.3, -928.6], [-2352.0, -932.58], [-2355.73, -928.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2342.02, -867.08], [-2332.76, -877.88], [-2328.84, -874.55], [-2331.15, -871.86], [-2328.43, -869.54], [-2335.38, -861.44], [-2342.02, -867.08]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2286.17, -894.28], [-2281.39, -899.87], [-2277.93, -896.91], [-2275.69, -899.52], [-2273.18, -897.39], [-2280.19, -889.21], [-2286.17, -894.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2330.65, -985.49], [-2325.16, -991.59], [-2318.66, -985.78], [-2321.08, -983.1], [-2319.44, -981.63], [-2322.52, -978.21], [-2330.65, -985.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2339.67, -930.13], [-2346.76, -936.38], [-2337.66, -946.65], [-2337.25, -946.3], [-2335.8, -947.93], [-2329.51, -942.41], [-2330.97, -940.77], [-2330.56, -940.41], [-2339.67, -930.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2311.31, -967.55], [-2305.76, -973.8], [-2298.9, -967.76], [-2304.38, -961.58], [-2304.65, -961.82], [-2305.59, -960.76], [-2308.1, -962.96], [-2307.23, -963.96], [-2311.31, -967.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2267.98, -926.74], [-2260.72, -934.95], [-2254.58, -929.57], [-2255.23, -928.84], [-2253.26, -927.12], [-2257.58, -922.22], [-2259.54, -923.95], [-2261.85, -921.35], [-2267.98, -926.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2299.5, -897.91], [-2294.8, -893.96], [-2291.76, -897.55], [-2289.89, -895.98], [-2283.46, -903.57], [-2285.84, -905.57], [-2286.81, -904.43], [-2291.0, -907.95], [-2299.5, -897.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2260.72, -953.6], [-2257.04, -957.79], [-2252.75, -954.03], [-2251.77, -955.15], [-2247.76, -951.64], [-2251.21, -947.74], [-2255.2, -951.24], [-2256.43, -949.84], [-2260.72, -953.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2371.7, -964.85], [-2366.03, -971.41], [-2365.52, -970.98], [-2364.59, -972.07], [-2362.68, -970.43], [-2363.62, -969.35], [-2359.03, -965.41], [-2364.7, -958.84], [-2368.08, -961.74], [-2369.37, -960.24], [-2372.24, -962.7], [-2370.94, -964.19], [-2371.7, -964.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2347.83, -1012.76], [-2343.61, -1009.09], [-2339.32, -1013.98], [-2343.53, -1017.65], [-2347.83, -1012.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2326.98, -1018.84], [-2330.53, -1014.7], [-2325.55, -1010.45], [-2321.99, -1014.57], [-2326.98, -1018.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2350.32, -1038.21], [-2355.97, -1031.74], [-2345.09, -1022.31], [-2339.45, -1028.77], [-2350.32, -1038.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2396.19, -986.71], [-2401.68, -980.31], [-2392.98, -972.91], [-2387.49, -979.3], [-2396.19, -986.71]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2390.44, -955.37], [-2385.09, -950.76], [-2380.65, -955.87], [-2386.0, -960.48], [-2390.44, -955.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2373.06, -966.73], [-2367.89, -972.23], [-2374.59, -978.48], [-2379.76, -972.99], [-2373.06, -966.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2384.74, -950.59], [-2379.64, -946.12], [-2375.25, -951.1], [-2380.34, -955.56], [-2384.74, -950.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2393.25, -988.02], [-2390.34, -991.43], [-2392.52, -993.28], [-2390.08, -996.14], [-2379.29, -987.01], [-2384.65, -980.75], [-2393.25, -988.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2348.46, -998.65], [-2339.52, -1009.07], [-2332.5, -1003.07], [-2341.44, -992.66], [-2342.09, -993.22], [-2343.54, -991.53], [-2349.59, -996.68], [-2348.14, -998.37], [-2348.46, -998.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2368.09, -1020.54], [-2362.58, -1027.01], [-2356.42, -1021.81], [-2361.93, -1015.33], [-2364.08, -1017.14], [-2366.22, -1014.63], [-2369.59, -1017.48], [-2367.45, -1020.0], [-2368.09, -1020.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2409.54, -969.47], [-2402.93, -977.1], [-2393.69, -969.15], [-2396.18, -966.27], [-2395.02, -965.27], [-2397.27, -962.68], [-2398.43, -963.68], [-2400.3, -961.52], [-2409.54, -969.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2359.29, -1008.16], [-2353.74, -1014.46], [-2350.15, -1011.31], [-2348.9, -1012.72], [-2346.7, -1010.79], [-2347.95, -1009.38], [-2347.06, -1008.6], [-2352.62, -1002.31], [-2359.29, -1008.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2194.64, -912.44], [-2188.53, -912.6], [-2188.7, -919.02], [-2194.81, -918.87], [-2194.64, -912.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2174.08, -938.77], [-2179.87, -944.01], [-2188.71, -934.27], [-2182.92, -929.05], [-2174.08, -938.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2147.82, -922.76], [-2136.69, -923.08], [-2136.93, -931.73], [-2148.07, -931.41], [-2147.82, -922.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2187.64, -918.19], [-2188.19, -925.55], [-2183.75, -925.8], [-2173.64, -931.46], [-2173.39, -918.89], [-2187.64, -918.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2149.65, -957.46], [-2149.85, -966.36], [-2136.85, -966.64], [-2136.74, -961.72], [-2134.6, -961.76], [-2134.51, -957.79], [-2149.65, -957.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2205.03, -951.01], [-2198.6, -958.62], [-2194.56, -955.22], [-2196.45, -952.98], [-2193.87, -950.82], [-2198.4, -945.45], [-2205.03, -951.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2196.81, -942.09], [-2189.14, -935.64], [-2182.41, -943.59], [-2184.79, -945.59], [-2184.16, -946.35], [-2186.84, -948.61], [-2187.48, -947.85], [-2190.09, -950.04], [-2196.81, -942.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2145.35, -933.72], [-2145.52, -939.54], [-2137.49, -939.77], [-2137.47, -939.07], [-2131.9, -939.23], [-2131.77, -934.76], [-2137.34, -934.6], [-2137.32, -933.95], [-2145.35, -933.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2146.11, -944.8], [-2134.96, -945.04], [-2135.13, -952.89], [-2146.28, -952.64], [-2146.26, -952.03], [-2148.7, -951.98], [-2148.57, -945.52], [-2146.12, -945.57], [-2146.11, -944.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1839.45, -905.51], [-1839.6, -914.44], [-1833.48, -914.54], [-1833.47, -913.97], [-1831.34, -914.01], [-1831.2, -905.65], [-1833.5, -905.61], [-1833.45, -902.77], [-1837.87, -902.7], [-1837.92, -905.53], [-1839.45, -905.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1804.84, -904.27], [-1805.14, -916.4], [-1797.01, -916.6], [-1796.71, -904.47], [-1804.84, -904.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2005.44, -901.89], [-2005.57, -910.63], [-1994.34, -910.8], [-1994.21, -902.06], [-2005.44, -901.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1983.22, -898.23], [-1974.81, -898.48], [-1975.24, -912.14], [-1983.65, -911.88], [-1983.22, -898.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2006.11, -897.94], [-2006.08, -894.59], [-2006.7, -894.59], [-2006.67, -888.52], [-1996.51, -888.58], [-1996.56, -898.0], [-2006.11, -897.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1961.75, -901.63], [-1962.04, -911.86], [-1955.71, -912.04], [-1955.65, -909.98], [-1954.18, -910.02], [-1953.94, -901.86], [-1961.75, -901.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1851.05, -901.98], [-1851.44, -915.74], [-1842.6, -915.99], [-1842.2, -902.23], [-1844.99, -902.15], [-1844.95, -900.78], [-1848.55, -900.68], [-1848.59, -902.05], [-1851.05, -901.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1972.72, -898.92], [-1964.08, -899.24], [-1964.51, -910.44], [-1965.23, -910.41], [-1965.29, -912.09], [-1972.22, -911.84], [-1972.16, -910.15], [-1973.14, -910.11], [-1972.72, -898.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1815.6, -903.99], [-1807.73, -904.24], [-1808.07, -914.79], [-1809.77, -914.74], [-1809.83, -916.4], [-1814.3, -916.26], [-1814.25, -914.59], [-1815.93, -914.54], [-1815.6, -903.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1925.67, -858.74], [-1931.37, -858.56], [-1931.66, -867.21], [-1925.96, -867.39], [-1925.67, -858.74]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.014, "pop": 0, "jobs": 14}}, {"shape": {"outer": [[-1956.33, -857.94], [-1956.75, -868.65], [-1936.98, -869.4], [-1936.85, -865.94], [-1932.16, -866.1], [-1931.89, -858.86], [-1956.33, -857.94]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.258, "pop": 129, "jobs": 0}}, {"shape": {"outer": [[-1749.44, -1137.6], [-1749.63, -1144.11], [-1752.58, -1144.02], [-1752.85, -1153.7], [-1735.28, -1154.2], [-1735.45, -1160.22], [-1721.27, -1160.61], [-1720.64, -1137.98], [-1733.14, -1137.63], [-1733.16, -1138.05], [-1749.44, -1137.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.468, "pop": 234, "jobs": 0}}, {"shape": {"outer": [[-1827.47, -1011.01], [-1836.26, -1010.75], [-1836.34, -1013.6], [-1838.42, -1013.53], [-1838.56, -1018.22], [-1836.49, -1018.28], [-1836.58, -1021.43], [-1835.49, -1021.46], [-1835.68, -1027.92], [-1827.98, -1028.16], [-1827.47, -1011.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1658.16, -1039.4], [-1657.91, -1031.63], [-1645.36, -1032.02], [-1644.97, -1019.62], [-1673.59, -1018.71], [-1673.98, -1031.1], [-1661.08, -1031.52], [-1661.32, -1039.32], [-1673.3, -1038.94], [-1673.71, -1051.64], [-1645.92, -1052.51], [-1645.51, -1039.81], [-1658.16, -1039.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.469, "pop": 0, "jobs": 469}}, {"shape": {"outer": [[-1841.16, -1036.74], [-1839.68, -1036.79], [-1839.41, -1030.25], [-1832.69, -1030.52], [-1832.91, -1035.94], [-1835.76, -1035.82], [-1835.81, -1036.95], [-1832.37, -1037.09], [-1832.98, -1051.84], [-1837.08, -1051.67], [-1837.0, -1049.92], [-1841.68, -1049.73], [-1841.16, -1036.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1790.26, -1041.55], [-1779.79, -1041.86], [-1779.92, -1046.18], [-1778.33, -1046.23], [-1778.42, -1049.27], [-1780.0, -1049.23], [-1780.13, -1053.5], [-1784.47, -1053.37], [-1784.48, -1053.92], [-1790.62, -1053.75], [-1790.52, -1050.25], [-1791.77, -1050.21], [-1791.59, -1043.79], [-1790.33, -1043.83], [-1790.26, -1041.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1749.07, -1186.17], [-1749.09, -1186.86], [-1750.79, -1186.79], [-1750.99, -1192.23], [-1749.3, -1192.3], [-1749.33, -1193.22], [-1745.07, -1193.38], [-1745.1, -1194.3], [-1738.06, -1194.57], [-1738.03, -1193.66], [-1736.49, -1193.71], [-1736.28, -1188.4], [-1737.21, -1188.38], [-1737.15, -1186.92], [-1739.91, -1186.81], [-1739.9, -1186.52], [-1749.07, -1186.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1830.85, -1073.63], [-1824.84, -1073.76], [-1824.83, -1073.24], [-1818.11, -1073.38], [-1818.2, -1077.3], [-1817.11, -1077.32], [-1817.13, -1078.43], [-1813.72, -1078.5], [-1813.81, -1082.66], [-1815.97, -1082.61], [-1816.0, -1084.17], [-1817.25, -1084.15], [-1817.3, -1086.21], [-1814.04, -1086.29], [-1814.09, -1089.11], [-1813.17, -1089.12], [-1813.27, -1093.48], [-1815.66, -1093.43], [-1815.71, -1095.64], [-1814.43, -1095.67], [-1814.49, -1098.71], [-1815.77, -1098.68], [-1815.81, -1100.61], [-1813.55, -1100.66], [-1813.65, -1104.99], [-1816.64, -1104.93], [-1816.67, -1105.73], [-1823.38, -1105.58], [-1823.36, -1104.8], [-1830.31, -1104.66], [-1829.99, -1089.93], [-1831.2, -1089.91], [-1830.85, -1073.63]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.346, "pop": 173, "jobs": 0}}, {"shape": {"outer": [[-1711.75, -1017.44], [-1701.47, -1017.86], [-1702.84, -1051.36], [-1713.11, -1050.94], [-1711.75, -1017.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[-1692.44, -1018.13], [-1681.84, -1018.49], [-1682.96, -1052.08], [-1693.56, -1051.73], [-1692.44, -1018.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.286, "pop": 143, "jobs": 0}}, {"shape": {"outer": [[-1821.97, -1026.64], [-1822.28, -1037.58], [-1806.62, -1038.03], [-1806.3, -1027.09], [-1821.97, -1026.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1726.1, -1186.99], [-1720.34, -1187.16], [-1720.5, -1192.99], [-1726.28, -1192.81], [-1726.1, -1186.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1805.3, -1009.1], [-1798.52, -1009.29], [-1798.7, -1015.44], [-1805.47, -1015.24], [-1805.3, -1009.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1791.16, -1080.54], [-1791.46, -1090.27], [-1778.54, -1090.66], [-1778.25, -1080.94], [-1791.16, -1080.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1808.45, -1041.02], [-1808.61, -1048.03], [-1799.38, -1048.24], [-1799.22, -1041.23], [-1808.45, -1041.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1748.9, -1166.38], [-1741.2, -1166.63], [-1741.27, -1168.87], [-1735.91, -1169.04], [-1736.22, -1178.5], [-1749.28, -1178.08], [-1748.9, -1166.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1795.8, -1095.06], [-1796.23, -1105.56], [-1780.36, -1106.2], [-1779.93, -1095.71], [-1790.14, -1095.28], [-1790.08, -1093.71], [-1795.26, -1093.49], [-1795.33, -1095.08], [-1795.8, -1095.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-1871.2, -1027.29], [-1871.6, -1045.14], [-1859.01, -1045.42], [-1858.61, -1027.57], [-1859.73, -1027.55], [-1859.52, -1017.99], [-1867.93, -1017.81], [-1868.14, -1027.36], [-1871.2, -1027.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.244, "pop": 122, "jobs": 0}}, {"shape": {"outer": [[-1787.53, -1024.43], [-1777.36, -1024.84], [-1777.69, -1033.05], [-1779.09, -1033.0], [-1779.17, -1034.91], [-1780.62, -1034.86], [-1780.78, -1038.97], [-1788.1, -1038.68], [-1787.53, -1024.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1823.1, -1010.77], [-1814.38, -1011.05], [-1814.41, -1011.88], [-1812.03, -1011.96], [-1812.19, -1016.92], [-1814.56, -1016.84], [-1814.83, -1025.09], [-1823.56, -1024.8], [-1823.1, -1010.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1791.26, -1008.88], [-1791.32, -1011.73], [-1793.9, -1011.67], [-1793.99, -1015.09], [-1791.41, -1015.16], [-1791.46, -1017.55], [-1777.31, -1017.88], [-1777.11, -1009.21], [-1791.26, -1008.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1789.43, -1064.95], [-1776.78, -1065.15], [-1776.96, -1077.4], [-1780.35, -1077.35], [-1780.36, -1078.79], [-1786.04, -1078.71], [-1786.02, -1077.26], [-1789.62, -1077.2], [-1789.43, -1064.95]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2884.57, -1577.72], [-2889.47, -1581.84], [-2885.31, -1586.76], [-2881.0, -1583.14], [-2872.35, -1593.37], [-2864.6, -1586.87], [-2874.46, -1575.2], [-2881.62, -1581.22], [-2884.57, -1577.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2897.98, -1592.91], [-2889.59, -1585.97], [-2881.57, -1595.58], [-2884.36, -1597.89], [-2881.94, -1600.79], [-2887.55, -1605.43], [-2897.98, -1592.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2873.3, -1603.24], [-2879.49, -1608.72], [-2874.72, -1614.07], [-2868.53, -1608.59], [-2873.3, -1603.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2901.69, -1595.0], [-2913.8, -1605.33], [-2907.66, -1612.47], [-2895.56, -1602.15], [-2901.69, -1595.0]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-2929.61, -1616.58], [-2919.78, -1608.7], [-2914.63, -1615.08], [-2917.05, -1617.01], [-2915.08, -1619.45], [-2919.3, -1622.84], [-2921.02, -1620.72], [-2924.21, -1623.28], [-2929.61, -1616.58]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-2900.15, -1548.9], [-2901.95, -1550.35], [-2900.33, -1552.34], [-2904.26, -1555.52], [-2906.15, -1553.17], [-2907.97, -1554.63], [-2916.27, -1544.42], [-2908.73, -1538.34], [-2900.15, -1548.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2922.1, -1567.05], [-2910.96, -1556.84], [-2916.81, -1550.5], [-2927.95, -1560.71], [-2922.1, -1567.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2933.5, -1575.57], [-2927.36, -1570.51], [-2932.31, -1564.54], [-2934.31, -1566.19], [-2935.44, -1564.82], [-2939.85, -1568.45], [-2938.39, -1570.22], [-2940.17, -1571.68], [-2933.5, -1575.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2949.81, -1573.81], [-2940.83, -1584.08], [-2948.13, -1590.42], [-2957.11, -1580.16], [-2949.81, -1573.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2963.25, -1569.87], [-2971.13, -1576.27], [-2966.7, -1581.68], [-2958.81, -1575.27], [-2963.25, -1569.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2969.16, -1592.2], [-2961.14, -1601.47], [-2952.17, -1593.76], [-2960.2, -1584.49], [-2969.16, -1592.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2975.53, -1592.79], [-2984.3, -1600.27], [-2977.53, -1608.16], [-2968.76, -1600.68], [-2975.53, -1592.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2839.9, -1627.95], [-2834.56, -1622.64], [-2844.92, -1612.28], [-2850.27, -1617.59], [-2839.9, -1627.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2847.48, -1547.92], [-2854.33, -1554.77], [-2843.16, -1565.87], [-2836.31, -1559.02], [-2847.48, -1547.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2813.31, -1584.86], [-2821.89, -1592.74], [-2812.1, -1603.32], [-2803.53, -1595.44], [-2813.31, -1584.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2799.71, -1583.82], [-2794.66, -1589.72], [-2784.88, -1581.42], [-2794.09, -1570.64], [-2798.87, -1574.68], [-2794.7, -1579.57], [-2799.71, -1583.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2819.17, -1575.83], [-2814.94, -1580.74], [-2819.87, -1584.96], [-2824.1, -1580.05], [-2819.17, -1575.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2812.66, -1569.92], [-2817.83, -1574.56], [-2813.17, -1579.69], [-2808.01, -1575.05], [-2812.66, -1569.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2876.13, -1511.7], [-2882.64, -1517.36], [-2874.18, -1527.01], [-2872.84, -1525.83], [-2871.36, -1527.52], [-2867.69, -1524.33], [-2869.86, -1521.86], [-2868.37, -1520.56], [-2876.13, -1511.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[563.82, 1145.27], [553.11, 1135.58], [555.45, 1133.0], [549.62, 1127.73], [547.19, 1130.41], [544.14, 1127.64], [519.26, 1154.97], [522.46, 1157.85], [520.38, 1160.15], [526.03, 1165.25], [527.89, 1163.22], [531.13, 1166.15], [530.09, 1167.3], [533.18, 1170.1], [534.22, 1168.95], [562.32, 1194.36], [573.6, 1181.98], [566.98, 1176.01], [565.4, 1177.74], [557.58, 1170.67], [562.3, 1165.49], [559.37, 1162.84], [558.97, 1163.29], [557.54, 1161.98], [557.02, 1162.54], [555.61, 1161.26], [554.01, 1163.02], [550.53, 1159.86], [563.82, 1145.27]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1016}}, {"shape": {"outer": [[604.2, 1047.07], [617.11, 1059.01], [612.71, 1063.72], [599.81, 1051.78], [604.2, 1047.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[608.86, 1041.89], [621.65, 1053.84], [626.1, 1049.13], [613.3, 1037.16], [608.86, 1041.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[606.07, 1066.31], [603.01, 1063.49], [607.19, 1059.0], [610.25, 1061.84], [606.07, 1066.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[591.27, 1079.65], [600.65, 1069.55], [596.72, 1065.93], [596.5, 1066.17], [594.85, 1064.65], [591.79, 1067.94], [590.82, 1067.05], [588.26, 1069.81], [587.39, 1069.01], [583.85, 1072.81], [589.25, 1077.78], [588.36, 1078.74], [590.16, 1080.4], [591.05, 1079.44], [591.27, 1079.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[600.09, 1087.56], [611.73, 1075.11], [605.69, 1069.5], [594.04, 1081.96], [600.09, 1087.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[604.35, 1095.52], [599.88, 1091.37], [615.64, 1074.52], [623.47, 1081.8], [609.72, 1096.51], [606.35, 1093.38], [604.35, 1095.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[631.37, 1091.98], [624.14, 1085.39], [611.21, 1099.46], [618.02, 1105.68], [619.92, 1103.62], [620.33, 1104.0], [631.37, 1091.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[628.53, 1113.68], [625.71, 1111.09], [626.05, 1110.73], [623.33, 1108.22], [625.14, 1106.28], [624.42, 1105.63], [629.25, 1100.42], [629.49, 1100.65], [632.51, 1097.39], [635.72, 1100.36], [637.87, 1098.05], [640.95, 1100.89], [638.81, 1103.21], [639.05, 1103.43], [629.83, 1113.36], [629.29, 1112.87], [628.53, 1113.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[417.41, 1052.94], [409.09, 1061.87], [408.25, 1062.09], [406.98, 1063.31], [407.02, 1065.25], [407.99, 1066.16], [406.51, 1067.75], [411.52, 1072.39], [413.41, 1070.36], [413.7, 1070.63], [424.27, 1059.28], [417.41, 1052.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[423.02, 1078.61], [421.96, 1077.63], [419.85, 1079.9], [414.5, 1074.95], [416.18, 1073.15], [415.4, 1072.42], [424.65, 1062.5], [431.84, 1069.15], [423.02, 1078.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[435.88, 1118.85], [443.63, 1109.61], [436.45, 1103.62], [431.9, 1109.03], [431.41, 1108.63], [428.2, 1112.46], [435.88, 1118.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[451.54, 1114.31], [459.08, 1106.44], [445.61, 1093.63], [438.07, 1101.51], [451.54, 1114.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[462.03, 1095.26], [460.06, 1097.39], [460.37, 1097.67], [457.09, 1101.2], [454.03, 1098.39], [453.68, 1098.76], [447.06, 1092.67], [447.35, 1092.35], [445.81, 1090.94], [447.64, 1088.96], [448.35, 1089.62], [451.26, 1086.48], [454.19, 1089.18], [454.76, 1088.57], [462.03, 1095.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[436.67, 1062.58], [431.21, 1057.69], [428.28, 1060.94], [433.74, 1065.83], [436.67, 1062.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[442.57, 1053.74], [430.82, 1043.28], [424.65, 1050.17], [436.27, 1060.51], [436.6, 1060.15], [438.77, 1062.08], [444.17, 1056.06], [442.12, 1054.23], [442.57, 1053.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[445.01, 1055.35], [450.26, 1049.47], [446.05, 1045.74], [446.47, 1045.26], [442.49, 1041.73], [442.1, 1042.17], [438.92, 1039.35], [433.63, 1045.27], [445.01, 1055.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[376.62, 1040.08], [369.74, 1033.61], [378.5, 1024.36], [380.28, 1026.04], [381.17, 1025.11], [386.27, 1029.91], [376.62, 1040.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[396.19, 954.64], [387.61, 946.78], [394.04, 939.83], [402.6, 947.69], [396.19, 954.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[406.9, 977.63], [414.86, 968.93], [411.99, 966.33], [413.91, 964.24], [409.7, 960.41], [399.82, 971.21], [406.9, 977.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[392.99, 958.48], [386.68, 965.34], [374.63, 954.33], [377.7, 950.98], [376.96, 950.3], [380.19, 946.79], [385.79, 951.9], [386.05, 951.61], [390.15, 955.35], [389.89, 955.65], [392.99, 958.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2044.35, -1026.2], [-2035.38, -1026.37], [-2035.39, -1026.93], [-2033.0, -1026.98], [-2033.13, -1033.94], [-2035.49, -1033.89], [-2035.51, -1034.65], [-2044.51, -1034.48], [-2044.44, -1030.74], [-2046.31, -1030.71], [-2046.25, -1027.82], [-2044.38, -1027.86], [-2044.35, -1026.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2008.89, -1040.09], [-2009.14, -1047.61], [-1997.62, -1048.0], [-1997.37, -1040.48], [-2008.89, -1040.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1996.86, -1016.08], [-2004.9, -1015.84], [-2005.15, -1024.27], [-1997.1, -1024.52], [-1996.86, -1016.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1970.84, -1033.89], [-1977.89, -1033.69], [-1978.27, -1047.07], [-1971.23, -1047.28], [-1970.84, -1033.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1968.39, -1027.64], [-1964.78, -1027.78], [-1964.96, -1032.54], [-1968.58, -1032.4], [-1968.39, -1027.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-1972.11, -1021.05], [-1968.73, -1021.15], [-1968.88, -1026.54], [-1972.27, -1026.44], [-1972.11, -1021.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-1978.52, -1017.53], [-1970.67, -1017.73], [-1970.42, -1007.5], [-1978.27, -1007.31], [-1978.52, -1017.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2044.42, -1037.32], [-2044.5, -1046.07], [-2035.15, -1046.16], [-2035.07, -1037.4], [-2044.42, -1037.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2003.91, -1004.62], [-2004.18, -1013.89], [-1988.19, -1014.36], [-1987.91, -1005.08], [-2003.91, -1004.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1966.76, -1009.88], [-1967.01, -1020.2], [-1956.94, -1020.43], [-1956.8, -1014.42], [-1956.11, -1014.43], [-1956.01, -1010.13], [-1966.76, -1009.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1966.89, -1035.76], [-1967.16, -1047.96], [-1959.79, -1048.13], [-1959.52, -1035.93], [-1960.9, -1035.9], [-1960.87, -1034.32], [-1965.39, -1034.22], [-1965.43, -1035.79], [-1966.89, -1035.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2046.76, -1003.99], [-2046.8, -1005.68], [-2048.24, -1005.64], [-2048.37, -1010.93], [-2046.93, -1010.96], [-2046.98, -1013.08], [-2033.98, -1013.4], [-2033.76, -1004.31], [-2046.76, -1003.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2005.42, -1027.83], [-2005.46, -1029.24], [-2007.13, -1029.21], [-2007.29, -1035.89], [-2005.62, -1035.94], [-2005.64, -1036.69], [-1993.07, -1036.99], [-1992.86, -1028.14], [-2005.42, -1027.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2045.44, -1015.04], [-2045.48, -1016.77], [-2048.12, -1016.7], [-2048.23, -1020.96], [-2045.58, -1021.01], [-2045.64, -1023.29], [-2034.11, -1023.56], [-2033.92, -1015.31], [-2045.44, -1015.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[638.28, 1051.72], [641.04, 1048.69], [641.51, 1049.12], [648.45, 1041.56], [648.2, 1041.33], [649.8, 1039.59], [642.53, 1032.97], [631.23, 1045.31], [638.28, 1051.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[642.85, 1067.45], [636.36, 1061.46], [644.74, 1052.42], [652.86, 1059.91], [646.9, 1066.33], [645.28, 1064.83], [642.85, 1067.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[658.27, 1082.65], [650.03, 1075.22], [655.31, 1069.41], [654.48, 1068.66], [655.9, 1067.09], [656.74, 1067.84], [658.79, 1065.58], [667.02, 1073.01], [658.27, 1082.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[678.12, 1079.37], [674.05, 1075.58], [679.08, 1070.23], [678.49, 1069.69], [682.76, 1065.15], [688.84, 1070.82], [684.89, 1075.03], [683.47, 1073.7], [678.12, 1079.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[688.68, 1087.08], [683.91, 1082.74], [685.05, 1081.48], [682.94, 1079.56], [689.67, 1072.19], [696.58, 1078.45], [688.68, 1087.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[674.04, 1080.01], [667.75, 1086.95], [678.67, 1096.77], [684.95, 1089.84], [674.04, 1080.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[672.01, 1104.95], [678.32, 1098.13], [666.71, 1087.47], [660.41, 1094.29], [672.01, 1104.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[662.96, 1113.32], [668.35, 1106.84], [658.93, 1099.08], [653.54, 1105.56], [662.96, 1113.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[642.41, 1108.21], [645.0, 1110.5], [645.31, 1110.15], [649.13, 1113.53], [640.94, 1122.68], [637.7, 1119.81], [637.08, 1120.5], [633.92, 1117.69], [642.41, 1108.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[641.33, 1124.1], [647.46, 1117.53], [654.25, 1123.83], [648.01, 1130.52], [644.33, 1127.11], [644.44, 1126.99], [641.33, 1124.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[684.25, 1169.19], [696.11, 1156.23], [702.74, 1162.27], [691.41, 1174.64], [690.53, 1173.83], [689.99, 1174.41], [684.25, 1169.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[677.33, 1162.03], [682.26, 1166.64], [691.8, 1156.51], [686.87, 1151.9], [677.33, 1162.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[708.11, 1185.56], [716.38, 1176.5], [710.23, 1170.93], [707.66, 1173.74], [707.46, 1173.56], [704.15, 1177.2], [704.34, 1177.37], [701.96, 1179.99], [708.11, 1185.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[709.95, 1170.41], [703.72, 1177.02], [696.34, 1170.11], [702.57, 1163.5], [709.95, 1170.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[717.34, 1191.04], [713.0, 1187.15], [723.07, 1176.0], [723.96, 1176.81], [724.74, 1175.94], [728.18, 1179.03], [717.34, 1191.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[724.35, 1196.66], [719.23, 1191.84], [720.54, 1190.47], [720.09, 1190.05], [729.23, 1180.4], [734.8, 1185.65], [729.99, 1190.71], [730.35, 1191.04], [726.01, 1195.61], [725.66, 1195.27], [724.35, 1196.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[732.6, 1204.39], [744.62, 1190.95], [740.26, 1187.08], [728.24, 1200.53], [732.6, 1204.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[735.66, 1212.24], [731.1, 1208.19], [739.52, 1198.78], [740.54, 1199.69], [741.8, 1198.27], [744.4, 1200.58], [743.13, 1201.99], [744.08, 1202.83], [735.66, 1212.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[670.2, 1143.4], [677.88, 1150.15], [673.67, 1154.91], [665.97, 1148.16], [670.2, 1143.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[675.84, 1136.8], [680.41, 1131.89], [684.3, 1135.48], [684.98, 1134.75], [690.31, 1139.67], [685.06, 1145.31], [675.84, 1136.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[683.8, 1130.61], [690.23, 1123.53], [700.14, 1132.5], [693.71, 1139.56], [683.8, 1130.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[690.11, 1121.49], [693.9, 1117.31], [694.5, 1117.84], [695.73, 1116.49], [705.41, 1125.22], [700.39, 1130.76], [690.11, 1121.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[697.68, 1113.31], [702.76, 1107.76], [710.78, 1115.07], [705.69, 1120.61], [697.68, 1113.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[714.62, 1093.9], [720.69, 1099.61], [713.79, 1106.88], [707.72, 1101.18], [714.62, 1093.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[721.17, 1124.09], [722.79, 1122.24], [723.69, 1123.03], [732.43, 1113.11], [729.78, 1110.8], [730.64, 1109.82], [728.31, 1107.77], [727.44, 1108.75], [726.4, 1107.84], [716.04, 1119.61], [721.17, 1124.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[723.22, 1126.86], [729.14, 1120.42], [729.6, 1120.84], [733.11, 1117.02], [738.74, 1122.16], [735.99, 1125.15], [736.48, 1125.6], [732.49, 1129.95], [732.0, 1129.49], [729.02, 1132.73], [724.11, 1128.24], [724.4, 1127.92], [723.22, 1126.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[731.47, 1144.34], [745.72, 1128.71], [739.89, 1123.44], [725.64, 1139.07], [731.47, 1144.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[750.02, 1154.66], [743.5, 1148.53], [751.3, 1140.31], [751.6, 1140.58], [754.59, 1137.42], [760.8, 1143.27], [750.02, 1154.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[848.7, 1176.5], [840.98, 1169.64], [853.49, 1155.63], [861.22, 1162.48], [848.7, 1176.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[837.38, 1168.44], [848.02, 1156.47], [841.35, 1150.59], [830.71, 1162.57], [837.38, 1168.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[829.66, 1158.15], [837.73, 1148.95], [837.23, 1148.51], [838.82, 1146.7], [835.63, 1143.92], [835.09, 1144.55], [832.21, 1142.04], [831.11, 1143.3], [830.78, 1143.01], [822.76, 1152.16], [824.24, 1153.46], [823.18, 1154.68], [825.05, 1156.3], [826.13, 1155.08], [829.66, 1158.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[821.31, 1151.52], [821.0, 1151.24], [820.47, 1151.83], [819.05, 1150.61], [819.58, 1149.99], [814.36, 1145.45], [820.72, 1138.2], [821.23, 1138.65], [828.56, 1130.31], [835.01, 1135.92], [821.31, 1151.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-1669.87, -1672.7], [-1660.32, -1673.0], [-1660.78, -1687.74], [-1670.33, -1687.44], [-1669.87, -1672.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1760.95, -1560.04], [-1755.21, -1560.16], [-1755.41, -1569.62], [-1762.38, -1569.48], [-1762.24, -1562.64], [-1761.01, -1562.66], [-1760.95, -1560.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1746.13, -1550.73], [-1746.32, -1555.91], [-1740.15, -1556.15], [-1739.96, -1550.96], [-1746.13, -1550.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1762.21, -1547.54], [-1752.39, -1547.77], [-1752.61, -1557.4], [-1762.44, -1557.17], [-1762.21, -1547.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1711.38, -1581.46], [-1711.74, -1590.74], [-1721.95, -1590.35], [-1721.59, -1581.06], [-1711.38, -1581.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1724.65, -1564.65], [-1724.99, -1577.77], [-1716.08, -1577.99], [-1715.75, -1564.87], [-1724.65, -1564.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2006.38, -1729.6], [-1996.67, -1729.89], [-1996.91, -1738.11], [-2006.63, -1737.82], [-2006.38, -1729.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1987.97, -1732.33], [-1984.3, -1732.42], [-1984.5, -1741.08], [-1988.16, -1741.01], [-1987.97, -1732.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1981.73, -1730.47], [-1982.0, -1737.45], [-1979.34, -1737.55], [-1979.35, -1737.76], [-1969.9, -1738.12], [-1969.58, -1729.85], [-1979.04, -1729.49], [-1979.08, -1730.57], [-1981.73, -1730.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2006.05, -1741.68], [-2006.25, -1750.06], [-1992.77, -1750.39], [-1992.57, -1742.02], [-2006.05, -1741.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2003.22, -1796.98], [-2003.46, -1805.37], [-1980.25, -1806.03], [-1980.01, -1797.65], [-2003.22, -1796.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2005.07, -1753.98], [-1997.1, -1754.3], [-1997.06, -1753.31], [-1988.27, -1753.65], [-1988.31, -1754.64], [-1980.52, -1754.94], [-1980.9, -1764.47], [-1982.95, -1764.39], [-1983.18, -1770.48], [-1981.13, -1770.56], [-1981.53, -1780.64], [-1983.63, -1780.56], [-1983.75, -1783.38], [-1981.64, -1783.46], [-1981.86, -1789.1], [-1984.89, -1788.98], [-1985.16, -1795.79], [-2002.52, -1795.11], [-2002.25, -1788.31], [-2006.41, -1788.14], [-2006.18, -1782.3], [-2004.34, -1782.38], [-2004.23, -1779.83], [-2006.08, -1779.75], [-2005.86, -1774.03], [-2003.99, -1774.11], [-2003.91, -1772.16], [-2005.78, -1772.08], [-2005.38, -1761.85], [-2003.64, -1761.93], [-2003.56, -1760.07], [-2005.3, -1760.0], [-2005.07, -1753.98]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.6, "pop": 0, "jobs": 600}}, {"shape": {"outer": [[-1965.93, -1733.38], [-1966.19, -1738.99], [-1966.81, -1738.96], [-1967.25, -1748.54], [-1966.63, -1748.57], [-1966.95, -1755.51], [-1956.81, -1755.98], [-1956.74, -1754.26], [-1952.04, -1754.47], [-1952.12, -1756.19], [-1945.69, -1756.49], [-1945.58, -1754.37], [-1936.53, -1754.78], [-1936.63, -1756.9], [-1926.56, -1757.37], [-1925.54, -1735.22], [-1930.09, -1735.02], [-1930.01, -1733.18], [-1939.83, -1732.74], [-1939.91, -1734.57], [-1943.51, -1734.4], [-1943.43, -1732.6], [-1949.55, -1732.31], [-1949.63, -1734.12], [-1951.6, -1734.03], [-1951.52, -1732.15], [-1961.55, -1731.68], [-1961.64, -1733.58], [-1965.93, -1733.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.738, "pop": 369, "jobs": 0}}, {"shape": {"outer": [[-1631.53, -1460.36], [-1631.67, -1471.68], [-1621.89, -1471.8], [-1621.76, -1460.47], [-1623.66, -1460.45], [-1623.64, -1458.14], [-1628.75, -1458.07], [-1628.76, -1459.28], [-1630.7, -1459.26], [-1630.71, -1460.37], [-1631.53, -1460.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2561.71, 2181.58], [2555.42, 2171.53], [2548.24, 2176.51], [2551.67, 2181.97], [2555.82, 2185.67], [2561.71, 2181.58]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.063, "pop": 0, "jobs": 63}}, {"shape": {"outer": [[2064.05, 757.43], [2069.65, 762.5], [2072.35, 759.69], [2074.24, 757.73], [2077.93, 753.89], [2072.33, 748.82], [2064.05, 757.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2059.66, 760.71], [2053.2, 755.07], [2065.39, 741.94], [2069.32, 745.75], [2067.88, 747.26], [2068.6, 747.91], [2069.52, 748.76], [2070.08, 749.26], [2059.66, 760.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2056.21, 767.24], [2060.24, 762.77], [2064.61, 766.83], [2060.59, 771.36], [2056.21, 767.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2048.63, 744.04], [2053.39, 748.38], [2052.75, 749.04], [2054.71, 750.84], [2062.72, 742.44], [2055.72, 736.27], [2048.63, 744.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2040.23, 740.95], [2042.31, 742.7], [2044.43, 740.46], [2047.44, 742.87], [2056.08, 733.33], [2049.63, 727.46], [2048.07, 729.12], [2040.83, 736.8], [2042.56, 738.5], [2040.23, 740.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2033.24, 731.14], [2040.13, 737.37], [2048.07, 729.12], [2047.31, 728.45], [2048.48, 727.29], [2042.59, 721.63], [2041.2, 723.02], [2040.76, 722.66], [2033.24, 731.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2045.88, 759.7], [2057.88, 770.14], [2054.02, 774.09], [2052.73, 775.41], [2051.98, 776.17], [2040.6, 765.58], [2045.88, 759.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2032.51, 776.97], [2037.85, 771.02], [2048.95, 781.11], [2043.55, 787.0], [2032.51, 776.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2023.75, 802.4], [2030.46, 808.56], [2037.48, 800.95], [2035.23, 798.89], [2035.93, 798.14], [2031.47, 794.05], [2023.75, 802.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2015.67, 794.59], [2022.68, 800.82], [2029.73, 792.81], [2027.71, 791.04], [2028.58, 790.13], [2024.68, 786.58], [2023.7, 787.69], [2022.72, 786.83], [2015.67, 794.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2015.46, 791.58], [2020.43, 786.2], [2018.67, 784.36], [2020.45, 782.29], [2018.24, 780.46], [2020.02, 778.27], [2016.33, 775.28], [2007.31, 785.25], [2015.46, 791.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2007.43, 712.25], [2008.59, 710.96], [2009.2, 711.37], [2018.22, 701.71], [2010.77, 695.17], [2001.92, 704.94], [2002.43, 705.36], [2001.1, 706.77], [2007.43, 712.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1994.14, 698.19], [2001.48, 704.58], [2011.8, 693.13], [2004.63, 686.47], [1994.14, 698.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1952.69, 659.68], [1960.27, 651.68], [1957.46, 648.77], [1957.88, 648.21], [1952.72, 643.4], [1944.66, 652.17], [1952.69, 659.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1959.84, 673.25], [1967.42, 665.2], [1958.46, 657.17], [1950.71, 665.45], [1959.84, 673.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1913.87, 688.04], [1919.81, 693.26], [1918.65, 694.6], [1920.18, 696.46], [1915.67, 701.32], [1907.98, 694.08], [1913.87, 688.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1924.08, 681.87], [1928.53, 676.91], [1926.4, 675.0], [1927.41, 674.0], [1918.57, 666.3], [1913.95, 671.5], [1916.14, 673.39], [1915.56, 674.12], [1924.08, 681.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1919.91, 706.38], [1920.23, 705.88], [1919.27, 705.04], [1920.02, 704.26], [1918.84, 703.3], [1921.97, 699.96], [1922.97, 700.74], [1926.81, 697.15], [1933.54, 703.33], [1926.21, 711.04], [1923.92, 709.04], [1923.38, 709.54], [1919.91, 706.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1941.73, 726.72], [1948.12, 732.31], [1961.08, 717.57], [1960.3, 716.56], [1961.4, 715.33], [1957.76, 711.79], [1956.32, 713.35], [1954.93, 712.09], [1941.73, 726.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2048.81, -1370.08], [-2049.13, -1384.02], [-2042.67, -1384.29], [-2042.64, -1381.53], [-2038.83, -1381.55], [-2038.43, -1370.34], [-2048.81, -1370.08]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2356.45, -3143.36], [2350.41, -3139.27], [2355.5, -3131.83], [2361.54, -3135.94], [2356.45, -3143.36]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.042, "pop": 0, "jobs": 42}}, {"shape": {"outer": [[-2429.36, -1012.39], [-2428.31, -1011.5], [-2428.91, -1010.81], [-2425.38, -1007.82], [-2424.78, -1008.51], [-2422.23, -1006.35], [-2418.96, -1010.19], [-2416.92, -1008.46], [-2413.07, -1012.96], [-2415.08, -1014.67], [-2414.45, -1015.4], [-2420.77, -1020.76], [-2421.88, -1019.46], [-2422.72, -1020.17], [-2429.36, -1012.39]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2436.28, -992.36], [-2442.76, -997.94], [-2440.18, -1000.91], [-2441.54, -1002.07], [-2442.04, -1001.49], [-2443.2, -1002.48], [-2441.76, -1004.14], [-2441.0, -1003.48], [-2437.16, -1007.92], [-2428.93, -1000.85], [-2430.78, -998.7], [-2429.6, -997.69], [-2433.08, -993.67], [-2434.26, -994.68], [-2436.28, -992.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2147.08, -970.58], [-2147.1, -971.29], [-2149.28, -971.23], [-2149.47, -977.65], [-2147.28, -977.71], [-2147.3, -978.31], [-2137.74, -978.59], [-2137.48, -969.33], [-2145.89, -969.09], [-2145.93, -970.61], [-2147.08, -970.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2124.4, -1083.84], [-2133.24, -1083.58], [-2133.56, -1094.46], [-2124.71, -1094.71], [-2124.4, -1083.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2155.59, -1079.78], [-2151.77, -1079.87], [-2151.74, -1078.51], [-2147.36, -1078.62], [-2147.48, -1083.33], [-2133.88, -1083.68], [-2134.28, -1099.35], [-2156.07, -1098.79], [-2155.59, -1079.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[-2152.34, -1069.1], [-2152.41, -1076.87], [-2141.05, -1076.99], [-2140.97, -1069.2], [-2152.34, -1069.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2151.26, -1060.36], [-2151.28, -1061.34], [-2153.23, -1061.31], [-2153.3, -1067.02], [-2151.34, -1067.05], [-2151.36, -1067.87], [-2148.15, -1067.91], [-2148.16, -1068.55], [-2141.8, -1068.62], [-2141.71, -1060.47], [-2151.26, -1060.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2148.91, -1034.33], [-2149.06, -1041.95], [-2145.39, -1042.03], [-2145.41, -1042.9], [-2139.67, -1043.02], [-2139.65, -1042.14], [-2138.35, -1042.17], [-2138.31, -1040.15], [-2137.16, -1040.17], [-2137.09, -1036.2], [-2138.23, -1036.17], [-2138.2, -1034.55], [-2148.91, -1034.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2151.13, -1023.43], [-2151.3, -1030.86], [-2137.66, -1031.17], [-2137.47, -1023.74], [-2151.13, -1023.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2148.36, -1012.9], [-2138.7, -1013.2], [-2138.96, -1021.53], [-2148.62, -1021.22], [-2148.6, -1020.52], [-2150.57, -1020.45], [-2150.35, -1013.44], [-2148.38, -1013.5], [-2148.36, -1012.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2147.99, -1003.47], [-2148.03, -1010.43], [-2136.99, -1010.5], [-2136.95, -1003.52], [-2147.99, -1003.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2189.02, -1022.95], [-2179.91, -1023.28], [-2180.2, -1031.48], [-2183.74, -1031.36], [-2183.79, -1032.86], [-2187.51, -1032.73], [-2187.45, -1031.23], [-2189.31, -1031.17], [-2189.02, -1022.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2188.44, -1012.74], [-2179.32, -1013.04], [-2179.42, -1016.2], [-2177.01, -1016.27], [-2177.15, -1020.36], [-2179.56, -1020.28], [-2179.57, -1020.81], [-2188.7, -1020.51], [-2188.65, -1019.13], [-2189.53, -1019.1], [-2189.33, -1013.08], [-2188.45, -1013.12], [-2188.44, -1012.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2187.86, -1002.17], [-2187.93, -1009.77], [-2179.41, -1009.84], [-2179.34, -1002.24], [-2187.86, -1002.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2187.52, -988.14], [-2182.98, -988.28], [-2182.93, -986.71], [-2179.05, -986.84], [-2179.1, -988.4], [-2178.27, -988.44], [-2178.56, -997.58], [-2187.81, -997.28], [-2187.52, -988.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2207.29, -1005.09], [-2201.57, -1012.0], [-2196.96, -1008.21], [-2198.29, -1006.6], [-2196.18, -1004.86], [-2197.62, -1003.13], [-2197.17, -1002.76], [-2200.12, -999.19], [-2207.29, -1005.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2203.4, -1017.83], [-2197.89, -1024.84], [-2195.42, -1022.91], [-2195.46, -1017.7], [-2198.42, -1013.94], [-2203.4, -1017.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2210.15, -1007.5], [-2216.66, -1013.27], [-2210.73, -1019.93], [-2204.22, -1014.15], [-2210.15, -1007.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2225.14, -1020.79], [-2219.23, -1027.64], [-2216.17, -1025.02], [-2215.01, -1026.37], [-2211.48, -1023.34], [-2218.55, -1015.14], [-2225.14, -1020.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2211.19, -1030.4], [-2214.96, -1033.61], [-2208.77, -1040.87], [-2207.71, -1039.96], [-2207.15, -1035.13], [-2211.19, -1030.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2217.26, -1043.85], [-2212.56, -1049.33], [-2207.29, -1044.84], [-2211.99, -1039.36], [-2217.26, -1043.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2240.07, -1033.44], [-2234.07, -1028.47], [-2227.42, -1036.45], [-2228.29, -1037.17], [-2226.97, -1038.77], [-2229.82, -1041.12], [-2231.14, -1039.52], [-2233.42, -1041.41], [-2240.07, -1033.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2244.95, -1033.02], [-2251.35, -1038.54], [-2242.5, -1048.74], [-2236.1, -1043.23], [-2244.95, -1033.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2260.42, -1049.84], [-2254.7, -1045.39], [-2249.07, -1052.57], [-2254.79, -1057.03], [-2260.42, -1049.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2272.81, -1060.76], [-2266.94, -1055.68], [-2258.7, -1065.12], [-2264.57, -1070.21], [-2272.81, -1060.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2251.99, -1074.37], [-2248.21, -1074.47], [-2248.19, -1073.34], [-2244.31, -1073.44], [-2244.34, -1074.57], [-2240.94, -1074.65], [-2241.46, -1094.19], [-2244.69, -1094.11], [-2244.72, -1095.49], [-2248.92, -1095.38], [-2248.89, -1094.0], [-2252.49, -1093.91], [-2251.99, -1074.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-2254.37, -1077.68], [-2267.12, -1077.31], [-2267.59, -1093.44], [-2263.63, -1093.55], [-2263.67, -1095.0], [-2259.25, -1095.12], [-2259.21, -1093.68], [-2254.84, -1093.8], [-2254.37, -1077.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-2222.34, -941.84], [-2227.58, -946.41], [-2222.42, -952.29], [-2217.18, -947.74], [-2222.34, -941.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2214.94, -959.17], [-2209.29, -965.48], [-2202.27, -959.25], [-2207.91, -952.93], [-2214.94, -959.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2228.16, -962.75], [-2218.43, -974.23], [-2211.37, -968.3], [-2221.1, -956.81], [-2228.16, -962.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2232.05, -973.61], [-2229.82, -976.31], [-2231.93, -978.05], [-2228.92, -981.68], [-2220.8, -975.01], [-2226.04, -968.68], [-2232.05, -973.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2239.66, -950.86], [-2237.46, -953.37], [-2232.22, -948.8], [-2234.43, -946.3], [-2239.66, -950.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2244.38, -959.29], [-2237.86, -953.77], [-2233.0, -959.45], [-2239.51, -964.98], [-2244.38, -959.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2253.19, -967.48], [-2248.77, -972.53], [-2242.83, -967.36], [-2247.25, -962.31], [-2253.19, -967.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2243.62, -982.2], [-2236.47, -990.78], [-2228.67, -984.33], [-2235.83, -975.74], [-2243.62, -982.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2250.86, -989.23], [-2245.12, -995.86], [-2239.03, -990.64], [-2244.77, -984.0], [-2250.86, -989.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2259.78, -985.64], [-2267.12, -992.13], [-2255.47, -1005.2], [-2248.13, -998.71], [-2259.78, -985.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-2280.5, -989.27], [-2275.72, -985.08], [-2271.12, -990.29], [-2275.89, -994.48], [-2280.5, -989.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2271.34, -1006.12], [-2264.4, -999.98], [-2256.93, -1008.37], [-2263.2, -1013.92], [-2264.17, -1012.83], [-2264.84, -1013.42], [-2271.34, -1006.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2279.81, -1014.75], [-2274.26, -1021.3], [-2273.49, -1020.64], [-2271.95, -1022.45], [-2266.52, -1017.88], [-2268.05, -1016.07], [-2267.27, -1015.41], [-2272.81, -1008.86], [-2279.81, -1014.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2289.12, -1020.31], [-2282.14, -1028.35], [-2275.33, -1022.49], [-2282.31, -1014.44], [-2289.12, -1020.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2307.85, -1013.88], [-2303.18, -1009.91], [-2298.37, -1015.55], [-2303.05, -1019.52], [-2307.85, -1013.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2299.51, -1029.41], [-2292.99, -1023.69], [-2286.16, -1031.4], [-2286.79, -1031.96], [-2285.29, -1033.65], [-2290.7, -1038.42], [-2292.21, -1036.71], [-2292.68, -1037.12], [-2299.51, -1029.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2303.95, -1029.94], [-2310.38, -1035.37], [-2302.44, -1044.71], [-2300.5, -1043.08], [-2299.14, -1044.68], [-2294.65, -1040.88], [-2303.95, -1029.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2317.97, -1021.64], [-2312.62, -1016.97], [-2307.85, -1022.39], [-2313.21, -1027.06], [-2317.97, -1021.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2334.5, -1034.53], [-2331.5, -1031.93], [-2327.79, -1036.16], [-2330.79, -1038.77], [-2334.5, -1034.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2319.35, -1042.83], [-2312.52, -1037.14], [-2304.48, -1046.7], [-2306.71, -1048.56], [-2306.95, -1050.06], [-2309.62, -1052.29], [-2311.3, -1052.39], [-2319.35, -1042.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2330.56, -1031.84], [-2326.84, -1036.07], [-2322.13, -1031.96], [-2325.85, -1027.73], [-2330.56, -1031.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2346.17, -1042.61], [-2338.79, -1036.34], [-2336.97, -1038.46], [-2335.03, -1036.8], [-2332.39, -1039.89], [-2334.33, -1041.54], [-2333.9, -1042.04], [-2341.28, -1048.32], [-2346.17, -1042.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2329.39, -1061.44], [-2324.41, -1067.13], [-2317.02, -1060.7], [-2321.99, -1055.02], [-2329.39, -1061.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2331.63, -1046.35], [-2338.24, -1051.91], [-2332.35, -1058.85], [-2325.74, -1053.31], [-2327.64, -1051.07], [-2326.26, -1049.9], [-2328.83, -1046.86], [-2330.21, -1048.02], [-2331.63, -1046.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2433.72, -1074.32], [-2425.6, -1083.79], [-2418.9, -1078.1], [-2427.02, -1068.61], [-2427.52, -1069.04], [-2428.72, -1067.65], [-2434.35, -1072.45], [-2433.16, -1073.85], [-2433.72, -1074.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2424.94, -1064.57], [-2418.43, -1059.0], [-2410.49, -1068.22], [-2417.01, -1073.79], [-2424.94, -1064.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2415.85, -1055.73], [-2408.87, -1064.06], [-2400.95, -1057.46], [-2401.44, -1056.88], [-2398.8, -1054.69], [-2403.64, -1048.92], [-2411.47, -1055.46], [-2413.14, -1053.47], [-2415.85, -1055.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2386.86, -1100.13], [-2380.01, -1107.97], [-2388.98, -1115.77], [-2396.48, -1107.21], [-2393.12, -1104.28], [-2392.47, -1105.01], [-2386.86, -1100.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2384.78, -1079.42], [-2381.05, -1076.41], [-2377.25, -1081.07], [-2380.98, -1084.09], [-2384.78, -1079.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2388.23, -1092.43], [-2380.99, -1086.22], [-2367.46, -1101.9], [-2374.69, -1108.11], [-2388.23, -1092.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-2358.63, -1135.47], [-2352.49, -1142.87], [-2342.47, -1134.61], [-2343.63, -1133.21], [-2343.02, -1132.71], [-2346.32, -1128.72], [-2344.02, -1126.83], [-2347.98, -1122.07], [-2351.08, -1124.62], [-2349.59, -1126.42], [-2355.64, -1131.4], [-2354.85, -1132.35], [-2358.63, -1135.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2339.88, -1125.19], [-2336.11, -1125.31], [-2336.04, -1123.31], [-2332.44, -1123.43], [-2332.5, -1125.43], [-2329.02, -1125.53], [-2329.33, -1135.7], [-2340.2, -1135.37], [-2339.88, -1125.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2369.29, -1078.67], [-2369.03, -1078.97], [-2370.56, -1080.27], [-2367.51, -1083.84], [-2367.14, -1083.53], [-2364.89, -1086.16], [-2357.42, -1079.84], [-2358.0, -1079.17], [-2356.4, -1077.81], [-2359.12, -1074.61], [-2360.73, -1075.98], [-2362.98, -1073.32], [-2369.29, -1078.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2371.72, -1077.65], [-2376.33, -1072.18], [-2369.17, -1066.18], [-2364.56, -1071.64], [-2371.72, -1077.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2397.78, -1046.81], [-2394.99, -1050.07], [-2395.5, -1050.51], [-2391.35, -1055.35], [-2390.84, -1054.91], [-2388.8, -1057.28], [-2382.56, -1051.96], [-2384.57, -1049.63], [-2383.8, -1048.96], [-2388.35, -1043.65], [-2388.74, -1043.97], [-2391.14, -1041.17], [-2391.39, -1041.37], [-2392.82, -1039.71], [-2399.06, -1045.02], [-2397.63, -1046.69], [-2397.78, -1046.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2119.41, -928.32], [-2119.73, -942.06], [-2108.05, -942.35], [-2107.72, -928.6], [-2119.41, -928.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2069.61, -927.17], [-2063.41, -927.37], [-2063.68, -935.64], [-2069.87, -935.43], [-2069.61, -927.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2078.33, -927.77], [-2086.14, -927.59], [-2086.16, -928.59], [-2087.06, -928.58], [-2087.27, -937.17], [-2084.87, -937.22], [-2084.99, -942.12], [-2078.12, -942.29], [-2077.93, -934.13], [-2078.48, -934.13], [-2078.33, -927.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2101.23, -927.15], [-2093.69, -927.33], [-2094.04, -941.61], [-2101.58, -941.42], [-2101.41, -934.6], [-2102.32, -934.58], [-2102.21, -930.45], [-2101.32, -930.47], [-2101.23, -927.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2126.12, -969.78], [-2122.37, -969.95], [-2122.66, -976.26], [-2126.41, -976.1], [-2126.12, -969.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2121.2, -973.65], [-2117.87, -973.74], [-2117.9, -975.02], [-2112.89, -975.16], [-2112.56, -963.17], [-2120.9, -962.93], [-2121.2, -973.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2109.15, -961.06], [-2101.71, -961.3], [-2101.85, -965.57], [-2101.02, -965.6], [-2101.36, -976.26], [-2105.7, -976.13], [-2105.68, -975.38], [-2109.61, -975.26], [-2109.15, -961.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2097.86, -966.33], [-2098.1, -976.06], [-2096.03, -976.1], [-2096.08, -978.1], [-2091.6, -978.22], [-2091.55, -976.22], [-2089.63, -976.27], [-2089.4, -966.54], [-2091.92, -966.47], [-2091.82, -962.42], [-2096.14, -962.31], [-2096.24, -966.37], [-2097.86, -966.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2090.48, -956.42], [-2087.17, -956.59], [-2087.45, -962.24], [-2090.76, -962.07], [-2090.48, -956.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-2086.94, -964.21], [-2086.39, -964.21], [-2086.36, -961.74], [-2080.37, -961.84], [-2080.48, -969.13], [-2077.49, -969.17], [-2077.61, -977.06], [-2082.65, -976.99], [-2082.63, -975.78], [-2084.43, -975.76], [-2084.44, -976.45], [-2087.12, -976.42], [-2086.94, -964.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2074.8, -969.26], [-2074.96, -976.99], [-2071.4, -977.06], [-2071.4, -977.62], [-2069.44, -977.67], [-2069.43, -977.1], [-2066.47, -977.16], [-2066.3, -969.44], [-2071.22, -969.34], [-2071.17, -967.18], [-2074.38, -967.11], [-2074.42, -969.27], [-2074.8, -969.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2063.11, -967.74], [-2056.05, -967.82], [-2056.17, -978.75], [-2063.23, -978.68], [-2063.11, -967.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2046.9, -971.8], [-2047.02, -980.96], [-2033.86, -981.14], [-2033.74, -971.97], [-2046.9, -971.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2034.96, -960.06], [-2035.04, -967.69], [-2046.63, -967.55], [-2046.55, -959.94], [-2034.96, -960.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2063.48, -952.43], [-2063.6, -958.35], [-2056.17, -958.51], [-2056.05, -952.59], [-2063.48, -952.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2046.33, -947.73], [-2046.37, -949.11], [-2047.87, -949.09], [-2047.93, -952.08], [-2046.42, -952.11], [-2046.5, -956.23], [-2034.59, -956.45], [-2034.43, -947.95], [-2046.33, -947.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2052.09, -936.88], [-2052.32, -944.47], [-2037.63, -944.91], [-2037.41, -937.32], [-2042.1, -937.18], [-2042.09, -936.83], [-2047.71, -936.66], [-2047.72, -937.01], [-2052.09, -936.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2052.14, -926.01], [-2052.17, -926.89], [-2053.56, -926.85], [-2053.67, -930.83], [-2052.29, -930.87], [-2052.37, -933.74], [-2038.12, -934.17], [-2037.97, -928.99], [-2036.83, -928.19], [-2038.69, -925.58], [-2039.83, -926.39], [-2043.38, -926.28], [-2043.36, -925.62], [-2046.85, -925.52], [-2046.87, -926.18], [-2052.14, -926.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1268.05, -175.41], [-1268.36, -180.79], [-1268.66, -186.01], [-1268.85, -189.5], [-1269.93, -210.44], [-1270.73, -210.21], [-1271.34, -210.04], [-1272.37, -210.37], [-1273.4, -210.12], [-1273.06, -210.93], [-1273.47, -211.98], [-1273.15, -213.06], [-1273.57, -214.41], [-1273.26, -215.71], [-1273.7, -217.24], [-1273.37, -218.38], [-1273.82, -220.1], [-1273.49, -221.18], [-1273.94, -223.0], [-1273.62, -224.15], [-1274.06, -225.83], [-1273.74, -226.85], [-1274.17, -228.52], [-1273.85, -229.73], [-1274.3, -231.39], [-1273.96, -232.3], [-1274.38, -233.21], [-1273.48, -232.86], [-1272.42, -233.38], [-1271.42, -232.96], [-1269.69, -233.6], [-1268.61, -233.09], [-1266.98, -233.82], [-1265.69, -233.22], [-1264.42, -234.04], [-1264.45, -235.09], [-1264.49, -236.4], [-1261.07, -236.57], [-1261.09, -237.01], [-1245.98, -237.86], [-1228.52, -238.86], [-1228.12, -238.88], [-1228.05, -236.92], [-1215.23, -237.34], [-1213.92, -237.39], [-1214.0, -225.86], [-1214.26, -211.79], [-1214.25, -209.8], [-1217.7, -209.67], [-1217.68, -209.14], [-1217.67, -208.55], [-1217.31, -202.0], [-1217.05, -197.04], [-1216.33, -179.78], [-1216.25, -177.97], [-1226.8, -177.44], [-1258.5, -175.85], [-1259.51, -175.8], [-1268.05, -175.41]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2141}}, {"shape": {"outer": [[2804.44, -3162.21], [2827.62, -3161.41], [2828.18, -3177.27], [2805.0, -3178.09], [2804.44, -3162.21]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.236, "pop": 0, "jobs": 236}}, {"shape": {"outer": [[-2345.67, -1585.55], [-2332.51, -1571.33], [-2334.48, -1569.67], [-2331.93, -1567.0], [-2330.24, -1568.48], [-2328.1, -1566.02], [-2322.82, -1570.57], [-2319.18, -1566.19], [-2309.81, -1573.96], [-2314.09, -1579.09], [-2313.9, -1584.13], [-2310.55, -1586.96], [-2312.58, -1589.33], [-2320.71, -1598.86], [-2322.66, -1601.15], [-2326.31, -1598.05], [-2331.45, -1598.32], [-2334.85, -1602.36], [-2344.28, -1594.51], [-2340.36, -1590.27], [-2345.67, -1585.55]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.521, "pop": 0, "jobs": 521}}, {"shape": {"outer": [[-2229.51, -1758.21], [-2206.67, -1733.03], [-2217.9, -1723.05], [-2219.0, -1724.01], [-2226.11, -1717.86], [-2229.57, -1721.56], [-2233.12, -1725.34], [-2234.08, -1724.4], [-2239.56, -1724.9], [-2243.17, -1729.17], [-2242.75, -1734.88], [-2238.47, -1738.8], [-2244.87, -1745.22], [-2232.47, -1755.7], [-2229.51, -1758.21]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.538, "pop": 0, "jobs": 538}}, {"shape": {"outer": [[-2286.1, -1122.97], [-2286.3, -1135.37], [-2283.05, -1135.42], [-2283.08, -1137.4], [-2280.06, -1137.44], [-2280.09, -1139.02], [-2275.78, -1139.09], [-2275.73, -1135.99], [-2274.86, -1136.0], [-2274.65, -1123.17], [-2286.1, -1122.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2271.64, -1127.56], [-2271.81, -1136.83], [-2265.32, -1136.95], [-2265.28, -1135.62], [-2261.68, -1135.68], [-2261.7, -1136.88], [-2257.63, -1136.95], [-2257.48, -1128.3], [-2260.81, -1128.23], [-2260.8, -1127.76], [-2271.64, -1127.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2254.04, -1127.76], [-2254.15, -1136.52], [-2244.46, -1136.64], [-2244.43, -1134.14], [-2242.16, -1134.17], [-2242.1, -1128.99], [-2244.92, -1128.97], [-2244.91, -1127.88], [-2254.04, -1127.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2239.22, -1128.54], [-2239.45, -1137.72], [-2229.41, -1137.96], [-2229.35, -1135.75], [-2227.13, -1135.8], [-2226.99, -1129.93], [-2233.16, -1129.77], [-2233.13, -1128.68], [-2239.22, -1128.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2221.93, -1163.02], [-2225.33, -1162.89], [-2225.54, -1168.16], [-2222.14, -1168.29], [-2221.93, -1163.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-2233.96, -1157.11], [-2234.0, -1162.37], [-2225.86, -1162.45], [-2225.82, -1157.19], [-2233.96, -1157.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2218.61, -1153.64], [-2212.66, -1153.81], [-2212.85, -1160.39], [-2218.8, -1160.22], [-2218.61, -1153.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2219.08, -1130.51], [-2211.96, -1130.73], [-2212.08, -1134.45], [-2211.12, -1134.47], [-2211.35, -1142.25], [-2212.32, -1142.22], [-2212.36, -1143.41], [-2219.47, -1143.19], [-2219.38, -1140.06], [-2220.19, -1140.04], [-2220.0, -1134.11], [-2219.19, -1134.13], [-2219.08, -1130.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2196.26, -1127.28], [-2196.3, -1128.36], [-2197.22, -1128.34], [-2197.37, -1133.56], [-2196.45, -1133.58], [-2196.47, -1134.56], [-2190.85, -1134.72], [-2190.97, -1138.7], [-2184.8, -1138.88], [-2184.69, -1135.18], [-2183.0, -1135.23], [-2182.84, -1129.78], [-2184.53, -1129.74], [-2184.47, -1127.62], [-2189.38, -1127.47], [-2189.37, -1126.93], [-2192.81, -1126.83], [-2192.83, -1127.38], [-2196.26, -1127.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2198.16, -1141.88], [-2198.49, -1152.62], [-2194.52, -1152.75], [-2194.55, -1153.88], [-2189.86, -1154.02], [-2189.82, -1152.89], [-2183.86, -1153.09], [-2183.52, -1142.34], [-2198.16, -1141.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2191.66, -1159.04], [-2191.82, -1166.59], [-2189.69, -1166.64], [-2189.75, -1169.34], [-2184.23, -1169.47], [-2184.01, -1159.21], [-2191.66, -1159.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2193.92, -1175.13], [-2194.13, -1183.07], [-2184.31, -1183.33], [-2184.09, -1175.4], [-2185.73, -1175.35], [-2185.68, -1173.47], [-2189.24, -1173.38], [-2189.28, -1175.25], [-2193.92, -1175.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2208.79, -1177.22], [-2201.34, -1177.6], [-2201.72, -1185.05], [-2209.18, -1184.67], [-2208.79, -1177.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2200.52, -1185.9], [-2200.65, -1189.34], [-2195.19, -1189.56], [-2195.06, -1186.12], [-2200.52, -1185.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-2192.69, -1188.25], [-2184.56, -1188.43], [-2184.73, -1196.4], [-2192.87, -1196.23], [-2192.81, -1193.36], [-2193.72, -1193.35], [-2193.62, -1189.0], [-2192.72, -1189.01], [-2192.69, -1188.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2194.09, -1205.53], [-2194.26, -1213.31], [-2184.87, -1213.52], [-2184.7, -1205.75], [-2194.09, -1205.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2209.0, -1204.9], [-2209.12, -1210.08], [-2205.91, -1210.16], [-2205.97, -1212.34], [-2199.01, -1212.5], [-2198.9, -1207.59], [-2196.9, -1207.64], [-2196.85, -1205.19], [-2209.0, -1204.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2218.83, -1201.22], [-2211.29, -1201.39], [-2211.51, -1211.22], [-2215.94, -1211.12], [-2215.97, -1212.35], [-2218.16, -1212.3], [-2218.12, -1211.07], [-2219.05, -1211.04], [-2218.83, -1201.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2230.73, -1200.88], [-2230.88, -1210.55], [-2222.64, -1210.68], [-2222.48, -1201.0], [-2223.2, -1200.99], [-2223.17, -1199.48], [-2227.05, -1199.43], [-2227.07, -1200.94], [-2230.73, -1200.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2242.44, -1200.3], [-2234.54, -1200.51], [-2234.86, -1212.3], [-2242.77, -1212.09], [-2242.44, -1200.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2249.81, -1189.1], [-2257.91, -1188.94], [-2257.76, -1181.69], [-2249.66, -1181.85], [-2249.81, -1189.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2244.75, -1200.04], [-2246.66, -1199.99], [-2246.6, -1197.64], [-2251.95, -1197.49], [-2252.11, -1203.36], [-2254.57, -1203.29], [-2254.84, -1212.71], [-2245.12, -1212.99], [-2244.75, -1200.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2273.12, -1194.05], [-2269.07, -1194.17], [-2269.18, -1197.57], [-2265.19, -1197.7], [-2265.22, -1198.81], [-2263.53, -1198.87], [-2263.58, -1200.34], [-2261.67, -1200.41], [-2261.97, -1209.57], [-2268.08, -1209.37], [-2268.04, -1207.87], [-2272.09, -1207.75], [-2271.95, -1203.45], [-2273.42, -1203.4], [-2273.12, -1194.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2278.6, -1190.58], [-2274.46, -1190.66], [-2274.58, -1196.01], [-2278.71, -1195.92], [-2278.6, -1190.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2303.43, -1194.68], [-2297.62, -1194.79], [-2297.65, -1196.69], [-2295.7, -1196.72], [-2295.73, -1198.2], [-2294.86, -1198.22], [-2294.89, -1199.76], [-2292.7, -1199.8], [-2292.91, -1210.28], [-2302.7, -1210.09], [-2302.56, -1203.07], [-2301.13, -1203.1], [-2301.07, -1200.11], [-2303.53, -1200.06], [-2303.43, -1194.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2290.27, -1197.79], [-2288.03, -1197.84], [-2287.96, -1195.11], [-2281.84, -1195.25], [-2281.92, -1198.54], [-2280.79, -1198.56], [-2280.92, -1204.23], [-2282.06, -1204.19], [-2282.16, -1208.36], [-2282.87, -1208.35], [-2282.91, -1210.06], [-2290.56, -1209.87], [-2290.27, -1197.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2295.55, -1168.19], [-2294.22, -1168.22], [-2294.18, -1166.34], [-2288.88, -1166.45], [-2288.92, -1168.33], [-2287.95, -1168.34], [-2288.12, -1176.93], [-2299.71, -1176.71], [-2299.58, -1169.61], [-2295.59, -1169.69], [-2295.55, -1168.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2299.91, -1155.85], [-2291.33, -1155.93], [-2291.4, -1163.77], [-2299.98, -1163.69], [-2299.91, -1155.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2069.09, -1033.51], [-2069.37, -1043.19], [-2068.71, -1043.21], [-2068.75, -1044.8], [-2061.55, -1045.01], [-2061.5, -1043.42], [-2060.63, -1043.44], [-2060.35, -1033.76], [-2062.43, -1033.7], [-2062.39, -1032.51], [-2065.12, -1032.43], [-2065.16, -1033.62], [-2069.09, -1033.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1318.3, -2311.39], [-1318.52, -2317.31], [-1359.76, -2315.31], [-1370.07, -2314.82], [-1371.54, -2346.69], [-1364.93, -2346.78], [-1365.09, -2352.47], [-1324.97, -2354.16], [-1293.2, -2355.51], [-1292.28, -2338.76], [-1307.35, -2311.68], [-1315.1, -2311.47], [-1317.86, -2311.4], [-1318.3, -2311.39]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2388}}, {"shape": {"outer": [[-410.79, -503.9], [-417.0, -497.43], [-418.64, -498.99], [-412.47, -505.44], [-410.79, -503.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-412.47, -505.44], [-410.79, -503.9], [-393.41, -488.03], [-380.95, -476.58], [-384.08, -472.48], [-378.25, -467.14], [-368.78, -477.84], [-356.82, -491.35], [-352.82, -495.85], [-413.5, -551.62], [-436.25, -526.94], [-412.47, -505.44]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1791}}, {"shape": {"outer": [[1116.03, 388.09], [1110.83, 383.2], [1112.04, 381.93], [1111.75, 381.65], [1118.73, 374.29], [1119.07, 374.63], [1122.87, 370.62], [1127.15, 374.66], [1123.36, 378.65], [1124.94, 380.14], [1121.29, 383.99], [1120.56, 383.31], [1116.03, 388.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1133.13, 407.7], [1139.68, 400.6], [1144.35, 404.88], [1137.81, 411.98], [1133.13, 407.7]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.039, "pop": 0, "jobs": 39}}, {"shape": {"outer": [[1150.65, 413.6], [1156.2, 418.63], [1161.66, 412.64], [1163.03, 413.89], [1169.04, 407.29], [1161.0, 400.02], [1156.44, 405.02], [1157.56, 406.03], [1150.65, 413.6]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.099, "pop": 0, "jobs": 99}}, {"shape": {"outer": [[-629.22, -1160.34], [-633.06, -1162.91], [-632.38, -1164.04], [-636.22, -1166.17], [-639.19, -1167.82], [-638.83, -1168.47], [-646.41, -1172.84], [-683.25, -1113.73], [-665.79, -1102.85], [-663.6, -1101.18], [-659.92, -1097.92], [-661.95, -1096.3], [-666.31, -1091.51], [-650.78, -1077.13], [-636.16, -1093.65], [-638.53, -1095.93], [-650.96, -1107.46], [-652.27, -1105.97], [-660.06, -1111.02], [-629.22, -1160.34]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 1757, "jobs": 0}}, {"shape": {"outer": [[-2951.65, 137.1], [-2952.62, 117.41], [-2937.56, 116.84], [-2938.31, 96.54], [-2932.84, 96.33], [-2933.61, 75.81], [-2926.27, 75.54], [-2926.48, 69.68], [-2917.35, 69.33], [-2917.53, 64.65], [-2910.25, 64.37], [-2910.37, 60.95], [-2902.46, 60.61], [-2899.52, 134.88], [-2951.65, 137.1]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1498}}, {"shape": {"outer": [[129.15, 228.46], [138.35, 218.39], [120.34, 202.07], [111.14, 212.15], [129.15, 228.46]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 0.464, "pop": 232, "jobs": 0}}, {"shape": {"outer": [[150.75, 201.99], [145.36, 207.89], [143.83, 206.5], [140.46, 210.19], [131.74, 202.29], [140.51, 192.7], [150.75, 201.99]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2254.86, -1654.75], [-2253.74, -1655.16], [-2254.5, -1657.17], [-2244.6, -1660.87], [-2245.21, -1662.49], [-2240.78, -1664.14], [-2240.11, -1662.35], [-2233.23, -1664.92], [-2232.33, -1662.5], [-2226.7, -1664.59], [-2223.13, -1655.11], [-2230.48, -1652.37], [-2231.12, -1654.07], [-2245.14, -1648.83], [-2244.62, -1647.45], [-2250.4, -1645.28], [-2251.4, -1647.94], [-2252.19, -1647.65], [-2254.86, -1654.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.272, "pop": 136, "jobs": 0}}, {"shape": {"outer": [[-2313.74, -1615.24], [-2315.68, -1617.3], [-2317.18, -1618.88], [-2311.81, -1623.92], [-2310.77, -1622.82], [-2308.37, -1620.29], [-2313.74, -1615.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2349.82, -1606.11], [-2346.69, -1608.8], [-2344.69, -1606.48], [-2340.57, -1610.02], [-2342.81, -1612.62], [-2337.18, -1617.47], [-2338.11, -1618.54], [-2340.32, -1621.1], [-2353.2, -1610.02], [-2349.82, -1606.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2381.96, -1614.44], [-2372.27, -1614.67], [-2372.45, -1621.73], [-2382.13, -1621.5], [-2381.96, -1614.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2397.98, -1615.08], [-2394.55, -1620.8], [-2389.6, -1629.05], [-2385.72, -1629.5], [-2382.21, -1632.62], [-2379.99, -1633.18], [-2379.4, -1637.43], [-2382.63, -1640.1], [-2387.18, -1638.64], [-2389.18, -1640.59], [-2393.34, -1636.66], [-2401.79, -1644.69], [-2403.67, -1646.45], [-2412.1, -1637.72], [-2410.0, -1634.99], [-2415.08, -1630.53], [-2397.98, -1615.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.422, "pop": 211, "jobs": 0}}, {"shape": {"outer": [[-2355.48, -1661.4], [-2343.94, -1666.78], [-2346.08, -1670.65], [-2357.66, -1665.45], [-2356.11, -1662.57], [-2355.48, -1661.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2307.4, -1646.3], [-2309.16, -1654.06], [-2307.62, -1654.42], [-2306.03, -1654.78], [-2303.64, -1655.31], [-2301.87, -1647.55], [-2305.61, -1646.71], [-2307.4, -1646.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2326.05, -1785.66], [-2323.12, -1795.44], [-2309.4, -1791.36], [-2312.33, -1781.58], [-2326.05, -1785.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2345.79, -1832.68], [-2348.19, -1835.62], [-2343.98, -1837.22], [-2341.84, -1840.44], [-2339.11, -1837.5], [-2341.77, -1834.36], [-2345.79, -1832.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2220.56, -1753.68], [-2213.22, -1759.99], [-2215.38, -1762.48], [-2211.23, -1766.06], [-2209.08, -1763.6], [-2206.24, -1766.05], [-2195.77, -1753.94], [-2207.39, -1743.94], [-2210.95, -1748.05], [-2213.67, -1745.71], [-2220.56, -1753.68]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.193, "pop": 0, "jobs": 193}}, {"shape": {"outer": [[-2148.25, -1809.81], [-2144.66, -1802.16], [-2174.06, -1789.28], [-2175.49, -1789.74], [-2176.19, -1792.65], [-2176.37, -1793.41], [-2175.98, -1794.42], [-2174.19, -1795.35], [-2175.28, -1798.02], [-2158.93, -1805.16], [-2148.25, -1809.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[-2129.35, -1818.92], [-2130.61, -1822.04], [-2135.12, -1832.92], [-2135.65, -1834.2], [-2124.26, -1838.88], [-2120.92, -1840.22], [-2115.71, -1827.24], [-2118.11, -1823.44], [-2129.35, -1818.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.206, "pop": 103, "jobs": 0}}, {"shape": {"outer": [[-28.37, 67.82], [-25.69, 69.97], [-19.78, 69.56], [-10.7, 69.04], [-9.96, 75.83], [-19.64, 76.64], [-26.13, 77.19], [-32.08, 71.81], [-28.37, 67.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1788.1, -942.12], [-1788.26, -950.79], [-1773.02, -951.07], [-1772.86, -942.4], [-1788.1, -942.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1787.63, -931.39], [-1787.89, -940.13], [-1775.04, -940.5], [-1775.01, -939.72], [-1772.41, -939.8], [-1772.18, -931.83], [-1787.63, -931.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2239.29, -1798.65], [-2225.81, -1796.95], [-2223.64, -1796.68], [-2223.6, -1793.47], [-2222.55, -1789.37], [-2220.2, -1786.19], [-2221.28, -1785.29], [-2216.38, -1779.97], [-2219.73, -1776.94], [-2220.32, -1776.4], [-2221.45, -1777.64], [-2228.92, -1771.06], [-2233.83, -1775.97], [-2234.69, -1775.24], [-2236.9, -1777.56], [-2239.35, -1776.98], [-2241.49, -1783.55], [-2243.1, -1787.89], [-2238.01, -1789.17], [-2239.29, -1798.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.277, "pop": 0, "jobs": 277}}, {"shape": {"outer": [[241.55, -153.22], [247.81, -153.55], [247.13, -177.38], [241.21, -177.21], [241.55, -153.22]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[245.34, -188.85], [240.68, -183.84], [235.95, -188.22], [224.92, -198.4], [229.59, -203.41], [240.87, -192.98], [245.34, -188.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-531.79, -67.84], [-526.64, -73.19], [-527.65, -94.84], [-541.31, -94.12], [-540.24, -79.68], [-542.43, -77.13], [-531.79, -67.84]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.336, "pop": 168, "jobs": 0}}, {"shape": {"outer": [[-529.48, -65.83], [-519.93, -76.71], [-521.1, -95.18], [-527.65, -94.84], [-526.64, -73.19], [-531.79, -67.84], [-529.48, -65.83]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-529.48, -65.83], [-523.49, -60.59], [-513.81, -71.13], [-519.93, -76.71], [-529.48, -65.83]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-511.48, -50.53], [-494.55, -69.49], [-494.77, -74.66], [-497.73, -74.54], [-497.71, -72.67], [-499.99, -70.65], [-501.29, -71.64], [-515.94, -54.48], [-511.48, -50.53]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.046, "pop": 0, "jobs": 46}}, {"shape": {"outer": [[-481.05, -23.56], [-456.31, -50.56], [-445.69, -62.47], [-427.93, -81.87], [-384.04, -42.71], [-383.53, -42.22], [-402.95, -20.67], [-417.27, -4.8], [-437.09, 17.2], [-481.05, -23.56]], "holes": []}, "height": 21.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7971}}, {"shape": {"outer": [[35.16, -261.62], [46.63, -251.13], [48.72, -253.72], [52.16, -250.55], [49.71, -247.96], [65.21, -234.32], [63.51, -232.52], [46.76, -213.38], [35.39, -200.74], [34.45, -201.48], [23.63, -189.27], [22.82, -188.44], [19.66, -191.74], [16.47, -195.78], [14.66, -198.28], [-6.41, -216.75], [35.16, -261.62]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2818}}, {"shape": {"outer": [[35.16, -261.62], [48.63, -276.15], [78.53, -248.8], [67.34, -236.58], [52.16, -250.55], [48.72, -253.72], [46.63, -251.13], [35.16, -261.62]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1413}}, {"shape": {"outer": [[67.34, -236.58], [65.21, -234.32], [63.51, -232.52], [99.4, -201.36], [100.08, -202.08], [102.46, -199.91], [107.92, -205.52], [107.21, -206.06], [109.19, -208.08], [109.9, -207.54], [113.15, -208.77], [114.47, -209.56], [115.22, -210.22], [115.75, -211.13], [116.11, -212.37], [116.14, -214.03], [115.88, -215.55], [98.58, -230.96], [78.53, -248.8], [67.34, -236.58]], "holes": []}, "height": 35.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3130}}, {"shape": {"outer": [[47.08, -168.2], [47.8, -169.04], [68.74, -148.34], [99.37, -181.82], [72.93, -204.83], [65.24, -196.33], [46.76, -213.38], [35.39, -200.74], [34.45, -201.48], [23.63, -189.27], [47.08, -168.2]], "holes": []}, "height": 31.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 6061}}, {"shape": {"outer": [[99.37, -181.82], [106.73, -189.82], [121.94, -206.33], [123.68, -208.33], [115.88, -215.55], [116.14, -214.03], [116.11, -212.37], [115.75, -211.13], [115.22, -210.22], [114.47, -209.56], [113.15, -208.77], [109.9, -207.54], [109.19, -208.08], [107.21, -206.06], [107.92, -205.52], [102.46, -199.91], [100.08, -202.08], [99.4, -201.36], [63.51, -232.52], [46.76, -213.38], [65.24, -196.33], [72.93, -204.83], [99.37, -181.82]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1540}}, {"shape": {"outer": [[1786.3, 700.82], [1779.95, 695.13], [1770.32, 705.81], [1776.67, 711.5], [1786.3, 700.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1677.25, -1663.91], [-1677.13, -1659.44], [-1672.53, -1659.56], [-1672.46, -1657.03], [-1669.19, -1657.12], [-1669.14, -1655.49], [-1661.56, -1655.7], [-1661.79, -1664.33], [-1677.25, -1663.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1673.34, -1643.04], [-1673.44, -1648.04], [-1660.98, -1648.28], [-1660.89, -1643.28], [-1673.34, -1643.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1674.71, -1632.36], [-1667.2, -1632.44], [-1667.27, -1638.86], [-1674.78, -1638.78], [-1674.71, -1632.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1671.24, -1623.95], [-1671.34, -1628.2], [-1660.21, -1628.46], [-1659.99, -1619.2], [-1666.36, -1619.05], [-1666.48, -1624.07], [-1671.24, -1623.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1692.27, -1621.85], [-1692.51, -1631.74], [-1679.57, -1632.06], [-1679.33, -1622.17], [-1692.27, -1621.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1703.83, -1621.37], [-1711.01, -1621.19], [-1711.43, -1637.46], [-1704.26, -1637.65], [-1703.83, -1621.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1722.19, -1622.69], [-1729.19, -1622.46], [-1729.6, -1634.86], [-1722.6, -1635.1], [-1722.19, -1622.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1732.45, -1654.6], [-1732.5, -1661.48], [-1738.57, -1661.43], [-1738.51, -1654.55], [-1732.45, -1654.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1765.31, -1656.1], [-1765.47, -1662.32], [-1754.71, -1662.61], [-1754.55, -1656.38], [-1765.31, -1656.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1765.01, -1642.97], [-1765.06, -1649.03], [-1754.0, -1649.11], [-1753.95, -1643.05], [-1765.01, -1642.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1765.16, -1621.67], [-1765.21, -1624.55], [-1763.28, -1624.58], [-1763.37, -1630.06], [-1758.23, -1630.15], [-1758.2, -1628.4], [-1754.87, -1628.46], [-1754.85, -1626.65], [-1750.32, -1626.72], [-1750.24, -1621.92], [-1765.16, -1621.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1738.35, -1622.78], [-1738.58, -1630.93], [-1735.35, -1631.02], [-1735.52, -1636.95], [-1730.99, -1637.08], [-1730.82, -1631.2], [-1730.03, -1631.23], [-1729.79, -1623.02], [-1738.35, -1622.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1747.79, -1622.33], [-1747.86, -1628.35], [-1745.87, -1628.36], [-1745.92, -1632.85], [-1745.59, -1632.85], [-1745.62, -1635.29], [-1739.83, -1635.36], [-1739.69, -1622.43], [-1742.98, -1622.39], [-1742.96, -1620.85], [-1746.62, -1620.82], [-1746.63, -1622.34], [-1747.79, -1622.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[401.95, -66.42], [410.36, -75.54], [403.64, -79.62], [382.64, -98.83], [375.27, -90.83], [401.95, -66.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.32, "pop": 160, "jobs": 0}}, {"shape": {"outer": [[385.32, -53.95], [388.23, -57.02], [390.93, -59.86], [393.97, -63.07], [381.6, -74.72], [372.95, -65.6], [385.32, -53.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[361.25, -101.86], [369.26, -110.9], [348.84, -128.9], [340.8, -119.96], [361.25, -101.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.21, "pop": 0, "jobs": 210}}, {"shape": {"outer": [[340.8, -119.96], [361.25, -101.86], [359.46, -99.71], [356.29, -96.15], [351.48, -100.39], [350.58, -99.37], [334.94, -113.15], [340.8, -119.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[322.37, -95.73], [322.87, -96.3], [320.99, -97.96], [325.88, -103.44], [327.77, -101.78], [327.83, -102.04], [343.56, -88.13], [341.78, -86.13], [338.0, -81.9], [322.37, -95.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[1187.84, 1417.42], [1192.53, 1421.44], [1194.51, 1419.15], [1196.81, 1421.13], [1202.14, 1414.96], [1200.51, 1413.57], [1203.48, 1410.14], [1198.1, 1405.52], [1187.84, 1417.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1761.91, -1500.38], [-1762.09, -1506.53], [-1760.39, -1506.58], [-1760.52, -1510.88], [-1761.23, -1510.86], [-1761.34, -1514.88], [-1760.14, -1514.92], [-1760.21, -1517.43], [-1755.95, -1517.55], [-1755.88, -1515.04], [-1753.31, -1515.11], [-1752.9, -1500.64], [-1761.91, -1500.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1748.77, -1497.82], [-1749.13, -1511.26], [-1740.93, -1511.49], [-1740.58, -1498.05], [-1748.77, -1497.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1738.11, -1502.41], [-1738.16, -1508.98], [-1733.9, -1509.02], [-1733.93, -1512.42], [-1729.27, -1512.47], [-1729.17, -1500.43], [-1736.01, -1500.38], [-1736.91, -1499.45], [-1739.02, -1501.48], [-1738.11, -1502.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1721.89, -1500.94], [-1722.21, -1510.38], [-1719.87, -1510.46], [-1719.96, -1513.37], [-1714.97, -1513.53], [-1714.92, -1511.95], [-1712.26, -1512.05], [-1711.85, -1499.86], [-1717.2, -1499.67], [-1717.25, -1501.1], [-1721.89, -1500.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1588.12, -1572.88], [-1582.23, -1573.05], [-1582.41, -1579.32], [-1588.3, -1579.15], [-1588.12, -1572.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1576.49, -1554.05], [-1571.61, -1554.16], [-1571.77, -1561.61], [-1576.65, -1561.51], [-1576.49, -1554.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1569.24, -1579.92], [-1563.46, -1580.07], [-1563.8, -1593.13], [-1569.59, -1592.98], [-1569.24, -1579.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1580.72, -1577.56], [-1573.52, -1577.79], [-1574.0, -1592.48], [-1581.2, -1592.25], [-1580.72, -1577.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1597.42, -1577.42], [-1597.49, -1581.87], [-1596.33, -1581.9], [-1596.5, -1591.97], [-1588.49, -1592.11], [-1588.3, -1581.19], [-1590.65, -1581.16], [-1590.59, -1577.54], [-1597.42, -1577.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1607.57, -1580.06], [-1607.79, -1590.17], [-1599.76, -1590.35], [-1599.54, -1580.24], [-1601.89, -1580.19], [-1601.85, -1578.58], [-1606.0, -1578.5], [-1606.04, -1580.1], [-1607.57, -1580.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1632.35, -1573.54], [-1629.94, -1573.61], [-1629.88, -1571.37], [-1624.91, -1571.52], [-1624.98, -1573.75], [-1622.8, -1573.81], [-1623.33, -1591.49], [-1627.5, -1591.36], [-1627.59, -1594.37], [-1632.96, -1594.22], [-1632.35, -1573.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-1635.02, -1550.2], [-1635.15, -1557.37], [-1618.93, -1557.67], [-1618.8, -1550.5], [-1635.02, -1550.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1617.74, -1579.72], [-1617.93, -1592.16], [-1609.4, -1592.29], [-1609.2, -1579.85], [-1611.49, -1579.82], [-1611.38, -1572.9], [-1616.68, -1572.81], [-1616.79, -1579.73], [-1617.74, -1579.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1606.19, -1552.93], [-1601.89, -1552.95], [-1601.91, -1559.54], [-1606.22, -1559.52], [-1606.19, -1552.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1738.8, -1574.5], [-1746.58, -1574.35], [-1746.93, -1591.0], [-1739.14, -1591.16], [-1738.8, -1574.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1764.47, -1578.29], [-1756.71, -1578.45], [-1756.97, -1591.12], [-1764.72, -1590.96], [-1764.47, -1578.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1691.92, -1579.0], [-1683.66, -1579.19], [-1683.85, -1588.06], [-1688.19, -1587.97], [-1688.21, -1589.33], [-1691.05, -1589.27], [-1691.02, -1587.9], [-1692.11, -1587.88], [-1691.92, -1579.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1683.04, -1576.43], [-1674.52, -1576.68], [-1674.87, -1588.86], [-1683.39, -1588.62], [-1683.04, -1576.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1670.16, -1578.93], [-1659.58, -1579.13], [-1659.82, -1591.21], [-1670.4, -1591.0], [-1670.16, -1578.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1668.66, -1561.53], [-1668.68, -1562.25], [-1671.48, -1562.16], [-1671.6, -1565.86], [-1668.8, -1565.95], [-1668.94, -1570.76], [-1660.86, -1571.0], [-1660.58, -1561.78], [-1668.66, -1561.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1682.37, -1564.22], [-1676.36, -1564.41], [-1676.6, -1571.71], [-1682.61, -1571.51], [-1682.37, -1564.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1704.01, -1558.8], [-1710.88, -1558.66], [-1710.71, -1550.91], [-1703.85, -1551.06], [-1704.01, -1558.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1699.57, -1550.58], [-1692.69, -1550.78], [-1693.02, -1562.48], [-1699.9, -1562.28], [-1699.57, -1550.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1763.86, -1669.74], [-1764.01, -1677.82], [-1751.84, -1678.04], [-1751.73, -1672.24], [-1753.69, -1672.21], [-1753.65, -1669.92], [-1763.86, -1669.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1763.88, -1680.3], [-1753.74, -1680.54], [-1753.95, -1689.09], [-1764.09, -1688.84], [-1764.09, -1688.25], [-1765.86, -1688.2], [-1765.69, -1680.97], [-1763.9, -1681.01], [-1763.88, -1680.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1766.64, -1701.3], [-1758.57, -1701.43], [-1758.61, -1703.92], [-1756.57, -1703.96], [-1756.65, -1708.48], [-1758.68, -1708.44], [-1758.73, -1710.81], [-1759.8, -1710.8], [-1759.84, -1712.92], [-1765.68, -1712.82], [-1765.64, -1710.7], [-1766.8, -1710.68], [-1766.64, -1701.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1765.84, -1692.22], [-1765.93, -1700.23], [-1756.04, -1700.35], [-1755.95, -1692.34], [-1765.84, -1692.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1747.78, -1709.13], [-1747.28, -1694.25], [-1736.25, -1694.63], [-1736.75, -1709.51], [-1747.78, -1709.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1689.58, -1682.59], [-1683.84, -1682.85], [-1684.15, -1689.54], [-1689.88, -1689.29], [-1689.58, -1682.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1732.14, -1700.83], [-1732.28, -1706.09], [-1731.47, -1706.11], [-1731.6, -1711.12], [-1724.99, -1711.31], [-1724.84, -1705.67], [-1724.1, -1705.69], [-1723.97, -1701.06], [-1725.14, -1701.02], [-1725.07, -1698.5], [-1731.13, -1698.34], [-1731.2, -1700.86], [-1732.14, -1700.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1721.79, -1698.11], [-1722.21, -1712.14], [-1715.04, -1712.35], [-1714.62, -1698.32], [-1721.79, -1698.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1710.98, -1695.11], [-1706.01, -1695.25], [-1706.07, -1697.2], [-1704.11, -1697.26], [-1704.26, -1702.59], [-1705.19, -1702.56], [-1705.3, -1706.48], [-1706.33, -1706.45], [-1706.46, -1710.75], [-1707.06, -1710.73], [-1707.12, -1712.8], [-1712.19, -1712.65], [-1712.14, -1710.85], [-1712.58, -1710.84], [-1712.32, -1701.6], [-1711.17, -1701.64], [-1710.98, -1695.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1694.71, -1695.7], [-1694.92, -1707.94], [-1693.43, -1707.97], [-1693.44, -1708.97], [-1690.16, -1709.03], [-1690.15, -1708.03], [-1685.01, -1708.11], [-1684.85, -1698.52], [-1689.71, -1698.44], [-1689.66, -1695.79], [-1694.71, -1695.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1679.17, -1709.77], [-1673.25, -1710.02], [-1673.02, -1704.74], [-1678.95, -1704.48], [-1679.17, -1709.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1661.73, -1704.14], [-1661.81, -1712.29], [-1670.55, -1712.2], [-1670.47, -1704.05], [-1661.73, -1704.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1672.55, -1689.84], [-1672.79, -1698.34], [-1663.97, -1698.6], [-1663.96, -1698.09], [-1661.03, -1698.17], [-1660.88, -1692.69], [-1661.62, -1692.67], [-1661.57, -1690.83], [-1663.76, -1690.77], [-1663.74, -1690.08], [-1672.55, -1689.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1636.81, -1657.33], [-1636.94, -1665.18], [-1624.65, -1665.4], [-1624.52, -1657.54], [-1630.32, -1657.44], [-1630.28, -1654.91], [-1635.47, -1654.82], [-1635.52, -1657.35], [-1636.81, -1657.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1636.57, -1640.72], [-1636.8, -1648.66], [-1635.6, -1648.69], [-1635.66, -1650.97], [-1630.37, -1651.12], [-1630.31, -1648.83], [-1622.87, -1649.05], [-1622.74, -1644.64], [-1624.81, -1644.58], [-1624.71, -1641.06], [-1636.57, -1640.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1630.96, -1624.35], [-1631.37, -1638.8], [-1623.37, -1639.03], [-1622.95, -1624.58], [-1624.98, -1624.52], [-1624.92, -1622.58], [-1629.18, -1622.46], [-1629.24, -1624.4], [-1630.96, -1624.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1618.6, -1626.61], [-1610.42, -1626.79], [-1610.61, -1635.82], [-1618.8, -1635.64], [-1618.6, -1626.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1608.78, -1626.31], [-1609.02, -1637.28], [-1600.72, -1637.47], [-1600.48, -1626.49], [-1608.78, -1626.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1590.11, -1624.52], [-1590.31, -1634.01], [-1582.45, -1634.19], [-1582.3, -1626.97], [-1586.22, -1626.88], [-1586.17, -1624.6], [-1590.11, -1624.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1581.12, -1625.73], [-1581.27, -1635.53], [-1572.97, -1635.66], [-1572.81, -1625.86], [-1574.02, -1625.85], [-1573.99, -1623.94], [-1579.72, -1623.85], [-1579.74, -1625.76], [-1581.12, -1625.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1566.85, -1625.81], [-1559.04, -1625.94], [-1559.21, -1636.18], [-1562.55, -1636.13], [-1562.57, -1637.5], [-1565.96, -1637.44], [-1565.94, -1636.06], [-1567.03, -1636.04], [-1566.85, -1625.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1568.23, -1656.99], [-1560.48, -1657.21], [-1560.7, -1664.93], [-1568.45, -1664.71], [-1568.23, -1656.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-1578.16, -1653.62], [-1578.33, -1661.07], [-1570.91, -1661.24], [-1570.73, -1653.8], [-1578.16, -1653.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1589.21, -1654.92], [-1583.38, -1655.01], [-1583.5, -1662.31], [-1589.33, -1662.21], [-1589.21, -1654.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1618.51, -1652.83], [-1610.64, -1653.05], [-1610.88, -1661.32], [-1618.74, -1661.09], [-1618.51, -1652.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1595.44, -1683.22], [-1595.54, -1686.92], [-1592.6, -1687.0], [-1592.49, -1683.31], [-1595.44, -1683.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[-1574.51, -1681.42], [-1565.44, -1681.68], [-1565.65, -1688.98], [-1574.72, -1688.72], [-1574.51, -1681.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1609.84, -1674.75], [-1610.21, -1681.9], [-1600.39, -1682.39], [-1600.02, -1675.24], [-1609.84, -1674.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1636.54, -1671.81], [-1636.77, -1679.86], [-1624.32, -1680.22], [-1624.09, -1672.16], [-1636.54, -1671.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1636.97, -1683.33], [-1637.22, -1691.93], [-1620.62, -1692.4], [-1620.38, -1683.81], [-1636.97, -1683.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1568.94, -1435.08], [-1577.35, -1434.84], [-1577.63, -1444.85], [-1569.22, -1445.09], [-1568.94, -1435.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1577.3, -1456.08], [-1569.77, -1456.35], [-1569.94, -1461.19], [-1568.67, -1461.24], [-1569.04, -1471.73], [-1577.85, -1471.41], [-1577.3, -1456.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1568.19, -1458.69], [-1560.33, -1458.99], [-1560.79, -1471.49], [-1564.18, -1471.36], [-1564.2, -1471.96], [-1568.68, -1471.79], [-1568.19, -1458.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1726.89, -1215.33], [-1721.37, -1215.45], [-1721.54, -1223.09], [-1727.07, -1222.97], [-1726.89, -1215.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1750.69, -1215.07], [-1751.16, -1227.16], [-1739.79, -1227.59], [-1739.7, -1225.4], [-1738.08, -1225.45], [-1737.83, -1218.78], [-1740.28, -1218.68], [-1740.15, -1215.47], [-1750.69, -1215.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1750.72, -1203.89], [-1751.0, -1211.22], [-1745.91, -1211.41], [-1745.96, -1212.72], [-1738.49, -1213.0], [-1738.33, -1208.94], [-1737.11, -1208.99], [-1736.99, -1205.82], [-1738.22, -1205.78], [-1738.17, -1204.37], [-1744.61, -1204.13], [-1744.54, -1202.35], [-1749.84, -1202.15], [-1749.9, -1203.93], [-1750.72, -1203.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1027.19, 112.46], [-1062.07, 114.2], [-1061.54, 124.59], [-1083.46, 125.68], [-1083.8, 118.81], [-1084.54, 118.85], [-1084.64, 116.8], [-1085.06, 108.22], [-1061.51, 107.08], [-1054.92, 103.2], [-1055.51, 91.51], [-1050.34, 91.26], [-1032.47, 90.37], [-1028.31, 90.16], [-1027.19, 112.46]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.597, "pop": 0, "jobs": 597}}, {"shape": {"outer": [[-2002.06, -1086.0], [-2009.49, -1085.79], [-2009.85, -1098.52], [-2002.43, -1098.73], [-2002.06, -1086.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1998.78, -1089.51], [-1999.04, -1099.01], [-1989.54, -1099.27], [-1989.35, -1092.52], [-1991.97, -1092.45], [-1991.9, -1089.7], [-1998.78, -1089.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1986.95, -1082.71], [-1977.89, -1083.02], [-1978.44, -1099.28], [-1987.5, -1098.96], [-1986.95, -1082.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1974.86, -1087.92], [-1967.42, -1088.14], [-1967.49, -1090.26], [-1967.03, -1090.28], [-1967.24, -1096.75], [-1967.68, -1096.74], [-1967.75, -1098.7], [-1968.55, -1098.68], [-1968.61, -1101.02], [-1974.52, -1100.84], [-1974.44, -1098.49], [-1975.19, -1098.47], [-1974.86, -1087.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1965.47, -1088.63], [-1965.58, -1092.33], [-1966.45, -1092.31], [-1966.61, -1097.97], [-1963.66, -1098.05], [-1963.71, -1099.52], [-1959.89, -1099.63], [-1959.84, -1098.16], [-1957.61, -1098.23], [-1957.34, -1088.87], [-1958.37, -1088.84], [-1958.33, -1087.37], [-1962.32, -1087.26], [-1962.36, -1088.72], [-1965.47, -1088.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1963.2, -1060.88], [-1956.8, -1061.01], [-1956.94, -1067.65], [-1963.33, -1067.52], [-1963.2, -1060.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1844.87, -1066.3], [-1839.3, -1066.43], [-1839.43, -1072.09], [-1845.0, -1071.96], [-1844.87, -1066.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1872.43, -1086.49], [-1881.85, -1086.19], [-1882.29, -1099.84], [-1872.87, -1100.15], [-1872.43, -1086.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1844.94, -1086.61], [-1845.23, -1099.65], [-1836.28, -1099.85], [-1836.06, -1090.5], [-1838.2, -1090.45], [-1838.12, -1086.76], [-1844.94, -1086.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1857.93, -1090.08], [-1848.96, -1090.46], [-1849.4, -1100.84], [-1850.41, -1100.8], [-1850.49, -1102.76], [-1857.53, -1102.46], [-1857.45, -1100.51], [-1858.36, -1100.48], [-1857.93, -1090.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1869.35, -1066.87], [-1869.67, -1078.69], [-1860.55, -1078.94], [-1860.22, -1067.12], [-1860.88, -1067.1], [-1860.83, -1065.37], [-1868.26, -1065.17], [-1868.3, -1066.9], [-1869.35, -1066.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1857.57, -1064.72], [-1849.21, -1064.94], [-1849.6, -1080.61], [-1857.97, -1080.39], [-1857.57, -1064.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2114.79, -1004.68], [-2115.16, -1016.22], [-2122.58, -1015.99], [-2122.21, -1004.43], [-2121.69, -1004.45], [-2121.62, -1002.36], [-2115.37, -1002.56], [-2115.44, -1004.66], [-2114.79, -1004.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2068.65, -1006.2], [-2069.0, -1015.65], [-2060.65, -1015.96], [-2060.29, -1006.51], [-2068.65, -1006.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2080.05, -1017.69], [-2074.21, -1017.86], [-2074.18, -1016.96], [-2073.07, -1016.99], [-2073.02, -1015.3], [-2071.84, -1015.33], [-2071.56, -1005.13], [-2079.7, -1004.9], [-2080.05, -1017.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2089.83, -1015.24], [-2089.44, -1004.4], [-2081.55, -1004.69], [-2081.94, -1015.51], [-2084.37, -1015.43], [-2084.42, -1016.95], [-2088.74, -1016.81], [-2088.68, -1015.27], [-2089.83, -1015.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2101.38, -1002.49], [-2092.65, -1002.87], [-2093.19, -1015.32], [-2101.92, -1014.95], [-2101.38, -1002.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2111.47, -1002.45], [-2104.98, -1002.71], [-2105.5, -1015.06], [-2111.99, -1014.79], [-2111.47, -1002.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2112.24, -1031.67], [-2103.22, -1031.94], [-2103.54, -1042.26], [-2104.03, -1042.24], [-2104.09, -1044.15], [-2112.16, -1043.91], [-2112.09, -1041.84], [-2112.54, -1041.83], [-2112.24, -1031.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2101.39, -1032.14], [-2092.97, -1032.49], [-2093.48, -1044.62], [-2101.91, -1044.26], [-2101.39, -1032.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2090.19, -1032.58], [-2090.74, -1044.57], [-2082.77, -1044.93], [-2082.23, -1032.94], [-2085.73, -1032.79], [-2085.66, -1031.19], [-2088.11, -1031.08], [-2088.18, -1032.67], [-2090.19, -1032.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2079.94, -1033.24], [-2071.76, -1033.56], [-2072.13, -1042.7], [-2072.9, -1042.67], [-2072.98, -1044.57], [-2079.8, -1044.29], [-2079.72, -1042.39], [-2080.31, -1042.37], [-2079.94, -1033.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2121.04, -1083.68], [-2112.72, -1083.99], [-2113.23, -1097.26], [-2121.55, -1096.95], [-2121.04, -1083.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2111.01, -1084.25], [-2107.72, -1084.33], [-2107.73, -1085.04], [-2105.68, -1085.1], [-2105.7, -1085.92], [-2103.8, -1085.96], [-2104.08, -1097.42], [-2111.32, -1097.24], [-2111.01, -1084.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2102.27, -1080.95], [-2092.47, -1081.35], [-2092.8, -1089.22], [-2089.97, -1089.34], [-2090.18, -1094.26], [-2102.8, -1093.73], [-2102.27, -1080.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2077.13, -1086.63], [-2077.41, -1096.31], [-2070.04, -1096.52], [-2069.76, -1086.84], [-2077.13, -1086.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2066.28, -1081.66], [-2057.72, -1081.96], [-2058.3, -1098.44], [-2066.86, -1098.14], [-2066.28, -1081.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2048.44, -1085.91], [-2048.88, -1101.9], [-2030.81, -1102.4], [-2030.37, -1086.4], [-2048.44, -1085.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.232, "pop": 116, "jobs": 0}}, {"shape": {"outer": [[-2043.3, -1071.2], [-2034.3, -1071.46], [-2034.39, -1074.63], [-2032.45, -1074.68], [-2032.6, -1080.07], [-2034.54, -1080.01], [-2034.57, -1080.83], [-2043.57, -1080.57], [-2043.3, -1071.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2051.87, -1061.06], [-2048.32, -1061.18], [-2048.6, -1068.8], [-2052.14, -1068.67], [-2051.87, -1061.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2047.81, -1059.74], [-2044.36, -1059.84], [-2044.55, -1066.75], [-2048.0, -1066.66], [-2047.81, -1059.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2042.72, -1058.65], [-2034.16, -1058.95], [-2034.2, -1060.08], [-2032.97, -1060.13], [-2033.17, -1065.95], [-2034.41, -1065.91], [-2034.47, -1067.7], [-2043.03, -1067.41], [-2042.72, -1058.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2075.43, -1059.61], [-2075.83, -1069.06], [-2067.86, -1069.4], [-2067.46, -1059.95], [-2068.28, -1059.92], [-2068.2, -1058.0], [-2074.58, -1057.72], [-2074.67, -1059.65], [-2075.43, -1059.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2121.28, -1056.14], [-2121.75, -1068.32], [-2130.32, -1067.98], [-2129.84, -1055.8], [-2121.28, -1056.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2115.61, -1056.45], [-2107.75, -1056.67], [-2108.06, -1067.44], [-2110.95, -1067.36], [-2111.0, -1068.77], [-2115.96, -1068.63], [-2115.61, -1056.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2098.68, -1057.64], [-2098.91, -1065.6], [-2082.88, -1066.06], [-2082.65, -1058.09], [-2098.68, -1057.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2168.76, -1693.15], [-2169.05, -1696.92], [-2170.89, -1696.78], [-2171.27, -1701.8], [-2159.15, -1702.71], [-2158.49, -1693.93], [-2168.76, -1693.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2153.16, -1690.22], [-2153.25, -1693.28], [-2147.41, -1693.44], [-2147.32, -1690.39], [-2153.16, -1690.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-2145.66, -1692.89], [-2145.94, -1702.29], [-2132.28, -1702.69], [-2132.01, -1693.3], [-2145.66, -1692.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2131.63, -1678.82], [-2131.78, -1683.27], [-2133.33, -1683.22], [-2133.44, -1686.28], [-2134.68, -1686.23], [-2134.77, -1688.94], [-2143.51, -1688.64], [-2143.16, -1678.43], [-2131.63, -1678.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2171.9, -1678.69], [-2172.22, -1688.12], [-2160.81, -1688.5], [-2160.56, -1680.93], [-2163.06, -1680.85], [-2163.0, -1678.99], [-2171.9, -1678.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2141.16, -1664.74], [-2131.75, -1664.98], [-2131.97, -1673.19], [-2134.15, -1673.13], [-2134.24, -1676.55], [-2139.04, -1676.42], [-2138.95, -1672.97], [-2141.37, -1672.9], [-2141.16, -1664.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2173.88, -1667.12], [-2174.21, -1675.54], [-2162.69, -1675.98], [-2162.36, -1667.55], [-2173.88, -1667.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2171.87, -1652.98], [-2172.15, -1661.0], [-2162.21, -1661.34], [-2161.94, -1653.33], [-2171.87, -1652.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2147.13, -1651.25], [-2147.2, -1654.08], [-2144.51, -1654.16], [-2144.74, -1662.4], [-2130.21, -1662.81], [-2129.97, -1654.18], [-2136.71, -1653.99], [-2136.69, -1653.39], [-2140.79, -1653.28], [-2140.74, -1651.43], [-2147.13, -1651.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2141.44, -1637.85], [-2141.71, -1649.32], [-2130.95, -1649.57], [-2130.68, -1638.11], [-2141.44, -1637.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2170.74, -1638.1], [-2170.76, -1638.86], [-2172.61, -1638.8], [-2172.84, -1646.75], [-2170.99, -1646.81], [-2171.01, -1647.67], [-2158.4, -1648.04], [-2158.12, -1638.46], [-2170.74, -1638.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2173.27, -1627.27], [-2173.51, -1635.52], [-2161.17, -1635.89], [-2160.92, -1627.63], [-2173.27, -1627.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2169.79, -1611.01], [-2169.94, -1619.15], [-2160.33, -1619.32], [-2160.18, -1611.17], [-2169.79, -1611.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2142.93, -1615.51], [-2143.07, -1620.11], [-2146.39, -1620.01], [-2146.61, -1627.12], [-2139.51, -1627.35], [-2139.31, -1620.79], [-2131.08, -1621.05], [-2130.8, -1611.87], [-2140.63, -1611.57], [-2140.75, -1615.59], [-2142.93, -1615.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2140.71, -1597.36], [-2141.09, -1607.02], [-2136.63, -1607.19], [-2136.55, -1605.19], [-2134.63, -1605.27], [-2134.72, -1607.27], [-2130.61, -1607.43], [-2130.12, -1594.84], [-2136.07, -1594.62], [-2136.19, -1597.54], [-2140.71, -1597.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2169.26, -1598.93], [-2169.51, -1606.37], [-2158.25, -1606.74], [-2158.03, -1599.83], [-2160.98, -1599.74], [-2160.8, -1594.29], [-2166.67, -1594.1], [-2166.83, -1599.01], [-2169.26, -1598.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2169.29, -1579.78], [-2169.49, -1589.51], [-2157.42, -1589.77], [-2157.22, -1580.04], [-2169.29, -1579.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2149.54, -1586.87], [-2149.75, -1592.5], [-2143.42, -1592.74], [-2143.21, -1587.11], [-2149.54, -1586.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2138.58, -1580.61], [-2138.86, -1589.38], [-2127.24, -1589.76], [-2126.96, -1580.98], [-2138.58, -1580.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2141.64, -1564.18], [-2141.78, -1567.23], [-2137.73, -1567.41], [-2138.15, -1576.88], [-2127.03, -1577.38], [-2126.59, -1567.66], [-2133.73, -1567.34], [-2133.6, -1564.54], [-2141.64, -1564.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2168.1, -1565.32], [-2160.47, -1565.44], [-2160.61, -1573.87], [-2163.1, -1573.83], [-2163.13, -1575.19], [-2166.02, -1575.14], [-2165.99, -1573.78], [-2168.24, -1573.75], [-2168.1, -1565.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2155.68, -1572.53], [-2150.87, -1572.55], [-2150.89, -1576.68], [-2155.69, -1576.67], [-2155.68, -1572.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-2159.23, -1562.57], [-2159.31, -1565.57], [-2153.58, -1565.74], [-2153.49, -1562.74], [-2159.23, -1562.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-2170.5, -1549.83], [-2170.68, -1558.67], [-2155.59, -1558.98], [-2155.44, -1552.04], [-2157.37, -1552.01], [-2157.34, -1550.1], [-2170.5, -1549.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2168.03, -1534.39], [-2168.07, -1535.64], [-2169.76, -1535.6], [-2169.96, -1542.5], [-2168.27, -1542.55], [-2168.3, -1543.53], [-2155.57, -1543.89], [-2155.31, -1534.75], [-2168.03, -1534.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2155.14, -1543.1], [-2155.3, -1546.9], [-2149.31, -1547.18], [-2149.13, -1543.37], [-2155.14, -1543.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2137.12, -1540.69], [-2127.31, -1541.08], [-2127.39, -1542.91], [-2125.72, -1542.97], [-2125.94, -1548.47], [-2127.6, -1548.4], [-2127.68, -1550.13], [-2131.39, -1549.98], [-2131.6, -1555.11], [-2139.21, -1554.8], [-2138.99, -1549.36], [-2137.47, -1549.43], [-2137.12, -1540.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2136.01, -1529.76], [-2128.08, -1530.06], [-2128.4, -1538.81], [-2136.33, -1538.52], [-2136.01, -1529.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2135.69, -1517.8], [-2127.69, -1518.04], [-2127.97, -1527.18], [-2135.97, -1526.94], [-2135.91, -1524.93], [-2137.65, -1524.87], [-2137.54, -1521.55], [-2135.81, -1521.61], [-2135.69, -1517.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2169.15, -1519.82], [-2169.54, -1528.81], [-2158.51, -1529.29], [-2158.12, -1520.3], [-2169.15, -1519.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2167.29, -1508.49], [-2167.49, -1513.62], [-2161.86, -1513.84], [-2161.66, -1508.71], [-2167.29, -1508.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2134.17, -1508.66], [-2128.67, -1508.79], [-2128.8, -1514.08], [-2134.28, -1513.94], [-2134.17, -1508.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2134.55, -1492.42], [-2125.48, -1492.73], [-2125.84, -1502.96], [-2127.89, -1502.89], [-2127.98, -1505.71], [-2132.52, -1505.55], [-2132.42, -1502.73], [-2134.91, -1502.65], [-2134.55, -1492.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2145.81, -1491.41], [-2146.31, -1503.76], [-2147.29, -1503.72], [-2147.5, -1508.76], [-2137.29, -1509.17], [-2136.59, -1491.78], [-2137.62, -1491.74], [-2137.55, -1489.86], [-2144.76, -1489.58], [-2144.84, -1491.45], [-2145.81, -1491.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2142.9, -1509.95], [-2148.36, -1509.79], [-2148.48, -1513.88], [-2143.02, -1514.03], [-2142.9, -1509.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2152.47, -1504.05], [-2148.54, -1504.19], [-2148.76, -1510.18], [-2152.68, -1510.03], [-2152.47, -1504.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2157.99, -1489.15], [-2149.49, -1489.52], [-2150.0, -1501.26], [-2155.0, -1501.05], [-2155.06, -1502.55], [-2158.56, -1502.39], [-2157.99, -1489.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2169.88, -1488.72], [-2170.25, -1503.25], [-2160.59, -1503.5], [-2160.22, -1488.98], [-2169.88, -1488.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1869.88, -1761.32], [-1870.02, -1765.09], [-1864.79, -1765.29], [-1864.65, -1761.5], [-1869.88, -1761.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1861.59, -1766.77], [-1853.75, -1766.99], [-1853.98, -1774.83], [-1861.8, -1774.61], [-1861.59, -1766.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1837.17, -1774.98], [-1836.91, -1767.68], [-1844.33, -1767.41], [-1844.59, -1774.72], [-1837.17, -1774.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1835.84, -1768.65], [-1828.82, -1768.92], [-1829.06, -1775.34], [-1836.08, -1775.07], [-1835.84, -1768.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1920.96, -1734.34], [-1921.24, -1742.57], [-1910.11, -1742.97], [-1909.9, -1736.48], [-1912.78, -1736.38], [-1912.72, -1734.64], [-1912.91, -1734.63], [-1912.81, -1731.76], [-1915.67, -1731.66], [-1915.77, -1734.53], [-1920.96, -1734.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1895.72, -1734.65], [-1904.24, -1734.33], [-1904.38, -1737.93], [-1905.45, -1737.89], [-1905.7, -1744.83], [-1904.63, -1744.87], [-1904.76, -1748.48], [-1896.24, -1748.79], [-1895.72, -1734.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1891.41, -1739.13], [-1891.9, -1751.48], [-1882.78, -1751.83], [-1882.3, -1739.49], [-1883.29, -1739.45], [-1883.19, -1736.83], [-1890.12, -1736.56], [-1890.23, -1739.18], [-1891.41, -1739.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1873.37, -1736.71], [-1873.41, -1738.58], [-1875.51, -1738.53], [-1875.58, -1741.87], [-1873.49, -1741.92], [-1873.58, -1745.84], [-1864.41, -1746.04], [-1864.2, -1736.91], [-1873.37, -1736.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1860.63, -1738.21], [-1861.02, -1749.33], [-1852.67, -1749.63], [-1852.28, -1738.5], [-1852.93, -1738.49], [-1852.84, -1736.05], [-1859.78, -1735.81], [-1859.86, -1738.24], [-1860.63, -1738.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1846.27, -1738.01], [-1846.73, -1752.13], [-1839.47, -1752.38], [-1839.01, -1738.25], [-1841.5, -1738.17], [-1841.44, -1736.54], [-1845.32, -1736.41], [-1845.38, -1738.03], [-1846.27, -1738.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1834.1, -1737.34], [-1824.87, -1737.6], [-1825.2, -1749.14], [-1826.12, -1749.11], [-1826.23, -1752.76], [-1833.71, -1752.54], [-1833.61, -1748.9], [-1834.43, -1748.87], [-1834.1, -1737.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1822.27, -1738.76], [-1813.07, -1739.08], [-1813.39, -1748.82], [-1822.61, -1748.5], [-1822.27, -1738.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1811.4, -1740.71], [-1802.82, -1740.91], [-1803.07, -1751.59], [-1811.66, -1751.37], [-1811.4, -1740.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1800.55, -1741.3], [-1791.91, -1741.55], [-1792.23, -1752.58], [-1800.86, -1752.34], [-1800.55, -1741.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1812.32, -1753.87], [-1812.58, -1762.84], [-1804.45, -1763.07], [-1804.19, -1754.1], [-1812.32, -1753.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1806.09, -1766.99], [-1806.38, -1774.8], [-1798.21, -1775.1], [-1797.92, -1767.3], [-1806.09, -1766.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2096.88, -1494.34], [-2086.92, -1494.56], [-2087.07, -1501.46], [-2090.52, -1501.38], [-2090.6, -1505.26], [-2096.75, -1505.13], [-2096.66, -1501.43], [-2097.03, -1501.42], [-2096.88, -1494.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2081.99, -1496.2], [-2072.18, -1496.39], [-2072.41, -1508.9], [-2082.23, -1508.72], [-2081.99, -1496.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2066.03, -1499.59], [-2059.25, -1499.78], [-2059.28, -1500.81], [-2056.84, -1500.87], [-2057.27, -1515.85], [-2066.48, -1515.59], [-2066.03, -1499.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2053.41, -1493.0], [-2053.57, -1502.63], [-2044.23, -1502.79], [-2044.08, -1494.17], [-2050.41, -1494.06], [-2050.4, -1493.05], [-2053.41, -1493.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2041.27, -1493.66], [-2041.5, -1502.48], [-2032.65, -1502.71], [-2032.51, -1497.61], [-2031.01, -1497.64], [-2030.88, -1492.52], [-2036.33, -1492.38], [-2036.36, -1493.8], [-2041.27, -1493.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2027.71, -1492.96], [-2018.77, -1493.25], [-2019.18, -1505.76], [-2028.13, -1505.46], [-2027.71, -1492.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2023.29, -1515.29], [-2030.77, -1515.07], [-2030.93, -1520.45], [-2034.31, -1520.36], [-2034.46, -1525.74], [-2022.14, -1526.11], [-2021.98, -1520.62], [-2023.45, -1520.58], [-2023.29, -1515.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2038.35, -1530.44], [-2038.57, -1538.38], [-2023.61, -1538.81], [-2023.39, -1530.87], [-2038.35, -1530.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2039.93, -1542.67], [-2040.11, -1551.17], [-2034.2, -1551.29], [-2034.24, -1552.98], [-2025.8, -1553.17], [-2025.79, -1552.3], [-2023.54, -1552.35], [-2023.37, -1544.84], [-2025.63, -1544.79], [-2025.61, -1544.01], [-2031.71, -1543.88], [-2031.69, -1542.85], [-2039.93, -1542.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2068.27, -1541.78], [-2068.52, -1548.16], [-2058.97, -1548.54], [-2058.64, -1540.04], [-2066.77, -1539.72], [-2066.85, -1541.83], [-2068.27, -1541.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2067.81, -1529.56], [-2074.33, -1529.32], [-2074.57, -1535.69], [-2068.05, -1535.94], [-2067.81, -1529.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2081.74, -1537.51], [-2082.19, -1549.12], [-2073.07, -1549.48], [-2072.62, -1537.86], [-2074.58, -1537.78], [-2074.52, -1536.22], [-2079.1, -1536.04], [-2079.16, -1537.61], [-2081.74, -1537.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2093.45, -1538.5], [-2085.94, -1538.78], [-2086.37, -1549.94], [-2093.88, -1549.64], [-2093.45, -1538.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2097.81, -1536.86], [-2107.49, -1536.51], [-2108.01, -1550.31], [-2103.33, -1550.47], [-2103.2, -1547.18], [-2098.2, -1547.36], [-2097.81, -1536.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2089.27, -1528.05], [-2083.4, -1528.11], [-2083.45, -1533.77], [-2089.32, -1533.71], [-2089.27, -1528.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2104.52, -1516.67], [-2104.58, -1520.15], [-2106.87, -1520.11], [-2106.97, -1525.06], [-2097.32, -1525.24], [-2097.31, -1524.67], [-2090.63, -1524.8], [-2090.52, -1518.83], [-2094.23, -1518.76], [-2094.19, -1516.86], [-2104.52, -1516.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2106.43, -1509.09], [-2106.46, -1515.01], [-2099.63, -1515.04], [-2099.6, -1509.13], [-2106.43, -1509.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2106.29, -1494.5], [-2097.98, -1494.71], [-2098.28, -1507.23], [-2101.34, -1507.15], [-2101.37, -1508.15], [-2104.43, -1508.07], [-2104.41, -1507.07], [-2106.59, -1507.02], [-2106.29, -1494.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2036.85, -1557.3], [-2036.97, -1561.52], [-2035.32, -1561.56], [-2035.46, -1566.17], [-2024.27, -1566.49], [-2024.01, -1557.67], [-2036.85, -1557.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2036.06, -1577.48], [-2035.88, -1571.09], [-2026.32, -1571.36], [-2026.33, -1571.92], [-2024.65, -1571.97], [-2024.8, -1577.15], [-2026.48, -1577.1], [-2026.5, -1577.75], [-2036.06, -1577.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2053.43, -1566.96], [-2053.5, -1571.22], [-2047.33, -1571.33], [-2047.25, -1567.07], [-2053.43, -1566.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2067.93, -1570.4], [-2068.27, -1579.72], [-2059.7, -1580.04], [-2059.35, -1570.71], [-2060.61, -1570.66], [-2060.55, -1568.89], [-2066.66, -1568.67], [-2066.72, -1570.44], [-2067.93, -1570.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2079.88, -1568.45], [-2072.66, -1568.57], [-2072.81, -1577.98], [-2080.03, -1577.86], [-2080.02, -1577.28], [-2084.02, -1577.21], [-2083.91, -1570.62], [-2079.92, -1570.67], [-2079.88, -1568.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2105.33, -1566.34], [-2105.35, -1567.05], [-2107.67, -1567.0], [-2107.83, -1573.85], [-2105.51, -1573.91], [-2105.52, -1574.33], [-2094.53, -1574.59], [-2094.54, -1575.21], [-2085.3, -1575.43], [-2085.14, -1568.55], [-2091.1, -1568.41], [-2091.18, -1571.7], [-2094.65, -1571.61], [-2094.53, -1566.6], [-2105.33, -1566.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2107.81, -1576.56], [-2107.82, -1577.11], [-2109.55, -1577.09], [-2109.57, -1580.53], [-2107.85, -1580.54], [-2107.88, -1583.1], [-2107.54, -1583.1], [-2107.6, -1588.44], [-2099.34, -1588.51], [-2099.27, -1580.84], [-2093.2, -1580.9], [-2093.16, -1577.25], [-2099.24, -1577.19], [-2099.23, -1576.66], [-2107.81, -1576.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2098.59, -1597.34], [-2098.67, -1601.54], [-2092.92, -1601.65], [-2092.84, -1597.45], [-2098.59, -1597.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2107.16, -1590.04], [-2107.18, -1590.69], [-2109.25, -1590.63], [-2109.37, -1594.83], [-2107.29, -1594.87], [-2107.41, -1599.07], [-2099.11, -1599.3], [-2098.86, -1590.27], [-2107.16, -1590.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2107.18, -1602.2], [-2107.44, -1612.64], [-2102.61, -1612.76], [-2102.55, -1610.37], [-2098.66, -1610.47], [-2098.61, -1608.37], [-2094.55, -1608.47], [-2094.39, -1602.21], [-2099.42, -1602.09], [-2099.42, -1602.39], [-2107.18, -1602.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2091.21, -1601.76], [-2085.46, -1601.83], [-2085.53, -1610.48], [-2091.29, -1610.42], [-2091.21, -1601.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2084.82, -1590.57], [-2080.07, -1590.71], [-2080.24, -1596.36], [-2084.98, -1596.23], [-2084.82, -1590.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2080.74, -1599.52], [-2081.06, -1609.63], [-2078.94, -1609.69], [-2079.02, -1612.07], [-2073.77, -1612.24], [-2073.7, -1609.87], [-2072.92, -1609.89], [-2072.6, -1599.77], [-2080.74, -1599.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2070.88, -1602.02], [-2071.24, -1610.18], [-2070.41, -1610.22], [-2070.46, -1611.45], [-2064.4, -1611.71], [-2064.35, -1610.47], [-2063.11, -1610.53], [-2062.75, -1602.37], [-2063.74, -1602.33], [-2063.61, -1599.25], [-2069.77, -1598.99], [-2069.91, -1602.06], [-2070.88, -1602.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2034.99, -1579.73], [-2025.64, -1580.08], [-2025.69, -1581.76], [-2024.26, -1581.81], [-2024.49, -1588.17], [-2025.93, -1588.12], [-2025.98, -1589.5], [-2035.34, -1589.15], [-2035.16, -1584.49], [-2035.97, -1584.45], [-2035.82, -1580.42], [-2035.01, -1580.46], [-2034.99, -1579.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2039.15, -1600.68], [-2039.11, -1599.07], [-2041.01, -1599.02], [-2040.95, -1596.36], [-2039.05, -1596.4], [-2038.96, -1592.91], [-2026.59, -1593.2], [-2026.62, -1594.03], [-2024.56, -1594.08], [-2024.71, -1600.24], [-2026.76, -1600.19], [-2026.78, -1600.97], [-2039.15, -1600.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2053.97, -1597.34], [-2048.46, -1597.71], [-2048.84, -1603.41], [-2054.36, -1603.04], [-2053.97, -1597.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2038.73, -1604.8], [-2038.75, -1605.56], [-2042.05, -1605.45], [-2042.26, -1611.77], [-2038.95, -1611.87], [-2039.01, -1613.57], [-2024.43, -1614.05], [-2024.14, -1605.28], [-2038.73, -1604.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2046.05, -1612.33], [-2046.31, -1616.95], [-2040.8, -1617.26], [-2040.54, -1612.63], [-2046.05, -1612.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2039.65, -1618.6], [-2039.88, -1627.81], [-2027.48, -1628.11], [-2027.25, -1618.9], [-2039.65, -1618.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2039.5, -1631.68], [-2039.79, -1641.85], [-2027.67, -1642.2], [-2027.56, -1638.67], [-2025.98, -1638.71], [-2025.88, -1635.34], [-2027.47, -1635.29], [-2027.37, -1632.03], [-2039.5, -1631.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2035.46, -1643.23], [-2035.66, -1650.8], [-2027.24, -1651.04], [-2027.23, -1650.66], [-2025.28, -1650.7], [-2025.12, -1644.56], [-2027.06, -1644.5], [-2027.03, -1643.46], [-2035.46, -1643.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2036.76, -1656.97], [-2036.8, -1658.33], [-2039.32, -1658.25], [-2039.49, -1663.63], [-2036.97, -1663.72], [-2037.01, -1664.75], [-2025.49, -1665.11], [-2025.24, -1657.34], [-2036.76, -1656.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2069.94, -1631.01], [-2065.73, -1631.11], [-2065.75, -1631.75], [-2064.55, -1631.77], [-2064.54, -1631.24], [-2060.49, -1631.33], [-2060.71, -1641.09], [-2070.17, -1640.87], [-2069.94, -1631.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2083.41, -1630.07], [-2083.86, -1643.63], [-2082.6, -1643.67], [-2082.65, -1645.24], [-2079.54, -1645.34], [-2079.49, -1643.78], [-2074.98, -1643.92], [-2074.54, -1630.36], [-2083.41, -1630.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2086.71, -1645.73], [-2082.74, -1645.89], [-2082.96, -1651.91], [-2086.94, -1651.77], [-2086.71, -1645.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2094.69, -1645.78], [-2094.96, -1650.85], [-2087.97, -1651.21], [-2087.71, -1646.14], [-2094.69, -1645.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2099.86, -1641.69], [-2100.0, -1644.59], [-2098.13, -1644.68], [-2098.26, -1647.48], [-2100.13, -1647.4], [-2100.15, -1647.71], [-2108.28, -1647.33], [-2107.99, -1641.31], [-2099.86, -1641.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2093.0, -1630.85], [-2087.1, -1631.02], [-2087.29, -1637.71], [-2093.2, -1637.54], [-2093.0, -1630.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2108.06, -1628.07], [-2108.3, -1636.56], [-2096.45, -1636.9], [-2096.21, -1628.42], [-2108.06, -1628.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2041.73, -1669.27], [-2041.97, -1678.54], [-2024.47, -1678.98], [-2024.32, -1672.78], [-2025.53, -1672.76], [-2025.46, -1669.67], [-2041.73, -1669.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-2040.26, -1680.6], [-2033.13, -1680.78], [-2033.28, -1687.22], [-2040.41, -1687.05], [-2040.26, -1680.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2033.98, -1688.95], [-2034.39, -1703.12], [-2025.05, -1703.39], [-2024.64, -1689.23], [-2029.31, -1689.09], [-2029.24, -1686.42], [-2033.0, -1686.31], [-2033.08, -1688.98], [-2033.98, -1688.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2065.82, -1652.86], [-2074.01, -1652.72], [-2074.06, -1655.29], [-2074.92, -1655.28], [-2075.07, -1663.26], [-2066.01, -1663.43], [-2065.82, -1652.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2060.47, -1691.25], [-2060.69, -1700.28], [-2056.86, -1700.37], [-2056.93, -1703.29], [-2050.69, -1703.43], [-2050.63, -1700.51], [-2049.44, -1700.55], [-2049.22, -1691.52], [-2060.47, -1691.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2060.01, -1678.89], [-2050.99, -1679.15], [-2051.23, -1687.31], [-2060.24, -1687.06], [-2060.01, -1678.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2074.83, -1677.59], [-2063.06, -1677.85], [-2063.41, -1693.4], [-2062.57, -1693.41], [-2062.71, -1699.7], [-2069.34, -1699.55], [-2069.32, -1698.6], [-2075.29, -1698.47], [-2074.83, -1677.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.206, "pop": 103, "jobs": 0}}, {"shape": {"outer": [[-2093.21, -1686.43], [-2093.53, -1698.3], [-2081.46, -1698.63], [-2081.14, -1686.74], [-2082.91, -1686.69], [-2082.83, -1683.52], [-2090.47, -1683.31], [-2090.55, -1686.5], [-2093.21, -1686.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2105.44, -1654.2], [-2105.6, -1663.73], [-2087.84, -1664.03], [-2087.68, -1654.5], [-2105.44, -1654.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2083.36, -1660.54], [-2075.96, -1660.76], [-2076.25, -1670.78], [-2078.28, -1670.72], [-2078.47, -1677.18], [-2087.25, -1676.93], [-2087.05, -1669.92], [-2083.64, -1670.02], [-2083.36, -1660.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1878.71, -1575.67], [-1879.03, -1586.49], [-1877.53, -1586.53], [-1877.6, -1588.81], [-1871.7, -1588.98], [-1871.64, -1586.7], [-1870.19, -1586.75], [-1869.83, -1574.66], [-1874.24, -1574.53], [-1874.28, -1575.81], [-1878.71, -1575.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1866.21, -1577.1], [-1866.55, -1589.27], [-1855.78, -1589.57], [-1855.45, -1577.39], [-1856.11, -1577.37], [-1856.07, -1575.91], [-1862.46, -1575.72], [-1862.5, -1577.2], [-1866.21, -1577.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1848.32, -1562.03], [-1848.47, -1566.47], [-1842.84, -1566.65], [-1842.7, -1562.22], [-1848.32, -1562.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1853.25, -1573.51], [-1847.79, -1573.72], [-1847.87, -1575.77], [-1843.78, -1575.92], [-1844.33, -1589.92], [-1853.88, -1589.54], [-1853.25, -1573.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1830.34, -1573.19], [-1837.33, -1572.98], [-1837.49, -1578.36], [-1839.45, -1578.31], [-1839.71, -1587.0], [-1836.87, -1587.1], [-1836.89, -1588.08], [-1830.78, -1588.26], [-1830.34, -1573.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1825.99, -1576.73], [-1817.75, -1576.96], [-1817.86, -1580.99], [-1816.66, -1581.03], [-1816.79, -1585.7], [-1818.1, -1585.67], [-1818.23, -1590.13], [-1821.89, -1590.03], [-1821.92, -1591.0], [-1825.74, -1590.89], [-1825.59, -1585.45], [-1826.24, -1585.43], [-1825.99, -1576.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1814.33, -1570.79], [-1814.53, -1575.81], [-1808.2, -1576.07], [-1808.0, -1571.05], [-1814.33, -1570.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1810.75, -1563.77], [-1810.93, -1569.87], [-1803.78, -1570.07], [-1803.6, -1563.98], [-1810.75, -1563.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1802.45, -1584.86], [-1793.98, -1585.06], [-1794.07, -1589.02], [-1792.37, -1589.06], [-1792.48, -1594.13], [-1802.66, -1593.9], [-1802.59, -1590.79], [-1803.6, -1590.77], [-1803.53, -1587.67], [-1802.51, -1587.69], [-1802.45, -1584.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1803.73, -1573.94], [-1803.91, -1582.35], [-1786.28, -1582.74], [-1786.08, -1574.34], [-1803.73, -1573.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1798.87, -1562.53], [-1798.98, -1565.42], [-1803.01, -1565.26], [-1803.19, -1569.79], [-1799.16, -1569.95], [-1799.17, -1570.36], [-1790.01, -1570.72], [-1789.69, -1562.9], [-1790.24, -1562.88], [-1790.12, -1560.03], [-1795.86, -1559.8], [-1795.97, -1562.65], [-1798.87, -1562.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1797.91, -1550.33], [-1795.51, -1550.42], [-1795.42, -1547.9], [-1790.23, -1548.09], [-1790.33, -1550.61], [-1789.36, -1550.65], [-1789.64, -1558.45], [-1798.19, -1558.14], [-1797.91, -1550.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1804.39, -1537.38], [-1804.63, -1545.62], [-1791.63, -1545.99], [-1791.61, -1545.31], [-1789.13, -1545.38], [-1788.93, -1538.31], [-1791.41, -1538.24], [-1791.39, -1537.76], [-1804.39, -1537.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1841.63, -1546.71], [-1841.98, -1554.95], [-1833.25, -1555.32], [-1832.9, -1547.07], [-1841.63, -1546.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1865.41, -1545.19], [-1865.52, -1552.8], [-1856.88, -1552.91], [-1856.78, -1545.3], [-1865.41, -1545.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1863.3, -1524.53], [-1863.54, -1532.79], [-1856.06, -1533.02], [-1855.81, -1524.74], [-1863.3, -1524.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1872.96, -1498.17], [-1873.38, -1509.99], [-1872.77, -1510.01], [-1872.81, -1511.12], [-1868.88, -1511.26], [-1868.84, -1510.15], [-1864.99, -1510.29], [-1864.57, -1498.46], [-1872.96, -1498.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1862.87, -1498.34], [-1854.24, -1498.56], [-1854.53, -1510.59], [-1855.19, -1510.57], [-1855.21, -1511.58], [-1857.84, -1511.51], [-1857.82, -1510.5], [-1863.17, -1510.37], [-1862.87, -1498.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1799.51, -1497.51], [-1799.76, -1504.51], [-1796.41, -1504.63], [-1796.43, -1505.21], [-1785.91, -1505.56], [-1785.65, -1497.99], [-1799.51, -1497.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1799.9, -1506.54], [-1800.2, -1514.21], [-1796.93, -1514.34], [-1796.96, -1515.13], [-1786.49, -1515.55], [-1786.15, -1507.09], [-1799.9, -1506.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1797.13, -1515.7], [-1797.33, -1521.66], [-1792.82, -1521.83], [-1792.83, -1522.25], [-1788.72, -1522.4], [-1788.71, -1521.99], [-1786.69, -1522.06], [-1786.49, -1516.36], [-1788.5, -1516.29], [-1788.5, -1516.0], [-1797.13, -1515.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[86.08, 658.49], [75.84, 669.62], [75.45, 672.01], [74.34, 673.09], [73.6, 675.43], [72.3, 676.58], [69.67, 676.26], [63.24, 666.01], [62.24, 661.58], [62.35, 655.75], [63.98, 649.94], [67.0, 644.67], [70.88, 642.61], [72.76, 643.53], [86.08, 658.49]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.304, "pop": 0, "jobs": 304}}, {"shape": {"outer": [[-1626.7, -1402.69], [-1615.4, -1403.01], [-1615.65, -1411.61], [-1626.95, -1411.29], [-1626.93, -1410.69], [-1629.01, -1410.63], [-1628.81, -1403.61], [-1626.73, -1403.67], [-1626.7, -1402.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1625.66, -1381.42], [-1625.72, -1391.29], [-1615.83, -1391.36], [-1615.77, -1381.49], [-1625.66, -1381.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1608.35, -1383.14], [-1599.55, -1383.25], [-1599.77, -1401.76], [-1602.09, -1401.73], [-1602.12, -1403.95], [-1606.37, -1403.89], [-1606.35, -1401.68], [-1608.56, -1401.65], [-1608.35, -1383.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1592.57, -1386.12], [-1590.27, -1386.19], [-1590.25, -1385.47], [-1584.9, -1385.64], [-1584.92, -1386.36], [-1583.16, -1386.42], [-1583.68, -1403.01], [-1593.09, -1402.72], [-1592.57, -1386.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1578.72, -1382.37], [-1570.3, -1382.52], [-1570.55, -1397.12], [-1578.97, -1396.97], [-1578.72, -1382.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1566.83, -1386.15], [-1567.2, -1403.0], [-1558.73, -1403.19], [-1558.36, -1386.34], [-1559.56, -1386.31], [-1559.51, -1383.56], [-1565.18, -1383.45], [-1565.24, -1386.19], [-1566.83, -1386.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1577.98, -1422.93], [-1577.79, -1415.97], [-1568.61, -1416.22], [-1568.8, -1423.18], [-1577.98, -1422.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1566.64, -1413.77], [-1559.52, -1414.07], [-1559.85, -1422.07], [-1566.97, -1421.76], [-1566.64, -1413.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1594.35, -1415.87], [-1586.26, -1416.04], [-1586.43, -1423.76], [-1594.52, -1423.6], [-1594.35, -1415.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1627.11, -1415.04], [-1627.35, -1423.47], [-1616.65, -1423.77], [-1616.48, -1417.73], [-1618.06, -1417.69], [-1617.99, -1415.3], [-1627.11, -1415.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1612.52, -1456.58], [-1607.25, -1456.75], [-1607.05, -1450.77], [-1612.33, -1450.61], [-1612.52, -1456.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1601.81, -1432.91], [-1597.94, -1432.93], [-1597.97, -1437.61], [-1601.83, -1437.59], [-1601.81, -1432.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-1628.24, -1430.58], [-1628.46, -1439.6], [-1616.39, -1439.89], [-1616.17, -1430.87], [-1628.24, -1430.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1626.87, -1441.72], [-1621.08, -1441.85], [-1621.25, -1449.8], [-1627.04, -1449.67], [-1626.87, -1441.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1628.79, -1450.95], [-1628.88, -1457.19], [-1622.06, -1457.3], [-1621.96, -1451.05], [-1628.79, -1450.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1619.36, -1456.3], [-1619.67, -1472.18], [-1611.97, -1472.32], [-1611.7, -1458.16], [-1615.12, -1458.1], [-1615.09, -1456.37], [-1619.36, -1456.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1607.78, -1469.93], [-1606.47, -1469.96], [-1606.51, -1471.81], [-1599.64, -1471.94], [-1599.42, -1459.58], [-1607.59, -1459.42], [-1607.78, -1469.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1587.16, -1458.03], [-1595.79, -1457.86], [-1596.05, -1470.3], [-1595.28, -1470.31], [-1595.31, -1471.93], [-1593.35, -1471.97], [-1593.33, -1471.11], [-1590.92, -1471.16], [-1590.91, -1470.4], [-1589.6, -1470.43], [-1589.51, -1466.04], [-1587.33, -1466.09], [-1587.16, -1458.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1950.68, -1574.51], [-1950.89, -1585.06], [-1946.63, -1585.15], [-1946.59, -1583.03], [-1942.44, -1583.11], [-1942.24, -1573.37], [-1945.68, -1573.3], [-1945.71, -1574.6], [-1950.68, -1574.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1938.67, -1573.99], [-1930.48, -1574.27], [-1930.82, -1584.61], [-1934.15, -1584.49], [-1934.18, -1585.56], [-1936.2, -1585.5], [-1936.17, -1584.43], [-1939.0, -1584.33], [-1938.67, -1573.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1927.9, -1545.99], [-1927.9, -1550.43], [-1920.85, -1550.41], [-1920.85, -1545.97], [-1927.9, -1545.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1928.27, -1570.27], [-1928.49, -1587.99], [-1922.1, -1588.07], [-1922.1, -1586.99], [-1918.64, -1587.03], [-1918.44, -1570.38], [-1921.28, -1570.35], [-1921.19, -1563.48], [-1927.36, -1563.4], [-1927.43, -1570.27], [-1928.27, -1570.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-1895.97, -1543.42], [-1902.83, -1543.38], [-1902.87, -1550.4], [-1896.01, -1550.44], [-1895.97, -1543.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1912.6, -1551.55], [-1912.27, -1545.3], [-1903.37, -1545.78], [-1903.71, -1552.02], [-1912.6, -1551.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1913.8, -1573.74], [-1914.03, -1584.95], [-1913.49, -1584.95], [-1913.55, -1588.11], [-1906.18, -1588.25], [-1906.12, -1585.1], [-1905.39, -1585.12], [-1905.17, -1573.91], [-1905.99, -1573.9], [-1905.96, -1572.42], [-1910.33, -1572.33], [-1910.36, -1573.81], [-1913.8, -1573.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1901.48, -1569.4], [-1895.14, -1569.61], [-1895.3, -1574.69], [-1893.75, -1574.75], [-1893.91, -1579.75], [-1894.98, -1579.72], [-1895.17, -1585.78], [-1901.99, -1585.56], [-1901.48, -1569.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1886.53, -1560.15], [-1879.86, -1560.31], [-1880.06, -1568.36], [-1886.72, -1568.2], [-1886.53, -1560.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1890.19, -1571.31], [-1884.99, -1571.5], [-1885.23, -1577.66], [-1882.1, -1577.77], [-1882.4, -1586.08], [-1890.72, -1585.77], [-1890.19, -1571.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1963.88, -1573.24], [-1964.16, -1583.1], [-1963.45, -1583.12], [-1963.52, -1585.6], [-1955.93, -1585.81], [-1955.86, -1583.33], [-1954.88, -1583.36], [-1954.6, -1573.49], [-1955.53, -1573.47], [-1955.44, -1570.26], [-1963.03, -1570.04], [-1963.12, -1573.26], [-1963.88, -1573.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1979.54, -1583.56], [-1979.36, -1578.34], [-1976.98, -1578.42], [-1976.9, -1575.63], [-1966.35, -1575.98], [-1966.62, -1583.99], [-1979.54, -1583.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2001.77, -1575.32], [-2001.98, -1586.07], [-1982.42, -1586.44], [-1982.22, -1575.7], [-1987.51, -1575.59], [-1987.45, -1572.66], [-1996.24, -1572.5], [-1996.3, -1575.43], [-2001.77, -1575.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[-1997.94, -1556.79], [-1998.14, -1566.3], [-1985.03, -1566.56], [-1984.84, -1557.05], [-1997.94, -1556.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1998.8, -1542.15], [-1999.06, -1551.79], [-1984.64, -1552.19], [-1984.62, -1551.5], [-1982.55, -1551.56], [-1982.42, -1546.94], [-1984.16, -1546.89], [-1984.11, -1544.98], [-1984.83, -1544.96], [-1984.76, -1542.54], [-1998.8, -1542.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1970.84, -1549.06], [-1970.91, -1553.87], [-1964.37, -1553.96], [-1964.3, -1549.16], [-1970.84, -1549.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1981.83, -1537.97], [-1981.91, -1541.93], [-1976.28, -1542.04], [-1976.21, -1538.08], [-1981.83, -1537.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1996.02, -1530.12], [-1996.05, -1530.98], [-1997.74, -1530.92], [-1997.91, -1535.87], [-1996.23, -1535.92], [-1996.27, -1537.01], [-1984.69, -1537.42], [-1984.45, -1530.52], [-1996.02, -1530.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1996.44, -1517.82], [-1996.72, -1526.13], [-1986.34, -1526.48], [-1986.31, -1525.51], [-1983.15, -1525.63], [-1982.94, -1519.37], [-1986.1, -1519.26], [-1986.06, -1518.17], [-1996.44, -1517.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1998.01, -1492.25], [-1991.55, -1492.41], [-1991.61, -1494.67], [-1988.71, -1494.74], [-1989.07, -1510.43], [-1998.42, -1510.22], [-1998.01, -1492.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1984.77, -1493.46], [-1976.68, -1493.57], [-1976.83, -1504.46], [-1984.92, -1504.35], [-1984.77, -1493.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1973.49, -1494.7], [-1965.13, -1494.9], [-1965.48, -1509.95], [-1972.32, -1509.79], [-1972.22, -1505.73], [-1973.75, -1505.7], [-1973.49, -1494.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1962.57, -1497.18], [-1954.96, -1497.26], [-1955.09, -1511.15], [-1962.7, -1511.07], [-1962.57, -1497.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1950.87, -1494.5], [-1951.22, -1506.08], [-1943.48, -1506.32], [-1943.12, -1494.74], [-1950.87, -1494.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1941.08, -1494.92], [-1933.2, -1494.99], [-1933.29, -1505.77], [-1941.17, -1505.7], [-1941.08, -1494.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1928.18, -1511.12], [-1935.31, -1510.9], [-1935.54, -1518.86], [-1928.42, -1519.06], [-1928.18, -1511.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1914.57, -1502.25], [-1914.63, -1506.95], [-1912.83, -1506.98], [-1912.82, -1506.15], [-1907.99, -1506.22], [-1907.94, -1503.05], [-1904.25, -1503.1], [-1904.13, -1494.3], [-1913.04, -1494.18], [-1913.15, -1502.27], [-1914.57, -1502.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1901.41, -1497.8], [-1898.45, -1497.85], [-1898.42, -1495.12], [-1894.04, -1495.18], [-1894.08, -1497.92], [-1892.4, -1497.94], [-1892.43, -1499.95], [-1890.24, -1499.98], [-1890.35, -1507.0], [-1892.53, -1506.97], [-1892.62, -1513.66], [-1897.94, -1513.59], [-1897.92, -1511.84], [-1900.92, -1511.8], [-1900.86, -1507.99], [-1901.56, -1507.98], [-1901.41, -1497.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1880.86, -1530.98], [-1880.7, -1525.39], [-1874.2, -1525.57], [-1874.36, -1531.17], [-1880.86, -1530.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1884.12, -1500.21], [-1884.4, -1511.74], [-1883.48, -1511.76], [-1883.52, -1513.4], [-1875.64, -1513.58], [-1875.6, -1511.95], [-1874.67, -1511.98], [-1874.4, -1500.45], [-1875.06, -1500.43], [-1875.01, -1498.28], [-1883.09, -1498.1], [-1883.14, -1500.24], [-1884.12, -1500.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1920.61, -1509.19], [-1915.01, -1509.32], [-1915.18, -1516.83], [-1920.79, -1516.7], [-1920.61, -1509.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1933.18, -1530.39], [-1933.15, -1538.31], [-1925.66, -1538.29], [-1925.69, -1530.38], [-1926.52, -1530.37], [-1926.52, -1528.83], [-1932.38, -1528.85], [-1932.37, -1530.38], [-1933.18, -1530.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1889.88, -1535.14], [-1890.02, -1542.58], [-1901.17, -1542.37], [-1901.03, -1534.93], [-1889.88, -1535.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1554.46, -1270.93], [-1548.72, -1271.09], [-1548.51, -1263.58], [-1554.24, -1263.42], [-1554.46, -1270.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1578.93, -1262.82], [-1579.13, -1275.81], [-1570.23, -1275.95], [-1570.02, -1262.97], [-1570.84, -1262.96], [-1570.81, -1261.34], [-1578.08, -1261.22], [-1578.1, -1262.84], [-1578.93, -1262.82]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1590.88, -1262.43], [-1591.14, -1272.29], [-1590.45, -1272.31], [-1590.53, -1274.96], [-1587.03, -1275.05], [-1586.96, -1272.4], [-1582.36, -1272.53], [-1582.22, -1266.92], [-1583.2, -1266.89], [-1583.08, -1262.64], [-1583.61, -1262.62], [-1583.57, -1260.89], [-1590.4, -1260.71], [-1590.45, -1262.44], [-1590.88, -1262.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1615.1, -1260.32], [-1615.34, -1273.56], [-1610.33, -1273.65], [-1610.36, -1275.35], [-1602.57, -1275.48], [-1602.57, -1275.87], [-1595.87, -1276.0], [-1595.6, -1260.59], [-1602.43, -1260.47], [-1602.45, -1262.01], [-1608.29, -1261.9], [-1608.27, -1260.45], [-1615.1, -1260.32]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1618.86, -1260.59], [-1624.97, -1260.42], [-1625.25, -1270.14], [-1624.5, -1270.17], [-1624.54, -1271.7], [-1619.18, -1271.85], [-1618.86, -1260.59]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1625.92, -1278.14], [-1616.9, -1278.27], [-1616.96, -1282.25], [-1615.31, -1282.29], [-1615.38, -1286.95], [-1626.06, -1286.79], [-1625.92, -1278.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1574.72, -1343.04], [-1562.98, -1343.37], [-1563.26, -1353.11], [-1571.39, -1352.88], [-1571.25, -1347.82], [-1574.85, -1347.71], [-1574.72, -1343.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1625.07, -1295.6], [-1615.95, -1295.65], [-1616.0, -1303.11], [-1621.09, -1303.07], [-1621.08, -1302.31], [-1625.11, -1302.28], [-1625.11, -1301.83], [-1627.06, -1301.8], [-1627.03, -1296.03], [-1625.07, -1296.05], [-1625.07, -1295.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1625.57, -1307.66], [-1625.72, -1317.95], [-1613.76, -1318.13], [-1613.73, -1316.49], [-1611.35, -1316.53], [-1611.28, -1311.52], [-1613.66, -1311.49], [-1613.6, -1307.83], [-1625.57, -1307.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1566.48, -1313.89], [-1561.46, -1314.12], [-1561.78, -1320.76], [-1566.79, -1320.52], [-1566.48, -1313.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1585.75, -1339.06], [-1577.09, -1339.42], [-1577.47, -1348.2], [-1578.67, -1348.15], [-1578.78, -1350.69], [-1585.22, -1350.42], [-1585.11, -1347.87], [-1586.12, -1347.83], [-1585.75, -1339.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1584.82, -1331.1], [-1589.57, -1331.04], [-1589.63, -1337.25], [-1584.88, -1337.3], [-1584.82, -1331.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1602.48, -1338.77], [-1594.66, -1338.9], [-1594.85, -1350.39], [-1602.66, -1350.26], [-1602.48, -1338.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1615.75, -1338.31], [-1615.97, -1350.04], [-1607.61, -1350.2], [-1607.39, -1338.47], [-1608.2, -1338.45], [-1608.17, -1336.55], [-1614.67, -1336.42], [-1614.71, -1338.32], [-1615.75, -1338.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1627.84, -1337.27], [-1625.86, -1337.3], [-1625.81, -1334.08], [-1619.0, -1334.21], [-1619.29, -1349.41], [-1628.07, -1349.24], [-1627.84, -1337.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1575.84, -1503.28], [-1601.44, -1502.72], [-1601.82, -1520.05], [-1602.24, -1520.04], [-1602.36, -1525.47], [-1601.81, -1525.49], [-1601.87, -1527.89], [-1602.42, -1527.87], [-1602.54, -1533.15], [-1602.09, -1533.16], [-1602.13, -1535.34], [-1602.6, -1535.32], [-1602.72, -1540.61], [-1602.32, -1540.61], [-1602.39, -1544.21], [-1579.76, -1544.71], [-1579.65, -1539.37], [-1577.77, -1539.41], [-1577.68, -1535.83], [-1577.09, -1535.84], [-1576.99, -1530.89], [-1577.64, -1530.87], [-1577.57, -1527.99], [-1567.96, -1528.21], [-1567.99, -1529.43], [-1559.77, -1529.61], [-1559.73, -1528.09], [-1556.52, -1528.16], [-1556.42, -1523.71], [-1536.57, -1524.14], [-1536.59, -1524.99], [-1536.64, -1527.39], [-1528.23, -1527.57], [-1528.2, -1526.12], [-1525.67, -1526.18], [-1525.18, -1503.81], [-1541.49, -1503.44], [-1541.45, -1501.65], [-1552.7, -1501.4], [-1552.74, -1503.16], [-1565.25, -1502.89], [-1565.27, -1503.83], [-1568.43, -1503.76], [-1568.67, -1514.59], [-1576.09, -1514.42], [-1575.84, -1503.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 861, "jobs": 0}}, {"shape": {"outer": [[-1879.51, -955.3], [-1879.71, -962.66], [-1869.19, -962.96], [-1869.12, -960.58], [-1862.12, -960.78], [-1861.89, -952.85], [-1868.83, -952.65], [-1868.92, -955.6], [-1879.51, -955.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1806.6, -970.57], [-1806.75, -976.36], [-1801.29, -976.5], [-1801.14, -970.72], [-1806.6, -970.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1811.1, -970.6], [-1818.56, -970.43], [-1818.86, -982.72], [-1811.4, -982.91], [-1811.1, -970.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1822.31, -974.66], [-1830.28, -974.48], [-1830.47, -983.4], [-1822.51, -983.59], [-1822.31, -974.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1841.04, -970.22], [-1832.26, -970.31], [-1832.4, -982.78], [-1841.17, -982.69], [-1841.04, -970.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1842.7, -972.92], [-1849.76, -972.88], [-1849.79, -976.84], [-1852.99, -976.81], [-1853.02, -983.15], [-1849.82, -983.17], [-1849.82, -984.05], [-1842.77, -984.08], [-1842.7, -972.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1863.87, -971.83], [-1855.68, -971.89], [-1855.75, -983.27], [-1860.51, -983.23], [-1860.51, -984.15], [-1866.9, -984.11], [-1866.86, -978.24], [-1863.91, -978.25], [-1863.87, -971.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1878.08, -971.81], [-1878.41, -983.4], [-1870.05, -983.63], [-1869.67, -970.2], [-1873.1, -970.1], [-1873.16, -971.95], [-1878.08, -971.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1875.25, -964.52], [-1875.35, -968.23], [-1869.89, -968.38], [-1869.79, -964.66], [-1875.25, -964.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1789.83, -979.11], [-1790.08, -990.36], [-1780.68, -990.57], [-1780.66, -989.42], [-1778.62, -989.47], [-1778.43, -980.68], [-1780.47, -980.64], [-1780.44, -979.32], [-1789.83, -979.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1786.73, -968.61], [-1786.82, -972.63], [-1787.73, -972.61], [-1787.82, -976.47], [-1776.81, -976.73], [-1776.74, -973.68], [-1775.39, -973.71], [-1775.33, -971.1], [-1776.68, -971.07], [-1776.62, -968.84], [-1786.73, -968.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1787.35, -956.12], [-1787.54, -965.56], [-1775.71, -965.79], [-1775.65, -962.77], [-1774.47, -962.79], [-1774.4, -959.2], [-1775.58, -959.18], [-1775.52, -956.35], [-1780.25, -956.26], [-1780.24, -955.6], [-1782.64, -955.55], [-1782.65, -956.21], [-1787.35, -956.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1794.65, -931.76], [-1794.77, -937.36], [-1789.31, -937.48], [-1789.23, -933.5], [-1790.0, -933.48], [-1789.96, -931.86], [-1794.65, -931.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1805.88, -933.54], [-1806.21, -944.85], [-1798.89, -945.06], [-1798.49, -931.08], [-1802.8, -930.96], [-1802.88, -933.62], [-1805.88, -933.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1817.77, -932.67], [-1818.03, -941.99], [-1808.73, -942.26], [-1808.47, -932.94], [-1809.36, -932.91], [-1809.3, -930.66], [-1817.16, -930.43], [-1817.23, -932.69], [-1817.77, -932.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1828.7, -932.45], [-1828.09, -932.47], [-1828.03, -930.34], [-1820.99, -930.55], [-1821.05, -932.67], [-1820.5, -932.68], [-1820.79, -942.74], [-1824.24, -942.65], [-1824.32, -945.42], [-1827.86, -945.32], [-1827.78, -942.54], [-1828.98, -942.51], [-1828.7, -932.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1839.93, -931.9], [-1840.37, -947.14], [-1835.79, -947.27], [-1835.73, -945.2], [-1832.07, -945.3], [-1831.69, -932.14], [-1832.62, -932.11], [-1832.57, -930.26], [-1839.01, -930.07], [-1839.06, -931.93], [-1839.93, -931.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1851.69, -931.64], [-1843.07, -931.87], [-1843.48, -946.95], [-1852.09, -946.72], [-1851.69, -931.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1861.83, -931.39], [-1862.08, -942.58], [-1854.27, -942.75], [-1854.02, -931.56], [-1855.01, -931.54], [-1854.96, -929.34], [-1860.69, -929.22], [-1860.74, -931.41], [-1861.83, -931.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1873.37, -930.98], [-1872.75, -931.0], [-1872.7, -929.13], [-1865.77, -929.28], [-1865.82, -931.15], [-1865.01, -931.17], [-1865.27, -942.26], [-1873.62, -942.06], [-1873.37, -930.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1882.53, -929.16], [-1874.08, -929.42], [-1874.61, -945.86], [-1883.06, -945.58], [-1882.53, -929.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1749.31, -1016.66], [-1749.42, -1025.53], [-1747.51, -1025.56], [-1747.52, -1026.56], [-1742.43, -1026.63], [-1742.41, -1025.69], [-1729.41, -1025.85], [-1729.42, -1026.29], [-1728.02, -1026.31], [-1727.9, -1016.94], [-1749.31, -1016.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-1829.88, -1692.13], [-1830.43, -1707.21], [-1824.47, -1707.42], [-1824.38, -1705.07], [-1822.2, -1705.15], [-1822.28, -1707.51], [-1817.23, -1707.69], [-1816.66, -1692.62], [-1829.88, -1692.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-1801.9, -1706.04], [-1802.06, -1712.96], [-1793.06, -1713.17], [-1793.06, -1712.89], [-1791.49, -1712.93], [-1791.34, -1706.57], [-1792.91, -1706.53], [-1792.91, -1706.25], [-1801.9, -1706.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1806.1, -1693.81], [-1806.27, -1699.8], [-1791.25, -1700.23], [-1791.08, -1694.24], [-1806.1, -1693.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1814.91, -1690.68], [-1811.64, -1690.78], [-1811.74, -1694.2], [-1815.01, -1694.1], [-1814.91, -1690.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[-1805.35, -1673.36], [-1790.15, -1673.64], [-1790.44, -1689.26], [-1805.63, -1688.98], [-1805.51, -1682.1], [-1804.15, -1682.13], [-1804.14, -1681.79], [-1800.64, -1681.84], [-1800.63, -1680.85], [-1804.08, -1680.79], [-1804.08, -1680.39], [-1805.47, -1680.36], [-1805.35, -1673.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[-1804.41, -1665.61], [-1791.91, -1665.97], [-1792.06, -1671.19], [-1802.6, -1670.88], [-1802.57, -1669.79], [-1804.53, -1669.74], [-1804.41, -1665.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1822.16, -1616.73], [-1820.34, -1616.78], [-1820.29, -1615.06], [-1814.45, -1615.21], [-1814.49, -1616.94], [-1812.34, -1617.0], [-1812.74, -1632.07], [-1822.56, -1631.81], [-1822.16, -1616.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1811.73, -1642.52], [-1818.55, -1642.37], [-1818.76, -1651.61], [-1811.94, -1651.78], [-1811.73, -1642.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1806.04, -1660.8], [-1805.84, -1655.84], [-1791.48, -1656.42], [-1791.5, -1657.04], [-1790.16, -1657.1], [-1790.32, -1661.09], [-1791.67, -1661.03], [-1791.69, -1661.38], [-1806.04, -1660.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1801.56, -1636.58], [-1801.7, -1640.63], [-1806.42, -1640.48], [-1806.62, -1646.39], [-1794.03, -1646.82], [-1793.7, -1636.85], [-1801.56, -1636.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1792.57, -1619.11], [-1792.95, -1632.6], [-1802.3, -1632.33], [-1801.9, -1618.84], [-1800.38, -1618.89], [-1800.29, -1615.88], [-1794.12, -1616.05], [-1794.2, -1619.06], [-1792.57, -1619.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1911.89, -1687.84], [-1901.97, -1688.21], [-1902.49, -1702.19], [-1912.41, -1701.82], [-1911.89, -1687.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1917.67, -1671.83], [-1918.16, -1685.36], [-1904.54, -1685.85], [-1904.05, -1672.32], [-1917.67, -1671.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-2160.31, -1415.47], [-2160.41, -1419.71], [-2161.65, -1419.68], [-2161.73, -1423.06], [-2160.49, -1423.09], [-2160.6, -1427.49], [-2149.65, -1427.75], [-2149.55, -1423.67], [-2147.32, -1423.72], [-2147.16, -1417.08], [-2149.39, -1417.03], [-2149.36, -1415.73], [-2160.31, -1415.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2157.18, -1401.51], [-2157.19, -1402.43], [-2159.99, -1402.4], [-2160.09, -1410.34], [-2157.28, -1410.38], [-2157.3, -1411.63], [-2146.7, -1411.76], [-2146.58, -1401.64], [-2157.18, -1401.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2145.97, -1389.8], [-2146.16, -1398.95], [-2159.26, -1398.68], [-2159.07, -1389.53], [-2145.97, -1389.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2160.92, -1368.57], [-2156.93, -1368.69], [-2157.0, -1370.87], [-2153.08, -1370.99], [-2153.1, -1371.83], [-2144.31, -1372.08], [-2144.48, -1378.08], [-2153.28, -1377.82], [-2153.42, -1382.5], [-2161.32, -1382.28], [-2160.92, -1368.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2135.85, -1368.95], [-2129.42, -1369.13], [-2129.48, -1371.46], [-2128.61, -1371.49], [-2128.9, -1381.45], [-2136.76, -1381.22], [-2136.47, -1371.06], [-2135.91, -1371.08], [-2135.85, -1368.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2126.75, -1369.28], [-2118.91, -1369.41], [-2119.16, -1383.56], [-2126.98, -1383.43], [-2126.75, -1369.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2137.55, -1448.75], [-2149.47, -1448.35], [-2149.66, -1454.1], [-2145.91, -1454.23], [-2146.03, -1457.7], [-2143.14, -1457.79], [-2143.11, -1456.81], [-2137.82, -1456.99], [-2137.55, -1448.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2125.53, -1441.64], [-2134.27, -1441.49], [-2134.51, -1454.77], [-2132.11, -1454.82], [-2132.13, -1456.1], [-2128.14, -1456.17], [-2128.12, -1454.89], [-2125.77, -1454.93], [-2125.53, -1441.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2131.93, -1415.63], [-2131.87, -1422.76], [-2123.02, -1422.69], [-2123.07, -1415.56], [-2131.93, -1415.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2121.44, -1443.1], [-2112.87, -1443.28], [-2113.16, -1457.32], [-2121.72, -1457.14], [-2121.44, -1443.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2110.1, -1449.26], [-2110.25, -1457.33], [-2106.46, -1457.41], [-2106.5, -1459.73], [-2100.73, -1459.83], [-2100.55, -1449.42], [-2101.58, -1449.4], [-2101.5, -1444.4], [-2107.01, -1444.31], [-2107.1, -1449.31], [-2110.1, -1449.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2115.49, -1371.92], [-2115.63, -1381.83], [-2107.67, -1381.95], [-2107.52, -1372.04], [-2108.27, -1372.03], [-2108.23, -1369.84], [-2111.56, -1369.79], [-2111.6, -1371.98], [-2115.49, -1371.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2103.52, -1371.75], [-2103.75, -1381.35], [-2099.83, -1381.45], [-2099.94, -1385.81], [-2097.47, -1385.88], [-2097.42, -1383.76], [-2095.55, -1383.8], [-2095.51, -1381.96], [-2093.32, -1382.02], [-2093.07, -1372.02], [-2103.52, -1371.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2095.98, -1386.91], [-2090.23, -1387.01], [-2090.34, -1392.51], [-2096.08, -1392.4], [-2095.98, -1386.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2085.57, -1445.98], [-2093.81, -1445.85], [-2094.04, -1459.83], [-2085.81, -1459.97], [-2085.57, -1445.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2083.81, -1447.88], [-2075.98, -1448.08], [-2076.22, -1457.61], [-2076.65, -1457.6], [-2076.7, -1459.61], [-2083.8, -1459.43], [-2083.75, -1457.42], [-2084.06, -1457.41], [-2083.81, -1447.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2088.02, -1371.71], [-2079.07, -1371.97], [-2079.69, -1394.61], [-2081.44, -1394.57], [-2081.52, -1397.82], [-2088.36, -1397.62], [-2088.26, -1394.09], [-2088.64, -1394.08], [-2088.02, -1371.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-2063.95, -1380.06], [-2071.01, -1379.97], [-2070.89, -1369.85], [-2063.83, -1369.94], [-2063.95, -1380.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2051.58, -1369.63], [-2059.98, -1369.54], [-2060.12, -1381.78], [-2051.71, -1381.88], [-2051.58, -1369.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2073.84, -1447.75], [-2065.92, -1447.84], [-2066.01, -1456.74], [-2066.7, -1456.73], [-2066.71, -1457.55], [-2069.87, -1457.53], [-2069.86, -1456.7], [-2073.93, -1456.66], [-2073.84, -1447.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2066.79, -1440.65], [-2063.33, -1440.72], [-2063.45, -1446.97], [-2066.91, -1446.9], [-2066.79, -1440.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2062.21, -1458.07], [-2062.18, -1454.93], [-2062.63, -1454.93], [-2062.56, -1447.42], [-2055.43, -1447.49], [-2055.53, -1458.14], [-2056.38, -1458.12], [-2056.4, -1460.28], [-2061.85, -1460.23], [-2061.83, -1458.08], [-2062.21, -1458.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2042.63, -1446.5], [-2050.94, -1446.35], [-2051.13, -1456.64], [-2042.82, -1456.79], [-2042.63, -1446.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2051.07, -1429.41], [-2051.41, -1436.46], [-2043.11, -1436.85], [-2042.77, -1429.81], [-2051.07, -1429.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2065.66, -1421.95], [-2065.89, -1427.27], [-2058.96, -1427.57], [-2058.73, -1422.24], [-2065.66, -1421.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2053.98, -1417.32], [-2054.53, -1424.41], [-2052.71, -1424.55], [-2052.82, -1425.89], [-2042.6, -1426.7], [-2041.93, -1418.27], [-2053.98, -1417.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2066.45, -1406.4], [-2066.56, -1411.58], [-2073.17, -1411.45], [-2073.06, -1406.26], [-2066.45, -1406.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2053.43, -1406.49], [-2053.46, -1409.06], [-2054.26, -1409.05], [-2054.35, -1414.53], [-2053.54, -1414.55], [-2053.56, -1415.29], [-2039.41, -1415.51], [-2039.28, -1406.71], [-2053.43, -1406.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2072.93, -1399.9], [-2072.96, -1404.44], [-2065.97, -1404.48], [-2065.94, -1399.93], [-2072.93, -1399.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2053.28, -1396.06], [-2053.33, -1398.17], [-2054.42, -1398.15], [-2054.54, -1402.77], [-2053.45, -1402.8], [-2053.5, -1404.9], [-2039.13, -1405.26], [-2038.91, -1396.41], [-2053.28, -1396.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2052.8, -1385.77], [-2053.06, -1394.87], [-2039.35, -1395.26], [-2039.09, -1386.16], [-2052.8, -1385.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[763.97, 644.34], [793.84, 611.75], [779.22, 598.46], [749.36, 631.06], [763.97, 644.34]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.559, "pop": 0, "jobs": 559}}, {"shape": {"outer": [[828.56, 536.75], [799.17, 510.14], [816.33, 490.71], [845.93, 517.74], [828.56, 536.75]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.659, "pop": 0, "jobs": 659}}, {"shape": {"outer": [[-1867.34, -1695.18], [-1875.42, -1694.88], [-1875.88, -1707.44], [-1867.82, -1707.75], [-1867.34, -1695.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1890.86, -1694.02], [-1882.34, -1694.26], [-1882.67, -1705.79], [-1883.72, -1705.76], [-1883.81, -1708.92], [-1890.35, -1708.74], [-1890.26, -1705.57], [-1891.19, -1705.54], [-1890.86, -1694.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1940.95, -1690.95], [-1942.52, -1690.91], [-1942.49, -1689.35], [-1945.49, -1689.28], [-1945.52, -1690.86], [-1948.58, -1690.79], [-1948.83, -1703.52], [-1941.2, -1703.68], [-1940.95, -1690.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1927.34, -1677.32], [-1922.37, -1677.45], [-1922.58, -1684.97], [-1927.54, -1684.84], [-1927.34, -1677.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1935.01, -1685.99], [-1925.71, -1686.2], [-1926.15, -1705.25], [-1935.45, -1705.04], [-1935.01, -1685.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-1865.15, -1619.64], [-1865.7, -1633.9], [-1859.97, -1634.12], [-1859.42, -1619.86], [-1860.0, -1619.83], [-1859.93, -1617.97], [-1864.4, -1617.81], [-1864.47, -1619.66], [-1865.15, -1619.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1846.4, -1700.6], [-1849.28, -1700.54], [-1849.17, -1694.86], [-1846.28, -1694.92], [-1846.4, -1700.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-1859.85, -1697.67], [-1859.92, -1707.91], [-1850.85, -1707.98], [-1850.81, -1701.18], [-1849.77, -1701.19], [-1849.75, -1698.07], [-1850.83, -1698.07], [-1850.83, -1697.74], [-1859.85, -1697.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1857.81, -1617.33], [-1850.18, -1617.52], [-1850.49, -1630.22], [-1858.14, -1630.03], [-1857.81, -1617.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1847.95, -1619.66], [-1848.23, -1630.35], [-1840.58, -1630.55], [-1840.44, -1625.08], [-1838.61, -1625.13], [-1838.42, -1618.09], [-1846.92, -1617.87], [-1846.97, -1619.68], [-1847.95, -1619.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1848.13, -1659.57], [-1847.95, -1653.16], [-1841.33, -1653.35], [-1841.52, -1659.76], [-1848.13, -1659.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1839.1, -1665.17], [-1845.06, -1665.03], [-1845.33, -1676.35], [-1839.38, -1676.5], [-1839.1, -1665.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1844.83, -1694.23], [-1845.22, -1706.05], [-1833.76, -1706.44], [-1833.36, -1694.61], [-1835.88, -1694.53], [-1835.76, -1690.75], [-1842.52, -1690.53], [-1842.65, -1694.3], [-1844.83, -1694.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1916.36, -1618.47], [-1916.75, -1631.82], [-1907.36, -1632.1], [-1906.97, -1618.74], [-1907.74, -1618.72], [-1907.67, -1616.41], [-1915.37, -1616.19], [-1915.44, -1618.5], [-1916.36, -1618.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-1904.66, -1618.2], [-1904.83, -1634.1], [-1895.49, -1634.2], [-1895.32, -1618.31], [-1896.41, -1618.29], [-1896.39, -1616.7], [-1903.6, -1616.63], [-1903.62, -1618.21], [-1904.66, -1618.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1892.33, -1629.84], [-1885.63, -1629.98], [-1885.4, -1618.79], [-1888.22, -1618.73], [-1888.19, -1617.08], [-1892.06, -1617.0], [-1892.33, -1629.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1884.85, -1619.06], [-1877.47, -1619.24], [-1877.71, -1629.49], [-1885.09, -1629.33], [-1884.85, -1619.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1877.29, -1619.3], [-1876.44, -1619.33], [-1876.38, -1617.34], [-1869.5, -1617.51], [-1869.71, -1625.6], [-1870.98, -1625.56], [-1871.14, -1631.63], [-1876.33, -1631.49], [-1876.17, -1625.43], [-1877.45, -1625.4], [-1877.29, -1619.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[886.51, 1303.14], [882.23, 1307.89], [889.18, 1314.11], [893.45, 1309.37], [886.51, 1303.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2342.4, 1146.83], [2336.44, 1141.23], [2342.71, 1134.28], [2348.66, 1140.05], [2342.4, 1146.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2350.29, 1141.57], [2355.98, 1146.61], [2350.04, 1153.29], [2344.35, 1148.01], [2350.29, 1141.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2360.11, 1150.12], [2367.34, 1156.61], [2361.52, 1163.16], [2354.16, 1156.56], [2360.11, 1150.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2346.14, 1162.22], [2353.41, 1169.84], [2347.57, 1175.39], [2340.2, 1168.66], [2346.14, 1162.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2272.22, 947.12], [2262.7, 956.39], [2267.34, 961.02], [2277.5, 951.72], [2272.22, 947.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2283.67, 967.93], [2279.45, 974.05], [2285.36, 979.01], [2290.11, 974.0], [2283.67, 967.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2290.49, 978.49], [2285.25, 984.26], [2292.07, 990.07], [2298.03, 983.16], [2290.49, 978.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2298.93, 986.5], [2288.69, 997.17], [2294.33, 1002.57], [2304.34, 991.95], [2298.93, 986.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2278.1, 1003.6], [2285.65, 1009.98], [2279.8, 1016.92], [2272.15, 1009.87], [2278.1, 1003.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2325.34, 1111.9], [2318.8, 1119.18], [2328.09, 1126.71], [2334.81, 1120.27], [2325.34, 1111.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2316.26, 1118.92], [2311.61, 1125.69], [2318.29, 1131.86], [2323.13, 1126.03], [2316.26, 1118.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2308.57, 1128.14], [2303.25, 1134.64], [2312.19, 1143.12], [2317.6, 1137.28], [2308.57, 1128.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2299.98, 1137.01], [2294.56, 1143.32], [2301.14, 1149.21], [2307.01, 1143.08], [2299.98, 1137.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2292.06, 1146.32], [2286.07, 1152.75], [2293.35, 1159.85], [2299.22, 1153.52], [2292.06, 1146.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2282.35, 1154.91], [2277.35, 1160.85], [2285.84, 1169.2], [2290.99, 1162.96], [2282.35, 1154.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2264.45, 1172.78], [2259.23, 1179.75], [2267.9, 1188.52], [2274.04, 1182.09], [2264.45, 1172.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2257.88, 1181.59], [2251.25, 1188.88], [2260.54, 1197.57], [2267.47, 1190.9], [2257.88, 1181.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2251.09, 1190.62], [2244.46, 1197.92], [2253.76, 1206.6], [2260.69, 1199.93], [2251.09, 1190.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2243.17, 1199.62], [2236.53, 1206.91], [2250.89, 1219.08], [2256.43, 1212.14], [2243.17, 1199.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2234.11, 1209.49], [2227.47, 1216.78], [2239.12, 1226.2], [2244.9, 1219.9], [2234.11, 1209.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2225.73, 1218.43], [2219.09, 1225.73], [2230.75, 1235.14], [2236.52, 1228.85], [2225.73, 1218.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2217.68, 1228.32], [2211.04, 1235.62], [2220.16, 1243.21], [2225.75, 1236.83], [2217.68, 1228.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2210.19, 1236.02], [2203.55, 1243.31], [2213.25, 1250.89], [2219.04, 1245.17], [2210.19, 1236.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2228.6, 1248.49], [2221.97, 1255.78], [2227.86, 1259.86], [2234.04, 1254.22], [2228.6, 1248.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2248.92, 1270.92], [2242.29, 1278.21], [2249.83, 1284.44], [2255.99, 1278.13], [2248.92, 1270.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2254.24, 1261.17], [2247.9, 1267.77], [2257.57, 1276.12], [2263.73, 1269.94], [2254.24, 1261.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2263.38, 1253.69], [2257.04, 1260.29], [2266.05, 1267.41], [2271.37, 1262.5], [2263.38, 1253.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2272.0, 1247.8], [2266.95, 1253.05], [2274.64, 1260.53], [2279.61, 1255.15], [2272.0, 1247.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2278.77, 1235.24], [2272.41, 1241.51], [2281.47, 1250.1], [2287.88, 1242.7], [2278.77, 1235.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2290.73, 1227.89], [2286.02, 1233.46], [2292.04, 1239.99], [2297.65, 1234.09], [2290.73, 1227.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2296.56, 1220.06], [2291.84, 1225.62], [2297.86, 1232.16], [2303.48, 1226.26], [2296.56, 1220.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2304.91, 1210.75], [2300.19, 1216.31], [2306.21, 1222.85], [2311.83, 1216.94], [2304.91, 1210.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2315.07, 1201.22], [2308.71, 1207.33], [2315.09, 1214.68], [2322.33, 1207.91], [2315.07, 1201.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2323.11, 1192.58], [2317.74, 1198.49], [2323.72, 1204.05], [2329.52, 1198.31], [2323.11, 1192.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2324.09, 1190.81], [2330.37, 1196.08], [2336.82, 1189.95], [2330.89, 1185.17], [2324.09, 1190.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2335.76, 1179.02], [2342.04, 1184.29], [2348.49, 1178.17], [2342.56, 1173.39], [2335.76, 1179.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2351.0, 1163.09], [2354.35, 1166.93], [2357.99, 1163.52], [2354.72, 1159.66], [2351.0, 1163.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[591.22, 1249.0], [598.37, 1241.25], [587.55, 1231.32], [580.39, 1239.07], [591.22, 1249.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[599.28, 1263.85], [608.69, 1258.76], [601.57, 1245.68], [592.15, 1250.77], [593.32, 1252.92], [591.46, 1253.93], [596.29, 1262.79], [598.16, 1261.78], [599.28, 1263.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[570.58, 1263.37], [576.26, 1269.53], [583.82, 1262.6], [578.14, 1256.45], [570.58, 1263.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[554.26, 1285.8], [559.41, 1291.04], [566.11, 1284.48], [560.96, 1279.24], [554.26, 1285.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[601.36, 1280.72], [607.02, 1277.94], [607.3, 1278.5], [616.01, 1274.21], [610.27, 1262.64], [595.9, 1269.72], [601.36, 1280.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[612.84, 1289.78], [612.39, 1288.17], [619.7, 1286.1], [617.47, 1278.26], [604.16, 1282.02], [606.84, 1291.47], [612.84, 1289.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[624.52, 1301.38], [620.93, 1290.66], [609.1, 1294.6], [606.53, 1297.54], [609.06, 1305.1], [611.35, 1304.35], [611.78, 1305.62], [624.52, 1301.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[616.33, 1318.83], [613.14, 1309.15], [629.74, 1303.74], [632.92, 1313.42], [616.33, 1318.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[634.36, 1329.76], [631.62, 1320.88], [615.3, 1325.9], [618.04, 1334.78], [634.36, 1329.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[621.22, 1348.36], [618.2, 1339.05], [632.63, 1334.54], [635.6, 1343.72], [621.22, 1348.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[641.06, 1359.47], [637.55, 1348.1], [626.91, 1351.38], [628.73, 1357.25], [627.57, 1359.3], [628.23, 1362.03], [630.24, 1362.8], [641.06, 1359.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[630.63, 1380.26], [627.89, 1371.07], [643.14, 1366.55], [647.18, 1380.11], [639.1, 1382.5], [640.07, 1385.76], [633.33, 1387.75], [632.19, 1383.9], [634.52, 1383.21], [633.4, 1379.45], [630.63, 1380.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[643.79, 1404.73], [654.5, 1401.47], [651.11, 1390.37], [640.4, 1393.63], [643.79, 1404.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[647.61, 1417.34], [644.66, 1407.63], [656.73, 1403.99], [657.22, 1405.58], [659.46, 1404.9], [661.31, 1411.0], [659.29, 1411.61], [659.91, 1413.64], [647.61, 1417.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[644.88, 1425.52], [663.84, 1419.35], [666.84, 1428.49], [647.87, 1434.66], [644.88, 1425.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[658.89, 1449.23], [669.78, 1446.04], [665.13, 1432.28], [653.92, 1435.84], [658.89, 1449.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[664.53, 1476.99], [678.18, 1472.77], [677.23, 1469.75], [678.58, 1469.34], [677.34, 1465.33], [675.97, 1465.74], [673.1, 1456.54], [665.21, 1458.99], [667.19, 1465.35], [661.45, 1467.12], [664.53, 1476.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[671.61, 1491.93], [682.93, 1488.31], [679.6, 1477.92], [668.27, 1481.54], [671.61, 1491.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[677.92, 1505.6], [674.4, 1494.68], [684.45, 1491.46], [687.97, 1502.37], [677.92, 1505.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[679.01, 1509.2], [678.55, 1507.68], [688.37, 1504.68], [692.3, 1517.45], [674.69, 1522.83], [671.23, 1511.59], [679.01, 1509.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[686.56, 1535.98], [696.52, 1532.9], [692.71, 1520.64], [682.75, 1523.71], [686.56, 1535.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[673.59, 1575.79], [672.01, 1570.73], [687.56, 1565.88], [689.14, 1570.94], [673.59, 1575.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[690.04, 1562.49], [687.32, 1553.59], [705.54, 1548.08], [707.29, 1553.84], [704.87, 1554.58], [705.82, 1557.7], [690.04, 1562.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[687.01, 1549.85], [686.49, 1548.07], [685.07, 1547.43], [683.04, 1548.02], [680.93, 1540.83], [697.54, 1536.02], [698.86, 1540.55], [700.82, 1539.97], [702.4, 1545.39], [687.01, 1549.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[693.52, 1574.89], [708.78, 1570.15], [706.36, 1562.44], [691.1, 1567.18], [693.52, 1574.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[694.43, 1576.64], [711.79, 1571.41], [714.68, 1580.92], [707.57, 1583.06], [708.12, 1584.86], [697.86, 1587.95], [694.43, 1576.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[714.39, 1584.29], [718.45, 1596.18], [709.18, 1599.33], [705.12, 1587.43], [714.39, 1584.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[720.13, 1613.78], [716.5, 1602.22], [707.4, 1605.06], [711.03, 1616.62], [720.13, 1613.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[721.58, 1634.44], [722.27, 1636.63], [731.67, 1633.69], [727.6, 1620.8], [719.28, 1623.4], [718.98, 1624.66], [717.69, 1625.32], [717.47, 1625.86], [717.54, 1626.68], [716.49, 1627.34], [718.99, 1635.24], [721.58, 1634.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[716.69, 1649.76], [714.34, 1642.71], [717.23, 1641.75], [717.05, 1641.19], [730.84, 1636.63], [734.49, 1647.61], [720.85, 1652.12], [720.55, 1651.19], [719.44, 1651.56], [718.63, 1649.11], [716.69, 1649.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[731.9, 1683.73], [743.54, 1673.52], [738.83, 1668.18], [735.87, 1668.64], [734.26, 1658.0], [730.24, 1658.59], [728.87, 1658.21], [727.75, 1654.2], [722.47, 1655.67], [722.99, 1657.54], [718.79, 1658.71], [721.19, 1667.18], [720.76, 1668.74], [721.17, 1671.57], [731.9, 1683.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.302, "pop": 151, "jobs": 0}}, {"shape": {"outer": [[736.27, 1687.79], [738.31, 1686.08], [737.72, 1685.37], [746.47, 1678.0], [746.97, 1678.59], [748.41, 1677.37], [750.51, 1679.84], [751.24, 1679.82], [752.02, 1680.76], [753.6, 1679.45], [756.33, 1682.69], [744.09, 1692.91], [743.74, 1692.51], [741.71, 1694.22], [736.27, 1687.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[750.86, 1707.98], [753.68, 1705.62], [754.41, 1706.49], [763.94, 1698.52], [755.11, 1688.05], [746.31, 1695.41], [747.19, 1696.45], [743.65, 1699.41], [750.86, 1707.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[761.51, 1720.1], [753.3, 1710.64], [764.91, 1700.65], [773.11, 1710.11], [761.51, 1720.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[772.17, 1731.12], [773.81, 1731.53], [782.14, 1723.66], [772.25, 1713.28], [763.26, 1721.77], [772.17, 1731.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[788.01, 1755.73], [800.88, 1745.27], [792.19, 1734.65], [793.28, 1733.77], [790.38, 1730.23], [784.3, 1735.17], [787.08, 1738.56], [779.2, 1744.95], [788.01, 1755.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[785.18, 1781.54], [780.5, 1776.14], [785.99, 1771.43], [790.66, 1776.84], [785.18, 1781.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[798.3, 1765.76], [809.6, 1755.92], [803.07, 1748.48], [791.78, 1758.32], [798.3, 1765.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[801.15, 1770.15], [814.39, 1758.47], [821.77, 1766.78], [808.53, 1778.47], [801.15, 1770.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[818.75, 1819.0], [813.78, 1812.9], [821.68, 1806.51], [826.65, 1812.61], [818.75, 1819.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[792.91, 1830.25], [800.19, 1823.29], [805.57, 1828.89], [798.28, 1835.84], [792.91, 1830.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[826.03, 1789.44], [833.75, 1782.89], [842.15, 1792.7], [835.49, 1798.35], [836.11, 1800.8], [833.84, 1803.58], [831.31, 1803.83], [829.11, 1802.62], [828.21, 1799.58], [831.98, 1796.38], [826.03, 1789.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[845.6, 1829.08], [852.41, 1823.55], [850.46, 1821.17], [860.45, 1813.04], [857.38, 1809.29], [858.65, 1808.26], [855.04, 1803.85], [853.87, 1804.81], [850.72, 1800.97], [841.96, 1808.09], [845.34, 1812.2], [843.2, 1813.94], [846.33, 1817.75], [840.32, 1822.63], [845.6, 1829.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.224, "pop": 112, "jobs": 0}}, {"shape": {"outer": [[838.98, 1837.87], [844.35, 1833.75], [847.95, 1838.43], [851.92, 1835.39], [856.17, 1840.9], [846.82, 1848.05], [838.98, 1837.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1426.17, 1974.18], [1441.72, 1961.14], [1434.3, 1952.33], [1435.21, 1951.57], [1433.02, 1948.98], [1433.45, 1948.62], [1425.22, 1938.86], [1424.79, 1939.22], [1412.39, 1924.51], [1413.05, 1923.96], [1404.84, 1914.21], [1404.17, 1914.77], [1401.78, 1911.94], [1401.13, 1912.48], [1393.63, 1903.59], [1377.8, 1916.85], [1387.5, 1928.33], [1388.35, 1927.62], [1392.34, 1932.35], [1391.63, 1932.95], [1394.84, 1936.76], [1395.48, 1936.23], [1397.85, 1939.05], [1397.21, 1939.58], [1406.98, 1951.15], [1407.66, 1950.58], [1410.08, 1953.46], [1409.41, 1954.04], [1412.43, 1957.62], [1413.15, 1957.02], [1417.32, 1961.96], [1416.47, 1962.68], [1426.17, 1974.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 632, "jobs": 0}}, {"shape": {"outer": [[1394.17, 2000.62], [1391.74, 1998.54], [1391.19, 1999.16], [1387.52, 1995.99], [1388.07, 1995.36], [1385.38, 1993.04], [1384.38, 1994.18], [1345.32, 1960.44], [1346.31, 1959.28], [1337.22, 1951.43], [1350.61, 1936.05], [1361.89, 1945.79], [1361.09, 1946.71], [1372.29, 1956.38], [1372.7, 1955.91], [1384.56, 1966.14], [1384.14, 1966.62], [1395.24, 1976.22], [1396.05, 1975.3], [1407.56, 1985.24], [1394.17, 2000.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 629, "jobs": 0}}, {"shape": {"outer": [[1420.64, 2039.92], [1436.29, 2039.75], [1436.28, 2038.65], [1439.68, 2038.61], [1439.68, 2039.21], [1452.98, 2039.05], [1452.98, 2038.41], [1459.72, 2038.34], [1459.72, 2038.97], [1473.08, 2038.82], [1473.07, 2038.1], [1476.52, 2038.06], [1476.53, 2039.29], [1491.66, 2039.12], [1491.43, 2018.25], [1479.33, 2018.38], [1479.31, 2017.05], [1432.46, 2017.56], [1432.47, 2018.93], [1420.42, 2019.06], [1420.64, 2039.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 606, "jobs": 0}}, {"shape": {"outer": [[1488.38, 2130.96], [1509.15, 2126.74], [1495.04, 2057.71], [1474.26, 2061.93], [1488.38, 2130.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 598, "jobs": 0}}, {"shape": {"outer": [[1455.35, 2147.56], [1476.16, 2139.53], [1442.03, 2051.73], [1421.22, 2059.77], [1455.35, 2147.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 840, "jobs": 0}}, {"shape": {"outer": [[1244.25, 2179.11], [1233.74, 2183.14], [1223.03, 2187.26], [1225.55, 2193.8], [1246.78, 2185.66], [1244.25, 2179.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[1253.94, 2182.52], [1275.26, 2174.72], [1281.95, 2192.87], [1260.46, 2200.73], [1263.4, 2208.74], [1293.49, 2197.73], [1281.4, 2164.89], [1251.48, 2175.84], [1253.94, 2182.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.542, "pop": 271, "jobs": 0}}, {"shape": {"outer": [[1258.08, 2210.6], [1255.49, 2203.57], [1233.92, 2211.48], [1236.52, 2218.51], [1258.08, 2210.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1248.53, 2250.68], [1256.09, 2247.78], [1247.71, 2226.07], [1240.14, 2228.98], [1248.53, 2250.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1266.52, 2275.85], [1264.18, 2276.72], [1259.23, 2278.36], [1251.71, 2256.71], [1259.0, 2254.2], [1266.52, 2275.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[1266.89, 2283.95], [1289.03, 2275.68], [1286.31, 2268.45], [1266.52, 2275.85], [1264.18, 2276.72], [1266.89, 2283.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[1286.27, 2239.65], [1294.27, 2236.81], [1290.41, 2226.05], [1286.59, 2215.4], [1295.09, 2212.38], [1307.59, 2207.92], [1311.18, 2217.93], [1314.85, 2228.14], [1321.08, 2225.92], [1313.34, 2204.35], [1306.95, 2206.63], [1305.34, 2202.13], [1283.56, 2209.89], [1285.26, 2214.62], [1278.19, 2217.14], [1286.27, 2239.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.398, "pop": 199, "jobs": 0}}, {"shape": {"outer": [[1293.19, 2268.26], [1300.07, 2265.7], [1296.14, 2255.24], [1292.06, 2244.36], [1285.19, 2246.93], [1293.19, 2268.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1328.11, 2254.84], [1335.27, 2252.16], [1327.14, 2230.64], [1319.98, 2233.32], [1324.19, 2244.45], [1328.11, 2254.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[1342.67, 2242.05], [1349.63, 2245.57], [1360.29, 2224.64], [1353.33, 2221.12], [1342.67, 2242.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[1333.06, 2178.14], [1331.58, 2185.0], [1320.8, 2182.7], [1308.98, 2180.16], [1310.15, 2174.74], [1304.22, 2173.46], [1309.01, 2151.23], [1315.91, 2152.7], [1317.09, 2147.22], [1327.48, 2149.44], [1338.68, 2151.85], [1337.16, 2158.87], [1326.01, 2156.47], [1315.03, 2154.12], [1310.87, 2173.37], [1333.06, 2178.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.376, "pop": 188, "jobs": 0}}, {"shape": {"outer": [[1345.24, 2154.13], [1346.95, 2146.32], [1367.43, 2150.76], [1372.29, 2128.53], [1380.18, 2130.25], [1375.3, 2152.55], [1369.31, 2151.25], [1367.62, 2158.99], [1356.05, 2156.47], [1345.24, 2154.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.294, "pop": 147, "jobs": 0}}, {"shape": {"outer": [[1353.77, 2218.64], [1361.05, 2220.24], [1366.17, 2196.95], [1359.56, 2195.51], [1360.75, 2190.1], [1348.87, 2187.5], [1337.01, 2184.92], [1335.28, 2192.77], [1358.36, 2197.81], [1353.77, 2218.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.296, "pop": 148, "jobs": 0}}, {"shape": {"outer": [[1400.66, 2207.15], [1421.47, 2211.72], [1423.1, 2204.38], [1400.5, 2199.42], [1398.93, 2206.53], [1394.21, 2205.49], [1389.24, 2227.91], [1395.74, 2229.34], [1400.66, 2207.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.262, "pop": 131, "jobs": 0}}, {"shape": {"outer": [[1339.68, 2305.06], [1345.04, 2302.7], [1347.53, 2308.34], [1368.58, 2299.1], [1365.88, 2292.98], [1370.52, 2290.94], [1361.1, 2269.58], [1354.39, 2272.53], [1359.06, 2283.12], [1363.51, 2293.18], [1354.54, 2297.11], [1346.14, 2300.79], [1341.73, 2290.83], [1336.92, 2279.94], [1329.94, 2282.99], [1339.68, 2305.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.418, "pop": 209, "jobs": 0}}, {"shape": {"outer": [[1305.31, 2300.58], [1302.62, 2293.82], [1324.04, 2285.35], [1326.73, 2292.11], [1305.31, 2300.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1278.54, 2316.52], [1273.45, 2316.66], [1270.76, 2309.83], [1271.97, 2306.66], [1296.52, 2297.14], [1302.65, 2312.81], [1293.61, 2316.33], [1292.52, 2313.52], [1286.04, 2316.04], [1285.22, 2313.93], [1278.54, 2316.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[1318.39, 2328.86], [1318.19, 2321.11], [1355.24, 2320.19], [1355.43, 2327.94], [1318.39, 2328.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[1368.6, 2426.33], [1405.32, 2406.63], [1400.01, 2396.79], [1363.29, 2416.49], [1368.6, 2426.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.372, "pop": 186, "jobs": 0}}, {"shape": {"outer": [[1360.26, 2408.57], [1370.19, 2403.32], [1355.48, 2375.69], [1345.55, 2380.94], [1360.26, 2408.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.282, "pop": 141, "jobs": 0}}, {"shape": {"outer": [[1370.32, 2342.74], [1375.6, 2352.39], [1334.99, 2374.48], [1329.71, 2364.82], [1370.32, 2342.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.406, "pop": 203, "jobs": 0}}, {"shape": {"outer": [[1310.49, 2378.72], [1322.58, 2372.29], [1355.58, 2434.05], [1343.5, 2440.46], [1337.91, 2430.01], [1327.05, 2409.69], [1310.49, 2378.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.766, "pop": 383, "jobs": 0}}, {"shape": {"outer": [[1406.09, 2396.7], [1415.97, 2391.48], [1383.03, 2329.56], [1373.15, 2334.78], [1406.09, 2396.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.626, "pop": 313, "jobs": 0}}, {"shape": {"outer": [[1398.59, 2333.93], [1408.01, 2329.11], [1435.09, 2381.61], [1425.66, 2386.44], [1398.59, 2333.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.5, "pop": 250, "jobs": 0}}, {"shape": {"outer": [[1478.07, 2381.08], [1472.9, 2371.5], [1412.44, 2403.88], [1417.6, 2413.47], [1478.07, 2381.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.598, "pop": 299, "jobs": 0}}, {"shape": {"outer": [[1421.09, 2419.63], [1430.26, 2414.74], [1458.11, 2466.73], [1448.55, 2471.73], [1421.09, 2419.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.5, "pop": 250, "jobs": 0}}, {"shape": {"outer": [[1414.54, 2491.52], [1426.09, 2485.66], [1405.16, 2445.96], [1392.81, 2452.26], [1414.54, 2491.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.482, "pop": 241, "jobs": 0}}, {"shape": {"outer": [[1381.25, 2501.11], [1393.77, 2494.79], [1375.54, 2458.89], [1362.35, 2465.55], [1369.33, 2479.31], [1360.27, 2483.87], [1366.47, 2496.08], [1376.21, 2491.17], [1381.25, 2501.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.58, "pop": 290, "jobs": 0}}, {"shape": {"outer": [[1424.68, 2594.32], [1480.81, 2574.73], [1474.7, 2557.31], [1418.56, 2576.9], [1424.68, 2594.32]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.703, "pop": 0, "jobs": 703}}, {"shape": {"outer": [[1480.01, 2529.56], [1498.94, 2523.12], [1503.04, 2535.07], [1484.11, 2541.52], [1480.01, 2529.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[1443.43, 2534.55], [1456.25, 2530.33], [1462.57, 2549.44], [1449.75, 2553.66], [1443.43, 2534.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.218, "pop": 109, "jobs": 0}}, {"shape": {"outer": [[1444.18, 2516.86], [1431.88, 2522.08], [1424.06, 2503.73], [1436.37, 2498.52], [1444.18, 2516.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[1460.95, 2455.68], [1496.09, 2437.13], [1491.12, 2427.77], [1455.98, 2446.34], [1460.95, 2455.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.336, "pop": 168, "jobs": 0}}, {"shape": {"outer": [[1510.12, 2449.93], [1519.73, 2444.87], [1487.4, 2383.94], [1477.79, 2389.01], [1510.12, 2449.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.6, "pop": 300, "jobs": 0}}, {"shape": {"outer": [[1442.28, 2421.13], [1477.57, 2402.74], [1471.91, 2391.96], [1436.62, 2410.35], [1442.28, 2421.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.388, "pop": 194, "jobs": 0}}, {"shape": {"outer": [[1473.72, 2331.56], [1484.25, 2331.33], [1485.11, 2370.72], [1474.59, 2370.95], [1473.72, 2331.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.332, "pop": 166, "jobs": 0}}, {"shape": {"outer": [[1418.98, 2345.57], [1467.89, 2345.16], [1467.8, 2334.35], [1418.89, 2334.76], [1418.98, 2345.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.424, "pop": 212, "jobs": 0}}, {"shape": {"outer": [[1525.14, 2438.02], [1521.78, 2428.19], [1568.44, 2412.33], [1571.8, 2422.16], [1525.14, 2438.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.41, "pop": 205, "jobs": 0}}, {"shape": {"outer": [[1515.15, 2382.26], [1555.15, 2380.99], [1554.81, 2370.24], [1549.27, 2370.42], [1529.69, 2371.04], [1514.81, 2371.51], [1515.15, 2382.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.344, "pop": 172, "jobs": 0}}, {"shape": {"outer": [[1491.99, 2330.44], [1502.47, 2330.11], [1503.71, 2370.22], [1493.24, 2370.55], [1491.99, 2330.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.336, "pop": 168, "jobs": 0}}, {"shape": {"outer": [[1506.96, 2333.63], [1575.95, 2330.69], [1576.4, 2341.26], [1507.42, 2344.21], [1506.96, 2333.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.584, "pop": 292, "jobs": 0}}, {"shape": {"outer": [[1560.45, 2347.22], [1571.22, 2347.7], [1568.47, 2407.25], [1557.7, 2406.76], [1560.45, 2347.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.514, "pop": 257, "jobs": 0}}, {"shape": {"outer": [[1504.7, 2376.49], [1527.74, 2419.22], [1518.37, 2424.23], [1495.35, 2381.5], [1504.7, 2376.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.412, "pop": 206, "jobs": 0}}, {"shape": {"outer": [[1488.19, 2237.78], [1485.37, 2238.86], [1489.34, 2248.91], [1506.41, 2242.6], [1509.9, 2236.0], [1501.54, 2212.7], [1504.37, 2211.79], [1494.35, 2183.22], [1490.12, 2169.82], [1482.71, 2168.37], [1473.56, 2170.12], [1469.92, 2177.9], [1481.12, 2206.78], [1477.16, 2208.72], [1488.19, 2237.78]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 1.0, "pop": 590, "jobs": 0}}, {"shape": {"outer": [[1507.49, 2180.17], [1513.95, 2183.83], [1535.92, 2176.71], [1537.28, 2180.86], [1574.04, 2168.95], [1574.93, 2171.67], [1586.07, 2168.06], [1580.32, 2150.43], [1573.53, 2147.29], [1542.4, 2156.96], [1541.15, 2152.97], [1522.5, 2158.76], [1521.42, 2155.29], [1501.63, 2161.44], [1507.49, 2180.17]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 1.0, "pop": 626, "jobs": 0}}, {"shape": {"outer": [[1570.47, 2260.71], [1570.28, 2249.35], [1573.65, 2249.29], [1573.01, 2211.04], [1576.74, 2210.98], [1576.33, 2186.91], [1582.19, 2181.24], [1600.02, 2180.97], [1600.16, 2190.86], [1597.45, 2190.9], [1597.93, 2222.51], [1594.88, 2222.55], [1595.31, 2249.91], [1592.27, 2249.97], [1592.44, 2260.34], [1570.47, 2260.71]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 1.0, "pop": 613, "jobs": 0}}, {"shape": {"outer": [[1497.5, 2263.49], [1497.46, 2260.61], [1486.92, 2260.78], [1487.21, 2280.17], [1493.37, 2285.0], [1522.58, 2284.11], [1522.73, 2288.92], [1553.4, 2287.98], [1553.51, 2291.78], [1567.1, 2291.37], [1566.49, 2271.77], [1560.32, 2266.61], [1535.36, 2266.97], [1535.3, 2262.93], [1497.5, 2263.49]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 1.0, "pop": 630, "jobs": 0}}, {"shape": {"outer": [[1430.25, 2297.52], [1432.71, 2292.61], [1439.2, 2296.05], [1450.38, 2276.22], [1443.72, 2272.38], [1446.96, 2267.12], [1426.17, 2256.25], [1422.42, 2263.7], [1442.24, 2274.52], [1433.69, 2290.41], [1413.37, 2278.88], [1409.29, 2286.25], [1430.25, 2297.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.454, "pop": 227, "jobs": 0}}, {"shape": {"outer": [[1380.92, 2277.85], [1384.61, 2270.55], [1407.02, 2281.79], [1403.33, 2289.1], [1380.92, 2277.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[1548.33, 2120.03], [1563.01, 2116.93], [1562.06, 2112.44], [1565.5, 2107.6], [1569.75, 2106.71], [1566.6, 2091.91], [1562.32, 2092.82], [1557.45, 2089.37], [1556.55, 2085.18], [1541.73, 2088.31], [1542.62, 2092.52], [1538.92, 2097.7], [1534.9, 2098.55], [1538.05, 2113.38], [1542.03, 2112.54], [1547.57, 2116.47], [1548.33, 2120.03]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.506, "pop": 0, "jobs": 506}}, {"shape": {"outer": [[1547.7, 2017.14], [1542.01, 2013.26], [1541.31, 2009.61], [1526.43, 2012.44], [1527.3, 2017.02], [1523.91, 2021.94], [1519.95, 2022.69], [1522.8, 2037.62], [1526.74, 2036.87], [1532.33, 2040.69], [1533.0, 2044.2], [1547.72, 2041.4], [1546.91, 2037.17], [1550.54, 2031.9], [1554.57, 2031.14], [1551.75, 2016.37], [1547.7, 2017.14]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.508, "pop": 0, "jobs": 508}}, {"shape": {"outer": [[1578.19, 2082.26], [1575.17, 2067.04], [1576.41, 2066.79], [1568.54, 2027.1], [1567.72, 2027.26], [1563.22, 2004.55], [1574.42, 2002.34], [1573.84, 1999.42], [1576.42, 1998.92], [1576.31, 1998.34], [1584.66, 1996.69], [1584.88, 1997.81], [1589.2, 1996.95], [1590.97, 2005.92], [1591.56, 2005.8], [1593.22, 2014.16], [1589.79, 2014.83], [1591.28, 2022.38], [1584.9, 2023.63], [1592.85, 2063.76], [1593.99, 2063.54], [1596.71, 2077.25], [1593.62, 2077.85], [1594.1, 2080.29], [1585.83, 2081.92], [1585.62, 2080.79], [1578.19, 2082.26]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1045}}, {"shape": {"outer": [[1504.53, 1961.62], [1509.01, 1982.8], [1544.29, 1975.39], [1543.72, 1972.67], [1577.28, 1965.64], [1572.58, 1943.37], [1535.8, 1951.09], [1536.6, 1954.89], [1504.53, 1961.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 629, "jobs": 0}}, {"shape": {"outer": [[1442.39, 1900.13], [1469.25, 1925.12], [1470.91, 1923.35], [1496.96, 1947.56], [1513.24, 1930.19], [1483.99, 1902.98], [1480.57, 1906.62], [1456.92, 1884.63], [1442.39, 1900.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 659, "jobs": 0}}, {"shape": {"outer": [[1452.12, 1870.36], [1468.31, 1885.31], [1494.31, 1857.33], [1491.4, 1854.66], [1514.32, 1830.0], [1498.52, 1815.41], [1472.54, 1843.36], [1475.06, 1845.68], [1452.12, 1870.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 632, "jobs": 0}}, {"shape": {"outer": [[1528.51, 1902.54], [1530.85, 1900.05], [1555.83, 1923.32], [1571.51, 1906.59], [1543.57, 1880.56], [1541.38, 1882.89], [1518.04, 1861.16], [1502.21, 1878.04], [1528.51, 1902.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 651, "jobs": 0}}, {"shape": {"outer": [[636.93, 1184.25], [645.74, 1173.73], [651.53, 1178.55], [642.72, 1189.05], [636.93, 1184.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[626.93, 1188.4], [636.01, 1196.99], [642.05, 1190.66], [632.99, 1182.06], [626.93, 1188.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[624.41, 1193.16], [627.29, 1195.65], [627.97, 1194.87], [630.8, 1197.31], [631.85, 1196.09], [634.98, 1198.78], [630.91, 1203.47], [630.03, 1202.72], [627.67, 1205.44], [624.72, 1202.9], [624.31, 1203.37], [620.87, 1200.41], [622.46, 1198.57], [620.9, 1197.22], [624.41, 1193.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[633.6, 1220.27], [628.08, 1212.77], [635.96, 1207.01], [637.5, 1209.09], [639.0, 1207.99], [641.43, 1211.29], [639.98, 1212.35], [641.53, 1214.46], [633.6, 1220.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[654.16, 1197.38], [664.5, 1186.05], [658.49, 1180.62], [648.17, 1191.94], [654.16, 1197.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[663.6, 1205.0], [657.87, 1199.7], [667.77, 1189.1], [673.49, 1194.41], [663.6, 1205.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[663.92, 1215.93], [672.96, 1224.7], [667.08, 1230.72], [658.03, 1221.95], [663.92, 1215.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[656.13, 1230.37], [662.21, 1235.87], [666.58, 1231.09], [660.5, 1225.57], [656.13, 1230.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[649.3, 1247.62], [656.04, 1239.95], [647.1, 1232.13], [640.34, 1239.8], [649.3, 1247.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[636.35, 1231.2], [647.74, 1222.66], [645.07, 1219.13], [642.92, 1220.74], [641.13, 1218.36], [631.89, 1225.3], [636.35, 1231.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[648.6, 1265.17], [658.35, 1254.14], [654.43, 1250.7], [652.82, 1252.53], [650.95, 1250.9], [642.82, 1260.1], [648.6, 1265.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[648.68, 1270.0], [658.13, 1259.77], [663.9, 1265.07], [654.45, 1275.29], [648.68, 1270.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[655.14, 1280.97], [669.17, 1276.87], [672.24, 1287.28], [658.19, 1291.38], [655.14, 1280.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[670.25, 1319.4], [665.98, 1305.58], [674.96, 1302.82], [676.76, 1308.63], [680.88, 1307.36], [681.16, 1308.26], [684.8, 1307.14], [686.61, 1313.01], [682.85, 1314.17], [683.11, 1314.97], [679.63, 1316.04], [679.77, 1316.48], [670.25, 1319.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[715.53, 1308.49], [719.58, 1304.19], [715.09, 1300.0], [711.05, 1304.29], [715.53, 1308.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[707.71, 1307.91], [710.61, 1304.63], [715.24, 1308.72], [712.33, 1311.99], [707.71, 1307.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[733.43, 1335.19], [737.75, 1330.2], [727.45, 1321.34], [723.13, 1326.32], [733.43, 1335.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[688.2, 1344.07], [685.21, 1334.87], [673.35, 1338.7], [673.72, 1339.85], [670.93, 1340.75], [673.22, 1347.78], [675.68, 1346.99], [676.0, 1348.01], [688.2, 1344.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[674.64, 1333.16], [671.66, 1323.41], [683.51, 1319.81], [685.06, 1324.85], [680.23, 1326.31], [681.67, 1331.02], [674.64, 1333.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[682.85, 1333.5], [689.06, 1331.63], [687.99, 1328.06], [681.77, 1329.93], [682.85, 1333.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[685.67, 1380.61], [694.52, 1377.88], [693.12, 1373.38], [698.07, 1371.86], [697.39, 1369.66], [703.69, 1367.71], [700.98, 1358.98], [690.78, 1362.14], [690.63, 1361.65], [688.01, 1362.46], [687.48, 1360.76], [680.19, 1363.01], [685.67, 1380.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[709.28, 1343.68], [710.92, 1341.87], [709.0, 1340.15], [713.03, 1335.66], [714.96, 1337.39], [715.7, 1336.56], [723.63, 1343.66], [717.21, 1350.78], [709.28, 1343.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[724.42, 1341.99], [729.13, 1336.89], [723.07, 1331.32], [718.36, 1336.43], [724.42, 1341.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[739.42, 1328.9], [744.81, 1323.09], [740.72, 1319.34], [740.9, 1319.16], [733.87, 1312.7], [728.32, 1318.7], [739.42, 1328.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[738.18, 1314.35], [744.67, 1307.68], [752.05, 1314.8], [745.56, 1321.47], [738.18, 1314.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[760.32, 1295.38], [772.24, 1282.65], [778.11, 1288.12], [766.2, 1300.84], [760.32, 1295.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[749.58, 1291.58], [763.34, 1276.67], [756.81, 1270.69], [747.33, 1280.98], [749.05, 1282.55], [744.78, 1287.18], [749.58, 1291.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[747.15, 1263.28], [754.27, 1269.82], [744.71, 1280.15], [737.59, 1273.59], [747.15, 1263.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[743.24, 1266.97], [749.11, 1260.88], [743.06, 1255.08], [737.19, 1261.18], [743.24, 1266.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[729.12, 1254.14], [732.97, 1257.58], [734.41, 1255.98], [736.93, 1258.23], [739.7, 1255.15], [737.4, 1253.1], [739.64, 1250.61], [735.56, 1246.97], [729.12, 1254.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[735.42, 1246.11], [730.63, 1241.77], [726.75, 1246.0], [725.5, 1244.87], [721.98, 1248.74], [724.21, 1250.76], [723.18, 1251.88], [727.0, 1255.34], [735.42, 1246.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[710.89, 1245.92], [719.9, 1236.09], [725.7, 1241.38], [716.69, 1251.2], [710.89, 1245.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[665.16, 1205.08], [673.46, 1212.44], [681.9, 1202.98], [673.6, 1195.63], [665.16, 1205.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[694.46, 1212.94], [685.24, 1223.51], [679.48, 1218.51], [688.7, 1207.95], [694.46, 1212.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[688.15, 1224.26], [694.42, 1229.58], [701.9, 1220.86], [695.64, 1215.52], [688.15, 1224.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[696.02, 1233.74], [701.86, 1238.78], [713.35, 1225.58], [707.51, 1220.53], [696.02, 1233.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[702.57, 1349.6], [709.96, 1347.34], [707.83, 1340.39], [700.44, 1342.65], [702.57, 1349.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[709.69, 1243.43], [713.96, 1238.81], [709.91, 1235.1], [705.64, 1239.72], [709.69, 1243.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[785.41, 1341.23], [773.51, 1330.56], [780.75, 1322.55], [792.64, 1333.22], [785.41, 1341.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[772.26, 1333.62], [779.77, 1340.23], [773.63, 1347.16], [766.11, 1340.55], [772.26, 1333.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[775.78, 1361.26], [781.19, 1366.03], [787.72, 1358.68], [782.3, 1353.91], [775.78, 1361.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[796.65, 1368.23], [790.46, 1363.01], [782.71, 1372.15], [788.91, 1377.36], [796.65, 1368.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[791.58, 1381.38], [801.83, 1370.21], [807.5, 1375.37], [797.26, 1386.54], [791.58, 1381.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[810.11, 1395.61], [812.14, 1397.42], [810.73, 1398.99], [815.38, 1403.14], [826.82, 1390.43], [820.14, 1384.46], [810.11, 1395.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[837.87, 1423.07], [841.65, 1426.44], [850.66, 1416.42], [833.48, 1401.09], [824.37, 1411.21], [828.15, 1414.59], [830.03, 1412.5], [839.65, 1421.08], [837.87, 1423.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.222, "pop": 111, "jobs": 0}}, {"shape": {"outer": [[850.36, 1431.71], [859.88, 1421.41], [853.91, 1415.92], [844.39, 1426.21], [850.36, 1431.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[860.86, 1425.24], [867.62, 1431.24], [858.23, 1441.74], [851.47, 1435.74], [860.86, 1425.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[796.63, 1302.69], [801.61, 1307.03], [794.33, 1315.33], [789.34, 1311.0], [796.63, 1302.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[803.02, 1328.43], [811.6, 1319.01], [804.2, 1312.3], [795.61, 1321.71], [803.02, 1328.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[805.66, 1332.54], [812.65, 1339.09], [824.16, 1326.88], [819.78, 1322.78], [815.72, 1327.1], [813.1, 1324.65], [805.66, 1332.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[801.7, 1355.03], [808.49, 1360.34], [817.1, 1349.42], [810.31, 1344.1], [801.7, 1355.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[841.6, 1356.36], [847.83, 1348.41], [855.24, 1354.17], [849.01, 1362.12], [841.6, 1356.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[839.29, 1343.21], [845.52, 1348.58], [838.07, 1357.17], [831.84, 1351.8], [839.29, 1343.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[851.61, 1373.28], [862.29, 1361.73], [857.04, 1356.91], [846.36, 1368.46], [851.61, 1373.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[860.95, 1382.95], [871.94, 1370.44], [865.64, 1364.94], [854.65, 1377.45], [860.95, 1382.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[863.68, 1385.33], [869.7, 1390.46], [879.56, 1378.96], [873.54, 1373.83], [863.68, 1385.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[856.84, 1408.19], [862.52, 1413.38], [867.77, 1407.65], [862.09, 1402.47], [856.84, 1408.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[865.85, 1444.59], [871.01, 1438.88], [877.77, 1444.92], [872.62, 1450.65], [865.85, 1444.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[880.58, 1458.2], [888.6, 1449.35], [896.52, 1456.48], [894.61, 1458.57], [895.87, 1459.71], [891.99, 1463.98], [890.31, 1462.48], [888.07, 1464.94], [880.58, 1458.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[895.51, 1441.21], [901.43, 1435.07], [908.63, 1441.98], [902.71, 1448.11], [895.51, 1441.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[893.11, 1430.7], [898.38, 1424.62], [893.0, 1420.0], [887.74, 1426.07], [893.11, 1430.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[911.24, 1438.66], [899.54, 1427.79], [906.48, 1420.38], [918.18, 1431.25], [911.24, 1438.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[884.37, 1415.04], [889.54, 1409.4], [895.25, 1414.61], [890.08, 1420.24], [884.37, 1415.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[906.75, 1404.38], [912.01, 1409.12], [906.69, 1415.0], [901.42, 1410.26], [906.75, 1404.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[908.0, 1418.54], [914.29, 1411.59], [924.94, 1421.16], [918.65, 1428.11], [908.0, 1418.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[880.25, 1397.38], [889.67, 1405.54], [897.62, 1396.43], [888.2, 1388.27], [880.25, 1397.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[881.88, 1383.93], [887.04, 1388.3], [880.36, 1396.14], [875.2, 1391.78], [881.88, 1383.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[800.66, 1386.27], [805.85, 1390.69], [814.44, 1380.69], [809.26, 1376.25], [800.66, 1386.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[825.53, 1379.46], [830.23, 1373.98], [821.18, 1366.26], [816.47, 1371.75], [825.53, 1379.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[786.74, 1414.77], [793.52, 1406.94], [787.83, 1402.06], [781.05, 1409.87], [786.74, 1414.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[783.7, 1423.48], [796.28, 1410.11], [803.31, 1416.68], [794.22, 1426.33], [792.74, 1424.96], [789.25, 1428.67], [783.7, 1423.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[781.86, 1423.21], [785.92, 1418.45], [782.83, 1415.82], [778.77, 1420.6], [781.86, 1423.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[782.9, 1436.72], [774.73, 1429.11], [780.21, 1423.27], [788.38, 1430.87], [782.9, 1436.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[770.68, 1433.43], [779.2, 1440.91], [774.19, 1446.58], [765.67, 1439.1], [770.68, 1433.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[756.68, 1433.77], [759.5, 1430.57], [765.27, 1435.62], [762.45, 1438.82], [756.68, 1433.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[771.49, 1446.01], [771.28, 1446.62], [773.57, 1447.42], [771.69, 1452.78], [770.5, 1452.37], [770.07, 1453.6], [768.92, 1453.2], [768.44, 1454.58], [761.48, 1452.15], [764.48, 1443.57], [771.49, 1446.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[729.24, 1449.63], [726.71, 1441.03], [737.86, 1437.76], [740.4, 1446.36], [729.24, 1449.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[707.39, 1449.02], [719.82, 1444.92], [721.97, 1451.43], [709.55, 1455.52], [707.39, 1449.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[701.88, 1437.77], [704.53, 1445.6], [718.39, 1440.93], [715.75, 1433.11], [701.88, 1437.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[700.6, 1418.88], [696.63, 1420.29], [700.17, 1430.14], [708.42, 1427.19], [703.38, 1413.16], [699.09, 1414.7], [700.6, 1418.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[712.91, 1416.7], [711.65, 1415.54], [709.65, 1417.71], [700.49, 1409.3], [706.65, 1402.63], [717.08, 1412.21], [712.91, 1416.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[717.42, 1409.02], [723.7, 1402.08], [714.99, 1394.14], [708.52, 1401.44], [717.42, 1409.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[721.27, 1383.77], [733.23, 1394.34], [727.52, 1400.76], [715.56, 1390.18], [721.27, 1383.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[746.0, 1376.49], [752.23, 1369.43], [745.75, 1363.76], [739.53, 1370.81], [746.0, 1376.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[729.89, 1377.23], [735.66, 1370.98], [745.83, 1380.31], [740.06, 1386.56], [729.89, 1377.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[751.67, 1383.14], [753.35, 1381.47], [751.58, 1379.71], [749.91, 1381.37], [751.67, 1383.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[766.41, 1398.78], [771.21, 1393.98], [773.26, 1393.98], [773.26, 1392.03], [771.58, 1388.9], [769.69, 1386.99], [768.14, 1388.51], [767.57, 1387.94], [768.2, 1387.31], [766.03, 1385.12], [759.33, 1391.72], [766.41, 1398.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[754.04, 1386.59], [758.35, 1381.36], [762.08, 1384.42], [757.77, 1389.64], [754.04, 1386.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[737.73, 1417.2], [742.64, 1421.5], [744.94, 1418.9], [744.24, 1418.28], [751.75, 1409.78], [744.75, 1403.65], [738.19, 1411.1], [740.96, 1413.52], [737.73, 1417.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[719.15, 1454.53], [721.88, 1462.84], [711.79, 1466.13], [709.06, 1457.82], [719.15, 1454.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[715.02, 1477.87], [730.42, 1472.95], [727.73, 1464.62], [712.33, 1469.56], [715.02, 1477.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[716.0, 1489.08], [730.33, 1484.53], [727.97, 1477.17], [715.62, 1481.09], [716.39, 1483.49], [714.42, 1484.12], [716.0, 1489.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[721.05, 1498.43], [719.33, 1492.25], [723.27, 1491.16], [722.74, 1489.22], [729.11, 1487.45], [731.37, 1495.57], [721.05, 1498.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[727.92, 1506.01], [728.3, 1507.27], [735.79, 1505.03], [733.14, 1496.21], [725.55, 1498.47], [726.02, 1500.05], [718.83, 1502.21], [720.63, 1508.19], [727.92, 1506.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[729.04, 1528.82], [726.53, 1520.31], [740.05, 1516.34], [742.55, 1524.85], [729.04, 1528.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[750.36, 1542.65], [748.19, 1535.92], [733.65, 1540.58], [735.82, 1547.31], [750.36, 1542.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[741.01, 1556.0], [738.49, 1547.27], [754.23, 1542.75], [756.76, 1551.47], [741.01, 1556.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[742.87, 1565.9], [740.61, 1558.31], [749.52, 1555.67], [751.78, 1563.26], [742.87, 1565.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[748.42, 1578.03], [745.82, 1568.69], [760.88, 1564.51], [763.48, 1573.87], [748.42, 1578.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[757.6, 1578.44], [747.88, 1581.58], [750.45, 1589.47], [760.17, 1586.33], [757.6, 1578.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[752.77, 1597.79], [760.83, 1595.34], [760.61, 1594.59], [763.51, 1593.7], [763.43, 1593.43], [764.49, 1593.1], [764.35, 1592.61], [764.95, 1591.29], [767.41, 1590.54], [767.11, 1589.56], [767.54, 1588.6], [766.72, 1585.9], [763.01, 1587.03], [762.88, 1586.62], [758.51, 1587.96], [758.41, 1587.62], [750.4, 1590.06], [752.77, 1597.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[763.29, 1604.61], [761.23, 1597.46], [752.62, 1599.91], [754.68, 1607.07], [763.29, 1604.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[776.28, 1542.65], [782.75, 1540.28], [780.55, 1534.3], [774.07, 1536.68], [776.28, 1542.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[771.54, 1529.86], [774.71, 1528.66], [777.04, 1534.75], [773.88, 1535.95], [771.54, 1529.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[784.73, 1524.53], [796.22, 1520.16], [792.79, 1511.19], [781.31, 1515.55], [784.73, 1524.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[775.2, 1519.7], [773.77, 1516.11], [779.49, 1513.84], [780.93, 1517.42], [775.2, 1519.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[763.04, 1524.97], [761.16, 1519.24], [773.33, 1515.3], [775.2, 1521.03], [763.04, 1524.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[763.52, 1516.19], [761.12, 1509.0], [768.91, 1506.4], [771.32, 1513.59], [763.52, 1516.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[760.64, 1506.24], [767.98, 1503.83], [765.26, 1495.6], [757.92, 1498.02], [760.64, 1506.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[770.73, 1508.05], [769.28, 1504.49], [774.66, 1502.32], [776.11, 1505.88], [770.73, 1508.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[777.35, 1503.4], [788.83, 1499.2], [791.44, 1506.31], [789.0, 1507.2], [789.84, 1509.48], [780.8, 1512.78], [777.35, 1503.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[776.75, 1501.41], [773.54, 1492.74], [783.82, 1488.95], [787.03, 1497.62], [776.75, 1501.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[768.25, 1479.03], [776.55, 1475.9], [773.03, 1466.65], [764.74, 1469.78], [768.25, 1479.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[761.04, 1482.53], [765.65, 1480.8], [767.08, 1484.58], [762.48, 1486.31], [761.04, 1482.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[780.7, 1487.18], [777.67, 1478.59], [767.74, 1482.41], [770.93, 1490.87], [780.7, 1487.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[763.22, 1466.76], [771.65, 1463.77], [768.56, 1455.13], [760.13, 1458.12], [763.22, 1466.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[751.54, 1458.41], [747.07, 1460.15], [744.38, 1453.29], [748.85, 1451.55], [751.54, 1458.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[747.09, 1465.95], [742.08, 1467.12], [739.97, 1458.07], [744.99, 1456.91], [747.09, 1465.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[763.35, 1549.71], [773.05, 1547.06], [775.32, 1555.32], [765.63, 1557.98], [763.35, 1549.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[786.99, 1536.21], [785.44, 1532.0], [786.91, 1531.46], [785.35, 1527.2], [797.75, 1522.68], [800.86, 1531.15], [786.99, 1536.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[789.3, 1558.35], [784.33, 1545.73], [805.93, 1537.29], [810.9, 1549.9], [789.3, 1558.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.252, "pop": 126, "jobs": 0}}, {"shape": {"outer": [[793.01, 1569.55], [786.68, 1571.86], [785.94, 1569.87], [783.67, 1570.7], [778.03, 1555.36], [779.89, 1554.68], [779.26, 1552.95], [783.74, 1551.31], [784.45, 1553.22], [786.7, 1552.4], [793.01, 1569.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[745.11, 1469.69], [747.49, 1476.57], [757.7, 1473.05], [755.3, 1466.18], [745.11, 1469.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[798.3, 1459.87], [799.91, 1457.83], [801.26, 1458.89], [803.2, 1456.45], [803.99, 1457.06], [804.98, 1455.82], [807.59, 1457.88], [806.41, 1459.35], [810.04, 1462.2], [804.25, 1469.49], [798.81, 1465.2], [799.98, 1463.72], [798.17, 1462.29], [799.41, 1460.74], [798.3, 1459.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[807.94, 1455.66], [809.96, 1453.31], [814.65, 1457.33], [812.63, 1459.66], [807.94, 1455.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[810.99, 1462.24], [813.96, 1464.81], [818.12, 1460.07], [815.17, 1457.49], [810.99, 1462.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[801.29, 1476.51], [808.32, 1468.43], [815.41, 1474.54], [808.38, 1482.63], [801.29, 1476.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[816.56, 1477.81], [805.38, 1490.72], [811.77, 1496.22], [822.96, 1483.31], [816.56, 1477.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[816.9, 1508.39], [823.24, 1500.85], [817.36, 1495.94], [812.48, 1501.75], [815.15, 1503.98], [813.69, 1505.71], [816.9, 1508.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[817.61, 1509.35], [820.31, 1506.02], [824.75, 1509.6], [822.06, 1512.93], [817.61, 1509.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[833.1, 1523.36], [820.56, 1512.55], [816.13, 1517.67], [818.28, 1519.52], [817.62, 1520.28], [826.09, 1527.58], [826.53, 1527.08], [828.44, 1528.74], [833.1, 1523.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[835.6, 1521.74], [841.56, 1515.18], [831.92, 1506.49], [831.06, 1507.42], [829.71, 1506.2], [827.56, 1508.58], [828.75, 1509.64], [825.79, 1512.91], [835.6, 1521.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[830.42, 1504.4], [832.74, 1501.59], [828.25, 1497.93], [825.94, 1500.74], [830.42, 1504.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[843.38, 1513.31], [849.1, 1506.59], [838.78, 1497.87], [833.05, 1504.59], [843.38, 1513.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[850.52, 1504.17], [840.64, 1495.51], [843.32, 1492.47], [844.63, 1493.6], [846.96, 1490.95], [855.55, 1498.48], [850.52, 1504.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[840.88, 1485.91], [845.45, 1489.66], [847.52, 1487.16], [842.96, 1483.41], [840.88, 1485.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[854.85, 1480.46], [851.83, 1483.86], [854.41, 1486.14], [852.01, 1488.83], [856.75, 1493.05], [862.18, 1486.97], [854.85, 1480.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[859.24, 1479.82], [866.1, 1472.44], [873.3, 1479.09], [866.45, 1486.47], [859.24, 1479.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[848.83, 1473.62], [842.96, 1468.02], [849.41, 1461.3], [855.29, 1466.9], [848.83, 1473.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[839.98, 1465.37], [833.52, 1459.59], [841.21, 1451.06], [847.67, 1456.84], [839.98, 1465.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[819.23, 1460.81], [821.38, 1458.31], [824.78, 1461.21], [822.63, 1463.7], [819.23, 1460.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[809.63, 1448.93], [818.25, 1456.79], [823.05, 1451.56], [814.43, 1443.71], [809.63, 1448.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[822.59, 1435.12], [830.4, 1442.28], [829.57, 1443.17], [831.73, 1445.14], [827.08, 1450.18], [817.1, 1441.06], [822.59, 1435.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[781.85, 1658.48], [788.83, 1665.91], [799.28, 1656.17], [792.31, 1648.74], [781.85, 1658.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[799.46, 1645.45], [797.35, 1643.15], [801.08, 1639.74], [803.19, 1642.04], [799.46, 1645.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[778.2, 1654.69], [771.56, 1647.17], [778.86, 1640.77], [785.5, 1648.29], [778.2, 1654.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[784.5, 1639.88], [782.36, 1637.51], [785.03, 1635.1], [787.18, 1637.47], [784.5, 1639.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[793.27, 1644.26], [789.4, 1639.87], [793.85, 1635.96], [797.73, 1640.34], [793.27, 1644.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[763.68, 1636.92], [769.34, 1643.01], [778.2, 1634.82], [772.56, 1628.74], [763.68, 1636.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[785.53, 1631.86], [781.22, 1627.22], [786.72, 1622.17], [791.02, 1626.8], [785.53, 1631.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[783.48, 1617.59], [790.88, 1609.55], [800.16, 1618.02], [799.45, 1618.79], [800.79, 1620.02], [796.9, 1624.25], [795.76, 1623.21], [792.97, 1626.25], [783.48, 1617.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[797.84, 1607.41], [802.24, 1611.45], [803.24, 1610.36], [806.5, 1613.35], [816.08, 1602.96], [807.6, 1595.21], [798.46, 1605.13], [799.26, 1605.86], [797.84, 1607.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[816.43, 1582.37], [818.13, 1584.12], [818.33, 1583.94], [829.04, 1594.96], [822.33, 1601.43], [811.73, 1590.51], [812.86, 1589.42], [811.05, 1587.57], [816.43, 1582.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[828.49, 1612.08], [823.88, 1607.32], [828.59, 1602.8], [833.2, 1607.56], [828.49, 1612.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[839.35, 1631.95], [842.18, 1629.59], [838.51, 1625.19], [835.67, 1627.54], [839.35, 1631.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[850.46, 1625.04], [853.37, 1622.51], [849.46, 1618.02], [846.54, 1620.54], [850.46, 1625.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[857.17, 1616.76], [860.64, 1613.77], [856.29, 1608.77], [852.83, 1611.76], [857.17, 1616.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[834.27, 1600.31], [838.64, 1596.35], [841.61, 1599.6], [837.24, 1603.56], [834.27, 1600.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[830.22, 1647.11], [836.44, 1641.85], [845.22, 1652.19], [839.0, 1657.44], [830.22, 1647.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[811.24, 1648.33], [814.5, 1645.38], [819.66, 1651.04], [816.4, 1653.99], [811.24, 1648.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[794.65, 1674.93], [802.95, 1667.69], [814.16, 1680.44], [805.85, 1687.68], [794.65, 1674.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[803.33, 1664.87], [798.5, 1659.22], [808.48, 1650.75], [813.31, 1656.39], [803.33, 1664.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[811.25, 1665.76], [818.37, 1659.22], [826.2, 1667.69], [825.3, 1668.51], [826.86, 1670.19], [822.02, 1674.63], [820.15, 1672.6], [818.76, 1673.88], [811.25, 1665.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[830.14, 1666.55], [837.68, 1660.07], [829.21, 1650.28], [825.82, 1653.19], [826.53, 1653.99], [822.37, 1657.57], [830.14, 1666.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[856.68, 1643.59], [845.08, 1630.42], [852.0, 1624.36], [863.6, 1637.55], [856.68, 1643.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[847.34, 1652.09], [854.8, 1645.43], [843.37, 1632.72], [839.77, 1635.94], [838.73, 1634.78], [835.43, 1637.73], [836.55, 1638.97], [835.98, 1639.48], [847.34, 1652.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[865.5, 1635.13], [856.41, 1624.7], [863.13, 1618.88], [870.31, 1627.11], [867.92, 1629.18], [868.81, 1630.21], [867.78, 1631.1], [868.81, 1632.28], [865.5, 1635.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[872.96, 1612.05], [865.37, 1618.53], [872.1, 1626.36], [881.37, 1618.45], [877.01, 1613.38], [875.32, 1614.8], [872.96, 1612.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[875.11, 1610.08], [881.61, 1604.61], [887.92, 1612.04], [887.33, 1612.55], [888.77, 1614.24], [883.48, 1618.69], [882.06, 1617.02], [881.43, 1617.55], [875.11, 1610.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[891.19, 1594.92], [900.33, 1605.19], [893.25, 1611.44], [884.12, 1601.18], [891.19, 1594.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[899.47, 1601.29], [907.49, 1594.37], [898.41, 1583.94], [897.55, 1584.69], [894.98, 1581.72], [888.45, 1587.36], [890.99, 1590.27], [890.36, 1590.82], [899.47, 1601.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[884.88, 1591.98], [888.04, 1589.14], [884.34, 1585.04], [881.17, 1587.87], [884.88, 1591.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[887.09, 1580.38], [882.49, 1575.54], [888.07, 1570.27], [892.67, 1575.11], [887.09, 1580.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[907.48, 1561.52], [910.42, 1558.87], [914.37, 1563.2], [911.43, 1565.85], [907.48, 1561.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[911.06, 1595.15], [901.15, 1584.09], [908.84, 1577.23], [918.76, 1588.3], [911.06, 1595.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[919.51, 1586.91], [927.6, 1579.47], [916.49, 1567.46], [908.39, 1574.9], [919.51, 1586.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[927.86, 1576.28], [921.49, 1569.11], [929.04, 1562.45], [935.15, 1569.34], [933.6, 1570.71], [935.11, 1572.41], [930.56, 1576.42], [929.31, 1575.0], [927.86, 1576.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[938.0, 1569.94], [944.57, 1563.83], [935.47, 1554.1], [928.9, 1560.21], [938.0, 1569.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[885.84, 1551.7], [889.08, 1547.96], [894.35, 1552.51], [891.1, 1556.25], [885.84, 1551.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[907.92, 1554.13], [913.49, 1549.31], [908.29, 1543.35], [902.72, 1548.15], [907.92, 1554.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[894.13, 1542.54], [897.37, 1539.25], [902.5, 1544.3], [899.27, 1547.58], [894.13, 1542.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[925.76, 1545.63], [921.67, 1541.42], [924.3, 1538.89], [928.38, 1543.1], [925.76, 1545.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[937.93, 1549.87], [940.06, 1548.03], [937.4, 1544.98], [942.14, 1540.89], [954.83, 1555.5], [947.96, 1561.43], [937.93, 1549.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[933.47, 1547.16], [937.58, 1543.91], [934.49, 1540.02], [930.37, 1543.27], [933.47, 1547.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[947.18, 1526.89], [950.6, 1531.16], [953.75, 1528.65], [950.33, 1524.39], [947.18, 1526.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[948.85, 1544.17], [957.04, 1553.79], [963.81, 1548.08], [953.09, 1535.48], [948.46, 1539.39], [950.05, 1541.24], [949.0, 1542.13], [949.94, 1543.25], [948.85, 1544.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[965.58, 1527.83], [972.25, 1521.85], [979.57, 1529.95], [972.91, 1535.93], [965.58, 1527.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[955.12, 1532.55], [960.81, 1527.82], [972.21, 1541.43], [966.52, 1546.16], [955.12, 1532.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[950.63, 1522.16], [940.97, 1513.17], [948.8, 1504.81], [958.47, 1513.81], [950.63, 1522.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[947.56, 1502.28], [935.99, 1515.31], [928.76, 1508.93], [938.37, 1498.12], [941.27, 1500.68], [943.24, 1498.47], [947.56, 1502.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[937.52, 1494.81], [927.0, 1506.57], [919.83, 1500.21], [930.35, 1488.44], [937.52, 1494.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[843.03, 1582.48], [847.27, 1578.63], [852.69, 1584.57], [848.46, 1588.41], [843.03, 1582.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[852.94, 1575.43], [858.41, 1580.75], [863.06, 1575.99], [857.59, 1570.67], [852.94, 1575.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[866.17, 1571.97], [872.97, 1578.17], [878.7, 1571.94], [871.9, 1565.73], [866.17, 1571.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[879.06, 1563.92], [881.14, 1561.34], [884.09, 1563.72], [882.0, 1566.29], [879.06, 1563.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[817.56, 1581.62], [824.55, 1575.3], [833.91, 1585.6], [826.91, 1591.91], [817.56, 1581.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[840.24, 1576.56], [832.22, 1567.31], [826.23, 1572.47], [834.43, 1581.92], [834.81, 1581.58], [837.3, 1584.46], [842.3, 1580.17], [839.63, 1577.09], [840.24, 1576.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[844.15, 1573.58], [850.52, 1566.57], [841.52, 1558.45], [839.54, 1560.63], [837.78, 1559.05], [833.39, 1563.88], [844.15, 1573.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[853.53, 1565.15], [859.47, 1558.47], [849.7, 1549.84], [843.76, 1556.53], [853.53, 1565.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[857.79, 1535.72], [868.22, 1544.88], [861.37, 1552.62], [850.93, 1543.46], [857.79, 1535.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[870.44, 1545.25], [876.64, 1538.4], [865.7, 1528.59], [859.51, 1535.45], [870.44, 1545.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[877.05, 1536.42], [883.89, 1528.74], [875.28, 1521.14], [874.75, 1521.73], [872.93, 1520.13], [867.38, 1526.37], [869.11, 1527.88], [868.35, 1528.73], [877.05, 1536.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[885.48, 1524.82], [878.02, 1518.07], [880.6, 1515.23], [879.58, 1514.32], [879.46, 1512.61], [881.21, 1510.73], [882.89, 1510.63], [884.01, 1511.65], [885.04, 1510.53], [892.66, 1517.41], [892.19, 1517.94], [897.05, 1522.34], [893.17, 1526.6], [889.14, 1522.97], [887.03, 1525.3], [885.94, 1524.32], [885.48, 1524.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[894.57, 1518.55], [884.97, 1510.05], [885.43, 1509.53], [884.1, 1508.35], [888.41, 1503.51], [889.77, 1504.7], [891.93, 1504.52], [892.03, 1505.7], [897.52, 1510.53], [897.56, 1511.81], [903.23, 1516.8], [899.87, 1520.58], [895.89, 1517.07], [894.57, 1518.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[903.75, 1514.32], [898.45, 1509.68], [901.71, 1505.98], [907.02, 1510.62], [903.75, 1514.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[916.03, 1489.89], [921.93, 1495.16], [928.43, 1487.94], [922.53, 1482.67], [916.03, 1489.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[912.59, 1472.38], [919.79, 1478.47], [912.35, 1487.21], [905.15, 1481.14], [912.59, 1472.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[894.53, 1497.93], [898.96, 1501.9], [903.87, 1496.45], [899.45, 1492.48], [894.53, 1497.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[747.39, 1189.46], [753.9, 1182.43], [759.53, 1187.58], [753.02, 1194.62], [747.39, 1189.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[759.69, 1204.47], [754.25, 1199.67], [750.56, 1203.82], [750.16, 1203.47], [744.87, 1209.42], [750.71, 1214.57], [759.69, 1204.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[760.89, 1215.91], [750.9, 1227.16], [744.59, 1221.59], [754.57, 1210.34], [760.89, 1215.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[754.23, 1227.1], [760.92, 1219.26], [761.31, 1219.6], [762.81, 1217.85], [766.73, 1221.16], [765.12, 1223.06], [767.94, 1225.45], [764.22, 1229.8], [763.13, 1228.88], [760.28, 1232.22], [754.23, 1227.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[765.96, 1240.94], [759.69, 1235.15], [771.71, 1222.22], [778.67, 1228.65], [771.06, 1236.82], [770.64, 1236.44], [767.69, 1239.59], [767.44, 1239.35], [765.96, 1240.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[787.47, 1237.08], [780.66, 1231.05], [776.66, 1235.53], [776.54, 1235.42], [773.32, 1239.04], [773.68, 1239.36], [770.53, 1242.9], [777.1, 1248.71], [787.47, 1237.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[780.12, 1251.28], [786.22, 1256.69], [795.22, 1246.58], [789.11, 1241.18], [786.61, 1243.99], [786.17, 1243.6], [782.63, 1247.57], [783.08, 1247.95], [780.12, 1251.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[798.47, 1247.25], [805.61, 1253.51], [795.3, 1265.19], [793.7, 1263.79], [792.78, 1264.82], [787.24, 1259.97], [798.47, 1247.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[800.22, 1236.74], [806.18, 1230.3], [818.66, 1241.77], [813.43, 1247.43], [812.66, 1246.73], [811.93, 1247.52], [800.22, 1236.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[791.82, 1231.02], [799.31, 1223.25], [793.32, 1217.52], [785.83, 1225.3], [791.82, 1231.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[809.16, 1227.34], [815.2, 1220.63], [827.11, 1231.24], [821.06, 1237.96], [809.16, 1227.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[827.71, 1223.27], [833.82, 1228.95], [841.85, 1220.37], [841.42, 1219.96], [845.17, 1215.97], [839.49, 1210.69], [827.71, 1223.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[824.51, 1226.29], [819.62, 1221.87], [823.6, 1217.51], [828.48, 1221.93], [824.51, 1226.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[821.51, 1215.61], [818.05, 1219.4], [820.06, 1221.22], [823.52, 1217.42], [821.51, 1215.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[813.15, 1209.3], [823.56, 1197.96], [826.35, 1200.5], [828.03, 1198.68], [832.57, 1202.82], [830.91, 1204.63], [831.22, 1204.91], [820.79, 1216.28], [813.15, 1209.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[816.05, 1190.99], [823.4, 1197.74], [810.57, 1211.6], [803.23, 1204.85], [816.05, 1190.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[802.63, 1202.03], [796.37, 1196.3], [807.83, 1183.9], [808.38, 1184.41], [809.26, 1183.45], [814.4, 1188.16], [813.52, 1189.12], [814.08, 1189.64], [802.63, 1202.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[796.98, 1192.51], [791.81, 1187.93], [801.92, 1176.6], [807.08, 1181.18], [796.98, 1192.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[783.61, 1180.63], [792.32, 1170.94], [798.36, 1176.33], [795.56, 1179.45], [796.09, 1179.91], [792.73, 1183.64], [792.21, 1183.16], [789.64, 1186.03], [788.6, 1185.1], [787.62, 1186.18], [784.98, 1183.81], [785.95, 1182.73], [783.61, 1180.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[781.01, 1179.6], [791.67, 1168.02], [785.38, 1162.27], [774.72, 1173.87], [781.01, 1179.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[777.43, 1157.15], [771.32, 1164.21], [771.99, 1164.78], [770.52, 1166.46], [774.12, 1169.57], [775.47, 1168.01], [777.7, 1169.93], [783.92, 1162.75], [783.38, 1162.27], [783.89, 1161.68], [781.94, 1160.01], [781.43, 1160.6], [777.43, 1157.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[756.31, 1161.34], [760.55, 1156.9], [761.05, 1157.38], [765.45, 1152.78], [764.95, 1152.3], [766.74, 1150.42], [761.41, 1145.36], [750.97, 1156.28], [756.31, 1161.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[759.49, 1174.58], [756.06, 1171.63], [752.82, 1175.39], [756.25, 1178.33], [759.49, 1174.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[765.5, 1200.7], [770.78, 1205.62], [775.67, 1200.42], [770.38, 1195.5], [765.5, 1200.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[771.58, 1156.02], [775.55, 1151.88], [771.45, 1147.97], [760.98, 1158.89], [765.16, 1162.87], [767.59, 1160.34], [769.08, 1161.78], [773.16, 1157.53], [771.58, 1156.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[938.01, 1456.19], [945.92, 1447.38], [940.73, 1442.75], [932.82, 1451.56], [938.01, 1456.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[946.49, 1451.75], [952.59, 1457.3], [946.51, 1463.94], [940.4, 1458.38], [946.49, 1451.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[961.49, 1452.24], [957.68, 1448.95], [962.08, 1443.88], [965.89, 1447.17], [961.49, 1452.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[957.27, 1475.0], [950.33, 1468.68], [959.6, 1458.56], [966.55, 1464.86], [957.27, 1475.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[961.59, 1474.77], [968.39, 1480.72], [975.93, 1472.12], [969.14, 1466.19], [961.59, 1474.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[968.67, 1484.65], [977.1, 1474.9], [984.35, 1481.12], [975.93, 1490.88], [968.67, 1484.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[985.81, 1498.86], [983.86, 1497.14], [983.09, 1498.01], [980.15, 1495.41], [980.93, 1494.54], [979.23, 1493.05], [987.9, 1483.31], [994.48, 1489.13], [985.81, 1498.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[994.46, 1507.99], [988.31, 1502.79], [993.97, 1496.13], [1000.12, 1501.33], [994.46, 1507.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[995.87, 1508.28], [1002.43, 1500.67], [1009.52, 1506.75], [1003.31, 1513.96], [998.72, 1510.03], [998.39, 1510.43], [995.87, 1508.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1005.19, 1518.74], [1009.61, 1522.75], [1011.2, 1521.02], [1013.92, 1523.49], [1024.15, 1512.3], [1021.86, 1510.22], [1022.6, 1509.41], [1019.11, 1506.26], [1018.37, 1507.07], [1017.0, 1505.82], [1005.19, 1518.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1014.61, 1524.01], [1022.94, 1514.86], [1031.26, 1522.38], [1022.94, 1531.52], [1014.61, 1524.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1025.05, 1532.84], [1029.92, 1527.45], [1031.92, 1529.25], [1034.25, 1526.66], [1039.47, 1531.33], [1032.26, 1539.32], [1028.45, 1535.89], [1028.05, 1536.34], [1026.17, 1534.65], [1026.57, 1534.21], [1025.05, 1532.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1064.76, 1483.3], [1077.49, 1494.71], [1056.42, 1518.07], [1043.68, 1506.66], [1064.76, 1483.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.43, "pop": 215, "jobs": 0}}, {"shape": {"outer": [[1038.42, 1548.8], [1039.72, 1547.39], [1040.65, 1548.23], [1047.22, 1541.01], [1040.14, 1534.6], [1033.71, 1541.67], [1035.33, 1543.13], [1033.89, 1544.71], [1038.42, 1548.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1042.73, 1550.4], [1049.51, 1543.45], [1052.84, 1546.67], [1053.54, 1545.95], [1055.72, 1548.07], [1055.03, 1548.79], [1056.26, 1549.99], [1049.49, 1556.95], [1046.94, 1554.48], [1045.75, 1555.71], [1042.02, 1552.11], [1043.22, 1550.88], [1042.73, 1550.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1049.84, 1562.28], [1057.27, 1554.26], [1065.92, 1562.22], [1058.49, 1570.24], [1049.84, 1562.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1067.63, 1548.44], [1069.38, 1546.38], [1067.85, 1545.09], [1072.96, 1539.08], [1082.14, 1546.82], [1075.29, 1554.91], [1067.63, 1548.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1085.41, 1494.73], [1097.33, 1481.54], [1120.89, 1502.66], [1108.97, 1515.85], [1085.41, 1494.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.45, "pop": 225, "jobs": 0}}, {"shape": {"outer": [[972.33, 1459.34], [969.21, 1456.54], [973.3, 1452.0], [976.43, 1454.8], [972.33, 1459.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[973.01, 1459.1], [976.08, 1461.86], [980.47, 1457.0], [977.39, 1454.24], [973.01, 1459.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[992.7, 1557.34], [1004.38, 1570.82], [1011.66, 1564.54], [999.98, 1551.07], [992.7, 1557.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[984.0, 1564.97], [997.62, 1580.25], [1003.06, 1575.45], [989.45, 1560.16], [984.0, 1564.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[973.17, 1574.03], [980.62, 1567.35], [989.27, 1576.93], [981.83, 1583.61], [973.17, 1574.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[995.37, 1589.44], [999.19, 1586.3], [996.01, 1582.48], [992.2, 1585.62], [995.37, 1589.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[992.0, 1601.43], [988.15, 1596.9], [990.71, 1594.5], [994.06, 1591.9], [997.92, 1596.42], [992.0, 1601.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[983.35, 1592.55], [986.78, 1589.74], [990.71, 1594.5], [987.28, 1597.31], [983.35, 1592.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[964.17, 1581.89], [976.31, 1595.79], [983.2, 1589.82], [979.62, 1585.71], [980.61, 1584.85], [972.07, 1575.05], [964.17, 1581.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[965.88, 1600.7], [955.9, 1589.24], [963.42, 1582.76], [971.57, 1592.14], [969.21, 1594.18], [971.02, 1596.27], [965.88, 1600.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[950.3, 1598.6], [948.39, 1600.2], [956.48, 1609.8], [963.39, 1604.03], [953.35, 1592.09], [948.34, 1596.26], [950.3, 1598.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[945.61, 1616.24], [953.35, 1609.48], [946.86, 1602.1], [939.11, 1608.85], [945.61, 1616.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[947.3, 1623.89], [950.12, 1621.64], [952.63, 1624.77], [949.81, 1627.02], [947.3, 1623.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[929.81, 1616.55], [936.6, 1610.64], [942.71, 1617.62], [935.93, 1623.52], [929.81, 1616.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[923.72, 1621.53], [920.73, 1624.29], [930.99, 1635.37], [938.04, 1628.9], [926.1, 1616.02], [922.06, 1619.74], [923.72, 1621.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[936.01, 1642.16], [938.71, 1639.88], [935.36, 1635.95], [932.66, 1638.24], [936.01, 1642.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[940.23, 1647.55], [945.24, 1643.34], [941.25, 1638.61], [936.23, 1642.82], [940.23, 1647.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[926.82, 1642.56], [931.64, 1638.4], [935.89, 1643.3], [931.08, 1647.46], [926.82, 1642.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[931.33, 1656.02], [928.17, 1652.15], [931.47, 1649.48], [934.61, 1653.35], [931.33, 1656.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[917.5, 1658.7], [920.68, 1655.76], [916.68, 1651.44], [913.49, 1654.38], [917.5, 1658.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[904.61, 1669.45], [900.52, 1664.67], [903.85, 1661.83], [907.95, 1666.62], [904.61, 1669.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[909.02, 1666.03], [912.22, 1663.27], [908.34, 1658.81], [905.15, 1661.57], [909.02, 1666.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[912.09, 1669.83], [917.4, 1665.27], [914.61, 1662.06], [909.31, 1666.63], [912.09, 1669.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[899.91, 1675.07], [904.35, 1671.42], [908.36, 1676.26], [903.92, 1679.91], [899.91, 1675.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[891.47, 1683.27], [896.28, 1678.93], [900.58, 1683.68], [895.76, 1688.0], [891.47, 1683.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[917.47, 1639.73], [925.35, 1632.8], [919.19, 1625.85], [917.3, 1627.53], [915.81, 1625.85], [911.88, 1629.32], [913.29, 1630.91], [911.25, 1632.7], [917.47, 1639.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[910.34, 1648.07], [917.0, 1642.34], [909.56, 1633.77], [908.51, 1634.67], [907.67, 1633.7], [906.26, 1634.92], [905.44, 1633.98], [901.25, 1637.59], [910.34, 1648.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[903.07, 1655.98], [909.77, 1650.05], [899.44, 1638.48], [892.75, 1644.41], [903.07, 1655.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[891.96, 1665.8], [881.59, 1654.06], [888.5, 1648.01], [898.87, 1659.75], [891.96, 1665.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[892.44, 1672.94], [888.48, 1668.25], [891.36, 1665.83], [895.32, 1670.52], [892.44, 1672.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[880.65, 1655.53], [888.71, 1665.42], [885.26, 1668.21], [887.52, 1671.0], [882.64, 1674.95], [872.32, 1662.29], [880.65, 1655.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[872.06, 1679.96], [864.0, 1671.11], [871.64, 1664.2], [879.69, 1673.05], [872.06, 1679.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[864.27, 1689.13], [854.87, 1678.52], [861.73, 1672.49], [869.32, 1681.06], [865.68, 1684.25], [867.49, 1686.3], [864.27, 1689.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[875.75, 1696.04], [871.25, 1690.73], [877.08, 1685.82], [881.58, 1691.13], [875.75, 1696.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[851.54, 1682.78], [859.56, 1691.33], [854.78, 1695.77], [846.76, 1687.23], [851.54, 1682.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[857.35, 1711.74], [854.03, 1708.1], [858.99, 1703.6], [862.31, 1707.24], [857.35, 1711.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[871.01, 1708.73], [867.06, 1703.89], [872.41, 1699.55], [876.36, 1704.39], [871.01, 1708.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[840.52, 1704.08], [827.39, 1715.11], [821.19, 1707.78], [834.33, 1696.75], [840.52, 1704.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[837.75, 1726.12], [850.44, 1715.03], [843.79, 1707.48], [833.0, 1716.9], [835.12, 1719.31], [833.22, 1720.96], [837.75, 1726.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[850.18, 1734.97], [857.59, 1728.35], [851.67, 1721.76], [844.26, 1728.37], [850.18, 1734.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[859.02, 1750.55], [862.9, 1747.13], [861.11, 1745.12], [871.39, 1736.06], [873.09, 1737.97], [877.04, 1734.49], [867.89, 1724.18], [849.78, 1740.15], [859.02, 1750.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.238, "pop": 119, "jobs": 0}}, {"shape": {"outer": [[870.82, 1715.45], [875.2, 1711.55], [876.73, 1713.25], [879.05, 1711.18], [887.53, 1720.61], [880.83, 1726.58], [870.82, 1715.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[879.7, 1707.58], [885.29, 1702.85], [886.54, 1704.31], [888.64, 1702.53], [896.98, 1712.3], [889.29, 1718.82], [879.7, 1707.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[899.5, 1707.71], [905.43, 1702.78], [898.01, 1693.92], [892.07, 1698.85], [899.5, 1707.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[902.18, 1691.88], [909.73, 1700.48], [916.01, 1695.01], [908.47, 1686.41], [902.18, 1691.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[919.33, 1692.59], [925.67, 1686.89], [917.33, 1677.67], [910.99, 1683.36], [919.33, 1692.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[925.85, 1685.33], [933.71, 1678.22], [926.63, 1670.44], [927.66, 1669.12], [930.57, 1672.61], [938.01, 1667.08], [930.97, 1658.97], [923.31, 1666.79], [921.42, 1664.71], [913.56, 1671.82], [925.85, 1685.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[944.54, 1667.75], [948.04, 1664.78], [946.76, 1663.27], [949.0, 1661.37], [941.54, 1652.64], [935.79, 1657.52], [944.54, 1667.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[956.03, 1661.54], [944.89, 1649.06], [951.54, 1643.15], [962.68, 1655.65], [956.03, 1661.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[963.52, 1654.55], [954.24, 1644.01], [955.19, 1643.18], [953.17, 1640.89], [957.6, 1637.01], [959.93, 1639.65], [962.29, 1637.59], [971.25, 1647.79], [963.52, 1654.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[958.61, 1622.27], [963.16, 1618.8], [959.31, 1613.79], [954.76, 1617.26], [958.61, 1622.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1016.83, 1604.12], [1010.7, 1597.04], [1017.5, 1591.21], [1023.63, 1598.28], [1016.83, 1604.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1005.64, 1596.6], [1006.74, 1597.9], [1008.13, 1596.73], [1016.48, 1606.54], [1008.39, 1613.37], [998.94, 1602.26], [1005.64, 1596.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[991.26, 1610.29], [998.11, 1604.49], [1006.86, 1614.77], [1000.01, 1620.57], [991.26, 1610.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[991.31, 1628.71], [998.2, 1622.75], [990.33, 1613.73], [983.44, 1619.69], [991.31, 1628.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1029.26, 1593.96], [1034.35, 1589.67], [1030.1, 1584.67], [1025.0, 1588.96], [1029.26, 1593.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[887.45, 1684.42], [890.38, 1681.84], [885.97, 1676.89], [883.05, 1679.47], [887.45, 1684.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[981.24, 1623.3], [988.09, 1631.34], [982.45, 1636.11], [975.6, 1628.07], [981.24, 1623.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1026.72, 1580.73], [1031.78, 1575.39], [1043.41, 1586.35], [1038.35, 1591.68], [1026.72, 1580.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[884.46, 1759.9], [875.1, 1768.84], [882.46, 1776.51], [891.83, 1767.55], [884.46, 1759.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[891.6, 1774.03], [898.33, 1781.47], [889.66, 1789.26], [882.93, 1781.83], [891.6, 1774.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[891.4, 1792.11], [905.14, 1780.34], [911.78, 1788.03], [898.04, 1799.81], [891.4, 1792.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[898.13, 1775.46], [902.7, 1780.65], [907.57, 1776.38], [903.0, 1771.2], [898.13, 1775.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[898.66, 1801.18], [911.66, 1789.83], [920.01, 1799.33], [907.0, 1810.68], [898.66, 1801.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[926.92, 1803.02], [933.66, 1796.91], [922.76, 1784.99], [916.02, 1791.12], [926.92, 1803.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[928.41, 1788.34], [934.99, 1795.73], [943.12, 1788.53], [935.23, 1779.69], [931.9, 1782.65], [933.19, 1784.11], [928.41, 1788.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[945.94, 1785.7], [954.48, 1778.01], [944.11, 1766.58], [935.58, 1774.26], [945.94, 1785.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[957.88, 1773.45], [962.08, 1769.86], [963.76, 1771.83], [967.67, 1768.48], [957.81, 1757.02], [949.71, 1763.94], [957.88, 1773.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[969.23, 1763.88], [970.95, 1762.4], [972.66, 1764.36], [977.72, 1759.99], [966.79, 1747.42], [960.01, 1753.27], [969.23, 1763.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[980.99, 1756.92], [988.19, 1751.12], [977.46, 1737.87], [970.25, 1743.67], [980.99, 1756.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[990.5, 1744.13], [991.72, 1743.08], [993.9, 1745.64], [1001.44, 1739.24], [998.99, 1736.39], [999.54, 1735.91], [993.33, 1728.65], [984.02, 1736.56], [990.5, 1744.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1004.52, 1730.95], [1007.98, 1727.91], [1009.47, 1729.59], [1012.42, 1726.99], [1005.74, 1719.43], [999.32, 1725.07], [1004.52, 1730.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1015.48, 1725.69], [1023.13, 1718.92], [1012.81, 1707.35], [1005.16, 1714.14], [1015.48, 1725.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[994.19, 1712.18], [989.21, 1716.59], [985.0, 1711.85], [989.97, 1707.45], [994.19, 1712.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[997.89, 1707.46], [1003.71, 1702.59], [999.3, 1697.36], [993.47, 1702.24], [997.89, 1707.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[994.68, 1699.34], [999.12, 1695.44], [994.36, 1690.05], [989.92, 1693.95], [994.68, 1699.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[999.34, 1695.04], [1003.24, 1691.46], [998.41, 1686.24], [994.51, 1689.82], [999.34, 1695.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1026.15, 1713.35], [1015.86, 1702.53], [1022.27, 1696.48], [1033.54, 1708.33], [1028.5, 1713.09], [1027.52, 1712.06], [1026.15, 1713.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1036.61, 1703.6], [1038.35, 1702.05], [1040.31, 1704.23], [1046.77, 1698.47], [1037.11, 1687.7], [1034.21, 1690.3], [1032.98, 1688.93], [1027.68, 1693.65], [1036.61, 1703.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1050.57, 1696.17], [1057.94, 1689.4], [1054.72, 1685.92], [1055.74, 1684.98], [1047.3, 1675.83], [1038.9, 1683.54], [1050.57, 1696.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[1061.56, 1685.25], [1050.91, 1673.18], [1058.66, 1666.39], [1069.3, 1678.46], [1061.56, 1685.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1063.56, 1666.47], [1072.02, 1674.05], [1081.53, 1663.48], [1074.91, 1657.56], [1067.84, 1665.42], [1066.0, 1663.77], [1063.56, 1666.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1086.08, 1662.21], [1069.75, 1647.65], [1075.32, 1641.44], [1091.66, 1656.0], [1086.08, 1662.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[1067.19, 1650.63], [1057.6, 1641.68], [1053.0, 1646.57], [1062.6, 1655.52], [1067.19, 1650.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1063.89, 1645.84], [1058.43, 1641.0], [1063.97, 1634.82], [1069.42, 1639.66], [1063.89, 1645.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1055.06, 1642.37], [1061.12, 1636.93], [1056.78, 1632.13], [1050.72, 1637.58], [1055.06, 1642.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1059.68, 1629.99], [1063.32, 1634.2], [1061.08, 1636.13], [1057.43, 1631.93], [1059.68, 1629.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[1073.63, 1634.48], [1078.49, 1629.48], [1073.94, 1625.08], [1069.07, 1630.08], [1073.63, 1634.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1095.95, 1650.26], [1103.3, 1642.19], [1089.43, 1629.67], [1084.3, 1635.32], [1088.72, 1639.31], [1086.51, 1641.74], [1095.95, 1650.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[1105.99, 1639.25], [1113.54, 1630.91], [1104.22, 1622.55], [1101.3, 1625.78], [1099.63, 1624.29], [1095.02, 1629.4], [1105.99, 1639.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1102.95, 1617.25], [1115.82, 1629.29], [1123.01, 1621.68], [1111.66, 1611.05], [1112.18, 1610.5], [1106.99, 1605.65], [1101.16, 1611.83], [1104.83, 1615.27], [1102.95, 1617.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[1124.95, 1618.25], [1130.85, 1611.58], [1119.58, 1601.7], [1113.68, 1608.38], [1124.95, 1618.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1117.3, 1600.62], [1111.78, 1595.69], [1115.86, 1591.16], [1121.38, 1596.09], [1117.3, 1600.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1125.3, 1597.44], [1135.61, 1606.96], [1142.44, 1599.62], [1130.48, 1588.58], [1126.47, 1592.89], [1128.11, 1594.41], [1125.3, 1597.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1124.47, 1587.84], [1128.11, 1583.93], [1122.87, 1579.08], [1119.23, 1582.98], [1124.47, 1587.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1135.61, 1588.06], [1141.98, 1580.8], [1149.13, 1587.04], [1148.49, 1587.78], [1150.58, 1589.61], [1145.7, 1595.17], [1144.04, 1593.73], [1143.21, 1594.69], [1135.61, 1588.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1145.81, 1566.7], [1157.98, 1576.82], [1151.81, 1584.19], [1139.64, 1574.07], [1145.81, 1566.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1119.01, 1575.39], [1121.53, 1572.69], [1125.96, 1576.82], [1123.46, 1579.51], [1119.01, 1575.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1132.39, 1559.7], [1138.29, 1564.59], [1133.52, 1570.32], [1127.61, 1565.43], [1132.39, 1559.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1123.93, 1557.8], [1128.21, 1553.12], [1133.04, 1557.5], [1128.76, 1562.19], [1123.93, 1557.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1160.4, 1574.6], [1167.47, 1566.66], [1159.17, 1559.31], [1152.1, 1567.25], [1160.4, 1574.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1147.11, 1555.33], [1152.56, 1549.33], [1146.39, 1543.76], [1140.94, 1549.77], [1147.11, 1555.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1161.95, 1547.61], [1165.76, 1543.17], [1178.67, 1554.21], [1171.01, 1563.1], [1165.42, 1558.33], [1166.74, 1556.79], [1164.71, 1555.05], [1167.22, 1552.12], [1161.95, 1547.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1170.78, 1541.47], [1177.19, 1534.64], [1188.88, 1545.51], [1182.49, 1552.35], [1170.78, 1541.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1170.34, 1529.63], [1164.43, 1523.91], [1157.75, 1530.77], [1163.66, 1536.49], [1170.34, 1529.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1145.11, 1518.38], [1150.47, 1512.56], [1158.27, 1519.67], [1156.43, 1521.67], [1158.33, 1523.4], [1154.81, 1527.24], [1145.11, 1518.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1134.34, 1531.2], [1134.95, 1530.51], [1133.05, 1528.85], [1138.09, 1523.15], [1140.04, 1524.87], [1140.6, 1524.23], [1150.58, 1532.99], [1144.37, 1540.0], [1134.34, 1531.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1139.88, 1548.78], [1144.27, 1544.27], [1139.05, 1539.21], [1134.65, 1543.71], [1139.88, 1548.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1134.34, 1545.11], [1131.92, 1542.73], [1133.96, 1540.68], [1129.59, 1536.39], [1121.59, 1544.47], [1128.38, 1551.15], [1134.34, 1545.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1117.88, 1564.19], [1124.19, 1556.91], [1114.53, 1548.58], [1108.21, 1555.85], [1117.88, 1564.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1108.87, 1573.98], [1111.69, 1570.87], [1113.24, 1572.26], [1117.11, 1567.97], [1106.44, 1558.39], [1099.75, 1565.78], [1108.87, 1573.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1095.51, 1586.33], [1099.47, 1582.88], [1101.94, 1580.44], [1095.89, 1573.88], [1089.46, 1579.79], [1095.51, 1586.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1098.92, 1593.35], [1104.45, 1588.25], [1099.47, 1582.88], [1093.93, 1587.98], [1098.92, 1593.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1095.73, 1596.84], [1098.85, 1594.15], [1095.03, 1589.74], [1091.91, 1592.41], [1095.73, 1596.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1083.71, 1597.12], [1090.84, 1590.82], [1088.27, 1587.93], [1090.17, 1586.25], [1085.73, 1581.27], [1076.7, 1589.24], [1083.71, 1597.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1074.47, 1607.62], [1081.67, 1601.26], [1074.07, 1592.72], [1066.87, 1599.08], [1074.47, 1607.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1079.6, 1615.7], [1082.79, 1613.02], [1078.55, 1608.0], [1075.36, 1610.68], [1079.6, 1615.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1065.18, 1618.52], [1072.97, 1611.46], [1064.58, 1602.27], [1063.49, 1603.25], [1061.49, 1601.07], [1055.36, 1606.62], [1057.12, 1608.56], [1056.56, 1609.07], [1065.18, 1618.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1053.29, 1624.46], [1055.24, 1622.78], [1056.96, 1624.78], [1060.94, 1621.37], [1056.85, 1616.63], [1058.52, 1615.21], [1055.61, 1611.83], [1048.02, 1618.36], [1053.29, 1624.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1040.79, 1631.15], [1042.1, 1630.02], [1044.89, 1633.24], [1050.49, 1628.41], [1044.61, 1621.65], [1037.7, 1627.6], [1040.79, 1631.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1028.96, 1633.63], [1040.69, 1646.37], [1042.16, 1645.03], [1043.32, 1646.27], [1046.94, 1642.97], [1045.38, 1641.28], [1046.33, 1640.41], [1035.75, 1628.92], [1034.06, 1628.03], [1033.21, 1627.83], [1032.32, 1627.85], [1030.99, 1628.5], [1030.52, 1629.41], [1030.43, 1630.13], [1030.67, 1630.8], [1028.81, 1632.41], [1028.96, 1633.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[1039.95, 1658.15], [1043.61, 1655.03], [1039.21, 1649.91], [1035.56, 1653.04], [1039.95, 1658.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1033.21, 1645.95], [1024.81, 1636.11], [1018.04, 1641.84], [1026.44, 1651.68], [1033.21, 1645.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1008.49, 1649.72], [1014.39, 1644.61], [1024.97, 1656.73], [1019.08, 1661.84], [1008.49, 1649.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1006.92, 1667.61], [1013.94, 1661.34], [1007.1, 1653.74], [1006.52, 1654.26], [1005.06, 1652.64], [999.18, 1657.89], [1000.69, 1659.56], [1000.13, 1660.06], [1006.92, 1667.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[998.79, 1675.71], [1000.83, 1673.9], [1002.43, 1675.7], [1006.1, 1672.46], [1004.29, 1670.42], [1005.12, 1669.68], [996.6, 1660.1], [992.29, 1663.91], [994.03, 1665.86], [991.79, 1667.85], [998.79, 1675.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[981.05, 1673.41], [989.02, 1682.42], [996.81, 1675.57], [988.85, 1666.56], [981.05, 1673.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[979.05, 1690.92], [986.47, 1684.38], [978.75, 1675.69], [971.33, 1682.24], [979.05, 1690.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[971.73, 1699.16], [974.76, 1696.54], [975.99, 1697.96], [978.96, 1695.38], [977.44, 1693.65], [978.57, 1692.67], [971.74, 1684.84], [971.22, 1685.29], [969.95, 1683.83], [964.16, 1688.86], [965.36, 1690.23], [964.55, 1690.93], [971.73, 1699.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[952.58, 1698.02], [959.91, 1691.65], [968.33, 1701.3], [961.0, 1707.65], [952.58, 1698.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[944.63, 1705.39], [950.7, 1700.07], [959.28, 1709.78], [953.2, 1715.11], [944.63, 1705.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[936.6, 1712.1], [942.83, 1707.14], [953.85, 1720.89], [947.62, 1725.85], [936.6, 1712.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[936.39, 1731.35], [939.7, 1728.79], [938.08, 1726.72], [939.73, 1725.44], [932.05, 1715.61], [926.2, 1720.15], [934.4, 1730.63], [935.28, 1729.95], [936.39, 1731.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[947.64, 1740.18], [952.75, 1735.9], [948.96, 1731.4], [943.84, 1735.68], [947.64, 1740.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[941.84, 1735.69], [943.87, 1737.88], [941.85, 1739.74], [939.82, 1737.55], [941.84, 1735.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[951.74, 1748.1], [957.98, 1743.4], [954.05, 1738.22], [947.81, 1742.92], [951.74, 1748.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[916.86, 1750.14], [920.44, 1746.98], [928.64, 1756.21], [925.06, 1759.37], [916.86, 1750.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[917.08, 1768.05], [920.26, 1764.9], [915.33, 1759.97], [912.15, 1763.12], [917.08, 1768.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[923.99, 1739.04], [929.6, 1734.39], [931.36, 1736.51], [934.67, 1733.77], [930.23, 1728.46], [928.2, 1730.14], [923.92, 1725.01], [917.03, 1730.7], [923.99, 1739.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[908.92, 1737.1], [916.89, 1746.12], [922.97, 1740.79], [914.99, 1731.77], [908.92, 1737.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[905.91, 1739.47], [913.8, 1747.88], [907.05, 1754.17], [899.16, 1745.77], [905.91, 1739.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[892.02, 1756.04], [898.19, 1750.14], [904.32, 1756.53], [898.09, 1762.34], [892.02, 1756.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[907.68, 1768.88], [911.54, 1773.3], [908.52, 1775.92], [904.66, 1771.5], [907.68, 1768.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1008.66, 1678.59], [1013.09, 1674.46], [1017.18, 1678.82], [1012.75, 1682.95], [1008.66, 1678.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1379.94, 2521.61], [1393.88, 2514.61], [1390.04, 2507.0], [1376.09, 2513.99], [1379.94, 2521.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1387.93, 2536.96], [1382.96, 2527.1], [1390.46, 2523.36], [1396.43, 2535.21], [1390.7, 2538.08], [1389.69, 2536.07], [1387.93, 2536.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1395.32, 2554.14], [1404.98, 2549.28], [1401.12, 2541.67], [1391.46, 2546.52], [1395.32, 2554.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1412.1, 2550.52], [1413.83, 2553.75], [1416.36, 2552.4], [1419.02, 2557.37], [1423.06, 2555.22], [1427.46, 2563.43], [1421.57, 2566.57], [1417.91, 2559.75], [1399.85, 2569.35], [1394.72, 2559.77], [1412.1, 2550.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[1474.52, 2487.73], [1453.15, 2495.1], [1458.8, 2511.39], [1480.18, 2504.03], [1474.52, 2487.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[1480.16, 2486.07], [1501.51, 2478.94], [1506.88, 2494.93], [1485.53, 2502.05], [1480.16, 2486.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.304, "pop": 152, "jobs": 0}}, {"shape": {"outer": [[1538.29, 2488.13], [1534.2, 2476.61], [1555.68, 2469.04], [1559.76, 2480.55], [1538.29, 2488.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.222, "pop": 111, "jobs": 0}}, {"shape": {"outer": [[1285.04, 2348.0], [1301.58, 2340.3], [1298.41, 2333.53], [1290.05, 2337.41], [1290.76, 2338.93], [1282.57, 2342.74], [1285.04, 2348.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1285.29, 2350.92], [1286.85, 2350.18], [1286.47, 2349.38], [1295.88, 2344.97], [1298.88, 2351.31], [1287.91, 2356.46], [1285.29, 2350.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1481.63, 2651.63], [1506.97, 2643.55], [1501.4, 2626.2], [1476.05, 2634.28], [1481.63, 2651.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.388, "pop": 194, "jobs": 0}}, {"shape": {"outer": [[1583.79, 2647.16], [1582.87, 2634.21], [1544.04, 2636.97], [1544.96, 2649.92], [1583.79, 2647.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.404, "pop": 202, "jobs": 0}}, {"shape": {"outer": [[1555.31, 2724.55], [1539.16, 2725.13], [1537.57, 2680.61], [1553.54, 2680.04], [1553.83, 2688.33], [1572.12, 2687.68], [1571.83, 2679.57], [1588.44, 2678.98], [1589.47, 2707.94], [1572.75, 2717.07], [1572.59, 2712.47], [1554.9, 2713.11], [1555.31, 2724.55]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1101}}, {"shape": {"outer": [[1530.79, 2755.47], [1537.47, 2752.07], [1523.6, 2724.99], [1506.45, 2733.71], [1512.02, 2744.59], [1514.06, 2743.55], [1516.03, 2747.39], [1524.46, 2743.11], [1530.79, 2755.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.33, "pop": 165, "jobs": 0}}, {"shape": {"outer": [[1493.91, 2700.06], [1497.57, 2707.17], [1482.58, 2714.84], [1478.92, 2707.73], [1493.91, 2700.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1504.35, 2715.67], [1504.12, 2710.11], [1511.72, 2709.79], [1511.95, 2715.35], [1504.35, 2715.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1489.67, 2724.23], [1498.8, 2719.84], [1501.16, 2724.72], [1500.03, 2725.26], [1500.78, 2726.79], [1492.77, 2730.64], [1489.67, 2724.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1507.23, 2720.24], [1507.12, 2716.66], [1509.99, 2716.56], [1510.09, 2720.15], [1507.23, 2720.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[1438.34, 2618.97], [1433.52, 2609.43], [1442.96, 2604.7], [1447.78, 2614.22], [1438.34, 2618.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1453.5, 2611.5], [1460.24, 2609.42], [1457.95, 2602.02], [1451.21, 2604.1], [1453.5, 2611.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1469.42, 2606.41], [1488.92, 2600.01], [1485.83, 2590.67], [1466.33, 2597.08], [1469.42, 2606.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[1450.08, 2642.06], [1462.92, 2635.96], [1459.07, 2627.94], [1446.24, 2634.05], [1450.08, 2642.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1457.89, 2661.36], [1453.01, 2652.73], [1469.46, 2643.52], [1474.33, 2652.14], [1457.89, 2661.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1466.72, 2679.87], [1461.95, 2670.09], [1470.59, 2665.9], [1475.37, 2675.68], [1466.72, 2679.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1477.77, 2696.41], [1490.12, 2689.74], [1485.04, 2680.41], [1479.34, 2683.5], [1480.79, 2686.16], [1474.15, 2689.74], [1477.77, 2696.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1515.08, 2643.05], [1522.65, 2640.83], [1520.8, 2634.59], [1513.24, 2636.8], [1515.08, 2643.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1490.24, 2654.57], [1490.88, 2657.21], [1487.94, 2657.92], [1487.29, 2655.29], [1490.24, 2654.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[1171.69, 2205.09], [1183.85, 2195.58], [1180.81, 2191.72], [1179.43, 2192.8], [1177.62, 2190.52], [1183.45, 2185.95], [1179.05, 2180.38], [1173.28, 2184.9], [1174.95, 2187.01], [1168.69, 2191.91], [1170.86, 2194.65], [1170.39, 2196.06], [1171.07, 2196.92], [1167.47, 2199.74], [1171.69, 2205.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[1188.35, 2198.42], [1192.98, 2205.06], [1190.75, 2206.61], [1194.12, 2211.43], [1182.67, 2219.38], [1174.67, 2207.92], [1188.35, 2198.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[1186.22, 2234.29], [1200.42, 2225.84], [1194.08, 2215.26], [1179.88, 2223.72], [1186.22, 2234.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[1203.84, 2244.27], [1200.08, 2236.59], [1203.71, 2234.83], [1201.55, 2230.45], [1182.91, 2239.53], [1188.81, 2251.59], [1203.84, 2244.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[1188.16, 2266.6], [1209.05, 2260.3], [1206.97, 2253.42], [1203.62, 2254.44], [1202.87, 2251.99], [1198.67, 2253.26], [1197.78, 2250.31], [1184.44, 2254.34], [1188.16, 2266.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[1184.19, 2281.84], [1183.17, 2271.49], [1188.06, 2271.02], [1187.95, 2269.85], [1198.74, 2268.79], [1198.64, 2267.71], [1205.95, 2266.99], [1206.82, 2275.73], [1194.75, 2276.92], [1195.13, 2280.78], [1184.19, 2281.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[1187.3, 2302.59], [1202.81, 2301.58], [1202.27, 2293.38], [1209.85, 2292.87], [1209.35, 2285.32], [1194.15, 2286.33], [1194.35, 2289.26], [1186.45, 2289.78], [1187.3, 2302.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.224, "pop": 112, "jobs": 0}}, {"shape": {"outer": [[1185.42, 2313.84], [1185.51, 2315.46], [1196.22, 2314.91], [1196.13, 2313.22], [1202.77, 2312.89], [1202.41, 2305.86], [1173.89, 2307.31], [1174.25, 2314.41], [1185.42, 2313.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[1148.82, 2365.93], [1163.91, 2373.55], [1173.18, 2355.34], [1158.08, 2347.72], [1148.82, 2365.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[1136.38, 2390.01], [1147.15, 2395.32], [1152.71, 2384.11], [1156.87, 2386.16], [1161.19, 2377.45], [1146.26, 2370.11], [1136.38, 2390.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[1163.52, 2340.54], [1171.93, 2345.0], [1176.99, 2335.49], [1189.72, 2333.64], [1188.71, 2326.79], [1175.54, 2328.71], [1170.83, 2326.57], [1168.53, 2331.58], [1166.33, 2331.64], [1164.67, 2334.35], [1165.83, 2336.2], [1163.52, 2340.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[1218.81, 2352.02], [1226.02, 2349.17], [1223.56, 2342.96], [1229.02, 2340.8], [1222.75, 2325.04], [1210.07, 2330.05], [1218.81, 2352.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[1226.53, 2371.23], [1235.16, 2366.62], [1227.74, 2352.81], [1219.11, 2357.42], [1226.53, 2371.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1140.42, 2447.18], [1143.57, 2438.53], [1138.04, 2436.63], [1141.11, 2428.01], [1124.66, 2421.41], [1123.41, 2425.76], [1115.14, 2423.4], [1112.56, 2424.25], [1111.54, 2426.95], [1112.89, 2430.06], [1111.57, 2434.64], [1109.97, 2434.19], [1109.99, 2441.4], [1140.42, 2447.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.472, "pop": 236, "jobs": 0}}, {"shape": {"outer": [[1109.65, 2462.63], [1109.88, 2453.16], [1112.7, 2453.23], [1112.82, 2448.69], [1124.39, 2448.96], [1124.37, 2449.78], [1138.56, 2450.13], [1138.36, 2458.25], [1135.52, 2458.17], [1135.29, 2467.85], [1123.49, 2467.57], [1123.54, 2465.43], [1117.57, 2465.29], [1117.63, 2462.81], [1109.65, 2462.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.344, "pop": 172, "jobs": 0}}, {"shape": {"outer": [[1113.55, 2478.48], [1113.82, 2472.88], [1128.47, 2473.56], [1128.24, 2478.49], [1130.05, 2478.58], [1129.76, 2484.67], [1127.45, 2484.57], [1126.94, 2495.25], [1118.27, 2494.84], [1118.53, 2489.52], [1117.2, 2489.45], [1117.49, 2483.4], [1116.36, 2483.34], [1116.58, 2478.62], [1113.55, 2478.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[1110.79, 2524.92], [1124.98, 2524.93], [1125.0, 2513.84], [1128.89, 2513.84], [1128.91, 2502.88], [1111.12, 2502.86], [1111.11, 2514.83], [1108.83, 2517.44], [1108.48, 2522.84], [1110.79, 2524.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.294, "pop": 147, "jobs": 0}}, {"shape": {"outer": [[1105.81, 2551.54], [1105.17, 2546.87], [1106.91, 2547.13], [1108.5, 2545.25], [1107.7, 2538.55], [1106.76, 2537.96], [1106.49, 2535.53], [1108.36, 2533.24], [1123.58, 2531.48], [1125.28, 2546.1], [1129.0, 2547.32], [1130.11, 2554.94], [1112.93, 2557.44], [1109.87, 2555.36], [1107.85, 2558.29], [1106.02, 2558.96], [1103.76, 2558.21], [1102.49, 2557.02], [1102.35, 2555.29], [1102.81, 2553.96], [1105.81, 2551.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.394, "pop": 197, "jobs": 0}}, {"shape": {"outer": [[1111.99, 2588.01], [1128.51, 2584.13], [1126.93, 2577.45], [1123.44, 2578.27], [1120.88, 2567.43], [1124.52, 2566.58], [1123.42, 2561.92], [1106.75, 2565.84], [1111.99, 2588.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[1140.59, 2606.87], [1129.89, 2609.79], [1130.43, 2611.72], [1128.38, 2612.26], [1128.97, 2614.43], [1125.03, 2615.5], [1123.78, 2610.96], [1119.73, 2612.05], [1114.88, 2594.35], [1124.91, 2591.61], [1126.04, 2595.75], [1129.43, 2594.83], [1131.52, 2602.42], [1138.81, 2600.42], [1140.59, 2606.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.254, "pop": 127, "jobs": 0}}, {"shape": {"outer": [[1145.48, 2665.95], [1146.91, 2669.45], [1150.41, 2668.03], [1149.02, 2664.62], [1165.28, 2658.02], [1162.37, 2650.9], [1143.42, 2658.6], [1139.28, 2648.47], [1131.52, 2651.62], [1138.52, 2668.77], [1145.48, 2665.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.262, "pop": 131, "jobs": 0}}, {"shape": {"outer": [[1180.37, 2683.65], [1176.64, 2675.25], [1167.75, 2679.17], [1163.75, 2670.17], [1148.41, 2676.93], [1150.83, 2682.4], [1152.75, 2681.55], [1158.04, 2693.47], [1180.37, 2683.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.304, "pop": 152, "jobs": 0}}, {"shape": {"outer": [[1177.99, 2707.16], [1174.71, 2700.82], [1179.88, 2698.17], [1177.48, 2693.51], [1185.88, 2689.2], [1193.22, 2703.38], [1197.58, 2701.15], [1200.21, 2706.23], [1190.94, 2710.98], [1188.54, 2706.35], [1184.23, 2708.56], [1182.35, 2704.92], [1177.99, 2707.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.206, "pop": 103, "jobs": 0}}, {"shape": {"outer": [[1197.76, 2755.53], [1212.66, 2748.34], [1205.16, 2732.9], [1201.56, 2734.63], [1195.86, 2722.9], [1184.56, 2728.36], [1197.76, 2755.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.358, "pop": 179, "jobs": 0}}, {"shape": {"outer": [[1216.2, 2809.3], [1212.84, 2809.47], [1212.33, 2799.34], [1241.34, 2797.87], [1241.86, 2808.11], [1230.88, 2808.66], [1231.36, 2818.34], [1216.69, 2819.08], [1216.2, 2809.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.352, "pop": 176, "jobs": 0}}, {"shape": {"outer": [[1216.7, 2789.79], [1228.5, 2789.48], [1228.23, 2779.15], [1216.43, 2779.46], [1216.7, 2789.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1286.36, 2782.38], [1282.21, 2782.61], [1281.84, 2775.99], [1312.81, 2774.25], [1313.46, 2785.7], [1299.82, 2786.46], [1286.36, 2782.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.242, "pop": 121, "jobs": 0}}, {"shape": {"outer": [[1340.84, 2775.29], [1349.43, 2775.11], [1349.27, 2766.97], [1340.67, 2767.14], [1340.84, 2775.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1328.82, 2791.75], [1329.76, 2787.21], [1328.04, 2786.84], [1328.96, 2782.51], [1338.63, 2784.51], [1339.46, 2780.55], [1346.34, 2781.98], [1345.48, 2786.07], [1349.35, 2786.86], [1347.66, 2794.95], [1344.09, 2794.21], [1343.7, 2796.12], [1340.78, 2795.51], [1340.16, 2796.35], [1339.36, 2796.92], [1337.89, 2796.91], [1336.88, 2796.66], [1336.21, 2795.85], [1335.87, 2794.94], [1336.22, 2793.28], [1328.82, 2791.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[1357.28, 2796.4], [1364.16, 2796.14], [1364.12, 2794.99], [1367.36, 2794.87], [1366.79, 2779.48], [1352.9, 2780.01], [1353.18, 2787.46], [1356.94, 2787.31], [1357.28, 2796.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[1395.39, 2794.96], [1406.02, 2794.44], [1405.65, 2786.65], [1402.38, 2786.81], [1401.99, 2778.7], [1394.62, 2779.05], [1395.39, 2794.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1411.58, 2794.05], [1410.59, 2776.74], [1418.42, 2776.3], [1418.8, 2782.94], [1424.99, 2782.57], [1425.61, 2793.25], [1411.58, 2794.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[1374.97, 2795.09], [1389.81, 2794.75], [1389.48, 2780.5], [1374.64, 2780.84], [1374.97, 2795.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[1463.72, 2782.27], [1477.22, 2781.63], [1477.87, 2795.62], [1478.73, 2795.58], [1479.12, 2803.99], [1464.78, 2804.67], [1463.72, 2782.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.248, "pop": 124, "jobs": 0}}, {"shape": {"outer": [[1472.7, 2775.21], [1472.3, 2767.23], [1458.53, 2767.93], [1458.93, 2775.91], [1472.7, 2775.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1454.86, 2771.12], [1454.73, 2762.85], [1446.55, 2762.99], [1446.68, 2771.26], [1454.86, 2771.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1430.29, 2792.37], [1430.02, 2784.26], [1444.81, 2783.77], [1445.08, 2791.89], [1430.29, 2792.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1442.45, 2756.2], [1448.9, 2755.54], [1449.3, 2759.41], [1442.85, 2760.06], [1442.45, 2756.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1455.17, 2758.1], [1465.68, 2757.14], [1465.51, 2755.38], [1467.58, 2755.18], [1466.77, 2746.44], [1454.2, 2747.58], [1455.17, 2758.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1428.28, 2731.61], [1428.61, 2741.36], [1450.18, 2740.65], [1449.85, 2730.9], [1428.28, 2731.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[809.41, 1284.8], [816.69, 1276.47], [818.22, 1277.79], [817.89, 1278.17], [831.14, 1289.64], [831.53, 1289.18], [832.58, 1290.09], [825.42, 1298.29], [821.58, 1294.96], [822.55, 1293.85], [814.86, 1287.19], [813.7, 1288.51], [809.41, 1284.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[828.86, 1299.37], [832.0, 1302.25], [836.28, 1297.62], [833.14, 1294.73], [828.86, 1299.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[842.06, 1305.97], [854.87, 1292.18], [848.86, 1286.63], [836.05, 1300.42], [842.06, 1305.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[823.76, 1269.99], [835.32, 1280.47], [833.21, 1282.78], [834.64, 1284.08], [830.45, 1288.67], [817.47, 1276.88], [823.76, 1269.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[829.21, 1271.96], [830.14, 1270.81], [828.86, 1269.77], [831.99, 1265.9], [833.61, 1267.21], [834.78, 1265.75], [845.25, 1274.18], [841.56, 1278.72], [840.37, 1277.76], [839.54, 1278.78], [838.4, 1277.85], [837.66, 1278.76], [829.21, 1271.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[842.13, 1255.76], [851.29, 1263.83], [856.73, 1257.67], [847.58, 1249.62], [842.13, 1255.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[840.47, 1259.07], [842.53, 1260.92], [843.44, 1259.91], [847.58, 1263.62], [846.67, 1264.64], [849.13, 1266.85], [844.49, 1271.99], [835.83, 1264.21], [840.47, 1259.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[851.86, 1243.11], [851.87, 1241.91], [858.64, 1234.42], [869.05, 1243.78], [858.23, 1255.74], [852.59, 1250.69], [854.8, 1248.25], [852.02, 1245.75], [853.26, 1244.37], [851.86, 1243.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[879.69, 1266.04], [873.16, 1260.14], [881.75, 1250.69], [888.28, 1256.58], [879.69, 1266.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[880.2, 1269.48], [890.46, 1258.49], [894.76, 1262.47], [893.21, 1264.11], [895.12, 1265.88], [886.39, 1275.22], [880.2, 1269.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[901.66, 1293.07], [913.12, 1280.91], [906.82, 1275.02], [895.37, 1287.18], [901.66, 1293.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[877.28, 1303.46], [884.82, 1295.21], [883.6, 1294.1], [889.92, 1287.19], [883.81, 1281.63], [881.03, 1284.66], [880.51, 1284.19], [874.86, 1290.36], [875.78, 1291.2], [874.83, 1292.24], [876.05, 1293.34], [871.55, 1298.25], [877.28, 1303.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[856.39, 1294.79], [862.93, 1300.52], [852.54, 1312.3], [846.0, 1306.57], [856.39, 1294.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[891.75, 1353.71], [901.3, 1342.86], [909.28, 1349.83], [899.73, 1360.68], [891.75, 1353.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[889.35, 1352.82], [898.58, 1342.58], [891.65, 1336.38], [882.42, 1346.62], [889.35, 1352.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[881.42, 1341.7], [891.04, 1331.19], [884.81, 1325.52], [875.19, 1336.04], [881.42, 1341.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[889.41, 1326.97], [893.91, 1330.93], [898.66, 1325.57], [894.15, 1321.61], [889.41, 1326.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[873.14, 1331.02], [878.48, 1324.36], [870.93, 1318.35], [865.58, 1325.01], [873.14, 1331.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[911.75, 1372.65], [904.87, 1366.64], [915.56, 1354.51], [922.43, 1360.51], [911.75, 1372.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[961.34, 1386.56], [965.37, 1382.08], [962.29, 1379.34], [965.57, 1375.67], [962.4, 1372.85], [955.09, 1380.99], [961.34, 1386.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1047.95, 1424.45], [1071.3, 1445.93], [1083.28, 1433.01], [1059.92, 1411.52], [1047.95, 1424.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.448, "pop": 224, "jobs": 0}}, {"shape": {"outer": [[1019.69, 1418.21], [1035.3, 1431.33], [1023.21, 1445.6], [1007.61, 1432.49], [1019.69, 1418.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.304, "pop": 152, "jobs": 0}}, {"shape": {"outer": [[1031.03, 1386.12], [1034.9, 1389.53], [1032.02, 1392.78], [1034.01, 1394.55], [1030.53, 1398.47], [1028.22, 1396.42], [1026.29, 1398.58], [1028.05, 1400.14], [1025.17, 1403.39], [1019.85, 1398.69], [1031.03, 1386.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1019.17, 1396.01], [1029.5, 1384.94], [1023.5, 1379.39], [1013.18, 1390.47], [1019.17, 1396.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1008.9, 1386.69], [1018.51, 1375.54], [1012.11, 1370.06], [1002.5, 1381.2], [1008.9, 1386.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[962.67, 1416.61], [971.1, 1424.61], [978.79, 1416.55], [970.35, 1408.55], [962.67, 1416.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[980.83, 1414.19], [986.96, 1407.09], [978.37, 1399.72], [972.24, 1406.83], [980.83, 1414.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[994.04, 1434.53], [1004.12, 1422.98], [995.31, 1415.33], [985.23, 1426.9], [994.04, 1434.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[984.26, 1395.66], [994.04, 1404.47], [999.38, 1398.59], [989.59, 1389.78], [984.26, 1395.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[919.94, 1377.5], [927.0, 1369.79], [931.78, 1374.13], [924.72, 1381.84], [919.94, 1377.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[934.22, 1395.45], [946.72, 1381.61], [939.68, 1375.31], [927.19, 1389.13], [934.22, 1395.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2058.99, 2282.3], [2048.55, 2272.78], [2054.24, 2266.57], [2063.38, 2274.9], [2060.43, 2278.12], [2061.73, 2279.31], [2058.99, 2282.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2066.68, 2293.05], [2062.62, 2289.37], [2067.04, 2284.54], [2071.1, 2288.23], [2066.68, 2293.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2056.79, 2284.43], [2048.48, 2276.56], [2042.06, 2283.28], [2050.37, 2291.16], [2056.79, 2284.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2060.92, 2298.02], [2066.03, 2292.93], [2062.62, 2289.37], [2057.36, 2294.47], [2060.92, 2298.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2065.34, 2305.63], [2060.88, 2301.32], [2071.31, 2290.59], [2075.78, 2294.9], [2065.34, 2305.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2076.24, 2282.35], [2080.59, 2277.77], [2075.55, 2273.01], [2071.2, 2277.6], [2076.24, 2282.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2068.55, 2270.05], [2070.25, 2268.24], [2071.72, 2269.63], [2074.21, 2266.98], [2072.97, 2265.81], [2074.55, 2264.12], [2063.59, 2253.87], [2059.08, 2258.66], [2062.49, 2261.84], [2061.21, 2263.19], [2068.55, 2270.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2075.01, 2262.03], [2075.97, 2261.05], [2077.09, 2262.14], [2079.85, 2259.29], [2078.61, 2258.1], [2080.47, 2256.2], [2073.0, 2248.98], [2067.43, 2254.71], [2075.01, 2262.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2085.56, 2253.61], [2076.6, 2244.98], [2082.28, 2239.13], [2091.24, 2247.76], [2085.56, 2253.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2093.89, 2242.95], [2095.86, 2240.94], [2097.06, 2242.11], [2099.86, 2239.24], [2098.9, 2238.31], [2099.86, 2237.33], [2091.59, 2229.31], [2085.86, 2235.17], [2093.89, 2242.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2437.86, 1980.82], [2407.83, 1999.16], [2417.58, 2015.01], [2447.6, 1996.67], [2437.86, 1980.82]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.419, "pop": 0, "jobs": 419}}, {"shape": {"outer": [[2494.66, 1897.61], [2483.17, 1904.49], [2479.36, 1898.17], [2481.92, 1896.66], [2481.36, 1895.72], [2485.61, 1893.17], [2486.03, 1893.88], [2490.73, 1891.07], [2494.66, 1897.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2473.47, 1885.76], [2477.72, 1892.94], [2486.46, 1887.8], [2485.95, 1886.94], [2488.07, 1885.68], [2486.46, 1882.97], [2484.38, 1884.19], [2482.25, 1880.6], [2473.47, 1885.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2462.01, 1877.79], [2466.73, 1885.42], [2469.21, 1883.91], [2469.86, 1884.97], [2482.45, 1877.24], [2477.07, 1868.54], [2462.01, 1877.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2527.36, 1971.4], [2531.27, 1978.07], [2533.1, 1977.0], [2533.44, 1977.57], [2542.06, 1972.54], [2541.68, 1971.89], [2543.98, 1970.55], [2539.94, 1963.65], [2537.35, 1965.15], [2536.97, 1964.52], [2528.63, 1969.39], [2529.19, 1970.34], [2527.36, 1971.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2515.29, 2053.71], [2519.16, 2059.59], [2530.73, 2052.04], [2526.87, 2046.16], [2515.29, 2053.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2526.72, 2069.75], [2528.23, 2068.83], [2528.47, 2069.2], [2536.27, 2064.45], [2531.95, 2057.41], [2522.63, 2063.09], [2526.72, 2069.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2606.38, 2201.44], [2610.8, 2208.47], [2621.22, 2201.96], [2616.8, 2194.94], [2606.38, 2201.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2602.88, 2197.4], [2611.85, 2191.91], [2610.07, 2189.03], [2612.62, 2187.46], [2609.55, 2182.48], [2607.06, 2184.01], [2606.09, 2182.45], [2598.23, 2187.26], [2599.31, 2189.02], [2598.15, 2189.73], [2602.88, 2197.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2603.73, 2167.59], [2586.36, 2178.19], [2592.57, 2188.29], [2609.94, 2177.69], [2603.73, 2167.59]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.068, "pop": 0, "jobs": 68}}, {"shape": {"outer": [[2584.56, 2141.72], [2589.69, 2149.9], [2580.26, 2155.79], [2575.12, 2147.59], [2584.56, 2141.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2558.38, 2123.07], [2554.29, 2116.37], [2567.38, 2108.44], [2568.82, 2110.8], [2570.8, 2109.61], [2573.44, 2113.94], [2558.38, 2123.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2553.51, 2111.69], [2552.82, 2110.57], [2550.56, 2111.97], [2547.41, 2106.88], [2549.73, 2105.46], [2548.98, 2104.24], [2559.95, 2097.49], [2564.55, 2104.91], [2553.51, 2111.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2555.06, 2095.54], [2544.81, 2101.72], [2540.87, 2095.24], [2551.12, 2089.06], [2555.06, 2095.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2557.93, 2075.51], [2560.45, 2079.57], [2564.62, 2076.99], [2562.09, 2072.94], [2557.93, 2075.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2537.78, 2066.72], [2543.01, 2075.25], [2527.65, 2084.62], [2522.42, 2076.08], [2537.78, 2066.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[2506.83, 2095.29], [2505.51, 2096.64], [2507.83, 2098.88], [2501.41, 2105.49], [2495.64, 2099.93], [2503.38, 2091.97], [2506.83, 2095.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2511.7, 2103.15], [2510.48, 2104.33], [2513.03, 2106.97], [2505.17, 2114.56], [2502.94, 2112.26], [2502.56, 2112.63], [2499.36, 2109.35], [2508.84, 2100.21], [2511.7, 2103.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2514.28, 2108.89], [2517.59, 2112.19], [2516.15, 2113.62], [2518.56, 2116.0], [2512.16, 2122.4], [2511.79, 2122.02], [2510.43, 2123.38], [2505.58, 2118.55], [2506.9, 2117.23], [2506.41, 2116.75], [2514.28, 2108.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2519.96, 2118.81], [2523.66, 2122.22], [2522.45, 2123.53], [2524.58, 2125.48], [2518.31, 2132.27], [2517.83, 2131.83], [2516.51, 2133.26], [2511.95, 2129.07], [2513.35, 2127.57], [2512.54, 2126.83], [2519.96, 2118.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2527.9, 2127.95], [2526.73, 2128.67], [2526.37, 2128.1], [2518.26, 2133.11], [2522.19, 2139.44], [2529.91, 2134.68], [2529.59, 2134.17], [2531.16, 2133.2], [2527.9, 2127.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2531.81, 2135.12], [2522.94, 2140.84], [2526.78, 2146.75], [2535.65, 2141.02], [2531.81, 2135.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2538.02, 2145.73], [2531.69, 2149.89], [2535.79, 2156.09], [2542.12, 2151.93], [2538.02, 2145.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2588.5, 2094.69], [2593.34, 2101.71], [2588.7, 2104.89], [2583.86, 2097.87], [2588.5, 2094.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2616.78, 2090.39], [2606.35, 2097.01], [2610.7, 2103.8], [2621.13, 2097.18], [2616.78, 2090.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2599.74, 2087.41], [2603.73, 2093.82], [2613.77, 2087.56], [2609.93, 2081.02], [2599.74, 2087.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2594.5, 2061.06], [2599.55, 2068.8], [2591.05, 2074.31], [2586.0, 2066.56], [2594.5, 2061.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2579.78, 2056.92], [2583.97, 2063.76], [2596.26, 2056.28], [2592.06, 2049.45], [2579.78, 2056.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2577.35, 2030.47], [2581.28, 2036.9], [2571.86, 2042.61], [2567.64, 2035.7], [2574.03, 2031.83], [2574.32, 2032.32], [2577.35, 2030.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2585.3, 2040.18], [2589.31, 2046.93], [2576.03, 2054.79], [2572.0, 2048.03], [2585.3, 2040.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2571.52, 2064.78], [2576.91, 2061.47], [2574.6, 2057.73], [2569.2, 2061.03], [2571.52, 2064.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2572.6, 2019.89], [2571.05, 2020.84], [2570.72, 2020.29], [2562.94, 2025.0], [2566.86, 2031.41], [2576.18, 2025.76], [2572.6, 2019.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2541.12, 2003.98], [2545.92, 2011.72], [2560.16, 2002.96], [2555.73, 1995.81], [2550.45, 1999.06], [2550.08, 1998.46], [2541.12, 2003.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2542.06, 1990.59], [2541.16, 1989.14], [2543.63, 1987.6], [2544.42, 1988.85], [2547.6, 1986.87], [2548.0, 1987.5], [2549.99, 1986.26], [2553.91, 1992.53], [2551.99, 1993.73], [2552.35, 1994.31], [2543.93, 1999.52], [2542.86, 1997.82], [2540.91, 1999.03], [2537.42, 1993.46], [2542.06, 1990.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2544.13, 1975.56], [2548.81, 1982.98], [2535.8, 1991.12], [2530.77, 1983.13], [2540.37, 1977.13], [2540.72, 1977.69], [2544.13, 1975.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2494.25, 1978.13], [2500.58, 1988.38], [2506.2, 1984.93], [2505.86, 1984.4], [2507.36, 1983.48], [2501.36, 1973.78], [2494.25, 1978.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2536.01, 2020.0], [2539.35, 2025.35], [2544.25, 2022.32], [2540.91, 2016.97], [2536.01, 2020.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2530.39, 2008.25], [2537.1, 2004.1], [2532.94, 1997.43], [2526.24, 2001.59], [2530.39, 2008.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2519.52, 2018.09], [2524.12, 2026.17], [2530.84, 2022.35], [2527.48, 2016.46], [2525.73, 2017.44], [2524.49, 2015.27], [2519.52, 2018.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2513.23, 2009.13], [2518.45, 2005.66], [2522.95, 2012.38], [2517.73, 2015.85], [2513.23, 2009.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2499.83, 1992.78], [2502.28, 1996.94], [2508.64, 1993.21], [2506.19, 1989.06], [2499.83, 1992.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2507.82, 1998.05], [2511.77, 2004.76], [2517.07, 2001.67], [2513.12, 1994.95], [2507.82, 1998.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2507.95, 2011.0], [2512.42, 2018.28], [2508.14, 2020.88], [2508.53, 2021.51], [2504.33, 2024.08], [2503.97, 2023.49], [2498.7, 2026.7], [2495.46, 2021.41], [2497.45, 2020.19], [2496.21, 2018.16], [2507.95, 2011.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2488.26, 2010.55], [2491.27, 2015.31], [2492.97, 2014.25], [2494.32, 2016.4], [2506.02, 2009.07], [2501.66, 2002.16], [2488.26, 2010.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2492.26, 1994.06], [2479.82, 2001.42], [2481.65, 2004.5], [2483.6, 2003.34], [2485.68, 2006.83], [2496.17, 2000.62], [2492.26, 1994.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2472.74, 1990.13], [2474.97, 1993.88], [2476.48, 1992.99], [2477.87, 1995.33], [2477.4, 1995.6], [2478.2, 1996.94], [2490.6, 1989.62], [2486.19, 1982.18], [2472.74, 1990.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2372.2, 1878.15], [2370.16, 1879.33], [2369.65, 1878.45], [2329.59, 1901.6], [2340.4, 1920.18], [2344.75, 1917.66], [2346.07, 1919.92], [2353.5, 1915.62], [2352.19, 1913.36], [2355.21, 1911.62], [2356.24, 1913.38], [2359.58, 1911.45], [2358.55, 1909.69], [2364.0, 1906.54], [2366.08, 1910.11], [2364.25, 1911.18], [2366.41, 1914.9], [2368.25, 1913.84], [2369.66, 1916.26], [2367.92, 1917.26], [2369.99, 1920.83], [2371.74, 1919.82], [2374.86, 1925.19], [2373.35, 1926.07], [2375.67, 1930.05], [2377.46, 1929.01], [2382.36, 1937.43], [2380.94, 1938.25], [2385.35, 1945.84], [2387.12, 1944.82], [2389.16, 1948.33], [2400.62, 1941.72], [2399.85, 1940.38], [2406.11, 1936.76], [2389.94, 1908.98], [2387.94, 1910.13], [2386.66, 1907.92], [2388.42, 1906.91], [2384.38, 1899.96], [2382.62, 1900.99], [2381.41, 1898.91], [2383.06, 1897.95], [2379.0, 1890.96], [2377.34, 1891.91], [2376.32, 1890.16], [2378.47, 1888.93], [2372.2, 1878.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 841, "jobs": 0}}, {"shape": {"outer": [[2359.41, 1971.11], [2382.19, 2000.48], [2396.1, 1989.76], [2385.98, 1976.71], [2388.02, 1975.14], [2375.36, 1958.82], [2359.41, 1971.11]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.452, "pop": 0, "jobs": 452}}, {"shape": {"outer": [[-1960.05, -1634.48], [-1957.78, -1634.52], [-1957.83, -1637.73], [-1960.1, -1637.7], [-1960.05, -1634.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[-1966.4, -1650.6], [-1963.92, -1650.64], [-1963.96, -1653.91], [-1966.43, -1653.87], [-1966.4, -1650.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[-1941.5, -1674.08], [-1939.17, -1674.11], [-1939.22, -1677.38], [-1941.53, -1677.35], [-1941.5, -1674.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[-1965.83, -1684.05], [-1959.92, -1684.15], [-1959.99, -1688.42], [-1954.45, -1688.52], [-1954.68, -1701.2], [-1955.68, -1701.18], [-1955.71, -1702.67], [-1964.22, -1702.52], [-1964.14, -1698.03], [-1965.07, -1698.01], [-1964.99, -1693.56], [-1966.0, -1693.54], [-1965.83, -1684.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1980.66, -1693.83], [-1968.83, -1694.08], [-1969.04, -1704.48], [-1972.91, -1704.39], [-1972.96, -1706.71], [-1977.22, -1706.62], [-1977.17, -1704.3], [-1980.88, -1704.23], [-1980.66, -1693.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1981.32, -1693.71], [-1981.53, -1698.92], [-1987.08, -1698.7], [-1986.87, -1693.5], [-1981.32, -1693.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-1992.89, -1693.37], [-1993.06, -1698.71], [-1987.55, -1698.89], [-1987.37, -1693.55], [-1992.89, -1693.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2003.3, -1694.75], [-1993.14, -1695.08], [-1993.55, -1707.11], [-2003.69, -1706.77], [-2003.3, -1694.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2003.04, -1684.64], [-2003.25, -1692.16], [-1995.27, -1692.38], [-1994.99, -1681.76], [-2000.55, -1681.61], [-2000.63, -1684.7], [-2003.04, -1684.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1985.14, -1674.96], [-1978.02, -1675.14], [-1978.15, -1680.26], [-1985.27, -1680.08], [-1985.14, -1674.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2004.25, -1670.87], [-2004.3, -1677.27], [-1993.21, -1677.36], [-1993.16, -1670.96], [-2004.25, -1670.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2001.57, -1660.57], [-2001.59, -1663.45], [-2003.6, -1663.44], [-2003.63, -1669.03], [-1991.08, -1669.11], [-1991.02, -1660.64], [-2001.57, -1660.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2001.35, -1644.68], [-2001.36, -1645.16], [-2003.68, -1645.13], [-2003.79, -1652.26], [-2001.47, -1652.3], [-2001.48, -1652.9], [-1999.9, -1652.92], [-1999.92, -1654.2], [-1996.22, -1654.25], [-1996.2, -1652.98], [-1989.48, -1653.09], [-1989.36, -1644.85], [-2001.35, -1644.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2001.54, -1632.54], [-2001.71, -1641.65], [-1991.84, -1641.84], [-1991.81, -1640.76], [-1985.3, -1640.88], [-1985.17, -1633.74], [-1988.82, -1633.66], [-1988.81, -1633.28], [-1991.32, -1633.23], [-1991.31, -1632.74], [-2001.54, -1632.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1980.86, -1636.28], [-1981.14, -1644.34], [-1972.3, -1644.65], [-1972.02, -1636.59], [-1980.86, -1636.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2001.25, -1621.46], [-2001.27, -1630.16], [-1992.31, -1630.19], [-1992.28, -1619.78], [-1996.21, -1619.77], [-1996.22, -1621.47], [-2001.25, -1621.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2001.94, -1609.06], [-2002.17, -1618.05], [-1989.5, -1618.38], [-1989.27, -1609.39], [-2001.94, -1609.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1981.34, -1609.58], [-1972.81, -1609.77], [-1972.92, -1614.29], [-1969.75, -1614.36], [-1969.94, -1622.64], [-1974.53, -1622.54], [-1974.45, -1618.83], [-1981.55, -1618.67], [-1981.34, -1609.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1965.24, -1616.49], [-1965.55, -1625.36], [-1955.83, -1625.7], [-1955.43, -1614.05], [-1959.29, -1613.92], [-1959.31, -1614.63], [-1962.58, -1614.52], [-1962.65, -1616.59], [-1965.24, -1616.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1950.86, -1635.4], [-1942.28, -1635.59], [-1942.49, -1644.79], [-1951.07, -1644.6], [-1950.86, -1635.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1952.98, -1617.19], [-1953.04, -1626.0], [-1949.45, -1626.03], [-1949.47, -1628.24], [-1944.59, -1628.28], [-1944.5, -1617.25], [-1945.13, -1617.25], [-1945.11, -1614.73], [-1951.33, -1614.69], [-1951.36, -1617.2], [-1952.98, -1617.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1941.0, -1615.41], [-1932.83, -1615.55], [-1933.07, -1628.66], [-1935.05, -1628.63], [-1935.14, -1633.48], [-1941.32, -1633.37], [-1941.0, -1615.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1936.96, -1638.63], [-1930.51, -1638.89], [-1930.76, -1644.99], [-1937.21, -1644.73], [-1936.96, -1638.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1925.57, -1640.65], [-1925.68, -1648.84], [-1911.91, -1649.02], [-1911.79, -1639.53], [-1918.67, -1639.45], [-1918.68, -1640.73], [-1925.57, -1640.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1929.32, -1614.83], [-1918.52, -1615.24], [-1918.97, -1626.99], [-1920.37, -1626.94], [-1920.52, -1630.9], [-1928.16, -1630.61], [-1928.02, -1626.65], [-1929.76, -1626.58], [-1929.32, -1614.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1877.17, -1450.31], [-1885.65, -1450.16], [-1885.84, -1461.52], [-1885.48, -1461.52], [-1885.52, -1464.07], [-1877.91, -1464.2], [-1877.86, -1461.65], [-1877.36, -1461.65], [-1877.17, -1450.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1880.78, -1433.98], [-1874.7, -1434.08], [-1874.87, -1443.66], [-1880.95, -1443.55], [-1880.78, -1433.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1889.47, -1407.53], [-1880.49, -1407.72], [-1880.77, -1421.33], [-1889.76, -1421.14], [-1889.47, -1407.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1889.01, -1375.55], [-1881.11, -1375.74], [-1881.22, -1380.27], [-1880.24, -1380.3], [-1880.32, -1383.56], [-1877.38, -1383.63], [-1877.54, -1390.35], [-1889.36, -1390.07], [-1889.01, -1375.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1375.36, 159.35], [-1374.51, 152.6], [-1365.64, 153.48], [-1366.5, 160.33], [-1375.36, 159.35]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.039, "pop": 0, "jobs": 39}}, {"shape": {"outer": [[-1339.74, 155.69], [-1339.85, 150.3], [-1337.94, 150.12], [-1334.39, 150.08], [-1330.8, 150.44], [-1331.32, 155.98], [-1333.14, 155.84], [-1336.6, 155.69], [-1339.74, 155.69]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.031, "pop": 0, "jobs": 31}}, {"shape": {"outer": [[-1396.41, 150.43], [-1395.79, 150.41], [-1394.41, 150.36], [-1391.1, 150.27], [-1389.88, 149.89], [-1388.78, 148.84], [-1389.1, 141.05], [-1396.8, 141.29], [-1396.41, 150.43]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.044, "pop": 0, "jobs": 44}}, {"shape": {"outer": [[-2597.82, -689.55], [-2598.01, -695.05], [-2592.55, -695.23], [-2592.36, -689.73], [-2597.82, -689.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1516.9, 2609.16], [1550.16, 2607.61], [1550.13, 2607.0], [1579.84, 2605.6], [1579.27, 2593.48], [1581.07, 2593.4], [1580.75, 2586.52], [1578.92, 2586.6], [1577.42, 2554.57], [1579.38, 2554.48], [1579.03, 2546.91], [1570.54, 2547.3], [1570.65, 2549.5], [1553.58, 2550.31], [1555.27, 2586.38], [1549.07, 2586.67], [1549.09, 2587.04], [1535.59, 2587.67], [1535.54, 2586.64], [1532.53, 2574.14], [1532.77, 2574.09], [1530.99, 2566.68], [1524.24, 2568.29], [1524.42, 2569.02], [1515.95, 2571.04], [1516.99, 2575.33], [1513.14, 2576.25], [1516.47, 2590.08], [1516.97, 2600.96], [1516.51, 2600.99], [1516.9, 2609.16]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1623}}, {"shape": {"outer": [[-442.02, 142.98], [-442.75, 142.3], [-445.04, 144.74], [-452.54, 137.78], [-450.83, 135.95], [-451.68, 135.15], [-447.49, 130.67], [-447.06, 131.07], [-442.88, 126.6], [-441.61, 127.78], [-438.38, 124.35], [-437.42, 125.24], [-436.49, 124.26], [-432.63, 127.85], [-433.54, 128.84], [-432.39, 129.91], [-432.75, 130.3], [-431.46, 131.51], [-434.14, 134.37], [-433.61, 134.86], [-437.98, 139.54], [-438.42, 139.13], [-442.02, 142.98]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[2813.06, -2146.98], [2818.32, -2146.65], [2818.79, -2154.01], [2813.54, -2154.35], [2813.34, -2151.34], [2813.06, -2146.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1641.44, 2278.22], [1641.27, 2271.74], [1661.77, 2271.23], [1661.94, 2277.7], [1641.44, 2278.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1636.89, 2298.26], [1636.78, 2287.4], [1661.42, 2287.14], [1661.54, 2298.0], [1636.89, 2298.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[1624.98, 2319.97], [1624.8, 2307.09], [1663.93, 2306.51], [1664.12, 2319.38], [1624.98, 2319.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.404, "pop": 202, "jobs": 0}}, {"shape": {"outer": [[1618.35, 2328.79], [1618.54, 2335.11], [1667.91, 2333.58], [1667.72, 2327.26], [1618.35, 2328.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[1258.26, 751.52], [1256.85, 749.81], [1255.57, 747.74], [1254.98, 746.27], [1254.38, 744.18], [1254.19, 741.81], [1254.32, 739.03], [1254.4, 737.18], [1254.17, 735.05], [1253.31, 733.38], [1251.87, 731.7], [1254.31, 729.68], [1256.96, 727.49], [1258.36, 729.19], [1259.59, 731.17], [1260.36, 733.44], [1260.77, 735.73], [1260.58, 738.22], [1260.45, 739.87], [1260.49, 742.06], [1260.97, 744.27], [1261.78, 745.69], [1263.04, 747.29], [1260.62, 749.43], [1258.26, 751.52]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.039, "pop": 0, "jobs": 39}}, {"shape": {"outer": [[292.91, 53.96], [310.86, 34.41], [291.77, 17.02], [273.82, 36.55], [292.91, 53.96]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.439, "pop": 0, "jobs": 439}}, {"shape": {"outer": [[570.05, 531.43], [512.82, 595.42], [541.94, 621.27], [537.81, 625.89], [549.59, 636.34], [610.94, 567.73], [583.72, 543.56], [570.05, 531.43]], "holes": []}, "height": 48.2, "data": {"type": "residential", "density": 1.0, "pop": 11549, "jobs": 0}}, {"shape": {"outer": [[689.33, 477.2], [702.35, 462.76], [683.41, 445.79], [677.79, 451.98], [683.59, 457.24], [680.22, 460.93], [686.94, 467.01], [682.93, 471.4], [689.33, 477.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.284, "pop": 142, "jobs": 0}}, {"shape": {"outer": [[1540.93, 2834.38], [1548.91, 2830.2], [1547.97, 2828.4], [1551.24, 2826.69], [1552.02, 2828.16], [1560.92, 2823.48], [1564.33, 2829.94], [1594.13, 2886.44], [1600.99, 2899.44], [1598.04, 2900.98], [1599.37, 2903.5], [1600.33, 2927.18], [1591.82, 2931.39], [1574.01, 2897.45], [1540.93, 2834.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 933, "jobs": 0}}, {"shape": {"outer": [[-892.25, -411.36], [-880.86, -423.7], [-925.29, -464.38], [-936.68, -452.04], [-892.25, -411.36]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 708, "jobs": 0}}, {"shape": {"outer": [[2003.39, 1246.52], [2008.75, 1253.09], [2019.85, 1244.1], [2014.49, 1237.53], [2003.39, 1246.52]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.078, "pop": 0, "jobs": 78}}, {"shape": {"outer": [[714.0, 757.22], [704.82, 748.16], [703.59, 749.27], [701.76, 747.89], [698.27, 751.75], [648.24, 707.62], [650.12, 703.98], [649.04, 703.18], [645.45, 700.3], [659.65, 684.52], [658.02, 683.1], [657.07, 682.27], [644.68, 695.88], [638.05, 690.69], [642.03, 685.38], [601.22, 648.7], [595.78, 653.52], [586.55, 645.17], [588.81, 642.59], [583.83, 638.25], [599.03, 621.86], [598.08, 620.45], [605.59, 612.35], [607.24, 613.2], [620.5, 598.66], [619.22, 597.98], [624.09, 591.92], [625.55, 592.78], [630.6, 586.71], [642.23, 596.79], [689.68, 639.02], [684.29, 645.52], [686.31, 647.46], [689.83, 650.85], [691.18, 649.64], [694.03, 652.19], [697.08, 654.91], [697.46, 654.47], [700.51, 657.39], [703.11, 654.36], [708.75, 659.68], [710.27, 658.46], [758.53, 702.86], [740.08, 723.3], [741.34, 724.46], [723.72, 744.0], [719.6, 748.46], [720.91, 749.87], [714.0, 757.22]], "holes": []}, "height": 48.1, "data": {"type": "residential", "density": 1.0, "pop": 29753, "jobs": 0}}, {"shape": {"outer": [[-2194.07, -1805.13], [-2191.89, -1808.74], [-2189.98, -1811.67], [-2188.19, -1810.33], [-2187.02, -1811.89], [-2187.39, -1814.06], [-2184.22, -1815.68], [-2182.81, -1815.72], [-2183.21, -1817.6], [-2181.69, -1818.28], [-2181.15, -1816.75], [-2179.76, -1817.21], [-2177.5, -1811.9], [-2179.24, -1811.28], [-2176.6, -1809.76], [-2176.77, -1809.13], [-2176.92, -1808.62], [-2175.49, -1807.69], [-2179.74, -1801.63], [-2183.52, -1803.97], [-2183.86, -1803.51], [-2186.36, -1800.18], [-2194.07, -1805.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2885.41, 2666.2], [2880.47, 2658.58], [2883.52, 2658.09], [2883.57, 2656.61], [2893.44, 2654.68], [2892.92, 2651.07], [2900.41, 2649.46], [2902.54, 2662.7], [2898.01, 2663.79], [2897.72, 2662.48], [2888.98, 2663.79], [2889.36, 2665.35], [2885.41, 2666.2]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.129, "pop": 0, "jobs": 129}}, {"shape": {"outer": [[2819.87, 2643.24], [2821.35, 2639.24], [2807.73, 2616.89], [2796.51, 2599.9], [2765.97, 2631.93], [2779.75, 2645.96], [2790.5, 2635.18], [2795.51, 2639.98], [2805.89, 2629.3], [2819.87, 2643.24]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.721, "pop": 0, "jobs": 721}}, {"shape": {"outer": [[2864.76, 2772.67], [2871.1, 2753.32], [2888.36, 2758.93], [2882.02, 2778.28], [2864.76, 2772.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.296, "pop": 148, "jobs": 0}}, {"shape": {"outer": [[-1974.62, -1528.65], [-1974.41, -1521.35], [-1964.49, -1521.64], [-1964.7, -1528.93], [-1974.62, -1528.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1870.63, -1448.65], [-1870.75, -1452.4], [-1871.57, -1452.62], [-1871.88, -1463.07], [-1870.76, -1463.11], [-1870.8, -1464.55], [-1862.05, -1464.82], [-1862.0, -1463.3], [-1861.18, -1463.32], [-1860.83, -1452.43], [-1865.01, -1452.3], [-1864.89, -1448.84], [-1870.63, -1448.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-1907.36, -1421.81], [-1900.84, -1421.97], [-1900.79, -1419.93], [-1897.5, -1420.0], [-1897.55, -1421.62], [-1895.15, -1421.68], [-1895.25, -1426.01], [-1892.38, -1426.07], [-1892.52, -1431.88], [-1895.7, -1431.8], [-1895.74, -1433.45], [-1902.49, -1433.28], [-1902.46, -1432.4], [-1903.41, -1432.37], [-1903.33, -1429.19], [-1908.2, -1429.08], [-1908.13, -1426.02], [-1907.45, -1426.04], [-1907.36, -1421.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1751.45, -1029.97], [-1752.06, -1059.1], [-1745.99, -1059.23], [-1746.11, -1064.73], [-1751.69, -1064.61], [-1752.57, -1106.54], [-1720.98, -1107.2], [-1720.59, -1088.74], [-1732.09, -1088.5], [-1731.58, -1063.68], [-1730.15, -1063.72], [-1730.02, -1057.35], [-1731.26, -1056.94], [-1730.94, -1041.32], [-1726.68, -1041.41], [-1726.45, -1030.5], [-1751.45, -1029.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 718, "jobs": 0}}, {"shape": {"outer": [[-1716.33, -1141.56], [-1717.61, -1208.72], [-1718.32, -1208.7], [-1718.45, -1215.35], [-1717.61, -1215.37], [-1717.81, -1224.4], [-1717.41, -1224.4], [-1717.44, -1226.41], [-1716.25, -1226.43], [-1716.26, -1227.0], [-1707.33, -1227.16], [-1703.73, -1227.23], [-1703.73, -1227.64], [-1697.9, -1227.72], [-1697.88, -1226.55], [-1687.96, -1226.67], [-1687.83, -1214.79], [-1698.52, -1214.66], [-1698.49, -1211.49], [-1698.48, -1210.25], [-1697.91, -1160.42], [-1677.78, -1160.65], [-1677.57, -1142.7], [-1696.07, -1142.49], [-1696.04, -1140.75], [-1701.61, -1140.67], [-1701.63, -1141.84], [-1704.45, -1141.78], [-1716.33, -1141.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 848, "jobs": 0}}, {"shape": {"outer": [[-655.29, -945.38], [-611.31, -992.88], [-620.13, -1000.99], [-624.39, -996.39], [-629.31, -1000.91], [-656.26, -971.78], [-686.34, -999.44], [-692.49, -992.79], [-695.86, -995.89], [-702.47, -988.75], [-655.29, -945.38]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 1384, "jobs": 0}}, {"shape": {"outer": [[-854.07, 212.61], [-844.11, 201.69], [-832.39, 212.32], [-826.0, 205.32], [-838.01, 194.44], [-828.22, 183.72], [-807.71, 202.31], [-809.92, 204.74], [-796.12, 217.24], [-804.91, 226.87], [-810.63, 221.69], [-813.47, 224.8], [-807.21, 230.48], [-818.89, 243.28], [-837.01, 226.85], [-834.97, 224.63], [-836.86, 222.92], [-839.51, 225.81], [-854.07, 212.61]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 1333, "jobs": 0}}, {"shape": {"outer": [[-826.53, 180.22], [-816.6, 169.09], [-803.8, 180.44], [-813.72, 191.56], [-826.53, 180.22]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.268, "pop": 134, "jobs": 0}}, {"shape": {"outer": [[-1629.94, -482.39], [-1633.84, -482.22], [-1633.79, -480.96], [-1651.57, -480.2], [-1650.98, -466.51], [-1650.65, -466.52], [-1650.48, -462.75], [-1646.04, -462.94], [-1646.01, -462.17], [-1630.97, -462.83], [-1631.63, -478.2], [-1629.76, -478.29], [-1629.94, -482.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.294, "pop": 147, "jobs": 0}}, {"shape": {"outer": [[664.81, 550.31], [691.85, 576.93], [713.45, 554.1], [716.01, 556.12], [742.53, 527.25], [757.03, 510.96], [731.3, 485.91], [715.99, 503.06], [708.25, 497.05], [693.24, 515.6], [679.18, 527.93], [682.51, 530.96], [664.81, 550.31]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2407}}, {"shape": {"outer": [[702.33, 578.53], [713.99, 589.26], [716.05, 587.04], [723.39, 593.8], [729.23, 587.51], [730.17, 588.38], [749.72, 567.3], [747.59, 565.35], [753.48, 559.0], [756.38, 561.66], [779.65, 536.55], [776.25, 533.42], [778.63, 530.86], [764.82, 518.15], [753.77, 530.06], [752.01, 528.44], [738.98, 542.51], [737.24, 540.91], [702.33, 578.53]], "holes": []}, "height": 28.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 4887}}, {"shape": {"outer": [[-1817.06, -1375.74], [-1816.84, -1391.36], [-1809.34, -1391.26], [-1809.56, -1375.64], [-1817.06, -1375.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1826.23, -1377.47], [-1826.69, -1391.85], [-1818.5, -1392.1], [-1818.04, -1377.72], [-1826.23, -1377.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1798.67, -1392.04], [-1798.8, -1401.37], [-1783.92, -1401.6], [-1783.77, -1392.26], [-1798.67, -1392.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1798.27, -1407.64], [-1798.63, -1415.11], [-1784.83, -1415.79], [-1784.47, -1408.33], [-1798.27, -1407.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1799.36, -1423.01], [-1799.61, -1430.37], [-1787.11, -1430.79], [-1786.86, -1423.43], [-1799.36, -1423.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1798.36, -1437.67], [-1798.84, -1448.61], [-1787.53, -1449.1], [-1787.06, -1438.16], [-1798.36, -1437.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1829.23, -1457.27], [-1829.49, -1466.45], [-1820.68, -1466.7], [-1820.42, -1457.52], [-1829.23, -1457.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1846.47, -1456.83], [-1846.49, -1466.84], [-1834.67, -1466.86], [-1834.67, -1465.06], [-1832.98, -1465.07], [-1832.96, -1458.8], [-1835.14, -1458.8], [-1835.13, -1456.85], [-1846.47, -1456.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1855.51, -1454.23], [-1855.95, -1463.88], [-1848.68, -1464.21], [-1848.23, -1454.56], [-1855.51, -1454.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1842.92, -1435.08], [-1843.4, -1441.92], [-1838.58, -1442.25], [-1838.1, -1435.42], [-1842.92, -1435.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1801.33, -1454.26], [-1801.51, -1463.25], [-1787.27, -1463.54], [-1787.08, -1454.55], [-1801.33, -1454.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1831.84, -1438.0], [-1832.19, -1446.79], [-1823.17, -1447.14], [-1822.83, -1438.36], [-1831.84, -1438.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1863.08, -1441.46], [-1863.47, -1448.02], [-1857.47, -1448.38], [-1857.08, -1441.82], [-1863.08, -1441.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1798.24, -1303.69], [-1798.37, -1317.6], [-1787.99, -1317.7], [-1787.87, -1303.79], [-1798.24, -1303.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-539.52, -397.49], [-500.93, -438.41], [-509.59, -446.45], [-507.65, -448.53], [-516.86, -457.09], [-521.17, -452.5], [-516.75, -448.39], [-529.92, -434.32], [-551.2, -411.58], [-545.88, -406.64], [-546.75, -405.67], [-547.52, -404.81], [-539.52, -397.49]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 934, "jobs": 0}}, {"shape": {"outer": [[-551.08, -408.08], [-554.12, -404.8], [-560.59, -397.83], [-562.65, -397.22], [-564.13, -395.55], [-564.18, -393.7], [-564.12, -391.41], [-563.22, -390.57], [-563.11, -388.44], [-562.1, -370.45], [-560.2, -368.67], [-556.94, -365.6], [-556.34, -363.65], [-555.53, -362.15], [-554.19, -361.21], [-552.98, -360.81], [-551.23, -360.75], [-548.56, -358.79], [-504.65, -319.57], [-502.04, -317.24], [-500.44, -315.81], [-495.89, -320.95], [-493.16, -320.81], [-489.57, -325.37], [-490.02, -327.96], [-489.21, -328.95], [-483.46, -323.5], [-480.72, -326.38], [-481.35, -326.92], [-485.86, -330.72], [-483.88, -332.87], [-483.93, -335.77], [-495.5, -346.07], [-499.55, -341.74], [-533.08, -372.84], [-534.14, -385.74], [-534.32, -387.81], [-537.56, -390.99], [-541.88, -395.25], [-539.52, -397.49], [-547.52, -404.81], [-551.08, -408.08]], "holes": []}, "height": 41.1, "data": {"type": "residential", "density": 1.0, "pop": 5030, "jobs": 0}}, {"shape": {"outer": [[-2492.23, -882.25], [-2503.55, -868.97], [-2494.82, -861.43], [-2483.35, -874.94], [-2492.23, -882.25]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.113, "pop": 0, "jobs": 113}}, {"shape": {"outer": [[-2964.66, -1268.92], [-2962.81, -1267.38], [-2958.67, -1272.3], [-2960.52, -1273.83], [-2959.65, -1274.87], [-2967.78, -1281.64], [-2973.26, -1275.11], [-2965.14, -1268.34], [-2964.66, -1268.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2953.01, -1280.38], [-2945.54, -1289.24], [-2950.0, -1292.97], [-2951.32, -1291.4], [-2952.76, -1292.61], [-2959.23, -1284.92], [-2958.78, -1284.54], [-2960.0, -1283.1], [-2956.2, -1279.9], [-2954.64, -1281.75], [-2953.01, -1280.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2952.77, -1292.96], [-2952.2, -1296.84], [-2958.2, -1297.7], [-2958.77, -1293.82], [-2952.77, -1292.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2977.77, -1280.13], [-2976.66, -1281.38], [-2974.3, -1279.33], [-2969.87, -1284.37], [-2972.81, -1286.94], [-2968.98, -1291.3], [-2973.35, -1295.11], [-2974.45, -1293.85], [-2977.51, -1296.52], [-2985.78, -1287.12], [-2977.77, -1280.13]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2993.42, -1292.94], [-2991.62, -1295.07], [-2991.03, -1294.56], [-2984.4, -1302.4], [-2983.34, -1303.65], [-2986.92, -1306.65], [-2991.49, -1310.49], [-2999.07, -1301.51], [-2998.43, -1300.98], [-3000.33, -1298.73], [-2993.42, -1292.94]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2982.63, -1300.92], [-2977.55, -1306.93], [-2982.9, -1311.41], [-2986.92, -1306.65], [-2983.34, -1303.65], [-2984.4, -1302.4], [-2982.63, -1300.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-3007.06, -1303.82], [-3001.18, -1310.93], [-3005.46, -1314.45], [-3002.7, -1317.79], [-3007.84, -1322.01], [-3016.48, -1311.58], [-3007.06, -1303.82]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-3027.17, -1320.58], [-3019.83, -1314.55], [-3013.49, -1322.21], [-3020.84, -1328.25], [-3027.17, -1320.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-3023.65, -1337.21], [-3016.44, -1345.89], [-3010.62, -1341.1], [-3017.82, -1332.41], [-3023.65, -1337.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-3031.1, -1320.34], [-3022.94, -1329.99], [-3026.55, -1333.02], [-3025.8, -1333.92], [-3027.19, -1335.09], [-3027.99, -1334.14], [-3029.95, -1335.79], [-3038.07, -1326.18], [-3031.1, -1320.34]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-3039.73, -1327.36], [-3031.59, -1337.15], [-3035.52, -1340.38], [-3034.42, -1341.69], [-3036.89, -1343.72], [-3046.11, -1332.61], [-3039.73, -1327.36]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[329.36, 76.2], [328.69, 76.95], [332.72, 80.53], [334.16, 78.92], [337.64, 82.0], [345.12, 73.63], [333.02, 62.89], [330.51, 65.7], [329.2, 64.55], [327.13, 66.87], [328.4, 68.0], [324.73, 72.1], [329.36, 76.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[341.18, 98.1], [331.32, 89.27], [346.13, 72.83], [355.99, 81.65], [341.18, 98.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[398.24, 51.5], [388.06, 42.4], [405.1, 23.48], [415.28, 32.59], [398.24, 51.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[417.73, 31.07], [410.74, 24.83], [410.44, 25.16], [403.09, 18.62], [408.24, 12.87], [409.12, 13.65], [409.65, 13.06], [414.14, 17.07], [413.53, 17.75], [415.65, 19.64], [417.0, 18.14], [420.75, 21.49], [419.86, 22.49], [422.96, 25.25], [417.73, 31.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[427.91, 20.41], [418.73, 12.48], [422.46, 8.2], [431.64, 16.13], [427.91, 20.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[434.22, 16.74], [437.87, 12.55], [432.44, 7.85], [432.84, 7.39], [429.85, 4.8], [425.14, 10.2], [431.77, 15.93], [432.43, 15.18], [434.22, 16.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[440.65, 7.41], [446.31, 1.06], [438.98, -5.42], [437.1, -3.3], [436.11, -4.18], [432.33, 0.06], [440.65, 7.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[458.48, -40.12], [453.4, -44.69], [440.24, -30.2], [443.49, -27.27], [445.47, -29.45], [447.3, -27.81], [458.48, -40.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[437.09, -26.7], [440.24, -30.2], [453.4, -44.69], [448.21, -49.22], [434.17, -33.83], [431.92, -31.32], [437.09, -26.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[448.21, -49.22], [434.84, -61.42], [420.74, -46.06], [434.17, -33.83], [448.21, -49.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.302, "pop": 151, "jobs": 0}}, {"shape": {"outer": [[434.84, -61.42], [429.79, -66.02], [414.65, -49.53], [419.7, -44.93], [420.74, -46.06], [434.84, -61.42]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.098, "pop": 0, "jobs": 98}}, {"shape": {"outer": [[371.24, 57.56], [366.86, 53.56], [360.7, 60.26], [365.08, 64.26], [371.24, 57.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[327.12, 130.06], [334.62, 121.73], [323.2, 111.52], [315.7, 119.85], [327.12, 130.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[315.54, 139.18], [316.16, 138.53], [318.08, 140.33], [323.37, 134.73], [321.49, 132.98], [322.07, 132.37], [312.27, 123.17], [305.79, 130.02], [315.54, 139.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[314.89, 146.2], [307.89, 140.16], [308.74, 139.18], [303.44, 134.61], [297.42, 141.54], [309.72, 152.15], [314.89, 146.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[294.56, 152.51], [295.29, 151.71], [294.23, 150.74], [295.89, 148.93], [292.93, 146.26], [294.76, 144.26], [295.74, 145.14], [296.71, 144.08], [298.9, 146.07], [299.43, 145.48], [308.19, 153.44], [302.47, 159.69], [294.56, 152.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[295.82, 167.33], [280.9, 153.83], [286.48, 147.7], [301.41, 161.18], [300.86, 161.78], [301.93, 162.75], [297.69, 167.42], [296.62, 166.45], [295.82, 167.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[287.03, 162.34], [287.42, 161.9], [283.9, 158.76], [279.19, 164.03], [282.11, 166.63], [281.7, 167.07], [288.66, 173.25], [293.37, 167.98], [287.03, 162.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[270.05, 193.85], [264.0, 188.4], [270.59, 181.15], [270.25, 180.83], [273.49, 177.27], [280.44, 183.55], [276.87, 187.47], [276.31, 186.96], [270.05, 193.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[260.65, 184.91], [267.54, 177.03], [266.04, 175.73], [269.01, 172.33], [264.67, 168.57], [261.81, 171.84], [261.49, 171.56], [254.49, 179.56], [254.9, 179.91], [253.45, 181.58], [258.82, 186.24], [260.28, 184.58], [260.65, 184.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[252.06, 173.36], [258.7, 165.78], [253.8, 161.52], [254.25, 161.0], [251.13, 158.3], [246.54, 163.57], [247.16, 164.11], [244.68, 166.94], [252.06, 173.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[253.67, 156.01], [258.72, 150.42], [247.97, 140.79], [242.92, 146.38], [253.67, 156.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[267.85, 156.19], [270.81, 152.86], [266.51, 149.06], [263.55, 152.38], [267.85, 156.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[276.23, 137.07], [283.39, 129.16], [265.87, 113.43], [258.71, 121.34], [276.23, 137.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[259.23, 147.6], [249.86, 138.73], [256.58, 131.67], [265.97, 140.55], [259.23, 147.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[277.24, 139.59], [272.16, 134.94], [266.8, 140.76], [271.88, 145.41], [277.24, 139.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[269.52, 134.41], [265.56, 130.81], [262.29, 134.39], [266.25, 137.99], [269.52, 134.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[275.13, 107.19], [276.53, 105.62], [275.1, 104.35], [279.44, 99.47], [281.08, 100.92], [294.54, 85.81], [303.85, 94.05], [303.33, 94.61], [285.09, 114.86], [284.6, 115.54], [275.13, 107.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.296, "pop": 148, "jobs": 0}}, {"shape": {"outer": [[285.09, 114.86], [288.29, 117.72], [285.52, 120.8], [285.82, 121.07], [282.78, 124.45], [297.7, 137.8], [318.99, 114.15], [317.03, 112.41], [319.56, 109.6], [319.52, 108.74], [316.53, 105.92], [315.55, 105.93], [314.75, 106.8], [311.55, 103.95], [309.6, 106.12], [303.72, 100.86], [306.67, 97.6], [303.33, 94.61], [285.09, 114.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.511, "pop": 0, "jobs": 511}}, {"shape": {"outer": [[1274.95, 727.39], [1276.29, 725.91], [1274.87, 724.62], [1273.53, 726.11], [1274.95, 727.39]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.002, "pop": 1, "jobs": 0}}, {"shape": {"outer": [[1507.48, 1060.06], [1509.37, 1059.49], [1508.8, 1057.64], [1506.91, 1058.21], [1507.48, 1060.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[421.8, 837.73], [427.41, 831.81], [422.47, 827.16], [422.87, 826.75], [418.91, 823.02], [418.45, 823.49], [415.31, 820.52], [409.75, 826.38], [421.8, 837.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[420.25, 838.38], [408.82, 827.96], [403.26, 834.03], [410.17, 840.34], [409.57, 840.99], [411.85, 843.06], [412.3, 842.57], [414.43, 844.52], [415.05, 843.84], [416.01, 844.72], [420.84, 839.46], [419.99, 838.68], [420.25, 838.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[424.73, 850.99], [428.41, 846.89], [428.83, 847.27], [431.78, 843.98], [431.28, 843.54], [434.15, 840.35], [428.2, 835.04], [418.69, 845.61], [424.73, 850.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[427.41, 856.19], [430.62, 859.07], [433.8, 855.55], [435.22, 856.83], [441.53, 849.86], [435.04, 844.02], [428.86, 850.86], [430.72, 852.53], [427.41, 856.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[444.88, 851.12], [442.46, 853.63], [441.93, 853.11], [434.99, 860.3], [440.26, 865.36], [449.63, 855.68], [444.88, 851.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[445.38, 868.46], [446.36, 867.38], [445.07, 866.21], [446.25, 864.91], [445.2, 863.97], [447.24, 861.73], [446.0, 860.62], [450.94, 855.17], [457.86, 861.41], [449.67, 870.43], [448.27, 869.18], [447.32, 870.22], [445.38, 868.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[454.5, 876.95], [463.24, 866.91], [457.96, 862.34], [447.01, 874.91], [452.21, 879.41], [453.33, 878.13], [452.88, 877.74], [453.96, 876.5], [454.5, 876.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[458.98, 890.16], [474.93, 872.51], [468.96, 867.13], [456.83, 880.55], [458.65, 882.19], [454.82, 886.43], [458.98, 890.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[471.61, 885.48], [473.45, 883.46], [476.24, 885.99], [482.35, 879.31], [475.65, 873.22], [467.69, 881.91], [471.61, 885.48]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.062, "pop": 0, "jobs": 62}}, {"shape": {"outer": [[473.32, 888.76], [475.81, 886.06], [473.46, 883.9], [470.97, 886.61], [473.32, 888.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[484.54, 892.7], [484.17, 892.37], [484.99, 891.48], [481.38, 888.22], [481.08, 888.53], [479.18, 886.82], [478.51, 887.55], [477.77, 886.87], [469.76, 895.7], [476.4, 901.68], [484.54, 892.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[491.83, 896.48], [491.58, 896.08], [493.17, 894.3], [488.38, 890.02], [486.87, 891.71], [486.3, 891.21], [480.25, 897.92], [481.36, 898.93], [478.17, 902.47], [482.17, 906.05], [485.46, 902.38], [486.05, 902.91], [491.83, 896.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[488.46, 917.0], [485.35, 914.15], [488.81, 910.42], [487.18, 908.92], [493.2, 902.41], [494.47, 903.59], [501.18, 896.34], [504.88, 899.75], [498.29, 906.87], [498.86, 907.39], [492.82, 913.91], [492.01, 913.16], [488.46, 917.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[489.51, 917.83], [493.48, 921.5], [496.9, 917.82], [498.11, 918.94], [504.28, 912.29], [499.11, 907.51], [489.51, 917.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[504.29, 930.53], [500.62, 927.2], [503.54, 923.99], [502.45, 923.0], [509.79, 914.95], [514.57, 919.27], [504.29, 930.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[511.34, 934.83], [507.42, 931.28], [510.29, 928.14], [510.76, 928.57], [516.36, 922.44], [521.17, 926.81], [515.18, 933.38], [513.8, 932.14], [511.34, 934.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[512.46, 936.2], [510.65, 934.56], [508.35, 937.11], [510.16, 938.74], [512.46, 936.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[524.79, 968.57], [509.59, 954.9], [532.95, 929.12], [548.15, 942.79], [524.79, 968.57]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.455, "pop": 0, "jobs": 455}}, {"shape": {"outer": [[524.48, 937.79], [523.01, 936.45], [520.43, 939.24], [517.12, 936.21], [525.0, 927.66], [529.79, 932.05], [524.48, 937.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[464.98, 928.53], [469.66, 923.42], [462.54, 916.95], [457.85, 922.07], [464.98, 928.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[464.06, 898.72], [456.58, 906.6], [452.52, 902.78], [460.0, 894.9], [464.06, 898.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[438.83, 896.58], [432.89, 891.3], [427.84, 896.93], [433.77, 902.21], [438.83, 896.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[429.0, 885.7], [425.74, 882.73], [421.29, 887.57], [424.55, 890.55], [429.0, 885.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[424.98, 882.83], [420.04, 878.26], [415.57, 883.03], [420.51, 887.61], [424.98, 882.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[422.95, 879.95], [418.07, 875.82], [422.24, 870.95], [427.11, 875.08], [422.95, 879.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[401.34, 858.58], [402.75, 857.0], [404.6, 858.63], [408.3, 854.51], [405.3, 851.85], [406.99, 849.95], [397.25, 841.32], [390.45, 848.92], [401.34, 858.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[383.09, 854.38], [383.98, 855.2], [383.71, 855.48], [390.41, 861.62], [391.72, 860.19], [395.24, 863.41], [398.34, 860.05], [394.84, 856.84], [395.27, 856.39], [388.63, 850.32], [388.25, 850.73], [387.27, 849.83], [383.09, 854.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[369.95, 870.47], [371.21, 871.63], [375.57, 866.89], [379.43, 870.43], [369.19, 881.55], [364.06, 876.86], [369.95, 870.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[383.39, 897.65], [393.5, 886.86], [386.95, 880.78], [376.84, 891.57], [383.39, 897.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[391.64, 905.36], [396.54, 909.92], [401.78, 904.33], [401.24, 903.82], [406.07, 898.67], [401.72, 894.62], [391.64, 905.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[392.79, 903.49], [387.14, 898.32], [391.25, 893.85], [390.75, 893.38], [393.6, 890.29], [394.14, 890.79], [398.01, 886.59], [403.63, 891.72], [392.79, 903.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[407.67, 916.84], [418.0, 905.48], [410.99, 899.14], [400.65, 910.51], [407.67, 916.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[408.39, 917.39], [419.41, 904.96], [425.77, 910.57], [414.75, 923.0], [408.39, 917.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[428.87, 920.99], [425.55, 924.55], [427.08, 925.96], [423.32, 930.0], [415.93, 923.17], [419.56, 919.27], [420.5, 920.15], [423.96, 916.45], [428.87, 920.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[455.01, 938.66], [443.62, 951.03], [437.46, 945.41], [448.85, 933.04], [455.01, 938.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[457.2, 938.51], [463.25, 943.92], [450.91, 957.63], [444.86, 952.22], [457.2, 938.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[453.8, 956.69], [457.27, 952.75], [458.94, 954.2], [461.45, 951.34], [465.8, 955.13], [459.67, 962.13], [457.49, 960.22], [456.64, 961.18], [455.03, 959.78], [456.03, 958.64], [453.8, 956.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[461.68, 963.56], [468.57, 956.0], [475.06, 961.88], [468.18, 969.44], [461.68, 963.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[474.72, 976.69], [474.16, 976.18], [473.37, 977.03], [468.0, 972.08], [469.08, 970.92], [468.5, 970.38], [479.29, 958.77], [483.68, 962.82], [479.58, 967.24], [481.69, 969.19], [474.72, 976.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[467.1, 920.57], [470.28, 923.46], [474.14, 919.23], [470.96, 916.34], [467.1, 920.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[477.89, 940.28], [482.78, 935.25], [478.08, 930.72], [473.19, 935.75], [477.89, 940.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[485.14, 937.14], [490.68, 930.66], [498.42, 937.23], [492.89, 943.71], [485.14, 937.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[497.58, 938.95], [504.6, 945.19], [500.43, 949.83], [493.42, 943.6], [497.58, 938.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[477.33, 977.14], [478.65, 978.36], [478.03, 979.03], [483.1, 983.69], [491.58, 974.52], [491.01, 973.99], [492.04, 972.87], [487.24, 968.46], [486.87, 968.87], [485.85, 967.93], [477.33, 977.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[489.35, 989.19], [492.71, 985.52], [493.71, 986.43], [497.67, 982.09], [490.87, 975.91], [483.54, 983.92], [489.35, 989.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[496.26, 998.12], [497.6, 996.62], [498.03, 997.01], [500.54, 994.2], [500.88, 994.5], [508.77, 985.7], [501.99, 979.66], [491.68, 991.15], [492.34, 991.73], [490.89, 993.34], [496.26, 998.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[514.51, 974.05], [512.77, 972.48], [509.75, 975.83], [503.56, 970.29], [506.62, 966.89], [506.15, 966.46], [508.31, 964.07], [510.04, 965.63], [511.59, 963.92], [518.26, 969.9], [514.51, 974.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[273.68, 700.49], [278.79, 694.9], [266.33, 683.6], [261.22, 689.19], [263.15, 690.94], [273.68, 700.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[294.18, 772.31], [289.1, 767.72], [292.9, 763.56], [297.97, 768.14], [294.18, 772.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[819.06, 887.82], [820.21, 887.41], [828.32, 878.66], [829.46, 879.61], [831.51, 877.51], [745.61, 801.2], [743.55, 799.45], [742.34, 797.67], [742.12, 795.74], [741.92, 793.26], [740.54, 769.69], [741.99, 765.73], [759.69, 746.38], [763.37, 746.01], [786.19, 745.02], [787.77, 745.15], [787.41, 740.25], [785.9, 740.26], [785.79, 736.01], [756.36, 737.74], [733.5, 763.74], [734.91, 793.63], [732.82, 793.64], [733.2, 809.91], [819.06, 887.82]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1665}}, {"shape": {"outer": [[873.04, 803.53], [875.26, 801.1], [871.99, 798.11], [869.76, 800.54], [873.04, 803.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[880.2, 810.85], [882.84, 808.06], [877.72, 803.24], [875.08, 806.03], [880.2, 810.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[993.88, 746.78], [1006.88, 732.54], [991.01, 718.14], [991.56, 717.55], [986.46, 712.92], [985.88, 713.55], [969.89, 699.03], [956.9, 713.24], [993.88, 746.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.774, "pop": 387, "jobs": 0}}, {"shape": {"outer": [[469.33, 785.44], [470.72, 783.93], [471.76, 784.88], [473.57, 782.92], [472.6, 782.03], [474.2, 780.27], [464.59, 771.48], [459.78, 776.72], [469.33, 785.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[481.28, 754.33], [488.55, 761.2], [493.99, 755.49], [485.25, 747.22], [481.66, 751.01], [483.13, 752.4], [481.28, 754.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[498.03, 762.27], [502.8, 766.68], [498.59, 771.19], [493.83, 766.78], [498.03, 762.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[491.66, 764.19], [494.28, 761.39], [496.55, 763.51], [493.93, 766.3], [491.66, 764.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[475.38, 797.15], [470.61, 792.65], [473.55, 789.56], [478.32, 794.05], [475.38, 797.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[477.17, 785.14], [480.13, 781.84], [484.97, 786.17], [482.01, 789.46], [477.17, 785.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[518.59, 783.09], [520.09, 781.49], [514.34, 776.13], [503.67, 787.5], [509.0, 792.47], [510.75, 790.6], [511.92, 791.69], [519.33, 783.78], [518.59, 783.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[514.33, 792.97], [520.9, 798.86], [527.96, 791.06], [521.39, 785.17], [514.33, 792.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[472.72, 837.5], [467.18, 832.23], [470.34, 828.93], [469.78, 828.4], [477.69, 820.14], [483.79, 825.93], [472.72, 837.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[489.56, 857.05], [494.54, 851.59], [494.38, 849.7], [495.8, 848.13], [496.25, 848.54], [499.51, 844.97], [498.39, 843.97], [500.12, 842.08], [492.49, 835.16], [490.91, 836.89], [480.23, 848.6], [489.56, 857.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[496.36, 864.62], [490.53, 859.48], [497.8, 851.31], [498.25, 851.71], [505.83, 843.22], [510.84, 847.64], [503.32, 856.09], [503.68, 856.4], [496.36, 864.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[496.42, 865.0], [501.94, 869.99], [512.81, 858.06], [511.71, 857.06], [512.52, 856.16], [510.98, 854.76], [513.88, 851.58], [511.26, 849.21], [497.18, 864.67], [496.92, 864.44], [496.42, 865.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[510.5, 878.28], [503.01, 871.43], [516.8, 856.47], [524.29, 863.33], [510.5, 878.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[520.36, 882.53], [521.27, 881.53], [521.65, 881.88], [530.6, 872.13], [524.31, 866.41], [521.65, 869.31], [521.24, 868.93], [517.5, 873.0], [517.97, 873.44], [514.51, 877.21], [520.36, 882.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[526.88, 889.31], [528.23, 887.87], [528.66, 888.28], [535.15, 881.37], [534.48, 880.76], [537.39, 877.66], [533.75, 874.27], [531.31, 876.85], [530.39, 875.98], [529.71, 876.72], [528.94, 876.0], [525.87, 879.27], [526.64, 879.99], [523.27, 883.59], [523.61, 883.9], [522.43, 885.16], [526.88, 889.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[529.93, 891.88], [534.89, 896.4], [544.51, 885.89], [543.9, 885.34], [544.94, 884.19], [541.52, 881.07], [537.94, 884.98], [537.01, 884.14], [529.93, 891.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[539.38, 903.87], [549.75, 892.5], [543.99, 887.28], [533.62, 898.66], [539.38, 903.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[547.15, 907.61], [548.16, 906.47], [548.47, 906.75], [551.25, 903.64], [552.14, 904.43], [554.16, 902.16], [554.65, 902.59], [557.25, 899.69], [556.54, 899.06], [557.22, 898.3], [552.68, 894.27], [550.39, 896.84], [549.53, 896.36], [543.92, 902.67], [544.17, 902.89], [543.14, 904.05], [547.15, 907.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[548.51, 912.43], [562.46, 924.86], [563.37, 925.14], [564.17, 924.99], [574.23, 914.13], [563.28, 904.08], [559.45, 900.61], [559.26, 900.44], [548.51, 912.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.258, "pop": 129, "jobs": 0}}, {"shape": {"outer": [[563.28, 904.08], [571.01, 895.47], [567.15, 892.04], [559.45, 900.61], [563.28, 904.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[570.77, 894.55], [573.03, 891.98], [569.4, 888.82], [567.14, 891.38], [570.77, 894.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[574.47, 893.93], [573.41, 892.99], [575.91, 890.17], [577.21, 891.32], [580.21, 887.92], [588.84, 895.52], [583.08, 902.03], [574.28, 894.29], [574.47, 893.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[579.64, 885.75], [582.9, 881.97], [584.56, 883.37], [587.02, 880.51], [594.4, 886.8], [588.67, 893.46], [579.64, 885.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[588.29, 879.05], [594.05, 872.55], [603.72, 881.05], [597.96, 887.55], [588.29, 879.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[595.84, 870.06], [597.36, 868.32], [593.36, 864.86], [598.71, 858.68], [606.33, 865.23], [608.03, 863.27], [612.5, 867.11], [606.67, 873.83], [608.03, 875.01], [605.81, 877.58], [604.37, 876.34], [603.84, 876.95], [595.84, 870.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[599.62, 855.11], [595.51, 851.47], [596.4, 850.48], [594.49, 848.79], [593.72, 849.66], [593.27, 849.26], [584.81, 858.76], [591.26, 864.48], [599.62, 855.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[582.84, 858.05], [593.27, 846.59], [586.66, 840.61], [576.23, 852.07], [582.84, 858.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[577.73, 834.39], [576.71, 833.46], [578.1, 831.94], [572.84, 827.16], [571.39, 828.74], [570.74, 828.15], [563.84, 835.68], [566.5, 838.09], [565.8, 838.86], [568.39, 841.21], [569.11, 840.42], [570.81, 841.96], [577.73, 834.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[575.55, 851.61], [586.44, 839.65], [581.08, 834.8], [579.53, 836.5], [578.82, 835.87], [570.77, 844.7], [572.66, 846.39], [571.36, 847.82], [575.55, 851.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[554.58, 832.14], [560.65, 837.58], [571.01, 826.11], [566.58, 822.14], [565.81, 823.0], [564.17, 821.52], [554.58, 832.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[533.74, 811.14], [538.43, 815.57], [546.78, 806.82], [546.35, 806.42], [547.45, 805.28], [543.29, 801.33], [542.06, 802.61], [541.73, 802.3], [539.12, 805.05], [538.47, 804.43], [535.33, 807.72], [536.2, 808.55], [533.74, 811.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[530.2, 809.6], [531.38, 808.32], [532.22, 809.09], [538.53, 802.21], [537.72, 801.48], [540.22, 798.75], [535.48, 794.44], [526.59, 804.11], [528.41, 805.76], [527.3, 806.96], [530.2, 809.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[492.35, 806.46], [497.25, 810.83], [506.77, 800.23], [501.87, 795.87], [492.35, 806.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[502.65, 805.4], [508.28, 810.47], [503.48, 815.76], [497.86, 810.71], [502.65, 805.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[512.01, 814.32], [518.78, 820.62], [514.47, 825.24], [507.68, 818.94], [512.01, 814.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[558.16, 857.93], [562.89, 862.14], [558.92, 866.57], [554.18, 862.37], [558.16, 857.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[557.24, 855.94], [554.04, 852.92], [549.45, 857.73], [552.65, 860.75], [557.24, 855.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[566.98, 864.81], [572.13, 869.68], [567.82, 874.2], [562.67, 869.32], [566.98, 864.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[582.38, 874.64], [587.06, 869.17], [581.05, 864.06], [576.37, 869.52], [582.38, 874.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[580.31, 873.51], [575.29, 869.11], [569.66, 875.48], [574.69, 879.89], [580.31, 873.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-3154.14, -1094.22], [-3153.06, -1095.52], [-3154.39, -1096.61], [-3150.91, -1100.77], [-3149.61, -1099.69], [-3148.17, -1101.42], [-3140.34, -1094.91], [-3142.75, -1092.03], [-3141.34, -1090.84], [-3144.45, -1087.14], [-3146.12, -1088.54], [-3146.61, -1087.96], [-3154.14, -1094.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-3165.11, -1088.61], [-3161.91, -1092.46], [-3159.24, -1090.25], [-3157.3, -1092.58], [-3147.24, -1084.27], [-3152.38, -1078.1], [-3165.11, -1088.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[440.21, 1031.98], [447.61, 1023.93], [459.43, 1034.72], [452.03, 1042.78], [440.21, 1031.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[471.59, 1013.28], [471.85, 1013.53], [473.62, 1011.61], [477.54, 1015.18], [476.0, 1016.86], [476.67, 1017.46], [476.79, 1019.09], [475.75, 1020.16], [475.08, 1020.18], [474.87, 1020.4], [475.1, 1020.62], [474.3, 1021.49], [474.7, 1021.85], [471.26, 1025.61], [470.58, 1024.99], [468.03, 1027.79], [467.57, 1027.38], [466.99, 1028.02], [462.57, 1024.0], [463.27, 1023.24], [462.83, 1022.85], [471.59, 1013.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[464.16, 1020.85], [471.6, 1012.66], [471.09, 1012.19], [472.64, 1010.49], [466.64, 1005.08], [465.1, 1006.78], [464.59, 1006.32], [457.06, 1014.62], [458.97, 1016.34], [458.48, 1016.88], [462.85, 1020.82], [463.42, 1020.19], [464.16, 1020.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[455.38, 1014.97], [464.53, 1005.21], [457.55, 998.71], [448.4, 1008.46], [455.38, 1014.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[445.46, 1006.54], [449.15, 1002.38], [450.88, 1003.91], [456.79, 997.26], [450.45, 991.66], [448.45, 993.9], [448.15, 993.64], [444.12, 998.17], [444.95, 998.9], [442.06, 1002.14], [441.76, 1001.87], [441.06, 1002.66], [445.46, 1006.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[434.22, 1004.2], [448.26, 988.79], [439.71, 981.07], [425.67, 996.46], [434.22, 1004.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[427.44, 986.23], [435.48, 977.41], [428.31, 970.91], [420.26, 979.73], [427.44, 986.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[394.19, 1009.05], [400.33, 1002.68], [386.95, 989.85], [380.8, 996.22], [394.19, 1009.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[404.29, 1017.56], [411.34, 1009.67], [420.52, 1017.8], [413.46, 1025.7], [404.29, 1017.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[400.68, 1030.73], [407.8, 1023.05], [402.18, 1017.86], [395.05, 1025.55], [400.68, 1030.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[387.6, 1034.04], [394.58, 1026.46], [405.46, 1036.41], [398.49, 1043.99], [387.6, 1034.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[447.77, 1016.97], [450.6, 1013.87], [445.68, 1009.39], [442.84, 1012.5], [447.77, 1016.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[430.7, 1023.83], [441.38, 1012.1], [436.14, 1007.38], [425.47, 1019.11], [430.7, 1023.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[585.56, 946.24], [578.4, 939.99], [592.03, 924.51], [599.19, 930.75], [585.56, 946.24]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.125, "pop": 0, "jobs": 125}}, {"shape": {"outer": [[593.47, 940.36], [595.56, 938.01], [595.13, 937.63], [596.82, 935.72], [596.48, 935.42], [600.16, 931.25], [600.51, 931.55], [602.19, 929.63], [607.85, 934.55], [598.73, 944.96], [598.18, 944.47], [597.74, 944.96], [596.03, 943.45], [596.44, 942.99], [593.47, 940.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[601.0, 954.2], [602.18, 952.94], [602.42, 953.17], [607.65, 947.62], [608.3, 948.22], [613.7, 942.5], [612.81, 941.66], [613.34, 941.1], [611.49, 939.36], [611.04, 939.84], [609.47, 938.37], [604.27, 943.89], [603.78, 943.43], [598.26, 949.28], [598.5, 949.51], [597.33, 950.76], [601.0, 954.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[618.87, 938.98], [622.31, 935.28], [620.14, 933.27], [620.95, 932.39], [618.02, 929.69], [613.77, 934.27], [618.87, 938.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[612.32, 947.8], [619.66, 954.56], [629.73, 943.71], [622.38, 936.95], [612.32, 947.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[616.19, 965.54], [618.46, 967.67], [619.53, 966.54], [619.78, 966.78], [628.9, 957.14], [622.93, 951.53], [616.73, 958.08], [617.49, 958.79], [614.41, 962.03], [617.1, 964.57], [616.19, 965.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[620.24, 970.08], [623.62, 973.17], [623.86, 972.92], [627.08, 975.87], [632.75, 969.72], [629.45, 966.71], [630.11, 965.99], [626.81, 962.97], [620.24, 970.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[627.64, 976.66], [628.9, 975.29], [628.4, 974.84], [635.44, 967.21], [641.65, 972.91], [634.68, 980.45], [634.2, 980.01], [632.87, 981.46], [627.64, 976.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[639.89, 987.66], [644.18, 983.07], [644.51, 983.37], [648.12, 979.5], [643.66, 975.36], [640.5, 978.73], [638.77, 977.12], [634.02, 982.2], [639.89, 987.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[643.94, 990.26], [648.6, 994.43], [649.48, 993.46], [650.24, 994.15], [652.87, 991.23], [653.23, 991.56], [656.89, 987.51], [656.6, 987.24], [661.27, 982.1], [655.22, 976.66], [650.48, 981.89], [650.08, 981.53], [646.7, 985.27], [647.12, 985.65], [644.27, 988.8], [644.81, 989.29], [643.94, 990.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[652.64, 995.89], [658.44, 1001.23], [665.67, 993.42], [665.01, 992.82], [667.97, 989.62], [667.03, 988.75], [667.65, 988.08], [666.84, 987.32], [666.16, 988.06], [663.67, 985.77], [662.0, 987.57], [661.11, 986.75], [652.64, 995.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[675.4, 995.29], [668.36, 1003.45], [667.76, 1002.93], [664.56, 1006.64], [663.89, 1006.07], [662.98, 1007.11], [659.06, 1003.76], [660.0, 1002.66], [659.38, 1002.14], [662.21, 998.84], [661.71, 998.41], [665.17, 994.41], [667.55, 996.46], [671.46, 991.92], [675.4, 995.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[674.5, 1001.66], [675.03, 1002.13], [679.05, 997.52], [682.77, 1000.75], [678.55, 1005.58], [680.09, 1006.92], [673.63, 1014.33], [667.83, 1009.3], [674.5, 1001.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[681.51, 1007.77], [682.83, 1006.34], [686.51, 1009.69], [685.18, 1011.13], [687.34, 1013.1], [678.48, 1022.78], [672.21, 1017.08], [681.09, 1007.38], [681.51, 1007.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[680.87, 1024.91], [681.85, 1025.78], [681.81, 1026.48], [683.11, 1027.65], [683.84, 1027.48], [684.36, 1027.95], [683.95, 1028.42], [686.13, 1030.37], [686.52, 1029.92], [686.99, 1030.33], [695.28, 1021.14], [694.46, 1020.4], [695.95, 1018.74], [692.55, 1015.7], [692.28, 1016.0], [691.34, 1015.16], [691.52, 1014.96], [689.89, 1013.5], [686.96, 1016.75], [687.66, 1017.37], [680.87, 1024.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[687.25, 1030.9], [687.61, 1031.23], [686.18, 1032.78], [691.09, 1037.28], [692.44, 1035.82], [692.96, 1036.3], [695.81, 1033.23], [696.58, 1033.94], [700.79, 1029.39], [700.41, 1029.04], [703.66, 1025.54], [703.06, 1024.98], [704.37, 1023.59], [701.19, 1020.66], [699.83, 1022.12], [699.6, 1021.91], [699.62, 1021.59], [697.16, 1019.34], [689.59, 1027.57], [689.99, 1027.92], [687.25, 1030.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[692.76, 1039.86], [699.64, 1046.03], [712.08, 1032.84], [705.03, 1026.64], [692.76, 1039.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[702.42, 1043.74], [706.71, 1047.68], [708.66, 1045.55], [709.69, 1046.5], [715.58, 1040.12], [710.26, 1035.25], [702.42, 1043.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[709.09, 1051.88], [719.11, 1040.93], [724.33, 1045.69], [721.84, 1048.4], [722.89, 1049.35], [717.1, 1055.67], [713.59, 1055.97], [709.09, 1051.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[733.4, 1034.78], [738.1, 1029.69], [729.08, 1021.41], [724.37, 1026.5], [733.4, 1034.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[739.4, 1028.11], [744.45, 1022.46], [738.07, 1016.81], [737.72, 1017.2], [735.27, 1015.02], [730.93, 1019.88], [733.3, 1021.97], [732.93, 1022.38], [739.4, 1028.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[738.2, 1015.31], [738.46, 1014.95], [737.14, 1013.75], [740.24, 1010.44], [741.55, 1011.63], [743.87, 1009.06], [752.1, 1016.67], [746.74, 1022.78], [738.2, 1015.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[745.01, 1007.87], [745.3, 1007.56], [743.77, 1006.19], [747.01, 1002.63], [748.5, 1003.98], [750.57, 1001.7], [757.19, 1007.66], [756.99, 1007.89], [758.69, 1009.43], [753.57, 1015.07], [751.88, 1013.55], [751.62, 1013.84], [745.01, 1007.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[747.71, 995.83], [748.57, 994.89], [748.19, 994.54], [750.73, 991.72], [751.1, 992.06], [753.62, 989.25], [767.18, 1001.42], [761.25, 1007.99], [747.71, 995.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[738.72, 1001.01], [739.76, 999.88], [740.62, 1000.67], [748.29, 992.29], [746.84, 990.97], [748.13, 989.56], [745.47, 987.14], [744.31, 988.4], [742.98, 987.2], [734.15, 996.84], [738.72, 1001.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[728.87, 993.87], [733.03, 989.24], [733.31, 989.48], [738.34, 983.88], [737.76, 983.37], [739.06, 981.92], [735.49, 978.73], [734.45, 979.88], [733.54, 979.06], [727.81, 985.43], [728.39, 985.93], [724.65, 990.1], [728.87, 993.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[722.62, 987.36], [731.66, 977.58], [726.69, 973.01], [717.65, 982.79], [722.62, 987.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[715.45, 982.96], [725.68, 972.24], [720.41, 967.24], [713.13, 974.88], [714.35, 976.04], [711.41, 979.13], [715.45, 982.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[708.37, 974.21], [714.75, 967.21], [712.93, 965.56], [715.36, 962.92], [711.24, 959.18], [704.67, 966.36], [705.09, 966.75], [703.99, 967.96], [706.17, 969.95], [705.04, 971.19], [708.37, 974.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[702.66, 967.88], [709.92, 960.03], [708.27, 958.52], [710.45, 956.15], [706.09, 952.14], [704.95, 953.37], [704.75, 953.19], [696.45, 962.17], [702.66, 967.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[694.57, 961.09], [697.88, 957.37], [697.12, 956.7], [703.62, 949.36], [699.18, 945.45], [687.73, 958.38], [690.71, 960.99], [692.35, 959.14], [694.57, 961.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[684.28, 954.64], [685.19, 953.63], [686.11, 954.45], [690.05, 950.05], [688.86, 948.98], [695.2, 941.93], [690.33, 937.58], [683.25, 945.46], [683.51, 945.7], [680.28, 949.29], [680.54, 949.53], [679.66, 950.52], [684.28, 954.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[683.84, 933.84], [676.18, 926.91], [670.54, 933.09], [669.83, 932.45], [668.92, 933.44], [669.69, 934.15], [661.22, 943.43], [666.55, 948.26], [667.22, 947.52], [669.49, 949.58], [683.84, 933.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[662.88, 935.14], [673.12, 923.82], [660.74, 912.69], [650.49, 924.01], [662.88, 935.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[651.65, 903.48], [641.15, 914.96], [640.42, 914.29], [639.74, 915.03], [637.86, 913.33], [638.48, 912.66], [634.26, 908.83], [644.76, 897.35], [645.53, 898.05], [647.33, 896.09], [650.77, 899.21], [649.03, 901.11], [651.65, 903.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[628.75, 903.82], [633.99, 897.9], [631.08, 895.34], [633.65, 892.42], [630.66, 889.78], [628.03, 892.76], [626.85, 891.71], [626.61, 891.99], [624.9, 890.5], [621.64, 894.19], [623.24, 895.6], [621.56, 897.51], [628.75, 903.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[620.33, 921.87], [620.59, 921.59], [621.59, 922.47], [626.29, 917.18], [625.18, 916.2], [625.41, 915.93], [617.34, 908.79], [616.69, 909.16], [611.65, 904.72], [606.91, 910.07], [620.33, 921.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[612.95, 928.84], [619.37, 921.79], [608.03, 911.55], [607.77, 911.83], [606.59, 910.76], [601.14, 916.75], [602.47, 917.94], [602.27, 918.18], [605.28, 920.91], [604.79, 921.46], [612.95, 928.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[621.96, 923.17], [627.82, 916.51], [632.69, 920.78], [626.83, 927.43], [621.96, 923.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[673.64, 968.9], [678.57, 963.74], [673.21, 958.64], [668.28, 963.81], [673.64, 968.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[669.92, 979.29], [674.49, 983.52], [680.29, 977.33], [675.72, 973.08], [669.92, 979.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[682.67, 989.54], [687.44, 984.16], [681.12, 978.59], [676.34, 983.96], [682.67, 989.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[684.52, 989.09], [689.11, 993.14], [693.3, 988.4], [688.71, 984.37], [684.52, 989.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[691.59, 975.92], [695.22, 976.49], [696.05, 971.21], [692.42, 970.65], [691.59, 975.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[692.96, 986.31], [696.99, 981.83], [700.23, 984.71], [696.2, 989.2], [692.96, 986.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[705.37, 997.4], [711.5, 1002.82], [717.29, 996.33], [711.16, 990.91], [705.37, 997.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[650.19, 863.82], [654.94, 868.19], [655.24, 867.86], [657.94, 870.35], [659.14, 869.05], [659.58, 869.46], [664.92, 863.7], [661.0, 860.09], [660.44, 860.7], [656.48, 857.04], [650.19, 863.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[666.93, 862.59], [669.92, 859.18], [674.76, 863.38], [671.78, 866.8], [666.93, 862.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[659.39, 852.73], [668.06, 860.69], [673.55, 854.77], [669.38, 850.95], [668.57, 851.83], [665.25, 848.78], [663.46, 848.34], [659.39, 852.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[684.42, 847.39], [681.84, 845.22], [682.15, 844.85], [676.49, 840.08], [674.28, 842.69], [671.99, 840.76], [668.48, 844.89], [676.26, 851.44], [678.14, 849.24], [680.41, 851.15], [681.57, 849.79], [682.04, 850.19], [684.42, 847.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[688.54, 847.22], [693.37, 841.76], [687.8, 836.87], [682.98, 842.32], [688.54, 847.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[692.35, 836.1], [695.35, 832.7], [694.52, 831.98], [696.91, 829.26], [692.64, 825.52], [691.99, 826.25], [687.81, 822.6], [684.84, 825.97], [685.61, 826.65], [684.12, 828.35], [687.3, 831.13], [687.03, 831.44], [692.35, 836.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[698.56, 828.74], [709.56, 817.02], [707.22, 814.85], [707.56, 814.48], [705.22, 812.3], [704.75, 812.8], [701.8, 810.04], [693.56, 818.8], [694.21, 819.4], [691.57, 822.22], [698.56, 828.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[714.77, 831.18], [713.42, 829.99], [716.12, 826.95], [712.15, 823.44], [704.38, 832.18], [706.22, 833.8], [705.74, 834.35], [706.71, 835.21], [705.94, 836.07], [708.58, 838.4], [710.02, 836.78], [709.88, 836.68], [714.77, 831.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[732.95, 841.71], [726.81, 848.32], [720.98, 842.95], [726.95, 836.54], [727.27, 836.84], [728.87, 835.13], [734.06, 839.93], [732.66, 841.44], [732.95, 841.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[742.52, 847.01], [736.47, 841.6], [728.57, 850.37], [734.61, 855.79], [742.52, 847.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[740.06, 864.21], [747.74, 855.56], [741.97, 850.48], [734.3, 859.13], [740.06, 864.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[750.38, 857.55], [750.78, 857.9], [752.27, 856.27], [756.75, 860.3], [755.23, 861.98], [755.61, 862.31], [749.57, 868.97], [748.86, 868.34], [747.15, 870.23], [743.36, 866.83], [745.16, 864.83], [744.41, 864.15], [750.38, 857.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[765.06, 868.12], [758.77, 862.29], [748.36, 873.43], [752.1, 876.91], [752.86, 876.09], [755.41, 878.46], [765.06, 868.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[754.72, 882.57], [758.42, 878.56], [758.89, 879.0], [765.76, 871.56], [766.41, 872.14], [767.7, 870.74], [771.7, 874.41], [770.4, 875.81], [770.98, 876.34], [763.4, 884.55], [762.06, 883.33], [761.77, 883.64], [760.76, 882.72], [758.06, 885.64], [754.72, 882.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[764.99, 887.22], [767.87, 889.99], [765.47, 892.48], [771.72, 898.46], [782.91, 886.88], [776.51, 880.75], [776.16, 881.1], [773.43, 878.48], [764.99, 887.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[781.81, 898.09], [784.59, 900.59], [783.7, 901.57], [785.74, 903.42], [786.55, 902.52], [787.61, 903.48], [793.74, 896.72], [793.19, 896.21], [794.56, 894.7], [789.72, 890.34], [788.38, 891.83], [787.89, 891.39], [781.81, 898.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[792.84, 911.3], [787.45, 906.44], [788.96, 904.77], [788.73, 904.57], [794.75, 897.95], [800.65, 903.27], [794.67, 909.86], [794.38, 909.6], [792.84, 911.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[798.91, 916.26], [800.45, 914.57], [801.85, 915.85], [807.64, 909.5], [807.18, 909.08], [808.42, 907.71], [805.96, 905.48], [804.62, 906.95], [802.24, 904.79], [796.62, 910.96], [797.18, 911.46], [795.56, 913.24], [798.91, 916.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[827.9, 930.8], [828.39, 930.27], [829.72, 931.51], [834.18, 926.74], [832.77, 925.43], [833.16, 925.01], [826.35, 918.71], [821.02, 924.41], [827.9, 930.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[821.47, 937.87], [821.77, 937.55], [823.05, 938.74], [827.87, 933.58], [826.55, 932.36], [826.79, 932.1], [819.93, 925.76], [814.58, 931.5], [821.47, 937.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[812.35, 932.71], [815.24, 929.47], [810.59, 925.35], [807.7, 928.58], [812.35, 932.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[815.02, 945.15], [815.35, 944.77], [816.69, 945.99], [820.81, 941.5], [819.43, 940.25], [819.72, 939.94], [812.21, 933.09], [810.47, 934.99], [809.33, 933.96], [807.28, 936.2], [808.29, 937.12], [807.35, 938.14], [815.02, 945.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[804.93, 940.07], [807.66, 937.16], [803.08, 932.91], [800.36, 935.82], [804.93, 940.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[807.79, 952.77], [813.02, 947.15], [806.21, 940.86], [804.9, 942.29], [803.84, 941.31], [799.92, 945.52], [807.79, 952.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[797.74, 946.91], [800.99, 943.35], [796.77, 939.53], [793.51, 943.09], [797.74, 946.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[801.04, 960.06], [801.38, 959.68], [802.84, 960.98], [807.16, 956.2], [805.85, 955.03], [806.14, 954.72], [799.22, 948.5], [798.75, 949.02], [796.76, 947.23], [792.76, 951.67], [794.89, 953.57], [794.41, 954.11], [801.04, 960.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[798.83, 962.8], [800.97, 964.73], [797.0, 969.12], [794.9, 967.24], [794.6, 967.57], [787.0, 960.75], [787.18, 960.55], [786.01, 959.49], [788.76, 956.45], [789.76, 957.35], [791.4, 955.54], [799.12, 962.48], [798.83, 962.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[783.84, 961.46], [786.37, 958.83], [782.49, 955.15], [779.98, 957.77], [783.84, 961.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[786.82, 975.78], [787.13, 975.44], [788.6, 976.81], [793.17, 971.96], [791.7, 970.59], [792.04, 970.24], [785.21, 963.85], [783.86, 965.28], [783.16, 964.62], [779.54, 968.46], [780.23, 969.09], [779.97, 969.37], [786.82, 975.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[780.06, 983.89], [780.63, 983.3], [781.96, 984.55], [786.33, 979.98], [784.85, 978.58], [785.28, 978.14], [778.55, 971.75], [778.28, 972.03], [777.19, 970.99], [773.58, 974.76], [774.46, 975.6], [772.96, 977.16], [780.06, 983.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[773.02, 974.69], [776.85, 970.56], [773.26, 967.25], [769.43, 971.39], [773.02, 974.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[754.67, 957.91], [759.82, 962.51], [761.22, 960.96], [761.76, 961.44], [767.67, 954.86], [761.51, 949.35], [755.48, 956.06], [755.95, 956.48], [754.67, 957.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[748.69, 952.6], [753.01, 956.47], [761.14, 947.46], [759.14, 945.66], [760.41, 944.26], [757.34, 941.51], [756.05, 942.94], [755.09, 942.07], [748.06, 949.86], [749.77, 951.41], [748.69, 952.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[745.46, 949.74], [753.58, 941.18], [752.13, 939.8], [752.99, 938.9], [750.41, 936.47], [749.55, 937.39], [747.54, 935.5], [739.42, 944.05], [745.46, 949.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[738.57, 940.21], [747.98, 929.8], [736.21, 919.23], [726.8, 929.65], [738.57, 940.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[723.07, 929.52], [730.78, 920.91], [724.34, 915.2], [716.63, 923.81], [723.07, 929.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[715.51, 922.97], [723.41, 914.36], [722.75, 913.76], [724.88, 911.44], [721.75, 908.6], [718.96, 911.63], [717.5, 910.31], [710.84, 917.54], [713.62, 920.07], [713.04, 920.7], [715.51, 922.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[701.54, 910.36], [709.39, 901.7], [709.85, 902.11], [711.4, 900.4], [714.77, 903.44], [713.12, 905.25], [716.17, 907.99], [708.41, 916.54], [701.54, 910.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[700.6, 909.27], [710.12, 898.88], [709.37, 898.2], [711.37, 896.02], [708.72, 893.62], [706.87, 895.64], [703.96, 892.98], [694.29, 903.53], [700.6, 909.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[693.09, 902.58], [700.26, 894.75], [699.03, 893.62], [699.61, 892.99], [694.28, 888.16], [686.54, 896.65], [693.09, 902.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[684.87, 894.4], [686.2, 892.94], [686.66, 893.35], [696.45, 882.6], [692.28, 878.82], [691.29, 879.92], [689.19, 878.02], [680.3, 887.79], [680.82, 888.26], [679.58, 889.62], [684.87, 894.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[675.39, 882.39], [682.91, 874.03], [681.53, 872.79], [684.67, 869.3], [678.33, 863.62], [667.65, 875.47], [675.39, 882.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[714.26, 881.52], [717.51, 884.31], [721.41, 879.79], [718.16, 877.01], [714.26, 881.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[713.0, 881.59], [717.65, 876.4], [714.78, 873.85], [710.14, 879.05], [713.0, 881.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[717.69, 873.27], [722.52, 868.04], [717.31, 863.26], [712.49, 868.5], [717.69, 873.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[721.21, 895.5], [724.7, 898.67], [729.3, 893.63], [725.8, 890.47], [721.21, 895.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[725.14, 898.91], [729.62, 893.98], [732.8, 896.85], [728.32, 901.78], [725.14, 898.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[736.58, 890.82], [740.97, 894.96], [745.66, 890.04], [741.27, 885.88], [736.58, 890.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[741.8, 895.68], [745.78, 890.68], [748.92, 893.16], [744.95, 898.16], [741.8, 895.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[760.64, 927.17], [766.7, 920.55], [763.21, 917.37], [757.15, 924.0], [760.64, 927.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[759.1, 936.2], [762.14, 938.82], [765.96, 934.79], [763.04, 931.98], [759.1, 936.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[772.35, 922.79], [776.15, 918.25], [779.0, 920.6], [775.2, 925.16], [772.35, 922.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[770.27, 921.57], [774.95, 916.62], [771.8, 913.67], [767.13, 918.64], [770.27, 921.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[775.43, 937.86], [779.64, 933.1], [784.4, 937.27], [780.2, 942.04], [775.43, 937.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[781.3, 942.57], [786.15, 937.44], [792.25, 943.16], [787.41, 948.28], [781.3, 942.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[788.22, 924.8], [792.99, 928.99], [797.06, 924.39], [792.29, 920.2], [788.22, 924.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2609.89, -966.7], [-2602.73, -960.82], [-2599.35, -964.92], [-2598.68, -964.36], [-2598.44, -964.66], [-2596.26, -962.87], [-2589.73, -970.77], [-2594.49, -974.67], [-2595.64, -973.25], [-2601.3, -977.9], [-2608.95, -968.64], [-2608.56, -968.31], [-2609.89, -966.7]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.115, "pop": 0, "jobs": 115}}, {"shape": {"outer": [[-2599.11, -953.74], [-2591.98, -947.71], [-2579.23, -962.66], [-2581.53, -964.6], [-2580.89, -965.36], [-2584.32, -968.27], [-2585.08, -967.38], [-2586.47, -968.55], [-2599.11, -953.74]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2581.64, -941.31], [-2579.81, -943.45], [-2579.32, -943.05], [-2573.09, -950.33], [-2575.83, -952.65], [-2574.93, -953.7], [-2578.99, -957.15], [-2579.8, -956.19], [-2580.71, -956.97], [-2587.14, -949.43], [-2586.51, -948.9], [-2588.23, -946.89], [-2581.64, -941.31]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2519.23, -881.28], [-2501.44, -902.15], [-2495.88, -908.68], [-2527.52, -936.86], [-2546.77, -913.25], [-2546.93, -911.87], [-2550.09, -908.06], [-2519.23, -881.28]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 1063, "jobs": 0}}, {"shape": {"outer": [[-2558.59, -923.65], [-2551.91, -931.22], [-2558.82, -937.28], [-2565.44, -929.79], [-2564.68, -929.12], [-2565.51, -928.19], [-2560.11, -923.46], [-2559.36, -924.31], [-2558.59, -923.65]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2581.53, -935.52], [-2571.16, -926.72], [-2559.45, -940.42], [-2569.84, -949.22], [-2581.53, -935.52]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.137, "pop": 0, "jobs": 137}}, {"shape": {"outer": [[-2615.3, -1018.57], [-2610.55, -1024.02], [-2603.78, -1018.16], [-2608.54, -1012.72], [-2615.3, -1018.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2599.67, -1023.37], [-2591.25, -1033.12], [-2598.34, -1039.21], [-2606.77, -1029.46], [-2599.67, -1023.37]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2590.98, -1030.38], [-2590.62, -1030.08], [-2589.14, -1031.84], [-2583.93, -1027.44], [-2585.26, -1025.87], [-2583.21, -1024.15], [-2586.39, -1020.39], [-2585.26, -1019.45], [-2588.13, -1016.06], [-2589.0, -1016.78], [-2590.62, -1014.87], [-2598.51, -1021.51], [-2590.98, -1030.38]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2596.76, -1006.79], [-2592.94, -1011.42], [-2598.35, -1015.87], [-2602.18, -1011.23], [-2596.76, -1006.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2595.28, -1000.77], [-2590.3, -1006.63], [-2584.93, -1002.1], [-2589.91, -996.25], [-2595.28, -1000.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2588.51, -1007.89], [-2585.78, -1011.19], [-2582.58, -1008.57], [-2581.05, -1010.43], [-2580.76, -1010.19], [-2574.48, -1017.82], [-2577.32, -1020.14], [-2576.57, -1021.05], [-2579.68, -1023.6], [-2580.27, -1022.88], [-2580.76, -1023.28], [-2591.45, -1010.3], [-2588.51, -1007.89]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2588.32, -995.25], [-2583.9, -1000.54], [-2578.34, -995.94], [-2582.75, -990.64], [-2588.32, -995.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2573.36, -999.36], [-2572.13, -1000.79], [-2571.82, -1000.53], [-2564.83, -1008.72], [-2565.46, -1009.25], [-2564.18, -1010.74], [-2570.59, -1016.16], [-2571.85, -1014.67], [-2572.55, -1015.27], [-2579.54, -1007.06], [-2579.27, -1006.84], [-2580.49, -1005.4], [-2573.36, -999.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2570.84, -993.84], [-2568.59, -996.5], [-2569.95, -997.65], [-2568.38, -999.49], [-2568.83, -999.88], [-2563.15, -1006.59], [-2556.07, -1000.63], [-2556.61, -1000.0], [-2554.36, -998.09], [-2557.86, -993.97], [-2560.1, -995.86], [-2561.79, -993.87], [-2562.2, -994.21], [-2565.97, -989.75], [-2570.84, -993.84]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2572.33, -985.18], [-2568.44, -982.09], [-2564.07, -987.58], [-2567.96, -990.66], [-2572.33, -985.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2552.44, -984.57], [-2544.5, -994.13], [-2551.2, -999.64], [-2559.13, -990.08], [-2552.44, -984.57]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2550.84, -980.11], [-2542.85, -989.72], [-2534.08, -982.49], [-2542.07, -972.88], [-2550.84, -980.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2547.88, -964.9], [-2543.48, -970.06], [-2539.66, -966.84], [-2544.06, -961.68], [-2547.88, -964.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2534.54, -967.74], [-2533.54, -968.85], [-2532.63, -968.04], [-2525.7, -975.79], [-2526.44, -976.45], [-2525.48, -977.53], [-2527.03, -978.91], [-2526.52, -979.48], [-2527.73, -980.54], [-2528.22, -980.0], [-2530.19, -981.74], [-2531.51, -980.26], [-2531.97, -980.67], [-2538.7, -973.14], [-2536.84, -971.48], [-2537.68, -970.54], [-2534.54, -967.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2520.73, -959.54], [-2514.73, -966.9], [-2515.13, -967.22], [-2514.11, -968.46], [-2521.04, -974.08], [-2522.35, -972.46], [-2522.67, -972.71], [-2528.37, -965.72], [-2520.73, -959.54]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2506.16, -959.4], [-2505.05, -960.72], [-2511.05, -965.72], [-2512.26, -964.28], [-2512.81, -964.73], [-2520.03, -956.11], [-2518.21, -954.6], [-2518.82, -953.86], [-2516.74, -952.12], [-2516.14, -952.83], [-2512.89, -950.13], [-2505.54, -958.89], [-2506.16, -959.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2503.73, -957.13], [-2503.14, -956.63], [-2501.91, -958.08], [-2495.94, -953.13], [-2497.15, -951.69], [-2496.56, -951.2], [-2503.62, -942.76], [-2504.36, -943.37], [-2505.51, -941.99], [-2508.66, -944.61], [-2507.51, -945.97], [-2510.79, -948.69], [-2503.73, -957.13]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2509.58, -933.48], [-2505.33, -938.28], [-2501.9, -935.28], [-2506.15, -930.47], [-2509.58, -933.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2500.78, -934.86], [-2497.7, -938.4], [-2502.23, -942.32], [-2505.31, -938.76], [-2500.78, -934.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2706.72, -1104.03], [-2705.63, -1105.3], [-2704.09, -1103.96], [-2702.17, -1106.18], [-2703.6, -1107.4], [-2702.06, -1109.17], [-2705.43, -1112.07], [-2704.54, -1113.08], [-2712.16, -1119.63], [-2712.75, -1118.95], [-2714.28, -1120.28], [-2719.15, -1114.67], [-2714.14, -1110.35], [-2714.47, -1109.98], [-2710.33, -1106.41], [-2709.96, -1106.83], [-2706.72, -1104.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2703.61, -1130.87], [-2702.79, -1131.81], [-2699.12, -1128.65], [-2698.49, -1129.39], [-2693.59, -1125.16], [-2700.11, -1117.64], [-2704.04, -1121.02], [-2703.75, -1121.36], [-2704.27, -1121.81], [-2704.56, -1121.47], [-2708.19, -1124.6], [-2707.86, -1124.99], [-2709.31, -1126.23], [-2704.58, -1131.7], [-2703.61, -1130.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2702.49, -1091.13], [-2697.17, -1086.68], [-2693.54, -1090.99], [-2698.86, -1095.43], [-2702.49, -1091.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2678.75, -1112.51], [-2682.93, -1107.72], [-2683.47, -1108.17], [-2684.85, -1106.59], [-2693.47, -1114.05], [-2688.76, -1119.46], [-2687.23, -1118.13], [-2684.57, -1121.19], [-2678.47, -1115.92], [-2680.28, -1113.84], [-2678.75, -1112.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2674.45, -1102.21], [-2671.01, -1099.35], [-2675.97, -1093.43], [-2676.16, -1093.59], [-2678.13, -1091.24], [-2682.36, -1094.75], [-2679.31, -1098.39], [-2683.75, -1102.08], [-2676.52, -1110.72], [-2676.21, -1110.46], [-2675.28, -1111.56], [-2673.34, -1109.95], [-2673.85, -1109.34], [-2670.68, -1106.71], [-2674.45, -1102.21]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2682.4, -1080.2], [-2677.48, -1086.07], [-2683.96, -1091.47], [-2688.89, -1085.61], [-2682.4, -1080.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2674.56, -1067.52], [-2670.57, -1072.23], [-2665.54, -1068.0], [-2669.53, -1063.29], [-2674.56, -1067.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2663.91, -1076.35], [-2654.43, -1087.53], [-2654.87, -1087.9], [-2653.79, -1089.16], [-2659.65, -1094.1], [-2660.85, -1092.67], [-2661.61, -1093.32], [-2667.96, -1085.83], [-2666.92, -1084.95], [-2669.28, -1082.17], [-2666.71, -1080.0], [-2667.35, -1079.24], [-2663.91, -1076.35]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2658.15, -1076.66], [-2650.82, -1085.18], [-2649.5, -1084.05], [-2647.98, -1085.82], [-2640.56, -1079.47], [-2642.02, -1077.79], [-2641.03, -1076.95], [-2648.43, -1068.34], [-2658.15, -1076.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2629.71, -1066.0], [-2630.55, -1066.71], [-2628.7, -1068.88], [-2635.82, -1074.92], [-2637.45, -1073.02], [-2638.08, -1073.55], [-2645.66, -1064.67], [-2640.72, -1060.47], [-2641.48, -1059.57], [-2638.81, -1057.31], [-2637.93, -1058.34], [-2636.95, -1057.52], [-2629.71, -1066.0]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2652.08, -1048.09], [-2648.38, -1052.41], [-2653.66, -1056.91], [-2657.36, -1052.59], [-2652.08, -1048.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2617.21, -1055.55], [-2617.7, -1055.95], [-2615.96, -1057.99], [-2623.36, -1064.22], [-2625.15, -1062.11], [-2625.78, -1062.64], [-2632.16, -1055.12], [-2629.54, -1052.9], [-2630.41, -1051.88], [-2628.21, -1050.03], [-2627.37, -1051.01], [-2623.69, -1047.9], [-2617.21, -1055.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2734.93, -1139.65], [-2724.7, -1151.4], [-2727.84, -1154.12], [-2726.94, -1155.16], [-2729.47, -1157.35], [-2730.35, -1156.34], [-2730.91, -1156.83], [-2741.13, -1145.1], [-2738.11, -1142.5], [-2738.92, -1141.57], [-2736.18, -1139.22], [-2735.43, -1140.09], [-2734.93, -1139.65]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2753.9, -1153.94], [-2750.96, -1151.44], [-2749.24, -1153.45], [-2748.48, -1152.8], [-2745.88, -1155.84], [-2745.44, -1155.46], [-2742.57, -1158.82], [-2742.83, -1159.04], [-2740.71, -1161.53], [-2741.12, -1161.87], [-2740.2, -1162.94], [-2742.06, -1164.52], [-2741.76, -1164.89], [-2745.6, -1168.15], [-2751.8, -1160.9], [-2750.96, -1160.18], [-2753.57, -1157.12], [-2752.18, -1155.95], [-2753.9, -1153.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2767.37, -1147.92], [-2760.76, -1142.49], [-2755.52, -1148.83], [-2762.13, -1154.25], [-2767.37, -1147.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2775.6, -1154.7], [-2770.74, -1160.51], [-2776.32, -1165.14], [-2781.18, -1159.33], [-2775.6, -1154.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2781.87, -1159.7], [-2777.95, -1164.55], [-2782.71, -1168.37], [-2786.63, -1163.51], [-2781.87, -1159.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2766.42, -1164.02], [-2758.98, -1172.98], [-2757.87, -1172.07], [-2754.7, -1175.89], [-2757.05, -1177.82], [-2756.34, -1178.67], [-2758.6, -1180.53], [-2759.06, -1179.96], [-2762.41, -1182.72], [-2768.54, -1175.33], [-2767.33, -1174.33], [-2769.59, -1171.61], [-2768.67, -1170.85], [-2771.12, -1167.89], [-2766.42, -1164.02]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2768.73, -1179.43], [-2766.99, -1181.56], [-2768.51, -1182.79], [-2767.55, -1183.96], [-2766.93, -1183.98], [-2766.08, -1184.94], [-2766.24, -1186.62], [-2767.42, -1187.67], [-2768.03, -1187.57], [-2769.54, -1188.8], [-2769.28, -1189.12], [-2774.01, -1192.94], [-2776.79, -1189.53], [-2777.22, -1189.86], [-2780.69, -1185.61], [-2779.45, -1184.61], [-2782.04, -1181.45], [-2777.1, -1177.45], [-2775.57, -1179.33], [-2773.05, -1177.28], [-2771.98, -1178.59], [-2771.76, -1178.42], [-2770.06, -1180.5], [-2768.73, -1179.43]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2790.96, -1167.57], [-2786.91, -1172.17], [-2791.76, -1176.4], [-2795.8, -1171.8], [-2790.96, -1167.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2796.34, -1172.35], [-2792.35, -1176.97], [-2797.69, -1181.55], [-2801.68, -1176.93], [-2796.34, -1172.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2789.24, -1186.74], [-2778.43, -1199.38], [-2784.72, -1204.72], [-2788.6, -1200.17], [-2789.11, -1200.6], [-2792.37, -1196.79], [-2791.88, -1196.37], [-2796.36, -1191.12], [-2793.19, -1188.43], [-2792.37, -1189.39], [-2789.24, -1186.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2793.15, -1209.55], [-2791.62, -1211.39], [-2795.82, -1214.85], [-2797.08, -1213.32], [-2797.88, -1213.99], [-2801.6, -1209.5], [-2802.72, -1210.44], [-2805.83, -1206.7], [-2804.43, -1205.55], [-2806.88, -1202.6], [-2801.89, -1198.49], [-2799.6, -1201.25], [-2798.95, -1200.71], [-2792.24, -1208.79], [-2793.15, -1209.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2810.08, -1183.62], [-2805.4, -1189.17], [-2816.12, -1198.12], [-2816.42, -1197.76], [-2818.31, -1199.35], [-2822.38, -1194.52], [-2820.57, -1193.01], [-2820.87, -1192.64], [-2810.08, -1183.62]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[738.58, 1078.29], [739.49, 1077.3], [739.7, 1077.5], [749.77, 1066.44], [743.05, 1060.37], [735.98, 1068.13], [736.53, 1068.63], [732.63, 1072.91], [738.58, 1078.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[740.89, 1078.1], [742.11, 1076.72], [744.22, 1075.73], [748.73, 1070.63], [751.67, 1073.2], [752.43, 1072.35], [755.23, 1074.8], [754.48, 1075.64], [754.82, 1075.95], [752.71, 1078.33], [753.43, 1078.96], [751.86, 1080.73], [752.56, 1081.33], [749.65, 1084.63], [748.24, 1083.39], [747.67, 1084.03], [740.89, 1078.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[754.92, 1094.07], [759.9, 1088.78], [760.56, 1089.4], [764.75, 1084.93], [764.21, 1084.44], [765.37, 1083.22], [764.94, 1082.82], [767.28, 1080.32], [766.18, 1079.29], [767.37, 1078.01], [762.81, 1073.77], [758.34, 1078.54], [757.5, 1077.75], [748.12, 1087.74], [754.92, 1094.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[765.73, 1103.1], [766.84, 1101.88], [767.18, 1102.18], [777.45, 1090.9], [776.85, 1090.37], [778.78, 1088.25], [773.56, 1083.53], [771.69, 1085.59], [770.56, 1084.57], [767.89, 1087.49], [768.54, 1088.07], [766.43, 1090.39], [765.86, 1089.87], [762.66, 1093.38], [763.15, 1093.84], [760.67, 1096.55], [760.97, 1096.82], [759.98, 1097.91], [765.73, 1103.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[776.15, 1109.95], [768.4, 1102.87], [778.24, 1092.19], [778.52, 1092.45], [784.36, 1097.97], [781.64, 1100.83], [781.63, 1101.58], [780.92, 1102.36], [782.12, 1103.46], [776.15, 1109.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[777.38, 1111.8], [777.65, 1112.03], [776.84, 1112.91], [782.18, 1117.77], [783.16, 1116.7], [783.49, 1116.99], [786.32, 1113.91], [786.65, 1114.21], [790.27, 1110.25], [789.9, 1109.92], [792.14, 1107.49], [791.56, 1106.96], [793.02, 1105.38], [788.13, 1100.92], [786.85, 1102.31], [786.43, 1101.94], [777.38, 1111.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[792.45, 1128.59], [793.96, 1126.96], [794.25, 1127.23], [805.44, 1115.17], [799.02, 1109.25], [794.66, 1113.94], [794.29, 1113.6], [790.35, 1117.84], [790.69, 1118.17], [787.79, 1121.28], [788.06, 1121.53], [786.56, 1123.15], [792.45, 1128.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[796.09, 1131.16], [797.53, 1129.64], [796.97, 1129.14], [803.71, 1121.96], [806.07, 1124.17], [807.29, 1122.86], [811.53, 1126.82], [803.47, 1135.39], [802.89, 1134.85], [801.57, 1136.26], [796.09, 1131.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[806.59, 1140.44], [807.87, 1139.02], [807.42, 1138.63], [810.17, 1135.55], [809.66, 1135.09], [813.56, 1130.74], [814.21, 1131.33], [816.44, 1128.83], [816.9, 1129.24], [820.25, 1125.51], [824.55, 1129.33], [822.55, 1131.57], [822.82, 1131.8], [812.57, 1143.24], [812.08, 1142.8], [810.82, 1144.2], [806.59, 1140.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[856.25, 1185.85], [858.29, 1183.62], [858.57, 1183.88], [867.19, 1174.44], [864.24, 1171.77], [865.76, 1170.11], [862.46, 1167.12], [860.78, 1168.96], [860.55, 1168.75], [851.65, 1178.51], [852.07, 1178.89], [850.08, 1181.07], [853.03, 1183.74], [853.43, 1183.3], [856.25, 1185.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[862.6, 1187.19], [863.66, 1186.02], [867.25, 1189.27], [874.74, 1181.02], [873.91, 1180.26], [876.82, 1177.05], [870.48, 1171.37], [859.99, 1182.9], [860.72, 1183.5], [859.73, 1184.6], [862.6, 1187.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[870.76, 1159.62], [875.51, 1154.74], [880.32, 1159.4], [875.57, 1164.27], [870.76, 1159.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[890.15, 1162.98], [895.83, 1156.58], [884.83, 1146.87], [880.28, 1151.98], [881.25, 1152.84], [880.11, 1154.11], [890.15, 1162.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[897.53, 1153.2], [897.83, 1152.86], [899.11, 1153.99], [903.46, 1149.1], [902.2, 1147.99], [902.53, 1147.61], [894.35, 1140.41], [889.38, 1146.01], [897.53, 1153.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[905.7, 1143.66], [911.36, 1137.45], [900.72, 1127.84], [895.07, 1134.05], [905.7, 1143.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[870.35, 1127.29], [871.49, 1126.07], [874.58, 1128.95], [886.62, 1116.13], [881.98, 1111.79], [880.88, 1110.77], [880.06, 1110.01], [867.9, 1122.97], [868.74, 1123.76], [867.73, 1124.84], [870.35, 1127.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[868.03, 1118.65], [878.13, 1107.61], [870.61, 1100.8], [860.52, 1111.84], [868.03, 1118.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[854.98, 1113.02], [857.47, 1110.31], [858.13, 1110.92], [867.06, 1101.2], [866.8, 1100.97], [868.36, 1099.26], [862.17, 1093.61], [860.62, 1095.29], [860.32, 1095.03], [851.23, 1104.94], [852.78, 1106.35], [850.45, 1108.88], [854.98, 1113.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[844.47, 1095.16], [851.39, 1087.22], [851.65, 1087.43], [853.1, 1085.76], [859.01, 1090.87], [857.27, 1092.85], [857.5, 1093.06], [850.81, 1100.71], [850.52, 1100.47], [849.61, 1101.5], [843.8, 1096.47], [844.74, 1095.38], [844.47, 1095.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[847.28, 1086.0], [846.8, 1085.57], [848.08, 1084.15], [843.18, 1079.73], [841.85, 1081.21], [841.47, 1080.87], [835.09, 1087.89], [834.54, 1087.39], [833.04, 1089.04], [833.65, 1089.59], [833.2, 1090.09], [835.68, 1092.32], [834.94, 1093.13], [837.07, 1095.05], [837.83, 1094.22], [838.91, 1095.2], [847.28, 1086.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[830.29, 1083.98], [838.18, 1075.36], [830.17, 1068.09], [822.29, 1076.7], [830.29, 1083.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[821.89, 1075.62], [826.46, 1070.76], [823.2, 1067.72], [818.63, 1072.59], [821.89, 1075.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[813.26, 1068.03], [816.43, 1064.6], [816.87, 1065.0], [818.01, 1063.75], [817.58, 1063.34], [820.6, 1060.08], [814.35, 1054.33], [807.0, 1062.28], [813.26, 1068.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[814.43, 1074.8], [808.8, 1070.05], [803.3, 1076.54], [808.93, 1081.28], [814.43, 1074.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[812.1, 1049.63], [804.22, 1042.54], [796.78, 1050.74], [804.66, 1057.83], [812.1, 1049.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[788.37, 1042.59], [797.12, 1033.22], [789.47, 1026.14], [780.73, 1035.5], [788.37, 1042.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[779.26, 1033.65], [787.79, 1024.45], [780.85, 1018.08], [772.33, 1027.28], [779.26, 1033.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[758.59, 1044.65], [764.89, 1037.74], [777.54, 1049.19], [771.24, 1056.11], [758.59, 1044.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[747.44, 1052.91], [751.32, 1048.55], [752.29, 1049.4], [754.62, 1046.76], [761.98, 1053.24], [755.77, 1060.24], [747.44, 1052.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[808.82, 1104.07], [813.34, 1099.12], [808.5, 1094.72], [803.98, 1099.67], [808.82, 1104.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[823.79, 1105.87], [826.26, 1103.11], [828.7, 1105.26], [826.22, 1108.03], [823.79, 1105.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[827.84, 1110.11], [833.65, 1103.61], [841.15, 1110.27], [835.33, 1116.77], [827.84, 1110.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[820.55, 1117.08], [825.49, 1111.56], [834.13, 1119.23], [829.17, 1124.74], [820.55, 1117.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[850.13, 1129.91], [854.58, 1124.76], [849.92, 1120.77], [845.48, 1125.91], [850.13, 1129.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[873.5, 1132.55], [875.99, 1134.72], [878.6, 1131.74], [876.11, 1129.57], [873.5, 1132.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[853.99, 1134.1], [859.9, 1139.45], [864.35, 1134.56], [858.44, 1129.22], [853.99, 1134.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[853.45, 1134.44], [858.4, 1138.84], [854.14, 1143.59], [849.19, 1139.18], [853.45, 1134.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[873.76, 1142.42], [868.44, 1137.6], [863.75, 1142.75], [869.08, 1147.57], [873.76, 1142.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[572.08, 961.15], [578.64, 967.16], [567.39, 979.36], [560.83, 973.35], [572.08, 961.15]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.094, "pop": 0, "jobs": 94}}, {"shape": {"outer": [[560.26, 973.57], [571.82, 960.77], [564.68, 954.37], [553.12, 967.17], [560.26, 973.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[558.5, 989.06], [564.78, 982.29], [553.63, 972.03], [547.36, 978.81], [558.5, 989.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[551.53, 997.07], [557.9, 990.17], [549.25, 982.26], [548.81, 982.73], [544.34, 978.63], [538.42, 985.06], [551.53, 997.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[570.4, 979.68], [580.55, 968.6], [587.17, 974.63], [577.02, 985.71], [570.4, 979.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[568.99, 993.91], [573.12, 989.25], [568.17, 984.89], [564.04, 989.54], [568.99, 993.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-367.45, -102.69], [-372.08, -102.47], [-373.17, -102.42], [-372.13, -80.69], [-369.95, -78.72], [-372.82, -75.57], [-360.86, -64.71], [-360.74, -64.6], [-356.35, -69.39], [-353.83, -72.16], [-354.34, -72.62], [-353.79, -73.2], [-366.59, -84.84], [-367.45, -102.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.248, "pop": 124, "jobs": 0}}, {"shape": {"outer": [[-369.85, -54.87], [-360.86, -64.71], [-372.82, -75.57], [-369.95, -78.72], [-372.13, -80.69], [-373.17, -102.42], [-373.18, -102.76], [-386.46, -102.13], [-386.43, -101.6], [-385.55, -82.97], [-392.07, -75.81], [-392.47, -75.38], [-371.74, -56.6], [-369.85, -54.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.56, "pop": 280, "jobs": 0}}, {"shape": {"outer": [[-416.23, -98.1], [-415.67, -100.2], [-410.82, -100.43], [-399.92, -100.93], [-397.99, -101.01], [-397.05, -80.43], [-399.36, -82.56], [-411.43, -93.68], [-416.23, -98.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[-385.55, -82.97], [-391.59, -82.68], [-392.47, -101.25], [-391.69, -101.29], [-391.73, -102.22], [-389.59, -102.33], [-387.53, -102.42], [-387.49, -101.55], [-386.43, -101.6], [-385.55, -82.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-397.99, -101.01], [-396.8, -101.06], [-393.49, -101.21], [-392.47, -101.25], [-391.59, -82.68], [-385.55, -82.97], [-392.07, -75.81], [-392.61, -75.86], [-392.85, -76.06], [-394.05, -77.08], [-394.56, -77.12], [-396.88, -79.22], [-397.22, -79.52], [-396.69, -80.11], [-397.05, -80.43], [-397.99, -101.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-402.44, -120.57], [-402.44, -120.11], [-408.82, -119.83], [-408.83, -120.14], [-409.35, -131.83], [-409.39, -132.64], [-404.43, -137.96], [-403.22, -138.0], [-402.44, -120.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-408.83, -120.14], [-419.89, -119.65], [-419.94, -121.0], [-410.21, -131.79], [-409.35, -131.83], [-408.83, -120.14]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.049, "pop": 0, "jobs": 49}}, {"shape": {"outer": [[427.81, 81.23], [429.78, 79.08], [430.64, 79.86], [432.46, 77.88], [431.5, 77.01], [432.9, 75.48], [426.16, 69.35], [427.11, 68.32], [421.97, 63.65], [415.82, 70.36], [427.81, 81.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[398.69, 109.48], [399.55, 108.54], [400.52, 109.44], [405.27, 104.26], [395.03, 94.9], [394.08, 95.94], [393.65, 95.54], [393.45, 95.76], [392.32, 94.72], [389.95, 97.3], [390.92, 98.19], [389.63, 99.58], [393.12, 102.77], [392.31, 103.65], [398.69, 109.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[391.82, 115.53], [395.68, 111.41], [395.24, 110.99], [397.06, 109.05], [389.04, 101.6], [388.58, 102.09], [387.49, 101.07], [382.65, 106.23], [383.73, 107.25], [383.35, 107.65], [391.82, 115.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[372.11, 119.86], [372.77, 120.47], [371.71, 121.6], [374.82, 124.51], [375.9, 123.36], [380.02, 127.2], [384.12, 122.84], [385.81, 124.42], [386.17, 124.03], [388.61, 126.29], [391.06, 123.68], [388.66, 121.43], [389.77, 120.25], [386.43, 117.13], [386.83, 116.7], [385.62, 115.56], [385.92, 115.24], [384.28, 113.72], [383.98, 114.04], [382.9, 113.03], [382.54, 113.41], [380.53, 111.54], [376.89, 115.42], [376.56, 115.11], [372.11, 119.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[396.56, 145.53], [404.1, 137.38], [399.22, 132.88], [399.78, 132.28], [395.33, 128.19], [391.74, 132.06], [390.93, 131.32], [388.77, 133.65], [389.33, 134.16], [388.33, 135.25], [391.82, 138.46], [390.47, 139.92], [396.56, 145.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[451.74, 144.03], [457.49, 137.63], [452.2, 132.91], [452.58, 132.49], [443.45, 124.35], [437.32, 131.18], [451.74, 144.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[464.98, 129.28], [459.23, 135.69], [453.95, 130.98], [453.56, 131.41], [444.43, 123.26], [450.57, 116.43], [464.98, 129.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[465.3, 129.24], [470.6, 123.33], [466.14, 119.37], [466.91, 118.52], [461.41, 113.61], [460.68, 114.42], [458.05, 112.08], [457.96, 111.47], [456.05, 109.6], [455.32, 109.62], [453.77, 108.24], [448.41, 114.2], [465.3, 129.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[472.95, 119.81], [478.06, 114.16], [466.24, 103.54], [461.12, 109.2], [472.95, 119.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2791.64, -1038.49], [-2768.44, -1039.2], [-2744.66, -1019.15], [-2751.53, -1012.39], [-2742.8, -1003.56], [-2718.74, -1004.25], [-2719.18, -1019.5], [-2716.25, -1023.1], [-2770.55, -1066.93], [-2789.38, -1065.95], [-2792.22, -1062.31], [-2791.64, -1038.49]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 1873, "jobs": 0}}, {"shape": {"outer": [[-2162.7, -1870.11], [-2160.6, -1869.7], [-2159.05, -1867.39], [-2159.59, -1867.03], [-2156.52, -1862.43], [-2151.1, -1866.02], [-2152.06, -1867.45], [-2151.61, -1870.4], [-2154.42, -1870.82], [-2158.15, -1876.93], [-2161.81, -1874.71], [-2162.7, -1870.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2264.07, -1758.59], [-2258.84, -1755.51], [-2254.3, -1763.13], [-2259.54, -1766.23], [-2264.07, -1758.59]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.034, "pop": 0, "jobs": 34}}, {"shape": {"outer": [[-2273.75, -1764.67], [-2268.5, -1761.35], [-2263.57, -1769.04], [-2268.82, -1772.37], [-2273.75, -1764.67]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.036, "pop": 0, "jobs": 36}}, {"shape": {"outer": [[-2198.97, -1814.85], [-2199.27, -1820.31], [-2212.56, -1815.48], [-2206.88, -1811.91], [-2198.97, -1814.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2130.82, -1847.69], [-2128.32, -1853.0], [-2123.31, -1850.84], [-2125.54, -1845.82], [-2130.82, -1847.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[807.41, 390.41], [851.35, 430.28], [798.37, 488.24], [786.06, 501.72], [750.91, 469.82], [758.76, 461.22], [749.97, 453.25], [801.52, 396.85], [807.41, 390.41]], "holes": []}, "height": 17.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7846}}, {"shape": {"outer": [[-3112.74, -1152.56], [-3103.13, -1144.72], [-3101.98, -1146.12], [-3100.08, -1144.57], [-3096.89, -1148.47], [-3098.96, -1150.15], [-3097.67, -1151.72], [-3103.06, -1156.12], [-3102.15, -1157.23], [-3104.21, -1158.92], [-3105.15, -1157.78], [-3107.12, -1159.39], [-3112.74, -1152.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-3116.38, -1162.72], [-3111.84, -1168.05], [-3108.22, -1165.0], [-3112.77, -1159.66], [-3116.38, -1162.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-3127.02, -1164.09], [-3120.15, -1172.11], [-3113.74, -1166.64], [-3120.3, -1158.97], [-3120.82, -1159.41], [-3122.15, -1157.86], [-3127.53, -1162.44], [-3126.49, -1163.64], [-3127.02, -1164.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-3101.58, -1160.61], [-3094.24, -1169.44], [-3090.86, -1166.65], [-3090.3, -1167.32], [-3089.34, -1166.53], [-3087.69, -1168.52], [-3082.75, -1164.44], [-3084.23, -1162.66], [-3083.63, -1162.17], [-3089.97, -1154.55], [-3094.88, -1158.6], [-3096.62, -1156.51], [-3101.58, -1160.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-3099.62, -1182.63], [-3095.32, -1178.96], [-3091.85, -1182.99], [-3096.13, -1186.67], [-3099.62, -1182.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-3089.11, -1192.47], [-3086.5, -1195.56], [-3085.62, -1194.82], [-3079.81, -1201.71], [-3072.09, -1195.26], [-3078.64, -1187.5], [-3080.74, -1189.27], [-3082.62, -1187.04], [-3089.11, -1192.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-3079.91, -1181.25], [-3073.3, -1175.85], [-3072.19, -1177.18], [-3071.69, -1176.77], [-3063.09, -1187.22], [-3063.66, -1187.7], [-3062.52, -1189.08], [-3068.79, -1194.21], [-3070.16, -1192.53], [-3070.91, -1193.16], [-3079.32, -1182.94], [-3078.83, -1182.56], [-3079.91, -1181.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-3100.7, -1201.24], [-3090.72, -1213.09], [-3082.39, -1206.14], [-3091.07, -1195.84], [-3094.11, -1198.39], [-3095.42, -1196.83], [-3100.7, -1201.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-3111.51, -1213.42], [-3109.73, -1215.55], [-3110.46, -1216.16], [-3108.08, -1219.0], [-3107.4, -1218.43], [-3104.93, -1221.38], [-3104.0, -1220.6], [-3102.45, -1222.46], [-3095.34, -1216.54], [-3096.96, -1214.59], [-3096.14, -1213.9], [-3102.68, -1206.09], [-3111.51, -1213.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-3125.84, -1217.96], [-3120.06, -1213.06], [-3118.81, -1214.53], [-3117.84, -1213.71], [-3115.65, -1216.27], [-3116.48, -1216.97], [-3109.64, -1224.96], [-3110.44, -1225.65], [-3109.36, -1226.91], [-3115.86, -1232.44], [-3116.82, -1231.32], [-3117.6, -1232.0], [-3124.83, -1223.54], [-3122.21, -1221.31], [-3123.01, -1220.36], [-3123.46, -1220.74], [-3125.84, -1217.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-3135.58, -1218.82], [-3132.19, -1216.06], [-3128.32, -1220.77], [-3131.72, -1223.54], [-3135.58, -1218.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-3136.15, -1231.36], [-3134.07, -1233.86], [-3133.16, -1233.11], [-3127.0, -1240.5], [-3119.84, -1234.58], [-3127.19, -1225.75], [-3127.9, -1226.34], [-3129.9, -1223.94], [-3133.38, -1226.82], [-3132.27, -1228.15], [-3136.15, -1231.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3118.1, -1197.32], [-3113.1, -1203.69], [-3106.62, -1198.64], [-3111.62, -1192.27], [-3118.1, -1197.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-3086.31, -1172.63], [-3082.61, -1176.81], [-3077.28, -1172.13], [-3080.97, -1167.95], [-3086.31, -1172.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-3145.71, -1043.46], [-3142.13, -1047.75], [-3142.9, -1048.38], [-3139.91, -1051.95], [-3132.21, -1045.56], [-3134.97, -1042.26], [-3135.5, -1042.7], [-3139.31, -1038.15], [-3145.71, -1043.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-3136.77, -1055.23], [-3136.29, -1055.81], [-3137.81, -1057.08], [-3132.77, -1063.07], [-3130.92, -1061.52], [-3130.47, -1062.07], [-3121.6, -1054.67], [-3124.99, -1050.65], [-3125.63, -1051.17], [-3127.36, -1049.13], [-3128.81, -1050.34], [-3129.67, -1049.31], [-3136.77, -1055.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-3130.57, -1040.7], [-3127.51, -1044.54], [-3122.54, -1040.59], [-3125.61, -1036.76], [-3130.57, -1040.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-3125.52, -1043.08], [-3121.38, -1048.19], [-3116.28, -1044.11], [-3120.4, -1039.0], [-3125.52, -1043.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-3125.37, -1067.51], [-3119.02, -1074.69], [-3112.64, -1069.1], [-3115.84, -1065.48], [-3114.73, -1064.51], [-3116.84, -1062.13], [-3118.31, -1063.42], [-3119.36, -1062.22], [-3125.37, -1067.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-3112.81, -1082.51], [-3106.58, -1077.04], [-3111.38, -1071.6], [-3117.61, -1077.06], [-3112.81, -1082.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-3111.37, -1087.52], [-3100.63, -1100.34], [-3100.07, -1099.87], [-3098.25, -1102.05], [-3091.96, -1096.82], [-3093.94, -1094.45], [-3093.38, -1093.97], [-3103.93, -1081.4], [-3108.98, -1085.6], [-3109.75, -1084.68], [-3111.68, -1086.29], [-3110.95, -1087.16], [-3111.37, -1087.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-3092.26, -1068.49], [-3085.55, -1062.89], [-3090.31, -1057.22], [-3097.02, -1062.8], [-3092.26, -1068.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-3092.46, -1069.21], [-3098.93, -1074.56], [-3104.24, -1068.18], [-3097.77, -1062.82], [-3092.46, -1069.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-3089.76, -1094.92], [-3079.63, -1086.77], [-3087.03, -1077.65], [-3090.87, -1080.74], [-3089.07, -1082.97], [-3092.78, -1085.95], [-3091.0, -1088.15], [-3093.58, -1090.22], [-3089.76, -1094.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-3077.3, -1084.95], [-3069.49, -1078.45], [-3070.14, -1077.66], [-3068.08, -1075.94], [-3072.37, -1070.82], [-3072.8, -1071.18], [-3076.24, -1067.07], [-3079.52, -1069.8], [-3076.98, -1072.83], [-3083.15, -1077.95], [-3077.3, -1084.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3084.63, -1052.19], [-3079.59, -1048.08], [-3075.51, -1053.05], [-3080.55, -1057.15], [-3084.63, -1052.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-3075.57, -1059.94], [-3064.18, -1073.61], [-3063.03, -1072.66], [-3061.65, -1074.3], [-3057.34, -1070.73], [-3058.75, -1069.04], [-3057.54, -1068.05], [-3068.91, -1054.42], [-3075.57, -1059.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-3052.79, -1066.02], [-3049.06, -1062.81], [-3050.33, -1061.36], [-3045.84, -1057.49], [-3052.09, -1050.29], [-3054.45, -1052.34], [-3056.21, -1050.31], [-3055.68, -1049.86], [-3056.7, -1048.68], [-3056.26, -1048.3], [-3057.77, -1046.55], [-3058.14, -1046.87], [-3058.57, -1046.36], [-3064.6, -1051.56], [-3060.18, -1056.64], [-3060.62, -1057.02], [-3052.79, -1066.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-3053.71, -1049.99], [-3050.74, -1047.34], [-3054.64, -1042.98], [-3057.61, -1045.63], [-3053.71, -1049.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-3052.42, -1040.86], [-3040.01, -1055.87], [-3033.29, -1050.35], [-3043.15, -1038.44], [-3045.37, -1040.27], [-3047.93, -1037.18], [-3052.42, -1040.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-3039.35, -1034.13], [-3032.42, -1028.41], [-3022.61, -1040.19], [-3029.54, -1045.92], [-3039.35, -1034.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-3012.0, -1032.8], [-3017.73, -1037.57], [-3029.39, -1023.65], [-3022.48, -1017.89], [-3011.96, -1030.46], [-3013.14, -1031.44], [-3012.0, -1032.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-3016.45, -1016.93], [-3011.38, -1012.91], [-3016.51, -1006.51], [-3021.58, -1010.53], [-3016.45, -1016.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-3011.72, -1013.69], [-3007.74, -1010.45], [-3005.87, -1012.74], [-3002.02, -1009.59], [-2995.95, -1016.98], [-3003.77, -1023.36], [-3011.72, -1013.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-820.63, -1302.6], [-813.95, -1296.65], [-805.16, -1306.44], [-811.88, -1312.43], [-820.63, -1302.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-832.53, -1283.63], [-838.34, -1289.44], [-827.77, -1299.94], [-821.96, -1294.14], [-832.53, -1283.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-811.02, -321.5], [-796.76, -308.64], [-772.24, -335.63], [-800.19, -360.84], [-814.64, -344.95], [-806.14, -337.29], [-804.76, -335.58], [-803.98, -333.54], [-803.87, -331.36], [-804.44, -329.24], [-805.64, -327.42], [-811.02, -321.5]], "holes": []}, "height": 42.0, "data": {"type": "residential", "density": 1.0, "pop": 2325, "jobs": 0}}, {"shape": {"outer": [[-775.35, -351.78], [-766.39, -343.62], [-760.81, -349.72], [-755.14, -344.55], [-775.02, -322.87], [-776.8, -324.49], [-792.42, -307.43], [-735.9, -256.0], [-712.06, -282.01], [-744.49, -311.52], [-717.86, -340.58], [-754.8, -374.2], [-775.35, -351.78]], "holes": []}, "height": 42.0, "data": {"type": "residential", "density": 1.0, "pop": 9228, "jobs": 0}}, {"shape": {"outer": [[484.86, 702.9], [485.87, 703.83], [500.6, 687.79], [499.9, 687.16], [503.72, 682.99], [505.53, 684.63], [509.61, 680.17], [508.34, 679.0], [523.27, 662.71], [522.11, 661.64], [526.89, 656.43], [523.83, 653.65], [525.36, 651.98], [519.15, 646.32], [518.05, 647.53], [514.68, 644.46], [509.03, 650.61], [508.09, 649.75], [507.01, 650.92], [504.16, 648.32], [505.18, 647.22], [502.48, 644.76], [501.41, 645.92], [498.24, 643.02], [499.41, 641.75], [498.31, 640.73], [503.59, 634.98], [500.45, 632.11], [501.58, 630.9], [495.61, 625.46], [494.53, 626.65], [491.32, 623.71], [485.9, 629.61], [484.73, 628.55], [483.67, 629.7], [480.9, 627.18], [482.08, 625.89], [479.45, 623.49], [478.15, 624.9], [474.75, 621.8], [475.86, 620.58], [474.99, 619.79], [480.4, 613.88], [477.08, 610.86], [478.19, 609.64], [472.26, 604.25], [471.14, 605.47], [467.86, 602.51], [462.48, 608.39], [461.33, 607.36], [460.33, 608.44], [457.7, 606.05], [459.09, 604.53], [456.18, 601.88], [454.75, 603.44], [451.77, 600.75], [452.88, 599.54], [451.76, 598.52], [457.21, 592.55], [454.04, 589.68], [454.99, 588.64], [448.99, 583.21], [447.91, 584.4], [445.75, 582.44], [446.75, 581.35], [445.62, 580.34], [439.92, 586.58], [438.62, 585.41], [435.78, 588.53], [436.34, 589.04], [433.66, 591.98], [433.11, 591.5], [428.92, 596.11], [431.53, 598.47], [430.58, 599.52], [436.93, 605.24], [437.98, 604.08], [440.42, 606.28], [439.25, 607.57], [445.42, 613.11], [446.45, 611.98], [449.68, 614.88], [435.79, 630.22], [432.38, 627.15], [423.98, 636.44], [426.81, 638.99], [420.45, 646.02], [421.4, 646.87], [416.54, 652.23], [419.85, 655.22], [418.71, 656.46], [425.92, 662.98], [426.94, 661.86], [429.94, 664.58], [435.73, 658.23], [438.35, 660.6], [437.76, 661.27], [441.02, 664.23], [441.68, 663.5], [447.35, 668.67], [441.77, 674.76], [444.88, 677.59], [443.86, 678.71], [450.64, 684.9], [451.51, 683.96], [454.8, 686.97], [460.39, 680.89], [462.9, 683.17], [462.32, 683.8], [465.61, 686.81], [466.4, 685.94], [472.03, 691.09], [466.54, 697.05], [469.77, 700.01], [468.8, 701.06], [475.21, 706.92], [476.17, 705.87], [479.41, 708.83], [484.86, 702.9]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 4397, "jobs": 0}}, {"shape": {"outer": [[-2906.48, -495.16], [-2902.8, -499.29], [-2901.74, -498.35], [-2893.0, -508.12], [-2893.9, -508.92], [-2891.8, -511.26], [-2899.26, -517.88], [-2903.41, -513.24], [-2904.68, -514.37], [-2908.24, -510.39], [-2911.46, -506.8], [-2908.9, -504.53], [-2912.5, -500.5], [-2906.48, -495.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-3029.93, -549.47], [-3017.68, -550.31], [-3018.55, -563.13], [-3022.07, -562.89], [-3022.3, -566.2], [-3029.93, -565.68], [-3029.71, -562.45], [-3030.82, -562.38], [-3029.93, -549.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-3046.14, -1294.86], [-3054.67, -1302.23], [-3064.66, -1290.75], [-3056.14, -1283.38], [-3046.14, -1294.86]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2772.45, -1238.83], [-2769.55, -1242.55], [-2767.72, -1241.11], [-2760.22, -1250.72], [-2765.74, -1255.03], [-2767.44, -1252.83], [-2769.68, -1254.57], [-2778.36, -1243.45], [-2772.45, -1238.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2620.05, -1277.43], [-2609.47, -1289.7], [-2612.56, -1292.36], [-2610.66, -1294.56], [-2616.78, -1299.83], [-2625.42, -1289.81], [-2628.01, -1292.05], [-2633.5, -1285.67], [-2625.29, -1278.59], [-2623.62, -1280.52], [-2620.05, -1277.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[-2625.6, -1376.17], [-2630.76, -1380.26], [-2632.4, -1378.22], [-2636.22, -1381.26], [-2643.68, -1371.94], [-2634.7, -1364.79], [-2625.6, -1376.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2964.24, -1522.51], [-2958.61, -1529.23], [-2956.55, -1531.69], [-2962.2, -1536.42], [-2964.26, -1533.96], [-2968.42, -1537.44], [-2974.05, -1530.72], [-2969.82, -1527.18], [-2970.56, -1526.3], [-2968.28, -1524.38], [-2967.53, -1525.27], [-2964.24, -1522.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2923.14, -1422.04], [-2929.14, -1427.31], [-2936.06, -1419.42], [-2933.37, -1417.06], [-2934.92, -1415.3], [-2931.6, -1412.39], [-2923.14, -1422.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-3074.64, -1255.62], [-3080.74, -1248.57], [-3080.42, -1248.34], [-3080.82, -1247.81], [-3081.9, -1246.5], [-3081.51, -1246.18], [-3075.44, -1240.9], [-3073.91, -1242.74], [-3072.88, -1241.88], [-3066.84, -1249.11], [-3067.86, -1249.96], [-3074.64, -1255.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2662.17, -1300.46], [-2667.49, -1305.51], [-2672.69, -1300.05], [-2667.37, -1294.99], [-2662.17, -1300.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2846.4, -1487.23], [-2843.15, -1491.06], [-2840.84, -1489.11], [-2834.76, -1496.29], [-2843.91, -1504.0], [-2845.42, -1502.23], [-2848.42, -1504.75], [-2850.44, -1502.36], [-2853.59, -1505.02], [-2856.76, -1501.28], [-2853.5, -1498.53], [-2856.02, -1495.55], [-2855.53, -1495.14], [-2856.58, -1493.91], [-2855.96, -1493.39], [-2856.8, -1492.39], [-2853.94, -1489.99], [-2853.3, -1490.74], [-2850.8, -1488.63], [-2849.66, -1489.98], [-2846.4, -1487.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.194, "pop": 97, "jobs": 0}}, {"shape": {"outer": [[-2671.2, -1356.66], [-2677.66, -1362.32], [-2684.43, -1354.59], [-2677.96, -1348.93], [-2671.2, -1356.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2491.55, -1286.48], [-2498.26, -1292.21], [-2503.35, -1286.26], [-2496.64, -1280.53], [-2491.55, -1286.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2735.35, -1264.84], [-2728.4, -1258.98], [-2718.71, -1270.84], [-2725.32, -1275.51], [-2726.41, -1274.03], [-2728.8, -1273.25], [-2730.63, -1274.54], [-2734.68, -1269.89], [-2732.63, -1268.31], [-2735.35, -1264.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2881.62, -1013.85], [-2881.48, -1017.34], [-2879.87, -1017.27], [-2879.34, -1030.58], [-2891.26, -1031.06], [-2891.95, -1014.27], [-2881.62, -1013.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2467.24, -1308.99], [-2476.13, -1316.73], [-2484.38, -1307.26], [-2475.48, -1299.51], [-2467.24, -1308.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2631.56, -1128.13], [-2637.92, -1134.07], [-2646.45, -1125.0], [-2640.08, -1119.06], [-2631.56, -1128.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2944.36, -1316.7], [-2934.82, -1326.86], [-2945.85, -1337.16], [-2953.73, -1328.78], [-2952.08, -1327.24], [-2956.78, -1322.24], [-2951.98, -1317.75], [-2948.95, -1320.97], [-2944.36, -1316.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[-2839.86, -1356.66], [-2836.4, -1360.53], [-2833.95, -1358.33], [-2828.92, -1363.96], [-2838.18, -1372.24], [-2846.66, -1362.76], [-2839.86, -1356.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2684.31, -1206.95], [-2680.3, -1211.82], [-2685.73, -1216.3], [-2685.37, -1216.73], [-2690.24, -1220.72], [-2694.54, -1215.5], [-2692.74, -1214.03], [-2694.47, -1211.92], [-2690.87, -1208.96], [-2689.2, -1210.97], [-2684.31, -1206.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2919.55, -1377.89], [-2926.68, -1384.06], [-2937.99, -1371.07], [-2928.68, -1363.03], [-2918.77, -1374.42], [-2920.95, -1376.3], [-2919.55, -1377.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-2796.65, -1522.34], [-2803.84, -1528.43], [-2812.44, -1518.28], [-2811.69, -1517.65], [-2812.88, -1516.19], [-2809.0, -1513.07], [-2806.32, -1513.09], [-2805.27, -1512.2], [-2796.65, -1522.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2673.12, -1269.4], [-2670.42, -1272.45], [-2668.05, -1270.36], [-2663.81, -1275.15], [-2666.16, -1277.21], [-2662.4, -1281.46], [-2669.52, -1287.75], [-2680.21, -1275.67], [-2673.12, -1269.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-2862.0, -1501.58], [-2858.65, -1505.75], [-2856.56, -1504.07], [-2852.36, -1509.31], [-2854.43, -1510.98], [-2853.79, -1511.79], [-2861.43, -1518.18], [-2862.63, -1516.74], [-2864.62, -1518.45], [-2868.51, -1513.93], [-2867.93, -1513.48], [-2868.59, -1512.7], [-2867.02, -1511.41], [-2868.0, -1510.32], [-2864.52, -1507.49], [-2866.4, -1505.29], [-2866.23, -1502.79], [-2864.48, -1501.43], [-2862.0, -1501.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-3017.19, -1126.93], [-3023.38, -1132.31], [-3027.5, -1127.62], [-3021.31, -1122.25], [-3017.19, -1126.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2884.59, -1360.83], [-2891.57, -1367.24], [-2899.6, -1358.5], [-2892.62, -1352.09], [-2884.59, -1360.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2886.47, -1494.7], [-2892.94, -1500.2], [-2898.49, -1493.73], [-2892.01, -1488.21], [-2886.47, -1494.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-3072.04, -1299.2], [-3070.43, -1297.82], [-3069.79, -1298.56], [-3067.03, -1296.18], [-3066.76, -1296.49], [-3066.38, -1296.15], [-3061.03, -1302.32], [-3061.39, -1302.63], [-3060.64, -1303.49], [-3063.64, -1306.07], [-3062.94, -1306.87], [-3066.08, -1309.57], [-3067.06, -1308.44], [-3066.61, -1308.06], [-3072.22, -1301.59], [-3074.62, -1303.65], [-3079.8, -1297.67], [-3076.12, -1294.49], [-3072.04, -1299.2]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2813.12, -1017.49], [-2813.1, -1029.15], [-2818.71, -1029.17], [-2818.72, -1025.87], [-2822.95, -1025.88], [-2822.96, -1017.52], [-2813.12, -1017.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2850.03, -1336.27], [-2854.91, -1340.48], [-2859.54, -1335.11], [-2854.66, -1330.9], [-2850.03, -1336.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2727.34, -1454.73], [-2734.18, -1460.48], [-2739.21, -1454.54], [-2732.38, -1448.8], [-2727.34, -1454.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2724.62, -1226.47], [-2730.45, -1231.56], [-2736.03, -1225.19], [-2730.16, -1220.04], [-2724.62, -1226.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-3062.47, -1370.18], [-3065.41, -1372.7], [-3065.99, -1372.02], [-3068.77, -1374.4], [-3079.56, -1361.83], [-3071.6, -1355.05], [-3060.83, -1367.61], [-3063.06, -1369.51], [-3062.47, -1370.18]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-3032.56, -1394.81], [-3029.86, -1398.0], [-3027.04, -1395.62], [-3025.45, -1397.49], [-3025.09, -1397.19], [-3023.63, -1398.91], [-3022.29, -1397.79], [-3020.5, -1399.9], [-3021.8, -1401.0], [-3020.46, -1402.58], [-3020.79, -1402.86], [-3019.75, -1404.08], [-3026.87, -1410.07], [-3031.43, -1404.68], [-3032.57, -1405.63], [-3037.96, -1399.26], [-3036.1, -1397.7], [-3036.69, -1396.99], [-3034.53, -1395.17], [-3033.89, -1395.93], [-3032.56, -1394.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2668.28, -1216.54], [-2666.73, -1218.52], [-2665.24, -1217.35], [-2662.15, -1221.29], [-2672.75, -1229.61], [-2678.07, -1222.84], [-2674.08, -1219.7], [-2675.81, -1217.49], [-2668.93, -1212.1], [-2666.53, -1215.16], [-2668.28, -1216.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2592.16, -1213.91], [-2588.58, -1217.76], [-2597.69, -1226.05], [-2601.38, -1221.89], [-2592.16, -1213.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2598.76, -1348.27], [-2610.32, -1357.75], [-2616.86, -1349.84], [-2605.32, -1340.35], [-2598.76, -1348.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2647.27, -1320.1], [-2637.06, -1332.17], [-2647.87, -1341.25], [-2658.09, -1329.18], [-2647.27, -1320.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[-2471.16, -1279.73], [-2466.57, -1285.0], [-2464.73, -1283.4], [-2459.9, -1288.94], [-2462.64, -1291.33], [-2459.61, -1294.81], [-2466.06, -1300.44], [-2474.47, -1290.78], [-2472.65, -1289.2], [-2476.7, -1284.55], [-2471.16, -1279.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-3003.61, -1567.32], [-3010.47, -1573.04], [-3018.1, -1563.69], [-3014.57, -1560.78], [-3015.4, -1559.76], [-3012.19, -1557.12], [-3011.34, -1558.13], [-3003.61, -1567.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2726.55, -1379.45], [-2721.61, -1385.13], [-2719.37, -1383.21], [-2711.16, -1392.64], [-2718.86, -1399.28], [-2726.39, -1390.62], [-2727.66, -1391.7], [-2733.26, -1385.25], [-2726.55, -1379.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2690.94, -1417.16], [-2689.1, -1419.36], [-2686.98, -1417.61], [-2681.31, -1424.39], [-2683.05, -1425.83], [-2682.3, -1426.73], [-2691.75, -1434.56], [-2700.01, -1424.68], [-2690.94, -1417.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2835.53, -1036.18], [-2843.09, -1036.06], [-2843.01, -1030.93], [-2835.44, -1031.05], [-2835.53, -1036.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-3141.68, -1299.34], [-3140.22, -1301.08], [-3139.78, -1300.73], [-3134.43, -1307.13], [-3131.4, -1310.74], [-3137.51, -1315.85], [-3140.16, -1312.69], [-3140.68, -1313.12], [-3142.81, -1314.9], [-3146.92, -1309.98], [-3144.79, -1308.2], [-3146.41, -1306.27], [-3146.03, -1305.95], [-3147.49, -1304.19], [-3141.68, -1299.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2631.23, -1297.95], [-2635.76, -1301.88], [-2640.54, -1296.37], [-2636.01, -1292.44], [-2631.23, -1297.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2745.82, -1246.96], [-2751.4, -1251.64], [-2756.05, -1246.17], [-2750.47, -1241.47], [-2745.82, -1246.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2987.15, -1374.22], [-2994.1, -1380.09], [-3006.13, -1365.94], [-2999.18, -1360.07], [-2987.15, -1374.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-3044.34, -1374.48], [-3049.81, -1379.29], [-3054.73, -1373.74], [-3049.26, -1368.93], [-3044.34, -1374.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-3039.04, -1404.4], [-3033.4, -1411.49], [-3039.86, -1416.57], [-3038.38, -1418.44], [-3041.44, -1420.86], [-3042.64, -1419.34], [-3043.96, -1420.38], [-3050.79, -1411.77], [-3046.75, -1408.58], [-3045.82, -1409.75], [-3039.04, -1404.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-3107.45, -1314.91], [-3115.64, -1322.02], [-3119.64, -1317.4], [-3111.46, -1310.29], [-3107.45, -1314.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2631.1, -1196.99], [-2637.13, -1202.73], [-2640.28, -1199.42], [-2642.05, -1201.12], [-2645.36, -1197.64], [-2642.87, -1195.27], [-2646.67, -1191.28], [-2641.34, -1186.21], [-2631.1, -1196.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2641.38, -1157.52], [-2647.31, -1163.07], [-2652.67, -1157.35], [-2646.74, -1151.8], [-2641.38, -1157.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2827.92, -1545.49], [-2826.77, -1546.85], [-2823.39, -1543.95], [-2820.55, -1547.29], [-2823.92, -1550.17], [-2823.47, -1550.71], [-2830.22, -1556.35], [-2839.13, -1545.17], [-2836.34, -1542.75], [-2837.26, -1541.53], [-2831.52, -1536.74], [-2825.89, -1543.65], [-2827.92, -1545.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2912.02, -1670.34], [-2901.94, -1682.3], [-2912.15, -1690.88], [-2918.0, -1683.8], [-2914.06, -1680.49], [-2915.89, -1678.32], [-2913.26, -1676.11], [-2915.68, -1673.37], [-2912.02, -1670.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2937.18, -1141.75], [-2943.89, -1148.25], [-2950.52, -1141.44], [-2943.81, -1134.93], [-2937.18, -1141.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2848.08, -1232.46], [-2843.95, -1237.38], [-2842.51, -1236.18], [-2836.52, -1243.32], [-2838.34, -1244.83], [-2839.36, -1245.68], [-2838.75, -1246.42], [-2843.16, -1250.11], [-2848.53, -1243.72], [-2850.03, -1244.97], [-2849.47, -1245.64], [-2850.83, -1246.76], [-2851.84, -1247.61], [-2852.4, -1246.93], [-2852.84, -1247.29], [-2858.2, -1240.9], [-2848.08, -1232.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2768.65, -1224.98], [-2761.8, -1232.87], [-2760.16, -1231.45], [-2754.06, -1238.48], [-2759.35, -1243.08], [-2762.41, -1239.55], [-2764.76, -1241.61], [-2774.66, -1230.2], [-2768.65, -1224.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-3149.37, -1360.64], [-3152.44, -1363.27], [-3156.42, -1358.63], [-3153.34, -1356.0], [-3149.37, -1360.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2943.9, -1300.37], [-2949.27, -1304.99], [-2952.42, -1301.34], [-2947.06, -1296.71], [-2943.9, -1300.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2526.18, -1168.72], [-2521.57, -1174.36], [-2518.9, -1172.2], [-2513.84, -1178.4], [-2526.24, -1188.5], [-2531.72, -1181.77], [-2528.09, -1178.81], [-2532.26, -1173.68], [-2526.18, -1168.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-3129.23, -1305.92], [-3136.54, -1297.22], [-3137.24, -1296.37], [-3134.95, -1294.44], [-3134.23, -1295.29], [-3128.99, -1290.9], [-3121.96, -1299.84], [-3129.23, -1305.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2778.35, -1290.43], [-2768.88, -1301.3], [-2779.43, -1310.49], [-2790.35, -1297.96], [-2792.1, -1299.48], [-2795.25, -1295.88], [-2789.13, -1290.54], [-2784.53, -1295.82], [-2778.35, -1290.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[-3139.44, -1372.93], [-3149.58, -1380.93], [-3151.68, -1378.28], [-3153.43, -1379.66], [-3157.23, -1374.87], [-3145.34, -1365.49], [-3139.44, -1372.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-3056.26, -1129.32], [-3053.95, -1131.91], [-3053.18, -1131.22], [-3047.81, -1137.26], [-3051.04, -1140.12], [-3047.98, -1143.56], [-3053.35, -1148.3], [-3056.62, -1144.63], [-3057.98, -1145.82], [-3059.68, -1143.92], [-3062.45, -1146.37], [-3068.22, -1139.91], [-3056.26, -1129.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-2922.87, -1525.86], [-2929.44, -1531.26], [-2936.37, -1523.28], [-2929.8, -1517.89], [-2922.87, -1525.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2640.95, -1388.96], [-2648.48, -1395.55], [-2656.42, -1386.49], [-2648.89, -1379.89], [-2640.95, -1388.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-3105.61, -1272.08], [-3103.23, -1274.9], [-3102.93, -1274.65], [-3100.78, -1277.2], [-3101.06, -1277.45], [-3098.71, -1280.22], [-3103.37, -1284.18], [-3100.99, -1286.97], [-3104.0, -1289.53], [-3106.37, -1286.73], [-3106.9, -1287.17], [-3113.8, -1279.04], [-3105.61, -1272.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2847.46, -1308.98], [-2853.9, -1314.82], [-2861.87, -1306.1], [-2855.42, -1300.26], [-2847.46, -1308.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-3034.67, -1163.05], [-3041.14, -1168.51], [-3042.62, -1166.7], [-3043.46, -1167.39], [-3049.97, -1159.59], [-3041.69, -1152.81], [-3035.43, -1160.51], [-3036.32, -1161.31], [-3034.67, -1163.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2991.95, -1098.39], [-2987.71, -1103.7], [-2985.48, -1101.93], [-2980.17, -1108.58], [-2982.35, -1110.3], [-2981.23, -1111.7], [-2984.68, -1114.44], [-2983.93, -1115.38], [-2984.6, -1115.92], [-2983.55, -1117.24], [-2986.53, -1119.61], [-2987.56, -1118.32], [-2988.25, -1118.87], [-2997.58, -1107.19], [-2994.38, -1104.65], [-2996.51, -1102.0], [-2991.95, -1098.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2998.57, -1353.16], [-2992.89, -1348.45], [-2987.47, -1354.93], [-2989.68, -1356.76], [-2985.49, -1361.77], [-2981.74, -1358.65], [-2979.46, -1361.38], [-2983.2, -1364.49], [-2981.54, -1366.47], [-2987.92, -1371.78], [-2996.48, -1361.56], [-2993.57, -1359.13], [-2998.57, -1353.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-2614.17, -1410.29], [-2620.57, -1416.27], [-2625.92, -1410.55], [-2619.54, -1404.57], [-2614.17, -1410.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-3008.58, -1246.66], [-2999.98, -1257.22], [-3008.16, -1263.73], [-3016.78, -1253.19], [-3016.29, -1252.8], [-3017.74, -1250.99], [-3014.46, -1248.38], [-3013.02, -1250.19], [-3008.58, -1246.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2980.77, -1082.12], [-2976.9, -1078.81], [-2972.24, -1084.22], [-2976.11, -1087.53], [-2980.77, -1082.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2897.16, -1015.95], [-2896.8, -1019.71], [-2895.77, -1019.6], [-2894.69, -1030.6], [-2907.45, -1031.85], [-2908.14, -1024.77], [-2905.46, -1024.51], [-2906.21, -1016.83], [-2897.16, -1015.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2520.99, -1197.5], [-2527.03, -1202.92], [-2531.05, -1198.45], [-2525.0, -1193.03], [-2520.99, -1197.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2635.73, -1304.1], [-2641.7, -1309.27], [-2646.57, -1303.65], [-2640.6, -1298.48], [-2635.73, -1304.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2583.95, -1128.34], [-2589.56, -1133.05], [-2593.63, -1128.19], [-2588.02, -1123.48], [-2583.95, -1128.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2952.7, -1423.88], [-2962.07, -1431.0], [-2969.77, -1420.85], [-2960.41, -1413.74], [-2952.7, -1423.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2506.4, -1343.01], [-2511.33, -1347.23], [-2513.14, -1345.1], [-2514.26, -1346.05], [-2522.51, -1336.41], [-2516.47, -1331.24], [-2506.4, -1343.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-3068.82, -1352.75], [-3062.05, -1346.64], [-3053.3, -1356.62], [-3056.98, -1359.84], [-3056.35, -1360.54], [-3060.62, -1364.29], [-3061.24, -1363.58], [-3061.68, -1363.97], [-3070.56, -1354.28], [-3068.82, -1352.75]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2562.23, -1364.87], [-2566.77, -1369.12], [-2571.74, -1363.83], [-2567.2, -1359.57], [-2562.23, -1364.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2669.69, -1466.48], [-2666.02, -1470.37], [-2668.42, -1472.63], [-2666.84, -1474.31], [-2674.66, -1481.63], [-2681.1, -1474.78], [-2673.6, -1467.78], [-2672.42, -1469.02], [-2669.69, -1466.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2878.56, -1376.3], [-2884.18, -1381.01], [-2888.81, -1375.48], [-2883.2, -1370.77], [-2878.56, -1376.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2742.93, -1271.72], [-2749.56, -1277.56], [-2759.38, -1266.4], [-2752.75, -1260.56], [-2742.93, -1271.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2608.74, -1235.01], [-2616.16, -1226.69], [-2614.06, -1224.7], [-2616.34, -1222.05], [-2611.92, -1218.16], [-2609.47, -1220.79], [-2605.59, -1217.49], [-2601.63, -1221.88], [-2603.98, -1224.19], [-2600.62, -1228.07], [-2608.74, -1235.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2562.89, -1390.74], [-2570.47, -1397.43], [-2578.82, -1388.05], [-2575.15, -1384.81], [-2576.4, -1383.41], [-2572.48, -1379.95], [-2562.89, -1390.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2700.33, -1255.37], [-2710.09, -1263.88], [-2711.66, -1262.09], [-2714.0, -1264.13], [-2718.6, -1258.9], [-2716.46, -1257.03], [-2718.81, -1254.36], [-2713.59, -1249.8], [-2716.67, -1246.31], [-2711.94, -1242.17], [-2700.33, -1255.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[-2523.21, -1163.01], [-2529.17, -1168.6], [-2537.76, -1159.44], [-2531.79, -1153.84], [-2523.21, -1163.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2943.84, -1399.15], [-2952.83, -1406.49], [-2955.29, -1403.48], [-2957.28, -1405.1], [-2965.05, -1395.65], [-2957.62, -1389.58], [-2959.85, -1386.87], [-2956.31, -1383.98], [-2943.84, -1399.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[-3096.57, -1399.19], [-3104.71, -1406.1], [-3113.23, -1396.13], [-3099.92, -1384.83], [-3094.42, -1391.27], [-3099.59, -1395.65], [-3096.57, -1399.19]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2565.74, -1142.7], [-2572.52, -1148.68], [-2583.6, -1136.09], [-2576.83, -1130.11], [-2565.74, -1142.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-3047.24, -1480.19], [-3057.95, -1488.96], [-3065.71, -1479.5], [-3055.01, -1470.73], [-3047.24, -1480.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2848.65, -1045.3], [-2849.25, -1058.98], [-2859.72, -1058.52], [-2859.64, -1056.76], [-2861.84, -1056.66], [-2861.53, -1049.58], [-2859.41, -1049.67], [-2859.34, -1048.06], [-2852.37, -1048.36], [-2852.23, -1045.14], [-2848.65, -1045.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2574.48, -1262.72], [-2565.26, -1273.97], [-2574.52, -1281.68], [-2583.9, -1270.28], [-2574.48, -1262.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2574.75, -1114.67], [-2577.45, -1119.64], [-2582.19, -1117.07], [-2579.5, -1112.1], [-2574.75, -1114.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2505.7, -1295.14], [-2511.5, -1288.52], [-2507.96, -1285.36], [-2501.97, -1292.07], [-2505.7, -1295.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2674.39, -1332.46], [-2679.08, -1336.22], [-2683.47, -1330.75], [-2678.78, -1326.99], [-2674.39, -1332.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2682.89, -1154.15], [-2675.34, -1147.84], [-2663.29, -1161.14], [-2670.76, -1167.71], [-2682.89, -1154.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2735.76, -1386.9], [-2741.21, -1391.45], [-2746.54, -1385.07], [-2741.1, -1380.51], [-2735.76, -1386.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2459.61, -1260.87], [-2464.85, -1265.09], [-2466.27, -1263.33], [-2467.64, -1264.43], [-2475.87, -1254.23], [-2468.38, -1248.18], [-2460.43, -1258.05], [-2461.32, -1258.76], [-2459.61, -1260.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2862.43, -1463.15], [-2856.97, -1458.58], [-2852.68, -1463.96], [-2858.24, -1468.37], [-2862.43, -1463.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2811.49, -1280.02], [-2819.58, -1287.33], [-2829.05, -1276.92], [-2820.95, -1269.61], [-2811.49, -1280.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-3061.63, -1264.81], [-3066.69, -1258.53], [-3059.85, -1253.07], [-3054.82, -1259.34], [-3061.63, -1264.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2542.41, -1292.45], [-2536.7, -1299.51], [-2539.9, -1302.09], [-2538.6, -1303.71], [-2543.1, -1307.34], [-2545.16, -1304.78], [-2549.75, -1308.48], [-2555.91, -1300.84], [-2545.61, -1292.53], [-2544.39, -1294.05], [-2542.41, -1292.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2589.55, -1162.96], [-2597.56, -1170.23], [-2604.01, -1163.12], [-2601.0, -1160.38], [-2604.54, -1156.49], [-2599.54, -1151.96], [-2589.55, -1162.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2499.03, -1199.32], [-2493.44, -1205.72], [-2496.23, -1208.15], [-2495.14, -1209.39], [-2504.78, -1217.82], [-2512.48, -1209.0], [-2505.55, -1202.96], [-2504.54, -1204.13], [-2499.03, -1199.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2840.61, -1452.79], [-2849.25, -1459.94], [-2853.1, -1455.27], [-2844.46, -1448.14], [-2840.61, -1452.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2608.42, -1154.11], [-2612.25, -1157.74], [-2619.65, -1149.91], [-2615.82, -1146.29], [-2608.42, -1154.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2809.98, -1532.15], [-2817.26, -1538.26], [-2819.15, -1536.02], [-2820.78, -1537.33], [-2827.28, -1529.82], [-2818.29, -1522.26], [-2809.98, -1532.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2463.38, -1243.35], [-2471.19, -1250.17], [-2476.84, -1243.72], [-2478.98, -1245.6], [-2481.36, -1242.89], [-2479.15, -1240.95], [-2481.32, -1238.48], [-2471.09, -1229.51], [-2464.49, -1237.05], [-2466.98, -1239.23], [-2463.38, -1243.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-2942.45, -1377.29], [-2937.31, -1383.55], [-2939.77, -1385.56], [-2937.59, -1388.21], [-2945.19, -1394.42], [-2953.49, -1384.31], [-2945.67, -1377.93], [-2944.7, -1379.11], [-2942.45, -1377.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2652.32, -1145.48], [-2659.54, -1151.85], [-2667.96, -1142.38], [-2660.74, -1136.01], [-2652.32, -1145.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2991.04, -1574.62], [-2986.78, -1580.07], [-2990.94, -1583.33], [-2998.7, -1589.89], [-3003.84, -1583.39], [-2996.04, -1576.83], [-2995.21, -1577.89], [-2991.04, -1574.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2802.06, -1317.07], [-2799.39, -1320.37], [-2796.89, -1318.36], [-2789.13, -1327.95], [-2797.49, -1334.67], [-2807.93, -1321.79], [-2802.06, -1317.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2955.72, -1314.12], [-2961.0, -1319.25], [-2965.57, -1314.52], [-2960.28, -1309.4], [-2955.72, -1314.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2679.16, -1405.01], [-2672.39, -1412.47], [-2671.58, -1411.74], [-2665.41, -1418.55], [-2672.7, -1425.17], [-2685.65, -1410.89], [-2679.16, -1405.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2856.94, -1315.28], [-2862.48, -1320.33], [-2869.34, -1312.86], [-2863.8, -1307.81], [-2856.94, -1315.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2625.1, -1172.02], [-2630.39, -1176.73], [-2634.68, -1171.92], [-2629.39, -1167.2], [-2625.1, -1172.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2630.84, -1401.95], [-2635.98, -1406.45], [-2637.36, -1404.86], [-2638.51, -1405.88], [-2646.11, -1397.18], [-2639.82, -1391.68], [-2630.84, -1401.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2533.85, -1172.92], [-2536.98, -1175.69], [-2546.02, -1165.45], [-2540.97, -1160.99], [-2532.8, -1170.24], [-2534.72, -1171.94], [-2533.85, -1172.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2759.11, -1401.92], [-2763.95, -1406.43], [-2767.66, -1402.47], [-2762.82, -1397.97], [-2759.11, -1401.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2920.9, -1429.21], [-2914.84, -1435.78], [-2922.9, -1443.15], [-2930.54, -1434.84], [-2926.75, -1431.37], [-2925.16, -1433.1], [-2920.9, -1429.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2832.24, -1332.63], [-2837.03, -1337.04], [-2840.56, -1333.2], [-2835.78, -1328.79], [-2832.24, -1332.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-3094.03, -1432.44], [-3100.17, -1437.94], [-3104.38, -1433.25], [-3098.26, -1427.73], [-3094.03, -1432.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-3035.21, -1102.75], [-3041.98, -1108.63], [-3052.33, -1096.7], [-3045.57, -1090.83], [-3035.21, -1102.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2625.1, -1320.21], [-2632.46, -1326.29], [-2640.41, -1316.75], [-2633.04, -1310.67], [-2625.1, -1320.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2661.57, -1350.32], [-2668.65, -1355.93], [-2675.71, -1347.06], [-2668.63, -1341.47], [-2661.57, -1350.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2498.79, -1327.85], [-2504.84, -1333.52], [-2506.85, -1331.38], [-2510.05, -1334.37], [-2515.56, -1328.49], [-2504.68, -1318.29], [-2498.93, -1324.42], [-2500.56, -1325.96], [-2498.79, -1327.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2896.53, -1394.66], [-2902.73, -1399.56], [-2907.82, -1393.11], [-2901.62, -1388.23], [-2896.53, -1394.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2796.92, -1465.77], [-2807.66, -1474.33], [-2810.36, -1470.93], [-2814.2, -1473.98], [-2819.34, -1467.55], [-2811.39, -1461.21], [-2812.97, -1459.21], [-2806.35, -1453.94], [-2796.92, -1465.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[-2605.85, -1429.02], [-2613.37, -1435.5], [-2620.51, -1427.2], [-2612.99, -1420.73], [-2605.85, -1429.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2836.47, -1013.55], [-2837.08, -1027.31], [-2846.97, -1026.87], [-2846.37, -1013.11], [-2836.47, -1013.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2619.03, -1361.52], [-2616.45, -1359.27], [-2612.62, -1363.63], [-2617.71, -1368.08], [-2616.05, -1369.98], [-2617.02, -1370.84], [-2616.47, -1371.47], [-2621.03, -1375.45], [-2631.28, -1363.81], [-2623.22, -1356.77], [-2619.03, -1361.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-3083.13, -1297.83], [-3089.67, -1303.38], [-3094.43, -1297.82], [-3087.89, -1292.27], [-3083.13, -1297.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2717.43, -1440.19], [-2711.29, -1447.76], [-2717.0, -1452.35], [-2718.11, -1450.99], [-2722.4, -1454.43], [-2728.83, -1446.49], [-2722.48, -1441.37], [-2721.07, -1443.12], [-2717.43, -1440.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-3075.2, -1399.4], [-3079.9, -1403.39], [-3085.95, -1396.27], [-3081.24, -1392.28], [-3075.2, -1399.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2780.44, -1403.36], [-2784.84, -1407.59], [-2787.49, -1404.83], [-2789.05, -1406.34], [-2794.81, -1400.36], [-2788.85, -1394.62], [-2780.44, -1403.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2894.49, -1464.68], [-2891.48, -1468.36], [-2889.97, -1467.13], [-2882.46, -1476.31], [-2890.2, -1482.6], [-2893.25, -1478.86], [-2894.06, -1479.53], [-2901.54, -1470.4], [-2894.49, -1464.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2606.16, -1110.52], [-2613.4, -1117.01], [-2622.86, -1106.53], [-2615.61, -1100.03], [-2606.16, -1110.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2550.51, -1359.56], [-2548.79, -1361.48], [-2547.63, -1360.44], [-2545.38, -1362.94], [-2543.89, -1361.61], [-2535.96, -1370.43], [-2540.27, -1374.31], [-2542.64, -1371.68], [-2546.68, -1375.32], [-2556.23, -1364.71], [-2550.51, -1359.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-3088.6, -1314.64], [-3083.73, -1320.23], [-3086.91, -1322.98], [-3085.59, -1324.49], [-3091.18, -1329.33], [-3099.2, -1320.12], [-3093.67, -1315.32], [-3091.82, -1317.44], [-3088.6, -1314.64]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2745.65, -1547.06], [-2757.06, -1556.94], [-2763.22, -1549.82], [-2759.32, -1546.45], [-2761.87, -1543.49], [-2754.38, -1537.0], [-2745.65, -1547.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2600.07, -1401.76], [-2605.18, -1405.99], [-2611.27, -1398.65], [-2606.15, -1394.4], [-2600.07, -1401.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2501.13, -1268.32], [-2509.85, -1275.38], [-2516.43, -1267.25], [-2507.71, -1260.19], [-2501.13, -1268.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-3124.09, -1332.42], [-3132.87, -1339.4], [-3137.92, -1333.04], [-3129.14, -1326.07], [-3124.09, -1332.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-3051.97, -1242.01], [-3054.5, -1244.5], [-3055.92, -1243.05], [-3060.14, -1247.2], [-3068.71, -1238.47], [-3066.51, -1236.3], [-3068.43, -1234.34], [-3062.98, -1228.99], [-3056.11, -1235.99], [-3057.02, -1236.87], [-3051.97, -1242.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2719.31, -1499.66], [-2725.93, -1505.15], [-2732.52, -1497.2], [-2725.9, -1491.71], [-2719.31, -1499.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2880.8, -1660.37], [-2884.6, -1663.45], [-2892.97, -1653.33], [-2885.09, -1646.92], [-2878.37, -1655.02], [-2882.45, -1658.34], [-2880.8, -1660.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2681.9, -1450.05], [-2687.25, -1453.96], [-2691.25, -1448.48], [-2679.93, -1440.22], [-2676.55, -1444.84], [-2682.53, -1449.2], [-2681.9, -1450.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2730.08, -1378.86], [-2736.03, -1383.81], [-2741.56, -1377.15], [-2735.61, -1372.21], [-2730.08, -1378.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2722.37, -1208.95], [-2728.65, -1214.28], [-2736.89, -1204.81], [-2733.83, -1202.21], [-2736.32, -1199.28], [-2730.93, -1194.7], [-2729.63, -1193.58], [-2719.43, -1205.3], [-2722.91, -1208.32], [-2722.37, -1208.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2928.16, -1020.9], [-2927.86, -1023.05], [-2925.16, -1022.66], [-2924.2, -1029.28], [-2937.56, -1031.2], [-2938.82, -1022.44], [-2928.16, -1020.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2897.04, -1347.4], [-2903.99, -1353.3], [-2911.1, -1344.92], [-2901.29, -1336.6], [-2896.99, -1341.65], [-2899.85, -1344.08], [-2897.04, -1347.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2923.29, -1415.19], [-2927.87, -1415.78], [-2928.72, -1409.15], [-2924.14, -1408.56], [-2923.29, -1415.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2644.2, -1263.44], [-2641.47, -1266.66], [-2640.44, -1265.77], [-2635.9, -1271.11], [-2646.77, -1280.35], [-2659.18, -1265.76], [-2648.35, -1256.54], [-2643.2, -1262.59], [-2644.2, -1263.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[-2805.25, -1275.23], [-2809.11, -1278.62], [-2818.17, -1268.39], [-2811.05, -1262.14], [-2803.14, -1271.09], [-2806.39, -1273.94], [-2805.25, -1275.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-3081.59, -1427.74], [-3087.68, -1433.3], [-3093.97, -1426.41], [-3087.89, -1420.85], [-3081.59, -1427.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-3082.08, -1404.49], [-3088.02, -1409.19], [-3092.14, -1403.97], [-3086.21, -1399.27], [-3082.08, -1404.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2575.72, -1195.03], [-2569.96, -1190.24], [-2565.73, -1195.28], [-2564.7, -1194.47], [-2560.4, -1199.8], [-2567.14, -1205.39], [-2575.72, -1195.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-3015.88, -1082.59], [-3022.54, -1088.37], [-3030.22, -1079.5], [-3023.55, -1073.74], [-3015.88, -1082.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2980.33, -1093.41], [-2978.39, -1095.68], [-2976.65, -1094.2], [-2975.93, -1095.04], [-2974.74, -1094.02], [-2967.92, -1101.99], [-2976.41, -1109.2], [-2979.6, -1105.46], [-2977.67, -1103.83], [-2981.26, -1099.63], [-2980.67, -1099.14], [-2983.37, -1095.98], [-2980.33, -1093.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2779.09, -1528.04], [-2782.38, -1531.31], [-2787.74, -1525.92], [-2784.46, -1522.65], [-2779.09, -1528.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2679.15, -1338.76], [-2688.08, -1346.68], [-2692.23, -1342.0], [-2694.21, -1343.75], [-2697.39, -1340.16], [-2686.48, -1330.49], [-2679.15, -1338.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-3062.48, -1403.39], [-3067.93, -1408.1], [-3071.92, -1403.49], [-3066.46, -1398.78], [-3062.48, -1403.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2779.56, -1418.36], [-2787.69, -1425.19], [-2792.11, -1419.94], [-2783.98, -1413.1], [-2779.56, -1418.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2505.11, -1315.76], [-2510.29, -1309.89], [-2506.67, -1306.9], [-2501.57, -1312.69], [-2505.11, -1315.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-3045.7, -1420.75], [-3059.78, -1432.81], [-3065.84, -1425.78], [-3060.62, -1421.31], [-3061.16, -1420.68], [-3052.3, -1413.1], [-3045.7, -1420.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2898.75, -1486.46], [-2905.17, -1492.0], [-2907.41, -1489.4], [-2909.2, -1490.94], [-2917.16, -1481.71], [-2906.47, -1472.49], [-2898.34, -1481.93], [-2900.82, -1484.07], [-2898.75, -1486.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-2738.29, -1251.94], [-2733.28, -1247.05], [-2728.95, -1251.7], [-2734.08, -1256.47], [-2738.29, -1251.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2962.67, -1061.62], [-2970.16, -1068.01], [-2975.32, -1061.82], [-2967.84, -1055.45], [-2966.07, -1053.97], [-2962.14, -1058.65], [-2963.92, -1060.13], [-2962.67, -1061.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2702.21, -1442.33], [-2705.7, -1445.18], [-2707.16, -1443.39], [-2708.37, -1444.38], [-2714.74, -1436.59], [-2704.61, -1428.36], [-2698.19, -1436.21], [-2703.61, -1440.62], [-2702.21, -1442.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2701.45, -1483.47], [-2706.32, -1487.78], [-2710.78, -1482.78], [-2705.9, -1478.45], [-2701.45, -1483.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-3094.97, -1374.01], [-3093.03, -1376.49], [-3091.71, -1375.46], [-3084.65, -1384.49], [-3092.07, -1390.25], [-3101.06, -1378.74], [-3094.97, -1374.01]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2772.34, -1426.26], [-2770.56, -1428.4], [-2770.52, -1428.37], [-2765.39, -1434.33], [-2767.14, -1435.77], [-2766.52, -1436.52], [-2767.09, -1437.0], [-2765.92, -1438.3], [-2774.19, -1445.71], [-2779.89, -1439.34], [-2777.94, -1437.58], [-2781.23, -1433.63], [-2772.34, -1426.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2559.17, -1122.58], [-2552.54, -1129.97], [-2561.1, -1137.65], [-2570.22, -1127.48], [-2565.72, -1123.44], [-2563.23, -1126.23], [-2559.17, -1122.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2789.24, -1515.91], [-2793.05, -1519.2], [-2802.31, -1508.46], [-2793.93, -1501.22], [-2785.86, -1510.58], [-2790.43, -1514.53], [-2789.24, -1515.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2867.47, -1045.19], [-2867.63, -1048.39], [-2865.36, -1048.5], [-2865.92, -1059.9], [-2873.61, -1059.52], [-2873.53, -1057.71], [-2876.63, -1057.57], [-2876.13, -1047.31], [-2872.23, -1047.5], [-2872.11, -1044.97], [-2867.47, -1045.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2810.46, -1447.49], [-2825.22, -1459.72], [-2830.63, -1453.24], [-2815.86, -1441.01], [-2810.46, -1447.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-3084.61, -1442.71], [-3078.2, -1450.61], [-3081.15, -1453.0], [-3082.01, -1451.95], [-3085.64, -1454.9], [-3090.11, -1449.39], [-3091.98, -1450.91], [-3094.35, -1448.0], [-3089.91, -1444.39], [-3088.63, -1445.97], [-3084.61, -1442.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2807.08, -1342.39], [-2810.65, -1345.74], [-2819.73, -1336.17], [-2812.57, -1329.43], [-2804.4, -1338.05], [-2807.98, -1341.44], [-2807.08, -1342.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2565.26, -1218.41], [-2568.65, -1221.68], [-2573.61, -1216.55], [-2570.23, -1213.28], [-2565.26, -1218.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2979.21, -1535.25], [-2974.21, -1541.21], [-2976.96, -1543.35], [-2974.28, -1546.67], [-2978.15, -1550.04], [-2979.66, -1548.27], [-2980.23, -1548.81], [-2981.42, -1547.42], [-2984.67, -1550.11], [-2990.04, -1543.47], [-2986.48, -1540.7], [-2987.8, -1539.14], [-2984.48, -1536.49], [-2982.94, -1538.32], [-2979.21, -1535.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2730.36, -1283.38], [-2734.87, -1287.07], [-2737.25, -1284.15], [-2740.9, -1287.13], [-2746.39, -1280.44], [-2738.23, -1273.76], [-2730.36, -1283.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2591.04, -1093.4], [-2600.84, -1101.62], [-2608.29, -1092.74], [-2598.5, -1084.52], [-2591.04, -1093.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2587.72, -1098.56], [-2583.01, -1104.44], [-2590.12, -1110.15], [-2595.02, -1104.04], [-2597.06, -1105.68], [-2599.09, -1103.14], [-2587.96, -1094.22], [-2585.75, -1096.97], [-2587.72, -1098.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2971.96, -1458.85], [-2965.42, -1466.3], [-2964.12, -1465.16], [-2957.6, -1472.58], [-2968.8, -1482.42], [-2975.88, -1474.37], [-2974.68, -1473.31], [-2976.66, -1471.05], [-2973.48, -1468.26], [-2977.48, -1463.71], [-2971.96, -1458.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-3030.44, -1281.99], [-3038.48, -1272.17], [-3037.59, -1271.44], [-3039.04, -1269.68], [-3038.13, -1268.95], [-3038.32, -1268.71], [-3034.05, -1265.24], [-3032.5, -1267.13], [-3031.22, -1266.1], [-3023.1, -1276.02], [-3030.44, -1281.99]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2633.5, -1455.56], [-2643.49, -1463.77], [-2647.05, -1459.44], [-2644.59, -1457.43], [-2647.86, -1453.45], [-2640.32, -1447.26], [-2633.5, -1455.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2824.42, -1014.11], [-2824.97, -1030.97], [-2834.83, -1030.64], [-2834.27, -1013.78], [-2824.42, -1014.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2495.12, -1305.84], [-2491.6, -1309.95], [-2488.83, -1307.57], [-2477.84, -1320.4], [-2485.96, -1327.36], [-2497.1, -1314.36], [-2496.33, -1313.71], [-2499.71, -1309.77], [-2495.12, -1305.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-2733.8, -1474.01], [-2743.69, -1482.48], [-2748.8, -1476.54], [-2738.9, -1468.05], [-2733.8, -1474.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2994.65, -1547.26], [-2992.6, -1549.79], [-2990.46, -1548.18], [-2986.42, -1553.19], [-2988.68, -1555.02], [-2987.51, -1556.51], [-2997.89, -1564.72], [-3004.94, -1555.69], [-3001.38, -1552.77], [-3002.31, -1551.63], [-2998.96, -1548.88], [-2998.01, -1550.02], [-2994.65, -1547.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2950.85, -1528.2], [-2959.3, -1518.1], [-2956.18, -1515.45], [-2957.41, -1514.0], [-2949.94, -1507.66], [-2940.27, -1519.24], [-2950.85, -1528.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-3114.67, -1352.9], [-3119.8, -1357.36], [-3121.9, -1354.94], [-3122.85, -1355.77], [-3130.25, -1347.3], [-3121.13, -1339.38], [-3113.96, -1347.58], [-3117.01, -1350.22], [-3114.67, -1352.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2941.0, -1032.07], [-2949.41, -1032.89], [-2950.69, -1019.9], [-2942.29, -1019.06], [-2941.0, -1032.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-3089.51, -1278.73], [-3092.04, -1275.93], [-3093.49, -1277.21], [-3095.55, -1279.01], [-3096.24, -1278.24], [-3097.27, -1277.05], [-3105.27, -1267.4], [-3098.18, -1261.4], [-3096.35, -1263.43], [-3095.34, -1262.66], [-3085.3, -1274.9], [-3085.66, -1275.22], [-3089.51, -1278.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2676.36, -1234.3], [-2685.98, -1242.62], [-2692.57, -1235.04], [-2686.64, -1229.91], [-2689.32, -1226.84], [-2683.56, -1221.85], [-2679.37, -1226.66], [-2681.45, -1228.46], [-2676.36, -1234.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2535.34, -1243.15], [-2543.45, -1234.0], [-2536.49, -1228.02], [-2532.49, -1232.3], [-2530.72, -1230.83], [-2528.08, -1233.83], [-2530.06, -1235.7], [-2528.69, -1237.26], [-2535.34, -1243.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-3056.71, -1111.23], [-3062.76, -1116.49], [-3067.08, -1111.55], [-3061.02, -1106.29], [-3056.71, -1111.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2747.58, -1459.38], [-2745.6, -1461.72], [-2744.33, -1460.65], [-2740.47, -1465.21], [-2750.62, -1473.82], [-2756.47, -1466.91], [-2747.58, -1459.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2913.98, -1030.64], [-2913.68, -1032.61], [-2908.72, -1031.84], [-2907.79, -1037.85], [-2914.65, -1038.91], [-2915.57, -1032.95], [-2919.62, -1033.58], [-2921.57, -1020.99], [-2918.88, -1020.58], [-2919.2, -1018.52], [-2913.07, -1017.58], [-2911.11, -1030.19], [-2913.98, -1030.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-3052.46, -1271.91], [-3058.87, -1277.66], [-3064.3, -1271.63], [-3057.88, -1265.87], [-3052.46, -1271.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2880.1, -1450.61], [-2877.75, -1453.42], [-2875.21, -1451.3], [-2871.68, -1455.5], [-2874.23, -1457.62], [-2872.88, -1459.23], [-2882.5, -1467.26], [-2889.74, -1458.65], [-2880.1, -1450.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-3156.86, -1383.43], [-3163.47, -1388.93], [-3174.92, -1375.18], [-3168.32, -1369.68], [-3156.86, -1383.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2996.97, -1460.47], [-3007.62, -1469.83], [-3010.42, -1466.64], [-3006.49, -1463.17], [-3010.1, -1459.07], [-3003.39, -1453.17], [-2996.97, -1460.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2903.29, -1362.37], [-2910.9, -1368.84], [-2921.75, -1356.2], [-2914.14, -1349.73], [-2903.29, -1362.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2966.36, -1411.99], [-2973.59, -1417.95], [-2982.84, -1406.72], [-2975.61, -1400.77], [-2966.36, -1411.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2553.53, -1187.59], [-2557.38, -1191.24], [-2566.05, -1182.08], [-2557.45, -1173.94], [-2550.3, -1181.49], [-2555.05, -1185.98], [-2553.53, -1187.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2686.81, -1243.25], [-2696.89, -1252.23], [-2697.85, -1251.17], [-2700.18, -1253.25], [-2705.07, -1247.8], [-2702.46, -1245.48], [-2706.67, -1240.78], [-2696.86, -1232.04], [-2686.81, -1243.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-2649.76, -1463.29], [-2657.3, -1470.32], [-2665.58, -1461.52], [-2662.54, -1458.68], [-2664.2, -1456.91], [-2659.71, -1452.7], [-2649.76, -1463.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-3022.62, -1251.68], [-3019.46, -1255.45], [-3018.51, -1254.65], [-3015.66, -1258.05], [-3015.5, -1257.92], [-3013.17, -1260.7], [-3013.49, -1260.96], [-3011.1, -1263.8], [-3012.28, -1264.78], [-3011.1, -1266.17], [-3015.67, -1269.99], [-3016.91, -1268.51], [-3019.61, -1270.76], [-3023.58, -1266.03], [-3023.22, -1265.74], [-3026.79, -1261.48], [-3023.51, -1258.74], [-3026.63, -1255.03], [-3022.62, -1251.68]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2705.64, -1235.25], [-2712.0, -1240.73], [-2717.34, -1234.52], [-2710.99, -1229.05], [-2705.64, -1235.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2778.14, -1317.59], [-2785.04, -1323.47], [-2786.69, -1321.56], [-2787.54, -1322.29], [-2798.48, -1309.55], [-2790.72, -1302.94], [-2778.14, -1317.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2949.4, -1338.94], [-2958.17, -1346.81], [-2965.9, -1338.26], [-2957.12, -1330.38], [-2949.4, -1338.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2777.11, -1488.22], [-2773.82, -1492.08], [-2773.25, -1491.58], [-2769.85, -1495.55], [-2770.43, -1496.04], [-2768.0, -1498.87], [-2770.38, -1500.96], [-2766.51, -1505.52], [-2769.23, -1508.16], [-2769.67, -1507.65], [-2770.54, -1508.38], [-2772.01, -1506.64], [-2772.89, -1507.43], [-2784.54, -1494.19], [-2777.11, -1488.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2843.03, -1439.98], [-2850.78, -1446.85], [-2860.07, -1436.47], [-2857.05, -1433.78], [-2857.96, -1432.75], [-2853.23, -1428.56], [-2843.03, -1439.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2643.94, -1140.62], [-2642.75, -1141.91], [-2645.38, -1144.29], [-2648.27, -1141.14], [-2650.37, -1143.04], [-2658.49, -1134.13], [-2649.82, -1126.28], [-2640.0, -1137.05], [-2643.94, -1140.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2878.45, -1505.14], [-2883.9, -1509.7], [-2887.19, -1505.76], [-2881.75, -1501.21], [-2878.45, -1505.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2682.47, -1322.8], [-2688.09, -1327.42], [-2694.76, -1319.29], [-2689.14, -1314.69], [-2682.47, -1322.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-3146.97, -1359.02], [-3148.75, -1360.57], [-3152.94, -1355.74], [-3150.49, -1353.61], [-3146.9, -1357.74], [-3146.3, -1358.44], [-3146.97, -1359.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-2863.19, -1015.53], [-2864.36, -1031.38], [-2876.25, -1030.5], [-2875.08, -1014.64], [-2863.19, -1015.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-2581.84, -1318.51], [-2578.65, -1322.37], [-2576.72, -1320.78], [-2572.77, -1325.56], [-2581.9, -1333.09], [-2583.4, -1331.27], [-2586.86, -1334.12], [-2590.77, -1329.37], [-2587.4, -1326.59], [-2589.11, -1324.5], [-2581.84, -1318.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2553.58, -1382.85], [-2558.53, -1387.04], [-2567.36, -1376.68], [-2559.14, -1369.7], [-2551.65, -1378.48], [-2554.94, -1381.26], [-2553.58, -1382.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2714.03, -1362.9], [-2698.67, -1381.49], [-2706.2, -1387.72], [-2711.88, -1380.86], [-2714.29, -1382.84], [-2719.34, -1376.72], [-2716.86, -1374.68], [-2721.49, -1369.06], [-2714.03, -1362.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.208, "pop": 104, "jobs": 0}}, {"shape": {"outer": [[-2939.35, -1549.71], [-2944.33, -1553.83], [-2946.62, -1551.02], [-2941.64, -1546.91], [-2939.35, -1549.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2929.94, -1404.3], [-2934.89, -1408.71], [-2937.73, -1405.51], [-2932.77, -1401.11], [-2929.94, -1404.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2862.72, -1237.5], [-2872.66, -1245.73], [-2876.85, -1240.71], [-2866.9, -1232.46], [-2862.72, -1237.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2737.22, -1414.34], [-2744.18, -1420.61], [-2752.84, -1411.04], [-2745.89, -1404.77], [-2737.22, -1414.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2625.18, -1159.44], [-2631.47, -1165.11], [-2636.32, -1159.72], [-2630.02, -1154.06], [-2625.18, -1159.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2613.48, -1310.6], [-2620.52, -1316.02], [-2629.84, -1303.99], [-2622.8, -1298.57], [-2613.48, -1310.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2975.5, -1479.9], [-2970.46, -1485.83], [-2978.68, -1492.81], [-2978.53, -1492.99], [-2981.71, -1495.7], [-2989.4, -1486.64], [-2985.76, -1483.55], [-2984.14, -1485.47], [-2979.2, -1481.28], [-2978.33, -1482.3], [-2975.5, -1479.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2904.68, -1413.71], [-2898.27, -1420.59], [-2900.89, -1423.0], [-2897.89, -1426.21], [-2905.48, -1433.22], [-2907.93, -1430.58], [-2909.65, -1432.18], [-2916.99, -1424.28], [-2913.06, -1420.64], [-2914.47, -1419.13], [-2910.1, -1415.1], [-2908.29, -1417.05], [-2904.68, -1413.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-2805.18, -1402.14], [-2802.72, -1405.05], [-2807.35, -1408.97], [-2811.68, -1403.87], [-2813.23, -1405.18], [-2815.41, -1402.6], [-2814.23, -1401.6], [-2818.49, -1396.57], [-2810.53, -1389.82], [-2802.22, -1399.63], [-2805.18, -1402.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2996.33, -1380.53], [-3002.24, -1385.49], [-3012.6, -1373.18], [-3006.7, -1368.21], [-2996.33, -1380.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2507.56, -1296.81], [-2513.33, -1301.91], [-2519.48, -1294.83], [-2513.8, -1289.91], [-2507.56, -1296.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2694.67, -1475.83], [-2700.84, -1480.82], [-2706.33, -1474.04], [-2700.15, -1469.04], [-2694.67, -1475.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2867.24, -1458.08], [-2874.06, -1449.46], [-2872.55, -1448.28], [-2874.81, -1445.44], [-2868.73, -1440.67], [-2860.1, -1451.57], [-2864.1, -1454.72], [-2863.66, -1455.28], [-2867.24, -1458.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2810.81, -1482.22], [-2815.01, -1485.6], [-2816.41, -1483.87], [-2819.29, -1486.2], [-2825.02, -1479.15], [-2817.94, -1473.44], [-2810.81, -1482.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2612.29, -1388.38], [-2616.98, -1392.46], [-2621.25, -1387.54], [-2616.41, -1383.33], [-2612.29, -1388.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2805.96, -1553.04], [-2809.34, -1555.89], [-2812.8, -1551.77], [-2809.41, -1548.94], [-2805.96, -1553.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-3085.2, -1309.07], [-3078.46, -1303.68], [-3070.95, -1313.0], [-3071.44, -1313.39], [-3070.39, -1314.69], [-3076.64, -1319.69], [-3085.2, -1309.07]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2483.74, -1292.41], [-2480.95, -1290.05], [-2476.65, -1295.07], [-2479.53, -1297.44], [-2483.74, -1292.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2767.49, -1352.73], [-2761.92, -1358.71], [-2757.04, -1354.19], [-2747.37, -1364.56], [-2753.31, -1370.06], [-2761.22, -1361.57], [-2763.5, -1363.67], [-2760.64, -1366.74], [-2764.32, -1370.13], [-2774.49, -1359.21], [-2767.49, -1352.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[-2973.17, -1342.41], [-2964.11, -1352.4], [-2971.7, -1359.25], [-2982.34, -1347.53], [-2976.59, -1342.35], [-2975.01, -1344.07], [-2973.17, -1342.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2937.04, -1044.82], [-2937.77, -1038.15], [-2931.35, -1037.46], [-2930.61, -1044.13], [-2937.04, -1044.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2557.5, -1205.08], [-2553.07, -1201.46], [-2548.88, -1206.38], [-2553.38, -1210.06], [-2557.5, -1205.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2948.29, -1074.96], [-2942.3, -1082.74], [-2952.09, -1090.54], [-2958.21, -1082.89], [-2958.65, -1082.33], [-2955.12, -1079.51], [-2954.68, -1080.07], [-2948.29, -1074.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2845.18, -1329.29], [-2850.28, -1333.62], [-2854.83, -1328.25], [-2849.73, -1323.92], [-2845.18, -1329.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2789.39, -1385.12], [-2799.01, -1393.93], [-2807.12, -1385.12], [-2804.65, -1382.87], [-2806.04, -1381.37], [-2798.89, -1374.81], [-2789.39, -1385.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2698.44, -1506.95], [-2704.02, -1511.71], [-2707.87, -1507.21], [-2709.02, -1508.2], [-2714.91, -1501.3], [-2708.18, -1495.55], [-2698.44, -1506.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2927.53, -1450.34], [-2936.46, -1458.19], [-2943.97, -1449.66], [-2940.21, -1446.37], [-2943.4, -1442.73], [-2938.23, -1438.18], [-2927.53, -1450.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-3120.55, -1418.79], [-3126.51, -1411.55], [-3124.61, -1409.89], [-3127.48, -1406.56], [-3121.72, -1401.79], [-3113.39, -1412.02], [-3111.73, -1410.46], [-3107.42, -1415.57], [-3112.51, -1419.53], [-3116.18, -1415.6], [-3120.55, -1418.79]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2827.58, -1430.88], [-2835.4, -1437.24], [-2836.91, -1435.39], [-2840.3, -1438.16], [-2850.1, -1426.11], [-2834.47, -1413.41], [-2828.7, -1420.52], [-2833.09, -1424.08], [-2827.58, -1430.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.24, "pop": 120, "jobs": 0}}, {"shape": {"outer": [[-3021.05, -1480.89], [-3026.3, -1485.21], [-3030.85, -1479.67], [-3025.61, -1475.36], [-3021.05, -1480.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2593.35, -1393.26], [-2591.04, -1396.05], [-2587.9, -1393.47], [-2584.27, -1397.85], [-2587.21, -1400.26], [-2585.2, -1402.69], [-2584.13, -1401.82], [-2578.93, -1408.08], [-2587.1, -1414.81], [-2600.26, -1398.95], [-2593.35, -1393.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[-2978.83, -1036.59], [-2973.03, -1043.46], [-2974.61, -1044.8], [-2974.23, -1045.24], [-2977.04, -1047.6], [-2976.0, -1048.89], [-2980.89, -1053.03], [-2981.1, -1052.78], [-2982.76, -1054.17], [-2987.72, -1048.27], [-2986.05, -1046.88], [-2988.4, -1044.08], [-2980.7, -1037.58], [-2980.4, -1037.92], [-2978.83, -1036.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2678.06, -1486.79], [-2685.74, -1493.41], [-2689.08, -1489.57], [-2691.18, -1491.38], [-2696.12, -1485.66], [-2684.29, -1475.47], [-2679.67, -1480.81], [-2680.36, -1481.4], [-2678.51, -1483.54], [-2679.86, -1484.7], [-2678.06, -1486.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-2989.95, -1444.84], [-2983.66, -1439.66], [-2979.01, -1444.89], [-2985.07, -1450.21], [-2989.95, -1444.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-3006.31, -1500.37], [-3000.06, -1506.74], [-3008.75, -1515.27], [-3017.51, -1506.35], [-3011.3, -1500.25], [-3008.79, -1502.81], [-3006.31, -1500.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2587.06, -1248.96], [-2584.5, -1251.95], [-2581.64, -1249.5], [-2576.59, -1255.4], [-2587.91, -1265.11], [-2593.38, -1258.74], [-2592.96, -1258.37], [-2595.12, -1255.86], [-2587.06, -1248.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-2738.99, -1393.16], [-2735.11, -1397.44], [-2731.1, -1393.84], [-2722.66, -1403.15], [-2728.49, -1408.39], [-2730.58, -1406.07], [-2731.56, -1406.95], [-2733.2, -1405.14], [-2736.35, -1407.97], [-2744.92, -1398.49], [-2738.99, -1393.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-3151.47, -1342.82], [-3156.14, -1346.86], [-3160.86, -1341.41], [-3156.19, -1337.37], [-3151.47, -1342.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2684.61, -1282.1], [-2682.8, -1284.24], [-2680.72, -1282.49], [-2672.82, -1291.84], [-2678.32, -1296.48], [-2677.2, -1297.81], [-2683.3, -1302.96], [-2694.13, -1290.14], [-2684.61, -1282.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[-2928.72, -1307.01], [-2921.81, -1314.02], [-2931.13, -1323.14], [-2941.24, -1312.88], [-2937.28, -1309.0], [-2934.08, -1312.25], [-2928.72, -1307.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-3002.32, -1445.79], [-3007.2, -1449.98], [-3009.77, -1447.02], [-3012.31, -1449.2], [-3021.75, -1438.3], [-3014.32, -1431.91], [-3002.32, -1445.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-3044.84, -1125.55], [-3050.17, -1130.01], [-3055.35, -1123.87], [-3050.02, -1119.41], [-3044.84, -1125.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2645.58, -1443.65], [-2650.39, -1447.78], [-2652.45, -1445.37], [-2653.67, -1446.41], [-2661.44, -1437.36], [-2654.07, -1431.03], [-2646.82, -1439.48], [-2648.17, -1440.64], [-2645.58, -1443.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2669.41, -1451.64], [-2675.44, -1456.82], [-2679.55, -1452.03], [-2673.52, -1446.85], [-2669.41, -1451.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-3072.05, -1443.24], [-3078.42, -1448.25], [-3083.87, -1441.33], [-3077.5, -1436.33], [-3072.05, -1443.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2903.84, -1270.93], [-2908.32, -1265.77], [-2897.01, -1255.96], [-2892.56, -1261.45], [-2903.84, -1270.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2767.89, -1519.74], [-2772.4, -1523.52], [-2777.39, -1517.55], [-2772.91, -1513.92], [-2767.89, -1519.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-3139.81, -1348.24], [-3132.73, -1356.42], [-3129.55, -1353.67], [-3124.38, -1359.65], [-3135.03, -1368.8], [-3145.94, -1356.2], [-3141.81, -1352.65], [-3143.15, -1351.11], [-3139.81, -1348.24]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2617.03, -1124.73], [-2613.78, -1128.13], [-2619.46, -1132.89], [-2623.39, -1128.2], [-2617.94, -1123.64], [-2617.03, -1124.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2884.93, -1287.49], [-2892.33, -1278.72], [-2892.11, -1278.53], [-2896.1, -1273.8], [-2888.35, -1267.3], [-2876.94, -1280.81], [-2884.93, -1287.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2870.03, -1376.19], [-2866.58, -1380.09], [-2864.25, -1378.04], [-2858.32, -1384.75], [-2861.51, -1387.55], [-2859.06, -1390.33], [-2866.88, -1397.2], [-2870.95, -1392.59], [-2875.06, -1396.19], [-2874.58, -1396.74], [-2875.41, -1397.46], [-2872.98, -1400.21], [-2873.12, -1400.33], [-2872.54, -1400.99], [-2876.86, -1404.78], [-2877.53, -1404.02], [-2878.27, -1404.68], [-2880.73, -1401.89], [-2881.7, -1402.74], [-2885.11, -1398.89], [-2886.03, -1399.7], [-2889.26, -1396.04], [-2878.24, -1386.38], [-2879.72, -1384.69], [-2870.03, -1376.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.332, "pop": 166, "jobs": 0}}, {"shape": {"outer": [[-2544.92, -1249.94], [-2551.82, -1255.82], [-2562.96, -1242.74], [-2556.05, -1236.86], [-2544.92, -1249.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2595.36, -1138.69], [-2600.89, -1143.24], [-2605.2, -1138.0], [-2599.68, -1133.45], [-2595.36, -1138.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-3007.74, -1073.81], [-3015.49, -1080.13], [-3022.99, -1070.96], [-3015.24, -1064.66], [-3007.74, -1073.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2507.77, -1186.58], [-2502.68, -1192.96], [-2513.15, -1201.29], [-2515.31, -1198.58], [-2516.86, -1199.81], [-2520.58, -1195.13], [-2511.04, -1187.54], [-2510.24, -1188.54], [-2507.77, -1186.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-3000.64, -1067.19], [-3004.54, -1070.46], [-3004.95, -1069.98], [-3010.83, -1062.96], [-3003.21, -1056.57], [-2997.33, -1063.59], [-3001.05, -1066.71], [-3000.64, -1067.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2865.62, -1268.79], [-2872.25, -1274.64], [-2874.77, -1271.82], [-2876.33, -1273.2], [-2882.78, -1265.95], [-2873.99, -1258.19], [-2867.52, -1265.46], [-2868.11, -1265.98], [-2865.62, -1268.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2848.99, -1017.81], [-2849.22, -1023.82], [-2851.79, -1023.73], [-2852.02, -1029.9], [-2861.78, -1029.52], [-2861.24, -1015.67], [-2852.11, -1016.03], [-2852.18, -1017.68], [-2848.99, -1017.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2686.76, -1304.11], [-2690.87, -1307.64], [-2693.1, -1305.04], [-2697.18, -1308.53], [-2705.66, -1298.64], [-2697.47, -1291.62], [-2686.76, -1304.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-3146.49, -1330.33], [-3150.12, -1333.47], [-3154.09, -1328.91], [-3150.47, -1325.76], [-3146.49, -1330.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2993.59, -1490.68], [-2986.58, -1499.3], [-2994.76, -1505.95], [-3001.5, -1497.66], [-2999.01, -1495.64], [-3000.15, -1494.24], [-2996.66, -1491.4], [-2995.8, -1492.47], [-2993.59, -1490.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2774.27, -1375.62], [-2780.48, -1381.16], [-2782.54, -1378.86], [-2784.72, -1380.79], [-2791.34, -1373.41], [-2780.39, -1363.65], [-2774.48, -1370.25], [-2777.05, -1372.53], [-2774.27, -1375.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2970.06, -1327.26], [-2975.73, -1332.05], [-2980.12, -1326.85], [-2974.45, -1322.06], [-2970.06, -1327.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2849.57, -1258.11], [-2856.39, -1264.06], [-2863.31, -1256.2], [-2865.25, -1257.88], [-2869.78, -1252.74], [-2861.01, -1245.09], [-2849.57, -1258.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-3049.88, -1277.11], [-3047.56, -1279.87], [-3042.45, -1275.59], [-3040.07, -1278.41], [-3039.74, -1278.13], [-3037.47, -1280.83], [-3037.83, -1281.12], [-3035.62, -1283.74], [-3036.87, -1284.78], [-3035.93, -1285.91], [-3042.47, -1291.38], [-3044.11, -1289.43], [-3044.94, -1290.13], [-3053.41, -1280.07], [-3049.88, -1277.11]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3006.49, -1349.47], [-3001.09, -1356.25], [-3007.95, -1361.72], [-3009.74, -1359.46], [-3015.12, -1363.76], [-3019.51, -1358.26], [-3014.4, -1354.2], [-3013.64, -1355.16], [-3006.49, -1349.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-3031.26, -1262.73], [-3035.36, -1257.77], [-3032.21, -1255.13], [-3028.12, -1260.17], [-3031.26, -1262.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2755.52, -1217.87], [-2745.83, -1229.59], [-2751.36, -1234.16], [-2755.67, -1228.95], [-2757.26, -1230.25], [-2762.64, -1223.74], [-2755.52, -1217.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-3103.56, -1339.75], [-3106.13, -1341.87], [-3107.04, -1340.76], [-3108.23, -1341.74], [-3107.63, -1342.47], [-3110.13, -1344.53], [-3115.94, -1337.55], [-3109.49, -1332.22], [-3104.28, -1338.49], [-3104.47, -1338.65], [-3103.56, -1339.75]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2514.75, -1283.52], [-2522.67, -1290.26], [-2531.23, -1280.2], [-2523.3, -1273.46], [-2514.75, -1283.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2952.64, -1549.54], [-2958.48, -1554.31], [-2963.95, -1547.55], [-2958.11, -1542.78], [-2952.64, -1549.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2622.3, -1118.94], [-2628.65, -1124.74], [-2636.38, -1116.35], [-2630.03, -1110.54], [-2622.3, -1118.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2516.14, -1224.15], [-2522.85, -1229.61], [-2530.77, -1219.9], [-2524.06, -1214.44], [-2516.14, -1224.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-3032.54, -1491.82], [-3038.48, -1496.86], [-3043.82, -1490.57], [-3037.87, -1485.53], [-3032.54, -1491.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-3042.97, -1111.0], [-3049.93, -1116.67], [-3061.25, -1103.67], [-3054.28, -1097.99], [-3042.97, -1111.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-3071.45, -1111.67], [-3065.78, -1118.14], [-3075.78, -1126.98], [-3076.13, -1126.6], [-3078.17, -1128.5], [-3083.17, -1122.61], [-3081.16, -1120.87], [-3081.83, -1120.13], [-3078.54, -1117.44], [-3079.11, -1116.74], [-3076.2, -1114.35], [-3075.62, -1115.06], [-3071.45, -1111.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2773.52, -1550.87], [-2761.04, -1565.44], [-2768.16, -1571.51], [-2780.64, -1556.8], [-2773.52, -1550.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2576.57, -1152.38], [-2584.57, -1159.33], [-2595.8, -1146.42], [-2587.8, -1139.46], [-2576.57, -1152.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2591.66, -1206.65], [-2584.61, -1200.84], [-2578.49, -1208.28], [-2580.6, -1210.1], [-2579.01, -1211.9], [-2583.88, -1215.81], [-2591.66, -1206.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2813.13, -1351.74], [-2820.78, -1358.71], [-2826.52, -1352.45], [-2825.25, -1351.3], [-2832.12, -1343.82], [-2825.73, -1338.01], [-2813.13, -1351.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-2837.12, -1057.94], [-2835.16, -1058.01], [-2835.37, -1063.98], [-2848.57, -1063.51], [-2847.8, -1041.84], [-2837.0, -1042.23], [-2837.57, -1057.92], [-2837.12, -1057.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[-3017.9, -1134.26], [-3013.64, -1139.26], [-3015.92, -1141.18], [-3015.26, -1141.94], [-3023.31, -1148.76], [-3029.24, -1141.8], [-3021.97, -1135.65], [-3020.95, -1136.86], [-3017.9, -1134.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2987.51, -1059.27], [-2991.86, -1062.85], [-2999.52, -1053.51], [-2992.65, -1047.85], [-2986.33, -1055.5], [-2988.84, -1057.59], [-2987.51, -1059.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-3094.35, -1332.65], [-3099.43, -1336.89], [-3100.99, -1335.04], [-3103.24, -1336.93], [-3108.2, -1331.06], [-3105.07, -1328.44], [-3109.62, -1323.06], [-3105.42, -1319.54], [-3094.35, -1332.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-3010.63, -1520.61], [-3023.13, -1531.86], [-3030.6, -1522.61], [-3027.25, -1519.93], [-3028.59, -1518.26], [-3019.15, -1510.76], [-3010.63, -1520.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[-2959.53, -1089.94], [-2957.4, -1088.16], [-2953.33, -1092.99], [-2961.61, -1099.91], [-2972.74, -1086.71], [-2970.29, -1084.65], [-2970.64, -1084.24], [-2966.93, -1081.15], [-2959.53, -1089.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-3030.86, -1227.29], [-3028.66, -1229.65], [-3026.41, -1227.55], [-3021.35, -1232.99], [-3033.63, -1244.4], [-3039.29, -1238.32], [-3035.34, -1234.65], [-3036.93, -1232.95], [-3030.86, -1227.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-2723.54, -1483.54], [-2733.76, -1492.18], [-2740.41, -1484.3], [-2730.19, -1475.67], [-2723.54, -1483.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2825.35, -1330.83], [-2828.99, -1334.14], [-2833.27, -1329.45], [-2829.63, -1326.13], [-2825.35, -1330.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-3057.99, -1254.55], [-3052.16, -1249.47], [-3047.0, -1255.5], [-3052.87, -1260.52], [-3057.99, -1254.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-3086.45, -1251.44], [-3084.9, -1253.29], [-3083.87, -1252.42], [-3075.54, -1262.36], [-3079.56, -1265.73], [-3079.23, -1266.14], [-3081.02, -1267.64], [-3081.81, -1267.61], [-3082.67, -1267.57], [-3090.66, -1258.12], [-3090.42, -1257.91], [-3091.97, -1256.06], [-3086.45, -1251.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2823.4, -1288.06], [-2830.08, -1293.91], [-2837.55, -1285.45], [-2830.87, -1279.58], [-2823.4, -1288.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2794.21, -1267.29], [-2799.27, -1271.78], [-2809.09, -1260.7], [-2801.08, -1253.59], [-2792.28, -1263.5], [-2795.24, -1266.13], [-2794.21, -1267.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2640.09, -1285.58], [-2645.81, -1290.65], [-2651.24, -1284.52], [-2645.51, -1279.45], [-2640.09, -1285.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2874.65, -1648.31], [-2882.58, -1639.18], [-2877.0, -1634.33], [-2878.38, -1632.76], [-2874.3, -1629.21], [-2872.87, -1630.81], [-2864.67, -1623.69], [-2864.22, -1624.22], [-2861.72, -1622.04], [-2855.88, -1628.91], [-2858.59, -1631.27], [-2857.06, -1633.04], [-2874.65, -1648.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.26, "pop": 130, "jobs": 0}}, {"shape": {"outer": [[-2706.58, -1514.88], [-2713.54, -1520.6], [-2720.54, -1512.09], [-2713.58, -1506.37], [-2706.58, -1514.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2600.02, -1404.56], [-2592.28, -1413.3], [-2597.49, -1417.86], [-2598.68, -1416.51], [-2602.95, -1420.28], [-2607.72, -1414.9], [-2608.43, -1415.52], [-2611.47, -1412.08], [-2604.32, -1405.8], [-2603.06, -1407.24], [-2600.02, -1404.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-2713.72, -1240.83], [-2718.61, -1245.09], [-2723.79, -1239.13], [-2718.9, -1234.87], [-2713.72, -1240.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-3163.03, -1316.97], [-3161.78, -1318.43], [-3161.06, -1317.82], [-3154.08, -1326.01], [-3160.89, -1331.66], [-3167.7, -1323.47], [-3167.3, -1323.14], [-3168.54, -1321.68], [-3163.03, -1316.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2539.97, -1175.65], [-2545.28, -1180.31], [-2552.12, -1172.49], [-2546.81, -1167.84], [-2539.97, -1175.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-2990.73, -1120.7], [-2991.49, -1121.34], [-2990.21, -1122.85], [-2997.07, -1128.66], [-2998.4, -1127.1], [-2999.11, -1127.7], [-3005.82, -1119.83], [-3001.79, -1116.41], [-3003.51, -1114.38], [-2999.6, -1111.07], [-2997.9, -1113.07], [-2997.51, -1112.73], [-2990.73, -1120.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2972.18, -1552.48], [-2967.24, -1558.74], [-2973.24, -1563.46], [-2978.72, -1556.53], [-2975.63, -1554.08], [-2975.08, -1554.76], [-2972.18, -1552.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2706.87, -1307.81], [-2698.27, -1317.26], [-2705.16, -1323.52], [-2715.71, -1311.92], [-2711.35, -1307.96], [-2709.4, -1310.1], [-2706.87, -1307.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2714.56, -1185.72], [-2709.37, -1191.59], [-2719.58, -1200.62], [-2726.25, -1193.06], [-2718.9, -1186.55], [-2717.4, -1188.24], [-2714.56, -1185.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2606.94, -1178.64], [-2613.21, -1183.93], [-2623.62, -1171.59], [-2615.28, -1164.56], [-2612.25, -1168.16], [-2614.31, -1169.9], [-2606.94, -1178.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-3000.21, -1443.08], [-3007.94, -1433.59], [-3007.11, -1432.92], [-3008.75, -1430.56], [-3002.7, -1425.7], [-2992.96, -1436.89], [-3000.21, -1443.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2907.21, -1384.12], [-2911.91, -1388.66], [-2916.64, -1383.78], [-2911.68, -1378.98], [-2912.61, -1378.0], [-2909.25, -1374.75], [-2904.77, -1379.38], [-2908.4, -1382.89], [-2907.21, -1384.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-3062.41, -1435.46], [-3069.42, -1441.06], [-3078.37, -1429.93], [-3071.35, -1424.33], [-3062.41, -1435.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-3040.72, -1386.39], [-3046.54, -1391.48], [-3051.02, -1386.36], [-3044.97, -1381.35], [-3040.72, -1386.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-3028.34, -1464.36], [-3037.0, -1471.38], [-3044.85, -1461.76], [-3036.19, -1454.75], [-3028.34, -1464.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2884.25, -1047.97], [-2884.23, -1050.39], [-2880.64, -1050.37], [-2880.58, -1060.05], [-2885.74, -1060.08], [-2885.75, -1058.65], [-2892.15, -1058.69], [-2892.21, -1048.0], [-2884.25, -1047.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2852.88, -1219.72], [-2849.09, -1224.45], [-2854.75, -1228.96], [-2858.55, -1224.22], [-2852.88, -1219.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2843.03, -1343.79], [-2848.49, -1348.74], [-2852.9, -1343.88], [-2847.44, -1338.93], [-2843.03, -1343.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-3024.46, -1151.34], [-3032.04, -1157.88], [-3034.98, -1154.49], [-3036.92, -1156.16], [-3041.76, -1150.58], [-3039.09, -1148.27], [-3039.46, -1147.84], [-3032.62, -1141.94], [-3024.46, -1151.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2762.34, -1530.02], [-2767.26, -1534.15], [-2770.45, -1529.99], [-2765.56, -1526.01], [-2762.34, -1530.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-3009.88, -1098.51], [-3014.48, -1102.31], [-3019.95, -1095.73], [-3015.35, -1091.92], [-3009.88, -1098.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-3055.24, -1399.44], [-3060.6, -1403.76], [-3065.29, -1397.92], [-3059.94, -1393.62], [-3055.24, -1399.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2686.02, -1501.49], [-2693.17, -1508.0], [-2706.18, -1493.81], [-2699.02, -1487.29], [-2686.02, -1501.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-3022.61, -1445.99], [-3017.22, -1452.64], [-3023.14, -1457.41], [-3021.06, -1459.96], [-3025.48, -1463.52], [-3033.89, -1453.16], [-3026.96, -1447.58], [-3026.01, -1448.73], [-3022.61, -1445.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2598.96, -1249.81], [-2604.79, -1242.97], [-2588.75, -1229.39], [-2583.71, -1235.47], [-2591.68, -1242.49], [-2590.28, -1244.15], [-2594.63, -1248.0], [-2595.59, -1246.85], [-2598.96, -1249.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-2651.33, -1342.36], [-2659.04, -1348.73], [-2668.86, -1336.93], [-2661.14, -1330.57], [-2651.33, -1342.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2616.57, -1186.69], [-2623.73, -1193.02], [-2625.17, -1191.4], [-2627.69, -1193.63], [-2630.66, -1190.29], [-2628.44, -1188.33], [-2631.83, -1184.48], [-2624.35, -1177.88], [-2616.57, -1186.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2844.57, -1290.78], [-2837.63, -1298.24], [-2835.9, -1296.63], [-2833.26, -1299.47], [-2838.67, -1304.48], [-2840.44, -1302.58], [-2844.58, -1306.41], [-2852.39, -1298.0], [-2844.57, -1290.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2866.15, -1325.67], [-2874.48, -1333.4], [-2882.04, -1325.25], [-2873.7, -1317.52], [-2866.15, -1325.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-3084.51, -1364.78], [-3080.44, -1370.2], [-3077.67, -1368.13], [-3073.19, -1374.08], [-3083.37, -1381.67], [-3091.91, -1370.29], [-3084.51, -1364.78]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2892.46, -1403.42], [-2889.56, -1406.93], [-2887.96, -1405.64], [-2883.58, -1410.95], [-2889.2, -1415.55], [-2890.98, -1413.38], [-2895.39, -1416.99], [-2900.89, -1410.31], [-2892.46, -1403.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2571.97, -1366.4], [-2577.43, -1370.96], [-2579.78, -1368.12], [-2574.34, -1363.58], [-2571.97, -1366.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-3036.49, -1081.61], [-3035.05, -1083.31], [-3034.5, -1082.85], [-3027.87, -1090.67], [-3034.84, -1096.56], [-3041.46, -1088.73], [-3040.78, -1088.16], [-3042.22, -1086.46], [-3036.49, -1081.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2486.51, -1262.51], [-2493.75, -1268.6], [-2504.03, -1256.36], [-2496.79, -1250.28], [-2486.51, -1262.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2573.03, -1378.3], [-2577.53, -1382.45], [-2582.96, -1376.56], [-2578.46, -1372.4], [-2573.03, -1378.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-3142.74, -1315.76], [-3150.44, -1322.82], [-3157.92, -1314.66], [-3150.22, -1307.61], [-3142.74, -1315.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2561.23, -1343.01], [-2569.8, -1350.72], [-2579.28, -1340.18], [-2570.71, -1332.47], [-2561.23, -1343.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2955.01, -1142.0], [-2953.79, -1143.49], [-2953.13, -1142.97], [-2946.05, -1151.59], [-2946.42, -1151.89], [-2944.13, -1154.67], [-2946.63, -1156.7], [-2948.93, -1153.89], [-2952.92, -1157.15], [-2961.21, -1147.07], [-2955.01, -1142.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2537.04, -1194.74], [-2542.62, -1199.52], [-2547.58, -1193.73], [-2542.0, -1188.95], [-2537.04, -1194.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-3039.04, -1214.39], [-3034.69, -1219.62], [-3037.3, -1221.8], [-3035.22, -1224.3], [-3038.98, -1227.42], [-3037.44, -1229.28], [-3044.33, -1235.0], [-3053.03, -1224.54], [-3042.54, -1215.81], [-3041.81, -1216.69], [-3039.04, -1214.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-2408.6, -1241.4], [-2409.28, -1257.11], [-2419.96, -1256.65], [-2419.29, -1240.94], [-2408.6, -1241.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2495.7, -1082.63], [-2503.79, -1089.81], [-2511.43, -1081.27], [-2503.34, -1074.09], [-2495.7, -1082.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2424.4, -1021.77], [-2436.15, -1031.65], [-2441.44, -1025.4], [-2429.7, -1015.52], [-2424.4, -1021.77]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2480.33, -1029.41], [-2478.05, -1032.26], [-2476.51, -1031.01], [-2471.8, -1036.87], [-2477.02, -1041.06], [-2482.03, -1034.8], [-2481.14, -1034.09], [-2483.1, -1031.64], [-2480.33, -1029.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2499.08, -1030.53], [-2501.67, -1037.38], [-2507.14, -1035.31], [-2504.54, -1028.47], [-2499.08, -1030.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2514.42, -1091.64], [-2521.89, -1098.16], [-2531.09, -1087.68], [-2523.63, -1081.16], [-2514.42, -1091.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2338.12, -1239.45], [-2338.1, -1241.61], [-2334.21, -1241.57], [-2334.13, -1250.12], [-2346.64, -1250.24], [-2346.71, -1242.49], [-2343.36, -1242.47], [-2343.39, -1239.5], [-2338.12, -1239.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2477.78, -1042.46], [-2483.19, -1047.0], [-2483.49, -1046.64], [-2485.79, -1048.53], [-2490.6, -1043.11], [-2488.17, -1041.04], [-2488.46, -1040.68], [-2483.13, -1035.79], [-2477.78, -1042.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2551.42, -1059.02], [-2558.07, -1065.1], [-2565.72, -1056.8], [-2559.07, -1050.71], [-2551.42, -1059.02]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2485.2, -1155.26], [-2490.74, -1159.88], [-2497.72, -1151.53], [-2492.19, -1146.9], [-2485.2, -1155.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-2359.86, -1193.4], [-2360.36, -1208.54], [-2369.8, -1208.24], [-2369.38, -1195.37], [-2364.5, -1195.53], [-2364.43, -1193.26], [-2359.86, -1193.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2420.7, -1208.68], [-2436.66, -1208.74], [-2436.72, -1195.53], [-2420.76, -1195.47], [-2420.7, -1208.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[-2388.06, -1271.7], [-2377.92, -1271.99], [-2378.16, -1280.48], [-2388.3, -1280.18], [-2388.06, -1271.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2422.46, -1141.76], [-2429.64, -1148.62], [-2437.76, -1140.12], [-2430.59, -1133.27], [-2422.46, -1141.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2486.74, -1135.34], [-2493.95, -1141.59], [-2501.82, -1132.58], [-2497.66, -1128.98], [-2499.15, -1127.25], [-2496.11, -1124.61], [-2486.74, -1135.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2474.45, -1130.85], [-2482.26, -1137.36], [-2493.65, -1123.81], [-2485.84, -1117.29], [-2474.45, -1130.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2331.09, -1196.54], [-2331.82, -1206.5], [-2336.95, -1206.12], [-2337.14, -1208.69], [-2344.15, -1208.18], [-2343.65, -1201.43], [-2350.24, -1200.95], [-2349.65, -1192.9], [-2339.96, -1193.61], [-2340.13, -1195.88], [-2331.09, -1196.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[-2429.72, -1086.34], [-2436.45, -1091.91], [-2445.02, -1081.61], [-2438.28, -1076.05], [-2429.72, -1086.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2436.49, -1242.28], [-2424.51, -1242.63], [-2424.95, -1256.89], [-2437.0, -1256.48], [-2436.49, -1242.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2356.77, -1147.04], [-2364.9, -1154.06], [-2373.29, -1144.35], [-2363.72, -1136.08], [-2358.59, -1142.01], [-2360.05, -1143.26], [-2356.77, -1147.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2353.52, -1263.79], [-2353.65, -1267.7], [-2360.57, -1267.47], [-2360.44, -1263.56], [-2353.52, -1263.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2441.59, -1095.65], [-2447.98, -1101.9], [-2452.69, -1097.13], [-2452.0, -1096.46], [-2455.76, -1092.66], [-2450.05, -1087.07], [-2441.59, -1095.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2542.79, -1051.63], [-2549.67, -1057.47], [-2556.75, -1049.18], [-2549.87, -1043.34], [-2542.79, -1051.63]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2486.43, -988.6], [-2484.04, -991.38], [-2483.21, -990.67], [-2477.83, -996.91], [-2485.05, -1003.09], [-2493.78, -992.96], [-2488.69, -988.6], [-2487.73, -989.72], [-2486.43, -988.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2403.08, -1272.34], [-2393.65, -1272.63], [-2393.88, -1279.04], [-2403.29, -1278.76], [-2403.08, -1272.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2506.68, -1018.67], [-2513.96, -1024.72], [-2521.11, -1016.19], [-2516.21, -1012.12], [-2517.7, -1010.35], [-2515.32, -1008.37], [-2506.68, -1018.67]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2458.46, -1129.54], [-2464.92, -1135.11], [-2469.14, -1130.21], [-2462.69, -1124.64], [-2458.46, -1129.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2425.61, -1267.48], [-2426.08, -1276.59], [-2435.68, -1276.1], [-2435.22, -1266.99], [-2425.61, -1267.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-2476.0, -1016.89], [-2479.58, -1020.23], [-2484.06, -1015.44], [-2480.49, -1012.09], [-2476.0, -1016.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2433.59, -1258.49], [-2426.45, -1258.72], [-2426.68, -1265.8], [-2433.85, -1265.55], [-2433.59, -1258.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2461.43, -1180.12], [-2469.53, -1186.93], [-2479.81, -1174.7], [-2471.7, -1167.88], [-2461.43, -1180.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2402.25, -1256.2], [-2404.0, -1256.14], [-2403.67, -1246.92], [-2397.22, -1247.15], [-2397.07, -1243.16], [-2393.81, -1243.27], [-2393.99, -1248.01], [-2396.08, -1247.94], [-2396.25, -1252.92], [-2393.27, -1253.01], [-2393.39, -1256.48], [-2396.7, -1256.36], [-2396.91, -1262.22], [-2402.46, -1262.03], [-2402.25, -1256.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2388.82, -1174.75], [-2392.91, -1178.13], [-2395.28, -1175.26], [-2396.41, -1176.2], [-2401.25, -1170.36], [-2399.44, -1168.85], [-2400.07, -1168.1], [-2394.71, -1163.68], [-2394.08, -1164.44], [-2390.16, -1168.82], [-2390.21, -1168.86], [-2389.12, -1170.18], [-2391.19, -1171.88], [-2388.82, -1174.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2482.1, -1070.53], [-2490.76, -1077.45], [-2496.88, -1069.84], [-2488.22, -1062.92], [-2482.1, -1070.53]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2465.99, -1156.14], [-2461.88, -1160.32], [-2461.24, -1159.68], [-2451.24, -1169.8], [-2457.69, -1176.16], [-2467.22, -1166.51], [-2466.06, -1165.37], [-2470.63, -1160.74], [-2465.99, -1156.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-2388.12, -1245.47], [-2377.51, -1245.85], [-2378.13, -1263.81], [-2378.96, -1263.78], [-2379.04, -1265.74], [-2384.08, -1265.55], [-2384.02, -1263.67], [-2387.28, -1263.56], [-2387.12, -1259.64], [-2388.55, -1259.58], [-2388.12, -1245.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2428.83, -1098.68], [-2431.9, -1101.72], [-2436.54, -1097.02], [-2433.47, -1093.98], [-2428.83, -1098.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2534.71, -1043.52], [-2540.99, -1048.78], [-2547.28, -1041.33], [-2538.13, -1033.66], [-2534.05, -1038.48], [-2536.93, -1040.89], [-2534.71, -1043.52]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2353.16, -1272.77], [-2353.41, -1280.18], [-2361.3, -1279.92], [-2361.06, -1272.51], [-2353.16, -1272.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2333.82, -1254.49], [-2334.01, -1268.12], [-2341.25, -1268.01], [-2341.21, -1264.68], [-2342.85, -1264.66], [-2342.7, -1254.37], [-2333.82, -1254.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2330.3, -1171.72], [-2331.1, -1183.67], [-2340.94, -1183.02], [-2340.14, -1171.06], [-2330.3, -1171.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2394.08, -1096.95], [-2400.21, -1102.32], [-2404.63, -1097.28], [-2398.64, -1091.9], [-2394.08, -1096.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-2468.24, -1136.06], [-2472.96, -1140.63], [-2477.64, -1135.8], [-2472.93, -1131.23], [-2468.24, -1136.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2331.2, -1150.96], [-2331.26, -1155.04], [-2330.18, -1155.06], [-2330.31, -1163.56], [-2339.49, -1163.42], [-2339.34, -1154.52], [-2335.06, -1154.59], [-2335.01, -1150.91], [-2331.2, -1150.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2460.16, -997.43], [-2464.1, -1000.6], [-2468.45, -995.21], [-2464.68, -992.17], [-2460.16, -997.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2453.14, -1047.42], [-2460.24, -1053.97], [-2470.07, -1043.36], [-2467.66, -1041.14], [-2469.27, -1039.4], [-2464.58, -1035.08], [-2453.14, -1047.42]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-2514.12, -1070.47], [-2519.4, -1075.01], [-2523.68, -1070.07], [-2518.39, -1065.51], [-2514.12, -1070.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2403.39, -1210.04], [-2416.4, -1209.81], [-2416.21, -1198.81], [-2403.2, -1199.04], [-2403.39, -1210.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2432.06, -1152.37], [-2439.02, -1158.67], [-2449.96, -1146.57], [-2443.0, -1140.28], [-2432.06, -1152.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2400.55, -1108.59], [-2392.41, -1116.81], [-2407.15, -1131.42], [-2417.34, -1121.14], [-2408.07, -1111.96], [-2406.03, -1114.02], [-2400.55, -1108.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.222, "pop": 111, "jobs": 0}}, {"shape": {"outer": [[-2467.7, -989.65], [-2473.25, -994.49], [-2475.45, -991.98], [-2476.81, -993.18], [-2484.85, -984.03], [-2477.93, -978.0], [-2467.7, -989.65]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2471.64, -1009.9], [-2475.93, -1014.16], [-2480.53, -1009.52], [-2476.23, -1005.27], [-2471.64, -1009.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2488.75, -1003.02], [-2495.67, -1008.61], [-2502.88, -999.74], [-2495.97, -994.15], [-2488.75, -1003.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2467.95, -1057.81], [-2476.79, -1065.85], [-2483.78, -1058.21], [-2479.74, -1054.54], [-2480.64, -1053.54], [-2479.35, -1052.37], [-2482.99, -1048.38], [-2479.49, -1045.2], [-2467.95, -1057.81]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2332.39, -1146.51], [-2326.99, -1146.7], [-2327.13, -1150.68], [-2332.51, -1150.48], [-2332.39, -1146.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2543.4, -1101.37], [-2535.09, -1094.7], [-2524.77, -1106.84], [-2531.81, -1112.61], [-2535.96, -1107.7], [-2537.42, -1108.84], [-2543.4, -1101.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2400.56, -1181.72], [-2407.34, -1187.59], [-2414.02, -1179.87], [-2407.24, -1174.0], [-2400.56, -1181.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2469.87, -1107.25], [-2459.55, -1098.21], [-2452.87, -1105.78], [-2464.49, -1115.97], [-2469.43, -1110.38], [-2468.12, -1109.23], [-2469.87, -1107.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2560.59, -1067.3], [-2567.47, -1073.36], [-2575.02, -1064.8], [-2568.15, -1058.75], [-2560.59, -1067.3]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2521.21, -1075.17], [-2526.57, -1079.72], [-2530.6, -1074.98], [-2525.23, -1070.42], [-2521.21, -1075.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2363.66, -1240.55], [-2364.49, -1258.29], [-2375.91, -1257.76], [-2375.08, -1240.02], [-2363.66, -1240.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[-2468.38, -1119.64], [-2474.7, -1125.27], [-2483.2, -1115.79], [-2476.89, -1110.16], [-2468.38, -1119.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2497.55, -1144.76], [-2504.37, -1150.49], [-2512.53, -1140.8], [-2505.7, -1135.06], [-2497.55, -1144.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2334.48, -1270.04], [-2334.66, -1281.12], [-2342.89, -1280.99], [-2342.81, -1276.6], [-2347.57, -1276.52], [-2347.5, -1271.9], [-2344.38, -1271.96], [-2344.35, -1269.88], [-2334.48, -1270.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2374.67, -1199.9], [-2375.07, -1208.62], [-2385.37, -1208.14], [-2384.83, -1196.66], [-2378.32, -1196.97], [-2378.45, -1199.72], [-2374.67, -1199.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-2411.68, -1133.21], [-2419.93, -1140.79], [-2427.41, -1132.64], [-2419.15, -1125.06], [-2411.68, -1133.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-2372.12, -1154.63], [-2379.72, -1160.99], [-2381.17, -1159.25], [-2383.42, -1161.19], [-2386.61, -1157.44], [-2384.26, -1155.53], [-2384.88, -1154.79], [-2377.29, -1148.48], [-2372.12, -1154.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2505.67, -1044.61], [-2509.58, -1040.47], [-2506.03, -1037.31], [-2502.03, -1041.45], [-2505.67, -1044.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2439.78, -1161.42], [-2446.92, -1167.56], [-2448.62, -1165.59], [-2450.38, -1167.1], [-2456.66, -1159.8], [-2452.3, -1156.05], [-2454.97, -1152.95], [-2450.43, -1149.05], [-2439.78, -1161.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-2516.94, -1029.28], [-2525.62, -1037.38], [-2531.5, -1031.14], [-2530.52, -1030.22], [-2532.58, -1028.04], [-2524.88, -1020.85], [-2516.94, -1029.28]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2396.28, -1208.36], [-2399.48, -1208.33], [-2399.41, -1201.24], [-2396.21, -1201.27], [-2396.19, -1199.22], [-2393.72, -1199.24], [-2393.69, -1196.32], [-2388.51, -1196.36], [-2388.62, -1207.7], [-2396.28, -1207.62], [-2396.28, -1208.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2450.67, -1023.8], [-2445.25, -1030.23], [-2444.51, -1029.62], [-2440.35, -1034.56], [-2447.55, -1040.59], [-2457.13, -1029.2], [-2450.67, -1023.8]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2554.65, -1082.47], [-2559.46, -1077.47], [-2555.33, -1073.76], [-2550.52, -1078.75], [-2554.65, -1082.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2506.93, -1001.98], [-2504.97, -1004.27], [-2503.27, -1002.84], [-2495.1, -1012.47], [-2499.72, -1016.35], [-2500.64, -1015.27], [-2504.29, -1018.34], [-2511.28, -1010.1], [-2509.94, -1008.98], [-2512.15, -1006.38], [-2506.93, -1001.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2294.53, -858.86], [-2298.9, -853.61], [-2298.25, -840.96], [-2294.46, -841.09], [-2295.15, -852.4], [-2291.75, -856.18], [-2294.53, -858.86]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.019, "pop": 0, "jobs": 19}}, {"shape": {"outer": [[-2287.16, -841.49], [-2280.71, -841.73], [-2280.99, -849.14], [-2287.46, -848.9], [-2287.16, -841.49]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.031, "pop": 0, "jobs": 31}}, {"shape": {"outer": [[-2298.44, -1394.15], [-2299.17, -1403.98], [-2303.05, -1403.69], [-2303.22, -1406.01], [-2310.11, -1405.5], [-2309.93, -1403.05], [-2311.61, -1402.93], [-2311.02, -1394.89], [-2308.02, -1395.12], [-2307.89, -1393.45], [-2298.44, -1394.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2299.49, -1440.59], [-2300.05, -1447.05], [-2310.09, -1446.17], [-2309.78, -1442.68], [-2311.26, -1442.54], [-2310.74, -1436.61], [-2303.79, -1437.22], [-2304.05, -1440.2], [-2299.49, -1440.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2305.46, -840.59], [-2298.6, -840.9], [-2299.34, -856.68], [-2306.19, -856.36], [-2305.46, -840.59]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.03, "pop": 0, "jobs": 30}}, {"shape": {"outer": [[-2294.12, -841.05], [-2287.68, -841.43], [-2288.33, -852.6], [-2294.76, -852.21], [-2294.12, -841.05]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.02, "pop": 0, "jobs": 20}}, {"shape": {"outer": [[-2315.69, -840.05], [-2305.88, -840.44], [-2306.56, -857.33], [-2316.36, -856.94], [-2315.69, -840.05]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.093, "pop": 0, "jobs": 93}}, {"shape": {"outer": [[-2266.37, -1425.4], [-2267.06, -1434.31], [-2269.29, -1434.14], [-2269.49, -1436.74], [-2270.97, -1436.62], [-2271.28, -1440.58], [-2276.69, -1440.17], [-2275.86, -1429.27], [-2279.36, -1428.99], [-2278.85, -1422.32], [-2273.07, -1422.77], [-2273.24, -1424.86], [-2266.37, -1425.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2236.23, -1435.38], [-2237.66, -1449.44], [-2249.42, -1448.23], [-2247.98, -1434.18], [-2236.23, -1435.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2280.5, -841.76], [-2274.39, -841.98], [-2274.56, -846.59], [-2276.97, -848.52], [-2280.74, -848.41], [-2280.5, -841.76]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.011, "pop": 0, "jobs": 11}}, {"shape": {"outer": [[-2284.98, -1436.9], [-2285.6, -1442.05], [-2283.11, -1442.34], [-2283.82, -1448.28], [-2291.54, -1447.36], [-2291.34, -1445.7], [-2294.19, -1445.36], [-2293.81, -1442.25], [-2295.11, -1442.1], [-2294.66, -1438.35], [-2291.94, -1438.69], [-2291.63, -1436.09], [-2284.98, -1436.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2056.61, -1308.5], [-2056.82, -1314.85], [-2060.07, -1314.75], [-2059.87, -1308.4], [-2056.61, -1308.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1803.89, -1132.85], [-1803.78, -1137.66], [-1801.99, -1137.63], [-1801.83, -1144.72], [-1809.53, -1144.89], [-1809.6, -1141.89], [-1811.16, -1141.92], [-1811.3, -1135.96], [-1809.37, -1135.91], [-1809.44, -1132.98], [-1803.89, -1132.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2037.85, -1317.05], [-2038.34, -1327.6], [-2037.13, -1327.66], [-2037.49, -1335.45], [-2048.34, -1334.94], [-2047.53, -1317.6], [-2042.97, -1317.82], [-2042.93, -1316.82], [-2037.85, -1317.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-1948.55, -1255.63], [-1948.78, -1261.65], [-1947.85, -1261.68], [-1948.21, -1271.09], [-1956.09, -1270.78], [-1955.55, -1256.78], [-1954.5, -1256.83], [-1954.45, -1255.39], [-1948.55, -1255.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2010.46, -1340.38], [-2018.54, -1340.34], [-2018.47, -1326.69], [-2010.4, -1326.73], [-2010.46, -1340.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1839.95, -1151.68], [-1845.58, -1151.51], [-1845.19, -1136.94], [-1835.95, -1137.19], [-1836.29, -1149.77], [-1839.9, -1149.67], [-1839.95, -1151.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1686.96, -1384.12], [-1677.9, -1384.5], [-1678.49, -1399.49], [-1687.34, -1399.24], [-1686.96, -1384.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2123.1, -1165.98], [-2127.73, -1165.85], [-2127.56, -1159.69], [-2122.92, -1159.83], [-2123.1, -1165.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1953.11, -1454.96], [-1956.85, -1454.9], [-1956.69, -1444.96], [-1948.55, -1445.09], [-1948.65, -1451.39], [-1950.42, -1451.36], [-1950.46, -1453.93], [-1953.09, -1453.89], [-1953.11, -1454.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1707.91, -1259.37], [-1708.48, -1276.55], [-1713.04, -1276.41], [-1712.93, -1272.99], [-1714.55, -1272.93], [-1714.61, -1274.56], [-1718.19, -1274.44], [-1717.68, -1259.05], [-1707.91, -1259.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1686.69, -1328.28], [-1687.43, -1343.51], [-1689.88, -1343.39], [-1689.97, -1345.39], [-1695.31, -1345.13], [-1695.22, -1343.26], [-1697.29, -1343.16], [-1696.54, -1327.81], [-1686.69, -1328.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1798.91, -1252.91], [-1785.45, -1253.34], [-1785.94, -1266.84], [-1799.51, -1266.35], [-1799.46, -1264.23], [-1808.63, -1263.9], [-1808.34, -1255.98], [-1799.05, -1256.34], [-1798.91, -1252.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[-1846.31, -1224.58], [-1846.02, -1216.61], [-1839.81, -1216.83], [-1839.92, -1219.71], [-1837.72, -1219.78], [-1837.94, -1224.85], [-1846.31, -1224.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2109.47, -1333.14], [-2120.2, -1333.27], [-2120.36, -1320.93], [-2114.4, -1320.85], [-2114.41, -1319.87], [-2109.65, -1319.81], [-2109.47, -1333.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1848.39, -1288.4], [-1835.31, -1288.88], [-1835.53, -1295.33], [-1848.62, -1294.86], [-1848.39, -1288.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2068.68, -1159.71], [-2068.88, -1165.76], [-2073.44, -1165.62], [-2073.24, -1159.55], [-2068.68, -1159.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1917.1, -1208.86], [-1917.71, -1220.34], [-1926.73, -1219.85], [-1926.11, -1208.38], [-1917.1, -1208.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1935.47, -1371.55], [-1935.62, -1374.39], [-1935.15, -1374.42], [-1935.82, -1387.02], [-1940.0, -1386.8], [-1939.88, -1384.52], [-1943.22, -1384.35], [-1942.6, -1372.63], [-1941.88, -1372.67], [-1941.8, -1371.22], [-1935.47, -1371.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1995.45, -1415.9], [-1995.66, -1422.35], [-2002.47, -1422.14], [-2002.26, -1415.67], [-1995.45, -1415.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2124.12, -1286.27], [-2123.95, -1280.21], [-2117.03, -1280.41], [-2117.08, -1286.47], [-2124.12, -1286.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1967.75, -1445.75], [-1968.4, -1460.89], [-1977.33, -1460.5], [-1976.68, -1445.36], [-1967.75, -1445.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2002.78, -1300.37], [-2003.12, -1306.41], [-2013.89, -1305.82], [-2013.87, -1305.47], [-2016.41, -1305.33], [-2015.97, -1297.59], [-2005.17, -1298.2], [-2005.28, -1300.23], [-2002.78, -1300.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1869.46, -1133.82], [-1870.23, -1154.66], [-1880.96, -1154.28], [-1880.2, -1133.44], [-1869.46, -1133.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[-1735.93, -1290.98], [-1736.31, -1297.57], [-1753.4, -1296.6], [-1753.02, -1290.01], [-1735.93, -1290.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1908.78, -1284.8], [-1909.26, -1294.48], [-1926.35, -1293.63], [-1925.88, -1283.96], [-1908.78, -1284.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1804.97, -1335.63], [-1805.45, -1343.61], [-1807.35, -1343.48], [-1807.47, -1345.46], [-1815.23, -1344.98], [-1815.01, -1341.41], [-1815.83, -1341.36], [-1815.44, -1334.99], [-1804.97, -1335.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1865.64, -1260.98], [-1853.81, -1261.4], [-1854.35, -1276.67], [-1866.19, -1276.24], [-1865.64, -1260.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2080.86, -1249.84], [-2081.87, -1265.78], [-2088.89, -1265.34], [-2088.67, -1261.93], [-2090.09, -1261.85], [-2089.32, -1249.78], [-2088.85, -1249.81], [-2088.66, -1246.89], [-2080.95, -1247.38], [-2081.1, -1249.82], [-2080.86, -1249.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2092.52, -1250.06], [-2091.3, -1250.15], [-2092.1, -1262.1], [-2100.64, -1261.53], [-2099.85, -1249.82], [-2098.19, -1249.93], [-2098.11, -1248.78], [-2092.45, -1249.15], [-2092.52, -1250.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1949.23, -1382.72], [-1949.47, -1389.39], [-1958.23, -1389.07], [-1958.07, -1384.85], [-1962.89, -1384.68], [-1962.44, -1372.5], [-1957.34, -1372.68], [-1957.41, -1374.54], [-1955.76, -1374.59], [-1956.06, -1382.47], [-1949.23, -1382.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1959.12, -1181.71], [-1959.31, -1187.81], [-1963.27, -1187.68], [-1963.08, -1181.59], [-1959.12, -1181.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1700.13, -1327.94], [-1701.43, -1342.73], [-1711.26, -1341.87], [-1709.72, -1324.33], [-1703.39, -1324.89], [-1703.64, -1327.63], [-1700.13, -1327.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1929.21, -1212.04], [-1929.68, -1220.05], [-1937.56, -1219.58], [-1936.83, -1207.13], [-1929.69, -1207.55], [-1929.94, -1211.99], [-1929.21, -1212.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2036.86, -1178.19], [-2037.46, -1185.22], [-2039.73, -1185.02], [-2039.83, -1186.16], [-2054.22, -1184.96], [-2053.44, -1175.7], [-2039.47, -1176.87], [-2039.56, -1177.97], [-2036.86, -1178.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-2093.56, -1330.54], [-2103.9, -1330.67], [-2104.03, -1320.64], [-2093.68, -1320.51], [-2093.56, -1330.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1926.9, -1393.0], [-1927.38, -1405.21], [-1934.44, -1404.93], [-1933.95, -1392.71], [-1926.9, -1393.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1666.06, -1332.96], [-1666.61, -1347.37], [-1674.7, -1347.06], [-1674.15, -1332.65], [-1666.06, -1332.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1716.2, -1383.28], [-1707.98, -1383.58], [-1708.48, -1397.7], [-1716.71, -1397.48], [-1716.2, -1383.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-2070.24, -1207.74], [-2070.85, -1216.5], [-2078.62, -1215.95], [-2077.67, -1202.22], [-2070.83, -1202.69], [-2071.18, -1207.68], [-2070.24, -1207.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2049.4, -1201.26], [-2049.44, -1206.53], [-2048.96, -1206.54], [-2049.03, -1216.04], [-2057.84, -1215.98], [-2057.77, -1206.36], [-2056.71, -1206.36], [-2056.69, -1203.22], [-2055.71, -1203.23], [-2055.7, -1201.21], [-2049.4, -1201.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2114.1, -1249.4], [-2114.67, -1266.91], [-2123.63, -1266.62], [-2123.06, -1249.11], [-2114.1, -1249.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1804.12, -1201.81], [-1811.0, -1201.61], [-1810.9, -1198.01], [-1804.02, -1198.21], [-1804.12, -1201.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2036.95, -1296.77], [-2037.24, -1304.42], [-2040.56, -1304.29], [-2040.67, -1307.15], [-2055.89, -1306.57], [-2055.69, -1301.29], [-2060.46, -1301.11], [-2060.28, -1296.46], [-2056.38, -1296.6], [-2056.37, -1296.04], [-2036.95, -1296.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[-2148.04, -1153.63], [-2154.64, -1153.49], [-2154.52, -1147.3], [-2147.92, -1147.44], [-2148.04, -1153.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1963.2, -1254.91], [-1963.32, -1257.33], [-1961.49, -1257.42], [-1962.24, -1273.31], [-1969.86, -1272.95], [-1969.07, -1256.51], [-1967.8, -1256.57], [-1967.71, -1254.69], [-1963.2, -1254.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1945.27, -1300.95], [-1945.89, -1307.53], [-1949.45, -1307.2], [-1948.83, -1300.61], [-1945.27, -1300.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1879.41, -1284.97], [-1885.64, -1284.82], [-1884.99, -1257.62], [-1872.95, -1257.9], [-1873.06, -1262.49], [-1874.81, -1262.45], [-1875.24, -1281.06], [-1879.32, -1280.97], [-1879.41, -1284.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.218, "pop": 109, "jobs": 0}}, {"shape": {"outer": [[-1938.54, -1434.82], [-1938.89, -1443.2], [-1950.02, -1442.73], [-1949.66, -1434.34], [-1938.54, -1434.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1784.46, -1322.3], [-1784.86, -1331.37], [-1799.59, -1330.72], [-1799.19, -1321.66], [-1784.46, -1322.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1877.66, -1220.33], [-1887.31, -1220.25], [-1887.21, -1206.96], [-1877.55, -1207.05], [-1877.66, -1220.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1803.05, -1214.61], [-1803.48, -1222.83], [-1813.4, -1222.32], [-1812.97, -1214.09], [-1803.05, -1214.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2082.33, -1203.02], [-2082.37, -1206.38], [-2079.54, -1206.43], [-2079.69, -1216.72], [-2089.41, -1216.57], [-2089.21, -1202.92], [-2082.33, -1203.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-2131.54, -1299.27], [-2131.39, -1294.09], [-2125.95, -1294.25], [-2126.11, -1299.44], [-2131.54, -1299.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1822.71, -1151.25], [-1829.59, -1151.14], [-1829.37, -1137.05], [-1822.49, -1137.15], [-1822.71, -1151.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1668.77, -1381.34], [-1668.78, -1383.08], [-1665.32, -1383.09], [-1665.36, -1392.71], [-1670.47, -1392.69], [-1670.48, -1395.28], [-1673.77, -1395.26], [-1673.72, -1381.33], [-1668.77, -1381.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1798.02, -1287.64], [-1783.18, -1288.16], [-1783.53, -1298.12], [-1798.39, -1297.64], [-1798.02, -1287.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1849.09, -1261.66], [-1834.43, -1262.19], [-1834.89, -1275.34], [-1849.56, -1274.81], [-1849.09, -1261.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-1990.05, -1451.38], [-1987.9, -1451.61], [-1987.4, -1447.02], [-1984.88, -1447.29], [-1984.64, -1445.22], [-1978.41, -1445.9], [-1979.72, -1457.85], [-1981.22, -1457.68], [-1981.48, -1460.09], [-1988.28, -1459.33], [-1988.07, -1457.5], [-1990.63, -1457.21], [-1990.25, -1453.8], [-1992.05, -1453.6], [-1992.64, -1458.94], [-2000.0, -1458.13], [-1998.49, -1444.41], [-1991.85, -1445.14], [-1992.14, -1447.76], [-1989.69, -1448.03], [-1990.05, -1451.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-1689.47, -1408.72], [-1689.84, -1416.89], [-1695.01, -1416.66], [-1694.71, -1410.07], [-1693.1, -1410.14], [-1693.02, -1408.55], [-1689.47, -1408.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1917.8, -1320.6], [-1909.33, -1320.9], [-1909.49, -1326.83], [-1918.01, -1326.52], [-1917.8, -1320.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-1708.39, -1436.02], [-1715.73, -1436.11], [-1715.81, -1429.59], [-1708.47, -1429.5], [-1708.39, -1436.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1994.28, -1160.77], [-1994.91, -1169.88], [-2007.08, -1169.05], [-2006.45, -1159.95], [-1994.28, -1160.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2071.17, -1247.54], [-2071.83, -1262.85], [-2079.93, -1262.49], [-2079.4, -1250.11], [-2077.71, -1250.19], [-2077.58, -1247.27], [-2071.17, -1247.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-1870.63, -1179.81], [-1870.81, -1189.04], [-1884.53, -1188.75], [-1884.49, -1187.02], [-1886.51, -1186.97], [-1886.4, -1181.41], [-1883.62, -1181.47], [-1883.58, -1179.54], [-1870.63, -1179.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1681.94, -1336.85], [-1681.85, -1334.21], [-1676.08, -1334.36], [-1676.61, -1349.04], [-1683.59, -1348.8], [-1683.44, -1344.65], [-1684.87, -1344.59], [-1684.65, -1336.75], [-1681.94, -1336.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1684.09, -1307.77], [-1684.28, -1313.76], [-1693.97, -1313.43], [-1693.78, -1307.46], [-1684.09, -1307.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1963.17, -1284.59], [-1963.36, -1291.45], [-1968.73, -1291.3], [-1968.53, -1284.43], [-1963.17, -1284.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2079.94, -1184.1], [-2086.9, -1183.88], [-2086.69, -1177.38], [-2079.73, -1177.61], [-2079.94, -1184.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1838.27, -1209.55], [-1833.36, -1209.74], [-1833.52, -1215.65], [-1834.31, -1215.63], [-1834.4, -1218.28], [-1839.2, -1218.11], [-1838.96, -1211.28], [-1838.32, -1211.31], [-1838.27, -1209.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1903.59, -1132.73], [-1904.1, -1148.45], [-1913.39, -1148.15], [-1912.87, -1132.43], [-1903.59, -1132.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-1715.17, -1285.86], [-1721.67, -1285.91], [-1721.71, -1279.63], [-1715.21, -1279.58], [-1715.17, -1285.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1937.06, -1442.09], [-1930.9, -1442.31], [-1931.47, -1458.49], [-1937.56, -1458.27], [-1937.31, -1451.18], [-1938.78, -1451.13], [-1938.64, -1447.22], [-1937.23, -1447.26], [-1937.06, -1442.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2036.3, -1250.97], [-2036.82, -1266.77], [-2038.86, -1266.7], [-2038.93, -1268.73], [-2044.54, -1268.55], [-2044.46, -1265.86], [-2045.92, -1265.82], [-2045.42, -1250.67], [-2036.3, -1250.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1694.8, -1269.72], [-1699.69, -1269.67], [-1699.57, -1258.34], [-1687.76, -1258.47], [-1687.83, -1265.19], [-1694.75, -1265.12], [-1694.8, -1269.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2154.37, -1175.53], [-2145.21, -1175.85], [-2145.39, -1181.67], [-2142.56, -1181.77], [-2142.73, -1186.44], [-2145.26, -1186.43], [-2145.3, -1187.49], [-2154.72, -1187.16], [-2154.37, -1175.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2000.5, -1189.97], [-2000.85, -1200.64], [-2010.46, -1200.32], [-2010.34, -1196.74], [-2013.03, -1196.66], [-2012.78, -1188.84], [-2008.94, -1188.96], [-2008.97, -1189.7], [-2000.5, -1189.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1784.32, -1176.7], [-1795.24, -1176.67], [-1795.2, -1164.01], [-1784.28, -1164.03], [-1784.32, -1176.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2051.17, -1156.96], [-2051.42, -1164.05], [-2055.95, -1163.88], [-2055.69, -1156.8], [-2051.17, -1156.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2090.1, -1297.76], [-2090.31, -1305.29], [-2099.7, -1305.02], [-2099.48, -1297.48], [-2090.1, -1297.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2004.55, -1415.0], [-2019.88, -1415.15], [-2019.96, -1406.86], [-2004.63, -1406.71], [-2004.55, -1415.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-1674.08, -1258.05], [-1674.17, -1260.8], [-1672.86, -1260.84], [-1673.16, -1270.29], [-1682.61, -1269.98], [-1682.29, -1260.17], [-1677.98, -1260.32], [-1677.91, -1257.92], [-1674.08, -1258.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1820.31, -1205.52], [-1814.71, -1205.72], [-1814.93, -1212.09], [-1820.55, -1211.91], [-1820.31, -1205.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1699.14, -1454.02], [-1699.27, -1456.67], [-1696.73, -1456.79], [-1697.25, -1467.86], [-1699.18, -1467.77], [-1699.26, -1469.27], [-1705.71, -1468.97], [-1705.61, -1466.87], [-1706.99, -1466.8], [-1706.48, -1456.12], [-1704.97, -1456.2], [-1704.85, -1453.75], [-1699.14, -1454.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1656.25, -1382.58], [-1656.36, -1386.7], [-1653.94, -1386.77], [-1654.06, -1391.16], [-1657.26, -1391.08], [-1657.39, -1395.92], [-1663.92, -1395.74], [-1663.56, -1382.39], [-1656.25, -1382.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1969.55, -1164.13], [-1969.78, -1171.15], [-1976.1, -1170.94], [-1975.87, -1163.93], [-1969.55, -1164.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1810.84, -1155.71], [-1803.1, -1155.99], [-1803.31, -1161.88], [-1811.05, -1161.61], [-1810.84, -1155.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1945.2, -1131.68], [-1945.24, -1134.06], [-1944.3, -1134.08], [-1944.52, -1147.62], [-1954.37, -1147.46], [-1954.13, -1132.87], [-1952.18, -1132.91], [-1952.16, -1131.57], [-1945.2, -1131.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-2122.82, -1193.26], [-2133.66, -1193.07], [-2133.58, -1189.05], [-2122.75, -1189.24], [-2122.82, -1193.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1913.14, -1408.68], [-1913.63, -1416.16], [-1924.83, -1415.43], [-1924.34, -1407.95], [-1913.14, -1408.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1954.76, -1340.03], [-1963.34, -1339.98], [-1963.24, -1324.24], [-1954.66, -1324.3], [-1954.76, -1340.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1677.89, -1308.76], [-1678.26, -1316.42], [-1682.8, -1316.2], [-1682.43, -1308.54], [-1677.89, -1308.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1964.99, -1189.46], [-1972.3, -1189.14], [-1971.96, -1181.16], [-1964.65, -1181.46], [-1964.99, -1189.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1715.37, -1330.37], [-1715.68, -1339.65], [-1729.84, -1339.19], [-1729.54, -1329.91], [-1715.37, -1330.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2156.74, -1244.45], [-2139.32, -1245.07], [-2139.66, -1254.42], [-2157.07, -1253.8], [-2156.74, -1244.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1817.37, -1328.67], [-1817.84, -1342.92], [-1824.67, -1342.7], [-1824.21, -1328.45], [-1817.37, -1328.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1780.85, -1144.36], [-1797.39, -1144.22], [-1797.3, -1133.54], [-1780.76, -1133.67], [-1780.85, -1144.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2122.48, -1159.71], [-2116.2, -1159.93], [-2116.41, -1166.09], [-2122.69, -1165.88], [-2122.48, -1159.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1935.48, -1419.64], [-1930.35, -1419.85], [-1930.75, -1429.15], [-1935.87, -1428.95], [-1935.48, -1419.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2039.37, -1309.89], [-2039.5, -1313.79], [-2047.56, -1313.53], [-2047.43, -1309.62], [-2039.37, -1309.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2000.29, -1326.16], [-2000.38, -1333.82], [-2000.2, -1333.83], [-2000.29, -1341.82], [-2007.92, -1341.73], [-2007.85, -1334.13], [-2008.26, -1334.12], [-2008.19, -1327.55], [-2005.07, -1327.59], [-2005.06, -1326.1], [-2000.29, -1326.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1957.91, -1181.6], [-1949.83, -1181.89], [-1950.07, -1188.47], [-1958.15, -1188.19], [-1957.91, -1181.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2010.76, -1386.29], [-2018.55, -1386.12], [-2018.23, -1371.38], [-2014.8, -1371.46], [-2014.76, -1369.3], [-2010.39, -1369.4], [-2010.76, -1386.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-1981.4, -1253.74], [-1981.56, -1256.74], [-1980.46, -1256.79], [-1981.01, -1267.42], [-1984.08, -1267.27], [-1984.11, -1267.86], [-1989.73, -1267.56], [-1989.08, -1254.95], [-1986.97, -1255.06], [-1986.88, -1253.45], [-1981.4, -1253.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1944.94, -1323.81], [-1945.78, -1336.98], [-1952.6, -1336.55], [-1952.45, -1334.19], [-1954.11, -1334.08], [-1953.69, -1327.66], [-1953.2, -1327.69], [-1952.93, -1323.29], [-1944.94, -1323.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2144.3, -1300.27], [-2144.09, -1293.35], [-2136.32, -1293.58], [-2136.52, -1300.49], [-2144.3, -1300.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1792.0, -1200.79], [-1791.96, -1202.61], [-1781.45, -1202.39], [-1781.28, -1210.79], [-1787.15, -1210.91], [-1787.11, -1212.5], [-1791.48, -1212.6], [-1791.54, -1209.67], [-1795.88, -1209.77], [-1795.96, -1205.97], [-1798.01, -1206.01], [-1798.12, -1200.91], [-1792.0, -1200.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2138.74, -1314.82], [-2138.85, -1319.18], [-2135.78, -1319.25], [-2136.1, -1332.38], [-2140.61, -1332.28], [-2140.63, -1333.52], [-2144.97, -1333.42], [-2144.52, -1314.68], [-2138.74, -1314.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2037.65, -1130.69], [-2038.01, -1139.07], [-2051.23, -1138.51], [-2050.88, -1130.13], [-2037.65, -1130.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2059.01, -1158.04], [-2059.26, -1165.74], [-2067.21, -1165.48], [-2066.96, -1157.78], [-2059.01, -1158.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1657.2, -1427.02], [-1657.37, -1435.54], [-1666.68, -1435.36], [-1666.66, -1434.37], [-1670.55, -1434.29], [-1670.39, -1426.76], [-1657.2, -1427.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1925.96, -1323.6], [-1926.04, -1326.63], [-1924.17, -1326.68], [-1924.49, -1339.07], [-1932.23, -1338.86], [-1931.89, -1325.87], [-1930.41, -1325.91], [-1930.35, -1323.48], [-1925.96, -1323.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2146.22, -1294.57], [-2146.43, -1300.84], [-2152.86, -1300.64], [-2152.66, -1294.36], [-2146.22, -1294.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1653.82, -1330.55], [-1654.08, -1334.73], [-1662.32, -1334.23], [-1662.06, -1330.04], [-1653.82, -1330.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1722.17, -1274.02], [-1732.2, -1273.98], [-1732.12, -1256.71], [-1722.1, -1256.75], [-1722.17, -1274.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1758.05, -1254.8], [-1739.69, -1255.46], [-1740.0, -1264.03], [-1758.36, -1263.37], [-1758.05, -1254.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-1744.26, -1450.46], [-1744.59, -1456.61], [-1749.02, -1456.38], [-1749.08, -1457.58], [-1758.44, -1457.09], [-1760.73, -1456.97], [-1760.37, -1450.1], [-1758.48, -1450.2], [-1758.4, -1448.73], [-1748.88, -1449.23], [-1748.92, -1450.2], [-1744.26, -1450.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1737.75, -1382.74], [-1738.03, -1391.13], [-1758.06, -1390.47], [-1757.79, -1382.08], [-1737.75, -1382.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-2124.46, -1247.11], [-2125.09, -1256.54], [-2133.6, -1255.97], [-2132.96, -1246.53], [-2124.46, -1247.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1871.87, -1167.79], [-1872.07, -1175.5], [-1879.28, -1175.31], [-1879.26, -1174.22], [-1882.75, -1174.12], [-1882.44, -1161.97], [-1869.17, -1162.32], [-1869.31, -1167.85], [-1871.87, -1167.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1971.0, -1256.46], [-1971.86, -1271.38], [-1976.86, -1271.09], [-1976.68, -1268.05], [-1979.15, -1267.91], [-1978.39, -1254.65], [-1973.72, -1254.92], [-1973.8, -1256.3], [-1971.0, -1256.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1827.77, -1210.67], [-1823.35, -1210.83], [-1823.43, -1213.0], [-1821.99, -1213.06], [-1822.15, -1217.42], [-1818.54, -1217.54], [-1818.83, -1225.52], [-1829.84, -1225.12], [-1829.3, -1211.7], [-1827.8, -1211.74], [-1827.77, -1210.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1696.64, -1392.21], [-1704.8, -1392.13], [-1704.71, -1381.78], [-1696.55, -1381.85], [-1696.64, -1392.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2094.62, -1126.66], [-2094.7, -1128.94], [-2093.88, -1128.96], [-2094.04, -1133.77], [-2092.08, -1133.84], [-2092.21, -1137.82], [-2093.35, -1137.79], [-2093.49, -1141.94], [-2102.36, -1141.66], [-2101.88, -1126.91], [-2100.5, -1126.96], [-2100.48, -1126.47], [-2094.62, -1126.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1963.94, -1377.56], [-1964.55, -1387.25], [-1973.29, -1386.71], [-1972.26, -1370.03], [-1964.82, -1370.49], [-1965.26, -1377.48], [-1963.94, -1377.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-2036.89, -1154.35], [-2048.86, -1154.12], [-2048.71, -1145.93], [-2036.74, -1146.16], [-2036.89, -1154.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2123.75, -1126.96], [-2124.25, -1139.38], [-2133.91, -1138.99], [-2133.4, -1126.57], [-2123.75, -1126.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2001.35, -1371.81], [-2002.04, -1383.28], [-2009.31, -1382.84], [-2008.61, -1371.37], [-2001.35, -1371.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2150.21, -1328.57], [-2158.34, -1328.58], [-2158.36, -1314.15], [-2150.22, -1314.14], [-2150.21, -1328.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[-1723.06, -1381.91], [-1723.36, -1391.36], [-1731.75, -1391.09], [-1731.44, -1381.64], [-1723.06, -1381.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-2001.56, -1445.78], [-2001.94, -1457.74], [-2004.71, -1457.65], [-2004.81, -1460.67], [-2011.32, -1460.45], [-2010.84, -1445.47], [-2001.56, -1445.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1828.13, -1262.32], [-1823.84, -1262.47], [-1823.8, -1261.36], [-1817.59, -1261.59], [-1818.0, -1278.21], [-1828.71, -1277.83], [-1828.13, -1262.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1651.85, -1307.17], [-1652.18, -1315.59], [-1665.45, -1315.07], [-1665.12, -1306.66], [-1651.85, -1307.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1992.37, -1252.22], [-1992.87, -1262.47], [-2002.11, -1262.03], [-2001.61, -1251.77], [-1992.37, -1252.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2012.46, -1461.03], [-2020.95, -1460.8], [-2020.49, -1444.18], [-2012.0, -1444.42], [-2012.46, -1461.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2113.11, -1215.9], [-2122.4, -1215.75], [-2122.22, -1205.32], [-2112.93, -1205.47], [-2113.11, -1215.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1738.03, -1459.93], [-1738.31, -1467.2], [-1744.82, -1466.96], [-1744.85, -1467.85], [-1759.5, -1467.3], [-1759.23, -1459.98], [-1746.16, -1460.48], [-1746.13, -1459.62], [-1738.03, -1459.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[-1884.5, -1305.72], [-1872.07, -1306.16], [-1872.31, -1312.83], [-1884.74, -1312.39], [-1884.5, -1305.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2150.36, -1203.59], [-2150.72, -1214.58], [-2151.78, -1214.54], [-2151.85, -1216.74], [-2158.53, -1216.52], [-2158.1, -1203.33], [-2150.36, -1203.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1964.45, -1327.16], [-1964.62, -1332.05], [-1965.35, -1332.03], [-1965.52, -1337.56], [-1972.61, -1337.33], [-1972.27, -1327.07], [-1970.64, -1327.12], [-1970.55, -1324.28], [-1965.26, -1324.45], [-1965.35, -1327.14], [-1964.45, -1327.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1844.79, -1305.39], [-1845.36, -1312.54], [-1852.29, -1312.0], [-1851.72, -1304.84], [-1844.79, -1305.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2070.6, -1129.73], [-2070.93, -1139.9], [-2079.56, -1139.62], [-2079.25, -1130.09], [-2076.97, -1130.17], [-2076.84, -1126.34], [-2071.87, -1126.5], [-2071.98, -1129.68], [-2070.6, -1129.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1783.8, -1272.92], [-1784.21, -1282.17], [-1798.54, -1281.54], [-1798.13, -1272.29], [-1783.8, -1272.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1720.15, -1308.3], [-1720.49, -1315.55], [-1726.64, -1315.28], [-1726.54, -1313.15], [-1729.71, -1313.0], [-1729.42, -1306.74], [-1725.92, -1306.89], [-1725.97, -1308.03], [-1720.15, -1308.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1866.07, -1324.49], [-1854.33, -1324.91], [-1854.92, -1341.46], [-1866.66, -1341.04], [-1866.07, -1324.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-1810.94, -1288.14], [-1804.45, -1288.37], [-1804.7, -1295.5], [-1811.15, -1295.25], [-1810.94, -1288.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2147.55, -1165.32], [-2154.55, -1165.28], [-2154.47, -1154.23], [-2144.52, -1154.29], [-2144.57, -1163.66], [-2147.53, -1163.64], [-2147.55, -1165.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-2001.26, -1130.51], [-2001.43, -1135.72], [-2000.76, -1135.75], [-2001.09, -1145.09], [-2001.84, -1145.06], [-2001.97, -1148.82], [-2009.57, -1148.55], [-2009.54, -1147.95], [-2010.54, -1147.93], [-2010.0, -1130.24], [-2001.26, -1130.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-1966.98, -1301.58], [-1963.71, -1301.68], [-1963.9, -1308.09], [-1967.16, -1308.0], [-1966.98, -1301.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1808.05, -1314.94], [-1815.31, -1314.96], [-1815.32, -1303.34], [-1808.07, -1303.33], [-1808.05, -1314.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1704.28, -1313.79], [-1709.77, -1313.68], [-1709.65, -1307.33], [-1704.16, -1307.44], [-1704.28, -1313.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2011.7, -1390.63], [-2011.79, -1394.19], [-2007.62, -1394.31], [-2007.86, -1403.37], [-2018.12, -1403.09], [-2017.79, -1390.46], [-2011.7, -1390.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1989.62, -1322.6], [-1989.8, -1326.25], [-1989.36, -1326.27], [-1989.85, -1336.19], [-1997.59, -1335.82], [-1997.08, -1325.43], [-1995.5, -1325.5], [-1995.35, -1322.31], [-1989.62, -1322.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-2106.0, -1285.78], [-2113.25, -1285.7], [-2113.18, -1279.09], [-2105.93, -1279.17], [-2106.0, -1285.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1653.63, -1261.23], [-1653.69, -1263.85], [-1652.31, -1263.88], [-1652.49, -1271.96], [-1659.05, -1271.81], [-1659.17, -1276.96], [-1666.62, -1276.79], [-1666.47, -1270.35], [-1665.64, -1270.38], [-1665.43, -1260.96], [-1653.63, -1261.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-1858.69, -1134.48], [-1858.89, -1139.42], [-1857.45, -1139.48], [-1857.74, -1146.7], [-1866.44, -1146.36], [-1865.99, -1135.12], [-1862.49, -1135.26], [-1862.45, -1134.32], [-1858.69, -1134.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1718.47, -1411.28], [-1711.05, -1411.47], [-1711.34, -1419.45], [-1718.73, -1419.37], [-1718.47, -1411.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2072.75, -1278.93], [-2073.15, -1286.25], [-2079.18, -1285.92], [-2078.78, -1278.6], [-2072.75, -1278.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2038.16, -1277.89], [-2038.27, -1280.97], [-2040.71, -1280.9], [-2040.98, -1289.04], [-2047.9, -1288.81], [-2047.81, -1286.21], [-2050.26, -1286.13], [-2049.97, -1277.5], [-2038.16, -1277.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1983.82, -1397.85], [-1992.89, -1397.8], [-1992.84, -1388.59], [-1983.77, -1388.65], [-1983.82, -1397.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1910.75, -1378.08], [-1911.0, -1383.29], [-1912.04, -1383.24], [-1912.38, -1390.22], [-1921.06, -1389.79], [-1920.32, -1374.5], [-1912.63, -1374.87], [-1912.77, -1377.97], [-1910.75, -1378.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2135.57, -1275.19], [-2135.89, -1285.3], [-2144.12, -1285.03], [-2144.15, -1286.08], [-2153.35, -1285.78], [-2153.34, -1285.45], [-2157.42, -1285.32], [-2157.1, -1275.63], [-2152.46, -1275.78], [-2152.44, -1275.3], [-2144.79, -1275.55], [-2144.77, -1274.89], [-2135.57, -1275.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[-1839.05, -1185.41], [-1833.34, -1185.6], [-1833.58, -1192.96], [-1839.29, -1192.77], [-1839.05, -1185.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1920.57, -1339.08], [-1920.19, -1328.63], [-1910.5, -1328.98], [-1910.76, -1336.75], [-1912.67, -1336.67], [-1912.78, -1339.4], [-1920.57, -1339.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1658.29, -1443.21], [-1658.36, -1446.48], [-1655.0, -1446.54], [-1655.13, -1452.8], [-1668.43, -1452.52], [-1668.33, -1447.13], [-1665.22, -1447.2], [-1665.14, -1443.07], [-1658.29, -1443.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1739.18, -1273.21], [-1739.51, -1280.75], [-1754.65, -1280.1], [-1754.44, -1275.22], [-1755.17, -1275.19], [-1754.95, -1270.21], [-1744.79, -1270.65], [-1744.89, -1272.97], [-1739.18, -1273.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1959.58, -1457.91], [-1967.06, -1457.82], [-1966.97, -1450.0], [-1959.49, -1450.09], [-1959.58, -1457.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1915.01, -1255.56], [-1915.14, -1262.37], [-1913.14, -1262.4], [-1913.2, -1265.57], [-1914.67, -1265.54], [-1914.8, -1272.68], [-1922.41, -1272.54], [-1922.09, -1255.43], [-1915.01, -1255.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1937.15, -1277.02], [-1942.03, -1277.03], [-1942.06, -1267.9], [-1937.18, -1267.88], [-1937.15, -1277.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-2061.38, -1314.76], [-2067.57, -1314.64], [-2067.46, -1308.8], [-2061.27, -1308.92], [-2061.38, -1314.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2003.28, -1291.95], [-2014.52, -1291.74], [-2014.35, -1282.57], [-2003.11, -1282.78], [-2003.28, -1291.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-2120.78, -1301.55], [-2124.97, -1301.49], [-2124.89, -1295.39], [-2120.7, -1295.45], [-2120.78, -1301.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-2092.08, -1149.45], [-2092.26, -1155.58], [-2098.76, -1155.4], [-2098.57, -1149.27], [-2092.08, -1149.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2082.6, -1134.98], [-2082.85, -1139.44], [-2090.63, -1139.01], [-2090.0, -1127.31], [-2083.22, -1127.67], [-2083.61, -1134.92], [-2082.6, -1134.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-1827.92, -1303.51], [-1828.44, -1311.9], [-1834.74, -1311.51], [-1834.22, -1303.13], [-1827.92, -1303.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1650.45, -1336.81], [-1650.98, -1350.34], [-1660.74, -1349.96], [-1660.65, -1347.64], [-1663.18, -1347.55], [-1662.75, -1336.33], [-1650.45, -1336.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1871.64, -1293.35], [-1878.62, -1293.2], [-1878.47, -1286.36], [-1871.5, -1286.5], [-1871.64, -1293.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2058.06, -1139.59], [-2068.3, -1139.42], [-2068.13, -1129.32], [-2057.89, -1129.48], [-2058.06, -1139.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1743.5, -1441.57], [-1743.69, -1447.11], [-1749.95, -1446.9], [-1749.98, -1447.72], [-1760.65, -1447.37], [-1760.59, -1445.57], [-1759.62, -1445.61], [-1759.5, -1442.02], [-1756.73, -1442.11], [-1756.71, -1441.3], [-1749.21, -1441.55], [-1749.2, -1441.38], [-1743.5, -1441.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1929.26, -1257.75], [-1929.75, -1266.42], [-1939.41, -1265.86], [-1938.96, -1257.99], [-1936.6, -1258.13], [-1936.41, -1254.8], [-1930.81, -1255.12], [-1930.96, -1257.65], [-1929.26, -1257.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1866.2, -1208.96], [-1866.66, -1220.52], [-1875.14, -1220.19], [-1874.72, -1209.66], [-1872.59, -1209.75], [-1872.49, -1207.37], [-1867.71, -1207.55], [-1867.76, -1208.91], [-1866.2, -1208.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1727.79, -1283.9], [-1734.31, -1283.86], [-1734.27, -1277.67], [-1727.75, -1277.71], [-1727.79, -1283.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1727.23, -1457.18], [-1727.53, -1466.62], [-1734.78, -1466.39], [-1734.47, -1456.94], [-1727.23, -1457.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1957.7, -1434.8], [-1958.0, -1441.4], [-1963.0, -1441.16], [-1962.71, -1434.57], [-1957.7, -1434.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-2000.95, -1152.24], [-2001.14, -1158.91], [-2010.38, -1158.53], [-2010.14, -1151.86], [-2000.95, -1152.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-2136.58, -1126.2], [-2137.37, -1144.25], [-2144.12, -1143.96], [-2144.01, -1141.36], [-2144.98, -1141.32], [-2144.33, -1126.18], [-2143.2, -1126.22], [-2143.18, -1125.92], [-2136.58, -1126.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1868.68, -1287.23], [-1855.86, -1287.7], [-1856.12, -1295.07], [-1868.95, -1294.61], [-1868.68, -1287.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-1936.12, -1328.01], [-1936.6, -1337.93], [-1937.3, -1337.9], [-1937.4, -1340.03], [-1942.7, -1339.78], [-1942.57, -1337.16], [-1943.21, -1337.13], [-1942.74, -1327.69], [-1936.12, -1328.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1939.99, -1209.15], [-1940.33, -1219.65], [-1947.17, -1219.42], [-1946.83, -1208.93], [-1939.99, -1209.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1959.91, -1208.74], [-1951.02, -1209.05], [-1951.18, -1213.7], [-1949.61, -1213.76], [-1949.74, -1217.62], [-1951.23, -1217.55], [-1951.3, -1219.83], [-1951.33, -1220.62], [-1960.33, -1220.29], [-1959.91, -1208.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1798.87, -1148.97], [-1780.47, -1149.59], [-1780.57, -1152.67], [-1779.48, -1152.71], [-1779.6, -1155.96], [-1780.69, -1155.92], [-1780.78, -1158.37], [-1799.19, -1157.75], [-1799.16, -1156.86], [-1801.62, -1156.78], [-1801.42, -1150.76], [-1798.94, -1150.85], [-1798.87, -1148.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2047.58, -1145.35], [-2056.13, -1145.16], [-2056.03, -1140.55], [-2047.48, -1140.75], [-2047.58, -1145.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1812.51, -1167.03], [-1812.99, -1174.67], [-1831.22, -1173.51], [-1830.73, -1165.87], [-1812.51, -1167.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-2143.93, -1256.67], [-2144.4, -1266.16], [-2156.61, -1265.55], [-2156.55, -1264.33], [-2158.9, -1264.21], [-2158.5, -1255.94], [-2143.93, -1256.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1939.54, -1306.64], [-1944.06, -1306.55], [-1943.94, -1300.61], [-1939.43, -1300.69], [-1939.54, -1306.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2098.29, -1201.69], [-2098.41, -1205.2], [-2097.19, -1205.24], [-2097.56, -1216.72], [-2106.35, -1216.43], [-2105.97, -1204.46], [-2104.5, -1204.5], [-2104.4, -1201.49], [-2098.29, -1201.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1667.8, -1278.37], [-1674.02, -1278.28], [-1673.93, -1271.94], [-1667.71, -1272.03], [-1667.8, -1278.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2049.95, -1316.35], [-2050.53, -1337.63], [-2057.31, -1337.44], [-2057.25, -1335.36], [-2060.83, -1335.27], [-2060.39, -1319.63], [-2056.07, -1319.74], [-2055.98, -1316.19], [-2049.95, -1316.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-2070.82, -1301.89], [-2070.65, -1296.34], [-2064.73, -1296.51], [-2064.89, -1302.06], [-2070.82, -1301.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1848.59, -1185.33], [-1845.74, -1185.43], [-1845.96, -1192.47], [-1848.84, -1192.38], [-1848.59, -1185.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1958.81, -1165.02], [-1959.08, -1171.37], [-1964.91, -1171.12], [-1964.64, -1164.76], [-1958.81, -1165.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1786.59, -1193.15], [-1795.95, -1193.13], [-1795.92, -1183.55], [-1782.39, -1183.58], [-1782.41, -1191.18], [-1786.58, -1191.17], [-1786.59, -1193.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1739.87, -1311.97], [-1740.15, -1321.94], [-1753.34, -1321.57], [-1753.12, -1313.68], [-1752.33, -1313.71], [-1752.27, -1311.62], [-1739.87, -1311.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1911.55, -1301.08], [-1911.9, -1315.43], [-1921.84, -1315.18], [-1921.66, -1308.07], [-1924.65, -1308.0], [-1924.49, -1301.27], [-1921.29, -1301.34], [-1921.28, -1300.84], [-1911.55, -1301.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[-1676.01, -1410.85], [-1676.33, -1417.23], [-1688.65, -1416.62], [-1688.18, -1407.1], [-1677.71, -1407.61], [-1677.86, -1410.76], [-1676.01, -1410.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2050.46, -1276.63], [-2053.22, -1276.58], [-2052.83, -1269.69], [-2055.97, -1269.51], [-2055.81, -1266.71], [-2057.33, -1266.62], [-2056.29, -1248.62], [-2053.29, -1248.79], [-2053.34, -1249.59], [-2047.98, -1249.89], [-2048.58, -1260.35], [-2047.7, -1260.4], [-2047.94, -1264.6], [-2046.68, -1264.68], [-2047.33, -1276.0], [-2050.41, -1275.82], [-2050.46, -1276.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[-2063.17, -1286.67], [-2071.05, -1286.59], [-2070.98, -1279.42], [-2063.1, -1279.51], [-2063.17, -1286.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1661.89, -1408.61], [-1661.85, -1414.79], [-1659.17, -1414.78], [-1659.11, -1422.74], [-1668.96, -1422.81], [-1668.99, -1418.81], [-1672.01, -1418.83], [-1672.08, -1408.68], [-1661.89, -1408.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1726.44, -1428.99], [-1726.74, -1435.82], [-1732.22, -1435.58], [-1731.92, -1428.74], [-1726.44, -1428.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-1979.14, -1317.72], [-1979.29, -1322.28], [-1975.06, -1322.41], [-1975.62, -1339.59], [-1984.5, -1339.3], [-1983.91, -1321.39], [-1983.5, -1321.4], [-1983.38, -1317.58], [-1979.14, -1317.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[-1717.44, -1452.04], [-1718.39, -1468.63], [-1726.38, -1468.18], [-1725.44, -1451.58], [-1717.44, -1452.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-1885.14, -1324.17], [-1872.87, -1324.61], [-1873.44, -1340.48], [-1885.71, -1340.04], [-1885.14, -1324.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-2136.48, -1216.11], [-2145.63, -1215.88], [-2145.36, -1205.13], [-2136.21, -1205.36], [-2136.48, -1216.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1917.32, -1440.82], [-1917.86, -1448.04], [-1916.37, -1448.15], [-1916.95, -1456.03], [-1923.12, -1455.58], [-1922.7, -1449.95], [-1923.89, -1449.86], [-1923.55, -1445.21], [-1921.26, -1445.37], [-1920.9, -1440.55], [-1917.32, -1440.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-2121.48, -1128.8], [-2113.81, -1129.08], [-2113.87, -1130.62], [-2113.16, -1130.64], [-2113.26, -1133.23], [-2112.74, -1133.24], [-2112.9, -1137.75], [-2113.51, -1137.73], [-2113.59, -1139.43], [-2117.91, -1139.27], [-2117.95, -1140.54], [-2121.95, -1140.37], [-2121.48, -1128.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-1981.13, -1302.79], [-1974.77, -1302.97], [-1974.95, -1309.17], [-1981.31, -1308.97], [-1981.13, -1302.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1652.47, -1318.65], [-1652.79, -1326.9], [-1666.18, -1326.38], [-1666.06, -1323.5], [-1668.45, -1323.41], [-1668.29, -1319.35], [-1666.2, -1319.43], [-1666.14, -1318.12], [-1652.47, -1318.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-2060.47, -1266.81], [-2070.09, -1266.53], [-2069.55, -1247.55], [-2059.92, -1247.83], [-2060.47, -1266.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[-2060.57, -1204.93], [-2060.59, -1210.7], [-2059.33, -1210.7], [-2059.36, -1217.95], [-2066.04, -1217.92], [-2066.02, -1214.29], [-2066.74, -1214.28], [-2066.73, -1210.82], [-2065.66, -1210.83], [-2065.64, -1204.91], [-2060.57, -1204.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-1989.58, -1376.24], [-1989.97, -1385.27], [-1998.02, -1384.92], [-1997.36, -1369.78], [-1991.02, -1370.06], [-1991.29, -1376.16], [-1989.58, -1376.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1838.03, -1324.58], [-1838.4, -1333.69], [-1841.45, -1333.56], [-1841.77, -1341.34], [-1851.63, -1340.93], [-1851.33, -1333.63], [-1853.34, -1333.55], [-1853.15, -1328.91], [-1851.03, -1329.01], [-1850.63, -1319.24], [-1842.97, -1319.56], [-1843.17, -1324.36], [-1838.03, -1324.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[-1816.73, -1304.19], [-1817.28, -1313.38], [-1824.08, -1312.98], [-1823.53, -1303.79], [-1816.73, -1304.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-1649.31, -1289.38], [-1649.94, -1297.37], [-1664.92, -1296.18], [-1664.72, -1293.54], [-1672.29, -1292.95], [-1671.81, -1286.96], [-1663.03, -1287.66], [-1663.08, -1288.3], [-1649.31, -1289.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[-1851.05, -1187.48], [-1857.28, -1187.64], [-1857.42, -1181.9], [-1851.19, -1181.74], [-1851.05, -1187.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1928.5, -1287.13], [-1928.78, -1291.29], [-1932.72, -1291.03], [-1932.83, -1292.68], [-1943.34, -1291.99], [-1942.82, -1284.31], [-1932.11, -1285.02], [-1932.23, -1286.87], [-1928.5, -1287.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1689.89, -1428.97], [-1690.24, -1437.35], [-1697.87, -1437.03], [-1697.52, -1428.64], [-1689.89, -1428.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-1945.59, -1285.03], [-1945.9, -1292.04], [-1950.5, -1291.83], [-1950.19, -1284.84], [-1945.59, -1285.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[-1991.31, -1205.67], [-1991.74, -1218.87], [-1992.72, -1218.84], [-1992.76, -1220.06], [-1999.6, -1219.83], [-1999.55, -1218.45], [-2000.45, -1218.42], [-2000.03, -1205.39], [-1991.31, -1205.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1980.14, -1282.75], [-1980.46, -1289.06], [-1984.37, -1288.86], [-1984.5, -1291.27], [-1991.63, -1290.89], [-1991.19, -1282.19], [-1980.14, -1282.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1794.62, -1213.27], [-1795.09, -1220.11], [-1800.04, -1219.76], [-1799.57, -1212.93], [-1794.62, -1213.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2004.29, -1422.54], [-2004.48, -1428.16], [-2011.73, -1427.92], [-2011.94, -1434.59], [-2018.54, -1434.38], [-2018.1, -1420.78], [-2008.65, -1421.09], [-2008.69, -1422.39], [-2004.29, -1422.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1930.82, -1130.5], [-1930.92, -1132.98], [-1930.25, -1133.01], [-1930.8, -1147.15], [-1940.65, -1146.76], [-1940.09, -1132.28], [-1938.54, -1132.33], [-1938.46, -1130.2], [-1930.82, -1130.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-1784.41, -1333.0], [-1784.84, -1345.87], [-1796.73, -1345.49], [-1796.31, -1332.62], [-1784.41, -1333.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1955.94, -1136.34], [-1956.41, -1146.05], [-1958.45, -1145.94], [-1958.51, -1147.45], [-1966.66, -1147.06], [-1965.9, -1131.36], [-1958.13, -1131.72], [-1958.35, -1136.23], [-1955.94, -1136.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-1976.57, -1219.24], [-1984.9, -1219.01], [-1984.56, -1206.15], [-1976.23, -1206.36], [-1976.57, -1219.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-1827.83, -1329.3], [-1828.4, -1341.92], [-1835.43, -1341.6], [-1834.86, -1328.99], [-1827.83, -1329.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2124.95, -1319.41], [-2125.36, -1330.22], [-2131.98, -1329.97], [-2132.04, -1331.64], [-2133.99, -1331.58], [-2133.39, -1316.1], [-2127.29, -1316.33], [-2127.41, -1319.32], [-2124.95, -1319.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-2078.87, -1306.73], [-2088.85, -1306.06], [-2088.49, -1297.81], [-2078.51, -1298.46], [-2078.87, -1306.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1904.53, -1182.75], [-1904.87, -1188.22], [-1908.12, -1188.01], [-1908.15, -1188.58], [-1919.16, -1187.91], [-1918.64, -1179.36], [-1907.78, -1180.03], [-1907.93, -1182.54], [-1904.53, -1182.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-2004.37, -1261.07], [-2013.81, -1260.99], [-2013.71, -1250.56], [-2008.34, -1250.61], [-2008.33, -1249.43], [-2004.27, -1249.47], [-2004.37, -1261.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[-1658.46, -1463.03], [-1658.74, -1469.77], [-1668.95, -1469.34], [-1668.53, -1459.34], [-1660.22, -1459.69], [-1660.36, -1462.96], [-1658.46, -1463.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-2040.32, -1269.81], [-2040.7, -1276.56], [-2046.59, -1276.22], [-2046.2, -1269.48], [-2040.32, -1269.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2000.62, -1310.83], [-2000.68, -1312.69], [-1999.76, -1312.71], [-1999.93, -1318.24], [-2015.75, -1317.75], [-2015.52, -1310.37], [-2000.62, -1310.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-1988.63, -1129.38], [-1989.35, -1146.72], [-1997.21, -1146.39], [-1996.47, -1129.05], [-1988.63, -1129.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1955.3, -1309.39], [-1962.33, -1309.3], [-1962.22, -1301.23], [-1955.2, -1301.32], [-1955.3, -1309.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2097.71, -1175.39], [-2097.86, -1178.64], [-2105.07, -1178.43], [-2104.98, -1175.18], [-2097.71, -1175.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2112.41, -1128.08], [-2104.95, -1128.4], [-2105.17, -1134.55], [-2103.77, -1134.6], [-2103.93, -1139.3], [-2105.15, -1139.25], [-2105.26, -1142.22], [-2112.89, -1141.95], [-2112.41, -1128.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-1850.49, -1209.64], [-1850.89, -1221.77], [-1859.11, -1221.5], [-1858.71, -1209.37], [-1850.49, -1209.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-2101.78, -1248.99], [-2102.37, -1259.73], [-2110.87, -1259.26], [-2110.28, -1248.52], [-2101.78, -1248.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2080.47, -1320.3], [-2080.45, -1323.68], [-2076.44, -1323.66], [-2076.38, -1334.16], [-2086.4, -1334.21], [-2086.44, -1326.03], [-2088.11, -1326.04], [-2088.14, -1320.34], [-2080.47, -1320.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-1850.1, -1166.81], [-1850.28, -1172.32], [-1856.62, -1172.1], [-1856.44, -1166.61], [-1850.1, -1166.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1799.16, -1167.87], [-1799.51, -1174.46], [-1807.57, -1174.03], [-1807.21, -1167.44], [-1799.16, -1167.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1961.52, -1204.66], [-1962.54, -1220.94], [-1972.4, -1220.31], [-1971.38, -1204.05], [-1961.52, -1204.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2034.32, -1207.13], [-2034.63, -1216.57], [-2045.38, -1216.23], [-2045.08, -1207.02], [-2044.18, -1207.05], [-2044.06, -1203.3], [-2038.19, -1203.5], [-2038.31, -1206.99], [-2034.32, -1207.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1832.12, -1287.99], [-1819.7, -1288.43], [-1819.96, -1295.77], [-1832.38, -1295.33], [-1832.12, -1287.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-2062.84, -1324.71], [-2063.27, -1335.34], [-2072.88, -1334.95], [-2072.47, -1324.94], [-2070.52, -1325.02], [-2070.42, -1322.48], [-2064.57, -1322.72], [-2064.65, -1324.63], [-2062.84, -1324.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1976.08, -1131.1], [-1976.1, -1131.75], [-1967.64, -1131.95], [-1967.99, -1146.99], [-1976.27, -1146.81], [-1976.29, -1147.89], [-1985.18, -1147.68], [-1984.8, -1130.9], [-1976.08, -1131.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.218, "pop": 109, "jobs": 0}}, {"shape": {"outer": [[-1823.89, -1184.45], [-1824.08, -1190.81], [-1830.31, -1190.63], [-1830.12, -1184.27], [-1823.89, -1184.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1723.16, -1286.31], [-1723.61, -1292.66], [-1731.16, -1292.12], [-1730.71, -1285.77], [-1723.16, -1286.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-1744.54, -1322.42], [-1744.69, -1329.51], [-1739.29, -1329.63], [-1739.52, -1340.49], [-1754.2, -1340.17], [-1753.97, -1329.31], [-1750.02, -1329.39], [-1749.87, -1322.3], [-1744.54, -1322.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-2005.08, -1270.71], [-2005.48, -1279.05], [-2014.35, -1278.62], [-2013.96, -1270.6], [-2009.65, -1270.81], [-2009.64, -1270.49], [-2005.08, -1270.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-1924.71, -1374.11], [-1925.04, -1384.2], [-1933.51, -1383.92], [-1933.18, -1373.83], [-1924.71, -1374.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-2001.87, -1220.11], [-2012.57, -1219.82], [-2012.19, -1205.65], [-2001.48, -1205.94], [-2001.87, -1220.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1950.31, -1172.7], [-1958.14, -1172.5], [-1957.97, -1165.22], [-1950.15, -1165.4], [-1950.31, -1172.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1865.84, -1305.53], [-1853.54, -1305.93], [-1853.78, -1312.65], [-1865.99, -1312.28], [-1865.84, -1305.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1743.6, -1427.26], [-1743.91, -1433.98], [-1756.32, -1433.4], [-1756.02, -1426.68], [-1743.6, -1427.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-1913.55, -1196.44], [-1909.12, -1196.6], [-1909.28, -1201.1], [-1907.64, -1201.16], [-1907.8, -1205.77], [-1906.32, -1205.82], [-1907.01, -1225.01], [-1914.43, -1224.74], [-1913.55, -1196.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2121.96, -1197.57], [-2122.3, -1203.59], [-2126.03, -1203.37], [-2126.77, -1216.12], [-2134.86, -1215.66], [-2134.11, -1202.66], [-2127.06, -1203.08], [-2126.72, -1197.29], [-2121.96, -1197.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2093.39, -1266.14], [-2090.06, -1266.24], [-2090.22, -1271.92], [-2093.55, -1271.83], [-2093.39, -1266.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-2141.68, -1176.89], [-2135.8, -1177.1], [-2136.0, -1183.34], [-2141.91, -1183.17], [-2141.68, -1176.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2145.27, -1128.22], [-2146.23, -1141.0], [-2148.97, -1140.79], [-2149.13, -1142.96], [-2154.76, -1142.54], [-2154.56, -1139.82], [-2155.45, -1139.75], [-2154.53, -1127.53], [-2145.27, -1128.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-2035.93, -1159.15], [-2036.46, -1168.58], [-2050.86, -1167.78], [-2050.34, -1158.34], [-2035.93, -1159.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1974.24, -1372.83], [-1974.82, -1383.01], [-1982.29, -1382.58], [-1981.72, -1372.4], [-1974.24, -1372.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[245.14, -3120.41], [251.7, -3121.31], [249.87, -3134.68], [243.31, -3133.78], [245.14, -3120.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[677.55, 266.89], [684.23, 272.85], [690.69, 265.67], [684.01, 259.71], [677.55, 266.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[722.5, 285.59], [731.55, 275.45], [712.22, 258.33], [706.85, 264.35], [710.62, 267.69], [706.94, 271.81], [722.5, 285.59]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.207, "pop": 0, "jobs": 207}}, {"shape": {"outer": [[773.19, 347.5], [780.9, 337.46], [791.72, 345.71], [789.15, 349.06], [799.36, 356.85], [794.22, 363.52], [773.19, 347.5]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.179, "pop": 0, "jobs": 179}}, {"shape": {"outer": [[461.02, 1186.63], [463.28, 1184.15], [463.63, 1184.47], [477.46, 1169.32], [473.2, 1165.46], [470.36, 1168.58], [468.43, 1166.83], [466.34, 1169.14], [463.97, 1166.99], [455.59, 1176.19], [460.4, 1180.55], [457.65, 1183.57], [461.02, 1186.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[490.31, 1116.96], [498.89, 1124.71], [506.69, 1116.14], [498.1, 1108.38], [490.31, 1116.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1197.43, 392.7], [1189.89, 386.29], [1185.09, 391.9], [1192.63, 398.3], [1197.43, 392.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[519.46, 1075.7], [522.15, 1072.65], [517.84, 1068.87], [515.15, 1071.91], [519.46, 1075.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[506.68, 1095.16], [517.03, 1104.67], [524.32, 1096.79], [513.98, 1087.28], [506.68, 1095.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1196.15, 286.68], [1188.45, 279.8], [1187.29, 281.07], [1183.38, 277.57], [1179.89, 281.46], [1180.48, 281.99], [1178.98, 283.65], [1181.53, 285.93], [1181.04, 286.47], [1185.16, 290.16], [1185.72, 289.53], [1190.08, 293.42], [1196.15, 286.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1307.05, 374.74], [1315.45, 365.39], [1310.74, 361.2], [1306.53, 365.88], [1302.33, 362.13], [1298.13, 366.79], [1307.05, 374.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[450.53, 1134.45], [457.0, 1126.75], [451.18, 1121.9], [444.71, 1129.6], [450.53, 1134.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1258.05, 310.94], [1264.12, 316.39], [1277.52, 301.61], [1271.45, 296.15], [1258.05, 310.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1120.68, 368.53], [1122.99, 366.03], [1121.84, 364.97], [1124.64, 361.92], [1121.55, 359.1], [1121.94, 358.68], [1118.0, 355.08], [1117.6, 355.51], [1112.92, 351.23], [1107.81, 356.79], [1120.68, 368.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[512.77, 1071.28], [516.97, 1066.61], [517.29, 1066.9], [520.9, 1062.89], [520.58, 1062.6], [524.6, 1058.12], [518.8, 1052.94], [514.77, 1057.42], [514.27, 1056.98], [510.67, 1060.97], [511.17, 1061.41], [506.96, 1066.1], [512.77, 1071.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1219.26, 302.28], [1221.51, 304.33], [1223.72, 301.91], [1221.46, 299.85], [1219.26, 302.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[1231.87, 443.65], [1223.91, 437.19], [1219.64, 442.41], [1227.6, 448.88], [1231.87, 443.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[502.97, 1036.86], [496.16, 1030.83], [485.62, 1042.65], [487.96, 1044.72], [487.36, 1045.41], [489.96, 1047.72], [490.57, 1047.02], [492.43, 1048.68], [502.97, 1036.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1250.48, 302.65], [1264.01, 287.69], [1259.68, 283.81], [1258.06, 285.6], [1255.58, 283.38], [1243.68, 296.55], [1250.48, 302.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[531.89, 1063.85], [533.03, 1062.59], [530.27, 1060.1], [529.4, 1061.05], [528.3, 1060.07], [520.3, 1068.93], [537.78, 1084.6], [541.89, 1080.04], [542.77, 1080.84], [545.35, 1077.99], [544.69, 1077.41], [545.85, 1076.14], [545.08, 1075.44], [545.88, 1074.56], [543.03, 1072.0], [542.11, 1073.0], [531.89, 1063.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[1181.62, 380.16], [1184.5, 377.01], [1182.55, 375.25], [1183.37, 374.36], [1178.15, 369.63], [1173.63, 374.59], [1179.36, 379.78], [1180.2, 378.87], [1181.62, 380.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1244.62, 432.88], [1237.69, 426.76], [1233.31, 431.7], [1240.23, 437.8], [1244.62, 432.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1267.26, 316.44], [1273.92, 322.44], [1284.35, 310.96], [1277.7, 304.96], [1267.26, 316.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[474.98, 1063.47], [471.15, 1067.75], [472.15, 1068.64], [470.22, 1070.78], [474.14, 1074.27], [474.59, 1073.76], [475.82, 1074.86], [481.12, 1068.93], [474.98, 1063.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1207.4, 426.94], [1204.26, 424.29], [1201.79, 427.22], [1204.93, 429.88], [1207.4, 426.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[1292.77, 317.18], [1285.29, 310.6], [1270.11, 327.75], [1271.8, 329.24], [1270.67, 330.52], [1274.16, 333.59], [1274.52, 333.19], [1276.81, 335.22], [1279.42, 332.27], [1279.74, 332.55], [1288.72, 322.41], [1288.4, 322.13], [1292.77, 317.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[478.29, 1084.1], [475.18, 1081.37], [475.55, 1080.95], [464.49, 1071.24], [459.97, 1076.34], [469.35, 1084.57], [469.44, 1084.47], [474.25, 1088.69], [478.29, 1084.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[467.17, 1094.16], [468.82, 1092.29], [469.71, 1093.06], [471.82, 1090.68], [469.46, 1088.61], [469.09, 1089.03], [464.89, 1085.36], [466.36, 1083.7], [458.09, 1076.46], [453.05, 1082.19], [465.92, 1093.46], [466.12, 1093.23], [467.17, 1094.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1222.46, 288.55], [1217.04, 283.82], [1212.49, 289.0], [1217.91, 293.72], [1222.46, 288.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1120.7, 342.63], [1115.39, 348.32], [1119.44, 352.06], [1119.02, 352.5], [1125.22, 358.23], [1130.94, 352.09], [1120.7, 342.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1248.13, 322.79], [1254.71, 328.61], [1258.79, 324.03], [1252.21, 318.22], [1248.13, 322.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[480.55, 1147.72], [485.68, 1142.1], [480.28, 1137.19], [480.76, 1136.66], [477.03, 1133.27], [476.54, 1133.79], [470.12, 1127.95], [467.33, 1131.0], [468.53, 1132.07], [466.17, 1134.65], [471.73, 1139.71], [471.28, 1140.21], [475.63, 1144.18], [476.1, 1143.67], [480.55, 1147.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[484.2, 1113.45], [478.98, 1108.84], [474.48, 1113.9], [479.7, 1118.51], [484.2, 1113.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[536.11, 1087.64], [523.93, 1076.78], [521.38, 1079.61], [520.12, 1078.49], [517.95, 1080.91], [519.1, 1081.95], [516.85, 1084.46], [527.86, 1094.29], [531.98, 1089.71], [533.25, 1090.83], [536.11, 1087.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1204.38, 365.58], [1197.67, 359.45], [1197.28, 359.87], [1195.44, 358.19], [1192.5, 361.4], [1191.88, 360.83], [1189.66, 363.25], [1191.02, 364.5], [1188.99, 366.72], [1197.74, 374.72], [1201.08, 371.1], [1201.66, 371.63], [1205.55, 367.4], [1204.01, 365.99], [1204.38, 365.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1302.73, 330.08], [1297.53, 325.41], [1295.66, 327.46], [1292.39, 324.52], [1287.94, 329.44], [1287.58, 329.11], [1280.3, 337.13], [1284.54, 340.95], [1284.04, 341.49], [1288.63, 345.63], [1302.73, 330.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[495.99, 1074.47], [491.8, 1070.72], [488.32, 1074.58], [492.51, 1078.33], [495.99, 1074.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[500.05, 1055.97], [500.5, 1056.37], [499.08, 1057.92], [502.81, 1061.28], [504.64, 1059.28], [507.76, 1062.11], [515.24, 1053.9], [514.39, 1053.14], [516.43, 1050.88], [509.99, 1045.06], [500.05, 1055.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[490.56, 1137.93], [496.28, 1131.41], [494.44, 1129.81], [495.72, 1128.35], [485.69, 1119.59], [480.66, 1125.32], [482.01, 1126.49], [479.16, 1129.72], [487.66, 1137.13], [488.52, 1136.15], [490.56, 1137.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1283.38, 352.12], [1287.74, 347.28], [1283.01, 343.02], [1278.65, 347.86], [1283.38, 352.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[471.18, 1126.35], [467.1, 1122.57], [463.58, 1126.35], [467.67, 1130.12], [471.18, 1126.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1241.36, 327.32], [1246.14, 322.45], [1240.52, 316.97], [1235.75, 321.85], [1241.36, 327.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1162.5, 371.6], [1156.63, 366.35], [1152.07, 371.42], [1157.94, 376.66], [1162.5, 371.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1225.67, 281.5], [1239.1, 266.76], [1233.38, 261.59], [1230.52, 264.73], [1228.94, 263.29], [1223.55, 269.21], [1224.01, 269.63], [1219.3, 274.81], [1221.24, 276.56], [1220.77, 277.07], [1225.67, 281.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[468.66, 1157.01], [460.74, 1149.97], [452.01, 1159.71], [452.28, 1159.94], [449.9, 1162.59], [457.55, 1169.41], [468.66, 1157.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[456.96, 1150.06], [455.51, 1148.76], [456.47, 1147.7], [451.87, 1143.57], [450.92, 1144.63], [448.85, 1142.77], [441.3, 1151.1], [442.02, 1151.74], [440.4, 1153.53], [447.41, 1159.83], [449.39, 1157.64], [449.78, 1157.99], [456.96, 1150.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1235.45, 290.17], [1236.84, 291.43], [1236.14, 292.2], [1237.61, 293.52], [1238.3, 292.77], [1239.53, 293.89], [1242.25, 290.9], [1244.36, 292.81], [1253.91, 282.33], [1245.65, 274.85], [1235.56, 285.9], [1237.64, 287.78], [1235.45, 290.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[498.62, 1056.09], [501.46, 1053.04], [501.71, 1053.28], [508.23, 1046.29], [502.86, 1041.32], [496.65, 1047.97], [498.04, 1049.26], [494.89, 1052.62], [498.62, 1056.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1208.23, 274.16], [1199.49, 266.16], [1198.69, 267.04], [1197.36, 265.83], [1192.85, 270.72], [1202.9, 279.93], [1208.23, 274.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1096.89, 1387.93], [1091.36, 1383.54], [1088.56, 1387.08], [1089.5, 1387.82], [1087.35, 1390.54], [1091.94, 1394.17], [1096.89, 1387.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1083.52, 1293.21], [1073.59, 1304.03], [1081.1, 1310.92], [1091.03, 1300.1], [1083.52, 1293.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[866.51, 1266.85], [861.6, 1262.57], [854.73, 1270.43], [859.64, 1274.72], [866.51, 1266.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1328.91, 1329.14], [1322.51, 1323.55], [1314.97, 1332.21], [1320.06, 1336.65], [1318.75, 1338.14], [1324.33, 1342.99], [1328.53, 1338.17], [1326.55, 1336.44], [1328.57, 1334.13], [1326.29, 1332.15], [1328.91, 1329.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1119.27, 1137.42], [1113.47, 1131.9], [1103.55, 1142.29], [1109.35, 1147.82], [1119.27, 1137.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1016.89, 1236.54], [1011.29, 1231.52], [1002.1, 1241.77], [1007.71, 1246.79], [1016.89, 1236.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[986.37, 1207.81], [982.65, 1204.41], [981.2, 1206.0], [978.75, 1203.78], [970.8, 1212.51], [976.96, 1218.13], [986.37, 1207.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1223.92, 1334.35], [1228.14, 1329.73], [1222.68, 1324.74], [1218.46, 1329.36], [1223.92, 1334.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1085.36, 1187.64], [1093.42, 1178.93], [1092.17, 1177.78], [1094.03, 1175.76], [1088.74, 1170.86], [1078.36, 1182.09], [1078.55, 1182.28], [1076.59, 1184.4], [1078.21, 1185.91], [1080.65, 1183.27], [1085.36, 1187.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[960.82, 1190.51], [956.26, 1186.38], [947.82, 1195.68], [952.37, 1199.82], [960.82, 1190.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[950.32, 1212.93], [946.97, 1209.83], [936.03, 1221.62], [941.77, 1226.95], [947.16, 1221.14], [944.76, 1218.93], [950.32, 1212.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1481.92, 1694.47], [1471.38, 1685.57], [1465.85, 1692.12], [1476.38, 1701.01], [1481.92, 1694.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1180.03, 1250.02], [1173.86, 1244.61], [1161.54, 1258.67], [1167.72, 1264.07], [1180.03, 1250.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1072.45, 1228.54], [1065.92, 1222.22], [1057.76, 1230.67], [1064.29, 1236.99], [1072.45, 1228.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1079.48, 1161.66], [1073.78, 1156.44], [1062.57, 1168.68], [1068.28, 1173.9], [1079.48, 1161.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1356.17, 1355.61], [1350.96, 1350.83], [1342.98, 1359.56], [1348.2, 1364.34], [1356.17, 1355.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1257.74, 1419.95], [1275.83, 1400.7], [1268.59, 1393.89], [1263.32, 1399.5], [1266.11, 1402.12], [1260.87, 1407.68], [1258.28, 1405.26], [1251.93, 1412.02], [1255.51, 1415.38], [1254.27, 1416.7], [1257.74, 1419.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[1332.65, 1455.11], [1329.28, 1451.92], [1326.39, 1455.02], [1323.59, 1452.15], [1314.33, 1461.85], [1314.87, 1462.44], [1313.95, 1463.46], [1320.19, 1469.05], [1332.65, 1455.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[972.0, 1124.55], [965.0, 1117.89], [960.04, 1123.1], [967.05, 1129.76], [972.0, 1124.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[962.82, 1265.31], [957.3, 1260.18], [950.05, 1267.97], [955.56, 1273.09], [962.82, 1265.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1248.06, 1534.3], [1251.11, 1531.11], [1253.04, 1532.95], [1257.75, 1528.02], [1253.87, 1524.31], [1256.61, 1521.44], [1253.31, 1518.28], [1245.62, 1526.34], [1246.65, 1527.33], [1243.85, 1530.27], [1248.06, 1534.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1329.99, 1244.69], [1325.5, 1249.69], [1340.97, 1263.56], [1341.69, 1262.75], [1342.53, 1263.5], [1344.04, 1261.81], [1343.23, 1261.09], [1345.48, 1258.58], [1329.99, 1244.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1342.25, 1564.8], [1331.48, 1554.18], [1325.11, 1560.64], [1335.88, 1571.26], [1342.25, 1564.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[952.29, 1226.34], [947.88, 1222.33], [943.47, 1227.18], [947.88, 1231.19], [952.29, 1226.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1137.55, 1436.51], [1146.21, 1444.62], [1155.67, 1434.53], [1147.02, 1426.42], [1137.55, 1436.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1087.23, 1170.29], [1080.86, 1164.45], [1070.94, 1175.28], [1073.05, 1177.22], [1071.48, 1178.92], [1075.75, 1182.83], [1087.23, 1170.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[921.21, 1190.38], [916.86, 1186.44], [918.2, 1184.96], [908.74, 1176.39], [904.3, 1181.29], [913.43, 1189.58], [913.74, 1189.24], [918.41, 1193.47], [921.21, 1190.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1164.65, 1372.3], [1158.39, 1366.38], [1149.95, 1375.23], [1152.81, 1377.94], [1149.79, 1381.1], [1153.19, 1384.33], [1164.65, 1372.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1457.25, 1646.2], [1461.74, 1641.39], [1435.02, 1616.67], [1430.53, 1621.48], [1457.25, 1646.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[1394.2, 1582.08], [1388.33, 1576.89], [1381.61, 1584.42], [1387.48, 1589.62], [1394.2, 1582.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1362.95, 1444.85], [1360.1, 1442.28], [1355.63, 1447.24], [1358.53, 1449.86], [1362.95, 1444.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1254.77, 1343.03], [1250.16, 1338.77], [1247.14, 1342.03], [1251.75, 1346.29], [1254.77, 1343.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1171.21, 1146.49], [1169.18, 1144.57], [1168.36, 1145.45], [1165.12, 1142.42], [1159.58, 1148.32], [1169.44, 1157.6], [1174.69, 1152.01], [1170.09, 1147.69], [1171.21, 1146.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1201.07, 1202.55], [1192.33, 1194.95], [1181.65, 1207.25], [1190.39, 1214.85], [1201.07, 1202.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1334.13, 1350.51], [1338.57, 1345.33], [1339.26, 1345.93], [1344.84, 1339.43], [1337.15, 1332.83], [1331.01, 1339.99], [1332.55, 1341.32], [1328.67, 1345.84], [1334.13, 1350.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1189.06, 1395.24], [1183.5, 1390.31], [1179.97, 1394.28], [1178.66, 1393.11], [1172.13, 1400.47], [1172.43, 1400.72], [1169.37, 1404.16], [1174.15, 1408.4], [1177.56, 1404.57], [1178.44, 1405.34], [1181.09, 1402.36], [1182.02, 1403.18], [1189.06, 1395.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1084.81, 1111.66], [1080.88, 1108.09], [1075.2, 1114.34], [1079.12, 1117.9], [1084.81, 1111.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[895.31, 1215.56], [903.47, 1206.97], [895.63, 1199.53], [890.53, 1204.91], [891.66, 1205.99], [886.93, 1210.97], [890.79, 1214.63], [892.46, 1212.86], [895.31, 1215.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1135.7, 1147.25], [1131.54, 1143.88], [1130.26, 1145.46], [1128.43, 1143.98], [1120.11, 1154.24], [1126.85, 1159.69], [1130.59, 1155.08], [1129.84, 1154.47], [1135.7, 1147.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1203.28, 1343.57], [1198.15, 1338.96], [1187.42, 1350.81], [1192.56, 1355.43], [1203.28, 1343.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1305.07, 1307.87], [1298.9, 1302.2], [1291.41, 1310.3], [1297.58, 1315.96], [1305.07, 1307.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1133.54, 1393.04], [1128.77, 1388.55], [1123.46, 1394.21], [1128.23, 1398.69], [1133.54, 1393.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1297.17, 1507.04], [1305.43, 1498.16], [1299.81, 1492.9], [1291.56, 1501.77], [1297.17, 1507.04]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1327.19, 1524.17], [1320.72, 1518.19], [1312.87, 1526.71], [1314.55, 1528.26], [1313.34, 1529.57], [1318.14, 1533.99], [1327.19, 1524.17]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1456.01, 1692.5], [1461.03, 1687.49], [1457.09, 1683.54], [1452.07, 1688.55], [1456.01, 1692.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1251.23, 1517.02], [1244.98, 1511.19], [1237.2, 1519.54], [1243.46, 1525.37], [1251.23, 1517.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[980.34, 1362.21], [984.33, 1357.78], [979.25, 1353.2], [974.85, 1358.08], [973.5, 1356.87], [966.48, 1364.66], [974.89, 1372.24], [982.33, 1364.0], [980.34, 1362.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1186.89, 1257.14], [1181.07, 1252.28], [1178.04, 1255.91], [1176.75, 1254.84], [1174.48, 1257.54], [1175.6, 1258.48], [1173.08, 1261.5], [1179.07, 1266.5], [1186.89, 1257.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1320.98, 1558.66], [1326.78, 1552.21], [1317.51, 1544.0], [1312.08, 1550.64], [1320.98, 1558.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1237.18, 1227.24], [1232.82, 1223.28], [1228.48, 1228.04], [1232.85, 1232.01], [1237.18, 1227.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1156.72, 1170.84], [1150.94, 1164.88], [1145.1, 1170.55], [1145.55, 1171.01], [1141.89, 1174.56], [1147.22, 1180.06], [1156.72, 1170.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1025.06, 1189.69], [1018.67, 1183.94], [1013.44, 1189.73], [1019.83, 1195.49], [1025.06, 1189.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1435.98, 1674.07], [1445.62, 1682.79], [1450.26, 1677.27], [1440.62, 1668.55], [1435.98, 1674.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[997.72, 1092.29], [993.21, 1087.96], [987.34, 1094.06], [997.45, 1103.79], [1002.0, 1099.06], [996.4, 1093.66], [997.72, 1092.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1310.78, 1242.75], [1308.48, 1240.69], [1304.02, 1245.66], [1306.0, 1247.44], [1305.47, 1248.03], [1311.85, 1253.74], [1316.33, 1248.74], [1310.27, 1243.32], [1310.78, 1242.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1279.1, 1334.61], [1269.49, 1326.26], [1264.36, 1332.15], [1273.98, 1340.5], [1279.1, 1334.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1045.88, 1044.15], [1039.28, 1038.14], [1034.47, 1043.44], [1041.07, 1049.43], [1045.88, 1044.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1347.14, 1420.9], [1358.05, 1408.9], [1353.14, 1404.43], [1351.97, 1405.72], [1346.27, 1400.55], [1333.89, 1414.19], [1340.85, 1420.52], [1343.51, 1417.6], [1347.14, 1420.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[1156.11, 1306.15], [1150.78, 1300.89], [1142.16, 1309.66], [1147.5, 1314.9], [1156.11, 1306.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1375.95, 1283.35], [1367.61, 1275.96], [1360.45, 1284.05], [1368.79, 1291.44], [1375.95, 1283.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1164.84, 1312.26], [1160.03, 1307.93], [1157.08, 1311.23], [1155.68, 1309.97], [1153.57, 1312.33], [1154.5, 1313.17], [1150.59, 1317.53], [1155.86, 1322.26], [1164.84, 1312.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1169.73, 1294.43], [1171.8, 1296.13], [1175.51, 1292.06], [1173.29, 1290.21], [1169.73, 1294.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[1063.17, 1063.8], [1068.66, 1057.65], [1057.83, 1047.97], [1052.34, 1054.1], [1063.17, 1063.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[926.37, 1175.18], [919.65, 1169.03], [914.81, 1174.33], [923.24, 1182.02], [926.64, 1178.29], [924.94, 1176.74], [926.37, 1175.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1077.37, 1363.47], [1070.16, 1356.85], [1060.45, 1367.42], [1067.65, 1374.03], [1077.37, 1363.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1502.13, 1669.71], [1498.34, 1666.41], [1496.38, 1668.63], [1494.13, 1666.68], [1492.36, 1668.7], [1491.89, 1668.3], [1489.38, 1671.15], [1501.0, 1681.28], [1506.38, 1675.15], [1501.26, 1670.69], [1502.13, 1669.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1117.1, 1420.83], [1120.05, 1417.48], [1121.62, 1418.87], [1125.34, 1414.64], [1119.88, 1409.82], [1113.2, 1417.39], [1117.1, 1420.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1305.8, 1206.45], [1283.92, 1230.13], [1298.03, 1244.26], [1320.47, 1219.98], [1305.8, 1206.45]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.417, "pop": 0, "jobs": 417}}, {"shape": {"outer": [[1047.89, 1280.32], [1042.73, 1275.66], [1036.21, 1282.89], [1044.39, 1290.29], [1048.82, 1285.37], [1045.79, 1282.63], [1047.89, 1280.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[941.4, 1239.55], [937.06, 1235.47], [933.39, 1239.37], [932.4, 1238.44], [929.22, 1241.82], [931.05, 1243.53], [927.76, 1247.04], [932.18, 1251.19], [936.36, 1246.73], [935.45, 1245.88], [941.4, 1239.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1103.12, 1124.75], [1096.77, 1119.11], [1089.85, 1126.9], [1096.2, 1132.54], [1103.12, 1124.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1180.53, 1437.11], [1169.9, 1427.94], [1165.67, 1432.84], [1176.31, 1442.02], [1180.53, 1437.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1480.57, 1657.07], [1477.14, 1660.78], [1476.41, 1660.11], [1472.16, 1664.71], [1478.65, 1670.64], [1486.32, 1662.32], [1480.57, 1657.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1155.41, 1399.64], [1161.27, 1405.02], [1169.19, 1396.47], [1163.32, 1391.09], [1155.41, 1399.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1336.17, 1524.47], [1325.92, 1535.6], [1332.13, 1541.32], [1342.38, 1530.21], [1336.17, 1524.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1039.72, 1051.49], [1033.26, 1045.15], [1028.53, 1049.96], [1035.01, 1056.3], [1039.72, 1051.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1093.12, 1119.07], [1086.45, 1113.2], [1080.59, 1119.86], [1087.26, 1125.72], [1093.12, 1119.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1266.77, 1338.95], [1264.71, 1337.11], [1264.41, 1337.44], [1263.16, 1336.33], [1257.81, 1342.32], [1265.99, 1349.63], [1270.56, 1344.52], [1265.69, 1340.16], [1266.77, 1338.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1489.59, 1689.05], [1479.04, 1679.95], [1474.2, 1685.56], [1484.76, 1694.65], [1489.59, 1689.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1061.34, 1274.12], [1053.07, 1266.89], [1048.71, 1271.86], [1049.8, 1272.81], [1046.51, 1276.54], [1054.77, 1283.78], [1059.58, 1278.3], [1058.51, 1277.36], [1061.34, 1274.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1393.2, 1664.89], [1401.72, 1672.66], [1411.63, 1661.85], [1421.93, 1650.61], [1413.4, 1642.85], [1393.2, 1664.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[1125.25, 1145.69], [1119.62, 1140.7], [1111.05, 1150.38], [1116.68, 1155.37], [1125.25, 1145.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1051.16, 1075.8], [1045.59, 1070.89], [1044.04, 1072.64], [1041.93, 1070.79], [1035.51, 1078.07], [1043.18, 1084.84], [1051.16, 1075.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[965.72, 1130.81], [959.2, 1124.76], [954.65, 1129.64], [961.18, 1135.69], [965.72, 1130.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1170.56, 1321.26], [1164.75, 1315.76], [1156.15, 1324.84], [1161.95, 1330.33], [1170.56, 1321.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1126.76, 1136.96], [1128.97, 1134.54], [1130.38, 1135.82], [1131.66, 1134.43], [1133.66, 1136.26], [1144.2, 1124.7], [1138.53, 1119.52], [1128.85, 1130.12], [1124.68, 1126.31], [1120.33, 1131.09], [1126.76, 1136.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[1027.96, 1265.78], [1036.07, 1256.88], [1019.3, 1241.61], [1010.89, 1250.84], [1009.57, 1249.65], [1001.11, 1258.94], [1003.74, 1261.33], [1003.25, 1261.95], [1008.02, 1266.3], [1008.91, 1265.24], [1013.78, 1269.68], [1013.09, 1270.43], [1018.14, 1275.02], [1018.85, 1274.25], [1021.11, 1276.31], [1029.46, 1267.13], [1027.96, 1265.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.496, "pop": 248, "jobs": 0}}, {"shape": {"outer": [[996.48, 1130.44], [988.76, 1122.95], [982.71, 1129.19], [990.44, 1136.69], [996.48, 1130.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1185.09, 1331.03], [1180.06, 1326.17], [1171.6, 1334.94], [1173.74, 1337.0], [1171.74, 1339.07], [1174.63, 1341.86], [1185.09, 1331.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1113.39, 1188.73], [1107.35, 1183.05], [1098.47, 1193.48], [1104.51, 1199.06], [1113.39, 1188.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1345.63, 1474.48], [1340.77, 1469.56], [1337.07, 1473.22], [1335.21, 1471.34], [1330.04, 1476.44], [1333.72, 1480.16], [1333.14, 1480.73], [1336.19, 1483.8], [1345.63, 1474.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1140.75, 1428.97], [1134.25, 1423.41], [1132.06, 1425.97], [1132.62, 1426.46], [1128.03, 1431.83], [1133.97, 1436.91], [1140.75, 1428.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[972.83, 1158.32], [978.27, 1163.26], [986.38, 1154.38], [980.95, 1149.45], [972.83, 1158.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1299.89, 1432.46], [1294.67, 1427.61], [1283.97, 1439.15], [1289.19, 1443.98], [1299.89, 1432.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1496.51, 1679.81], [1490.56, 1674.51], [1484.72, 1681.06], [1490.68, 1686.36], [1496.51, 1679.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1119.99, 1201.72], [1121.08, 1202.66], [1120.84, 1202.94], [1125.43, 1206.85], [1132.85, 1198.2], [1127.15, 1193.36], [1119.99, 1201.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1327.57, 1275.04], [1321.67, 1269.89], [1315.92, 1276.48], [1321.83, 1281.62], [1327.57, 1275.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1060.03, 1163.32], [1062.68, 1160.53], [1063.81, 1161.61], [1071.31, 1153.72], [1065.65, 1148.34], [1058.62, 1155.74], [1059.41, 1156.5], [1056.3, 1159.78], [1060.03, 1163.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1092.03, 1377.77], [1086.73, 1373.1], [1078.36, 1382.54], [1083.66, 1387.21], [1092.03, 1377.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1350.67, 1614.63], [1340.59, 1605.02], [1336.92, 1608.86], [1339.71, 1611.52], [1338.03, 1613.29], [1345.31, 1620.24], [1350.67, 1614.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1127.38, 1110.97], [1122.36, 1106.6], [1117.29, 1112.43], [1122.31, 1116.8], [1127.38, 1110.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1110.32, 1393.77], [1105.95, 1390.05], [1097.24, 1400.35], [1099.42, 1402.21], [1098.72, 1403.04], [1103.7, 1407.26], [1111.89, 1397.58], [1109.1, 1395.21], [1110.32, 1393.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1279.24, 1413.32], [1274.06, 1408.32], [1268.6, 1413.98], [1273.77, 1418.98], [1279.24, 1413.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1067.18, 1088.6], [1063.68, 1085.46], [1061.21, 1088.2], [1059.44, 1086.6], [1052.81, 1093.97], [1058.07, 1098.7], [1067.18, 1088.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1142.34, 1153.77], [1136.72, 1148.56], [1131.51, 1154.17], [1132.94, 1155.49], [1128.9, 1159.84], [1134.84, 1165.36], [1141.57, 1158.11], [1139.81, 1156.47], [1142.34, 1153.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1147.99, 1415.7], [1144.04, 1412.23], [1140.0, 1416.83], [1143.96, 1420.3], [1147.99, 1415.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1101.94, 1216.03], [1101.2, 1216.87], [1097.48, 1213.62], [1094.43, 1217.07], [1105.31, 1226.58], [1108.58, 1222.85], [1107.88, 1222.24], [1108.39, 1221.66], [1101.94, 1216.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1035.34, 1277.69], [1028.64, 1271.1], [1024.98, 1274.82], [1031.68, 1281.41], [1035.34, 1277.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1060.93, 1145.83], [1055.84, 1140.99], [1048.96, 1148.24], [1054.04, 1153.07], [1060.93, 1145.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1282.92, 1524.7], [1286.67, 1520.67], [1279.41, 1513.9], [1275.66, 1517.93], [1282.92, 1524.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1168.94, 1233.98], [1164.22, 1229.53], [1161.26, 1232.68], [1159.63, 1231.15], [1155.18, 1235.87], [1157.17, 1237.75], [1156.27, 1238.7], [1160.65, 1242.81], [1168.94, 1233.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1260.31, 1460.82], [1254.55, 1455.67], [1246.11, 1465.13], [1251.88, 1470.27], [1260.31, 1460.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1134.87, 1346.31], [1128.32, 1340.5], [1119.36, 1350.53], [1120.56, 1351.6], [1119.52, 1352.76], [1124.89, 1357.51], [1134.87, 1346.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[958.67, 1180.69], [958.02, 1180.08], [956.72, 1178.89], [952.06, 1174.56], [938.0, 1189.75], [944.63, 1195.88], [958.67, 1180.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1093.12, 1239.62], [1100.16, 1231.95], [1085.73, 1218.73], [1081.8, 1223.02], [1083.74, 1224.8], [1080.65, 1228.18], [1093.12, 1239.62]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.123, "pop": 0, "jobs": 123}}, {"shape": {"outer": [[1240.44, 1302.61], [1234.81, 1297.37], [1226.51, 1306.28], [1232.13, 1311.51], [1240.44, 1302.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1385.01, 1664.45], [1387.24, 1662.09], [1388.24, 1663.03], [1389.02, 1663.78], [1398.3, 1653.99], [1396.31, 1652.11], [1397.47, 1650.9], [1394.81, 1648.39], [1393.57, 1649.7], [1390.86, 1647.14], [1381.55, 1656.98], [1382.49, 1657.86], [1383.3, 1658.64], [1381.21, 1660.84], [1385.01, 1664.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[1317.19, 1473.3], [1324.3, 1479.88], [1338.09, 1464.99], [1330.99, 1458.41], [1317.19, 1473.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[1284.88, 1479.27], [1278.79, 1473.84], [1267.52, 1486.46], [1273.6, 1491.91], [1284.88, 1479.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1452.08, 1698.28], [1451.88, 1698.09], [1447.49, 1702.87], [1445.83, 1701.35], [1442.26, 1705.23], [1443.86, 1706.71], [1438.91, 1712.11], [1446.02, 1718.69], [1451.27, 1712.96], [1452.18, 1713.74], [1454.78, 1710.9], [1454.17, 1710.33], [1459.22, 1704.83], [1452.08, 1698.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[1295.15, 1488.93], [1290.91, 1484.48], [1289.25, 1486.06], [1286.75, 1483.44], [1282.11, 1487.85], [1283.2, 1489.0], [1278.17, 1493.79], [1281.6, 1497.39], [1280.25, 1498.69], [1284.33, 1502.97], [1290.53, 1497.06], [1288.66, 1495.1], [1295.15, 1488.93]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1234.61, 1261.44], [1236.14, 1259.69], [1237.21, 1260.64], [1245.33, 1251.41], [1242.87, 1249.25], [1245.18, 1246.61], [1241.49, 1243.36], [1239.31, 1245.85], [1237.79, 1244.52], [1228.01, 1255.64], [1234.61, 1261.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1159.12, 1137.71], [1152.89, 1131.99], [1144.11, 1141.53], [1150.34, 1147.26], [1159.12, 1137.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1201.41, 1122.94], [1194.46, 1116.75], [1190.35, 1121.35], [1197.29, 1127.55], [1201.41, 1122.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[986.44, 1107.3], [989.74, 1103.95], [991.54, 1105.74], [994.66, 1102.58], [986.06, 1094.08], [982.55, 1097.62], [984.65, 1099.71], [981.74, 1102.66], [986.44, 1107.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1319.61, 1589.99], [1313.78, 1584.26], [1310.35, 1587.74], [1310.86, 1588.24], [1305.9, 1593.28], [1311.23, 1598.52], [1319.61, 1589.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[919.98, 1215.58], [914.75, 1210.72], [911.19, 1214.54], [910.11, 1213.54], [906.19, 1217.74], [907.35, 1218.82], [904.2, 1222.19], [910.19, 1227.77], [913.98, 1223.7], [914.69, 1224.35], [917.95, 1220.84], [916.41, 1219.41], [919.98, 1215.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1196.25, 1277.56], [1198.94, 1274.61], [1199.39, 1275.02], [1204.53, 1269.4], [1197.5, 1262.97], [1192.25, 1268.71], [1193.05, 1269.45], [1190.47, 1272.28], [1196.25, 1277.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1316.45, 1445.7], [1311.54, 1441.15], [1301.74, 1451.73], [1306.65, 1456.27], [1316.45, 1445.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1009.72, 1170.26], [1009.11, 1169.71], [1011.56, 1167.04], [1004.47, 1160.56], [996.92, 1168.82], [997.85, 1169.68], [995.32, 1172.44], [1002.07, 1178.62], [1009.72, 1170.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1408.9, 1678.88], [1417.6, 1686.74], [1437.52, 1664.88], [1428.82, 1657.01], [1418.34, 1668.52], [1408.9, 1678.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[1025.36, 1165.62], [1029.72, 1160.78], [1024.17, 1155.79], [1019.82, 1160.63], [1025.36, 1165.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1291.49, 1425.95], [1287.27, 1421.82], [1284.07, 1425.09], [1282.65, 1423.7], [1279.29, 1427.13], [1280.71, 1428.51], [1276.82, 1432.5], [1281.05, 1436.63], [1291.49, 1425.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1278.34, 1386.72], [1271.73, 1380.36], [1266.78, 1385.5], [1268.66, 1387.31], [1266.71, 1389.35], [1271.43, 1393.89], [1278.34, 1386.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1056.84, 1333.16], [1050.58, 1328.1], [1045.0, 1335.01], [1057.38, 1345.01], [1062.34, 1338.87], [1056.22, 1333.92], [1056.84, 1333.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1259.93, 1313.59], [1254.0, 1308.66], [1247.18, 1316.88], [1248.87, 1318.27], [1247.86, 1319.48], [1253.7, 1324.34], [1259.81, 1316.97], [1258.22, 1315.65], [1259.93, 1313.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[951.09, 1245.09], [946.79, 1241.15], [936.05, 1252.93], [942.96, 1259.23], [952.27, 1249.02], [949.66, 1246.64], [951.09, 1245.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1330.36, 1382.87], [1325.89, 1378.84], [1319.02, 1386.47], [1323.49, 1390.5], [1330.36, 1382.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1316.13, 1269.43], [1310.24, 1264.07], [1303.58, 1271.38], [1309.48, 1276.74], [1316.13, 1269.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1334.89, 1456.1], [1339.36, 1460.21], [1346.8, 1452.1], [1342.34, 1448.0], [1334.89, 1456.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1123.72, 1340.2], [1118.47, 1335.94], [1111.84, 1344.11], [1117.09, 1348.36], [1123.72, 1340.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1302.32, 1415.17], [1299.01, 1412.03], [1293.32, 1417.99], [1296.63, 1421.15], [1302.32, 1415.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1149.62, 1163.76], [1148.05, 1162.33], [1147.93, 1162.45], [1143.03, 1157.95], [1134.77, 1166.92], [1138.3, 1170.17], [1136.92, 1171.67], [1139.85, 1174.36], [1149.62, 1163.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1019.68, 1160.5], [1024.03, 1155.67], [1018.5, 1150.68], [1014.14, 1155.51], [1019.68, 1160.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1231.9, 1437.06], [1225.65, 1431.3], [1215.25, 1442.58], [1221.52, 1448.34], [1231.9, 1437.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1446.65, 1666.52], [1455.83, 1674.82], [1470.4, 1658.81], [1461.22, 1650.51], [1446.65, 1666.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[1202.33, 1105.09], [1195.97, 1099.43], [1189.05, 1107.22], [1195.41, 1112.88], [1202.33, 1105.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1410.17, 1593.95], [1405.71, 1589.86], [1404.6, 1591.06], [1404.27, 1590.76], [1396.28, 1599.43], [1396.51, 1599.65], [1394.08, 1602.29], [1398.64, 1606.47], [1410.17, 1593.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1322.98, 1585.86], [1326.32, 1582.08], [1327.9, 1583.47], [1333.6, 1577.0], [1321.79, 1566.6], [1314.89, 1574.44], [1317.36, 1576.62], [1315.24, 1579.03], [1322.98, 1585.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[1309.78, 1438.63], [1303.79, 1433.2], [1291.55, 1446.72], [1297.54, 1452.14], [1309.78, 1438.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1368.92, 1579.01], [1371.57, 1575.92], [1372.63, 1576.82], [1379.78, 1568.5], [1379.05, 1567.89], [1378.19, 1567.14], [1377.92, 1567.45], [1374.16, 1564.26], [1371.65, 1567.18], [1370.56, 1566.25], [1366.27, 1571.26], [1366.99, 1571.86], [1364.82, 1574.4], [1364.27, 1575.04], [1368.92, 1579.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1175.99, 1239.75], [1171.1, 1236.06], [1163.01, 1245.41], [1167.65, 1249.55], [1175.99, 1239.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1294.65, 1557.49], [1289.09, 1552.22], [1279.98, 1561.84], [1285.53, 1567.1], [1294.65, 1557.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1232.77, 1469.62], [1227.41, 1464.7], [1221.21, 1471.46], [1226.58, 1476.37], [1232.77, 1469.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1284.48, 1227.88], [1301.09, 1209.58], [1298.09, 1206.84], [1304.15, 1200.01], [1291.09, 1187.97], [1284.76, 1194.4], [1282.77, 1192.52], [1266.2, 1211.56], [1284.48, 1227.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.5, "pop": 0, "jobs": 500}}, {"shape": {"outer": [[1110.84, 1131.75], [1104.41, 1126.06], [1097.16, 1134.27], [1103.58, 1139.96], [1110.84, 1131.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[906.6, 1197.2], [913.15, 1189.74], [903.67, 1181.4], [897.16, 1188.81], [906.6, 1197.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1139.67, 1242.03], [1130.75, 1233.69], [1126.97, 1237.71], [1136.08, 1246.25], [1136.64, 1245.65], [1140.62, 1249.39], [1143.64, 1246.19], [1139.44, 1242.26], [1139.67, 1242.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1075.08, 1380.41], [1084.16, 1370.38], [1077.96, 1364.75], [1068.72, 1374.96], [1075.08, 1380.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1073.96, 1011.69], [1082.67, 1019.52], [1096.64, 1003.99], [1087.93, 996.15], [1073.96, 1011.69]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.157, "pop": 0, "jobs": 157}}, {"shape": {"outer": [[1137.05, 1117.19], [1133.39, 1114.23], [1132.93, 1114.81], [1130.33, 1112.7], [1122.84, 1121.94], [1129.09, 1127.01], [1137.05, 1117.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1218.05, 1493.02], [1205.88, 1481.57], [1199.89, 1487.94], [1212.07, 1499.38], [1218.05, 1493.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1148.86, 1295.96], [1144.55, 1291.82], [1133.92, 1302.88], [1138.23, 1307.03], [1148.86, 1295.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1382.21, 1449.6], [1383.95, 1447.59], [1385.31, 1448.76], [1393.14, 1439.72], [1386.24, 1433.73], [1376.65, 1444.8], [1382.21, 1449.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1209.63, 1361.07], [1219.34, 1369.59], [1225.8, 1362.24], [1224.11, 1360.75], [1227.73, 1356.63], [1222.64, 1352.16], [1218.15, 1357.26], [1215.23, 1354.69], [1209.63, 1361.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[933.45, 1233.87], [928.06, 1229.1], [918.77, 1239.59], [924.8, 1244.93], [930.92, 1238.01], [930.28, 1237.45], [933.45, 1233.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1377.79, 1377.64], [1386.09, 1368.48], [1377.98, 1361.19], [1362.48, 1378.27], [1401.91, 1413.79], [1413.53, 1400.99], [1394.97, 1384.27], [1390.62, 1389.06], [1387.43, 1386.19], [1389.22, 1384.23], [1383.25, 1378.86], [1381.4, 1380.9], [1377.79, 1377.64]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.57, "pop": 0, "jobs": 570}}, {"shape": {"outer": [[1358.12, 1600.57], [1351.44, 1594.04], [1347.46, 1598.08], [1354.15, 1604.62], [1358.12, 1600.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1221.23, 1216.07], [1218.26, 1213.41], [1215.05, 1216.98], [1218.02, 1219.64], [1221.23, 1216.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1236.04, 1517.64], [1244.17, 1508.43], [1238.24, 1503.2], [1229.06, 1513.59], [1232.31, 1516.47], [1233.35, 1515.28], [1236.04, 1517.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1016.63, 1181.57], [1016.01, 1181.01], [1019.89, 1176.67], [1014.68, 1172.01], [1010.89, 1176.24], [1011.38, 1176.68], [1004.87, 1183.96], [1010.22, 1188.74], [1016.63, 1181.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1195.58, 1260.89], [1192.05, 1257.93], [1190.61, 1259.65], [1188.91, 1258.21], [1182.83, 1265.47], [1188.05, 1269.85], [1195.58, 1260.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1288.16, 1549.48], [1282.36, 1544.36], [1273.03, 1554.92], [1278.83, 1560.05], [1288.16, 1549.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1131.65, 1251.2], [1123.98, 1244.02], [1118.94, 1249.36], [1121.83, 1252.07], [1121.33, 1252.61], [1126.1, 1257.08], [1131.65, 1251.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1401.93, 1625.55], [1411.48, 1634.02], [1425.9, 1617.9], [1416.36, 1609.42], [1401.93, 1625.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.22, "pop": 110, "jobs": 0}}, {"shape": {"outer": [[1416.77, 1602.15], [1416.47, 1601.88], [1417.22, 1601.1], [1413.01, 1597.18], [1412.27, 1597.97], [1412.0, 1597.72], [1402.93, 1607.42], [1407.7, 1611.85], [1416.77, 1602.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1082.82, 1316.67], [1071.92, 1306.35], [1069.59, 1308.81], [1067.82, 1307.14], [1064.22, 1310.94], [1076.89, 1322.94], [1082.82, 1316.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1362.15, 1435.23], [1365.37, 1431.57], [1366.43, 1432.5], [1374.56, 1423.29], [1369.25, 1418.61], [1368.4, 1419.56], [1360.7, 1412.76], [1351.67, 1422.98], [1359.49, 1429.9], [1358.01, 1431.58], [1362.15, 1435.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[1315.37, 1382.72], [1321.88, 1375.8], [1317.34, 1371.53], [1317.98, 1370.85], [1315.16, 1368.19], [1308.24, 1375.56], [1309.94, 1377.17], [1308.12, 1379.12], [1310.82, 1381.65], [1312.42, 1379.94], [1315.37, 1382.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1075.77, 1064.19], [1070.62, 1059.53], [1061.59, 1069.49], [1066.73, 1074.16], [1075.77, 1064.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1106.94, 1181.46], [1100.69, 1175.99], [1094.15, 1183.46], [1100.41, 1188.93], [1106.94, 1181.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[959.92, 1340.43], [955.31, 1335.95], [948.8, 1342.65], [950.81, 1344.6], [947.84, 1347.66], [953.31, 1352.98], [960.0, 1346.1], [957.13, 1343.29], [959.92, 1340.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1210.38, 1237.45], [1211.98, 1235.57], [1213.09, 1236.51], [1221.12, 1227.12], [1214.04, 1221.08], [1206.59, 1229.81], [1207.37, 1230.46], [1205.19, 1233.01], [1210.38, 1237.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1283.38, 1283.75], [1277.86, 1278.66], [1266.27, 1291.23], [1271.79, 1296.32], [1283.38, 1283.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1469.89, 1365.41], [1466.35, 1369.35], [1477.97, 1379.6], [1481.7, 1375.79], [1469.89, 1365.41]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.053, "pop": 0, "jobs": 53}}, {"shape": {"outer": [[1236.66, 1379.73], [1231.03, 1374.73], [1223.69, 1383.0], [1229.33, 1388.0], [1236.66, 1379.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1217.71, 1459.66], [1210.25, 1452.84], [1202.77, 1461.03], [1210.24, 1467.84], [1217.71, 1459.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1034.39, 1058.89], [1026.8, 1051.61], [1022.05, 1056.57], [1029.65, 1063.83], [1034.39, 1058.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1040.6, 1291.44], [1028.99, 1280.75], [1022.0, 1288.35], [1033.61, 1299.04], [1040.6, 1291.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1246.86, 1492.97], [1253.83, 1486.04], [1251.13, 1483.33], [1247.91, 1486.53], [1240.07, 1478.65], [1236.32, 1482.39], [1246.86, 1492.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[930.95, 1333.32], [939.04, 1340.73], [948.31, 1330.6], [940.23, 1323.2], [930.95, 1333.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1062.43, 1219.12], [1057.82, 1215.05], [1056.26, 1216.81], [1053.99, 1214.79], [1047.18, 1222.49], [1054.07, 1228.57], [1062.43, 1219.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[932.37, 1326.18], [935.33, 1322.92], [932.92, 1320.74], [934.88, 1318.59], [928.82, 1313.09], [922.9, 1319.58], [928.07, 1324.28], [929.08, 1323.18], [932.37, 1326.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1374.64, 1651.28], [1380.99, 1644.32], [1368.83, 1633.23], [1362.48, 1640.19], [1374.64, 1651.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1075.36, 1097.55], [1069.53, 1092.43], [1067.55, 1094.66], [1065.34, 1092.72], [1059.62, 1099.23], [1061.87, 1101.2], [1059.7, 1103.66], [1065.51, 1108.77], [1075.36, 1097.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1270.01, 1551.65], [1275.62, 1545.05], [1268.99, 1539.39], [1263.38, 1545.99], [1270.01, 1551.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1196.82, 1406.0], [1191.5, 1400.75], [1190.63, 1401.62], [1188.27, 1399.3], [1184.15, 1403.47], [1186.51, 1405.79], [1183.47, 1408.87], [1188.8, 1414.12], [1196.82, 1406.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1534.3, 1648.77], [1517.15, 1632.96], [1508.88, 1641.88], [1526.02, 1657.68], [1534.3, 1648.77]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.181, "pop": 0, "jobs": 181}}, {"shape": {"outer": [[1050.99, 1358.73], [1056.32, 1352.77], [1052.63, 1349.49], [1054.56, 1347.33], [1051.04, 1344.19], [1049.08, 1346.38], [1043.78, 1341.65], [1038.49, 1347.59], [1050.99, 1358.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[981.53, 1272.97], [975.82, 1267.8], [966.38, 1278.23], [972.08, 1283.4], [981.53, 1272.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1364.7, 1292.65], [1361.89, 1290.33], [1360.69, 1291.79], [1355.3, 1287.31], [1349.89, 1293.84], [1361.65, 1303.57], [1366.89, 1297.25], [1363.35, 1294.3], [1364.7, 1292.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1230.97, 1371.41], [1225.8, 1366.32], [1220.25, 1371.95], [1220.82, 1372.52], [1214.74, 1378.7], [1219.35, 1383.23], [1230.97, 1371.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1094.39, 1219.46], [1089.25, 1214.8], [1086.15, 1218.23], [1091.3, 1222.88], [1094.39, 1219.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1291.79, 1376.96], [1283.27, 1368.72], [1275.61, 1376.64], [1284.13, 1384.88], [1291.79, 1376.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1090.32, 1074.31], [1083.54, 1068.45], [1073.0, 1080.65], [1079.79, 1086.5], [1090.32, 1074.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1120.02, 1106.2], [1114.64, 1101.59], [1109.24, 1107.9], [1114.62, 1112.5], [1120.02, 1106.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1189.94, 1123.16], [1170.64, 1105.25], [1160.8, 1115.8], [1174.83, 1128.82], [1181.97, 1121.18], [1187.22, 1126.06], [1189.94, 1123.16]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.195, "pop": 0, "jobs": 195}}, {"shape": {"outer": [[1402.04, 1588.17], [1397.03, 1583.49], [1388.99, 1592.06], [1389.53, 1592.55], [1388.38, 1593.77], [1392.85, 1597.94], [1402.04, 1588.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1183.03, 1347.31], [1195.14, 1334.54], [1191.08, 1330.69], [1186.3, 1335.72], [1184.96, 1334.45], [1177.62, 1342.17], [1183.03, 1347.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[925.3, 1162.27], [920.62, 1167.52], [929.5, 1175.37], [930.33, 1174.42], [932.02, 1175.92], [934.09, 1173.59], [932.68, 1172.35], [934.64, 1170.14], [931.89, 1167.71], [933.26, 1166.17], [928.41, 1161.88], [926.85, 1163.64], [925.3, 1162.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1347.0, 1431.33], [1341.3, 1426.04], [1335.47, 1432.32], [1341.17, 1437.61], [1347.0, 1431.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1352.68, 1482.11], [1349.41, 1479.15], [1339.4, 1490.19], [1345.99, 1496.17], [1355.09, 1486.13], [1351.77, 1483.11], [1352.68, 1482.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1184.94, 1108.31], [1187.76, 1105.07], [1188.36, 1105.58], [1194.23, 1098.86], [1188.53, 1093.9], [1182.3, 1101.05], [1184.07, 1102.59], [1181.61, 1105.42], [1184.94, 1108.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1253.14, 1454.29], [1245.93, 1447.66], [1239.27, 1454.9], [1240.38, 1455.91], [1238.21, 1458.27], [1240.31, 1460.2], [1237.84, 1462.88], [1241.86, 1466.57], [1253.14, 1454.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1138.24, 1366.08], [1128.38, 1357.34], [1119.37, 1367.42], [1129.23, 1376.16], [1138.24, 1366.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[1122.09, 1206.23], [1113.21, 1198.36], [1108.67, 1203.49], [1118.92, 1212.59], [1122.03, 1209.09], [1120.65, 1207.86], [1122.09, 1206.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1256.22, 1241.02], [1251.25, 1236.76], [1246.56, 1242.23], [1251.53, 1246.49], [1256.22, 1241.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1026.85, 1075.15], [1032.6, 1068.8], [1018.22, 1055.77], [1012.47, 1062.12], [1026.85, 1075.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1101.81, 1113.33], [1098.68, 1110.61], [1094.41, 1115.52], [1097.52, 1118.24], [1101.81, 1113.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1151.47, 1233.21], [1141.69, 1224.16], [1137.32, 1228.89], [1147.1, 1237.93], [1151.47, 1233.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1181.59, 1096.66], [1187.42, 1090.25], [1181.96, 1085.29], [1176.14, 1091.7], [1181.59, 1096.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1003.06, 1221.92], [996.84, 1216.51], [988.49, 1226.11], [994.71, 1231.53], [1003.06, 1221.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1307.74, 1363.1], [1297.04, 1354.02], [1291.52, 1360.54], [1302.22, 1369.6], [1307.74, 1363.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1266.64, 1495.38], [1262.1, 1490.95], [1256.18, 1497.0], [1260.72, 1501.43], [1266.64, 1495.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[987.36, 1286.94], [982.94, 1282.95], [980.48, 1285.66], [976.92, 1282.44], [972.58, 1287.23], [975.99, 1290.32], [974.8, 1291.63], [979.36, 1295.77], [987.36, 1286.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1352.43, 1314.67], [1341.16, 1304.35], [1334.77, 1311.32], [1341.72, 1317.7], [1336.82, 1323.05], [1342.54, 1328.28], [1347.03, 1323.36], [1345.64, 1322.09], [1352.43, 1314.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[1356.49, 1303.5], [1349.88, 1297.21], [1344.34, 1303.05], [1350.94, 1309.33], [1356.49, 1303.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1071.1, 1025.93], [1076.42, 1020.05], [1062.77, 1007.42], [1057.26, 1013.4], [1059.86, 1015.8], [1058.9, 1016.81], [1069.58, 1026.7], [1070.55, 1025.5], [1071.1, 1025.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1251.61, 1364.27], [1248.11, 1361.19], [1248.77, 1360.43], [1245.85, 1357.86], [1244.81, 1359.03], [1241.65, 1356.24], [1237.49, 1360.96], [1234.27, 1358.11], [1231.91, 1360.79], [1236.27, 1364.64], [1238.26, 1362.39], [1246.71, 1369.83], [1251.61, 1364.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[958.61, 1144.69], [963.99, 1139.12], [959.54, 1134.83], [958.73, 1135.67], [953.74, 1130.86], [948.23, 1136.55], [953.81, 1141.94], [954.75, 1140.96], [958.61, 1144.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1006.06, 1095.18], [1008.25, 1092.64], [1007.02, 1091.58], [1009.04, 1089.22], [999.06, 1080.66], [994.51, 1085.96], [1003.71, 1093.87], [1004.06, 1093.46], [1006.06, 1095.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1059.28, 1084.61], [1051.67, 1077.96], [1044.56, 1086.1], [1052.16, 1092.75], [1059.28, 1084.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1035.3, 1213.55], [1045.11, 1203.66], [1038.1, 1196.71], [1031.57, 1203.29], [1032.61, 1204.32], [1029.8, 1207.15], [1031.65, 1208.99], [1030.26, 1210.38], [1032.97, 1213.07], [1033.89, 1212.15], [1035.3, 1213.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[985.61, 1108.19], [978.69, 1102.23], [975.77, 1105.6], [976.13, 1105.92], [973.72, 1108.7], [984.69, 1118.15], [987.78, 1114.59], [983.37, 1110.78], [985.61, 1108.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1335.68, 1265.78], [1330.2, 1261.0], [1324.48, 1267.57], [1329.95, 1272.34], [1335.68, 1265.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1395.27, 1276.12], [1390.05, 1271.17], [1386.65, 1274.76], [1386.2, 1274.33], [1378.89, 1282.04], [1384.57, 1287.41], [1395.27, 1276.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1211.11, 1112.19], [1205.15, 1106.9], [1202.02, 1110.43], [1200.62, 1109.19], [1196.92, 1113.37], [1204.29, 1119.89], [1211.11, 1112.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1162.21, 1280.12], [1158.35, 1276.42], [1159.46, 1275.27], [1155.25, 1271.24], [1149.43, 1277.3], [1153.09, 1280.82], [1153.74, 1280.14], [1158.14, 1284.36], [1162.21, 1280.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1370.46, 1432.83], [1376.15, 1438.03], [1383.4, 1430.1], [1377.71, 1424.9], [1370.46, 1432.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1284.47, 1420.29], [1279.21, 1415.46], [1269.65, 1425.87], [1274.91, 1430.69], [1284.47, 1420.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1360.31, 1503.92], [1366.16, 1509.19], [1376.78, 1497.42], [1370.94, 1492.15], [1360.31, 1503.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1054.77, 1212.16], [1049.35, 1206.97], [1041.68, 1214.96], [1042.84, 1216.07], [1041.6, 1217.37], [1045.86, 1221.46], [1054.77, 1212.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1116.35, 1287.45], [1122.46, 1280.88], [1122.88, 1281.27], [1126.12, 1277.77], [1122.92, 1274.8], [1119.99, 1277.95], [1118.9, 1276.93], [1112.47, 1283.85], [1116.35, 1287.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1227.33, 1234.29], [1220.93, 1228.82], [1214.14, 1236.75], [1220.54, 1242.23], [1227.33, 1234.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1122.28, 1404.69], [1118.47, 1401.23], [1116.51, 1403.38], [1113.14, 1400.32], [1106.12, 1408.03], [1113.29, 1414.57], [1122.28, 1404.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1391.63, 1339.37], [1386.06, 1345.29], [1410.76, 1366.57], [1416.22, 1360.71], [1391.63, 1339.37]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.168, "pop": 0, "jobs": 168}}, {"shape": {"outer": [[1378.07, 1458.32], [1369.86, 1467.45], [1389.67, 1485.3], [1366.67, 1510.38], [1380.36, 1522.95], [1411.23, 1489.31], [1399.32, 1478.37], [1399.79, 1477.86], [1378.07, 1458.32]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.754, "pop": 0, "jobs": 754}}, {"shape": {"outer": [[1247.08, 1235.12], [1243.03, 1231.53], [1238.18, 1237.02], [1242.23, 1240.6], [1247.08, 1235.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1030.24, 1136.55], [1042.49, 1122.92], [1030.21, 1111.87], [1017.95, 1125.51], [1030.24, 1136.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.242, "pop": 121, "jobs": 0}}, {"shape": {"outer": [[1073.05, 1322.84], [1068.64, 1318.94], [1067.15, 1320.63], [1061.01, 1315.2], [1056.74, 1320.02], [1067.3, 1329.36], [1073.05, 1322.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1102.37, 1333.55], [1107.17, 1328.59], [1107.97, 1329.37], [1111.84, 1325.38], [1105.53, 1319.24], [1101.05, 1323.85], [1101.64, 1324.42], [1097.44, 1328.75], [1102.37, 1333.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1236.08, 1242.43], [1230.31, 1237.42], [1223.82, 1244.88], [1229.59, 1249.9], [1236.08, 1242.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[847.47, 1285.49], [843.37, 1282.05], [838.1, 1288.28], [842.19, 1291.72], [847.47, 1285.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1379.13, 1627.17], [1388.04, 1635.27], [1392.67, 1630.19], [1383.77, 1622.08], [1379.13, 1627.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[989.27, 1168.09], [992.21, 1164.9], [993.77, 1166.34], [997.83, 1161.95], [996.26, 1160.5], [998.64, 1157.93], [991.47, 1151.3], [988.73, 1154.25], [989.36, 1154.83], [985.73, 1158.76], [987.01, 1159.95], [984.0, 1163.21], [989.27, 1168.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1089.78, 1094.37], [1093.2, 1090.31], [1094.67, 1091.56], [1101.03, 1084.02], [1091.11, 1075.67], [1087.66, 1079.75], [1088.54, 1080.51], [1082.23, 1088.0], [1089.78, 1094.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[1280.44, 1300.98], [1285.14, 1295.93], [1285.96, 1296.69], [1289.03, 1293.39], [1283.41, 1288.14], [1275.63, 1296.5], [1280.44, 1300.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1244.37, 1301.27], [1234.1, 1312.47], [1240.74, 1318.23], [1250.73, 1307.18], [1244.37, 1301.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1081.56, 1103.7], [1079.33, 1101.63], [1078.0, 1103.06], [1075.27, 1100.52], [1068.75, 1107.52], [1073.7, 1112.14], [1081.56, 1103.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1126.82, 1293.42], [1140.3, 1278.81], [1135.05, 1273.96], [1121.57, 1288.58], [1126.82, 1293.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1358.09, 1503.07], [1366.61, 1493.9], [1361.86, 1489.48], [1359.02, 1492.53], [1357.75, 1491.35], [1350.94, 1498.68], [1353.72, 1501.28], [1354.86, 1500.06], [1358.09, 1503.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1262.72, 1353.55], [1254.78, 1346.3], [1248.94, 1352.72], [1256.88, 1359.96], [1262.72, 1353.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1305.11, 1563.17], [1298.02, 1556.56], [1290.3, 1564.83], [1292.36, 1566.77], [1289.84, 1569.46], [1294.87, 1574.15], [1305.11, 1563.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1387.07, 1576.27], [1381.96, 1571.7], [1373.92, 1580.63], [1379.02, 1585.2], [1387.07, 1576.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[995.03, 1215.97], [987.98, 1209.6], [980.73, 1217.63], [987.79, 1224.0], [995.03, 1215.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1207.89, 1221.66], [1197.56, 1212.47], [1191.97, 1218.76], [1194.85, 1221.31], [1193.91, 1222.37], [1201.36, 1229.0], [1207.89, 1221.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1064.63, 1032.7], [1069.0, 1027.88], [1055.36, 1015.5], [1050.02, 1021.4], [1061.74, 1032.02], [1062.7, 1030.96], [1064.63, 1032.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1038.73, 1155.17], [1030.6, 1147.08], [1024.62, 1153.08], [1032.75, 1161.18], [1038.73, 1155.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[965.73, 1200.68], [963.11, 1198.51], [967.88, 1192.7], [963.41, 1189.02], [955.36, 1198.82], [956.05, 1199.39], [954.3, 1201.52], [960.66, 1206.75], [965.73, 1200.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[925.85, 1226.27], [920.26, 1221.2], [911.0, 1231.37], [916.58, 1236.45], [925.85, 1226.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1337.81, 1391.44], [1332.16, 1386.4], [1329.1, 1389.83], [1327.9, 1388.75], [1324.01, 1393.11], [1330.87, 1399.23], [1337.81, 1391.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1146.25, 1239.47], [1143.86, 1237.23], [1144.47, 1236.6], [1136.67, 1229.26], [1132.4, 1233.79], [1140.12, 1241.05], [1142.14, 1238.91], [1144.6, 1241.23], [1146.25, 1239.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1470.33, 1699.07], [1464.24, 1693.65], [1457.92, 1700.77], [1464.02, 1706.17], [1470.33, 1699.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[966.49, 1211.61], [962.34, 1208.01], [957.04, 1214.13], [961.19, 1217.73], [966.49, 1211.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1199.83, 1475.82], [1194.09, 1470.54], [1190.62, 1474.31], [1187.48, 1471.43], [1181.09, 1478.39], [1189.96, 1486.54], [1199.83, 1475.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1119.68, 1264.7], [1123.11, 1260.59], [1113.99, 1252.97], [1110.68, 1256.94], [1111.66, 1257.75], [1110.26, 1259.44], [1116.12, 1264.32], [1117.39, 1262.79], [1119.68, 1264.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1299.86, 1298.36], [1293.03, 1292.17], [1283.62, 1302.59], [1290.46, 1308.76], [1299.86, 1298.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[959.68, 1364.92], [974.51, 1348.97], [967.74, 1342.67], [952.9, 1358.61], [959.68, 1364.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[1264.23, 1245.33], [1259.71, 1241.42], [1255.61, 1246.18], [1260.13, 1250.09], [1264.23, 1245.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1108.73, 1279.18], [1114.58, 1272.49], [1106.89, 1265.77], [1107.38, 1265.2], [1105.11, 1263.22], [1098.11, 1271.24], [1102.19, 1274.81], [1102.86, 1274.05], [1108.73, 1279.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1002.14, 1295.68], [997.31, 1291.26], [993.78, 1295.14], [992.16, 1293.66], [987.79, 1298.44], [988.62, 1299.2], [986.43, 1301.6], [992.06, 1306.73], [1002.14, 1295.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1051.67, 1037.78], [1044.14, 1030.62], [1039.26, 1035.75], [1046.8, 1042.91], [1051.67, 1037.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1011.69, 1327.46], [1018.31, 1320.8], [1016.75, 1319.24], [1020.86, 1315.1], [1014.61, 1308.89], [1012.32, 1311.2], [1011.81, 1310.68], [1003.26, 1319.28], [1007.57, 1323.55], [1007.66, 1323.46], [1011.69, 1327.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1050.61, 1134.09], [1043.92, 1127.69], [1035.24, 1136.76], [1041.93, 1143.16], [1050.61, 1134.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1025.48, 1302.45], [1028.78, 1299.07], [1023.89, 1294.0], [1020.34, 1297.49], [1025.48, 1302.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1364.35, 1324.77], [1360.19, 1320.85], [1356.39, 1324.9], [1360.56, 1328.81], [1364.35, 1324.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1270.03, 1505.24], [1266.26, 1501.38], [1261.61, 1505.93], [1265.38, 1509.79], [1270.03, 1505.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1177.8, 1327.09], [1172.04, 1321.63], [1162.84, 1331.35], [1168.6, 1336.8], [1177.8, 1327.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1232.98, 1295.7], [1218.93, 1282.16], [1208.3, 1293.19], [1209.32, 1294.16], [1204.25, 1299.42], [1216.57, 1311.29], [1221.76, 1305.91], [1222.48, 1306.6], [1232.98, 1295.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.338, "pop": 169, "jobs": 0}}, {"shape": {"outer": [[1251.92, 1258.51], [1246.96, 1253.82], [1237.54, 1263.77], [1242.5, 1268.47], [1251.92, 1258.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1161.84, 1163.86], [1167.63, 1157.55], [1158.61, 1149.26], [1155.26, 1152.91], [1153.51, 1151.3], [1152.42, 1152.49], [1150.44, 1150.67], [1147.79, 1153.56], [1154.25, 1159.49], [1155.55, 1158.08], [1161.84, 1163.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1011.7, 1302.49], [1006.68, 1297.89], [1003.91, 1300.91], [1002.17, 1299.32], [995.89, 1306.17], [998.6, 1308.65], [996.43, 1311.02], [1000.5, 1314.73], [1011.7, 1302.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1422.31, 1695.84], [1431.65, 1704.01], [1442.55, 1691.54], [1433.21, 1683.37], [1422.31, 1695.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[1322.24, 1450.95], [1317.41, 1446.45], [1307.63, 1456.96], [1312.45, 1461.46], [1322.24, 1450.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1146.53, 1444.97], [1160.34, 1456.99], [1171.72, 1444.5], [1158.07, 1432.28], [1146.53, 1444.97]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.199, "pop": 0, "jobs": 199}}, {"shape": {"outer": [[1026.2, 1204.25], [1036.47, 1193.89], [1029.96, 1187.45], [1019.91, 1197.61], [1021.67, 1199.36], [1020.28, 1200.76], [1023.48, 1203.94], [1024.67, 1202.74], [1026.2, 1204.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1266.26, 1483.33], [1276.48, 1472.39], [1269.74, 1466.08], [1268.64, 1467.26], [1263.53, 1462.49], [1252.0, 1474.83], [1259.39, 1481.74], [1261.8, 1479.16], [1266.26, 1483.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[1266.02, 1263.83], [1255.51, 1275.54], [1265.71, 1284.7], [1276.22, 1272.99], [1266.02, 1263.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[1406.72, 1284.3], [1399.85, 1278.11], [1388.91, 1290.26], [1395.78, 1296.45], [1406.72, 1284.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1335.31, 1407.97], [1344.12, 1398.04], [1338.46, 1393.03], [1328.85, 1403.86], [1332.5, 1407.11], [1333.3, 1406.19], [1335.31, 1407.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1003.51, 1147.01], [997.37, 1141.4], [990.76, 1148.66], [996.9, 1154.27], [1003.51, 1147.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1261.65, 1265.8], [1256.46, 1261.02], [1246.67, 1271.67], [1251.86, 1276.45], [1261.65, 1265.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1236.66, 1502.72], [1229.92, 1496.55], [1221.92, 1505.29], [1228.66, 1511.46], [1236.66, 1502.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1137.86, 1412.59], [1134.85, 1409.81], [1133.49, 1411.28], [1131.87, 1409.77], [1125.83, 1416.29], [1131.17, 1421.24], [1136.7, 1415.27], [1135.99, 1414.61], [1137.86, 1412.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1306.3, 1374.34], [1301.7, 1370.28], [1295.57, 1377.17], [1300.17, 1381.23], [1306.3, 1374.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1270.62, 1533.77], [1264.1, 1527.53], [1256.85, 1535.09], [1259.04, 1537.18], [1258.4, 1537.85], [1262.74, 1542.01], [1270.62, 1533.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1312.98, 1524.11], [1323.19, 1513.25], [1316.15, 1506.63], [1314.2, 1508.7], [1308.04, 1502.9], [1298.92, 1512.61], [1307.95, 1521.1], [1308.8, 1520.19], [1312.98, 1524.11]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[1351.93, 1544.85], [1345.83, 1538.74], [1335.19, 1549.34], [1341.29, 1555.46], [1351.93, 1544.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1005.56, 1114.19], [1009.42, 1109.83], [1011.54, 1111.72], [1015.59, 1107.14], [1013.32, 1105.13], [1017.8, 1100.08], [1013.91, 1096.64], [1001.53, 1110.62], [1005.56, 1114.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1364.84, 1363.91], [1359.19, 1358.18], [1350.57, 1366.69], [1356.22, 1372.43], [1364.84, 1363.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1448.62, 1643.05], [1433.92, 1629.64], [1426.95, 1637.23], [1432.61, 1642.4], [1431.97, 1643.09], [1431.25, 1643.87], [1434.61, 1646.93], [1435.38, 1646.09], [1435.96, 1645.46], [1441.64, 1650.64], [1448.62, 1643.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[979.81, 1118.76], [971.4, 1111.53], [966.88, 1116.79], [975.28, 1124.02], [979.81, 1118.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1105.05, 1346.72], [1107.48, 1344.01], [1108.33, 1344.77], [1116.84, 1335.24], [1111.06, 1330.07], [1100.12, 1342.33], [1105.05, 1346.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1177.51, 1283.54], [1172.07, 1278.74], [1167.58, 1283.83], [1173.03, 1288.63], [1177.51, 1283.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1224.55, 1462.09], [1229.51, 1456.74], [1230.34, 1457.51], [1240.03, 1447.04], [1232.72, 1440.27], [1222.92, 1450.85], [1225.26, 1453.01], [1220.41, 1458.25], [1224.55, 1462.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[943.46, 1389.03], [951.42, 1396.15], [956.09, 1390.97], [948.13, 1383.85], [943.46, 1389.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[938.22, 1396.79], [944.6, 1402.32], [949.92, 1396.23], [943.54, 1390.7], [938.22, 1396.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1803.3, 604.42], [1808.94, 597.79], [1801.91, 591.8], [1798.94, 595.3], [1799.78, 596.01], [1797.09, 599.15], [1803.3, 604.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1764.08, 607.56], [1759.97, 603.08], [1753.29, 609.14], [1754.23, 610.16], [1751.55, 612.6], [1754.74, 616.07], [1764.08, 607.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1665.34, 1000.03], [1660.43, 995.64], [1650.73, 1006.43], [1655.22, 1010.45], [1655.91, 1009.69], [1656.32, 1010.05], [1665.34, 1000.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1862.54, 993.06], [1856.95, 988.17], [1854.01, 991.52], [1859.6, 996.4], [1862.54, 993.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2254.86, 1016.07], [2262.92, 1006.78], [2247.57, 993.35], [2239.64, 1002.28], [2254.86, 1016.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2223.96, 951.79], [2226.05, 949.25], [2224.1, 947.63], [2227.9, 943.04], [2218.85, 935.56], [2211.62, 944.3], [2220.57, 951.7], [2221.91, 950.09], [2223.96, 951.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1674.7, 734.26], [1668.3, 728.35], [1655.67, 741.95], [1656.3, 742.52], [1657.54, 743.66], [1662.07, 747.86], [1674.7, 734.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2146.09, 916.24], [2148.2, 913.54], [2149.76, 914.74], [2154.15, 909.1], [2153.19, 908.35], [2155.01, 906.0], [2151.4, 903.19], [2149.83, 905.19], [2148.38, 904.06], [2143.3, 910.61], [2145.82, 912.57], [2144.15, 914.73], [2146.09, 916.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1431.78, 446.91], [1431.01, 446.25], [1433.13, 443.8], [1427.53, 439.0], [1425.17, 441.72], [1424.27, 440.94], [1413.86, 452.98], [1418.55, 457.0], [1417.9, 457.75], [1420.08, 459.61], [1421.71, 457.73], [1422.12, 458.08], [1431.78, 446.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[1849.59, 902.1], [1843.73, 896.77], [1837.25, 903.86], [1843.11, 909.18], [1849.59, 902.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2212.46, 960.78], [2215.31, 957.56], [2216.47, 958.59], [2218.38, 956.43], [2217.26, 955.44], [2219.42, 953.01], [2210.04, 944.69], [2203.11, 952.48], [2212.46, 960.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2011.75, 1190.45], [2016.21, 1185.45], [2014.46, 1183.86], [2015.62, 1182.49], [2013.98, 1181.07], [2014.45, 1180.57], [2012.76, 1178.99], [2012.2, 1179.58], [2010.07, 1177.6], [2009.33, 1178.49], [2005.12, 1174.89], [1999.86, 1180.93], [2007.69, 1187.98], [2008.16, 1187.42], [2011.75, 1190.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2055.69, 1220.71], [2049.34, 1211.85], [2045.57, 1214.56], [2046.87, 1216.38], [2044.74, 1217.89], [2049.79, 1224.93], [2055.69, 1220.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2068.9, 1155.96], [2062.29, 1150.17], [2054.44, 1159.14], [2061.05, 1164.92], [2068.9, 1155.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2111.06, 952.05], [2106.33, 947.45], [2101.36, 952.55], [2106.1, 957.16], [2111.06, 952.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1660.27, 1060.5], [1664.88, 1055.55], [1659.25, 1050.35], [1657.14, 1052.6], [1655.96, 1051.5], [1653.73, 1053.89], [1654.96, 1055.03], [1654.68, 1055.32], [1660.27, 1060.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1912.54, 1013.59], [1908.45, 1009.91], [1901.47, 1017.65], [1905.57, 1021.34], [1912.54, 1013.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1985.32, 718.74], [1990.31, 713.17], [1985.72, 709.0], [1980.67, 714.64], [1985.32, 718.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1452.17, 522.94], [1450.01, 525.32], [1448.84, 524.27], [1445.36, 528.12], [1458.47, 539.9], [1458.98, 539.34], [1460.16, 538.03], [1464.11, 533.66], [1452.17, 522.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1904.53, 1006.48], [1901.2, 1003.17], [1893.93, 1010.46], [1897.27, 1013.78], [1904.53, 1006.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2082.3, 1194.52], [2078.58, 1191.25], [2076.11, 1194.07], [2073.14, 1191.46], [2068.35, 1196.92], [2078.83, 1206.1], [2083.46, 1200.81], [2079.68, 1197.5], [2082.3, 1194.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2196.35, 910.83], [2204.63, 901.67], [2198.56, 896.22], [2190.43, 905.27], [2196.35, 910.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2249.71, 950.51], [2244.91, 946.33], [2240.62, 951.03], [2245.33, 955.17], [2249.71, 950.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2002.95, 1219.12], [1988.71, 1230.87], [1995.63, 1239.2], [2007.98, 1229.01], [2005.18, 1225.64], [2007.07, 1224.08], [2002.95, 1219.12]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.121, "pop": 0, "jobs": 121}}, {"shape": {"outer": [[1322.64, 477.8], [1316.64, 472.41], [1313.69, 475.68], [1312.88, 474.94], [1308.55, 479.72], [1309.44, 480.51], [1305.81, 484.52], [1311.75, 489.85], [1322.64, 477.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2250.61, 945.66], [2261.44, 932.75], [2255.5, 927.76], [2242.66, 943.07], [2245.62, 945.55], [2247.63, 943.16], [2250.61, 945.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1719.6, 1043.36], [1713.91, 1038.43], [1703.85, 1049.97], [1709.55, 1054.9], [1719.6, 1043.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1636.03, 1107.11], [1635.89, 1106.99], [1636.89, 1105.88], [1632.35, 1101.81], [1631.34, 1102.91], [1631.07, 1102.66], [1625.16, 1109.19], [1625.4, 1109.41], [1623.51, 1111.51], [1628.22, 1115.74], [1636.03, 1107.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1717.47, 741.74], [1710.56, 735.1], [1706.13, 739.71], [1713.03, 746.35], [1717.47, 741.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1566.03, 567.44], [1562.95, 564.69], [1564.5, 562.96], [1560.88, 559.73], [1559.32, 561.45], [1558.86, 561.04], [1552.28, 568.36], [1559.45, 574.76], [1566.03, 567.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1937.99, 1255.0], [1933.2, 1250.36], [1927.92, 1255.82], [1932.71, 1260.46], [1937.99, 1255.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1622.37, 1071.83], [1615.56, 1065.7], [1610.08, 1071.73], [1618.1, 1078.95], [1623.42, 1073.08], [1622.22, 1072.0], [1622.37, 1071.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1953.15, 828.77], [1948.78, 824.86], [1944.27, 829.86], [1948.64, 833.77], [1953.15, 828.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2094.47, 965.61], [2090.77, 962.07], [2086.79, 966.23], [2090.49, 969.78], [2094.47, 965.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1778.1, 1053.45], [1772.17, 1048.41], [1765.81, 1055.85], [1771.74, 1060.88], [1778.1, 1053.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1328.9, 548.36], [1335.18, 554.04], [1340.66, 548.04], [1334.38, 542.35], [1328.9, 548.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1868.95, 1121.01], [1864.49, 1115.67], [1851.46, 1126.47], [1854.42, 1130.0], [1851.4, 1132.51], [1854.14, 1135.8], [1865.5, 1126.39], [1864.53, 1125.22], [1867.68, 1122.61], [1867.41, 1122.29], [1868.95, 1121.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1895.22, 1152.43], [1889.99, 1148.01], [1885.27, 1153.24], [1884.48, 1152.5], [1881.59, 1155.94], [1882.87, 1157.37], [1879.01, 1161.52], [1883.56, 1166.04], [1895.22, 1152.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2069.31, 943.22], [2065.42, 939.04], [2061.38, 942.81], [2065.27, 946.99], [2069.31, 943.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1771.4, 687.3], [1764.79, 681.57], [1754.73, 692.38], [1755.83, 693.33], [1757.41, 694.7], [1761.68, 698.41], [1771.4, 687.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1962.8, 1242.25], [1957.97, 1236.38], [1949.15, 1243.64], [1953.97, 1249.5], [1962.8, 1242.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1302.73, 460.34], [1297.72, 455.7], [1293.65, 460.07], [1292.04, 458.57], [1287.73, 463.19], [1288.75, 464.13], [1286.82, 466.2], [1291.51, 470.54], [1294.94, 466.87], [1295.86, 467.71], [1302.73, 460.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1869.21, 913.87], [1858.92, 925.33], [1865.07, 930.82], [1871.76, 923.36], [1870.66, 922.37], [1874.25, 918.37], [1869.21, 913.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1283.41, 598.85], [1285.36, 600.59], [1284.53, 601.5], [1288.49, 605.07], [1289.54, 603.92], [1290.28, 604.58], [1302.26, 591.36], [1296.17, 585.87], [1292.56, 589.85], [1292.01, 589.36], [1283.41, 598.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1792.47, 765.22], [1789.22, 762.29], [1787.28, 764.43], [1785.32, 762.67], [1775.03, 774.03], [1781.87, 780.21], [1792.46, 768.5], [1790.83, 767.02], [1792.47, 765.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1611.5, 627.11], [1622.67, 614.65], [1622.38, 614.38], [1623.47, 613.17], [1617.25, 607.63], [1609.36, 616.44], [1610.19, 617.17], [1605.81, 622.05], [1611.5, 627.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1834.79, 945.2], [1829.28, 940.18], [1820.84, 949.39], [1826.35, 954.4], [1828.59, 951.95], [1829.22, 952.52], [1832.72, 948.7], [1832.1, 948.13], [1834.79, 945.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2109.59, 996.63], [2110.18, 991.57], [2100.46, 990.44], [2100.06, 993.78], [2096.9, 993.4], [2096.09, 1000.33], [2111.8, 1002.18], [2112.42, 996.96], [2109.59, 996.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2199.25, 1056.91], [2194.67, 1052.79], [2190.0, 1057.98], [2194.57, 1062.11], [2199.25, 1056.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1598.06, 937.44], [1594.15, 933.93], [1592.77, 935.45], [1591.88, 934.66], [1583.85, 943.53], [1584.22, 943.86], [1582.87, 945.35], [1588.69, 950.57], [1596.6, 941.84], [1595.21, 940.59], [1598.06, 937.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2183.98, 898.87], [2189.59, 904.04], [2194.42, 898.79], [2188.82, 893.63], [2183.98, 898.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1560.88, 906.2], [1554.48, 900.35], [1545.19, 910.43], [1551.58, 916.29], [1560.88, 906.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2064.7, 955.3], [2057.81, 949.1], [2048.47, 959.43], [2055.35, 965.62], [2064.7, 955.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1792.2, 920.27], [1800.13, 911.61], [1795.36, 907.25], [1791.23, 911.76], [1790.17, 910.8], [1786.36, 914.95], [1787.24, 915.76], [1785.23, 917.96], [1789.63, 921.97], [1791.65, 919.77], [1792.2, 920.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1688.25, 675.44], [1685.65, 673.02], [1684.06, 674.73], [1680.42, 671.35], [1674.38, 677.8], [1679.23, 682.31], [1680.56, 680.88], [1681.96, 682.18], [1688.25, 675.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2118.33, 998.37], [2120.74, 996.52], [2121.35, 997.32], [2127.63, 992.52], [2121.21, 984.13], [2112.52, 990.77], [2118.33, 998.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1659.51, 1296.74], [1673.85, 1281.14], [1670.13, 1277.37], [1681.66, 1264.38], [1666.64, 1249.58], [1654.93, 1262.53], [1651.29, 1259.1], [1647.31, 1263.58], [1645.24, 1261.84], [1634.17, 1273.95], [1659.51, 1296.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.705, "pop": 0, "jobs": 705}}, {"shape": {"outer": [[1965.88, 671.31], [1975.35, 679.71], [1979.88, 674.97], [1980.5, 675.53], [1984.04, 671.73], [1980.34, 668.38], [1978.0, 666.27], [1973.96, 662.64], [1965.88, 671.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2177.27, 906.45], [2174.77, 904.17], [2170.8, 908.52], [2173.29, 910.8], [2177.27, 906.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1497.02, 441.42], [1491.38, 436.31], [1485.15, 443.13], [1485.6, 443.54], [1484.9, 444.3], [1486.93, 446.13], [1487.63, 445.37], [1490.8, 448.24], [1497.02, 441.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1233.33, 576.45], [1257.8, 549.24], [1251.12, 543.27], [1226.64, 570.47], [1233.33, 576.45]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.21, "pop": 0, "jobs": 210}}, {"shape": {"outer": [[1933.14, 1048.71], [1942.06, 1038.98], [1937.34, 1034.65], [1935.77, 1036.37], [1934.75, 1035.43], [1926.27, 1044.67], [1930.53, 1048.59], [1931.66, 1047.36], [1933.14, 1048.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2073.92, 675.33], [2071.49, 673.21], [2066.75, 678.66], [2069.18, 680.77], [2073.92, 675.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1842.06, 850.07], [1836.64, 845.34], [1831.69, 850.95], [1837.1, 855.69], [1842.06, 850.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1974.43, 725.46], [1985.06, 735.19], [1989.04, 730.9], [1988.15, 730.07], [1991.82, 725.94], [1983.4, 718.36], [1981.14, 721.09], [1980.2, 720.29], [1978.33, 720.88], [1974.43, 725.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1845.69, 597.24], [1837.05, 588.37], [1830.23, 595.02], [1838.86, 603.89], [1845.69, 597.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1966.09, 686.3], [1972.33, 691.58], [1976.63, 686.43], [1970.43, 681.16], [1966.09, 686.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2045.56, 892.09], [2040.42, 887.6], [2036.29, 892.3], [2041.43, 896.79], [2045.56, 892.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1903.41, 811.49], [1899.81, 808.21], [1897.44, 810.79], [1895.73, 809.23], [1888.34, 817.26], [1893.64, 822.11], [1903.41, 811.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1876.86, 1069.39], [1871.69, 1064.16], [1868.73, 1067.09], [1867.77, 1066.13], [1864.91, 1068.95], [1866.18, 1070.23], [1862.51, 1073.87], [1867.38, 1078.77], [1876.86, 1069.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1716.54, 1348.04], [1728.75, 1334.58], [1740.79, 1321.36], [1723.14, 1305.17], [1715.01, 1314.17], [1724.5, 1322.35], [1707.71, 1340.09], [1716.54, 1348.04]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.363, "pop": 0, "jobs": 363}}, {"shape": {"outer": [[1849.49, 595.92], [1856.48, 588.54], [1852.35, 584.63], [1852.72, 584.24], [1844.87, 576.8], [1842.19, 579.63], [1840.52, 578.05], [1837.76, 580.96], [1839.18, 582.31], [1837.01, 584.6], [1843.28, 590.54], [1843.53, 590.28], [1849.49, 595.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1920.82, 1020.1], [1915.67, 1015.17], [1906.64, 1024.64], [1911.8, 1029.55], [1920.82, 1020.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1908.38, 1190.21], [1913.73, 1185.28], [1909.11, 1180.26], [1911.15, 1178.38], [1907.47, 1174.4], [1896.64, 1184.38], [1901.27, 1189.41], [1904.73, 1186.23], [1908.38, 1190.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1472.02, 403.1], [1468.43, 400.0], [1455.15, 415.25], [1459.34, 418.87], [1465.14, 412.22], [1464.53, 411.69], [1472.02, 403.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1900.58, 948.99], [1895.06, 943.9], [1888.48, 950.98], [1894.0, 956.07], [1900.58, 948.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1603.58, 510.54], [1606.52, 509.87], [1608.17, 506.52], [1607.3, 503.8], [1604.48, 502.28], [1600.97, 503.09], [1599.88, 506.05], [1600.67, 509.29], [1603.58, 510.54]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.033, "pop": 0, "jobs": 33}}, {"shape": {"outer": [[1814.27, 924.39], [1809.74, 920.33], [1808.1, 922.15], [1807.28, 921.41], [1801.46, 927.86], [1801.64, 928.03], [1797.63, 932.49], [1801.73, 936.17], [1803.06, 934.7], [1803.59, 935.18], [1806.47, 932.0], [1807.86, 933.24], [1811.15, 929.59], [1810.29, 928.8], [1814.27, 924.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2223.32, 888.42], [2215.33, 881.46], [2213.78, 883.16], [2212.78, 882.22], [2204.19, 892.11], [2204.65, 892.52], [2202.92, 894.54], [2208.67, 899.65], [2208.02, 900.34], [2210.63, 902.57], [2223.32, 888.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[1442.34, 756.18], [1444.44, 753.63], [1439.54, 749.61], [1437.44, 752.16], [1442.34, 756.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1692.72, 837.54], [1699.23, 843.52], [1707.69, 834.36], [1707.05, 833.78], [1711.1, 829.4], [1705.6, 824.35], [1701.52, 828.76], [1701.16, 828.42], [1692.72, 837.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1655.42, 978.58], [1647.21, 971.26], [1646.74, 971.78], [1643.74, 969.12], [1638.34, 975.13], [1649.55, 985.11], [1655.42, 978.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1896.93, 911.16], [1893.05, 907.34], [1888.26, 912.17], [1892.13, 915.98], [1896.93, 911.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1427.14, 532.3], [1437.56, 520.74], [1436.84, 520.1], [1438.58, 518.16], [1434.26, 514.31], [1431.22, 517.68], [1430.39, 516.94], [1421.72, 526.55], [1422.57, 527.31], [1422.12, 527.81], [1427.14, 532.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2031.63, 1149.26], [2046.79, 1132.68], [2040.36, 1126.79], [2025.11, 1143.48], [2031.63, 1149.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[1759.88, 1103.04], [1754.47, 1097.99], [1757.13, 1095.15], [1751.65, 1090.04], [1748.55, 1093.34], [1750.03, 1094.72], [1748.18, 1096.68], [1751.07, 1099.38], [1748.87, 1101.72], [1755.41, 1107.8], [1759.88, 1103.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1770.71, 1088.49], [1762.72, 1081.34], [1758.07, 1086.51], [1760.75, 1088.9], [1759.96, 1089.78], [1763.72, 1093.15], [1764.52, 1092.26], [1767.35, 1094.8], [1771.56, 1090.12], [1770.27, 1088.97], [1770.71, 1088.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1897.87, 896.04], [1895.64, 902.05], [1902.87, 904.71], [1905.11, 898.69], [1897.87, 896.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1942.67, 671.9], [1938.43, 667.84], [1934.8, 671.87], [1939.0, 675.74], [1942.67, 671.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1680.35, 667.94], [1674.59, 662.46], [1667.7, 669.67], [1668.42, 670.36], [1665.66, 673.27], [1670.7, 678.07], [1680.35, 667.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2095.98, 771.35], [2094.41, 769.8], [2086.67, 777.66], [2092.67, 783.57], [2099.76, 776.37], [2095.33, 772.01], [2095.98, 771.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2101.28, 987.91], [2099.59, 986.39], [2102.44, 983.24], [2098.7, 979.88], [2095.84, 983.03], [2094.3, 981.64], [2084.64, 992.29], [2091.34, 998.32], [2092.87, 996.64], [2093.15, 996.9], [2101.28, 987.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2222.65, 1048.55], [2218.77, 1045.12], [2213.48, 1051.07], [2217.36, 1054.5], [2222.65, 1048.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2040.87, 916.11], [2037.39, 913.12], [2033.25, 917.93], [2036.73, 920.93], [2040.87, 916.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1926.69, 1028.41], [1920.59, 1022.33], [1910.66, 1032.28], [1916.77, 1038.37], [1926.69, 1028.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1774.41, 750.46], [1767.27, 745.11], [1764.82, 748.37], [1762.86, 746.91], [1761.57, 748.62], [1762.32, 749.18], [1755.92, 757.73], [1764.37, 764.06], [1774.41, 750.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1286.99, 578.79], [1284.26, 576.3], [1285.41, 575.06], [1281.44, 571.43], [1274.53, 578.93], [1275.66, 579.97], [1273.59, 582.23], [1276.32, 584.73], [1277.51, 583.44], [1280.34, 586.03], [1286.99, 578.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1439.56, 471.29], [1441.04, 472.63], [1440.03, 473.73], [1443.45, 476.85], [1444.4, 475.82], [1445.6, 476.92], [1458.2, 463.14], [1452.08, 457.59], [1439.56, 471.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2033.41, 655.82], [2039.22, 649.1], [2035.55, 646.02], [2029.78, 652.74], [2033.41, 655.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1407.89, 467.5], [1402.95, 463.2], [1396.57, 470.46], [1401.51, 474.76], [1407.89, 467.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1900.78, 1002.36], [1896.63, 998.1], [1888.56, 1005.98], [1892.71, 1010.23], [1900.78, 1002.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1855.9, 630.86], [1862.56, 623.38], [1860.16, 621.16], [1862.11, 619.01], [1854.45, 612.1], [1849.07, 618.04], [1851.01, 619.81], [1847.74, 623.46], [1855.9, 630.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1807.23, 648.92], [1800.48, 643.05], [1790.24, 654.74], [1796.98, 660.61], [1807.23, 648.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2025.88, 887.21], [2021.25, 882.89], [2016.65, 887.79], [2021.29, 892.13], [2025.88, 887.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1702.09, 955.68], [1696.65, 950.83], [1694.45, 953.27], [1689.81, 949.12], [1684.81, 954.68], [1685.32, 955.13], [1681.53, 959.35], [1684.33, 961.85], [1685.88, 960.1], [1689.56, 963.39], [1691.05, 961.73], [1694.16, 964.49], [1702.09, 955.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1312.14, 624.32], [1313.11, 623.23], [1313.75, 623.8], [1323.85, 612.45], [1318.52, 607.73], [1315.11, 611.57], [1314.24, 610.8], [1311.33, 614.07], [1312.0, 614.67], [1307.25, 620.0], [1312.14, 624.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1868.13, 912.97], [1861.21, 906.77], [1851.85, 917.16], [1858.77, 923.36], [1868.13, 912.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1544.99, 438.96], [1540.12, 434.6], [1541.15, 433.46], [1535.84, 428.71], [1534.8, 429.86], [1531.72, 427.1], [1526.26, 433.17], [1539.53, 445.03], [1544.99, 438.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1867.94, 764.5], [1873.88, 769.82], [1880.03, 762.99], [1874.09, 757.67], [1867.94, 764.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1509.04, 465.15], [1516.22, 471.62], [1525.67, 461.18], [1518.48, 454.71], [1509.04, 465.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1794.49, 1038.87], [1778.76, 1056.21], [1786.77, 1063.43], [1788.91, 1061.07], [1794.9, 1066.46], [1808.49, 1051.49], [1794.49, 1038.87]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.233, "pop": 0, "jobs": 233}}, {"shape": {"outer": [[1664.96, 654.54], [1659.35, 650.03], [1651.26, 660.09], [1656.88, 664.61], [1664.96, 654.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1625.66, 800.14], [1630.02, 795.24], [1625.12, 790.91], [1620.76, 795.81], [1625.66, 800.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2032.89, 1181.09], [2047.91, 1194.72], [2054.1, 1187.91], [2039.0, 1174.29], [2032.89, 1181.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2057.89, 1168.99], [2064.47, 1175.19], [2077.91, 1160.73], [2071.28, 1154.64], [2057.89, 1168.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[1829.65, 938.59], [1824.47, 933.87], [1823.27, 935.18], [1823.09, 935.01], [1819.97, 938.42], [1819.56, 938.04], [1816.54, 941.34], [1816.95, 941.72], [1815.87, 942.89], [1817.39, 944.27], [1816.06, 945.72], [1820.26, 949.54], [1828.9, 940.1], [1828.55, 939.79], [1829.65, 938.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1795.25, 815.85], [1796.74, 814.21], [1797.88, 815.24], [1801.35, 811.44], [1792.87, 803.77], [1787.91, 809.21], [1795.25, 815.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1828.52, 896.95], [1835.7, 888.76], [1828.49, 882.48], [1820.85, 891.17], [1824.44, 894.31], [1823.29, 895.6], [1826.19, 898.13], [1827.79, 896.31], [1828.52, 896.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1547.09, 742.33], [1536.49, 732.52], [1532.43, 736.88], [1543.04, 746.69], [1547.09, 742.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1714.75, 751.22], [1709.67, 747.09], [1704.22, 753.79], [1709.3, 757.93], [1714.75, 751.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2210.32, 1016.72], [2203.43, 1010.35], [2200.02, 1014.02], [2199.29, 1013.34], [2197.4, 1015.38], [2198.87, 1016.74], [2195.06, 1020.86], [2201.21, 1026.56], [2210.32, 1016.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1790.28, 667.65], [1785.37, 663.19], [1780.43, 668.59], [1785.35, 673.05], [1790.28, 667.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1724.78, 665.78], [1730.51, 670.95], [1739.34, 661.24], [1733.6, 656.07], [1724.78, 665.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2039.53, 852.21], [2030.22, 844.11], [2025.61, 849.38], [2034.65, 857.25], [2034.9, 856.95], [2036.12, 858.02], [2039.64, 853.99], [2038.69, 853.18], [2039.53, 852.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1905.86, 1123.77], [1916.5, 1112.38], [1910.74, 1107.06], [1906.72, 1111.34], [1905.82, 1110.56], [1902.71, 1113.83], [1903.6, 1114.7], [1900.18, 1118.37], [1905.86, 1123.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2203.04, 1006.57], [2199.91, 1003.57], [2198.31, 1005.25], [2195.01, 1002.08], [2188.83, 1008.53], [2189.29, 1008.97], [2185.83, 1012.58], [2191.81, 1018.3], [2203.04, 1006.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1903.47, 691.54], [1906.33, 688.26], [1908.47, 690.12], [1911.96, 686.12], [1904.79, 679.86], [1902.75, 682.19], [1903.44, 682.8], [1899.13, 687.74], [1903.47, 691.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2105.64, 971.87], [2102.09, 968.67], [2096.7, 974.59], [2100.23, 977.79], [2105.64, 971.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1456.77, 291.69], [1459.72, 294.11], [1463.56, 289.22], [1460.41, 286.8], [1456.77, 291.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2053.86, 1141.71], [2047.63, 1136.04], [2040.82, 1143.5], [2047.05, 1149.18], [2053.86, 1141.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1331.01, 558.74], [1330.64, 558.4], [1331.02, 557.97], [1328.45, 555.64], [1328.01, 556.11], [1325.17, 553.53], [1319.47, 559.78], [1319.83, 560.11], [1314.52, 565.92], [1319.74, 570.64], [1320.97, 569.3], [1321.2, 569.51], [1331.01, 558.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2168.97, 917.52], [2167.18, 919.62], [2163.09, 916.16], [2164.36, 914.66], [2159.42, 910.5], [2151.95, 919.3], [2164.12, 929.57], [2172.11, 920.17], [2168.97, 917.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[1964.8, 876.74], [1957.03, 870.23], [1957.49, 869.69], [1955.39, 867.93], [1953.3, 870.42], [1952.2, 869.49], [1950.48, 871.53], [1952.03, 872.82], [1950.12, 875.08], [1953.06, 877.55], [1952.16, 878.62], [1958.99, 884.34], [1962.16, 880.58], [1961.81, 880.29], [1964.8, 876.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1800.45, 985.8], [1794.73, 980.42], [1791.28, 984.08], [1791.07, 983.88], [1788.04, 987.09], [1788.26, 987.31], [1784.58, 991.2], [1790.28, 996.54], [1794.28, 992.33], [1794.56, 992.59], [1798.14, 988.81], [1797.85, 988.55], [1800.45, 985.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2181.82, 933.63], [2174.6, 927.23], [2172.92, 929.13], [2170.06, 926.58], [2165.12, 932.15], [2175.19, 941.09], [2181.82, 933.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1781.81, 648.34], [1792.74, 636.52], [1791.71, 635.57], [1790.38, 634.35], [1786.47, 630.77], [1783.33, 634.17], [1782.93, 633.81], [1775.15, 642.22], [1781.81, 648.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1788.82, 847.58], [1782.58, 842.08], [1779.27, 845.8], [1780.3, 846.71], [1777.37, 850.01], [1782.57, 854.59], [1788.82, 847.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2078.29, 950.38], [2073.58, 946.24], [2069.52, 950.87], [2074.23, 955.01], [2078.29, 950.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1810.67, 994.55], [1805.74, 999.95], [1804.4, 998.73], [1801.65, 1001.76], [1801.47, 1001.6], [1797.84, 1005.59], [1801.11, 1008.55], [1799.04, 1010.83], [1798.8, 1012.61], [1801.28, 1014.86], [1815.66, 999.07], [1810.67, 994.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1516.71, 749.88], [1526.03, 739.18], [1521.84, 735.55], [1519.12, 738.68], [1517.75, 737.5], [1511.15, 745.06], [1512.22, 745.99], [1515.75, 749.04], [1516.71, 749.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1426.57, 509.8], [1422.98, 506.42], [1418.47, 511.19], [1417.81, 510.56], [1414.25, 514.33], [1414.66, 514.7], [1412.12, 517.39], [1412.84, 518.06], [1413.44, 518.62], [1412.26, 519.87], [1416.54, 523.89], [1417.22, 524.52], [1424.38, 516.96], [1421.95, 514.69], [1426.57, 509.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1905.81, 888.59], [1909.89, 892.31], [1908.0, 894.36], [1910.56, 896.72], [1912.38, 894.74], [1916.85, 898.82], [1925.55, 889.35], [1914.44, 879.2], [1905.81, 888.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[2118.11, 958.42], [2115.12, 955.57], [2109.98, 960.96], [2112.98, 963.81], [2118.11, 958.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1590.65, 1090.67], [1595.19, 1085.44], [1583.98, 1075.8], [1578.86, 1081.71], [1585.14, 1087.12], [1585.72, 1086.43], [1590.65, 1090.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1651.66, 674.44], [1644.59, 668.45], [1640.14, 673.68], [1647.22, 679.68], [1651.66, 674.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1916.13, 828.6], [1910.18, 822.86], [1902.91, 830.32], [1908.86, 836.08], [1916.13, 828.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1319.84, 554.87], [1319.37, 554.43], [1321.0, 552.67], [1315.39, 547.49], [1305.78, 557.86], [1306.17, 558.21], [1305.12, 559.34], [1306.77, 560.86], [1307.92, 559.63], [1311.31, 562.75], [1315.08, 558.68], [1315.75, 559.29], [1319.84, 554.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1339.9, 669.34], [1327.76, 658.13], [1327.52, 657.92], [1314.7, 672.44], [1326.79, 683.09], [1339.9, 669.34]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.202, "pop": 0, "jobs": 202}}, {"shape": {"outer": [[1828.8, 879.47], [1825.32, 876.36], [1824.32, 877.48], [1822.53, 875.88], [1820.68, 877.94], [1820.02, 877.35], [1814.31, 883.71], [1820.26, 889.0], [1828.8, 879.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2127.77, 958.71], [2138.65, 947.26], [2132.41, 941.33], [2119.07, 955.36], [2122.52, 958.64], [2124.97, 956.06], [2127.77, 958.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1826.72, 848.24], [1821.36, 843.34], [1816.23, 848.9], [1821.59, 853.81], [1826.72, 848.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2142.3, 894.65], [2136.41, 889.53], [2134.39, 891.85], [2133.2, 890.83], [2130.01, 894.51], [2130.89, 895.29], [2127.92, 898.71], [2134.1, 904.1], [2142.3, 894.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1967.33, 698.15], [1958.17, 689.45], [1954.77, 693.17], [1950.85, 689.54], [1946.17, 694.75], [1946.66, 695.21], [1943.69, 698.7], [1949.09, 703.64], [1947.18, 705.74], [1951.31, 709.25], [1960.71, 698.58], [1964.07, 701.58], [1967.33, 698.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[1699.76, 781.97], [1710.35, 770.07], [1706.34, 766.5], [1702.3, 771.03], [1700.55, 769.47], [1697.18, 773.25], [1698.14, 774.11], [1694.95, 777.69], [1699.76, 781.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1756.52, 600.99], [1750.55, 595.24], [1744.2, 601.79], [1746.83, 604.33], [1745.02, 606.19], [1748.36, 609.41], [1756.52, 600.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2189.68, 1048.66], [2185.09, 1044.76], [2180.77, 1049.85], [2185.36, 1053.75], [2189.68, 1048.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1903.16, 1168.68], [1899.72, 1163.96], [1893.45, 1168.52], [1894.21, 1169.57], [1887.42, 1174.51], [1890.11, 1178.19], [1903.16, 1168.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1475.74, 512.6], [1478.34, 509.74], [1479.59, 510.86], [1493.4, 495.63], [1488.36, 491.09], [1487.34, 490.17], [1486.5, 489.4], [1484.61, 491.48], [1484.26, 491.17], [1472.27, 504.39], [1472.93, 504.99], [1470.39, 507.79], [1475.74, 512.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[1893.98, 809.23], [1893.2, 808.52], [1897.19, 804.13], [1893.27, 800.6], [1889.27, 804.99], [1887.89, 803.74], [1881.32, 810.98], [1887.4, 816.47], [1893.98, 809.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1589.35, 581.68], [1581.87, 574.98], [1579.81, 577.26], [1579.32, 576.83], [1571.6, 585.4], [1579.72, 592.67], [1587.43, 584.13], [1587.27, 583.98], [1589.35, 581.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1716.46, 643.73], [1712.75, 640.11], [1703.71, 649.29], [1707.41, 652.91], [1716.46, 643.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1937.06, 963.67], [1929.42, 957.15], [1926.36, 960.73], [1925.75, 960.21], [1923.14, 963.25], [1933.43, 972.03], [1937.65, 967.07], [1935.63, 965.35], [1937.06, 963.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1934.56, 1241.45], [1928.88, 1235.65], [1921.61, 1242.76], [1927.29, 1248.57], [1934.56, 1241.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1931.44, 915.5], [1929.41, 913.69], [1931.72, 911.12], [1927.55, 907.4], [1925.24, 909.97], [1922.87, 907.85], [1917.19, 914.16], [1925.76, 921.81], [1931.44, 915.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2025.32, 900.97], [2020.11, 896.06], [2015.39, 901.02], [2020.59, 905.93], [2025.32, 900.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1726.15, 647.28], [1720.44, 642.41], [1710.99, 653.44], [1716.7, 658.3], [1726.15, 647.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2100.64, 797.02], [2097.99, 794.76], [2094.12, 799.29], [2096.76, 801.55], [2100.64, 797.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1686.25, 1020.35], [1684.03, 1018.27], [1682.01, 1020.44], [1678.98, 1017.63], [1672.65, 1024.4], [1672.92, 1024.64], [1671.49, 1026.19], [1673.08, 1027.66], [1674.37, 1026.27], [1677.76, 1029.42], [1686.25, 1020.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2022.56, 1114.41], [2017.5, 1109.44], [2014.78, 1112.21], [2013.45, 1110.91], [2010.47, 1113.94], [2011.09, 1114.54], [2007.67, 1118.02], [2013.44, 1123.69], [2022.56, 1114.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1848.79, 629.12], [1842.72, 623.69], [1834.94, 632.38], [1841.03, 637.82], [1848.79, 629.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1534.98, 753.65], [1528.71, 747.81], [1525.23, 751.54], [1526.45, 752.68], [1523.47, 755.84], [1528.51, 760.55], [1534.98, 753.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2047.15, 753.21], [2043.35, 749.85], [2035.06, 759.19], [2040.16, 763.73], [2044.05, 759.33], [2042.74, 758.17], [2047.15, 753.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1610.55, 642.25], [1605.08, 637.54], [1601.17, 642.04], [1606.64, 646.75], [1610.55, 642.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2179.51, 1039.14], [2176.73, 1036.64], [2172.4, 1041.45], [2175.19, 1043.95], [2179.51, 1039.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1726.1, 747.14], [1719.66, 741.03], [1715.12, 745.82], [1721.56, 751.93], [1726.1, 747.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1814.75, 743.98], [1812.55, 741.96], [1812.91, 741.56], [1813.43, 741.0], [1805.25, 733.52], [1803.11, 735.85], [1801.63, 734.49], [1799.12, 737.22], [1799.94, 737.97], [1798.13, 739.93], [1803.88, 745.21], [1806.92, 748.0], [1809.16, 750.04], [1814.75, 743.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2014.45, 882.19], [2017.2, 878.98], [2019.0, 880.5], [2021.8, 877.21], [2008.94, 866.32], [2005.45, 870.4], [2008.1, 872.65], [2006.05, 875.06], [2014.45, 882.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1859.49, 906.8], [1852.71, 900.77], [1844.17, 910.28], [1850.96, 916.32], [1859.49, 906.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1700.75, 734.97], [1696.03, 731.01], [1692.33, 735.41], [1697.04, 739.38], [1700.75, 734.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1330.38, 617.27], [1324.69, 612.24], [1316.67, 621.26], [1317.64, 622.11], [1316.18, 623.75], [1320.27, 627.38], [1321.68, 625.81], [1322.29, 626.35], [1330.38, 617.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2200.14, 801.43], [2206.99, 792.78], [2204.02, 790.43], [2201.77, 793.26], [2200.37, 792.15], [2195.76, 797.97], [2200.14, 801.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1750.52, 997.77], [1740.98, 1008.28], [1740.17, 1007.53], [1736.48, 1011.61], [1742.42, 1016.95], [1746.95, 1011.94], [1748.0, 1012.89], [1750.54, 1010.09], [1749.66, 1009.29], [1755.8, 1002.53], [1750.52, 997.77]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.095, "pop": 0, "jobs": 95}}, {"shape": {"outer": [[1584.07, 925.8], [1578.73, 920.95], [1568.08, 932.59], [1573.43, 937.44], [1584.07, 925.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2032.65, 881.02], [2026.45, 875.24], [2023.59, 878.27], [2029.79, 884.07], [2032.65, 881.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1745.72, 1077.77], [1740.35, 1073.27], [1734.88, 1079.76], [1740.26, 1084.25], [1745.72, 1077.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2182.1, 1009.31], [2182.44, 1006.65], [2186.12, 1007.11], [2186.72, 1002.34], [2189.57, 1002.7], [2190.4, 996.05], [2180.9, 994.86], [2180.79, 995.8], [2176.56, 995.28], [2175.19, 1006.22], [2179.18, 1006.72], [2178.91, 1008.91], [2182.1, 1009.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1984.24, 1288.6], [1979.6, 1284.37], [1975.54, 1288.8], [1977.87, 1290.94], [1980.17, 1293.04], [1984.24, 1288.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1687.56, 1078.73], [1681.45, 1073.32], [1672.78, 1083.03], [1677.41, 1087.13], [1678.31, 1086.12], [1679.8, 1087.44], [1687.56, 1078.73]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1955.89, 1231.21], [1949.07, 1224.19], [1943.3, 1229.76], [1950.12, 1236.78], [1955.89, 1231.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1616.26, 660.47], [1608.94, 653.64], [1607.2, 655.49], [1605.72, 654.1], [1601.59, 658.5], [1610.4, 666.71], [1616.26, 660.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2124.25, 835.27], [2115.56, 827.68], [2110.39, 833.61], [2119.07, 841.19], [2124.25, 835.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1575.07, 344.78], [1571.5, 341.53], [1567.03, 346.44], [1570.6, 349.69], [1575.07, 344.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1841.83, 1095.4], [1837.09, 1091.14], [1831.37, 1097.47], [1829.32, 1095.63], [1825.12, 1100.27], [1832.6, 1106.98], [1830.66, 1109.13], [1834.59, 1112.66], [1848.4, 1097.38], [1843.78, 1093.23], [1841.83, 1095.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[1589.44, 904.66], [1585.05, 900.82], [1577.64, 909.23], [1582.02, 913.06], [1589.44, 904.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1931.61, 657.83], [1927.97, 654.68], [1922.78, 660.31], [1923.25, 660.74], [1921.44, 662.85], [1925.13, 666.25], [1925.57, 665.78], [1929.49, 669.31], [1929.94, 668.79], [1933.49, 671.92], [1937.98, 666.98], [1937.23, 666.32], [1937.64, 665.88], [1934.36, 662.86], [1936.11, 660.8], [1932.07, 657.29], [1931.61, 657.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2110.44, 868.93], [2105.67, 864.74], [2099.14, 872.2], [2103.92, 876.38], [2110.44, 868.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2247.71, 917.76], [2241.63, 912.28], [2240.27, 913.78], [2238.39, 912.09], [2230.54, 920.78], [2234.86, 924.69], [2232.7, 927.08], [2237.1, 931.07], [2246.96, 920.16], [2246.18, 919.45], [2247.71, 917.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1570.52, 569.0], [1558.93, 581.78], [1566.32, 588.44], [1577.91, 575.66], [1570.52, 569.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1836.33, 962.27], [1844.22, 953.85], [1843.86, 953.52], [1845.11, 952.2], [1839.58, 947.06], [1835.66, 951.25], [1835.12, 950.74], [1831.78, 954.31], [1832.33, 954.82], [1829.74, 957.59], [1833.63, 961.2], [1834.36, 960.42], [1836.33, 962.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1810.5, 991.3], [1804.1, 985.47], [1797.54, 992.63], [1798.53, 993.52], [1795.16, 997.2], [1800.39, 1001.97], [1801.81, 1000.42], [1802.0, 1000.58], [1810.5, 991.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1258.3, 594.72], [1252.74, 589.51], [1248.61, 593.87], [1254.17, 599.09], [1258.3, 594.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2185.31, 876.97], [2195.62, 864.9], [2189.44, 859.62], [2180.5, 870.08], [2181.3, 870.76], [2179.17, 873.24], [2182.91, 876.44], [2183.66, 875.56], [2185.31, 876.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1886.56, 1101.76], [1896.32, 1092.1], [1892.89, 1088.64], [1889.15, 1092.34], [1886.49, 1089.66], [1880.48, 1095.63], [1886.56, 1101.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1873.83, 770.37], [1868.32, 764.98], [1862.32, 771.06], [1867.82, 776.45], [1873.83, 770.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1508.63, 464.86], [1516.91, 455.71], [1508.74, 448.38], [1500.46, 457.52], [1508.63, 464.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1474.64, 499.35], [1485.08, 488.01], [1482.38, 485.54], [1481.72, 486.26], [1477.26, 482.19], [1468.16, 492.08], [1469.66, 493.45], [1468.02, 495.24], [1471.22, 498.16], [1472.18, 497.1], [1474.64, 499.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1515.09, 565.84], [1508.94, 560.27], [1503.42, 566.33], [1509.57, 571.89], [1515.09, 565.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2072.33, 1205.07], [2066.37, 1199.4], [2061.99, 1204.0], [2067.95, 1209.67], [2072.33, 1205.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1933.06, 1035.07], [1927.84, 1030.45], [1922.79, 1036.09], [1924.44, 1037.56], [1922.41, 1039.82], [1925.99, 1042.99], [1933.06, 1035.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1980.77, 1222.17], [1992.77, 1212.42], [1989.45, 1208.37], [1977.44, 1218.11], [1980.77, 1222.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2231.5, 976.8], [2225.51, 971.55], [2220.27, 977.53], [2220.68, 977.89], [2216.73, 982.39], [2222.33, 987.29], [2231.5, 976.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1951.22, 1150.34], [1946.12, 1145.48], [1943.12, 1148.62], [1941.88, 1147.43], [1939.28, 1150.16], [1940.25, 1151.09], [1936.56, 1154.96], [1941.93, 1160.09], [1951.22, 1150.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2047.31, 956.06], [2055.64, 946.88], [2053.27, 944.74], [2054.81, 943.04], [2054.68, 941.42], [2052.28, 939.25], [2050.69, 939.27], [2049.2, 940.93], [2049.04, 940.78], [2039.17, 951.67], [2043.35, 955.43], [2044.82, 953.82], [2047.31, 956.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1678.81, 984.52], [1682.66, 980.32], [1678.34, 976.39], [1674.48, 980.59], [1678.81, 984.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1987.08, 1121.55], [1982.06, 1116.77], [1977.72, 1121.33], [1982.74, 1126.1], [1987.08, 1121.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2127.46, 968.44], [2122.93, 964.55], [2120.67, 967.19], [2125.19, 971.08], [2127.46, 968.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1686.44, 445.01], [1687.93, 443.32], [1685.77, 441.47], [1684.26, 443.18], [1686.44, 445.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[1603.41, 1028.66], [1594.97, 1021.22], [1590.09, 1026.71], [1600.99, 1036.32], [1604.47, 1032.4], [1602.01, 1030.23], [1603.41, 1028.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2098.57, 792.7], [2093.79, 788.72], [2090.18, 793.05], [2094.95, 797.03], [2098.57, 792.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1542.14, 715.02], [1536.17, 709.54], [1531.15, 714.96], [1539.32, 722.46], [1543.33, 718.14], [1541.12, 716.11], [1542.14, 715.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1636.95, 1060.71], [1627.14, 1051.54], [1622.62, 1056.35], [1631.5, 1064.66], [1632.17, 1063.95], [1633.42, 1065.11], [1635.78, 1062.61], [1635.45, 1062.31], [1636.95, 1060.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1840.54, 772.37], [1846.23, 766.29], [1835.79, 756.59], [1830.09, 762.67], [1834.48, 766.75], [1834.13, 767.13], [1837.21, 770.0], [1836.4, 770.86], [1839.15, 773.43], [1840.32, 772.18], [1840.54, 772.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2071.83, 826.36], [2074.64, 823.5], [2073.04, 821.92], [2074.41, 820.55], [2064.36, 810.63], [2063.14, 811.88], [2062.25, 811.0], [2059.17, 814.11], [2060.13, 815.06], [2058.25, 816.96], [2060.56, 819.23], [2059.61, 820.18], [2063.79, 824.31], [2065.35, 822.72], [2069.09, 826.42], [2070.47, 825.02], [2071.83, 826.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2204.31, 971.77], [2206.89, 968.48], [2209.66, 970.66], [2213.09, 966.27], [2210.28, 964.09], [2211.34, 962.73], [2201.49, 955.02], [2194.44, 964.04], [2204.31, 971.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1762.78, 743.85], [1758.09, 739.68], [1755.57, 742.52], [1754.51, 741.58], [1751.96, 744.46], [1752.67, 745.08], [1749.18, 749.0], [1754.22, 753.48], [1762.78, 743.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2129.29, 741.74], [2124.75, 736.8], [2119.59, 741.52], [2124.12, 746.48], [2129.29, 741.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2062.58, 826.71], [2054.29, 819.84], [2047.81, 827.67], [2056.1, 834.54], [2062.58, 826.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1603.39, 1067.18], [1596.97, 1061.63], [1592.22, 1067.1], [1598.64, 1072.64], [1603.39, 1067.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1586.09, 632.36], [1583.34, 629.89], [1579.01, 634.72], [1581.76, 637.19], [1586.09, 632.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1578.44, 1067.0], [1572.93, 1061.81], [1567.36, 1067.68], [1572.86, 1072.88], [1578.44, 1067.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1778.4, 1082.21], [1775.26, 1079.41], [1775.92, 1078.69], [1772.7, 1075.83], [1772.05, 1076.55], [1769.23, 1074.05], [1765.31, 1078.43], [1768.06, 1080.87], [1767.4, 1081.6], [1771.23, 1084.99], [1771.87, 1084.28], [1775.92, 1087.87], [1779.19, 1084.23], [1777.74, 1082.94], [1778.4, 1082.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1236.03, 817.44], [1238.9, 819.82], [1242.54, 815.45], [1240.12, 813.2], [1236.03, 817.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1482.83, 439.17], [1492.44, 428.81], [1485.47, 422.39], [1475.87, 432.75], [1482.83, 439.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1942.89, 1144.85], [1938.37, 1140.86], [1934.89, 1144.79], [1932.7, 1142.85], [1930.17, 1145.7], [1932.18, 1147.49], [1928.92, 1151.17], [1933.62, 1155.32], [1942.89, 1144.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1716.41, 1105.27], [1711.2, 1100.63], [1702.63, 1110.17], [1706.01, 1113.18], [1707.2, 1111.86], [1709.03, 1113.49], [1711.15, 1111.12], [1712.06, 1111.92], [1715.25, 1108.38], [1714.34, 1107.57], [1716.41, 1105.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1767.87, 978.4], [1770.77, 981.0], [1771.08, 980.64], [1774.18, 983.41], [1782.77, 973.89], [1776.77, 968.53], [1767.87, 978.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2074.48, 962.81], [2067.65, 956.58], [2057.51, 967.6], [2064.35, 973.85], [2074.48, 962.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2151.02, 825.3], [2145.57, 820.92], [2144.43, 822.34], [2142.85, 821.06], [2137.4, 827.84], [2144.43, 833.5], [2151.02, 825.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1956.0, 1052.89], [1950.7, 1048.15], [1943.01, 1056.75], [1948.32, 1061.49], [1956.0, 1052.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1767.5, 613.77], [1769.71, 611.37], [1767.54, 609.37], [1765.53, 611.53], [1763.52, 609.69], [1754.38, 619.54], [1760.81, 625.46], [1769.74, 615.83], [1767.5, 613.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2073.55, 918.13], [2068.63, 913.82], [2064.66, 918.35], [2069.58, 922.66], [2073.55, 918.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1828.79, 729.09], [1815.93, 716.7], [1812.04, 720.72], [1813.61, 722.24], [1812.2, 723.69], [1823.47, 734.56], [1828.79, 729.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2110.36, 922.94], [2103.97, 917.23], [2093.81, 928.58], [2095.17, 929.79], [2091.46, 933.93], [2096.49, 938.42], [2110.36, 922.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1755.95, 675.87], [1749.85, 670.12], [1740.25, 680.21], [1746.34, 685.96], [1755.95, 675.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2147.22, 899.06], [2143.34, 895.64], [2135.82, 904.17], [2142.08, 909.69], [2147.9, 903.08], [2145.53, 900.99], [2147.22, 899.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2091.55, 905.98], [2084.33, 899.4], [2079.52, 904.67], [2079.03, 904.2], [2077.15, 906.25], [2077.85, 906.89], [2074.36, 910.72], [2081.4, 917.13], [2091.55, 905.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1522.4, 680.58], [1528.04, 685.8], [1540.68, 672.25], [1536.64, 668.51], [1535.12, 670.14], [1533.52, 668.66], [1522.4, 680.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1791.09, 589.94], [1797.91, 582.53], [1797.06, 581.73], [1800.68, 577.71], [1795.77, 573.09], [1792.04, 577.23], [1788.74, 574.29], [1785.21, 578.23], [1786.16, 579.1], [1782.8, 582.77], [1791.09, 589.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1301.51, 532.81], [1296.57, 528.32], [1293.06, 532.16], [1291.99, 531.18], [1289.47, 533.93], [1290.63, 534.99], [1286.14, 539.91], [1288.0, 541.6], [1286.74, 542.98], [1289.73, 545.7], [1301.51, 532.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2083.07, 896.29], [2080.23, 893.73], [2079.16, 894.92], [2075.46, 891.6], [2065.32, 902.88], [2071.86, 908.75], [2083.07, 896.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1785.68, 976.13], [1783.21, 978.8], [1782.87, 978.5], [1779.34, 982.32], [1779.68, 982.64], [1776.34, 986.25], [1782.41, 991.82], [1791.75, 981.68], [1785.68, 976.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1887.55, 1145.94], [1882.52, 1141.67], [1879.97, 1144.67], [1878.56, 1143.47], [1875.32, 1147.27], [1876.73, 1148.46], [1873.71, 1152.03], [1878.75, 1156.31], [1887.55, 1145.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2175.26, 1073.64], [2185.07, 1062.87], [2178.5, 1056.9], [2166.77, 1069.78], [2169.62, 1072.38], [2171.55, 1070.26], [2175.26, 1073.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1940.34, 843.77], [1936.12, 840.03], [1926.2, 851.16], [1931.64, 855.97], [1938.68, 848.08], [1937.46, 847.0], [1940.34, 843.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2214.09, 1068.21], [2225.63, 1078.74], [2228.79, 1075.2], [2226.99, 1073.74], [2229.8, 1070.57], [2219.77, 1061.58], [2214.09, 1068.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1387.77, 465.79], [1381.17, 460.03], [1374.68, 467.42], [1374.24, 467.03], [1363.77, 478.94], [1370.82, 485.09], [1387.77, 465.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[1787.34, 1304.85], [1778.07, 1297.21], [1773.38, 1302.29], [1772.62, 1301.63], [1768.53, 1306.01], [1769.29, 1306.73], [1764.71, 1311.7], [1768.2, 1315.2], [1767.57, 1315.93], [1772.85, 1320.43], [1787.34, 1304.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[1969.99, 1084.58], [1980.1, 1074.71], [1976.22, 1070.74], [1974.02, 1072.89], [1971.04, 1069.85], [1965.85, 1074.91], [1966.87, 1075.95], [1963.81, 1078.94], [1965.52, 1080.7], [1963.96, 1082.22], [1965.97, 1084.28], [1967.88, 1082.41], [1969.99, 1084.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1781.09, 625.3], [1779.86, 624.2], [1777.59, 622.16], [1777.19, 622.6], [1774.28, 619.99], [1772.21, 622.27], [1771.4, 621.55], [1770.38, 620.63], [1760.08, 632.04], [1764.84, 636.32], [1766.35, 634.64], [1770.04, 637.95], [1777.71, 629.45], [1779.4, 630.96], [1781.68, 628.43], [1779.79, 626.74], [1781.09, 625.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[1974.36, 1256.33], [1969.59, 1252.03], [1962.26, 1260.16], [1967.02, 1264.45], [1974.36, 1256.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1961.35, 859.6], [1963.76, 857.26], [1965.37, 858.91], [1969.8, 854.61], [1965.27, 849.98], [1958.43, 856.61], [1961.35, 859.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2088.18, 1196.8], [2101.41, 1182.19], [2094.26, 1175.87], [2080.95, 1190.47], [2088.18, 1196.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[1382.39, 802.85], [1378.53, 799.28], [1376.1, 801.91], [1379.96, 805.48], [1382.39, 802.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1935.57, 897.03], [1929.05, 891.06], [1921.45, 899.3], [1924.42, 902.02], [1925.73, 900.6], [1929.27, 903.85], [1935.57, 897.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1498.97, 717.01], [1493.43, 712.08], [1488.62, 717.44], [1489.04, 717.81], [1488.08, 718.87], [1488.94, 719.64], [1487.02, 721.78], [1491.38, 725.67], [1494.65, 722.02], [1494.91, 722.26], [1498.24, 718.54], [1497.89, 718.23], [1498.97, 717.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1612.43, 607.53], [1607.1, 602.88], [1598.47, 612.72], [1600.7, 614.66], [1599.82, 615.67], [1600.99, 616.68], [1601.88, 615.67], [1604.3, 617.79], [1609.45, 611.91], [1608.96, 611.48], [1612.43, 607.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1772.41, 1018.14], [1765.1, 1026.15], [1765.35, 1026.39], [1762.32, 1029.69], [1762.71, 1030.05], [1760.26, 1032.73], [1764.62, 1036.7], [1777.43, 1022.7], [1772.41, 1018.14]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.079, "pop": 0, "jobs": 79}}, {"shape": {"outer": [[2006.4, 1190.57], [1996.97, 1179.9], [1991.74, 1184.53], [2001.17, 1195.2], [2006.4, 1190.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1938.28, 1210.55], [1934.57, 1206.61], [1933.75, 1207.38], [1930.59, 1204.03], [1922.16, 1211.96], [1923.32, 1213.2], [1921.57, 1214.85], [1927.27, 1220.91], [1938.28, 1210.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2027.42, 866.96], [2019.13, 859.36], [2018.57, 859.95], [2017.33, 858.81], [2012.29, 864.31], [2021.83, 873.06], [2027.42, 866.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1771.39, 914.25], [1773.13, 915.82], [1773.29, 915.63], [1776.53, 918.56], [1778.43, 916.48], [1779.48, 917.43], [1792.11, 903.64], [1786.1, 898.17], [1771.39, 914.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2161.39, 1015.97], [2154.43, 1010.14], [2148.27, 1017.48], [2159.39, 1026.81], [2164.36, 1020.89], [2160.2, 1017.4], [2161.39, 1015.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1784.03, 760.17], [1783.31, 759.51], [1781.94, 758.27], [1777.22, 753.97], [1773.9, 757.62], [1772.51, 756.35], [1768.95, 760.26], [1770.39, 761.59], [1764.29, 768.29], [1771.05, 774.44], [1784.03, 760.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1737.84, 620.07], [1733.03, 615.61], [1727.0, 622.07], [1731.82, 626.53], [1737.84, 620.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2086.61, 848.05], [2083.17, 845.08], [2076.44, 852.88], [2080.75, 856.61], [2084.98, 851.71], [2084.1, 850.94], [2086.61, 848.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1875.62, 648.78], [1869.19, 642.53], [1860.34, 651.61], [1866.77, 657.88], [1875.62, 648.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1992.35, 902.38], [1983.93, 894.49], [1979.08, 899.64], [1980.95, 901.4], [1980.22, 902.19], [1986.75, 908.31], [1992.35, 902.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2295.62, 876.37], [2290.34, 871.5], [2283.36, 879.06], [2288.64, 883.94], [2295.62, 876.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1559.65, 720.01], [1552.15, 713.5], [1547.01, 719.38], [1549.8, 721.8], [1547.52, 724.42], [1553.8, 729.87], [1557.27, 725.9], [1555.7, 724.55], [1559.65, 720.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1303.11, 480.26], [1312.93, 469.31], [1307.1, 464.12], [1304.35, 467.2], [1303.74, 466.66], [1299.12, 471.82], [1299.73, 472.36], [1297.29, 475.08], [1303.11, 480.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2276.42, 1021.98], [2268.61, 1014.76], [2262.2, 1021.98], [2264.68, 1024.21], [2263.84, 1025.12], [2266.91, 1027.79], [2267.72, 1026.86], [2270.01, 1028.82], [2270.92, 1027.86], [2271.41, 1028.3], [2274.34, 1025.07], [2273.97, 1024.68], [2276.42, 1021.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2193.47, 1027.92], [2188.32, 1023.29], [2183.81, 1028.29], [2188.97, 1032.93], [2193.47, 1027.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2038.17, 721.33], [2031.23, 715.14], [2029.24, 717.41], [2028.73, 716.96], [2021.61, 725.04], [2024.3, 727.43], [2025.32, 726.28], [2029.72, 730.19], [2033.9, 725.48], [2034.33, 725.86], [2038.17, 721.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1432.96, 492.24], [1429.8, 489.39], [1424.91, 494.79], [1428.06, 497.63], [1432.96, 492.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1832.91, 978.16], [1827.5, 973.42], [1823.09, 978.42], [1828.5, 983.16], [1832.91, 978.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1338.03, 565.34], [1332.14, 559.76], [1322.8, 569.55], [1328.68, 575.13], [1338.03, 565.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1292.8, 527.25], [1287.22, 521.6], [1281.78, 526.95], [1283.01, 528.19], [1277.8, 533.32], [1282.16, 537.72], [1292.8, 527.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1510.45, 742.51], [1519.71, 732.12], [1515.92, 728.78], [1511.09, 734.2], [1510.54, 733.71], [1506.12, 738.67], [1510.45, 742.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2032.58, 1233.03], [2028.53, 1228.17], [2025.58, 1230.63], [2029.65, 1235.33], [2032.58, 1233.03]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.015, "pop": 0, "jobs": 15}}, {"shape": {"outer": [[1672.1, 1018.02], [1679.45, 1010.03], [1679.97, 1010.51], [1682.93, 1007.29], [1677.46, 1002.3], [1674.29, 1005.75], [1674.8, 1006.21], [1667.66, 1013.98], [1672.1, 1018.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1513.65, 433.23], [1517.96, 428.55], [1513.52, 424.5], [1509.21, 429.18], [1513.65, 433.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1784.98, 562.37], [1779.61, 557.86], [1777.56, 560.29], [1776.14, 559.09], [1767.88, 568.91], [1774.67, 574.63], [1784.98, 562.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1948.6, 1132.43], [1944.48, 1128.42], [1939.73, 1133.32], [1943.85, 1137.32], [1948.6, 1132.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1698.12, 1115.28], [1691.09, 1108.8], [1683.17, 1117.33], [1690.19, 1123.81], [1698.12, 1115.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2031.8, 1166.57], [2037.54, 1159.97], [2022.74, 1146.75], [2017.09, 1153.07], [2031.8, 1166.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1756.93, 899.32], [1770.92, 883.88], [1764.43, 878.03], [1760.63, 882.23], [1760.18, 881.83], [1749.99, 893.07], [1751.62, 894.53], [1750.84, 895.4], [1753.73, 898.01], [1754.51, 897.14], [1756.93, 899.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[1608.09, 1043.8], [1603.34, 1039.43], [1600.45, 1042.55], [1605.2, 1046.92], [1608.09, 1043.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1869.13, 612.72], [1861.54, 604.91], [1855.47, 610.8], [1863.06, 618.61], [1869.13, 612.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1933.65, 1137.85], [1927.81, 1132.53], [1920.83, 1140.19], [1926.67, 1145.5], [1933.65, 1137.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1719.06, 775.55], [1712.81, 769.69], [1700.63, 782.58], [1706.87, 788.44], [1719.06, 775.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1799.47, 850.65], [1795.51, 847.03], [1795.25, 847.3], [1794.24, 846.37], [1791.25, 849.63], [1791.07, 849.45], [1785.5, 855.5], [1786.59, 856.49], [1785.69, 857.49], [1789.77, 861.2], [1792.09, 858.68], [1792.84, 859.38], [1796.98, 854.88], [1796.23, 854.19], [1799.47, 850.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2033.74, 909.61], [2028.72, 905.12], [2024.55, 909.73], [2029.57, 914.23], [2033.74, 909.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2019.93, 914.07], [2012.73, 907.81], [2004.42, 917.33], [2007.49, 919.98], [2006.08, 921.6], [2010.22, 925.19], [2019.93, 914.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1345.71, 497.29], [1341.38, 493.4], [1340.01, 494.92], [1338.0, 493.12], [1333.61, 497.98], [1333.01, 497.43], [1330.38, 500.33], [1330.8, 500.71], [1326.36, 505.62], [1327.87, 506.96], [1326.86, 508.07], [1329.47, 510.42], [1330.43, 509.36], [1332.83, 511.51], [1345.71, 497.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1749.39, 996.42], [1743.07, 990.65], [1730.97, 1003.84], [1737.29, 1009.59], [1749.39, 996.42]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.098, "pop": 0, "jobs": 98}}, {"shape": {"outer": [[1794.88, 1102.84], [1803.73, 1110.9], [1807.54, 1106.72], [1805.91, 1105.17], [1808.96, 1101.66], [1807.19, 1100.05], [1809.35, 1097.65], [1805.84, 1094.38], [1803.7, 1096.67], [1802.08, 1095.24], [1794.88, 1102.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1446.06, 457.57], [1439.81, 452.21], [1436.26, 456.31], [1434.41, 454.72], [1428.38, 461.68], [1430.24, 463.27], [1431.05, 462.34], [1437.28, 467.7], [1446.06, 457.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1708.44, 962.79], [1703.93, 958.68], [1698.04, 965.11], [1698.47, 965.5], [1695.63, 968.59], [1698.97, 971.63], [1701.8, 968.54], [1702.55, 969.22], [1708.44, 962.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1694.58, 758.7], [1689.97, 754.08], [1688.4, 755.66], [1686.62, 753.88], [1683.54, 756.97], [1684.45, 757.87], [1680.94, 761.36], [1686.43, 766.84], [1694.58, 758.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1941.89, 1217.12], [1936.86, 1212.0], [1925.68, 1223.01], [1930.72, 1228.11], [1941.89, 1217.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1937.22, 607.66], [1932.17, 602.73], [1930.37, 604.58], [1929.01, 603.26], [1922.67, 609.76], [1925.47, 612.49], [1924.36, 613.62], [1927.95, 617.14], [1937.22, 607.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1774.35, 655.45], [1768.02, 649.73], [1763.1, 655.14], [1769.44, 660.86], [1774.35, 655.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1905.24, 622.32], [1903.13, 620.49], [1901.49, 619.05], [1898.49, 616.43], [1890.9, 625.11], [1897.64, 631.0], [1905.24, 622.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1881.27, 1179.09], [1876.54, 1175.08], [1872.13, 1180.26], [1876.86, 1184.28], [1881.27, 1179.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2119.44, 977.6], [2115.66, 974.16], [2112.82, 977.26], [2116.6, 980.71], [2119.44, 977.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1992.54, 746.3], [1981.76, 757.94], [1986.12, 761.99], [1986.8, 761.27], [1988.92, 763.36], [1992.09, 759.96], [1992.75, 760.61], [2000.72, 751.91], [1994.41, 745.98], [1993.32, 747.08], [1992.54, 746.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2012.46, 1218.13], [2009.2, 1214.55], [2004.98, 1218.34], [2008.24, 1221.93], [2012.46, 1218.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1570.58, 604.2], [1565.41, 599.54], [1560.27, 605.18], [1565.44, 609.85], [1570.58, 604.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1731.0, 594.16], [1733.3, 591.9], [1737.97, 596.64], [1744.35, 590.39], [1730.57, 576.41], [1725.15, 581.71], [1728.74, 585.37], [1721.4, 592.55], [1728.15, 599.39], [1732.23, 595.4], [1731.0, 594.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2162.15, 892.17], [2155.09, 886.37], [2150.55, 891.89], [2157.61, 897.69], [2162.15, 892.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1725.48, 1356.09], [1737.52, 1342.88], [1728.75, 1334.58], [1716.54, 1348.04], [1725.48, 1356.09]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.139, "pop": 0, "jobs": 139}}, {"shape": {"outer": [[1798.06, 688.63], [1794.98, 685.78], [1791.73, 689.28], [1794.81, 692.12], [1798.06, 688.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2079.97, 1189.3], [2093.12, 1174.6], [2086.18, 1168.27], [2072.92, 1182.87], [2079.97, 1189.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1840.81, 1082.18], [1834.59, 1074.44], [1834.42, 1074.62], [1824.75, 1065.34], [1812.04, 1078.49], [1821.97, 1088.0], [1819.15, 1090.91], [1826.04, 1097.52], [1828.55, 1094.89], [1840.81, 1082.18]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.294, "pop": 0, "jobs": 294}}, {"shape": {"outer": [[2162.78, 855.88], [2171.26, 846.61], [2159.37, 835.82], [2150.95, 845.18], [2162.78, 855.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[2229.67, 992.89], [2242.08, 978.2], [2238.43, 975.1], [2239.97, 973.28], [2236.82, 970.62], [2232.59, 975.63], [2235.88, 978.42], [2234.55, 979.99], [2232.77, 978.48], [2226.0, 986.5], [2228.71, 988.79], [2227.09, 990.72], [2229.67, 992.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1339.85, 520.39], [1345.29, 525.42], [1348.99, 521.44], [1343.56, 516.42], [1339.85, 520.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2142.07, 972.78], [2136.86, 967.74], [2132.44, 972.3], [2137.65, 977.34], [2142.07, 972.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1256.53, 928.95], [1262.96, 934.62], [1266.91, 930.17], [1260.48, 924.5], [1256.53, 928.95]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.033, "pop": 0, "jobs": 33}}, {"shape": {"outer": [[2123.45, 847.5], [2120.66, 844.89], [2116.77, 849.06], [2119.56, 851.67], [2123.45, 847.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1698.86, 629.44], [1703.15, 624.55], [1702.34, 623.84], [1703.56, 622.45], [1694.87, 614.88], [1688.48, 622.16], [1696.83, 629.45], [1697.72, 628.44], [1698.86, 629.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1585.76, 918.08], [1581.42, 913.95], [1577.32, 918.22], [1581.66, 922.35], [1585.76, 918.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1862.83, 989.43], [1865.95, 986.15], [1867.71, 987.82], [1876.76, 978.28], [1869.98, 971.89], [1860.79, 981.56], [1861.28, 982.02], [1858.3, 985.16], [1862.83, 989.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1508.79, 411.11], [1502.76, 405.75], [1497.9, 411.37], [1503.68, 416.64], [1508.79, 411.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1327.41, 535.32], [1321.59, 541.69], [1327.72, 547.25], [1333.54, 540.87], [1327.41, 535.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2001.92, 1094.4], [1996.0, 1088.47], [1991.56, 1092.89], [1990.05, 1091.38], [1986.32, 1095.12], [1987.81, 1096.61], [1985.44, 1098.98], [1991.37, 1104.93], [2001.92, 1094.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2113.63, 791.11], [2108.18, 786.41], [2103.06, 792.36], [2108.52, 797.05], [2113.63, 791.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1722.04, 614.15], [1728.68, 606.78], [1713.65, 593.35], [1711.43, 595.81], [1710.89, 595.32], [1708.51, 597.96], [1709.14, 598.52], [1707.09, 600.79], [1722.04, 614.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[1913.01, 592.79], [1906.7, 587.31], [1900.1, 594.92], [1908.02, 601.8], [1911.75, 597.5], [1910.13, 596.1], [1913.01, 592.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1755.31, 807.86], [1748.03, 801.32], [1747.02, 802.44], [1744.39, 800.06], [1738.69, 806.4], [1748.61, 815.32], [1755.31, 807.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1897.74, 644.47], [1891.29, 639.1], [1889.19, 641.63], [1886.49, 639.38], [1883.16, 643.4], [1881.54, 642.06], [1878.6, 645.6], [1882.27, 648.65], [1880.7, 650.54], [1887.79, 656.43], [1897.74, 644.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[1950.11, 1046.63], [1944.71, 1041.28], [1936.82, 1049.23], [1942.23, 1054.58], [1950.11, 1046.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2157.65, 1037.41], [2151.05, 1032.07], [2140.98, 1044.51], [2144.36, 1047.24], [2143.08, 1048.82], [2146.3, 1051.43], [2157.65, 1037.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2037.49, 1201.29], [2027.74, 1189.25], [2022.71, 1193.33], [2032.45, 1205.37], [2037.49, 1201.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1680.42, 741.01], [1675.35, 736.47], [1667.8, 744.89], [1668.74, 745.75], [1664.41, 750.57], [1670.4, 755.94], [1680.99, 744.13], [1679.12, 742.46], [1680.42, 741.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2002.92, 1133.55], [1993.36, 1123.89], [1988.15, 1129.04], [1999.81, 1140.82], [2004.42, 1136.27], [2002.32, 1134.15], [2002.92, 1133.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1796.88, 1122.93], [1794.75, 1120.85], [1796.53, 1119.05], [1787.8, 1110.56], [1783.14, 1115.31], [1785.7, 1117.8], [1784.73, 1118.78], [1789.01, 1122.94], [1790.5, 1121.42], [1794.53, 1125.34], [1796.88, 1122.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2301.82, 913.07], [2295.91, 908.0], [2287.88, 917.34], [2293.79, 922.41], [2301.82, 913.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2040.01, 1172.66], [2055.11, 1186.44], [2060.45, 1180.85], [2045.27, 1166.93], [2040.01, 1172.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[1504.98, 554.61], [1511.08, 547.74], [1505.48, 542.81], [1499.39, 549.68], [1504.98, 554.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2070.63, 887.48], [2065.53, 882.82], [2056.46, 892.73], [2063.38, 899.05], [2071.07, 890.64], [2069.25, 888.98], [2070.63, 887.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2081.94, 925.17], [2078.74, 922.75], [2074.1, 928.86], [2077.29, 931.28], [2081.94, 925.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1658.37, 991.3], [1653.86, 987.29], [1650.47, 991.08], [1650.15, 990.79], [1645.16, 996.34], [1648.1, 998.96], [1646.81, 1000.41], [1649.67, 1002.95], [1650.96, 1001.5], [1651.18, 1001.7], [1655.33, 997.05], [1654.15, 996.0], [1658.37, 991.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1358.85, 558.8], [1362.83, 562.39], [1362.48, 562.77], [1366.26, 566.19], [1370.17, 561.87], [1367.09, 559.09], [1367.7, 558.43], [1363.03, 554.22], [1358.85, 558.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2088.82, 693.45], [2092.99, 688.72], [2089.01, 685.21], [2084.84, 689.95], [2088.82, 693.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1976.6, 1106.98], [1971.9, 1102.97], [1965.46, 1110.51], [1970.17, 1114.53], [1976.6, 1106.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2011.76, 884.91], [2003.02, 877.15], [1999.52, 881.07], [1998.83, 880.47], [1996.89, 882.64], [1997.58, 883.25], [1997.02, 883.87], [2005.75, 891.62], [2011.76, 884.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1703.36, 849.29], [1705.92, 846.45], [1701.34, 842.34], [1698.78, 845.18], [1703.36, 849.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2038.89, 929.19], [2032.22, 923.27], [2023.28, 933.27], [2026.47, 936.1], [2025.13, 937.58], [2028.62, 940.69], [2038.89, 929.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2321.39, 936.32], [2315.36, 929.01], [2305.29, 937.32], [2310.35, 943.46], [2309.3, 944.32], [2314.81, 951.0], [2321.61, 945.4], [2318.98, 942.2], [2321.63, 940.01], [2319.72, 937.69], [2321.39, 936.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[1929.82, 1069.63], [1925.09, 1065.01], [1920.66, 1069.56], [1925.39, 1074.17], [1929.82, 1069.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2147.52, 1030.41], [2141.23, 1025.02], [2138.67, 1027.99], [2136.58, 1026.2], [2133.34, 1029.97], [2134.99, 1031.39], [2132.33, 1034.5], [2136.06, 1037.7], [2134.56, 1039.45], [2137.56, 1042.02], [2147.52, 1030.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1598.7, 1037.66], [1589.54, 1029.75], [1585.13, 1034.83], [1596.15, 1044.33], [1600.11, 1039.77], [1598.25, 1038.18], [1598.7, 1037.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1572.09, 1043.83], [1567.69, 1048.68], [1578.98, 1058.83], [1583.38, 1053.96], [1572.09, 1043.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1878.7, 1033.14], [1869.6, 1025.48], [1864.68, 1031.32], [1875.15, 1040.13], [1878.1, 1036.63], [1876.74, 1035.48], [1878.7, 1033.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2229.82, 969.19], [2233.31, 965.02], [2225.2, 958.24], [2221.1, 963.15], [2226.4, 967.58], [2227.01, 966.84], [2229.82, 969.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1702.93, 688.43], [1696.93, 683.2], [1689.78, 691.41], [1695.79, 696.65], [1702.93, 688.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2256.64, 956.08], [2251.1, 951.59], [2246.44, 957.33], [2251.98, 961.82], [2256.64, 956.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1995.42, 841.94], [1988.02, 834.7], [1983.51, 839.26], [1990.91, 846.51], [1995.42, 841.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1760.85, 795.4], [1756.97, 791.77], [1755.69, 793.14], [1753.05, 790.66], [1747.96, 796.11], [1757.42, 804.94], [1762.81, 799.18], [1759.88, 796.44], [1760.85, 795.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2147.57, 863.82], [2152.47, 858.41], [2143.34, 850.01], [2138.4, 855.43], [2147.57, 863.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2241.07, 1059.59], [2234.06, 1052.27], [2233.13, 1053.16], [2229.92, 1049.8], [2226.95, 1052.64], [2228.06, 1053.82], [2225.03, 1056.72], [2235.38, 1067.54], [2238.46, 1064.6], [2237.21, 1063.29], [2241.07, 1059.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2017.97, 1217.87], [2021.53, 1214.83], [2020.63, 1213.79], [2021.9, 1212.71], [2014.32, 1203.79], [2007.94, 1209.21], [2015.29, 1217.85], [2016.84, 1216.53], [2017.97, 1217.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2246.75, 1057.16], [2250.78, 1053.07], [2248.31, 1050.64], [2248.99, 1049.97], [2237.58, 1038.71], [2231.51, 1044.87], [2243.45, 1056.65], [2244.82, 1055.25], [2246.75, 1057.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2003.33, 714.52], [1998.14, 709.52], [1997.22, 710.47], [1992.95, 706.35], [1988.82, 710.65], [1998.28, 719.76], [2003.33, 714.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1929.85, 1097.83], [1925.81, 1094.0], [1920.33, 1099.78], [1924.36, 1103.61], [1929.85, 1097.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1904.58, 945.53], [1906.44, 943.46], [1906.8, 943.77], [1910.14, 940.04], [1909.16, 939.17], [1910.17, 938.04], [1904.07, 932.6], [1897.85, 939.53], [1904.58, 945.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1399.88, 488.59], [1394.66, 484.0], [1384.2, 495.84], [1389.95, 500.88], [1391.64, 498.96], [1392.24, 499.49], [1399.42, 491.36], [1398.3, 490.38], [1399.88, 488.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2092.91, 978.3], [2086.19, 972.5], [2083.83, 975.21], [2083.48, 974.91], [2080.71, 978.09], [2080.96, 978.29], [2076.73, 983.16], [2081.63, 987.39], [2080.56, 988.62], [2082.48, 990.27], [2092.91, 978.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1856.65, 999.04], [1848.08, 991.39], [1845.78, 993.95], [1844.64, 992.93], [1841.71, 996.18], [1842.89, 997.23], [1842.67, 997.47], [1851.21, 1005.08], [1856.65, 999.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2028.05, 923.18], [2021.53, 917.26], [2019.47, 919.5], [2019.1, 919.16], [2015.98, 922.57], [2016.3, 922.87], [2012.43, 927.1], [2018.75, 932.85], [2020.68, 930.75], [2020.92, 930.97], [2028.05, 923.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1875.24, 1169.16], [1871.17, 1165.36], [1867.11, 1169.71], [1871.17, 1173.52], [1875.24, 1169.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1958.77, 1170.7], [1953.27, 1164.42], [1948.04, 1169.0], [1948.68, 1169.74], [1946.52, 1171.62], [1951.39, 1177.17], [1958.77, 1170.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2219.51, 1082.03], [2208.51, 1072.19], [2202.25, 1079.19], [2215.0, 1090.58], [2218.49, 1086.67], [2216.75, 1085.12], [2219.51, 1082.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1630.9, 1067.62], [1623.04, 1060.62], [1618.59, 1065.58], [1625.04, 1071.32], [1625.28, 1071.06], [1626.69, 1072.32], [1630.9, 1067.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1699.34, 709.16], [1694.41, 704.84], [1689.03, 710.97], [1693.97, 715.3], [1699.34, 709.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1648.14, 731.88], [1656.75, 722.5], [1651.12, 717.32], [1641.57, 727.73], [1645.1, 730.96], [1646.04, 729.95], [1648.14, 731.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1350.61, 521.05], [1353.18, 523.38], [1352.17, 524.49], [1356.97, 528.86], [1357.93, 527.81], [1359.05, 528.82], [1368.31, 518.71], [1359.26, 510.49], [1355.23, 514.9], [1355.78, 515.4], [1350.61, 521.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[1635.35, 1119.33], [1641.85, 1112.48], [1637.07, 1107.99], [1630.51, 1114.93], [1630.71, 1115.12], [1628.77, 1117.17], [1632.04, 1120.25], [1634.05, 1118.11], [1635.35, 1119.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1666.56, 693.14], [1663.28, 689.9], [1658.2, 695.05], [1665.02, 701.78], [1668.34, 698.43], [1664.79, 694.93], [1666.56, 693.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1909.81, 785.95], [1914.38, 780.95], [1909.55, 776.56], [1904.99, 781.55], [1909.81, 785.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2047.79, 937.53], [2041.18, 931.63], [2031.97, 941.87], [2035.35, 944.89], [2034.04, 946.35], [2037.26, 949.23], [2047.79, 937.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1808.71, 947.44], [1821.32, 933.68], [1817.86, 930.53], [1819.43, 928.83], [1816.04, 925.75], [1801.86, 941.21], [1808.71, 947.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[1733.02, 718.77], [1734.91, 716.42], [1731.45, 713.66], [1727.28, 718.87], [1725.52, 717.47], [1722.97, 720.65], [1726.78, 723.69], [1723.79, 727.43], [1727.71, 730.55], [1735.54, 720.77], [1733.02, 718.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1781.57, 834.34], [1772.79, 826.25], [1772.46, 826.6], [1771.4, 825.62], [1765.76, 831.69], [1766.82, 832.68], [1766.61, 832.9], [1775.4, 840.99], [1777.57, 838.66], [1778.23, 839.27], [1781.11, 836.16], [1780.44, 835.55], [1781.57, 834.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2090.49, 1200.68], [2097.28, 1206.61], [2111.0, 1191.28], [2104.33, 1185.17], [2090.49, 1200.68]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1288.15, 548.61], [1293.79, 553.72], [1308.17, 537.96], [1302.53, 532.85], [1288.15, 548.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1929.61, 1128.8], [1925.62, 1125.12], [1925.03, 1125.75], [1923.5, 1124.34], [1921.35, 1126.67], [1920.39, 1125.77], [1917.45, 1128.96], [1918.77, 1130.17], [1916.13, 1133.01], [1921.3, 1137.79], [1929.61, 1128.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1886.53, 1173.24], [1888.96, 1170.58], [1890.18, 1171.69], [1899.84, 1161.12], [1894.02, 1155.8], [1881.92, 1169.02], [1886.53, 1173.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1718.08, 1004.42], [1711.63, 1011.32], [1717.51, 1016.76], [1724.48, 1009.3], [1721.0, 1006.05], [1720.47, 1006.62], [1718.08, 1004.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1271.12, 565.67], [1270.48, 565.1], [1271.2, 564.29], [1267.45, 560.96], [1266.73, 561.76], [1265.88, 561.01], [1256.26, 571.77], [1261.51, 576.42], [1271.12, 565.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1963.34, 1061.35], [1956.83, 1055.75], [1949.52, 1064.24], [1956.02, 1069.84], [1963.34, 1061.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2064.37, 1214.55], [2058.6, 1205.2], [2053.14, 1208.56], [2054.38, 1210.6], [2052.93, 1211.49], [2057.46, 1218.81], [2064.37, 1214.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1267.88, 558.1], [1261.33, 552.17], [1250.45, 564.1], [1257.0, 570.03], [1267.88, 558.1]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.091, "pop": 0, "jobs": 91}}, {"shape": {"outer": [[1842.73, 834.77], [1853.43, 823.06], [1847.85, 818.0], [1846.1, 819.93], [1845.73, 819.58], [1844.48, 820.95], [1843.87, 820.4], [1839.94, 824.71], [1840.55, 825.26], [1838.29, 827.74], [1839.36, 828.72], [1837.86, 830.36], [1842.73, 834.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2157.22, 1057.39], [2166.58, 1046.99], [2164.31, 1044.96], [2165.7, 1043.42], [2163.08, 1041.05], [2161.77, 1042.49], [2159.24, 1040.21], [2148.82, 1051.78], [2151.32, 1054.04], [2152.29, 1052.95], [2157.22, 1057.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1818.71, 1001.25], [1817.16, 1002.89], [1816.1, 1001.89], [1805.52, 1013.04], [1805.63, 1013.14], [1804.68, 1014.15], [1807.81, 1017.1], [1808.76, 1016.09], [1811.66, 1018.82], [1815.1, 1015.2], [1815.4, 1015.48], [1819.94, 1010.71], [1819.37, 1010.17], [1821.95, 1007.44], [1820.77, 1006.33], [1822.34, 1004.69], [1818.71, 1001.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1887.17, 936.3], [1880.57, 930.22], [1873.67, 937.68], [1880.27, 943.74], [1887.17, 936.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1891.03, 855.01], [1885.45, 849.79], [1883.35, 852.01], [1882.98, 851.66], [1875.97, 859.08], [1877.44, 860.45], [1876.12, 861.85], [1881.24, 866.64], [1882.57, 865.24], [1882.7, 865.37], [1889.85, 857.79], [1889.09, 857.07], [1891.03, 855.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1845.51, 700.55], [1851.74, 695.18], [1852.95, 696.57], [1858.86, 691.45], [1854.06, 685.94], [1852.74, 687.08], [1850.75, 684.79], [1845.56, 689.29], [1846.74, 690.65], [1841.11, 695.51], [1845.51, 700.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1410.48, 515.63], [1420.36, 504.63], [1413.75, 498.73], [1403.86, 509.73], [1410.48, 515.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1721.48, 1147.55], [1741.46, 1125.72], [1726.94, 1112.53], [1706.97, 1134.35], [1721.48, 1147.55]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.371, "pop": 0, "jobs": 371}}, {"shape": {"outer": [[1742.58, 821.53], [1747.36, 816.36], [1738.28, 807.97], [1733.71, 812.91], [1736.63, 815.61], [1735.69, 816.63], [1738.83, 819.53], [1739.56, 818.74], [1742.58, 821.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2143.56, 844.01], [2145.56, 841.76], [2147.17, 843.18], [2156.79, 832.32], [2151.08, 827.26], [2140.96, 838.7], [2142.3, 839.88], [2140.8, 841.57], [2143.56, 844.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1673.14, 1111.35], [1679.07, 1104.94], [1674.12, 1100.41], [1673.37, 1101.22], [1672.65, 1100.56], [1669.74, 1103.7], [1669.9, 1103.85], [1667.7, 1106.23], [1669.0, 1107.42], [1667.52, 1109.02], [1669.99, 1111.29], [1671.4, 1109.76], [1673.14, 1111.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1868.03, 1163.23], [1863.72, 1159.2], [1859.04, 1164.21], [1863.34, 1168.24], [1868.03, 1163.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1721.9, 1026.61], [1715.56, 1021.06], [1711.24, 1025.97], [1715.65, 1029.83], [1718.12, 1027.03], [1720.05, 1028.72], [1721.9, 1026.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2187.99, 858.48], [2181.1, 852.51], [2173.08, 861.75], [2179.96, 867.72], [2187.99, 858.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1805.41, 965.46], [1799.21, 959.84], [1795.67, 963.71], [1795.27, 963.35], [1792.37, 966.51], [1797.95, 971.57], [1801.91, 967.25], [1802.93, 968.18], [1805.41, 965.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1925.92, 977.12], [1918.15, 969.5], [1912.18, 975.59], [1919.95, 983.21], [1925.92, 977.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2202.79, 1036.37], [2197.96, 1031.67], [2192.59, 1037.2], [2197.42, 1041.89], [2202.79, 1036.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2107.22, 783.07], [2102.18, 778.24], [2095.45, 785.24], [2100.49, 790.09], [2107.22, 783.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1993.35, 1135.7], [1988.31, 1130.95], [1987.23, 1132.1], [1984.15, 1129.19], [1979.35, 1134.27], [1991.46, 1145.68], [1996.42, 1140.42], [1992.44, 1136.67], [1993.35, 1135.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1702.0, 1092.06], [1696.56, 1087.18], [1689.14, 1095.38], [1694.58, 1100.26], [1702.0, 1092.06]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1345.99, 633.63], [1340.24, 628.42], [1331.93, 637.53], [1337.69, 642.74], [1345.99, 633.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1822.55, 1009.67], [1810.48, 1023.01], [1817.06, 1028.92], [1829.12, 1015.58], [1822.55, 1009.67]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.045, "pop": 0, "jobs": 45}}, {"shape": {"outer": [[1563.48, 754.23], [1578.29, 767.46], [1582.81, 762.43], [1568.0, 749.21], [1563.48, 754.23]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.086, "pop": 0, "jobs": 86}}, {"shape": {"outer": [[2209.23, 1093.16], [2205.05, 1089.61], [2203.67, 1091.25], [2196.43, 1085.1], [2190.85, 1091.67], [2202.26, 1101.36], [2209.23, 1093.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2203.15, 873.54], [2195.8, 881.63], [2202.81, 888.0], [2210.1, 879.97], [2203.15, 873.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1599.36, 631.37], [1596.07, 628.28], [1591.18, 633.44], [1595.74, 637.74], [1599.04, 634.25], [1597.76, 633.04], [1599.36, 631.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1925.5, 601.12], [1918.3, 594.71], [1911.07, 602.82], [1918.25, 609.24], [1925.5, 601.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1739.57, 782.35], [1744.79, 776.41], [1739.23, 771.35], [1733.94, 777.25], [1739.57, 782.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1628.2, 1100.39], [1627.67, 1099.92], [1628.7, 1098.77], [1624.38, 1094.9], [1623.35, 1096.04], [1622.95, 1095.67], [1616.83, 1102.45], [1618.05, 1103.55], [1617.01, 1104.7], [1621.04, 1108.32], [1628.2, 1100.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1922.04, 1197.74], [1920.88, 1196.48], [1924.41, 1193.25], [1920.29, 1188.76], [1913.53, 1194.93], [1918.83, 1200.67], [1922.04, 1197.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1272.8, 530.11], [1281.0, 520.84], [1277.49, 517.75], [1277.04, 518.27], [1274.89, 516.38], [1274.09, 517.29], [1273.39, 516.68], [1272.29, 517.93], [1269.25, 515.26], [1270.57, 513.78], [1268.03, 511.54], [1266.56, 513.21], [1263.26, 510.3], [1260.12, 513.84], [1263.2, 516.55], [1260.71, 519.35], [1264.21, 522.43], [1263.78, 522.91], [1265.97, 524.83], [1265.47, 525.41], [1269.29, 528.77], [1270.15, 527.8], [1272.8, 530.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[1702.13, 823.56], [1695.01, 817.18], [1683.59, 829.83], [1690.71, 836.21], [1702.13, 823.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1632.5, 996.25], [1636.88, 991.62], [1628.18, 983.44], [1623.38, 988.52], [1631.31, 995.98], [1631.73, 995.53], [1632.5, 996.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1622.65, 948.84], [1614.82, 942.0], [1609.13, 948.47], [1618.31, 956.49], [1623.62, 950.45], [1622.27, 949.27], [1622.65, 948.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1530.51, 556.73], [1527.39, 553.94], [1523.38, 558.4], [1526.51, 561.19], [1530.51, 556.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1679.8, 1071.54], [1674.45, 1066.79], [1666.86, 1075.25], [1670.25, 1078.28], [1670.09, 1078.46], [1672.04, 1080.2], [1679.8, 1071.54]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1747.11, 746.78], [1757.27, 735.58], [1750.12, 729.54], [1740.02, 740.57], [1747.11, 746.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1918.17, 796.08], [1912.87, 791.33], [1908.32, 796.36], [1913.62, 801.12], [1918.17, 796.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1854.83, 1060.42], [1867.62, 1046.35], [1861.06, 1040.63], [1849.4, 1053.75], [1850.94, 1055.19], [1850.02, 1056.24], [1854.83, 1060.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[1804.34, 839.55], [1800.84, 836.56], [1797.09, 840.91], [1800.59, 843.91], [1804.34, 839.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2222.12, 1022.53], [2218.86, 1019.31], [2216.74, 1021.44], [2214.34, 1019.07], [2204.96, 1028.55], [2206.96, 1030.53], [2205.67, 1031.84], [2209.34, 1035.47], [2222.12, 1022.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1274.89, 495.28], [1279.72, 489.96], [1276.97, 487.47], [1278.04, 486.28], [1274.2, 482.83], [1273.24, 483.9], [1270.01, 480.99], [1265.07, 486.43], [1274.89, 495.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2170.42, 875.37], [2161.89, 867.61], [2157.16, 872.81], [2160.44, 875.79], [2158.46, 877.96], [2163.7, 882.75], [2170.42, 875.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1858.46, 772.66], [1851.7, 766.41], [1844.95, 773.67], [1845.26, 773.96], [1841.73, 777.77], [1842.66, 778.64], [1843.92, 779.79], [1848.17, 783.72], [1858.46, 772.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2276.18, 1003.35], [2279.91, 999.05], [2274.3, 993.81], [2270.47, 998.21], [2276.18, 1003.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1962.49, 1271.2], [1956.88, 1266.54], [1952.03, 1272.39], [1957.64, 1277.05], [1962.49, 1271.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1898.33, 1113.79], [1911.24, 1100.0], [1906.34, 1095.42], [1900.8, 1101.28], [1901.25, 1101.73], [1893.82, 1109.61], [1898.33, 1113.79]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1599.44, 591.14], [1592.18, 584.8], [1590.53, 586.67], [1589.44, 585.71], [1580.85, 595.48], [1586.16, 600.11], [1585.02, 601.41], [1588.04, 604.04], [1589.17, 602.76], [1589.98, 603.46], [1598.6, 593.65], [1597.83, 592.98], [1599.44, 591.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1872.67, 786.03], [1866.76, 780.95], [1859.11, 789.78], [1864.23, 794.2], [1868.36, 789.44], [1869.13, 790.1], [1872.67, 786.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2235.65, 955.78], [2230.19, 951.2], [2225.95, 956.27], [2231.41, 960.85], [2235.65, 955.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2328.12, 950.54], [2324.39, 946.65], [2315.42, 955.3], [2322.26, 962.4], [2328.75, 956.14], [2326.85, 954.16], [2328.23, 952.83], [2327.04, 951.58], [2328.12, 950.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2059.14, 933.55], [2055.64, 930.28], [2051.75, 934.43], [2055.25, 937.7], [2059.14, 933.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1960.84, 833.34], [1964.7, 829.04], [1956.3, 821.54], [1952.43, 825.84], [1960.84, 833.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1343.07, 576.03], [1336.92, 570.5], [1330.81, 577.25], [1331.2, 577.59], [1329.58, 579.37], [1332.58, 582.07], [1331.15, 583.66], [1332.94, 585.28], [1334.38, 583.69], [1334.68, 583.96], [1336.34, 582.12], [1337.01, 582.73], [1343.07, 576.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2137.49, 979.86], [2127.96, 971.57], [2121.76, 978.7], [2131.29, 986.99], [2137.49, 979.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1934.38, 974.8], [1929.46, 970.29], [1925.61, 974.5], [1930.52, 979.0], [1934.38, 974.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1763.7, 904.86], [1769.54, 898.51], [1769.74, 898.7], [1776.13, 891.76], [1775.47, 891.16], [1776.62, 889.91], [1771.61, 885.32], [1758.27, 899.8], [1758.56, 900.07], [1757.81, 900.89], [1759.54, 902.47], [1760.25, 901.7], [1763.7, 904.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1710.61, 693.39], [1705.25, 688.21], [1697.11, 696.64], [1702.47, 701.82], [1710.61, 693.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1379.51, 567.89], [1374.66, 563.27], [1370.27, 567.84], [1375.13, 572.47], [1379.51, 567.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2100.1, 942.05], [2096.94, 939.27], [2092.36, 944.46], [2095.5, 947.25], [2100.1, 942.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1445.77, 534.19], [1439.95, 540.64], [1443.14, 543.5], [1440.28, 546.65], [1444.58, 550.49], [1453.25, 540.89], [1445.77, 534.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1795.34, 818.69], [1786.73, 810.74], [1780.56, 817.37], [1789.18, 825.33], [1795.34, 818.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1341.5, 648.93], [1343.39, 646.87], [1344.01, 647.43], [1345.92, 645.34], [1345.24, 644.71], [1350.95, 638.44], [1346.31, 634.24], [1336.8, 644.67], [1341.5, 648.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1984.0, 1153.86], [1979.26, 1148.78], [1977.87, 1150.07], [1973.56, 1145.45], [1969.39, 1149.35], [1973.51, 1153.77], [1971.64, 1155.51], [1978.1, 1162.44], [1982.59, 1158.26], [1981.06, 1156.61], [1984.0, 1153.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1834.94, 827.58], [1846.71, 814.45], [1840.51, 808.93], [1828.73, 822.05], [1834.94, 827.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1815.3, 669.53], [1818.02, 666.48], [1817.77, 666.27], [1822.46, 661.04], [1816.41, 655.66], [1806.95, 666.22], [1807.81, 666.98], [1807.54, 667.28], [1812.68, 671.85], [1815.0, 669.27], [1815.3, 669.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1945.05, 797.25], [1941.64, 794.17], [1937.49, 798.72], [1940.9, 801.8], [1945.05, 797.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1958.49, 1091.47], [1952.85, 1085.93], [1947.36, 1091.52], [1953.0, 1097.06], [1958.49, 1091.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1819.91, 791.55], [1813.1, 785.39], [1812.2, 786.38], [1811.82, 786.04], [1810.01, 788.04], [1810.38, 788.37], [1809.68, 789.14], [1807.87, 787.51], [1803.47, 792.32], [1805.58, 794.22], [1804.09, 795.85], [1808.08, 799.46], [1809.44, 797.97], [1812.11, 800.39], [1809.51, 803.24], [1813.38, 806.73], [1819.97, 799.5], [1815.96, 795.87], [1819.91, 791.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[1881.57, 925.41], [1875.33, 919.85], [1865.15, 931.2], [1871.38, 936.76], [1881.57, 925.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1307.77, 598.36], [1302.92, 593.99], [1300.99, 596.11], [1300.11, 595.33], [1294.08, 601.98], [1299.82, 607.14], [1307.77, 598.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1912.67, 817.04], [1908.65, 813.27], [1908.02, 813.94], [1906.52, 812.54], [1895.99, 823.67], [1900.42, 827.84], [1901.38, 828.73], [1902.13, 829.43], [1912.04, 818.94], [1911.42, 818.37], [1912.67, 817.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1453.25, 483.77], [1466.05, 469.9], [1465.26, 469.18], [1464.17, 468.18], [1460.07, 464.42], [1447.44, 478.11], [1448.48, 479.06], [1447.28, 480.36], [1450.89, 483.68], [1451.93, 482.57], [1453.25, 483.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2048.36, 1227.06], [2041.65, 1218.21], [2034.53, 1223.61], [2041.25, 1232.46], [2048.36, 1227.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2279.76, 997.19], [2284.25, 1001.65], [2288.04, 997.84], [2283.56, 993.38], [2279.76, 997.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1984.44, 857.63], [1974.39, 848.36], [1971.23, 851.77], [1971.93, 852.42], [1969.06, 855.51], [1978.39, 864.13], [1984.44, 857.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1612.69, 964.8], [1618.7, 958.3], [1608.91, 949.31], [1604.94, 953.61], [1605.66, 954.27], [1603.22, 956.92], [1610.7, 963.78], [1611.09, 963.34], [1612.69, 964.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1998.44, 1110.03], [2000.6, 1107.91], [2001.29, 1108.63], [2007.94, 1102.08], [2002.86, 1096.91], [1995.97, 1103.71], [1998.29, 1106.07], [1996.39, 1107.93], [1998.44, 1110.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1852.78, 750.35], [1847.47, 745.23], [1841.27, 751.63], [1853.02, 762.94], [1858.06, 757.75], [1851.62, 751.55], [1852.78, 750.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1885.34, 624.94], [1886.84, 623.31], [1887.78, 624.21], [1895.06, 616.2], [1894.63, 615.78], [1896.19, 614.2], [1889.38, 608.19], [1888.42, 609.24], [1887.78, 608.65], [1884.85, 611.78], [1884.46, 611.39], [1878.17, 618.3], [1885.34, 624.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2083.68, 970.0], [2077.09, 964.05], [2067.66, 974.43], [2070.82, 977.28], [2069.36, 978.88], [2072.8, 981.98], [2083.68, 970.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2233.31, 817.51], [2228.84, 813.39], [2222.83, 819.91], [2227.31, 824.03], [2233.31, 817.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2045.7, 1194.57], [2039.05, 1187.57], [2033.95, 1192.4], [2040.59, 1199.41], [2045.7, 1194.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2172.48, 1020.86], [2169.28, 1018.13], [2166.33, 1021.59], [2169.53, 1024.33], [2172.48, 1020.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1298.34, 612.96], [1304.17, 618.17], [1316.77, 604.14], [1310.7, 598.73], [1309.09, 600.53], [1309.31, 600.73], [1298.34, 612.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1988.73, 849.34], [1981.41, 842.39], [1976.45, 847.58], [1983.77, 854.53], [1988.73, 849.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1694.99, 1027.51], [1689.41, 1022.4], [1686.35, 1025.72], [1686.1, 1025.5], [1680.51, 1031.57], [1686.35, 1036.9], [1694.99, 1027.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2014.55, 897.11], [2010.05, 893.12], [2006.96, 896.56], [2011.46, 900.56], [2014.55, 897.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2020.17, 752.56], [2024.48, 747.69], [2021.29, 744.87], [2016.98, 749.74], [2020.17, 752.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1767.05, 1013.78], [1754.02, 1028.01], [1758.79, 1032.34], [1760.11, 1030.9], [1760.41, 1031.16], [1764.18, 1027.04], [1763.29, 1026.23], [1771.23, 1017.57], [1767.05, 1013.78]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.075, "pop": 0, "jobs": 75}}, {"shape": {"outer": [[1829.12, 1015.58], [1817.06, 1028.92], [1824.67, 1035.75], [1836.74, 1022.4], [1829.12, 1015.58]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.118, "pop": 0, "jobs": 118}}, {"shape": {"outer": [[2127.83, 881.9], [2122.81, 877.6], [2121.64, 878.95], [2118.94, 876.63], [2112.99, 883.55], [2120.71, 890.18], [2127.83, 881.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1553.15, 898.12], [1551.64, 896.77], [1549.71, 898.91], [1546.78, 896.29], [1538.83, 905.17], [1543.28, 909.13], [1553.15, 898.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1571.96, 922.95], [1566.86, 918.82], [1561.64, 925.23], [1566.73, 929.35], [1571.96, 922.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1484.59, 409.82], [1481.86, 407.39], [1483.31, 405.79], [1478.96, 401.89], [1477.43, 403.59], [1474.41, 400.89], [1464.67, 411.65], [1474.75, 420.7], [1484.59, 409.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[1641.87, 990.65], [1645.45, 986.79], [1645.85, 987.15], [1646.98, 985.93], [1644.65, 983.8], [1645.38, 983.01], [1637.64, 975.9], [1632.21, 981.79], [1641.87, 990.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1903.49, 884.51], [1910.78, 876.51], [1898.64, 865.53], [1891.36, 873.54], [1903.49, 884.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2082.28, 839.25], [2075.78, 834.06], [2070.3, 840.92], [2073.87, 843.77], [2071.83, 846.32], [2074.76, 848.66], [2082.28, 839.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1643.53, 634.5], [1637.03, 628.83], [1636.57, 629.34], [1633.48, 626.65], [1624.88, 636.44], [1634.48, 644.8], [1643.53, 634.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1797.75, 731.93], [1800.7, 728.67], [1801.19, 729.12], [1807.36, 722.33], [1801.48, 717.03], [1800.94, 717.62], [1800.63, 717.33], [1797.83, 720.41], [1797.55, 720.17], [1794.16, 723.9], [1794.56, 724.25], [1791.63, 727.49], [1795.54, 731.0], [1796.07, 730.42], [1797.75, 731.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1974.31, 720.16], [1978.2, 715.78], [1970.97, 709.17], [1967.21, 713.52], [1974.31, 720.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1869.05, 835.48], [1863.97, 830.84], [1861.39, 833.65], [1860.67, 832.99], [1855.39, 838.74], [1855.75, 839.06], [1853.51, 841.5], [1854.75, 842.64], [1853.7, 843.79], [1855.94, 845.84], [1857.0, 844.68], [1859.34, 846.81], [1868.18, 837.17], [1867.81, 836.83], [1869.05, 835.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1822.56, 842.39], [1826.27, 838.28], [1821.89, 834.35], [1818.18, 838.44], [1822.56, 842.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2183.63, 795.87], [2187.52, 791.59], [2183.79, 788.2], [2178.67, 793.85], [2175.89, 791.33], [2172.32, 795.28], [2173.58, 796.42], [2169.08, 801.38], [2175.32, 807.03], [2184.63, 796.77], [2183.63, 795.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2267.71, 972.01], [2261.22, 966.83], [2257.61, 971.35], [2264.11, 976.53], [2267.71, 972.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1782.18, 832.94], [1784.12, 830.83], [1784.92, 831.57], [1787.38, 828.91], [1786.71, 828.29], [1788.31, 826.56], [1779.53, 818.51], [1779.31, 818.74], [1778.15, 817.67], [1776.65, 819.29], [1777.82, 820.36], [1773.53, 825.02], [1782.18, 832.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1588.94, 930.77], [1585.31, 927.38], [1583.95, 928.86], [1583.06, 928.03], [1575.55, 936.05], [1576.17, 936.63], [1574.81, 938.08], [1579.77, 942.7], [1588.59, 933.29], [1587.52, 932.29], [1588.94, 930.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1980.78, 1192.72], [1968.51, 1206.37], [1976.33, 1215.43], [1987.94, 1205.52], [1982.78, 1199.31], [1984.79, 1197.68], [1980.78, 1192.72]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.138, "pop": 0, "jobs": 138}}, {"shape": {"outer": [[1614.77, 781.9], [1609.85, 777.77], [1605.9, 782.43], [1610.82, 786.57], [1614.77, 781.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1855.23, 1108.27], [1848.64, 1101.94], [1841.3, 1109.95], [1842.51, 1110.99], [1841.56, 1112.06], [1847.89, 1118.07], [1854.86, 1110.67], [1853.96, 1109.58], [1855.23, 1108.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1663.48, 964.48], [1666.67, 960.98], [1666.58, 960.89], [1668.16, 959.16], [1658.9, 950.82], [1654.53, 955.62], [1655.44, 956.44], [1651.84, 960.39], [1658.61, 966.5], [1661.81, 962.97], [1663.48, 964.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1728.53, 879.76], [1721.56, 887.47], [1736.47, 900.85], [1740.15, 896.78], [1736.7, 893.69], [1739.99, 890.05], [1728.53, 879.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2240.87, 940.32], [2235.22, 935.24], [2229.73, 941.13], [2235.35, 946.53], [2240.87, 940.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2171.45, 862.87], [2180.07, 850.33], [2172.42, 845.08], [2163.07, 858.67], [2166.87, 861.27], [2167.61, 860.22], [2171.45, 862.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1712.98, 829.75], [1707.99, 835.17], [1720.19, 846.32], [1725.81, 840.2], [1715.81, 831.06], [1715.17, 831.75], [1712.98, 829.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2174.99, 1054.59], [2171.54, 1051.77], [2169.8, 1053.89], [2166.32, 1051.04], [2160.01, 1058.73], [2162.76, 1060.97], [2162.08, 1061.8], [2166.27, 1065.24], [2174.99, 1054.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1708.09, 639.98], [1702.37, 634.3], [1695.18, 641.49], [1700.9, 647.18], [1708.09, 639.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1865.54, 780.61], [1859.82, 775.27], [1858.33, 776.85], [1857.51, 776.09], [1853.58, 780.27], [1854.13, 780.79], [1850.32, 784.83], [1856.32, 790.42], [1865.54, 780.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1824.17, 687.53], [1827.76, 683.82], [1829.21, 685.21], [1830.62, 683.76], [1835.59, 688.54], [1841.81, 682.13], [1836.34, 676.86], [1836.76, 676.42], [1831.99, 671.83], [1820.34, 683.84], [1824.17, 687.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1923.12, 1060.97], [1919.68, 1058.1], [1915.19, 1063.47], [1918.62, 1066.34], [1923.12, 1060.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1900.76, 1099.08], [1898.74, 1097.16], [1899.82, 1096.08], [1897.6, 1093.97], [1896.56, 1095.05], [1896.25, 1094.75], [1893.56, 1097.5], [1892.31, 1097.91], [1891.17, 1099.09], [1890.79, 1100.37], [1888.57, 1102.71], [1888.84, 1104.01], [1889.99, 1105.11], [1891.3, 1105.36], [1890.04, 1106.69], [1891.79, 1108.34], [1900.76, 1099.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1871.64, 1058.48], [1866.23, 1053.29], [1862.75, 1056.91], [1861.86, 1056.06], [1859.03, 1059.0], [1860.0, 1059.94], [1856.41, 1063.69], [1861.73, 1068.8], [1871.64, 1058.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2201.86, 872.96], [2195.8, 867.21], [2188.63, 874.76], [2194.69, 880.51], [2201.86, 872.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1303.82, 674.24], [1299.6, 670.44], [1297.93, 672.3], [1297.21, 671.66], [1293.99, 675.23], [1296.62, 677.57], [1292.95, 681.63], [1298.66, 686.76], [1305.25, 679.48], [1301.84, 676.43], [1303.82, 674.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1973.21, 869.56], [1963.92, 861.81], [1957.94, 868.94], [1967.22, 876.68], [1973.21, 869.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2217.66, 819.24], [2219.32, 817.31], [2220.51, 818.33], [2224.23, 814.05], [2223.01, 812.98], [2224.5, 811.27], [2219.19, 806.66], [2212.3, 814.58], [2217.66, 819.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1402.34, 508.0], [1412.37, 495.67], [1407.76, 491.95], [1406.54, 493.45], [1403.78, 491.22], [1396.67, 499.94], [1396.88, 500.11], [1395.38, 501.96], [1396.65, 502.99], [1395.52, 504.38], [1397.54, 506.01], [1398.47, 504.87], [1402.34, 508.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1514.82, 673.65], [1516.27, 675.01], [1515.29, 676.06], [1519.49, 679.97], [1520.55, 678.82], [1521.52, 679.73], [1529.45, 671.25], [1528.72, 670.57], [1532.85, 666.14], [1528.61, 662.21], [1527.49, 663.41], [1526.76, 662.73], [1523.84, 665.87], [1522.9, 665.01], [1514.82, 673.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1504.93, 737.87], [1508.85, 733.54], [1509.39, 734.02], [1512.52, 730.55], [1512.08, 730.16], [1514.46, 727.52], [1510.01, 723.53], [1500.58, 733.96], [1504.93, 737.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1643.33, 1126.84], [1649.79, 1119.76], [1648.97, 1119.01], [1650.07, 1117.82], [1645.78, 1113.94], [1644.73, 1115.09], [1644.29, 1114.69], [1638.06, 1121.5], [1638.24, 1121.66], [1636.15, 1123.97], [1639.19, 1126.71], [1641.0, 1124.73], [1643.33, 1126.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1565.39, 886.72], [1558.25, 880.61], [1552.43, 887.4], [1559.57, 893.51], [1565.39, 886.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1785.18, 1125.8], [1776.99, 1118.43], [1771.89, 1124.04], [1782.32, 1133.45], [1784.73, 1130.79], [1782.49, 1128.77], [1785.18, 1125.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1417.75, 467.51], [1413.18, 463.16], [1408.78, 467.76], [1413.35, 472.11], [1417.75, 467.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1830.2, 802.95], [1824.81, 798.03], [1817.55, 805.94], [1822.94, 810.86], [1830.2, 802.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2091.05, 791.12], [2083.83, 785.14], [2078.91, 791.08], [2087.2, 797.95], [2089.66, 794.98], [2088.58, 794.1], [2091.05, 791.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1924.16, 923.1], [1915.8, 915.48], [1913.12, 918.41], [1911.66, 917.08], [1908.63, 920.39], [1918.45, 929.34], [1924.16, 923.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1879.44, 1093.46], [1887.59, 1084.71], [1885.89, 1083.1], [1888.11, 1080.67], [1885.45, 1078.21], [1882.98, 1080.87], [1882.32, 1080.24], [1874.39, 1088.77], [1879.44, 1093.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1743.13, 1034.84], [1738.07, 1040.35], [1743.63, 1045.41], [1748.69, 1039.9], [1743.13, 1034.84]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.036, "pop": 0, "jobs": 36}}, {"shape": {"outer": [[1903.22, 906.18], [1899.03, 910.86], [1904.03, 915.3], [1908.22, 910.63], [1903.22, 906.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1462.02, 662.16], [1459.51, 659.82], [1455.59, 663.98], [1458.1, 666.34], [1462.02, 662.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1947.25, 1095.3], [1941.87, 1090.71], [1938.71, 1094.43], [1944.09, 1099.01], [1947.25, 1095.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2134.39, 812.03], [2128.81, 806.72], [2119.34, 816.65], [2124.93, 821.98], [2134.39, 812.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1997.47, 1198.6], [1989.45, 1188.79], [1984.58, 1192.78], [1992.61, 1202.59], [1997.47, 1198.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1664.12, 1089.16], [1658.12, 1083.91], [1654.56, 1087.97], [1655.17, 1088.5], [1650.63, 1093.67], [1656.01, 1098.38], [1664.12, 1089.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1884.19, 798.38], [1885.51, 796.79], [1881.65, 793.59], [1878.1, 797.82], [1877.92, 797.67], [1872.96, 803.61], [1878.89, 808.55], [1886.07, 799.94], [1884.19, 798.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1943.11, 903.85], [1936.67, 898.04], [1929.1, 906.34], [1932.68, 909.57], [1933.98, 908.13], [1936.85, 910.72], [1943.11, 903.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1890.25, 1017.5], [1882.31, 1010.41], [1877.01, 1016.35], [1885.69, 1024.12], [1888.64, 1020.81], [1887.89, 1020.13], [1890.25, 1017.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2089.41, 1209.6], [2083.91, 1204.2], [2079.64, 1208.54], [2085.14, 1213.94], [2089.41, 1209.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2030.54, 1207.4], [2021.18, 1195.8], [2015.44, 1200.44], [2024.8, 1212.04], [2030.54, 1207.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1893.8, 1063.87], [1897.9, 1067.42], [1904.01, 1060.38], [1899.91, 1056.83], [1893.8, 1063.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1698.13, 717.79], [1694.94, 714.99], [1690.88, 719.61], [1694.07, 722.41], [1698.13, 717.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1805.49, 876.71], [1813.02, 868.37], [1808.92, 864.7], [1808.09, 865.62], [1805.8, 863.57], [1797.58, 872.67], [1803.48, 877.96], [1805.0, 876.27], [1805.49, 876.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1991.74, 690.14], [1996.69, 684.74], [1992.11, 680.55], [1994.04, 678.44], [1992.15, 676.71], [1990.9, 675.57], [1988.97, 677.67], [1988.67, 677.39], [1981.72, 684.96], [1982.47, 685.65], [1978.12, 690.39], [1982.76, 694.65], [1985.46, 691.7], [1991.36, 697.12], [1995.01, 693.13], [1993.08, 691.37], [1991.74, 690.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[1821.0, 843.28], [1816.11, 838.75], [1811.17, 844.03], [1816.06, 848.57], [1821.0, 843.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1349.81, 505.25], [1346.74, 502.47], [1345.94, 503.35], [1343.75, 501.37], [1336.35, 509.5], [1344.18, 516.58], [1351.2, 508.86], [1348.63, 506.54], [1349.81, 505.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2083.32, 799.1], [2075.85, 791.95], [2070.7, 797.3], [2078.96, 805.22], [2081.94, 802.1], [2081.17, 801.35], [2083.32, 799.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1309.06, 702.65], [1312.87, 698.33], [1310.41, 696.18], [1311.42, 695.04], [1304.79, 689.22], [1299.0, 695.78], [1305.61, 701.57], [1306.57, 700.48], [1309.06, 702.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1371.03, 543.24], [1374.91, 539.07], [1375.53, 539.64], [1379.2, 535.67], [1378.67, 535.18], [1381.74, 531.86], [1375.47, 526.1], [1364.85, 537.56], [1371.03, 543.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2183.13, 1021.09], [2178.32, 1016.84], [2174.38, 1021.32], [2179.2, 1025.56], [2183.13, 1021.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2226.18, 1027.82], [2223.16, 1025.13], [2212.43, 1037.16], [2218.98, 1043.0], [2228.26, 1032.61], [2224.73, 1029.47], [2226.18, 1027.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2271.01, 942.95], [2265.47, 937.73], [2257.54, 946.54], [2258.25, 947.07], [2256.27, 949.2], [2259.67, 952.33], [2261.41, 950.27], [2262.9, 951.71], [2271.01, 942.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1569.26, 905.86], [1575.4, 899.22], [1571.01, 895.2], [1564.87, 901.85], [1569.26, 905.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.034, "pop": 0, "jobs": 34}}, {"shape": {"outer": [[2107.62, 805.95], [2104.17, 802.52], [2099.65, 807.06], [2103.11, 810.5], [2107.62, 805.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1546.75, 681.36], [1540.74, 675.73], [1530.77, 686.27], [1532.48, 687.88], [1531.11, 689.33], [1533.66, 691.74], [1535.04, 690.27], [1536.78, 691.9], [1546.75, 681.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1836.08, 863.97], [1832.83, 861.1], [1828.97, 865.46], [1832.22, 868.31], [1836.08, 863.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1878.78, 1138.45], [1876.64, 1136.59], [1877.33, 1135.8], [1874.44, 1133.28], [1871.15, 1137.07], [1869.42, 1135.57], [1863.83, 1142.0], [1870.58, 1147.88], [1878.78, 1138.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1880.27, 1029.86], [1884.36, 1025.45], [1874.53, 1016.34], [1872.54, 1018.49], [1874.33, 1020.14], [1871.53, 1023.15], [1877.8, 1028.97], [1878.5, 1028.21], [1880.27, 1029.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1813.17, 613.82], [1824.85, 601.86], [1822.63, 599.69], [1824.14, 598.14], [1819.08, 593.2], [1804.65, 607.97], [1810.33, 613.52], [1811.57, 612.25], [1813.17, 613.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[1562.57, 692.98], [1556.15, 687.47], [1546.01, 699.17], [1552.42, 704.69], [1562.57, 692.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1817.96, 811.05], [1814.72, 808.04], [1809.93, 813.18], [1813.17, 816.18], [1817.96, 811.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1676.05, 968.84], [1680.12, 964.41], [1675.85, 960.5], [1671.77, 964.94], [1676.05, 968.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1750.9, 652.39], [1747.69, 649.47], [1743.18, 654.38], [1746.39, 657.3], [1750.9, 652.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1694.2, 632.57], [1685.68, 625.74], [1683.89, 627.96], [1681.92, 626.38], [1677.72, 631.59], [1688.2, 640.0], [1694.2, 632.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1848.33, 1053.09], [1860.61, 1039.5], [1853.52, 1033.17], [1841.26, 1046.65], [1848.33, 1053.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2102.93, 859.77], [2098.74, 856.19], [2089.83, 866.62], [2095.54, 871.49], [2103.12, 862.63], [2101.59, 861.33], [2102.93, 859.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1883.59, 789.94], [1877.51, 784.82], [1873.13, 789.98], [1871.86, 788.91], [1869.51, 791.69], [1870.22, 792.29], [1865.29, 798.09], [1871.93, 803.69], [1883.59, 789.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1987.46, 1086.79], [1989.52, 1084.77], [1986.43, 1081.6], [1984.42, 1083.56], [1983.2, 1082.32], [1980.13, 1085.3], [1979.03, 1084.18], [1976.32, 1086.83], [1977.16, 1087.69], [1974.31, 1090.48], [1980.19, 1096.5], [1988.77, 1088.13], [1987.46, 1086.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2054.1, 900.22], [2049.59, 896.3], [2045.34, 901.17], [2049.86, 905.09], [2054.1, 900.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2164.52, 796.59], [2173.23, 785.95], [2176.08, 788.27], [2180.76, 782.54], [2185.32, 786.27], [2190.95, 779.39], [2186.78, 775.98], [2184.46, 778.82], [2180.95, 775.95], [2174.39, 783.96], [2169.4, 779.88], [2165.78, 784.29], [2164.2, 783.0], [2162.0, 785.69], [2162.92, 786.43], [2158.59, 791.73], [2164.52, 796.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[1662.1, 1014.42], [1667.84, 1007.64], [1667.36, 1007.24], [1670.47, 1003.56], [1666.69, 1000.39], [1663.82, 1003.77], [1663.72, 1003.69], [1657.74, 1010.76], [1662.1, 1014.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1694.84, 1084.31], [1693.15, 1082.8], [1692.59, 1083.42], [1688.98, 1080.21], [1681.43, 1088.59], [1686.73, 1093.32], [1694.84, 1084.31]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2119.3, 799.19], [2113.64, 794.25], [2109.05, 799.5], [2114.72, 804.45], [2119.3, 799.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1721.32, 802.64], [1726.66, 796.41], [1727.15, 796.87], [1731.15, 792.38], [1729.26, 790.67], [1730.61, 789.06], [1727.12, 786.06], [1723.62, 790.01], [1722.59, 789.17], [1715.38, 797.34], [1721.32, 802.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1958.86, 1184.34], [1961.54, 1181.72], [1961.94, 1182.12], [1965.34, 1178.78], [1958.45, 1171.81], [1955.39, 1174.81], [1956.69, 1176.13], [1951.98, 1180.76], [1954.86, 1183.68], [1956.55, 1182.02], [1958.86, 1184.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2088.33, 925.45], [2090.15, 923.42], [2091.54, 924.67], [2100.55, 914.65], [2093.66, 908.46], [2084.6, 918.54], [2086.8, 920.52], [2085.03, 922.49], [2088.33, 925.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1978.78, 1268.55], [1983.98, 1263.65], [1977.63, 1256.97], [1966.93, 1267.06], [1969.44, 1269.69], [1972.02, 1267.25], [1973.91, 1269.23], [1971.9, 1271.13], [1974.25, 1273.6], [1979.17, 1268.96], [1978.78, 1268.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1749.76, 968.25], [1756.35, 974.09], [1767.29, 961.85], [1760.71, 956.01], [1749.76, 968.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2115.76, 840.54], [2109.35, 835.16], [2106.08, 839.07], [2112.49, 844.43], [2115.76, 840.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1806.62, 917.58], [1800.4, 911.91], [1790.3, 922.93], [1796.52, 928.59], [1799.02, 925.87], [1799.65, 926.45], [1802.96, 922.84], [1802.32, 922.26], [1806.62, 917.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1650.43, 1044.03], [1644.84, 1038.96], [1635.52, 1049.17], [1639.35, 1052.64], [1641.95, 1049.81], [1643.71, 1051.41], [1650.43, 1044.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2084.71, 1215.3], [2079.8, 1210.98], [2077.62, 1213.47], [2082.52, 1217.79], [2084.71, 1215.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1858.7, 754.85], [1864.54, 748.44], [1852.95, 737.96], [1851.86, 739.15], [1847.87, 743.53], [1847.11, 744.37], [1858.7, 754.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1551.3, 734.3], [1542.79, 726.69], [1538.19, 731.8], [1546.7, 739.4], [1551.3, 734.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2245.51, 989.98], [2239.3, 984.57], [2234.46, 990.1], [2235.65, 991.15], [2231.85, 995.52], [2236.86, 999.89], [2245.51, 989.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2134.83, 887.49], [2128.58, 881.96], [2119.22, 892.53], [2125.47, 898.06], [2134.83, 887.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1921.38, 1043.29], [1917.44, 1039.44], [1913.28, 1043.7], [1917.22, 1047.55], [1921.38, 1043.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1404.37, 451.05], [1409.58, 455.7], [1414.07, 450.69], [1408.86, 446.05], [1404.37, 451.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1858.77, 967.16], [1853.32, 962.1], [1846.39, 969.51], [1851.84, 974.57], [1858.77, 967.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1822.14, 735.42], [1814.56, 728.71], [1813.34, 730.08], [1811.67, 728.6], [1808.7, 731.92], [1810.5, 733.5], [1809.2, 734.96], [1816.67, 741.57], [1822.14, 735.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2119.72, 931.6], [2113.71, 925.98], [2110.48, 929.44], [2108.83, 927.89], [2105.51, 931.43], [2107.03, 932.84], [2103.4, 936.73], [2109.55, 942.48], [2119.72, 931.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1927.6, 829.68], [1921.98, 824.81], [1910.54, 837.92], [1917.08, 843.58], [1923.08, 836.71], [1922.16, 835.92], [1927.6, 829.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1914.77, 1090.89], [1919.77, 1085.57], [1919.0, 1084.86], [1920.25, 1083.52], [1917.99, 1081.42], [1916.73, 1082.75], [1915.27, 1081.38], [1916.5, 1080.07], [1914.27, 1077.98], [1913.03, 1079.3], [1912.16, 1078.49], [1907.18, 1083.8], [1914.77, 1090.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1942.78, 845.13], [1930.31, 858.66], [1937.29, 865.05], [1949.77, 851.52], [1942.78, 845.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2162.84, 1014.97], [2168.66, 1011.02], [2169.72, 1012.57], [2173.02, 1010.34], [2171.14, 1007.58], [2172.17, 1006.87], [2170.25, 1004.03], [2172.1, 1002.78], [2168.9, 998.08], [2159.04, 1004.77], [2159.78, 1005.87], [2157.65, 1007.32], [2162.84, 1014.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1552.01, 925.04], [1563.93, 911.92], [1564.42, 912.36], [1569.25, 907.04], [1564.41, 902.68], [1547.66, 921.13], [1552.01, 925.04]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.096, "pop": 0, "jobs": 96}}, {"shape": {"outer": [[1925.15, 1118.88], [1919.39, 1113.49], [1914.92, 1118.26], [1914.12, 1117.51], [1911.64, 1120.16], [1912.39, 1120.86], [1909.08, 1124.41], [1914.9, 1129.85], [1925.15, 1118.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1736.26, 756.76], [1732.58, 753.49], [1727.76, 758.93], [1731.44, 762.2], [1736.26, 756.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2185.88, 917.5], [2180.88, 913.36], [2177.34, 917.64], [2182.33, 921.78], [2185.88, 917.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1867.42, 971.03], [1861.54, 965.59], [1860.15, 967.09], [1859.86, 966.82], [1852.17, 975.07], [1857.33, 979.84], [1858.62, 978.46], [1860.36, 980.06], [1866.87, 973.08], [1866.15, 972.4], [1867.42, 971.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2128.14, 939.65], [2121.19, 933.72], [2111.94, 944.58], [2118.89, 950.49], [2128.14, 939.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1913.59, 631.11], [1908.45, 626.37], [1902.97, 632.33], [1908.11, 637.06], [1913.59, 631.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1548.57, 548.24], [1541.87, 542.06], [1534.53, 549.96], [1536.01, 551.32], [1531.83, 555.82], [1536.54, 560.17], [1540.67, 555.73], [1541.18, 556.21], [1548.57, 548.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1799.2, 641.77], [1793.31, 636.52], [1785.18, 645.57], [1791.07, 650.83], [1799.2, 641.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2063.92, 879.62], [2060.57, 876.57], [2060.04, 877.14], [2056.15, 873.59], [2049.26, 881.15], [2049.61, 881.46], [2046.77, 884.57], [2053.67, 890.85], [2063.92, 879.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1917.22, 929.27], [1907.9, 921.13], [1906.4, 922.83], [1905.33, 921.89], [1902.97, 924.57], [1904.14, 925.59], [1902.11, 927.92], [1911.33, 935.97], [1917.22, 929.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2115.38, 817.18], [2117.71, 814.36], [2118.84, 815.3], [2126.76, 805.69], [2120.8, 800.77], [2115.71, 806.95], [2116.02, 807.2], [2113.19, 810.65], [2114.41, 811.66], [2112.1, 814.47], [2115.38, 817.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1859.17, 573.4], [1851.94, 566.97], [1846.5, 573.09], [1846.77, 573.34], [1844.96, 575.38], [1856.47, 585.61], [1860.95, 580.58], [1856.4, 576.53], [1859.17, 573.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1704.22, 1029.79], [1699.38, 1025.28], [1691.3, 1033.9], [1691.53, 1034.1], [1690.69, 1035.0], [1695.13, 1039.12], [1695.96, 1038.22], [1696.16, 1038.41], [1704.22, 1029.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1657.85, 705.94], [1662.34, 701.11], [1649.62, 689.8], [1645.37, 694.49], [1657.85, 705.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1712.71, 1037.41], [1707.58, 1032.8], [1698.31, 1043.08], [1703.77, 1047.98], [1710.13, 1040.93], [1709.8, 1040.63], [1712.71, 1037.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1905.61, 1033.52], [1900.4, 1028.47], [1895.62, 1033.4], [1900.83, 1038.44], [1905.61, 1033.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1885.39, 1075.14], [1882.35, 1072.07], [1880.98, 1073.42], [1878.03, 1070.44], [1875.3, 1073.15], [1874.84, 1072.7], [1872.13, 1075.38], [1873.29, 1076.55], [1869.29, 1080.52], [1874.58, 1085.86], [1885.39, 1075.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1609.01, 1004.2], [1600.21, 1013.75], [1614.66, 1026.98], [1623.47, 1017.44], [1609.01, 1004.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[2306.77, 924.29], [2302.31, 919.47], [2294.4, 926.78], [2300.31, 933.17], [2303.97, 929.78], [2302.52, 928.22], [2306.77, 924.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1896.29, 596.33], [1888.56, 588.95], [1882.62, 595.18], [1885.08, 597.52], [1882.0, 600.76], [1887.27, 605.79], [1896.29, 596.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1537.36, 537.59], [1536.91, 537.16], [1537.81, 536.18], [1530.86, 529.87], [1529.38, 531.49], [1529.04, 531.17], [1527.06, 533.34], [1526.88, 533.18], [1521.46, 539.11], [1524.28, 541.68], [1521.84, 544.34], [1526.94, 548.97], [1537.36, 537.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1966.64, 713.08], [1970.58, 708.68], [1965.94, 704.44], [1962.05, 708.88], [1966.64, 713.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2087.95, 1204.53], [2089.44, 1202.72], [2086.87, 1200.4], [2085.36, 1202.18], [2087.95, 1204.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[1956.95, 1160.22], [1952.54, 1155.29], [1951.19, 1156.49], [1949.91, 1155.07], [1946.19, 1158.4], [1945.66, 1157.81], [1941.63, 1161.42], [1943.61, 1163.63], [1940.62, 1166.31], [1941.64, 1167.44], [1940.56, 1168.41], [1943.8, 1172.02], [1956.95, 1160.22]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1702.87, 762.81], [1698.67, 759.22], [1697.15, 760.98], [1695.72, 759.76], [1686.74, 770.26], [1692.39, 775.08], [1702.87, 762.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1841.3, 1162.44], [1825.46, 1147.61], [1831.88, 1140.79], [1833.05, 1141.87], [1836.43, 1138.29], [1827.16, 1129.59], [1819.22, 1138.01], [1822.23, 1140.83], [1820.37, 1142.79], [1819.59, 1142.06], [1811.83, 1150.28], [1832.47, 1169.62], [1834.37, 1167.59], [1835.48, 1168.62], [1841.3, 1162.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.39, "pop": 195, "jobs": 0}}, {"shape": {"outer": [[2153.89, 958.87], [2150.25, 955.19], [2138.67, 966.67], [2144.83, 972.88], [2154.32, 963.5], [2151.79, 960.95], [2153.89, 958.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1380.68, 552.78], [1392.3, 539.58], [1386.14, 534.2], [1382.42, 538.44], [1381.85, 537.95], [1373.97, 546.92], [1380.68, 552.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1950.75, 643.86], [1942.93, 636.26], [1936.66, 642.72], [1940.3, 646.26], [1937.63, 648.99], [1941.81, 653.05], [1950.75, 643.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2152.46, 1032.12], [2156.01, 1028.26], [2148.08, 1020.93], [2143.88, 1025.48], [2149.08, 1030.29], [2149.73, 1029.6], [2152.46, 1032.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1925.76, 803.26], [1919.07, 797.13], [1914.94, 801.62], [1921.62, 807.74], [1925.76, 803.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1570.68, 699.99], [1564.97, 694.94], [1561.5, 698.83], [1561.15, 698.53], [1557.6, 702.52], [1557.95, 702.82], [1555.83, 705.2], [1561.55, 710.26], [1570.68, 699.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1957.8, 842.16], [1962.26, 837.75], [1956.47, 831.96], [1952.03, 836.36], [1957.8, 842.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1672.62, 661.33], [1666.65, 655.97], [1657.73, 665.89], [1663.7, 671.24], [1672.62, 661.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2004.47, 894.57], [1994.75, 885.92], [1992.11, 888.87], [1990.99, 887.88], [1987.58, 891.69], [1998.42, 901.33], [2004.47, 894.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2101.46, 704.92], [2107.3, 698.23], [2102.55, 694.11], [2101.86, 694.89], [2099.66, 692.84], [2094.47, 698.81], [2101.46, 704.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1885.88, 1195.4], [1889.04, 1191.83], [1891.36, 1193.88], [1896.22, 1188.38], [1889.89, 1182.77], [1881.86, 1191.84], [1885.88, 1195.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1688.37, 748.46], [1682.88, 743.54], [1670.34, 757.51], [1675.83, 762.44], [1688.37, 748.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2200.42, 1073.94], [2195.99, 1069.89], [2191.49, 1074.79], [2195.92, 1078.86], [2200.42, 1073.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1577.01, 707.6], [1571.01, 702.14], [1562.22, 711.77], [1568.21, 717.21], [1577.01, 707.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1631.73, 1037.32], [1636.99, 1031.67], [1630.72, 1025.87], [1623.64, 1033.47], [1627.78, 1037.3], [1629.6, 1035.35], [1631.73, 1037.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1269.75, 499.37], [1260.87, 490.93], [1257.39, 494.56], [1258.41, 495.54], [1256.18, 497.88], [1256.8, 498.48], [1254.21, 501.2], [1253.46, 500.48], [1252.13, 501.88], [1251.27, 501.06], [1248.58, 503.87], [1249.53, 504.77], [1246.85, 507.58], [1251.07, 511.59], [1251.94, 510.68], [1256.35, 514.88], [1261.05, 509.98], [1259.92, 508.9], [1261.15, 507.61], [1260.08, 506.59], [1261.46, 505.15], [1262.67, 506.3], [1264.46, 504.43], [1265.67, 505.58], [1269.61, 501.46], [1268.63, 500.53], [1269.75, 499.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2269.08, 997.64], [2273.34, 992.93], [2260.41, 980.57], [2255.54, 985.82], [2269.08, 997.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1746.69, 725.12], [1743.45, 722.32], [1731.97, 735.64], [1737.26, 740.2], [1747.39, 728.46], [1745.35, 726.69], [1746.69, 725.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1536.42, 746.09], [1533.02, 742.89], [1529.79, 746.31], [1533.19, 749.5], [1536.42, 746.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1895.47, 864.72], [1889.83, 859.55], [1881.62, 868.47], [1883.65, 870.32], [1881.04, 873.15], [1884.66, 876.46], [1895.47, 864.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1727.54, 808.41], [1729.35, 806.55], [1730.79, 807.94], [1738.36, 800.14], [1733.93, 795.85], [1724.55, 805.5], [1727.54, 808.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1894.96, 996.86], [1890.59, 992.63], [1882.97, 1000.49], [1887.35, 1004.72], [1894.96, 996.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2131.85, 741.81], [2133.74, 739.58], [2135.17, 740.79], [2142.22, 732.49], [2137.67, 728.63], [2133.51, 733.53], [2130.32, 730.82], [2125.55, 736.45], [2131.85, 741.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1763.25, 875.26], [1755.1, 867.67], [1747.59, 875.69], [1746.13, 874.33], [1743.32, 877.33], [1744.78, 878.68], [1743.66, 879.86], [1751.81, 887.46], [1763.25, 875.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[1466.56, 476.41], [1463.28, 480.01], [1462.92, 479.69], [1459.58, 483.37], [1459.93, 483.69], [1454.55, 489.59], [1457.29, 492.06], [1456.57, 492.85], [1460.46, 496.37], [1473.18, 482.4], [1466.56, 476.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[1335.52, 490.59], [1330.09, 485.8], [1329.03, 487.01], [1323.03, 481.74], [1318.68, 486.64], [1324.45, 491.71], [1323.25, 493.06], [1328.92, 498.04], [1335.52, 490.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2152.96, 744.16], [2148.36, 739.63], [2143.67, 744.38], [2152.72, 753.3], [2156.52, 749.43], [2152.07, 745.06], [2152.96, 744.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2016.66, 749.38], [2020.93, 744.64], [2017.88, 741.89], [2013.61, 746.63], [2016.66, 749.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1648.81, 1073.99], [1642.62, 1068.59], [1640.73, 1070.72], [1639.16, 1069.35], [1633.54, 1075.75], [1635.11, 1077.11], [1633.0, 1079.52], [1639.2, 1084.94], [1648.81, 1073.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2019.3, 760.83], [2023.45, 756.29], [2018.55, 751.83], [2014.53, 756.28], [2019.3, 760.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1896.98, 922.71], [1893.07, 919.27], [1888.64, 924.26], [1892.55, 927.7], [1896.98, 922.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2201.76, 1062.44], [2206.67, 1066.94], [2211.24, 1062.03], [2206.3, 1057.61], [2201.76, 1062.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1772.99, 787.69], [1764.59, 780.19], [1758.37, 787.14], [1766.78, 794.64], [1772.99, 787.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1536.16, 449.76], [1531.91, 445.86], [1532.42, 445.3], [1523.77, 437.37], [1517.77, 443.88], [1530.68, 455.7], [1536.16, 449.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1665.01, 1104.1], [1672.65, 1095.93], [1666.38, 1090.1], [1658.74, 1098.28], [1665.01, 1104.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1852.93, 959.73], [1847.73, 954.82], [1843.81, 958.95], [1842.86, 958.04], [1839.29, 961.8], [1840.28, 962.74], [1838.02, 965.11], [1843.18, 969.99], [1852.93, 959.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2015.72, 1107.22], [2010.57, 1102.07], [2003.66, 1108.99], [2008.81, 1114.14], [2015.72, 1107.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2010.47, 761.45], [2003.74, 755.36], [2000.91, 758.45], [1999.94, 758.38], [1997.33, 761.19], [1997.43, 762.38], [1996.34, 763.61], [1994.87, 763.71], [1993.68, 765.13], [1993.69, 766.79], [1994.68, 767.79], [1996.22, 768.19], [2000.8, 772.48], [2004.12, 768.69], [2004.67, 769.21], [2008.59, 764.64], [2008.12, 764.14], [2010.47, 761.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2133.84, 866.12], [2127.69, 860.6], [2123.28, 865.51], [2129.43, 871.03], [2133.84, 866.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1325.32, 640.32], [1326.41, 639.05], [1326.69, 639.28], [1332.59, 632.42], [1332.98, 632.76], [1338.02, 626.9], [1336.75, 625.81], [1337.14, 625.37], [1335.49, 623.97], [1336.56, 622.74], [1333.81, 620.4], [1332.76, 621.63], [1332.48, 621.4], [1322.85, 632.59], [1323.33, 632.98], [1320.54, 636.23], [1325.32, 640.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1465.08, 505.94], [1458.75, 512.69], [1469.74, 522.92], [1470.52, 522.1], [1471.46, 521.09], [1475.29, 517.0], [1472.26, 514.17], [1473.04, 513.34], [1465.08, 505.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2082.09, 812.43], [2083.21, 811.16], [2072.14, 800.76], [2066.72, 806.98], [2070.08, 810.15], [2069.47, 810.82], [2077.22, 817.47], [2078.86, 815.57], [2080.47, 816.95], [2083.31, 813.63], [2082.09, 812.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2073.01, 1225.91], [2068.43, 1220.67], [2063.52, 1224.93], [2068.1, 1230.17], [2073.01, 1225.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1772.73, 1041.65], [1773.44, 1040.91], [1775.41, 1042.79], [1785.58, 1032.08], [1780.51, 1027.29], [1776.33, 1031.68], [1775.64, 1031.02], [1772.12, 1034.72], [1772.79, 1035.36], [1769.6, 1038.7], [1772.73, 1041.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.072, "pop": 0, "jobs": 72}}, {"shape": {"outer": [[1970.08, 1246.4], [1966.39, 1241.85], [1955.1, 1251.28], [1958.67, 1255.67], [1970.08, 1246.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1724.5, 621.48], [1719.19, 616.44], [1715.54, 620.26], [1718.0, 622.59], [1716.28, 624.39], [1719.14, 627.1], [1724.5, 621.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1633.26, 623.04], [1626.19, 616.46], [1624.59, 618.17], [1624.44, 618.02], [1615.94, 627.1], [1616.19, 627.32], [1615.26, 628.32], [1617.54, 630.43], [1618.62, 629.27], [1623.33, 633.65], [1633.26, 623.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1645.28, 1037.44], [1639.79, 1032.33], [1631.76, 1040.9], [1637.24, 1046.0], [1645.28, 1037.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1383.6, 492.67], [1394.99, 480.47], [1393.45, 479.05], [1394.95, 477.43], [1391.37, 474.11], [1390.18, 475.38], [1389.99, 475.21], [1389.62, 475.6], [1389.11, 475.12], [1376.75, 488.38], [1380.79, 492.12], [1381.81, 491.02], [1382.33, 491.51], [1383.1, 492.21], [1383.6, 492.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1870.41, 861.76], [1876.07, 855.76], [1873.33, 853.19], [1876.9, 849.41], [1874.82, 847.46], [1876.19, 846.02], [1873.66, 843.66], [1872.26, 845.16], [1870.49, 843.49], [1868.22, 845.9], [1866.14, 843.96], [1860.93, 849.48], [1863.39, 851.78], [1860.59, 854.74], [1864.88, 858.76], [1865.97, 857.6], [1870.41, 861.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[1658.03, 967.44], [1654.28, 963.86], [1653.42, 964.75], [1649.33, 960.88], [1644.68, 965.76], [1648.72, 969.58], [1648.2, 970.13], [1652.2, 973.91], [1652.72, 973.37], [1656.76, 977.2], [1660.69, 973.07], [1656.47, 969.08], [1658.03, 967.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1873.81, 612.6], [1879.54, 606.39], [1866.81, 594.53], [1862.82, 599.01], [1861.68, 600.29], [1861.1, 600.95], [1870.77, 609.85], [1870.21, 610.44], [1871.24, 611.39], [1872.01, 612.1], [1872.61, 611.48], [1873.81, 612.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1598.08, 953.41], [1594.25, 949.79], [1589.73, 954.55], [1592.13, 956.82], [1593.55, 958.16], [1598.08, 953.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1823.13, 868.31], [1819.58, 865.19], [1817.91, 867.07], [1816.09, 865.46], [1804.21, 878.86], [1806.71, 881.06], [1806.57, 881.22], [1810.89, 885.02], [1822.99, 871.37], [1821.55, 870.1], [1823.13, 868.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[1957.38, 856.49], [1951.99, 851.68], [1938.31, 866.89], [1944.81, 872.7], [1953.29, 863.27], [1952.18, 862.28], [1957.38, 856.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2092.37, 935.81], [2087.27, 931.22], [2082.68, 936.32], [2087.78, 940.92], [2092.37, 935.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1830.53, 616.78], [1822.3, 608.52], [1815.88, 614.92], [1824.79, 623.87], [1827.86, 620.8], [1827.18, 620.12], [1830.53, 616.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2070.91, 834.54], [2067.64, 831.68], [2063.75, 836.11], [2067.03, 838.97], [2070.91, 834.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1727.76, 1050.59], [1722.77, 1046.11], [1713.21, 1056.69], [1718.19, 1061.17], [1727.76, 1050.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1450.5, 290.49], [1456.62, 283.8], [1452.86, 280.25], [1446.62, 287.11], [1450.5, 290.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2099.0, 851.69], [2096.23, 849.25], [2097.2, 848.14], [2093.76, 845.1], [2089.34, 850.11], [2087.39, 848.37], [2085.1, 850.95], [2086.73, 852.39], [2083.17, 856.4], [2086.22, 859.11], [2084.66, 860.89], [2088.14, 863.97], [2099.0, 851.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1830.66, 700.66], [1824.86, 706.94], [1831.53, 713.06], [1829.27, 715.5], [1833.91, 719.76], [1838.6, 714.7], [1840.08, 716.06], [1840.5, 715.6], [1841.36, 714.67], [1843.54, 712.3], [1839.02, 708.15], [1840.12, 706.96], [1835.77, 702.97], [1834.58, 704.26], [1830.66, 700.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1717.07, 703.16], [1710.91, 697.33], [1703.48, 705.19], [1709.64, 711.02], [1717.07, 703.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1712.48, 612.63], [1701.87, 602.47], [1697.25, 607.26], [1699.47, 609.38], [1696.89, 612.06], [1706.41, 621.17], [1711.59, 615.8], [1710.46, 614.72], [1712.48, 612.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2194.31, 1070.8], [2188.21, 1065.38], [2178.5, 1076.33], [2184.6, 1081.75], [2194.31, 1070.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1719.9, 847.23], [1711.37, 839.53], [1706.92, 844.43], [1707.97, 845.39], [1706.48, 847.03], [1713.95, 853.78], [1719.9, 847.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1878.21, 638.79], [1874.11, 634.07], [1869.49, 638.08], [1873.58, 642.8], [1878.21, 638.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2003.79, 1167.31], [2019.08, 1181.03], [2025.58, 1173.68], [2011.77, 1160.71], [2011.17, 1161.38], [2010.11, 1160.38], [2003.79, 1167.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2052.35, 925.26], [2048.19, 921.36], [2043.42, 926.48], [2047.58, 930.36], [2052.35, 925.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2143.39, 817.84], [2138.83, 813.99], [2138.02, 814.95], [2135.63, 812.93], [2127.98, 821.96], [2134.92, 827.83], [2143.39, 817.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2116.99, 871.55], [2112.77, 867.94], [2105.07, 876.95], [2111.67, 882.59], [2118.06, 875.11], [2115.68, 873.07], [2116.99, 871.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1796.52, 869.71], [1798.44, 867.58], [1798.89, 867.99], [1807.84, 858.11], [1805.55, 856.05], [1808.33, 852.98], [1805.14, 850.11], [1802.0, 853.58], [1800.58, 852.31], [1792.19, 861.57], [1792.84, 862.15], [1790.72, 864.49], [1796.52, 869.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[1742.57, 1064.08], [1737.19, 1059.13], [1728.47, 1068.54], [1733.84, 1073.49], [1742.57, 1064.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1747.27, 1089.49], [1743.7, 1086.28], [1737.87, 1092.72], [1741.44, 1095.94], [1747.27, 1089.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1771.19, 848.94], [1774.27, 845.53], [1773.03, 844.42], [1774.88, 842.35], [1765.56, 834.01], [1759.66, 840.57], [1768.89, 848.82], [1769.86, 847.75], [1771.19, 848.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2171.5, 1032.62], [2166.72, 1028.94], [2165.43, 1030.61], [2160.63, 1026.92], [2158.1, 1030.21], [2167.69, 1037.58], [2171.5, 1032.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2026.83, 708.61], [2022.91, 705.22], [2022.45, 705.74], [2021.54, 704.96], [2018.42, 708.56], [2016.82, 707.17], [2012.96, 711.62], [2014.76, 713.18], [2011.57, 716.88], [2018.26, 722.67], [2028.22, 711.15], [2026.17, 709.37], [2026.83, 708.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1836.48, 808.56], [1831.56, 804.19], [1825.64, 810.79], [1825.81, 810.95], [1821.11, 816.2], [1825.41, 820.03], [1830.12, 814.78], [1830.56, 815.16], [1836.48, 808.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1941.78, 815.85], [1945.78, 811.43], [1938.77, 805.14], [1934.78, 809.54], [1941.78, 815.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1734.46, 1056.78], [1728.99, 1051.92], [1719.7, 1062.28], [1725.16, 1067.14], [1734.46, 1056.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1894.33, 942.76], [1887.77, 936.87], [1880.94, 944.42], [1887.5, 950.3], [1894.33, 942.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1392.72, 440.68], [1388.41, 436.91], [1382.0, 444.17], [1386.31, 447.94], [1392.72, 440.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1881.53, 663.86], [1875.18, 657.49], [1868.63, 664.04], [1874.97, 670.4], [1881.53, 663.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1281.72, 488.19], [1286.31, 492.6], [1290.42, 488.36], [1285.83, 483.95], [1281.72, 488.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1734.77, 983.01], [1726.95, 991.64], [1730.52, 994.85], [1738.33, 986.22], [1734.77, 983.01]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.036, "pop": 0, "jobs": 36}}, {"shape": {"outer": [[1841.74, 1008.49], [1844.56, 1005.42], [1845.96, 1006.7], [1848.53, 1003.92], [1838.91, 995.13], [1833.9, 1000.57], [1837.11, 1003.5], [1836.73, 1003.91], [1841.74, 1008.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2199.23, 914.29], [2192.47, 908.3], [2185.56, 916.11], [2192.32, 922.09], [2194.2, 923.76], [2200.09, 917.11], [2198.21, 915.44], [2199.23, 914.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1725.94, 711.7], [1718.56, 704.63], [1710.98, 712.52], [1718.36, 719.61], [1725.94, 711.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2061.33, 1148.97], [2056.39, 1144.22], [2049.75, 1151.13], [2054.69, 1155.88], [2061.33, 1148.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2146.24, 954.98], [2140.35, 950.0], [2133.83, 957.74], [2139.72, 962.71], [2146.24, 954.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1768.03, 551.59], [1759.7, 543.12], [1753.38, 549.34], [1755.34, 551.31], [1752.11, 554.5], [1755.05, 557.48], [1754.57, 557.95], [1758.01, 561.45], [1768.03, 551.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1707.7, 1099.85], [1702.59, 1095.22], [1696.31, 1102.08], [1698.21, 1103.8], [1697.1, 1105.02], [1700.3, 1107.93], [1707.7, 1099.85]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2775.03, 1701.42], [2770.59, 1700.39], [2769.16, 1706.53], [2773.62, 1707.57], [2775.03, 1701.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2592.16, 1335.03], [2589.23, 1331.3], [2585.14, 1334.61], [2587.98, 1338.31], [2592.16, 1335.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2532.11, 1993.63], [2530.01, 1989.96], [2524.27, 1993.23], [2526.36, 1996.91], [2532.11, 1993.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2392.53, 1123.69], [2386.05, 1117.63], [2379.72, 1124.41], [2386.2, 1130.46], [2392.53, 1123.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2744.06, 1639.62], [2744.7, 1636.7], [2739.79, 1635.63], [2739.18, 1638.45], [2736.96, 1637.97], [2733.84, 1652.34], [2743.44, 1654.43], [2746.54, 1640.16], [2744.06, 1639.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2407.52, 1383.53], [2404.4, 1381.34], [2395.32, 1394.26], [2402.42, 1399.25], [2410.29, 1388.04], [2406.32, 1385.25], [2407.52, 1383.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2727.21, 1727.43], [2718.15, 1725.46], [2716.16, 1734.65], [2725.22, 1736.62], [2727.21, 1727.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2466.34, 1303.57], [2459.34, 1295.28], [2455.4, 1298.61], [2462.4, 1306.91], [2466.34, 1303.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2234.88, 1243.23], [2232.34, 1240.86], [2228.19, 1245.3], [2230.72, 1247.67], [2234.88, 1243.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2651.17, 1363.57], [2645.75, 1356.62], [2633.76, 1365.96], [2639.19, 1372.91], [2651.17, 1363.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2774.79, 1687.09], [2766.16, 1685.26], [2763.9, 1695.88], [2772.53, 1697.72], [2774.79, 1687.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2369.32, 1076.23], [2364.17, 1071.65], [2360.73, 1075.52], [2365.89, 1080.09], [2369.32, 1076.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2948.33, 1530.59], [2935.78, 1528.14], [2933.97, 1537.4], [2952.7, 1541.06], [2954.3, 1532.84], [2948.12, 1531.64], [2948.33, 1530.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2791.32, 1563.88], [2791.59, 1551.29], [2786.11, 1551.18], [2786.07, 1553.19], [2782.89, 1553.13], [2782.67, 1563.71], [2791.32, 1563.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2391.37, 1552.81], [2388.04, 1550.58], [2384.6, 1555.72], [2387.93, 1557.95], [2391.37, 1552.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2695.35, 1680.61], [2698.48, 1665.87], [2689.8, 1663.91], [2686.94, 1678.7], [2695.35, 1680.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2531.66, 1389.57], [2532.61, 1388.8], [2533.17, 1389.48], [2535.7, 1387.41], [2532.45, 1383.42], [2529.93, 1385.48], [2531.7, 1387.65], [2530.74, 1388.44], [2531.66, 1389.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2667.51, 1567.84], [2662.1, 1567.78], [2662.02, 1574.5], [2667.43, 1574.56], [2667.51, 1567.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2716.01, 1383.2], [2706.6, 1383.09], [2706.43, 1397.52], [2710.88, 1397.57], [2710.84, 1401.43], [2715.8, 1401.5], [2716.01, 1383.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2610.43, 1475.46], [2609.88, 1467.53], [2600.64, 1468.18], [2601.19, 1476.1], [2610.43, 1475.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2339.1, 1454.18], [2333.61, 1450.45], [2332.0, 1452.83], [2330.42, 1451.77], [2325.94, 1458.36], [2333.01, 1463.16], [2339.1, 1454.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2430.86, 1241.96], [2428.59, 1238.74], [2423.71, 1242.19], [2425.98, 1245.41], [2430.86, 1241.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2482.43, 1215.31], [2477.79, 1209.03], [2467.71, 1216.5], [2472.36, 1222.78], [2482.43, 1215.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2691.98, 1694.32], [2693.2, 1688.69], [2686.68, 1687.15], [2685.42, 1692.77], [2691.98, 1694.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2422.8, 1967.31], [2418.83, 1961.02], [2410.72, 1966.35], [2414.66, 1972.62], [2422.8, 1967.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2610.7, 1360.26], [2609.19, 1358.16], [2607.33, 1359.49], [2606.98, 1359.01], [2601.84, 1362.69], [2604.25, 1366.06], [2609.46, 1362.32], [2608.91, 1361.55], [2610.7, 1360.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2375.48, 1466.59], [2372.18, 1464.46], [2367.97, 1471.01], [2371.27, 1473.13], [2375.48, 1466.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2477.4, 2085.85], [2468.37, 2077.68], [2463.81, 2082.72], [2472.84, 2090.89], [2477.4, 2085.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2500.64, 1351.68], [2498.44, 1349.8], [2494.11, 1354.87], [2496.3, 1356.75], [2500.64, 1351.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2523.82, 1562.17], [2518.36, 1558.17], [2513.61, 1564.65], [2519.09, 1568.65], [2523.82, 1562.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2843.06, 1440.83], [2844.04, 1423.65], [2833.54, 1423.06], [2833.16, 1429.67], [2831.29, 1429.57], [2830.9, 1436.39], [2834.29, 1436.59], [2834.08, 1440.32], [2843.06, 1440.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2478.72, 1316.85], [2476.25, 1312.42], [2470.94, 1315.39], [2473.41, 1319.81], [2478.72, 1316.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2617.52, 2116.07], [2624.28, 2112.08], [2624.48, 2112.41], [2627.19, 2110.81], [2624.43, 2106.12], [2622.14, 2107.47], [2620.41, 2104.53], [2611.06, 2110.04], [2612.98, 2113.29], [2615.14, 2112.03], [2617.52, 2116.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2859.29, 1666.7], [2860.73, 1660.88], [2851.62, 1658.62], [2850.11, 1664.74], [2854.88, 1665.93], [2854.95, 1665.63], [2859.29, 1666.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2230.31, 1352.73], [2235.76, 1344.68], [2227.9, 1339.37], [2226.6, 1341.29], [2225.66, 1340.65], [2223.14, 1344.38], [2224.23, 1345.12], [2222.97, 1346.99], [2224.34, 1347.92], [2223.73, 1348.83], [2226.91, 1350.99], [2227.17, 1350.6], [2230.31, 1352.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2101.51, 1546.17], [2105.88, 1540.98], [2104.07, 1539.45], [2105.69, 1537.53], [2097.38, 1530.53], [2095.7, 1532.51], [2094.15, 1531.2], [2090.17, 1535.92], [2092.56, 1537.93], [2091.91, 1538.69], [2098.61, 1544.35], [2098.91, 1543.99], [2101.51, 1546.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2414.54, 1365.99], [2409.9, 1361.89], [2406.48, 1365.74], [2411.13, 1369.84], [2414.54, 1365.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2337.75, 1413.48], [2332.02, 1408.92], [2327.97, 1414.0], [2333.69, 1418.57], [2337.75, 1413.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2298.21, 1485.85], [2302.52, 1479.33], [2303.51, 1479.99], [2305.66, 1476.74], [2299.0, 1472.32], [2297.34, 1474.84], [2296.02, 1473.96], [2291.21, 1481.22], [2298.21, 1485.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2391.33, 1090.79], [2393.6, 1088.26], [2395.1, 1089.6], [2399.21, 1084.99], [2390.19, 1076.94], [2383.81, 1084.08], [2391.33, 1090.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2314.66, 1437.68], [2309.73, 1434.49], [2308.88, 1435.8], [2307.48, 1434.89], [2302.77, 1442.16], [2304.62, 1443.36], [2302.6, 1446.48], [2309.22, 1450.76], [2315.99, 1440.31], [2313.85, 1438.93], [2314.66, 1437.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2453.13, 1887.68], [2458.49, 1884.2], [2455.44, 1879.31], [2449.88, 1882.74], [2453.13, 1887.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1939.56, 1537.78], [1943.8, 1533.4], [1941.41, 1531.08], [1942.47, 1529.98], [1938.86, 1526.49], [1937.7, 1527.7], [1935.06, 1525.15], [1927.13, 1533.34], [1929.94, 1536.07], [1931.32, 1534.66], [1933.51, 1536.78], [1935.93, 1534.28], [1939.56, 1537.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2732.9, 1764.28], [2725.34, 1762.45], [2723.01, 1772.08], [2725.31, 1772.64], [2724.99, 1773.98], [2730.24, 1775.25], [2732.9, 1764.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2292.73, 1213.45], [2288.16, 1209.1], [2285.92, 1211.46], [2290.5, 1215.81], [2292.73, 1213.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2649.34, 1593.3], [2657.71, 1592.99], [2657.57, 1589.12], [2659.35, 1589.06], [2659.14, 1583.06], [2649.0, 1583.38], [2649.34, 1593.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2747.49, 1700.91], [2742.74, 1699.77], [2741.13, 1706.55], [2745.88, 1707.69], [2747.49, 1700.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2015.65, 1421.03], [2033.86, 1402.62], [2026.07, 1394.91], [2025.26, 1395.73], [2012.58, 1383.17], [2013.73, 1382.0], [2006.39, 1374.74], [1988.12, 1393.2], [1995.82, 1400.82], [1997.33, 1399.29], [2009.28, 1411.13], [2007.48, 1412.94], [2015.65, 1421.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.76, "pop": 380, "jobs": 0}}, {"shape": {"outer": [[1944.34, 1546.36], [1953.85, 1534.57], [1950.54, 1531.88], [1946.94, 1536.34], [1944.96, 1534.75], [1939.05, 1542.08], [1944.34, 1546.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2510.38, 1938.55], [2501.97, 1923.31], [2495.6, 1926.84], [2504.01, 1942.07], [2510.38, 1938.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2375.27, 1378.37], [2380.41, 1370.17], [2373.74, 1366.0], [2368.95, 1373.66], [2370.7, 1374.76], [2369.78, 1376.23], [2372.29, 1377.8], [2372.87, 1376.87], [2375.27, 1378.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2537.04, 1897.1], [2525.18, 1894.9], [2523.49, 1903.99], [2535.35, 1906.2], [2537.04, 1897.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2499.94, 1579.22], [2501.0, 1577.53], [2501.89, 1578.08], [2505.57, 1572.15], [2504.42, 1571.44], [2505.73, 1569.33], [2501.1, 1566.44], [2499.8, 1568.52], [2498.97, 1568.01], [2493.61, 1576.63], [2495.78, 1578.0], [2496.39, 1577.01], [2499.94, 1579.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2400.47, 1148.72], [2402.15, 1146.87], [2403.69, 1148.26], [2410.56, 1140.66], [2406.66, 1137.12], [2406.13, 1137.69], [2403.11, 1134.97], [2397.12, 1141.59], [2399.2, 1143.48], [2397.16, 1145.72], [2400.47, 1148.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2590.58, 1517.37], [2590.88, 1515.5], [2592.04, 1515.69], [2594.16, 1502.14], [2585.26, 1500.75], [2583.3, 1513.28], [2583.94, 1513.37], [2583.48, 1516.27], [2590.58, 1517.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2376.02, 1108.8], [2368.08, 1101.76], [2361.92, 1108.73], [2369.85, 1115.76], [2376.02, 1108.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2559.59, 1283.22], [2564.62, 1279.58], [2565.18, 1280.35], [2568.35, 1278.05], [2567.56, 1276.96], [2575.17, 1271.46], [2571.89, 1266.94], [2567.97, 1269.77], [2565.63, 1266.53], [2558.0, 1272.05], [2559.29, 1273.84], [2555.03, 1276.92], [2559.59, 1283.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2742.23, 1479.74], [2742.41, 1475.51], [2743.51, 1475.55], [2743.81, 1468.32], [2741.57, 1468.22], [2741.63, 1466.77], [2736.43, 1466.55], [2736.34, 1468.64], [2734.79, 1468.57], [2734.33, 1479.41], [2742.23, 1479.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2527.07, 1522.08], [2520.56, 1517.68], [2514.78, 1526.24], [2521.29, 1530.63], [2527.07, 1522.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2475.65, 1274.4], [2470.65, 1267.84], [2460.65, 1275.48], [2465.66, 1282.03], [2475.65, 1274.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2782.15, 1500.0], [2776.75, 1499.79], [2776.49, 1506.6], [2781.89, 1506.82], [2782.15, 1500.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2745.18, 1404.8], [2745.43, 1392.82], [2738.17, 1392.66], [2738.11, 1395.45], [2736.41, 1395.42], [2736.22, 1404.6], [2745.18, 1404.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2863.71, 1530.18], [2863.78, 1527.52], [2865.41, 1527.55], [2865.65, 1517.54], [2862.86, 1517.48], [2862.9, 1515.86], [2856.57, 1515.72], [2856.23, 1530.0], [2863.71, 1530.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2490.36, 1572.3], [2496.06, 1564.32], [2490.94, 1560.66], [2484.52, 1569.64], [2487.19, 1571.56], [2487.9, 1570.55], [2490.36, 1572.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2493.89, 1627.89], [2489.81, 1625.17], [2485.9, 1631.03], [2489.98, 1633.75], [2493.89, 1627.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2366.15, 1335.47], [2354.65, 1327.57], [2350.09, 1334.21], [2361.59, 1342.1], [2366.15, 1335.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2455.34, 2023.5], [2452.25, 2017.91], [2443.83, 2022.57], [2446.93, 2028.16], [2455.34, 2023.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1959.48, 1560.05], [1961.85, 1557.29], [1962.37, 1557.73], [1964.9, 1554.79], [1965.9, 1555.66], [1970.27, 1550.58], [1966.89, 1547.66], [1965.26, 1549.56], [1962.85, 1547.48], [1960.84, 1549.81], [1959.75, 1548.86], [1957.3, 1551.7], [1958.35, 1552.61], [1955.15, 1556.32], [1959.48, 1560.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2462.39, 1403.65], [2456.34, 1399.09], [2452.79, 1403.81], [2458.85, 1408.36], [2462.39, 1403.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2666.07, 1691.51], [2657.0, 1689.0], [2654.79, 1697.0], [2666.43, 1700.22], [2667.79, 1695.33], [2665.2, 1694.61], [2666.07, 1691.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2302.84, 1418.76], [2304.14, 1416.85], [2306.56, 1418.49], [2310.11, 1413.26], [2295.51, 1403.34], [2290.66, 1410.48], [2302.84, 1418.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2441.73, 1534.07], [2429.34, 1525.26], [2427.29, 1528.16], [2426.39, 1527.52], [2423.91, 1531.01], [2425.19, 1531.91], [2424.26, 1533.22], [2436.27, 1541.75], [2441.73, 1534.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2624.45, 1400.96], [2619.41, 1394.16], [2609.33, 1401.64], [2614.37, 1408.43], [2624.45, 1400.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2516.12, 1531.21], [2510.15, 1527.47], [2506.57, 1533.16], [2512.54, 1536.91], [2516.12, 1531.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2061.94, 1470.75], [2051.92, 1461.17], [2047.63, 1465.66], [2050.5, 1468.41], [2049.57, 1469.38], [2056.72, 1476.21], [2061.94, 1470.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2375.32, 1240.09], [2370.92, 1235.45], [2365.62, 1240.48], [2370.02, 1245.13], [2375.32, 1240.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2762.44, 1527.58], [2762.56, 1516.59], [2764.17, 1516.61], [2764.22, 1512.14], [2756.98, 1512.05], [2756.95, 1514.9], [2754.99, 1514.88], [2754.88, 1524.5], [2755.53, 1524.51], [2755.49, 1527.5], [2762.44, 1527.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2056.64, 1479.21], [2052.08, 1474.22], [2052.35, 1473.98], [2046.39, 1467.44], [2040.59, 1472.74], [2046.82, 1479.58], [2048.61, 1477.94], [2052.88, 1482.63], [2056.64, 1479.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2471.97, 1320.77], [2465.84, 1314.67], [2460.61, 1319.93], [2466.73, 1326.03], [2471.97, 1320.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2868.57, 1713.31], [2859.3, 1711.36], [2856.31, 1725.54], [2865.57, 1727.5], [2868.57, 1713.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2859.1, 1566.93], [2859.2, 1564.84], [2861.84, 1564.97], [2862.49, 1552.74], [2854.03, 1552.29], [2853.26, 1566.62], [2859.1, 1566.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2169.18, 1329.25], [2164.3, 1323.71], [2159.74, 1327.73], [2164.63, 1333.27], [2169.18, 1329.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2744.16, 1801.67], [2737.67, 1800.16], [2736.21, 1806.43], [2742.7, 1807.95], [2744.16, 1801.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2080.88, 1555.92], [2073.87, 1549.13], [2067.84, 1555.37], [2073.98, 1561.32], [2071.05, 1564.34], [2074.92, 1568.08], [2078.02, 1564.88], [2075.01, 1561.98], [2080.88, 1555.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2370.07, 1435.94], [2364.1, 1431.72], [2360.19, 1437.24], [2366.15, 1441.47], [2370.07, 1435.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2533.4, 1594.4], [2527.11, 1589.83], [2522.41, 1596.31], [2528.69, 1600.88], [2533.4, 1594.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2806.34, 1493.07], [2800.01, 1492.47], [2799.48, 1497.97], [2805.81, 1498.57], [2806.34, 1493.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2710.76, 1421.65], [2705.0, 1421.37], [2704.16, 1438.04], [2712.44, 1438.46], [2713.01, 1426.97], [2710.5, 1426.85], [2710.76, 1421.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2512.08, 1196.07], [2506.59, 1189.04], [2498.97, 1194.99], [2504.46, 1202.02], [2512.08, 1196.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2456.72, 1281.98], [2454.16, 1278.73], [2448.72, 1283.02], [2451.29, 1286.26], [2456.72, 1281.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2094.19, 1552.8], [2097.56, 1549.32], [2096.1, 1547.91], [2097.4, 1546.58], [2090.29, 1539.7], [2089.38, 1540.64], [2087.56, 1538.88], [2083.36, 1543.24], [2091.85, 1551.44], [2092.3, 1550.98], [2094.19, 1552.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2063.39, 1467.08], [2064.85, 1465.65], [2066.01, 1466.82], [2068.01, 1464.86], [2067.03, 1463.86], [2068.39, 1462.53], [2060.11, 1454.1], [2055.29, 1458.83], [2063.39, 1467.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2614.37, 1486.15], [2613.9, 1480.99], [2610.99, 1481.25], [2610.88, 1480.04], [2602.21, 1480.83], [2602.99, 1489.44], [2611.67, 1488.65], [2611.47, 1486.41], [2614.37, 1486.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2429.06, 1142.58], [2425.94, 1139.56], [2421.5, 1144.14], [2424.62, 1147.17], [2429.06, 1142.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2925.31, 1496.2], [2915.9, 1495.44], [2915.38, 1501.85], [2924.79, 1502.62], [2925.31, 1496.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2162.49, 1292.62], [2154.18, 1282.4], [2147.07, 1288.19], [2156.16, 1299.37], [2159.59, 1296.59], [2158.8, 1295.62], [2162.49, 1292.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2591.36, 2135.67], [2596.71, 2132.34], [2591.62, 2124.06], [2586.22, 2127.34], [2591.36, 2135.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2190.72, 1396.93], [2183.8, 1392.38], [2176.94, 1402.8], [2183.84, 1407.36], [2190.72, 1396.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2918.87, 1532.48], [2919.59, 1517.45], [2918.64, 1517.4], [2918.75, 1514.98], [2910.38, 1514.57], [2910.08, 1520.8], [2908.85, 1520.73], [2908.56, 1526.76], [2909.42, 1526.8], [2909.25, 1530.47], [2913.03, 1530.65], [2912.96, 1532.19], [2918.87, 1532.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2265.12, 1364.6], [2261.33, 1362.01], [2257.51, 1367.62], [2261.29, 1370.2], [2265.12, 1364.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2246.77, 1255.91], [2241.79, 1250.85], [2236.78, 1255.77], [2241.77, 1260.84], [2246.77, 1255.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2891.75, 1593.73], [2892.36, 1584.16], [2881.68, 1583.48], [2881.43, 1587.34], [2876.09, 1587.0], [2875.72, 1592.72], [2891.75, 1593.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2224.58, 1249.52], [2219.79, 1245.84], [2215.39, 1251.56], [2220.18, 1255.24], [2224.58, 1249.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2645.86, 1471.48], [2638.97, 1471.46], [2638.96, 1478.77], [2645.85, 1478.78], [2645.86, 1471.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2477.0, 1423.48], [2473.79, 1421.22], [2469.72, 1427.02], [2472.93, 1429.27], [2477.0, 1423.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2446.33, 1174.21], [2440.7, 1168.67], [2432.53, 1176.97], [2438.94, 1183.27], [2444.06, 1178.05], [2443.29, 1177.31], [2446.33, 1174.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2477.07, 1190.61], [2473.84, 1193.16], [2473.88, 1193.22], [2472.14, 1194.65], [2475.72, 1198.99], [2480.65, 1194.94], [2477.07, 1190.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2359.79, 1467.65], [2352.78, 1462.44], [2343.91, 1474.38], [2350.92, 1479.59], [2359.79, 1467.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2464.54, 1587.58], [2458.09, 1583.08], [2453.09, 1590.26], [2459.55, 1594.75], [2464.54, 1587.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2643.3, 1436.06], [2643.32, 1435.49], [2647.92, 1435.68], [2648.44, 1421.88], [2636.27, 1421.42], [2636.07, 1426.75], [2638.37, 1426.83], [2638.3, 1428.81], [2636.55, 1428.74], [2636.39, 1433.18], [2637.99, 1433.23], [2637.89, 1435.86], [2643.3, 1436.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2217.81, 1436.43], [2214.7, 1434.15], [2211.24, 1438.86], [2214.36, 1441.15], [2217.81, 1436.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2386.94, 1487.09], [2380.55, 1482.74], [2372.89, 1493.99], [2379.29, 1498.33], [2386.94, 1487.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2553.77, 1287.71], [2550.49, 1283.06], [2546.63, 1285.78], [2549.9, 1290.43], [2553.77, 1287.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2447.94, 1323.05], [2441.92, 1316.52], [2433.34, 1324.44], [2439.35, 1330.96], [2447.94, 1323.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2357.21, 1079.62], [2351.32, 1086.17], [2360.25, 1094.2], [2366.15, 1087.66], [2357.21, 1079.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2714.75, 1567.96], [2724.4, 1568.3], [2725.09, 1548.92], [2715.44, 1548.58], [2714.75, 1567.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2340.6, 1525.65], [2334.95, 1521.75], [2332.72, 1524.99], [2338.3, 1528.84], [2333.52, 1535.77], [2345.48, 1544.0], [2349.48, 1538.19], [2348.17, 1537.29], [2349.77, 1534.98], [2339.19, 1527.7], [2340.6, 1525.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2453.15, 2015.0], [2449.53, 2008.64], [2444.33, 2011.6], [2443.89, 2010.82], [2436.11, 2015.26], [2440.16, 2022.39], [2453.15, 2015.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2486.12, 1221.7], [2484.15, 1218.75], [2475.61, 1224.47], [2480.02, 1231.05], [2487.23, 1226.21], [2484.8, 1222.58], [2486.12, 1221.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2288.45, 1466.09], [2280.83, 1461.51], [2273.92, 1473.0], [2281.55, 1477.58], [2288.45, 1466.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2650.13, 1385.2], [2643.68, 1383.21], [2640.68, 1391.18], [2646.94, 1393.02], [2650.13, 1385.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2883.67, 1563.34], [2878.17, 1563.04], [2877.88, 1568.1], [2883.39, 1568.41], [2883.67, 1563.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2759.05, 1770.89], [2751.52, 1768.62], [2750.94, 1770.54], [2750.07, 1770.28], [2747.43, 1779.01], [2755.84, 1781.55], [2759.05, 1770.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2494.77, 1333.12], [2491.64, 1329.24], [2486.54, 1333.34], [2489.66, 1337.22], [2494.77, 1333.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2862.5, 1732.92], [2855.59, 1731.52], [2854.21, 1738.33], [2861.13, 1739.72], [2862.5, 1732.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2432.26, 1305.54], [2429.38, 1302.51], [2428.26, 1303.56], [2425.38, 1300.53], [2418.5, 1307.08], [2419.55, 1308.19], [2417.62, 1310.02], [2422.34, 1314.98], [2432.26, 1305.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2525.94, 1338.47], [2522.27, 1333.4], [2519.63, 1335.31], [2518.12, 1333.22], [2511.65, 1337.91], [2512.12, 1338.54], [2508.41, 1341.24], [2513.13, 1347.75], [2525.94, 1338.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2135.82, 1550.2], [2139.98, 1546.06], [2134.58, 1540.61], [2130.33, 1544.89], [2135.82, 1550.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2742.57, 1695.7], [2743.08, 1693.32], [2746.22, 1694.0], [2749.09, 1680.73], [2739.43, 1678.63], [2736.47, 1692.26], [2738.27, 1692.64], [2737.83, 1694.68], [2742.57, 1695.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2202.43, 1439.28], [2210.79, 1425.59], [2204.26, 1421.5], [2195.37, 1434.8], [2199.12, 1437.16], [2202.43, 1439.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2382.86, 1230.92], [2378.39, 1226.59], [2376.03, 1229.03], [2380.5, 1233.35], [2382.86, 1230.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2544.11, 1367.39], [2539.45, 1360.64], [2529.15, 1367.75], [2533.81, 1374.5], [2544.11, 1367.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2471.41, 2043.98], [2467.55, 2037.47], [2455.65, 2044.54], [2459.52, 2051.11], [2471.41, 2043.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2766.03, 1797.17], [2752.41, 1794.15], [2752.06, 1795.76], [2750.07, 1795.32], [2749.29, 1798.83], [2751.57, 1799.33], [2751.02, 1801.82], [2764.36, 1804.76], [2766.03, 1797.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2700.41, 1773.93], [2693.56, 1772.48], [2692.06, 1779.65], [2698.91, 1781.08], [2700.41, 1773.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2614.44, 1837.98], [2616.51, 1830.44], [2619.94, 1831.38], [2622.41, 1822.38], [2613.01, 1819.82], [2608.49, 1836.35], [2614.44, 1837.98]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.089, "pop": 0, "jobs": 89}}, {"shape": {"outer": [[2384.32, 1474.47], [2381.62, 1472.72], [2378.42, 1477.67], [2381.13, 1479.42], [2384.32, 1474.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2431.6, 1380.75], [2427.13, 1376.01], [2423.07, 1379.83], [2427.55, 1384.58], [2431.6, 1380.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2720.31, 1632.79], [2711.5, 1631.08], [2708.71, 1645.44], [2717.52, 1647.15], [2720.31, 1632.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2514.05, 1426.05], [2504.77, 1418.94], [2502.73, 1421.61], [2501.23, 1420.47], [2497.7, 1425.09], [2508.47, 1433.34], [2514.05, 1426.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2662.78, 2104.57], [2660.18, 2100.23], [2658.11, 2101.46], [2656.47, 2098.73], [2649.93, 2102.67], [2654.17, 2109.73], [2662.78, 2104.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2439.45, 1311.9], [2437.17, 1309.38], [2435.61, 1310.78], [2433.55, 1308.52], [2427.36, 1314.13], [2427.84, 1314.66], [2425.51, 1316.77], [2431.47, 1323.36], [2440.22, 1315.44], [2438.11, 1313.1], [2439.45, 1311.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2418.51, 1442.12], [2412.67, 1437.81], [2404.91, 1448.32], [2410.74, 1452.63], [2418.51, 1442.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2162.02, 1317.69], [2158.63, 1313.03], [2153.73, 1316.59], [2157.13, 1321.25], [2162.02, 1317.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2784.79, 1400.98], [2776.36, 1400.52], [2775.74, 1411.53], [2780.97, 1411.82], [2780.81, 1414.64], [2784.02, 1414.82], [2784.79, 1400.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2808.69, 1471.87], [2798.43, 1471.51], [2798.09, 1481.2], [2808.36, 1481.55], [2808.69, 1471.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2890.64, 1597.54], [2877.5, 1594.46], [2875.57, 1602.72], [2888.7, 1605.81], [2890.64, 1597.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2103.19, 1444.79], [2097.0, 1438.66], [2087.14, 1448.62], [2093.33, 1454.75], [2103.19, 1444.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2828.41, 1717.84], [2828.99, 1714.31], [2829.95, 1714.47], [2831.95, 1702.44], [2826.01, 1701.45], [2825.89, 1702.19], [2822.65, 1701.65], [2822.38, 1703.28], [2821.39, 1703.11], [2819.81, 1712.59], [2822.54, 1713.05], [2821.92, 1716.76], [2828.41, 1717.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2525.61, 1410.38], [2529.26, 1407.88], [2530.55, 1409.78], [2534.56, 1407.05], [2526.28, 1394.94], [2518.63, 1400.18], [2525.61, 1410.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2395.87, 1566.13], [2392.79, 1564.24], [2391.99, 1565.53], [2389.73, 1564.13], [2385.87, 1570.4], [2391.23, 1573.7], [2395.87, 1566.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1960.94, 1545.09], [1955.73, 1540.26], [1947.8, 1548.81], [1953.01, 1553.64], [1960.94, 1545.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2426.91, 1400.41], [2428.2, 1398.52], [2425.49, 1396.68], [2424.08, 1398.77], [2422.44, 1397.66], [2416.32, 1406.68], [2423.45, 1411.52], [2429.71, 1402.31], [2426.91, 1400.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2678.19, 1564.76], [2678.43, 1561.12], [2682.07, 1561.35], [2682.93, 1547.72], [2674.17, 1547.17], [2673.3, 1560.93], [2675.4, 1561.06], [2675.18, 1564.58], [2678.19, 1564.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2581.94, 1457.19], [2580.32, 1453.93], [2572.74, 1457.71], [2574.36, 1460.97], [2581.94, 1457.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2757.1, 1430.02], [2748.43, 1429.77], [2748.11, 1440.67], [2750.16, 1440.73], [2750.1, 1442.8], [2756.72, 1442.99], [2757.1, 1430.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2508.39, 1230.75], [2506.06, 1227.87], [2501.83, 1231.29], [2504.16, 1234.17], [2508.39, 1230.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2697.82, 1402.31], [2692.04, 1401.96], [2691.67, 1408.04], [2697.45, 1408.39], [2697.82, 1402.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2467.75, 1551.52], [2460.12, 1546.16], [2454.41, 1554.31], [2462.04, 1559.66], [2467.75, 1551.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2579.76, 1303.58], [2576.45, 1298.99], [2571.57, 1302.52], [2574.89, 1307.11], [2579.76, 1303.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2602.5, 1915.2], [2601.9, 1902.85], [2593.63, 1903.26], [2594.24, 1915.61], [2602.5, 1915.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2328.58, 1392.07], [2322.04, 1387.69], [2320.09, 1390.61], [2326.64, 1394.98], [2328.58, 1392.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1959.09, 1428.13], [1952.03, 1420.68], [1945.42, 1426.95], [1953.93, 1435.93], [1958.42, 1431.7], [1956.96, 1430.15], [1959.09, 1428.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1908.12, 1513.52], [1915.69, 1504.99], [1909.83, 1499.79], [1900.81, 1509.97], [1904.33, 1513.11], [1905.79, 1511.46], [1908.12, 1513.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2681.3, 1609.59], [2675.78, 1608.22], [2674.13, 1614.92], [2679.64, 1616.28], [2681.3, 1609.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2855.89, 1756.43], [2849.3, 1755.39], [2847.38, 1767.55], [2856.99, 1769.07], [2858.67, 1758.41], [2855.65, 1757.94], [2855.89, 1756.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2471.59, 1551.14], [2475.97, 1545.52], [2480.4, 1548.95], [2481.72, 1547.25], [2485.52, 1550.2], [2488.79, 1545.98], [2485.5, 1543.42], [2483.71, 1545.72], [2478.86, 1541.97], [2477.57, 1543.63], [2465.95, 1534.6], [2460.06, 1542.19], [2471.59, 1551.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[2796.4, 1469.51], [2786.14, 1469.31], [2785.9, 1481.61], [2796.16, 1481.81], [2796.4, 1469.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2465.91, 1267.51], [2461.27, 1260.97], [2454.71, 1265.61], [2459.35, 1272.16], [2465.91, 1267.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2835.85, 1789.41], [2829.53, 1788.39], [2828.4, 1795.38], [2834.73, 1796.39], [2835.85, 1789.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2423.19, 1479.08], [2417.79, 1475.23], [2413.41, 1481.36], [2418.8, 1485.22], [2423.19, 1479.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2264.21, 1470.54], [2261.38, 1468.53], [2257.93, 1473.4], [2260.76, 1475.4], [2264.21, 1470.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2583.42, 1914.33], [2583.77, 1912.97], [2587.81, 1914.02], [2590.25, 1904.61], [2587.51, 1903.9], [2588.13, 1901.5], [2584.31, 1900.51], [2583.69, 1902.9], [2580.16, 1901.99], [2577.55, 1912.09], [2581.3, 1913.06], [2581.12, 1913.72], [2583.42, 1914.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2229.05, 1304.09], [2222.98, 1296.79], [2222.33, 1297.34], [2220.39, 1294.99], [2216.37, 1298.34], [2218.27, 1300.62], [2217.33, 1301.41], [2223.43, 1308.76], [2229.05, 1304.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2914.69, 1488.18], [2914.85, 1484.63], [2917.6, 1484.76], [2918.05, 1474.76], [2908.96, 1474.35], [2908.35, 1487.91], [2914.69, 1488.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2645.63, 2080.75], [2642.15, 2074.91], [2634.27, 2079.6], [2637.31, 2084.7], [2636.85, 2084.98], [2638.88, 2088.4], [2644.63, 2084.98], [2643.03, 2082.29], [2645.63, 2080.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2818.66, 1809.41], [2813.0, 1808.02], [2811.61, 1813.71], [2817.27, 1815.1], [2818.66, 1809.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2686.5, 1665.49], [2677.44, 1663.39], [2675.67, 1671.06], [2684.73, 1673.16], [2686.5, 1665.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2524.19, 1269.09], [2519.19, 1262.19], [2510.79, 1268.29], [2515.79, 1275.19], [2524.19, 1269.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2382.85, 1313.54], [2380.07, 1311.23], [2376.92, 1315.03], [2379.69, 1317.33], [2382.85, 1313.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2669.23, 1386.74], [2665.14, 1386.6], [2664.89, 1393.74], [2668.98, 1393.88], [2669.23, 1386.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2434.36, 1224.93], [2431.37, 1220.68], [2426.27, 1224.25], [2425.56, 1223.25], [2422.44, 1225.45], [2423.85, 1227.46], [2420.76, 1229.63], [2421.63, 1230.86], [2421.06, 1231.27], [2421.86, 1232.41], [2419.18, 1234.29], [2423.09, 1239.85], [2434.91, 1231.55], [2431.62, 1226.85], [2434.36, 1224.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2683.41, 1622.97], [2675.74, 1621.36], [2672.42, 1637.21], [2680.09, 1638.82], [2683.41, 1622.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2448.77, 1510.84], [2443.02, 1506.97], [2438.29, 1513.98], [2450.2, 1522.02], [2452.99, 1517.88], [2451.41, 1516.8], [2452.57, 1515.08], [2447.99, 1512.0], [2448.77, 1510.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2457.49, 1324.81], [2453.36, 1320.9], [2441.8, 1333.09], [2448.24, 1339.2], [2458.64, 1328.24], [2456.31, 1326.04], [2457.49, 1324.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2708.3, 1755.17], [2702.21, 1753.74], [2701.87, 1755.19], [2700.52, 1754.87], [2698.39, 1763.99], [2705.84, 1765.73], [2708.3, 1755.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2735.34, 1717.57], [2731.35, 1716.8], [2730.14, 1723.0], [2734.13, 1723.78], [2735.34, 1717.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2128.97, 1320.12], [2133.27, 1316.65], [2134.21, 1317.81], [2135.95, 1316.4], [2125.99, 1304.16], [2119.95, 1309.03], [2128.97, 1320.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2024.83, 1449.34], [2027.32, 1446.76], [2028.44, 1447.84], [2032.36, 1443.77], [2020.5, 1432.35], [2015.83, 1437.19], [2020.66, 1441.85], [2018.11, 1444.51], [2022.42, 1448.67], [2023.24, 1447.81], [2024.83, 1449.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2385.84, 1353.08], [2382.47, 1350.92], [2378.5, 1357.12], [2381.86, 1359.28], [2385.84, 1353.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2659.7, 1722.31], [2662.52, 1707.73], [2651.72, 1705.21], [2650.2, 1711.73], [2653.54, 1712.64], [2651.89, 1720.41], [2659.7, 1722.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2332.02, 1436.23], [2326.58, 1432.47], [2322.98, 1437.67], [2328.42, 1441.43], [2332.02, 1436.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2508.24, 2133.58], [2501.58, 2127.43], [2496.97, 2132.42], [2503.63, 2138.57], [2508.24, 2133.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2489.49, 1339.61], [2484.76, 1335.27], [2480.88, 1339.49], [2485.62, 1343.83], [2489.49, 1339.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2377.38, 1550.68], [2381.87, 1544.13], [2377.95, 1541.1], [2386.64, 1528.68], [2381.69, 1525.07], [2368.16, 1544.49], [2377.38, 1550.68]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.118, "pop": 0, "jobs": 118}}, {"shape": {"outer": [[2486.35, 1325.43], [2483.46, 1321.28], [2478.01, 1325.08], [2480.9, 1329.22], [2486.35, 1325.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2745.4, 1791.51], [2737.96, 1789.81], [2736.83, 1794.77], [2744.26, 1796.47], [2745.4, 1791.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2034.11, 1491.36], [2028.96, 1485.75], [2022.09, 1492.06], [2030.47, 1501.19], [2034.59, 1497.41], [2031.36, 1493.88], [2034.11, 1491.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2833.62, 1804.25], [2827.65, 1802.99], [2826.79, 1807.13], [2832.76, 1808.37], [2833.62, 1804.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2563.2, 1691.18], [2583.34, 1663.73], [2553.7, 1643.72], [2539.82, 1663.84], [2529.49, 1657.11], [2543.19, 1636.32], [2527.67, 1625.4], [2513.22, 1647.48], [2510.75, 1645.62], [2506.53, 1652.65], [2563.2, 1691.18]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1270}}, {"shape": {"outer": [[2286.38, 1433.12], [2293.76, 1422.41], [2285.71, 1416.87], [2278.6, 1427.19], [2279.35, 1427.71], [2277.97, 1429.71], [2282.38, 1432.74], [2283.49, 1431.12], [2286.38, 1433.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2509.07, 1376.52], [2503.42, 1370.95], [2494.3, 1380.19], [2499.95, 1385.77], [2509.07, 1376.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2655.59, 1440.05], [2655.79, 1436.33], [2658.96, 1436.51], [2659.41, 1428.4], [2652.09, 1427.99], [2651.42, 1439.81], [2655.59, 1440.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2504.64, 1346.6], [2499.34, 1337.77], [2494.21, 1340.84], [2499.51, 1349.68], [2504.64, 1346.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2866.08, 1649.54], [2859.38, 1647.96], [2858.47, 1651.82], [2865.17, 1653.4], [2866.08, 1649.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2488.26, 1554.83], [2481.93, 1550.39], [2476.9, 1557.55], [2479.07, 1559.07], [2477.18, 1561.77], [2478.67, 1562.82], [2477.47, 1564.53], [2481.74, 1567.53], [2487.45, 1559.38], [2485.85, 1558.26], [2488.26, 1554.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2512.98, 1575.55], [2509.56, 1573.32], [2503.4, 1582.71], [2508.99, 1586.37], [2513.68, 1579.22], [2511.51, 1577.79], [2512.98, 1575.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2182.75, 1430.98], [2186.87, 1433.87], [2190.42, 1428.79], [2186.23, 1425.83], [2182.75, 1430.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2796.01, 1498.92], [2790.41, 1498.84], [2790.28, 1507.3], [2795.88, 1507.37], [2796.01, 1498.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2653.25, 1559.95], [2653.2, 1558.4], [2654.18, 1558.36], [2653.79, 1546.65], [2644.61, 1546.96], [2645.02, 1559.16], [2647.15, 1559.09], [2647.25, 1561.88], [2649.62, 1561.8], [2649.57, 1560.08], [2653.25, 1559.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2767.22, 1659.98], [2770.6, 1645.5], [2773.29, 1646.12], [2774.86, 1639.32], [2768.95, 1637.95], [2767.65, 1643.51], [2762.03, 1642.22], [2758.38, 1657.91], [2767.22, 1659.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2800.13, 1619.61], [2783.49, 1619.6], [2783.49, 1623.02], [2784.91, 1623.02], [2784.9, 1627.6], [2789.45, 1627.61], [2789.45, 1629.05], [2800.13, 1629.07], [2800.13, 1619.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2380.73, 1082.54], [2389.11, 1073.48], [2381.64, 1066.56], [2373.2, 1075.67], [2375.67, 1077.95], [2375.71, 1077.9], [2380.73, 1082.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2289.11, 1195.01], [2282.92, 1189.07], [2277.59, 1194.62], [2283.78, 1200.56], [2289.11, 1195.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2843.43, 1765.77], [2843.99, 1762.08], [2845.28, 1762.27], [2846.04, 1757.34], [2845.18, 1757.21], [2845.9, 1752.5], [2838.16, 1751.31], [2837.84, 1753.44], [2836.77, 1753.28], [2835.76, 1759.83], [2836.26, 1759.9], [2835.55, 1764.57], [2843.43, 1765.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2180.43, 1301.75], [2177.21, 1297.69], [2172.58, 1301.37], [2175.8, 1305.42], [2180.43, 1301.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2504.39, 1501.54], [2494.89, 1494.47], [2489.61, 1501.59], [2499.11, 1508.65], [2504.39, 1501.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2082.22, 1443.07], [2083.42, 1441.84], [2084.43, 1442.83], [2087.5, 1439.68], [2087.1, 1439.29], [2090.97, 1435.31], [2090.59, 1434.95], [2093.39, 1432.08], [2091.17, 1429.92], [2092.46, 1428.6], [2090.53, 1426.73], [2089.46, 1427.83], [2087.69, 1426.1], [2084.38, 1429.51], [2083.15, 1428.3], [2080.51, 1431.01], [2081.66, 1432.14], [2078.18, 1435.72], [2081.51, 1438.97], [2079.8, 1440.72], [2082.22, 1443.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2632.98, 1374.52], [2627.71, 1367.49], [2622.68, 1371.26], [2627.95, 1378.3], [2632.98, 1374.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2674.46, 1607.94], [2668.23, 1606.27], [2666.41, 1613.05], [2672.64, 1614.72], [2674.46, 1607.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2269.83, 1468.38], [2271.13, 1466.45], [2273.33, 1467.92], [2277.91, 1461.11], [2275.97, 1459.81], [2277.29, 1457.86], [2273.71, 1455.45], [2272.42, 1457.38], [2271.2, 1456.55], [2265.29, 1465.33], [2269.83, 1468.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2315.43, 1484.0], [2308.58, 1479.52], [2307.64, 1480.97], [2306.34, 1480.13], [2300.11, 1489.67], [2305.25, 1493.03], [2304.02, 1494.93], [2307.01, 1496.88], [2315.43, 1484.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2726.32, 1587.73], [2733.54, 1588.06], [2733.93, 1579.28], [2726.72, 1578.95], [2726.32, 1587.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2588.07, 1343.55], [2582.74, 1336.6], [2569.64, 1346.73], [2575.13, 1353.75], [2588.07, 1343.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2248.8, 1239.45], [2244.11, 1235.43], [2239.54, 1240.75], [2244.22, 1244.77], [2248.8, 1239.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2179.38, 1389.2], [2172.55, 1384.19], [2167.78, 1390.7], [2174.6, 1395.71], [2179.38, 1389.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2847.3, 1500.94], [2840.46, 1500.53], [2839.99, 1508.43], [2846.82, 1508.83], [2847.3, 1500.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2123.65, 1516.11], [2121.01, 1511.38], [2117.14, 1513.53], [2119.78, 1518.26], [2123.65, 1516.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2762.46, 1699.34], [2758.19, 1698.19], [2756.56, 1704.26], [2760.82, 1705.41], [2762.46, 1699.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2709.67, 1735.37], [2713.1, 1721.52], [2708.59, 1720.4], [2708.16, 1722.13], [2705.03, 1721.35], [2702.03, 1733.48], [2709.67, 1735.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2405.18, 1119.94], [2399.52, 1115.2], [2395.36, 1120.18], [2401.02, 1124.91], [2405.18, 1119.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2806.91, 1514.19], [2797.71, 1514.14], [2797.63, 1528.91], [2806.84, 1528.95], [2806.91, 1514.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2034.49, 1531.77], [2031.13, 1528.19], [2028.55, 1530.62], [2031.91, 1534.2], [2034.49, 1531.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2562.84, 1905.06], [2554.1, 1902.74], [2551.65, 1912.07], [2554.67, 1912.86], [2554.08, 1915.07], [2559.8, 1916.58], [2562.84, 1905.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2612.16, 1520.6], [2612.13, 1518.13], [2614.61, 1518.1], [2614.56, 1513.7], [2612.13, 1513.72], [2612.11, 1511.81], [2597.36, 1511.98], [2597.39, 1514.45], [2599.17, 1514.43], [2599.22, 1518.4], [2602.09, 1518.36], [2602.1, 1519.36], [2607.44, 1519.3], [2607.46, 1520.66], [2612.16, 1520.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2491.85, 2068.47], [2488.58, 2063.79], [2486.99, 2064.9], [2486.03, 2063.52], [2478.32, 2068.92], [2482.54, 2074.97], [2491.85, 2068.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2732.29, 1630.07], [2727.49, 1628.86], [2727.01, 1630.89], [2725.12, 1630.49], [2723.88, 1636.31], [2723.33, 1636.15], [2720.67, 1648.15], [2729.3, 1650.31], [2733.02, 1632.78], [2731.73, 1632.41], [2732.29, 1630.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2351.22, 1531.71], [2353.18, 1528.56], [2354.68, 1529.49], [2355.79, 1527.7], [2354.6, 1526.97], [2356.96, 1523.16], [2347.26, 1517.14], [2341.82, 1525.87], [2351.22, 1531.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2427.56, 1130.74], [2420.35, 1125.09], [2416.99, 1129.37], [2421.2, 1132.67], [2420.42, 1133.67], [2423.41, 1136.03], [2427.56, 1130.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2710.06, 1581.79], [2716.56, 1582.05], [2716.83, 1574.53], [2710.4, 1574.26], [2710.06, 1581.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2751.27, 1483.39], [2751.44, 1478.46], [2753.97, 1478.5], [2754.15, 1468.92], [2746.28, 1468.77], [2746.12, 1477.31], [2745.97, 1477.31], [2745.77, 1483.2], [2751.27, 1483.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2375.05, 1350.83], [2369.9, 1347.73], [2366.64, 1353.18], [2371.79, 1356.27], [2375.05, 1350.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2511.75, 1622.74], [2503.87, 1617.45], [2498.28, 1625.77], [2506.15, 1631.06], [2511.75, 1622.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2762.61, 1565.69], [2762.75, 1563.57], [2764.28, 1563.66], [2764.97, 1552.71], [2763.55, 1552.61], [2763.62, 1551.56], [2758.42, 1551.23], [2758.34, 1552.71], [2756.72, 1552.62], [2755.92, 1565.26], [2762.61, 1565.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2580.47, 1976.63], [2580.16, 1969.28], [2571.09, 1969.65], [2571.4, 1977.0], [2580.47, 1976.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2204.18, 1371.18], [2196.1, 1366.2], [2192.84, 1371.5], [2200.08, 1375.96], [2199.02, 1377.69], [2204.15, 1380.85], [2207.29, 1375.75], [2202.99, 1373.1], [2204.18, 1371.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1924.48, 1467.58], [1917.21, 1457.85], [1911.96, 1461.77], [1915.33, 1466.27], [1913.98, 1467.29], [1914.32, 1467.74], [1912.08, 1469.41], [1915.64, 1474.19], [1924.48, 1467.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2706.05, 1701.18], [2697.48, 1699.0], [2695.66, 1706.11], [2704.23, 1708.29], [2706.05, 1701.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2444.75, 1301.51], [2440.69, 1297.64], [2436.41, 1302.12], [2440.48, 1306.0], [2444.75, 1301.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2485.55, 2062.38], [2482.78, 2057.6], [2480.63, 2058.85], [2480.05, 2057.88], [2471.95, 2062.59], [2475.72, 2069.08], [2484.6, 2063.93], [2484.17, 2063.19], [2485.55, 2062.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2459.02, 1399.37], [2462.14, 1395.84], [2462.77, 1396.39], [2466.2, 1392.5], [2465.38, 1391.77], [2467.64, 1389.22], [2464.33, 1386.3], [2466.26, 1384.11], [2463.1, 1381.32], [2452.36, 1393.49], [2459.02, 1399.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2694.46, 1613.31], [2688.77, 1611.72], [2687.02, 1618.01], [2692.71, 1619.6], [2694.46, 1613.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2686.5, 1749.56], [2679.93, 1747.55], [2676.53, 1758.61], [2683.1, 1760.64], [2686.5, 1749.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2202.93, 1304.34], [2199.06, 1299.61], [2194.71, 1303.17], [2198.57, 1307.91], [2202.93, 1304.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2251.25, 1443.38], [2244.38, 1439.01], [2239.54, 1446.62], [2246.42, 1450.98], [2251.25, 1443.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2130.84, 1521.46], [2126.9, 1517.9], [2123.08, 1522.14], [2127.01, 1525.69], [2130.84, 1521.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2493.97, 1424.07], [2489.83, 1421.18], [2485.61, 1427.23], [2489.75, 1430.11], [2493.97, 1424.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2888.62, 1607.94], [2878.46, 1605.82], [2876.6, 1614.71], [2886.76, 1616.84], [2888.62, 1607.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2618.11, 1350.33], [2615.05, 1346.73], [2608.78, 1352.05], [2612.71, 1356.67], [2614.69, 1354.98], [2613.83, 1353.96], [2618.11, 1350.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2541.5, 1478.42], [2543.79, 1474.75], [2540.61, 1472.78], [2538.49, 1476.18], [2536.88, 1475.18], [2531.16, 1484.36], [2538.29, 1488.8], [2543.85, 1479.87], [2541.5, 1478.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2857.3, 1629.25], [2850.57, 1629.24], [2850.56, 1636.52], [2857.28, 1636.55], [2857.3, 1629.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2791.32, 1658.43], [2782.07, 1656.54], [2780.34, 1664.96], [2789.59, 1666.86], [2791.32, 1658.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2875.91, 1554.5], [2866.85, 1554.11], [2866.25, 1567.82], [2875.31, 1568.22], [2875.91, 1554.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2383.35, 1341.18], [2378.44, 1335.96], [2373.75, 1340.38], [2378.66, 1345.59], [2383.35, 1341.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2487.6, 1403.8], [2481.9, 1398.71], [2474.66, 1406.8], [2480.37, 1411.9], [2487.6, 1403.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2335.14, 1148.0], [2330.73, 1143.72], [2328.05, 1146.48], [2332.46, 1150.75], [2335.14, 1148.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2468.77, 1494.47], [2456.51, 1485.86], [2451.83, 1492.53], [2464.09, 1501.14], [2468.77, 1494.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2404.24, 1498.27], [2401.72, 1496.48], [2400.42, 1498.32], [2398.84, 1497.18], [2391.41, 1507.6], [2397.45, 1511.91], [2405.04, 1501.29], [2403.09, 1499.89], [2404.24, 1498.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2883.55, 1576.79], [2877.82, 1574.77], [2876.16, 1579.48], [2881.89, 1581.5], [2883.55, 1576.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2579.36, 1957.08], [2579.26, 1954.82], [2582.81, 1954.65], [2582.32, 1944.39], [2574.14, 1944.78], [2574.65, 1955.27], [2575.7, 1955.22], [2575.79, 1957.26], [2579.36, 1957.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2371.01, 1408.83], [2364.24, 1404.23], [2356.66, 1415.39], [2363.44, 1419.99], [2371.01, 1408.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2790.74, 1435.97], [2786.24, 1435.69], [2785.81, 1442.5], [2790.31, 1442.79], [2790.74, 1435.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2165.4, 1403.69], [2167.26, 1401.3], [2168.55, 1402.31], [2171.73, 1398.23], [2169.94, 1396.85], [2170.16, 1396.58], [2162.83, 1390.86], [2158.35, 1396.61], [2161.7, 1399.21], [2160.93, 1400.2], [2165.4, 1403.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2594.17, 1431.66], [2588.88, 1423.95], [2577.81, 1431.53], [2583.11, 1439.25], [2594.17, 1431.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2775.29, 1614.49], [2768.45, 1614.08], [2768.25, 1617.33], [2769.22, 1617.4], [2768.87, 1623.36], [2774.74, 1623.71], [2775.29, 1614.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2447.64, 1405.73], [2443.75, 1403.13], [2440.39, 1408.17], [2444.28, 1410.76], [2447.64, 1405.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1998.24, 1480.38], [1988.4, 1471.86], [1982.83, 1478.3], [1992.67, 1486.82], [1998.24, 1480.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2200.51, 1286.78], [2197.92, 1283.44], [2192.49, 1287.66], [2195.22, 1291.19], [2193.81, 1292.3], [2195.86, 1294.96], [2199.91, 1291.81], [2197.69, 1288.96], [2200.51, 1286.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2164.3, 1405.04], [2152.93, 1397.7], [2148.11, 1405.18], [2159.48, 1412.51], [2164.3, 1405.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2369.88, 1330.1], [2371.55, 1327.54], [2373.15, 1328.57], [2375.15, 1325.51], [2373.52, 1324.44], [2374.37, 1323.14], [2364.08, 1316.45], [2359.57, 1323.4], [2369.88, 1330.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2550.03, 2085.17], [2547.79, 2081.35], [2545.58, 2082.66], [2544.45, 2080.71], [2534.36, 2086.62], [2538.78, 2094.14], [2548.57, 2088.41], [2547.53, 2086.63], [2550.03, 2085.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2700.63, 1440.21], [2700.61, 1427.58], [2695.85, 1427.58], [2695.86, 1428.97], [2693.23, 1428.97], [2693.23, 1431.85], [2691.58, 1431.85], [2691.6, 1440.22], [2700.63, 1440.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2365.03, 1355.02], [2359.33, 1351.28], [2355.69, 1356.82], [2361.39, 1360.56], [2365.03, 1355.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2190.36, 1268.24], [2183.28, 1260.54], [2182.01, 1261.71], [2180.37, 1259.94], [2175.17, 1264.72], [2186.43, 1276.96], [2191.36, 1272.43], [2188.81, 1269.67], [2190.36, 1268.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2766.97, 1420.0], [2759.38, 1419.62], [2759.03, 1426.51], [2766.63, 1426.89], [2766.97, 1420.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2888.91, 1531.96], [2888.98, 1528.75], [2890.33, 1528.78], [2890.62, 1516.15], [2881.58, 1515.94], [2881.21, 1531.78], [2888.91, 1531.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2870.96, 1492.45], [2860.6, 1491.9], [2860.15, 1500.35], [2870.5, 1500.9], [2870.96, 1492.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2478.02, 1434.61], [2471.09, 1429.66], [2463.1, 1440.83], [2470.03, 1445.78], [2478.02, 1434.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2474.72, 1611.7], [2471.5, 1609.53], [2470.36, 1611.21], [2468.3, 1609.81], [2463.04, 1617.61], [2469.53, 1622.25], [2474.86, 1614.35], [2473.53, 1613.45], [2474.72, 1611.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2672.68, 1746.91], [2663.8, 1745.74], [2662.42, 1756.27], [2671.3, 1757.44], [2672.68, 1746.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2416.01, 1263.53], [2417.1, 1262.33], [2418.15, 1263.29], [2422.41, 1258.56], [2414.17, 1251.12], [2408.83, 1257.05], [2416.01, 1263.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2443.23, 1363.46], [2438.25, 1359.1], [2436.6, 1360.99], [2435.59, 1360.11], [2427.77, 1369.03], [2433.76, 1374.28], [2443.23, 1363.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2633.4, 2060.58], [2632.21, 2053.56], [2622.75, 2055.16], [2623.94, 2062.19], [2633.4, 2060.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2492.72, 2117.36], [2493.84, 2116.2], [2487.4, 2109.71], [2483.66, 2113.37], [2484.66, 2114.34], [2482.48, 2116.61], [2489.93, 2123.79], [2494.48, 2119.06], [2492.72, 2117.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2411.18, 1107.7], [2416.17, 1101.64], [2409.14, 1095.85], [2403.23, 1103.02], [2408.91, 1107.71], [2409.83, 1106.59], [2411.18, 1107.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2673.98, 1725.45], [2674.2, 1723.85], [2677.13, 1724.24], [2677.89, 1718.53], [2675.86, 1718.25], [2676.34, 1714.68], [2669.15, 1713.72], [2668.91, 1715.54], [2667.79, 1715.38], [2667.13, 1720.24], [2668.12, 1720.37], [2667.84, 1722.46], [2670.2, 1722.77], [2669.91, 1724.91], [2673.98, 1725.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2712.53, 1670.28], [2706.15, 1668.66], [2703.21, 1680.15], [2709.59, 1681.77], [2712.53, 1670.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2835.91, 1629.59], [2824.07, 1629.21], [2823.79, 1638.01], [2839.96, 1638.52], [2840.13, 1633.21], [2835.8, 1633.08], [2835.91, 1629.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2860.34, 1684.85], [2860.79, 1682.77], [2863.28, 1683.3], [2865.0, 1675.43], [2863.62, 1675.12], [2864.38, 1671.63], [2855.93, 1669.79], [2853.38, 1681.52], [2854.71, 1681.81], [2854.33, 1683.54], [2860.34, 1684.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2567.85, 1439.44], [2564.07, 1434.15], [2557.43, 1438.88], [2561.2, 1444.18], [2567.85, 1439.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2581.38, 1498.22], [2575.77, 1496.47], [2571.33, 1510.81], [2579.29, 1513.28], [2583.19, 1500.68], [2580.84, 1499.95], [2581.38, 1498.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2849.5, 1801.24], [2849.98, 1799.28], [2852.62, 1799.91], [2853.65, 1795.66], [2851.14, 1795.06], [2851.64, 1793.0], [2844.14, 1791.19], [2842.14, 1799.47], [2849.5, 1801.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2335.36, 1406.98], [2336.53, 1405.25], [2338.87, 1406.83], [2340.04, 1405.11], [2342.29, 1406.63], [2345.03, 1402.58], [2343.3, 1401.41], [2344.64, 1399.44], [2336.94, 1394.24], [2330.53, 1403.72], [2335.36, 1406.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2744.58, 1767.07], [2737.88, 1765.32], [2735.1, 1775.89], [2741.81, 1777.64], [2744.58, 1767.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2416.89, 1360.26], [2425.8, 1349.87], [2419.89, 1344.79], [2410.97, 1355.18], [2413.11, 1357.02], [2412.25, 1358.0], [2414.86, 1360.24], [2415.71, 1359.24], [2416.89, 1360.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2582.35, 1856.4], [2582.63, 1855.03], [2586.89, 1855.92], [2587.84, 1851.34], [2584.19, 1850.57], [2585.03, 1846.55], [2579.92, 1845.49], [2579.27, 1848.62], [2574.76, 1847.68], [2574.24, 1850.15], [2571.85, 1849.66], [2570.93, 1854.04], [2582.35, 1856.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2427.45, 1491.72], [2421.58, 1487.98], [2417.85, 1493.84], [2423.72, 1497.57], [2427.45, 1491.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2458.06, 1158.26], [2460.22, 1155.92], [2462.32, 1157.85], [2470.06, 1149.46], [2468.57, 1148.09], [2469.83, 1146.73], [2464.64, 1141.95], [2453.48, 1154.05], [2458.06, 1158.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2523.6, 1537.18], [2519.36, 1534.11], [2516.07, 1538.65], [2520.31, 1541.72], [2523.6, 1537.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2710.79, 1404.85], [2704.75, 1404.33], [2704.16, 1411.15], [2710.2, 1411.67], [2710.79, 1404.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2257.71, 1330.64], [2246.04, 1322.93], [2241.79, 1329.35], [2253.47, 1337.06], [2257.71, 1330.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2223.71, 1424.13], [2216.64, 1419.83], [2212.14, 1427.2], [2219.21, 1431.51], [2223.71, 1424.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2781.49, 1636.51], [2776.36, 1635.21], [2775.3, 1639.39], [2780.42, 1640.69], [2781.49, 1636.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2583.09, 1412.62], [2577.13, 1404.74], [2570.07, 1410.08], [2577.71, 1420.16], [2582.4, 1416.61], [2580.74, 1414.41], [2583.09, 1412.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2837.5, 1510.47], [2837.82, 1503.76], [2831.34, 1503.48], [2831.07, 1510.2], [2837.5, 1510.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2935.7, 1427.22], [2926.06, 1426.89], [2925.71, 1437.36], [2926.81, 1437.4], [2926.53, 1445.72], [2935.07, 1446.01], [2935.7, 1427.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2478.23, 2051.21], [2474.25, 2044.53], [2466.79, 2048.96], [2470.76, 2055.65], [2478.23, 2051.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2794.6, 1655.14], [2796.5, 1644.75], [2785.5, 1642.75], [2785.07, 1645.13], [2783.25, 1644.79], [2782.49, 1648.99], [2784.24, 1649.31], [2783.55, 1653.13], [2794.6, 1655.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2690.6, 1474.73], [2696.99, 1474.91], [2699.09, 1474.95], [2699.28, 1464.89], [2697.26, 1464.86], [2697.29, 1463.21], [2690.82, 1463.08], [2690.6, 1474.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2427.49, 1158.78], [2421.18, 1153.59], [2414.17, 1162.1], [2420.48, 1167.3], [2427.49, 1158.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2190.1, 1308.57], [2186.39, 1303.76], [2182.3, 1306.92], [2186.01, 1311.73], [2190.1, 1308.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2361.17, 1403.16], [2353.54, 1397.95], [2344.95, 1410.54], [2352.58, 1415.75], [2361.17, 1403.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2872.71, 1530.93], [2872.8, 1528.86], [2876.11, 1529.01], [2876.68, 1515.83], [2871.69, 1515.62], [2871.77, 1513.77], [2867.97, 1513.61], [2867.24, 1530.69], [2872.71, 1530.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2526.09, 1214.48], [2522.94, 1210.64], [2521.1, 1212.14], [2519.67, 1210.39], [2513.36, 1215.57], [2518.65, 1222.04], [2524.9, 1216.92], [2524.18, 1216.05], [2526.09, 1214.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2837.78, 1678.6], [2840.87, 1663.09], [2834.8, 1661.88], [2834.3, 1664.39], [2832.55, 1664.04], [2829.96, 1677.06], [2837.78, 1678.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2614.55, 1319.65], [2610.27, 1314.2], [2608.14, 1315.86], [2607.78, 1315.4], [2595.18, 1325.29], [2601.69, 1333.6], [2611.23, 1326.12], [2609.35, 1323.72], [2614.55, 1319.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2431.55, 1114.88], [2429.32, 1112.95], [2428.13, 1114.31], [2425.65, 1112.16], [2419.99, 1118.69], [2427.08, 1124.85], [2432.47, 1118.64], [2430.08, 1116.56], [2431.55, 1114.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2687.56, 1711.56], [2682.51, 1710.62], [2679.86, 1724.91], [2681.95, 1725.3], [2681.57, 1727.34], [2686.99, 1728.34], [2689.27, 1716.09], [2686.8, 1715.63], [2687.56, 1711.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2402.38, 1132.27], [2396.34, 1126.99], [2390.32, 1133.86], [2396.36, 1139.15], [2402.38, 1132.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2087.68, 1549.39], [2080.41, 1542.26], [2075.01, 1547.76], [2083.72, 1556.32], [2087.36, 1552.62], [2085.92, 1551.19], [2087.68, 1549.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2425.05, 1512.76], [2418.22, 1507.68], [2413.34, 1514.25], [2413.84, 1514.62], [2409.45, 1520.51], [2416.53, 1525.78], [2422.41, 1517.87], [2421.66, 1517.31], [2425.05, 1512.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2548.38, 1551.46], [2544.74, 1548.92], [2539.97, 1555.82], [2543.62, 1558.34], [2548.38, 1551.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2612.31, 1725.73], [2623.18, 1709.31], [2628.3, 1713.24], [2627.43, 1693.56], [2604.98, 1678.34], [2586.49, 1705.86], [2601.58, 1716.36], [2600.77, 1717.69], [2612.31, 1725.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.888, "pop": 444, "jobs": 0}}, {"shape": {"outer": [[2500.2, 1445.59], [2490.64, 1438.89], [2486.11, 1445.35], [2495.65, 1452.05], [2500.2, 1445.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1960.21, 1511.06], [1953.89, 1505.71], [1946.74, 1514.16], [1953.06, 1519.52], [1960.21, 1511.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2633.33, 1900.3], [2632.9, 1896.11], [2627.4, 1896.68], [2627.83, 1900.86], [2633.33, 1900.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2646.42, 1958.62], [2654.56, 1958.31], [2654.05, 1946.63], [2653.47, 1946.64], [2653.33, 1943.06], [2652.52, 1943.08], [2652.48, 1941.82], [2645.96, 1941.99], [2646.42, 1958.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2281.97, 1349.68], [2276.04, 1345.61], [2268.61, 1356.42], [2274.54, 1360.5], [2281.97, 1349.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2576.03, 1308.5], [2578.52, 1311.63], [2582.95, 1307.9], [2580.37, 1304.84], [2576.03, 1308.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2494.98, 1410.26], [2491.75, 1407.31], [2490.03, 1409.21], [2487.41, 1406.84], [2481.87, 1412.91], [2488.55, 1419.0], [2494.34, 1412.64], [2493.5, 1411.89], [2494.98, 1410.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2656.22, 1567.88], [2655.56, 1560.95], [2650.25, 1561.47], [2650.91, 1568.39], [2656.22, 1567.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2779.53, 1734.02], [2770.24, 1732.27], [2767.36, 1747.59], [2776.64, 1749.34], [2779.53, 1734.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2242.91, 1437.3], [2235.28, 1432.28], [2233.68, 1434.71], [2233.21, 1434.4], [2230.87, 1437.97], [2231.73, 1438.54], [2229.82, 1441.45], [2237.05, 1446.2], [2242.91, 1437.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2327.42, 1376.93], [2317.34, 1370.65], [2313.6, 1376.68], [2314.6, 1377.3], [2313.1, 1379.71], [2322.98, 1385.86], [2327.03, 1379.35], [2326.22, 1378.85], [2327.42, 1376.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1900.93, 1489.53], [1894.8, 1484.17], [1892.83, 1486.42], [1892.14, 1485.81], [1888.85, 1489.57], [1888.75, 1489.47], [1885.69, 1492.96], [1892.62, 1499.03], [1900.93, 1489.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2052.9, 1541.82], [2058.44, 1535.9], [2049.85, 1527.86], [2048.41, 1529.4], [2044.46, 1525.71], [2040.53, 1529.91], [2043.35, 1532.55], [2041.71, 1534.31], [2046.9, 1539.15], [2048.37, 1537.59], [2052.9, 1541.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2800.88, 1567.87], [2794.15, 1567.53], [2793.98, 1570.79], [2800.71, 1571.13], [2800.88, 1567.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2660.28, 1482.94], [2652.63, 1482.9], [2652.57, 1491.26], [2660.23, 1491.31], [2660.28, 1482.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2682.03, 1508.81], [2674.16, 1508.93], [2674.34, 1520.63], [2676.85, 1520.59], [2676.88, 1522.66], [2682.25, 1522.57], [2682.03, 1508.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2330.27, 1447.35], [2326.97, 1444.87], [2325.29, 1447.1], [2320.19, 1443.26], [2313.32, 1452.38], [2321.71, 1458.7], [2330.27, 1447.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2117.57, 1531.84], [2121.78, 1527.3], [2119.27, 1524.98], [2120.43, 1523.72], [2113.39, 1517.18], [2112.39, 1518.26], [2111.55, 1517.47], [2108.62, 1520.62], [2107.8, 1519.85], [2105.59, 1522.24], [2114.43, 1530.44], [2115.18, 1529.63], [2117.57, 1531.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2691.95, 1523.71], [2692.11, 1520.31], [2696.87, 1520.54], [2697.39, 1510.16], [2687.8, 1509.68], [2687.11, 1523.47], [2691.95, 1523.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2750.84, 1417.25], [2746.09, 1417.2], [2746.01, 1424.58], [2750.76, 1424.63], [2750.84, 1417.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2640.86, 1941.46], [2633.94, 1941.56], [2634.18, 1957.63], [2642.48, 1957.5], [2642.32, 1947.17], [2640.94, 1947.19], [2640.86, 1941.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2520.5, 1977.14], [2514.6, 1966.83], [2506.99, 1971.19], [2513.94, 1983.32], [2519.91, 1979.9], [2518.86, 1978.08], [2520.5, 1977.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2701.89, 1567.65], [2697.62, 1567.48], [2697.35, 1574.13], [2701.62, 1574.3], [2701.89, 1567.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2633.96, 1419.54], [2629.9, 1413.11], [2628.42, 1414.04], [2626.93, 1411.68], [2629.19, 1410.25], [2625.98, 1405.17], [2617.48, 1410.54], [2622.98, 1419.27], [2624.45, 1418.35], [2627.69, 1423.49], [2633.96, 1419.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2700.99, 1691.83], [2697.27, 1690.97], [2695.85, 1697.11], [2699.56, 1697.96], [2700.99, 1691.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2379.61, 1434.54], [2380.62, 1432.91], [2381.74, 1433.61], [2385.43, 1427.6], [2386.14, 1428.04], [2388.75, 1423.81], [2380.83, 1418.94], [2378.88, 1422.11], [2379.26, 1422.34], [2373.92, 1431.04], [2379.61, 1434.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2839.9, 1603.11], [2839.88, 1601.88], [2843.79, 1601.84], [2843.78, 1600.91], [2849.81, 1600.83], [2849.72, 1594.27], [2844.77, 1594.33], [2844.76, 1593.76], [2828.62, 1593.98], [2828.65, 1596.16], [2826.12, 1596.2], [2826.21, 1603.29], [2839.9, 1603.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[2221.3, 1375.65], [2215.83, 1372.15], [2215.03, 1373.41], [2213.17, 1372.21], [2205.97, 1383.48], [2213.31, 1388.17], [2221.3, 1375.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2462.67, 2032.06], [2458.81, 2024.9], [2449.0, 2030.19], [2452.85, 2037.35], [2462.67, 2032.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2848.92, 1682.17], [2849.38, 1679.87], [2850.71, 1680.14], [2852.96, 1669.0], [2844.69, 1667.33], [2844.11, 1670.19], [2843.16, 1670.0], [2841.5, 1678.21], [2843.57, 1678.63], [2843.09, 1681.0], [2848.92, 1682.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2423.81, 1107.99], [2418.25, 1103.59], [2412.59, 1110.75], [2418.15, 1115.15], [2423.81, 1107.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2834.54, 1752.36], [2830.92, 1751.7], [2830.78, 1752.46], [2826.5, 1751.67], [2824.55, 1762.3], [2833.67, 1763.98], [2835.66, 1753.16], [2834.43, 1752.94], [2834.54, 1752.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2157.53, 1363.05], [2162.26, 1359.03], [2161.27, 1357.88], [2162.05, 1357.22], [2156.42, 1350.59], [2150.53, 1355.59], [2156.08, 1362.13], [2156.47, 1361.79], [2157.53, 1363.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2475.12, 1206.33], [2472.82, 1202.78], [2469.72, 1204.79], [2468.06, 1202.23], [2462.28, 1205.98], [2466.95, 1213.19], [2473.22, 1209.12], [2472.51, 1208.03], [2475.12, 1206.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2748.68, 1744.89], [2748.95, 1742.87], [2750.49, 1743.07], [2752.14, 1730.75], [2746.61, 1730.01], [2746.3, 1732.26], [2742.68, 1731.77], [2741.38, 1741.52], [2746.01, 1742.14], [2745.69, 1744.49], [2748.68, 1744.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2404.88, 1517.96], [2406.58, 1515.57], [2408.85, 1517.17], [2416.04, 1507.02], [2408.38, 1501.6], [2403.96, 1507.85], [2404.71, 1508.39], [2400.25, 1514.68], [2404.88, 1517.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1924.19, 1501.52], [1922.08, 1499.38], [1917.77, 1503.64], [1919.87, 1505.78], [1924.19, 1501.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2407.7, 1480.68], [2404.19, 1478.23], [2400.67, 1483.27], [2404.18, 1485.72], [2407.7, 1480.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2851.8, 1473.82], [2842.36, 1473.44], [2841.82, 1486.82], [2851.27, 1487.2], [2851.8, 1473.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2417.59, 1269.07], [2412.75, 1264.5], [2408.83, 1268.68], [2413.79, 1273.34], [2417.59, 1269.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2572.29, 1965.71], [2572.06, 1961.89], [2566.14, 1962.24], [2566.37, 1966.06], [2572.29, 1965.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2309.09, 1195.2], [2305.03, 1191.4], [2300.36, 1196.39], [2304.42, 1200.19], [2309.09, 1195.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2499.56, 1232.03], [2494.86, 1225.42], [2482.73, 1234.05], [2485.9, 1238.5], [2484.97, 1239.15], [2486.51, 1241.32], [2499.56, 1232.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2580.5, 1319.74], [2576.84, 1315.24], [2572.35, 1318.86], [2576.0, 1323.36], [2580.5, 1319.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2138.18, 1502.22], [2132.03, 1495.6], [2130.13, 1497.36], [2129.07, 1496.23], [2127.32, 1497.84], [2128.67, 1499.28], [2126.75, 1501.06], [2132.63, 1507.37], [2138.18, 1502.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2692.46, 1631.74], [2692.91, 1628.77], [2688.51, 1628.11], [2688.07, 1630.96], [2685.64, 1630.6], [2683.96, 1641.73], [2693.48, 1643.16], [2695.14, 1632.14], [2692.46, 1631.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2595.96, 1955.15], [2595.64, 1945.64], [2589.26, 1945.85], [2589.31, 1947.05], [2587.51, 1947.11], [2587.79, 1955.43], [2595.96, 1955.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2694.16, 1767.22], [2690.24, 1766.19], [2688.63, 1772.24], [2692.56, 1773.28], [2694.16, 1767.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2836.82, 1554.63], [2827.37, 1554.34], [2827.06, 1564.43], [2836.51, 1564.73], [2836.82, 1554.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2082.76, 1508.11], [2088.55, 1502.33], [2083.82, 1497.74], [2084.31, 1497.21], [2076.02, 1489.39], [2075.04, 1490.4], [2074.25, 1489.63], [2071.08, 1493.03], [2071.76, 1493.73], [2070.13, 1495.52], [2082.76, 1508.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2386.0, 1439.97], [2388.44, 1436.43], [2392.91, 1439.51], [2398.03, 1432.07], [2394.53, 1429.66], [2395.41, 1428.38], [2390.94, 1425.3], [2382.51, 1437.56], [2386.0, 1439.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2283.64, 1379.89], [2276.83, 1375.33], [2275.84, 1376.81], [2272.88, 1374.84], [2270.81, 1377.93], [2273.55, 1379.76], [2271.88, 1382.27], [2278.9, 1386.96], [2282.83, 1381.1], [2283.64, 1379.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2251.57, 1395.29], [2244.89, 1390.42], [2242.61, 1393.55], [2242.24, 1393.28], [2240.08, 1396.25], [2240.58, 1396.62], [2238.27, 1399.78], [2239.88, 1400.95], [2238.22, 1403.23], [2243.16, 1406.84], [2251.57, 1395.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2919.47, 1445.64], [2919.71, 1440.55], [2922.63, 1440.68], [2922.95, 1433.8], [2918.22, 1433.59], [2918.36, 1430.75], [2910.88, 1430.41], [2910.19, 1445.21], [2919.47, 1445.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2508.0, 1265.85], [2515.74, 1259.69], [2511.35, 1254.17], [2502.74, 1261.04], [2504.68, 1263.48], [2505.56, 1262.78], [2508.0, 1265.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2613.26, 1958.96], [2609.15, 1958.92], [2609.09, 1965.75], [2613.19, 1965.79], [2613.26, 1958.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2179.73, 1313.24], [2175.94, 1308.28], [2169.81, 1312.96], [2173.6, 1317.92], [2179.73, 1313.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2148.24, 1306.98], [2152.02, 1304.0], [2153.14, 1305.44], [2155.75, 1303.4], [2144.71, 1289.34], [2138.32, 1294.35], [2148.24, 1306.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2109.77, 1554.89], [2104.89, 1550.73], [2101.24, 1555.03], [2106.12, 1559.18], [2109.77, 1554.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2610.03, 1507.48], [2610.04, 1506.31], [2612.72, 1506.34], [2612.77, 1501.62], [2609.02, 1501.59], [2609.02, 1500.45], [2606.87, 1500.42], [2606.86, 1501.82], [2603.16, 1501.78], [2603.12, 1505.75], [2604.4, 1505.76], [2604.38, 1507.42], [2610.03, 1507.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2314.96, 1159.29], [2311.15, 1155.89], [2307.34, 1160.16], [2311.14, 1163.57], [2314.96, 1159.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2593.45, 1293.17], [2587.54, 1285.95], [2576.76, 1294.75], [2582.68, 1301.99], [2593.45, 1293.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2648.09, 1887.17], [2647.68, 1879.88], [2646.09, 1879.97], [2646.02, 1878.8], [2636.53, 1879.34], [2637.0, 1887.8], [2648.09, 1887.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2857.81, 1628.16], [2857.6, 1621.85], [2850.31, 1622.1], [2850.52, 1628.41], [2857.81, 1628.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2381.17, 1222.2], [2377.11, 1218.48], [2374.24, 1221.6], [2378.3, 1225.32], [2381.17, 1222.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2456.35, 1579.86], [2449.61, 1575.44], [2442.41, 1586.44], [2449.15, 1590.85], [2456.35, 1579.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2577.54, 1861.12], [2570.43, 1859.26], [2568.84, 1865.34], [2575.95, 1867.2], [2577.54, 1861.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2856.97, 1504.25], [2853.14, 1504.02], [2852.63, 1513.06], [2856.45, 1513.28], [2856.97, 1504.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2478.65, 1297.5], [2483.55, 1293.53], [2485.47, 1295.91], [2487.54, 1294.23], [2481.72, 1287.03], [2474.73, 1292.67], [2478.65, 1297.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2703.13, 1546.93], [2700.86, 1546.87], [2700.48, 1562.54], [2709.48, 1562.75], [2709.85, 1547.66], [2703.12, 1547.49], [2703.13, 1546.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2650.78, 1402.15], [2643.66, 1401.63], [2643.09, 1409.27], [2650.23, 1409.79], [2650.78, 1402.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2776.75, 1510.76], [2770.22, 1510.43], [2769.48, 1524.79], [2776.0, 1525.13], [2776.75, 1510.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2547.29, 1295.52], [2545.0, 1292.16], [2542.82, 1293.65], [2540.53, 1290.27], [2532.68, 1295.6], [2534.15, 1297.76], [2533.51, 1298.19], [2536.62, 1302.77], [2547.29, 1295.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2797.39, 1589.21], [2797.44, 1588.04], [2799.05, 1588.11], [2799.1, 1586.68], [2800.39, 1586.74], [2800.59, 1581.84], [2798.22, 1581.75], [2798.31, 1579.69], [2783.68, 1579.08], [2783.63, 1580.53], [2779.5, 1580.35], [2779.32, 1584.87], [2781.18, 1584.95], [2781.04, 1588.13], [2783.2, 1588.22], [2783.18, 1588.62], [2797.39, 1589.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2154.91, 1363.62], [2148.21, 1354.89], [2141.62, 1359.96], [2148.31, 1368.68], [2154.91, 1363.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2828.65, 1525.09], [2832.26, 1525.26], [2832.27, 1526.08], [2834.83, 1526.13], [2834.86, 1525.37], [2837.32, 1525.44], [2837.65, 1515.28], [2836.72, 1515.26], [2836.76, 1513.41], [2833.37, 1513.35], [2833.37, 1512.82], [2829.75, 1512.81], [2829.69, 1515.14], [2828.94, 1515.13], [2828.65, 1525.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2378.73, 1064.65], [2370.55, 1057.2], [2361.61, 1067.01], [2369.8, 1074.47], [2378.73, 1064.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2521.75, 1394.19], [2518.05, 1390.53], [2513.77, 1394.86], [2517.46, 1398.51], [2521.75, 1394.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2718.64, 1711.24], [2715.13, 1710.47], [2713.85, 1716.4], [2717.35, 1717.16], [2718.64, 1711.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2659.02, 1380.77], [2662.37, 1373.21], [2663.83, 1373.86], [2666.05, 1368.86], [2657.18, 1364.93], [2651.62, 1377.5], [2659.02, 1380.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2597.02, 1833.13], [2608.05, 1836.09], [2612.35, 1819.89], [2601.34, 1817.14], [2597.02, 1833.13]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.121, "pop": 0, "jobs": 121}}, {"shape": {"outer": [[2814.39, 1713.99], [2814.61, 1712.62], [2816.4, 1712.9], [2816.94, 1709.51], [2817.79, 1709.64], [2819.22, 1700.74], [2810.63, 1699.36], [2810.05, 1702.98], [2808.67, 1702.75], [2807.98, 1707.05], [2809.15, 1707.24], [2808.56, 1710.95], [2810.77, 1711.31], [2810.44, 1713.36], [2814.39, 1713.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2386.02, 1104.05], [2382.4, 1100.53], [2378.2, 1104.84], [2381.82, 1108.37], [2386.02, 1104.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2492.84, 1532.06], [2487.97, 1528.53], [2485.98, 1531.29], [2486.92, 1531.98], [2484.85, 1534.85], [2488.78, 1537.69], [2492.84, 1532.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2676.9, 1381.97], [2677.0, 1378.94], [2679.22, 1379.01], [2679.4, 1373.36], [2676.57, 1373.28], [2676.62, 1371.77], [2668.24, 1371.51], [2667.91, 1381.68], [2676.9, 1381.97]], "holes": []}, "height": 3.5, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2506.23, 1391.4], [2507.87, 1389.72], [2509.43, 1391.25], [2518.07, 1382.42], [2517.0, 1381.38], [2518.91, 1379.42], [2515.56, 1376.14], [2513.5, 1378.24], [2511.9, 1376.67], [2506.55, 1382.12], [2506.23, 1381.81], [2502.67, 1385.45], [2503.89, 1386.65], [2502.65, 1387.9], [2506.23, 1391.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2771.6, 1597.85], [2771.62, 1604.2], [2777.92, 1604.31], [2778.0, 1597.96], [2771.6, 1597.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2296.31, 1443.22], [2298.08, 1440.59], [2299.08, 1441.27], [2305.96, 1431.03], [2299.52, 1426.72], [2303.15, 1421.3], [2296.91, 1417.11], [2293.72, 1421.88], [2298.4, 1425.02], [2291.1, 1435.9], [2292.18, 1436.61], [2290.41, 1439.25], [2296.31, 1443.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2441.85, 1493.52], [2436.9, 1489.76], [2432.73, 1495.22], [2437.69, 1498.99], [2441.85, 1493.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2758.5, 1639.08], [2752.79, 1638.1], [2749.77, 1655.57], [2757.36, 1656.88], [2759.37, 1645.25], [2757.49, 1644.92], [2758.5, 1639.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2466.85, 1430.07], [2459.42, 1425.23], [2455.21, 1431.69], [2462.63, 1436.54], [2466.85, 1430.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2408.92, 1295.68], [2410.55, 1293.47], [2411.38, 1294.08], [2415.77, 1288.08], [2415.1, 1287.59], [2417.8, 1283.9], [2414.25, 1281.29], [2412.67, 1283.44], [2410.91, 1282.16], [2409.26, 1284.41], [2408.41, 1283.79], [2402.93, 1291.28], [2408.92, 1295.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2270.14, 1216.85], [2265.06, 1212.01], [2260.39, 1216.93], [2265.46, 1221.76], [2270.14, 1216.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2490.69, 1521.34], [2482.89, 1515.52], [2479.73, 1519.34], [2480.58, 1519.97], [2478.35, 1522.96], [2485.5, 1528.29], [2490.69, 1521.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2575.18, 1904.49], [2566.75, 1902.26], [2564.38, 1911.19], [2571.05, 1912.95], [2570.6, 1914.64], [2574.36, 1915.64], [2576.18, 1908.75], [2574.19, 1908.22], [2575.18, 1904.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2665.94, 1678.7], [2655.99, 1676.16], [2654.59, 1681.67], [2655.69, 1681.95], [2654.82, 1685.39], [2663.67, 1687.64], [2665.94, 1678.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2686.97, 1434.32], [2687.12, 1430.46], [2680.26, 1430.12], [2679.83, 1438.69], [2686.73, 1439.03], [2686.97, 1434.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2852.79, 1739.56], [2846.59, 1738.27], [2845.33, 1744.39], [2851.53, 1745.67], [2852.79, 1739.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2936.51, 1485.65], [2930.32, 1484.62], [2929.35, 1490.56], [2935.53, 1491.58], [2936.51, 1485.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2844.5, 1580.73], [2827.0, 1579.84], [2826.67, 1586.29], [2831.45, 1586.52], [2831.26, 1590.38], [2843.97, 1591.03], [2844.5, 1580.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2503.15, 1309.3], [2498.4, 1302.75], [2488.31, 1310.06], [2493.07, 1316.62], [2503.15, 1309.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2290.2, 1358.12], [2283.96, 1353.71], [2278.43, 1361.53], [2284.68, 1365.94], [2290.2, 1358.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2691.04, 1567.28], [2683.21, 1566.89], [2682.58, 1579.62], [2690.41, 1580.02], [2691.04, 1567.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2881.38, 1643.35], [2871.21, 1641.25], [2869.44, 1649.74], [2881.96, 1652.35], [2883.39, 1645.48], [2881.05, 1644.99], [2881.38, 1643.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2620.93, 1943.9], [2621.34, 1958.77], [2629.47, 1958.55], [2629.18, 1943.67], [2620.93, 1943.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2336.43, 1498.16], [2329.43, 1493.3], [2320.97, 1505.47], [2324.29, 1507.78], [2323.84, 1508.42], [2327.52, 1510.99], [2336.43, 1498.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2904.69, 1435.1], [2905.06, 1430.49], [2900.09, 1430.11], [2899.75, 1434.49], [2894.65, 1434.08], [2893.97, 1442.76], [2898.14, 1443.09], [2898.0, 1444.86], [2907.77, 1445.63], [2908.57, 1435.42], [2904.69, 1435.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2740.46, 1516.04], [2730.77, 1515.47], [2730.11, 1526.7], [2739.8, 1527.27], [2740.46, 1516.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2653.52, 2094.51], [2648.54, 2087.02], [2641.99, 2091.38], [2646.97, 2098.86], [2653.52, 2094.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2509.03, 1506.78], [2505.19, 1504.1], [2501.19, 1509.81], [2505.04, 1512.49], [2509.03, 1506.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2253.93, 1349.65], [2262.24, 1337.44], [2257.7, 1334.35], [2254.39, 1339.21], [2253.85, 1338.85], [2248.85, 1346.19], [2253.93, 1349.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2572.79, 1475.56], [2564.11, 1471.1], [2561.47, 1476.21], [2570.15, 1480.68], [2572.79, 1475.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2500.24, 1615.19], [2493.54, 1610.51], [2487.87, 1618.64], [2494.56, 1623.31], [2500.24, 1615.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2957.92, 1520.92], [2940.33, 1517.24], [2938.74, 1524.88], [2942.67, 1525.7], [2942.26, 1527.69], [2955.91, 1530.54], [2957.92, 1520.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2590.19, 1355.56], [2587.79, 1352.3], [2585.69, 1353.86], [2583.6, 1351.03], [2576.54, 1356.25], [2581.02, 1362.32], [2590.19, 1355.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2865.54, 1475.24], [2856.48, 1474.57], [2855.74, 1484.43], [2864.8, 1485.1], [2865.54, 1475.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2254.5, 1381.95], [2250.18, 1379.21], [2246.88, 1384.42], [2251.2, 1387.15], [2254.5, 1381.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1910.84, 1492.58], [1906.1, 1488.56], [1902.92, 1492.32], [1901.71, 1491.3], [1893.81, 1500.62], [1900.7, 1506.46], [1908.4, 1497.38], [1907.45, 1496.57], [1910.84, 1492.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1950.9, 1436.98], [1944.91, 1430.29], [1943.37, 1431.65], [1941.59, 1429.68], [1936.8, 1433.97], [1945.49, 1443.66], [1948.55, 1440.92], [1947.64, 1439.9], [1950.9, 1436.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2687.03, 1380.49], [2687.18, 1378.19], [2684.64, 1378.02], [2684.53, 1379.54], [2680.87, 1379.3], [2679.77, 1395.57], [2690.42, 1396.28], [2691.47, 1380.78], [2687.03, 1380.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2755.35, 1496.9], [2748.87, 1496.63], [2748.59, 1503.36], [2755.07, 1503.64], [2755.35, 1496.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2449.48, 1415.24], [2442.45, 1410.67], [2440.71, 1413.36], [2439.98, 1412.88], [2437.59, 1416.56], [2438.21, 1416.95], [2434.77, 1422.25], [2441.93, 1426.88], [2449.48, 1415.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2598.32, 1345.76], [2594.21, 1339.95], [2586.69, 1345.3], [2590.8, 1351.1], [2598.32, 1345.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2403.7, 1280.96], [2407.9, 1276.57], [2404.01, 1272.85], [2400.11, 1276.91], [2399.2, 1276.04], [2392.01, 1283.55], [2397.78, 1289.08], [2404.68, 1281.88], [2403.7, 1280.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2546.82, 1595.39], [2541.56, 1591.95], [2539.85, 1594.56], [2537.87, 1593.26], [2530.46, 1604.59], [2537.71, 1609.33], [2546.82, 1595.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2563.14, 1491.21], [2559.18, 1488.59], [2550.44, 1501.75], [2557.42, 1506.39], [2564.98, 1495.01], [2561.95, 1493.0], [2563.14, 1491.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2497.26, 1191.37], [2501.5, 1187.8], [2499.59, 1185.54], [2501.06, 1184.31], [2493.21, 1175.02], [2484.6, 1182.27], [2490.18, 1188.88], [2491.65, 1187.64], [2494.0, 1190.43], [2495.45, 1189.22], [2497.26, 1191.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2599.23, 1989.96], [2598.75, 1982.87], [2595.93, 1983.06], [2595.74, 1980.4], [2580.7, 1980.77], [2580.91, 1990.22], [2599.23, 1989.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2848.76, 1802.9], [2839.4, 1800.98], [2837.91, 1808.25], [2850.47, 1810.83], [2851.82, 1804.24], [2848.61, 1803.58], [2848.76, 1802.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2399.35, 1472.89], [2395.82, 1470.54], [2391.84, 1476.49], [2395.37, 1478.85], [2399.35, 1472.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2899.58, 1504.84], [2893.45, 1504.55], [2893.17, 1510.63], [2899.29, 1510.92], [2899.58, 1504.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2652.31, 1666.32], [2660.53, 1668.52], [2660.2, 1669.76], [2664.02, 1670.78], [2664.35, 1669.56], [2665.47, 1669.86], [2668.18, 1659.74], [2663.13, 1658.39], [2663.24, 1658.01], [2660.24, 1657.21], [2660.16, 1657.52], [2655.04, 1656.15], [2652.31, 1666.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2906.16, 1496.51], [2901.5, 1496.25], [2901.13, 1502.58], [2905.79, 1502.84], [2906.16, 1496.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2081.38, 1510.84], [2071.15, 1501.27], [2065.78, 1507.01], [2076.02, 1516.58], [2081.38, 1510.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2491.37, 1358.89], [2485.58, 1353.54], [2477.67, 1362.08], [2483.46, 1367.45], [2491.37, 1358.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2751.84, 1527.11], [2751.99, 1511.94], [2744.38, 1511.87], [2744.35, 1514.92], [2742.98, 1514.91], [2742.86, 1527.03], [2751.84, 1527.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2719.75, 1757.96], [2711.36, 1755.77], [2707.96, 1768.75], [2716.35, 1770.94], [2719.75, 1757.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2358.96, 1512.63], [2356.17, 1510.74], [2355.38, 1511.89], [2353.13, 1510.37], [2349.29, 1516.06], [2356.17, 1520.71], [2360.03, 1515.01], [2358.19, 1513.76], [2358.96, 1512.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2879.04, 1503.8], [2874.1, 1503.24], [2873.35, 1509.99], [2878.27, 1510.54], [2879.04, 1503.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2527.35, 1255.78], [2524.25, 1251.37], [2519.39, 1254.78], [2522.47, 1259.2], [2527.35, 1255.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2391.63, 1204.73], [2386.44, 1199.65], [2383.92, 1202.22], [2389.11, 1207.3], [2391.63, 1204.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2356.4, 1341.78], [2346.09, 1335.06], [2340.34, 1343.89], [2350.98, 1350.83], [2353.83, 1346.46], [2353.49, 1346.23], [2356.4, 1341.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2803.91, 1566.12], [2804.23, 1552.74], [2802.77, 1552.7], [2802.81, 1551.1], [2796.44, 1550.96], [2796.39, 1553.4], [2794.03, 1553.36], [2793.73, 1565.88], [2803.91, 1566.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2526.34, 1380.5], [2522.72, 1376.78], [2518.27, 1381.11], [2521.9, 1384.83], [2526.34, 1380.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2576.72, 1421.63], [2570.16, 1412.19], [2567.61, 1413.97], [2566.29, 1412.06], [2561.88, 1415.12], [2570.06, 1426.9], [2574.61, 1423.73], [2574.31, 1423.3], [2576.72, 1421.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2686.55, 1497.18], [2681.26, 1497.05], [2681.08, 1504.1], [2686.39, 1504.23], [2686.55, 1497.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2366.98, 1475.96], [2360.02, 1471.19], [2355.07, 1478.4], [2358.39, 1480.69], [2356.78, 1483.04], [2360.41, 1485.52], [2366.98, 1475.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2401.46, 1381.93], [2395.05, 1377.7], [2393.79, 1379.6], [2391.88, 1378.34], [2389.7, 1381.65], [2390.84, 1382.39], [2387.93, 1386.81], [2389.04, 1387.54], [2387.81, 1389.4], [2393.9, 1393.41], [2401.46, 1381.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2211.29, 1362.93], [2203.71, 1357.63], [2198.84, 1364.6], [2206.43, 1369.9], [2211.29, 1362.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2297.89, 1178.86], [2293.16, 1174.91], [2290.67, 1177.9], [2295.39, 1181.85], [2297.89, 1178.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2542.51, 1465.78], [2536.57, 1462.05], [2531.98, 1469.35], [2537.93, 1473.08], [2542.51, 1465.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2288.53, 1178.6], [2273.63, 1164.67], [2266.98, 1171.78], [2281.88, 1185.71], [2288.53, 1178.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2535.86, 1289.75], [2531.17, 1283.18], [2525.65, 1287.13], [2527.77, 1290.1], [2525.21, 1291.93], [2527.77, 1295.53], [2535.86, 1289.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2554.01, 1325.11], [2562.72, 1318.43], [2560.85, 1315.98], [2564.02, 1313.54], [2561.44, 1310.17], [2558.94, 1312.09], [2557.64, 1310.41], [2548.9, 1317.12], [2549.95, 1318.49], [2548.66, 1319.48], [2550.21, 1321.49], [2548.92, 1322.47], [2549.67, 1323.44], [2551.59, 1321.97], [2554.01, 1325.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2202.24, 1327.83], [2194.57, 1318.0], [2187.44, 1323.56], [2195.12, 1333.4], [2202.24, 1327.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2131.65, 1533.18], [2126.82, 1528.32], [2121.06, 1534.03], [2125.89, 1538.9], [2131.65, 1533.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2649.66, 1896.72], [2649.45, 1893.13], [2647.66, 1893.24], [2647.42, 1888.93], [2638.01, 1889.48], [2638.47, 1897.37], [2649.66, 1896.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2667.92, 1547.21], [2658.06, 1546.83], [2657.58, 1559.31], [2667.44, 1559.7], [2667.92, 1547.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2419.06, 1395.44], [2413.36, 1391.46], [2406.4, 1401.45], [2412.1, 1405.43], [2419.06, 1395.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2016.42, 1519.01], [2014.99, 1517.67], [2016.46, 1516.1], [2007.61, 1507.83], [2002.76, 1513.03], [2010.36, 1520.13], [2011.45, 1518.96], [2014.12, 1521.46], [2016.42, 1519.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2804.35, 1499.64], [2797.29, 1499.39], [2797.14, 1503.78], [2804.19, 1504.04], [2804.35, 1499.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2379.81, 1308.29], [2373.96, 1303.11], [2369.69, 1307.93], [2375.53, 1313.1], [2379.81, 1308.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2835.83, 1618.3], [2835.84, 1615.47], [2827.96, 1615.46], [2827.95, 1617.04], [2824.92, 1617.03], [2824.91, 1621.95], [2827.58, 1621.96], [2827.58, 1623.94], [2836.76, 1623.95], [2836.78, 1618.29], [2835.83, 1618.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2144.96, 1311.29], [2140.96, 1306.34], [2142.52, 1305.08], [2136.21, 1297.26], [2128.91, 1303.14], [2135.27, 1311.02], [2136.25, 1310.22], [2140.2, 1315.13], [2144.96, 1311.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2261.64, 1225.4], [2257.42, 1221.85], [2252.94, 1227.18], [2257.16, 1230.73], [2261.64, 1225.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2609.87, 1398.99], [2616.75, 1393.93], [2615.45, 1392.16], [2618.19, 1390.15], [2614.96, 1385.75], [2605.74, 1392.55], [2607.53, 1394.98], [2605.63, 1396.39], [2606.71, 1397.85], [2608.22, 1396.74], [2609.87, 1398.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2738.94, 1548.49], [2731.46, 1548.14], [2730.69, 1564.74], [2738.17, 1565.08], [2738.94, 1548.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2307.34, 1168.13], [2302.94, 1164.34], [2298.94, 1168.98], [2303.34, 1172.77], [2307.34, 1168.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1972.49, 1529.15], [1967.27, 1524.84], [1963.18, 1529.79], [1968.41, 1534.1], [1972.49, 1529.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2883.2, 1630.74], [2883.43, 1629.56], [2886.31, 1630.13], [2887.66, 1623.39], [2871.56, 1620.16], [2869.97, 1628.09], [2883.2, 1630.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2469.12, 2091.1], [2461.84, 2084.2], [2457.35, 2088.94], [2464.63, 2095.83], [2469.12, 2091.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2528.68, 1464.35], [2521.71, 1459.5], [2516.79, 1466.56], [2523.76, 1471.41], [2528.68, 1464.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2808.32, 1434.37], [2808.34, 1432.38], [2811.06, 1432.4], [2811.1, 1426.58], [2808.42, 1426.56], [2808.42, 1425.13], [2796.08, 1425.05], [2796.02, 1434.29], [2808.32, 1434.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2516.78, 2031.62], [2513.72, 2027.0], [2512.27, 2027.95], [2510.49, 2025.27], [2502.47, 2030.55], [2507.3, 2037.88], [2516.78, 2031.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2902.74, 1532.71], [2902.83, 1529.67], [2903.83, 1529.7], [2904.26, 1514.65], [2896.68, 1514.44], [2896.63, 1516.2], [2894.96, 1516.14], [2894.58, 1529.45], [2895.56, 1529.46], [2895.47, 1532.5], [2902.74, 1532.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2325.11, 1490.71], [2319.23, 1486.68], [2317.88, 1488.65], [2316.74, 1487.88], [2311.83, 1495.09], [2318.86, 1499.87], [2325.11, 1490.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2869.75, 1443.73], [2869.91, 1441.53], [2872.73, 1441.76], [2873.27, 1434.72], [2869.7, 1434.45], [2870.02, 1430.18], [2864.94, 1429.8], [2864.71, 1432.84], [2862.06, 1432.64], [2861.26, 1443.08], [2869.75, 1443.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2398.49, 1559.97], [2407.81, 1545.99], [2400.18, 1540.89], [2389.59, 1556.76], [2394.53, 1560.05], [2395.79, 1558.16], [2398.49, 1559.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2722.55, 1616.21], [2712.14, 1614.22], [2710.54, 1622.54], [2720.94, 1624.55], [2722.55, 1616.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2391.17, 1451.45], [2397.2, 1443.12], [2393.94, 1440.76], [2391.6, 1443.98], [2388.56, 1441.78], [2385.69, 1445.71], [2388.82, 1447.98], [2387.98, 1449.14], [2391.17, 1451.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2806.88, 1414.56], [2806.96, 1411.87], [2797.82, 1411.59], [2797.76, 1413.51], [2796.33, 1413.47], [2796.09, 1421.42], [2808.8, 1421.81], [2809.03, 1414.62], [2806.88, 1414.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2517.12, 1477.1], [2524.07, 1481.94], [2528.21, 1475.92], [2521.36, 1471.17], [2517.12, 1477.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2420.82, 1148.18], [2417.2, 1144.84], [2415.96, 1146.17], [2413.23, 1143.65], [2406.64, 1150.77], [2412.99, 1156.64], [2420.82, 1148.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2490.46, 1515.0], [2494.77, 1508.79], [2488.04, 1504.14], [2482.82, 1511.68], [2484.66, 1512.97], [2485.59, 1511.63], [2490.46, 1515.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2214.18, 1289.12], [2209.67, 1282.99], [2207.57, 1284.52], [2206.87, 1283.58], [2202.14, 1287.04], [2203.22, 1288.52], [2201.79, 1289.58], [2205.89, 1295.19], [2214.18, 1289.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2622.78, 1338.27], [2621.36, 1336.54], [2624.1, 1334.3], [2620.56, 1329.96], [2619.36, 1330.93], [2616.11, 1326.95], [2611.78, 1330.48], [2610.5, 1328.9], [2604.88, 1333.49], [2609.49, 1339.15], [2612.19, 1336.96], [2613.88, 1339.03], [2614.89, 1338.21], [2618.07, 1342.12], [2622.78, 1338.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2339.02, 1512.31], [2341.61, 1508.38], [2343.26, 1509.46], [2345.62, 1505.87], [2342.04, 1503.51], [2342.58, 1502.68], [2338.57, 1500.05], [2334.92, 1505.62], [2335.87, 1506.25], [2334.04, 1509.04], [2339.02, 1512.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1883.71, 1482.57], [1880.22, 1477.08], [1877.7, 1478.68], [1875.52, 1475.26], [1869.09, 1479.37], [1875.44, 1489.35], [1881.91, 1485.23], [1881.22, 1484.15], [1883.71, 1482.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2870.04, 1579.87], [2869.82, 1573.15], [2863.51, 1573.36], [2863.73, 1580.08], [2870.04, 1579.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2744.01, 1783.66], [2738.49, 1782.06], [2736.87, 1787.61], [2742.38, 1789.22], [2744.01, 1783.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2192.42, 1336.19], [2183.34, 1324.79], [2179.48, 1327.87], [2180.9, 1329.64], [2178.61, 1331.47], [2186.27, 1341.08], [2192.42, 1336.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2593.97, 1484.47], [2593.85, 1480.62], [2587.86, 1480.82], [2588.0, 1484.67], [2593.97, 1484.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2405.67, 1094.12], [2398.32, 1087.64], [2392.84, 1093.86], [2400.19, 1100.34], [2405.67, 1094.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2439.92, 1408.42], [2433.2, 1403.81], [2426.63, 1413.38], [2433.36, 1418.0], [2439.92, 1408.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2788.41, 1490.81], [2783.74, 1490.71], [2783.61, 1496.53], [2788.28, 1496.64], [2788.41, 1490.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2545.88, 1265.89], [2541.68, 1260.61], [2536.33, 1264.88], [2540.52, 1270.15], [2545.88, 1265.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2125.33, 1551.31], [2127.6, 1549.07], [2128.07, 1549.53], [2130.0, 1547.5], [2125.44, 1543.01], [2121.27, 1547.24], [2125.33, 1551.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2445.41, 1572.0], [2441.34, 1569.18], [2439.7, 1571.56], [2438.63, 1570.82], [2431.21, 1581.55], [2434.84, 1584.06], [2434.17, 1585.02], [2437.55, 1587.35], [2446.09, 1575.02], [2444.21, 1573.72], [2445.41, 1572.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2796.73, 1631.75], [2783.83, 1629.15], [2781.92, 1638.67], [2797.27, 1641.76], [2798.7, 1634.7], [2796.24, 1634.2], [2796.73, 1631.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2634.97, 2077.08], [2639.96, 2074.03], [2638.77, 2072.09], [2640.27, 2071.17], [2635.86, 2063.97], [2628.02, 2068.76], [2632.16, 2075.54], [2633.52, 2074.71], [2634.97, 2077.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2579.15, 1480.52], [2576.02, 1479.49], [2574.01, 1485.63], [2577.15, 1486.65], [2579.15, 1480.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2593.22, 1382.14], [2595.55, 1380.23], [2596.06, 1380.85], [2602.84, 1375.29], [2602.43, 1374.78], [2605.72, 1372.1], [2601.86, 1367.39], [2599.63, 1369.22], [2598.34, 1367.65], [2590.63, 1373.95], [2591.43, 1374.93], [2588.97, 1376.94], [2593.22, 1382.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2795.14, 1408.01], [2787.77, 1407.38], [2787.19, 1414.29], [2794.55, 1414.92], [2795.14, 1408.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2672.88, 1441.56], [2673.68, 1428.74], [2666.51, 1428.29], [2666.39, 1430.3], [2665.26, 1430.23], [2664.58, 1441.03], [2672.88, 1441.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2597.19, 1465.58], [2600.67, 1464.09], [2601.2, 1465.33], [2611.56, 1460.89], [2611.15, 1459.9], [2613.29, 1458.99], [2610.36, 1452.16], [2597.4, 1457.71], [2597.73, 1458.47], [2594.7, 1459.76], [2597.19, 1465.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2581.07, 1320.36], [2576.34, 1324.05], [2580.7, 1329.6], [2585.43, 1325.92], [2581.07, 1320.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2174.31, 1285.49], [2165.93, 1274.34], [2165.11, 1274.95], [2164.11, 1273.62], [2158.14, 1278.1], [2167.51, 1290.58], [2174.31, 1285.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2767.84, 1468.94], [2758.35, 1468.63], [2758.05, 1478.13], [2760.85, 1478.22], [2760.75, 1481.2], [2767.44, 1481.42], [2767.84, 1468.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2704.76, 1631.02], [2697.36, 1629.56], [2694.83, 1642.27], [2702.23, 1643.74], [2704.76, 1631.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2520.32, 1971.81], [2536.51, 1962.38], [2532.38, 1955.29], [2522.2, 1961.22], [2524.27, 1964.78], [2522.71, 1965.69], [2521.43, 1963.48], [2516.97, 1966.07], [2520.32, 1971.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2621.72, 1846.0], [2622.34, 1859.71], [2633.76, 1859.13], [2633.72, 1857.84], [2635.57, 1857.76], [2635.6, 1858.36], [2647.62, 1857.67], [2647.53, 1855.8], [2648.14, 1855.77], [2647.9, 1851.15], [2647.28, 1851.15], [2646.96, 1845.09], [2648.78, 1845.01], [2648.67, 1841.7], [2647.35, 1841.76], [2647.21, 1837.68], [2646.59, 1837.73], [2646.37, 1834.65], [2626.94, 1830.34], [2627.78, 1845.66], [2621.72, 1846.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.474, "pop": 237, "jobs": 0}}, {"shape": {"outer": [[2774.52, 1489.62], [2770.3, 1489.39], [2769.95, 1495.88], [2774.16, 1496.11], [2774.52, 1489.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2579.44, 1871.65], [2568.65, 1869.52], [2567.44, 1875.65], [2569.29, 1876.02], [2568.89, 1878.1], [2574.25, 1879.15], [2573.91, 1880.89], [2578.81, 1881.86], [2579.35, 1879.08], [2578.02, 1878.82], [2579.44, 1871.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2655.37, 1521.01], [2655.66, 1513.8], [2656.26, 1513.83], [2656.54, 1506.89], [2654.95, 1506.82], [2655.05, 1504.43], [2647.76, 1504.13], [2647.18, 1518.59], [2650.18, 1518.7], [2650.1, 1520.81], [2655.37, 1521.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2492.91, 1919.77], [2489.86, 1913.48], [2486.69, 1915.03], [2485.56, 1912.69], [2482.79, 1914.04], [2486.98, 1922.66], [2492.91, 1919.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2529.88, 1348.25], [2525.35, 1342.07], [2514.79, 1349.81], [2519.31, 1355.98], [2529.88, 1348.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2800.85, 1602.04], [2801.58, 1592.06], [2787.31, 1591.04], [2787.17, 1592.91], [2782.04, 1592.54], [2781.46, 1600.65], [2800.85, 1602.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2661.52, 2055.88], [2660.62, 2049.47], [2646.35, 2051.45], [2647.25, 2057.87], [2661.52, 2055.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2556.21, 1253.65], [2547.99, 1243.43], [2540.86, 1249.17], [2545.95, 1255.49], [2544.13, 1256.97], [2547.25, 1260.85], [2556.21, 1253.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2645.42, 1864.47], [2635.49, 1864.83], [2635.56, 1866.87], [2633.86, 1866.93], [2634.07, 1872.99], [2636.11, 1872.91], [2636.19, 1874.89], [2646.12, 1874.53], [2646.1, 1873.92], [2647.46, 1873.87], [2647.16, 1865.57], [2645.46, 1865.63], [2645.42, 1864.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2436.48, 1163.16], [2431.84, 1159.2], [2424.27, 1168.07], [2430.57, 1173.45], [2436.43, 1166.6], [2434.76, 1165.16], [2436.48, 1163.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2475.89, 1339.82], [2469.47, 1334.26], [2458.43, 1347.02], [2464.84, 1352.58], [2475.89, 1339.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2634.48, 2122.41], [2630.67, 2116.53], [2629.12, 2117.54], [2628.58, 2116.71], [2626.09, 2118.32], [2625.23, 2116.99], [2622.0, 2119.07], [2622.56, 2119.92], [2621.01, 2120.93], [2625.66, 2128.11], [2634.48, 2122.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2136.53, 1531.87], [2142.58, 1538.11], [2154.93, 1526.14], [2148.88, 1519.9], [2136.53, 1531.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2600.62, 1302.06], [2594.89, 1294.99], [2584.43, 1303.45], [2590.17, 1310.54], [2600.62, 1302.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2631.28, 1363.1], [2634.89, 1360.11], [2635.01, 1360.26], [2639.38, 1356.62], [2639.59, 1356.87], [2643.36, 1353.76], [2638.65, 1348.09], [2635.88, 1350.39], [2634.65, 1348.91], [2630.58, 1352.29], [2631.63, 1353.55], [2626.74, 1357.61], [2631.28, 1363.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2276.31, 1391.11], [2266.61, 1385.18], [2263.15, 1390.84], [2264.28, 1391.53], [2263.44, 1392.91], [2274.07, 1399.4], [2277.73, 1393.41], [2275.67, 1392.14], [2276.31, 1391.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2618.13, 1869.49], [2624.06, 1869.28], [2623.87, 1863.83], [2617.93, 1864.02], [2618.13, 1869.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2578.82, 1451.54], [2572.78, 1440.43], [2566.7, 1443.73], [2572.73, 1454.85], [2578.82, 1451.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2710.58, 1587.3], [2714.87, 1587.42], [2714.92, 1583.96], [2710.59, 1583.81], [2710.58, 1587.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[2770.88, 1773.16], [2762.69, 1771.36], [2760.3, 1782.22], [2762.63, 1782.73], [2762.0, 1785.57], [2767.87, 1786.86], [2770.88, 1773.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2420.62, 1244.61], [2416.73, 1239.17], [2411.44, 1242.96], [2415.33, 1248.39], [2420.62, 1244.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2220.79, 1360.92], [2221.94, 1359.06], [2224.08, 1360.39], [2225.5, 1358.1], [2223.74, 1357.01], [2225.53, 1354.12], [2216.64, 1348.61], [2214.7, 1351.74], [2213.28, 1350.86], [2210.87, 1354.77], [2220.79, 1360.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2791.98, 1511.34], [2782.92, 1511.19], [2782.66, 1527.68], [2791.71, 1527.82], [2791.98, 1511.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2550.62, 1375.41], [2548.49, 1372.45], [2546.75, 1373.71], [2545.92, 1372.54], [2538.35, 1378.01], [2542.9, 1384.33], [2550.12, 1379.11], [2548.54, 1376.91], [2550.62, 1375.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2840.02, 1723.17], [2840.65, 1719.36], [2843.08, 1719.76], [2845.49, 1705.03], [2836.43, 1703.55], [2834.16, 1717.42], [2835.86, 1717.69], [2835.11, 1722.36], [2840.02, 1723.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2666.89, 1623.34], [2667.46, 1620.58], [2663.49, 1619.78], [2662.89, 1622.79], [2660.68, 1622.34], [2658.5, 1633.07], [2667.08, 1634.82], [2669.32, 1623.84], [2666.89, 1623.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2437.14, 1455.64], [2430.07, 1450.62], [2421.93, 1462.13], [2429.32, 1467.36], [2435.94, 1458.0], [2435.63, 1457.78], [2437.14, 1455.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2351.82, 1440.16], [2346.03, 1436.16], [2340.91, 1443.55], [2346.85, 1447.66], [2346.47, 1448.22], [2352.08, 1452.1], [2356.15, 1446.23], [2350.38, 1442.24], [2351.82, 1440.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2370.71, 1363.6], [2372.32, 1361.33], [2369.39, 1359.25], [2367.72, 1361.62], [2366.57, 1360.8], [2362.57, 1366.43], [2368.04, 1370.31], [2372.1, 1364.58], [2370.71, 1363.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2260.92, 1448.58], [2254.57, 1444.25], [2248.83, 1452.66], [2255.19, 1456.99], [2260.92, 1448.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2487.4, 1433.39], [2482.28, 1429.71], [2478.06, 1435.58], [2483.18, 1439.26], [2487.4, 1433.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2427.17, 1559.69], [2421.32, 1555.92], [2420.08, 1557.85], [2419.28, 1557.33], [2412.17, 1568.36], [2420.03, 1573.43], [2427.63, 1561.64], [2426.42, 1560.85], [2427.17, 1559.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2835.39, 1649.9], [2823.68, 1647.91], [2822.61, 1654.19], [2834.33, 1656.17], [2835.39, 1649.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2481.5, 1285.52], [2474.89, 1277.2], [2472.33, 1279.24], [2473.94, 1281.27], [2468.89, 1285.29], [2473.89, 1291.57], [2481.5, 1285.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2360.5, 1456.17], [2357.03, 1453.38], [2353.1, 1458.27], [2356.56, 1461.06], [2360.5, 1456.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2854.77, 1442.8], [2854.86, 1435.91], [2857.9, 1435.95], [2858.01, 1428.25], [2848.15, 1428.13], [2848.12, 1430.82], [2846.36, 1430.8], [2846.27, 1438.1], [2847.86, 1438.12], [2847.8, 1442.72], [2854.77, 1442.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2612.01, 1499.11], [2611.74, 1491.01], [2602.24, 1491.32], [2602.51, 1499.43], [2612.01, 1499.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2624.89, 1363.14], [2621.31, 1358.47], [2615.72, 1362.76], [2619.3, 1367.44], [2624.89, 1363.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2561.63, 1473.64], [2556.21, 1470.81], [2553.21, 1476.58], [2558.63, 1479.4], [2561.63, 1473.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2473.3, 1592.04], [2468.26, 1588.37], [2461.75, 1597.3], [2464.52, 1599.31], [2463.18, 1601.17], [2468.21, 1604.83], [2472.26, 1599.26], [2470.81, 1598.2], [2473.19, 1594.91], [2471.9, 1593.97], [2473.3, 1592.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2647.47, 1493.23], [2639.61, 1493.26], [2639.63, 1498.75], [2642.15, 1498.74], [2642.17, 1501.16], [2647.5, 1501.13], [2647.47, 1493.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2079.3, 1469.85], [2074.84, 1465.54], [2072.05, 1468.42], [2076.52, 1472.73], [2079.3, 1469.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2606.04, 1353.37], [2602.03, 1347.69], [2596.67, 1351.48], [2600.67, 1357.15], [2606.04, 1353.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2521.5, 1932.37], [2517.54, 1925.74], [2514.91, 1927.31], [2510.17, 1919.38], [2508.83, 1920.17], [2506.71, 1916.63], [2501.91, 1919.48], [2512.73, 1937.57], [2521.5, 1932.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2828.11, 1663.25], [2819.95, 1661.88], [2818.15, 1672.63], [2826.31, 1673.99], [2828.11, 1663.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2313.83, 1400.67], [2304.11, 1394.44], [2300.56, 1399.98], [2310.28, 1406.21], [2313.83, 1400.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2567.01, 2018.29], [2562.9, 2011.25], [2556.37, 2015.06], [2555.13, 2012.94], [2549.07, 2016.47], [2549.45, 2017.12], [2545.92, 2019.19], [2550.88, 2027.69], [2567.01, 2018.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2298.93, 1362.59], [2291.98, 1358.04], [2287.06, 1365.55], [2294.0, 1370.1], [2298.93, 1362.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2661.06, 1743.12], [2653.07, 1742.84], [2652.7, 1753.49], [2660.7, 1753.77], [2661.06, 1743.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2245.25, 1270.76], [2240.33, 1265.84], [2235.86, 1270.3], [2240.78, 1275.22], [2245.25, 1270.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2508.64, 1365.79], [2505.46, 1363.34], [2501.69, 1368.22], [2504.87, 1370.68], [2508.64, 1365.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2411.54, 1570.86], [2408.48, 1568.93], [2405.66, 1573.42], [2408.72, 1575.34], [2411.54, 1570.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2536.82, 1528.04], [2529.99, 1523.08], [2522.47, 1533.41], [2529.3, 1538.38], [2536.82, 1528.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2448.39, 1481.33], [2454.52, 1471.98], [2453.63, 1471.39], [2455.98, 1467.79], [2449.96, 1463.85], [2448.39, 1466.25], [2447.35, 1465.58], [2440.75, 1475.64], [2442.86, 1477.03], [2441.65, 1478.89], [2445.31, 1481.28], [2446.22, 1479.9], [2448.39, 1481.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2612.42, 1379.3], [2608.16, 1374.17], [2604.23, 1377.43], [2603.42, 1376.46], [2596.6, 1382.14], [2603.09, 1389.95], [2610.02, 1384.2], [2608.59, 1382.47], [2612.42, 1379.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2694.37, 1751.38], [2688.23, 1749.62], [2685.12, 1760.49], [2692.46, 1762.59], [2694.83, 1754.28], [2693.65, 1753.94], [2694.37, 1751.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2241.66, 1389.61], [2234.69, 1384.69], [2233.04, 1387.04], [2232.16, 1386.43], [2229.81, 1389.77], [2231.04, 1390.64], [2229.27, 1393.16], [2231.02, 1394.39], [2229.73, 1396.21], [2234.6, 1399.64], [2241.66, 1389.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2507.07, 1252.76], [2503.25, 1247.73], [2496.46, 1252.88], [2500.27, 1257.91], [2507.07, 1252.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2766.62, 1442.24], [2766.73, 1439.55], [2771.53, 1439.73], [2771.86, 1431.48], [2760.99, 1431.05], [2760.63, 1440.0], [2764.04, 1440.13], [2763.97, 1442.14], [2766.62, 1442.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2509.69, 1318.76], [2505.23, 1313.26], [2493.98, 1322.42], [2498.44, 1327.91], [2509.69, 1318.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2395.96, 1489.47], [2392.56, 1486.75], [2390.82, 1488.93], [2389.63, 1487.97], [2381.85, 1497.75], [2388.97, 1503.42], [2396.76, 1493.65], [2394.23, 1491.64], [2395.96, 1489.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2872.63, 1688.53], [2873.11, 1685.98], [2874.77, 1686.29], [2876.65, 1676.39], [2867.77, 1674.71], [2866.08, 1683.62], [2867.58, 1683.92], [2866.91, 1687.45], [2872.63, 1688.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2121.87, 1468.64], [2113.88, 1460.69], [2111.71, 1462.87], [2110.74, 1461.92], [2101.81, 1470.9], [2110.82, 1479.87], [2118.66, 1471.99], [2118.6, 1471.92], [2121.87, 1468.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[2782.04, 1720.21], [2775.7, 1718.87], [2774.33, 1725.33], [2780.68, 1726.67], [2782.04, 1720.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2676.82, 1405.52], [2672.56, 1405.32], [2672.23, 1412.55], [2676.5, 1412.75], [2676.82, 1405.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2803.32, 1801.83], [2799.88, 1801.03], [2798.62, 1806.51], [2802.05, 1807.3], [2803.32, 1801.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2538.59, 1443.03], [2533.58, 1439.67], [2528.68, 1446.98], [2536.82, 1452.45], [2541.02, 1446.2], [2537.88, 1444.1], [2538.59, 1443.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2179.3, 1417.35], [2174.59, 1414.41], [2171.97, 1418.61], [2176.68, 1421.54], [2179.3, 1417.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2929.3, 1474.4], [2922.32, 1474.14], [2921.9, 1485.26], [2922.87, 1485.3], [2922.82, 1486.74], [2928.82, 1486.97], [2929.3, 1474.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2758.52, 1567.75], [2753.69, 1567.56], [2753.34, 1576.51], [2758.16, 1576.69], [2758.52, 1567.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2534.88, 1923.19], [2537.98, 1921.4], [2536.77, 1919.32], [2540.21, 1917.34], [2538.19, 1913.86], [2539.57, 1913.07], [2537.12, 1908.87], [2527.76, 1914.29], [2532.62, 1922.63], [2534.06, 1921.8], [2534.88, 1923.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2638.16, 1905.36], [2632.1, 1905.48], [2632.24, 1913.21], [2637.41, 1913.12], [2637.45, 1915.2], [2650.59, 1914.95], [2650.45, 1908.04], [2641.85, 1908.21], [2641.82, 1906.35], [2638.19, 1906.42], [2638.16, 1905.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2768.95, 1489.81], [2764.89, 1489.6], [2764.6, 1495.43], [2768.66, 1495.64], [2768.95, 1489.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2675.18, 1565.94], [2669.4, 1565.63], [2669.06, 1572.37], [2674.83, 1572.67], [2675.18, 1565.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2451.48, 1371.02], [2447.13, 1366.94], [2445.46, 1368.72], [2444.44, 1367.77], [2435.9, 1376.92], [2442.71, 1383.28], [2451.38, 1374.01], [2449.94, 1372.67], [2451.48, 1371.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2905.23, 1490.14], [2905.8, 1475.53], [2902.48, 1475.4], [2902.55, 1473.45], [2898.31, 1473.28], [2898.21, 1475.77], [2896.49, 1475.71], [2895.94, 1489.78], [2905.23, 1490.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2309.34, 1392.75], [2310.87, 1390.25], [2313.64, 1391.93], [2317.16, 1386.16], [2311.23, 1382.56], [2308.13, 1387.66], [2308.67, 1388.0], [2306.74, 1391.17], [2309.34, 1392.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2502.1, 1207.59], [2499.92, 1204.55], [2494.15, 1208.68], [2496.34, 1211.72], [2502.1, 1207.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2602.47, 1505.41], [2596.05, 1504.73], [2595.56, 1509.33], [2601.98, 1510.02], [2602.47, 1505.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2175.31, 1350.42], [2166.58, 1339.86], [2160.98, 1344.5], [2162.19, 1345.96], [2159.91, 1347.84], [2167.43, 1356.93], [2175.31, 1350.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2446.87, 1461.43], [2442.29, 1458.23], [2441.18, 1459.83], [2439.35, 1458.56], [2434.14, 1466.01], [2434.69, 1466.39], [2431.94, 1470.33], [2433.95, 1471.72], [2431.85, 1474.73], [2437.16, 1478.43], [2446.93, 1464.41], [2445.49, 1463.41], [2446.87, 1461.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2267.52, 1453.36], [2264.71, 1451.27], [2263.68, 1452.64], [2262.17, 1451.52], [2256.53, 1459.07], [2263.43, 1464.22], [2269.55, 1456.02], [2266.97, 1454.11], [2267.52, 1453.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2446.05, 1523.94], [2437.52, 1518.5], [2436.0, 1520.89], [2434.0, 1519.61], [2431.16, 1524.06], [2443.48, 1531.92], [2446.38, 1527.38], [2444.59, 1526.23], [2446.05, 1523.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2389.78, 1338.63], [2391.19, 1337.22], [2392.04, 1338.05], [2401.71, 1328.3], [2395.11, 1321.75], [2385.48, 1331.45], [2389.31, 1335.26], [2387.86, 1336.73], [2389.78, 1338.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2739.54, 1731.45], [2739.95, 1729.34], [2736.26, 1728.62], [2735.81, 1730.97], [2731.08, 1730.04], [2728.98, 1740.88], [2738.54, 1742.75], [2740.7, 1731.68], [2739.54, 1731.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2459.26, 1257.57], [2455.11, 1251.74], [2446.06, 1258.2], [2450.22, 1264.03], [2459.26, 1257.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2415.11, 1304.9], [2418.09, 1301.66], [2419.23, 1302.7], [2425.78, 1295.59], [2419.69, 1289.98], [2414.0, 1296.15], [2412.83, 1295.08], [2410.8, 1297.3], [2412.2, 1298.58], [2410.38, 1300.55], [2415.11, 1304.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2425.43, 1367.33], [2429.4, 1362.98], [2429.92, 1363.45], [2436.23, 1356.55], [2430.28, 1351.11], [2419.99, 1362.36], [2425.43, 1367.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2811.79, 1728.59], [2805.44, 1727.39], [2804.62, 1731.75], [2810.96, 1732.95], [2811.79, 1728.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2185.94, 1425.34], [2180.57, 1421.6], [2176.79, 1427.04], [2182.16, 1430.78], [2185.94, 1425.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2474.51, 1481.78], [2464.25, 1474.82], [2459.19, 1482.28], [2471.87, 1490.87], [2475.15, 1486.03], [2472.73, 1484.38], [2474.51, 1481.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2654.83, 1477.79], [2654.78, 1475.36], [2658.51, 1475.28], [2658.33, 1467.7], [2659.65, 1467.68], [2659.49, 1460.64], [2649.34, 1460.88], [2649.75, 1477.91], [2654.83, 1477.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2846.43, 1568.11], [2846.47, 1565.82], [2848.18, 1565.85], [2848.45, 1552.15], [2839.21, 1551.96], [2838.95, 1564.85], [2841.64, 1564.91], [2841.57, 1568.01], [2846.43, 1568.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2461.53, 1600.19], [2458.82, 1598.25], [2455.7, 1602.61], [2458.41, 1604.54], [2461.53, 1600.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2619.7, 1942.35], [2611.45, 1942.32], [2611.39, 1956.29], [2619.65, 1956.32], [2619.7, 1942.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2886.4, 1447.23], [2886.5, 1445.24], [2892.38, 1445.52], [2892.9, 1434.4], [2890.92, 1434.3], [2891.04, 1431.74], [2881.96, 1431.31], [2881.87, 1433.28], [2878.06, 1433.09], [2877.53, 1444.18], [2882.24, 1444.4], [2882.12, 1447.03], [2886.4, 1447.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2326.08, 1139.69], [2320.17, 1134.81], [2318.28, 1137.08], [2324.19, 1141.97], [2326.08, 1139.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2725.2, 1673.61], [2717.79, 1672.15], [2715.31, 1684.77], [2722.72, 1686.22], [2725.2, 1673.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2072.39, 1403.17], [2067.98, 1398.44], [2063.67, 1402.44], [2068.08, 1407.17], [2072.39, 1403.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2730.63, 1716.46], [2726.66, 1715.63], [2725.38, 1721.69], [2729.35, 1722.53], [2730.63, 1716.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2523.62, 1226.77], [2531.95, 1237.31], [2540.12, 1230.87], [2531.79, 1220.31], [2523.62, 1226.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2808.06, 1445.86], [2808.48, 1438.14], [2803.94, 1437.89], [2803.99, 1437.08], [2795.09, 1436.61], [2794.95, 1439.19], [2792.91, 1439.08], [2792.67, 1443.37], [2795.09, 1443.5], [2795.0, 1445.15], [2808.06, 1445.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2111.43, 1455.8], [2106.33, 1450.62], [2096.53, 1460.25], [2097.63, 1461.37], [2092.56, 1466.34], [2096.99, 1470.84], [2109.67, 1458.38], [2109.25, 1457.95], [2111.43, 1455.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2165.62, 1416.89], [2159.99, 1413.75], [2158.14, 1417.09], [2163.77, 1420.22], [2165.62, 1416.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2467.1, 1198.19], [2462.18, 1191.76], [2454.1, 1197.93], [2459.03, 1204.37], [2467.1, 1198.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2837.92, 1473.05], [2830.02, 1473.07], [2830.04, 1482.46], [2831.79, 1482.46], [2831.8, 1486.03], [2837.94, 1486.01], [2837.92, 1473.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2502.28, 1442.25], [2505.59, 1437.63], [2503.56, 1436.18], [2504.53, 1434.82], [2497.7, 1429.93], [2492.77, 1436.82], [2499.63, 1441.74], [2500.28, 1440.82], [2502.28, 1442.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2768.24, 1410.83], [2768.32, 1409.38], [2771.25, 1409.54], [2771.77, 1400.43], [2770.08, 1400.33], [2770.18, 1398.57], [2763.84, 1398.22], [2763.14, 1410.55], [2768.24, 1410.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2407.41, 1111.62], [2403.06, 1107.61], [2398.46, 1112.61], [2402.81, 1116.61], [2407.41, 1111.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2929.25, 1526.63], [2921.95, 1524.74], [2919.77, 1533.09], [2927.07, 1534.99], [2929.25, 1526.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2435.39, 2015.55], [2433.16, 2011.73], [2426.98, 2015.31], [2429.21, 2019.14], [2435.39, 2015.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2892.2, 1485.58], [2892.37, 1473.52], [2889.67, 1473.48], [2889.68, 1472.65], [2882.86, 1472.55], [2882.68, 1485.55], [2885.57, 1485.59], [2885.58, 1484.62], [2889.64, 1484.67], [2889.64, 1485.54], [2892.2, 1485.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2846.65, 1815.12], [2837.17, 1813.05], [2835.42, 1821.1], [2844.89, 1823.17], [2846.65, 1815.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2211.8, 1320.57], [2204.2, 1310.74], [2197.09, 1316.22], [2204.7, 1326.06], [2211.8, 1320.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2459.75, 1380.36], [2454.06, 1375.56], [2446.8, 1384.17], [2452.49, 1388.97], [2459.75, 1380.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2460.15, 1503.18], [2448.49, 1495.94], [2447.17, 1498.07], [2448.04, 1498.61], [2446.72, 1500.75], [2447.81, 1501.42], [2446.08, 1504.2], [2457.47, 1511.28], [2460.04, 1507.13], [2458.35, 1506.08], [2460.15, 1503.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2598.73, 1816.83], [2589.89, 1814.45], [2583.22, 1839.48], [2592.48, 1841.84], [2598.73, 1816.83]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.155, "pop": 0, "jobs": 155}}, {"shape": {"outer": [[2644.17, 1490.9], [2643.28, 1481.66], [2636.7, 1482.29], [2637.59, 1491.53], [2644.17, 1490.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2480.77, 1626.8], [2484.57, 1621.25], [2482.07, 1619.53], [2484.48, 1615.99], [2480.27, 1613.11], [2473.12, 1623.53], [2476.85, 1626.1], [2477.78, 1624.75], [2480.77, 1626.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2575.99, 1334.4], [2573.59, 1331.23], [2571.77, 1332.61], [2570.2, 1330.56], [2562.77, 1336.18], [2566.74, 1341.41], [2574.17, 1335.78], [2575.99, 1334.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2090.11, 1484.45], [2088.01, 1482.37], [2087.11, 1483.27], [2085.58, 1481.74], [2079.71, 1487.63], [2091.29, 1499.15], [2096.69, 1493.7], [2088.75, 1485.81], [2090.11, 1484.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1967.38, 1568.24], [1976.11, 1558.52], [1970.15, 1553.16], [1959.93, 1564.5], [1963.75, 1567.94], [1965.22, 1566.3], [1967.38, 1568.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2475.4, 1556.99], [2471.04, 1554.12], [2468.15, 1558.48], [2472.52, 1561.37], [2475.4, 1556.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2318.23, 1426.37], [2314.32, 1423.87], [2311.05, 1428.97], [2314.96, 1431.48], [2318.23, 1426.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2317.02, 1186.5], [2312.94, 1182.46], [2308.4, 1187.02], [2312.48, 1191.07], [2317.02, 1186.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2547.06, 1439.14], [2542.14, 1431.92], [2537.06, 1435.38], [2541.97, 1442.6], [2547.06, 1439.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1986.63, 1464.91], [1997.28, 1474.7], [2002.91, 1468.68], [2000.3, 1466.33], [2000.68, 1465.89], [1992.78, 1458.44], [1986.63, 1464.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2062.93, 1529.0], [2052.65, 1518.93], [2048.12, 1523.54], [2058.4, 1533.62], [2062.93, 1529.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2188.56, 1416.34], [2189.72, 1414.45], [2192.21, 1415.99], [2199.73, 1403.85], [2196.08, 1401.58], [2194.43, 1404.24], [2190.46, 1401.78], [2186.5, 1408.19], [2187.21, 1408.63], [2185.54, 1411.34], [2187.29, 1412.42], [2185.88, 1414.69], [2188.56, 1416.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2367.76, 1430.39], [2369.95, 1427.09], [2372.03, 1428.48], [2380.77, 1415.31], [2374.08, 1410.87], [2366.03, 1423.03], [2366.19, 1423.13], [2365.36, 1424.38], [2366.45, 1425.1], [2364.41, 1428.17], [2367.76, 1430.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2578.56, 1964.84], [2578.29, 1958.69], [2573.34, 1958.92], [2573.62, 1965.07], [2578.56, 1964.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2444.82, 1140.15], [2445.92, 1138.77], [2447.32, 1139.86], [2451.89, 1134.05], [2445.49, 1129.02], [2444.72, 1130.0], [2443.77, 1129.24], [2440.32, 1133.63], [2441.47, 1134.53], [2440.02, 1136.39], [2444.82, 1140.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2657.72, 1616.64], [2657.15, 1608.52], [2650.19, 1609.02], [2650.76, 1616.95], [2646.89, 1617.22], [2647.84, 1630.48], [2657.31, 1629.8], [2656.38, 1616.74], [2657.72, 1616.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[2568.53, 2059.16], [2564.0, 2051.73], [2557.27, 2055.83], [2562.68, 2064.72], [2566.56, 2062.35], [2565.67, 2060.9], [2568.53, 2059.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2894.89, 1571.16], [2884.5, 1571.18], [2884.51, 1578.57], [2897.06, 1578.55], [2897.05, 1575.49], [2894.88, 1575.5], [2894.89, 1571.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2343.94, 1471.48], [2351.87, 1460.89], [2349.07, 1458.79], [2351.17, 1455.99], [2348.33, 1453.86], [2346.34, 1456.52], [2344.5, 1455.14], [2336.57, 1465.75], [2338.55, 1467.23], [2337.65, 1468.42], [2340.63, 1470.66], [2341.42, 1469.6], [2343.94, 1471.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2684.33, 1463.72], [2676.72, 1463.15], [2675.59, 1478.36], [2678.86, 1478.6], [2678.55, 1482.92], [2682.88, 1483.24], [2684.33, 1463.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2545.26, 2047.45], [2542.4, 2042.67], [2539.87, 2044.17], [2542.74, 2048.96], [2545.26, 2047.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2603.01, 1440.54], [2600.33, 1436.54], [2598.44, 1437.81], [2595.96, 1434.12], [2592.5, 1436.44], [2591.88, 1435.51], [2588.83, 1437.55], [2589.62, 1438.71], [2586.03, 1441.11], [2591.04, 1448.57], [2603.01, 1440.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2764.64, 1716.48], [2752.66, 1713.77], [2751.22, 1720.16], [2763.2, 1722.87], [2764.64, 1716.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2544.97, 1548.06], [2547.42, 1544.77], [2549.05, 1545.98], [2554.75, 1538.34], [2548.25, 1533.49], [2543.22, 1540.21], [2544.05, 1540.83], [2540.91, 1545.04], [2544.97, 1548.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2537.17, 1580.01], [2532.24, 1577.12], [2528.91, 1582.81], [2533.84, 1585.7], [2537.17, 1580.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2568.87, 1305.49], [2565.42, 1308.25], [2569.37, 1313.16], [2572.82, 1310.4], [2568.87, 1305.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2782.24, 1468.45], [2772.99, 1468.36], [2772.82, 1482.96], [2782.07, 1483.06], [2782.24, 1468.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2674.33, 1462.57], [2665.61, 1462.13], [2664.93, 1475.93], [2673.64, 1476.36], [2674.33, 1462.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2149.13, 1513.9], [2143.19, 1507.78], [2131.47, 1519.14], [2137.41, 1525.27], [2149.13, 1513.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1927.8, 1515.25], [1924.18, 1512.35], [1915.18, 1523.55], [1921.94, 1528.98], [1929.56, 1519.52], [1928.79, 1518.9], [1929.5, 1518.01], [1927.11, 1516.1], [1927.8, 1515.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2700.7, 1397.55], [2700.79, 1395.64], [2703.37, 1395.75], [2704.02, 1381.76], [2695.31, 1381.35], [2694.62, 1396.03], [2698.45, 1396.2], [2698.39, 1397.44], [2700.7, 1397.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2440.79, 1506.62], [2443.28, 1502.52], [2433.21, 1496.39], [2429.77, 1502.05], [2435.37, 1505.47], [2436.33, 1503.9], [2440.79, 1506.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2387.65, 1325.28], [2393.01, 1318.7], [2387.94, 1314.58], [2384.26, 1319.08], [2381.51, 1316.84], [2377.44, 1321.83], [2380.31, 1324.16], [2382.69, 1321.23], [2387.65, 1325.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2416.05, 1343.76], [2419.13, 1340.45], [2415.91, 1337.45], [2412.24, 1341.39], [2410.46, 1339.73], [2403.42, 1347.26], [2409.6, 1353.04], [2417.23, 1344.86], [2416.05, 1343.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2191.15, 1419.08], [2199.14, 1424.79], [2207.27, 1412.95], [2206.47, 1412.37], [2207.53, 1410.9], [2201.32, 1406.76], [2200.19, 1408.43], [2199.23, 1407.75], [2191.15, 1419.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2541.54, 1399.26], [2534.88, 1389.9], [2528.61, 1394.35], [2535.27, 1403.71], [2541.54, 1399.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2932.91, 1506.35], [2927.68, 1505.14], [2926.47, 1510.43], [2931.7, 1511.64], [2932.91, 1506.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2837.41, 1614.01], [2837.37, 1611.68], [2839.57, 1611.65], [2839.49, 1607.57], [2837.84, 1607.6], [2837.81, 1606.22], [2826.46, 1606.42], [2826.6, 1614.21], [2837.41, 1614.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2397.61, 1104.2], [2392.89, 1100.01], [2388.54, 1104.91], [2393.27, 1109.1], [2397.61, 1104.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2507.78, 1217.93], [2503.94, 1213.44], [2498.84, 1217.78], [2502.68, 1222.29], [2507.78, 1217.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2779.36, 1649.73], [2773.98, 1648.69], [2771.75, 1660.34], [2777.13, 1661.36], [2779.36, 1649.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2521.59, 1242.67], [2527.04, 1248.75], [2531.25, 1244.98], [2525.79, 1238.9], [2521.59, 1242.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2667.4, 1507.41], [2667.51, 1504.27], [2664.01, 1504.14], [2663.91, 1506.8], [2661.57, 1506.72], [2661.18, 1517.87], [2669.56, 1518.16], [2669.92, 1507.49], [2667.4, 1507.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2111.87, 1563.8], [2108.04, 1559.39], [2104.01, 1562.9], [2107.84, 1567.3], [2111.87, 1563.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2851.27, 1513.66], [2841.65, 1513.35], [2841.21, 1527.22], [2850.83, 1527.53], [2851.27, 1513.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2483.37, 1532.25], [2471.94, 1524.1], [2468.06, 1529.56], [2470.59, 1531.36], [2469.34, 1533.1], [2478.25, 1539.44], [2483.37, 1532.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2519.58, 1205.53], [2514.16, 1198.73], [2506.98, 1204.47], [2512.39, 1211.27], [2519.58, 1205.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2560.03, 1387.2], [2556.59, 1382.62], [2554.18, 1384.42], [2552.56, 1382.26], [2545.15, 1387.81], [2550.2, 1394.56], [2560.03, 1387.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1886.35, 1481.07], [1888.93, 1479.38], [1889.81, 1480.74], [1892.19, 1479.18], [1891.21, 1477.69], [1893.18, 1476.4], [1885.95, 1465.38], [1879.04, 1469.92], [1886.35, 1481.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2757.48, 1818.76], [2757.81, 1817.13], [2761.11, 1817.82], [2762.79, 1809.73], [2760.97, 1809.36], [2760.73, 1810.5], [2755.7, 1809.45], [2756.02, 1807.93], [2751.69, 1807.03], [2751.38, 1808.53], [2748.72, 1807.97], [2747.7, 1812.87], [2748.88, 1813.11], [2748.48, 1815.05], [2754.53, 1816.3], [2754.17, 1818.08], [2757.48, 1818.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2388.93, 1094.9], [2383.93, 1090.46], [2379.59, 1095.36], [2384.59, 1099.8], [2388.93, 1094.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2767.5, 1732.27], [2758.64, 1730.46], [2755.96, 1743.58], [2764.83, 1745.39], [2767.5, 1732.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2245.54, 1337.28], [2237.9, 1331.94], [2233.75, 1337.88], [2243.86, 1344.94], [2246.91, 1340.57], [2244.45, 1338.85], [2245.54, 1337.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2664.05, 2077.57], [2663.69, 2071.26], [2661.37, 2071.4], [2661.24, 2069.02], [2650.08, 2069.65], [2650.56, 2078.32], [2664.05, 2077.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2654.39, 1985.69], [2654.09, 1979.92], [2642.02, 1980.56], [2642.42, 1988.28], [2652.13, 1987.76], [2652.02, 1985.81], [2654.39, 1985.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2523.34, 1985.61], [2521.11, 1981.66], [2515.73, 1984.69], [2517.96, 1988.64], [2523.34, 1985.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2596.09, 1365.63], [2591.8, 1360.19], [2584.57, 1365.9], [2588.85, 1371.34], [2596.09, 1365.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2590.41, 1315.53], [2596.15, 1322.13], [2608.46, 1311.77], [2602.78, 1305.01], [2597.67, 1309.31], [2597.3, 1308.87], [2593.25, 1312.28], [2593.67, 1312.78], [2590.41, 1315.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2814.28, 1783.99], [2807.57, 1782.48], [2804.75, 1795.03], [2805.68, 1795.24], [2804.89, 1798.79], [2810.66, 1800.09], [2814.28, 1783.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2108.23, 1536.7], [2111.77, 1532.95], [2110.63, 1531.87], [2112.2, 1530.2], [2105.78, 1524.14], [2105.07, 1524.91], [2103.17, 1523.11], [2097.94, 1528.66], [2106.13, 1536.37], [2106.96, 1535.5], [2108.23, 1536.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2661.62, 1606.4], [2661.28, 1598.2], [2651.37, 1598.63], [2651.71, 1606.82], [2661.62, 1606.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2472.45, 1900.51], [2470.5, 1896.92], [2464.71, 1900.07], [2466.66, 1903.66], [2472.45, 1900.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2535.94, 2038.78], [2531.94, 2031.96], [2525.68, 2035.63], [2529.68, 2042.45], [2535.94, 2038.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2379.99, 1439.66], [2377.19, 1437.98], [2372.76, 1445.34], [2375.56, 1447.03], [2379.99, 1439.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2546.55, 1495.51], [2553.59, 1483.53], [2546.33, 1479.26], [2538.11, 1493.24], [2542.03, 1495.54], [2543.21, 1493.55], [2546.55, 1495.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2227.04, 1449.58], [2220.46, 1445.38], [2218.24, 1448.84], [2221.21, 1450.73], [2220.61, 1451.68], [2224.21, 1454.0], [2227.04, 1449.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2273.33, 1342.79], [2267.04, 1338.77], [2261.4, 1347.61], [2267.69, 1351.62], [2273.33, 1342.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2175.2, 1306.07], [2171.75, 1301.95], [2167.25, 1305.72], [2170.71, 1309.84], [2175.2, 1306.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2295.22, 1470.04], [2289.64, 1466.32], [2281.11, 1479.08], [2287.68, 1483.47], [2294.65, 1473.02], [2293.66, 1472.36], [2295.22, 1470.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2565.75, 1425.57], [2560.19, 1417.92], [2556.77, 1420.4], [2555.69, 1418.91], [2551.89, 1421.66], [2558.55, 1430.81], [2565.75, 1425.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2883.69, 1632.26], [2872.43, 1630.49], [2871.06, 1639.19], [2883.91, 1641.22], [2885.05, 1634.06], [2883.44, 1633.8], [2883.69, 1632.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2607.28, 2079.48], [2602.61, 2071.8], [2592.67, 2077.84], [2597.34, 2085.52], [2607.28, 2079.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2647.59, 1976.72], [2653.65, 1976.51], [2653.17, 1966.21], [2647.27, 1966.37], [2647.59, 1976.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2588.87, 1814.1], [2578.0, 1811.26], [2570.9, 1838.24], [2581.77, 1841.08], [2588.87, 1814.1]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.201, "pop": 0, "jobs": 201}}, {"shape": {"outer": [[2792.56, 1422.72], [2786.93, 1422.39], [2786.62, 1427.64], [2792.24, 1427.97], [2792.56, 1422.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2553.51, 1275.58], [2549.21, 1269.79], [2544.25, 1273.48], [2548.56, 1279.27], [2553.51, 1275.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2358.25, 1097.07], [2347.71, 1087.67], [2343.25, 1092.68], [2343.9, 1093.26], [2342.29, 1095.07], [2353.02, 1104.63], [2355.63, 1101.7], [2354.79, 1100.95], [2358.25, 1097.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2801.86, 1780.91], [2793.43, 1779.05], [2790.79, 1791.0], [2795.9, 1792.13], [2795.63, 1793.37], [2798.95, 1794.1], [2801.86, 1780.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2519.83, 1629.4], [2513.08, 1624.87], [2508.02, 1632.4], [2514.77, 1636.94], [2519.83, 1629.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2707.59, 1495.71], [2701.93, 1495.32], [2701.53, 1501.18], [2707.2, 1501.57], [2707.59, 1495.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2277.64, 1222.69], [2271.61, 1216.79], [2266.46, 1222.05], [2272.48, 1227.95], [2277.64, 1222.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1993.34, 1567.64], [1987.01, 1561.67], [1981.46, 1567.57], [1984.07, 1570.03], [1981.97, 1572.25], [1985.68, 1575.76], [1993.34, 1567.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2541.27, 1272.27], [2538.7, 1269.17], [2534.14, 1272.92], [2536.71, 1276.04], [2541.27, 1272.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2444.88, 1238.45], [2441.17, 1233.87], [2438.96, 1235.66], [2438.26, 1234.8], [2431.47, 1240.3], [2436.77, 1246.85], [2443.46, 1241.42], [2442.57, 1240.31], [2444.88, 1238.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2537.86, 1358.88], [2532.64, 1351.64], [2522.96, 1358.6], [2528.17, 1365.86], [2537.86, 1358.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2528.29, 1568.47], [2525.48, 1566.76], [2520.63, 1574.72], [2525.37, 1577.62], [2529.1, 1571.5], [2527.17, 1570.32], [2528.29, 1568.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2776.14, 1553.38], [2776.26, 1551.25], [2770.65, 1550.97], [2770.53, 1553.4], [2769.28, 1553.34], [2768.65, 1566.15], [2777.34, 1566.58], [2777.99, 1553.46], [2776.14, 1553.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2443.78, 1255.72], [2451.07, 1250.46], [2451.6, 1251.21], [2454.59, 1249.05], [2451.34, 1244.54], [2449.05, 1246.2], [2445.81, 1241.71], [2437.83, 1247.45], [2443.78, 1255.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2246.05, 1373.26], [2241.67, 1370.57], [2238.38, 1375.93], [2242.75, 1378.62], [2246.05, 1373.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2571.0, 2137.53], [2574.97, 2144.47], [2588.6, 2136.33], [2584.63, 2129.39], [2571.0, 2137.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2607.95, 1945.28], [2599.91, 1945.42], [2600.15, 1958.99], [2603.04, 1958.94], [2603.08, 1961.6], [2608.23, 1961.51], [2607.95, 1945.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2231.27, 1240.87], [2227.46, 1237.3], [2225.75, 1239.12], [2229.57, 1242.68], [2231.27, 1240.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[2458.87, 1421.23], [2454.69, 1418.6], [2453.4, 1420.66], [2450.02, 1418.53], [2443.68, 1428.62], [2451.25, 1433.38], [2458.87, 1421.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2899.65, 1556.69], [2891.45, 1556.57], [2891.3, 1565.87], [2899.5, 1566.01], [2899.65, 1556.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2660.75, 1580.6], [2659.99, 1572.39], [2648.79, 1573.42], [2649.55, 1581.64], [2660.75, 1580.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2479.83, 1442.47], [2476.05, 1439.68], [2472.45, 1444.56], [2476.22, 1447.34], [2479.83, 1442.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2465.43, 1335.91], [2459.19, 1330.18], [2450.33, 1339.82], [2456.57, 1345.55], [2465.43, 1335.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2267.33, 1409.73], [2260.8, 1404.85], [2255.78, 1411.57], [2262.31, 1416.45], [2267.33, 1409.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2406.17, 1565.38], [2407.3, 1563.79], [2408.19, 1564.42], [2416.44, 1552.8], [2411.5, 1549.3], [2409.11, 1547.6], [2400.46, 1559.78], [2402.69, 1561.36], [2401.95, 1562.39], [2406.17, 1565.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2878.36, 1476.29], [2870.04, 1475.94], [2869.67, 1484.64], [2878.0, 1484.99], [2878.36, 1476.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2144.11, 1324.5], [2140.48, 1319.92], [2137.26, 1322.46], [2140.9, 1327.04], [2144.11, 1324.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2571.22, 1956.29], [2570.83, 1944.52], [2563.33, 1944.76], [2563.73, 1956.55], [2571.22, 1956.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2367.04, 1491.45], [2368.87, 1489.03], [2370.76, 1490.47], [2377.38, 1481.72], [2372.59, 1478.1], [2372.23, 1478.58], [2370.46, 1477.23], [2362.38, 1487.91], [2367.04, 1491.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2534.71, 1452.72], [2528.67, 1448.75], [2524.06, 1455.74], [2530.09, 1459.72], [2534.71, 1452.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2364.45, 1241.66], [2360.05, 1236.79], [2357.1, 1239.47], [2361.51, 1244.33], [2364.45, 1241.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2521.22, 1363.87], [2515.75, 1356.17], [2510.31, 1360.03], [2512.89, 1363.66], [2513.6, 1363.15], [2516.5, 1367.23], [2521.22, 1363.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2497.04, 1300.82], [2491.0, 1293.12], [2480.85, 1301.09], [2486.9, 1308.79], [2497.04, 1300.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2270.67, 1378.21], [2265.69, 1374.61], [2263.14, 1378.12], [2268.12, 1381.74], [2270.67, 1378.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2397.46, 1539.99], [2389.65, 1535.03], [2386.44, 1540.06], [2387.47, 1540.72], [2384.7, 1545.09], [2391.47, 1549.4], [2397.46, 1539.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2930.36, 1517.65], [2924.41, 1516.21], [2922.66, 1523.41], [2928.62, 1524.85], [2930.36, 1517.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2758.82, 1406.33], [2757.82, 1395.52], [2750.19, 1396.22], [2750.93, 1404.22], [2747.63, 1404.54], [2748.2, 1410.69], [2746.79, 1410.83], [2747.16, 1414.87], [2751.33, 1414.48], [2751.02, 1411.15], [2754.89, 1410.79], [2754.5, 1406.72], [2758.82, 1406.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2703.12, 1523.9], [2703.15, 1523.28], [2707.43, 1523.46], [2707.49, 1521.96], [2709.98, 1522.07], [2710.35, 1513.51], [2701.69, 1513.15], [2701.23, 1523.82], [2703.12, 1523.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2436.58, 1566.64], [2430.85, 1562.45], [2429.16, 1564.75], [2428.82, 1564.49], [2427.15, 1566.77], [2426.43, 1566.25], [2423.9, 1569.71], [2424.84, 1570.4], [2422.76, 1573.23], [2429.01, 1577.8], [2435.66, 1568.71], [2435.28, 1568.44], [2436.58, 1566.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2511.71, 1555.42], [2508.05, 1552.87], [2504.07, 1558.58], [2507.72, 1561.13], [2511.71, 1555.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2411.34, 1334.2], [2407.26, 1329.96], [2405.28, 1332.0], [2403.09, 1329.71], [2395.68, 1336.83], [2401.89, 1343.29], [2411.34, 1334.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2231.95, 1383.07], [2224.39, 1377.75], [2217.1, 1388.1], [2224.66, 1393.42], [2231.95, 1383.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2820.79, 1759.95], [2823.2, 1747.54], [2815.84, 1746.12], [2815.37, 1748.52], [2817.42, 1748.92], [2817.03, 1750.92], [2814.94, 1750.52], [2814.2, 1754.34], [2815.51, 1754.59], [2814.69, 1758.76], [2820.79, 1759.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2339.35, 1131.87], [2336.4, 1128.84], [2332.12, 1132.99], [2335.06, 1136.03], [2339.35, 1131.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2551.81, 1438.83], [2554.51, 1436.94], [2553.67, 1435.72], [2556.12, 1434.0], [2550.69, 1426.23], [2548.39, 1427.84], [2547.32, 1426.29], [2541.96, 1430.02], [2547.65, 1438.17], [2549.25, 1437.04], [2549.82, 1437.87], [2550.71, 1437.26], [2551.81, 1438.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2383.58, 1114.57], [2378.05, 1109.46], [2371.88, 1116.15], [2377.41, 1121.25], [2383.58, 1114.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2417.35, 1459.83], [2419.06, 1457.34], [2420.82, 1458.54], [2427.52, 1448.82], [2421.39, 1444.6], [2420.18, 1446.36], [2419.22, 1445.69], [2414.01, 1453.26], [2415.48, 1454.27], [2413.48, 1457.17], [2417.35, 1459.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2530.33, 1278.87], [2525.55, 1272.57], [2518.19, 1278.15], [2522.97, 1284.45], [2530.33, 1278.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2498.87, 1419.11], [2495.42, 1415.74], [2491.38, 1419.89], [2494.83, 1423.25], [2498.87, 1419.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2367.11, 1226.8], [2363.59, 1222.83], [2361.09, 1225.06], [2364.62, 1229.03], [2367.11, 1226.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2624.21, 1379.17], [2620.68, 1374.04], [2615.95, 1377.31], [2619.48, 1382.43], [2624.21, 1379.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2570.33, 1324.34], [2566.52, 1319.45], [2556.7, 1327.07], [2561.92, 1333.79], [2569.31, 1328.06], [2567.89, 1326.23], [2570.33, 1324.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2010.41, 1464.83], [2012.57, 1462.29], [2014.59, 1464.01], [2017.62, 1460.46], [2013.97, 1457.35], [2015.52, 1455.54], [2008.18, 1449.29], [2001.45, 1457.2], [2010.41, 1464.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2879.62, 1655.03], [2869.8, 1653.1], [2868.26, 1660.93], [2879.38, 1663.12], [2880.38, 1658.07], [2879.07, 1657.81], [2879.62, 1655.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2613.61, 1908.67], [2613.12, 1899.38], [2604.08, 1899.85], [2604.88, 1914.97], [2612.31, 1914.58], [2612.0, 1908.74], [2613.61, 1908.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2696.09, 1547.02], [2686.41, 1546.86], [2686.12, 1564.34], [2695.79, 1564.5], [2696.09, 1547.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[2450.44, 1599.81], [2446.16, 1596.98], [2442.33, 1602.77], [2446.6, 1605.6], [2450.44, 1599.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2443.37, 1126.51], [2436.28, 1120.19], [2430.06, 1127.15], [2432.14, 1129.0], [2429.91, 1131.5], [2434.92, 1135.98], [2443.37, 1126.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2549.42, 1583.88], [2543.9, 1580.46], [2540.33, 1586.21], [2545.86, 1589.64], [2549.42, 1583.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1899.53, 1471.72], [1901.86, 1470.22], [1902.61, 1471.37], [1904.88, 1469.9], [1903.83, 1468.28], [1905.99, 1466.89], [1898.67, 1455.52], [1891.9, 1459.88], [1899.53, 1471.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2768.1, 1505.18], [2763.56, 1504.99], [2763.29, 1511.48], [2767.82, 1511.67], [2768.1, 1505.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2252.36, 1412.2], [2253.36, 1410.75], [2254.2, 1411.32], [2261.04, 1401.38], [2253.1, 1395.91], [2246.39, 1405.67], [2246.8, 1405.95], [2245.66, 1407.6], [2252.36, 1412.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2352.36, 1356.14], [2336.59, 1345.61], [2332.01, 1352.45], [2347.78, 1362.99], [2352.36, 1356.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2460.02, 1139.08], [2455.62, 1134.48], [2448.62, 1141.18], [2455.76, 1148.65], [2461.3, 1143.35], [2458.57, 1140.48], [2460.02, 1139.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2761.83, 1683.91], [2753.74, 1681.92], [2751.12, 1692.56], [2759.22, 1694.54], [2761.83, 1683.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2499.59, 1943.45], [2492.81, 1932.37], [2485.72, 1936.71], [2492.49, 1947.79], [2499.59, 1943.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2066.13, 1516.45], [2063.91, 1514.36], [2062.51, 1515.86], [2059.55, 1513.1], [2058.83, 1513.86], [2056.82, 1511.98], [2054.39, 1514.58], [2056.58, 1516.63], [2054.84, 1518.5], [2064.35, 1527.38], [2068.72, 1522.7], [2064.22, 1518.5], [2066.13, 1516.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2181.83, 1275.47], [2175.47, 1267.51], [2168.24, 1273.28], [2174.6, 1281.25], [2181.83, 1275.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2546.98, 1394.56], [2542.16, 1387.76], [2538.74, 1390.18], [2543.57, 1396.98], [2546.98, 1394.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2694.82, 1704.35], [2690.4, 1703.22], [2688.87, 1709.19], [2693.29, 1710.32], [2694.82, 1704.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2596.68, 1873.75], [2589.96, 1872.17], [2588.43, 1878.67], [2595.14, 1880.25], [2596.68, 1873.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2275.24, 1230.82], [2270.25, 1226.15], [2265.54, 1231.18], [2270.54, 1235.85], [2275.24, 1230.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2807.96, 1757.26], [2810.03, 1745.03], [2803.35, 1743.9], [2803.21, 1744.77], [2801.08, 1744.42], [2800.7, 1746.68], [2799.05, 1746.4], [2798.23, 1751.2], [2799.29, 1751.37], [2798.55, 1755.67], [2807.96, 1757.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2479.77, 1396.76], [2476.82, 1393.96], [2475.5, 1395.37], [2471.59, 1391.69], [2464.68, 1399.0], [2471.54, 1405.47], [2479.77, 1396.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2043.87, 1487.07], [2035.26, 1479.44], [2031.45, 1483.72], [2040.07, 1491.36], [2043.87, 1487.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2566.05, 1261.03], [2561.24, 1254.45], [2551.45, 1261.61], [2553.6, 1264.55], [2552.58, 1265.29], [2555.24, 1268.94], [2566.05, 1261.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2357.8, 1257.65], [2353.51, 1253.87], [2351.26, 1256.4], [2355.56, 1260.19], [2357.8, 1257.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2800.64, 1607.46], [2781.05, 1606.49], [2780.86, 1612.2], [2782.58, 1612.24], [2782.56, 1615.01], [2800.27, 1615.81], [2800.64, 1607.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2738.02, 1496.22], [2731.12, 1496.01], [2730.92, 1502.16], [2737.82, 1502.39], [2738.02, 1496.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2393.02, 1374.5], [2386.41, 1370.13], [2379.43, 1380.66], [2379.58, 1380.75], [2378.28, 1382.71], [2384.74, 1387.0], [2393.02, 1374.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2514.43, 1513.4], [2514.8, 1512.84], [2511.67, 1510.76], [2509.87, 1513.49], [2508.51, 1512.59], [2503.67, 1519.89], [2510.96, 1524.73], [2517.24, 1515.26], [2514.43, 1513.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2336.63, 1163.07], [2333.11, 1158.82], [2328.45, 1162.67], [2331.97, 1166.92], [2336.63, 1163.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2181.38, 1287.73], [2177.74, 1282.68], [2175.14, 1284.56], [2178.78, 1289.6], [2181.38, 1287.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2346.21, 1428.09], [2347.3, 1426.27], [2347.96, 1426.66], [2351.36, 1420.95], [2347.77, 1418.8], [2343.26, 1426.33], [2346.21, 1428.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2516.58, 1594.33], [2518.0, 1592.48], [2520.02, 1594.03], [2525.83, 1586.45], [2520.85, 1582.64], [2519.01, 1585.03], [2517.01, 1583.49], [2512.71, 1589.1], [2514.88, 1590.76], [2513.8, 1592.18], [2516.58, 1594.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2765.19, 1412.92], [2760.18, 1412.6], [2759.82, 1418.21], [2764.83, 1418.54], [2765.19, 1412.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2485.0, 1332.87], [2480.2, 1328.83], [2475.79, 1334.05], [2480.59, 1338.11], [2485.0, 1332.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2075.36, 1452.6], [2070.68, 1448.09], [2070.04, 1448.75], [2067.25, 1446.05], [2066.44, 1446.88], [2065.82, 1446.29], [2063.71, 1448.47], [2064.79, 1449.52], [2062.65, 1451.75], [2071.36, 1460.16], [2075.81, 1455.54], [2074.11, 1453.89], [2075.36, 1452.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2155.46, 1546.33], [2150.24, 1540.7], [2145.07, 1545.49], [2150.29, 1551.11], [2155.46, 1546.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2750.71, 1549.45], [2741.07, 1549.05], [2740.43, 1564.41], [2750.08, 1564.81], [2750.71, 1549.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2782.31, 1432.57], [2774.15, 1432.33], [2773.87, 1441.19], [2782.03, 1441.44], [2782.31, 1432.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2487.04, 1422.58], [2482.73, 1418.87], [2479.07, 1423.12], [2483.38, 1426.83], [2487.04, 1422.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2500.58, 1367.03], [2494.06, 1360.87], [2485.9, 1369.51], [2492.43, 1375.66], [2500.58, 1367.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2546.76, 1533.53], [2540.14, 1528.56], [2534.94, 1535.47], [2536.24, 1536.45], [2533.67, 1539.88], [2538.99, 1543.87], [2546.76, 1533.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2709.93, 1466.4], [2710.06, 1463.85], [2706.08, 1463.64], [2705.97, 1465.83], [2703.16, 1465.7], [2702.54, 1477.89], [2705.14, 1478.03], [2705.06, 1479.82], [2710.9, 1480.12], [2711.6, 1466.49], [2709.93, 1466.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2383.07, 1559.52], [2365.19, 1547.96], [2360.65, 1554.97], [2380.65, 1567.91], [2382.44, 1565.14], [2380.32, 1563.77], [2383.07, 1559.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2636.43, 1345.05], [2631.01, 1338.23], [2628.86, 1339.94], [2627.9, 1338.72], [2623.71, 1342.06], [2624.07, 1342.52], [2618.99, 1346.55], [2625.01, 1354.13], [2636.43, 1345.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2516.82, 1327.9], [2512.46, 1321.62], [2500.29, 1330.07], [2505.23, 1337.19], [2515.65, 1329.95], [2515.06, 1329.11], [2516.82, 1327.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1915.18, 1519.44], [1923.04, 1511.04], [1919.61, 1507.82], [1916.29, 1511.37], [1914.98, 1510.14], [1910.43, 1515.0], [1915.18, 1519.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2821.73, 1803.33], [2822.02, 1802.09], [2824.53, 1802.66], [2827.38, 1790.03], [2819.68, 1788.29], [2819.0, 1791.3], [2817.16, 1790.88], [2816.17, 1795.21], [2817.27, 1795.46], [2816.2, 1800.2], [2818.33, 1800.68], [2817.92, 1802.47], [2821.73, 1803.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2924.24, 1504.42], [2919.42, 1504.11], [2918.99, 1510.77], [2923.81, 1511.08], [2924.24, 1504.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2574.95, 2127.08], [2570.43, 2119.51], [2560.36, 2125.51], [2562.29, 2128.75], [2560.73, 2129.67], [2563.31, 2134.01], [2574.95, 2127.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2329.15, 1280.13], [2324.78, 1276.2], [2322.25, 1278.99], [2326.63, 1282.93], [2329.15, 1280.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2022.7, 1504.21], [2015.68, 1497.78], [2011.2, 1502.69], [2014.54, 1505.75], [2013.73, 1506.64], [2020.59, 1512.92], [2024.89, 1508.24], [2021.69, 1505.32], [2022.7, 1504.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2745.7, 1441.69], [2744.53, 1425.36], [2735.73, 1425.99], [2736.66, 1439.0], [2740.09, 1438.75], [2740.33, 1442.08], [2745.7, 1441.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2787.03, 1689.95], [2778.55, 1688.32], [2776.47, 1699.14], [2784.96, 1700.76], [2787.03, 1689.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2856.43, 1709.52], [2847.8, 1707.83], [2845.91, 1717.47], [2854.53, 1719.16], [2856.43, 1709.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2236.65, 1457.21], [2232.24, 1454.54], [2229.35, 1459.27], [2233.76, 1461.96], [2236.65, 1457.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2182.83, 1341.89], [2176.03, 1333.88], [2170.33, 1338.72], [2177.12, 1346.73], [2182.83, 1341.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2220.16, 1312.42], [2211.11, 1301.63], [2205.68, 1306.17], [2214.73, 1316.98], [2220.16, 1312.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2733.74, 1689.53], [2736.08, 1676.85], [2729.2, 1675.58], [2728.29, 1680.54], [2727.24, 1680.35], [2726.16, 1686.23], [2726.32, 1686.26], [2725.98, 1688.11], [2733.74, 1689.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2408.5, 1437.09], [2402.63, 1433.36], [2398.1, 1440.47], [2403.96, 1444.21], [2408.5, 1437.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2314.94, 1506.24], [2311.37, 1504.04], [2307.46, 1510.38], [2315.63, 1515.42], [2319.07, 1509.84], [2314.47, 1507.01], [2314.94, 1506.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2593.9, 1456.7], [2597.25, 1455.01], [2597.79, 1456.09], [2608.66, 1450.6], [2605.32, 1443.99], [2603.19, 1445.07], [2602.66, 1444.02], [2594.46, 1448.17], [2595.24, 1449.71], [2592.87, 1450.91], [2593.57, 1452.29], [2592.05, 1453.05], [2593.9, 1456.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2505.99, 1242.44], [2500.66, 1235.27], [2490.5, 1242.82], [2495.83, 1250.0], [2505.99, 1242.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2379.12, 1088.26], [2374.13, 1083.13], [2366.98, 1090.1], [2371.97, 1095.22], [2379.12, 1088.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2484.17, 1351.92], [2477.89, 1346.01], [2468.07, 1356.42], [2474.35, 1362.33], [2484.17, 1351.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2251.65, 1352.99], [2246.03, 1349.28], [2241.56, 1356.07], [2247.17, 1359.78], [2251.65, 1352.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2434.01, 1155.38], [2438.59, 1150.06], [2443.13, 1153.97], [2446.91, 1149.57], [2439.43, 1143.13], [2431.06, 1152.83], [2434.01, 1155.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2493.6, 1453.74], [2482.38, 1446.37], [2478.23, 1452.67], [2489.45, 1460.05], [2493.6, 1453.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2780.05, 1585.61], [2773.56, 1585.33], [2773.36, 1590.16], [2779.85, 1590.42], [2780.05, 1585.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2404.91, 1574.43], [2399.39, 1570.65], [2396.17, 1575.37], [2401.68, 1579.15], [2404.91, 1574.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2232.87, 1430.43], [2225.93, 1426.14], [2221.87, 1432.7], [2228.81, 1436.99], [2232.87, 1430.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2322.18, 1176.07], [2317.47, 1171.78], [2316.13, 1173.25], [2317.11, 1174.15], [2315.4, 1176.02], [2319.13, 1179.41], [2322.18, 1176.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2193.96, 1931.33], [2189.67, 1927.07], [2183.14, 1933.66], [2183.73, 1934.24], [2180.49, 1937.51], [2186.02, 1942.99], [2194.71, 1934.2], [2192.9, 1932.41], [2193.96, 1931.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2244.13, 2106.77], [2248.93, 2101.93], [2242.32, 2095.4], [2237.53, 2100.24], [2244.13, 2106.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2145.56, 2283.59], [2140.73, 2279.12], [2139.32, 2280.65], [2138.88, 2280.24], [2130.62, 2289.14], [2135.88, 2294.02], [2145.56, 2283.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2175.75, 2083.53], [2170.18, 2077.82], [2164.71, 2083.16], [2170.28, 2088.87], [2175.75, 2083.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2166.77, 2074.48], [2161.42, 2068.43], [2155.01, 2074.1], [2160.36, 2080.15], [2166.77, 2074.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2102.05, 2152.93], [2097.91, 2148.24], [2095.17, 2150.69], [2099.3, 2155.36], [2102.05, 2152.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2223.97, 1928.53], [2218.71, 1923.9], [2212.59, 1930.84], [2217.84, 1935.48], [2223.97, 1928.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1552.64, 2520.81], [1570.97, 2514.5], [1568.53, 2507.43], [1567.37, 2507.83], [1565.44, 2502.21], [1547.8, 2508.28], [1549.46, 2513.14], [1547.46, 2513.83], [1549.92, 2520.97], [1551.2, 2520.53], [1552.64, 2520.81]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.177, "pop": 0, "jobs": 177}}, {"shape": {"outer": [[1933.6, 2126.72], [1935.98, 2124.47], [1937.52, 2126.08], [1941.55, 2122.24], [1931.71, 2111.9], [1928.34, 2115.09], [1927.0, 2113.7], [1923.96, 2116.59], [1933.6, 2126.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1306.21, 2644.51], [1302.56, 2638.28], [1303.59, 2637.68], [1298.51, 2629.04], [1297.02, 2629.92], [1293.49, 2623.91], [1284.42, 2629.22], [1288.02, 2635.34], [1287.15, 2635.84], [1290.31, 2641.2], [1294.62, 2638.66], [1300.14, 2648.03], [1306.21, 2644.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[1868.57, 1955.44], [1861.98, 1949.0], [1858.59, 1952.48], [1859.2, 1953.08], [1853.36, 1959.06], [1859.32, 1964.88], [1868.57, 1955.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2296.97, 2229.05], [2291.57, 2223.37], [2280.54, 2233.87], [2285.95, 2239.55], [2296.97, 2229.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2274.7, 2186.15], [2269.72, 2181.42], [2265.32, 2186.05], [2270.29, 2190.79], [2274.7, 2186.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2313.08, 1987.7], [2310.59, 1985.2], [2308.56, 1987.24], [2307.17, 1985.85], [2308.66, 1984.35], [2306.44, 1982.13], [2299.32, 1989.28], [2299.93, 1989.89], [2297.35, 1992.49], [2302.85, 1997.97], [2313.08, 1987.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2130.23, 2218.17], [2125.95, 2214.25], [2121.94, 2218.62], [2126.22, 2222.53], [2130.23, 2218.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2272.81, 2098.12], [2266.29, 2091.61], [2254.48, 2103.47], [2261.0, 2109.98], [2272.81, 2098.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2176.2, 2271.51], [2177.86, 2269.76], [2178.74, 2270.61], [2182.39, 2266.77], [2181.64, 2266.05], [2182.43, 2265.21], [2177.11, 2260.15], [2171.0, 2266.57], [2176.2, 2271.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2251.42, 2276.56], [2248.6, 2273.81], [2243.38, 2279.12], [2246.21, 2281.89], [2251.42, 2276.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2171.99, 2106.68], [2167.36, 2101.65], [2163.69, 2105.02], [2162.98, 2104.25], [2155.91, 2110.78], [2161.26, 2116.57], [2171.99, 2106.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1987.61, 1988.36], [1983.2, 1984.32], [1981.37, 1986.31], [1980.36, 1985.38], [1977.97, 1987.99], [1977.24, 1987.32], [1974.04, 1990.82], [1975.73, 1992.39], [1974.27, 1993.98], [1977.91, 1997.33], [1977.59, 1997.67], [1979.06, 1999.01], [1986.16, 1991.27], [1985.5, 1990.66], [1987.61, 1988.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2041.43, 2183.01], [2036.84, 2177.84], [2030.18, 2183.76], [2034.78, 2188.93], [2041.43, 2183.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1801.08, 1965.76], [1794.63, 1959.09], [1788.56, 1964.96], [1795.01, 1971.64], [1801.08, 1965.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2476.18, 2215.22], [2479.39, 2212.25], [2480.46, 2213.4], [2483.67, 2210.44], [2479.45, 2205.88], [2475.85, 2209.21], [2474.77, 2208.04], [2472.48, 2210.16], [2471.28, 2208.86], [2468.26, 2211.66], [2469.5, 2213.0], [2466.36, 2215.9], [2467.07, 2216.68], [2465.79, 2217.86], [2470.36, 2222.8], [2477.27, 2216.42], [2476.18, 2215.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2225.28, 2114.61], [2227.17, 2112.64], [2228.62, 2114.03], [2231.32, 2111.22], [2219.65, 2099.99], [2215.06, 2104.77], [2225.28, 2114.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2288.76, 2199.38], [2285.93, 2196.46], [2279.1, 2203.09], [2281.92, 2206.01], [2288.76, 2199.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2414.79, 2124.29], [2410.31, 2119.59], [2401.4, 2128.11], [2405.87, 2132.79], [2414.79, 2124.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2336.05, 2188.92], [2333.07, 2186.02], [2328.74, 2190.48], [2331.72, 2193.38], [2336.05, 2188.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2397.84, 2089.85], [2392.84, 2084.84], [2391.88, 2085.8], [2390.94, 2084.86], [2383.89, 2091.89], [2389.83, 2097.83], [2397.84, 2089.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2000.28, 2050.03], [2005.08, 2044.99], [2004.2, 2044.15], [2005.68, 2042.59], [2001.93, 2039.02], [1999.61, 2041.46], [1998.8, 2040.69], [1995.11, 2044.56], [1996.12, 2045.53], [1995.1, 2046.6], [1998.0, 2049.37], [1998.75, 2048.58], [2000.28, 2050.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1933.93, 2157.38], [1927.67, 2151.63], [1923.28, 2156.42], [1918.09, 2151.66], [1913.92, 2156.2], [1919.32, 2161.16], [1918.58, 2161.97], [1924.64, 2167.52], [1933.93, 2157.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2533.09, 2246.51], [2528.29, 2241.95], [2523.87, 2246.61], [2528.67, 2251.17], [2533.09, 2246.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2085.29, 2306.71], [2083.38, 2304.73], [2082.11, 2305.96], [2080.57, 2304.35], [2073.09, 2311.57], [2074.05, 2312.56], [2072.74, 2313.82], [2077.57, 2318.84], [2086.58, 2310.14], [2084.25, 2307.73], [2085.29, 2306.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2021.05, 2044.39], [2018.89, 2042.13], [2014.36, 2046.46], [2016.53, 2048.72], [2021.05, 2044.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1958.22, 2135.28], [1952.9, 2129.64], [1944.69, 2137.39], [1950.01, 2143.03], [1958.22, 2135.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2350.02, 2193.86], [2346.25, 2190.14], [2341.59, 2194.86], [2345.36, 2198.59], [2350.02, 2193.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2268.05, 2198.57], [2263.68, 2194.1], [2251.36, 2206.09], [2256.88, 2211.75], [2265.88, 2202.97], [2264.74, 2201.8], [2268.05, 2198.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2180.11, 2458.41], [2174.08, 2453.1], [2169.02, 2458.84], [2171.44, 2460.96], [2167.47, 2465.46], [2171.08, 2468.66], [2180.11, 2458.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2299.97, 2238.83], [2302.92, 2235.62], [2298.11, 2231.22], [2295.29, 2234.33], [2299.97, 2238.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2287.31, 2045.77], [2292.11, 2041.05], [2292.81, 2041.75], [2296.01, 2038.62], [2294.95, 2037.55], [2299.09, 2033.5], [2294.09, 2028.4], [2289.78, 2032.64], [2288.9, 2031.74], [2285.7, 2034.89], [2286.43, 2035.63], [2283.91, 2038.1], [2284.66, 2038.87], [2282.55, 2040.93], [2287.31, 2045.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2078.95, 2162.36], [2072.47, 2156.22], [2066.7, 2162.3], [2073.18, 2168.44], [2078.95, 2162.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1957.44, 2114.65], [1953.83, 2110.95], [1950.78, 2113.94], [1954.38, 2117.64], [1957.44, 2114.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2271.98, 2127.29], [2278.8, 2133.88], [2295.4, 2116.17], [2288.82, 2109.64], [2271.98, 2127.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[2263.08, 2560.09], [2258.12, 2555.6], [2255.12, 2558.92], [2260.07, 2563.41], [2263.08, 2560.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2022.35, 2162.32], [2017.32, 2157.52], [2015.21, 2159.73], [2014.83, 2159.36], [2006.89, 2167.69], [2008.64, 2169.36], [2008.01, 2170.02], [2012.15, 2173.98], [2020.62, 2165.11], [2020.13, 2164.65], [2022.35, 2162.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2095.89, 2396.68], [2103.99, 2388.2], [2098.26, 2382.74], [2088.77, 2392.68], [2091.72, 2395.49], [2093.1, 2394.03], [2095.89, 2396.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2230.19, 2502.38], [2225.1, 2497.5], [2223.09, 2499.61], [2222.27, 2498.83], [2215.76, 2505.61], [2222.47, 2512.04], [2229.28, 2504.93], [2228.48, 2504.17], [2230.19, 2502.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2091.41, 2191.93], [2095.96, 2187.34], [2093.61, 2185.01], [2094.69, 2183.92], [2087.22, 2176.5], [2080.8, 2182.97], [2089.05, 2191.16], [2089.84, 2190.37], [2091.41, 2191.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2533.53, 2263.77], [2528.36, 2258.81], [2517.63, 2269.98], [2522.79, 2274.94], [2533.53, 2263.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2187.43, 2052.84], [2181.67, 2047.06], [2175.72, 2052.98], [2181.48, 2058.77], [2187.43, 2052.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2333.11, 2011.39], [2328.15, 2007.17], [2326.63, 2008.96], [2325.9, 2008.34], [2319.99, 2015.31], [2325.68, 2020.14], [2333.11, 2011.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1407.35, 2129.2], [1384.82, 2124.49], [1383.37, 2131.42], [1405.89, 2136.15], [1407.35, 2129.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2326.09, 2208.26], [2322.32, 2204.81], [2319.95, 2207.41], [2323.72, 2210.85], [2326.09, 2208.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[1290.26, 2820.38], [1290.49, 2826.58], [1302.7, 2826.1], [1302.47, 2819.9], [1290.26, 2820.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1859.82, 1935.41], [1857.32, 1932.88], [1852.79, 1937.35], [1855.29, 1939.88], [1859.82, 1935.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1988.44, 2060.85], [1991.44, 2057.88], [1992.18, 2058.62], [1994.72, 2056.11], [1988.49, 2049.81], [1982.94, 2055.3], [1988.44, 2060.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1317.32, 2496.16], [1319.37, 2500.71], [1326.31, 2497.58], [1324.25, 2493.03], [1317.32, 2496.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2543.14, 2270.07], [2540.27, 2266.95], [2537.35, 2269.62], [2536.7, 2268.92], [2526.72, 2278.11], [2531.02, 2282.77], [2541.61, 2273.02], [2540.84, 2272.18], [2543.14, 2270.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2239.68, 2584.92], [2230.17, 2576.03], [2227.66, 2578.71], [2230.22, 2581.11], [2226.39, 2585.21], [2233.34, 2591.7], [2239.68, 2584.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1829.28, 1978.54], [1823.06, 1972.66], [1820.85, 1974.99], [1819.8, 1973.99], [1813.5, 1980.66], [1820.79, 1987.54], [1829.28, 1978.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1783.89, 2223.28], [1860.72, 2206.91], [1856.0, 2182.5], [1817.26, 2190.98], [1812.38, 2169.23], [1774.29, 2177.45], [1783.89, 2223.28]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1802}}, {"shape": {"outer": [[2014.34, 2035.28], [2009.14, 2030.05], [2004.27, 2034.89], [2009.47, 2040.11], [2014.34, 2035.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2213.93, 2277.3], [2210.93, 2274.1], [2206.26, 2278.5], [2209.26, 2281.68], [2213.93, 2277.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2265.35, 2021.09], [2272.33, 2027.54], [2284.05, 2014.95], [2277.26, 2008.53], [2265.35, 2021.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2198.52, 2044.4], [2196.01, 2041.64], [2192.38, 2044.91], [2194.89, 2047.69], [2198.52, 2044.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[1356.92, 2592.52], [1360.22, 2598.28], [1365.48, 2595.25], [1362.18, 2589.51], [1356.92, 2592.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2401.21, 2134.1], [2397.17, 2130.82], [2388.38, 2141.6], [2393.73, 2145.95], [2401.14, 2136.85], [2399.84, 2135.79], [2401.21, 2134.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1847.18, 1996.0], [1842.77, 1991.7], [1834.66, 2000.03], [1839.07, 2004.33], [1847.18, 1996.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1732.05, 2451.3], [1745.14, 2448.55], [1739.46, 2418.7], [1725.53, 2422.59], [1732.05, 2451.3]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.266, "pop": 0, "jobs": 266}}, {"shape": {"outer": [[2236.95, 2157.54], [2233.99, 2154.6], [2228.13, 2160.53], [2231.09, 2163.46], [2236.95, 2157.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2256.72, 2269.06], [2266.89, 2258.74], [2260.94, 2252.88], [2249.94, 2264.05], [2251.92, 2266.0], [2252.76, 2265.16], [2256.72, 2269.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2186.72, 2091.31], [2181.31, 2085.62], [2178.08, 2088.69], [2176.69, 2087.23], [2171.79, 2091.9], [2178.6, 2099.05], [2186.72, 2091.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2081.09, 2080.78], [2076.19, 2075.51], [2068.86, 2082.32], [2073.76, 2087.59], [2081.09, 2080.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1377.63, 2736.18], [1378.15, 2748.67], [1383.97, 2748.4], [1384.13, 2751.93], [1382.33, 2752.01], [1382.76, 2761.38], [1392.47, 2760.91], [1391.87, 2749.36], [1393.17, 2749.33], [1392.6, 2735.57], [1390.23, 2735.67], [1390.2, 2734.39], [1381.98, 2734.78], [1382.06, 2735.97], [1377.63, 2736.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.254, "pop": 127, "jobs": 0}}, {"shape": {"outer": [[2179.03, 2177.91], [2173.0, 2171.98], [2165.06, 2180.06], [2171.08, 2185.98], [2179.03, 2177.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2049.48, 2193.8], [2044.67, 2189.14], [2039.83, 2194.14], [2044.63, 2198.8], [2049.48, 2193.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[1998.11, 2067.0], [2002.66, 2062.31], [1997.88, 2057.63], [1993.38, 2062.29], [1998.11, 2067.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2362.32, 2204.85], [2375.15, 2191.63], [2370.26, 2187.03], [2357.71, 2200.01], [2362.32, 2204.85]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.078, "pop": 0, "jobs": 78}}, {"shape": {"outer": [[2283.56, 1975.82], [2290.25, 1969.32], [2290.67, 1969.75], [2293.24, 1967.25], [2286.93, 1960.75], [2285.29, 1962.34], [2285.11, 1962.16], [2282.58, 1964.62], [2282.23, 1964.25], [2280.19, 1966.23], [2280.89, 1966.96], [2277.84, 1969.92], [2283.56, 1975.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2078.51, 2147.7], [2076.57, 2145.35], [2074.6, 2146.97], [2073.05, 2145.1], [2068.22, 2149.08], [2071.72, 2153.3], [2078.51, 2147.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2054.36, 2053.41], [2049.42, 2048.59], [2039.86, 2058.37], [2040.32, 2058.81], [2038.8, 2060.37], [2043.28, 2064.74], [2054.36, 2053.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1381.15, 2661.81], [1396.09, 2651.5], [1388.19, 2640.01], [1380.02, 2645.63], [1383.29, 2650.37], [1376.51, 2655.05], [1381.15, 2661.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2064.22, 2062.88], [2058.38, 2057.28], [2048.44, 2067.66], [2054.27, 2073.26], [2064.22, 2062.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2021.65, 2184.81], [2018.49, 2181.74], [2014.15, 2186.21], [2017.31, 2189.28], [2021.65, 2184.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1982.26, 2208.2], [1979.66, 2205.5], [1978.2, 2206.89], [1975.09, 2203.67], [1968.5, 2210.01], [1974.22, 2215.95], [1982.26, 2208.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1914.99, 2146.29], [1917.43, 2143.66], [1918.86, 2144.99], [1921.77, 2141.85], [1920.35, 2140.55], [1921.2, 2139.63], [1910.79, 2129.99], [1907.33, 2133.73], [1908.13, 2134.47], [1906.41, 2136.33], [1907.17, 2137.03], [1906.17, 2138.11], [1914.99, 2146.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2139.76, 2217.61], [2135.48, 2213.68], [2131.8, 2217.7], [2136.08, 2221.62], [2139.76, 2217.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2318.29, 2246.44], [2315.89, 2244.26], [2317.04, 2242.92], [2313.89, 2239.99], [2314.24, 2239.57], [2309.62, 2235.26], [2309.21, 2235.66], [2307.34, 2233.87], [2301.67, 2239.7], [2313.73, 2251.23], [2318.29, 2246.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[1817.69, 2320.14], [1835.13, 2316.32], [1836.86, 2324.23], [1855.36, 2320.19], [1841.44, 2256.48], [1828.74, 2259.26], [1826.25, 2247.83], [1794.68, 2254.73], [1802.61, 2291.01], [1799.99, 2291.58], [1808.53, 2330.62], [1819.46, 2328.22], [1817.69, 2320.14]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2109}}, {"shape": {"outer": [[2028.33, 2116.51], [2022.71, 2111.39], [2017.59, 2117.01], [2023.21, 2122.14], [2028.33, 2116.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1523.62, 2690.17], [1532.09, 2688.97], [1531.25, 2683.0], [1522.76, 2684.2], [1523.62, 2690.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[1350.04, 2604.4], [1356.63, 2600.4], [1354.28, 2596.57], [1351.74, 2598.09], [1345.29, 2587.65], [1338.56, 2591.79], [1339.3, 2592.95], [1336.33, 2594.79], [1337.44, 2596.59], [1337.01, 2596.87], [1338.12, 2598.66], [1338.56, 2598.39], [1339.66, 2600.18], [1338.85, 2600.69], [1340.31, 2603.07], [1341.14, 2602.56], [1342.3, 2604.44], [1347.93, 2600.95], [1350.04, 2604.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2150.72, 2311.31], [2147.38, 2308.19], [2143.29, 2312.56], [2146.63, 2315.68], [2150.72, 2311.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1709.41, 2344.03], [1714.43, 2343.62], [1713.36, 2330.58], [1708.34, 2330.99], [1709.41, 2344.03]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.042, "pop": 0, "jobs": 42}}, {"shape": {"outer": [[2336.79, 2056.66], [2341.7, 2051.66], [2337.56, 2047.6], [2335.61, 2049.59], [2332.08, 2046.12], [2327.84, 2050.44], [2331.35, 2053.89], [2332.64, 2052.57], [2336.79, 2056.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2218.28, 2349.88], [2206.28, 2337.67], [2200.32, 2343.52], [2212.34, 2355.73], [2218.28, 2349.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2004.72, 2144.58], [1998.59, 2138.41], [1987.59, 2149.32], [1993.71, 2155.5], [2004.72, 2144.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2012.31, 2095.52], [2006.13, 2089.42], [1997.76, 2097.9], [1998.67, 2098.8], [1997.06, 2100.43], [2002.33, 2105.63], [2012.31, 2095.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2208.92, 1923.02], [2202.18, 1916.24], [2195.53, 1922.85], [2202.28, 1929.63], [2208.92, 1923.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1267.4, 2666.94], [1271.78, 2671.33], [1277.92, 2665.2], [1273.53, 2660.82], [1267.4, 2666.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2034.16, 2247.81], [2025.58, 2239.63], [2021.19, 2244.23], [2023.71, 2246.64], [2022.63, 2247.77], [2028.7, 2253.54], [2034.16, 2247.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2495.54, 2203.57], [2493.32, 2201.28], [2489.24, 2205.24], [2491.46, 2207.53], [2495.54, 2203.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2026.73, 2259.58], [2019.42, 2252.57], [2016.06, 2256.09], [2013.46, 2253.6], [2010.69, 2256.49], [2013.48, 2259.16], [2014.5, 2258.1], [2021.62, 2264.92], [2026.73, 2259.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2338.7, 2022.57], [2333.75, 2018.11], [2326.21, 2026.44], [2327.62, 2027.73], [2326.72, 2028.72], [2328.5, 2030.31], [2326.53, 2032.49], [2330.83, 2036.38], [2335.67, 2031.02], [2333.13, 2028.74], [2338.7, 2022.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1918.56, 1922.03], [1912.84, 1916.28], [1909.93, 1919.17], [1909.42, 1918.67], [1903.09, 1924.97], [1904.22, 1926.11], [1901.09, 1929.23], [1906.17, 1934.34], [1918.56, 1922.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1899.23, 1903.33], [1895.27, 1899.36], [1886.17, 1908.46], [1891.81, 1914.08], [1899.28, 1906.61], [1897.61, 1904.95], [1899.23, 1903.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2267.68, 2125.72], [2264.69, 2123.22], [2260.54, 2128.18], [2263.52, 2130.67], [2267.68, 2125.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2254.2, 2169.24], [2249.15, 2164.52], [2244.65, 2169.31], [2249.71, 2174.04], [2254.2, 2169.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1943.0, 2117.45], [1945.66, 2114.9], [1946.6, 2115.89], [1949.19, 2113.43], [1948.51, 2112.71], [1949.47, 2111.8], [1938.99, 2100.8], [1935.94, 2103.71], [1936.98, 2104.8], [1935.09, 2106.61], [1935.75, 2107.3], [1934.48, 2108.52], [1943.0, 2117.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1982.44, 2196.33], [1979.54, 2193.73], [1975.93, 2197.74], [1978.84, 2200.35], [1982.44, 2196.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1199.87, 2579.66], [1215.85, 2573.87], [1212.63, 2564.7], [1218.7, 2562.55], [1214.6, 2550.95], [1196.98, 2557.08], [1201.67, 2570.22], [1197.11, 2571.88], [1199.87, 2579.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[2276.88, 2267.87], [2269.58, 2260.98], [2259.73, 2271.45], [2267.02, 2278.33], [2276.88, 2267.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2000.42, 2200.73], [1996.11, 2196.14], [1991.47, 2200.51], [1995.78, 2205.1], [2000.42, 2200.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2090.01, 2261.75], [2085.52, 2256.67], [2082.54, 2259.3], [2087.03, 2264.38], [2090.01, 2261.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1997.4, 2075.45], [1990.79, 2068.66], [1978.7, 2080.79], [1985.57, 2087.5], [1997.4, 2075.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2546.49, 2259.62], [2542.18, 2255.37], [2537.9, 2259.72], [2542.21, 2263.96], [2546.49, 2259.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1280.82, 2762.08], [1287.94, 2761.72], [1287.59, 2755.45], [1280.47, 2755.81], [1280.82, 2762.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2324.27, 2213.38], [2319.46, 2208.48], [2316.79, 2211.11], [2321.6, 2216.01], [2324.27, 2213.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1867.22, 2012.37], [1863.16, 2008.05], [1860.37, 2010.66], [1859.78, 2010.03], [1851.33, 2017.97], [1854.9, 2021.78], [1853.43, 2023.16], [1856.82, 2026.77], [1867.44, 2016.78], [1865.14, 2014.33], [1867.22, 2012.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2217.58, 2153.6], [2213.17, 2149.04], [2205.69, 2156.26], [2211.04, 2161.8], [2217.1, 2155.94], [2216.16, 2154.98], [2217.58, 2153.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2127.25, 2363.4], [2135.61, 2355.58], [2133.06, 2352.86], [2131.7, 2354.12], [2127.19, 2349.31], [2119.87, 2356.16], [2123.32, 2359.85], [2123.64, 2359.55], [2127.25, 2363.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2243.65, 2563.61], [2238.44, 2558.89], [2236.23, 2561.34], [2241.44, 2566.05], [2243.65, 2563.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2207.56, 2069.45], [2202.08, 2063.8], [2192.59, 2073.0], [2198.07, 2078.66], [2207.56, 2069.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1948.15, 1953.4], [1941.62, 1947.19], [1931.98, 1957.32], [1934.25, 1959.48], [1931.78, 1962.07], [1936.04, 1966.12], [1948.15, 1953.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1911.68, 1941.55], [1908.92, 1938.64], [1904.67, 1942.68], [1907.43, 1945.6], [1911.68, 1941.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1232.62, 2382.19], [1241.28, 2391.81], [1249.51, 2384.43], [1246.43, 2381.02], [1257.16, 2371.36], [1251.57, 2365.16], [1232.62, 2382.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[2462.47, 2213.5], [2470.99, 2205.53], [2470.23, 2204.71], [2471.48, 2203.54], [2468.09, 2199.91], [2466.18, 2201.7], [2464.48, 2199.88], [2455.31, 2208.44], [2459.28, 2212.7], [2460.59, 2211.48], [2462.47, 2213.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1917.63, 1996.77], [1915.67, 1994.75], [1913.86, 1996.5], [1911.86, 1994.43], [1904.29, 2001.73], [1905.04, 2002.51], [1901.27, 2006.15], [1906.64, 2011.72], [1918.57, 2000.2], [1916.4, 1997.95], [1917.63, 1996.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1985.41, 2151.9], [1982.69, 2149.41], [1978.69, 2153.78], [1981.41, 2156.27], [1985.41, 2151.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1432.27, 2164.71], [1411.73, 2160.24], [1416.5, 2138.28], [1408.96, 2136.64], [1404.03, 2159.25], [1409.88, 2160.52], [1408.37, 2167.47], [1430.61, 2172.31], [1432.27, 2164.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.284, "pop": 142, "jobs": 0}}, {"shape": {"outer": [[1308.21, 2744.84], [1307.81, 2737.94], [1297.58, 2738.54], [1297.18, 2738.06], [1294.93, 2738.17], [1294.47, 2738.72], [1291.51, 2738.89], [1291.98, 2748.37], [1303.48, 2747.7], [1303.4, 2745.12], [1308.21, 2744.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2291.35, 2513.18], [2285.32, 2507.6], [2281.21, 2512.06], [2287.24, 2517.63], [2291.35, 2513.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2045.31, 2139.76], [2050.01, 2134.91], [2043.12, 2128.24], [2037.5, 2134.06], [2043.16, 2139.52], [2044.08, 2138.58], [2045.31, 2139.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2142.58, 2221.9], [2143.38, 2221.0], [2144.32, 2221.84], [2147.13, 2218.69], [2150.0, 2221.25], [2155.19, 2215.46], [2148.97, 2209.9], [2140.17, 2219.74], [2142.58, 2221.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1252.18, 2663.04], [1249.82, 2659.87], [1249.35, 2660.23], [1245.8, 2655.47], [1244.14, 2656.73], [1241.32, 2652.95], [1232.23, 2659.79], [1234.8, 2663.23], [1233.19, 2664.4], [1239.37, 2672.65], [1251.71, 2663.38], [1252.18, 2663.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[1962.87, 2109.84], [1958.1, 2104.64], [1953.59, 2108.78], [1958.36, 2113.98], [1962.87, 2109.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1983.27, 2127.07], [1977.23, 2120.38], [1970.38, 2126.57], [1976.42, 2133.26], [1983.27, 2127.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2156.86, 2255.57], [2158.35, 2254.2], [2158.93, 2254.81], [2167.49, 2246.94], [2166.93, 2246.34], [2169.74, 2243.76], [2166.1, 2239.82], [2163.26, 2242.42], [2161.37, 2240.37], [2152.75, 2248.3], [2153.96, 2249.61], [2152.56, 2250.9], [2156.86, 2255.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2438.67, 2168.52], [2432.18, 2162.31], [2420.52, 2174.17], [2420.48, 2176.63], [2425.83, 2181.49], [2438.67, 2168.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2216.38, 2118.7], [2218.26, 2116.74], [2219.7, 2118.11], [2221.64, 2116.09], [2220.99, 2115.47], [2222.01, 2114.4], [2213.49, 2106.26], [2208.66, 2111.32], [2216.38, 2118.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1262.92, 2677.94], [1260.89, 2675.89], [1259.99, 2676.79], [1253.81, 2670.55], [1246.83, 2677.37], [1255.34, 2685.98], [1262.31, 2679.14], [1262.01, 2678.84], [1262.92, 2677.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2247.44, 2182.92], [2242.1, 2178.24], [2240.17, 2180.45], [2239.03, 2179.45], [2231.2, 2188.36], [2237.68, 2194.05], [2247.44, 2182.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2269.41, 2283.97], [2277.29, 2291.61], [2286.64, 2281.97], [2278.75, 2274.33], [2269.41, 2283.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2011.13, 2231.97], [2005.3, 2226.21], [1996.63, 2234.97], [2002.46, 2240.74], [2011.13, 2231.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2337.26, 2490.09], [2342.3, 2485.25], [2340.37, 2483.26], [2341.14, 2482.53], [2334.25, 2475.35], [2327.86, 2481.49], [2335.16, 2489.1], [2335.76, 2488.53], [2337.26, 2490.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2242.62, 2170.38], [2238.82, 2166.61], [2234.72, 2170.74], [2238.52, 2174.5], [2242.62, 2170.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2311.81, 2136.66], [2305.67, 2130.7], [2294.84, 2141.86], [2300.98, 2147.82], [2311.81, 2136.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2141.99, 2084.49], [2136.4, 2078.37], [2130.83, 2083.46], [2136.44, 2089.59], [2141.99, 2084.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2235.8, 2079.13], [2247.42, 2089.91], [2257.41, 2079.34], [2246.15, 2068.53], [2235.8, 2079.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[1825.81, 1939.34], [1827.1, 1937.91], [1828.31, 1939.01], [1830.85, 1936.22], [1831.17, 1936.5], [1832.75, 1934.76], [1823.62, 1926.44], [1818.19, 1932.38], [1825.81, 1939.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2370.74, 2456.74], [2362.22, 2447.98], [2356.89, 2453.15], [2365.41, 2461.93], [2370.74, 2456.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1948.24, 2124.7], [1944.69, 2120.59], [1941.54, 2123.3], [1945.08, 2127.42], [1948.24, 2124.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2200.11, 1936.55], [2204.09, 1932.29], [2201.28, 1929.47], [2197.19, 1933.82], [2200.11, 1936.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1853.62, 1913.03], [1845.1, 1904.19], [1839.41, 1909.68], [1847.91, 1918.52], [1853.62, 1913.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1905.1, 2074.63], [1900.3, 2070.22], [1896.37, 2074.5], [1901.17, 2078.91], [1905.1, 2074.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2200.74, 2478.25], [2193.94, 2471.34], [2184.86, 2480.3], [2191.66, 2487.2], [2200.74, 2478.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1975.33, 2293.53], [1971.17, 2289.76], [1968.44, 2292.94], [1972.49, 2296.62], [1975.33, 2293.53]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.015, "pop": 0, "jobs": 15}}, {"shape": {"outer": [[2099.95, 2254.61], [2094.89, 2249.71], [2092.04, 2252.67], [2097.1, 2257.56], [2099.95, 2254.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2158.23, 2100.9], [2152.32, 2094.93], [2146.78, 2100.43], [2152.69, 2106.4], [2158.23, 2100.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2327.84, 2238.01], [2318.65, 2229.8], [2313.45, 2235.61], [2322.64, 2243.83], [2327.84, 2238.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2236.97, 1901.04], [2227.24, 1891.85], [2221.6, 1897.83], [2228.77, 1904.6], [2227.63, 1905.8], [2230.19, 1908.21], [2236.97, 1901.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2167.58, 2001.11], [2161.88, 1996.42], [2156.62, 2002.83], [2162.32, 2007.51], [2167.58, 2001.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1988.16, 2005.64], [1990.17, 2003.54], [1991.23, 2004.56], [1993.05, 2002.66], [1991.94, 2001.6], [1994.21, 1999.23], [1993.0, 1998.06], [1994.94, 1996.03], [1992.47, 1993.66], [1990.52, 1995.71], [1989.47, 1994.69], [1983.38, 2001.06], [1988.16, 2005.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2205.6, 2281.31], [2203.11, 2278.99], [2201.62, 2280.58], [2197.73, 2276.93], [2190.35, 2284.82], [2192.28, 2286.62], [2190.48, 2288.55], [2194.94, 2292.71], [2205.6, 2281.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2208.61, 2129.67], [2211.05, 2126.89], [2212.99, 2128.58], [2214.98, 2126.3], [2213.73, 2125.2], [2214.85, 2123.91], [2207.4, 2117.39], [2205.56, 2119.48], [2203.85, 2117.99], [2201.22, 2121.01], [2203.02, 2122.59], [2201.94, 2123.83], [2208.61, 2129.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2166.55, 2301.68], [2162.18, 2297.6], [2152.88, 2307.54], [2158.93, 2313.2], [2166.14, 2305.48], [2164.46, 2303.92], [2166.55, 2301.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2085.0, 2384.02], [2092.13, 2376.76], [2079.28, 2364.1], [2072.07, 2371.54], [2085.0, 2384.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2267.86, 2299.05], [2261.37, 2292.8], [2255.99, 2298.39], [2263.84, 2305.95], [2268.07, 2301.55], [2266.72, 2300.24], [2267.86, 2299.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2235.49, 2299.43], [2232.77, 2296.76], [2227.79, 2301.83], [2230.51, 2304.49], [2235.49, 2299.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2110.78, 2394.94], [2106.34, 2390.41], [2096.5, 2400.07], [2103.2, 2406.9], [2112.09, 2398.18], [2109.83, 2395.88], [2110.78, 2394.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2042.04, 2124.22], [2034.99, 2116.64], [2026.06, 2124.93], [2032.35, 2131.7], [2032.16, 2131.88], [2033.57, 2133.38], [2035.92, 2131.2], [2035.28, 2130.51], [2042.04, 2124.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2159.14, 2014.85], [2155.89, 2011.84], [2152.19, 2015.73], [2155.48, 2018.85], [2159.14, 2014.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2109.14, 2109.53], [2104.0, 2104.55], [2096.89, 2111.88], [2099.11, 2114.03], [2097.23, 2115.96], [2100.15, 2118.79], [2109.14, 2109.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2122.27, 2031.53], [2117.04, 2026.8], [2112.14, 2032.24], [2117.36, 2036.96], [2122.27, 2031.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2057.23, 2226.83], [2062.84, 2220.96], [2053.34, 2211.91], [2055.12, 2210.05], [2049.66, 2204.85], [2047.51, 2207.11], [2052.51, 2211.88], [2046.86, 2217.82], [2055.35, 2225.92], [2055.79, 2225.45], [2057.23, 2226.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1215.06, 2541.73], [1218.28, 2540.48], [1216.91, 2536.65], [1213.69, 2537.9], [1215.06, 2541.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[2585.73, 2305.72], [2581.82, 2302.17], [2577.97, 2306.42], [2581.88, 2309.96], [2585.73, 2305.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1258.19, 2550.49], [1256.46, 2547.21], [1255.25, 2547.85], [1254.53, 2546.5], [1256.99, 2545.21], [1253.7, 2538.96], [1253.16, 2539.25], [1251.28, 2535.69], [1242.62, 2540.25], [1244.62, 2544.05], [1246.14, 2543.25], [1247.6, 2546.01], [1246.84, 2546.4], [1248.13, 2548.84], [1248.88, 2548.44], [1249.16, 2548.99], [1251.48, 2547.77], [1252.33, 2549.39], [1250.6, 2550.29], [1252.32, 2553.57], [1258.19, 2550.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2222.78, 1977.06], [2229.81, 1983.48], [2241.21, 1971.95], [2234.27, 1965.31], [2222.78, 1977.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1783.0, 1989.97], [1786.45, 1986.29], [1782.34, 1982.44], [1782.98, 1981.76], [1776.08, 1975.3], [1770.79, 1980.97], [1778.88, 1988.54], [1780.09, 1987.25], [1783.0, 1989.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2145.85, 2068.96], [2143.38, 2066.61], [2139.45, 2070.73], [2141.92, 2073.08], [2145.85, 2068.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2269.87, 2540.86], [2263.98, 2534.97], [2255.81, 2543.13], [2261.7, 2549.02], [2269.87, 2540.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2131.05, 2128.78], [2125.45, 2122.93], [2114.99, 2132.91], [2121.33, 2139.56], [2130.35, 2130.96], [2129.6, 2130.17], [2131.05, 2128.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2237.11, 2533.53], [2242.71, 2527.08], [2243.76, 2527.99], [2249.86, 2520.97], [2243.63, 2515.57], [2241.84, 2517.63], [2240.74, 2516.67], [2230.83, 2528.07], [2237.11, 2533.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1878.8, 2023.87], [1873.18, 2018.27], [1871.56, 2019.91], [1870.88, 2019.22], [1862.94, 2027.22], [1869.25, 2033.49], [1878.8, 2023.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2617.79, 2305.74], [2611.89, 2300.71], [2605.52, 2308.18], [2611.42, 2313.21], [2617.79, 2305.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2182.17, 2474.29], [2191.14, 2464.54], [2185.42, 2459.29], [2174.09, 2471.62], [2176.95, 2474.24], [2179.31, 2471.67], [2182.17, 2474.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1326.5, 2547.28], [1314.38, 2553.97], [1320.32, 2564.84], [1332.44, 2558.15], [1326.5, 2547.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2568.33, 2313.16], [2581.79, 2299.23], [2573.62, 2291.27], [2560.17, 2305.35], [2568.33, 2313.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[1548.7, 2810.6], [1545.59, 2804.08], [1537.04, 2808.34], [1537.94, 2810.19], [1536.69, 2810.79], [1537.95, 2813.38], [1535.31, 2814.67], [1538.94, 2822.13], [1548.98, 2817.25], [1547.39, 2813.99], [1548.23, 2813.58], [1547.14, 2811.46], [1548.7, 2810.6]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.098, "pop": 0, "jobs": 98}}, {"shape": {"outer": [[1239.88, 2528.18], [1244.95, 2525.59], [1246.19, 2524.96], [1243.32, 2519.38], [1242.09, 2520.01], [1239.13, 2514.24], [1229.71, 2519.04], [1230.93, 2521.39], [1225.28, 2524.31], [1227.73, 2529.12], [1230.5, 2527.71], [1232.75, 2532.11], [1230.31, 2533.37], [1232.61, 2537.91], [1242.29, 2532.93], [1239.88, 2528.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.2, "pop": 100, "jobs": 0}}, {"shape": {"outer": [[2211.97, 2484.91], [2206.55, 2479.48], [2198.33, 2487.69], [2203.76, 2493.12], [2211.97, 2484.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2588.7, 2292.23], [2592.31, 2288.62], [2584.38, 2280.82], [2580.69, 2284.52], [2588.7, 2292.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2169.07, 2400.38], [2174.78, 2394.61], [2167.65, 2387.54], [2163.41, 2391.83], [2165.17, 2393.57], [2162.31, 2396.45], [2165.27, 2399.38], [2166.65, 2397.98], [2169.07, 2400.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2265.05, 2178.17], [2260.38, 2173.34], [2254.75, 2178.75], [2259.42, 2183.6], [2265.05, 2178.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2066.75, 2078.82], [2068.47, 2077.07], [2069.86, 2078.44], [2072.55, 2075.72], [2070.9, 2074.09], [2071.36, 2073.63], [2068.02, 2070.34], [2069.81, 2068.53], [2067.31, 2066.06], [2060.65, 2072.79], [2066.75, 2078.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2214.54, 2211.35], [2209.73, 2206.69], [2200.1, 2216.65], [2207.27, 2223.59], [2214.94, 2215.66], [2212.58, 2213.38], [2214.54, 2211.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2376.3, 2129.3], [2383.54, 2121.2], [2377.25, 2115.59], [2375.55, 2117.51], [2374.8, 2116.84], [2368.55, 2123.84], [2369.55, 2124.73], [2368.69, 2125.69], [2371.51, 2128.21], [2373.1, 2126.45], [2376.3, 2129.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1929.22, 1972.75], [1920.8, 1964.46], [1915.56, 1969.79], [1923.98, 1978.07], [1929.22, 1972.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2068.32, 2151.13], [2064.17, 2146.36], [2055.43, 2153.94], [2060.41, 2159.68], [2065.62, 2155.15], [2064.78, 2154.19], [2068.32, 2151.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1424.66, 2199.32], [1431.29, 2200.82], [1436.01, 2178.38], [1429.38, 2176.88], [1424.66, 2199.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2001.01, 2224.77], [1995.48, 2219.84], [1987.32, 2229.0], [1992.84, 2233.92], [2001.01, 2224.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2207.45, 2053.16], [2204.5, 2050.46], [2200.74, 2054.57], [2203.68, 2057.26], [2207.45, 2053.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2320.15, 2483.2], [2315.18, 2478.48], [2309.6, 2484.35], [2314.57, 2489.07], [2320.15, 2483.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2190.11, 2149.89], [2192.67, 2147.31], [2194.89, 2149.52], [2196.99, 2147.4], [2194.76, 2145.17], [2196.34, 2143.58], [2189.33, 2136.62], [2188.57, 2137.39], [2185.99, 2134.84], [2181.38, 2139.48], [2184.11, 2142.19], [2183.24, 2143.06], [2190.11, 2149.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1405.9, 2735.52], [1405.83, 2734.18], [1400.31, 2734.45], [1400.91, 2745.28], [1405.6, 2745.05], [1405.7, 2748.02], [1403.69, 2748.11], [1404.12, 2756.5], [1413.55, 2756.03], [1412.92, 2744.65], [1416.2, 2744.47], [1415.75, 2735.02], [1405.9, 2735.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[2031.96, 2055.31], [2034.21, 2053.07], [2036.23, 2055.1], [2045.46, 2045.91], [2039.26, 2039.67], [2029.79, 2049.09], [2030.88, 2050.19], [2028.86, 2052.19], [2031.96, 2055.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1891.55, 1922.76], [1888.53, 1919.79], [1884.49, 1923.89], [1887.51, 1926.86], [1891.55, 1922.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2495.34, 2231.67], [2498.35, 2228.65], [2495.94, 2226.24], [2493.31, 2228.88], [2491.17, 2226.75], [2482.72, 2235.22], [2487.91, 2240.39], [2495.98, 2232.31], [2495.34, 2231.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1277.67, 2592.17], [1269.41, 2576.87], [1259.92, 2581.96], [1268.18, 2597.28], [1277.67, 2592.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2127.75, 2153.99], [2129.32, 2152.24], [2130.62, 2153.4], [2140.8, 2142.08], [2138.14, 2139.67], [2140.63, 2136.92], [2135.14, 2131.98], [2120.89, 2147.82], [2127.75, 2153.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[2350.09, 2103.56], [2357.89, 2095.38], [2352.56, 2090.3], [2345.3, 2097.93], [2344.79, 2097.44], [2342.79, 2099.55], [2345.6, 2102.22], [2347.06, 2100.68], [2350.09, 2103.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1934.46, 2176.63], [1940.32, 2170.68], [1938.89, 2169.27], [1940.38, 2167.75], [1937.54, 2164.95], [1936.1, 2166.39], [1933.61, 2163.92], [1927.51, 2170.11], [1929.54, 2172.13], [1928.85, 2172.84], [1931.69, 2175.64], [1932.57, 2174.76], [1934.46, 2176.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2097.54, 2182.6], [2099.58, 2180.36], [2101.12, 2181.77], [2104.58, 2177.96], [2103.33, 2176.83], [2104.77, 2175.25], [2095.98, 2167.26], [2093.41, 2170.07], [2091.77, 2168.58], [2088.9, 2171.74], [2095.06, 2177.34], [2093.57, 2178.98], [2097.54, 2182.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2132.37, 2065.68], [2129.56, 2063.0], [2125.79, 2066.94], [2128.59, 2069.62], [2132.37, 2065.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2122.22, 2406.92], [2117.03, 2401.69], [2108.75, 2409.92], [2111.29, 2412.48], [2109.44, 2414.31], [2112.1, 2416.99], [2122.22, 2406.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[1900.51, 1922.15], [1905.22, 1917.04], [1906.41, 1918.14], [1909.09, 1915.23], [1903.23, 1909.83], [1901.37, 1911.85], [1900.63, 1911.17], [1895.1, 1917.16], [1900.51, 1922.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2195.99, 2490.69], [2193.05, 2488.02], [2184.4, 2497.61], [2187.34, 2500.27], [2195.99, 2490.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1259.05, 2416.52], [1274.96, 2402.79], [1270.28, 2397.38], [1263.86, 2402.92], [1260.82, 2399.37], [1251.32, 2407.56], [1259.05, 2416.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.168, "pop": 84, "jobs": 0}}, {"shape": {"outer": [[1879.12, 1906.87], [1880.8, 1905.12], [1882.33, 1906.6], [1892.08, 1896.5], [1886.14, 1890.77], [1874.71, 1902.63], [1879.12, 1906.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2102.57, 2044.67], [2099.72, 2041.86], [2093.12, 2048.54], [2099.05, 2054.39], [2104.17, 2049.21], [2101.1, 2046.17], [2102.57, 2044.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1906.08, 1969.82], [1904.43, 1968.1], [1903.38, 1969.11], [1900.71, 1966.31], [1895.16, 1971.64], [1896.14, 1972.64], [1892.0, 1976.61], [1892.87, 1977.5], [1890.98, 1979.31], [1894.41, 1982.88], [1905.66, 1972.1], [1904.73, 1971.12], [1906.08, 1969.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[1846.93, 1941.65], [1841.37, 1936.39], [1835.83, 1942.24], [1841.39, 1947.5], [1846.93, 1941.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2220.83, 1975.75], [2230.19, 1965.84], [2224.05, 1960.17], [2214.56, 1969.91], [2220.83, 1975.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1231.76, 2649.9], [1235.26, 2648.08], [1230.63, 2639.21], [1234.17, 2637.36], [1232.04, 2633.26], [1228.49, 2635.12], [1228.29, 2634.74], [1223.1, 2637.45], [1220.14, 2639.0], [1222.88, 2644.26], [1222.73, 2644.35], [1222.6, 2644.47], [1222.47, 2644.59], [1222.35, 2644.72], [1222.24, 2644.87], [1222.15, 2645.01], [1222.07, 2645.17], [1222.0, 2645.34], [1221.95, 2645.51], [1221.92, 2645.69], [1221.89, 2645.87], [1221.88, 2646.04], [1221.9, 2646.22], [1221.92, 2646.4], [1221.96, 2646.57], [1222.01, 2646.74], [1222.08, 2646.9], [1222.17, 2647.07], [1222.26, 2647.21], [1222.37, 2647.35], [1222.49, 2647.48], [1222.62, 2647.61], [1222.76, 2647.72], [1222.91, 2647.81], [1223.07, 2647.9], [1223.23, 2647.96], [1223.4, 2648.02], [1223.58, 2648.06], [1223.75, 2648.08], [1223.93, 2648.1], [1224.11, 2648.09], [1224.29, 2648.06], [1224.46, 2648.03], [1224.63, 2647.98], [1224.8, 2647.92], [1225.25, 2648.78], [1226.04, 2648.37], [1227.89, 2651.92], [1230.07, 2650.78], [1231.76, 2649.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2144.06, 2064.07], [2149.81, 2057.76], [2143.56, 2052.06], [2136.77, 2059.53], [2138.67, 2061.25], [2139.7, 2060.12], [2144.06, 2064.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2293.54, 2206.54], [2289.68, 2202.01], [2283.7, 2207.1], [2287.57, 2211.63], [2293.54, 2206.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2358.32, 2181.27], [2352.08, 2175.12], [2343.99, 2183.33], [2348.68, 2187.95], [2347.54, 2189.11], [2349.09, 2190.63], [2358.32, 2181.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2574.1, 2273.64], [2567.08, 2266.61], [2545.34, 2289.05], [2552.57, 2295.99], [2574.1, 2273.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.248, "pop": 124, "jobs": 0}}, {"shape": {"outer": [[2379.38, 2421.12], [2375.23, 2417.17], [2372.89, 2419.63], [2377.03, 2423.58], [2379.38, 2421.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2224.46, 1944.81], [2220.07, 1940.71], [2214.94, 1946.2], [2219.33, 1950.3], [2224.46, 1944.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2371.92, 2079.84], [2373.3, 2078.36], [2373.97, 2078.97], [2381.89, 2070.43], [2376.54, 2065.45], [2374.35, 2067.82], [2373.23, 2066.79], [2369.16, 2071.19], [2369.8, 2071.78], [2368.13, 2073.58], [2368.86, 2074.26], [2367.49, 2075.73], [2371.92, 2079.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1864.08, 1897.72], [1859.25, 1893.3], [1849.42, 1904.04], [1858.05, 1911.94], [1862.94, 1906.6], [1859.14, 1903.12], [1864.08, 1897.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1819.77, 1969.64], [1816.56, 1966.32], [1812.29, 1970.45], [1815.5, 1973.77], [1819.77, 1969.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2132.71, 2055.5], [2135.13, 2052.83], [2136.67, 2054.22], [2140.45, 2050.07], [2138.24, 2048.07], [2139.44, 2046.74], [2137.65, 2045.1], [2137.84, 2044.88], [2134.49, 2041.84], [2126.89, 2050.22], [2132.71, 2055.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1948.96, 2019.17], [1945.15, 2015.32], [1940.7, 2019.72], [1944.51, 2023.55], [1948.96, 2019.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2150.1, 2244.23], [2159.85, 2234.18], [2158.18, 2232.62], [2159.71, 2231.14], [2155.29, 2226.91], [2153.73, 2228.37], [2152.63, 2227.3], [2142.9, 2237.4], [2150.1, 2244.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2163.67, 2010.2], [2161.25, 2007.87], [2157.72, 2011.56], [2160.14, 2013.89], [2163.67, 2010.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2188.61, 2236.61], [2184.31, 2232.44], [2179.53, 2237.35], [2183.83, 2241.52], [2188.61, 2236.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2186.14, 2018.03], [2180.71, 2012.24], [2174.22, 2018.32], [2179.65, 2024.12], [2186.14, 2018.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2164.14, 2440.72], [2146.59, 2458.51], [2151.83, 2463.68], [2169.37, 2445.89], [2164.14, 2440.72]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.118, "pop": 0, "jobs": 118}}, {"shape": {"outer": [[2398.51, 2427.13], [2388.73, 2417.61], [2383.19, 2423.28], [2392.97, 2432.81], [2398.51, 2427.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2273.09, 1967.72], [2275.04, 1965.73], [2276.5, 1967.17], [2279.6, 1964.0], [2279.25, 1963.65], [2280.85, 1962.01], [2281.78, 1962.93], [2285.52, 1959.1], [2279.23, 1952.93], [2276.3, 1955.94], [2275.2, 1954.86], [2267.74, 1962.47], [2273.09, 1967.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2157.57, 2390.71], [2163.33, 2385.12], [2157.49, 2379.09], [2151.57, 2384.83], [2153.59, 2386.91], [2152.51, 2387.95], [2154.9, 2390.41], [2156.13, 2389.22], [2157.57, 2390.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1952.19, 1978.89], [1947.22, 1974.17], [1942.15, 1979.51], [1947.13, 1984.22], [1952.19, 1978.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2215.89, 2241.94], [2213.0, 2239.19], [2208.19, 2244.26], [2211.08, 2247.0], [2215.89, 2241.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1879.49, 2060.94], [1875.53, 2057.19], [1869.51, 2063.53], [1873.48, 2067.29], [1879.49, 2060.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2020.91, 2102.25], [2017.98, 2099.4], [2008.97, 2108.65], [2013.41, 2112.97], [2018.75, 2107.49], [2017.25, 2106.02], [2020.91, 2102.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2159.74, 1992.73], [2153.57, 1987.05], [2147.8, 1993.3], [2153.97, 1998.99], [2159.74, 1992.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2294.03, 2507.67], [2290.71, 2504.25], [2286.92, 2507.95], [2290.24, 2511.37], [2294.03, 2507.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2182.49, 2317.59], [2180.48, 2315.35], [2172.92, 2322.11], [2178.62, 2328.47], [2184.09, 2323.58], [2180.41, 2319.46], [2182.49, 2317.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2219.65, 1921.75], [2215.2, 1917.79], [2212.09, 1921.26], [2212.61, 1921.73], [2209.78, 1924.89], [2213.71, 1928.4], [2219.65, 1921.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2602.94, 2310.35], [2599.36, 2307.85], [2596.65, 2311.72], [2600.23, 2314.22], [2602.94, 2310.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1305.36, 2349.87], [1312.92, 2346.11], [1311.27, 2342.81], [1303.71, 2346.57], [1305.36, 2349.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1263.92, 2757.02], [1262.87, 2747.63], [1254.44, 2748.58], [1253.7, 2742.16], [1253.11, 2742.22], [1252.33, 2735.46], [1240.95, 2736.79], [1241.93, 2745.43], [1243.4, 2745.23], [1244.71, 2756.71], [1255.45, 2755.48], [1255.74, 2757.94], [1263.92, 2757.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.242, "pop": 121, "jobs": 0}}, {"shape": {"outer": [[2237.57, 1920.35], [2239.5, 1918.57], [2240.23, 1919.36], [2248.68, 1911.58], [2246.36, 1909.05], [2244.44, 1910.82], [2241.8, 1907.96], [2239.25, 1910.31], [2237.93, 1908.88], [2234.7, 1911.85], [2235.7, 1912.93], [2234.76, 1913.8], [2236.23, 1915.4], [2234.49, 1917.0], [2237.57, 1920.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2132.14, 2077.12], [2126.5, 2070.66], [2120.77, 2075.67], [2126.42, 2082.13], [2132.14, 2077.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2255.95, 2100.3], [2266.29, 2089.61], [2264.23, 2087.62], [2264.98, 2086.83], [2260.54, 2082.61], [2249.49, 2094.03], [2255.95, 2100.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2220.02, 2143.07], [2216.98, 2140.06], [2211.12, 2145.99], [2214.16, 2149.0], [2220.02, 2143.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2194.43, 2218.42], [2189.47, 2214.03], [2185.01, 2219.07], [2186.68, 2220.56], [2182.67, 2225.1], [2185.95, 2228.0], [2194.43, 2218.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1792.87, 1797.49], [1770.49, 1774.92], [1761.95, 1783.39], [1776.17, 1797.73], [1774.8, 1799.08], [1777.16, 1801.46], [1773.7, 1804.9], [1779.02, 1810.25], [1782.45, 1806.84], [1782.94, 1807.34], [1792.87, 1797.49]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.282, "pop": 0, "jobs": 282}}, {"shape": {"outer": [[2113.59, 2057.53], [2107.95, 2052.65], [2102.68, 2058.76], [2108.32, 2063.63], [2113.59, 2057.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2312.3, 2153.66], [2320.25, 2145.51], [2313.56, 2138.99], [2303.62, 2149.18], [2307.38, 2152.84], [2309.36, 2150.81], [2312.3, 2153.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2351.22, 2203.57], [2355.54, 2198.93], [2350.52, 2194.26], [2346.2, 2198.9], [2351.22, 2203.57]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.028, "pop": 0, "jobs": 28}}, {"shape": {"outer": [[2143.24, 2026.36], [2151.82, 2017.76], [2146.48, 2012.17], [2137.93, 2021.05], [2143.24, 2026.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1984.82, 2143.77], [1993.72, 2134.41], [1988.21, 2129.16], [1979.25, 2138.57], [1981.08, 2140.3], [1979.65, 2141.81], [1981.78, 2143.84], [1983.27, 2142.29], [1984.82, 2143.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2160.59, 2320.85], [2156.67, 2317.38], [2152.51, 2322.09], [2156.43, 2325.56], [2160.59, 2320.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1969.49, 2174.26], [1964.58, 2168.79], [1959.58, 2173.27], [1964.49, 2178.75], [1969.49, 2174.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2152.45, 2175.16], [2148.24, 2171.16], [2142.79, 2176.9], [2147.0, 2180.9], [2152.45, 2175.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1974.92, 1977.11], [1971.56, 1973.71], [1962.24, 1982.94], [1968.05, 1988.81], [1976.05, 1980.89], [1973.6, 1978.41], [1974.92, 1977.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1467.13, 2266.47], [1472.89, 2264.37], [1468.84, 2253.27], [1463.09, 2255.38], [1467.13, 2266.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2029.38, 2337.93], [2036.49, 2344.73], [2047.87, 2332.8], [2041.05, 2325.97], [2029.38, 2337.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2052.49, 2231.96], [2043.62, 2222.46], [2038.13, 2227.58], [2047.01, 2237.08], [2052.49, 2231.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1840.22, 1984.98], [1834.07, 1979.18], [1826.08, 1987.67], [1826.58, 1988.14], [1824.14, 1990.72], [1829.79, 1996.04], [1840.22, 1984.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2260.84, 1977.04], [2264.04, 1980.23], [2267.92, 1976.2], [2264.79, 1973.11], [2260.84, 1977.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2195.25, 2195.06], [2189.04, 2188.96], [2182.37, 2195.74], [2188.59, 2201.85], [2195.25, 2195.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2391.12, 2435.04], [2382.39, 2425.4], [2376.89, 2430.39], [2385.63, 2440.02], [2391.12, 2435.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2161.21, 2472.91], [2154.98, 2467.24], [2149.41, 2473.36], [2155.65, 2479.03], [2161.21, 2472.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1839.66, 1927.6], [1831.5, 1918.59], [1825.42, 1924.11], [1833.58, 1933.1], [1839.66, 1927.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2207.59, 2050.24], [2213.28, 2043.91], [2206.68, 2037.98], [2199.99, 2045.45], [2203.12, 2048.25], [2204.13, 2047.13], [2207.59, 2050.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2016.36, 2334.98], [2032.81, 2318.28], [2022.7, 2308.32], [2021.06, 2309.99], [2018.29, 2307.26], [2001.58, 2324.22], [2011.89, 2334.37], [2013.79, 2332.44], [2016.36, 2334.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.362, "pop": 181, "jobs": 0}}, {"shape": {"outer": [[1865.5, 2402.29], [1851.21, 2338.93], [1832.3, 2343.19], [1842.15, 2386.89], [1820.25, 2391.83], [1824.68, 2411.5], [1865.5, 2402.29]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1096}}, {"shape": {"outer": [[2021.57, 2223.26], [2018.12, 2220.29], [2014.37, 2224.65], [2017.82, 2227.62], [2021.57, 2223.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2201.85, 1959.16], [2212.07, 1948.54], [2211.48, 1947.96], [2213.0, 1946.38], [2207.51, 1941.09], [2205.31, 1943.37], [2204.69, 1942.77], [2201.54, 1946.05], [2202.21, 1946.69], [2194.89, 1954.3], [2199.36, 1958.59], [2200.27, 1957.64], [2201.85, 1959.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1394.23, 2678.64], [1399.63, 2674.98], [1400.78, 2676.72], [1408.39, 2671.63], [1404.91, 2666.41], [1399.14, 2670.32], [1397.86, 2668.42], [1399.91, 2667.03], [1394.72, 2659.34], [1392.67, 2660.72], [1391.66, 2661.4], [1392.34, 2662.41], [1386.11, 2666.6], [1394.23, 2678.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[2323.27, 2504.15], [2328.34, 2499.18], [2318.06, 2488.67], [2312.5, 2494.1], [2321.3, 2503.1], [2321.78, 2502.62], [2323.27, 2504.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1350.41, 2551.98], [1358.5, 2547.88], [1354.3, 2539.61], [1346.21, 2543.73], [1350.41, 2551.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2140.59, 2010.53], [2135.29, 2005.82], [2130.07, 2011.67], [2135.38, 2016.39], [2140.59, 2010.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2207.83, 2061.96], [2203.38, 2057.87], [2200.41, 2061.11], [2204.86, 2065.2], [2207.83, 2061.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2237.36, 2513.79], [2230.82, 2507.76], [2224.87, 2514.2], [2231.4, 2520.23], [2237.36, 2513.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2623.56, 2355.21], [2616.75, 2349.36], [2610.03, 2357.2], [2616.84, 2363.04], [2623.56, 2355.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2337.22, 2228.22], [2327.89, 2219.72], [2326.54, 2221.2], [2325.09, 2219.88], [2322.74, 2222.48], [2324.01, 2223.64], [2321.56, 2226.35], [2331.06, 2234.99], [2337.22, 2228.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1961.92, 1986.0], [1958.74, 1982.84], [1954.23, 1987.38], [1957.4, 1990.54], [1961.92, 1986.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2052.33, 2201.84], [2057.18, 2197.22], [2053.51, 2193.35], [2046.99, 2199.55], [2049.24, 2201.93], [2050.91, 2200.35], [2052.33, 2201.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2251.85, 2285.08], [2247.49, 2281.41], [2242.82, 2286.95], [2247.18, 2290.62], [2251.85, 2285.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2351.69, 2033.28], [2345.06, 2026.63], [2337.12, 2034.54], [2343.74, 2041.19], [2351.69, 2033.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2127.57, 2446.59], [2150.03, 2424.65], [2129.94, 2405.17], [2118.98, 2416.14], [2126.87, 2423.61], [2115.45, 2435.31], [2127.57, 2446.59]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.448, "pop": 0, "jobs": 448}}, {"shape": {"outer": [[1941.97, 2007.55], [1938.29, 2003.43], [1933.34, 2007.84], [1937.02, 2011.97], [1941.97, 2007.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2411.34, 2110.15], [2408.3, 2107.23], [2407.99, 2107.55], [2404.86, 2104.55], [2397.72, 2111.97], [2403.88, 2117.9], [2411.34, 2110.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2262.66, 1931.19], [2256.32, 1925.83], [2250.52, 1932.68], [2256.87, 1938.03], [2262.66, 1931.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2087.53, 2405.51], [2079.46, 2397.65], [2074.1, 2403.15], [2082.18, 2411.02], [2087.53, 2405.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2519.78, 2232.4], [2516.33, 2229.18], [2512.13, 2233.68], [2515.58, 2236.9], [2519.78, 2232.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2108.65, 2171.64], [2111.27, 2169.02], [2112.4, 2170.15], [2114.68, 2167.88], [2104.88, 2158.08], [2099.4, 2163.55], [2107.11, 2171.27], [2107.7, 2170.68], [2108.65, 2171.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2631.18, 2295.61], [2625.51, 2290.79], [2618.07, 2299.51], [2623.74, 2304.34], [2631.18, 2295.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1235.26, 2623.26], [1232.68, 2616.65], [1222.53, 2620.62], [1220.74, 2615.93], [1213.22, 2618.87], [1217.59, 2630.16], [1218.99, 2633.72], [1226.07, 2630.95], [1224.68, 2627.39], [1235.26, 2623.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2238.34, 1933.55], [2233.48, 1929.01], [2227.67, 1935.22], [2232.53, 1939.76], [2238.34, 1933.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2111.76, 2046.9], [2107.78, 2042.13], [2104.46, 2044.92], [2108.44, 2049.68], [2111.76, 2046.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2059.22, 2127.6], [2055.25, 2123.49], [2050.87, 2127.71], [2054.83, 2131.83], [2059.22, 2127.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2247.32, 2240.6], [2241.64, 2234.76], [2229.26, 2246.8], [2234.94, 2252.64], [2247.32, 2240.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2114.71, 2354.74], [2115.97, 2353.48], [2117.14, 2354.64], [2119.98, 2351.79], [2119.21, 2351.03], [2124.54, 2345.67], [2118.63, 2339.79], [2110.77, 2347.7], [2111.52, 2348.45], [2109.97, 2350.02], [2114.71, 2354.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2251.54, 2007.79], [2253.26, 2005.85], [2256.56, 2008.7], [2261.69, 2002.86], [2259.88, 2001.1], [2263.38, 1997.3], [2257.69, 1991.16], [2246.02, 2002.83], [2251.54, 2007.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[1905.98, 2049.02], [1901.17, 2044.95], [1898.87, 2047.65], [1897.26, 2046.28], [1891.57, 2052.97], [1897.99, 2058.43], [1905.98, 2049.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1201.59, 2585.7], [1204.27, 2593.21], [1209.06, 2591.49], [1212.32, 2600.59], [1210.51, 2601.23], [1212.58, 2607.02], [1233.5, 2599.55], [1230.3, 2590.6], [1223.99, 2592.86], [1219.19, 2579.4], [1201.59, 2585.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.352, "pop": 176, "jobs": 0}}, {"shape": {"outer": [[2326.68, 2005.3], [2321.53, 2000.4], [2317.3, 2004.84], [2316.12, 2003.71], [2313.43, 2006.54], [2314.82, 2007.87], [2314.14, 2008.58], [2319.08, 2013.27], [2326.68, 2005.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1954.99, 2033.85], [1951.6, 2030.08], [1948.21, 2033.11], [1951.59, 2036.89], [1954.99, 2033.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2330.12, 2087.63], [2331.7, 2085.96], [2332.53, 2086.74], [2342.1, 2076.65], [2337.2, 2072.01], [2335.14, 2074.19], [2334.02, 2073.13], [2326.44, 2081.12], [2327.05, 2081.69], [2325.54, 2083.28], [2330.12, 2087.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1870.43, 1971.09], [1877.86, 1962.34], [1874.46, 1959.46], [1871.49, 1962.97], [1868.77, 1960.66], [1864.99, 1965.12], [1865.89, 1965.88], [1864.52, 1967.5], [1868.61, 1970.97], [1869.32, 1970.14], [1870.43, 1971.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2130.63, 2202.96], [2124.2, 2196.95], [2119.08, 2202.44], [2125.5, 2208.45], [2130.63, 2202.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2163.82, 2086.34], [2160.97, 2083.62], [2157.13, 2087.65], [2159.97, 2090.37], [2163.82, 2086.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2177.23, 2006.54], [2173.69, 2003.63], [2171.8, 2005.94], [2170.65, 2005.0], [2165.83, 2010.88], [2172.84, 2016.62], [2178.05, 2010.26], [2175.73, 2008.36], [2177.23, 2006.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1904.43, 1941.65], [1899.46, 1936.72], [1895.13, 1941.1], [1900.11, 1946.02], [1904.43, 1941.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1332.26, 2669.69], [1328.27, 2664.32], [1327.38, 2664.99], [1321.66, 2657.31], [1320.23, 2658.44], [1318.0, 2655.48], [1308.82, 2662.33], [1313.72, 2668.87], [1315.17, 2667.75], [1318.12, 2671.74], [1320.69, 2669.83], [1324.75, 2675.28], [1331.37, 2670.36], [1332.26, 2669.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[1928.13, 2010.78], [1923.28, 2006.09], [1913.02, 2016.7], [1917.86, 2021.39], [1928.13, 2010.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2110.83, 2033.91], [2108.4, 2031.41], [2104.79, 2034.94], [2107.22, 2037.44], [2110.83, 2033.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2057.82, 2140.37], [2054.57, 2136.66], [2045.83, 2144.31], [2052.15, 2151.51], [2058.49, 2145.95], [2057.69, 2145.04], [2059.58, 2143.37], [2057.32, 2140.8], [2057.82, 2140.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2206.15, 2203.83], [2199.89, 2197.81], [2193.43, 2204.53], [2195.75, 2206.78], [2193.72, 2208.89], [2197.64, 2212.66], [2206.15, 2203.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2091.2, 2089.54], [2087.02, 2085.75], [2085.38, 2087.55], [2084.26, 2086.54], [2078.45, 2092.96], [2083.75, 2097.76], [2091.2, 2089.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2216.3, 2586.27], [2213.17, 2583.51], [2209.16, 2588.06], [2212.29, 2590.81], [2216.3, 2586.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1915.52, 2058.75], [1909.92, 2053.33], [1907.66, 2055.67], [1906.89, 2054.92], [1899.52, 2062.54], [1905.89, 2068.71], [1915.52, 2058.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2372.16, 2454.14], [2377.19, 2449.54], [2368.29, 2439.82], [2365.59, 2442.28], [2365.0, 2441.65], [2363.53, 2442.99], [2364.77, 2444.34], [2363.21, 2445.76], [2370.29, 2453.49], [2370.98, 2452.86], [2372.16, 2454.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2101.2, 2122.91], [2097.12, 2118.96], [2092.3, 2123.94], [2096.39, 2127.89], [2101.2, 2122.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1930.39, 1998.75], [1927.27, 1995.94], [1922.97, 2000.69], [1926.08, 2003.51], [1930.39, 1998.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2070.69, 2209.68], [2063.01, 2202.05], [2056.75, 2208.35], [2066.37, 2217.92], [2071.07, 2213.18], [2069.13, 2211.25], [2070.69, 2209.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2202.86, 2269.28], [2199.76, 2266.1], [2195.1, 2270.67], [2198.2, 2273.84], [2202.86, 2269.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1896.06, 2064.77], [1893.29, 2061.98], [1888.87, 2066.38], [1891.64, 2069.17], [1896.06, 2064.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2477.26, 2155.85], [2473.76, 2152.14], [2471.07, 2154.68], [2474.57, 2158.4], [2477.26, 2155.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2245.3, 1928.89], [2246.7, 1927.32], [2248.04, 1928.51], [2255.83, 1919.76], [2251.38, 1915.8], [2249.88, 1917.47], [2248.57, 1916.3], [2243.94, 1921.51], [2244.14, 1921.69], [2242.43, 1923.62], [2243.54, 1924.61], [2242.19, 1926.13], [2245.3, 1928.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2336.72, 2161.35], [2334.38, 2158.97], [2327.44, 2165.84], [2328.23, 2166.63], [2323.9, 2170.91], [2328.65, 2175.7], [2338.29, 2166.16], [2335.1, 2162.94], [2336.72, 2161.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2175.95, 2032.46], [2172.1, 2029.3], [2169.16, 2032.89], [2172.99, 2036.05], [2175.95, 2032.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2032.01, 2361.89], [2035.37, 2358.55], [2031.89, 2355.06], [2028.54, 2358.4], [2032.01, 2361.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2076.86, 2109.83], [2074.32, 2107.24], [2069.38, 2112.04], [2071.92, 2114.65], [2076.86, 2109.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2138.25, 2326.67], [2133.56, 2321.95], [2126.0, 2329.42], [2130.69, 2334.13], [2138.25, 2326.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2278.13, 2549.2], [2274.56, 2545.88], [2273.23, 2547.31], [2270.73, 2545.0], [2263.17, 2553.16], [2269.24, 2558.78], [2278.13, 2549.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1929.86, 2143.88], [1925.06, 2139.3], [1922.63, 2141.85], [1927.44, 2146.43], [1929.86, 2143.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2144.66, 2308.85], [2139.81, 2304.08], [2137.95, 2305.97], [2135.58, 2303.63], [2129.49, 2309.81], [2136.71, 2316.93], [2144.66, 2308.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2161.48, 2024.5], [2156.53, 2019.61], [2147.74, 2028.52], [2153.84, 2034.54], [2159.17, 2029.14], [2158.02, 2028.0], [2161.48, 2024.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1955.27, 2165.22], [1947.14, 2158.26], [1943.28, 2162.77], [1951.4, 2169.73], [1955.27, 2165.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2196.3, 2330.4], [2193.02, 2327.01], [2190.76, 2329.2], [2187.59, 2325.93], [2181.47, 2331.86], [2183.5, 2333.95], [2180.6, 2336.76], [2185.04, 2341.34], [2196.3, 2330.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2175.74, 2314.54], [2169.19, 2308.01], [2162.81, 2314.41], [2165.93, 2317.51], [2163.15, 2320.3], [2166.59, 2323.73], [2175.74, 2314.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2218.24, 2136.99], [2214.03, 2132.82], [2211.14, 2135.69], [2215.49, 2139.89], [2218.24, 2136.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2242.67, 2582.16], [2245.08, 2579.69], [2246.94, 2581.5], [2249.58, 2578.78], [2247.86, 2577.1], [2249.0, 2575.92], [2240.5, 2567.63], [2238.7, 2569.47], [2239.7, 2570.45], [2235.3, 2574.95], [2242.67, 2582.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1879.57, 2615.65], [1927.56, 2603.88], [1929.48, 2611.68], [1943.92, 2608.14], [1937.56, 2582.16], [1931.09, 2583.74], [1929.47, 2577.13], [1926.22, 2577.92], [1916.19, 2537.01], [1896.85, 2541.74], [1905.02, 2575.1], [1871.64, 2583.27], [1879.57, 2615.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1806}}, {"shape": {"outer": [[1184.81, 2483.24], [1195.8, 2472.89], [1198.09, 2475.39], [1202.59, 2471.27], [1203.93, 2470.01], [1195.76, 2461.25], [1194.41, 2462.51], [1192.37, 2460.32], [1186.42, 2465.87], [1184.41, 2463.75], [1174.87, 2472.64], [1184.81, 2483.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.26, "pop": 130, "jobs": 0}}, {"shape": {"outer": [[2193.36, 2273.76], [2189.28, 2269.45], [2187.51, 2271.13], [2186.18, 2269.71], [2181.2, 2274.42], [2187.74, 2281.33], [2192.8, 2276.55], [2191.67, 2275.35], [2193.36, 2273.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1939.64, 2144.94], [1936.0, 2141.43], [1931.19, 2146.4], [1934.82, 2149.92], [1939.64, 2144.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2382.36, 2088.54], [2390.12, 2080.31], [2387.03, 2077.39], [2386.14, 2078.32], [2383.2, 2075.55], [2376.57, 2082.57], [2377.73, 2083.67], [2376.29, 2085.19], [2379.8, 2088.49], [2380.98, 2087.24], [2382.36, 2088.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2133.84, 2002.61], [2127.23, 1995.36], [2124.74, 1997.63], [2125.4, 1998.36], [2121.6, 2001.82], [2127.55, 2008.34], [2133.84, 2002.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2178.6, 2045.0], [2172.72, 2038.63], [2167.02, 2043.89], [2169.36, 2046.42], [2167.33, 2048.3], [2170.88, 2052.14], [2178.6, 2045.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1330.34, 2693.74], [1332.11, 2690.21], [1336.3, 2692.31], [1339.46, 2686.02], [1339.0, 2685.8], [1339.82, 2684.12], [1336.24, 2682.38], [1338.12, 2678.66], [1332.88, 2675.96], [1330.15, 2681.37], [1329.62, 2681.11], [1328.69, 2680.65], [1327.64, 2682.75], [1328.56, 2683.21], [1326.49, 2687.31], [1327.01, 2687.59], [1328.25, 2688.2], [1326.47, 2691.79], [1330.34, 2693.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2319.12, 1999.55], [2313.41, 1993.36], [2306.88, 1999.39], [2312.59, 2005.57], [2319.12, 1999.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1192.82, 2538.7], [1192.96, 2537.29], [1197.9, 2537.61], [1197.94, 2536.52], [1203.34, 2536.88], [1203.54, 2533.75], [1207.04, 2532.35], [1208.06, 2534.9], [1213.99, 2532.53], [1212.98, 2529.98], [1211.65, 2526.67], [1203.79, 2529.82], [1204.11, 2524.8], [1198.97, 2524.46], [1198.79, 2527.0], [1196.92, 2526.88], [1196.96, 2526.13], [1194.46, 2525.97], [1194.41, 2526.72], [1192.18, 2526.58], [1192.14, 2527.46], [1187.2, 2527.15], [1187.11, 2528.55], [1186.18, 2529.28], [1186.05, 2531.46], [1186.86, 2532.29], [1186.47, 2538.3], [1192.82, 2538.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[1966.01, 1968.77], [1962.31, 1964.91], [1958.88, 1968.2], [1957.56, 1966.81], [1953.85, 1970.39], [1955.27, 1971.87], [1952.39, 1974.64], [1958.13, 1980.6], [1966.29, 1972.75], [1964.16, 1970.54], [1966.01, 1968.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2470.21, 2195.97], [2467.85, 2193.16], [2463.25, 2196.99], [2465.61, 2199.8], [2470.21, 2195.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2256.38, 2249.17], [2250.66, 2243.75], [2239.04, 2256.03], [2246.17, 2262.79], [2256.17, 2252.22], [2254.76, 2250.87], [2256.38, 2249.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2331.18, 2066.26], [2333.31, 2064.21], [2331.85, 2062.69], [2329.88, 2064.58], [2326.75, 2061.31], [2319.71, 2068.07], [2320.64, 2069.04], [2318.19, 2071.38], [2323.57, 2076.99], [2332.89, 2068.04], [2331.18, 2066.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2365.6, 2121.92], [2367.0, 2120.4], [2367.76, 2121.09], [2375.32, 2112.91], [2369.12, 2107.17], [2361.78, 2115.11], [2362.1, 2115.41], [2360.47, 2117.18], [2365.6, 2121.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1792.56, 1997.53], [1788.83, 1993.89], [1785.14, 1997.67], [1788.86, 2001.32], [1792.56, 1997.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1879.04, 1882.91], [1873.66, 1877.74], [1865.94, 1885.79], [1871.31, 1890.95], [1879.04, 1882.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2185.65, 2184.51], [2181.23, 2179.6], [2174.62, 2185.55], [2179.04, 2190.45], [2185.65, 2184.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1956.85, 1958.89], [1952.63, 1954.77], [1944.61, 1963.0], [1945.21, 1963.58], [1942.62, 1966.23], [1948.19, 1971.66], [1956.47, 1963.17], [1954.54, 1961.27], [1956.85, 1958.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2181.93, 2355.43], [2177.88, 2350.83], [2175.15, 2353.24], [2179.21, 2357.83], [2181.93, 2355.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2351.75, 2061.85], [2356.57, 2057.08], [2357.55, 2058.07], [2364.88, 2050.82], [2359.56, 2045.45], [2356.04, 2048.94], [2355.26, 2048.15], [2351.44, 2051.93], [2352.47, 2052.97], [2347.67, 2057.73], [2351.75, 2061.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1296.57, 2459.36], [1295.61, 2457.12], [1302.23, 2454.27], [1298.45, 2445.51], [1290.79, 2448.81], [1290.41, 2447.94], [1287.25, 2449.3], [1287.12, 2449.16], [1286.98, 2449.04], [1286.83, 2448.94], [1286.67, 2448.84], [1286.5, 2448.76], [1286.33, 2448.7], [1286.15, 2448.64], [1285.97, 2448.61], [1285.78, 2448.59], [1285.59, 2448.58], [1285.4, 2448.59], [1285.22, 2448.62], [1285.04, 2448.67], [1284.86, 2448.73], [1284.69, 2448.8], [1284.52, 2448.88], [1284.37, 2448.98], [1284.22, 2449.1], [1284.09, 2449.23], [1283.96, 2449.36], [1283.85, 2449.51], [1283.75, 2449.67], [1283.66, 2449.84], [1283.6, 2450.01], [1283.54, 2450.19], [1283.5, 2450.38], [1283.47, 2450.55], [1283.46, 2450.74], [1283.47, 2450.93], [1280.58, 2452.17], [1280.96, 2453.05], [1278.09, 2454.29], [1280.62, 2460.16], [1283.26, 2459.03], [1285.46, 2464.15], [1296.57, 2459.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2307.54, 2160.85], [2303.51, 2156.53], [2297.23, 2162.4], [2301.26, 2166.72], [2307.54, 2160.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2295.63, 2053.13], [2297.12, 2051.68], [2297.47, 2052.04], [2305.56, 2044.14], [2303.69, 2042.22], [2304.11, 2041.8], [2300.37, 2037.98], [2291.87, 2046.27], [2292.76, 2047.18], [2291.25, 2048.64], [2295.63, 2053.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2136.7, 2060.36], [2134.16, 2058.08], [2130.56, 2062.11], [2133.1, 2064.37], [2136.7, 2060.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2313.5, 2514.24], [2319.24, 2508.86], [2311.18, 2500.24], [2304.87, 2506.13], [2311.88, 2513.64], [2312.45, 2513.11], [2313.5, 2514.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2373.59, 2061.29], [2368.83, 2056.85], [2367.16, 2058.64], [2366.25, 2057.79], [2360.88, 2063.52], [2366.55, 2068.81], [2373.59, 2061.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2371.85, 2092.0], [2367.09, 2087.28], [2363.68, 2090.72], [2368.44, 2095.45], [2371.85, 2092.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2598.23, 2328.74], [2591.96, 2322.81], [2583.41, 2331.83], [2589.67, 2337.76], [2598.23, 2328.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2309.93, 2252.44], [2304.07, 2247.11], [2299.11, 2252.6], [2307.33, 2260.03], [2310.08, 2256.99], [2307.73, 2254.87], [2309.93, 2252.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1978.07, 2291.73], [1981.37, 2288.36], [1982.06, 2288.89], [1985.45, 2285.55], [1981.71, 2282.02], [1980.66, 2282.86], [1974.69, 2277.25], [1969.09, 2283.35], [1978.07, 2291.73]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.072, "pop": 0, "jobs": 72}}, {"shape": {"outer": [[1896.92, 2002.25], [1898.32, 2000.85], [1899.14, 2001.65], [1907.68, 1992.97], [1905.49, 1990.82], [1906.84, 1989.45], [1904.78, 1987.43], [1903.31, 1988.91], [1901.19, 1986.84], [1893.12, 1995.04], [1893.58, 1995.49], [1891.84, 1997.25], [1896.92, 2002.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2114.54, 2021.49], [2107.97, 2015.6], [2100.29, 2024.16], [2106.86, 2030.05], [2114.54, 2021.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2197.15, 2368.37], [2199.43, 2366.09], [2200.94, 2367.59], [2204.14, 2364.38], [2194.46, 2354.76], [2188.99, 2360.26], [2197.15, 2368.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2130.1, 2282.7], [2137.02, 2275.87], [2132.78, 2271.58], [2129.37, 2274.95], [2126.48, 2272.02], [2120.29, 2278.13], [2123.74, 2281.61], [2126.42, 2278.97], [2130.1, 2282.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2455.85, 2183.2], [2452.57, 2180.06], [2447.23, 2181.26], [2438.75, 2190.3], [2443.77, 2195.34], [2455.85, 2183.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2275.23, 2206.98], [2271.43, 2203.18], [2267.6, 2207.01], [2266.39, 2205.8], [2258.9, 2213.3], [2263.91, 2218.32], [2275.23, 2206.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1285.51, 2613.09], [1283.62, 2609.15], [1285.96, 2608.03], [1283.16, 2602.24], [1279.93, 2603.8], [1278.54, 2600.84], [1278.2, 2600.12], [1273.01, 2602.6], [1273.36, 2603.31], [1272.54, 2603.7], [1269.72, 2605.06], [1267.98, 2605.88], [1270.69, 2611.54], [1272.42, 2610.7], [1273.66, 2613.3], [1272.79, 2613.73], [1274.91, 2618.16], [1275.79, 2617.74], [1278.62, 2616.39], [1285.51, 2613.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[1963.18, 2034.14], [1965.8, 2030.98], [1964.72, 2030.09], [1966.23, 2028.27], [1965.01, 2027.26], [1966.73, 2025.17], [1963.55, 2022.56], [1961.76, 2024.74], [1960.93, 2024.05], [1955.82, 2030.24], [1960.23, 2033.87], [1961.29, 2032.58], [1963.18, 2034.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1223.81, 2450.56], [1228.91, 2445.41], [1231.02, 2447.54], [1239.1, 2439.43], [1228.88, 2429.13], [1220.17, 2437.72], [1217.79, 2435.35], [1212.77, 2440.27], [1215.81, 2443.32], [1216.2, 2442.93], [1223.81, 2450.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.22, "pop": 110, "jobs": 0}}, {"shape": {"outer": [[2232.08, 1919.07], [2228.13, 1915.24], [2223.89, 1919.63], [2227.84, 1923.47], [2232.08, 1919.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1490.65, 2675.82], [1492.8, 2685.64], [1499.55, 2684.15], [1497.4, 2674.33], [1490.65, 2675.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1950.66, 2196.48], [1952.42, 2194.55], [1953.26, 2195.31], [1960.55, 2187.35], [1954.62, 2181.92], [1947.64, 2189.56], [1948.15, 2190.03], [1946.08, 2192.29], [1950.66, 2196.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2244.86, 1998.47], [2254.94, 1987.74], [2249.23, 1982.43], [2239.06, 1992.88], [2244.86, 1998.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1855.44, 2314.56], [1882.84, 2308.35], [1862.02, 2213.89], [1825.44, 2222.45], [1829.56, 2242.13], [1838.94, 2240.01], [1855.44, 2314.56]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1863}}, {"shape": {"outer": [[2514.37, 2246.74], [2511.68, 2244.31], [2510.59, 2245.52], [2506.69, 2242.01], [2499.87, 2249.59], [2506.44, 2255.52], [2514.37, 2246.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1943.46, 2659.67], [1940.8, 2647.41], [1911.34, 2653.88], [1914.01, 2666.28], [1943.46, 2659.67]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.244, "pop": 0, "jobs": 244}}, {"shape": {"outer": [[2321.14, 2162.34], [2327.87, 2154.89], [2328.78, 2155.71], [2331.72, 2152.45], [2325.6, 2146.91], [2321.91, 2150.99], [2320.96, 2150.14], [2314.98, 2156.77], [2321.14, 2162.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1365.32, 2613.2], [1362.47, 2608.48], [1361.7, 2608.94], [1360.0, 2606.11], [1347.42, 2613.83], [1355.15, 2626.58], [1363.59, 2621.42], [1360.63, 2616.59], [1364.77, 2614.03], [1364.56, 2613.67], [1365.32, 2613.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2233.78, 2554.5], [2239.38, 2548.5], [2233.67, 2543.3], [2228.16, 2549.37], [2233.78, 2554.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1924.71, 2136.41], [1926.65, 2134.36], [1928.29, 2135.9], [1932.27, 2131.67], [1922.16, 2122.13], [1920.86, 2123.5], [1919.09, 2121.83], [1915.19, 2125.98], [1916.52, 2127.23], [1915.79, 2127.99], [1924.71, 2136.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2151.03, 1982.98], [2143.93, 1977.3], [2137.72, 1985.06], [2144.82, 1990.74], [2151.03, 1982.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2323.26, 2171.07], [2316.31, 2164.69], [2312.14, 2169.23], [2319.1, 2175.61], [2323.26, 2171.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1246.42, 2631.25], [1252.15, 2639.76], [1259.57, 2634.88], [1253.84, 2626.36], [1246.42, 2631.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2540.52, 2289.19], [2553.16, 2275.77], [2547.74, 2270.51], [2534.92, 2284.03], [2540.52, 2289.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2123.39, 2212.01], [2116.69, 2206.03], [2111.49, 2211.85], [2118.18, 2217.83], [2123.39, 2212.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2219.26, 2491.68], [2213.37, 2485.94], [2205.75, 2493.77], [2211.63, 2499.51], [2219.26, 2491.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2085.01, 2294.32], [2080.37, 2289.73], [2077.04, 2293.12], [2081.68, 2297.69], [2085.01, 2294.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2177.96, 2338.87], [2171.87, 2333.1], [2167.79, 2337.39], [2173.88, 2343.16], [2177.96, 2338.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2027.7, 2186.58], [2025.3, 2184.25], [2021.05, 2188.64], [2023.45, 2190.96], [2027.7, 2186.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1723.69, 2405.82], [1729.15, 2404.79], [1727.42, 2395.59], [1721.96, 2396.62], [1723.69, 2405.82]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.033, "pop": 0, "jobs": 33}}, {"shape": {"outer": [[2145.04, 2180.54], [2141.6, 2177.23], [2135.39, 2183.7], [2144.82, 2192.77], [2149.82, 2187.57], [2148.52, 2186.32], [2149.32, 2185.5], [2144.62, 2180.97], [2145.04, 2180.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2585.05, 2315.34], [2580.27, 2311.61], [2572.87, 2321.09], [2577.64, 2324.83], [2585.05, 2315.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1789.88, 1980.54], [1793.27, 1976.84], [1783.85, 1968.19], [1780.04, 1972.34], [1781.17, 1973.37], [1779.69, 1974.99], [1785.77, 1980.57], [1787.67, 1978.51], [1789.88, 1980.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1809.67, 2144.28], [1836.17, 2138.43], [1832.33, 2120.97], [1828.22, 2121.88], [1826.47, 2113.94], [1819.13, 2115.56], [1816.59, 2104.08], [1792.7, 2109.35], [1784.81, 2073.55], [1773.55, 2076.04], [1772.37, 2070.66], [1756.77, 2074.51], [1754.92, 2064.34], [1744.38, 2066.46], [1746.56, 2076.68], [1751.85, 2075.52], [1770.9, 2153.16], [1768.79, 2153.87], [1773.79, 2176.55], [1813.15, 2167.86], [1816.95, 2185.09], [1854.11, 2176.9], [1847.26, 2145.88], [1811.76, 2153.71], [1809.67, 2144.28]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3808}}, {"shape": {"outer": [[2037.43, 2195.03], [2034.21, 2192.34], [2030.13, 2197.21], [2033.36, 2199.91], [2037.43, 2195.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2056.7, 2080.08], [2053.74, 2076.97], [2049.49, 2081.01], [2052.44, 2084.12], [2056.7, 2080.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2045.16, 2218.66], [2039.76, 2213.52], [2036.37, 2217.09], [2041.78, 2222.23], [2045.16, 2218.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2270.75, 1938.3], [2265.97, 1933.53], [2264.01, 1935.5], [2262.83, 1934.32], [2257.34, 1939.83], [2257.66, 1940.16], [2253.27, 1944.55], [2258.9, 1950.17], [2270.75, 1938.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1332.6, 2754.96], [1331.86, 2737.13], [1326.17, 2737.37], [1326.14, 2736.74], [1314.78, 2737.21], [1315.14, 2745.92], [1322.26, 2745.63], [1322.56, 2752.62], [1321.92, 2752.65], [1322.07, 2755.99], [1324.63, 2755.89], [1324.6, 2755.3], [1332.6, 2754.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[1963.65, 2205.43], [1969.74, 2198.66], [1967.91, 2197.01], [1970.54, 2194.09], [1966.19, 2190.18], [1957.39, 2199.97], [1959.08, 2201.49], [1958.34, 2202.31], [1960.37, 2204.14], [1961.19, 2203.22], [1963.65, 2205.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[1418.74, 2254.68], [1422.13, 2248.22], [1401.8, 2237.56], [1398.4, 2244.01], [1418.74, 2254.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2035.88, 2244.52], [2037.11, 2243.25], [2038.31, 2244.4], [2040.23, 2242.4], [2041.62, 2243.74], [2045.75, 2239.45], [2035.2, 2229.26], [2032.43, 2232.13], [2035.22, 2234.83], [2032.01, 2238.16], [2034.09, 2240.16], [2032.77, 2241.51], [2035.88, 2244.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2136.37, 2370.36], [2143.35, 2363.54], [2137.84, 2357.92], [2131.05, 2364.55], [2132.62, 2366.16], [2131.35, 2367.4], [2134.07, 2370.19], [2135.17, 2369.13], [2136.37, 2370.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2191.06, 2047.39], [2188.21, 2044.43], [2184.99, 2047.53], [2187.84, 2050.5], [2191.06, 2047.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2226.02, 2319.58], [2234.04, 2312.05], [2228.69, 2306.36], [2218.79, 2315.66], [2222.15, 2319.23], [2224.03, 2317.46], [2226.02, 2319.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1938.84, 1941.96], [1934.45, 1937.72], [1932.26, 1940.0], [1930.92, 1938.7], [1921.54, 1948.43], [1927.28, 1953.95], [1938.84, 1941.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2224.13, 2581.97], [2219.59, 2577.87], [2217.08, 2580.65], [2221.63, 2584.75], [2224.13, 2581.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2119.16, 2118.1], [2117.14, 2116.09], [2116.0, 2117.23], [2113.76, 2115.0], [2104.57, 2124.21], [2110.92, 2130.56], [2120.0, 2121.45], [2117.9, 2119.36], [2119.16, 2118.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2095.32, 2314.94], [2093.3, 2312.95], [2091.77, 2314.51], [2089.92, 2312.69], [2086.61, 2316.04], [2088.04, 2317.45], [2082.05, 2323.52], [2086.43, 2327.84], [2095.82, 2318.31], [2093.89, 2316.39], [2095.32, 2314.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1323.48, 2542.27], [1319.27, 2534.44], [1317.49, 2535.4], [1316.33, 2533.24], [1318.54, 2532.04], [1316.13, 2527.58], [1304.44, 2533.87], [1309.26, 2542.71], [1313.24, 2540.62], [1316.18, 2546.23], [1323.48, 2542.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[2220.46, 1908.89], [2215.18, 1903.02], [2205.64, 1911.61], [2212.62, 1919.37], [2216.86, 1915.56], [2215.16, 1913.66], [2220.46, 1908.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2491.44, 2220.22], [2487.4, 2216.06], [2485.66, 2217.75], [2484.17, 2216.21], [2482.23, 2218.1], [2481.35, 2217.2], [2478.09, 2220.36], [2479.52, 2221.84], [2475.42, 2225.83], [2480.39, 2230.95], [2491.44, 2220.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1943.57, 2048.93], [1945.05, 2047.51], [1945.9, 2048.41], [1952.61, 2042.01], [1947.92, 2037.08], [1940.92, 2043.77], [1942.04, 2044.94], [1940.85, 2046.09], [1943.57, 2048.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2161.71, 2181.24], [2173.18, 2169.4], [2171.28, 2167.55], [2169.27, 2169.63], [2165.44, 2165.92], [2155.97, 2175.68], [2161.71, 2181.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2405.27, 2098.51], [2400.88, 2094.22], [2397.56, 2097.63], [2396.28, 2096.38], [2392.6, 2100.15], [2393.49, 2101.02], [2392.84, 2101.68], [2394.54, 2103.34], [2392.69, 2105.23], [2396.28, 2108.73], [2404.36, 2100.46], [2403.86, 2099.97], [2405.27, 2098.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1981.11, 2014.52], [1975.61, 2008.85], [1969.74, 2014.55], [1976.19, 2021.19], [1980.17, 2017.35], [1979.21, 2016.36], [1981.11, 2014.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2429.47, 2137.63], [2434.12, 2132.95], [2427.06, 2125.93], [2428.55, 2124.43], [2425.22, 2121.14], [2421.51, 2124.88], [2423.48, 2126.84], [2421.8, 2128.52], [2422.32, 2129.04], [2420.79, 2130.59], [2427.15, 2136.91], [2427.94, 2136.12], [2429.47, 2137.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2094.03, 2292.29], [2092.02, 2290.16], [2090.46, 2291.64], [2089.43, 2290.55], [2084.07, 2295.62], [2087.12, 2298.84], [2094.03, 2292.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1254.79, 2360.31], [1250.72, 2352.67], [1242.04, 2357.25], [1246.12, 2364.89], [1254.79, 2360.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2375.44, 2083.85], [2373.0, 2081.69], [2368.84, 2086.44], [2373.24, 2090.3], [2376.17, 2086.97], [2374.21, 2085.25], [2375.44, 2083.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1878.11, 1948.81], [1875.38, 1946.08], [1871.33, 1950.1], [1874.07, 1952.85], [1878.11, 1948.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1829.43, 2007.08], [1826.15, 2003.97], [1821.5, 2008.86], [1824.77, 2011.97], [1829.43, 2007.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2211.57, 2291.96], [2208.91, 2289.22], [2207.03, 2291.05], [2205.51, 2289.49], [2201.12, 2293.75], [2207.05, 2299.86], [2211.97, 2295.09], [2210.21, 2293.28], [2211.57, 2291.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2096.82, 2415.46], [2091.69, 2410.28], [2086.39, 2415.52], [2091.51, 2420.7], [2096.82, 2415.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2258.03, 2301.13], [2252.7, 2295.57], [2248.08, 2300.0], [2251.52, 2303.59], [2245.32, 2309.54], [2252.72, 2317.26], [2258.66, 2311.57], [2253.15, 2305.81], [2258.03, 2301.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[1761.73, 2580.56], [1775.11, 2577.87], [1761.44, 2513.41], [1747.47, 2516.17], [1761.73, 2580.56]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.588, "pop": 0, "jobs": 588}}, {"shape": {"outer": [[2227.18, 2179.73], [2228.8, 2178.02], [2229.95, 2179.11], [2235.25, 2173.53], [2232.46, 2170.9], [2234.21, 2169.06], [2232.05, 2167.02], [2229.82, 2169.36], [2228.04, 2167.68], [2221.62, 2174.45], [2227.18, 2179.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2227.99, 2275.82], [2222.29, 2269.8], [2215.92, 2275.83], [2221.64, 2281.85], [2227.99, 2275.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1922.59, 1979.18], [1919.24, 1976.11], [1915.35, 1980.34], [1918.7, 1983.41], [1922.59, 1979.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2149.24, 2092.45], [2143.97, 2086.39], [2138.48, 2091.18], [2143.75, 2097.24], [2149.24, 2092.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2608.41, 2316.05], [2604.85, 2312.52], [2599.06, 2318.33], [2602.62, 2321.86], [2608.41, 2316.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2131.84, 2302.81], [2127.88, 2298.97], [2123.79, 2303.17], [2127.74, 2307.02], [2131.84, 2302.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1278.44, 2753.87], [1278.31, 2751.01], [1280.97, 2750.88], [1280.51, 2740.28], [1277.82, 2740.4], [1277.76, 2739.28], [1275.51, 2739.39], [1275.48, 2738.85], [1271.31, 2739.04], [1271.34, 2739.57], [1271.39, 2740.71], [1267.28, 2740.9], [1267.74, 2751.5], [1271.89, 2751.31], [1272.02, 2754.16], [1278.44, 2753.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2189.28, 2035.41], [2187.61, 2033.64], [2183.26, 2037.78], [2184.93, 2039.54], [2189.28, 2035.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[2461.79, 2158.55], [2453.56, 2150.23], [2452.71, 2151.07], [2451.27, 2149.61], [2447.11, 2153.73], [2448.9, 2155.55], [2448.07, 2156.36], [2457.64, 2166.02], [2460.98, 2162.71], [2459.86, 2161.58], [2461.2, 2160.26], [2460.64, 2159.69], [2461.79, 2158.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2201.6, 2057.67], [2198.43, 2054.29], [2195.22, 2057.3], [2198.37, 2060.68], [2201.6, 2057.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2112.15, 2273.0], [2109.29, 2270.3], [2102.16, 2277.85], [2105.02, 2280.55], [2112.15, 2273.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2357.27, 2041.79], [2351.21, 2036.26], [2344.46, 2043.65], [2350.52, 2049.18], [2357.27, 2041.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2228.36, 2222.51], [2224.5, 2218.9], [2216.64, 2227.31], [2220.51, 2230.91], [2228.36, 2222.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2356.94, 2443.08], [2353.11, 2439.22], [2347.92, 2444.37], [2351.74, 2448.23], [2356.94, 2443.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2158.78, 2067.76], [2153.24, 2061.06], [2147.5, 2065.8], [2153.04, 2072.5], [2158.78, 2067.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2194.43, 1950.78], [2201.02, 1944.02], [2194.83, 1938.18], [2188.26, 1945.07], [2194.43, 1950.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1354.15, 2751.92], [1353.46, 2735.74], [1342.23, 2736.22], [1342.29, 2737.28], [1336.99, 2737.51], [1337.41, 2747.61], [1338.34, 2747.56], [1338.49, 2750.83], [1342.8, 2750.64], [1342.88, 2752.39], [1354.15, 2751.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.2, "pop": 100, "jobs": 0}}, {"shape": {"outer": [[1976.82, 2145.45], [1969.27, 2137.98], [1965.32, 2141.99], [1968.43, 2145.07], [1966.37, 2147.16], [1970.81, 2151.55], [1976.82, 2145.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1800.12, 1990.78], [1795.82, 1986.2], [1792.21, 1989.58], [1796.51, 1994.17], [1800.12, 1990.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2120.21, 2159.82], [2111.62, 2151.3], [2107.21, 2155.76], [2115.8, 2164.27], [2120.21, 2159.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1859.79, 1947.3], [1853.59, 1941.29], [1844.15, 1951.02], [1850.35, 1957.04], [1859.79, 1947.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2242.84, 2111.86], [2238.72, 2107.84], [2235.07, 2111.6], [2239.19, 2115.6], [2242.84, 2111.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2107.79, 2328.28], [2102.46, 2322.92], [2101.55, 2323.83], [2099.88, 2322.14], [2090.83, 2331.12], [2097.82, 2338.17], [2107.79, 2328.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2183.27, 2477.26], [2180.71, 2474.87], [2175.99, 2479.91], [2178.39, 2482.16], [2176.5, 2484.18], [2180.22, 2487.66], [2185.32, 2482.2], [2181.76, 2478.87], [2183.27, 2477.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1973.32, 2115.18], [1968.69, 2110.84], [1958.03, 2122.25], [1962.66, 2126.57], [1973.32, 2115.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2436.58, 2188.5], [2445.76, 2179.21], [2441.78, 2175.29], [2438.71, 2178.39], [2437.51, 2177.21], [2430.69, 2184.12], [2433.15, 2186.56], [2433.87, 2185.82], [2436.58, 2188.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2155.06, 2001.52], [2151.64, 1998.4], [2147.71, 2002.68], [2151.14, 2005.81], [2155.06, 2001.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1948.31, 2026.99], [1944.74, 2023.44], [1944.57, 2023.62], [1943.08, 2025.25], [1941.61, 2023.79], [1933.23, 2032.2], [1936.13, 2035.08], [1934.31, 2036.91], [1937.62, 2040.2], [1947.61, 2030.16], [1946.38, 2028.92], [1948.31, 2026.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2413.79, 2147.6], [2404.06, 2138.09], [2395.18, 2147.18], [2404.92, 2156.68], [2413.79, 2147.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2207.46, 2134.86], [2199.13, 2126.76], [2198.22, 2127.68], [2196.01, 2125.53], [2191.11, 2130.57], [2193.15, 2132.56], [2192.48, 2133.23], [2200.99, 2141.51], [2207.46, 2134.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2290.26, 1987.61], [2291.56, 1986.35], [2292.58, 1987.41], [2302.87, 1977.43], [2298.19, 1972.62], [2296.6, 1974.15], [2294.61, 1972.09], [2289.46, 1977.08], [2291.71, 1979.4], [2288.0, 1982.98], [2289.29, 1984.31], [2288.14, 1985.42], [2290.26, 1987.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2236.74, 2101.74], [2227.99, 2093.81], [2222.87, 2099.47], [2231.6, 2107.39], [2236.74, 2101.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1578.3, 2821.81], [1598.81, 2811.77], [1598.43, 2801.11], [1593.66, 2791.08], [1570.39, 2802.49], [1575.19, 2812.25], [1573.77, 2813.05], [1578.3, 2821.81]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.34, "pop": 0, "jobs": 340}}, {"shape": {"outer": [[1842.42, 2012.5], [1839.38, 2009.5], [1835.12, 2013.8], [1838.15, 2016.8], [1842.42, 2012.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2219.68, 1958.64], [2213.76, 1952.83], [2203.49, 1963.3], [2209.41, 1969.11], [2219.68, 1958.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1885.68, 1977.87], [1878.91, 1971.55], [1872.05, 1978.89], [1878.81, 1985.21], [1885.68, 1977.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2299.74, 2052.43], [2306.35, 2058.8], [2318.17, 2045.72], [2311.68, 2039.65], [2299.74, 2052.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2120.02, 2276.51], [2129.19, 2267.06], [2123.3, 2261.33], [2114.79, 2270.09], [2115.59, 2270.86], [2113.76, 2272.73], [2115.93, 2274.84], [2117.08, 2273.66], [2120.02, 2276.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2381.25, 2096.33], [2378.06, 2093.28], [2370.06, 2101.62], [2373.24, 2104.67], [2381.25, 2096.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2282.76, 1999.76], [2290.94, 2007.33], [2295.23, 2002.76], [2286.99, 1995.08], [2282.76, 1999.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2144.59, 2383.4], [2145.75, 2382.07], [2146.53, 2382.75], [2152.97, 2375.27], [2147.48, 2370.54], [2139.89, 2379.35], [2144.59, 2383.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2118.51, 2043.11], [2115.67, 2040.39], [2112.3, 2043.91], [2115.14, 2046.63], [2118.51, 2043.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1530.11, 1938.46], [1537.05, 1944.78], [1548.42, 1932.36], [1541.46, 1926.05], [1530.11, 1938.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2247.19, 1980.8], [2241.18, 1974.94], [2228.92, 1987.53], [2234.94, 1993.39], [2247.19, 1980.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1915.54, 1958.42], [1911.8, 1954.62], [1906.59, 1959.75], [1910.33, 1963.55], [1915.54, 1958.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1945.47, 2636.64], [1942.48, 2623.68], [1910.28, 2630.92], [1913.28, 2643.76], [1945.47, 2636.64]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.28, "pop": 0, "jobs": 280}}, {"shape": {"outer": [[2520.82, 2254.36], [2517.98, 2251.65], [2516.89, 2252.79], [2514.03, 2250.05], [2505.99, 2258.45], [2511.68, 2263.91], [2520.82, 2254.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1973.57, 2184.42], [1970.66, 2181.24], [1966.23, 2185.29], [1969.14, 2188.47], [1973.57, 2184.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2196.04, 2025.96], [2194.61, 2024.5], [2193.08, 2025.99], [2188.78, 2021.57], [2183.4, 2026.81], [2189.12, 2032.7], [2196.04, 2025.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2173.28, 2229.97], [2169.38, 2226.6], [2165.31, 2231.31], [2169.2, 2234.67], [2173.28, 2229.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1938.84, 2134.19], [1934.62, 2130.1], [1932.3, 2132.5], [1936.5, 2136.59], [1938.84, 2134.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2209.44, 2232.61], [2205.26, 2228.56], [2200.76, 2233.2], [2204.94, 2237.25], [2209.44, 2232.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2027.34, 2055.59], [2023.28, 2050.82], [2019.67, 2053.91], [2023.73, 2058.68], [2027.34, 2055.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2338.23, 2183.93], [2347.94, 2173.81], [2346.2, 2172.15], [2347.76, 2170.52], [2343.5, 2166.42], [2341.62, 2168.4], [2340.37, 2167.2], [2331.07, 2176.91], [2333.06, 2178.81], [2331.33, 2180.61], [2333.04, 2182.25], [2334.69, 2180.54], [2338.23, 2183.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2289.35, 2218.64], [2284.03, 2213.73], [2280.08, 2218.0], [2278.71, 2216.75], [2271.99, 2224.03], [2278.67, 2230.2], [2289.35, 2218.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1339.83, 2578.04], [1348.6, 2572.83], [1345.19, 2567.08], [1333.84, 2573.85], [1332.76, 2572.12], [1332.13, 2572.5], [1330.07, 2569.0], [1325.72, 2571.55], [1327.79, 2575.05], [1325.93, 2576.15], [1332.1, 2586.47], [1341.5, 2580.88], [1339.83, 2578.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[1983.87, 2005.06], [1980.7, 2001.21], [1976.29, 2004.84], [1979.46, 2008.7], [1983.87, 2005.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2290.75, 2146.87], [2282.86, 2139.41], [2278.27, 2144.27], [2286.16, 2151.73], [2290.75, 2146.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2457.64, 2175.59], [2462.1, 2170.91], [2457.55, 2166.49], [2453.0, 2171.06], [2457.64, 2175.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1754.57, 2180.57], [1765.91, 2178.35], [1758.44, 2143.04], [1751.12, 2144.48], [1754.52, 2162.03], [1750.86, 2162.73], [1754.57, 2180.57]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.222, "pop": 0, "jobs": 222}}, {"shape": {"outer": [[1931.09, 1990.38], [1926.16, 1985.93], [1922.2, 1990.3], [1927.12, 1994.76], [1931.09, 1990.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2117.8, 2255.79], [2112.8, 2251.25], [2104.8, 2260.07], [2109.79, 2264.61], [2117.8, 2255.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[1366.17, 2644.22], [1375.92, 2637.72], [1376.94, 2639.24], [1383.46, 2634.89], [1381.7, 2632.25], [1382.35, 2631.82], [1380.31, 2628.76], [1379.67, 2629.19], [1372.94, 2633.68], [1370.79, 2630.53], [1370.42, 2630.79], [1368.74, 2628.31], [1364.55, 2631.11], [1366.5, 2633.83], [1361.5, 2637.16], [1366.17, 2644.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[1859.89, 2004.57], [1854.25, 1999.34], [1851.88, 2001.91], [1850.96, 2001.06], [1844.12, 2008.44], [1850.67, 2014.51], [1859.89, 2004.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2106.57, 2310.18], [2103.58, 2307.16], [2099.33, 2311.38], [2102.3, 2314.39], [2106.57, 2310.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1927.2, 2029.92], [1928.86, 2028.17], [1929.84, 2029.1], [1937.48, 2021.07], [1931.25, 2015.14], [1923.52, 2023.26], [1924.19, 2023.89], [1922.61, 2025.55], [1927.2, 2029.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2025.67, 2079.5], [2023.05, 2076.8], [2013.47, 2086.17], [2019.07, 2091.9], [2024.63, 2086.47], [2021.65, 2083.42], [2025.67, 2079.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2464.7, 2153.57], [2467.77, 2150.6], [2458.91, 2141.43], [2454.56, 2145.64], [2461.84, 2153.16], [2463.11, 2151.94], [2464.7, 2153.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2346.38, 2218.54], [2335.22, 2207.96], [2329.12, 2214.39], [2340.28, 2224.96], [2346.38, 2218.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2504.41, 2239.46], [2498.6, 2233.94], [2491.99, 2240.92], [2497.81, 2246.43], [2504.41, 2239.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1259.49, 2572.81], [1267.02, 2568.84], [1262.07, 2559.41], [1254.52, 2563.38], [1252.14, 2564.64], [1255.41, 2570.86], [1257.8, 2569.61], [1259.49, 2572.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2260.48, 2190.37], [2257.63, 2187.29], [2254.66, 2190.04], [2251.55, 2186.68], [2240.91, 2196.51], [2246.87, 2202.95], [2260.48, 2190.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2349.91, 2085.8], [2346.01, 2081.8], [2344.36, 2083.42], [2342.04, 2081.05], [2334.86, 2088.06], [2335.97, 2089.2], [2333.85, 2091.28], [2338.95, 2096.51], [2349.91, 2085.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1883.95, 2053.42], [1885.56, 2051.7], [1886.59, 2052.67], [1895.24, 2043.4], [1888.9, 2037.48], [1878.64, 2048.45], [1883.95, 2053.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1989.04, 2089.66], [1996.69, 2097.11], [2009.7, 2083.74], [2002.06, 2076.29], [1989.04, 2089.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[2367.05, 2101.36], [2361.7, 2096.15], [2358.16, 2099.77], [2359.35, 2100.92], [2353.1, 2107.32], [2358.39, 2112.49], [2368.03, 2102.6], [2366.91, 2101.51], [2367.05, 2101.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2294.5, 2530.86], [2296.39, 2529.05], [2297.65, 2530.36], [2300.66, 2527.49], [2299.27, 2526.04], [2301.2, 2524.17], [2294.61, 2517.3], [2287.78, 2523.86], [2294.5, 2530.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2365.91, 2078.81], [2361.72, 2074.72], [2352.69, 2083.94], [2356.87, 2088.04], [2365.91, 2078.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2346.19, 2481.56], [2349.0, 2478.52], [2347.34, 2477.0], [2348.12, 2476.15], [2342.57, 2471.05], [2340.21, 2473.62], [2338.05, 2471.63], [2335.51, 2474.39], [2342.92, 2481.23], [2344.26, 2479.78], [2346.19, 2481.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1154.7, 2251.23], [1160.06, 2248.69], [1158.43, 2245.26], [1153.07, 2247.8], [1154.7, 2251.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2197.41, 2371.94], [2185.17, 2360.9], [2180.47, 2366.11], [2192.72, 2377.16], [2197.41, 2371.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2096.34, 2040.62], [2089.66, 2034.21], [2087.05, 2036.93], [2087.51, 2037.36], [2084.1, 2040.91], [2090.32, 2046.88], [2096.34, 2040.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2020.53, 2030.72], [2024.35, 2026.46], [2023.52, 2025.72], [2025.17, 2023.9], [2020.97, 2020.12], [2019.07, 2022.24], [2017.46, 2020.8], [2014.11, 2024.52], [2015.74, 2025.97], [2014.34, 2027.52], [2017.37, 2030.24], [2018.55, 2028.93], [2020.53, 2030.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2013.48, 2245.19], [2007.91, 2239.89], [2002.62, 2245.46], [2008.19, 2250.76], [2013.48, 2245.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2610.77, 2290.16], [2619.5, 2279.01], [2613.41, 2274.23], [2610.91, 2277.42], [2609.08, 2275.98], [2601.32, 2285.88], [2605.03, 2288.79], [2606.55, 2286.85], [2610.77, 2290.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2051.64, 2360.46], [2063.3, 2348.16], [2056.53, 2341.44], [2044.48, 2353.68], [2051.64, 2360.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2158.07, 2090.76], [2152.94, 2086.29], [2149.57, 2090.15], [2154.7, 2094.62], [2158.07, 2090.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2224.75, 2601.18], [2230.94, 2594.56], [2220.31, 2584.62], [2214.12, 2591.24], [2216.15, 2593.13], [2214.87, 2594.5], [2218.35, 2597.75], [2219.63, 2596.38], [2224.75, 2601.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2022.16, 2181.76], [2027.86, 2176.3], [2028.66, 2177.13], [2033.6, 2172.38], [2030.07, 2168.71], [2028.05, 2170.66], [2024.47, 2166.92], [2017.38, 2173.73], [2019.98, 2176.42], [2018.45, 2177.9], [2022.16, 2181.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2010.66, 2073.6], [2015.22, 2068.9], [2010.43, 2064.22], [2005.93, 2068.89], [2010.66, 2073.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1941.25, 2186.77], [1942.54, 2185.38], [1943.75, 2186.5], [1951.52, 2178.1], [1949.84, 2176.55], [1951.2, 2175.07], [1947.12, 2171.29], [1948.77, 2169.5], [1946.72, 2167.6], [1938.47, 2176.5], [1939.33, 2177.3], [1936.98, 2179.85], [1937.78, 2180.6], [1936.3, 2182.2], [1941.25, 2186.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2082.23, 2171.05], [2078.72, 2167.51], [2074.39, 2171.8], [2077.89, 2175.35], [2082.23, 2171.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1825.33, 2002.05], [1821.22, 1997.91], [1816.8, 2002.29], [1820.9, 2006.43], [1825.33, 2002.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2282.38, 2108.84], [2274.9, 2100.88], [2264.44, 2110.69], [2271.92, 2118.66], [2282.38, 2108.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2072.89, 2095.9], [2068.25, 2091.14], [2063.67, 2095.61], [2068.31, 2100.37], [2072.89, 2095.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2266.43, 2289.77], [2261.97, 2285.35], [2259.38, 2287.97], [2263.84, 2292.39], [2266.43, 2289.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2210.98, 2357.53], [2198.0, 2345.03], [2194.45, 2348.73], [2195.92, 2350.15], [2194.19, 2351.94], [2205.69, 2363.02], [2210.98, 2357.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2554.44, 2268.7], [2559.65, 2263.42], [2555.01, 2258.97], [2549.86, 2264.14], [2554.44, 2268.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2171.55, 2368.86], [2167.81, 2364.95], [2163.15, 2369.43], [2166.88, 2373.33], [2171.55, 2368.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1846.57, 1920.68], [1837.87, 1911.67], [1832.64, 1916.72], [1842.77, 1927.21], [1847.37, 1922.77], [1845.94, 1921.29], [1846.57, 1920.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2236.89, 2230.55], [2231.93, 2225.33], [2219.63, 2237.0], [2226.34, 2244.08], [2237.29, 2233.7], [2235.53, 2231.84], [2236.89, 2230.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2149.66, 2227.98], [2143.41, 2221.57], [2136.01, 2228.79], [2142.27, 2235.2], [2149.66, 2227.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1888.62, 2033.49], [1882.58, 2027.64], [1873.44, 2037.08], [1879.48, 2042.93], [1888.62, 2033.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2300.66, 2125.99], [2294.8, 2120.49], [2282.94, 2133.09], [2288.79, 2138.6], [2300.66, 2125.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2108.73, 2249.85], [2105.09, 2245.92], [2100.27, 2250.41], [2103.9, 2254.33], [2108.73, 2249.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2027.83, 2228.54], [2023.62, 2224.12], [2018.5, 2228.99], [2022.72, 2233.42], [2027.83, 2228.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1447.88, 2802.97], [1452.3, 2802.87], [1451.97, 2796.85], [1447.55, 2796.94], [1447.88, 2802.97]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.017, "pop": 0, "jobs": 17}}, {"shape": {"outer": [[1924.5, 2071.49], [1917.79, 2064.9], [1910.93, 2071.89], [1913.37, 2074.29], [1908.27, 2079.49], [1912.54, 2083.67], [1924.5, 2071.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2099.41, 2099.22], [2094.72, 2094.08], [2086.03, 2102.02], [2090.71, 2107.15], [2099.41, 2099.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2453.99, 2204.89], [2461.76, 2197.11], [2455.93, 2191.28], [2446.91, 2200.31], [2450.5, 2203.9], [2451.75, 2202.65], [2453.99, 2204.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1981.31, 2071.52], [1972.83, 2063.52], [1968.09, 2068.55], [1976.57, 2076.55], [1981.31, 2071.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2150.81, 2006.11], [2146.61, 2001.97], [2141.7, 2006.96], [2145.91, 2011.1], [2150.81, 2006.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1878.36, 2529.42], [1873.31, 2501.99], [1856.54, 2424.65], [1834.99, 2429.35], [1851.86, 2506.67], [1852.07, 2506.62], [1857.23, 2534.09], [1878.36, 2529.42]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1502}}, {"shape": {"outer": [[2308.47, 2019.73], [2302.7, 2014.4], [2297.98, 2019.51], [2303.75, 2024.84], [2308.47, 2019.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2108.38, 2345.95], [2116.83, 2337.86], [2114.48, 2335.41], [2116.02, 2333.92], [2112.98, 2330.74], [2110.99, 2332.64], [2110.27, 2331.89], [2102.04, 2339.78], [2103.11, 2340.9], [2101.39, 2342.55], [2103.9, 2345.17], [2105.85, 2343.3], [2108.38, 2345.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[1374.83, 2746.65], [1374.59, 2734.56], [1369.44, 2734.73], [1369.42, 2733.99], [1366.05, 2734.11], [1366.08, 2734.84], [1359.72, 2735.06], [1359.97, 2747.27], [1363.04, 2747.2], [1363.31, 2757.34], [1371.01, 2757.1], [1370.82, 2749.42], [1368.35, 2749.48], [1368.29, 2746.89], [1374.83, 2746.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.204, "pop": 102, "jobs": 0}}, {"shape": {"outer": [[2123.08, 2057.13], [2118.43, 2052.39], [2114.63, 2056.11], [2119.27, 2060.86], [2123.08, 2057.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2226.34, 2162.67], [2221.38, 2157.46], [2220.17, 2158.62], [2220.12, 2158.56], [2212.32, 2166.0], [2218.69, 2172.68], [2226.44, 2165.29], [2225.09, 2163.87], [2226.34, 2162.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2196.51, 2344.23], [2192.28, 2340.34], [2187.15, 2345.9], [2191.38, 2349.8], [2196.51, 2344.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2163.18, 2223.85], [2167.33, 2219.62], [2163.02, 2215.4], [2158.87, 2219.63], [2163.18, 2223.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2243.92, 2312.62], [2240.32, 2308.88], [2235.58, 2313.43], [2239.17, 2317.18], [2243.92, 2312.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2166.36, 2161.73], [2160.15, 2155.85], [2147.96, 2168.71], [2154.17, 2174.6], [2166.36, 2161.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2233.25, 2572.74], [2227.03, 2566.54], [2225.06, 2568.52], [2231.28, 2574.71], [2233.25, 2572.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1929.4, 1933.07], [1923.82, 1927.5], [1914.24, 1937.09], [1919.82, 1942.67], [1929.4, 1933.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2324.82, 2042.02], [2329.76, 2036.59], [2321.89, 2029.03], [2316.89, 2034.24], [2324.82, 2042.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2187.27, 2208.03], [2183.36, 2204.59], [2178.08, 2210.57], [2181.99, 2214.02], [2187.27, 2208.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2096.46, 2147.24], [2091.97, 2142.76], [2086.58, 2148.18], [2091.07, 2152.65], [2096.46, 2147.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2353.93, 2211.17], [2344.82, 2202.1], [2339.03, 2207.91], [2348.14, 2216.97], [2353.93, 2211.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2623.79, 2287.97], [2619.14, 2283.5], [2609.98, 2293.04], [2614.64, 2297.51], [2623.79, 2287.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1729.47, 1811.4], [1757.03, 1776.81], [1762.71, 1781.63], [1769.55, 1773.95], [1757.27, 1763.81], [1723.28, 1806.47], [1729.47, 1811.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.326, "pop": 0, "jobs": 326}}, {"shape": {"outer": [[1800.44, 2615.52], [1819.06, 2611.42], [1816.13, 2598.14], [1797.5, 2602.25], [1800.44, 2615.52]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.166, "pop": 0, "jobs": 166}}, {"shape": {"outer": [[1952.56, 2096.08], [1954.21, 2094.3], [1950.9, 2091.25], [1946.93, 2095.55], [1945.06, 2093.83], [1943.35, 2095.69], [1944.54, 2096.79], [1942.87, 2098.6], [1949.55, 2104.77], [1955.26, 2098.58], [1952.56, 2096.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2307.57, 2031.31], [2304.8, 2028.7], [2300.15, 2033.6], [2302.91, 2036.21], [2307.57, 2031.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2143.54, 2196.06], [2132.67, 2186.0], [2130.17, 2188.71], [2130.67, 2189.18], [2128.31, 2191.71], [2129.76, 2193.06], [2128.76, 2194.14], [2137.67, 2202.4], [2143.54, 2196.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2272.65, 2007.41], [2268.58, 2003.7], [2267.79, 2004.58], [2266.55, 2003.45], [2263.98, 2006.28], [2262.75, 2005.17], [2259.83, 2008.37], [2260.83, 2009.28], [2257.07, 2013.39], [2262.62, 2018.44], [2272.65, 2007.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1885.05, 1963.52], [1881.54, 1960.24], [1878.05, 1963.97], [1881.57, 1967.25], [1885.05, 1963.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2309.5, 2514.98], [2300.02, 2506.49], [2297.09, 2509.76], [2298.72, 2511.23], [2296.64, 2513.55], [2304.5, 2520.58], [2309.5, 2514.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1252.27, 2419.58], [1244.03, 2411.28], [1243.57, 2411.74], [1241.34, 2409.5], [1238.16, 2412.64], [1240.39, 2414.89], [1236.6, 2418.65], [1240.33, 2422.41], [1234.74, 2427.96], [1240.73, 2434.01], [1244.55, 2430.23], [1246.33, 2428.46], [1250.63, 2424.2], [1249.14, 2422.69], [1252.27, 2419.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[2273.33, 2031.97], [2278.49, 2036.77], [2292.06, 2021.71], [2286.9, 2016.72], [2273.33, 2031.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2132.01, 2040.96], [2126.39, 2035.46], [2120.93, 2041.04], [2126.56, 2046.54], [2132.01, 2040.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2204.97, 2033.81], [2203.1, 2031.83], [2202.07, 2032.8], [2198.18, 2028.68], [2191.81, 2034.68], [2197.56, 2040.79], [2204.97, 2033.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2277.42, 1947.14], [2274.44, 1944.23], [2273.37, 1945.34], [2271.53, 1943.56], [2269.96, 1945.17], [2269.14, 1944.37], [2266.43, 1947.14], [2266.76, 1947.47], [2265.06, 1949.22], [2270.37, 1954.38], [2277.42, 1947.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2394.71, 2126.44], [2390.21, 2122.4], [2386.52, 2126.51], [2385.54, 2125.64], [2379.6, 2132.27], [2385.08, 2137.18], [2394.71, 2126.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2406.53, 2419.72], [2398.24, 2411.34], [2393.06, 2416.46], [2401.36, 2424.84], [2406.53, 2419.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1312.46, 2701.89], [1312.42, 2700.98], [1316.69, 2700.83], [1316.57, 2697.3], [1320.39, 2697.17], [1320.13, 2689.23], [1310.81, 2689.56], [1310.76, 2688.18], [1305.44, 2688.36], [1305.48, 2689.74], [1305.68, 2695.67], [1302.89, 2695.76], [1303.05, 2700.79], [1305.84, 2700.7], [1305.86, 2701.21], [1309.41, 2701.09], [1309.45, 2702.0], [1312.46, 2701.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[2140.44, 1994.77], [2136.93, 1991.73], [2133.28, 1995.95], [2136.79, 1998.99], [2140.44, 1994.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2222.65, 2300.55], [2220.67, 2298.61], [2219.36, 2299.96], [2217.28, 2297.94], [2209.26, 2306.18], [2215.07, 2311.85], [2222.85, 2303.87], [2221.09, 2302.15], [2222.65, 2300.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2229.54, 2052.16], [2220.38, 2043.06], [2207.7, 2056.22], [2216.69, 2065.24], [2229.54, 2052.16]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.15, "pop": 0, "jobs": 150}}, {"shape": {"outer": [[2248.01, 2543.34], [2259.26, 2531.58], [2252.5, 2525.33], [2241.29, 2536.83], [2248.01, 2543.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[1809.25, 1955.39], [1806.78, 1953.04], [1805.99, 1953.87], [1803.65, 1951.64], [1797.95, 1957.67], [1804.46, 1963.85], [1809.99, 1958.01], [1808.29, 1956.4], [1809.25, 1955.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1935.32, 1976.93], [1931.25, 1973.08], [1925.78, 1978.86], [1929.85, 1982.71], [1935.32, 1976.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2308.45, 2071.23], [2310.73, 2069.03], [2312.23, 2070.57], [2324.65, 2058.54], [2322.83, 2056.67], [2324.79, 2054.77], [2320.61, 2050.44], [2308.65, 2062.04], [2309.07, 2062.47], [2306.0, 2065.44], [2307.48, 2066.95], [2305.83, 2068.54], [2308.45, 2071.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[1301.21, 2503.99], [1309.2, 2500.43], [1306.31, 2493.98], [1301.63, 2496.07], [1300.28, 2493.06], [1296.61, 2494.7], [1296.48, 2494.4], [1296.91, 2493.4], [1296.07, 2491.63], [1295.21, 2491.57], [1294.71, 2490.46], [1291.52, 2491.92], [1290.54, 2489.64], [1285.77, 2491.78], [1287.27, 2495.03], [1283.81, 2496.54], [1287.65, 2505.16], [1291.6, 2503.4], [1294.93, 2510.82], [1302.69, 2507.3], [1301.21, 2503.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[2140.73, 2074.25], [2138.0, 2071.88], [2134.96, 2075.39], [2137.69, 2077.76], [2140.73, 2074.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2194.54, 2062.05], [2188.47, 2056.76], [2182.71, 2063.34], [2188.78, 2068.65], [2194.54, 2062.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2121.1, 2324.01], [2116.98, 2320.09], [2111.52, 2325.83], [2115.65, 2329.75], [2121.1, 2324.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2124.31, 2067.33], [2118.42, 2061.21], [2113.22, 2066.21], [2117.01, 2070.15], [2114.97, 2072.12], [2117.07, 2074.3], [2124.31, 2067.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2035.38, 2035.83], [2031.12, 2031.13], [2028.56, 2033.45], [2028.18, 2033.02], [2022.32, 2038.34], [2027.55, 2044.1], [2034.41, 2037.9], [2033.83, 2037.26], [2035.38, 2035.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2502.65, 2214.18], [2499.54, 2211.37], [2495.13, 2216.25], [2498.24, 2219.06], [2502.65, 2214.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2386.05, 2110.73], [2381.8, 2106.56], [2377.66, 2110.78], [2381.9, 2114.95], [2386.05, 2110.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2180.13, 2252.36], [2174.1, 2246.54], [2164.23, 2256.75], [2170.26, 2262.58], [2180.13, 2252.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[1991.13, 2217.46], [1988.07, 2214.23], [1987.06, 2215.19], [1984.37, 2212.34], [1977.66, 2218.71], [1983.4, 2224.78], [1991.13, 2217.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2244.15, 2326.52], [2236.98, 2319.19], [2231.27, 2324.78], [2238.45, 2332.1], [2244.15, 2326.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[1283.33, 2698.17], [1283.53, 2696.98], [1287.83, 2697.7], [1289.44, 2687.99], [1285.78, 2687.38], [1286.23, 2684.63], [1280.67, 2683.72], [1280.25, 2686.28], [1267.54, 2684.2], [1266.18, 2692.45], [1277.06, 2694.23], [1276.79, 2695.89], [1280.64, 2696.51], [1280.45, 2697.69], [1283.33, 2698.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[1214.37, 2463.33], [1218.43, 2459.68], [1218.8, 2460.08], [1222.5, 2456.77], [1211.03, 2443.94], [1207.26, 2447.31], [1210.02, 2450.41], [1202.38, 2457.27], [1211.08, 2466.99], [1214.72, 2463.72], [1214.37, 2463.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[2593.44, 2287.37], [2610.47, 2269.68], [2599.94, 2259.13], [2583.15, 2277.44], [2593.44, 2287.37]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.231, "pop": 0, "jobs": 231}}, {"shape": {"outer": [[2238.56, 2116.46], [2234.26, 2112.36], [2230.02, 2116.83], [2234.31, 2120.92], [2238.56, 2116.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2169.11, 2032.48], [2164.19, 2027.81], [2155.42, 2037.06], [2161.34, 2042.67], [2166.78, 2036.93], [2165.78, 2035.99], [2169.11, 2032.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2252.02, 2572.24], [2254.13, 2570.01], [2256.34, 2572.09], [2259.42, 2568.84], [2249.35, 2559.32], [2244.17, 2564.8], [2252.02, 2572.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2449.54, 2168.7], [2445.53, 2164.76], [2441.1, 2169.26], [2445.11, 2173.2], [2449.54, 2168.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2812.63, 2042.19], [2812.22, 2036.25], [2806.0, 2036.68], [2806.42, 2042.62], [2812.63, 2042.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2817.23, 2022.88], [2816.87, 2016.51], [2811.41, 2016.82], [2811.78, 2023.19], [2817.23, 2022.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2946.63, 2319.1], [2946.34, 2313.93], [2943.62, 2314.08], [2943.57, 2313.09], [2930.89, 2313.8], [2931.34, 2322.02], [2944.73, 2321.27], [2944.61, 2319.21], [2946.63, 2319.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2762.78, 2283.71], [2762.32, 2272.35], [2753.85, 2272.69], [2754.29, 2284.04], [2762.78, 2283.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2846.43, 2160.48], [2845.99, 2154.26], [2842.82, 2154.48], [2842.71, 2152.92], [2831.13, 2153.72], [2831.67, 2161.51], [2846.43, 2160.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2934.63, 2095.02], [2934.0, 2087.3], [2916.18, 2088.75], [2916.62, 2094.07], [2921.21, 2093.69], [2921.46, 2096.85], [2932.32, 2095.96], [2932.26, 2095.21], [2934.63, 2095.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2791.23, 1908.6], [2790.73, 1902.61], [2783.86, 1903.18], [2784.36, 1909.17], [2791.23, 1908.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2936.69, 1689.54], [2928.94, 1688.0], [2926.7, 1699.31], [2934.45, 1700.85], [2936.69, 1689.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2691.87, 1953.81], [2691.58, 1949.76], [2689.26, 1949.92], [2688.9, 1944.94], [2684.75, 1945.25], [2684.84, 1946.51], [2677.68, 1947.04], [2678.37, 1956.51], [2690.05, 1955.67], [2689.93, 1953.95], [2691.87, 1953.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2735.5, 2282.36], [2735.0, 2275.77], [2728.14, 2276.27], [2728.63, 2282.87], [2735.5, 2282.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2915.26, 1659.11], [2909.24, 1657.92], [2907.91, 1664.61], [2913.94, 1665.8], [2915.26, 1659.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2931.17, 1579.44], [2931.62, 1576.44], [2932.96, 1576.63], [2935.18, 1561.51], [2926.94, 1560.29], [2924.81, 1574.8], [2926.0, 1574.97], [2925.47, 1578.6], [2931.17, 1579.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2806.22, 2054.68], [2805.93, 2048.08], [2798.21, 2048.42], [2798.5, 2055.03], [2806.22, 2054.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2775.75, 1903.23], [2775.36, 1893.56], [2763.95, 1894.02], [2764.14, 1898.52], [2765.35, 1898.46], [2765.56, 1903.65], [2775.75, 1903.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2763.88, 2299.55], [2763.45, 2293.14], [2757.22, 2293.56], [2757.65, 2299.96], [2763.88, 2299.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2748.52, 2046.57], [2748.07, 2038.87], [2736.03, 2039.56], [2736.11, 2040.96], [2734.85, 2041.03], [2735.13, 2046.0], [2735.93, 2045.95], [2736.0, 2047.3], [2748.52, 2046.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2717.24, 1971.57], [2716.87, 1967.82], [2711.03, 1968.4], [2711.41, 1972.14], [2717.24, 1971.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2790.39, 2126.85], [2790.08, 2119.06], [2778.61, 2119.52], [2778.92, 2127.32], [2790.39, 2126.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2923.07, 1874.31], [2924.73, 1867.94], [2924.23, 1867.8], [2926.37, 1859.6], [2925.08, 1859.27], [2926.2, 1854.95], [2912.71, 1851.46], [2908.79, 1866.48], [2915.79, 1868.3], [2914.79, 1872.16], [2923.07, 1874.31]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.171, "pop": 0, "jobs": 171}}, {"shape": {"outer": [[2757.32, 2225.05], [2757.14, 2220.39], [2754.46, 2220.49], [2754.41, 2219.15], [2741.57, 2219.65], [2741.7, 2223.01], [2740.33, 2223.07], [2740.49, 2227.41], [2755.57, 2226.83], [2755.5, 2225.11], [2757.32, 2225.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2836.74, 1984.1], [2836.42, 1978.29], [2831.38, 1978.57], [2831.31, 1977.41], [2823.96, 1977.81], [2824.41, 1985.9], [2834.97, 1985.33], [2834.92, 1984.2], [2836.74, 1984.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2803.63, 2144.74], [2810.25, 2144.48], [2809.98, 2137.61], [2803.36, 2137.86], [2803.63, 2144.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2635.86, 2235.95], [2641.2, 2232.71], [2636.82, 2225.51], [2629.7, 2229.82], [2630.0, 2230.31], [2628.87, 2231.0], [2630.16, 2233.12], [2631.08, 2232.56], [2632.94, 2235.63], [2634.92, 2234.42], [2635.86, 2235.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2838.46, 2008.78], [2838.13, 2002.26], [2825.1, 2002.92], [2825.43, 2009.45], [2838.46, 2008.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2692.54, 2004.31], [2692.08, 1997.89], [2689.89, 1998.04], [2689.8, 1996.8], [2679.82, 1997.5], [2680.4, 2005.69], [2690.51, 2004.98], [2690.47, 2004.46], [2692.54, 2004.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2940.17, 2190.76], [2940.01, 2187.81], [2938.49, 2187.9], [2938.35, 2185.31], [2933.83, 2185.57], [2933.75, 2184.12], [2928.46, 2184.42], [2928.53, 2185.64], [2923.03, 2185.95], [2923.29, 2190.47], [2924.38, 2190.42], [2924.61, 2194.57], [2938.02, 2193.81], [2937.85, 2190.9], [2940.17, 2190.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2733.54, 2058.94], [2733.34, 2052.86], [2727.79, 2053.05], [2727.99, 2059.13], [2733.54, 2058.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2758.76, 2237.33], [2758.31, 2231.09], [2756.24, 2231.25], [2756.08, 2229.08], [2745.04, 2229.89], [2745.66, 2238.29], [2758.76, 2237.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2812.25, 2015.0], [2811.85, 2011.13], [2805.19, 2011.8], [2805.59, 2015.67], [2812.25, 2015.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2835.79, 1960.44], [2835.37, 1953.17], [2833.52, 1953.28], [2833.47, 1952.48], [2820.33, 1953.25], [2820.8, 1961.33], [2835.79, 1960.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2941.96, 2281.91], [2941.6, 2274.83], [2933.1, 2275.26], [2933.04, 2273.92], [2929.97, 2274.07], [2930.1, 2276.69], [2933.53, 2276.51], [2933.83, 2282.32], [2941.96, 2281.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2849.05, 2196.06], [2848.87, 2190.81], [2845.58, 2190.92], [2845.54, 2189.73], [2836.68, 2190.02], [2836.98, 2198.79], [2846.43, 2198.48], [2846.35, 2196.15], [2849.05, 2196.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2883.94, 2131.67], [2883.76, 2127.6], [2882.28, 2127.68], [2882.22, 2126.62], [2868.58, 2127.23], [2868.97, 2135.84], [2882.33, 2135.25], [2882.17, 2131.75], [2883.94, 2131.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2927.92, 1725.89], [2919.09, 1724.22], [2916.8, 1736.34], [2925.62, 1738.01], [2927.92, 1725.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2692.62, 2036.37], [2692.42, 2030.44], [2681.24, 2030.82], [2681.44, 2036.75], [2692.62, 2036.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2736.82, 2201.02], [2730.9, 2201.09], [2730.97, 2207.76], [2736.89, 2207.7], [2736.82, 2201.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2881.9, 1775.09], [2888.93, 1776.7], [2889.05, 1776.16], [2890.58, 1776.52], [2893.16, 1765.36], [2891.71, 1765.02], [2891.97, 1763.89], [2887.25, 1762.8], [2886.88, 1764.42], [2884.49, 1763.87], [2881.9, 1775.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2889.15, 2225.0], [2888.97, 2222.27], [2887.99, 2222.33], [2887.93, 2221.4], [2875.0, 2222.23], [2875.48, 2229.78], [2888.0, 2228.98], [2887.75, 2225.09], [2889.15, 2225.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2656.63, 2204.57], [2669.34, 2203.99], [2668.96, 2193.56], [2656.25, 2194.01], [2656.63, 2204.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2837.17, 1972.34], [2836.44, 1964.43], [2823.56, 1965.61], [2824.29, 1973.52], [2837.17, 1972.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2672.42, 2252.13], [2672.21, 2248.56], [2658.62, 2249.36], [2659.03, 2256.28], [2671.02, 2255.58], [2670.82, 2252.22], [2672.42, 2252.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2741.18, 2234.31], [2740.96, 2229.35], [2733.61, 2229.67], [2733.83, 2234.62], [2741.18, 2234.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2696.87, 2218.16], [2692.04, 2218.28], [2692.29, 2227.31], [2704.14, 2226.99], [2704.03, 2222.79], [2702.2, 2222.84], [2702.1, 2219.25], [2696.9, 2219.4], [2696.87, 2218.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2832.87, 2245.37], [2848.33, 2244.64], [2848.25, 2242.24], [2850.82, 2242.05], [2850.62, 2240.02], [2841.1, 2240.38], [2832.35, 2240.72], [2832.87, 2245.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2795.48, 2199.29], [2795.04, 2193.43], [2781.3, 2194.44], [2781.81, 2201.4], [2793.12, 2200.57], [2793.04, 2199.47], [2795.48, 2199.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2878.31, 1994.29], [2877.85, 1986.79], [2875.11, 1986.96], [2875.02, 1985.48], [2865.89, 1986.05], [2866.45, 1995.03], [2878.31, 1994.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2886.2, 1868.97], [2893.06, 1835.88], [2880.01, 1833.19], [2873.14, 1866.28], [2886.2, 1868.97]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.288, "pop": 0, "jobs": 288}}, {"shape": {"outer": [[2730.48, 2248.86], [2730.27, 2242.63], [2725.84, 2242.77], [2726.05, 2249.0], [2730.48, 2248.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2625.51, 2170.49], [2620.73, 2162.87], [2617.24, 2165.01], [2616.69, 2164.04], [2614.32, 2165.49], [2614.86, 2166.27], [2613.41, 2167.09], [2618.23, 2175.04], [2625.51, 2170.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2900.27, 1841.9], [2901.06, 1838.19], [2894.01, 1836.69], [2893.21, 1840.41], [2900.27, 1841.9]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.018, "pop": 0, "jobs": 18}}, {"shape": {"outer": [[2696.88, 1876.17], [2696.25, 1869.19], [2687.88, 1869.96], [2688.51, 1876.92], [2696.88, 1876.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2668.13, 1858.51], [2675.04, 1858.16], [2674.96, 1856.52], [2681.81, 1856.16], [2680.84, 1837.34], [2667.07, 1838.03], [2668.13, 1858.51]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.174, "pop": 0, "jobs": 174}}, {"shape": {"outer": [[2734.04, 2051.26], [2733.79, 2047.66], [2727.42, 2048.1], [2727.67, 2051.7], [2734.04, 2051.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2940.77, 1579.01], [2936.7, 1577.92], [2934.95, 1584.37], [2939.02, 1585.48], [2940.77, 1579.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2843.95, 2111.84], [2843.31, 2103.68], [2831.56, 2104.6], [2831.98, 2110.01], [2834.24, 2109.84], [2834.46, 2112.58], [2843.95, 2111.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2947.82, 1823.36], [2939.58, 1821.18], [2937.06, 1830.7], [2945.31, 1832.88], [2947.82, 1823.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2704.31, 2240.03], [2703.77, 2231.58], [2694.03, 2232.21], [2694.12, 2233.56], [2690.66, 2233.78], [2691.06, 2240.14], [2694.14, 2239.94], [2694.18, 2240.68], [2704.31, 2240.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2947.99, 1752.33], [2952.23, 1734.25], [2944.87, 1732.52], [2943.87, 1736.81], [2942.86, 1736.57], [2941.92, 1740.58], [2943.1, 1740.86], [2942.16, 1744.87], [2943.71, 1745.23], [2942.35, 1751.01], [2947.99, 1752.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2911.37, 2334.75], [2910.94, 2326.76], [2904.21, 2327.12], [2904.65, 2335.11], [2911.37, 2334.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2869.34, 1961.17], [2859.36, 1961.43], [2859.54, 1968.68], [2869.51, 1968.42], [2869.34, 1961.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2800.57, 2317.66], [2799.36, 2306.82], [2791.05, 2307.74], [2792.06, 2316.86], [2792.53, 2316.8], [2792.73, 2318.53], [2800.57, 2317.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2855.74, 2333.97], [2855.21, 2326.56], [2843.86, 2327.37], [2844.39, 2334.77], [2855.74, 2333.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2943.49, 2296.18], [2943.16, 2289.45], [2938.74, 2289.68], [2938.64, 2287.71], [2933.72, 2287.95], [2933.8, 2289.59], [2927.75, 2289.9], [2928.03, 2295.67], [2934.11, 2295.36], [2934.17, 2296.63], [2943.49, 2296.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2853.03, 2278.95], [2852.67, 2274.25], [2850.34, 2274.44], [2849.84, 2267.86], [2843.85, 2268.32], [2844.72, 2279.6], [2853.03, 2278.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2743.45, 1940.5], [2743.19, 1932.93], [2739.67, 1933.05], [2739.64, 1931.99], [2730.41, 1932.31], [2730.45, 1933.36], [2725.79, 1933.52], [2726.08, 1942.14], [2737.34, 1941.76], [2737.3, 1940.71], [2743.45, 1940.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2798.47, 2176.6], [2797.92, 2166.17], [2781.96, 2167.01], [2782.51, 2177.43], [2798.47, 2176.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2939.71, 1662.04], [2939.96, 1660.75], [2942.14, 1661.15], [2945.26, 1644.33], [2937.36, 1642.86], [2936.46, 1647.77], [2934.92, 1647.47], [2932.74, 1659.21], [2935.15, 1659.65], [2934.88, 1661.15], [2939.71, 1662.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2840.94, 2044.36], [2840.77, 2036.3], [2823.7, 2036.68], [2823.83, 2042.19], [2821.16, 2042.25], [2821.21, 2044.8], [2840.94, 2044.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2669.89, 2244.29], [2669.41, 2236.11], [2657.57, 2236.81], [2658.05, 2244.99], [2669.89, 2244.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2645.14, 2171.31], [2652.4, 2166.98], [2649.08, 2161.3], [2641.76, 2165.37], [2645.14, 2171.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2743.77, 2138.85], [2754.14, 2138.55], [2753.95, 2131.85], [2751.87, 2131.92], [2751.83, 2130.37], [2743.86, 2130.59], [2743.88, 2131.41], [2739.64, 2131.53], [2739.84, 2138.36], [2743.75, 2138.25], [2743.77, 2138.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2927.47, 1604.22], [2918.92, 1602.09], [2916.46, 1611.93], [2925.01, 1614.06], [2927.47, 1604.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2904.37, 1994.41], [2903.57, 1982.96], [2894.46, 1983.59], [2895.26, 1995.04], [2904.37, 1994.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2843.06, 2125.16], [2842.53, 2115.57], [2828.67, 2116.33], [2829.19, 2125.93], [2843.06, 2125.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2930.02, 1778.42], [2922.18, 1776.99], [2920.59, 1785.73], [2928.43, 1787.16], [2930.02, 1778.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2914.01, 1760.94], [2915.43, 1754.9], [2909.22, 1753.46], [2907.92, 1759.56], [2914.01, 1760.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2892.9, 2321.96], [2892.25, 2313.13], [2877.76, 2314.19], [2878.17, 2319.79], [2880.33, 2319.63], [2880.58, 2322.87], [2892.9, 2321.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2710.35, 2027.89], [2710.1, 2023.29], [2702.76, 2023.7], [2703.01, 2028.28], [2710.35, 2027.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2932.43, 2083.64], [2931.96, 2074.73], [2920.33, 2075.34], [2920.44, 2077.45], [2913.52, 2077.82], [2913.81, 2083.27], [2920.67, 2082.9], [2920.74, 2084.25], [2932.43, 2083.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2704.09, 2204.3], [2704.04, 2199.06], [2707.68, 2199.02], [2707.66, 2195.8], [2704.05, 2195.84], [2704.05, 2195.15], [2695.42, 2195.22], [2695.49, 2204.38], [2704.09, 2204.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2702.87, 2154.58], [2702.27, 2145.78], [2689.39, 2146.67], [2689.77, 2152.31], [2690.24, 2152.28], [2690.46, 2155.43], [2702.87, 2154.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2753.67, 2114.58], [2753.13, 2108.14], [2740.07, 2109.25], [2740.27, 2111.65], [2739.12, 2111.75], [2739.67, 2118.14], [2752.76, 2117.01], [2752.57, 2114.67], [2753.67, 2114.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2943.75, 2308.03], [2943.72, 2306.61], [2946.17, 2306.55], [2946.04, 2300.82], [2943.85, 2300.87], [2943.82, 2299.68], [2935.2, 2299.9], [2935.25, 2301.53], [2932.34, 2301.62], [2932.47, 2306.85], [2935.58, 2306.76], [2935.62, 2308.24], [2943.75, 2308.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2702.71, 2251.37], [2702.07, 2242.67], [2693.93, 2243.27], [2694.05, 2245.04], [2692.29, 2245.17], [2692.66, 2250.13], [2694.85, 2249.98], [2695.0, 2251.93], [2702.71, 2251.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2904.29, 1769.0], [2904.79, 1765.4], [2898.94, 1764.36], [2898.15, 1768.9], [2895.97, 1768.51], [2894.19, 1778.65], [2902.33, 1780.09], [2904.29, 1769.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2756.21, 2176.98], [2755.83, 2170.68], [2753.67, 2170.8], [2753.61, 2169.98], [2742.41, 2170.66], [2742.92, 2179.06], [2754.01, 2178.39], [2753.93, 2177.12], [2756.21, 2176.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2797.28, 2187.89], [2796.8, 2180.75], [2783.48, 2181.64], [2783.64, 2183.99], [2785.49, 2183.87], [2785.81, 2188.65], [2797.28, 2187.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2783.98, 1973.69], [2783.72, 1969.47], [2781.59, 1969.61], [2781.5, 1968.21], [2767.76, 1969.1], [2768.03, 1973.31], [2769.3, 1973.23], [2769.5, 1976.42], [2781.94, 1975.62], [2781.83, 1973.82], [2783.98, 1973.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2893.27, 1982.41], [2892.64, 1976.24], [2886.63, 1976.87], [2887.26, 1983.02], [2893.27, 1982.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2953.58, 1793.72], [2955.75, 1780.45], [2949.94, 1779.49], [2949.37, 1783.01], [2946.07, 1782.47], [2945.16, 1787.98], [2947.28, 1788.34], [2946.59, 1792.58], [2953.58, 1793.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2699.81, 2060.5], [2699.59, 2056.04], [2696.54, 2056.19], [2696.45, 2054.25], [2683.11, 2054.93], [2683.16, 2055.95], [2681.44, 2056.04], [2681.62, 2059.51], [2683.48, 2059.42], [2683.74, 2064.49], [2696.52, 2063.85], [2696.36, 2060.68], [2699.81, 2060.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2816.94, 2241.32], [2823.29, 2241.05], [2823.04, 2234.07], [2816.65, 2234.38], [2816.94, 2241.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2811.51, 2171.65], [2811.29, 2164.98], [2804.84, 2165.19], [2805.07, 2171.86], [2811.51, 2171.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2665.6, 2173.94], [2660.19, 2164.81], [2649.19, 2171.53], [2654.65, 2180.47], [2665.6, 2173.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2782.33, 1937.98], [2782.16, 1933.49], [2780.15, 1933.57], [2780.0, 1929.82], [2767.88, 1930.29], [2767.94, 1931.8], [2765.67, 1931.89], [2765.86, 1936.59], [2768.07, 1936.51], [2768.2, 1939.75], [2780.27, 1939.27], [2780.22, 1938.07], [2782.33, 1937.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2666.1, 2156.89], [2660.53, 2147.66], [2650.1, 2154.2], [2655.63, 2163.25], [2666.1, 2156.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2945.55, 1704.0], [2948.05, 1690.63], [2942.02, 1689.51], [2941.29, 1693.4], [2938.09, 1692.8], [2937.0, 1698.62], [2939.6, 1699.1], [2938.92, 1702.76], [2945.55, 1704.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2725.47, 2055.56], [2725.1, 2050.66], [2724.44, 2050.71], [2724.32, 2049.09], [2714.99, 2049.8], [2715.93, 2062.09], [2724.1, 2061.46], [2723.66, 2055.7], [2725.47, 2055.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2788.52, 2115.36], [2788.29, 2106.95], [2777.37, 2107.26], [2777.4, 2108.32], [2775.57, 2108.37], [2775.77, 2115.71], [2788.52, 2115.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2839.14, 2019.87], [2838.69, 2014.13], [2836.34, 2014.31], [2836.09, 2011.1], [2826.64, 2011.84], [2826.79, 2013.82], [2824.99, 2013.96], [2825.27, 2017.62], [2826.91, 2017.5], [2827.16, 2020.8], [2839.14, 2019.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2814.83, 1944.35], [2814.53, 1937.74], [2808.68, 1938.01], [2808.98, 1944.61], [2814.83, 1944.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2818.64, 1990.75], [2818.39, 1986.77], [2810.82, 1987.25], [2811.08, 1991.23], [2818.64, 1990.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2886.23, 2098.34], [2885.87, 2095.05], [2880.03, 2095.69], [2880.4, 2098.98], [2886.23, 2098.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2632.17, 2166.68], [2633.97, 2165.56], [2635.38, 2167.82], [2638.72, 2165.75], [2632.3, 2155.41], [2628.91, 2157.52], [2628.32, 2156.56], [2623.19, 2159.74], [2629.86, 2170.48], [2633.23, 2168.39], [2632.17, 2166.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2698.13, 2050.72], [2697.83, 2046.68], [2695.73, 2046.84], [2695.62, 2045.5], [2682.29, 2046.47], [2682.84, 2053.87], [2695.88, 2052.91], [2695.74, 2050.88], [2698.13, 2050.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2739.88, 2154.95], [2739.77, 2150.62], [2733.15, 2150.8], [2733.28, 2155.14], [2739.88, 2154.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2657.3, 2238.33], [2656.77, 2233.18], [2649.14, 2233.97], [2649.67, 2239.11], [2657.3, 2238.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2791.89, 1899.32], [2786.75, 1895.27], [2784.44, 1898.21], [2789.59, 1902.25], [2791.89, 1899.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2810.67, 2182.03], [2810.2, 2177.18], [2804.21, 2177.76], [2804.68, 2182.61], [2810.67, 2182.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2915.85, 1783.98], [2918.07, 1773.41], [2907.54, 1770.98], [2905.22, 1781.46], [2915.85, 1783.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2701.31, 2180.69], [2701.03, 2177.09], [2700.13, 2177.16], [2699.8, 2172.92], [2687.21, 2173.89], [2687.83, 2181.74], [2701.31, 2180.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2632.91, 2177.96], [2625.0, 2182.82], [2628.93, 2189.21], [2636.83, 2184.34], [2632.91, 2177.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2893.0, 2333.83], [2892.56, 2326.26], [2878.33, 2327.09], [2878.68, 2333.09], [2881.01, 2332.96], [2881.11, 2334.52], [2893.0, 2333.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2783.92, 2058.89], [2783.32, 2050.58], [2771.64, 2051.42], [2772.24, 2059.74], [2783.92, 2058.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2697.87, 2014.18], [2697.63, 2009.35], [2695.1, 2009.48], [2695.06, 2008.68], [2680.81, 2009.36], [2680.85, 2010.15], [2679.1, 2010.24], [2679.44, 2017.14], [2695.4, 2016.37], [2695.3, 2014.31], [2697.87, 2014.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2935.06, 2132.65], [2935.0, 2131.81], [2937.42, 2131.66], [2936.96, 2124.56], [2934.87, 2124.69], [2934.82, 2123.81], [2923.32, 2124.56], [2923.48, 2126.94], [2920.58, 2127.13], [2920.95, 2132.61], [2923.46, 2132.45], [2923.52, 2133.41], [2935.06, 2132.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2778.74, 1922.87], [2778.32, 1915.16], [2764.22, 1915.95], [2764.65, 1923.65], [2778.74, 1922.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2888.9, 2309.46], [2888.32, 2301.24], [2879.4, 2301.87], [2879.45, 2302.55], [2876.95, 2302.73], [2877.48, 2310.27], [2888.9, 2309.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2879.99, 2084.81], [2879.45, 2077.39], [2866.18, 2078.36], [2866.56, 2083.59], [2868.37, 2083.47], [2868.53, 2085.64], [2879.99, 2084.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2747.89, 2034.73], [2747.4, 2026.86], [2734.66, 2027.66], [2735.16, 2035.53], [2747.89, 2034.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2899.12, 2007.15], [2899.57, 2013.59], [2905.87, 2013.16], [2905.64, 2006.71], [2899.12, 2007.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2783.14, 2000.06], [2782.74, 1991.88], [2779.05, 1992.06], [2778.98, 1990.73], [2774.5, 1990.96], [2774.57, 1992.46], [2771.02, 1992.63], [2771.08, 1993.63], [2768.48, 1993.76], [2768.83, 2000.76], [2783.14, 2000.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2891.49, 2139.37], [2891.31, 2135.47], [2885.39, 2135.75], [2885.57, 2139.64], [2891.49, 2139.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2937.74, 1883.3], [2942.99, 1859.3], [2944.18, 1853.9], [2932.38, 1851.35], [2926.04, 1880.38], [2937.74, 1883.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.288, "pop": 144, "jobs": 0}}, {"shape": {"outer": [[2697.95, 2119.83], [2697.75, 2115.24], [2695.16, 2115.35], [2694.99, 2111.23], [2686.14, 2111.6], [2686.36, 2116.72], [2688.54, 2116.63], [2688.66, 2119.41], [2691.19, 2119.31], [2691.23, 2120.12], [2697.95, 2119.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2719.21, 2164.01], [2718.84, 2157.55], [2712.48, 2157.92], [2712.85, 2164.38], [2719.21, 2164.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2884.93, 2242.6], [2884.63, 2238.0], [2886.14, 2237.9], [2885.94, 2234.86], [2884.56, 2234.95], [2884.5, 2234.09], [2875.92, 2234.65], [2875.98, 2235.49], [2872.91, 2235.68], [2873.38, 2242.76], [2875.83, 2242.6], [2875.87, 2243.2], [2884.93, 2242.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2935.39, 1665.16], [2930.16, 1663.95], [2928.73, 1670.14], [2933.96, 1671.35], [2935.39, 1665.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2794.67, 1978.88], [2794.36, 1975.58], [2788.0, 1976.17], [2788.31, 1979.47], [2794.67, 1978.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2801.78, 1991.77], [2801.4, 1986.59], [2795.86, 1987.0], [2796.24, 1992.18], [2801.78, 1991.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2784.27, 1950.99], [2783.77, 1942.97], [2781.22, 1943.13], [2781.12, 1941.48], [2767.9, 1942.29], [2768.02, 1944.26], [2765.8, 1944.4], [2766.12, 1949.72], [2768.01, 1949.6], [2768.16, 1951.99], [2784.27, 1950.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2900.1, 2196.82], [2891.55, 2197.03], [2891.67, 2201.9], [2900.22, 2201.7], [2900.1, 2196.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2846.21, 2209.67], [2845.74, 2201.59], [2836.52, 2202.13], [2836.99, 2210.2], [2846.21, 2209.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2717.47, 1941.32], [2716.87, 1934.51], [2708.96, 1935.21], [2709.56, 1942.02], [2717.47, 1941.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2793.52, 2149.39], [2793.04, 2140.85], [2784.18, 2141.4], [2784.24, 2142.65], [2780.01, 2142.97], [2780.46, 2150.17], [2793.52, 2149.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2915.02, 1724.99], [2906.84, 1723.05], [2903.68, 1736.38], [2911.86, 1738.31], [2915.02, 1724.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2896.21, 1750.27], [2889.35, 1748.47], [2887.74, 1755.99], [2894.64, 1757.7], [2896.21, 1750.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2920.73, 2175.4], [2920.4, 2171.28], [2913.85, 2171.81], [2913.93, 2172.77], [2911.91, 2172.93], [2912.11, 2175.47], [2914.17, 2175.31], [2914.22, 2175.92], [2920.73, 2175.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2909.29, 2274.52], [2908.91, 2266.64], [2903.47, 2266.9], [2903.35, 2264.49], [2897.12, 2264.8], [2897.22, 2266.93], [2893.68, 2267.11], [2894.07, 2275.26], [2909.29, 2274.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2915.83, 2127.89], [2915.52, 2121.96], [2907.52, 2122.38], [2907.63, 2124.49], [2905.05, 2124.62], [2905.15, 2126.59], [2907.71, 2126.47], [2907.81, 2128.31], [2915.83, 2127.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2916.98, 2139.79], [2916.72, 2134.24], [2910.88, 2134.51], [2911.13, 2140.06], [2916.98, 2139.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2843.58, 2100.44], [2843.48, 2092.58], [2830.33, 2092.76], [2830.34, 2093.39], [2828.86, 2093.41], [2828.91, 2096.89], [2827.48, 2096.9], [2827.53, 2100.66], [2843.58, 2100.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2921.33, 2342.91], [2920.82, 2335.9], [2913.89, 2336.42], [2914.4, 2343.42], [2921.33, 2342.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2793.87, 2102.24], [2793.6, 2097.18], [2791.07, 2097.3], [2790.98, 2095.54], [2776.1, 2096.32], [2776.51, 2103.98], [2792.02, 2103.15], [2791.97, 2102.33], [2793.87, 2102.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2812.33, 2035.17], [2811.97, 2028.9], [2805.75, 2029.25], [2806.11, 2035.52], [2812.33, 2035.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2894.4, 1824.08], [2898.35, 1806.54], [2889.68, 1804.6], [2889.01, 1807.54], [2887.92, 1807.29], [2886.11, 1815.35], [2887.53, 1815.66], [2886.64, 1819.59], [2887.36, 1819.75], [2887.04, 1821.17], [2890.61, 1821.97], [2890.34, 1823.17], [2894.4, 1824.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2714.14, 2062.45], [2713.94, 2056.52], [2707.79, 2056.72], [2707.99, 2062.65], [2714.14, 2062.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2878.54, 2018.14], [2877.88, 2009.56], [2864.38, 2010.59], [2865.03, 2019.17], [2878.54, 2018.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2721.81, 2027.2], [2721.03, 2019.73], [2713.63, 2020.51], [2714.4, 2027.97], [2721.81, 2027.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2934.37, 2107.75], [2933.89, 2101.07], [2928.25, 2101.48], [2928.13, 2099.75], [2918.33, 2100.47], [2918.94, 2108.87], [2934.37, 2107.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2879.27, 2096.92], [2878.88, 2091.9], [2877.31, 2092.02], [2877.06, 2088.8], [2866.48, 2089.64], [2866.89, 2094.87], [2869.15, 2094.68], [2869.39, 2097.7], [2879.27, 2096.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2854.33, 2320.67], [2853.94, 2314.04], [2842.93, 2314.68], [2843.32, 2321.31], [2854.33, 2320.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2664.85, 2144.61], [2660.42, 2137.09], [2650.26, 2143.08], [2654.69, 2150.61], [2664.85, 2144.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2704.43, 2165.63], [2703.74, 2157.91], [2700.97, 2158.16], [2700.89, 2157.3], [2689.36, 2158.32], [2690.21, 2167.91], [2701.32, 2166.92], [2701.23, 2165.92], [2704.43, 2165.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2718.69, 1983.5], [2718.33, 1979.49], [2711.52, 1980.1], [2711.88, 1984.1], [2718.69, 1983.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2627.56, 2192.75], [2620.28, 2181.44], [2614.44, 2185.19], [2621.73, 2196.5], [2627.56, 2192.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2888.71, 2298.2], [2888.46, 2295.05], [2886.55, 2295.2], [2885.95, 2287.71], [2888.59, 2287.5], [2888.33, 2284.23], [2878.95, 2284.97], [2879.31, 2289.64], [2877.39, 2289.8], [2877.57, 2292.07], [2879.3, 2291.93], [2879.51, 2294.63], [2881.91, 2294.44], [2882.25, 2298.72], [2888.71, 2298.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2809.96, 1913.36], [2803.17, 1924.62], [2813.13, 1930.6], [2819.66, 1919.38], [2809.96, 1913.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2743.03, 1989.53], [2742.56, 1981.15], [2732.6, 1981.72], [2733.07, 1990.08], [2743.03, 1989.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2839.64, 2283.34], [2839.23, 2271.0], [2838.53, 2271.02], [2838.43, 2268.01], [2831.48, 2268.24], [2832.0, 2283.6], [2839.64, 2283.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2920.25, 2169.86], [2919.76, 2164.38], [2914.29, 2164.87], [2914.78, 2170.35], [2920.25, 2169.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2943.48, 1755.06], [2937.47, 1753.85], [2936.28, 1759.79], [2942.29, 1760.99], [2943.48, 1755.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2931.45, 1640.45], [2924.86, 1638.83], [2921.91, 1650.91], [2928.48, 1652.51], [2931.45, 1640.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2900.34, 2109.34], [2899.34, 2099.44], [2888.88, 2100.5], [2889.04, 2102.14], [2887.15, 2102.33], [2887.82, 2108.99], [2889.3, 2108.84], [2889.46, 2110.44], [2900.34, 2109.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2919.09, 2043.73], [2918.79, 2041.17], [2910.05, 2042.18], [2910.87, 2049.33], [2916.62, 2048.67], [2916.09, 2044.08], [2919.09, 2043.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2799.42, 2004.08], [2799.02, 1999.91], [2792.89, 2000.49], [2793.28, 2004.67], [2799.42, 2004.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2837.89, 2029.48], [2837.67, 2025.16], [2835.04, 2025.29], [2834.91, 2022.77], [2821.69, 2023.43], [2822.17, 2033.2], [2836.04, 2032.51], [2835.89, 2029.58], [2837.89, 2029.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2894.76, 1995.07], [2889.15, 1995.18], [2889.26, 2000.61], [2894.87, 2000.51], [2894.76, 1995.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2902.39, 2229.17], [2902.38, 2228.18], [2899.71, 2228.22], [2899.72, 2229.17], [2896.64, 2229.22], [2896.82, 2241.37], [2905.31, 2241.24], [2905.13, 2229.13], [2902.39, 2229.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2817.1, 2278.98], [2816.38, 2268.19], [2811.48, 2268.52], [2811.55, 2269.55], [2808.04, 2269.78], [2808.7, 2279.54], [2817.1, 2278.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2784.45, 2030.13], [2784.11, 2026.31], [2781.64, 2026.52], [2781.55, 2025.56], [2770.76, 2026.52], [2771.03, 2029.49], [2772.41, 2029.37], [2772.78, 2033.52], [2782.29, 2032.67], [2782.08, 2030.33], [2784.45, 2030.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2781.59, 2007.04], [2781.31, 2003.19], [2768.55, 2004.11], [2769.14, 2012.31], [2780.97, 2011.47], [2780.66, 2007.11], [2781.59, 2007.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2692.68, 2026.92], [2692.34, 2023.33], [2693.84, 2023.18], [2693.53, 2019.95], [2692.74, 2020.02], [2692.63, 2018.72], [2681.55, 2019.77], [2681.61, 2020.5], [2679.16, 2020.74], [2679.76, 2027.01], [2681.86, 2026.81], [2681.97, 2027.94], [2692.68, 2026.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2919.09, 1636.59], [2910.25, 1634.99], [2907.7, 1649.1], [2916.54, 1650.7], [2919.09, 1636.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2692.26, 1978.79], [2691.7, 1971.23], [2679.26, 1972.14], [2679.33, 1972.91], [2676.98, 1973.09], [2677.43, 1979.2], [2679.65, 1979.03], [2679.7, 1979.74], [2688.16, 1979.11], [2692.26, 1978.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2804.27, 2159.16], [2803.73, 2152.47], [2794.24, 2153.25], [2794.35, 2154.6], [2787.01, 2155.2], [2787.66, 2163.14], [2795.5, 2162.51], [2795.29, 2159.88], [2804.27, 2159.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2849.95, 2233.71], [2849.72, 2230.44], [2848.03, 2230.56], [2847.77, 2226.57], [2838.15, 2227.22], [2838.63, 2234.48], [2849.95, 2233.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2749.79, 2059.67], [2749.23, 2051.48], [2735.28, 2052.43], [2735.57, 2056.72], [2736.41, 2056.67], [2736.68, 2060.56], [2749.79, 2059.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2800.8, 2236.95], [2800.45, 2232.3], [2798.57, 2232.44], [2798.29, 2228.79], [2787.74, 2229.59], [2787.85, 2231.01], [2785.26, 2231.2], [2785.73, 2237.33], [2788.24, 2237.14], [2788.29, 2237.9], [2800.8, 2236.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2751.94, 2084.54], [2735.63, 2085.01], [2735.76, 2089.51], [2737.37, 2089.46], [2737.49, 2093.72], [2752.2, 2093.31], [2751.94, 2084.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2897.45, 2128.43], [2897.03, 2123.05], [2890.36, 2123.58], [2890.79, 2128.96], [2897.45, 2128.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2880.11, 2052.67], [2879.83, 2045.33], [2863.83, 2045.96], [2864.12, 2053.3], [2880.11, 2052.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2700.63, 2216.29], [2700.11, 2208.86], [2691.79, 2209.44], [2692.31, 2216.88], [2700.63, 2216.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2841.29, 2137.31], [2841.25, 2135.96], [2844.39, 2135.85], [2844.19, 2129.7], [2840.06, 2129.84], [2840.02, 2128.64], [2833.13, 2128.88], [2833.17, 2130.15], [2829.94, 2130.26], [2830.13, 2135.66], [2832.37, 2135.58], [2832.41, 2136.63], [2835.79, 2136.52], [2835.81, 2137.49], [2841.29, 2137.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2744.34, 2001.64], [2743.98, 1993.58], [2727.9, 1994.31], [2728.27, 2002.37], [2744.34, 2001.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2889.93, 2344.96], [2889.87, 2344.33], [2893.29, 2344.03], [2893.04, 2341.16], [2894.96, 2341.0], [2894.69, 2337.87], [2892.5, 2338.06], [2892.44, 2337.42], [2879.41, 2338.56], [2879.89, 2343.96], [2881.8, 2343.8], [2881.91, 2345.0], [2885.56, 2344.67], [2885.62, 2345.34], [2889.93, 2344.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2946.06, 2341.31], [2945.54, 2334.91], [2938.12, 2335.51], [2938.65, 2341.91], [2946.06, 2341.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2700.72, 2130.69], [2700.37, 2122.74], [2686.35, 2123.41], [2686.65, 2131.36], [2700.72, 2130.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2810.83, 2006.11], [2810.33, 1999.39], [2804.64, 1999.8], [2805.14, 2006.53], [2810.83, 2006.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2915.45, 2017.62], [2927.86, 2017.07], [2927.63, 2009.41], [2915.08, 2009.88], [2915.45, 2017.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2914.46, 1666.84], [2907.76, 1665.34], [2906.21, 1672.33], [2912.9, 1673.82], [2914.46, 1666.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2936.81, 2228.11], [2940.65, 2227.83], [2940.23, 2222.06], [2935.39, 2222.41], [2935.26, 2220.63], [2929.92, 2221.03], [2930.11, 2223.58], [2928.0, 2223.73], [2928.07, 2224.62], [2926.3, 2224.75], [2926.58, 2228.59], [2932.42, 2228.16], [2932.53, 2229.66], [2936.9, 2229.33], [2936.81, 2228.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2757.46, 2201.37], [2756.98, 2193.07], [2741.17, 2193.98], [2741.27, 2195.75], [2739.6, 2195.85], [2739.94, 2201.64], [2741.41, 2201.56], [2741.45, 2202.3], [2757.46, 2201.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2804.43, 2244.34], [2803.92, 2238.19], [2798.54, 2238.65], [2799.06, 2244.78], [2804.43, 2244.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2816.32, 2120.59], [2816.07, 2115.11], [2809.92, 2115.39], [2810.17, 2120.87], [2816.32, 2120.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2937.11, 2167.06], [2936.54, 2158.72], [2925.75, 2159.47], [2926.32, 2167.8], [2937.11, 2167.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2683.06, 1880.17], [2682.5, 1874.5], [2680.87, 1874.66], [2680.32, 1869.02], [2668.63, 1870.19], [2669.75, 1881.49], [2683.06, 1880.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2922.33, 1687.93], [2913.48, 1686.63], [2912.08, 1696.19], [2920.93, 1697.49], [2922.33, 1687.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2669.17, 2216.25], [2668.77, 2205.82], [2656.53, 2206.28], [2656.93, 2216.72], [2669.17, 2216.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2906.56, 2084.51], [2906.18, 2078.14], [2900.55, 2078.47], [2900.94, 2084.85], [2906.56, 2084.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2758.02, 2214.9], [2757.53, 2205.52], [2741.43, 2206.36], [2741.59, 2209.44], [2739.87, 2209.54], [2740.1, 2213.92], [2741.8, 2213.83], [2741.91, 2215.74], [2758.02, 2214.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2819.53, 2303.81], [2819.24, 2298.77], [2810.21, 2299.29], [2810.49, 2304.32], [2819.53, 2303.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2806.3, 2195.26], [2805.94, 2188.97], [2800.1, 2189.3], [2800.46, 2195.59], [2806.3, 2195.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2902.12, 2155.61], [2901.51, 2147.46], [2894.25, 2147.99], [2894.86, 2156.16], [2902.12, 2155.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2948.75, 2350.13], [2948.39, 2344.38], [2938.58, 2344.99], [2938.94, 2350.75], [2948.75, 2350.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2937.91, 2204.11], [2937.18, 2197.62], [2927.82, 2198.68], [2928.57, 2205.17], [2937.91, 2204.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2912.58, 2153.98], [2912.21, 2147.61], [2905.92, 2147.97], [2906.29, 2154.35], [2912.58, 2153.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2737.16, 2130.83], [2736.76, 2126.23], [2728.75, 2126.96], [2729.16, 2131.55], [2737.16, 2130.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2751.49, 2286.93], [2750.3, 2272.44], [2741.29, 2273.17], [2742.48, 2287.66], [2751.49, 2286.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2841.33, 2054.61], [2841.05, 2049.78], [2838.85, 2049.9], [2838.69, 2047.13], [2828.97, 2047.69], [2829.5, 2056.9], [2838.97, 2056.36], [2838.89, 2054.76], [2841.33, 2054.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2939.05, 1734.95], [2939.63, 1731.88], [2932.36, 1730.54], [2931.75, 1733.82], [2930.22, 1733.53], [2929.37, 1738.12], [2930.95, 1738.41], [2930.34, 1741.71], [2937.85, 1743.09], [2939.35, 1735.01], [2939.05, 1734.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2909.55, 2346.8], [2909.33, 2342.64], [2902.72, 2342.99], [2902.95, 2347.15], [2909.55, 2346.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2872.53, 1981.86], [2872.12, 1975.18], [2869.76, 1975.33], [2869.56, 1972.13], [2860.33, 1972.7], [2860.51, 1975.57], [2858.36, 1975.7], [2858.66, 1980.66], [2860.46, 1980.55], [2860.59, 1982.6], [2872.53, 1981.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2726.4, 2285.48], [2725.58, 2273.61], [2718.14, 2274.12], [2718.76, 2283.11], [2713.98, 2283.43], [2714.39, 2289.39], [2719.81, 2289.01], [2719.6, 2285.95], [2726.4, 2285.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2743.94, 2013.68], [2743.54, 2005.74], [2729.75, 2006.44], [2730.15, 2014.36], [2743.94, 2013.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2931.95, 1841.14], [2926.59, 1839.88], [2925.33, 1845.27], [2930.69, 1846.53], [2931.95, 1841.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2926.25, 2269.94], [2926.02, 2262.99], [2918.09, 2263.26], [2918.33, 2270.21], [2926.25, 2269.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2741.77, 1882.74], [2740.37, 1853.78], [2713.33, 1847.26], [2704.56, 1848.38], [2707.71, 1884.34], [2731.81, 1883.21], [2741.77, 1882.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.938, "pop": 469, "jobs": 0}}, {"shape": {"outer": [[2886.28, 2195.71], [2885.72, 2187.45], [2870.22, 2188.5], [2870.77, 2196.75], [2886.28, 2195.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2652.84, 2251.01], [2652.25, 2245.5], [2646.19, 2246.15], [2646.79, 2251.67], [2652.84, 2251.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2917.01, 1830.19], [2917.64, 1826.74], [2918.65, 1826.93], [2919.48, 1822.48], [2920.85, 1822.73], [2921.79, 1817.64], [2920.89, 1817.47], [2921.18, 1815.91], [2919.43, 1815.58], [2919.81, 1813.52], [2915.7, 1812.76], [2915.33, 1814.78], [2913.61, 1814.46], [2912.53, 1820.34], [2910.83, 1820.02], [2909.22, 1828.75], [2917.01, 1830.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2906.79, 2050.92], [2906.01, 2039.98], [2898.69, 2040.49], [2899.47, 2051.44], [2906.79, 2050.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2742.58, 1952.77], [2742.23, 1946.24], [2740.18, 1946.35], [2740.14, 1945.5], [2736.57, 1945.68], [2736.51, 1944.64], [2730.53, 1944.95], [2730.57, 1945.52], [2726.43, 1945.74], [2726.84, 1953.6], [2742.58, 1952.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2918.58, 2306.62], [2918.03, 2298.64], [2911.79, 2299.07], [2912.34, 2307.06], [2918.58, 2306.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2938.07, 2143.96], [2937.24, 2135.32], [2923.85, 2136.61], [2924.67, 2145.24], [2938.07, 2143.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2742.13, 1977.04], [2741.34, 1968.68], [2732.58, 1969.49], [2733.37, 1977.86], [2742.13, 1977.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2902.38, 2208.31], [2888.8, 2208.54], [2888.94, 2216.86], [2902.52, 2216.64], [2902.38, 2208.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2904.84, 1829.88], [2909.07, 1810.43], [2905.5, 1809.66], [2905.03, 1811.83], [2899.2, 1810.57], [2896.2, 1824.41], [2899.53, 1825.13], [2898.79, 1828.57], [2904.84, 1829.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2699.3, 2107.78], [2698.7, 2099.37], [2686.72, 2100.22], [2687.32, 2108.64], [2699.3, 2107.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2701.18, 1998.39], [2700.79, 1993.08], [2694.95, 1993.51], [2695.33, 1998.81], [2701.18, 1998.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2646.81, 2198.06], [2653.02, 2197.83], [2652.88, 2193.77], [2646.67, 2194.0], [2646.81, 2198.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2938.65, 2214.67], [2938.13, 2206.86], [2928.77, 2207.47], [2929.28, 2215.28], [2938.65, 2214.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2704.97, 2191.86], [2704.36, 2181.93], [2692.07, 2182.58], [2692.68, 2192.6], [2704.97, 2191.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2670.75, 2189.28], [2670.49, 2184.04], [2654.84, 2184.81], [2655.26, 2193.35], [2670.02, 2192.62], [2669.86, 2189.33], [2670.75, 2189.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2716.34, 2094.36], [2716.12, 2087.77], [2709.75, 2087.98], [2709.97, 2094.59], [2716.34, 2094.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2889.45, 2146.53], [2889.19, 2140.63], [2883.74, 2140.87], [2883.71, 2140.14], [2880.46, 2140.28], [2880.37, 2138.03], [2871.56, 2138.41], [2871.94, 2147.3], [2889.45, 2146.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2755.59, 2151.5], [2755.08, 2142.79], [2741.72, 2143.58], [2741.89, 2146.48], [2740.33, 2146.57], [2740.67, 2152.37], [2755.59, 2151.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2786.56, 2090.27], [2786.08, 2083.85], [2785.14, 2083.92], [2784.97, 2081.7], [2774.9, 2082.45], [2775.54, 2091.1], [2786.56, 2090.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2753.08, 2126.09], [2752.75, 2121.77], [2751.79, 2121.84], [2751.54, 2118.5], [2741.02, 2119.3], [2741.07, 2119.95], [2737.1, 2120.25], [2737.68, 2127.92], [2747.73, 2127.16], [2747.68, 2126.49], [2753.08, 2126.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2711.99, 2125.03], [2717.44, 2124.78], [2717.2, 2119.4], [2711.75, 2119.64], [2711.99, 2125.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2889.5, 2272.03], [2889.02, 2266.22], [2880.02, 2266.96], [2880.5, 2272.77], [2889.5, 2272.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2794.0, 2210.69], [2793.61, 2206.33], [2791.61, 2206.51], [2791.44, 2204.72], [2782.06, 2205.58], [2782.12, 2206.2], [2779.53, 2206.42], [2779.84, 2209.88], [2782.11, 2209.67], [2782.44, 2213.24], [2791.72, 2212.41], [2791.58, 2210.91], [2794.0, 2210.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2921.63, 2330.28], [2920.96, 2323.41], [2913.33, 2324.15], [2914.0, 2331.03], [2921.63, 2330.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2854.08, 2299.36], [2853.4, 2292.87], [2850.78, 2293.14], [2850.56, 2291.04], [2838.21, 2292.36], [2838.73, 2297.21], [2842.15, 2296.85], [2842.54, 2300.59], [2854.08, 2299.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2937.44, 2180.99], [2937.37, 2179.65], [2938.81, 2179.58], [2938.56, 2174.43], [2936.99, 2174.5], [2936.89, 2172.45], [2927.4, 2172.93], [2927.47, 2174.43], [2923.7, 2174.61], [2924.0, 2180.62], [2928.01, 2180.42], [2928.07, 2181.47], [2937.44, 2180.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2947.6, 2332.78], [2947.33, 2329.4], [2944.5, 2329.63], [2944.42, 2328.69], [2945.4, 2328.61], [2945.03, 2324.11], [2932.6, 2325.12], [2933.32, 2333.94], [2947.6, 2332.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2794.12, 1969.43], [2793.68, 1963.14], [2787.54, 1963.57], [2787.98, 1969.86], [2794.12, 1969.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2739.44, 2171.44], [2738.96, 2164.1], [2731.92, 2164.57], [2732.16, 2168.2], [2732.83, 2168.16], [2733.07, 2171.85], [2739.44, 2171.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2851.4, 2303.17], [2842.91, 2303.31], [2843.03, 2310.12], [2851.52, 2309.97], [2851.4, 2303.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2757.01, 2248.0], [2756.32, 2239.45], [2751.06, 2239.97], [2751.24, 2238.57], [2749.37, 2238.52], [2749.63, 2248.09], [2749.69, 2250.21], [2751.74, 2249.99], [2751.83, 2247.98], [2757.01, 2248.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2946.0, 1566.53], [2942.71, 1565.89], [2940.82, 1575.66], [2949.49, 1577.32], [2951.11, 1568.94], [2945.74, 1567.9], [2946.0, 1566.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2930.22, 2028.37], [2929.74, 2021.53], [2924.85, 2021.88], [2924.78, 2020.86], [2922.23, 2021.03], [2922.04, 2018.28], [2915.97, 2018.7], [2916.72, 2029.32], [2930.22, 2028.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2709.01, 1963.25], [2708.31, 1956.18], [2701.35, 1956.86], [2702.05, 1963.94], [2709.01, 1963.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2683.54, 1868.59], [2692.16, 1867.96], [2691.03, 1840.43], [2681.47, 1837.96], [2683.54, 1868.59]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.168, "pop": 0, "jobs": 168}}, {"shape": {"outer": [[2942.72, 2237.63], [2942.48, 2231.96], [2940.06, 2232.06], [2939.99, 2230.54], [2925.09, 2231.18], [2925.44, 2239.51], [2940.96, 2238.83], [2940.92, 2237.71], [2942.72, 2237.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2895.81, 1734.98], [2896.24, 1732.85], [2900.06, 1733.62], [2902.45, 1721.74], [2901.61, 1721.56], [2901.87, 1720.27], [2893.39, 1718.56], [2890.66, 1732.19], [2892.52, 1732.56], [2892.18, 1734.26], [2895.81, 1734.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2908.81, 1684.15], [2900.47, 1682.56], [2898.73, 1691.72], [2907.06, 1693.31], [2908.81, 1684.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2885.71, 2025.25], [2885.36, 2020.13], [2878.27, 2020.6], [2878.63, 2025.74], [2885.71, 2025.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2704.64, 1985.36], [2704.26, 1980.71], [2698.11, 1981.22], [2698.5, 1985.86], [2704.64, 1985.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2805.6, 2280.99], [2804.53, 2269.26], [2795.83, 2270.05], [2796.03, 2272.31], [2795.12, 2272.4], [2796.23, 2284.46], [2803.51, 2283.79], [2803.26, 2281.21], [2805.6, 2280.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2930.0, 2053.55], [2929.53, 2043.09], [2923.8, 2043.33], [2924.06, 2049.13], [2922.46, 2049.2], [2922.66, 2053.88], [2930.0, 2053.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2725.99, 1964.43], [2742.44, 1963.41], [2742.01, 1956.52], [2739.19, 1956.61], [2739.18, 1955.74], [2725.5, 1956.58], [2725.99, 1964.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2709.2, 1973.72], [2709.03, 1968.32], [2703.55, 1968.51], [2703.73, 1973.9], [2709.2, 1973.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2671.19, 2231.25], [2670.91, 2225.67], [2669.2, 2225.77], [2669.17, 2225.17], [2656.06, 2225.84], [2656.41, 2232.95], [2669.34, 2232.29], [2669.3, 2231.34], [2671.19, 2231.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2844.38, 2147.23], [2843.96, 2142.12], [2841.62, 2142.32], [2841.42, 2139.97], [2831.57, 2140.79], [2832.34, 2149.93], [2841.92, 2149.13], [2841.78, 2147.45], [2844.38, 2147.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2804.09, 2023.74], [2803.83, 2019.18], [2796.86, 2019.56], [2797.12, 2024.12], [2804.09, 2023.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2690.86, 1968.47], [2690.78, 1965.62], [2693.24, 1965.56], [2693.13, 1961.8], [2686.43, 1961.98], [2686.4, 1960.9], [2681.52, 1961.03], [2681.54, 1961.89], [2678.52, 1961.97], [2678.71, 1968.81], [2690.86, 1968.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2923.05, 2038.27], [2922.46, 2029.94], [2911.1, 2030.73], [2911.68, 2039.06], [2923.05, 2038.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2782.51, 2048.05], [2782.21, 2040.86], [2772.68, 2041.25], [2772.98, 2048.45], [2782.51, 2048.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2825.07, 2282.13], [2824.97, 2279.56], [2828.98, 2279.39], [2828.77, 2274.23], [2827.2, 2274.3], [2826.99, 2269.19], [2819.73, 2269.48], [2820.15, 2279.79], [2821.06, 2279.75], [2821.16, 2282.28], [2825.07, 2282.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2835.42, 1947.35], [2834.97, 1939.81], [2833.06, 1939.93], [2832.97, 1938.46], [2819.27, 1939.29], [2819.87, 1949.2], [2833.88, 1948.35], [2833.83, 1947.45], [2835.42, 1947.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2942.76, 2270.08], [2942.15, 2261.62], [2929.26, 2262.55], [2929.87, 2271.01], [2942.76, 2270.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2949.62, 1666.81], [2942.94, 1665.48], [2941.54, 1672.49], [2948.22, 1673.82], [2949.62, 1666.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2685.84, 1891.35], [2685.07, 1883.38], [2673.94, 1884.46], [2674.48, 1890.04], [2675.49, 1889.95], [2675.72, 1892.33], [2685.84, 1891.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2755.8, 2164.67], [2755.25, 2155.81], [2738.1, 2156.87], [2738.46, 2162.7], [2742.28, 2162.47], [2742.46, 2165.48], [2755.8, 2164.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2709.41, 2039.93], [2708.81, 2032.49], [2703.31, 2032.93], [2703.48, 2035.02], [2699.39, 2035.34], [2699.82, 2040.7], [2709.41, 2039.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2782.79, 1962.83], [2782.22, 1954.91], [2768.44, 1955.89], [2769.01, 1963.83], [2782.79, 1962.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2883.99, 2183.24], [2883.59, 2176.2], [2870.18, 2176.95], [2870.63, 2184.84], [2881.71, 2184.22], [2881.66, 2183.37], [2883.99, 2183.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2934.97, 2116.41], [2934.49, 2109.1], [2917.93, 2110.17], [2918.37, 2116.92], [2920.86, 2116.76], [2921.02, 2119.15], [2932.45, 2118.39], [2932.33, 2116.58], [2934.97, 2116.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2838.34, 1995.8], [2838.04, 1991.07], [2835.32, 1991.23], [2835.19, 1988.98], [2824.76, 1989.63], [2825.25, 1997.59], [2835.96, 1996.93], [2835.9, 1995.95], [2838.34, 1995.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2943.95, 1778.63], [2936.21, 1777.03], [2935.83, 1778.84], [2934.04, 1778.47], [2931.92, 1788.71], [2941.46, 1790.68], [2943.95, 1778.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2701.69, 2093.73], [2701.45, 2089.68], [2698.4, 2089.85], [2698.3, 2088.08], [2686.07, 2088.79], [2686.55, 2096.88], [2698.61, 2096.17], [2698.48, 2093.92], [2701.69, 2093.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2888.72, 2036.13], [2888.49, 2032.33], [2882.15, 2032.71], [2882.38, 2036.5], [2888.72, 2036.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2757.05, 2180.1], [2742.94, 2180.35], [2743.08, 2188.36], [2757.19, 2188.11], [2757.05, 2180.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2882.28, 2119.09], [2882.05, 2114.46], [2880.01, 2114.56], [2879.92, 2112.81], [2865.8, 2113.5], [2866.26, 2122.88], [2880.95, 2122.16], [2880.8, 2119.16], [2882.28, 2119.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2744.86, 2022.6], [2744.7, 2020.5], [2746.66, 2020.35], [2746.38, 2016.68], [2744.14, 2016.85], [2744.02, 2015.17], [2734.28, 2015.91], [2734.35, 2016.72], [2732.92, 2016.83], [2733.23, 2020.93], [2734.03, 2020.88], [2734.22, 2023.41], [2744.86, 2022.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2875.5, 2006.01], [2875.03, 1997.3], [2862.59, 1997.96], [2862.65, 1999.18], [2861.65, 1999.23], [2861.82, 2002.38], [2862.99, 2002.33], [2863.22, 2006.68], [2875.5, 2006.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2881.26, 2208.63], [2881.21, 2207.91], [2885.78, 2207.57], [2885.22, 2199.87], [2871.96, 2200.84], [2872.31, 2205.55], [2873.51, 2205.46], [2873.74, 2208.56], [2877.29, 2208.31], [2877.34, 2208.92], [2881.26, 2208.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2922.05, 2003.51], [2921.71, 1997.54], [2918.47, 1997.72], [2918.35, 1995.5], [2914.7, 1995.71], [2914.56, 1993.27], [2908.58, 1993.6], [2909.19, 2004.23], [2922.05, 2003.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2846.7, 2172.91], [2846.14, 2165.68], [2844.57, 2165.8], [2844.47, 2164.6], [2831.63, 2165.6], [2832.35, 2174.85], [2844.33, 2173.92], [2844.27, 2173.1], [2846.7, 2172.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2959.91, 1826.32], [2950.71, 1824.3], [2948.39, 1834.86], [2957.59, 1836.87], [2959.91, 1826.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2792.33, 2281.43], [2791.21, 2271.0], [2784.14, 2271.77], [2785.27, 2282.19], [2792.33, 2281.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2934.57, 2156.09], [2933.95, 2147.91], [2921.52, 2148.85], [2922.14, 2157.04], [2934.57, 2156.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2937.58, 1615.94], [2939.59, 1602.42], [2934.13, 1601.62], [2933.94, 1602.92], [2931.97, 1602.63], [2930.16, 1614.83], [2937.58, 1615.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2814.77, 2054.53], [2814.39, 2047.71], [2806.68, 2048.14], [2807.06, 2054.96], [2814.77, 2054.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2776.49, 1914.27], [2775.85, 1906.15], [2766.04, 1906.94], [2766.15, 1908.36], [2764.23, 1908.51], [2764.61, 1913.28], [2766.18, 1913.16], [2766.34, 1915.09], [2776.49, 1914.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2693.74, 1941.78], [2693.39, 1936.77], [2690.85, 1936.94], [2690.68, 1934.69], [2676.47, 1935.69], [2676.6, 1937.57], [2675.84, 1937.63], [2676.31, 1944.3], [2691.44, 1943.23], [2691.34, 1941.95], [2693.74, 1941.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2722.74, 2039.18], [2722.09, 2032.83], [2714.47, 2033.61], [2715.12, 2039.96], [2722.74, 2039.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2797.56, 2247.88], [2796.9, 2239.41], [2786.65, 2240.22], [2786.9, 2243.38], [2783.75, 2243.63], [2784.16, 2248.92], [2797.56, 2247.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2931.84, 1827.41], [2933.52, 1819.6], [2927.33, 1818.27], [2926.7, 1821.23], [2924.9, 1820.85], [2922.93, 1830.02], [2931.38, 1831.83], [2932.31, 1827.51], [2931.84, 1827.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2633.62, 2212.16], [2630.71, 2208.02], [2620.62, 2215.07], [2627.41, 2224.77], [2633.72, 2220.35], [2629.84, 2214.81], [2633.62, 2212.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2937.74, 1883.3], [2947.66, 1885.98], [2951.76, 1867.28], [2948.0, 1866.47], [2949.27, 1860.66], [2942.99, 1859.3], [2937.74, 1883.3]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.149, "pop": 0, "jobs": 149}}, {"shape": {"outer": [[2784.83, 2020.95], [2784.38, 2014.12], [2780.55, 2014.37], [2780.44, 2012.53], [2775.15, 2012.87], [2775.25, 2014.4], [2772.36, 2014.58], [2772.84, 2022.1], [2782.36, 2021.48], [2782.34, 2021.11], [2784.83, 2020.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2899.39, 2085.43], [2898.94, 2079.11], [2892.79, 2079.55], [2893.24, 2085.86], [2899.39, 2085.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2877.8, 2030.75], [2877.45, 2026.51], [2874.2, 2026.77], [2873.93, 2023.25], [2861.74, 2024.23], [2862.24, 2030.48], [2864.57, 2030.29], [2864.69, 2031.81], [2877.8, 2030.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2775.66, 1891.37], [2775.37, 1887.7], [2771.5, 1888.0], [2771.18, 1883.85], [2767.55, 1884.13], [2767.28, 1880.6], [2763.03, 1880.92], [2763.26, 1883.95], [2762.12, 1884.04], [2762.54, 1889.64], [2763.24, 1889.59], [2763.45, 1892.3], [2775.66, 1891.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2901.52, 2159.24], [2896.11, 2159.28], [2896.15, 2165.57], [2901.56, 2165.54], [2901.52, 2159.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2838.86, 2082.69], [2838.58, 2077.55], [2829.98, 2078.03], [2830.06, 2079.42], [2825.9, 2079.64], [2826.03, 2081.88], [2822.53, 2082.07], [2822.93, 2089.35], [2836.95, 2088.58], [2836.63, 2082.81], [2838.86, 2082.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2945.55, 1842.18], [2938.75, 1840.33], [2936.69, 1847.93], [2943.49, 1849.76], [2945.55, 1842.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2879.46, 1823.38], [2880.28, 1819.59], [2882.02, 1819.96], [2885.27, 1804.99], [2876.19, 1803.01], [2874.19, 1812.17], [2875.51, 1812.45], [2873.41, 1822.07], [2879.46, 1823.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2902.88, 2178.03], [2902.68, 2172.19], [2894.88, 2172.44], [2895.08, 2178.29], [2902.88, 2178.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2805.21, 2300.5], [2804.99, 2294.69], [2790.34, 2295.26], [2790.62, 2302.55], [2801.59, 2302.12], [2801.54, 2300.63], [2805.21, 2300.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2795.78, 2223.75], [2795.36, 2216.47], [2792.91, 2216.61], [2792.85, 2215.66], [2788.3, 2215.93], [2788.33, 2216.42], [2782.23, 2216.76], [2782.66, 2224.5], [2795.78, 2223.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2693.73, 1991.21], [2693.31, 1985.69], [2691.36, 1985.83], [2691.23, 1984.07], [2678.79, 1985.0], [2679.35, 1992.29], [2693.73, 1991.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2916.07, 2120.5], [2915.66, 2116.18], [2908.4, 2116.88], [2908.81, 2121.2], [2916.07, 2120.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2881.79, 2041.14], [2881.61, 2035.7], [2878.31, 2035.82], [2878.27, 2034.83], [2865.74, 2035.25], [2865.81, 2037.39], [2863.67, 2037.46], [2863.88, 2043.72], [2879.38, 2043.21], [2879.32, 2041.22], [2881.79, 2041.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2752.53, 2103.21], [2751.8, 2096.61], [2749.92, 2096.82], [2749.74, 2095.18], [2739.88, 2096.27], [2740.78, 2104.5], [2752.53, 2103.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2723.4, 2087.26], [2717.47, 2087.45], [2717.72, 2095.4], [2723.65, 2095.21], [2723.4, 2087.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2897.7, 1872.87], [2901.92, 1851.56], [2890.48, 1849.31], [2886.49, 1869.45], [2897.7, 1872.87]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.158, "pop": 0, "jobs": 158}}, {"shape": {"outer": [[2845.11, 2186.06], [2844.86, 2182.83], [2847.02, 2182.66], [2846.76, 2179.33], [2844.89, 2179.47], [2844.7, 2176.91], [2829.2, 2178.12], [2829.46, 2181.48], [2830.75, 2181.38], [2830.93, 2183.82], [2831.3, 2183.79], [2831.56, 2187.12], [2845.11, 2186.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2849.6, 2221.02], [2849.36, 2216.57], [2846.86, 2216.7], [2846.74, 2214.15], [2835.04, 2214.77], [2835.45, 2222.51], [2848.13, 2221.84], [2848.09, 2221.11], [2849.6, 2221.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2921.32, 2188.29], [2920.98, 2183.12], [2913.72, 2183.59], [2914.05, 2188.76], [2921.32, 2188.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2783.02, 1987.45], [2782.75, 1983.99], [2784.32, 1983.87], [2784.07, 1980.51], [2782.95, 1980.6], [2782.79, 1978.35], [2770.42, 1979.31], [2770.49, 1980.2], [2768.3, 1980.37], [2768.63, 1984.62], [2770.58, 1984.48], [2770.89, 1988.38], [2783.02, 1987.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2385.62, 2794.68], [2379.48, 2788.8], [2369.8, 2798.9], [2375.94, 2804.79], [2385.62, 2794.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2426.59, 2695.44], [2420.0, 2688.79], [2414.16, 2694.57], [2415.88, 2696.33], [2415.22, 2696.99], [2420.07, 2701.89], [2426.59, 2695.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2449.16, 2514.1], [2442.71, 2507.74], [2430.93, 2519.67], [2437.38, 2526.04], [2449.16, 2514.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2384.21, 2736.89], [2378.56, 2731.71], [2370.27, 2740.71], [2375.9, 2745.91], [2384.21, 2736.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2809.77, 2744.06], [2829.23, 2750.26], [2830.8, 2745.23], [2829.91, 2744.97], [2831.02, 2741.48], [2827.53, 2740.38], [2827.84, 2739.37], [2812.7, 2734.42], [2809.77, 2744.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2250.43, 2669.29], [2242.92, 2662.56], [2236.05, 2670.25], [2243.56, 2676.97], [2250.43, 2669.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2600.0, 2444.32], [2595.72, 2440.26], [2587.4, 2449.02], [2591.69, 2453.07], [2600.0, 2444.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2965.93, 2512.47], [2965.59, 2507.21], [2960.34, 2507.55], [2960.11, 2503.95], [2955.29, 2504.27], [2955.92, 2513.92], [2963.66, 2513.42], [2963.6, 2512.61], [2965.93, 2512.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2185.22, 2697.13], [2191.14, 2690.64], [2184.36, 2684.46], [2178.69, 2690.68], [2180.53, 2692.35], [2179.62, 2693.35], [2182.8, 2696.26], [2183.47, 2695.53], [2185.22, 2697.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2373.79, 2564.49], [2370.03, 2560.76], [2366.0, 2564.82], [2369.75, 2568.55], [2373.79, 2564.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2675.84, 2738.0], [2669.78, 2732.09], [2661.85, 2740.22], [2667.91, 2746.13], [2675.84, 2738.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2135.81, 2687.98], [2130.33, 2682.77], [2121.35, 2692.19], [2126.82, 2697.4], [2135.81, 2687.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2670.42, 2653.87], [2664.37, 2648.35], [2655.52, 2658.03], [2658.72, 2660.95], [2657.21, 2662.59], [2660.07, 2665.2], [2670.42, 2653.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2542.37, 2384.89], [2538.87, 2381.06], [2534.04, 2385.46], [2537.53, 2389.3], [2542.37, 2384.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2399.69, 2582.2], [2393.31, 2575.92], [2388.73, 2580.56], [2395.11, 2586.84], [2399.69, 2582.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2622.78, 2743.03], [2617.98, 2737.92], [2611.08, 2744.39], [2615.89, 2749.51], [2622.78, 2743.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2804.44, 2672.73], [2794.49, 2663.72], [2788.59, 2670.22], [2800.95, 2681.41], [2806.21, 2675.59], [2803.82, 2673.43], [2804.44, 2672.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2468.48, 2484.23], [2465.68, 2481.33], [2460.95, 2485.9], [2463.75, 2488.8], [2468.48, 2484.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2411.01, 2740.62], [2407.28, 2736.75], [2401.23, 2742.56], [2404.97, 2746.44], [2411.01, 2740.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2810.76, 2665.36], [2800.69, 2655.37], [2794.29, 2661.83], [2804.37, 2671.81], [2810.76, 2665.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2706.69, 2583.25], [2702.03, 2578.29], [2696.61, 2583.38], [2701.27, 2588.34], [2706.69, 2583.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2751.59, 2693.37], [2753.42, 2691.61], [2754.94, 2693.19], [2763.02, 2685.38], [2757.34, 2679.51], [2747.44, 2689.07], [2751.59, 2693.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2468.66, 2459.3], [2461.87, 2452.72], [2455.95, 2458.82], [2462.74, 2465.41], [2468.66, 2459.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2133.49, 2736.52], [2131.69, 2734.72], [2129.66, 2736.75], [2131.46, 2738.55], [2133.49, 2736.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2192.03, 2747.99], [2186.82, 2743.35], [2177.56, 2753.76], [2182.76, 2758.39], [2192.03, 2747.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2399.17, 2528.77], [2393.33, 2523.03], [2383.8, 2532.73], [2389.64, 2538.47], [2399.17, 2528.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2586.2, 2783.78], [2580.91, 2778.72], [2578.17, 2781.58], [2583.46, 2786.65], [2586.2, 2783.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2739.09, 2742.06], [2742.48, 2738.62], [2744.83, 2740.94], [2749.86, 2735.83], [2747.84, 2733.85], [2749.68, 2731.98], [2748.4, 2730.73], [2749.64, 2729.46], [2747.84, 2727.69], [2746.73, 2728.82], [2744.46, 2726.59], [2737.47, 2733.68], [2739.17, 2735.37], [2735.78, 2738.81], [2739.09, 2742.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2477.49, 2467.79], [2470.83, 2461.9], [2465.35, 2468.09], [2472.01, 2473.98], [2477.49, 2467.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2374.78, 2785.11], [2369.75, 2780.37], [2360.7, 2789.97], [2365.73, 2794.71], [2374.78, 2785.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2479.48, 2551.75], [2473.43, 2546.1], [2467.29, 2552.68], [2473.33, 2558.33], [2479.48, 2551.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2468.06, 2667.14], [2464.04, 2662.66], [2460.4, 2665.93], [2464.42, 2670.41], [2468.06, 2667.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2514.38, 2499.65], [2508.51, 2493.93], [2498.75, 2503.95], [2504.62, 2509.67], [2514.38, 2499.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2673.36, 2528.15], [2692.92, 2507.96], [2685.28, 2500.56], [2664.66, 2521.85], [2669.6, 2526.63], [2663.81, 2532.62], [2675.94, 2544.37], [2682.8, 2537.29], [2673.36, 2528.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.38, "pop": 190, "jobs": 0}}, {"shape": {"outer": [[2405.4, 2609.09], [2398.27, 2601.97], [2385.02, 2615.25], [2392.14, 2622.36], [2405.4, 2609.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[2559.82, 2398.74], [2561.78, 2397.01], [2562.67, 2398.01], [2569.18, 2392.22], [2563.47, 2385.8], [2556.85, 2391.69], [2560.03, 2395.26], [2558.18, 2396.9], [2559.82, 2398.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2622.17, 2782.49], [2626.97, 2787.07], [2631.72, 2782.07], [2626.92, 2777.57], [2622.17, 2782.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2332.05, 2644.84], [2327.24, 2640.11], [2322.69, 2644.74], [2327.5, 2649.46], [2332.05, 2644.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2283.21, 2635.22], [2275.41, 2627.82], [2265.66, 2638.08], [2273.46, 2645.49], [2283.21, 2635.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2945.06, 2736.78], [2943.86, 2733.22], [2939.11, 2734.82], [2940.31, 2738.38], [2945.06, 2736.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2667.0, 2731.99], [2664.32, 2729.06], [2662.66, 2730.57], [2660.03, 2727.68], [2654.36, 2732.87], [2659.68, 2738.67], [2667.0, 2731.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2439.84, 2437.25], [2431.41, 2429.68], [2426.35, 2435.31], [2434.79, 2442.88], [2439.84, 2437.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2598.06, 2416.63], [2592.25, 2410.52], [2580.16, 2422.03], [2585.98, 2428.14], [2598.06, 2416.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2381.58, 2539.54], [2376.67, 2535.66], [2372.83, 2540.51], [2377.73, 2544.4], [2381.58, 2539.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2415.3, 2709.6], [2408.95, 2702.32], [2403.54, 2707.06], [2409.89, 2714.33], [2415.3, 2709.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2462.42, 2799.71], [2459.45, 2796.75], [2454.69, 2801.56], [2457.67, 2804.51], [2462.42, 2799.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2285.29, 2615.75], [2280.94, 2611.36], [2275.82, 2616.43], [2280.17, 2620.82], [2285.29, 2615.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2230.3, 2785.17], [2225.13, 2780.53], [2223.84, 2781.97], [2223.48, 2781.65], [2214.57, 2791.62], [2220.11, 2796.57], [2230.3, 2785.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2953.68, 2725.01], [2953.37, 2715.69], [2944.73, 2715.98], [2945.04, 2725.3], [2953.68, 2725.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2472.18, 2537.42], [2470.07, 2535.33], [2469.28, 2536.13], [2468.46, 2535.33], [2456.38, 2547.6], [2462.37, 2553.5], [2474.13, 2541.57], [2471.08, 2538.54], [2472.18, 2537.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2301.8, 2609.96], [2303.44, 2608.3], [2304.51, 2609.36], [2308.78, 2605.05], [2302.15, 2598.47], [2297.67, 2602.97], [2300.13, 2605.42], [2299.11, 2606.43], [2299.96, 2607.28], [2299.53, 2607.71], [2301.8, 2609.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2793.73, 2711.97], [2787.85, 2705.97], [2784.83, 2708.93], [2782.9, 2706.98], [2780.67, 2709.15], [2790.62, 2719.3], [2794.7, 2715.29], [2792.57, 2713.12], [2793.73, 2711.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2359.59, 2631.71], [2353.79, 2625.74], [2346.34, 2632.96], [2352.14, 2638.93], [2359.59, 2631.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2746.19, 2792.34], [2743.07, 2788.87], [2738.46, 2793.03], [2741.58, 2796.48], [2746.19, 2792.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2412.95, 2764.5], [2406.7, 2758.08], [2395.83, 2768.68], [2402.08, 2775.09], [2412.95, 2764.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2310.62, 2662.64], [2307.76, 2659.73], [2304.89, 2662.53], [2304.35, 2661.98], [2300.33, 2665.92], [2305.72, 2671.43], [2311.48, 2665.79], [2309.49, 2663.75], [2310.62, 2662.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2667.25, 2722.58], [2660.3, 2715.32], [2658.18, 2717.33], [2662.74, 2722.11], [2659.35, 2725.34], [2661.74, 2727.85], [2667.25, 2722.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2289.7, 2726.85], [2285.82, 2722.74], [2281.08, 2727.23], [2284.97, 2731.34], [2289.7, 2726.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2527.73, 2345.82], [2522.55, 2340.9], [2514.36, 2349.54], [2519.53, 2354.45], [2527.73, 2345.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2191.86, 2766.91], [2199.25, 2759.0], [2198.26, 2758.08], [2200.73, 2755.43], [2196.72, 2751.68], [2193.93, 2754.66], [2192.86, 2753.65], [2186.21, 2760.77], [2187.9, 2762.35], [2186.39, 2763.96], [2188.71, 2766.13], [2189.79, 2764.98], [2191.86, 2766.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2281.76, 2693.91], [2278.0, 2690.62], [2275.89, 2693.04], [2274.62, 2691.93], [2268.97, 2698.39], [2274.01, 2702.79], [2281.76, 2693.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2647.93, 2789.66], [2658.21, 2780.68], [2652.12, 2773.73], [2639.64, 2784.63], [2643.91, 2789.51], [2646.12, 2787.59], [2647.93, 2789.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2478.26, 2399.9], [2469.41, 2392.71], [2465.72, 2397.26], [2467.85, 2398.99], [2466.53, 2400.62], [2473.25, 2406.07], [2478.26, 2399.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2570.89, 2796.63], [2581.03, 2786.71], [2574.42, 2779.96], [2562.94, 2791.19], [2567.72, 2796.07], [2569.06, 2794.76], [2570.89, 2796.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2577.41, 2432.67], [2572.57, 2427.3], [2568.02, 2432.12], [2573.07, 2437.48], [2577.41, 2432.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2366.62, 2514.08], [2356.68, 2504.55], [2350.57, 2510.94], [2360.5, 2520.45], [2366.62, 2514.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2746.56, 2644.67], [2741.03, 2639.74], [2735.51, 2645.94], [2741.04, 2650.87], [2746.56, 2644.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2432.78, 2486.11], [2429.51, 2482.79], [2424.62, 2487.61], [2427.9, 2490.93], [2432.78, 2486.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2794.64, 2703.68], [2798.85, 2699.62], [2796.37, 2697.05], [2797.45, 2696.01], [2790.83, 2689.16], [2784.32, 2695.43], [2791.56, 2702.92], [2792.78, 2701.75], [2794.64, 2703.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2768.91, 2772.37], [2780.16, 2761.11], [2773.05, 2754.01], [2770.82, 2756.21], [2765.93, 2751.7], [2759.49, 2758.63], [2763.93, 2762.93], [2761.45, 2765.42], [2768.91, 2772.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[2358.73, 2548.06], [2353.82, 2542.78], [2348.52, 2547.71], [2353.43, 2552.99], [2358.73, 2548.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2623.43, 2625.39], [2620.1, 2621.98], [2614.43, 2627.54], [2617.75, 2630.94], [2623.43, 2625.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2271.03, 2626.29], [2264.89, 2620.34], [2255.6, 2629.95], [2261.74, 2635.89], [2271.03, 2626.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2384.96, 2813.78], [2390.19, 2808.51], [2391.04, 2809.36], [2395.11, 2805.26], [2388.63, 2798.82], [2379.33, 2808.2], [2384.96, 2813.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2609.56, 2613.39], [2605.84, 2610.12], [2602.12, 2614.36], [2605.83, 2617.63], [2609.56, 2613.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2466.38, 2650.88], [2460.18, 2644.73], [2454.6, 2650.35], [2460.8, 2656.5], [2466.38, 2650.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2736.93, 2761.8], [2738.85, 2763.83], [2741.51, 2761.31], [2739.59, 2759.28], [2736.93, 2761.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2365.41, 2578.73], [2361.9, 2574.99], [2360.38, 2576.42], [2358.5, 2574.41], [2352.88, 2579.69], [2358.28, 2585.44], [2365.41, 2578.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2209.76, 2764.65], [2207.13, 2762.12], [2205.2, 2764.11], [2204.29, 2763.24], [2198.98, 2768.75], [2204.28, 2773.86], [2209.31, 2768.64], [2207.56, 2766.94], [2209.76, 2764.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2713.01, 2611.02], [2704.76, 2601.7], [2703.1, 2603.17], [2701.1, 2600.92], [2697.5, 2604.1], [2700.76, 2607.77], [2700.45, 2608.05], [2707.44, 2615.95], [2713.01, 2611.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2363.43, 2776.36], [2357.1, 2770.43], [2350.72, 2777.26], [2353.04, 2779.43], [2348.93, 2783.81], [2353.4, 2787.99], [2358.16, 2782.91], [2357.71, 2782.47], [2363.43, 2776.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2276.7, 2713.76], [2279.61, 2710.98], [2280.4, 2711.79], [2288.87, 2703.7], [2283.05, 2697.59], [2274.35, 2705.9], [2275.81, 2707.43], [2273.11, 2710.01], [2276.7, 2713.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2665.11, 2703.57], [2658.15, 2697.06], [2652.73, 2702.86], [2659.69, 2709.37], [2665.11, 2703.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2435.19, 2607.29], [2431.66, 2603.73], [2428.17, 2607.21], [2432.49, 2611.55], [2435.05, 2609.01], [2434.27, 2608.22], [2435.19, 2607.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2629.56, 2640.52], [2624.59, 2635.12], [2619.51, 2639.77], [2624.47, 2645.19], [2629.56, 2640.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2744.39, 2668.85], [2738.84, 2663.9], [2730.69, 2673.05], [2736.23, 2677.99], [2744.39, 2668.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2500.54, 2562.05], [2492.99, 2555.06], [2487.13, 2561.39], [2496.07, 2569.66], [2501.11, 2564.22], [2499.72, 2562.93], [2500.54, 2562.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2682.16, 2606.33], [2676.43, 2600.71], [2665.57, 2611.8], [2671.31, 2617.41], [2682.16, 2606.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2939.59, 2653.4], [2950.28, 2652.77], [2948.33, 2619.34], [2937.15, 2619.86], [2939.59, 2653.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.235, "pop": 0, "jobs": 235}}, {"shape": {"outer": [[2310.29, 2763.38], [2303.99, 2757.26], [2300.56, 2760.8], [2306.86, 2766.91], [2310.29, 2763.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2724.82, 2705.17], [2720.0, 2700.23], [2709.37, 2710.56], [2714.19, 2715.52], [2724.82, 2705.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2436.83, 2457.22], [2432.68, 2453.19], [2430.76, 2455.18], [2434.89, 2459.21], [2436.83, 2457.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[2462.48, 2477.21], [2457.29, 2472.4], [2450.1, 2480.18], [2455.3, 2484.98], [2462.48, 2477.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2516.44, 2382.75], [2511.93, 2378.29], [2508.34, 2381.91], [2512.85, 2386.38], [2516.44, 2382.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2546.92, 2457.08], [2543.69, 2454.48], [2539.14, 2460.12], [2542.37, 2462.72], [2546.92, 2457.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2626.5, 2434.99], [2618.19, 2426.79], [2597.51, 2448.05], [2606.38, 2455.85], [2626.5, 2434.99]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.22, "pop": 0, "jobs": 220}}, {"shape": {"outer": [[2640.35, 2582.65], [2648.5, 2573.47], [2642.08, 2567.76], [2632.7, 2578.31], [2636.01, 2581.25], [2637.23, 2579.88], [2640.35, 2582.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2733.21, 2731.93], [2742.92, 2722.31], [2737.14, 2716.48], [2725.67, 2727.84], [2727.54, 2729.74], [2729.31, 2727.99], [2733.21, 2731.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2316.46, 2672.18], [2319.63, 2669.01], [2317.95, 2667.32], [2315.2, 2670.08], [2314.23, 2669.13], [2305.29, 2678.08], [2310.12, 2682.9], [2318.65, 2674.36], [2316.46, 2672.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2637.7, 2782.2], [2649.64, 2770.21], [2643.47, 2764.18], [2632.64, 2775.0], [2634.06, 2776.32], [2632.96, 2777.5], [2637.7, 2782.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2570.38, 2596.64], [2572.09, 2595.36], [2572.82, 2596.31], [2576.47, 2593.58], [2574.86, 2591.43], [2580.41, 2587.25], [2578.72, 2585.0], [2579.61, 2584.33], [2576.77, 2580.56], [2564.97, 2589.44], [2570.38, 2596.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2524.77, 2510.0], [2517.31, 2503.15], [2509.34, 2511.84], [2516.8, 2518.68], [2524.77, 2510.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2593.67, 2775.87], [2587.33, 2769.22], [2581.68, 2774.61], [2588.02, 2781.25], [2593.67, 2775.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2499.81, 2769.3], [2493.69, 2763.36], [2487.29, 2769.93], [2493.41, 2775.88], [2499.81, 2769.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2654.99, 2714.39], [2649.05, 2708.22], [2648.78, 2708.48], [2646.69, 2706.32], [2641.93, 2710.91], [2651.45, 2720.78], [2654.94, 2717.4], [2653.46, 2715.86], [2654.99, 2714.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2530.1, 2593.21], [2519.83, 2582.23], [2514.02, 2587.66], [2524.3, 2598.64], [2530.1, 2593.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2542.92, 2601.41], [2537.6, 2595.5], [2533.0, 2599.64], [2538.32, 2605.55], [2542.92, 2601.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2709.35, 2688.62], [2706.24, 2685.41], [2704.97, 2686.63], [2702.75, 2684.34], [2692.61, 2694.16], [2697.94, 2699.67], [2709.35, 2688.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2595.02, 2437.01], [2592.67, 2434.33], [2585.29, 2440.82], [2587.64, 2443.5], [2595.02, 2437.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2587.84, 2474.96], [2581.12, 2467.94], [2576.86, 2472.04], [2583.58, 2479.04], [2587.84, 2474.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2264.0, 2705.28], [2261.06, 2702.45], [2256.26, 2707.42], [2259.19, 2710.25], [2264.0, 2705.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2222.03, 2734.67], [2229.23, 2727.06], [2223.42, 2721.57], [2221.41, 2723.7], [2220.39, 2722.74], [2215.45, 2727.97], [2217.87, 2730.25], [2216.78, 2731.4], [2218.73, 2733.23], [2219.56, 2732.34], [2222.03, 2734.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2577.36, 2400.01], [2572.08, 2394.94], [2566.6, 2400.66], [2571.88, 2405.73], [2577.36, 2400.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2610.99, 2508.29], [2601.87, 2499.98], [2595.98, 2506.45], [2606.4, 2515.95], [2611.27, 2510.61], [2609.96, 2509.42], [2610.99, 2508.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2775.28, 2698.09], [2779.21, 2694.43], [2780.43, 2695.75], [2783.04, 2693.34], [2779.12, 2689.12], [2772.6, 2695.21], [2775.28, 2698.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2390.53, 2548.14], [2385.56, 2543.85], [2381.01, 2549.14], [2385.98, 2553.41], [2390.53, 2548.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2272.24, 2594.82], [2276.93, 2599.11], [2283.5, 2592.35], [2278.77, 2588.0], [2272.24, 2594.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2400.12, 2545.68], [2406.57, 2539.17], [2399.85, 2532.52], [2392.8, 2539.62], [2393.5, 2540.31], [2392.03, 2541.79], [2394.46, 2544.2], [2396.53, 2542.11], [2400.12, 2545.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2638.5, 2762.29], [2632.57, 2756.05], [2626.05, 2762.26], [2631.97, 2768.49], [2638.5, 2762.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2936.54, 2619.57], [2930.6, 2619.84], [2930.83, 2624.84], [2927.36, 2625.01], [2927.86, 2636.03], [2931.01, 2635.88], [2931.09, 2637.57], [2937.34, 2637.29], [2936.54, 2619.57]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.092, "pop": 0, "jobs": 92}}, {"shape": {"outer": [[2366.58, 2665.21], [2377.83, 2654.18], [2375.92, 2652.23], [2377.34, 2650.84], [2372.61, 2646.03], [2359.68, 2658.72], [2361.52, 2660.6], [2360.1, 2661.99], [2363.2, 2665.16], [2364.9, 2663.49], [2366.58, 2665.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2523.39, 2365.94], [2534.37, 2354.98], [2527.94, 2348.54], [2517.04, 2359.43], [2518.42, 2360.8], [2516.79, 2362.43], [2518.73, 2364.36], [2520.27, 2362.82], [2523.39, 2365.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2424.83, 2605.04], [2418.15, 2599.33], [2414.66, 2603.41], [2421.35, 2609.12], [2424.83, 2605.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2819.68, 2775.29], [2815.33, 2773.95], [2815.19, 2774.44], [2806.36, 2771.74], [2804.44, 2778.01], [2817.61, 2782.04], [2819.68, 2775.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2346.54, 2563.68], [2340.66, 2558.19], [2335.36, 2563.85], [2341.23, 2569.34], [2346.54, 2563.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2375.48, 2586.78], [2371.4, 2582.76], [2368.79, 2585.42], [2366.92, 2583.57], [2361.85, 2588.71], [2367.81, 2594.58], [2375.48, 2586.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2398.74, 2482.54], [2390.52, 2474.25], [2389.68, 2475.07], [2388.44, 2473.82], [2385.18, 2477.04], [2386.28, 2478.15], [2384.25, 2480.16], [2392.61, 2488.61], [2398.74, 2482.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2834.73, 2752.15], [2841.47, 2754.58], [2844.39, 2746.49], [2837.65, 2744.06], [2834.73, 2752.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2654.93, 2584.47], [2648.8, 2578.75], [2642.54, 2585.45], [2648.66, 2591.17], [2654.93, 2584.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2393.02, 2746.71], [2387.65, 2742.11], [2381.28, 2749.56], [2386.66, 2754.15], [2393.02, 2746.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2391.87, 2679.32], [2382.09, 2670.03], [2379.87, 2672.36], [2378.04, 2670.63], [2375.72, 2673.06], [2378.01, 2675.24], [2376.19, 2677.15], [2386.54, 2686.98], [2391.61, 2681.65], [2390.59, 2680.66], [2391.87, 2679.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2913.22, 2675.73], [2912.66, 2666.7], [2890.67, 2668.07], [2891.23, 2677.0], [2898.85, 2676.52], [2898.78, 2675.32], [2902.89, 2675.06], [2902.97, 2676.37], [2913.22, 2675.73]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.124, "pop": 0, "jobs": 124}}, {"shape": {"outer": [[2303.86, 2739.77], [2299.96, 2735.97], [2292.53, 2743.59], [2296.43, 2747.4], [2303.86, 2739.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2586.19, 2576.05], [2583.51, 2573.35], [2578.69, 2578.12], [2581.37, 2580.84], [2586.19, 2576.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2513.66, 2360.35], [2507.48, 2354.56], [2502.48, 2359.92], [2501.2, 2358.71], [2497.35, 2362.83], [2504.81, 2369.81], [2513.66, 2360.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2607.71, 2758.52], [2600.5, 2751.89], [2595.31, 2757.54], [2602.52, 2764.16], [2607.71, 2758.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2352.41, 2763.43], [2348.46, 2759.39], [2339.82, 2767.85], [2347.05, 2775.23], [2354.41, 2768.01], [2351.15, 2764.66], [2352.41, 2763.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2935.16, 2691.71], [2934.1, 2680.2], [2927.59, 2680.8], [2928.51, 2690.74], [2930.42, 2690.56], [2930.56, 2692.12], [2935.16, 2691.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2518.69, 2374.46], [2514.31, 2370.24], [2509.85, 2374.88], [2514.24, 2379.09], [2518.69, 2374.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2529.11, 2536.3], [2537.26, 2528.54], [2538.09, 2529.41], [2541.34, 2526.32], [2534.83, 2519.49], [2533.26, 2520.99], [2532.22, 2519.89], [2522.2, 2529.44], [2525.23, 2532.63], [2524.12, 2533.68], [2525.5, 2535.12], [2526.8, 2533.89], [2529.11, 2536.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2495.31, 2407.43], [2488.84, 2400.92], [2486.12, 2403.62], [2492.57, 2410.14], [2495.31, 2407.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2164.75, 2726.09], [2155.26, 2735.71], [2161.21, 2741.56], [2170.56, 2731.93], [2164.75, 2726.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2292.23, 2779.9], [2286.59, 2774.41], [2280.29, 2780.87], [2287.89, 2788.27], [2293.03, 2782.98], [2291.08, 2781.08], [2292.23, 2779.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2657.4, 2570.99], [2654.58, 2568.0], [2649.38, 2572.91], [2652.2, 2575.9], [2657.4, 2570.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2494.15, 2760.64], [2488.01, 2754.83], [2477.41, 2766.04], [2483.55, 2771.85], [2494.15, 2760.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2974.59, 2646.74], [2974.39, 2640.69], [2967.38, 2640.93], [2967.58, 2646.97], [2974.59, 2646.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2761.52, 2662.15], [2758.53, 2659.01], [2753.21, 2664.05], [2756.19, 2667.2], [2761.52, 2662.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2756.96, 2657.46], [2748.74, 2650.5], [2744.09, 2656.01], [2752.3, 2662.97], [2756.96, 2657.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2375.4, 2504.95], [2367.65, 2497.22], [2361.61, 2503.27], [2369.35, 2511.01], [2375.4, 2504.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2735.83, 2712.84], [2731.58, 2708.87], [2729.35, 2711.26], [2726.78, 2708.85], [2718.95, 2717.22], [2725.78, 2723.61], [2735.83, 2712.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2651.97, 2799.1], [2654.26, 2796.87], [2654.63, 2797.24], [2665.83, 2786.3], [2660.34, 2780.69], [2649.23, 2791.54], [2650.72, 2793.05], [2648.33, 2795.38], [2651.97, 2799.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2682.93, 2682.41], [2678.28, 2677.69], [2675.55, 2680.39], [2680.2, 2685.09], [2682.93, 2682.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2411.33, 2570.57], [2406.84, 2566.25], [2401.5, 2571.8], [2405.98, 2576.12], [2411.33, 2570.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2589.04, 2407.89], [2582.83, 2402.01], [2574.04, 2411.28], [2580.25, 2417.16], [2589.04, 2407.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2543.82, 2400.68], [2538.73, 2395.37], [2532.92, 2400.92], [2538.02, 2406.23], [2543.82, 2400.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2705.23, 2618.28], [2695.94, 2609.12], [2689.58, 2615.55], [2698.87, 2624.72], [2705.23, 2618.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2507.01, 2517.18], [2503.48, 2513.63], [2493.39, 2523.68], [2496.93, 2527.22], [2507.01, 2517.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2710.93, 2723.35], [2706.09, 2718.97], [2698.03, 2727.84], [2702.87, 2732.23], [2710.93, 2723.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2208.63, 2709.16], [2202.97, 2703.94], [2197.86, 2709.49], [2203.53, 2714.7], [2208.63, 2709.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2437.96, 2507.36], [2431.75, 2501.39], [2422.99, 2510.49], [2426.49, 2513.86], [2424.38, 2516.07], [2427.09, 2518.67], [2437.96, 2507.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2470.58, 2409.0], [2462.47, 2401.3], [2459.32, 2404.61], [2461.36, 2406.55], [2458.37, 2409.69], [2464.45, 2415.47], [2470.58, 2409.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2243.54, 2654.69], [2237.11, 2648.78], [2227.15, 2659.61], [2233.57, 2665.53], [2243.54, 2654.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2577.16, 2415.63], [2574.25, 2413.13], [2570.17, 2417.88], [2573.09, 2420.38], [2577.16, 2415.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2694.01, 2757.34], [2688.05, 2751.56], [2677.8, 2762.14], [2683.77, 2767.92], [2694.01, 2757.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2566.92, 2566.19], [2563.29, 2562.07], [2560.52, 2564.52], [2564.14, 2568.64], [2566.92, 2566.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2278.53, 2776.73], [2274.11, 2772.34], [2264.34, 2782.21], [2268.77, 2786.6], [2278.53, 2776.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2475.69, 2642.09], [2467.7, 2634.62], [2462.77, 2639.9], [2472.04, 2648.57], [2474.26, 2646.19], [2472.97, 2644.99], [2475.69, 2642.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2720.89, 2532.94], [2714.14, 2526.3], [2702.44, 2538.16], [2703.94, 2539.63], [2702.44, 2541.15], [2707.69, 2546.33], [2720.89, 2532.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2260.66, 2736.29], [2257.06, 2732.76], [2252.03, 2737.91], [2255.62, 2741.43], [2260.66, 2736.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2409.56, 2717.88], [2400.43, 2709.59], [2395.44, 2715.06], [2404.58, 2723.36], [2409.56, 2717.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2609.99, 2540.7], [2604.94, 2535.46], [2597.57, 2542.57], [2602.63, 2547.81], [2609.99, 2540.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2523.85, 2536.85], [2520.03, 2532.73], [2517.18, 2535.38], [2521.01, 2539.49], [2523.85, 2536.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2510.39, 2553.32], [2503.76, 2546.5], [2500.24, 2549.92], [2498.94, 2548.58], [2496.4, 2551.06], [2505.62, 2560.52], [2510.86, 2555.42], [2509.58, 2554.11], [2510.39, 2553.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2718.43, 2696.55], [2715.83, 2694.01], [2713.65, 2696.23], [2710.71, 2693.35], [2703.31, 2700.91], [2708.86, 2706.33], [2718.43, 2696.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2480.06, 2494.93], [2475.44, 2490.23], [2469.86, 2495.7], [2474.47, 2500.41], [2480.06, 2494.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2499.93, 2427.2], [2493.45, 2421.21], [2483.1, 2432.42], [2489.57, 2438.4], [2499.93, 2427.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2715.07, 2657.73], [2717.57, 2655.0], [2718.78, 2656.1], [2720.8, 2653.91], [2721.85, 2654.87], [2724.4, 2652.09], [2720.33, 2648.37], [2718.53, 2650.32], [2708.38, 2641.02], [2703.11, 2646.78], [2715.07, 2657.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2402.48, 2669.94], [2393.3, 2661.03], [2387.02, 2667.48], [2396.21, 2676.39], [2402.48, 2669.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2652.08, 2459.83], [2643.58, 2452.05], [2633.24, 2463.36], [2641.74, 2471.12], [2652.08, 2459.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2436.93, 2773.66], [2431.41, 2768.84], [2426.15, 2774.91], [2431.68, 2779.71], [2436.93, 2773.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2618.74, 2549.21], [2612.42, 2542.81], [2606.83, 2548.34], [2613.16, 2554.74], [2618.74, 2549.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2491.97, 2531.1], [2489.22, 2528.38], [2485.04, 2532.61], [2487.78, 2535.33], [2491.97, 2531.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2432.16, 2580.39], [2440.92, 2571.84], [2440.13, 2571.02], [2441.29, 2569.87], [2436.51, 2564.97], [2435.44, 2566.02], [2434.87, 2565.43], [2424.21, 2575.82], [2426.73, 2578.4], [2428.52, 2576.66], [2432.16, 2580.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2345.99, 2777.42], [2340.99, 2772.34], [2334.09, 2779.15], [2339.09, 2784.23], [2345.99, 2777.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2713.03, 2571.41], [2707.62, 2566.57], [2699.89, 2575.21], [2705.3, 2580.05], [2713.03, 2571.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2410.7, 2621.62], [2405.14, 2615.67], [2395.27, 2624.91], [2400.83, 2630.84], [2410.7, 2621.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2691.32, 2735.2], [2687.02, 2731.24], [2685.86, 2732.51], [2682.45, 2729.37], [2678.95, 2733.17], [2686.68, 2740.26], [2691.32, 2735.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2426.86, 2453.96], [2416.7, 2444.17], [2411.28, 2449.8], [2421.44, 2459.59], [2426.86, 2453.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2486.37, 2492.78], [2488.39, 2490.8], [2489.3, 2491.73], [2495.63, 2485.54], [2488.58, 2478.32], [2482.19, 2484.57], [2484.43, 2486.86], [2482.47, 2488.78], [2486.37, 2492.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2352.26, 2528.44], [2355.03, 2525.56], [2354.05, 2524.62], [2356.67, 2521.9], [2347.99, 2513.56], [2341.58, 2520.22], [2350.2, 2528.5], [2351.22, 2527.44], [2352.26, 2528.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2599.82, 2536.6], [2593.88, 2530.69], [2588.98, 2535.62], [2594.92, 2541.53], [2599.82, 2536.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2334.23, 2606.71], [2321.38, 2619.85], [2322.67, 2621.18], [2321.2, 2622.7], [2325.11, 2626.32], [2326.42, 2625.04], [2328.18, 2626.65], [2340.11, 2613.65], [2338.57, 2612.29], [2339.42, 2611.43], [2334.23, 2606.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[2624.68, 2568.56], [2630.21, 2574.1], [2640.67, 2563.19], [2635.15, 2557.88], [2624.68, 2568.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2432.07, 2444.64], [2423.95, 2436.67], [2418.98, 2441.72], [2427.11, 2449.69], [2432.07, 2444.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2319.76, 2596.34], [2314.86, 2591.13], [2308.67, 2596.96], [2313.57, 2602.17], [2319.76, 2596.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2669.4, 2499.36], [2678.62, 2489.61], [2671.39, 2482.59], [2662.37, 2492.07], [2663.56, 2493.26], [2661.86, 2495.11], [2666.1, 2499.19], [2667.58, 2497.71], [2669.4, 2499.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2123.63, 2740.11], [2126.05, 2737.82], [2123.51, 2735.03], [2121.03, 2737.35], [2123.63, 2740.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[2409.04, 2499.67], [2409.97, 2498.73], [2410.76, 2499.53], [2421.23, 2489.1], [2415.18, 2483.04], [2403.78, 2494.39], [2409.04, 2499.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2307.61, 2584.41], [2303.87, 2580.54], [2295.95, 2588.17], [2301.21, 2593.62], [2307.08, 2587.95], [2305.57, 2586.38], [2307.61, 2584.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2764.88, 2795.87], [2755.07, 2785.98], [2751.76, 2789.26], [2755.31, 2792.84], [2753.77, 2794.36], [2760.05, 2800.69], [2759.89, 2800.85], [2761.46, 2802.43], [2765.53, 2798.39], [2763.96, 2796.8], [2764.88, 2795.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2349.81, 2622.89], [2343.04, 2615.85], [2333.88, 2624.64], [2340.65, 2631.7], [2349.81, 2622.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2452.22, 2797.49], [2449.46, 2794.73], [2448.16, 2796.04], [2446.9, 2794.78], [2435.32, 2806.4], [2441.38, 2812.44], [2452.29, 2801.5], [2450.25, 2799.47], [2452.22, 2797.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2211.7, 2670.59], [2205.73, 2664.62], [2202.36, 2667.98], [2208.34, 2673.95], [2211.7, 2670.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2453.92, 2542.78], [2455.21, 2541.49], [2456.29, 2542.58], [2467.41, 2531.51], [2461.4, 2525.47], [2448.99, 2537.83], [2453.92, 2542.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2356.7, 2687.72], [2353.13, 2684.0], [2348.68, 2688.26], [2352.26, 2691.98], [2356.7, 2687.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2550.68, 2372.36], [2545.89, 2367.31], [2538.39, 2374.42], [2540.33, 2376.46], [2539.33, 2377.42], [2542.19, 2380.43], [2550.68, 2372.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2305.07, 2651.67], [2298.18, 2644.84], [2288.65, 2654.45], [2295.54, 2661.28], [2305.07, 2651.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2456.48, 2586.46], [2452.61, 2582.74], [2447.04, 2588.53], [2450.9, 2592.26], [2456.48, 2586.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2745.86, 2684.33], [2755.86, 2673.48], [2752.92, 2670.78], [2750.43, 2673.49], [2748.09, 2671.33], [2739.79, 2680.34], [2743.87, 2684.11], [2744.68, 2683.24], [2745.86, 2684.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2826.02, 2751.2], [2813.98, 2747.42], [2813.69, 2748.33], [2811.26, 2747.56], [2809.64, 2752.73], [2812.15, 2753.53], [2811.59, 2755.29], [2823.56, 2759.04], [2826.02, 2751.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2453.15, 2439.3], [2449.96, 2435.79], [2444.91, 2440.37], [2448.1, 2443.88], [2453.15, 2439.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2613.61, 2627.33], [2608.31, 2621.9], [2603.39, 2626.69], [2608.69, 2632.12], [2613.61, 2627.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2374.25, 2699.18], [2365.69, 2690.18], [2360.45, 2695.15], [2369.01, 2704.16], [2374.25, 2699.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2372.16, 2531.04], [2368.28, 2527.31], [2362.71, 2533.11], [2366.58, 2536.84], [2372.16, 2531.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2509.9, 2434.73], [2503.55, 2428.61], [2491.74, 2440.85], [2498.09, 2446.98], [2509.9, 2434.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2572.64, 2491.26], [2560.82, 2479.75], [2554.91, 2485.81], [2566.73, 2497.32], [2572.64, 2491.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2523.82, 2455.72], [2517.99, 2450.2], [2509.81, 2458.83], [2515.63, 2464.36], [2523.82, 2455.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2250.15, 2743.34], [2243.83, 2737.14], [2235.54, 2745.6], [2238.4, 2748.39], [2237.08, 2749.75], [2240.53, 2753.15], [2250.15, 2743.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2484.97, 2751.09], [2478.38, 2744.36], [2466.91, 2755.6], [2473.5, 2762.33], [2484.97, 2751.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2413.19, 2468.01], [2404.99, 2459.62], [2403.83, 2460.74], [2402.9, 2459.79], [2399.68, 2462.94], [2401.0, 2464.3], [2398.99, 2466.28], [2406.79, 2474.26], [2413.19, 2468.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2285.32, 2761.55], [2280.8, 2756.89], [2274.9, 2762.62], [2279.42, 2767.28], [2285.32, 2761.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2418.13, 2508.52], [2419.16, 2507.51], [2419.91, 2508.29], [2430.29, 2498.24], [2424.05, 2491.79], [2412.64, 2502.84], [2418.13, 2508.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2628.64, 2491.27], [2620.13, 2481.87], [2614.04, 2487.38], [2624.67, 2499.12], [2628.8, 2495.38], [2626.69, 2493.05], [2628.64, 2491.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2488.86, 2578.29], [2492.84, 2574.42], [2482.6, 2563.88], [2476.9, 2569.43], [2485.21, 2577.96], [2486.93, 2576.28], [2488.86, 2578.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2351.78, 2779.96], [2348.94, 2776.69], [2344.03, 2780.94], [2346.88, 2784.21], [2351.78, 2779.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2461.13, 2661.67], [2450.43, 2651.42], [2444.46, 2657.66], [2455.16, 2667.9], [2461.13, 2661.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2333.03, 2670.91], [2329.88, 2667.69], [2326.15, 2671.35], [2329.31, 2674.56], [2333.03, 2670.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2330.62, 2743.7], [2325.1, 2738.79], [2324.04, 2740.0], [2319.91, 2736.32], [2315.95, 2740.78], [2319.8, 2744.19], [2315.32, 2749.23], [2321.12, 2754.39], [2330.62, 2743.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2920.78, 2695.64], [2920.42, 2691.05], [2918.18, 2691.24], [2917.85, 2687.03], [2905.42, 2688.02], [2906.11, 2696.81], [2920.78, 2695.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2603.83, 2518.74], [2594.29, 2509.56], [2588.18, 2515.93], [2597.73, 2525.09], [2603.83, 2518.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2773.21, 2682.09], [2771.34, 2680.16], [2767.36, 2684.03], [2769.23, 2685.95], [2773.21, 2682.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[2598.83, 2465.19], [2587.97, 2454.07], [2583.27, 2458.66], [2585.58, 2461.03], [2584.72, 2461.86], [2593.28, 2470.61], [2598.83, 2465.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2568.22, 2411.71], [2564.58, 2407.71], [2559.74, 2412.11], [2563.37, 2416.11], [2568.22, 2411.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2431.92, 2799.96], [2435.95, 2796.07], [2436.97, 2797.12], [2443.11, 2791.18], [2442.91, 2791.01], [2437.22, 2785.13], [2427.07, 2794.95], [2431.92, 2799.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2359.03, 2534.46], [2354.55, 2529.89], [2351.85, 2532.53], [2356.34, 2537.11], [2359.03, 2534.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2425.58, 2553.43], [2419.91, 2547.38], [2410.5, 2556.19], [2416.18, 2562.24], [2425.58, 2553.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2443.52, 2589.62], [2451.36, 2581.83], [2450.83, 2581.29], [2452.52, 2579.61], [2447.14, 2574.2], [2445.14, 2576.19], [2444.45, 2575.49], [2436.41, 2583.49], [2437.2, 2584.29], [2436.02, 2585.46], [2440.16, 2589.62], [2441.85, 2587.94], [2443.52, 2589.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2699.92, 2681.52], [2694.49, 2676.01], [2688.34, 2682.08], [2693.76, 2687.58], [2699.92, 2681.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2441.32, 2625.4], [2431.07, 2615.56], [2426.98, 2619.82], [2427.88, 2620.68], [2425.89, 2622.74], [2435.25, 2631.73], [2441.32, 2625.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2368.62, 2559.21], [2365.0, 2556.01], [2360.99, 2560.56], [2364.6, 2563.75], [2368.62, 2559.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2503.1, 2491.66], [2498.23, 2486.93], [2491.82, 2493.51], [2497.78, 2499.32], [2500.08, 2496.97], [2498.98, 2495.9], [2503.1, 2491.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2541.31, 2364.47], [2536.36, 2359.21], [2530.31, 2364.9], [2535.26, 2370.16], [2541.31, 2364.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2451.58, 2722.53], [2444.71, 2715.81], [2434.5, 2726.25], [2435.67, 2727.39], [2432.62, 2730.5], [2438.31, 2736.07], [2451.58, 2722.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2976.08, 2591.93], [2975.92, 2589.39], [2977.02, 2589.32], [2976.23, 2577.53], [2966.32, 2578.2], [2967.12, 2590.25], [2968.24, 2590.17], [2968.39, 2592.45], [2976.08, 2591.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2330.36, 2804.13], [2326.74, 2800.51], [2320.84, 2806.39], [2324.46, 2810.02], [2330.36, 2804.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2488.19, 2390.95], [2480.32, 2383.23], [2477.51, 2386.09], [2479.57, 2388.1], [2476.36, 2391.37], [2482.18, 2397.08], [2488.19, 2390.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2403.07, 2481.88], [2407.3, 2477.53], [2405.29, 2475.58], [2405.89, 2474.97], [2397.85, 2467.14], [2395.91, 2469.12], [2394.27, 2467.51], [2391.61, 2470.24], [2393.15, 2471.75], [2391.53, 2473.41], [2399.4, 2481.08], [2400.79, 2479.66], [2403.07, 2481.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2206.84, 2791.22], [2219.05, 2777.97], [2218.44, 2777.41], [2220.91, 2774.72], [2216.94, 2771.06], [2214.39, 2773.83], [2213.32, 2772.86], [2205.92, 2780.91], [2207.07, 2781.96], [2204.94, 2784.27], [2200.98, 2780.62], [2195.88, 2786.17], [2199.98, 2789.94], [2202.49, 2787.2], [2206.84, 2791.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2357.02, 2569.13], [2353.92, 2566.07], [2352.71, 2567.29], [2349.58, 2564.19], [2342.74, 2571.1], [2348.95, 2577.26], [2357.02, 2569.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2571.49, 2469.71], [2565.3, 2463.55], [2560.28, 2468.61], [2566.48, 2474.76], [2571.49, 2469.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2458.24, 2522.32], [2452.12, 2516.49], [2439.89, 2529.32], [2446.01, 2535.15], [2458.24, 2522.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2549.24, 2610.52], [2546.9, 2608.26], [2543.16, 2612.13], [2545.51, 2614.4], [2549.24, 2610.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2324.79, 2560.11], [2328.61, 2556.58], [2326.57, 2554.4], [2327.97, 2553.12], [2320.21, 2544.78], [2319.46, 2545.48], [2318.18, 2544.11], [2315.24, 2546.83], [2316.89, 2548.6], [2314.29, 2551.0], [2321.94, 2559.23], [2323.04, 2558.23], [2324.79, 2560.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2278.77, 2748.95], [2273.88, 2744.38], [2268.55, 2750.09], [2273.43, 2754.66], [2278.77, 2748.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2841.62, 2755.55], [2830.14, 2751.86], [2827.51, 2760.03], [2838.99, 2763.72], [2841.62, 2755.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2538.23, 2468.39], [2535.83, 2465.8], [2526.2, 2474.75], [2532.1, 2481.11], [2540.96, 2472.87], [2537.46, 2469.1], [2538.23, 2468.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2563.75, 2499.02], [2551.48, 2486.46], [2545.36, 2492.43], [2557.64, 2504.99], [2563.75, 2499.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2553.32, 2402.74], [2548.37, 2398.22], [2543.56, 2403.49], [2548.51, 2408.01], [2553.32, 2402.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2621.61, 2501.92], [2611.02, 2491.18], [2605.86, 2496.26], [2616.45, 2507.01], [2621.61, 2501.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2974.97, 2674.99], [2974.2, 2663.48], [2965.76, 2664.04], [2966.22, 2670.84], [2968.48, 2670.7], [2968.8, 2675.39], [2974.97, 2674.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2969.77, 2557.12], [2968.85, 2546.44], [2958.24, 2547.35], [2958.93, 2555.35], [2962.22, 2555.06], [2962.45, 2557.75], [2969.77, 2557.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2733.7, 2644.02], [2728.84, 2639.81], [2727.5, 2641.34], [2718.5, 2633.54], [2713.45, 2639.36], [2723.06, 2647.69], [2726.22, 2644.05], [2730.47, 2647.73], [2733.7, 2644.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2531.03, 2378.14], [2527.54, 2374.28], [2522.82, 2378.56], [2526.31, 2382.42], [2531.03, 2378.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2247.87, 2802.3], [2244.23, 2798.72], [2242.56, 2800.43], [2241.63, 2799.52], [2234.71, 2806.57], [2239.85, 2811.61], [2246.44, 2804.9], [2245.87, 2804.33], [2247.87, 2802.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2180.42, 2737.28], [2176.96, 2733.67], [2174.5, 2736.03], [2173.82, 2735.32], [2167.99, 2740.92], [2170.17, 2743.19], [2168.89, 2744.42], [2173.15, 2748.86], [2180.75, 2741.56], [2178.46, 2739.17], [2180.42, 2737.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2572.97, 2560.35], [2568.08, 2555.78], [2563.02, 2561.19], [2567.91, 2565.76], [2572.97, 2560.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2543.17, 2582.67], [2532.37, 2573.19], [2526.48, 2579.89], [2537.28, 2589.38], [2543.17, 2582.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2385.95, 2612.15], [2394.63, 2603.53], [2392.5, 2601.38], [2394.33, 2599.56], [2392.77, 2597.97], [2390.82, 2599.9], [2387.8, 2596.86], [2377.36, 2607.24], [2381.47, 2611.38], [2383.33, 2609.53], [2385.95, 2612.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2967.48, 2723.97], [2966.4, 2713.55], [2962.12, 2713.99], [2962.25, 2715.19], [2959.33, 2715.49], [2959.67, 2718.72], [2958.63, 2718.82], [2959.25, 2724.82], [2967.48, 2723.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2384.3, 2591.76], [2379.7, 2586.83], [2372.73, 2593.35], [2373.13, 2593.78], [2369.48, 2597.2], [2370.09, 2597.86], [2368.64, 2599.22], [2373.84, 2604.79], [2384.95, 2594.4], [2383.32, 2592.66], [2384.3, 2591.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2472.11, 2743.42], [2465.8, 2737.51], [2456.9, 2747.04], [2463.2, 2752.95], [2472.11, 2743.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2669.47, 2482.81], [2664.34, 2476.96], [2653.68, 2486.29], [2658.81, 2492.15], [2669.47, 2482.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2720.77, 2730.38], [2713.86, 2724.46], [2705.93, 2733.71], [2712.84, 2739.63], [2720.77, 2730.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2727.58, 2790.73], [2724.3, 2787.73], [2722.1, 2790.13], [2721.0, 2789.13], [2715.34, 2795.3], [2720.94, 2800.43], [2726.85, 2793.96], [2725.63, 2792.85], [2727.58, 2790.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2938.08, 2732.74], [2935.23, 2725.15], [2925.71, 2728.73], [2927.28, 2732.93], [2929.77, 2731.99], [2931.04, 2735.38], [2938.08, 2732.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2559.44, 2565.32], [2550.16, 2556.54], [2546.89, 2559.99], [2556.16, 2568.78], [2559.44, 2565.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2610.56, 2593.21], [2604.57, 2587.61], [2596.39, 2596.36], [2602.37, 2601.96], [2610.56, 2593.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2581.68, 2481.85], [2571.0, 2472.12], [2566.18, 2477.4], [2567.26, 2478.4], [2565.92, 2479.87], [2575.51, 2488.63], [2581.68, 2481.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2673.08, 2794.55], [2668.14, 2789.77], [2660.06, 2798.16], [2666.44, 2804.32], [2672.46, 2798.08], [2671.02, 2796.7], [2673.08, 2794.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2648.26, 2652.21], [2652.47, 2648.31], [2654.09, 2650.05], [2661.1, 2643.54], [2656.43, 2638.5], [2649.17, 2645.23], [2649.97, 2646.09], [2646.0, 2649.78], [2648.26, 2652.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2383.49, 2526.14], [2389.77, 2519.57], [2383.67, 2513.74], [2376.71, 2521.03], [2379.97, 2524.16], [2380.66, 2523.44], [2383.49, 2526.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2476.26, 2415.14], [2472.79, 2411.55], [2468.93, 2415.3], [2472.39, 2418.88], [2476.26, 2415.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2521.96, 2544.35], [2510.92, 2533.33], [2509.22, 2535.05], [2507.17, 2533.0], [2504.34, 2535.84], [2506.31, 2537.81], [2503.81, 2540.31], [2514.92, 2551.4], [2521.96, 2544.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2778.75, 2704.1], [2772.32, 2697.83], [2766.54, 2703.77], [2772.97, 2710.03], [2778.75, 2704.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2421.24, 2642.97], [2414.24, 2635.86], [2408.42, 2641.61], [2417.21, 2650.53], [2422.39, 2645.42], [2420.6, 2643.6], [2421.24, 2642.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2570.33, 2570.8], [2567.68, 2568.46], [2563.6, 2573.09], [2566.25, 2575.42], [2570.33, 2570.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2724.61, 2744.61], [2719.84, 2740.02], [2715.62, 2744.4], [2720.4, 2748.99], [2724.61, 2744.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2711.88, 2521.99], [2705.04, 2515.21], [2695.85, 2524.81], [2696.69, 2525.78], [2694.56, 2528.09], [2700.21, 2533.25], [2702.26, 2531.14], [2702.83, 2531.73], [2711.88, 2521.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2649.41, 2659.69], [2644.84, 2655.41], [2640.14, 2660.44], [2644.72, 2664.72], [2649.41, 2659.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2436.28, 2703.97], [2430.59, 2698.05], [2421.85, 2706.44], [2427.54, 2712.36], [2436.28, 2703.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2567.62, 2422.49], [2563.22, 2417.76], [2558.95, 2421.75], [2563.35, 2426.46], [2567.62, 2422.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2519.65, 2598.59], [2510.77, 2590.41], [2505.57, 2596.06], [2514.45, 2604.24], [2519.65, 2598.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2596.13, 2599.74], [2593.03, 2596.62], [2586.39, 2603.21], [2589.49, 2606.33], [2596.13, 2599.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2432.2, 2633.99], [2423.05, 2626.24], [2420.98, 2628.68], [2422.45, 2629.93], [2418.51, 2634.59], [2426.19, 2641.09], [2432.2, 2633.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2270.65, 2763.91], [2264.11, 2757.64], [2255.33, 2766.8], [2261.87, 2773.08], [2270.65, 2763.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2540.21, 2613.59], [2534.27, 2607.56], [2525.1, 2616.6], [2531.04, 2622.63], [2540.21, 2613.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2955.32, 2763.55], [2968.14, 2751.65], [2957.07, 2740.09], [2944.51, 2751.84], [2955.32, 2763.55]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.177, "pop": 0, "jobs": 177}}, {"shape": {"outer": [[2635.15, 2474.6], [2629.39, 2469.66], [2622.14, 2478.12], [2627.9, 2483.06], [2635.15, 2474.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2968.54, 2522.9], [2968.28, 2519.78], [2966.19, 2519.95], [2965.9, 2516.37], [2955.94, 2517.2], [2956.75, 2526.85], [2966.78, 2526.02], [2966.53, 2523.07], [2968.54, 2522.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2777.93, 2668.58], [2773.54, 2664.36], [2769.81, 2668.23], [2774.2, 2672.46], [2777.93, 2668.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2969.06, 2536.01], [2968.8, 2531.18], [2957.23, 2531.8], [2957.9, 2544.33], [2966.1, 2543.9], [2965.69, 2536.19], [2969.06, 2536.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2536.09, 2450.33], [2533.25, 2447.69], [2529.88, 2451.3], [2532.72, 2453.94], [2536.09, 2450.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2613.32, 2524.28], [2609.43, 2519.92], [2605.17, 2523.73], [2609.05, 2528.09], [2613.32, 2524.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2668.98, 2714.91], [2664.6, 2710.69], [2661.9, 2713.49], [2666.29, 2717.72], [2668.98, 2714.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2309.04, 2630.41], [2313.32, 2634.44], [2317.44, 2629.95], [2313.23, 2625.94], [2309.04, 2630.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2519.48, 2431.32], [2516.67, 2428.45], [2512.08, 2432.97], [2514.89, 2435.84], [2519.48, 2431.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2447.02, 2487.46], [2444.25, 2484.86], [2440.77, 2488.59], [2443.54, 2491.18], [2447.02, 2487.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2500.17, 2384.69], [2489.11, 2374.83], [2483.61, 2381.01], [2494.67, 2390.86], [2500.17, 2384.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2725.57, 2558.77], [2712.99, 2546.08], [2693.43, 2566.05], [2699.77, 2572.17], [2708.62, 2563.02], [2717.18, 2571.32], [2725.36, 2562.41], [2733.94, 2570.94], [2737.22, 2567.77], [2733.46, 2563.93], [2743.29, 2550.77], [2739.64, 2546.94], [2725.57, 2558.77]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.381, "pop": 0, "jobs": 381}}, {"shape": {"outer": [[2600.43, 2774.04], [2603.75, 2770.5], [2594.67, 2762.0], [2589.55, 2767.48], [2596.25, 2773.74], [2598.06, 2771.81], [2600.43, 2774.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2692.63, 2672.58], [2685.97, 2665.56], [2679.02, 2672.16], [2682.85, 2676.21], [2681.35, 2677.63], [2684.16, 2680.59], [2692.63, 2672.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2596.55, 2431.83], [2599.2, 2429.59], [2600.15, 2430.71], [2606.78, 2425.11], [2599.82, 2416.88], [2592.91, 2422.73], [2597.05, 2427.62], [2594.68, 2429.62], [2596.55, 2431.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2340.88, 2702.98], [2336.79, 2699.07], [2332.99, 2703.04], [2337.09, 2706.95], [2340.88, 2702.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2784.03, 2726.23], [2786.45, 2723.7], [2788.34, 2725.52], [2791.34, 2722.39], [2782.45, 2713.84], [2780.91, 2715.44], [2782.03, 2716.52], [2778.14, 2720.56], [2784.03, 2726.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2520.91, 2788.55], [2515.13, 2783.23], [2508.14, 2790.83], [2513.93, 2796.15], [2520.91, 2788.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2933.86, 2721.32], [2933.51, 2714.03], [2924.3, 2714.46], [2924.64, 2721.75], [2933.86, 2721.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2686.26, 2746.63], [2683.34, 2744.08], [2681.56, 2746.12], [2678.63, 2743.57], [2670.09, 2753.35], [2675.93, 2758.46], [2686.26, 2746.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2445.15, 2749.0], [2446.89, 2747.04], [2447.95, 2747.97], [2461.28, 2732.93], [2454.88, 2727.25], [2446.66, 2736.52], [2448.0, 2737.7], [2441.14, 2745.44], [2445.15, 2749.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2614.29, 2753.21], [2609.61, 2747.75], [2605.71, 2751.09], [2610.39, 2756.55], [2614.29, 2753.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2464.71, 2601.18], [2470.26, 2595.77], [2461.63, 2586.93], [2457.58, 2590.88], [2458.87, 2592.21], [2456.32, 2594.69], [2462.16, 2600.69], [2463.21, 2599.66], [2464.71, 2601.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2627.61, 2550.95], [2623.81, 2547.67], [2616.37, 2556.28], [2617.13, 2556.94], [2614.86, 2559.57], [2620.53, 2564.48], [2627.47, 2556.46], [2624.83, 2554.16], [2627.61, 2550.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2417.73, 2597.64], [2411.24, 2592.66], [2408.03, 2596.83], [2414.53, 2601.81], [2417.73, 2597.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2646.45, 2627.23], [2640.97, 2621.54], [2633.13, 2629.09], [2635.11, 2631.14], [2630.99, 2635.1], [2634.48, 2638.74], [2646.45, 2627.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2259.12, 2758.18], [2253.99, 2753.15], [2248.09, 2759.17], [2248.47, 2759.54], [2246.82, 2761.22], [2251.58, 2765.88], [2259.12, 2758.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2215.07, 2667.31], [2218.36, 2663.8], [2216.75, 2662.29], [2221.97, 2656.7], [2216.67, 2651.75], [2208.47, 2660.52], [2209.3, 2661.3], [2207.1, 2663.65], [2210.95, 2667.25], [2212.84, 2665.22], [2215.07, 2667.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2370.25, 2643.14], [2363.53, 2636.6], [2349.27, 2651.27], [2355.99, 2657.8], [2370.25, 2643.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[2331.49, 2682.38], [2325.51, 2676.06], [2314.95, 2686.02], [2320.92, 2692.35], [2331.49, 2682.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2640.17, 2651.9], [2635.73, 2648.0], [2632.12, 2652.11], [2636.56, 2656.01], [2640.17, 2651.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2956.07, 2690.42], [2955.5, 2679.1], [2947.63, 2679.5], [2948.2, 2690.82], [2956.07, 2690.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2199.87, 2700.04], [2192.63, 2693.58], [2186.91, 2699.99], [2190.73, 2703.41], [2189.82, 2704.44], [2193.23, 2707.49], [2199.87, 2700.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2675.76, 2597.56], [2669.5, 2591.4], [2659.56, 2601.48], [2661.26, 2603.17], [2659.63, 2604.81], [2664.18, 2609.3], [2675.76, 2597.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2347.95, 2661.68], [2341.25, 2655.41], [2336.99, 2659.96], [2341.22, 2663.9], [2340.09, 2665.1], [2342.57, 2667.42], [2347.95, 2661.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2234.76, 2735.63], [2230.56, 2731.97], [2223.32, 2740.28], [2229.21, 2745.41], [2234.53, 2739.3], [2232.84, 2737.83], [2234.76, 2735.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2350.67, 2722.69], [2354.54, 2718.84], [2353.04, 2717.34], [2353.99, 2716.4], [2346.49, 2708.86], [2340.91, 2714.4], [2348.46, 2721.99], [2349.23, 2721.23], [2350.67, 2722.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2752.43, 2792.8], [2747.54, 2788.23], [2745.73, 2790.17], [2750.62, 2794.74], [2752.43, 2792.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2560.26, 2627.4], [2556.45, 2624.09], [2554.62, 2626.2], [2551.81, 2623.76], [2545.84, 2630.65], [2552.46, 2636.39], [2560.26, 2627.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2550.51, 2574.71], [2540.93, 2564.43], [2534.99, 2569.96], [2546.6, 2582.42], [2549.67, 2579.58], [2547.63, 2577.39], [2550.51, 2574.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2833.39, 2780.51], [2827.55, 2778.22], [2825.35, 2783.85], [2831.19, 2786.14], [2833.39, 2780.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2638.29, 2618.41], [2632.38, 2612.73], [2623.09, 2622.39], [2629.01, 2628.07], [2638.29, 2618.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2514.87, 2635.56], [2509.63, 2630.25], [2506.49, 2633.34], [2505.14, 2631.97], [2502.56, 2634.51], [2501.51, 2633.44], [2498.57, 2636.33], [2507.61, 2645.5], [2513.71, 2639.5], [2512.31, 2638.08], [2514.87, 2635.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2290.97, 2642.69], [2289.57, 2641.24], [2292.14, 2638.78], [2289.27, 2635.72], [2286.61, 2638.3], [2284.82, 2636.42], [2278.26, 2642.66], [2284.47, 2649.01], [2290.97, 2642.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2745.73, 2623.52], [2736.22, 2614.98], [2731.5, 2620.24], [2741.03, 2628.77], [2745.73, 2623.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2515.92, 2526.44], [2512.02, 2522.73], [2507.77, 2527.2], [2511.67, 2530.91], [2515.92, 2526.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2662.87, 2592.63], [2656.88, 2586.69], [2650.6, 2593.01], [2656.59, 2598.95], [2662.87, 2592.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2349.4, 2692.16], [2346.59, 2689.69], [2344.48, 2692.09], [2347.29, 2694.55], [2349.4, 2692.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[2511.54, 2780.75], [2505.93, 2775.52], [2499.68, 2782.22], [2505.28, 2787.45], [2511.54, 2780.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2451.2, 2615.24], [2442.59, 2607.04], [2440.28, 2609.47], [2439.72, 2608.94], [2435.86, 2612.98], [2445.03, 2621.73], [2451.2, 2615.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2483.49, 2560.46], [2478.64, 2555.54], [2474.61, 2559.54], [2479.46, 2564.45], [2483.49, 2560.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2734.18, 2630.21], [2728.38, 2624.66], [2722.65, 2630.65], [2728.45, 2636.19], [2734.18, 2630.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2559.8, 2576.76], [2555.56, 2572.91], [2552.43, 2576.37], [2556.67, 2580.22], [2559.8, 2576.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2658.68, 2475.65], [2652.23, 2468.86], [2645.15, 2475.59], [2648.53, 2479.17], [2646.92, 2480.7], [2649.98, 2483.93], [2658.68, 2475.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2696.52, 2629.49], [2687.18, 2618.95], [2681.27, 2624.19], [2690.61, 2634.73], [2696.52, 2629.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2647.45, 2720.12], [2641.57, 2714.32], [2640.23, 2715.67], [2638.85, 2714.3], [2634.16, 2719.04], [2635.88, 2720.74], [2635.14, 2721.48], [2640.7, 2726.97], [2647.45, 2720.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2486.22, 2411.97], [2482.2, 2407.36], [2477.29, 2411.65], [2481.31, 2416.26], [2486.22, 2411.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2318.55, 2733.34], [2312.26, 2727.23], [2306.22, 2733.44], [2312.51, 2739.55], [2318.55, 2733.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2592.25, 2593.21], [2601.65, 2583.37], [2596.23, 2578.2], [2586.83, 2588.04], [2592.25, 2593.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2433.72, 2785.0], [2430.65, 2781.58], [2427.83, 2784.12], [2425.66, 2781.71], [2417.83, 2788.77], [2423.07, 2794.59], [2433.72, 2785.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2484.72, 2523.09], [2480.0, 2518.75], [2476.06, 2523.05], [2480.78, 2527.39], [2484.72, 2523.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2316.36, 2651.76], [2311.72, 2647.09], [2307.38, 2651.4], [2312.02, 2656.08], [2316.36, 2651.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2679.39, 2687.0], [2672.05, 2680.25], [2666.52, 2686.29], [2673.85, 2693.03], [2679.39, 2687.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2486.67, 2476.22], [2480.14, 2470.19], [2473.79, 2477.05], [2480.33, 2483.09], [2486.67, 2476.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2726.06, 2659.52], [2721.16, 2654.7], [2716.39, 2659.56], [2721.29, 2664.38], [2726.06, 2659.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2406.1, 2588.34], [2399.87, 2582.75], [2394.69, 2588.54], [2402.54, 2595.57], [2405.63, 2592.1], [2404.02, 2590.66], [2406.1, 2588.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2349.64, 2536.71], [2347.38, 2534.47], [2349.2, 2532.64], [2340.66, 2524.15], [2338.34, 2526.5], [2336.98, 2525.15], [2334.23, 2527.91], [2335.91, 2529.58], [2334.96, 2530.53], [2342.92, 2538.44], [2344.97, 2536.37], [2347.49, 2538.88], [2349.64, 2536.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2533.38, 2459.17], [2530.09, 2456.19], [2529.29, 2457.09], [2528.04, 2455.97], [2517.82, 2467.3], [2524.41, 2473.24], [2533.97, 2462.64], [2531.91, 2460.79], [2533.38, 2459.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2739.98, 2583.23], [2731.59, 2574.79], [2726.06, 2580.28], [2734.46, 2588.72], [2739.98, 2583.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2814.68, 2794.18], [2799.9, 2787.56], [2796.39, 2795.39], [2811.17, 2802.01], [2814.68, 2794.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2478.39, 2676.23], [2474.33, 2671.94], [2467.92, 2678.03], [2471.99, 2682.31], [2478.39, 2676.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2509.57, 2453.9], [2517.56, 2445.24], [2510.5, 2438.73], [2500.51, 2449.53], [2504.02, 2452.77], [2506.01, 2450.61], [2509.57, 2453.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2335.15, 2546.75], [2327.38, 2538.41], [2324.0, 2541.56], [2322.42, 2539.87], [2320.4, 2541.75], [2321.86, 2543.32], [2320.52, 2544.56], [2328.42, 2553.03], [2335.15, 2546.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2431.98, 2563.25], [2425.44, 2557.14], [2416.63, 2566.57], [2423.16, 2572.67], [2431.98, 2563.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2328.84, 2700.69], [2330.41, 2699.17], [2331.13, 2699.91], [2338.71, 2692.54], [2336.37, 2690.12], [2337.74, 2688.78], [2333.57, 2684.49], [2324.49, 2693.31], [2325.23, 2694.07], [2323.78, 2695.49], [2328.84, 2700.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2348.57, 2545.68], [2344.32, 2540.93], [2341.33, 2543.62], [2345.58, 2548.37], [2348.57, 2545.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2515.24, 2421.9], [2511.54, 2417.61], [2506.57, 2421.89], [2510.27, 2426.18], [2515.24, 2421.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2302.58, 2818.62], [2304.02, 2817.2], [2304.72, 2817.92], [2316.75, 2806.05], [2310.82, 2800.04], [2298.35, 2812.34], [2299.53, 2813.53], [2298.52, 2814.52], [2302.58, 2818.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2485.72, 2633.19], [2477.16, 2624.87], [2471.08, 2631.15], [2481.27, 2641.03], [2483.82, 2638.4], [2482.19, 2636.82], [2485.72, 2633.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2446.75, 2430.6], [2438.79, 2422.62], [2433.59, 2427.79], [2441.55, 2435.78], [2446.75, 2430.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2772.08, 2694.49], [2765.63, 2688.21], [2756.46, 2697.63], [2762.91, 2703.9], [2772.08, 2694.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2654.59, 2728.26], [2650.45, 2723.9], [2646.22, 2727.9], [2650.36, 2732.27], [2654.59, 2728.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2674.61, 2696.63], [2664.18, 2687.13], [2658.9, 2692.93], [2669.32, 2702.43], [2674.61, 2696.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2288.8, 2590.12], [2299.88, 2578.77], [2292.36, 2571.72], [2281.33, 2582.95], [2288.8, 2590.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2367.35, 2807.23], [2362.7, 2802.6], [2357.83, 2807.49], [2362.47, 2812.13], [2367.35, 2807.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2569.24, 2552.11], [2563.73, 2547.3], [2562.96, 2548.19], [2560.49, 2546.03], [2554.75, 2552.61], [2562.72, 2559.57], [2569.24, 2552.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2139.21, 2748.33], [2141.08, 2750.18], [2142.37, 2748.86], [2140.5, 2747.01], [2139.21, 2748.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[2616.74, 2601.33], [2611.71, 2595.84], [2604.09, 2602.84], [2609.11, 2608.32], [2616.74, 2601.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2248.57, 2700.48], [2255.64, 2692.9], [2260.19, 2697.17], [2271.25, 2685.33], [2266.66, 2681.04], [2256.11, 2692.34], [2252.71, 2689.16], [2245.13, 2697.27], [2248.57, 2700.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2300.39, 2712.8], [2295.22, 2707.65], [2287.55, 2715.37], [2292.71, 2720.52], [2300.39, 2712.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2506.16, 2374.8], [2497.17, 2367.12], [2491.83, 2373.36], [2500.83, 2381.05], [2506.16, 2374.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2197.75, 2769.9], [2195.41, 2767.59], [2190.92, 2772.15], [2193.26, 2774.46], [2197.75, 2769.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2354.31, 2714.13], [2357.0, 2711.45], [2358.04, 2712.51], [2358.21, 2712.33], [2359.72, 2713.84], [2365.23, 2708.37], [2353.04, 2696.12], [2347.61, 2701.53], [2350.42, 2704.36], [2349.61, 2705.17], [2351.93, 2707.5], [2349.81, 2709.61], [2354.31, 2714.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2802.82, 2687.5], [2792.16, 2677.15], [2791.57, 2677.76], [2789.07, 2675.34], [2784.08, 2680.48], [2797.23, 2693.26], [2802.82, 2687.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2532.68, 2442.83], [2525.36, 2436.84], [2521.57, 2441.47], [2528.88, 2447.46], [2532.68, 2442.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2254.1, 2623.33], [2263.76, 2613.12], [2264.55, 2613.87], [2268.88, 2609.31], [2263.79, 2604.5], [2258.36, 2610.25], [2255.43, 2607.47], [2246.89, 2616.51], [2254.1, 2623.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2583.28, 2795.66], [2585.4, 2793.44], [2583.35, 2791.49], [2580.84, 2794.12], [2578.57, 2791.95], [2570.94, 2799.95], [2576.99, 2805.74], [2585.02, 2797.32], [2583.28, 2795.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2213.59, 2726.83], [2223.36, 2717.12], [2216.15, 2709.86], [2205.65, 2720.45], [2209.11, 2723.93], [2209.91, 2723.13], [2213.59, 2726.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2391.01, 2731.3], [2387.4, 2727.94], [2384.39, 2731.15], [2387.99, 2734.52], [2391.01, 2731.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2532.14, 2517.64], [2526.42, 2512.07], [2518.6, 2520.11], [2524.31, 2525.68], [2532.14, 2517.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2652.16, 2631.74], [2648.15, 2627.88], [2638.4, 2638.0], [2644.25, 2643.65], [2652.33, 2635.27], [2650.49, 2633.49], [2652.16, 2631.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2845.73, 2785.55], [2840.06, 2783.44], [2837.71, 2789.77], [2843.38, 2791.86], [2845.73, 2785.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2575.89, 2612.38], [2569.04, 2605.38], [2563.08, 2611.2], [2569.93, 2618.21], [2575.89, 2612.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2637.7, 2550.39], [2642.41, 2554.8], [2646.74, 2550.4], [2642.03, 2545.88], [2637.7, 2550.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2627.16, 2606.98], [2622.22, 2601.86], [2613.11, 2610.66], [2619.03, 2616.81], [2625.19, 2610.86], [2624.2, 2609.83], [2627.16, 2606.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2450.16, 2669.27], [2440.64, 2660.61], [2435.24, 2666.55], [2444.76, 2675.21], [2450.16, 2669.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2455.42, 2610.95], [2460.78, 2605.18], [2450.33, 2595.54], [2444.97, 2601.19], [2455.42, 2610.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2967.18, 2570.57], [2966.67, 2563.31], [2960.05, 2563.77], [2960.55, 2571.03], [2967.18, 2570.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2944.05, 2693.7], [2943.85, 2690.11], [2946.6, 2689.95], [2945.98, 2678.96], [2937.82, 2679.41], [2938.55, 2692.46], [2941.41, 2692.3], [2941.49, 2693.84], [2944.05, 2693.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2726.41, 2596.79], [2730.75, 2592.73], [2720.89, 2582.19], [2716.06, 2586.73], [2718.55, 2589.38], [2717.57, 2590.31], [2722.73, 2595.83], [2724.21, 2594.44], [2726.41, 2596.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2721.08, 2765.42], [2714.33, 2757.91], [2707.76, 2763.82], [2710.9, 2767.31], [2703.86, 2773.63], [2708.4, 2778.69], [2715.3, 2772.5], [2714.35, 2771.45], [2721.08, 2765.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2574.31, 2605.53], [2578.0, 2601.49], [2578.91, 2602.32], [2579.86, 2601.28], [2582.71, 2603.88], [2587.87, 2598.22], [2583.41, 2594.16], [2579.33, 2598.62], [2578.37, 2597.75], [2576.22, 2600.11], [2572.96, 2597.13], [2569.39, 2601.04], [2574.31, 2605.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2712.17, 2790.88], [2718.2, 2784.62], [2712.04, 2778.7], [2703.84, 2787.21], [2706.8, 2790.05], [2708.97, 2787.8], [2712.17, 2790.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2958.85, 2672.44], [2958.37, 2666.69], [2954.32, 2667.03], [2954.8, 2672.78], [2958.85, 2672.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2509.24, 2399.66], [2504.49, 2395.7], [2500.48, 2400.52], [2505.23, 2404.48], [2509.24, 2399.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2970.14, 2632.88], [2969.32, 2622.72], [2961.5, 2623.35], [2962.32, 2633.51], [2970.14, 2632.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2549.84, 2621.75], [2543.63, 2615.1], [2536.98, 2621.32], [2543.19, 2627.97], [2549.84, 2621.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2261.58, 2676.37], [2255.13, 2670.63], [2246.18, 2680.71], [2252.62, 2686.44], [2261.58, 2676.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2419.52, 2577.97], [2414.12, 2572.98], [2408.56, 2579.02], [2413.96, 2584.0], [2419.52, 2577.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2424.25, 2774.21], [2417.41, 2767.73], [2408.75, 2776.86], [2413.24, 2781.1], [2412.49, 2781.89], [2414.86, 2784.14], [2424.25, 2774.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2462.31, 2447.63], [2456.68, 2442.37], [2449.02, 2450.57], [2454.65, 2455.82], [2462.31, 2447.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2420.38, 2461.39], [2409.76, 2450.76], [2403.95, 2456.57], [2414.56, 2467.18], [2420.38, 2461.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2150.2, 2732.05], [2159.67, 2721.99], [2152.91, 2715.58], [2143.31, 2725.46], [2150.2, 2732.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2672.35, 2576.79], [2667.3, 2572.4], [2662.38, 2578.05], [2667.43, 2582.46], [2672.35, 2576.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2398.76, 2724.68], [2391.29, 2717.23], [2385.37, 2723.17], [2392.85, 2730.62], [2398.76, 2724.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2403.34, 2757.08], [2396.37, 2750.36], [2391.08, 2755.84], [2393.0, 2757.7], [2390.71, 2760.07], [2395.75, 2764.94], [2403.34, 2757.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2632.55, 2751.56], [2626.78, 2745.72], [2619.47, 2752.95], [2621.49, 2755.01], [2619.52, 2756.95], [2623.25, 2760.74], [2632.55, 2751.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2341.98, 2539.19], [2333.71, 2531.45], [2331.89, 2533.4], [2330.03, 2531.65], [2327.48, 2534.39], [2329.29, 2536.09], [2327.79, 2537.71], [2336.1, 2545.48], [2341.98, 2539.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2418.84, 2751.77], [2413.82, 2747.2], [2410.25, 2751.11], [2415.28, 2755.68], [2418.84, 2751.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2976.94, 2724.99], [2976.08, 2710.89], [2969.55, 2711.29], [2970.41, 2725.39], [2976.94, 2724.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2407.25, 2554.54], [2416.67, 2544.12], [2410.5, 2538.54], [2408.57, 2540.66], [2408.2, 2540.34], [2399.32, 2550.16], [2402.72, 2553.24], [2404.12, 2551.71], [2407.25, 2554.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2583.05, 2569.48], [2577.73, 2563.31], [2571.99, 2568.25], [2577.31, 2574.43], [2583.05, 2569.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2330.0, 2604.34], [2324.1, 2598.37], [2317.04, 2605.34], [2322.94, 2611.31], [2330.0, 2604.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2478.13, 2656.82], [2471.99, 2652.16], [2469.05, 2656.03], [2475.19, 2660.69], [2478.13, 2656.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2721.9, 2600.99], [2713.09, 2591.43], [2708.99, 2595.23], [2710.48, 2596.84], [2708.38, 2598.77], [2715.7, 2606.71], [2721.9, 2600.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2176.05, 2755.36], [2172.7, 2752.16], [2164.88, 2760.36], [2168.24, 2763.56], [2176.05, 2755.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2561.32, 2381.28], [2554.61, 2374.25], [2543.48, 2384.85], [2550.2, 2391.89], [2561.32, 2381.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2495.18, 2628.09], [2498.67, 2624.59], [2496.65, 2622.58], [2498.2, 2621.01], [2490.05, 2612.92], [2483.89, 2619.12], [2492.3, 2627.46], [2493.41, 2626.34], [2495.18, 2628.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2379.5, 2514.37], [2375.2, 2509.7], [2366.97, 2517.27], [2371.25, 2521.94], [2379.5, 2514.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2587.93, 2530.54], [2590.7, 2527.8], [2592.65, 2529.78], [2594.92, 2527.53], [2593.78, 2526.37], [2595.09, 2525.07], [2588.09, 2517.98], [2581.74, 2524.26], [2587.93, 2530.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[1984.92, 2834.74], [1980.78, 2815.56], [1966.34, 2818.66], [1965.21, 2813.35], [1920.66, 2822.8], [1922.88, 2833.22], [1920.51, 2833.78], [1923.59, 2847.82], [1984.92, 2834.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.938, "pop": 0, "jobs": 938}}, {"shape": {"outer": [[2817.59, -1238.87], [2818.69, -1239.93], [2819.1, -1239.51], [2825.07, -1245.42], [2826.29, -1244.13], [2828.94, -1246.67], [2827.63, -1248.05], [2828.5, -1248.87], [2827.76, -1249.64], [2836.05, -1257.92], [2830.68, -1263.57], [2827.69, -1260.73], [2827.01, -1261.46], [2821.22, -1255.96], [2820.46, -1256.76], [2817.52, -1253.97], [2816.27, -1255.2], [2817.46, -1256.32], [2817.57, -1258.62], [2816.14, -1260.09], [2813.79, -1260.02], [2813.04, -1259.32], [2811.59, -1260.86], [2810.69, -1260.0], [2805.23, -1265.75], [2801.1, -1261.82], [2803.77, -1259.01], [2801.76, -1257.09], [2807.35, -1251.22], [2806.78, -1250.62], [2806.89, -1249.62], [2809.72, -1246.81], [2808.2, -1245.38], [2812.95, -1240.38], [2814.6, -1241.95], [2817.59, -1238.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.362, "pop": 181, "jobs": 0}}, {"shape": {"outer": [[2796.76, -1485.22], [2801.22, -1470.99], [2809.19, -1473.48], [2809.03, -1474.0], [2812.14, -1474.97], [2809.52, -1483.34], [2805.05, -1481.94], [2803.38, -1487.29], [2796.76, -1485.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2843.2, -1374.22], [2841.72, -1378.1], [2843.31, -1378.71], [2839.73, -1387.88], [2832.72, -1385.21], [2837.78, -1372.15], [2843.2, -1374.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2809.03, -1515.91], [2807.46, -1520.12], [2807.02, -1519.95], [2805.07, -1525.22], [2796.48, -1522.09], [2797.59, -1519.12], [2793.86, -1517.73], [2797.54, -1507.84], [2809.86, -1512.35], [2808.59, -1515.74], [2809.03, -1515.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[2845.14, -1416.01], [2841.87, -1427.21], [2833.99, -1424.91], [2837.27, -1413.72], [2845.14, -1416.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2800.0, -1398.0], [2798.88, -1401.82], [2794.88, -1400.68], [2795.99, -1396.86], [2800.0, -1398.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2676.99, -1534.85], [2685.06, -1536.13], [2683.9, -1543.41], [2675.83, -1542.13], [2676.99, -1534.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2672.85, -1551.07], [2672.46, -1554.46], [2668.67, -1554.02], [2668.44, -1556.03], [2654.54, -1554.42], [2655.52, -1545.93], [2669.63, -1547.56], [2669.28, -1550.66], [2672.85, -1551.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2846.32, -1551.43], [2854.52, -1552.33], [2853.95, -1557.43], [2845.75, -1556.51], [2846.32, -1551.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2817.06, -1476.25], [2828.18, -1479.64], [2825.57, -1488.14], [2822.04, -1487.05], [2820.75, -1491.24], [2813.17, -1488.92], [2817.06, -1476.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2769.62, -1482.78], [2761.47, -1479.54], [2766.75, -1466.33], [2767.75, -1466.7], [2770.19, -1460.62], [2777.34, -1463.5], [2769.62, -1482.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2779.62, -1558.58], [2776.82, -1565.53], [2769.31, -1562.45], [2772.1, -1555.51], [2779.62, -1558.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2674.29, -1533.47], [2673.69, -1537.28], [2670.82, -1536.84], [2670.19, -1540.84], [2659.19, -1539.08], [2660.43, -1531.28], [2674.29, -1533.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2799.62, -1238.97], [2794.57, -1243.43], [2789.62, -1237.93], [2794.67, -1233.47], [2799.62, -1238.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2820.93, -1572.42], [2830.76, -1576.25], [2827.83, -1583.75], [2817.99, -1579.92], [2820.93, -1572.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2651.61, -1517.69], [2649.68, -1522.25], [2642.28, -1519.1], [2644.21, -1514.55], [2651.61, -1517.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2704.9, -1467.05], [2707.63, -1467.88], [2707.83, -1467.18], [2716.85, -1469.99], [2714.59, -1477.46], [2705.59, -1474.65], [2705.69, -1474.29], [2702.97, -1473.47], [2704.9, -1467.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2620.94, -1574.37], [2619.48, -1578.98], [2612.03, -1576.64], [2613.48, -1572.02], [2620.94, -1574.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2703.73, -1392.12], [2702.41, -1396.15], [2696.19, -1394.19], [2697.51, -1390.17], [2703.73, -1392.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2781.54, -1428.41], [2785.29, -1416.43], [2787.21, -1417.04], [2791.07, -1404.73], [2807.02, -1409.67], [2803.11, -1422.16], [2795.57, -1419.85], [2791.88, -1431.66], [2781.54, -1428.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.282, "pop": 141, "jobs": 0}}, {"shape": {"outer": [[2813.47, -1384.53], [2809.64, -1394.93], [2800.54, -1391.53], [2804.38, -1381.11], [2813.47, -1384.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2823.06, -1221.47], [2816.32, -1227.76], [2809.66, -1220.7], [2816.41, -1214.41], [2823.06, -1221.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2834.98, -1349.86], [2843.1, -1358.51], [2834.57, -1366.51], [2826.46, -1357.86], [2834.98, -1349.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2793.63, -1527.86], [2802.8, -1531.48], [2797.85, -1544.01], [2788.92, -1540.48], [2789.7, -1538.45], [2784.15, -1536.25], [2786.21, -1531.05], [2791.54, -1533.15], [2793.63, -1527.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2739.97, -1529.17], [2740.91, -1524.47], [2740.51, -1524.38], [2742.14, -1516.36], [2751.25, -1518.11], [2750.5, -1521.99], [2753.92, -1522.69], [2752.95, -1527.54], [2755.97, -1528.15], [2755.16, -1532.19], [2739.97, -1529.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2755.23, -1324.98], [2749.66, -1322.5], [2750.25, -1321.2], [2746.57, -1319.56], [2749.16, -1313.69], [2747.92, -1313.16], [2750.86, -1306.54], [2747.46, -1305.04], [2749.7, -1299.98], [2753.84, -1301.82], [2754.71, -1299.85], [2761.4, -1302.81], [2761.87, -1301.75], [2772.49, -1306.46], [2769.04, -1314.25], [2761.5, -1310.9], [2755.23, -1324.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.27, "pop": 135, "jobs": 0}}, {"shape": {"outer": [[2825.41, -1430.96], [2822.96, -1439.01], [2820.73, -1438.32], [2820.42, -1439.35], [2816.87, -1438.26], [2817.18, -1437.23], [2812.85, -1435.92], [2817.08, -1422.04], [2821.81, -1423.47], [2820.03, -1429.31], [2825.41, -1430.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2785.61, -1547.99], [2793.77, -1551.49], [2788.43, -1563.94], [2780.26, -1560.45], [2785.61, -1547.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[2844.77, -1539.08], [2836.57, -1536.27], [2840.59, -1524.5], [2841.74, -1524.89], [2842.49, -1522.7], [2849.55, -1525.11], [2844.77, -1539.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2792.03, -1519.26], [2790.27, -1524.25], [2783.69, -1521.91], [2785.46, -1516.94], [2792.03, -1519.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2855.85, -1497.89], [2854.43, -1502.88], [2848.86, -1501.28], [2850.28, -1496.29], [2855.85, -1497.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2833.51, -1407.73], [2832.3, -1414.45], [2825.83, -1413.25], [2827.04, -1406.52], [2833.51, -1407.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2787.49, -1539.97], [2786.55, -1546.34], [2779.27, -1545.3], [2780.21, -1538.93], [2787.49, -1539.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2841.7, -1215.19], [2859.25, -1225.99], [2855.22, -1232.54], [2847.97, -1228.08], [2847.62, -1228.65], [2851.54, -1231.06], [2848.26, -1236.38], [2844.41, -1234.0], [2843.44, -1235.57], [2852.2, -1240.96], [2853.3, -1239.18], [2863.76, -1245.62], [2859.13, -1253.13], [2849.51, -1247.19], [2849.26, -1247.59], [2827.73, -1234.34], [2827.98, -1233.94], [2831.54, -1228.15], [2832.93, -1229.0], [2834.25, -1226.84], [2833.38, -1223.46], [2836.39, -1218.56], [2840.14, -1217.6], [2840.19, -1217.64], [2841.7, -1215.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.48, "pop": 240, "jobs": 0}}, {"shape": {"outer": [[2655.1, -1558.16], [2677.17, -1560.52], [2678.52, -1560.66], [2677.94, -1565.77], [2676.59, -1565.61], [2676.2, -1569.11], [2657.42, -1567.14], [2657.2, -1568.6], [2651.26, -1567.93], [2651.53, -1565.52], [2649.34, -1565.27], [2650.17, -1558.03], [2655.03, -1558.58], [2655.1, -1558.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2733.75, -1450.38], [2731.44, -1457.26], [2725.86, -1455.38], [2724.55, -1454.95], [2699.26, -1446.45], [2703.89, -1432.65], [2717.45, -1437.2], [2723.61, -1439.27], [2721.64, -1445.15], [2727.21, -1447.03], [2728.52, -1447.47], [2728.18, -1448.5], [2733.75, -1450.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.324, "pop": 162, "jobs": 0}}, {"shape": {"outer": [[2683.59, -1549.64], [2682.68, -1557.14], [2674.67, -1556.18], [2675.59, -1548.67], [2683.59, -1549.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2713.62, -1331.85], [2720.23, -1334.06], [2718.82, -1338.27], [2712.21, -1336.07], [2713.62, -1331.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2785.52, -1467.33], [2793.92, -1470.17], [2791.09, -1478.47], [2782.68, -1475.63], [2785.52, -1467.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2852.8, -1208.85], [2867.96, -1204.34], [2870.47, -1194.04], [2880.89, -1196.58], [2879.84, -1200.9], [2881.07, -1201.2], [2878.41, -1212.13], [2876.98, -1211.78], [2875.3, -1218.7], [2864.47, -1216.06], [2855.71, -1218.66], [2852.8, -1208.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[2699.08, -1466.25], [2697.98, -1469.95], [2701.32, -1471.1], [2699.53, -1477.17], [2684.32, -1472.37], [2687.41, -1462.56], [2699.08, -1466.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2742.77, -1324.43], [2761.86, -1332.48], [2762.32, -1331.37], [2769.83, -1334.53], [2766.38, -1342.67], [2759.9, -1339.95], [2759.71, -1340.45], [2752.57, -1337.43], [2747.9, -1348.49], [2734.93, -1343.03], [2742.77, -1324.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.328, "pop": 164, "jobs": 0}}, {"shape": {"outer": [[2742.39, -1390.65], [2752.02, -1394.22], [2749.29, -1401.59], [2739.66, -1398.02], [2742.39, -1390.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2844.96, -1553.63], [2831.64, -1549.2], [2834.74, -1539.87], [2848.07, -1544.29], [2844.96, -1553.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2709.38, -1492.28], [2703.07, -1490.61], [2702.98, -1490.98], [2700.95, -1490.46], [2700.45, -1492.5], [2681.34, -1487.6], [2682.64, -1482.37], [2683.79, -1482.68], [2685.07, -1477.71], [2711.37, -1484.5], [2709.38, -1492.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.216, "pop": 108, "jobs": 0}}, {"shape": {"outer": [[2719.8, -1343.84], [2716.97, -1352.55], [2708.46, -1349.78], [2711.29, -1341.06], [2719.8, -1343.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2843.0, -1391.61], [2841.65, -1404.73], [2830.98, -1403.58], [2831.65, -1397.39], [2833.35, -1397.59], [2833.51, -1396.07], [2831.55, -1395.87], [2832.17, -1389.79], [2839.47, -1390.54], [2839.39, -1391.22], [2843.0, -1391.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2771.58, -1278.66], [2783.38, -1285.43], [2775.05, -1299.93], [2763.26, -1293.15], [2771.58, -1278.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[2844.11, -1434.6], [2841.32, -1443.57], [2831.04, -1440.36], [2833.84, -1431.38], [2844.11, -1434.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2698.55, -1450.47], [2704.19, -1452.23], [2704.44, -1451.41], [2720.0, -1456.27], [2719.74, -1457.1], [2717.76, -1463.51], [2710.43, -1461.23], [2709.58, -1463.96], [2707.76, -1463.37], [2707.01, -1465.75], [2701.32, -1463.96], [2702.05, -1461.68], [2699.7, -1460.95], [2700.4, -1458.69], [2696.4, -1457.44], [2696.94, -1455.67], [2696.53, -1454.86], [2697.25, -1452.35], [2698.13, -1451.82], [2698.55, -1450.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[2628.46, -1561.18], [2626.7, -1565.56], [2619.34, -1562.6], [2621.11, -1558.22], [2628.46, -1561.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2659.74, -1499.37], [2657.56, -1505.13], [2650.0, -1502.28], [2652.17, -1496.52], [2659.74, -1499.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2875.07, -1161.22], [2870.78, -1166.03], [2864.72, -1160.66], [2869.02, -1155.85], [2875.07, -1161.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2688.31, -1438.01], [2686.77, -1442.28], [2678.88, -1439.46], [2680.42, -1435.19], [2688.31, -1438.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2661.37, -1571.37], [2661.39, -1581.19], [2637.63, -1581.0], [2637.61, -1571.18], [2661.37, -1571.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[2741.14, -1541.52], [2751.99, -1545.12], [2749.61, -1552.26], [2746.84, -1551.26], [2744.41, -1557.18], [2741.64, -1557.08], [2741.33, -1563.89], [2734.54, -1563.67], [2734.43, -1566.34], [2727.8, -1566.02], [2728.03, -1562.62], [2727.16, -1562.58], [2727.29, -1559.04], [2726.63, -1559.02], [2726.73, -1555.5], [2728.13, -1555.6], [2728.24, -1551.73], [2740.27, -1552.19], [2741.22, -1549.74], [2738.31, -1548.67], [2741.14, -1541.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.24, "pop": 120, "jobs": 0}}, {"shape": {"outer": [[2810.76, -1489.71], [2818.57, -1492.11], [2816.06, -1500.66], [2808.24, -1498.27], [2810.76, -1489.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2735.9, -1398.87], [2729.15, -1396.41], [2728.67, -1397.78], [2721.54, -1395.21], [2722.08, -1393.66], [2713.56, -1390.53], [2716.26, -1383.13], [2738.65, -1391.28], [2735.9, -1398.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[2777.6, -1567.05], [2785.65, -1570.56], [2780.49, -1582.41], [2773.34, -1579.28], [2771.66, -1583.07], [2765.34, -1580.33], [2767.24, -1576.03], [2768.77, -1576.7], [2771.33, -1570.74], [2775.23, -1572.44], [2777.6, -1567.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2707.17, -1372.85], [2699.78, -1370.73], [2701.3, -1365.39], [2708.69, -1367.51], [2707.17, -1372.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2812.47, -1394.81], [2819.05, -1396.85], [2817.71, -1401.34], [2811.14, -1399.3], [2812.47, -1394.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2723.22, -1299.25], [2731.89, -1303.21], [2727.79, -1312.18], [2719.12, -1308.22], [2723.22, -1299.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2675.3, -1458.7], [2673.79, -1462.43], [2666.71, -1459.54], [2668.23, -1455.81], [2675.3, -1458.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2835.32, -1570.36], [2837.99, -1571.12], [2837.25, -1573.77], [2834.58, -1572.99], [2835.32, -1570.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2685.36, -1528.25], [2664.7, -1524.18], [2665.86, -1518.23], [2670.11, -1519.06], [2670.25, -1518.41], [2686.66, -1521.64], [2685.36, -1528.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2764.71, -1515.06], [2753.21, -1511.48], [2754.84, -1506.42], [2753.61, -1506.04], [2754.17, -1504.1], [2751.37, -1503.14], [2753.55, -1496.05], [2767.17, -1500.37], [2764.87, -1507.83], [2764.32, -1507.65], [2763.79, -1509.36], [2766.25, -1510.13], [2764.71, -1515.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[2814.18, -1379.09], [2815.65, -1375.05], [2814.78, -1374.74], [2815.58, -1372.53], [2816.51, -1372.86], [2819.18, -1365.55], [2826.91, -1368.39], [2824.06, -1376.21], [2822.49, -1375.63], [2820.33, -1381.34], [2814.18, -1379.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2831.03, -1569.19], [2823.07, -1565.83], [2827.13, -1556.17], [2835.11, -1559.51], [2831.03, -1569.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2855.98, -1488.83], [2860.31, -1490.12], [2860.52, -1489.38], [2867.8, -1491.54], [2867.58, -1492.27], [2865.37, -1499.73], [2852.04, -1495.76], [2853.43, -1491.07], [2855.15, -1491.61], [2855.98, -1488.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2746.32, -1584.38], [2749.25, -1586.54], [2747.35, -1589.18], [2744.41, -1587.02], [2746.32, -1584.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[2670.14, -1472.53], [2669.18, -1476.37], [2662.25, -1474.65], [2663.2, -1470.8], [2670.14, -1472.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2706.78, -1378.5], [2703.97, -1387.27], [2695.2, -1384.45], [2698.02, -1375.69], [2706.78, -1378.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2732.76, -1404.23], [2730.45, -1411.08], [2727.56, -1410.09], [2727.04, -1411.71], [2727.88, -1412.49], [2728.28, -1414.14], [2727.73, -1415.69], [2726.66, -1416.59], [2725.55, -1417.03], [2724.43, -1417.1], [2719.44, -1415.41], [2719.95, -1413.87], [2717.2, -1412.94], [2716.73, -1414.34], [2711.25, -1412.48], [2712.81, -1407.85], [2712.13, -1406.38], [2712.75, -1404.59], [2714.2, -1404.01], [2716.03, -1398.58], [2732.76, -1404.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[2645.67, -1612.85], [2642.91, -1621.38], [2633.46, -1617.94], [2631.35, -1624.31], [2629.46, -1623.7], [2627.55, -1630.2], [2622.51, -1628.87], [2613.66, -1633.48], [2610.29, -1626.77], [2617.05, -1623.63], [2617.57, -1624.79], [2617.98, -1623.18], [2613.26, -1621.43], [2615.33, -1615.82], [2620.01, -1617.56], [2621.83, -1612.51], [2623.23, -1613.0], [2623.65, -1611.79], [2621.2, -1607.88], [2623.8, -1600.69], [2625.79, -1598.99], [2626.55, -1599.26], [2627.77, -1595.74], [2637.32, -1599.27], [2635.47, -1604.82], [2637.18, -1605.44], [2635.92, -1609.11], [2642.25, -1611.17], [2642.09, -1611.66], [2645.67, -1612.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.468, "pop": 234, "jobs": 0}}, {"shape": {"outer": [[2774.0, -1757.44], [2773.49, -1768.92], [2764.57, -1768.49], [2764.59, -1768.07], [2758.76, -1767.79], [2759.24, -1756.73], [2774.0, -1757.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2625.81, -2225.59], [2629.89, -2228.37], [2625.89, -2234.22], [2621.81, -2231.44], [2625.81, -2225.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2743.92, -2081.29], [2749.94, -2086.55], [2743.64, -2093.76], [2737.62, -2088.5], [2743.92, -2081.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2710.16, -1681.07], [2709.94, -1690.27], [2697.32, -1689.96], [2697.42, -1685.95], [2699.6, -1686.0], [2699.63, -1684.71], [2702.28, -1684.78], [2702.38, -1680.88], [2710.16, -1681.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[2668.35, -1664.43], [2668.29, -1667.81], [2673.83, -1667.91], [2673.7, -1674.87], [2668.15, -1674.77], [2668.13, -1675.58], [2652.19, -1675.28], [2652.4, -1664.13], [2668.35, -1664.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[2612.99, -1820.3], [2612.98, -1830.62], [2599.1, -1830.57], [2599.11, -1820.26], [2612.99, -1820.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2563.56, -1702.95], [2563.65, -1704.22], [2565.4, -1704.11], [2565.65, -1707.48], [2555.11, -1708.21], [2555.18, -1709.24], [2551.43, -1709.5], [2551.36, -1708.47], [2551.02, -1703.83], [2563.56, -1702.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2606.11, -1699.15], [2606.31, -1703.72], [2599.65, -1704.0], [2599.45, -1699.43], [2606.11, -1699.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2547.2, -1856.36], [2547.18, -1857.46], [2549.72, -1857.5], [2549.69, -1859.72], [2552.67, -1859.79], [2552.63, -1862.87], [2555.4, -1862.87], [2555.34, -1867.01], [2554.82, -1867.0], [2554.77, -1870.93], [2553.75, -1870.93], [2553.7, -1874.51], [2529.39, -1874.23], [2529.53, -1869.09], [2531.18, -1869.05], [2531.23, -1862.46], [2533.81, -1862.5], [2533.87, -1856.16], [2547.2, -1856.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.314, "pop": 157, "jobs": 0}}, {"shape": {"outer": [[2681.16, -1764.11], [2681.06, -1768.55], [2685.04, -1768.68], [2684.95, -1772.99], [2680.75, -1772.85], [2680.73, -1773.62], [2666.01, -1773.28], [2666.11, -1768.62], [2663.19, -1768.55], [2663.3, -1763.7], [2681.16, -1764.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2770.22, -1591.23], [2762.3, -1602.32], [2758.39, -1599.53], [2753.96, -1605.77], [2747.36, -1601.05], [2755.25, -1589.98], [2757.35, -1591.46], [2761.8, -1585.21], [2770.22, -1591.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.174, "pop": 87, "jobs": 0}}, {"shape": {"outer": [[2865.68, -1593.44], [2863.42, -1600.67], [2862.58, -1600.42], [2860.54, -1606.95], [2851.37, -1604.08], [2855.68, -1590.31], [2865.68, -1593.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2633.13, -1792.23], [2633.08, -1801.15], [2625.52, -1801.1], [2625.51, -1802.52], [2606.0, -1802.38], [2606.06, -1793.16], [2624.34, -1793.29], [2624.34, -1792.17], [2633.13, -1792.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2787.4, -1841.04], [2789.76, -1841.1], [2789.69, -1843.22], [2787.33, -1843.15], [2787.4, -1841.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[2721.38, -1653.15], [2721.18, -1661.47], [2711.99, -1661.24], [2712.12, -1656.16], [2713.29, -1656.19], [2713.36, -1652.96], [2721.38, -1653.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2704.08, -2030.8], [2716.85, -2044.04], [2711.12, -2049.41], [2707.72, -2045.87], [2706.56, -2046.98], [2697.17, -2037.29], [2704.08, -2030.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2503.43, -1875.25], [2513.19, -1876.75], [2511.67, -1886.67], [2501.91, -1885.18], [2503.43, -1875.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2703.45, -1811.98], [2703.38, -1818.52], [2695.35, -1818.43], [2695.42, -1811.89], [2703.45, -1811.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2705.84, -2150.73], [2707.43, -2147.85], [2705.44, -2146.75], [2709.36, -2139.66], [2725.14, -2148.38], [2724.41, -2149.67], [2726.67, -2150.93], [2722.63, -2158.24], [2720.31, -2156.95], [2719.55, -2158.32], [2705.84, -2150.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[2623.26, -1815.45], [2622.97, -1818.08], [2620.34, -1817.81], [2620.62, -1815.16], [2623.26, -1815.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2731.89, -1856.94], [2731.97, -1860.64], [2732.71, -1860.6], [2732.82, -1868.47], [2732.95, -1868.47], [2733.09, -1868.47], [2733.23, -1878.39], [2725.09, -1878.54], [2725.11, -1879.64], [2720.15, -1879.73], [2720.12, -1878.42], [2714.18, -1878.53], [2713.92, -1861.53], [2722.0, -1861.39], [2722.11, -1868.26], [2726.03, -1868.19], [2725.9, -1860.71], [2726.35, -1860.71], [2726.28, -1857.04], [2731.89, -1856.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.262, "pop": 131, "jobs": 0}}, {"shape": {"outer": [[2735.12, -1711.18], [2741.57, -1714.44], [2738.27, -1720.94], [2731.83, -1717.68], [2735.12, -1711.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2826.18, -1719.37], [2817.64, -1719.09], [2818.08, -1705.06], [2823.52, -1705.23], [2823.54, -1704.61], [2833.79, -1704.93], [2833.44, -1716.21], [2826.28, -1715.98], [2826.18, -1719.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[2612.12, -2033.27], [2613.88, -2038.69], [2610.14, -2039.91], [2612.36, -2046.93], [2603.26, -2049.88], [2599.28, -2037.43], [2612.12, -2033.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2811.4, -2266.55], [2811.5, -2276.37], [2807.01, -2276.42], [2807.0, -2275.53], [2798.22, -2275.63], [2798.13, -2266.69], [2811.4, -2266.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2821.4, -2368.6], [2825.61, -2376.14], [2804.53, -2387.91], [2799.86, -2379.53], [2806.56, -2375.79], [2806.64, -2375.95], [2815.43, -2371.04], [2815.81, -2371.72], [2821.4, -2368.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[2654.28, -1886.9], [2637.49, -1882.67], [2637.62, -1882.35], [2634.31, -1881.49], [2636.11, -1874.3], [2639.55, -1875.24], [2641.66, -1866.72], [2651.26, -1869.1], [2649.25, -1877.19], [2656.33, -1878.96], [2654.28, -1886.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.2, "pop": 100, "jobs": 0}}, {"shape": {"outer": [[2635.76, -2183.71], [2630.15, -2193.11], [2629.22, -2192.55], [2625.87, -2198.2], [2625.28, -2197.85], [2622.68, -2202.22], [2611.59, -2195.62], [2614.29, -2191.09], [2613.82, -2190.83], [2618.35, -2183.23], [2618.87, -2183.51], [2621.46, -2179.16], [2626.69, -2182.27], [2628.45, -2179.36], [2635.76, -2183.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.24, "pop": 120, "jobs": 0}}, {"shape": {"outer": [[2598.85, -1852.24], [2604.65, -1854.5], [2603.64, -1857.13], [2606.17, -1858.09], [2602.14, -1868.5], [2592.99, -1864.97], [2596.94, -1854.79], [2597.76, -1855.1], [2598.85, -1852.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[2772.8, -1981.91], [2769.59, -1978.88], [2774.29, -1973.82], [2784.52, -1983.42], [2774.35, -1994.38], [2767.32, -1987.83], [2772.8, -1981.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2729.54, -2099.7], [2740.74, -2105.47], [2730.18, -2125.96], [2721.75, -2121.61], [2728.16, -2109.18], [2725.39, -2107.75], [2729.54, -2099.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2739.35, -1837.54], [2742.07, -1837.47], [2742.12, -1840.04], [2739.42, -1840.11], [2739.35, -1837.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2639.83, -2188.64], [2647.36, -2192.25], [2642.8, -2201.89], [2644.58, -2202.73], [2640.77, -2210.77], [2638.61, -2209.74], [2636.91, -2213.26], [2628.89, -2209.45], [2634.73, -2197.24], [2635.59, -2197.65], [2639.83, -2188.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[2692.68, -1625.21], [2692.67, -1626.42], [2697.9, -1626.46], [2697.86, -1632.73], [2694.1, -1632.7], [2694.09, -1633.27], [2682.8, -1633.19], [2682.82, -1630.37], [2676.21, -1630.33], [2676.24, -1625.11], [2692.68, -1625.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2672.43, -2053.04], [2674.21, -2054.74], [2672.83, -2056.19], [2671.05, -2054.49], [2672.43, -2053.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[2808.61, -1825.79], [2810.94, -1825.85], [2810.88, -1828.35], [2808.56, -1828.29], [2808.61, -1825.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[2723.59, -1930.66], [2734.78, -1930.06], [2734.58, -1927.2], [2744.73, -1926.67], [2745.61, -1939.76], [2730.21, -1940.75], [2730.11, -1939.47], [2724.19, -1939.84], [2723.59, -1930.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.194, "pop": 97, "jobs": 0}}, {"shape": {"outer": [[2733.09, -2121.41], [2738.04, -2123.77], [2735.82, -2128.43], [2730.86, -2126.07], [2733.09, -2121.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2774.36, -1703.47], [2779.77, -1703.63], [2779.58, -1710.07], [2781.71, -1710.13], [2781.9, -1703.78], [2791.81, -1704.07], [2791.36, -1718.52], [2781.52, -1718.24], [2781.64, -1714.86], [2774.03, -1714.64], [2774.36, -1703.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[2555.27, -2033.67], [2557.89, -2042.32], [2548.63, -2044.9], [2546.0, -2036.24], [2555.27, -2033.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2615.62, -1806.83], [2615.16, -1812.61], [2611.75, -1812.32], [2611.46, -1815.59], [2603.16, -1814.93], [2603.45, -1811.85], [2602.35, -1811.76], [2602.51, -1809.73], [2603.58, -1809.82], [2603.89, -1805.88], [2615.62, -1806.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2841.29, -2260.21], [2841.34, -2263.49], [2841.9, -2263.48], [2842.08, -2274.44], [2837.25, -2274.51], [2837.22, -2272.46], [2829.78, -2272.57], [2829.64, -2263.9], [2833.91, -2263.84], [2833.86, -2260.32], [2841.29, -2260.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2619.96, -1645.34], [2618.83, -1647.95], [2620.38, -1648.9], [2621.25, -1647.5], [2621.34, -1648.98], [2627.16, -1649.17], [2627.13, -1649.62], [2627.54, -1649.63], [2627.55, -1650.79], [2627.47, -1651.93], [2627.28, -1653.06], [2627.01, -1654.17], [2626.64, -1655.26], [2626.17, -1656.31], [2625.62, -1657.32], [2624.99, -1658.28], [2624.27, -1659.17], [2624.29, -1658.44], [2617.92, -1658.23], [2617.91, -1658.7], [2614.42, -1658.59], [2614.41, -1658.86], [2610.6, -1658.73], [2610.61, -1658.46], [2610.62, -1657.99], [2610.63, -1657.48], [2609.02, -1657.43], [2609.0, -1658.23], [2606.38, -1658.17], [2606.37, -1658.71], [2601.26, -1658.6], [2601.28, -1658.06], [2601.32, -1655.81], [2600.71, -1655.51], [2600.14, -1655.16], [2599.59, -1654.76], [2599.08, -1654.31], [2598.62, -1653.83], [2599.84, -1653.87], [2599.92, -1652.7], [2600.11, -1651.54], [2600.4, -1650.41], [2600.81, -1649.31], [2601.31, -1648.26], [2601.91, -1647.25], [2603.17, -1647.93], [2603.49, -1647.4], [2604.45, -1647.94], [2607.74, -1644.22], [2610.08, -1645.37], [2612.72, -1642.13], [2619.96, -1645.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.258, "pop": 129, "jobs": 0}}, {"shape": {"outer": [[2842.91, -1804.71], [2855.7, -1805.22], [2855.29, -1815.62], [2842.73, -1815.13], [2842.57, -1819.22], [2836.59, -1818.99], [2837.01, -1808.15], [2842.76, -1808.39], [2842.91, -1804.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2841.87, -2310.31], [2842.03, -2316.08], [2843.58, -2316.03], [2843.75, -2322.33], [2831.51, -2322.69], [2831.18, -2310.63], [2841.87, -2310.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2813.88, -2180.09], [2814.59, -2192.24], [2804.9, -2192.83], [2804.19, -2180.67], [2813.88, -2180.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[2756.18, -2309.26], [2743.57, -2320.35], [2737.87, -2313.74], [2738.85, -2312.89], [2737.05, -2310.83], [2742.51, -2306.05], [2743.93, -2307.69], [2750.11, -2302.25], [2756.18, -2309.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[2854.84, -1656.62], [2854.43, -1667.99], [2845.63, -1667.66], [2845.66, -1667.02], [2839.42, -1666.79], [2839.82, -1656.04], [2841.83, -1656.14], [2841.95, -1653.28], [2847.23, -1653.42], [2847.1, -1656.31], [2854.84, -1656.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[2679.74, -1964.37], [2693.48, -1978.88], [2686.66, -1985.35], [2682.81, -1981.27], [2681.88, -1982.15], [2676.67, -1976.65], [2678.24, -1975.13], [2673.56, -1970.2], [2679.74, -1964.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[2808.83, -1656.76], [2808.41, -1667.12], [2801.07, -1666.83], [2801.1, -1666.19], [2794.15, -1665.91], [2794.56, -1656.19], [2808.83, -1656.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2696.83, -2163.68], [2703.11, -2153.09], [2718.07, -2161.96], [2712.3, -2171.69], [2705.14, -2167.44], [2704.63, -2168.31], [2696.83, -2163.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2729.19, -2017.1], [2722.47, -2024.31], [2725.54, -2027.25], [2719.99, -2033.25], [2713.77, -2027.4], [2718.91, -2021.87], [2714.43, -2017.7], [2721.55, -2010.01], [2729.19, -2017.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2600.01, -2150.15], [2608.71, -2149.41], [2609.39, -2157.42], [2600.69, -2158.16], [2600.01, -2150.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2605.11, -2032.54], [2596.14, -2035.13], [2594.23, -2028.36], [2594.53, -2028.26], [2592.3, -2020.39], [2604.16, -2017.01], [2605.39, -2021.34], [2606.24, -2021.09], [2607.89, -2026.89], [2603.84, -2028.02], [2605.11, -2032.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[2585.83, -2135.81], [2569.28, -2147.62], [2564.29, -2140.63], [2567.21, -2138.55], [2563.1, -2132.79], [2583.27, -2118.4], [2587.84, -2124.82], [2586.12, -2126.04], [2587.24, -2127.62], [2583.97, -2129.95], [2586.52, -2133.52], [2584.98, -2134.62], [2585.83, -2135.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[2753.58, -1921.31], [2772.68, -1926.98], [2769.14, -1938.88], [2750.04, -1933.21], [2753.58, -1921.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2606.35, -2000.8], [2605.86, -2008.35], [2601.25, -2008.05], [2600.86, -2014.58], [2590.53, -2013.93], [2591.08, -2005.19], [2591.66, -2005.23], [2591.99, -1999.89], [2606.35, -2000.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2581.49, -1721.64], [2584.54, -1721.73], [2584.5, -1722.64], [2592.29, -1722.87], [2592.11, -1729.09], [2584.44, -1728.87], [2584.37, -1730.93], [2574.6, -1730.64], [2574.95, -1718.9], [2581.57, -1719.09], [2581.49, -1721.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2795.36, -1705.32], [2799.56, -1705.47], [2799.62, -1704.17], [2812.91, -1704.67], [2812.54, -1714.87], [2799.15, -1714.39], [2799.19, -1712.79], [2795.06, -1712.64], [2795.36, -1705.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2746.04, -1718.3], [2753.29, -1718.45], [2753.19, -1723.74], [2745.93, -1723.58], [2746.04, -1718.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2843.88, -1719.73], [2843.68, -1727.42], [2836.98, -1727.21], [2837.19, -1719.52], [2843.88, -1719.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2847.92, -1738.07], [2848.0, -1741.96], [2845.61, -1742.02], [2845.52, -1738.12], [2847.92, -1738.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2844.91, -1980.62], [2837.54, -1988.88], [2839.8, -1990.9], [2836.32, -1994.78], [2829.95, -1989.08], [2832.47, -1986.27], [2829.43, -1983.52], [2837.76, -1974.18], [2844.91, -1980.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2775.23, -2097.62], [2776.78, -2098.9], [2774.97, -2101.08], [2773.42, -2099.79], [2775.23, -2097.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[2748.03, -1757.2], [2747.68, -1767.1], [2734.57, -1766.64], [2734.93, -1756.73], [2748.03, -1757.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2846.21, -1750.79], [2858.57, -1751.11], [2858.39, -1758.28], [2865.18, -1758.49], [2864.9, -1769.2], [2855.41, -1768.91], [2855.43, -1768.13], [2849.55, -1767.99], [2849.75, -1760.06], [2845.98, -1759.95], [2846.21, -1750.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.206, "pop": 103, "jobs": 0}}, {"shape": {"outer": [[2498.89, -1954.23], [2497.87, -1960.73], [2489.56, -1959.42], [2490.59, -1952.92], [2498.89, -1954.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2744.27, -1606.4], [2751.61, -1611.27], [2748.89, -1615.37], [2751.41, -1617.02], [2743.0, -1629.73], [2734.86, -1624.35], [2740.22, -1616.23], [2738.5, -1615.09], [2744.27, -1606.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[2727.97, -1687.52], [2727.82, -1691.26], [2721.16, -1691.01], [2721.3, -1687.27], [2727.97, -1687.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2609.79, -1672.78], [2596.0, -1672.31], [2596.26, -1665.27], [2596.39, -1665.28], [2596.46, -1662.76], [2601.57, -1662.93], [2601.49, -1665.4], [2610.04, -1665.71], [2609.79, -1672.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2763.77, -2191.82], [2762.75, -2199.12], [2764.07, -2199.41], [2764.29, -2202.32], [2769.59, -2203.73], [2769.85, -2212.39], [2764.65, -2212.53], [2764.73, -2215.4], [2753.94, -2215.7], [2753.92, -2209.62], [2758.17, -2209.56], [2758.0, -2203.72], [2755.06, -2203.3], [2756.26, -2194.32], [2756.77, -2194.4], [2757.28, -2190.94], [2763.77, -2191.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[2757.19, -2067.78], [2768.28, -2077.86], [2759.74, -2087.32], [2748.65, -2077.24], [2757.19, -2067.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[2736.91, -1664.74], [2736.95, -1669.24], [2730.68, -1669.27], [2730.64, -1664.75], [2736.91, -1664.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2625.2, -2061.23], [2607.76, -2070.01], [2601.09, -2056.47], [2608.91, -2052.51], [2610.69, -2056.06], [2612.72, -2055.04], [2613.53, -2056.65], [2621.11, -2052.85], [2625.2, -2061.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[2808.33, -1730.95], [2811.92, -1731.03], [2811.87, -1733.55], [2808.28, -1733.47], [2808.33, -1730.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2546.68, -1877.84], [2546.72, -1881.94], [2551.8, -1882.31], [2550.09, -1889.96], [2537.72, -1889.48], [2537.64, -1890.84], [2530.3, -1890.62], [2530.34, -1887.92], [2523.77, -1887.18], [2525.26, -1879.55], [2529.14, -1880.03], [2530.61, -1877.12], [2534.89, -1878.08], [2535.42, -1877.09], [2546.68, -1877.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[2669.31, -2120.03], [2676.17, -2124.66], [2671.7, -2131.37], [2664.84, -2126.74], [2669.31, -2120.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2720.92, -1704.73], [2720.84, -1707.09], [2717.04, -1706.96], [2717.12, -1704.6], [2720.92, -1704.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2808.45, -1882.84], [2805.96, -1886.76], [2807.29, -1887.61], [2801.96, -1896.05], [2785.54, -1885.62], [2791.27, -1876.67], [2801.01, -1882.86], [2803.11, -1879.44], [2808.45, -1882.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[2739.66, -1695.59], [2742.22, -1696.9], [2742.8, -1695.76], [2749.81, -1699.32], [2743.45, -1711.93], [2733.86, -1707.06], [2739.66, -1695.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2828.79, -2385.26], [2835.42, -2391.85], [2822.72, -2404.62], [2810.47, -2392.44], [2817.21, -2385.66], [2822.84, -2391.25], [2828.79, -2385.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[2649.29, -1583.32], [2649.23, -1593.6], [2629.54, -1593.48], [2629.61, -1583.2], [2649.29, -1583.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[2575.43, -2099.35], [2548.85, -2111.88], [2546.49, -2106.87], [2549.76, -2105.33], [2547.2, -2099.89], [2554.62, -2096.39], [2555.72, -2098.67], [2571.54, -2091.05], [2575.43, -2099.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.22, "pop": 110, "jobs": 0}}, {"shape": {"outer": [[2671.7, -1812.8], [2655.88, -1812.18], [2656.02, -1808.56], [2648.56, -1808.26], [2648.97, -1797.99], [2672.26, -1798.92], [2671.7, -1812.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.238, "pop": 119, "jobs": 0}}, {"shape": {"outer": [[2516.9, -1840.92], [2515.22, -1846.41], [2508.68, -1844.57], [2510.37, -1839.08], [2516.9, -1840.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2701.67, -2232.59], [2704.47, -2233.87], [2702.94, -2237.35], [2700.14, -2236.08], [2701.67, -2232.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[2624.57, -2037.17], [2616.61, -2040.0], [2613.94, -2032.37], [2621.9, -2029.55], [2624.57, -2037.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2863.0, -1630.26], [2852.29, -1631.4], [2852.17, -1630.88], [2844.69, -1631.65], [2843.94, -1623.81], [2852.15, -1622.98], [2851.39, -1615.95], [2861.88, -1614.83], [2862.84, -1623.83], [2862.35, -1623.88], [2863.0, -1630.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[2634.37, -2096.98], [2625.45, -2103.21], [2620.58, -2096.01], [2621.26, -2095.58], [2617.58, -2090.03], [2626.17, -2084.27], [2626.47, -2084.72], [2629.33, -2082.82], [2631.79, -2086.46], [2628.77, -2088.49], [2634.37, -2096.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2565.88, -1825.86], [2565.7, -1833.65], [2557.63, -1833.46], [2557.82, -1825.68], [2565.88, -1825.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2631.26, -2164.9], [2636.31, -2168.55], [2632.17, -2174.3], [2627.13, -2170.65], [2631.26, -2164.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2594.2, -1946.86], [2595.14, -1959.08], [2591.16, -1959.4], [2591.74, -1966.48], [2582.59, -1967.22], [2581.66, -1955.17], [2579.47, -1955.34], [2579.25, -1952.55], [2581.39, -1952.38], [2581.04, -1947.91], [2594.2, -1946.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[2618.52, -2152.94], [2624.19, -2157.46], [2619.16, -2163.52], [2613.64, -2159.08], [2618.52, -2152.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2803.59, -2194.77], [2804.23, -2205.36], [2796.95, -2205.79], [2796.33, -2195.21], [2803.59, -2194.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[2581.54, -2148.83], [2581.9, -2151.51], [2583.3, -2151.25], [2589.26, -2153.27], [2589.19, -2153.54], [2599.69, -2157.14], [2596.05, -2167.7], [2585.24, -2163.99], [2585.63, -2163.23], [2583.49, -2162.49], [2576.82, -2163.16], [2575.0, -2149.63], [2581.54, -2148.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.216, "pop": 108, "jobs": 0}}, {"shape": {"outer": [[2798.76, -2018.61], [2812.2, -2030.14], [2804.34, -2039.3], [2792.14, -2028.84], [2794.88, -2025.64], [2793.64, -2024.58], [2798.76, -2018.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[2716.33, -2126.45], [2730.07, -2133.85], [2724.44, -2144.44], [2710.69, -2137.04], [2716.33, -2126.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2774.81, -2045.48], [2781.56, -2051.27], [2771.78, -2062.63], [2764.29, -2056.21], [2770.07, -2049.46], [2770.81, -2050.09], [2774.81, -2045.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2772.86, -2248.31], [2780.02, -2247.57], [2780.5, -2251.86], [2773.34, -2252.61], [2772.86, -2248.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2708.45, -1695.64], [2708.11, -1705.21], [2702.15, -1704.99], [2702.17, -1704.45], [2696.76, -1704.25], [2696.87, -1701.13], [2692.34, -1700.97], [2692.56, -1695.06], [2708.45, -1695.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2622.74, -1762.26], [2622.51, -1771.33], [2607.22, -1770.94], [2607.45, -1761.87], [2622.74, -1762.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2683.76, -1634.33], [2683.6, -1642.49], [2678.1, -1642.1], [2677.91, -1646.02], [2662.06, -1645.48], [2662.44, -1633.17], [2683.76, -1634.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[2741.03, -2093.4], [2745.72, -2097.41], [2742.8, -2100.81], [2738.12, -2096.81], [2741.03, -2093.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2660.84, -1861.96], [2651.04, -1860.18], [2654.5, -1841.53], [2664.16, -1843.28], [2660.84, -1861.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2558.87, -2089.31], [2546.9, -2093.56], [2542.8, -2090.39], [2543.82, -2085.85], [2546.66, -2084.82], [2546.06, -2083.0], [2547.05, -2082.68], [2545.12, -2077.35], [2551.43, -2075.11], [2551.31, -2074.75], [2564.0, -2070.24], [2564.13, -2070.6], [2566.91, -2078.42], [2556.34, -2082.18], [2558.87, -2089.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.228, "pop": 114, "jobs": 0}}, {"shape": {"outer": [[2685.77, -1746.14], [2685.51, -1758.37], [2671.97, -1758.09], [2672.22, -1745.86], [2685.77, -1746.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2818.85, -1629.9], [2823.45, -1630.69], [2822.85, -1634.53], [2818.26, -1633.73], [2818.85, -1629.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2767.97, -1816.03], [2775.91, -1816.38], [2775.56, -1824.78], [2767.63, -1824.45], [2767.97, -1816.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2537.18, -1937.64], [2536.41, -1943.88], [2528.61, -1942.95], [2529.37, -1936.71], [2537.18, -1937.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2700.75, -1721.44], [2709.63, -1721.72], [2709.39, -1729.49], [2700.52, -1729.23], [2700.75, -1721.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2826.36, -2257.46], [2826.97, -2276.14], [2819.09, -2276.42], [2818.87, -2269.9], [2814.19, -2270.05], [2813.79, -2257.88], [2826.36, -2257.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2811.87, -2320.63], [2812.81, -2326.79], [2806.93, -2327.69], [2806.09, -2322.21], [2804.36, -2322.47], [2802.66, -2311.42], [2811.33, -2310.1], [2812.91, -2320.47], [2811.87, -2320.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2757.29, -1866.05], [2756.75, -1877.29], [2746.38, -1876.83], [2746.42, -1876.37], [2738.88, -1875.98], [2739.44, -1861.31], [2744.94, -1861.56], [2744.77, -1865.5], [2757.29, -1866.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[2629.45, -1762.37], [2633.19, -1762.38], [2633.18, -1765.38], [2629.45, -1765.37], [2629.45, -1762.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2560.66, -1796.94], [2559.84, -1804.31], [2561.23, -1804.46], [2560.7, -1809.22], [2559.34, -1809.08], [2558.8, -1813.75], [2565.67, -1814.52], [2564.73, -1822.97], [2552.58, -1821.6], [2552.92, -1818.64], [2551.42, -1818.49], [2551.88, -1814.56], [2545.35, -1813.83], [2546.1, -1806.78], [2547.34, -1806.92], [2548.6, -1795.59], [2560.66, -1796.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.274, "pop": 137, "jobs": 0}}, {"shape": {"outer": [[2824.74, -1989.03], [2832.67, -1996.62], [2829.06, -2000.39], [2830.17, -2001.46], [2827.02, -2004.75], [2825.24, -2003.04], [2821.5, -2006.95], [2814.23, -1999.99], [2824.74, -1989.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[2584.15, -1734.0], [2584.12, -1736.49], [2591.77, -1736.62], [2591.61, -1746.39], [2580.08, -1746.21], [2580.12, -1745.63], [2568.63, -1745.45], [2568.79, -1733.76], [2584.15, -1734.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.206, "pop": 103, "jobs": 0}}, {"shape": {"outer": [[2815.38, -2309.33], [2826.45, -2309.12], [2826.96, -2327.84], [2815.9, -2328.04], [2815.38, -2309.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[2589.53, -1841.02], [2589.5, -1845.83], [2583.16, -1845.79], [2583.19, -1840.98], [2589.53, -1841.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2631.71, -1835.49], [2631.21, -1837.8], [2628.21, -1837.15], [2628.71, -1834.84], [2631.71, -1835.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2658.69, -1660.2], [2659.01, -1651.1], [2678.48, -1651.76], [2678.17, -1658.98], [2671.91, -1658.76], [2671.85, -1660.67], [2658.69, -1660.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2502.35, -2011.14], [2494.81, -2011.71], [2494.15, -2002.98], [2501.69, -2002.4], [2502.35, -2011.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2787.51, -2030.54], [2799.67, -2041.36], [2792.08, -2049.88], [2779.92, -2039.06], [2787.51, -2030.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2712.59, -1693.93], [2720.72, -1694.27], [2720.43, -1701.26], [2712.3, -1700.91], [2712.59, -1693.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2753.88, -2196.37], [2749.16, -2213.33], [2749.1, -2213.32], [2747.29, -2221.17], [2738.96, -2219.27], [2739.43, -2217.23], [2729.6, -2214.99], [2732.9, -2201.02], [2739.92, -2202.59], [2739.54, -2203.94], [2741.51, -2204.4], [2744.48, -2193.75], [2753.88, -2196.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.302, "pop": 151, "jobs": 0}}, {"shape": {"outer": [[2499.48, -1924.7], [2498.96, -1931.01], [2491.01, -1930.35], [2491.53, -1924.03], [2499.48, -1924.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2782.7, -2210.22], [2774.46, -2210.57], [2774.12, -2200.08], [2780.75, -2199.8], [2780.73, -2199.15], [2784.69, -2199.03], [2784.59, -2195.88], [2791.52, -2195.67], [2791.61, -2198.8], [2791.9, -2207.65], [2782.62, -2207.95], [2782.7, -2210.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[2640.24, -1946.74], [2637.75, -1957.41], [2636.76, -1957.21], [2636.15, -1959.54], [2637.66, -1959.89], [2635.46, -1969.59], [2625.33, -1967.16], [2626.55, -1962.2], [2623.95, -1961.57], [2627.0, -1948.37], [2630.1, -1949.12], [2631.12, -1944.59], [2640.24, -1946.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.212, "pop": 106, "jobs": 0}}, {"shape": {"outer": [[2744.6, -2154.69], [2751.9, -2158.22], [2748.63, -2164.96], [2741.33, -2161.42], [2744.6, -2154.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2638.65, -2017.7], [2642.07, -2016.91], [2642.69, -2019.56], [2639.27, -2020.35], [2638.65, -2017.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2641.96, -1940.42], [2630.57, -1937.74], [2632.43, -1929.5], [2630.62, -1929.1], [2633.86, -1915.23], [2647.06, -1918.32], [2641.96, -1940.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[2703.75, -1882.16], [2695.83, -1891.5], [2688.47, -1885.25], [2697.51, -1874.61], [2694.68, -1872.24], [2698.03, -1868.27], [2707.43, -1876.21], [2702.95, -1881.49], [2703.75, -1882.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2544.61, -2045.33], [2543.53, -2045.66], [2545.91, -2053.55], [2534.56, -2056.96], [2530.13, -2042.24], [2542.56, -2038.49], [2544.61, -2045.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[2497.54, -1978.63], [2496.65, -1983.89], [2489.73, -1982.72], [2490.62, -1977.45], [2497.54, -1978.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[2719.63, -1707.46], [2719.28, -1715.03], [2713.1, -1714.81], [2713.12, -1714.28], [2710.69, -1714.19], [2711.03, -1707.15], [2719.63, -1707.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2693.96, -1896.84], [2695.41, -1903.52], [2696.28, -1903.38], [2699.63, -1918.46], [2688.77, -1920.91], [2685.59, -1906.2], [2686.55, -1905.93], [2684.98, -1898.78], [2693.96, -1896.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[2784.42, -1868.21], [2783.47, -1873.0], [2783.96, -1873.11], [2782.17, -1881.84], [2775.53, -1880.47], [2775.4, -1881.09], [2761.09, -1878.17], [2761.22, -1877.55], [2763.23, -1867.74], [2775.41, -1870.22], [2775.58, -1869.37], [2778.21, -1869.91], [2780.3, -1867.34], [2784.42, -1868.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.196, "pop": 98, "jobs": 0}}, {"shape": {"outer": [[2787.72, -1813.88], [2785.1, -1813.84], [2784.98, -1818.35], [2777.36, -1818.12], [2777.47, -1813.7], [2772.73, -1813.56], [2772.98, -1804.09], [2787.97, -1804.5], [2787.72, -1813.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2671.05, -2000.76], [2663.36, -2006.51], [2657.93, -1999.27], [2662.85, -1995.62], [2661.38, -1993.61], [2670.52, -1987.17], [2676.59, -1995.8], [2670.53, -2000.07], [2671.05, -2000.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[2716.95, -1586.38], [2716.85, -1598.4], [2716.24, -1598.4], [2716.27, -1601.32], [2708.84, -1601.3], [2708.82, -1598.49], [2705.18, -1598.42], [2705.19, -1597.9], [2701.47, -1597.86], [2705.27, -1587.09], [2705.28, -1586.29], [2716.95, -1586.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[2661.91, -2128.37], [2673.84, -2136.32], [2668.1, -2144.89], [2660.52, -2139.86], [2660.93, -2139.24], [2656.57, -2136.32], [2661.91, -2128.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2580.75, -2101.38], [2585.48, -2108.83], [2575.77, -2114.99], [2577.72, -2118.01], [2561.07, -2129.81], [2558.16, -2126.19], [2556.92, -2126.99], [2552.21, -2119.22], [2580.75, -2101.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.31, "pop": 155, "jobs": 0}}, {"shape": {"outer": [[2644.76, -2108.69], [2638.19, -2114.23], [2636.0, -2111.58], [2634.78, -2112.56], [2628.51, -2105.15], [2643.07, -2092.94], [2645.21, -2095.5], [2641.84, -2098.35], [2645.93, -2103.22], [2642.54, -2106.06], [2644.76, -2108.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2818.87, -1752.97], [2818.71, -1756.53], [2819.38, -1756.56], [2818.9, -1768.82], [2801.5, -1768.07], [2801.99, -1755.8], [2802.63, -1755.83], [2802.79, -1752.28], [2818.87, -1752.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.216, "pop": 108, "jobs": 0}}, {"shape": {"outer": [[2792.95, -1958.17], [2797.62, -1962.43], [2794.92, -1965.31], [2791.5, -1962.2], [2789.59, -1964.36], [2795.59, -1969.87], [2788.42, -1977.74], [2778.18, -1968.38], [2787.38, -1958.27], [2790.37, -1961.0], [2792.95, -1958.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[2610.98, -1935.76], [2610.8, -1939.7], [2605.71, -1939.48], [2605.89, -1935.53], [2610.98, -1935.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2848.86, -1894.52], [2856.93, -1901.78], [2854.19, -1904.82], [2853.15, -1903.9], [2843.99, -1913.85], [2836.6, -1907.2], [2844.29, -1898.88], [2844.65, -1899.2], [2848.86, -1894.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2782.42, -1767.24], [2782.75, -1758.37], [2778.62, -1758.23], [2778.91, -1748.04], [2783.28, -1748.18], [2783.27, -1748.6], [2790.55, -1748.83], [2790.39, -1753.64], [2796.45, -1753.88], [2795.99, -1767.73], [2782.42, -1767.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[2746.7, -1813.92], [2751.76, -1814.07], [2751.59, -1820.82], [2746.53, -1820.69], [2746.7, -1813.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2603.69, -2209.02], [2607.48, -2211.62], [2603.68, -2217.18], [2599.89, -2214.57], [2603.69, -2209.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2627.62, -2079.22], [2624.13, -2073.78], [2631.24, -2069.12], [2634.72, -2074.56], [2627.62, -2079.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2602.01, -1882.78], [2600.33, -1887.79], [2596.48, -1886.47], [2595.32, -1889.95], [2588.73, -1887.71], [2587.9, -1890.11], [2581.39, -1887.99], [2584.2, -1879.66], [2590.09, -1881.64], [2590.95, -1879.06], [2602.01, -1882.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2818.15, -1828.32], [2812.53, -1828.16], [2812.83, -1817.23], [2818.45, -1817.38], [2820.39, -1817.43], [2820.19, -1824.97], [2818.24, -1824.92], [2818.15, -1828.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2612.09, -1978.79], [2612.86, -1994.75], [2591.48, -1995.84], [2591.09, -1987.39], [2598.69, -1987.01], [2598.31, -1979.49], [2612.09, -1978.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.228, "pop": 114, "jobs": 0}}, {"shape": {"outer": [[2721.81, -2271.68], [2723.67, -2273.92], [2726.5, -2271.58], [2731.52, -2277.95], [2729.85, -2279.34], [2731.26, -2281.1], [2733.72, -2279.14], [2738.74, -2285.5], [2728.11, -2294.39], [2716.49, -2279.87], [2719.18, -2277.71], [2717.33, -2275.47], [2721.81, -2271.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.208, "pop": 104, "jobs": 0}}, {"shape": {"outer": [[2763.1, -1992.68], [2770.17, -1999.33], [2764.91, -2004.91], [2764.46, -2004.55], [2759.54, -2009.77], [2752.92, -2003.49], [2763.1, -1992.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2656.25, -2000.89], [2649.99, -2008.64], [2644.7, -2004.27], [2644.17, -2004.85], [2636.46, -1998.49], [2636.77, -1998.07], [2629.77, -1992.27], [2636.14, -1984.57], [2642.98, -1990.22], [2643.43, -1989.67], [2651.27, -1996.14], [2650.94, -1996.54], [2656.25, -2000.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.218, "pop": 109, "jobs": 0}}, {"shape": {"outer": [[2820.51, -1738.03], [2820.38, -1740.15], [2818.37, -1740.03], [2818.5, -1737.91], [2820.51, -1738.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[2627.27, -1758.44], [2618.99, -1758.41], [2616.79, -1758.4], [2616.8, -1758.35], [2610.28, -1758.17], [2610.47, -1751.24], [2616.79, -1751.42], [2616.79, -1747.64], [2627.27, -1747.68], [2627.27, -1758.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2612.97, -1836.34], [2612.8, -1844.79], [2606.8, -1844.7], [2606.81, -1846.36], [2598.65, -1846.25], [2598.71, -1842.62], [2597.69, -1842.6], [2597.76, -1837.24], [2599.05, -1837.25], [2599.09, -1834.04], [2607.03, -1834.19], [2607.0, -1836.29], [2612.97, -1836.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2657.09, -2119.48], [2661.72, -2123.68], [2653.51, -2132.72], [2639.67, -2120.15], [2645.83, -2113.36], [2655.05, -2121.74], [2657.09, -2119.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[2601.74, -1611.57], [2599.63, -1618.9], [2590.58, -1616.3], [2592.69, -1608.96], [2601.74, -1611.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2728.27, -1750.73], [2727.78, -1766.57], [2720.89, -1766.4], [2720.87, -1767.18], [2712.57, -1766.92], [2712.88, -1756.76], [2720.18, -1756.98], [2720.38, -1750.54], [2728.27, -1750.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[2598.1, -2181.97], [2613.12, -2161.93], [2619.15, -2166.58], [2621.07, -2164.12], [2623.07, -2165.72], [2612.61, -2179.83], [2615.06, -2181.51], [2607.93, -2190.71], [2602.19, -2187.48], [2598.1, -2181.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[2701.34, -1605.52], [2700.96, -1613.71], [2703.42, -1613.82], [2703.02, -1622.29], [2692.27, -1621.78], [2693.06, -1605.13], [2701.34, -1605.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2657.73, -1681.48], [2657.67, -1686.98], [2651.42, -1686.9], [2651.41, -1688.01], [2650.17, -1688.0], [2650.16, -1688.72], [2645.14, -1688.66], [2645.26, -1678.58], [2654.92, -1678.7], [2654.88, -1681.45], [2657.73, -1681.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2547.78, -2149.62], [2551.79, -2155.32], [2545.5, -2159.76], [2541.48, -2154.05], [2547.78, -2149.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2541.96, -1925.11], [2541.54, -1933.99], [2531.99, -1933.51], [2531.94, -1934.31], [2526.05, -1934.01], [2526.07, -1933.27], [2521.12, -1933.02], [2521.52, -1924.79], [2534.01, -1925.41], [2534.07, -1924.71], [2541.96, -1925.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2693.2, -2041.85], [2706.63, -2054.93], [2699.86, -2061.88], [2693.23, -2055.43], [2691.41, -2057.31], [2684.62, -2050.68], [2693.2, -2041.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[2826.18, -1877.74], [2828.71, -1879.62], [2826.58, -1882.52], [2824.06, -1880.65], [2826.18, -1877.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[2788.91, -2256.09], [2788.99, -2258.95], [2794.29, -2258.79], [2794.68, -2278.1], [2785.44, -2278.3], [2785.29, -2270.64], [2784.15, -2270.67], [2783.87, -2256.22], [2788.91, -2256.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2547.93, -1893.16], [2547.78, -1901.64], [2541.08, -1901.5], [2540.97, -1905.17], [2527.04, -1904.86], [2527.3, -1893.26], [2536.78, -1893.47], [2536.8, -1892.91], [2547.93, -1893.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[2809.84, -1814.72], [2809.23, -1814.72], [2809.2, -1817.74], [2797.1, -1817.64], [2797.13, -1814.46], [2796.45, -1814.45], [2796.53, -1805.21], [2809.92, -1805.32], [2809.84, -1814.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2653.2, -1698.34], [2652.1, -1701.14], [2652.85, -1701.44], [2649.76, -1709.31], [2650.85, -1709.74], [2648.48, -1715.78], [2647.39, -1715.35], [2637.34, -1711.41], [2642.8, -1697.5], [2647.27, -1699.25], [2648.37, -1696.45], [2653.2, -1698.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2787.59, -1647.54], [2787.19, -1666.18], [2770.94, -1665.6], [2771.03, -1661.54], [2772.31, -1661.55], [2772.38, -1658.38], [2776.76, -1658.43], [2777.0, -1647.3], [2787.59, -1647.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[2774.32, -2351.23], [2770.2, -2348.2], [2763.84, -2347.11], [2759.62, -2339.71], [2767.3, -2328.74], [2769.97, -2330.62], [2771.98, -2327.72], [2773.34, -2328.7], [2778.79, -2320.89], [2786.21, -2326.08], [2782.47, -2331.44], [2782.73, -2334.01], [2778.0, -2340.78], [2780.4, -2342.52], [2774.32, -2351.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.322, "pop": 161, "jobs": 0}}, {"shape": {"outer": [[2687.26, -2187.33], [2692.16, -2177.07], [2702.05, -2181.77], [2697.16, -2192.03], [2687.26, -2187.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[2748.8, -2297.09], [2735.19, -2307.77], [2728.14, -2298.79], [2741.75, -2288.1], [2748.8, -2297.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2629.0, -1847.07], [2628.52, -1850.29], [2625.83, -1849.76], [2626.3, -1846.54], [2629.0, -1847.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2778.13, -1960.11], [2780.74, -1962.54], [2778.5, -1964.94], [2775.89, -1962.51], [2778.13, -1960.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[2745.47, -1639.83], [2741.03, -1646.1], [2735.52, -1641.67], [2739.52, -1635.72], [2745.47, -1639.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2694.21, -2176.06], [2696.85, -2170.54], [2704.52, -2174.22], [2701.88, -2179.74], [2694.21, -2176.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2568.81, -1809.63], [2575.43, -1809.79], [2575.27, -1816.49], [2568.64, -1816.33], [2568.81, -1809.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2526.56, -1944.12], [2525.76, -1957.74], [2521.06, -1957.46], [2521.13, -1956.18], [2514.82, -1955.81], [2515.22, -1948.95], [2512.44, -1948.79], [2512.72, -1943.87], [2515.42, -1944.04], [2515.46, -1943.46], [2526.56, -1944.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2800.51, -1937.95], [2813.17, -1949.86], [2806.28, -1957.15], [2797.47, -1948.92], [2794.81, -1951.65], [2790.5, -1947.56], [2794.58, -1943.3], [2795.04, -1943.76], [2800.51, -1937.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[2621.79, -2022.84], [2626.87, -2021.26], [2628.12, -2025.32], [2623.05, -2026.9], [2621.79, -2022.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2620.98, -2080.06], [2613.99, -2083.57], [2612.39, -2080.41], [2612.0, -2080.61], [2608.46, -2073.58], [2615.85, -2069.87], [2620.98, -2080.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2791.29, -1820.89], [2800.16, -1821.11], [2799.96, -1829.04], [2791.08, -1828.82], [2791.29, -1820.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2562.1, -2054.82], [2565.33, -2065.04], [2562.56, -2065.85], [2562.07, -2064.57], [2548.51, -2068.79], [2549.49, -2072.0], [2549.28, -2072.05], [2549.33, -2072.22], [2541.77, -2074.46], [2541.06, -2075.84], [2535.86, -2073.19], [2536.14, -2072.67], [2535.61, -2072.39], [2538.69, -2066.83], [2535.18, -2065.07], [2540.32, -2063.88], [2542.25, -2060.4], [2549.89, -2058.14], [2549.98, -2058.42], [2562.1, -2054.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.24, "pop": 120, "jobs": 0}}, {"shape": {"outer": [[2546.72, -2002.07], [2546.02, -2008.68], [2545.22, -2008.59], [2540.69, -2008.11], [2540.67, -2008.2], [2539.03, -2008.02], [2538.68, -2011.28], [2535.31, -2010.92], [2535.23, -2011.64], [2523.99, -2010.42], [2524.07, -2009.7], [2524.42, -2006.44], [2523.31, -2006.32], [2524.62, -1994.23], [2541.98, -1996.11], [2541.82, -1997.64], [2546.34, -1998.13], [2545.93, -2001.99], [2546.72, -2002.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.258, "pop": 129, "jobs": 0}}, {"shape": {"outer": [[2819.8, -1901.46], [2822.48, -1903.94], [2822.98, -1903.4], [2828.5, -1908.46], [2827.3, -1909.81], [2839.77, -1921.25], [2832.96, -1928.64], [2823.59, -1920.04], [2824.46, -1919.09], [2821.23, -1916.12], [2822.39, -1914.85], [2817.0, -1909.91], [2818.5, -1908.28], [2815.81, -1905.81], [2819.8, -1901.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.202, "pop": 101, "jobs": 0}}, {"shape": {"outer": [[2680.56, -2202.2], [2685.3, -2194.11], [2699.11, -2202.46], [2699.96, -2203.66], [2702.54, -2202.14], [2706.13, -2207.82], [2693.88, -2215.46], [2690.02, -2209.61], [2687.83, -2208.41], [2688.58, -2207.09], [2680.56, -2202.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2841.81, -1718.2], [2841.91, -1714.92], [2840.69, -1714.88], [2840.98, -1705.4], [2846.4, -1705.57], [2846.41, -1705.06], [2855.94, -1705.42], [2855.62, -1715.42], [2849.23, -1715.17], [2849.12, -1718.44], [2841.81, -1718.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[2544.83, -1911.58], [2543.4, -1918.7], [2536.35, -1917.67], [2536.28, -1920.29], [2520.95, -1920.09], [2523.89, -1909.03], [2529.14, -1910.45], [2529.38, -1909.66], [2536.63, -1909.75], [2536.62, -1910.11], [2544.83, -1911.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2761.62, -1986.21], [2756.54, -1991.45], [2750.09, -1985.2], [2755.17, -1979.96], [2761.62, -1986.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2842.2, -1754.39], [2841.92, -1768.87], [2824.66, -1768.57], [2824.84, -1760.27], [2832.04, -1760.4], [2832.14, -1754.22], [2842.2, -1754.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2555.01, -1835.23], [2554.79, -1840.26], [2552.69, -1840.16], [2552.48, -1845.83], [2542.17, -1845.46], [2542.22, -1844.01], [2537.78, -1843.84], [2538.06, -1836.46], [2542.51, -1836.63], [2542.58, -1834.81], [2555.01, -1835.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2771.56, -1964.27], [2777.2, -1969.76], [2772.81, -1974.28], [2767.17, -1968.8], [2771.56, -1964.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2692.41, -2029.55], [2697.73, -2035.07], [2694.0, -2038.66], [2688.69, -2033.14], [2692.41, -2029.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2809.51, -1619.85], [2806.43, -1624.38], [2805.3, -1623.61], [2797.5, -1635.17], [2790.38, -1630.49], [2797.18, -1620.35], [2796.32, -1619.77], [2800.4, -1613.74], [2809.51, -1619.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[2717.28, -1844.68], [2717.52, -1848.66], [2714.38, -1848.85], [2714.13, -1844.88], [2717.28, -1844.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[2595.48, -1676.95], [2606.95, -1680.15], [2605.69, -1684.68], [2606.03, -1684.77], [2605.63, -1686.16], [2606.46, -1687.66], [2606.12, -1688.97], [2604.57, -1689.89], [2602.43, -1689.29], [2601.48, -1692.84], [2597.8, -1691.75], [2597.27, -1693.68], [2592.28, -1692.3], [2594.89, -1683.89], [2593.64, -1683.54], [2595.48, -1676.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[2662.2, -2075.71], [2663.42, -2076.81], [2661.13, -2079.37], [2659.9, -2078.28], [2662.2, -2075.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[2716.99, -1665.66], [2716.81, -1675.61], [2707.62, -1675.45], [2707.8, -1665.49], [2716.99, -1665.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2710.24, -1927.19], [2710.1, -1931.89], [2710.89, -1931.91], [2710.86, -1933.01], [2718.52, -1933.24], [2718.2, -1944.24], [2711.79, -1944.05], [2711.77, -1945.07], [2709.01, -1945.0], [2708.9, -1948.55], [2700.01, -1948.29], [2700.28, -1938.89], [2699.24, -1938.86], [2699.59, -1926.87], [2710.24, -1927.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[2693.99, -1723.7], [2693.87, -1733.11], [2697.37, -1733.15], [2697.28, -1740.46], [2684.21, -1740.31], [2684.41, -1723.59], [2693.99, -1723.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2684.96, -2056.84], [2694.64, -2065.68], [2695.29, -2064.98], [2699.44, -2068.72], [2694.11, -2074.56], [2691.78, -2072.51], [2684.34, -2080.61], [2676.34, -2073.27], [2683.21, -2065.8], [2679.7, -2062.62], [2684.96, -2056.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.208, "pop": 104, "jobs": 0}}, {"shape": {"outer": [[2594.6, -1915.74], [2591.49, -1934.63], [2580.08, -1932.75], [2582.1, -1920.66], [2582.98, -1920.79], [2584.07, -1914.0], [2594.6, -1915.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[2810.94, -2004.11], [2817.8, -2010.3], [2818.12, -2009.96], [2821.76, -2013.25], [2814.66, -2021.07], [2811.4, -2018.14], [2808.44, -2021.46], [2801.62, -2015.3], [2805.27, -2011.24], [2804.85, -2010.86], [2810.94, -2004.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2524.99, -1811.4], [2524.13, -1815.48], [2517.48, -1814.08], [2518.33, -1810.0], [2524.99, -1811.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2834.41, -2401.4], [2840.92, -2408.01], [2842.75, -2406.21], [2847.0, -2410.52], [2836.72, -2420.65], [2825.96, -2409.72], [2834.41, -2401.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2699.3, -1707.83], [2699.28, -1713.56], [2701.84, -1713.6], [2701.81, -1719.75], [2689.69, -1719.67], [2689.75, -1707.8], [2699.3, -1707.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2630.19, -1718.49], [2648.35, -1725.94], [2643.73, -1736.65], [2641.48, -1735.68], [2637.52, -1744.7], [2625.18, -1739.63], [2627.75, -1733.79], [2630.9, -1735.11], [2632.24, -1732.02], [2625.58, -1729.15], [2630.19, -1718.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[2827.55, -2179.6], [2828.27, -2189.46], [2831.51, -2189.23], [2831.68, -2191.74], [2836.25, -2191.48], [2836.98, -2202.27], [2832.59, -2202.52], [2832.69, -2204.14], [2826.82, -2204.5], [2826.68, -2202.55], [2819.51, -2203.03], [2818.86, -2192.69], [2817.58, -2192.77], [2816.76, -2180.23], [2820.4, -2180.02], [2820.35, -2179.25], [2827.51, -2178.82], [2827.55, -2179.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.276, "pop": 138, "jobs": 0}}, {"shape": {"outer": [[2595.64, -1893.82], [2595.38, -1903.97], [2597.23, -1904.01], [2597.01, -1909.39], [2586.65, -1909.14], [2587.12, -1893.6], [2595.64, -1893.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2724.77, -1999.46], [2726.53, -2001.22], [2724.09, -2003.67], [2722.32, -2001.91], [2724.77, -1999.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2833.3, -1814.0], [2833.08, -1821.24], [2826.44, -1821.05], [2826.53, -1818.14], [2822.2, -1818.01], [2822.34, -1814.52], [2819.73, -1814.43], [2819.92, -1806.12], [2819.14, -1806.08], [2819.24, -1803.51], [2822.74, -1803.65], [2822.67, -1805.24], [2833.08, -1805.55], [2832.86, -1813.99], [2833.3, -1814.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2813.46, -1589.33], [2820.79, -1593.33], [2812.27, -1608.89], [2805.64, -1605.25], [2807.29, -1602.24], [2806.6, -1601.85], [2813.46, -1589.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2692.03, -1742.81], [2702.0, -1743.05], [2701.88, -1747.88], [2699.24, -1750.91], [2691.81, -1750.75], [2692.03, -1742.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2578.35, -1762.66], [2578.29, -1770.37], [2577.41, -1770.36], [2577.36, -1774.13], [2576.66, -1774.11], [2576.69, -1775.79], [2575.86, -1775.84], [2575.77, -1780.93], [2574.51, -1780.89], [2574.52, -1782.08], [2574.74, -1782.11], [2574.67, -1785.81], [2573.32, -1785.79], [2573.33, -1786.42], [2562.11, -1786.25], [2562.33, -1775.56], [2561.13, -1775.59], [2561.2, -1762.46], [2578.35, -1762.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.286, "pop": 143, "jobs": 0}}, {"shape": {"outer": [[2801.96, -2246.99], [2801.86, -2252.68], [2797.83, -2252.61], [2797.93, -2246.93], [2801.96, -2246.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2621.16, -1666.44], [2621.14, -1666.99], [2622.96, -1666.99], [2622.9, -1675.25], [2612.9, -1675.19], [2612.98, -1666.98], [2615.32, -1666.99], [2615.31, -1666.4], [2621.16, -1666.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2536.33, -2017.35], [2536.76, -2023.95], [2552.98, -2022.87], [2553.52, -2031.1], [2543.48, -2031.62], [2543.61, -2033.49], [2522.97, -2035.01], [2521.86, -2018.31], [2536.33, -2017.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.308, "pop": 154, "jobs": 0}}, {"shape": {"outer": [[2729.51, -1638.71], [2729.38, -1643.39], [2727.96, -1643.35], [2727.81, -1648.44], [2719.71, -1648.19], [2720.0, -1638.43], [2729.51, -1638.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2672.97, -2096.73], [2675.34, -2097.82], [2679.23, -2089.6], [2688.57, -2093.92], [2684.34, -2102.71], [2683.73, -2102.42], [2679.69, -2111.01], [2671.16, -2106.83], [2672.76, -2103.58], [2670.16, -2102.35], [2672.97, -2096.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2648.3, -1912.5], [2627.65, -1907.71], [2627.99, -1906.22], [2623.78, -1905.24], [2625.07, -1899.7], [2629.52, -1900.72], [2630.31, -1897.32], [2631.87, -1897.68], [2633.63, -1890.09], [2644.09, -1892.52], [2641.87, -1902.11], [2650.26, -1904.06], [2648.3, -1912.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.254, "pop": 127, "jobs": 0}}, {"shape": {"outer": [[2587.74, -1748.08], [2587.75, -1757.59], [2579.87, -1757.61], [2579.87, -1759.56], [2565.16, -1759.49], [2565.19, -1754.72], [2563.22, -1754.71], [2563.2, -1748.08], [2587.74, -1748.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.206, "pop": 103, "jobs": 0}}, {"shape": {"outer": [[2832.3, -1656.51], [2831.98, -1666.46], [2816.07, -1665.93], [2816.39, -1656.0], [2832.3, -1656.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2688.71, -2217.83], [2685.84, -2224.92], [2680.77, -2222.88], [2679.42, -2226.29], [2680.95, -2226.87], [2680.42, -2227.81], [2683.29, -2229.02], [2679.5, -2239.01], [2672.96, -2236.36], [2673.29, -2235.51], [2666.41, -2232.77], [2669.16, -2225.87], [2668.75, -2225.7], [2670.17, -2222.17], [2670.58, -2222.32], [2674.63, -2212.2], [2688.71, -2217.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[2665.75, -1838.62], [2648.65, -1838.31], [2648.84, -1828.31], [2649.45, -1828.33], [2649.54, -1823.94], [2652.48, -1823.99], [2652.54, -1820.95], [2663.17, -1821.13], [2663.04, -1828.54], [2665.93, -1828.59], [2665.75, -1838.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[2760.09, -1703.17], [2770.48, -1703.37], [2770.29, -1718.31], [2759.95, -1718.12], [2760.09, -1703.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2512.17, -1863.61], [2511.33, -1869.67], [2504.45, -1868.72], [2505.28, -1862.66], [2512.17, -1863.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2771.71, -2255.8], [2780.85, -2264.66], [2781.05, -2275.26], [2772.63, -2275.47], [2772.6, -2274.16], [2762.97, -2264.64], [2771.71, -2255.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[2751.17, -1813.69], [2751.43, -1803.81], [2757.24, -1803.96], [2757.25, -1803.64], [2764.55, -1803.83], [2764.27, -1814.05], [2751.17, -1813.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2729.87, -3171.79], [2734.72, -3171.95], [2734.54, -3176.92], [2729.69, -3176.74], [2729.87, -3171.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2804.01, -3110.49], [2814.53, -3110.24], [2815.0, -3129.93], [2804.48, -3130.17], [2804.01, -3110.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[2684.97, -3159.45], [2683.09, -3173.37], [2677.79, -3172.55], [2678.13, -3170.26], [2672.79, -3169.43], [2672.44, -3171.73], [2667.25, -3170.93], [2669.21, -3157.07], [2684.97, -3159.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[2680.91, -3101.68], [2678.21, -3122.29], [2660.52, -3119.97], [2663.21, -3099.38], [2680.91, -3101.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.296, "pop": 148, "jobs": 0}}, {"shape": {"outer": [[2633.31, -3155.74], [2651.42, -3156.4], [2650.68, -3177.04], [2632.57, -3176.39], [2633.31, -3155.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.3, "pop": 150, "jobs": 0}}, {"shape": {"outer": [[2691.65, -3161.56], [2709.37, -3163.12], [2708.41, -3174.21], [2690.65, -3172.59], [2691.65, -3161.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[2715.26, -3160.97], [2724.89, -3161.19], [2724.5, -3176.21], [2714.88, -3176.0], [2715.26, -3160.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[-2947.38, -1180.5], [-2929.22, -1202.02], [-2935.57, -1207.33], [-2946.94, -1193.85], [-2953.73, -1185.81], [-2947.38, -1180.5]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.149, "pop": 0, "jobs": 149}}, {"shape": {"outer": [[431.97, -2951.82], [442.0, -2946.97], [446.41, -2956.01], [436.38, -2960.86], [431.97, -2951.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[-1025.72, -241.18], [-1024.36, -239.95], [-1019.73, -235.8], [-1007.19, -249.69], [-1007.36, -253.15], [-1015.24, -252.77], [-1025.72, -241.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1025.72, -241.18], [-1029.07, -244.18], [-1028.43, -244.88], [-1027.86, -245.51], [-1021.61, -252.42], [-1015.24, -252.77], [-1025.72, -241.18]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.038, "pop": 0, "jobs": 38}}, {"shape": {"outer": [[429.48, -2416.56], [431.8, -2420.55], [434.79, -2418.84], [435.7, -2420.41], [446.02, -2414.47], [441.94, -2407.45], [431.08, -2413.68], [431.93, -2415.15], [429.48, -2416.56]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.073, "pop": 0, "jobs": 73}}, {"shape": {"outer": [[-2991.57, -140.31], [-2989.78, -149.81], [-3005.94, -152.82], [-3007.72, -143.32], [-2991.57, -140.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2678.54, 2423.97], [2690.27, 2435.35], [2692.11, 2433.45], [2707.23, 2448.11], [2704.4, 2451.02], [2710.21, 2456.65], [2711.75, 2455.08], [2719.69, 2462.78], [2736.63, 2445.45], [2732.8, 2441.74], [2742.35, 2431.97], [2736.25, 2426.06], [2733.62, 2423.5], [2736.62, 2420.43], [2755.98, 2400.61], [2732.09, 2377.44], [2701.88, 2408.36], [2699.25, 2405.82], [2695.0, 2410.16], [2693.47, 2408.68], [2678.54, 2423.97]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1952}}, {"shape": {"outer": [[2736.25, 2426.06], [2753.59, 2425.66], [2753.92, 2420.44], [2736.62, 2420.43], [2733.62, 2423.5], [2736.25, 2426.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2724.7, 2466.67], [2729.95, 2461.43], [2759.77, 2491.13], [2756.99, 2493.9], [2754.52, 2496.35], [2724.7, 2466.67]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.2, "pop": 0, "jobs": 200}}, {"shape": {"outer": [[2835.39, 2461.3], [2849.53, 2446.87], [2841.74, 2439.28], [2841.19, 2439.84], [2805.42, 2405.06], [2806.71, 2403.73], [2800.35, 2397.55], [2799.16, 2398.76], [2790.07, 2389.93], [2791.12, 2388.85], [2787.05, 2384.91], [2783.03, 2389.01], [2783.47, 2389.85], [2776.39, 2397.07], [2775.66, 2396.36], [2770.64, 2401.48], [2774.95, 2405.68], [2776.1, 2404.49], [2780.21, 2408.49], [2779.41, 2409.3], [2785.33, 2415.06], [2786.56, 2413.81], [2835.39, 2461.3]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 1238, "jobs": 0}}, {"shape": {"outer": [[2848.55, 2475.58], [2863.63, 2459.43], [2872.84, 2467.98], [2871.72, 2469.17], [2889.43, 2485.6], [2890.57, 2484.38], [2897.68, 2490.98], [2896.45, 2492.29], [2905.19, 2500.4], [2906.06, 2499.48], [2910.53, 2503.63], [2906.69, 2507.74], [2905.38, 2506.53], [2902.81, 2509.28], [2897.32, 2515.15], [2898.74, 2516.48], [2894.98, 2520.5], [2890.19, 2516.07], [2891.14, 2515.05], [2887.26, 2511.45], [2886.27, 2512.51], [2879.41, 2506.16], [2880.39, 2505.11], [2848.55, 2475.58]], "holes": []}, "height": 4.0, "data": {"type": "residential", "density": 0.544, "pop": 272, "jobs": 0}}, {"shape": {"outer": [[1964.97, 2424.88], [1976.33, 2422.56], [1975.12, 2416.64], [1973.48, 2408.7], [1971.98, 2401.38], [1971.47, 2398.9], [1978.79, 2397.4], [1990.06, 2395.09], [1988.36, 2386.97], [1977.0, 2389.29], [1970.83, 2390.55], [1970.43, 2388.61], [1969.27, 2382.96], [1956.88, 2385.49], [1958.07, 2391.3], [1960.72, 2404.17], [1962.13, 2411.04], [1963.77, 2419.06], [1964.97, 2424.88]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.404, "pop": 0, "jobs": 404}}, {"shape": {"outer": [[2314.39, 1860.06], [2345.03, 1828.3], [2336.3, 1820.6], [2337.48, 1818.38], [2334.66, 1816.0], [2321.05, 1830.13], [2310.95, 1840.6], [2304.34, 1847.46], [2314.39, 1860.06]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.444, "pop": 0, "jobs": 444}}, {"shape": {"outer": [[469.42, -2970.74], [486.96, -2962.07], [520.47, -3029.27], [502.91, -3037.96], [469.42, -2970.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.941, "pop": 0, "jobs": 941}}, {"shape": {"outer": [[-1307.72, -2291.61], [-1306.23, -2294.35], [-1311.25, -2297.1], [-1314.52, -2298.9], [-1314.87, -2306.57], [-1315.1, -2311.47], [-1317.86, -2311.4], [-1317.64, -2306.45], [-1317.22, -2297.01], [-1312.88, -2294.55], [-1307.72, -2291.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1192.1, 1167.42], [1226.78, 1128.32], [1269.71, 1166.13], [1247.03, 1191.7], [1239.09, 1184.71], [1241.48, 1182.01], [1237.35, 1178.37], [1239.78, 1175.63], [1237.48, 1173.61], [1240.62, 1170.07], [1237.01, 1166.9], [1238.85, 1164.82], [1227.45, 1154.77], [1225.23, 1157.27], [1226.33, 1158.24], [1221.75, 1163.4], [1220.75, 1162.51], [1218.65, 1164.88], [1231.1, 1175.84], [1229.07, 1178.13], [1231.69, 1180.44], [1220.8, 1192.71], [1192.1, 1167.42]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 1.0, "pop": 1234, "jobs": 0}}, {"shape": {"outer": [[1186.36, 176.92], [1188.9, 166.65], [1167.56, 161.41], [1165.02, 171.68], [1186.36, 176.92]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.149, "pop": 0, "jobs": 149}}, {"shape": {"outer": [[-1543.01, -1431.16], [-1543.9, -1466.06], [-1546.66, -1465.98], [-1546.92, -1476.05], [-1523.91, -1476.63], [-1522.77, -1431.67], [-1543.01, -1431.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.75, "pop": 375, "jobs": 0}}, {"shape": {"outer": [[-1479.36, -1411.12], [-1479.81, -1424.41], [-1470.44, -1424.73], [-1469.99, -1411.45], [-1479.36, -1411.12]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.08, "pop": 0, "jobs": 80}}, {"shape": {"outer": [[-1479.86, -1426.68], [-1479.98, -1431.68], [-1480.09, -1436.51], [-1477.61, -1436.57], [-1477.67, -1439.32], [-1472.68, -1439.44], [-1472.62, -1436.65], [-1471.62, -1436.66], [-1471.41, -1426.87], [-1479.86, -1426.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1528.23, -1527.57], [-1528.34, -1532.68], [-1538.21, -1532.45], [-1538.05, -1524.95], [-1536.59, -1524.99], [-1536.64, -1527.39], [-1528.23, -1527.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1525.22, -1533.96], [-1525.27, -1536.57], [-1524.62, -1536.59], [-1524.68, -1539.08], [-1525.52, -1539.06], [-1525.55, -1540.35], [-1540.08, -1540.03], [-1540.05, -1538.58], [-1538.05, -1538.63], [-1537.95, -1533.67], [-1525.22, -1533.96]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.055, "pop": 0, "jobs": 55}}, {"shape": {"outer": [[-2250.95, -1682.23], [-2246.15, -1683.96], [-2254.51, -1692.52], [-2258.05, -1691.61], [-2259.28, -1690.3], [-2250.95, -1682.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2255.43, -625.04], [-2253.04, -628.09], [-2249.51, -625.36], [-2251.89, -622.3], [-2255.43, -625.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-2261.93, 261.3], [-2244.87, 260.78], [-2245.14, 251.92], [-2262.2, 252.43], [-2261.93, 261.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2406.79, 1959.17], [2414.05, 1955.35], [2416.98, 1960.85], [2409.72, 1964.69], [2406.79, 1959.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[2416.64, 1974.76], [2419.93, 1980.77], [2427.32, 1976.75], [2424.03, 1970.73], [2416.64, 1974.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2421.0, 1981.83], [2424.11, 1987.49], [2431.52, 1983.45], [2428.39, 1977.78], [2421.0, 1981.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2352.65, 1733.34], [2357.38, 1716.22], [2345.92, 1713.08], [2341.18, 1730.18], [2352.65, 1733.34]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.135, "pop": 0, "jobs": 135}}, {"shape": {"outer": [[-891.46, -407.12], [-879.19, -396.02], [-885.54, -389.06], [-897.8, -400.16], [-891.46, -407.12]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[-891.37, -407.7], [-884.32, -401.31], [-872.24, -414.53], [-879.29, -420.92], [-891.37, -407.7]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.048, "pop": 0, "jobs": 48}}, {"shape": {"outer": [[-640.87, -1067.53], [-591.09, -1022.66], [-588.44, -1025.57], [-584.7, -1022.19], [-574.59, -1033.34], [-580.09, -1038.3], [-586.49, -1044.06], [-616.54, -1071.14], [-619.4, -1067.99], [-625.85, -1073.81], [-630.98, -1078.43], [-640.87, -1067.53]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1435}}, {"shape": {"outer": [[933.13, 982.32], [994.57, 916.08], [949.41, 874.84], [948.01, 876.4], [942.97, 872.0], [944.14, 870.65], [929.02, 856.36], [867.68, 924.04], [933.13, 982.32]], "holes": []}, "height": 38.5, "data": {"type": "residential", "density": 1.0, "pop": 15384, "jobs": 0}}, {"shape": {"outer": [[171.2, -2634.55], [182.52, -2641.94], [191.71, -2627.98], [184.1, -2623.0], [181.82, -2626.46], [180.49, -2625.59], [177.93, -2629.5], [176.32, -2628.44], [175.77, -2629.28], [175.0, -2628.78], [171.2, -2634.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-875.05, 107.58], [-895.4, 130.0], [-905.55, 120.85], [-885.2, 98.43], [-875.05, 107.58]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 0.724, "pop": 362, "jobs": 0}}, {"shape": {"outer": [[-1851.0, -468.37], [-1847.01, -460.15], [-1862.04, -452.93], [-1866.03, -461.16], [-1851.0, -468.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-481.35, -326.92], [-448.15, -362.32], [-491.25, -401.46], [-493.72, -401.34], [-494.54, -394.89], [-498.51, -390.52], [-511.79, -403.28], [-529.48, -383.21], [-534.32, -387.81], [-534.14, -385.74], [-533.08, -372.84], [-499.55, -341.74], [-495.5, -346.07], [-483.93, -335.77], [-483.88, -332.87], [-485.86, -330.72], [-481.35, -326.92]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2148}}, {"shape": {"outer": [[-678.83, -504.08], [-691.6, -490.28], [-667.87, -468.46], [-640.18, -498.35], [-655.15, -512.11], [-670.06, -496.02], [-678.83, -504.08]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 737, "jobs": 0}}, {"shape": {"outer": [[-375.71, -429.0], [-356.36, -411.15], [-346.98, -421.24], [-366.34, -439.09], [-375.71, -429.0]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.38, "pop": 190, "jobs": 0}}, {"shape": {"outer": [[30.24, 104.08], [19.1, 116.73], [12.0, 110.53], [9.26, 113.66], [16.24, 119.75], [12.79, 123.67], [9.79, 121.05], [3.9, 127.75], [3.01, 126.97], [-4.71, 135.77], [-17.28, 124.8], [-2.52, 108.01], [-1.32, 109.06], [2.12, 105.14], [5.58, 108.16], [7.2, 106.31], [3.35, 102.95], [8.95, 96.58], [9.74, 97.27], [15.26, 90.99], [30.24, 104.08]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 736, "jobs": 0}}, {"shape": {"outer": [[1295.67, 1394.91], [1286.47, 1386.5], [1295.32, 1377.02], [1304.44, 1385.32], [1295.67, 1394.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-34.05, 261.63], [-49.54, 247.46], [-48.03, 245.81], [-49.36, 244.6], [-47.51, 242.59], [-46.18, 243.81], [-43.62, 241.03], [-28.12, 255.21], [-34.05, 261.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-54.49, 256.79], [-48.94, 250.87], [-35.55, 263.35], [-41.09, 269.27], [-54.49, 256.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-56.96, 256.88], [-58.2, 258.24], [-58.81, 257.69], [-62.34, 261.56], [-61.73, 262.12], [-63.66, 264.23], [-49.15, 277.37], [-42.84, 270.44], [-47.13, 266.56], [-46.73, 266.13], [-56.96, 256.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[-62.03, 267.07], [-67.59, 273.01], [-56.78, 283.06], [-51.22, 277.11], [-62.03, 267.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-80.58, 286.2], [-74.35, 279.74], [-68.27, 285.57], [-69.14, 286.47], [-65.59, 289.88], [-70.94, 295.43], [-75.87, 290.71], [-76.56, 291.43], [-78.35, 289.7], [-77.66, 288.99], [-80.58, 286.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-72.18, 279.14], [-67.45, 274.12], [-56.16, 284.68], [-60.89, 289.7], [-72.18, 279.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[-46.84, 334.5], [-52.23, 340.19], [-55.85, 336.78], [-56.82, 337.78], [-65.33, 329.77], [-58.98, 323.07], [-46.84, 334.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-82.32, 317.26], [-86.14, 313.82], [-83.93, 311.37], [-86.22, 309.31], [-84.27, 307.16], [-85.49, 306.05], [-81.84, 302.01], [-74.5, 308.6], [-82.32, 317.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[103.56, -254.05], [113.34, -244.5], [134.61, -223.35], [138.83, -227.94], [140.08, -227.2], [146.49, -238.17], [158.76, -254.28], [173.5, -267.63], [178.64, -272.4], [185.63, -277.5], [185.01, -279.02], [189.0, -283.25], [162.54, -307.26], [157.79, -311.76], [157.0, -310.93], [132.72, -285.13], [124.6, -276.16], [103.56, -254.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1341, "jobs": 0}}, {"shape": {"outer": [[2885.3, 2440.71], [2924.02, 2476.9], [2925.47, 2475.36], [2927.04, 2476.82], [2930.42, 2473.23], [2928.1, 2471.06], [2938.29, 2460.24], [2914.52, 2438.01], [2931.17, 2420.33], [2930.55, 2418.22], [2933.02, 2415.6], [2926.19, 2409.21], [2923.62, 2411.94], [2917.64, 2406.35], [2885.3, 2440.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 673, "jobs": 0}}, {"shape": {"outer": [[2835.55, 2392.04], [2871.31, 2426.28], [2885.67, 2411.39], [2859.54, 2386.36], [2849.92, 2377.15], [2835.55, 2392.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.82, "pop": 410, "jobs": 0}}, {"shape": {"outer": [[391.05, 306.96], [373.83, 291.54], [384.1, 280.14], [388.78, 284.23], [401.26, 270.31], [405.02, 273.65], [407.79, 270.68], [416.23, 278.22], [411.25, 283.81], [391.05, 306.96]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.454, "pop": 0, "jobs": 454}}, {"shape": {"outer": [[397.54, 243.41], [403.28, 237.03], [406.86, 240.23], [407.35, 239.67], [413.74, 245.37], [413.25, 245.93], [416.09, 248.46], [410.35, 254.84], [397.54, 243.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[409.64, 191.35], [400.86, 200.78], [394.37, 194.78], [397.78, 191.12], [397.55, 190.9], [400.69, 187.52], [400.93, 187.74], [403.15, 185.35], [409.64, 191.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[375.43, 161.54], [376.18, 162.19], [376.98, 161.27], [378.69, 162.75], [377.75, 163.83], [380.18, 165.93], [371.22, 176.28], [366.31, 172.05], [375.43, 161.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[365.81, 153.59], [372.47, 159.77], [360.94, 172.1], [354.28, 165.92], [365.81, 153.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[352.88, 141.0], [364.08, 151.36], [351.64, 164.72], [340.44, 154.36], [352.88, 141.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.222, "pop": 111, "jobs": 0}}, {"shape": {"outer": [[508.82, 173.04], [512.47, 169.11], [532.71, 187.73], [529.06, 191.67], [508.82, 173.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[-2948.51, -1506.14], [-2939.9, -1498.86], [-2932.97, -1507.01], [-2933.99, -1507.87], [-2932.91, -1509.13], [-2939.6, -1514.77], [-2940.74, -1513.43], [-2941.66, -1514.2], [-2948.51, -1506.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-2760.1, -1347.5], [-2752.85, -1341.32], [-2743.06, -1352.73], [-2750.3, -1358.9], [-2760.1, -1347.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2749.64, -1338.64], [-2746.09, -1335.61], [-2747.49, -1333.97], [-2743.53, -1330.71], [-2739.9, -1330.81], [-2736.05, -1334.13], [-2737.46, -1335.38], [-2732.69, -1340.58], [-2735.01, -1342.51], [-2732.66, -1345.14], [-2738.86, -1350.42], [-2749.64, -1338.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[-2742.8, -1361.71], [-2737.38, -1357.29], [-2733.11, -1362.49], [-2738.52, -1366.92], [-2742.8, -1361.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2736.63, -1356.28], [-2735.48, -1355.27], [-2736.42, -1354.2], [-2732.91, -1351.13], [-2731.98, -1352.18], [-2730.9, -1351.24], [-2726.2, -1356.58], [-2731.93, -1361.6], [-2736.63, -1356.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-370.32, -453.71], [-368.84, -452.38], [-371.31, -449.64], [-373.16, -447.58], [-374.65, -448.92], [-372.6, -451.19], [-370.32, -453.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.01, "pop": 5, "jobs": 0}}, {"shape": {"outer": [[411.25, 283.81], [426.05, 297.17], [405.6, 319.98], [391.05, 306.96], [411.25, 283.81]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.387, "pop": 0, "jobs": 387}}, {"shape": {"outer": [[-1559.63, -1020.84], [-1559.54, -1016.24], [-1559.18, -1005.0], [-1532.69, -1005.26], [-1532.73, -1017.12], [-1532.75, -1020.54], [-1532.76, -1025.0], [-1536.19, -1024.78], [-1536.19, -1021.56], [-1541.44, -1021.4], [-1558.25, -1020.88], [-1559.63, -1020.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.354, "pop": 177, "jobs": 0}}, {"shape": {"outer": [[-761.1, 51.34], [-774.83, 39.26], [-779.26, 44.24], [-765.53, 56.33], [-761.1, 51.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-972.96, 90.43], [-972.37, 102.32], [-977.55, 102.58], [-978.15, 90.69], [-972.96, 90.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-871.04, -76.03], [-873.01, -76.85], [-875.29, -77.5], [-879.32, -77.33], [-878.01, -45.84], [-875.65, -45.94], [-858.52, -64.68], [-871.04, -76.03]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.268, "pop": 134, "jobs": 0}}, {"shape": {"outer": [[-896.59, -45.26], [-906.19, -39.12], [-902.24, -32.97], [-897.75, -35.83], [-893.22, -31.78], [-888.25, -37.31], [-896.59, -45.26]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.082, "pop": 0, "jobs": 82}}, {"shape": {"outer": [[-672.5, 148.24], [-676.94, 153.23], [-672.4, 157.24], [-667.96, 152.24], [-672.5, 148.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-618.32, 98.39], [-627.65, 108.91], [-622.04, 113.86], [-612.69, 103.34], [-618.32, 98.39]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[-13.57, 356.58], [-9.5, 352.05], [-14.4, 347.67], [-18.47, 352.2], [-13.57, 356.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[56.74, 253.46], [58.43, 251.65], [54.0, 247.58], [47.89, 254.18], [52.31, 258.24], [56.74, 253.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[56.97, 262.51], [61.38, 257.74], [56.74, 253.46], [52.31, 258.24], [56.97, 262.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[20.66, 284.67], [14.52, 291.71], [24.46, 300.33], [30.6, 293.29], [20.66, 284.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-8.11, 325.12], [-2.83, 329.72], [2.06, 324.17], [-3.2, 319.56], [-8.11, 325.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-48.98, 340.87], [-60.67, 353.43], [-54.63, 359.0], [-49.46, 353.46], [-49.04, 353.84], [-42.52, 346.85], [-48.98, 340.87]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-61.14, 234.19], [-54.98, 239.68], [-50.52, 234.7], [-56.69, 229.22], [-61.14, 234.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-314.29, 347.37], [-319.39, 352.87], [-314.9, 356.99], [-318.75, 361.14], [-315.98, 363.68], [-307.04, 354.06], [-314.29, 347.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.076, "pop": 38, "jobs": 0}}, {"shape": {"outer": [[-305.27, 366.77], [-298.51, 372.89], [-293.34, 367.22], [-300.11, 361.1], [-305.27, 366.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1078.02, -228.2], [-1085.43, -227.84], [-1091.62, -227.53], [-1097.97, -227.21], [-1103.29, -226.99], [-1102.89, -218.83], [-1077.58, -220.04], [-1078.02, -228.2]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.132, "pop": 0, "jobs": 132}}, {"shape": {"outer": [[-1086.56, -248.59], [-1085.43, -227.84], [-1078.02, -228.2], [-1078.33, -233.74], [-1077.51, -234.73], [-1077.67, -236.89], [-1078.55, -237.77], [-1078.8, -242.19], [-1078.11, -243.07], [-1078.27, -245.35], [-1078.99, -246.03], [-1079.16, -249.05], [-1079.69, -249.02], [-1080.28, -248.98], [-1081.23, -249.94], [-1083.94, -249.86], [-1085.16, -248.67], [-1086.56, -248.59]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 0.137, "pop": 0, "jobs": 137}}, {"shape": {"outer": [[-1099.49, -247.77], [-1098.46, -228.78], [-1097.97, -227.21], [-1091.62, -227.53], [-1085.43, -227.84], [-1086.56, -248.59], [-1092.62, -248.2], [-1099.49, -247.77]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.282, "pop": 141, "jobs": 0}}, {"shape": {"outer": [[-1105.94, -247.37], [-1104.84, -228.41], [-1098.46, -228.78], [-1099.49, -247.77], [-1105.94, -247.37]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.034, "pop": 0, "jobs": 34}}, {"shape": {"outer": [[-1118.71, -246.56], [-1117.6, -227.68], [-1112.92, -227.96], [-1109.72, -228.14], [-1104.84, -228.41], [-1105.94, -247.37], [-1110.8, -247.06], [-1114.02, -246.86], [-1118.71, -246.56]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.254, "pop": 127, "jobs": 0}}, {"shape": {"outer": [[-1131.73, -245.74], [-1130.61, -226.74], [-1127.13, -226.94], [-1117.58, -227.5], [-1117.6, -227.68], [-1118.71, -246.56], [-1131.73, -245.74]], "holes": []}, "height": 3.5, "data": {"type": "commercial", "density": 0.07, "pop": 0, "jobs": 70}}, {"shape": {"outer": [[-791.1, -119.41], [-791.07, -118.9], [-790.78, -114.29], [-789.65, -114.35], [-789.5, -111.9], [-790.75, -111.82], [-790.4, -106.08], [-790.09, -101.22], [-790.07, -100.91], [-778.67, -101.63], [-779.75, -118.81], [-775.4, -123.72], [-783.24, -130.63], [-789.88, -123.15], [-788.7, -122.11], [-791.1, -119.41]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.322, "pop": 161, "jobs": 0}}, {"shape": {"outer": [[-771.85, -116.07], [-768.11, -117.12], [-775.4, -123.72], [-779.75, -118.81], [-778.67, -101.63], [-771.12, -102.11], [-771.85, -116.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-771.03, -101.29], [-771.12, -102.11], [-771.85, -116.07], [-768.11, -117.12], [-767.01, -116.28], [-766.46, -116.1], [-765.07, -114.73], [-764.95, -114.18], [-754.85, -105.17], [-753.89, -104.72], [-753.58, -104.24], [-753.43, -103.71], [-753.58, -103.1], [-753.79, -102.69], [-754.24, -102.35], [-760.01, -102.05], [-760.66, -101.56], [-762.13, -101.47], [-763.47, -101.38], [-764.15, -101.73], [-768.34, -101.46], [-771.03, -101.29]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[-713.22, -67.85], [-728.0, -81.37], [-736.68, -71.94], [-740.47, -67.83], [-751.27, -56.11], [-743.76, -49.23], [-746.98, -45.75], [-746.74, -43.56], [-740.69, -38.03], [-713.22, -67.85]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.478, "pop": 0, "jobs": 478}}, {"shape": {"outer": [[-738.06, -84.24], [-737.54, -71.9], [-736.68, -71.94], [-728.0, -81.37], [-731.14, -84.59], [-735.41, -84.37], [-738.06, -84.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-746.68, -83.78], [-746.28, -74.29], [-745.11, -74.34], [-744.82, -67.68], [-740.47, -67.83], [-740.67, -71.77], [-738.76, -71.84], [-737.54, -71.9], [-738.06, -84.24], [-738.54, -84.21], [-739.29, -84.17], [-741.51, -84.05], [-744.34, -83.9], [-745.52, -83.84], [-746.07, -83.82], [-746.68, -83.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-752.59, -83.44], [-751.59, -59.98], [-745.82, -62.76], [-746.28, -74.29], [-746.68, -83.78], [-749.11, -83.65], [-752.59, -83.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-760.57, -83.02], [-759.79, -64.65], [-763.85, -58.02], [-751.52, -58.55], [-751.59, -59.98], [-752.59, -83.44], [-758.49, -83.12], [-760.57, -83.02]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[-771.5, -82.43], [-770.79, -64.64], [-763.85, -58.02], [-759.79, -64.65], [-760.57, -83.02], [-768.87, -82.57], [-771.5, -82.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[-777.41, -82.05], [-776.73, -65.53], [-776.63, -62.31], [-772.16, -62.49], [-772.24, -64.58], [-770.79, -64.64], [-771.5, -82.43], [-772.64, -82.36], [-777.41, -82.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-788.01, -81.38], [-787.33, -66.11], [-787.28, -65.09], [-776.73, -65.53], [-777.41, -82.05], [-782.37, -81.84], [-782.45, -83.56], [-782.48, -84.34], [-786.87, -84.15], [-787.19, -83.36], [-788.01, -81.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[-799.41, -80.87], [-798.84, -68.09], [-797.72, -67.15], [-793.74, -67.41], [-793.68, -66.53], [-790.37, -66.74], [-789.48, -66.02], [-787.33, -66.11], [-788.01, -81.38], [-791.71, -81.22], [-796.08, -81.02], [-799.41, -80.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.13, "pop": 65, "jobs": 0}}, {"shape": {"outer": [[402.1, 183.87], [396.39, 178.72], [386.71, 189.38], [392.41, 194.52], [402.1, 183.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[222.98, 563.82], [217.28, 558.94], [210.73, 566.53], [216.42, 571.41], [222.98, 563.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[221.36, 463.01], [215.76, 469.59], [217.8, 471.31], [216.89, 472.37], [218.92, 474.08], [221.63, 470.9], [223.45, 472.44], [227.25, 467.97], [221.36, 463.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[319.32, 564.08], [329.35, 553.17], [323.51, 547.85], [319.48, 552.23], [320.17, 552.87], [314.18, 559.38], [319.32, 564.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[318.52, 565.71], [323.01, 569.8], [327.36, 565.08], [322.86, 560.98], [318.52, 565.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[332.56, 576.36], [338.16, 570.27], [334.4, 566.83], [333.42, 567.91], [330.3, 565.05], [325.68, 570.08], [332.56, 576.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[344.99, 562.81], [350.71, 556.59], [341.34, 548.04], [339.22, 550.36], [333.5, 545.14], [330.56, 548.33], [336.28, 553.54], [335.83, 554.03], [339.61, 557.48], [339.41, 557.71], [344.99, 562.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[308.05, 494.35], [305.38, 491.9], [301.68, 495.91], [304.35, 498.35], [308.05, 494.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[327.44, 506.69], [322.19, 501.88], [317.26, 507.24], [322.52, 512.04], [327.44, 506.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[339.48, 482.92], [331.65, 491.91], [337.91, 497.31], [345.73, 488.32], [345.32, 487.97], [346.73, 486.35], [341.14, 481.53], [339.74, 483.15], [339.48, 482.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[287.92, 436.39], [278.71, 446.68], [285.19, 452.45], [294.41, 442.17], [287.92, 436.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[251.99, 443.04], [247.9, 447.87], [250.97, 450.46], [255.07, 445.64], [251.99, 443.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[250.7, 442.57], [245.29, 437.69], [241.36, 442.01], [246.77, 446.89], [250.7, 442.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[270.69, 420.23], [265.39, 415.31], [259.05, 422.1], [261.32, 424.21], [257.71, 428.08], [260.74, 430.88], [270.69, 420.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[230.56, 345.16], [232.23, 346.68], [231.09, 347.92], [234.0, 350.56], [235.14, 349.32], [236.87, 350.89], [244.03, 343.05], [239.31, 338.76], [236.55, 341.78], [234.95, 340.35], [230.56, 345.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[207.78, 327.94], [208.5, 328.59], [207.34, 329.89], [211.74, 333.79], [212.9, 332.49], [213.64, 333.14], [219.72, 326.34], [218.91, 325.6], [220.99, 323.28], [216.79, 319.55], [214.71, 321.88], [213.87, 321.13], [207.78, 327.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[249.75, 251.08], [250.51, 251.78], [247.47, 255.09], [252.99, 260.13], [263.55, 248.66], [257.26, 242.91], [249.75, 251.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[237.9, 263.94], [245.36, 270.72], [248.85, 266.9], [241.39, 260.12], [237.9, 263.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[94.22, 460.48], [91.86, 463.16], [95.62, 466.46], [97.99, 463.78], [94.22, 460.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[112.06, 457.42], [110.49, 459.16], [112.31, 460.79], [113.88, 459.06], [112.06, 457.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[126.02, 391.68], [132.97, 398.21], [133.46, 397.68], [142.09, 405.79], [146.16, 401.47], [137.54, 393.38], [137.89, 392.99], [130.95, 386.47], [126.02, 391.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[43.3, 499.73], [40.5, 497.27], [35.92, 502.42], [38.73, 504.89], [43.3, 499.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[93.48, 532.46], [83.68, 543.33], [89.05, 548.14], [98.85, 537.28], [93.48, 532.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[37.88, 534.69], [35.52, 537.29], [40.17, 541.47], [42.52, 538.88], [37.88, 534.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[112.09, 462.53], [105.72, 456.95], [99.97, 463.46], [106.35, 469.04], [112.09, 462.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[64.77, 336.95], [72.25, 343.67], [72.71, 343.17], [78.11, 348.03], [81.48, 344.31], [76.02, 339.4], [76.53, 338.83], [70.43, 333.35], [70.06, 333.78], [68.73, 332.58], [64.77, 336.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[111.7, 338.88], [107.07, 334.58], [104.28, 337.56], [108.9, 341.86], [111.7, 338.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[54.7, 401.82], [49.52, 397.22], [45.94, 401.22], [51.13, 405.82], [54.7, 401.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-597.0, -459.94], [-599.99, -456.56], [-595.31, -452.46], [-592.32, -455.85], [-597.0, -459.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-714.16, -422.04], [-717.66, -418.29], [-713.39, -414.33], [-709.9, -418.08], [-714.16, -422.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-914.39, -549.41], [-925.99, -549.08], [-925.98, -548.62], [-928.04, -548.56], [-927.82, -540.76], [-925.76, -540.82], [-925.73, -539.97], [-915.44, -540.27], [-915.6, -545.65], [-914.28, -545.69], [-914.39, -549.41]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-730.87, -469.15], [-731.32, -469.56], [-732.17, -468.62], [-736.03, -472.1], [-735.17, -473.03], [-737.29, -474.96], [-727.69, -485.5], [-721.27, -479.7], [-730.87, -469.15]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[-527.43, -867.3], [-525.84, -865.84], [-527.03, -864.55], [-524.02, -861.79], [-522.82, -863.08], [-522.41, -862.7], [-518.14, -867.32], [-523.17, -871.92], [-527.43, -867.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-665.1, -718.45], [-670.36, -712.57], [-664.95, -707.77], [-659.7, -713.66], [-665.1, -718.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-277.97, -793.24], [-287.67, -801.96], [-279.69, -810.79], [-279.47, -810.59], [-276.84, -813.5], [-269.7, -807.1], [-271.57, -805.04], [-269.22, -802.93], [-277.97, -793.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-711.23, -236.14], [-714.06, -233.03], [-710.34, -229.66], [-707.5, -232.78], [-709.5, -234.58], [-711.23, -236.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-659.34, -289.23], [-664.13, -284.01], [-665.33, -285.1], [-667.46, -282.79], [-666.25, -281.69], [-670.78, -276.76], [-672.71, -278.53], [-674.63, -276.43], [-668.82, -271.14], [-666.93, -273.19], [-654.39, -261.77], [-653.66, -262.55], [-637.88, -248.17], [-620.8, -232.61], [-615.8, -238.07], [-618.61, -240.64], [-617.42, -241.94], [-618.0, -242.46], [-614.97, -245.76], [-616.96, -247.57], [-615.44, -249.24], [-630.01, -262.51], [-635.84, -267.82], [-655.04, -285.32], [-659.34, -289.23]], "holes": []}, "height": 56.0, "data": {"type": "residential", "density": 1.0, "pop": 2989, "jobs": 0}}, {"shape": {"outer": [[-657.39, -180.83], [-651.92, -175.9], [-624.16, -150.83], [-622.21, -152.97], [-615.98, -147.34], [-609.64, -141.61], [-611.85, -139.2], [-601.54, -129.88], [-597.67, -134.14], [-596.36, -132.95], [-594.07, -135.46], [-593.53, -134.97], [-587.91, -141.17], [-588.49, -141.68], [-586.99, -143.34], [-590.1, -146.15], [-585.96, -150.71], [-587.24, -151.88], [-566.97, -174.17], [-566.44, -173.69], [-550.1, -191.65], [-556.96, -197.84], [-563.83, -204.05], [-577.56, -216.45], [-580.01, -213.76], [-582.64, -216.13], [-604.93, -191.62], [-602.53, -189.45], [-607.01, -184.54], [-632.82, -207.84], [-657.39, -180.83]], "holes": []}, "height": 45.5, "data": {"type": "residential", "density": 1.0, "pop": 10005, "jobs": 0}}, {"shape": {"outer": [[-1105.76, 39.27], [-1108.84, 39.39], [-1110.9, 39.5], [-1114.81, 39.71], [-1114.65, 42.96], [-1118.89, 41.5], [-1119.21, 42.43], [-1124.5, 42.98], [-1125.05, 41.71], [-1129.64, 43.7], [-1130.22, 43.95], [-1129.71, 45.12], [-1132.89, 49.19], [-1133.96, 48.66], [-1135.83, 53.52], [-1134.43, 54.15], [-1134.22, 59.21], [-1135.64, 60.05], [-1133.08, 64.36], [-1132.04, 63.74], [-1128.14, 67.2], [-1128.61, 68.59], [-1123.86, 70.22], [-1123.4, 68.91], [-1118.19, 68.68], [-1117.49, 70.11], [-1112.56, 67.75], [-1113.23, 66.36], [-1110.09, 62.7], [-1103.77, 65.13], [-1103.74, 65.71], [-1092.22, 65.12], [-1093.58, 38.64], [-1093.78, 38.66], [-1105.76, 39.27]], "holes": []}, "height": 49.0, "data": {"type": "residential", "density": 1.0, "pop": 2557, "jobs": 0}}, {"shape": {"outer": [[-1100.18, -125.38], [-1106.23, -125.08], [-1105.62, -112.81], [-1099.58, -113.1], [-1100.18, -125.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-1085.27, -86.13], [-1079.96, -86.39], [-1074.27, -86.67], [-1070.99, -86.83], [-1071.12, -89.66], [-1072.12, -111.28], [-1086.41, -110.61], [-1086.38, -109.79], [-1085.27, -86.13]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.224, "pop": 0, "jobs": 224}}, {"shape": {"outer": [[-1098.07, -85.48], [-1094.38, -85.68], [-1092.07, -85.79], [-1092.13, -87.06], [-1091.54, -87.09], [-1091.03, -87.12], [-1090.97, -85.84], [-1089.75, -85.9], [-1085.27, -86.13], [-1086.38, -109.79], [-1088.38, -109.7], [-1088.4, -110.29], [-1092.71, -110.09], [-1099.23, -109.78], [-1099.21, -109.4], [-1098.98, -104.54], [-1098.13, -104.58], [-1097.43, -89.98], [-1098.28, -89.94], [-1098.07, -85.48]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.208, "pop": 104, "jobs": 0}}, {"shape": {"outer": [[-1110.43, -84.87], [-1106.14, -85.08], [-1105.25, -85.13], [-1104.63, -85.16], [-1103.15, -85.24], [-1100.98, -85.34], [-1098.07, -85.48], [-1098.28, -89.94], [-1098.98, -104.54], [-1099.21, -109.4], [-1099.91, -109.36], [-1100.05, -112.28], [-1105.58, -112.03], [-1111.48, -111.74], [-1111.43, -110.65], [-1111.35, -109.3], [-1111.32, -108.82], [-1110.82, -98.17], [-1111.06, -98.16], [-1110.68, -90.11], [-1110.43, -84.87]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[1314.18, 694.75], [1319.32, 689.26], [1308.56, 679.26], [1303.42, 684.75], [1314.18, 694.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[-2976.87, 64.46], [-2999.81, 65.14], [-3032.96, 66.15], [-3032.96, 67.11], [-3032.72, 72.03], [-3032.73, 73.64], [-3027.62, 73.48], [-3025.98, 127.97], [-3025.62, 139.78], [-2965.99, 137.98], [-2967.2, 98.0], [-2963.01, 97.87], [-2963.31, 90.98], [-2966.97, 91.27], [-2967.34, 79.01], [-2976.38, 79.32], [-2976.87, 64.46]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2782}}, {"shape": {"outer": [[-666.25, -197.22], [-669.22, -193.9], [-665.86, -190.91], [-662.89, -194.23], [-666.25, -197.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1593.1, -483.37], [-1592.7, -475.52], [-1590.23, -475.64], [-1590.17, -474.42], [-1585.01, -474.68], [-1585.08, -475.9], [-1583.93, -475.96], [-1584.36, -484.49], [-1589.12, -484.25], [-1589.09, -483.57], [-1593.1, -483.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1603.89, -482.35], [-1603.62, -476.91], [-1604.28, -476.88], [-1604.08, -473.01], [-1604.95, -472.96], [-1604.66, -467.2], [-1595.22, -467.69], [-1595.98, -482.75], [-1603.89, -482.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1578.98, -474.95], [-1570.76, -475.37], [-1571.29, -485.71], [-1576.44, -485.44], [-1576.38, -484.33], [-1580.57, -484.12], [-1580.16, -475.96], [-1579.04, -476.02], [-1578.98, -474.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-1567.79, -464.2], [-1556.96, -464.75], [-1556.98, -465.09], [-1552.4, -465.32], [-1552.84, -474.07], [-1568.25, -473.29], [-1567.79, -464.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[-1588.39, -460.26], [-1602.36, -459.43], [-1601.84, -450.68], [-1591.32, -451.3], [-1591.42, -452.87], [-1587.73, -453.08], [-1587.51, -449.38], [-1581.67, -449.72], [-1581.96, -454.51], [-1586.75, -454.22], [-1587.0, -458.65], [-1588.3, -458.57], [-1588.39, -460.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-1572.97, -440.71], [-1573.56, -453.45], [-1581.2, -453.09], [-1580.61, -440.37], [-1572.97, -440.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1565.35, -437.78], [-1549.41, -438.72], [-1550.07, -449.82], [-1557.73, -449.36], [-1557.62, -447.61], [-1562.27, -447.33], [-1562.24, -446.86], [-1565.87, -446.64], [-1565.35, -437.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[-2664.35, -599.93], [-2649.54, -600.35], [-2649.19, -588.47], [-2664.01, -588.04], [-2664.35, -599.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[-3055.1, -175.51], [-3069.37, -177.66], [-3070.73, -168.77], [-3056.46, -166.61], [-3055.1, -175.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-3066.46, -189.5], [-3066.68, -188.05], [-3067.93, -188.24], [-3068.84, -182.28], [-3067.59, -182.1], [-3067.82, -180.6], [-3054.84, -178.64], [-3053.48, -187.54], [-3066.46, -189.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-3050.74, -196.59], [-3056.96, -197.53], [-3057.99, -190.75], [-3051.77, -189.81], [-3050.74, -196.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-844.04, -3096.56], [-837.11, -3096.87], [-837.42, -3104.06], [-844.36, -3103.76], [-844.04, -3096.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2954.67, 62.61], [-2910.37, 60.95], [-2910.25, 64.37], [-2917.53, 64.65], [-2917.35, 69.33], [-2926.48, 69.68], [-2926.27, 75.54], [-2933.61, 75.81], [-2932.84, 96.33], [-2938.31, 96.54], [-2937.56, 116.84], [-2952.62, 117.41], [-2952.81, 112.49], [-2954.67, 62.61]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.779, "pop": 0, "jobs": 779}}, {"shape": {"outer": [[1050.41, 1531.55], [1053.5, 1534.36], [1057.44, 1530.06], [1054.33, 1527.24], [1050.41, 1531.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1053.61, 1541.58], [1057.5, 1537.49], [1053.88, 1534.07], [1049.99, 1538.16], [1053.61, 1541.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[707.58, 1314.22], [703.41, 1318.7], [708.15, 1323.09], [712.32, 1318.6], [707.58, 1314.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[742.69, 1178.79], [747.0, 1182.39], [750.43, 1178.32], [746.13, 1174.71], [742.69, 1178.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[759.72, 1175.28], [755.55, 1179.53], [759.05, 1182.95], [763.23, 1178.69], [759.72, 1175.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[787.17, 1218.81], [790.95, 1214.62], [788.18, 1212.14], [784.41, 1216.33], [787.17, 1218.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[472.56, 1060.55], [481.38, 1068.39], [486.35, 1062.85], [482.19, 1059.15], [483.37, 1057.83], [478.7, 1053.68], [472.56, 1060.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[443.53, 1132.45], [440.27, 1136.32], [445.2, 1140.44], [448.46, 1136.56], [443.53, 1132.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[488.74, 1097.18], [492.82, 1092.65], [488.5, 1088.79], [484.43, 1093.32], [488.74, 1097.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[329.04, 995.11], [337.25, 986.2], [328.34, 978.06], [320.13, 986.97], [329.04, 995.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[336.2, 1003.8], [345.51, 993.7], [338.93, 987.69], [329.63, 997.79], [336.2, 1003.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[338.76, 1007.59], [344.71, 1013.03], [346.58, 1010.99], [347.26, 1011.63], [348.0, 1010.83], [348.45, 1011.24], [351.65, 1007.77], [351.19, 1007.35], [353.49, 1004.86], [353.82, 1005.17], [357.08, 1001.62], [356.75, 1001.31], [357.66, 1000.32], [351.72, 994.89], [353.07, 993.42], [350.98, 991.51], [342.64, 1000.57], [343.55, 1001.41], [340.09, 1005.18], [340.58, 1005.62], [338.76, 1007.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[365.88, 985.46], [359.43, 979.56], [354.46, 984.96], [356.57, 986.9], [354.94, 988.67], [357.92, 991.4], [359.55, 989.62], [360.91, 990.87], [365.88, 985.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[374.78, 977.32], [371.91, 974.69], [373.92, 972.5], [369.05, 968.04], [367.03, 970.23], [366.76, 969.99], [360.19, 977.13], [368.21, 984.45], [374.78, 977.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[385.22, 965.97], [377.3, 958.73], [371.61, 964.91], [379.54, 972.15], [385.22, 965.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[308.74, 882.88], [305.57, 886.35], [300.29, 881.57], [295.98, 886.29], [305.28, 894.71], [304.02, 896.08], [305.76, 897.65], [304.98, 898.51], [308.84, 902.01], [312.43, 898.06], [312.71, 898.31], [317.43, 893.13], [312.2, 888.4], [313.39, 887.1], [308.74, 882.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[287.56, 884.72], [284.47, 888.06], [287.99, 891.3], [291.08, 887.96], [287.56, 884.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[760.64, 927.17], [763.4, 929.68], [769.46, 923.06], [766.7, 920.55], [760.64, 927.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1615.94, 791.49], [1620.66, 795.66], [1624.29, 791.58], [1619.58, 787.41], [1615.94, 791.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1894.96, 772.49], [1899.11, 767.98], [1893.89, 763.22], [1889.74, 767.74], [1894.96, 772.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1893.61, 774.66], [1887.87, 769.44], [1883.11, 774.63], [1888.86, 779.85], [1893.61, 774.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1933.87, 810.59], [1929.47, 815.45], [1935.1, 820.52], [1939.5, 815.67], [1933.87, 810.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1903.34, 783.94], [1899.2, 788.46], [1905.21, 793.92], [1909.35, 789.41], [1903.34, 783.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1899.44, 778.3], [1895.54, 782.56], [1900.23, 786.83], [1904.14, 782.57], [1899.44, 778.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1909.03, 776.38], [1904.14, 771.93], [1899.76, 776.72], [1904.64, 781.17], [1909.03, 776.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1645.11, 414.33], [1650.19, 408.59], [1647.16, 405.93], [1642.09, 411.68], [1645.11, 414.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1298.22, 351.99], [1308.82, 340.1], [1303.57, 335.45], [1299.51, 340.0], [1297.27, 338.01], [1292.95, 342.85], [1294.79, 344.48], [1292.56, 346.98], [1298.22, 351.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1257.91, 308.88], [1268.17, 297.52], [1267.41, 296.84], [1268.38, 295.77], [1263.89, 291.74], [1262.92, 292.81], [1262.25, 292.2], [1255.2, 300.01], [1257.25, 301.84], [1254.02, 305.4], [1257.91, 308.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[1085.72, 325.07], [1080.47, 330.55], [1086.25, 336.04], [1091.51, 330.56], [1085.72, 325.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1137.1, 233.19], [1132.14, 228.75], [1128.15, 233.17], [1133.12, 237.62], [1137.1, 233.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1139.7, 231.16], [1135.73, 235.56], [1140.52, 239.85], [1144.49, 235.45], [1139.7, 231.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1111.26, 305.67], [1106.35, 301.19], [1102.81, 305.03], [1107.73, 309.52], [1111.26, 305.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1084.79, 299.64], [1079.7, 305.15], [1086.13, 311.04], [1091.21, 305.53], [1084.79, 299.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[1035.8, 265.58], [1039.8, 269.18], [1044.36, 264.15], [1040.36, 260.56], [1035.8, 265.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1023.82, 270.42], [1030.15, 276.03], [1035.68, 269.83], [1029.34, 264.22], [1023.82, 270.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1058.01, 276.04], [1053.15, 271.75], [1049.27, 276.13], [1054.13, 280.4], [1058.01, 276.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[1065.4, 292.16], [1073.28, 298.88], [1077.74, 293.68], [1069.87, 286.96], [1065.4, 292.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[996.14, 229.88], [1000.51, 233.81], [1003.85, 230.13], [999.48, 226.2], [996.14, 229.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[982.54, 238.76], [991.44, 228.71], [984.18, 222.33], [975.28, 232.38], [982.54, 238.76]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.083, "pop": 0, "jobs": 83}}, {"shape": {"outer": [[1299.94, 233.96], [1302.78, 236.46], [1307.28, 231.37], [1304.44, 228.87], [1299.94, 233.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1259.13, 206.82], [1265.01, 212.18], [1272.32, 204.21], [1266.44, 198.86], [1259.13, 206.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[1290.9, 497.49], [1294.97, 501.14], [1298.25, 497.53], [1294.19, 493.86], [1290.9, 497.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1270.92, 478.54], [1281.38, 487.97], [1286.17, 482.69], [1282.63, 479.5], [1283.22, 478.86], [1279.03, 475.09], [1278.45, 475.73], [1275.71, 473.27], [1270.92, 478.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1287.83, 470.96], [1284.38, 474.67], [1289.32, 479.24], [1292.78, 475.54], [1287.83, 470.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[733.5, 617.04], [783.78, 561.23], [771.55, 550.0], [720.84, 605.56], [733.5, 617.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 507, "jobs": 0}}, {"shape": {"outer": [[875.43, 579.57], [923.26, 527.45], [888.48, 495.77], [878.49, 506.65], [891.82, 518.8], [880.43, 531.2], [884.12, 534.56], [881.07, 537.88], [868.37, 551.71], [871.44, 554.51], [867.35, 558.96], [865.47, 557.24], [858.85, 564.45], [875.43, 579.57]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1333}}, {"shape": {"outer": [[-643.12, -699.24], [-635.63, -692.82], [-631.34, -697.8], [-638.82, -704.21], [-643.12, -699.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2983.43, -283.81], [-2985.29, -271.38], [-2976.79, -270.11], [-2974.93, -282.56], [-2983.43, -283.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1694.95, 877.51], [1701.24, 870.51], [1698.69, 868.25], [1700.42, 866.32], [1695.9, 862.29], [1694.17, 864.22], [1691.59, 861.91], [1690.07, 863.6], [1688.15, 861.89], [1683.39, 867.19], [1694.95, 877.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[889.02, 163.86], [895.14, 169.1], [900.84, 162.49], [898.16, 160.2], [894.72, 157.25], [889.02, 163.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[877.32, 175.92], [881.65, 179.84], [883.03, 178.33], [884.51, 179.68], [887.6, 176.28], [886.12, 174.94], [889.67, 171.05], [885.33, 167.13], [877.32, 175.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[886.44, 182.98], [894.79, 190.28], [896.41, 188.44], [898.68, 190.45], [909.93, 177.69], [899.31, 168.39], [886.44, 182.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[-3105.91, 230.63], [-3103.88, 234.88], [-3100.41, 236.94], [-3094.41, 237.66], [-3082.42, 239.52], [-3071.34, 243.82], [-3060.08, 251.04], [-3053.72, 257.2], [-3048.65, 263.39], [-3044.68, 265.05], [-2949.52, 261.45], [-2950.8, 220.18], [-2956.7, 220.26], [-2957.37, 171.88], [-3029.64, 175.24], [-3033.87, 176.88], [-3038.05, 180.66], [-3041.28, 185.38], [-3042.13, 191.7], [-3042.55, 198.82], [-3043.97, 201.67], [-3046.08, 203.24], [-3049.69, 204.64], [-3054.53, 204.15], [-3057.48, 201.45], [-3060.18, 191.71], [-3062.24, 181.31], [-3063.08, 177.36], [-3066.34, 176.26], [-3107.73, 177.92], [-3105.91, 230.63]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 7573}}, {"shape": {"outer": [[-2917.47, -1257.51], [-2912.68, -1263.02], [-2913.32, -1263.58], [-2913.07, -1263.86], [-2923.5, -1272.87], [-2923.75, -1272.57], [-2925.32, -1273.93], [-2930.11, -1268.42], [-2917.47, -1257.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[-2756.38, -874.94], [-2751.91, -875.03], [-2752.02, -879.88], [-2756.49, -879.78], [-2756.38, -874.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2749.43, -1241.55], [-2743.3, -1236.42], [-2739.25, -1241.23], [-2745.38, -1246.36], [-2749.43, -1241.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2699.7, -1200.57], [-2694.79, -1206.47], [-2700.08, -1210.84], [-2704.99, -1204.94], [-2699.7, -1200.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2692.3, -1192.46], [-2690.88, -1191.26], [-2685.32, -1197.81], [-2691.97, -1203.44], [-2697.55, -1196.9], [-2692.3, -1192.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2712.73, -1184.56], [-2704.83, -1177.83], [-2692.3, -1192.46], [-2697.55, -1196.9], [-2698.93, -1198.1], [-2700.47, -1196.31], [-2701.32, -1197.03], [-2704.22, -1193.65], [-2704.64, -1194.0], [-2712.73, -1184.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[-2744.88, -1226.71], [-2752.22, -1217.68], [-2751.55, -1217.15], [-2753.44, -1214.81], [-2745.32, -1208.27], [-2743.43, -1210.6], [-2743.11, -1210.34], [-2734.64, -1220.77], [-2740.39, -1225.4], [-2741.52, -1224.0], [-2744.88, -1226.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-2834.07, -1236.59], [-2842.29, -1227.04], [-2841.45, -1226.33], [-2843.64, -1223.79], [-2836.18, -1217.42], [-2825.78, -1229.5], [-2834.07, -1236.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-2847.11, -1226.07], [-2852.52, -1219.33], [-2845.63, -1213.85], [-2840.22, -1220.59], [-2847.11, -1226.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2909.36, -1267.36], [-2903.5, -1274.13], [-2909.32, -1279.14], [-2915.2, -1272.37], [-2909.36, -1267.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2903.19, -1281.15], [-2899.17, -1285.77], [-2898.9, -1285.55], [-2892.85, -1292.52], [-2894.31, -1293.78], [-2893.31, -1294.93], [-2899.26, -1300.05], [-2906.28, -1291.95], [-2905.21, -1291.02], [-2908.38, -1287.37], [-2908.03, -1287.07], [-2908.9, -1286.08], [-2903.19, -1281.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[-3092.02, -1294.13], [-3095.75, -1289.77], [-3092.59, -1287.1], [-3088.87, -1291.45], [-3092.02, -1294.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-3088.32, -743.04], [-3081.4, -743.29], [-3081.7, -751.45], [-3088.61, -751.21], [-3088.32, -743.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-3096.55, -742.75], [-3088.7, -743.03], [-3088.96, -750.54], [-3096.83, -750.26], [-3096.55, -742.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-3128.24, -655.23], [-3127.96, -656.95], [-3128.39, -658.64], [-3129.27, -659.83], [-3130.52, -660.67], [-3131.42, -660.79], [-3132.3, -660.59], [-3133.05, -660.07], [-3133.55, -659.3], [-3133.97, -657.14], [-3133.48, -655.0], [-3132.08, -654.08], [-3129.66, -653.27], [-3129.04, -653.03], [-3128.89, -652.39], [-3129.12, -652.04], [-3129.51, -651.88], [-3132.02, -651.94], [-3132.93, -651.21], [-3133.47, -650.19], [-3133.59, -649.25], [-3133.39, -648.33], [-3129.85, -646.01], [-3128.32, -646.06], [-3121.97, -647.16], [-3121.06, -648.09], [-3120.95, -648.99], [-3121.3, -649.83], [-3122.71, -651.89], [-3122.89, -652.69], [-3122.52, -653.19], [-3121.2, -653.61], [-3120.63, -653.54], [-3120.16, -653.24], [-3119.8, -652.49], [-3119.99, -650.19], [-3119.89, -649.38], [-3119.13, -648.25], [-3118.2, -647.22], [-3116.9, -646.75], [-3115.7, -646.9], [-3114.67, -647.53], [-3114.0, -648.53], [-3113.74, -650.31], [-3113.91, -654.31], [-3114.25, -655.01], [-3114.8, -655.55], [-3115.91, -655.97], [-3117.09, -655.78], [-3119.27, -655.11], [-3119.87, -655.07], [-3120.46, -655.21], [-3121.27, -655.87], [-3121.76, -657.53], [-3121.76, -658.14], [-3121.47, -658.67], [-3120.85, -659.01], [-3120.15, -658.94], [-3118.36, -658.16], [-3117.65, -658.16], [-3116.94, -658.33], [-3114.43, -660.27], [-3114.17, -660.69], [-3114.19, -661.13], [-3114.42, -663.07], [-3115.26, -664.24], [-3115.19, -665.64], [-3115.65, -666.25], [-3116.99, -667.09], [-3119.76, -668.0], [-3122.16, -668.48], [-3122.87, -668.57], [-3123.52, -668.27], [-3123.82, -667.92], [-3127.46, -667.51], [-3127.01, -663.48], [-3126.59, -663.52], [-3127.31, -662.96], [-3127.61, -662.11], [-3127.49, -661.37], [-3127.07, -660.78], [-3125.85, -659.89], [-3124.85, -658.71], [-3124.03, -656.44], [-3123.96, -655.95], [-3124.09, -655.47], [-3124.62, -654.96], [-3126.12, -653.98], [-3126.82, -653.78], [-3127.52, -653.96], [-3128.05, -654.5], [-3128.24, -655.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.226, "pop": 113, "jobs": 0}}, {"shape": {"outer": [[-3110.58, -667.0], [-3110.22, -658.94], [-3103.78, -659.23], [-3104.13, -667.27], [-3110.58, -667.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-2220.5, -1186.18], [-2214.42, -1186.59], [-2214.81, -1192.31], [-2220.87, -1191.91], [-2220.5, -1186.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2073.99, -1181.37], [-2068.25, -1181.54], [-2068.45, -1188.23], [-2074.18, -1188.07], [-2073.99, -1181.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2224.55, -950.84], [-2227.42, -953.33], [-2231.38, -948.82], [-2228.51, -946.32], [-2224.55, -950.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-2276.64, -963.64], [-2272.88, -967.68], [-2276.53, -971.04], [-2280.28, -966.99], [-2276.64, -963.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-2279.89, -997.83], [-2284.37, -1001.76], [-2288.53, -997.05], [-2284.05, -993.12], [-2279.89, -997.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2270.76, -989.01], [-2275.2, -983.98], [-2271.17, -980.45], [-2266.73, -985.48], [-2270.76, -989.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-2323.97, -901.12], [-2318.98, -896.87], [-2314.92, -901.6], [-2319.91, -905.86], [-2323.97, -901.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-2773.53, -1420.12], [-2779.59, -1412.85], [-2772.27, -1406.79], [-2766.2, -1414.06], [-2773.53, -1420.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[-2770.82, -1423.57], [-2761.21, -1415.59], [-2750.8, -1428.03], [-2752.93, -1429.8], [-2751.31, -1431.74], [-2756.79, -1436.28], [-2758.4, -1434.34], [-2760.41, -1436.01], [-2770.82, -1423.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[-2871.21, -1482.98], [-2875.43, -1478.04], [-2869.47, -1472.97], [-2865.24, -1477.89], [-2871.21, -1482.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2868.35, -1487.01], [-2860.68, -1480.55], [-2856.76, -1485.16], [-2858.43, -1486.57], [-2857.34, -1487.86], [-2863.33, -1492.91], [-2868.35, -1487.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[-2992.38, -1068.69], [-2987.71, -1064.7], [-2983.11, -1070.05], [-2987.77, -1074.05], [-2992.38, -1068.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2998.74, -1071.38], [-2994.17, -1067.47], [-2990.16, -1072.12], [-2994.73, -1076.04], [-2998.74, -1071.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-2981.54, -1091.88], [-2985.89, -1086.82], [-2980.83, -1082.49], [-2976.47, -1087.54], [-2981.54, -1091.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-3001.75, -1087.48], [-2997.2, -1083.87], [-2992.59, -1089.63], [-2997.13, -1093.25], [-3001.75, -1087.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-3015.04, -1102.84], [-3019.85, -1106.81], [-3024.68, -1101.0], [-3019.87, -1097.03], [-3015.04, -1102.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-3070.94, -835.89], [-3064.73, -836.28], [-3065.23, -844.0], [-3071.43, -843.6], [-3070.94, -835.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-2938.59, -859.77], [-2938.32, -852.13], [-2930.95, -852.39], [-2931.22, -860.04], [-2938.59, -859.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-2875.7, -860.76], [-2880.53, -860.61], [-2880.32, -854.26], [-2875.49, -854.42], [-2875.7, -860.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-2874.96, -860.89], [-2874.76, -854.47], [-2867.9, -854.71], [-2868.11, -861.12], [-2874.96, -860.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-1783.94, -1375.14], [-1784.01, -1381.27], [-1784.79, -1381.25], [-1784.8, -1382.2], [-1791.89, -1382.12], [-1791.9, -1383.28], [-1797.93, -1383.21], [-1797.83, -1374.98], [-1783.94, -1375.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1815.89, -1394.71], [-1807.91, -1394.7], [-1807.89, -1402.2], [-1809.22, -1402.21], [-1809.2, -1405.94], [-1814.61, -1405.95], [-1814.62, -1403.8], [-1817.02, -1403.8], [-1817.03, -1399.61], [-1815.88, -1399.61], [-1815.89, -1394.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1826.84, -1400.99], [-1819.17, -1400.98], [-1819.15, -1409.97], [-1826.82, -1409.97], [-1826.84, -1400.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-2100.06, -1432.95], [-2093.35, -1433.2], [-2093.61, -1440.33], [-2100.32, -1440.08], [-2100.06, -1432.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[-579.84, -2665.76], [-569.99, -2666.14], [-570.49, -2678.89], [-580.33, -2678.51], [-579.84, -2665.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[-759.32, -2578.91], [-758.78, -2571.63], [-753.14, -2572.04], [-753.67, -2579.32], [-759.32, -2578.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-824.59, -2577.54], [-823.95, -2569.33], [-816.23, -2569.93], [-816.87, -2578.14], [-824.59, -2577.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[-814.07, -2578.54], [-813.47, -2570.89], [-805.0, -2571.54], [-805.6, -2579.21], [-814.07, -2578.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-909.76, -2572.41], [-909.55, -2566.27], [-903.28, -2566.49], [-903.5, -2572.63], [-909.76, -2572.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.03, "pop": 15, "jobs": 0}}, {"shape": {"outer": [[-919.26, -2569.17], [-919.0, -2561.61], [-911.43, -2561.88], [-911.7, -2569.44], [-919.26, -2569.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-929.62, -2555.69], [-929.44, -2550.61], [-925.38, -2550.76], [-925.56, -2555.84], [-929.62, -2555.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-954.54, -2561.03], [-948.37, -2561.25], [-948.61, -2568.17], [-954.78, -2567.96], [-954.54, -2561.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1048.7, -2558.83], [-1048.98, -2564.78], [-1053.05, -2564.6], [-1052.76, -2558.65], [-1048.7, -2558.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-1029.16, -2558.82], [-1023.9, -2559.07], [-1024.22, -2565.82], [-1029.48, -2565.58], [-1029.16, -2558.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-1044.3, -2556.95], [-1032.13, -2557.52], [-1032.49, -2565.23], [-1039.71, -2564.89], [-1039.76, -2566.02], [-1044.72, -2565.78], [-1044.3, -2556.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1007.97, -2577.59], [-1003.69, -2577.61], [-1003.72, -2584.52], [-1008.0, -2584.5], [-1007.97, -2577.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-977.88, -2593.1], [-972.84, -2593.31], [-973.11, -2600.02], [-978.16, -2599.81], [-977.88, -2593.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[-946.73, -2599.73], [-946.5, -2594.63], [-941.75, -2594.84], [-941.98, -2599.95], [-946.73, -2599.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[-941.88, -2605.92], [-941.55, -2598.61], [-935.39, -2598.89], [-935.72, -2606.19], [-941.88, -2605.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-900.05, -2699.51], [-890.62, -2699.83], [-890.88, -2707.45], [-900.32, -2707.11], [-900.05, -2699.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[-870.01, -2799.59], [-861.67, -2800.02], [-862.01, -2806.74], [-870.36, -2806.31], [-870.01, -2799.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-810.8, -2847.29], [-807.61, -2840.14], [-793.68, -2846.31], [-796.87, -2853.45], [-810.8, -2847.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[-813.19, -2857.33], [-809.96, -2849.67], [-800.25, -2853.72], [-803.48, -2861.39], [-813.19, -2857.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-19.79, 329.88], [-24.11, 334.55], [-19.93, 338.39], [-15.62, 333.72], [-19.79, 329.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[354.46, -68.21], [345.68, -58.51], [349.17, -55.37], [357.96, -65.06], [354.46, -68.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[362.68, -76.9], [354.95, -68.37], [358.42, -65.24], [366.16, -73.78], [362.68, -76.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[371.7, -87.21], [363.07, -77.68], [366.77, -74.35], [375.4, -83.88], [371.7, -87.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[374.86, -106.15], [366.09, -96.13], [370.82, -91.96], [371.69, -91.32], [380.45, -101.21], [374.86, -106.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[369.26, -110.9], [361.25, -101.86], [359.46, -99.71], [364.96, -94.86], [366.09, -96.13], [374.86, -106.15], [369.26, -110.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[351.65, -34.24], [361.67, -25.74], [365.09, -29.74], [367.46, -32.51], [369.73, -35.17], [373.79, -39.92], [375.36, -41.75], [374.63, -42.36], [381.89, -50.84], [372.6, -58.73], [351.65, -34.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.33, "pop": 165, "jobs": 0}}, {"shape": {"outer": [[353.61, -15.13], [359.31, -21.32], [343.7, -35.58], [338.0, -29.38], [353.61, -15.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[344.1, -7.73], [350.55, -14.28], [342.91, -21.75], [341.15, -19.96], [337.59, -23.44], [333.49, -19.27], [337.05, -15.79], [336.46, -15.19], [344.1, -7.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[317.6, -30.95], [304.98, -17.22], [311.85, -10.96], [315.81, -15.26], [316.57, -14.57], [320.16, -18.48], [324.21, -14.79], [329.27, -20.31], [317.6, -30.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[327.34, -8.51], [321.49, -2.14], [330.37, 5.94], [330.59, 5.7], [332.51, 7.46], [337.56, 1.95], [335.64, 0.19], [336.2, -0.42], [327.34, -8.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[306.41, 0.42], [321.74, 14.39], [322.0, 14.09], [323.58, 15.52], [328.29, 10.38], [326.72, 8.94], [328.54, 6.97], [313.22, -6.99], [306.41, 0.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[313.52, 25.92], [319.22, 19.71], [315.25, 16.08], [315.82, 15.46], [312.12, 12.08], [311.55, 12.71], [305.05, 6.78], [298.83, 13.57], [308.29, 22.2], [308.82, 21.63], [313.52, 25.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.14, "pop": 70, "jobs": 0}}, {"shape": {"outer": [[293.16, -60.29], [297.43, -56.43], [296.88, -55.84], [305.08, -48.44], [311.28, -55.25], [308.35, -57.9], [309.73, -59.41], [303.91, -64.66], [302.53, -63.16], [298.83, -66.51], [296.16, -63.58], [294.84, -64.79], [292.22, -61.91], [293.54, -60.7], [293.16, -60.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[281.08, -48.08], [282.12, -47.14], [280.61, -45.48], [289.67, -37.27], [291.18, -38.94], [292.98, -37.31], [299.22, -44.16], [294.94, -48.03], [295.49, -48.62], [291.34, -52.37], [290.8, -51.78], [287.32, -54.92], [284.49, -51.81], [283.67, -52.55], [281.21, -49.86], [282.03, -49.12], [281.08, -48.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[282.98, -22.65], [288.33, -28.53], [282.21, -34.06], [283.15, -35.1], [273.5, -43.83], [267.2, -36.91], [282.98, -22.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[410.04, 255.25], [397.31, 243.87], [392.21, 249.54], [395.43, 252.42], [395.11, 252.78], [399.21, 256.43], [399.53, 256.08], [404.95, 260.92], [410.04, 255.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[1992.9, 911.97], [1995.99, 914.85], [2000.36, 910.22], [1997.28, 907.32], [1992.9, 911.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1679.31, 1105.32], [1673.31, 1111.82], [1679.4, 1117.4], [1685.39, 1110.91], [1679.31, 1105.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1648.44, 1062.44], [1646.24, 1064.79], [1644.77, 1063.43], [1642.69, 1065.68], [1644.15, 1067.02], [1643.79, 1067.41], [1649.71, 1072.9], [1654.36, 1067.91], [1648.44, 1062.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1653.89, 1056.46], [1651.86, 1058.64], [1650.53, 1057.41], [1648.08, 1060.02], [1649.41, 1061.26], [1649.29, 1061.39], [1654.13, 1065.86], [1658.73, 1060.93], [1653.89, 1056.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[1620.45, 1093.73], [1620.1, 1093.42], [1621.27, 1092.12], [1616.79, 1088.1], [1615.62, 1089.39], [1615.19, 1089.01], [1609.53, 1095.26], [1614.79, 1099.98], [1620.45, 1093.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1779.96, 694.46], [1779.29, 693.86], [1780.66, 692.34], [1775.38, 687.62], [1774.02, 689.14], [1772.95, 688.19], [1765.72, 696.21], [1766.38, 696.79], [1763.26, 700.26], [1767.98, 704.48], [1769.03, 705.43], [1769.61, 705.95], [1779.96, 694.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[1518.85, 428.79], [1523.14, 424.13], [1518.38, 419.78], [1514.1, 424.44], [1518.85, 428.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1504.41, 443.71], [1509.01, 438.63], [1504.68, 434.73], [1500.08, 439.82], [1504.41, 443.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[1499.81, 456.84], [1507.5, 448.34], [1499.35, 441.02], [1491.66, 449.51], [1492.07, 449.88], [1490.15, 451.99], [1497.04, 458.18], [1498.95, 456.07], [1499.81, 456.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[1605.75, 646.52], [1603.37, 649.26], [1607.89, 653.15], [1610.27, 650.42], [1605.75, 646.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1591.16, 633.11], [1594.85, 629.23], [1590.83, 625.44], [1587.14, 629.33], [1591.16, 633.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[1579.31, 616.08], [1576.03, 619.62], [1580.93, 624.14], [1584.22, 620.6], [1579.31, 616.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1565.72, 609.99], [1571.6, 615.31], [1576.34, 610.11], [1570.45, 604.78], [1565.72, 609.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[1551.85, 551.8], [1546.18, 557.91], [1546.92, 558.59], [1541.25, 564.69], [1546.51, 569.55], [1557.85, 557.34], [1551.85, 551.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1496.6, 723.99], [1489.81, 731.5], [1495.13, 736.27], [1501.92, 728.76], [1496.6, 723.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[1468.81, 679.51], [1475.1, 685.23], [1480.6, 679.23], [1474.31, 673.5], [1468.81, 679.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[1461.18, 515.54], [1455.32, 521.79], [1465.16, 530.95], [1470.86, 524.87], [1469.03, 523.16], [1469.2, 522.99], [1461.18, 515.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[1468.37, 496.7], [1464.54, 493.19], [1460.16, 497.94], [1464.0, 501.45], [1468.37, 496.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1363.15, 399.61], [1359.37, 403.83], [1362.22, 406.36], [1366.0, 402.15], [1363.15, 399.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[1213.65, 271.07], [1210.0, 275.02], [1214.42, 279.07], [1218.08, 275.12], [1213.65, 271.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[1134.83, 386.52], [1137.36, 388.76], [1140.29, 385.47], [1137.76, 383.24], [1134.83, 386.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[1206.17, 419.2], [1211.98, 424.55], [1217.94, 418.12], [1212.13, 412.78], [1206.17, 419.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[994.31, 241.61], [999.87, 246.39], [1004.16, 241.46], [998.6, 236.67], [994.31, 241.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[923.39, 169.53], [927.62, 173.5], [932.9, 167.93], [930.82, 165.97], [928.66, 163.95], [923.39, 169.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1152.59, 493.89], [1147.32, 499.74], [1156.59, 508.01], [1161.85, 502.16], [1152.59, 493.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1095.97, 403.43], [1080.78, 389.55], [1072.97, 398.03], [1071.69, 396.86], [1057.1, 412.7], [1076.56, 430.49], [1084.79, 421.55], [1085.61, 422.3], [1092.55, 414.77], [1088.74, 411.3], [1095.97, 403.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.656, "pop": 328, "jobs": 0}}, {"shape": {"outer": [[1241.22, 586.68], [1247.73, 579.79], [1243.47, 575.79], [1243.03, 576.24], [1240.09, 573.49], [1233.88, 580.06], [1237.41, 583.36], [1237.53, 583.22], [1241.22, 586.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[1276.42, 590.28], [1282.76, 596.07], [1290.2, 587.99], [1289.77, 587.58], [1293.54, 583.49], [1287.64, 578.1], [1286.99, 578.79], [1280.34, 586.03], [1276.42, 590.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[1288.1, 675.85], [1293.85, 669.49], [1293.67, 669.33], [1296.17, 666.57], [1292.0, 662.83], [1283.76, 671.96], [1284.17, 672.31], [1283.03, 673.58], [1285.11, 675.44], [1286.25, 674.18], [1288.1, 675.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[1666.15, 885.74], [1668.63, 887.97], [1676.78, 878.99], [1674.3, 876.76], [1666.15, 885.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.026, "pop": 0, "jobs": 26}}, {"shape": {"outer": [[1768.77, 976.8], [1777.33, 967.31], [1771.67, 962.24], [1769.26, 964.92], [1768.79, 964.5], [1765.22, 968.48], [1765.68, 968.9], [1763.12, 971.74], [1768.77, 976.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1784.27, 944.54], [1789.98, 949.73], [1793.65, 945.72], [1787.94, 940.54], [1784.27, 944.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1773.38, 934.18], [1776.14, 936.69], [1779.18, 933.37], [1776.42, 930.86], [1773.38, 934.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[1770.28, 929.56], [1773.02, 926.56], [1772.55, 926.13], [1775.33, 923.11], [1770.23, 918.47], [1764.71, 924.51], [1770.28, 929.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[1784.25, 899.94], [1778.12, 894.36], [1767.79, 905.65], [1770.01, 907.66], [1767.61, 910.29], [1771.25, 913.6], [1773.09, 911.59], [1773.36, 911.84], [1784.25, 899.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1840.09, 889.71], [1844.05, 893.02], [1848.41, 887.83], [1844.44, 884.53], [1840.09, 889.71]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1872.6, 876.39], [1870.33, 874.31], [1867.86, 876.98], [1870.13, 879.06], [1872.6, 876.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[1838.17, 856.53], [1844.33, 861.92], [1849.01, 856.61], [1842.86, 851.22], [1838.17, 856.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1843.01, 835.55], [1850.01, 841.89], [1859.21, 831.8], [1858.14, 830.83], [1861.23, 827.44], [1855.32, 822.07], [1843.01, 835.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[1808.8, 830.26], [1814.79, 835.26], [1819.44, 829.74], [1813.46, 824.74], [1808.8, 830.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[1797.01, 804.05], [1804.26, 810.4], [1804.39, 810.26], [1807.32, 812.82], [1812.15, 807.36], [1808.96, 804.56], [1809.38, 804.09], [1805.04, 800.3], [1804.63, 800.77], [1801.54, 798.05], [1798.11, 801.94], [1798.54, 802.32], [1797.01, 804.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[1731.11, 1033.28], [1726.73, 1038.31], [1730.72, 1041.77], [1735.11, 1036.73], [1731.11, 1033.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1726.24, 1029.1], [1721.43, 1034.63], [1726.09, 1038.66], [1730.91, 1033.14], [1726.24, 1029.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[1671.12, 979.66], [1665.63, 985.65], [1671.46, 990.96], [1676.96, 984.97], [1671.12, 979.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-745.07, 55.31], [-759.86, 42.48], [-761.16, 43.96], [-762.52, 42.78], [-764.97, 45.58], [-763.66, 46.73], [-764.47, 47.65], [-759.45, 52.0], [-759.96, 52.59], [-750.14, 61.1], [-745.07, 55.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-671.01, 38.46], [-663.21, 45.33], [-681.47, 65.91], [-683.36, 65.94], [-684.35, 65.06], [-684.48, 63.27], [-683.59, 62.27], [-685.51, 60.57], [-686.45, 61.62], [-687.98, 61.65], [-689.16, 60.61], [-689.4, 59.19], [-671.01, 38.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.232, "pop": 116, "jobs": 0}}, {"shape": {"outer": [[268.16, -3138.2], [271.35, -3137.45], [274.2, -3135.84], [276.49, -3133.51], [278.05, -3130.65], [278.76, -3127.46], [278.55, -3124.21], [277.46, -3121.14], [275.55, -3118.48], [272.69, -3116.29], [269.3, -3115.06], [265.69, -3114.92], [262.22, -3115.87], [259.19, -3117.84], [256.91, -3120.62], [255.67, -3123.59], [255.29, -3126.77], [255.79, -3129.93], [257.13, -3132.84], [259.22, -3135.29], [261.89, -3137.07], [264.95, -3138.07], [268.16, -3138.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.342, "pop": 171, "jobs": 0}}, {"shape": {"outer": [[251.27, -3065.18], [252.04, -3069.02], [253.85, -3072.5], [256.56, -3075.34], [259.94, -3077.34], [263.74, -3078.33], [267.67, -3078.25], [271.42, -3077.09], [274.52, -3075.11], [276.99, -3072.4], [278.68, -3069.16], [279.48, -3065.59], [279.33, -3061.93], [278.24, -3058.43], [276.28, -3055.34], [273.6, -3052.84], [270.36, -3051.12], [266.94, -3050.32], [263.43, -3050.36], [260.04, -3051.27], [256.97, -3052.98], [254.44, -3055.4], [252.57, -3058.36], [251.49, -3061.69], [251.27, -3065.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.496, "pop": 248, "jobs": 0}}, {"shape": {"outer": [[216.93, -3071.75], [217.47, -3075.38], [218.93, -3078.74], [221.22, -3081.63], [224.15, -3083.84], [227.57, -3085.21], [231.22, -3085.68], [234.88, -3085.2], [238.27, -3083.79], [241.21, -3081.57], [243.5, -3078.62], [244.94, -3075.17], [245.43, -3071.46], [244.92, -3067.75], [243.47, -3064.31], [241.17, -3061.36], [238.18, -3059.12], [234.72, -3057.73], [231.01, -3057.29], [227.31, -3057.82], [223.88, -3059.29], [220.95, -3061.59], [218.72, -3064.59], [217.36, -3068.05], [216.93, -3071.75]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.402, "pop": 0, "jobs": 402}}, {"shape": {"outer": [[-1332.23, -2171.42], [-1341.31, -2176.53], [-1324.82, -2205.65], [-1315.73, -2200.55], [-1332.23, -2171.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.28, "pop": 140, "jobs": 0}}, {"shape": {"outer": [[-217.44, 269.58], [-214.11, 265.83], [-214.37, 265.59], [-211.07, 261.88], [-210.47, 262.4], [-207.4, 258.95], [-206.89, 259.4], [-205.1, 257.38], [-200.59, 261.36], [-202.41, 263.4], [-201.78, 263.97], [-211.45, 274.86], [-217.44, 269.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[-2937.71, -1039.68], [-2937.11, -1044.79], [-2942.46, -1045.41], [-2943.06, -1040.3], [-2937.71, -1039.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1198.07, -2227.84], [-1205.39, -2227.44], [-1204.95, -2219.47], [-1197.63, -2219.87], [-1198.07, -2227.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1197.62, -2199.66], [-1197.3, -2192.27], [-1190.64, -2192.56], [-1190.95, -2199.94], [-1197.62, -2199.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-1213.81, -2206.5], [-1206.84, -2206.68], [-1206.99, -2212.85], [-1213.96, -2212.68], [-1213.81, -2206.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-1473.15, -1787.48], [-1480.54, -1787.27], [-1480.34, -1780.02], [-1472.93, -1780.25], [-1473.15, -1787.48]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[-1527.54, -1660.17], [-1527.8, -1669.96], [-1547.94, -1669.43], [-1547.69, -1659.64], [-1527.54, -1660.17]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.126, "pop": 0, "jobs": 126}}, {"shape": {"outer": [[-1527.05, -1641.6], [-1527.54, -1660.17], [-1547.69, -1659.64], [-1550.24, -1659.57], [-1549.75, -1641.0], [-1527.05, -1641.6]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.27, "pop": 0, "jobs": 270}}, {"shape": {"outer": [[-1549.75, -1641.0], [-1527.05, -1641.6], [-1526.56, -1623.2], [-1549.27, -1622.6], [-1549.75, -1641.0]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.268, "pop": 0, "jobs": 268}}, {"shape": {"outer": [[-1461.04, -1561.05], [-1468.05, -1560.97], [-1467.97, -1553.26], [-1460.95, -1553.33], [-1461.04, -1561.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1468.14, -1563.68], [-1462.12, -1563.74], [-1462.19, -1570.29], [-1468.2, -1570.23], [-1468.14, -1563.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[-1463.99, -1685.23], [-1464.0, -1689.81], [-1470.15, -1689.8], [-1470.14, -1685.22], [-1463.99, -1685.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[-1605.0, -1336.35], [-1604.9, -1330.44], [-1600.98, -1330.49], [-1601.06, -1336.4], [-1605.0, -1336.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1562.94, -1292.19], [-1555.95, -1292.44], [-1556.24, -1300.54], [-1563.23, -1300.3], [-1562.94, -1292.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[-1525.55, -1540.35], [-1525.74, -1548.18], [-1545.23, -1547.74], [-1545.14, -1543.56], [-1541.69, -1543.65], [-1541.67, -1542.41], [-1540.14, -1542.45], [-1540.08, -1540.03], [-1525.55, -1540.35]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.087, "pop": 0, "jobs": 87}}, {"shape": {"outer": [[-1526.18, -1582.87], [-1526.57, -1597.61], [-1549.45, -1597.01], [-1549.05, -1582.26], [-1526.18, -1582.87]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.216, "pop": 0, "jobs": 216}}, {"shape": {"outer": [[-1525.94, -1573.94], [-1526.18, -1582.87], [-1549.05, -1582.26], [-1552.87, -1582.16], [-1552.63, -1573.23], [-1544.37, -1573.45], [-1525.94, -1573.94]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.153, "pop": 0, "jobs": 153}}, {"shape": {"outer": [[-1544.04, -1560.66], [-1525.61, -1561.15], [-1525.94, -1573.94], [-1544.37, -1573.45], [-1544.04, -1560.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.151, "pop": 0, "jobs": 151}}, {"shape": {"outer": [[-1522.63, -1418.0], [-1522.87, -1427.27], [-1531.34, -1427.05], [-1531.1, -1417.78], [-1522.63, -1418.0]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.05, "pop": 0, "jobs": 50}}, {"shape": {"outer": [[-1538.43, -1411.3], [-1522.47, -1411.71], [-1522.63, -1418.0], [-1531.1, -1417.78], [-1539.88, -1417.55], [-1539.71, -1411.26], [-1538.43, -1411.3]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.069, "pop": 0, "jobs": 69}}, {"shape": {"outer": [[-1522.23, -1402.78], [-1522.47, -1411.71], [-1538.43, -1411.3], [-1538.19, -1402.37], [-1522.23, -1402.78]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.091, "pop": 0, "jobs": 91}}, {"shape": {"outer": [[-1522.06, -1396.17], [-1522.23, -1402.78], [-1538.19, -1402.37], [-1545.96, -1402.17], [-1545.79, -1395.55], [-1540.44, -1395.69], [-1522.06, -1396.17]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.101, "pop": 0, "jobs": 101}}, {"shape": {"outer": [[-1521.91, -1390.42], [-1522.06, -1396.17], [-1540.44, -1395.69], [-1540.28, -1389.94], [-1521.91, -1390.42]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.068, "pop": 0, "jobs": 68}}, {"shape": {"outer": [[-1521.91, -1390.42], [-1521.67, -1381.12], [-1541.03, -1380.62], [-1541.27, -1389.91], [-1540.28, -1389.94], [-1521.91, -1390.42]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.115, "pop": 0, "jobs": 115}}, {"shape": {"outer": [[-1579.5, -812.84], [-1578.51, -812.86], [-1578.46, -811.2], [-1575.14, -811.28], [-1575.19, -812.97], [-1571.06, -813.08], [-1571.27, -821.0], [-1573.0, -820.96], [-1573.03, -822.3], [-1576.5, -822.22], [-1576.46, -820.76], [-1579.7, -820.67], [-1579.5, -812.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[-1525.45, -474.72], [-1526.07, -487.34], [-1532.7, -487.02], [-1532.48, -482.44], [-1533.1, -482.41], [-1532.87, -477.71], [-1532.25, -477.74], [-1532.09, -474.4], [-1525.45, -474.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[-1523.63, -487.21], [-1522.92, -472.62], [-1513.57, -473.07], [-1514.29, -487.67], [-1523.63, -487.21]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[-1509.49, -469.49], [-1519.04, -469.02], [-1518.56, -458.93], [-1509.0, -459.4], [-1509.49, -469.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-1519.7, -442.54], [-1509.08, -443.06], [-1509.56, -452.86], [-1520.17, -452.34], [-1519.7, -442.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-1536.9, -439.0], [-1526.57, -439.51], [-1527.11, -450.49], [-1537.42, -449.98], [-1537.4, -449.39], [-1539.28, -449.29], [-1538.82, -439.97], [-1536.94, -440.07], [-1536.9, -439.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1594.27, -723.22], [-1588.16, -723.48], [-1588.3, -726.75], [-1594.4, -726.48], [-1594.27, -723.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[-1682.27, -700.64], [-1681.53, -689.93], [-1680.47, -690.01], [-1680.34, -688.12], [-1671.12, -688.75], [-1671.25, -690.65], [-1670.29, -690.71], [-1671.04, -701.41], [-1682.27, -700.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[-1694.79, -698.0], [-1694.33, -686.82], [-1685.46, -687.18], [-1685.92, -698.35], [-1694.79, -698.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[-1706.15, -685.56], [-1697.82, -685.74], [-1698.27, -706.11], [-1706.61, -705.93], [-1706.15, -685.56]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[-1406.98, -1224.93], [-1422.58, -1224.54], [-1422.84, -1235.33], [-1407.25, -1235.71], [-1406.98, -1224.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[660.91, 68.16], [662.86, 66.0], [701.51, 100.8], [722.11, 119.34], [696.75, 147.3], [622.86, 80.75], [646.26, 54.96], [655.83, 63.58], [660.91, 68.16]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2365}}, {"shape": {"outer": [[1867.59, 1609.16], [1869.14, 1610.57], [1893.57, 1632.85], [1918.55, 1605.64], [1934.5, 1588.27], [1913.13, 1568.79], [1911.06, 1571.04], [1906.45, 1566.82], [1867.59, 1609.16]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1350}}, {"shape": {"outer": [[1001.69, 1039.88], [1043.84, 993.22], [1040.72, 990.09], [1054.17, 976.0], [1043.12, 966.38], [1046.37, 963.04], [1004.94, 925.95], [937.94, 993.08], [980.17, 1031.28], [991.04, 1040.35], [995.61, 1044.7], [1000.5, 1039.87], [1000.98, 1039.23], [1001.69, 1039.88]], "holes": []}, "height": 38.5, "data": {"type": "residential", "density": 1.0, "pop": 13597, "jobs": 0}}, {"shape": {"outer": [[853.83, 720.91], [830.34, 700.03], [831.13, 699.19], [827.03, 695.76], [823.76, 699.76], [808.16, 686.38], [834.94, 656.31], [839.06, 660.01], [841.01, 657.87], [846.61, 662.43], [844.77, 665.31], [850.04, 670.61], [837.02, 684.8], [840.58, 687.7], [842.88, 685.45], [847.47, 689.42], [849.25, 688.0], [856.08, 693.98], [858.1, 691.84], [861.54, 688.17], [866.0, 683.43], [872.18, 689.07], [867.74, 693.89], [864.25, 697.68], [862.53, 699.54], [866.1, 702.88], [863.69, 705.14], [866.5, 707.42], [853.83, 720.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1090}}, {"shape": {"outer": [[-722.41, -569.27], [-726.01, -565.32], [-727.76, -566.91], [-729.54, -564.94], [-735.97, -570.75], [-730.58, -576.67], [-722.41, -569.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[-589.41, -762.54], [-603.82, -775.72], [-593.25, -787.52], [-578.5, -774.11], [-589.41, -762.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[-1042.79, -423.55], [-1030.54, -424.01], [-1030.05, -411.21], [-1042.31, -410.74], [-1042.79, -423.55]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.088, "pop": 0, "jobs": 88}}, {"shape": {"outer": [[-640.5, -386.54], [-641.02, -387.0], [-644.6, -382.97], [-651.1, -388.72], [-640.69, -400.4], [-634.6, -395.02], [-638.35, -390.81], [-637.43, -389.99], [-640.5, -386.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[-170.51, -532.14], [-145.42, -533.47], [-147.03, -570.07], [-177.53, -536.85], [-174.07, -533.64], [-173.17, -534.69], [-170.51, -532.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.52, "pop": 260, "jobs": 0}}, {"shape": {"outer": [[-1753.35, -187.56], [-1751.02, -185.76], [-1748.15, -187.0], [-1747.8, -189.8], [-1750.42, -191.5], [-1752.88, -190.37], [-1753.35, -187.56]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.014, "pop": 0, "jobs": 14}}, {"shape": {"outer": [[-1314.82, -579.84], [-1337.94, -578.69], [-1338.33, -578.36], [-1338.76, -577.65], [-1336.96, -550.04], [-1340.24, -549.9], [-1340.59, -549.43], [-1339.17, -524.43], [-1286.97, -522.1], [-1214.06, -530.99], [-1216.57, -588.63], [-1280.11, -585.37], [-1294.64, -584.64], [-1309.48, -583.72], [-1309.33, -580.0], [-1314.82, -579.84]], "holes": []}, "height": 14.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 8231}}, {"shape": {"outer": [[-1248.86, -767.23], [-1259.26, -790.15], [-1262.0, -788.9], [-1263.54, -792.28], [-1274.52, -787.3], [-1280.92, -784.39], [-1281.11, -784.81], [-1281.42, -785.48], [-1298.71, -777.64], [-1298.24, -776.63], [-1347.16, -754.46], [-1344.45, -748.53], [-1347.3, -747.24], [-1343.15, -738.17], [-1340.51, -739.36], [-1331.81, -720.33], [-1263.74, -751.2], [-1265.2, -754.41], [-1256.17, -758.47], [-1258.23, -763.01], [-1248.86, -767.23]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2219}}, {"shape": {"outer": [[2045.39, 873.1], [2040.75, 868.78], [2036.16, 873.69], [2040.79, 878.02], [2045.39, 873.1]], "holes": []}, "height": 5.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[1051.47, 328.29], [1060.73, 317.62], [1056.36, 313.86], [1057.38, 312.68], [1055.49, 311.05], [1054.47, 312.24], [1054.13, 311.93], [1044.88, 322.61], [1051.47, 328.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[566.3, 657.09], [575.99, 646.29], [629.68, 694.43], [625.75, 698.42], [626.62, 699.05], [621.43, 704.53], [604.25, 689.06], [603.17, 690.09], [582.68, 671.78], [583.81, 670.64], [575.93, 663.62], [574.85, 664.45], [566.3, 657.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.798, "pop": 399, "jobs": 0}}, {"shape": {"outer": [[630.15, 714.73], [636.0, 708.15], [636.91, 709.1], [637.7, 708.44], [699.67, 764.48], [700.43, 763.8], [704.61, 767.58], [697.47, 775.5], [651.91, 734.3], [630.15, 714.73]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.706, "pop": 353, "jobs": 0}}, {"shape": {"outer": [[-2948.01, -2908.36], [-2929.95, -2903.22], [-2927.54, -2911.62], [-2944.42, -2916.42], [-2943.57, -2919.34], [-2948.1, -2920.63], [-2949.67, -2915.18], [-2946.33, -2914.23], [-2948.01, -2908.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2174.26, 1730.35], [2181.73, 1740.01], [2182.32, 1739.71], [2183.52, 1741.37], [2183.19, 1741.66], [2188.85, 1748.57], [2190.19, 1747.66], [2191.83, 1749.57], [2190.6, 1750.64], [2195.42, 1756.82], [2196.7, 1755.86], [2198.62, 1757.87], [2197.28, 1759.05], [2205.08, 1768.47], [2209.68, 1764.75], [2210.17, 1765.06], [2218.36, 1756.88], [2216.95, 1755.34], [2219.29, 1752.89], [2217.99, 1751.73], [2220.18, 1749.71], [2221.3, 1750.87], [2226.87, 1745.05], [2225.64, 1743.83], [2227.82, 1741.81], [2229.06, 1743.09], [2231.29, 1740.68], [2232.8, 1741.95], [2244.15, 1730.04], [2240.33, 1726.39], [2238.99, 1727.18], [2236.97, 1725.23], [2238.41, 1723.93], [2230.72, 1716.7], [2229.77, 1717.76], [2227.74, 1715.8], [2228.97, 1714.57], [2218.69, 1704.79], [2217.58, 1705.86], [2215.29, 1703.91], [2216.68, 1702.84], [2205.22, 1691.67], [2190.94, 1706.55], [2196.68, 1712.32], [2198.69, 1710.14], [2200.94, 1712.3], [2199.71, 1713.43], [2209.21, 1722.96], [2210.71, 1721.67], [2212.73, 1723.79], [2211.4, 1724.91], [2213.8, 1727.02], [2204.36, 1736.87], [2202.1, 1734.38], [2200.89, 1735.71], [2198.81, 1733.59], [2200.88, 1731.52], [2187.46, 1718.46], [2180.26, 1724.49], [2180.6, 1725.01], [2174.26, 1730.35]], "holes": []}, "height": 14.0, "data": {"type": "residential", "density": 1.0, "pop": 1604, "jobs": 0}}, {"shape": {"outer": [[2310.95, 1840.6], [2290.8, 1820.86], [2299.78, 1811.98], [2301.86, 1813.93], [2302.88, 1812.26], [2321.05, 1830.13], [2310.95, 1840.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.322, "pop": 161, "jobs": 0}}, {"shape": {"outer": [[1394.26, 1613.83], [1397.43, 1616.78], [1401.39, 1612.56], [1398.21, 1609.6], [1394.26, 1613.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1446.24, 1589.72], [1452.87, 1595.72], [1467.52, 1579.63], [1460.89, 1573.63], [1446.24, 1589.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[1500.69, 1531.42], [1493.7, 1525.13], [1468.82, 1552.55], [1475.81, 1558.84], [1500.69, 1531.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.278, "pop": 139, "jobs": 0}}, {"shape": {"outer": [[1482.31, 1564.7], [1507.19, 1537.28], [1500.69, 1531.42], [1475.81, 1558.84], [1482.31, 1564.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.26, "pop": 130, "jobs": 0}}, {"shape": {"outer": [[1513.98, 1543.4], [1507.19, 1537.28], [1482.31, 1564.7], [1489.11, 1570.83], [1513.98, 1543.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.27, "pop": 135, "jobs": 0}}, {"shape": {"outer": [[1496.13, 1577.14], [1521.0, 1549.73], [1513.98, 1543.4], [1489.11, 1570.83], [1496.13, 1577.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.28, "pop": 140, "jobs": 0}}, {"shape": {"outer": [[1992.96, 1212.52], [1985.73, 1218.41], [1991.73, 1225.74], [1998.97, 1219.87], [1992.96, 1212.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1817.07, 669.98], [1817.16, 670.05], [1814.64, 672.8], [1821.18, 678.75], [1830.23, 668.87], [1829.81, 668.5], [1831.07, 667.12], [1826.15, 662.64], [1824.89, 664.02], [1824.45, 663.62], [1821.62, 666.71], [1820.77, 665.94], [1817.07, 669.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1305.49, 1295.65], [1309.76, 1299.56], [1313.89, 1295.09], [1309.63, 1291.17], [1305.49, 1295.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[1094.92, 1374.75], [1098.44, 1377.85], [1102.04, 1373.78], [1098.52, 1370.68], [1094.92, 1374.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[1158.99, 1393.22], [1161.33, 1390.7], [1161.7, 1391.05], [1163.67, 1388.91], [1164.35, 1389.54], [1165.07, 1388.75], [1165.4, 1389.05], [1169.04, 1385.12], [1168.05, 1384.2], [1170.8, 1381.22], [1165.67, 1376.51], [1159.21, 1383.48], [1160.06, 1384.27], [1155.09, 1389.64], [1158.99, 1393.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[980.2, 1149.64], [973.62, 1143.66], [966.0, 1151.99], [972.59, 1157.98], [980.2, 1149.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1134.9, 1253.17], [1138.57, 1249.29], [1126.5, 1237.99], [1122.84, 1241.89], [1134.9, 1253.17]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[1101.47, 1215.27], [1108.68, 1221.57], [1113.41, 1216.19], [1106.21, 1209.9], [1104.94, 1211.33], [1100.61, 1207.54], [1097.4, 1211.19], [1101.74, 1214.98], [1101.47, 1215.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1113.42, 1216.01], [1117.27, 1211.64], [1110.17, 1205.42], [1109.55, 1206.13], [1106.82, 1203.74], [1104.45, 1206.44], [1107.26, 1208.91], [1106.4, 1209.88], [1113.42, 1216.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1124.31, 1192.44], [1117.22, 1186.41], [1110.39, 1194.37], [1117.49, 1200.42], [1124.31, 1192.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[-694.32, -105.76], [-695.57, -130.43], [-698.37, -130.24], [-699.18, -146.12], [-681.34, -147.04], [-673.55, -140.3], [-668.83, -140.51], [-659.03, -151.13], [-658.84, -151.66], [-658.85, -152.32], [-659.11, -152.89], [-713.24, -201.78], [-717.24, -205.39], [-718.36, -206.4], [-718.97, -206.67], [-719.61, -206.73], [-720.15, -206.56], [-722.44, -208.63], [-735.24, -194.55], [-748.24, -180.24], [-760.52, -191.33], [-761.08, -191.82], [-763.34, -189.34], [-765.27, -191.07], [-774.19, -181.25], [-772.77, -179.97], [-778.0, -174.21], [-779.4, -175.46], [-789.1, -164.79], [-743.54, -123.7], [-741.91, -125.51], [-740.71, -124.43], [-742.28, -122.71], [-721.92, -104.4], [-716.1, -104.69], [-716.13, -105.41], [-708.45, -105.81], [-708.42, -105.07], [-694.32, -105.76]], "holes": []}, "height": 35.0, "data": {"type": "residential", "density": 1.0, "pop": 11865, "jobs": 0}}, {"shape": {"outer": [[2133.43, 2321.82], [2129.61, 2317.98], [2125.36, 2322.18], [2129.18, 2326.02], [2133.43, 2321.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[800.59, 544.86], [807.14, 550.84], [800.43, 558.13], [805.82, 563.05], [797.62, 571.97], [800.28, 574.4], [783.46, 592.71], [768.86, 579.38], [800.59, 544.86]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.496, "pop": 0, "jobs": 496}}, {"shape": {"outer": [[504.98, 1098.39], [513.34, 1106.03], [506.7, 1113.23], [498.34, 1105.59], [504.98, 1098.39]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[319.25, 1008.9], [309.92, 1018.96], [318.43, 1026.13], [327.54, 1016.07], [319.25, 1008.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[401.31, 777.06], [414.11, 762.77], [420.01, 768.02], [407.21, 782.3], [401.31, 777.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[559.9, 760.78], [565.95, 753.68], [569.9, 757.03], [563.86, 764.14], [559.9, 760.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[600.64, 929.06], [604.94, 924.34], [598.14, 918.19], [593.85, 922.9], [600.64, 929.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[424.82, 932.51], [436.5, 920.03], [440.78, 924.0], [429.1, 936.48], [424.82, 932.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[430.96, 937.97], [437.87, 929.94], [438.6, 930.56], [442.81, 925.65], [447.63, 929.76], [436.52, 942.7], [430.96, 937.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[475.95, 846.61], [487.64, 833.83], [490.91, 836.89], [479.01, 849.21], [475.95, 846.61]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.047, "pop": 0, "jobs": 47}}, {"shape": {"outer": [[377.12, 751.95], [392.77, 734.73], [377.78, 721.21], [373.33, 726.1], [366.71, 720.13], [371.38, 714.99], [364.32, 708.63], [354.69, 719.15], [353.47, 720.53], [351.12, 723.16], [352.97, 724.83], [350.0, 728.11], [354.48, 732.14], [355.76, 730.74], [358.03, 732.78], [356.41, 734.57], [361.69, 739.31], [362.86, 738.02], [364.58, 739.57], [363.37, 740.91], [368.74, 745.73], [370.02, 744.31], [372.14, 746.21], [370.72, 747.77], [373.92, 750.63], [377.12, 751.95]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.543, "pop": 0, "jobs": 543}}, {"shape": {"outer": [[360.68, 704.83], [352.96, 697.77], [348.2, 702.94], [342.97, 698.15], [345.96, 694.91], [344.69, 693.76], [345.84, 692.52], [331.36, 679.27], [329.16, 681.66], [329.84, 682.29], [326.95, 685.43], [325.82, 684.39], [317.27, 693.67], [318.07, 694.4], [315.16, 697.57], [320.66, 702.6], [322.26, 700.87], [323.81, 702.29], [322.36, 703.86], [327.83, 708.88], [329.49, 707.06], [331.31, 708.72], [329.86, 710.3], [335.1, 715.12], [336.48, 713.62], [338.29, 715.27], [336.95, 716.72], [341.94, 721.31], [342.91, 720.26], [342.23, 719.63], [344.01, 717.69], [346.61, 720.07], [349.43, 717.0], [350.64, 715.62], [360.68, 704.83]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.559, "pop": 0, "jobs": 559}}, {"shape": {"outer": [[349.43, 717.0], [353.47, 720.53], [354.69, 719.15], [350.64, 715.62], [349.43, 717.0]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[236.97, 681.95], [246.3, 672.07], [239.74, 665.92], [230.4, 675.79], [236.97, 681.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[-1804.21, -530.4], [-1773.44, -531.5], [-1773.22, -526.62], [-1769.63, -526.72], [-1769.31, -518.17], [-1772.48, -518.08], [-1771.91, -501.09], [-1824.99, -499.35], [-1825.09, -502.79], [-1848.94, -501.99], [-1849.42, -515.65], [-1857.23, -515.43], [-1859.09, -568.72], [-1869.18, -568.32], [-1870.03, -592.08], [-1836.57, -593.27], [-1835.86, -574.06], [-1824.87, -574.48], [-1824.58, -567.49], [-1805.54, -568.15], [-1804.21, -530.4]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 3412}}, {"shape": {"outer": [[-1841.34, -597.58], [-1850.29, -597.32], [-1850.24, -595.54], [-1869.46, -594.99], [-1869.98, -613.2], [-1841.81, -614.12], [-1841.34, -597.58]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.319, "pop": 0, "jobs": 319}}, {"shape": {"outer": [[-916.33, -819.88], [-881.93, -788.92], [-902.09, -766.69], [-936.49, -797.63], [-916.33, -819.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 556, "jobs": 0}}, {"shape": {"outer": [[1428.97, 872.11], [1427.89, 870.45], [1429.56, 869.38], [1430.63, 871.0], [1428.97, 872.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.004, "pop": 2, "jobs": 0}}, {"shape": {"outer": [[2384.96, 1219.2], [2389.25, 1223.07], [2391.82, 1220.24], [2387.52, 1216.37], [2384.96, 1219.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2386.49, 1215.32], [2391.53, 1219.86], [2393.95, 1217.07], [2388.97, 1212.59], [2386.49, 1215.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.02, "pop": 10, "jobs": 0}}, {"shape": {"outer": [[2253.5, 1248.18], [2257.49, 1251.66], [2260.23, 1248.54], [2256.24, 1245.07], [2253.5, 1248.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2253.45, 1235.74], [2262.3, 1243.61], [2266.37, 1239.06], [2257.52, 1231.19], [2253.45, 1235.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2293.46, 1196.74], [2288.94, 1201.9], [2293.53, 1205.9], [2298.05, 1200.73], [2293.46, 1196.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2315.46, 1150.62], [2320.37, 1155.03], [2324.82, 1150.11], [2319.91, 1145.7], [2315.46, 1150.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[591.13, 478.91], [598.93, 476.63], [622.95, 497.95], [614.85, 500.65], [591.13, 478.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.184, "pop": 92, "jobs": 0}}, {"shape": {"outer": [[2159.55, 1892.1], [2163.0, 1895.64], [2167.63, 1891.16], [2164.17, 1887.61], [2159.55, 1892.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[2154.58, 1880.54], [2159.68, 1885.4], [2163.82, 1881.1], [2158.72, 1876.23], [2154.58, 1880.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[1963.11, 1873.05], [1969.79, 1879.23], [1974.49, 1874.19], [1967.82, 1868.01], [1963.11, 1873.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[1682.82, 1146.54], [1668.19, 1133.04], [1651.85, 1150.65], [1666.48, 1164.14], [1682.82, 1146.54]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.306, "pop": 0, "jobs": 306}}, {"shape": {"outer": [[1690.55, 1153.65], [1682.82, 1146.54], [1666.48, 1164.14], [1674.2, 1171.25], [1676.44, 1168.86], [1690.55, 1153.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.162, "pop": 0, "jobs": 162}}, {"shape": {"outer": [[1697.48, 1160.05], [1690.55, 1153.65], [1676.44, 1168.86], [1683.37, 1175.25], [1697.48, 1160.05]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.125, "pop": 0, "jobs": 125}}, {"shape": {"outer": [[1697.48, 1160.05], [1683.37, 1175.25], [1681.21, 1177.57], [1688.56, 1184.34], [1704.83, 1166.82], [1697.48, 1160.05]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.153, "pop": 0, "jobs": 153}}, {"shape": {"outer": [[-715.3, -580.23], [-687.39, -610.24], [-731.5, -650.98], [-759.61, -620.77], [-746.76, -608.9], [-743.6, -612.29], [-728.44, -598.27], [-731.4, -595.1], [-715.3, -580.23]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 2079, "jobs": 0}}, {"shape": {"outer": [[1925.11, 1196.02], [1929.63, 1201.08], [1920.71, 1208.99], [1916.18, 1203.93], [1925.11, 1196.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-969.61, -343.57], [-970.31, -360.63], [-961.29, -361.03], [-962.68, -389.99], [-943.67, -390.56], [-943.66, -388.43], [-939.72, -387.64], [-936.33, -386.76], [-933.49, -385.78], [-930.45, -384.52], [-927.09, -383.02], [-924.33, -381.71], [-922.5, -380.54], [-920.52, -379.22], [-919.17, -380.76], [-904.28, -368.5], [-925.5, -345.14], [-969.61, -343.57]], "holes": []}, "height": 42.0, "data": {"type": "residential", "density": 1.0, "pop": 4501, "jobs": 0}}, {"shape": {"outer": [[-675.17, -1065.53], [-641.29, -1035.54], [-640.55, -1026.43], [-660.36, -1025.21], [-667.85, -1031.9], [-674.47, -1024.62], [-695.12, -1043.42], [-675.17, -1065.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.966, "pop": 483, "jobs": 0}}, {"shape": {"outer": [[-1118.06, -821.6], [-1125.23, -837.42], [-1195.76, -805.63], [-1203.28, -822.21], [-1218.22, -815.49], [-1218.61, -816.35], [-1221.26, -815.17], [-1220.91, -814.42], [-1230.39, -810.14], [-1230.76, -810.94], [-1233.16, -809.86], [-1232.83, -809.12], [-1246.86, -802.76], [-1237.19, -781.58], [-1230.5, -766.94], [-1229.94, -765.69], [-1219.54, -770.4], [-1197.48, -780.4], [-1188.25, -784.59], [-1177.45, -789.49], [-1176.49, -792.26], [-1173.76, -791.33], [-1146.74, -803.82], [-1126.54, -813.17], [-1124.72, -818.61], [-1118.06, -821.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1436, "jobs": 0}}, {"shape": {"outer": [[-511.04, 358.55], [-507.36, 354.24], [-500.93, 359.68], [-504.61, 364.0], [-511.04, 358.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2700.26, 2766.69], [2693.18, 2773.73], [2687.23, 2767.8], [2694.31, 2760.75], [2700.26, 2766.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2699.83, 2743.64], [2693.73, 2750.32], [2689.47, 2746.45], [2695.57, 2739.77], [2699.83, 2743.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2792.01, 1568.23], [2791.94, 1575.09], [2787.88, 1575.05], [2787.96, 1568.19], [2792.01, 1568.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2866.08, 2611.08], [2875.03, 2606.17], [2874.46, 2603.96], [2877.81, 2602.64], [2879.12, 2605.47], [2896.94, 2598.58], [2920.39, 2589.25], [2916.51, 2579.6], [2913.11, 2571.13], [2872.78, 2587.49], [2857.44, 2562.13], [2824.78, 2531.16], [2822.46, 2533.53], [2819.78, 2530.37], [2808.93, 2541.67], [2844.43, 2574.35], [2855.0, 2591.28], [2866.08, 2611.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 986, "jobs": 0}}, {"shape": {"outer": [[218.63, 252.38], [203.15, 238.8], [210.69, 230.27], [200.11, 220.99], [193.2, 228.82], [178.54, 215.97], [200.71, 190.88], [213.47, 202.07], [211.62, 204.16], [225.56, 216.39], [227.53, 214.17], [241.53, 226.45], [218.63, 252.38]], "holes": []}, "height": 35.0, "data": {"type": "residential", "density": 1.0, "pop": 2864, "jobs": 0}}, {"shape": {"outer": [[758.12, 204.64], [773.84, 218.59], [775.11, 217.15], [776.33, 218.08], [775.39, 219.41], [794.79, 236.94], [795.85, 235.95], [796.5, 236.51], [797.19, 237.1], [796.35, 238.31], [812.97, 253.43], [815.05, 251.11], [820.14, 245.46], [822.76, 242.54], [821.64, 241.16], [824.38, 238.06], [816.36, 230.49], [815.56, 229.75], [817.25, 227.86], [816.09, 226.86], [805.66, 217.8], [818.41, 203.9], [815.57, 201.13], [813.34, 198.96], [838.54, 170.69], [812.45, 146.01], [758.12, 204.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1507, "jobs": 0}}, {"shape": {"outer": [[-2863.45, -549.65], [-2866.34, -546.08], [-2867.64, -547.12], [-2868.68, -545.81], [-2869.1, -546.16], [-2870.6, -544.3], [-2870.18, -543.97], [-2875.73, -537.07], [-2872.4, -534.4], [-2869.15, -538.42], [-2867.94, -537.44], [-2867.1, -538.49], [-2865.23, -537.0], [-2864.1, -538.41], [-2863.23, -537.71], [-2860.42, -541.19], [-2861.29, -541.89], [-2858.33, -545.55], [-2863.45, -549.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.096, "pop": 48, "jobs": 0}}, {"shape": {"outer": [[615.19, 460.74], [625.8, 470.56], [624.14, 472.39], [622.02, 474.72], [611.61, 465.18], [613.39, 462.97], [615.19, 460.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.052, "pop": 0, "jobs": 52}}, {"shape": {"outer": [[-1488.42, -855.45], [-1374.33, -860.76], [-1373.65, -848.11], [-1375.25, -847.98], [-1374.95, -845.36], [-1387.28, -844.35], [-1387.3, -842.65], [-1401.74, -841.47], [-1410.58, -839.2], [-1434.38, -838.3], [-1434.13, -835.04], [-1446.01, -834.58], [-1486.18, -826.11], [-1488.38, -851.65], [-1488.42, -855.45]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1569}}, {"shape": {"outer": [[-73.22, -650.55], [-44.42, -624.27], [-55.32, -612.42], [-93.66, -570.67], [-122.46, -596.94], [-73.22, -650.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1135, "jobs": 0}}, {"shape": {"outer": [[-1120.54, -979.67], [-1108.27, -992.65], [-1080.65, -967.61], [-1100.84, -943.82], [-1136.03, -929.47], [-1143.67, -948.07], [-1113.01, -960.57], [-1107.51, -967.05], [-1120.54, -979.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 648, "jobs": 0}}, {"shape": {"outer": [[-1190.69, -2347.54], [-1164.16, -2332.21], [-1172.15, -2317.83], [-1177.66, -2321.14], [-1200.62, -2283.67], [-1227.21, -2282.79], [-1190.69, -2347.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 678, "jobs": 0}}, {"shape": {"outer": [[-1198.46, -2469.52], [-1171.43, -2454.63], [-1162.43, -2470.65], [-1152.83, -2487.73], [-1143.55, -2504.23], [-1169.48, -2519.5], [-1198.46, -2469.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 699, "jobs": 0}}, {"shape": {"outer": [[771.64, 589.14], [752.26, 610.54], [748.52, 607.17], [746.59, 609.3], [743.46, 606.48], [733.76, 617.19], [748.98, 630.86], [779.97, 596.63], [771.64, 589.14]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.426, "pop": 0, "jobs": 426}}, {"shape": {"outer": [[765.19, 645.2], [831.91, 571.9], [860.36, 597.61], [793.65, 670.91], [765.19, 645.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1521, "jobs": 0}}, {"shape": {"outer": [[2043.8, 1976.02], [2030.09, 1990.19], [2062.36, 2021.29], [2075.96, 2006.41], [2043.8, 1976.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.71, "pop": 355, "jobs": 0}}, {"shape": {"outer": [[-1234.48, -2689.8], [-1230.66, -2693.67], [-1223.7, -2694.63], [-1223.28, -2697.58], [-1053.08, -2705.11], [-1064.38, -2666.75], [-1150.33, -2662.8], [-1150.13, -2657.88], [-1232.15, -2651.42], [-1234.48, -2689.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 2849, "jobs": 0}}, {"shape": {"outer": [[-93.31, -2288.59], [-91.3, -2244.97], [-81.17, -2245.57], [-79.51, -2214.55], [-62.13, -2215.36], [-26.19, -2276.96], [-35.63, -2283.44], [-46.92, -2291.2], [-93.31, -2288.59]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 2145}}, {"shape": {"outer": [[226.22, -246.34], [204.19, -265.62], [193.64, -249.97], [180.59, -236.04], [168.45, -221.83], [154.07, -210.2], [176.09, -191.17], [200.69, -216.57], [226.22, -246.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 829, "jobs": 0}}, {"shape": {"outer": [[875.47, 613.91], [916.4, 650.33], [899.11, 669.89], [907.76, 678.23], [905.85, 680.37], [896.74, 672.58], [892.33, 677.58], [851.78, 641.68], [875.47, 613.91]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1295}}, {"shape": {"outer": [[884.92, 703.98], [892.55, 695.37], [905.85, 680.37], [907.76, 678.23], [974.6, 739.1], [970.76, 743.39], [951.79, 764.93], [884.92, 703.98]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1993}}, {"shape": {"outer": [[368.38, 438.65], [388.93, 457.42], [416.22, 482.33], [399.51, 500.52], [351.65, 456.84], [368.38, 438.65]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1024}}, {"shape": {"outer": [[1866.94, 1714.68], [1873.99, 1721.47], [1887.66, 1734.67], [1893.75, 1740.54], [1916.74, 1762.72], [1907.07, 1780.08], [1889.51, 1798.87], [1892.15, 1801.53], [1856.87, 1838.63], [1854.69, 1836.29], [1851.04, 1839.91], [1836.87, 1825.74], [1838.44, 1824.0], [1786.41, 1774.5], [1799.95, 1760.44], [1802.68, 1762.4], [1811.6, 1753.15], [1822.21, 1745.96], [1819.67, 1743.59], [1837.17, 1733.15], [1866.94, 1714.68]], "holes": []}, "height": 24.5, "data": {"type": "residential", "density": 1.0, "pop": 10495, "jobs": 0}}, {"shape": {"outer": [[-1187.64, -283.03], [-1184.39, -283.21], [-1184.21, -279.86], [-1187.42, -279.66], [-1187.64, -283.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[-1189.55, -319.31], [-1183.4, -319.56], [-1183.55, -323.25], [-1188.67, -323.04], [-1189.71, -323.0], [-1189.55, -319.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1801.07, -592.13], [-1802.16, -594.69], [-1804.05, -596.74], [-1806.52, -598.06], [-1809.28, -598.49], [-1811.9, -598.02], [-1814.24, -596.75], [-1816.06, -594.81], [-1817.17, -592.39], [-1817.45, -589.75], [-1816.87, -587.15], [-1815.5, -584.88], [-1813.48, -583.15], [-1811.01, -582.14], [-1808.22, -581.99], [-1805.53, -582.76], [-1803.26, -584.39], [-1801.64, -586.67], [-1800.89, -589.34], [-1801.07, -592.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[-1824.8, -594.12], [-1816.63, -601.96], [-1813.57, -598.95], [-1821.68, -590.87], [-1824.8, -594.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-1798.01, -596.44], [-1794.05, -596.55], [-1793.97, -592.38], [-1797.97, -592.29], [-1798.01, -596.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[-2431.88, -71.5], [-2432.15, -81.99], [-2413.78, -82.83], [-2413.26, -72.01], [-2431.88, -71.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[485.38, 176.29], [540.11, 227.16], [527.83, 240.92], [487.4, 203.75], [498.6, 191.6], [486.15, 180.08], [483.79, 177.97], [485.38, 176.29]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.68, "pop": 0, "jobs": 680}}, {"shape": {"outer": [[723.8, 323.16], [728.57, 315.9], [758.98, 336.91], [753.9, 343.97], [723.8, 323.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.256, "pop": 128, "jobs": 0}}, {"shape": {"outer": [[579.4, 357.21], [587.46, 364.44], [578.33, 374.56], [570.27, 367.33], [579.4, 357.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[626.09, 421.1], [633.08, 427.28], [624.64, 436.76], [617.65, 430.57], [626.09, 421.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.094, "pop": 47, "jobs": 0}}, {"shape": {"outer": [[623.98, 417.65], [614.52, 409.15], [613.19, 410.62], [608.98, 406.83], [605.65, 410.51], [609.93, 414.34], [609.01, 415.36], [618.41, 423.81], [623.98, 417.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[989.15, 616.67], [998.83, 624.75], [965.45, 662.15], [956.24, 653.71], [989.15, 616.67]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.4, "pop": 0, "jobs": 400}}, {"shape": {"outer": [[1297.65, 1280.96], [1300.57, 1283.36], [1297.35, 1287.35], [1294.33, 1285.19], [1297.65, 1280.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[1300.15, 1267.57], [1294.25, 1262.42], [1288.5, 1269.01], [1294.41, 1274.15], [1300.15, 1267.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[1307.24, 1276.08], [1301.38, 1282.75], [1313.55, 1293.28], [1319.66, 1286.95], [1307.24, 1276.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[1038.43, 1178.98], [1046.02, 1185.73], [1051.07, 1180.0], [1043.38, 1173.07], [1038.43, 1178.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1113.72, 1097.8], [1108.34, 1093.19], [1102.95, 1099.5], [1108.32, 1104.1], [1113.72, 1097.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[967.34, 1223.26], [962.93, 1219.25], [958.52, 1224.09], [962.93, 1228.1], [967.34, 1223.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[642.5, 1213.81], [646.56, 1217.33], [651.43, 1211.9], [647.25, 1208.39], [642.5, 1213.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[512.89, 731.59], [549.23, 764.74], [589.93, 720.47], [553.8, 686.87], [532.77, 709.87], [512.89, 731.59]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1903}}, {"shape": {"outer": [[-980.35, -1173.47], [-974.84, -1179.22], [-968.92, -1174.03], [-974.74, -1167.96], [-980.35, -1173.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-2956.98, -1639.25], [-2942.38, -1626.59], [-2936.51, -1633.67], [-2951.49, -1646.32], [-2956.98, -1639.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[-2931.18, -1629.25], [-2925.58, -1623.99], [-2929.5, -1617.95], [-2936.21, -1623.31], [-2931.18, -1629.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-2900.13, -1677.65], [-2889.09, -1668.23], [-2898.56, -1657.22], [-2909.22, -1666.41], [-2900.13, -1677.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[981.38, 271.2], [1005.32, 244.89], [1020.22, 258.35], [1015.04, 264.05], [996.27, 284.66], [981.38, 271.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.572, "pop": 286, "jobs": 0}}, {"shape": {"outer": [[1028.71, 393.98], [1033.92, 388.22], [1041.5, 395.02], [1036.28, 400.78], [1028.71, 393.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[-358.06, -712.37], [-352.53, -706.99], [-347.06, -712.95], [-352.57, -717.89], [-358.06, -712.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[-336.08, -749.19], [-354.68, -728.93], [-339.61, -715.19], [-349.98, -703.9], [-337.61, -692.64], [-320.04, -711.78], [-321.87, -713.45], [-307.91, -728.66], [-328.71, -747.63], [-331.29, -744.82], [-333.23, -746.59], [-336.08, -749.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 537, "jobs": 0}}, {"shape": {"outer": [[969.37, 1630.96], [977.63, 1639.96], [971.43, 1645.84], [963.08, 1636.75], [969.37, 1630.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[984.83, 1706.89], [979.86, 1711.3], [975.64, 1706.56], [980.62, 1702.16], [984.83, 1706.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[885.26, 1688.68], [891.27, 1695.16], [886.65, 1699.46], [885.61, 1698.41], [882.21, 1701.44], [877.48, 1696.09], [885.26, 1688.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2248.13, 1762.05], [2261.67, 1774.92], [2256.05, 1780.84], [2243.19, 1768.19], [2248.13, 1762.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[1682.06, 683.32], [1689.08, 689.59], [1695.98, 681.91], [1688.96, 675.65], [1682.06, 683.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1648.92, 736.11], [1652.21, 739.09], [1653.33, 737.85], [1656.36, 740.6], [1664.32, 731.89], [1657.75, 725.92], [1649.76, 734.67], [1650.02, 734.9], [1648.92, 736.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[1709.09, 790.3], [1714.7, 795.33], [1724.12, 784.93], [1718.51, 779.89], [1709.09, 790.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[1718.06, 660.54], [1722.31, 664.27], [1723.4, 665.23], [1724.03, 665.78], [1733.42, 655.16], [1731.94, 653.86], [1733.74, 651.83], [1729.24, 647.89], [1718.06, 660.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.102, "pop": 51, "jobs": 0}}, {"shape": {"outer": [[1732.05, 672.88], [1738.66, 678.93], [1748.1, 668.71], [1741.5, 662.66], [1732.05, 672.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1760.76, 684.58], [1754.68, 679.03], [1748.3, 685.95], [1754.38, 691.51], [1760.76, 684.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1782.25, 722.2], [1788.28, 727.73], [1796.46, 718.87], [1790.43, 713.35], [1782.25, 722.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[1776.94, 715.69], [1780.98, 719.34], [1782.43, 717.75], [1783.02, 718.28], [1785.82, 715.21], [1787.1, 716.36], [1791.04, 712.04], [1790.52, 711.57], [1793.39, 708.42], [1787.35, 702.97], [1784.41, 706.2], [1783.97, 705.8], [1780.38, 709.75], [1781.05, 710.35], [1778.1, 713.59], [1778.51, 713.97], [1776.94, 715.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2752.77, -3174.92], [2752.43, -3162.16], [2744.01, -3162.38], [2744.35, -3175.13], [2752.77, -3174.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2767.04, -3179.92], [2766.77, -3187.59], [2759.62, -3187.34], [2759.89, -3179.67], [2767.04, -3179.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2773.95, -3167.22], [2773.55, -3178.27], [2764.05, -3177.92], [2764.45, -3166.87], [2773.95, -3167.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2803.41, -3091.92], [2802.95, -3080.68], [2801.99, -3080.72], [2801.68, -3073.08], [2812.06, -3072.66], [2812.83, -3091.55], [2803.41, -3091.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[1545.75, -3195.21], [1552.83, -3193.18], [1552.66, -3192.57], [1554.28, -3192.1], [1552.04, -3184.36], [1561.51, -3178.64], [1555.66, -3169.01], [1551.39, -3171.59], [1549.26, -3168.1], [1541.52, -3173.23], [1542.68, -3177.2], [1541.5, -3177.54], [1542.68, -3181.63], [1541.88, -3181.86], [1545.75, -3195.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.252, "pop": 126, "jobs": 0}}, {"shape": {"outer": [[1642.4, -3147.94], [1642.73, -3158.77], [1650.67, -3158.54], [1650.6, -3156.13], [1660.92, -3155.82], [1660.87, -3154.14], [1663.6, -3154.06], [1663.36, -3146.15], [1660.63, -3146.23], [1660.57, -3144.32], [1647.48, -3144.7], [1647.57, -3147.78], [1642.4, -3147.94]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[1622.66, -3129.72], [1623.14, -3134.56], [1620.92, -3134.77], [1621.36, -3139.24], [1622.28, -3139.15], [1623.05, -3146.93], [1629.08, -3146.34], [1629.59, -3151.55], [1637.99, -3150.72], [1637.01, -3140.93], [1636.16, -3141.02], [1635.4, -3133.29], [1632.35, -3133.6], [1632.32, -3133.32], [1630.89, -3133.47], [1630.45, -3128.95], [1622.66, -3129.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.206, "pop": 103, "jobs": 0}}, {"shape": {"outer": [[1590.0, -3148.26], [1588.99, -3137.07], [1609.26, -3135.26], [1610.61, -3150.16], [1605.11, -3150.65], [1605.31, -3152.76], [1608.74, -3152.46], [1609.54, -3161.26], [1600.35, -3162.08], [1599.56, -3153.31], [1601.47, -3153.14], [1600.94, -3147.28], [1590.0, -3148.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.282, "pop": 141, "jobs": 0}}, {"shape": {"outer": [[1573.35, -3148.8], [1575.25, -3161.02], [1585.15, -3159.51], [1583.26, -3147.27], [1573.35, -3148.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.1, "pop": 50, "jobs": 0}}, {"shape": {"outer": [[1573.51, -3169.35], [1570.71, -3152.64], [1564.52, -3153.67], [1564.94, -3156.19], [1561.81, -3156.72], [1563.75, -3168.26], [1567.5, -3167.65], [1567.94, -3170.27], [1573.51, -3169.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[1569.56, -3181.42], [1567.77, -3171.32], [1575.33, -3170.0], [1577.11, -3180.1], [1569.56, -3181.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.062, "pop": 31, "jobs": 0}}, {"shape": {"outer": [[1516.17, -3179.21], [1523.63, -3176.34], [1522.84, -3174.29], [1523.67, -3171.75], [1526.59, -3170.63], [1528.7, -3171.69], [1529.61, -3174.05], [1533.29, -3172.63], [1539.17, -3187.84], [1532.19, -3190.53], [1531.17, -3192.62], [1528.19, -3193.76], [1525.7, -3192.59], [1524.39, -3189.2], [1520.6, -3190.64], [1516.17, -3179.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.252, "pop": 126, "jobs": 0}}, {"shape": {"outer": [[1596.72, 961.42], [1606.33, 970.57], [1611.57, 965.11], [1601.96, 955.97], [1596.72, 961.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[1320.73, 689.61], [1326.79, 683.09], [1314.7, 672.44], [1309.07, 678.83], [1320.73, 689.61]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.089, "pop": 0, "jobs": 89}}, {"shape": {"outer": [[2510.82, 1472.82], [2516.99, 1477.03], [2521.36, 1471.17], [2515.05, 1466.51], [2510.82, 1472.82]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2299.13, 1690.76], [2306.16, 1686.63], [2301.78, 1679.66], [2294.82, 1683.98], [2299.13, 1690.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2306.16, 1686.63], [2308.01, 1685.53], [2313.46, 1682.08], [2313.59, 1678.98], [2310.95, 1674.3], [2301.78, 1679.66], [2306.16, 1686.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.066, "pop": 33, "jobs": 0}}, {"shape": {"outer": [[2494.07, 2115.61], [2498.83, 2111.11], [2492.63, 2105.43], [2488.27, 2109.59], [2494.07, 2115.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2513.28, 2051.46], [2525.23, 2043.74], [2520.8, 2037.86], [2508.82, 2044.7], [2513.28, 2051.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2653.98, 2091.28], [2662.37, 2090.82], [2661.89, 2081.36], [2653.48, 2081.49], [2653.98, 2091.28]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2626.94, 1830.34], [2628.12, 1825.93], [2629.82, 1826.41], [2629.98, 1826.14], [2639.12, 1828.35], [2638.98, 1828.9], [2642.21, 1829.61], [2642.28, 1829.06], [2646.85, 1830.12], [2647.14, 1834.51], [2646.37, 1834.65], [2626.94, 1830.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2749.37, 2238.52], [2747.56, 2238.62], [2747.72, 2240.3], [2743.08, 2240.59], [2743.26, 2244.72], [2745.22, 2244.66], [2745.77, 2248.57], [2749.63, 2248.09], [2749.37, 2238.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2778.79, 2139.91], [2787.14, 2139.36], [2786.66, 2131.2], [2778.06, 2131.28], [2778.79, 2139.91]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2832.35, 2240.72], [2832.15, 2239.4], [2835.95, 2239.22], [2835.81, 2237.08], [2840.61, 2236.94], [2841.1, 2240.38], [2832.35, 2240.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[2850.62, 2240.02], [2850.37, 2237.97], [2846.85, 2238.07], [2846.81, 2236.51], [2840.61, 2236.94], [2841.1, 2240.38], [2850.62, 2240.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2870.17, 2171.57], [2888.36, 2170.58], [2888.1, 2161.5], [2869.59, 2162.84], [2870.17, 2171.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[2869.63, 2158.23], [2886.81, 2156.93], [2887.11, 2149.82], [2869.09, 2150.65], [2869.63, 2158.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[1458.51, 809.12], [1466.78, 800.19], [1445.33, 780.75], [1437.62, 789.92], [1458.51, 809.12]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.221, "pop": 0, "jobs": 221}}, {"shape": {"outer": [[2693.21, 1723.67], [2699.77, 1724.98], [2701.67, 1716.81], [2694.61, 1715.5], [2693.21, 1723.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2659.58, 2401.79], [2678.99, 2383.31], [2685.89, 2375.49], [2688.04, 2372.58], [2688.4, 2370.46], [2690.81, 2367.09], [2678.18, 2352.43], [2676.06, 2354.71], [2669.2, 2348.66], [2656.68, 2362.61], [2642.71, 2349.35], [2624.12, 2368.45], [2627.61, 2371.79], [2625.64, 2373.39], [2633.3, 2381.32], [2635.53, 2379.3], [2640.06, 2383.89], [2637.83, 2385.75], [2643.89, 2391.5], [2645.97, 2389.64], [2650.93, 2394.27], [2648.53, 2395.93], [2651.71, 2399.22], [2654.57, 2397.13], [2659.58, 2401.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 798, "jobs": 0}}, {"shape": {"outer": [[2447.24, -3163.77], [2467.81, -3164.17], [2467.64, -3173.33], [2447.07, -3172.94], [2447.24, -3163.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2431.29, -3168.16], [2431.45, -3161.14], [2438.96, -3161.3], [2438.8, -3168.32], [2431.29, -3168.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2422.3, -3158.49], [2422.23, -3168.1], [2428.85, -3168.14], [2428.91, -3158.53], [2422.3, -3158.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2422.57, -3187.49], [2419.35, -3187.27], [2419.58, -3183.99], [2422.8, -3184.21], [2422.57, -3187.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2230.91, -3198.72], [2230.93, -3196.53], [2229.81, -3196.53], [2229.85, -3193.05], [2230.96, -3193.06], [2230.99, -3189.76], [2238.98, -3189.84], [2238.96, -3193.06], [2241.52, -3193.09], [2241.46, -3199.48], [2237.9, -3199.44], [2237.9, -3198.79], [2230.91, -3198.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2336.95, -3190.81], [2336.88, -3201.15], [2345.11, -3201.22], [2345.18, -3190.87], [2336.95, -3190.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2199.64, -3186.7], [2190.18, -3186.61], [2190.08, -3199.39], [2186.12, -3199.36], [2186.05, -3206.51], [2200.35, -3206.63], [2200.42, -3198.36], [2199.54, -3198.35], [2199.64, -3186.7]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.18, "pop": 90, "jobs": 0}}, {"shape": {"outer": [[2199.73, -3163.72], [2200.02, -3181.9], [2191.26, -3182.04], [2190.95, -3163.86], [2199.73, -3163.72]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2191.85, -3143.18], [2199.48, -3143.08], [2199.71, -3159.5], [2190.42, -3159.63], [2190.28, -3150.23], [2191.95, -3150.21], [2191.85, -3143.18]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2172.18, -3142.46], [2169.51, -3142.35], [2169.38, -3145.2], [2172.06, -3145.32], [2172.18, -3142.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2186.15, -3112.35], [2186.5, -3121.06], [2180.33, -3121.3], [2180.08, -3115.46], [2177.9, -3115.56], [2177.53, -3106.81], [2184.04, -3106.55], [2184.29, -3112.42], [2186.15, -3112.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2193.85, -3072.32], [2193.89, -3063.1], [2195.34, -3063.11], [2195.41, -3049.71], [2202.44, -3049.75], [2202.42, -3051.98], [2204.08, -3051.99], [2204.01, -3064.45], [2201.47, -3064.44], [2201.43, -3072.37], [2193.85, -3072.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.148, "pop": 74, "jobs": 0}}, {"shape": {"outer": [[2169.0, -3095.92], [2170.54, -3089.4], [2171.78, -3089.69], [2174.27, -3079.1], [2181.58, -3080.82], [2180.06, -3087.22], [2191.6, -3089.92], [2192.26, -3087.13], [2194.8, -3087.72], [2195.27, -3085.75], [2200.17, -3086.88], [2197.82, -3096.83], [2189.79, -3094.95], [2188.48, -3100.48], [2169.0, -3095.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.272, "pop": 136, "jobs": 0}}, {"shape": {"outer": [[2155.84, -3112.44], [2158.48, -3102.55], [2167.65, -3104.98], [2163.95, -3118.88], [2156.4, -3116.89], [2157.48, -3112.87], [2155.84, -3112.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2162.33, -3135.35], [2153.06, -3134.24], [2154.46, -3122.51], [2163.72, -3123.62], [2162.33, -3135.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2144.52, -3158.37], [2146.39, -3149.94], [2149.81, -3150.7], [2152.07, -3140.52], [2160.83, -3142.46], [2156.7, -3161.05], [2144.52, -3158.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[2147.28, -3179.3], [2134.84, -3175.81], [2138.19, -3163.94], [2150.63, -3167.44], [2147.28, -3179.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2155.61, -3186.57], [2159.11, -3186.58], [2159.12, -3183.75], [2155.62, -3183.74], [2155.61, -3186.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2124.97, -3200.86], [2127.97, -3184.27], [2138.73, -3186.21], [2135.73, -3202.8], [2132.15, -3202.15], [2131.57, -3205.33], [2125.26, -3204.19], [2125.83, -3201.02], [2124.97, -3200.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.164, "pop": 82, "jobs": 0}}, {"shape": {"outer": [[2629.62, -3086.2], [2631.97, -3086.15], [2632.03, -3089.3], [2629.67, -3089.35], [2629.62, -3086.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2646.23, -3085.75], [2649.2, -3086.19], [2648.85, -3088.52], [2645.88, -3088.09], [2646.23, -3085.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2711.6, -3104.46], [2698.62, -3103.61], [2697.06, -3127.42], [2710.06, -3128.26], [2711.6, -3104.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.248, "pop": 124, "jobs": 0}}, {"shape": {"outer": [[2725.38, -3126.77], [2716.34, -3127.06], [2715.49, -3100.95], [2724.52, -3100.66], [2724.78, -3108.56], [2728.01, -3108.45], [2728.34, -3118.32], [2725.1, -3118.43], [2725.38, -3126.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[2749.37, -3121.92], [2749.76, -3128.85], [2760.47, -3128.25], [2760.7, -3132.31], [2769.75, -3131.81], [2768.89, -3116.58], [2759.95, -3117.08], [2760.19, -3121.31], [2749.37, -3121.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[2760.6, -3109.06], [2768.25, -3108.82], [2767.94, -3099.27], [2763.88, -3099.39], [2763.84, -3097.84], [2756.91, -3098.05], [2757.08, -3103.49], [2760.42, -3103.39], [2760.6, -3109.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2747.29, -3066.78], [2747.02, -3077.39], [2750.26, -3077.47], [2750.19, -3079.92], [2758.49, -3080.14], [2758.82, -3067.08], [2747.29, -3066.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2745.11, -3045.15], [2745.4, -3053.33], [2756.23, -3052.96], [2755.95, -3044.78], [2745.11, -3045.15]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2755.92, -2978.03], [2762.23, -2977.69], [2762.32, -2979.47], [2769.7, -2979.09], [2769.2, -2969.75], [2768.18, -2969.8], [2767.89, -2964.39], [2763.59, -2964.61], [2763.52, -2963.49], [2755.16, -2963.93], [2755.92, -2978.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[2737.06, -2988.99], [2737.66, -2996.66], [2744.3, -2996.16], [2743.71, -2988.48], [2737.06, -2988.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2727.21, -2960.34], [2736.35, -2959.58], [2737.69, -2975.67], [2728.56, -2976.43], [2727.21, -2960.34]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2694.4, -2979.26], [2692.26, -2967.26], [2700.5, -2965.82], [2700.62, -2966.49], [2704.41, -2965.81], [2704.54, -2966.61], [2709.57, -2965.71], [2711.34, -2975.69], [2702.52, -2977.24], [2702.63, -2977.81], [2694.4, -2979.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[2631.84, -3007.11], [2630.55, -2999.49], [2642.72, -2997.45], [2642.82, -2998.01], [2646.22, -2997.45], [2644.93, -2989.77], [2656.17, -2987.88], [2657.94, -2998.38], [2654.57, -2998.95], [2655.29, -3003.19], [2631.84, -3007.11]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.22, "pop": 110, "jobs": 0}}, {"shape": {"outer": [[2609.56, -3003.01], [2623.04, -3000.95], [2625.23, -3015.11], [2618.73, -3016.1], [2618.17, -3012.47], [2603.98, -3014.65], [2602.67, -3006.16], [2609.87, -3005.05], [2609.56, -3003.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[2603.87, -3030.92], [2602.85, -3023.39], [2611.07, -3022.27], [2612.09, -3029.8], [2603.87, -3030.92]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2598.61, -3046.14], [2599.51, -3050.67], [2602.66, -3050.05], [2601.75, -3045.51], [2598.61, -3046.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[2577.38, -3028.79], [2575.37, -3014.35], [2581.78, -3013.47], [2581.67, -3012.7], [2596.23, -3010.7], [2597.55, -3020.16], [2586.73, -3021.66], [2586.99, -3023.51], [2581.3, -3024.3], [2581.84, -3028.17], [2577.38, -3028.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.188, "pop": 94, "jobs": 0}}, {"shape": {"outer": [[2572.93, -3034.07], [2573.34, -3037.37], [2578.76, -3036.71], [2578.36, -3033.42], [2572.93, -3034.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2553.87, -3023.07], [2568.19, -3021.72], [2568.94, -3029.57], [2564.87, -3029.96], [2565.66, -3038.17], [2568.5, -3037.9], [2568.87, -3041.82], [2563.39, -3042.33], [2563.06, -3038.71], [2555.43, -3039.43], [2553.87, -3023.07]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[2525.11, -3037.81], [2537.55, -3036.8], [2537.06, -3030.8], [2543.94, -3030.24], [2543.35, -3023.01], [2535.88, -3023.62], [2536.05, -3025.76], [2525.73, -3026.61], [2525.62, -3025.26], [2516.71, -3025.99], [2517.62, -3037.1], [2525.0, -3036.5], [2525.11, -3037.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.22, "pop": 110, "jobs": 0}}, {"shape": {"outer": [[2486.2, -3032.13], [2485.64, -3022.09], [2498.14, -3021.4], [2498.08, -3020.3], [2505.53, -3019.88], [2505.98, -3027.95], [2499.93, -3028.29], [2500.11, -3031.36], [2486.2, -3032.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[2502.85, -3064.25], [2502.03, -3049.92], [2492.01, -3050.49], [2493.02, -3068.16], [2494.66, -3068.07], [2494.89, -3072.18], [2502.43, -3071.74], [2502.17, -3067.18], [2500.16, -3067.3], [2499.99, -3064.42], [2502.85, -3064.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.16, "pop": 80, "jobs": 0}}, {"shape": {"outer": [[2523.68, -3078.49], [2518.09, -3078.96], [2517.66, -3074.1], [2523.25, -3073.63], [2523.68, -3078.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2506.37, -3096.75], [2505.83, -3086.27], [2516.76, -3085.72], [2516.99, -3090.16], [2514.77, -3090.27], [2515.08, -3096.32], [2506.37, -3096.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2495.89, -3103.06], [2495.19, -3093.73], [2503.24, -3093.12], [2503.95, -3102.45], [2495.89, -3103.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2509.55, -3116.85], [2501.89, -3117.1], [2502.17, -3125.33], [2509.84, -3125.07], [2509.82, -3124.62], [2515.45, -3124.44], [2515.28, -3119.4], [2512.73, -3119.48], [2512.65, -3117.18], [2509.57, -3117.28], [2509.55, -3116.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.078, "pop": 39, "jobs": 0}}, {"shape": {"outer": [[2524.46, -3109.68], [2517.67, -3109.87], [2517.87, -3117.0], [2524.66, -3116.82], [2524.46, -3109.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2532.47, -3092.8], [2529.19, -3093.21], [2528.66, -3089.05], [2531.95, -3088.63], [2532.47, -3092.8]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[2538.53, -3095.26], [2533.83, -3095.45], [2533.7, -3092.13], [2538.41, -3091.94], [2538.53, -3095.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[2546.34, -3106.24], [2546.02, -3119.9], [2537.55, -3119.71], [2537.87, -3106.05], [2546.34, -3106.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.092, "pop": 46, "jobs": 0}}, {"shape": {"outer": [[2549.65, -3094.85], [2549.84, -3103.14], [2543.0, -3103.29], [2542.81, -3095.0], [2549.65, -3094.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2559.07, -3103.12], [2559.17, -3094.9], [2551.13, -3094.8], [2551.04, -3103.03], [2559.07, -3103.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[2565.88, -3106.22], [2565.45, -3120.37], [2555.5, -3120.07], [2555.93, -3105.92], [2565.88, -3106.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2571.25, -3087.65], [2571.12, -3083.95], [2566.85, -3084.1], [2566.98, -3087.8], [2571.25, -3087.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.012, "pop": 6, "jobs": 0}}, {"shape": {"outer": [[2575.17, -3105.47], [2575.32, -3098.0], [2568.44, -3097.87], [2568.29, -3105.32], [2575.17, -3105.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2583.36, -3107.5], [2582.94, -3121.05], [2578.97, -3120.92], [2578.89, -3123.93], [2575.22, -3123.82], [2575.3, -3121.39], [2573.48, -3121.34], [2573.91, -3107.21], [2583.36, -3107.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2598.75, -3119.88], [2597.47, -3102.48], [2587.38, -3103.21], [2588.66, -3120.62], [2598.75, -3119.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2612.89, -3101.41], [2613.72, -3119.19], [2603.64, -3119.65], [2602.81, -3101.88], [2612.89, -3101.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[2641.16, -3118.52], [2641.32, -3109.0], [2619.85, -3108.62], [2619.68, -3118.15], [2626.38, -3118.26], [2626.37, -3119.21], [2634.7, -3119.35], [2634.71, -3118.42], [2641.16, -3118.52]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.17, "pop": 85, "jobs": 0}}, {"shape": {"outer": [[2603.66, -3164.41], [2608.27, -3164.17], [2608.36, -3165.92], [2611.54, -3165.75], [2611.45, -3164.01], [2615.65, -3163.81], [2615.2, -3154.86], [2610.54, -3155.1], [2610.43, -3152.93], [2603.1, -3153.29], [2603.66, -3164.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2587.84, -3167.96], [2587.33, -3153.68], [2599.88, -3153.23], [2600.25, -3163.32], [2596.39, -3163.46], [2596.54, -3167.65], [2595.56, -3167.69], [2595.72, -3172.1], [2591.17, -3172.26], [2591.02, -3167.85], [2587.84, -3167.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.146, "pop": 73, "jobs": 0}}, {"shape": {"outer": [[2588.4, -3181.55], [2588.46, -3184.7], [2591.04, -3184.65], [2590.98, -3181.5], [2588.4, -3181.55]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2582.46, -3184.81], [2582.64, -3187.91], [2585.93, -3187.73], [2585.74, -3184.62], [2582.46, -3184.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.008, "pop": 4, "jobs": 0}}, {"shape": {"outer": [[2572.17, -3171.45], [2571.43, -3153.5], [2581.82, -3153.08], [2582.56, -3171.03], [2572.17, -3171.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2563.22, -3169.57], [2568.81, -3169.43], [2569.03, -3177.87], [2563.45, -3178.02], [2563.22, -3169.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[2556.46, -3168.29], [2556.25, -3154.62], [2559.86, -3154.57], [2559.83, -3152.64], [2569.0, -3152.51], [2569.11, -3159.6], [2564.53, -3159.68], [2564.66, -3168.17], [2556.46, -3168.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[2551.21, -3166.76], [2540.97, -3166.97], [2540.67, -3152.65], [2550.91, -3152.44], [2551.21, -3166.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2538.29, -3180.32], [2538.19, -3173.9], [2545.14, -3173.79], [2545.23, -3180.22], [2538.29, -3180.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2534.87, -3178.61], [2534.92, -3181.05], [2537.96, -3180.99], [2537.9, -3178.54], [2534.87, -3178.61]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.006, "pop": 3, "jobs": 0}}, {"shape": {"outer": [[2524.25, -3159.74], [2534.23, -3159.02], [2533.5, -3149.14], [2523.53, -3149.86], [2524.25, -3159.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.08, "pop": 40, "jobs": 0}}, {"shape": {"outer": [[2516.53, -3168.38], [2515.9, -3161.24], [2523.42, -3160.59], [2523.66, -3163.25], [2526.94, -3162.97], [2527.33, -3167.44], [2516.53, -3168.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2503.77, -3150.95], [2493.7, -3151.33], [2494.27, -3166.15], [2495.42, -3166.12], [2495.58, -3170.59], [2504.5, -3170.25], [2504.24, -3163.39], [2511.48, -3163.11], [2511.1, -3153.2], [2503.86, -3153.47], [2503.77, -3150.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.21, "pop": 105, "jobs": 0}}, {"shape": {"outer": [[1202.86, 1345.21], [1193.5, 1355.4], [1199.99, 1361.33], [1209.36, 1351.14], [1202.86, 1345.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[972.33, 1194.36], [977.45, 1198.61], [970.23, 1207.32], [965.11, 1203.12], [972.33, 1194.36]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2435.28, -3129.31], [2434.88, -3120.38], [2447.69, -3119.81], [2447.98, -3126.23], [2447.04, -3126.27], [2447.26, -3131.2], [2439.94, -3131.53], [2439.83, -3129.12], [2435.28, -3129.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2434.36, -3107.84], [2426.16, -3107.88], [2426.21, -3117.58], [2434.41, -3117.53], [2434.36, -3107.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2460.84, -3070.06], [2462.39, -3088.24], [2460.22, -3088.42], [2460.37, -3090.22], [2455.98, -3090.59], [2455.82, -3088.79], [2453.9, -3088.96], [2453.68, -3086.36], [2446.35, -3086.98], [2446.02, -3083.03], [2443.62, -3083.24], [2443.24, -3078.77], [2445.64, -3078.57], [2445.28, -3074.42], [2452.61, -3073.8], [2452.35, -3070.77], [2460.84, -3070.06]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.214, "pop": 107, "jobs": 0}}, {"shape": {"outer": [[2461.03, -3045.35], [2454.37, -3045.1], [2454.2, -3049.73], [2460.86, -3049.98], [2461.03, -3045.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[2446.48, -3017.53], [2459.38, -3019.36], [2457.49, -3032.64], [2448.8, -3031.41], [2449.44, -3026.87], [2445.23, -3026.27], [2446.48, -3017.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.124, "pop": 62, "jobs": 0}}, {"shape": {"outer": [[2415.37, -3031.87], [2414.59, -3021.52], [2421.98, -3020.96], [2421.67, -3016.87], [2430.55, -3016.2], [2431.65, -3030.65], [2429.92, -3030.78], [2430.09, -3033.07], [2421.3, -3033.73], [2421.13, -3031.44], [2415.37, -3031.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.182, "pop": 91, "jobs": 0}}, {"shape": {"outer": [[2404.78, -3025.57], [2411.79, -3025.19], [2412.28, -3034.14], [2405.27, -3034.51], [2404.78, -3025.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2396.65, -3028.32], [2396.82, -3032.56], [2401.47, -3032.38], [2401.31, -3028.14], [2396.65, -3028.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.016, "pop": 8, "jobs": 0}}, {"shape": {"outer": [[2395.02, -3011.58], [2395.41, -3021.19], [2398.55, -3021.05], [2398.66, -3024.08], [2404.45, -3023.84], [2404.32, -3020.82], [2409.04, -3020.63], [2408.65, -3011.04], [2395.02, -3011.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.118, "pop": 59, "jobs": 0}}, {"shape": {"outer": [[2378.18, -3023.37], [2377.52, -3007.99], [2386.06, -3007.63], [2386.13, -3009.34], [2391.47, -3009.12], [2391.85, -3017.82], [2386.51, -3018.04], [2386.72, -3023.01], [2378.18, -3023.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2367.28, -3022.23], [2367.29, -3032.09], [2375.45, -3032.07], [2375.42, -3022.21], [2367.28, -3022.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.064, "pop": 32, "jobs": 0}}, {"shape": {"outer": [[2360.81, -3017.54], [2360.95, -3004.41], [2372.42, -3004.54], [2372.33, -3012.83], [2367.97, -3012.78], [2367.91, -3017.61], [2360.81, -3017.54]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2342.31, -3006.29], [2344.62, -3006.29], [2344.61, -3005.28], [2348.3, -3005.27], [2348.31, -3006.28], [2351.33, -3006.29], [2351.34, -3014.28], [2342.31, -3014.3], [2342.31, -3006.29]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2328.02, -3023.01], [2328.34, -3030.74], [2336.55, -3030.42], [2336.24, -3022.67], [2328.02, -3023.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2320.05, -3016.35], [2325.04, -3016.03], [2325.08, -3016.78], [2332.2, -3016.33], [2331.97, -3012.69], [2333.74, -3012.59], [2333.12, -3002.83], [2319.26, -3003.69], [2320.05, -3016.35]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2299.18, -3016.63], [2308.97, -3016.31], [2308.67, -3007.26], [2298.88, -3007.58], [2299.18, -3016.63]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2282.2, -3018.85], [2282.16, -3008.4], [2292.72, -3008.36], [2292.75, -3018.82], [2282.2, -3018.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[2277.63, -3027.38], [2277.44, -3020.8], [2285.33, -3020.58], [2285.52, -3027.16], [2277.63, -3027.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.042, "pop": 21, "jobs": 0}}, {"shape": {"outer": [[2261.9, -3030.42], [2261.4, -3018.02], [2264.2, -3017.91], [2264.16, -3016.86], [2267.85, -3016.72], [2267.88, -3017.76], [2274.18, -3017.51], [2274.44, -3023.86], [2270.87, -3024.01], [2271.12, -3030.06], [2261.9, -3030.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.112, "pop": 56, "jobs": 0}}, {"shape": {"outer": [[2239.77, -3025.74], [2239.69, -3033.64], [2253.21, -3033.79], [2253.28, -3027.37], [2250.42, -3027.34], [2250.44, -3025.85], [2239.77, -3025.74]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2225.64, -3035.95], [2235.15, -3036.1], [2234.9, -3052.37], [2225.39, -3052.23], [2225.52, -3044.03], [2219.82, -3043.93], [2219.93, -3036.79], [2223.83, -3036.86], [2223.81, -3037.73], [2225.61, -3037.76], [2225.64, -3035.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.156, "pop": 78, "jobs": 0}}, {"shape": {"outer": [[2225.91, -3093.81], [2232.58, -3093.63], [2232.46, -3089.24], [2236.68, -3089.12], [2236.56, -3084.32], [2232.32, -3084.43], [2232.22, -3080.71], [2226.2, -3080.88], [2226.29, -3084.36], [2225.64, -3084.38], [2225.91, -3093.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[2233.11, -3125.13], [2226.78, -3125.15], [2226.73, -3112.84], [2234.64, -3112.8], [2234.66, -3116.6], [2234.09, -3116.61], [2234.1, -3117.48], [2236.83, -3117.47], [2236.84, -3123.48], [2233.11, -3123.49], [2233.11, -3125.13]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.086, "pop": 43, "jobs": 0}}, {"shape": {"outer": [[2247.42, -3129.33], [2239.66, -3129.49], [2239.49, -3121.43], [2247.26, -3121.27], [2247.42, -3129.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2803.28, -3025.12], [2804.23, -3042.4], [2813.49, -3041.9], [2812.55, -3024.62], [2803.28, -3025.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2811.53, -3002.38], [2802.42, -3002.82], [2803.03, -3015.13], [2804.41, -3015.06], [2804.59, -3018.85], [2812.31, -3018.48], [2811.53, -3002.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[2814.14, -2973.19], [2826.57, -2972.4], [2827.12, -2980.92], [2830.94, -2980.68], [2831.53, -2990.01], [2822.03, -2990.62], [2821.5, -2982.38], [2814.76, -2982.82], [2814.14, -2973.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.162, "pop": 81, "jobs": 0}}, {"shape": {"outer": [[2798.01, -2984.79], [2797.46, -2960.59], [2807.69, -2960.37], [2808.24, -2984.56], [2798.01, -2984.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.198, "pop": 99, "jobs": 0}}, {"shape": {"outer": [[2551.51, -2944.23], [2570.02, -2932.51], [2574.71, -2934.95], [2575.1, -2944.02], [2570.94, -2946.34], [2571.41, -2947.17], [2569.17, -2948.42], [2564.1, -2945.41], [2557.71, -2948.98], [2557.47, -2948.55], [2555.45, -2949.67], [2554.42, -2949.67], [2551.46, -2947.92], [2551.51, -2944.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[2800.73, -2885.64], [2800.73, -2877.25], [2805.64, -2877.26], [2805.65, -2885.64], [2800.73, -2885.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.032, "pop": 16, "jobs": 0}}, {"shape": {"outer": [[2802.31, -2892.88], [2816.76, -2892.48], [2817.17, -2907.52], [2815.72, -2907.56], [2815.81, -2910.83], [2802.81, -2911.17], [2802.31, -2892.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.208, "pop": 104, "jobs": 0}}, {"shape": {"outer": [[2792.71, -2920.21], [2792.99, -2928.47], [2800.0, -2928.25], [2799.74, -2919.98], [2792.71, -2920.21]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.046, "pop": 23, "jobs": 0}}, {"shape": {"outer": [[2784.88, -2891.4], [2784.61, -2882.86], [2792.4, -2882.61], [2792.27, -2878.27], [2797.5, -2878.11], [2798.24, -2900.97], [2790.26, -2901.22], [2789.94, -2891.24], [2784.88, -2891.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.172, "pop": 86, "jobs": 0}}, {"shape": {"outer": [[2763.01, -2915.66], [2762.6, -2926.65], [2771.01, -2926.96], [2771.41, -2915.96], [2763.01, -2915.66]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.074, "pop": 37, "jobs": 0}}, {"shape": {"outer": [[2766.24, -2895.62], [2766.77, -2883.38], [2771.37, -2883.58], [2771.52, -2880.12], [2776.52, -2880.34], [2775.85, -2896.03], [2766.24, -2895.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2745.54, -2895.37], [2745.81, -2882.46], [2756.46, -2882.69], [2756.19, -2895.59], [2745.54, -2895.37]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.11, "pop": 55, "jobs": 0}}, {"shape": {"outer": [[2714.01, -2878.12], [2714.94, -2902.95], [2722.6, -2902.66], [2722.36, -2896.11], [2726.43, -2895.96], [2725.92, -2882.37], [2720.45, -2882.57], [2720.28, -2877.89], [2714.01, -2878.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[2693.66, -2923.95], [2693.25, -2913.75], [2701.51, -2913.42], [2701.92, -2923.62], [2693.66, -2923.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[2680.91, -2923.5], [2681.84, -2933.54], [2690.5, -2932.75], [2689.58, -2922.71], [2680.91, -2923.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.07, "pop": 35, "jobs": 0}}, {"shape": {"outer": [[2692.14, -2897.31], [2691.43, -2884.48], [2695.74, -2884.25], [2695.48, -2879.53], [2706.66, -2878.92], [2707.11, -2887.22], [2710.64, -2887.03], [2711.04, -2894.25], [2707.52, -2894.44], [2707.63, -2896.46], [2705.41, -2896.58], [2705.48, -2897.82], [2698.18, -2898.23], [2698.11, -2896.97], [2692.14, -2897.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.23, "pop": 115, "jobs": 0}}, {"shape": {"outer": [[2670.29, -2905.43], [2669.24, -2891.26], [2673.84, -2890.93], [2673.79, -2890.37], [2680.32, -2889.89], [2680.47, -2891.96], [2684.58, -2891.66], [2685.6, -2905.37], [2686.57, -2905.31], [2687.15, -2913.07], [2679.08, -2913.66], [2678.43, -2904.83], [2670.29, -2905.43]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.228, "pop": 114, "jobs": 0}}, {"shape": {"outer": [[2653.26, -2919.87], [2655.29, -2919.57], [2655.25, -2919.27], [2653.11, -2916.62], [2651.43, -2913.66], [2650.27, -2910.47], [2649.59, -2906.34], [2649.76, -2902.16], [2652.73, -2901.96], [2652.46, -2900.15], [2653.24, -2900.04], [2652.19, -2898.21], [2658.44, -2894.63], [2660.93, -2898.92], [2666.09, -2898.18], [2667.13, -2911.06], [2659.74, -2916.37], [2660.1, -2918.88], [2661.68, -2918.65], [2663.25, -2929.45], [2654.84, -2930.67], [2653.26, -2919.87]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.312, "pop": 156, "jobs": 0}}, {"shape": {"outer": [[2604.01, -2955.76], [2606.16, -2963.14], [2613.55, -2960.99], [2611.4, -2953.62], [2604.01, -2955.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.048, "pop": 24, "jobs": 0}}, {"shape": {"outer": [[2619.19, -2903.01], [2617.92, -2898.32], [2623.24, -2896.91], [2624.49, -2901.6], [2619.19, -2903.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2630.91, -2918.32], [2630.03, -2904.87], [2643.73, -2903.99], [2644.81, -2920.68], [2634.31, -2921.36], [2634.1, -2918.12], [2630.91, -2918.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[2613.86, -2917.38], [2627.66, -2916.51], [2628.61, -2931.34], [2622.43, -2931.73], [2622.52, -2933.28], [2625.61, -2933.09], [2625.72, -2934.86], [2629.03, -2934.65], [2629.76, -2946.09], [2621.76, -2946.59], [2621.04, -2935.26], [2619.94, -2935.33], [2619.96, -2935.76], [2615.06, -2936.07], [2613.86, -2917.38]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.264, "pop": 132, "jobs": 0}}, {"shape": {"outer": [[2597.97, -2932.24], [2597.54, -2918.78], [2608.7, -2918.42], [2609.13, -2931.89], [2597.97, -2932.24]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2587.01, -2952.58], [2586.69, -2961.06], [2578.83, -2960.76], [2579.15, -2952.28], [2587.01, -2952.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[2580.61, -2941.5], [2580.64, -2930.82], [2584.65, -2930.83], [2584.66, -2930.37], [2592.08, -2930.39], [2592.04, -2944.33], [2591.26, -2944.32], [2591.26, -2945.34], [2585.78, -2945.33], [2585.78, -2944.31], [2582.25, -2944.3], [2582.25, -2941.5], [2580.61, -2941.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2517.93, -2936.33], [2518.28, -2927.79], [2523.46, -2927.99], [2523.12, -2936.54], [2517.93, -2936.33]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2513.12, -2963.08], [2511.51, -2957.58], [2509.18, -2958.26], [2507.51, -2952.5], [2508.5, -2952.2], [2507.44, -2948.57], [2522.31, -2944.26], [2523.0, -2946.62], [2524.3, -2946.24], [2527.19, -2956.17], [2521.11, -2957.93], [2521.87, -2960.55], [2513.12, -2963.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.192, "pop": 96, "jobs": 0}}, {"shape": {"outer": [[2488.9, -2953.95], [2487.56, -2972.54], [2495.65, -2973.13], [2495.77, -2971.48], [2496.52, -2971.53], [2496.34, -2973.88], [2500.45, -2974.17], [2501.84, -2954.88], [2500.93, -2954.82], [2501.26, -2950.25], [2490.37, -2949.47], [2490.04, -2954.04], [2488.9, -2953.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.234, "pop": 117, "jobs": 0}}, {"shape": {"outer": [[2487.84, -2941.04], [2488.65, -2932.48], [2493.73, -2932.96], [2492.92, -2941.52], [2487.84, -2941.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2458.33, -2980.68], [2467.84, -2981.86], [2466.68, -2991.26], [2457.16, -2990.1], [2458.33, -2980.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2455.25, -2953.83], [2456.36, -2942.44], [2461.64, -2942.94], [2461.74, -2941.88], [2470.29, -2942.7], [2469.25, -2953.42], [2463.6, -2952.89], [2463.43, -2954.62], [2455.25, -2953.83]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.126, "pop": 63, "jobs": 0}}, {"shape": {"outer": [[2438.05, -2944.65], [2447.01, -2944.81], [2446.91, -2950.13], [2449.37, -2950.18], [2449.24, -2957.01], [2443.32, -2956.9], [2443.36, -2954.59], [2437.87, -2954.49], [2438.05, -2944.65]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.09, "pop": 45, "jobs": 0}}, {"shape": {"outer": [[2419.1, -2950.02], [2420.36, -2935.93], [2424.58, -2936.3], [2424.23, -2940.29], [2431.34, -2940.93], [2430.44, -2951.03], [2419.1, -2950.02]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.106, "pop": 53, "jobs": 0}}, {"shape": {"outer": [[2400.77, -2951.47], [2400.36, -2957.45], [2405.1, -2957.78], [2405.51, -2951.79], [2400.77, -2951.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.022, "pop": 11, "jobs": 0}}, {"shape": {"outer": [[2400.6, -2947.59], [2401.91, -2935.69], [2414.76, -2937.09], [2413.56, -2947.97], [2410.01, -2947.59], [2409.9, -2948.6], [2400.6, -2947.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.12, "pop": 60, "jobs": 0}}, {"shape": {"outer": [[2365.07, -2943.6], [2366.91, -2931.79], [2370.96, -2932.43], [2371.63, -2928.1], [2395.47, -2931.81], [2393.11, -2946.96], [2373.55, -2943.92], [2373.4, -2944.89], [2365.07, -2943.6]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.338, "pop": 169, "jobs": 0}}, {"shape": {"outer": [[2352.16, -2952.85], [2351.49, -2960.89], [2358.13, -2961.45], [2358.81, -2953.41], [2352.16, -2952.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[2346.61, -2930.19], [2346.36, -2941.19], [2356.35, -2941.41], [2356.67, -2927.49], [2348.45, -2927.3], [2348.39, -2930.24], [2346.61, -2930.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.108, "pop": 54, "jobs": 0}}, {"shape": {"outer": [[2329.78, -2942.97], [2331.27, -2926.03], [2342.23, -2926.99], [2341.36, -2936.86], [2340.57, -2936.78], [2340.28, -2939.95], [2339.51, -2939.88], [2339.16, -2943.8], [2329.78, -2942.97]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.142, "pop": 71, "jobs": 0}}, {"shape": {"outer": [[2327.07, -2948.19], [2326.55, -2958.37], [2333.76, -2958.73], [2334.27, -2948.55], [2327.07, -2948.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2311.83, -2944.41], [2311.62, -2928.34], [2324.92, -2928.18], [2325.13, -2944.24], [2323.78, -2944.26], [2323.8, -2946.5], [2315.76, -2946.61], [2315.74, -2944.36], [2311.83, -2944.41]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.186, "pop": 93, "jobs": 0}}, {"shape": {"outer": [[2300.66, -2947.32], [2300.85, -2955.82], [2309.45, -2955.61], [2309.24, -2947.13], [2300.66, -2947.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.058, "pop": 29, "jobs": 0}}, {"shape": {"outer": [[2291.07, -2938.45], [2290.95, -2925.04], [2304.89, -2924.93], [2304.98, -2935.1], [2299.99, -2935.14], [2300.02, -2938.38], [2291.07, -2938.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[2261.65, -2944.96], [2261.33, -2934.28], [2270.25, -2934.01], [2270.16, -2931.0], [2277.57, -2930.79], [2277.96, -2943.86], [2280.64, -2943.78], [2280.87, -2951.62], [2272.98, -2951.85], [2272.85, -2947.64], [2270.77, -2947.7], [2270.81, -2948.81], [2262.26, -2949.08], [2262.13, -2944.94], [2261.65, -2944.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.238, "pop": 119, "jobs": 0}}, {"shape": {"outer": [[2245.81, -2969.58], [2245.78, -2978.34], [2254.31, -2978.36], [2254.34, -2969.6], [2245.81, -2969.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2241.96, -2943.12], [2242.12, -2956.95], [2253.11, -2956.82], [2252.91, -2939.23], [2247.52, -2939.29], [2247.56, -2943.05], [2241.96, -2943.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2231.82, -2982.23], [2231.95, -2991.16], [2239.66, -2991.05], [2239.53, -2982.11], [2231.82, -2982.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2227.71, -2961.62], [2227.65, -2953.39], [2225.98, -2953.4], [2225.94, -2947.43], [2227.62, -2947.43], [2227.59, -2941.79], [2238.24, -2941.73], [2238.36, -2961.56], [2227.71, -2961.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[2207.36, -2970.32], [2207.25, -2955.87], [2210.05, -2955.86], [2210.02, -2951.05], [2216.69, -2951.01], [2216.71, -2955.8], [2220.58, -2955.77], [2220.63, -2963.67], [2215.56, -2963.7], [2215.61, -2970.25], [2207.36, -2970.32]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.152, "pop": 76, "jobs": 0}}, {"shape": {"outer": [[2194.06, -2976.16], [2192.41, -2974.12], [2191.26, -2975.06], [2189.17, -2972.48], [2190.31, -2971.55], [2186.66, -2967.07], [2192.64, -2962.23], [2193.49, -2963.27], [2197.74, -2959.83], [2203.45, -2966.85], [2199.21, -2970.29], [2200.04, -2971.31], [2194.06, -2976.16]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2190.6, -3005.79], [2192.5, -3012.43], [2198.72, -3010.65], [2196.82, -3004.02], [2190.6, -3005.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2166.0, -2996.2], [2179.3, -2985.0], [2171.71, -2976.05], [2165.58, -2981.2], [2168.18, -2984.28], [2161.01, -2990.31], [2166.0, -2996.2]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.134, "pop": 67, "jobs": 0}}, {"shape": {"outer": [[2181.34, -3020.76], [2187.48, -3016.61], [2184.87, -3012.79], [2178.73, -3016.94], [2181.34, -3020.76]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.028, "pop": 14, "jobs": 0}}, {"shape": {"outer": [[2164.16, -3023.69], [2167.56, -3031.85], [2174.79, -3028.87], [2171.39, -3020.7], [2164.16, -3023.69]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[2151.88, -3016.26], [2146.54, -3004.34], [2154.35, -3000.87], [2153.35, -2998.66], [2158.63, -2996.3], [2164.25, -3008.84], [2160.07, -3010.69], [2160.79, -3012.3], [2151.88, -3016.26]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.154, "pop": 77, "jobs": 0}}, {"shape": {"outer": [[2147.95, -3033.51], [2137.0, -3021.15], [2141.47, -3017.22], [2139.74, -3015.26], [2143.52, -3011.92], [2147.04, -3015.88], [2146.23, -3016.59], [2155.41, -3026.96], [2147.95, -3033.51]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.144, "pop": 72, "jobs": 0}}, {"shape": {"outer": [[2132.65, -3043.58], [2123.78, -3033.48], [2132.75, -3025.65], [2141.63, -3035.75], [2139.29, -3037.78], [2141.53, -3040.33], [2139.06, -3042.48], [2136.83, -3039.94], [2132.65, -3043.58]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[2099.86, -3036.85], [2095.75, -3033.48], [2097.92, -3030.86], [2102.03, -3034.23], [2099.86, -3036.85]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.014, "pop": 7, "jobs": 0}}, {"shape": {"outer": [[2143.4, -3060.95], [2148.37, -3065.55], [2152.61, -3060.99], [2147.64, -3056.4], [2143.4, -3060.95]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[2124.67, -3061.12], [2111.93, -3052.64], [2118.71, -3042.52], [2124.4, -3046.3], [2123.55, -3047.57], [2130.61, -3052.27], [2124.67, -3061.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.138, "pop": 69, "jobs": 0}}, {"shape": {"outer": [[2143.21, -3074.22], [2134.29, -3067.76], [2139.71, -3060.32], [2148.63, -3066.77], [2143.21, -3074.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.082, "pop": 41, "jobs": 0}}, {"shape": {"outer": [[2130.09, -3086.12], [2136.24, -3090.55], [2141.12, -3083.81], [2134.97, -3079.39], [2130.09, -3086.12]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2102.2, -3065.42], [2106.5, -3058.42], [2116.4, -3064.47], [2115.66, -3065.68], [2118.01, -3067.12], [2116.98, -3068.79], [2118.76, -3069.87], [2115.9, -3074.53], [2108.82, -3070.22], [2109.15, -3069.67], [2102.2, -3065.42]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[2111.94, -3089.96], [2098.21, -3082.39], [2104.2, -3071.61], [2110.83, -3075.27], [2109.38, -3077.87], [2116.48, -3081.79], [2111.94, -3089.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.136, "pop": 68, "jobs": 0}}, {"shape": {"outer": [[2129.88, -3098.81], [2120.65, -3093.42], [2124.19, -3087.41], [2133.43, -3092.8], [2129.88, -3098.81]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[2101.43, -3098.62], [2106.61, -3089.2], [2115.63, -3094.14], [2115.21, -3094.9], [2119.03, -3096.99], [2118.07, -3098.72], [2119.56, -3099.54], [2117.71, -3102.89], [2116.23, -3102.07], [2114.26, -3105.63], [2101.43, -3098.62]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.128, "pop": 64, "jobs": 0}}, {"shape": {"outer": [[2124.22, -3113.98], [2130.0, -3116.83], [2133.04, -3110.73], [2127.26, -3107.87], [2124.22, -3113.98]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2123.03, -3122.46], [2117.0, -3119.37], [2119.98, -3113.62], [2126.01, -3116.7], [2123.03, -3122.46]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[2111.22, -3126.99], [2107.38, -3134.27], [2117.01, -3139.31], [2120.86, -3132.03], [2111.22, -3126.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.072, "pop": 36, "jobs": 0}}, {"shape": {"outer": [[2091.21, -3112.64], [2096.09, -3103.71], [2106.18, -3109.19], [2105.29, -3110.82], [2112.81, -3114.9], [2108.82, -3122.2], [2091.21, -3112.64]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.15, "pop": 75, "jobs": 0}}, {"shape": {"outer": [[2099.06, -3136.03], [2100.96, -3133.25], [2104.34, -3135.54], [2108.62, -3129.28], [2105.23, -3126.99], [2106.45, -3125.22], [2095.21, -3117.59], [2087.82, -3128.4], [2099.06, -3136.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.166, "pop": 83, "jobs": 0}}, {"shape": {"outer": [[2084.56, -3146.01], [2096.82, -3154.18], [2100.41, -3148.82], [2098.04, -3147.25], [2098.31, -3146.84], [2097.39, -3146.23], [2100.67, -3141.32], [2091.72, -3135.34], [2090.71, -3136.85], [2085.58, -3133.43], [2080.46, -3141.07], [2085.58, -3144.48], [2084.56, -3146.01]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.176, "pop": 88, "jobs": 0}}, {"shape": {"outer": [[2083.69, -3162.53], [2081.75, -3164.4], [2080.56, -3163.18], [2077.98, -3165.68], [2079.17, -3166.9], [2078.46, -3167.6], [2083.85, -3173.14], [2089.1, -3168.08], [2083.69, -3162.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[2067.91, -3152.99], [2079.13, -3162.62], [2085.56, -3155.18], [2074.36, -3145.55], [2067.91, -3152.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.116, "pop": 58, "jobs": 0}}, {"shape": {"outer": [[2062.64, -3173.53], [2056.94, -3167.61], [2063.02, -3161.8], [2064.05, -3162.86], [2066.73, -3160.3], [2076.17, -3170.13], [2073.12, -3173.04], [2068.34, -3168.07], [2062.64, -3173.53]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.098, "pop": 49, "jobs": 0}}, {"shape": {"outer": [[2048.51, -3184.75], [2059.53, -3177.74], [2066.21, -3188.15], [2068.18, -3186.9], [2072.62, -3193.81], [2065.34, -3198.44], [2061.31, -3192.17], [2055.6, -3195.81], [2048.51, -3184.75]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[2031.3, -3184.49], [2040.05, -3204.41], [2049.4, -3200.33], [2040.65, -3180.42], [2031.3, -3184.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.178, "pop": 89, "jobs": 0}}, {"shape": {"outer": [[2958.63, 2622.4], [2959.43, 2636.3], [2951.59, 2636.75], [2950.78, 2622.85], [2958.63, 2622.4]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.088, "pop": 44, "jobs": 0}}, {"shape": {"outer": [[770.57, 682.7], [772.21, 681.22], [773.62, 679.91], [758.48, 666.5], [756.02, 669.06], [770.57, 682.7]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.049, "pop": 0, "jobs": 49}}, {"shape": {"outer": [[-1435.53, 174.26], [-1435.71, 171.39], [-1436.03, 168.14], [-1436.16, 165.57], [-1436.66, 155.85], [-1436.45, 153.19], [-1434.85, 153.14], [-1434.54, 160.49], [-1430.44, 160.32], [-1410.83, 159.5], [-1411.04, 154.51], [-1408.11, 154.41], [-1400.1, 154.1], [-1398.37, 153.9], [-1397.58, 153.76], [-1396.62, 155.5], [-1396.37, 155.99], [-1395.57, 157.41], [-1394.86, 158.68], [-1394.56, 159.18], [-1392.54, 162.56], [-1393.55, 163.05], [-1396.0, 164.24], [-1405.63, 168.35], [-1413.98, 171.08], [-1422.14, 172.61], [-1429.12, 173.51], [-1435.53, 174.26]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.343, "pop": 0, "jobs": 343}}, {"shape": {"outer": [[-1241.46, 53.89], [-1241.49, 52.9], [-1241.55, 51.31], [-1241.63, 49.11], [-1237.07, 48.93], [-1232.31, 48.76], [-1232.14, 53.56], [-1236.85, 53.73], [-1241.46, 53.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.036, "pop": 18, "jobs": 0}}, {"shape": {"outer": [[-3032.72, 72.03], [-3032.96, 67.11], [-3054.09, 68.11], [-3053.91, 72.99], [-3032.72, 72.03]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.084, "pop": 42, "jobs": 0}}, {"shape": {"outer": [[-3060.33, 62.57], [-3061.07, 37.09], [-3067.51, 37.27], [-3066.8, 62.78], [-3060.33, 62.57]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.132, "pop": 66, "jobs": 0}}, {"shape": {"outer": [[-375.22, -170.0], [-366.34, -161.97], [-381.58, -145.26], [-390.45, -153.28], [-375.22, -170.0]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.19, "pop": 95, "jobs": 0}}, {"shape": {"outer": [[-381.58, -145.26], [-376.83, -140.97], [-362.74, -156.44], [-361.09, -158.25], [-365.83, -162.54], [-366.34, -161.97], [-381.58, -145.26]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.104, "pop": 52, "jobs": 0}}, {"shape": {"outer": [[-1165.82, -82.2], [-1163.11, -82.31], [-1155.59, -82.69], [-1156.5, -102.17], [-1156.74, -106.53], [-1166.98, -106.03], [-1165.82, -82.2]], "holes": []}, "height": 7.0, "data": {"type": "commercial", "density": 0.137, "pop": 0, "jobs": 137}}, {"shape": {"outer": [[-994.8, -37.74], [-994.41, -30.4], [-990.71, -30.6], [-986.32, -30.83], [-986.28, -29.97], [-974.34, -30.68], [-976.54, -71.99], [-996.59, -71.01], [-996.01, -60.19], [-994.8, -37.74]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.866, "pop": 433, "jobs": 0}}, {"shape": {"outer": [[-974.34, -30.68], [-965.28, -31.16], [-967.47, -72.47], [-976.54, -71.99], [-974.34, -30.68]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.24, "pop": 0, "jobs": 240}}, {"shape": {"outer": [[-65.78, 110.03], [-78.73, 124.59], [-80.28, 123.41], [-93.58, 124.0], [-95.75, 91.68], [-81.56, 104.94], [-76.84, 99.7], [-65.78, 110.03]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 0.58, "pop": 290, "jobs": 0}}, {"shape": {"outer": [[1082.45, 1045.02], [1110.15, 1015.52], [1152.79, 1055.27], [1125.1, 1084.78], [1082.45, 1045.02]], "holes": []}, "height": 10.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 1982}}, {"shape": {"outer": [[-1299.62, -394.01], [-1323.61, -392.95], [-1323.46, -390.02], [-1299.57, -391.36], [-1299.62, -394.01]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.043, "pop": 0, "jobs": 43}}, {"shape": {"outer": [[-1348.89, -240.87], [-1365.45, -239.98], [-1371.55, -239.64], [-1371.35, -236.8], [-1348.69, -237.82], [-1348.89, -240.87]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.043, "pop": 0, "jobs": 43}}, {"shape": {"outer": [[-690.67, -89.87], [-683.64, -90.16], [-683.68, -91.18], [-683.76, -93.21], [-690.8, -92.92], [-690.71, -90.9], [-690.67, -89.87]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.014, "pop": 0, "jobs": 14}}, {"shape": {"outer": [[-532.11, -107.11], [-524.84, -107.46], [-524.9, -110.27], [-532.23, -110.01], [-532.11, -107.11]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.013, "pop": 0, "jobs": 13}}, {"shape": {"outer": [[1369.03, 1225.47], [1370.39, 1224.09], [1371.63, 1222.83], [1356.96, 1209.25], [1354.02, 1212.05], [1369.03, 1225.47]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.05, "pop": 0, "jobs": 50}}, {"shape": {"outer": [[1937.35, 1751.66], [1938.73, 1750.32], [1939.96, 1749.14], [1922.93, 1733.58], [1920.7, 1736.18], [1937.35, 1751.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.052, "pop": 0, "jobs": 52}}, {"shape": {"outer": [[2424.44, 2214.0], [2426.95, 2211.52], [2413.8, 2198.2], [2412.42, 2199.56], [2410.82, 2201.16], [2424.44, 2214.0]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.046, "pop": 0, "jobs": 46}}, {"shape": {"outer": [[2825.76, 2613.95], [2827.17, 2613.21], [2828.61, 2612.45], [2815.36, 2592.63], [2813.14, 2594.16], [2825.76, 2613.95]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.045, "pop": 0, "jobs": 45}}, {"shape": {"outer": [[2872.47, 2684.92], [2875.07, 2683.4], [2865.23, 2667.2], [2863.97, 2668.04], [2862.54, 2668.99], [2872.47, 2684.92]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.038, "pop": 0, "jobs": 38}}, {"shape": {"outer": [[-180.23, -7.01], [-166.62, 5.22], [-164.66, 3.06], [-178.19, -9.18], [-178.71, -8.61], [-180.23, -7.01]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.034, "pop": 0, "jobs": 34}}, {"shape": {"outer": [[-78.51, -262.74], [-65.0, -250.43], [-62.96, -252.65], [-76.47, -264.96], [-78.51, -262.74]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.035, "pop": 0, "jobs": 35}}, {"shape": {"outer": [[-1970.07, -212.66], [-1989.49, -211.84], [-1989.25, -208.29], [-1969.92, -209.14], [-1970.07, -212.66]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.044, "pop": 0, "jobs": 44}}, {"shape": {"outer": [[-1980.15, -357.99], [-2001.09, -352.9], [-2000.38, -350.13], [-1979.44, -354.98], [-1980.15, -357.99]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.041, "pop": 0, "jobs": 41}}, {"shape": {"outer": [[320.43, 273.02], [303.62, 258.08], [306.42, 254.92], [323.41, 269.92], [321.92, 271.46], [320.43, 273.02]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.062, "pop": 0, "jobs": 62}}, {"shape": {"outer": [[-1203.69, -1028.31], [-1202.93, -1002.98], [-1232.23, -1002.1], [-1232.57, -1013.48], [-1252.48, -1012.89], [-1252.54, -1014.8], [-1249.03, -1014.91], [-1249.52, -1031.73], [-1230.41, -1032.3], [-1230.35, -1030.41], [-1228.12, -1030.47], [-1228.03, -1027.58], [-1203.69, -1028.31]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.689, "pop": 0, "jobs": 689}}, {"shape": {"outer": [[-1251.35, -1043.88], [-1245.64, -1044.02], [-1245.66, -1044.93], [-1237.35, -1045.12], [-1237.33, -1044.39], [-1229.98, -1044.56], [-1230.09, -1049.04], [-1227.94, -1049.09], [-1227.98, -1050.92], [-1228.03, -1053.01], [-1230.24, -1052.96], [-1230.31, -1056.06], [-1228.32, -1056.11], [-1228.36, -1058.11], [-1228.41, -1060.28], [-1230.19, -1060.24], [-1230.26, -1063.34], [-1228.63, -1063.38], [-1228.67, -1065.49], [-1228.83, -1072.52], [-1228.89, -1075.16], [-1228.09, -1076.03], [-1227.04, -1077.17], [-1228.57, -1078.59], [-1224.13, -1083.38], [-1222.8, -1082.16], [-1221.68, -1083.37], [-1217.2, -1088.21], [-1216.18, -1089.31], [-1222.82, -1095.41], [-1224.54, -1093.56], [-1227.56, -1096.33], [-1225.19, -1098.89], [-1228.15, -1101.61], [-1230.24, -1099.34], [-1234.31, -1103.09], [-1236.92, -1100.27], [-1238.3, -1101.54], [-1240.7, -1098.95], [-1239.26, -1097.61], [-1241.58, -1095.1], [-1245.83, -1090.51], [-1247.34, -1091.89], [-1252.36, -1086.46], [-1251.05, -1085.26], [-1252.22, -1083.99], [-1252.1, -1079.3], [-1254.04, -1079.25], [-1253.62, -1063.3], [-1251.74, -1063.34], [-1251.53, -1055.42], [-1253.2, -1055.39], [-1253.01, -1047.89], [-1251.45, -1047.92], [-1251.35, -1043.88]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 545, "jobs": 0}}, {"shape": {"outer": [[-1248.34, -894.99], [-1249.82, -949.23], [-1227.66, -949.84], [-1226.15, -895.61], [-1248.34, -894.99]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.962, "pop": 481, "jobs": 0}}, {"shape": {"outer": [[-1198.98, -901.47], [-1184.31, -907.75], [-1199.88, -943.92], [-1214.55, -937.64], [-1198.98, -901.47]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.502, "pop": 251, "jobs": 0}}, {"shape": {"outer": [[-1177.04, -909.96], [-1162.11, -916.45], [-1178.01, -952.77], [-1192.94, -946.26], [-1177.04, -909.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.516, "pop": 258, "jobs": 0}}, {"shape": {"outer": [[-1155.58, -919.19], [-1142.98, -924.75], [-1159.25, -961.31], [-1171.83, -955.75], [-1155.58, -919.19]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.44, "pop": 220, "jobs": 0}}, {"shape": {"outer": [[-1154.24, -980.93], [-1164.6, -990.25], [-1138.37, -1019.22], [-1128.0, -1009.89], [-1154.24, -980.93]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.436, "pop": 218, "jobs": 0}}, {"shape": {"outer": [[-1187.25, -1013.59], [-1189.5, -1015.62], [-1189.89, -1015.19], [-1190.21, -1015.47], [-1191.6, -1013.93], [-1195.97, -1017.86], [-1194.4, -1019.6], [-1194.72, -1019.89], [-1194.39, -1020.24], [-1196.17, -1021.84], [-1195.34, -1022.75], [-1195.9, -1023.26], [-1192.75, -1026.74], [-1192.12, -1026.17], [-1191.72, -1026.6], [-1191.21, -1026.14], [-1189.93, -1027.55], [-1190.47, -1028.05], [-1190.15, -1028.4], [-1191.67, -1029.78], [-1187.72, -1034.11], [-1186.1, -1032.64], [-1185.55, -1033.24], [-1185.93, -1033.59], [-1183.72, -1036.0], [-1183.42, -1035.72], [-1182.89, -1036.28], [-1184.33, -1037.58], [-1180.32, -1041.94], [-1178.99, -1040.72], [-1178.78, -1040.94], [-1178.34, -1040.53], [-1176.98, -1042.0], [-1177.52, -1042.51], [-1176.65, -1043.45], [-1177.23, -1043.97], [-1173.56, -1047.94], [-1170.57, -1045.19], [-1168.85, -1047.05], [-1164.51, -1043.05], [-1166.19, -1041.23], [-1164.21, -1039.41], [-1165.09, -1038.46], [-1164.32, -1037.76], [-1167.4, -1034.45], [-1167.96, -1034.97], [-1168.57, -1034.32], [-1169.14, -1034.85], [-1170.24, -1033.67], [-1169.69, -1033.16], [-1170.02, -1032.82], [-1168.48, -1031.4], [-1172.76, -1026.8], [-1174.34, -1028.25], [-1174.68, -1027.88], [-1174.3, -1027.52], [-1176.55, -1025.08], [-1176.9, -1025.4], [-1177.35, -1024.92], [-1175.66, -1023.37], [-1179.89, -1018.79], [-1181.35, -1020.13], [-1181.53, -1019.92], [-1182.02, -1020.37], [-1183.09, -1019.21], [-1182.51, -1018.68], [-1183.42, -1017.7], [-1182.7, -1017.05], [-1185.85, -1013.6], [-1186.61, -1014.29], [-1187.25, -1013.59]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.408, "pop": 204, "jobs": 0}}, {"shape": {"outer": [[-1186.34, -1046.09], [-1177.76, -1055.29], [-1210.23, -1085.38], [-1218.81, -1076.19], [-1186.34, -1046.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.446, "pop": 223, "jobs": 0}}, {"shape": {"outer": [[-2356.8, -1181.05], [-2348.96, -1181.17], [-2349.02, -1184.95], [-2349.08, -1188.12], [-2356.92, -1187.98], [-2356.8, -1181.05]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-1570.15, -1115.09], [-1572.89, -1115.0], [-1572.84, -1113.33], [-1586.51, -1112.9], [-1585.95, -1094.72], [-1572.16, -1095.15], [-1572.12, -1093.69], [-1569.48, -1093.76], [-1569.69, -1100.57], [-1569.81, -1104.13], [-1569.99, -1110.02], [-1570.15, -1115.09]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.246, "pop": 123, "jobs": 0}}, {"shape": {"outer": [[-3066.55, -349.67], [-3059.0, -348.77], [-3058.12, -356.03], [-3065.66, -356.94], [-3066.55, -349.67]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.044, "pop": 22, "jobs": 0}}, {"shape": {"outer": [[-3085.09, -348.84], [-3071.25, -347.17], [-3070.1, -356.59], [-3078.98, -357.67], [-3078.71, -359.85], [-3083.67, -360.45], [-3085.09, -348.84]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.114, "pop": 57, "jobs": 0}}, {"shape": {"outer": [[-2694.91, -368.79], [-2690.07, -365.32], [-2685.83, -371.18], [-2690.68, -374.66], [-2694.91, -368.79]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.034, "pop": 17, "jobs": 0}}, {"shape": {"outer": [[-2682.29, -339.23], [-2673.68, -339.38], [-2673.81, -346.76], [-2682.42, -346.61], [-2682.29, -339.23]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.05, "pop": 25, "jobs": 0}}, {"shape": {"outer": [[852.48, 861.25], [857.66, 865.83], [890.59, 828.79], [885.4, 824.21], [852.48, 861.25]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.274, "pop": 137, "jobs": 0}}, {"shape": {"outer": [[883.09, 842.89], [894.89, 853.32], [908.55, 838.0], [896.76, 827.56], [883.09, 842.89]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.258, "pop": 129, "jobs": 0}}, {"shape": {"outer": [[868.3, 858.86], [880.09, 869.3], [893.76, 853.98], [881.97, 843.53], [868.3, 858.86]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.258, "pop": 129, "jobs": 0}}, {"shape": {"outer": [[809.16, 744.49], [860.55, 791.15], [856.1, 796.01], [804.71, 749.34], [809.16, 744.49]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.366, "pop": 183, "jobs": 0}}, {"shape": {"outer": [[-585.9, -2199.68], [-578.7, -2200.26], [-579.22, -2206.7], [-586.44, -2206.12], [-585.9, -2199.68]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.038, "pop": 19, "jobs": 0}}, {"shape": {"outer": [[934.32, 1166.77], [937.81, 1162.83], [933.59, 1159.12], [936.45, 1155.89], [932.15, 1152.12], [925.81, 1159.3], [934.32, 1166.77]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.068, "pop": 34, "jobs": 0}}, {"shape": {"outer": [[-665.61, -721.49], [-698.02, -686.3], [-714.13, -700.66], [-702.69, -713.3], [-710.73, -719.86], [-721.78, -707.47], [-738.07, -721.98], [-727.66, -733.68], [-736.23, -740.69], [-746.04, -729.08], [-763.33, -744.48], [-730.17, -780.52], [-665.61, -721.49]], "holes": []}, "height": 21.0, "data": {"type": "residential", "density": 1.0, "pop": 4088, "jobs": 0}}, {"shape": {"outer": [[2671.95, 1915.59], [2744.18, 1912.13], [2743.19, 1891.64], [2708.87, 1893.29], [2670.97, 1895.1], [2671.95, 1915.59]], "holes": []}, "height": 10.5, "data": {"type": "residential", "density": 1.0, "pop": 779, "jobs": 0}}, {"shape": {"outer": [[-783.4, -681.3], [-784.47, -680.13], [-776.43, -672.9], [-775.43, -674.0], [-772.93, -671.76], [-761.73, -684.12], [-774.52, -695.61], [-785.66, -683.33], [-783.4, -681.3]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.242, "pop": 121, "jobs": 0}}, {"shape": {"outer": [[-1994.53, -238.77], [-1931.41, -240.66], [-1927.06, -245.08], [-1916.04, -245.15], [-1905.16, -261.46], [-1930.26, -276.75], [-1952.88, -292.49], [-1954.04, -333.31], [-1997.65, -331.86], [-1996.25, -290.31], [-1994.53, -238.77]], "holes": []}, "height": 24.5, "data": {"type": "commercial", "density": 1.0, "pop": 0, "jobs": 10828}}, {"shape": {"outer": [[333.71, 175.04], [338.56, 169.89], [331.83, 163.58], [326.98, 168.73], [333.71, 175.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.052, "pop": 26, "jobs": 0}}, {"shape": {"outer": [[-960.46, -112.14], [-966.2, -111.85], [-966.26, -112.9], [-970.87, -112.66], [-970.9, -113.3], [-976.01, -113.04], [-975.66, -106.81], [-974.88, -91.77], [-974.91, -91.59], [-969.8, -91.86], [-959.44, -92.39], [-960.46, -112.14]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.256, "pop": 128, "jobs": 0}}, {"shape": {"outer": [[-997.16, -215.22], [-998.0, -215.97], [-1000.24, -217.7], [-992.37, -226.47], [-988.67, -223.22], [-990.69, -220.94], [-991.85, -221.22], [-997.16, -215.22]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.04, "pop": 20, "jobs": 0}}, {"shape": {"outer": [[-2760.21, -844.27], [-2755.18, -844.94], [-2756.05, -851.52], [-2761.08, -850.86], [-2760.21, -844.27]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.026, "pop": 13, "jobs": 0}}, {"shape": {"outer": [[624.24, -62.31], [627.72, -73.6], [633.87, -71.72], [630.39, -60.43], [624.24, -62.31]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.06, "pop": 30, "jobs": 0}}, {"shape": {"outer": [[253.51, -253.78], [271.32, -237.7], [273.98, -240.64], [285.66, -230.08], [292.94, -238.07], [298.39, -233.15], [288.19, -221.95], [309.11, -203.03], [310.24, -204.28], [342.38, -239.59], [343.69, -241.03], [287.84, -291.5], [253.51, -253.78]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 1.0, "pop": 1471, "jobs": 0}}, {"shape": {"outer": [[-819.6, -99.4], [-820.62, -115.65], [-816.35, -115.9], [-816.43, -117.22], [-816.48, -117.93], [-814.54, -119.6], [-808.65, -119.97], [-807.45, -100.16], [-819.6, -99.4]], "holes": []}, "height": 7.0, "data": {"type": "residential", "density": 0.158, "pop": 79, "jobs": 0}}, {"shape": {"outer": [[-1942.73, -120.1], [-1940.18, -120.19], [-1940.35, -124.27], [-1940.54, -129.13], [-1943.1, -129.02], [-1942.9, -124.16], [-1942.73, -120.1]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.018, "pop": 9, "jobs": 0}}, {"shape": {"outer": [[-1162.73, -215.9], [-1173.63, -215.4], [-1174.89, -242.79], [-1174.94, -244.04], [-1172.11, -244.16], [-1164.04, -244.53], [-1162.73, -215.9]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.25, "pop": 125, "jobs": 0}}, {"shape": {"outer": [[-1510.74, -1843.82], [-1496.4, -1870.28], [-1514.2, -1879.87], [-1518.64, -1871.67], [-1536.88, -1881.48], [-1528.61, -1896.76], [-1519.02, -1891.6], [-1510.24, -1907.8], [-1537.09, -1922.24], [-1554.6, -1890.19], [-1560.87, -1893.59], [-1561.61, -1892.22], [-1570.43, -1875.94], [-1510.74, -1843.82]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 2184, "jobs": 0}}, {"shape": {"outer": [[-1176.17, -23.95], [-1175.84, -17.32], [-1175.46, -9.66], [-1173.55, -9.74], [-1173.5, -8.62], [-1173.44, -7.61], [-1171.08, -7.73], [-1150.47, -8.75], [-1146.99, -8.91], [-1147.37, -17.16], [-1147.93, -28.05], [-1165.72, -27.19], [-1173.98, -26.78], [-1173.85, -24.07], [-1176.17, -23.95]], "holes": []}, "height": 28.0, "data": {"type": "residential", "density": 1.0, "pop": 748, "jobs": 0}}, {"shape": {"outer": [[950.03, 331.2], [926.6, 356.69], [936.84, 365.81], [937.95, 364.46], [969.0, 392.65], [975.27, 385.45], [1012.43, 419.18], [1025.84, 405.26], [993.16, 375.26], [1000.34, 367.65], [1006.21, 372.04], [1029.64, 347.0], [1014.12, 332.55], [1012.69, 334.14], [1011.52, 333.12], [1009.84, 331.64], [1011.08, 329.93], [998.5, 318.34], [967.55, 353.28], [961.7, 348.2], [965.07, 344.51], [950.03, 331.2]], "holes": []}, "height": 17.5, "data": {"type": "residential", "density": 1.0, "pop": 3937, "jobs": 0}}, {"shape": {"outer": [[-1561.29, 66.21], [-1562.61, 66.27], [-1563.43, 66.3], [-1565.81, 66.41], [-1565.87, 65.13], [-1565.91, 64.17], [-1565.98, 62.68], [-1566.04, 61.42], [-1575.88, 61.87], [-1599.04, 62.92], [-1597.33, 100.27], [-1583.24, 99.62], [-1583.53, 93.16], [-1583.68, 89.99], [-1583.9, 85.26], [-1581.63, 85.15], [-1575.32, 84.86], [-1573.11, 84.76], [-1564.93, 84.38], [-1564.8, 87.03], [-1560.34, 86.82], [-1560.45, 84.62], [-1560.55, 82.46], [-1561.29, 66.21]], "holes": []}, "height": 8.0, "data": {"type": "commercial", "density": 0.676, "pop": 0, "jobs": 676}}, {"shape": {"outer": [[-468.88, 207.5], [-457.6, 217.94], [-453.99, 214.06], [-452.34, 212.29], [-453.91, 210.86], [-451.7, 208.5], [-460.26, 200.56], [-463.46, 204.02], [-464.44, 203.11], [-466.88, 205.75], [-468.88, 207.5]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.122, "pop": 61, "jobs": 0}}, {"shape": {"outer": [[-525.69, 291.04], [-515.58, 279.54], [-537.67, 260.26], [-539.56, 262.43], [-537.38, 264.33], [-540.58, 267.97], [-537.64, 270.53], [-540.19, 273.43], [-539.41, 274.12], [-540.43, 275.28], [-534.14, 280.76], [-535.59, 282.4], [-525.69, 291.04]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.288, "pop": 144, "jobs": 0}}, {"shape": {"outer": [[-468.55, 369.44], [-468.09, 369.86], [-467.34, 370.54], [-466.72, 371.11], [-468.14, 372.65], [-465.75, 374.82], [-461.6, 370.29], [-465.82, 366.46], [-468.55, 369.44]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.024, "pop": 12, "jobs": 0}}, {"shape": {"outer": [[-263.37, -1989.45], [-254.88, -1989.9], [-255.33, -1998.19], [-263.81, -1997.73], [-263.37, -1989.45]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.056, "pop": 28, "jobs": 0}}, {"shape": {"outer": [[-1139.69, -2104.96], [-1131.01, -2105.29], [-1131.32, -2113.14], [-1140.0, -2112.8], [-1139.69, -2104.96]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.054, "pop": 27, "jobs": 0}}, {"shape": {"outer": [[-1170.26, -998.08], [-1172.51, -1000.13], [-1172.89, -999.72], [-1173.19, -999.99], [-1174.51, -998.54], [-1178.88, -1002.53], [-1177.54, -1003.99], [-1177.86, -1004.28], [-1177.54, -1004.63], [-1179.3, -1006.24], [-1178.45, -1007.15], [-1179.01, -1007.66], [-1175.76, -1011.21], [-1175.12, -1010.62], [-1174.73, -1011.06], [-1174.22, -1010.59], [-1172.97, -1011.95], [-1173.51, -1012.45], [-1173.19, -1012.8], [-1174.69, -1014.18], [-1170.72, -1018.51], [-1169.09, -1017.03], [-1168.53, -1017.65], [-1168.91, -1017.99], [-1166.72, -1020.38], [-1166.41, -1020.09], [-1165.87, -1020.68], [-1167.29, -1021.99], [-1163.31, -1026.3], [-1161.98, -1025.08], [-1161.78, -1025.3], [-1161.34, -1024.9], [-1159.93, -1026.41], [-1160.49, -1026.91], [-1159.62, -1027.85], [-1160.19, -1028.38], [-1156.55, -1032.31], [-1153.57, -1029.56], [-1151.85, -1031.42], [-1147.53, -1027.45], [-1149.21, -1025.64], [-1147.23, -1023.81], [-1148.11, -1022.87], [-1147.34, -1022.17], [-1150.4, -1018.87], [-1150.96, -1019.38], [-1151.57, -1018.73], [-1152.14, -1019.26], [-1153.24, -1018.07], [-1152.7, -1017.57], [-1153.02, -1017.22], [-1151.48, -1015.8], [-1155.76, -1011.19], [-1157.34, -1012.64], [-1157.68, -1012.28], [-1157.29, -1011.92], [-1159.56, -1009.47], [-1159.9, -1009.79], [-1160.33, -1009.32], [-1158.64, -1007.77], [-1162.89, -1003.19], [-1164.35, -1004.53], [-1164.53, -1004.34], [-1165.02, -1004.78], [-1166.1, -1003.61], [-1165.53, -1003.08], [-1166.45, -1002.09], [-1165.74, -1001.45], [-1168.85, -998.08], [-1169.62, -998.77], [-1170.26, -998.08]], "holes": []}, "height": 8.0, "data": {"type": "residential", "density": 0.406, "pop": 203, "jobs": 0}}], "water": [{"shape": {"outer": [[-2837.87, -1769.75], [-2833.26, -1767.92], [-2819.86, -1760.54], [-2801.64, -1753.38], [-2790.65, -1750.23], [-2778.0, -1743.26], [-2770.33, -1741.66], [-2740.32, -1731.01], [-2703.39, -1722.91], [-2690.97, -1720.87], [-2677.34, -1720.49], [-2665.49, -1718.22], [-2650.2, -1714.28], [-2636.77, -1709.66], [-2624.11, -1705.36], [-2610.62, -1698.58], [-2600.67, -1689.45], [-2594.38, -1687.04], [-2586.55, -1683.19], [-2578.9, -1681.98], [-2570.6, -1682.39], [-2565.71, -1681.57], [-2559.04, -1682.98], [-2548.83, -1683.24], [-2539.86, -1681.83], [-2530.69, -1679.57], [-2520.86, -1676.63], [-2509.22, -1673.0], [-2499.72, -1672.27], [-2490.24, -1672.29], [-2481.6, -1672.16], [-2475.02, -1673.67], [-2465.63, -1677.46], [-2456.77, -1682.03], [-2452.97, -1686.84], [-2450.38, -1690.22], [-2444.81, -1693.72], [-2436.68, -1694.78], [-2427.29, -1701.12], [-2421.45, -1711.19], [-2420.38, -1714.61], [-2421.8, -1717.67], [-2422.78, -1721.39], [-2421.41, -1727.18], [-2418.25, -1731.49], [-2417.85, -1733.78], [-2416.11, -1735.67], [-2415.53, -1737.08], [-2417.14, -1739.58], [-2417.14, -1741.14], [-2414.67, -1743.82], [-2412.78, -1744.79], [-2411.42, -1747.83], [-2411.11, -1751.64], [-2412.23, -1753.32], [-2411.87, -1755.02], [-2409.52, -1756.9], [-2408.61, -1764.52], [-2408.38, -1770.64], [-2409.56, -1772.86], [-2408.62, -1774.57], [-2407.29, -1775.51], [-2407.4, -1778.42], [-2409.64, -1782.64], [-2422.65, -1794.08], [-2423.34, -1797.25], [-2423.28, -1800.38], [-2421.23, -1810.03], [-2421.76, -1812.86], [-2417.95, -1817.88], [-2413.94, -1823.43], [-2410.88, -1826.04], [-2407.96, -1831.88], [-2401.14, -1838.19], [-2392.57, -1841.42], [-2388.49, -1840.62], [-2382.44, -1840.84], [-2380.17, -1840.82], [-2377.97, -1841.37], [-2370.31, -1846.88], [-2367.56, -1848.74], [-2363.98, -1853.45], [-2360.98, -1857.94], [-2364.5, -1862.44], [-2370.52, -1861.21], [-2381.25, -1860.03], [-2391.12, -1857.94], [-2395.7, -1856.13], [-2404.3, -1854.99], [-2432.23, -1847.98], [-2440.4, -1844.93], [-2444.7, -1841.77], [-2449.6, -1840.64], [-2454.43, -1842.17], [-2459.62, -1847.09], [-2466.87, -1856.46], [-2473.12, -1859.3], [-2479.23, -1861.16], [-2486.64, -1862.58], [-2494.02, -1862.27], [-2500.55, -1859.94], [-2505.66, -1856.35], [-2508.62, -1852.54], [-2510.05, -1848.12], [-2509.18, -1844.78], [-2507.45, -1834.31], [-2508.61, -1830.64], [-2510.42, -1827.85], [-2533.77, -1817.33], [-2559.19, -1803.65], [-2569.47, -1796.86], [-2569.97, -1795.42], [-2586.91, -1784.72], [-2587.85, -1782.74], [-2589.33, -1781.45], [-2601.97, -1778.64], [-2608.47, -1777.64], [-2613.58, -1777.61], [-2625.46, -1778.93], [-2640.86, -1785.15], [-2656.99, -1790.46], [-2666.32, -1792.75], [-2682.58, -1795.92], [-2711.68, -1802.99], [-2722.03, -1804.56], [-2742.25, -1806.06], [-2748.01, -1806.46], [-2759.22, -1806.09], [-2767.07, -1805.7], [-2776.18, -1803.38], [-2783.93, -1799.77], [-2796.16, -1790.02], [-2799.26, -1788.48], [-2802.64, -1786.52], [-2809.16, -1785.79], [-2823.37, -1786.98], [-2827.54, -1787.03], [-2835.19, -1785.31], [-2843.08, -1784.78], [-2844.54, -1770.45], [-2837.87, -1769.75]], "holes": [[[-2576.5, -1714.26], [-2577.92, -1721.86], [-2577.9, -1724.44], [-2578.9, -1730.39], [-2580.73, -1739.62], [-2582.49, -1751.28], [-2582.01, -1754.96], [-2581.13, -1758.6], [-2579.52, -1762.18], [-2574.52, -1765.85], [-2569.71, -1769.04], [-2559.79, -1772.63], [-2551.75, -1775.52], [-2537.46, -1783.85], [-2533.02, -1786.39], [-2530.11, -1786.88], [-2527.3, -1785.73], [-2524.08, -1782.67], [-2518.23, -1776.33], [-2512.31, -1770.45], [-2505.98, -1766.49], [-2500.19, -1762.03], [-2495.91, -1757.19], [-2492.17, -1756.25], [-2488.78, -1754.43], [-2486.31, -1752.49], [-2482.56, -1748.6], [-2480.57, -1746.28], [-2478.07, -1744.17], [-2472.65, -1739.76], [-2469.73, -1736.66], [-2466.87, -1734.81], [-2463.59, -1732.6], [-2460.81, -1729.85], [-2459.3, -1727.31], [-2459.51, -1724.85], [-2461.0, -1721.0], [-2463.47, -1714.47], [-2464.12, -1712.03], [-2465.64, -1709.03], [-2467.6, -1707.3], [-2468.99, -1707.09], [-2471.92, -1707.11], [-2473.89, -1705.66], [-2475.26, -1703.83], [-2479.93, -1700.81], [-2491.71, -1694.62], [-2497.15, -1693.24], [-2503.47, -1692.41], [-2516.71, -1693.33], [-2529.38, -1694.1], [-2542.84, -1694.13], [-2555.3, -1694.5], [-2564.16, -1697.56], [-2566.74, -1700.04], [-2569.1, -1702.75], [-2572.12, -1708.0], [-2576.5, -1714.26]]]}}, {"shape": {"outer": [[-1400.17, -1789.28], [-1416.73, -1724.06], [-1414.36, -1647.56], [-1411.05, -1581.93], [-1411.3, -1543.02], [-1407.49, -1491.6], [-1407.53, -1480.33], [-1404.29, -1448.44], [-1400.05, -1439.36], [-1394.67, -1430.57], [-1390.78, -1426.3], [-1384.61, -1415.74], [-1380.8, -1413.98], [-1376.74, -1409.78], [-1363.82, -1392.94], [-1351.11, -1384.78], [-1344.76, -1383.9], [-1339.83, -1384.19], [-1336.13, -1383.11], [-1331.5, -1382.74], [-1327.33, -1382.22], [-1321.7, -1382.34], [-1316.13, -1381.94], [-1311.39, -1382.21], [-1298.44, -1382.45], [-1293.41, -1384.66], [-1284.57, -1384.7], [-1270.24, -1386.19], [-1265.09, -1388.28], [-1261.15, -1388.33], [-1257.97, -1388.65], [-1253.55, -1388.01], [-1249.05, -1385.97], [-1244.6, -1382.88], [-1236.34, -1361.44], [-1237.26, -1359.07], [-1234.9, -1352.97], [-1231.15, -1346.45], [-1228.09, -1340.01], [-1217.65, -1321.28], [-1214.35, -1317.02], [-1211.16, -1310.68], [-1204.73, -1305.16], [-1203.81, -1304.24], [-1203.13, -1303.57], [-1197.64, -1298.39], [-1191.84, -1294.51], [-1179.67, -1285.64], [-1175.02, -1283.14], [-1169.91, -1280.78], [-1164.42, -1277.05], [-1157.07, -1273.37], [-1145.84, -1269.16], [-1139.85, -1268.56], [-1133.93, -1265.76], [-1130.65, -1265.61], [-1127.58, -1264.29], [-1122.31, -1262.36], [-1116.53, -1261.28], [-1105.27, -1258.78], [-1102.38, -1258.14], [-1099.16, -1257.81], [-1096.84, -1258.11], [-1094.95, -1258.53], [-1083.27, -1257.67], [-1061.6, -1258.45], [-1060.41, -1259.33], [-1058.86, -1258.44], [-1057.12, -1258.37], [-1055.73, -1257.33], [-1054.17, -1258.36], [-1052.68, -1258.08], [-1049.71, -1258.75], [-1045.0, -1258.63], [-1035.91, -1258.88], [-1034.83, -1259.52], [-1033.55, -1259.43], [-1031.15, -1259.64], [-1028.77, -1260.14], [-1026.41, -1261.11], [-1020.88, -1260.95], [-1015.37, -1262.07], [-1002.92, -1265.11], [-996.7, -1267.06], [-993.47, -1267.97], [-990.83, -1269.4], [-978.6, -1271.88], [-966.79, -1277.59], [-954.04, -1282.74], [-941.3, -1288.89], [-926.19, -1299.09], [-909.8, -1310.13], [-856.98, -1346.8], [-846.2, -1353.66], [-825.33, -1368.81], [-819.82, -1371.27], [-814.22, -1373.72], [-808.66, -1375.9], [-803.18, -1378.08], [-795.88, -1381.22], [-790.57, -1381.49], [-785.17, -1382.81], [-779.81, -1383.83], [-774.49, -1384.18], [-769.74, -1385.55], [-765.56, -1385.06], [-764.22, -1386.09], [-751.76, -1381.26], [-731.68, -1379.42], [-714.81, -1376.41], [-694.86, -1363.74], [-654.21, -1336.33], [-625.73, -1319.01], [-608.09, -1313.24], [-590.59, -1308.77], [-587.58, -1309.94], [-585.05, -1310.55], [-581.13, -1310.41], [-578.54, -1308.61], [-575.83, -1307.25], [-574.22, -1305.51], [-571.47, -1302.21], [-568.77, -1298.77], [-565.65, -1293.45], [-563.76, -1292.42], [-562.81, -1293.08], [-561.82, -1292.59], [-554.37, -1279.54], [-546.87, -1267.47], [-539.75, -1257.65], [-536.68, -1251.62], [-535.39, -1247.69], [-533.25, -1243.59], [-532.32, -1243.21], [-530.63, -1239.09], [-528.27, -1233.99], [-529.05, -1231.96], [-527.32, -1228.31], [-524.61, -1223.79], [-522.53, -1218.23], [-522.23, -1214.59], [-519.51, -1209.3], [-517.98, -1200.56], [-514.99, -1190.17], [-513.39, -1186.89], [-506.74, -1172.54], [-498.12, -1156.37], [-488.24, -1137.22], [-485.8, -1133.11], [-483.18, -1128.28], [-477.05, -1122.65], [-475.3, -1119.01], [-474.16, -1117.0], [-468.69, -1106.0], [-461.59, -1093.07], [-450.54, -1076.92], [-446.77, -1071.55], [-442.16, -1066.43], [-436.55, -1058.16], [-435.27, -1056.64], [-430.64, -1050.75], [-424.5, -1045.29], [-423.11, -1043.43], [-418.58, -1040.81], [-416.44, -1038.89], [-412.58, -1037.02], [-404.17, -1029.1], [-400.32, -1028.06], [-396.9, -1025.43], [-390.44, -1022.3], [-374.16, -1014.55], [-360.23, -1012.03], [-354.39, -1010.09], [-345.6, -1010.05], [-343.39, -1011.09], [-323.79, -1012.01], [-302.56, -1024.84], [-278.71, -1032.4], [-269.65, -1035.21], [-253.82, -1020.5], [-230.61, -982.89], [-222.76, -970.17], [-188.78, -911.95], [-180.85, -900.27], [-160.4, -869.49], [-143.01, -848.38], [-90.93, -787.84], [-58.65, -756.37], [-34.82, -730.06], [-19.73, -716.18], [-2.8, -703.35], [13.2, -688.81], [24.83, -675.81], [39.48, -662.58], [52.72, -647.34], [57.56, -641.71], [70.46, -629.02], [79.68, -622.21], [80.14, -619.61], [89.62, -613.23], [99.41, -606.47], [107.03, -601.6], [114.03, -595.09], [124.08, -585.04], [135.91, -573.22], [139.09, -570.41], [143.13, -567.59], [147.71, -565.27], [152.16, -563.49], [157.18, -562.01], [164.62, -559.74], [172.82, -556.74], [175.72, -555.35], [179.23, -553.32], [185.67, -548.44], [199.41, -534.71], [219.06, -515.35], [224.77, -509.7], [232.17, -502.58], [264.35, -470.0], [271.14, -463.35], [274.66, -459.0], [281.17, -449.89], [288.98, -438.38], [300.49, -421.29], [313.75, -401.69], [320.83, -391.12], [324.89, -385.53], [330.72, -380.0], [332.32, -379.75], [340.34, -373.08], [345.64, -370.91], [356.27, -363.24], [371.49, -349.05], [373.8, -345.74], [376.93, -338.48], [382.01, -329.77], [407.29, -304.16], [416.09, -295.7], [416.77, -292.85], [415.96, -290.78], [421.67, -284.52], [424.88, -283.7], [434.04, -274.72], [435.93, -266.95], [442.31, -256.0], [444.15, -250.94], [446.64, -239.6], [453.36, -225.87], [458.25, -221.8], [462.73, -218.56], [469.47, -212.86], [471.56, -206.4], [471.52, -204.76], [477.48, -198.5], [482.59, -193.4], [486.72, -192.14], [494.69, -184.61], [502.13, -178.51], [506.5, -173.96], [506.93, -168.82], [510.54, -168.31], [516.12, -159.22], [524.15, -148.42], [529.14, -144.54], [533.19, -141.61], [534.29, -140.72], [535.53, -139.73], [541.31, -140.66], [543.05, -139.98], [563.17, -124.94], [565.09, -121.49], [568.45, -121.91], [571.88, -119.99], [581.08, -111.21], [584.9, -108.3], [591.38, -105.37], [596.37, -101.53], [600.14, -100.52], [604.2, -97.84], [611.75, -95.07], [617.82, -92.63], [619.12, -91.68], [620.23, -88.11], [623.55, -87.6], [624.18, -86.08], [625.7, -86.07], [628.0, -83.86], [629.32, -81.71], [628.43, -77.37], [629.87, -75.03], [634.63, -72.4], [636.55, -70.34], [640.01, -71.16], [644.19, -70.64], [648.06, -68.45], [653.35, -67.49], [656.79, -65.82], [669.71, -59.74], [675.03, -56.33], [712.01, -38.48], [716.71, -34.7], [718.25, -34.1], [726.27, -30.4], [747.54, -23.32], [750.97, -19.69], [755.03, -18.59], [767.72, -9.31], [775.12, -6.47], [777.89, -6.46], [781.28, -5.21], [801.56, -1.25], [817.54, 5.17], [823.51, 8.98], [832.58, 15.53], [834.86, 17.65], [838.24, 18.77], [841.89, 18.86], [845.71, 32.3], [851.14, 33.77], [859.79, 33.8], [866.56, 39.94], [878.66, 47.35], [885.17, 55.9], [891.8, 57.91], [913.55, 71.71], [917.48, 80.3], [931.51, 87.91], [935.76, 93.27], [942.83, 96.11], [951.11, 103.45], [959.84, 109.59], [981.6, 115.12], [1009.32, 123.71], [1012.52, 124.35], [1025.87, 126.65], [1040.51, 131.92], [1056.73, 134.54], [1068.97, 139.39], [1090.4, 141.16], [1109.53, 145.83], [1126.0, 148.68], [1135.97, 148.63], [1140.55, 151.1], [1141.68, 152.5], [1148.03, 156.01], [1155.61, 157.29], [1163.4, 156.81], [1164.45, 152.39], [1168.21, 150.55], [1168.82, 148.01], [1170.16, 147.07], [1180.0, 150.72], [1186.52, 155.48], [1197.27, 158.02], [1202.81, 159.68], [1208.32, 162.43], [1211.22, 163.75], [1215.02, 164.14], [1220.3, 165.47], [1228.44, 168.26], [1235.92, 172.78], [1245.29, 176.54], [1254.65, 179.82], [1258.14, 184.94], [1267.43, 188.34], [1273.56, 195.76], [1309.91, 214.54], [1317.49, 218.46], [1342.29, 227.02], [1371.4, 234.41], [1386.98, 240.61], [1401.66, 249.34], [1435.83, 267.32], [1449.43, 277.55], [1464.02, 286.75], [1481.47, 297.39], [1515.9, 318.21], [1527.13, 332.2], [1541.48, 336.31], [1569.12, 337.65], [1584.64, 345.63], [1589.98, 356.18], [1598.74, 366.79], [1611.0, 375.17], [1613.78, 377.18], [1620.91, 383.75], [1629.3, 391.47], [1648.55, 405.99], [1695.14, 441.61], [1724.44, 458.77], [1741.53, 468.13], [1776.81, 498.48], [1782.83, 502.44], [1802.17, 515.11], [1817.49, 533.09], [1829.31, 540.21], [1845.83, 550.11], [1865.08, 560.47], [1885.02, 570.6], [1906.58, 570.16], [1954.54, 595.41], [2002.25, 620.42], [2047.24, 654.06], [2116.3, 709.13], [2122.9, 713.81], [2130.36, 719.1], [2139.75, 725.76], [2145.3, 736.57], [2169.5, 758.72], [2182.3, 766.89], [2192.26, 778.67], [2236.33, 818.56], [2242.85, 823.96], [2266.64, 844.19], [2276.88, 842.49], [2279.01, 856.22], [2296.83, 876.65], [2320.8, 916.86], [2348.29, 957.56], [2360.97, 976.35], [2361.46, 988.34], [2368.97, 995.58], [2379.97, 1003.91], [2389.55, 1003.61], [2405.28, 1012.45], [2446.03, 1047.45], [2462.94, 1058.3], [2469.29, 1062.23], [2470.0, 1067.86], [2480.2, 1075.52], [2488.6, 1081.06], [2509.62, 1101.47], [2517.23, 1109.74], [2522.39, 1118.72], [2529.19, 1127.53], [2542.15, 1132.11], [2599.95, 1206.42], [2644.38, 1263.96], [2662.88, 1284.77], [2676.38, 1298.76], [2687.6, 1308.89], [2702.76, 1320.23], [2726.3, 1333.5], [2751.61, 1348.03], [2810.35, 1369.89], [2828.88, 1376.34], [2840.91, 1384.72], [2866.03, 1392.28], [2902.56, 1401.96], [2929.66, 1403.45], [2944.94, 1408.48], [2949.6, 1413.81], [2968.79, 1420.33], [2980.46, 1422.17], [2994.41, 1424.37], [3010.5, 1426.22], [3019.1, 1434.0], [3046.03, 1441.27], [3087.17, 1449.43], [3114.3, 1463.44], [3135.59, 1464.45], [3140.26, 1463.18], [3148.69, 1460.87], [3160.04, 1463.44], [3166.75, 1461.32], [3176.93, 1458.59], [3182.73, 1457.03], [3204.38, 1459.64], [3230.51, 1460.83], [3234.93, 1457.49], [3258.21, 1461.02], [3307.04, 1456.45], [3335.04, 1455.66], [3381.07, 1454.38], [3431.67, 1455.53], [3469.22, 1462.18], [3520.84, 1476.47], [3549.11, 1485.31], [3602.98, 1499.53], [3635.65, 1504.72], [3662.95, 1510.96], [3731.24, 1501.54], [3749.09, 1514.57], [3776.7, 1519.27], [3846.51, 1487.88], [3875.54, 1488.59], [3888.87, 1481.85], [3898.48, 1483.49], [3929.4, 1479.67], [3941.27, 1475.3], [3943.25, 1472.16], [3947.25, 1435.42], [3955.18, 1428.38], [3958.55, 1433.3], [3953.51, 1438.06], [3949.09, 1472.1], [3973.06, 1464.13], [3988.08, 1447.78], [4032.49, 1412.26], [4068.83, 1382.77], [4110.31, 1347.37], [4154.23, 1310.72], [4203.91, 1253.37], [4256.36, 1195.66], [4263.61, 1202.73], [4283.56, 1189.41], [4297.43, 1191.36], [4310.5, 1173.34], [4319.45, 1180.51], [4336.58, 1159.81], [4349.04, 1150.65], [4391.43, 1122.53], [4398.99, 1111.64], [4429.25, 1083.59], [4437.04, 1070.07], [4451.09, 1056.77], [4459.32, 1054.81], [4484.33, 1022.31], [4509.36, 978.3], [4517.42, 963.54], [4543.47, 917.96], [4573.02, 861.35], [4605.11, 793.77], [4630.57, 733.49], [4633.04, 736.14], [4657.66, 658.72], [4675.6, 600.76], [4695.15, 521.42], [4710.12, 444.21], [4717.85, 380.62], [4720.42, 336.67], [4718.12, 295.06], [4713.98, 269.05], [4709.44, 255.18], [4701.52, 225.28], [4686.0, 185.7], [4672.86, 179.07], [4651.71, 168.42], [4640.65, 163.27], [4634.38, 160.34], [4604.73, 151.61], [4591.02, 145.1], [4566.56, 125.7], [4548.75, 115.74], [4533.22, 108.69], [4520.82, 102.14], [4506.31, 92.88], [4487.51, 73.17], [4477.77, 59.66], [4465.35, 38.11], [4450.07, 3.97], [4435.97, -22.54], [4425.31, -50.05], [4418.15, -68.5], [4383.05, -147.32], [4374.74, -173.54], [4370.65, -185.4], [4368.08, -192.84], [4366.68, -196.88], [4365.93, -198.32], [4363.59, -202.79], [4359.19, -211.2], [4356.21, -216.91], [4336.8, -254.01], [4315.22, -289.48], [4308.79, -298.19], [4281.6, -335.18], [4241.09, -376.89], [4199.3, -417.52], [4169.36, -436.69], [4118.54, -465.06], [4071.85, -492.31], [4061.16, -495.14], [4038.47, -502.09], [4032.12, -504.0], [4031.48, -505.72], [4031.23, -508.22], [4044.41, -555.58], [4046.78, -563.76], [4043.65, -573.38], [4032.55, -576.41], [4025.69, -571.33], [4021.64, -567.55], [4019.88, -561.96], [4020.97, -554.15], [4016.93, -501.09], [4016.67, -498.99], [4017.78, -496.98], [4013.34, -496.34], [4008.35, -496.19], [4005.34, -497.5], [4004.91, -502.46], [3995.89, -503.69], [3988.84, -505.06], [3986.43, -505.0], [3985.7, -504.98], [3985.16, -500.71], [3983.62, -497.77], [3980.44, -496.32], [3972.9, -493.58], [3952.43, -485.9], [3951.08, -484.0], [3931.56, -478.41], [3912.79, -477.23], [3896.77, -477.58], [3862.42, -483.61], [3799.26, -504.63], [3719.52, -541.53], [3709.57, -544.92], [3700.97, -546.46], [3687.27, -547.08], [3678.26, -547.48], [3670.07, -547.04], [3666.0, -545.84], [3660.54, -543.89], [3659.12, -542.68], [3653.46, -537.91], [3643.49, -532.88], [3642.01, -532.48], [3607.62, -523.37], [3587.29, -520.4], [3562.38, -519.7], [3543.8, -522.63], [3508.72, -530.56], [3475.26, -546.07], [3449.25, -564.56], [3411.82, -597.75], [3381.03, -638.23], [3355.71, -672.57], [3321.5, -730.6], [3302.18, -766.13], [3288.69, -790.94], [3277.52, -811.5], [3236.05, -884.36], [3209.06, -928.3], [3192.13, -948.49], [3175.53, -964.13], [3166.01, -973.1], [3156.87, -982.29], [3140.12, -990.05], [3113.51, -1005.98], [3100.14, -1018.14], [3090.87, -1025.9], [3082.42, -1036.78], [3072.44, -1047.06], [3058.98, -1059.24], [3038.96, -1067.24], [3025.28, -1072.19], [2987.23, -1078.02], [2975.31, -1078.69], [2964.63, -1082.06], [2950.11, -1089.47], [2933.84, -1099.09], [2899.02, -1123.23], [2865.37, -1148.97], [2839.81, -1177.15], [2817.84, -1202.32], [2812.45, -1211.5], [2802.79, -1221.9], [2788.86, -1233.07], [2752.51, -1259.62], [2729.37, -1279.86], [2718.51, -1293.84], [2711.9, -1307.16], [2706.02, -1325.0], [2704.09, -1338.62], [2695.96, -1372.84], [2686.46, -1405.45], [2682.26, -1413.92], [2676.63, -1431.66], [2620.31, -1547.51], [2596.44, -1606.55], [2590.6, -1615.53], [2581.52, -1646.46], [2553.65, -1719.37], [2536.71, -1760.44], [2522.43, -1795.3], [2513.78, -1818.21], [2499.34, -1881.77], [2497.97, -1886.26], [2491.23, -1908.52], [2487.39, -1936.42], [2486.65, -1944.61], [2487.21, -1979.06], [2491.02, -2020.62], [2498.67, -2058.74], [2512.52, -2102.69], [2536.51, -2148.16], [2555.79, -2178.26], [2585.2, -2207.98], [2619.8, -2235.4], [2639.44, -2246.86], [2642.89, -2249.16], [2666.46, -2263.16], [2676.59, -2264.78], [2683.76, -2262.08], [2691.94, -2262.02], [2705.45, -2253.41], [2710.35, -2249.31], [2717.32, -2244.97], [2726.25, -2240.76], [2753.57, -2232.01], [2799.96, -2224.32], [2832.21, -2219.67], [2856.9, -2216.96], [2886.19, -2216.15], [2899.91, -2219.45], [2904.9, -2221.17], [2914.43, -2221.97], [2917.15, -2219.66], [2949.29, -2218.97], [2953.34, -2216.44], [2956.13, -2192.71], [2957.42, -2165.25], [2956.23, -2160.45], [2955.95, -2151.45], [2953.5, -2144.5], [2953.06, -2140.79], [2950.2, -2138.87], [2940.88, -2139.93], [2940.41, -2137.54], [2944.98, -2135.81], [2954.74, -2137.94], [2955.79, -2128.97], [2955.95, -2103.85], [2953.49, -2078.13], [2953.97, -2051.69], [2956.25, -2026.89], [2953.69, -2023.65], [2957.86, -2016.89], [2957.84, -1998.37], [2958.71, -1996.02], [2958.14, -1978.55], [2955.71, -1960.77], [2955.66, -1924.79], [2955.89, -1907.08], [2955.17, -1894.64], [2957.84, -1884.66], [2963.27, -1870.79], [2970.51, -1858.83], [2975.61, -1856.85], [2978.0, -1856.66], [2986.61, -1861.93], [2996.44, -1870.93], [2998.7, -1875.75], [2997.74, -1881.54], [2990.5, -1893.77], [2985.31, -1908.17], [2984.31, -1915.81], [2984.03, -1925.82], [2979.39, -1949.26], [2973.73, -1971.05], [2971.1, -1989.5], [2969.7, -1992.1], [2969.55, -2006.9], [2976.93, -2007.0], [2976.61, -2012.61], [2969.54, -2012.09], [2970.39, -2027.53], [2969.88, -2051.6], [2968.77, -2068.42], [2968.3, -2085.27], [2969.05, -2098.46], [2970.56, -2160.15], [2970.97, -2185.69], [2970.62, -2209.77], [2972.18, -2217.36], [2974.94, -2220.51], [2979.29, -2222.54], [3006.39, -2227.15], [3028.68, -2230.66], [3050.25, -2231.74], [3057.18, -2231.78], [3079.03, -2234.16], [3081.9, -2235.2], [3097.48, -2236.92], [3107.58, -2237.24], [3112.62, -2237.19], [3122.9, -2237.18], [3125.66, -2236.32], [3128.96, -2235.32], [3133.12, -2235.22], [3136.4, -2235.1], [3141.27, -2233.05], [3142.7, -2234.25], [3168.04, -2233.29], [3189.29, -2228.55], [3193.37, -2226.52], [3237.44, -2214.33], [3249.9, -2211.72], [3255.24, -2211.86], [3259.2, -2211.11], [3260.13, -2209.3], [3260.44, -2207.3], [3270.55, -2205.5], [3272.65, -2202.76], [3271.94, -2198.2], [3275.88, -2196.83], [3277.46, -2199.93], [3280.41, -2201.28], [3284.4, -2199.74], [3310.48, -2181.92], [3317.16, -2174.02], [3334.49, -2165.97], [3358.02, -2157.57], [3363.6, -2153.06], [3376.24, -2141.41], [3388.31, -2132.19], [3406.0, -2123.24], [3415.37, -2119.71], [3419.46, -2109.17], [3451.95, -2030.6], [3455.93, -2032.85], [3460.45, -2035.4], [3434.13, -2108.13], [3433.59, -2121.78], [3436.0, -2128.74], [3443.22, -2132.94], [3453.24, -2133.11], [3464.86, -2131.66], [3472.2, -2134.37], [3491.91, -2158.09], [3497.52, -2164.58], [3510.08, -2173.31], [3517.28, -2179.19], [3531.4, -2192.61], [3537.97, -2203.92], [3546.17, -2216.69], [3551.2, -2223.69], [3555.98, -2230.93], [3556.5, -2246.15], [3566.52, -2264.71], [3570.61, -2272.72], [3571.08, -2283.79], [3575.12, -2306.87], [3579.42, -2320.63], [3585.84, -2322.59], [3591.48, -2325.89], [3594.7, -2329.29], [3590.2, -2334.56], [3588.4, -2344.22], [3587.94, -2360.75], [3588.06, -2378.39], [3583.94, -2380.92], [3585.23, -2384.22], [3588.98, -2388.68], [3593.59, -2412.4], [3598.39, -2417.45], [3594.89, -2432.13], [3587.81, -2457.29], [3578.21, -2488.81], [3571.05, -2523.5], [3573.88, -2542.54], [3575.01, -2557.84], [3576.17, -2567.88], [3580.71, -2593.15], [3583.68, -2622.44], [3585.05, -2631.26], [3584.14, -2632.96], [3582.53, -2638.81], [3584.6, -2647.35], [3589.46, -2654.09], [3587.32, -2666.81], [3577.77, -2688.99], [3574.71, -2695.39], [3578.98, -2714.59], [3584.41, -2726.67], [3591.25, -2746.57], [3597.67, -2768.36], [3595.88, -2771.71], [3577.1, -2778.21], [3564.37, -2781.3], [3545.78, -2778.14], [3538.34, -2763.77], [3531.29, -2761.1], [3524.02, -2763.83], [3510.81, -2750.83], [3503.03, -2739.64], [3503.18, -2737.16], [3506.1, -2738.24], [3513.63, -2735.44], [3517.99, -2727.07], [3518.06, -2721.06], [3510.22, -2709.64], [3496.78, -2701.41], [3482.42, -2696.1], [3465.38, -2693.36], [3453.27, -2697.58], [3439.04, -2707.64], [3414.76, -2722.46], [3395.18, -2727.7], [3370.34, -2736.88], [3360.62, -2744.78], [3350.65, -2758.88], [3337.95, -2777.5], [3324.0, -2785.93], [3319.44, -2793.47], [3309.43, -2807.66], [3300.85, -2815.91], [3293.41, -2819.6], [3287.44, -2827.93], [3284.11, -2826.55], [3278.73, -2828.03], [3272.91, -2828.31], [3266.65, -2827.02], [3262.51, -2824.8], [3258.51, -2824.98], [3257.35, -2822.94], [3239.67, -2822.9], [3225.98, -2835.59], [3191.08, -2837.75], [3151.27, -2875.53], [3116.24, -2879.72], [3053.2, -2912.64], [3009.51, -2900.01], [2982.01, -2899.8], [2945.37, -2892.8], [2910.16, -2888.16], [2881.96, -2884.45], [2856.34, -2872.33], [2835.39, -2874.69], [2817.3, -2873.48], [2793.47, -2871.24], [2773.33, -2864.3], [2738.96, -2858.5], [2708.4, -2855.05], [2678.17, -2862.45], [2656.26, -2869.15], [2590.26, -2908.15], [2526.68, -2926.57], [2474.46, -2930.33], [2461.35, -2929.54], [2452.37, -2930.21], [2442.9, -2928.88], [2427.44, -2924.7], [2397.41, -2923.07], [2376.67, -2914.66], [2348.06, -2910.98], [2300.55, -2907.78], [2284.22, -2908.4], [2275.98, -2911.09], [2271.29, -2910.31], [2249.04, -2916.75], [2219.89, -2929.41], [2190.63, -2940.29], [2159.02, -2954.76], [2115.19, -2997.43], [2098.28, -3025.0], [2081.68, -3053.57], [2073.38, -3073.24], [2072.16, -3087.27], [2068.02, -3100.39], [2064.49, -3111.34], [2059.58, -3121.93], [2045.58, -3138.35], [2029.13, -3148.78], [2015.21, -3161.88], [2004.15, -3166.54], [1994.02, -3171.93], [1981.44, -3179.87], [1950.53, -3189.18], [1936.6, -3194.7], [1925.8, -3198.42], [1916.7, -3200.78], [1903.73, -3205.86], [1900.64, -3206.79], [1892.94, -3209.1], [1886.25, -3210.57], [1881.67, -3210.88], [1878.64, -3211.07], [1876.82, -3207.94], [1871.65, -3206.14], [1856.78, -3204.85], [1820.4, -3192.28], [1790.95, -3182.08], [1729.57, -3164.67], [1700.81, -3153.41], [1652.71, -3122.2], [1604.8, -3107.57], [1570.82, -3118.8], [1523.03, -3146.66], [1486.45, -3169.51], [1463.72, -3210.14], [1404.76, -3291.44], [1363.26, -3338.22], [1356.66, -3355.46], [1357.74, -3363.56], [1356.85, -3372.03], [1346.61, -3382.52], [1333.24, -3391.61], [1280.06, -3414.16], [1220.51, -3444.18], [1146.4, -3453.24], [1108.49, -3451.09], [995.11, -3359.83], [885.91, -3255.88], [866.83, -3202.66], [908.75, -3071.77], [927.54, -3025.78], [944.7, -2984.74], [949.54, -2956.38], [945.36, -2931.17], [949.72, -2900.61], [995.07, -2840.25], [1023.8, -2800.7], [1064.06, -2765.82], [1103.2, -2746.14], [1130.92, -2727.28], [1141.47, -2704.01], [1145.06, -2676.23], [1132.48, -2650.78], [1116.58, -2640.44], [1070.95, -2632.41], [1038.49, -2613.52], [1027.81, -2607.91], [1007.72, -2619.54], [1006.07, -2620.5], [962.09, -2628.84], [924.6, -2626.98], [879.52, -2613.04], [828.97, -2591.57], [760.69, -2552.52], [637.01, -2427.75], [629.28, -2420.43], [561.4, -2352.2], [503.44, -2326.8], [486.94, -2321.84], [475.64, -2320.35], [471.32, -2320.82], [465.75, -2323.97], [460.3, -2323.04], [453.91, -2320.71], [442.9, -2315.72], [442.95, -2313.77], [442.24, -2311.21], [440.33, -2309.6], [431.8, -2306.83], [420.95, -2302.82], [420.59, -2302.6], [396.83, -2288.41], [386.89, -2280.59], [381.28, -2276.18], [372.44, -2269.22], [364.62, -2261.81], [349.92, -2247.87], [341.69, -2240.08], [336.63, -2234.16], [333.34, -2230.0], [330.06, -2225.84], [324.92, -2222.83], [315.65, -2214.09], [304.45, -2208.43], [290.73, -2196.74], [282.43, -2184.85], [230.38, -2130.8], [221.28, -2120.65], [213.56, -2112.03], [210.83, -2106.57], [195.96, -2084.97], [174.88, -2055.23], [158.48, -2030.92], [151.9, -2017.85], [149.77, -2014.99], [140.24, -2002.17], [133.19, -1992.24], [114.56, -1977.6], [93.48, -1962.88], [61.23, -1946.39], [41.21, -1945.82], [22.03, -1950.63], [1.82, -1956.87], [-22.86, -1965.9], [-37.15, -1965.5], [-47.75, -1965.2], [-76.51, -1962.92], [-93.36, -1958.68], [-106.54, -1953.79], [-118.46, -1946.08], [-129.92, -1938.12], [-138.34, -1931.42], [-145.72, -1922.65], [-161.53, -1900.75], [-192.2, -1850.75], [-249.99, -1763.71], [-251.5, -1761.92], [-255.96, -1760.43], [-258.69, -1760.15], [-261.11, -1761.84], [-263.0, -1763.15], [-280.29, -1774.42], [-286.82, -1778.66], [-288.51, -1779.75], [-290.14, -1780.81], [-293.39, -1782.92], [-220.75, -1901.98], [-222.91, -1911.78], [-232.54, -1927.71], [-238.79, -1933.78], [-245.15, -1937.46], [-250.69, -1938.06], [-258.11, -1938.9], [-268.89, -1939.24], [-275.56, -1938.55], [-281.41, -1937.05], [-293.72, -1933.98], [-322.22, -1934.03], [-355.66, -1937.19], [-366.89, -1938.9], [-376.95, -1940.42], [-379.46, -1940.42], [-397.68, -1940.4], [-413.63, -1938.56], [-427.41, -1938.69], [-440.68, -1936.35], [-449.61, -1935.23], [-463.38, -1935.27], [-470.95, -1932.44], [-474.58, -1929.28], [-480.76, -1923.66], [-488.88, -1909.49], [-485.22, -1885.01], [-478.71, -1864.4], [-477.34, -1857.25], [-475.99, -1852.08], [-478.96, -1846.74], [-494.54, -1845.5], [-513.72, -1929.29], [-530.81, -2013.84], [-571.59, -2053.46], [-575.14, -2055.78], [-608.57, -2077.66], [-613.23, -2077.46], [-700.36, -2073.71], [-720.98, -2066.09], [-769.42, -2064.9], [-819.93, -2072.67], [-889.94, -2062.35], [-965.69, -2055.61], [-1010.59, -2041.5], [-1057.85, -2037.5], [-1127.93, -2047.8], [-1183.33, -2056.28], [-1199.2, -2056.67], [-1219.83, -2055.25], [-1234.67, -2048.81], [-1251.88, -2037.5], [-1281.77, -2004.23], [-1371.31, -1841.67], [-1400.17, -1789.28]], "holes": [[[3519.82, -2641.29], [3522.23, -2639.79], [3512.35, -2632.88], [3503.49, -2630.11], [3516.12, -2638.92], [3519.82, -2641.29]], [[3518.96, -2535.99], [3522.74, -2542.55], [3524.05, -2547.26], [3538.09, -2547.28], [3551.52, -2543.71], [3548.29, -2530.35], [3556.67, -2514.08], [3564.4, -2494.91], [3569.95, -2463.86], [3575.61, -2441.76], [3573.75, -2417.67], [3569.18, -2401.04], [3566.26, -2376.56], [3564.67, -2381.9], [3567.29, -2404.22], [3565.87, -2416.37], [3559.88, -2424.47], [3541.83, -2426.12], [3530.18, -2430.81], [3525.33, -2436.77], [3520.49, -2455.3], [3515.18, -2478.11], [3517.48, -2498.63], [3519.32, -2523.08], [3518.96, -2535.99]], [[3044.8, -2438.36], [3060.25, -2415.72], [3070.74, -2394.07], [3068.91, -2391.03], [3046.12, -2380.92], [3030.71, -2374.73], [3017.8, -2372.36], [3011.81, -2369.89], [3006.99, -2367.17], [3000.08, -2366.4], [2977.25, -2368.06], [2945.4, -2372.06], [2934.13, -2373.18], [2919.84, -2368.18], [2906.37, -2365.22], [2885.36, -2363.19], [2862.89, -2362.28], [2857.98, -2362.72], [2855.29, -2365.8], [2845.21, -2365.52], [2835.14, -2364.38], [2818.63, -2366.78], [2808.2, -2368.5], [2800.89, -2372.04], [2784.25, -2378.76], [2781.3, -2381.27], [2780.69, -2383.84], [2806.84, -2413.25], [2828.09, -2440.29], [2858.45, -2468.04], [2875.29, -2480.96], [2886.68, -2481.61], [2893.36, -2479.54], [2902.75, -2481.01], [2908.85, -2479.34], [2912.4, -2477.69], [2918.19, -2477.33], [2925.19, -2477.53], [2930.86, -2479.43], [2943.13, -2476.85], [2968.58, -2476.12], [3004.54, -2472.68], [3022.37, -2466.77], [3034.2, -2456.46], [3032.81, -2454.41], [3037.89, -2449.37], [3044.8, -2438.36]], [[2758.5, -2361.96], [2763.32, -2363.66], [2769.22, -2362.52], [2800.83, -2351.64], [2817.13, -2346.87], [2849.51, -2346.03], [2892.82, -2345.06], [2905.01, -2347.15], [2906.64, -2351.55], [2920.17, -2351.93], [2945.58, -2350.46], [2960.08, -2347.82], [2984.22, -2344.58], [3016.11, -2345.47], [3061.24, -2357.62], [3071.6, -2362.27], [3078.55, -2361.83], [3090.37, -2329.48], [3100.75, -2311.1], [3107.75, -2293.85], [3121.86, -2276.01], [3131.11, -2259.93], [3126.6, -2256.2], [3108.66, -2256.56], [3051.1, -2251.04], [3002.24, -2247.05], [2957.3, -2244.06], [2921.09, -2240.87], [2915.99, -2235.94], [2902.88, -2235.57], [2895.78, -2239.28], [2867.37, -2238.92], [2838.48, -2240.29], [2820.97, -2241.11], [2807.72, -2245.53], [2786.31, -2245.37], [2773.58, -2247.19], [2752.5, -2250.52], [2733.93, -2257.85], [2716.59, -2268.26], [2712.09, -2272.92], [2708.33, -2281.96], [2708.61, -2287.64], [2709.78, -2302.28], [2750.25, -2351.84], [2758.5, -2361.96]], [[-471.61, -1720.2], [-477.43, -1749.27], [-490.24, -1806.06], [-488.44, -1816.57], [-478.02, -1818.81], [-474.46, -1816.96], [-467.6, -1801.55], [-454.35, -1724.83], [-458.37, -1720.42], [-471.61, -1720.2]], [[-389.88, -1295.66], [-406.68, -1387.49], [-425.55, -1496.64], [-430.23, -1511.69], [-433.9, -1520.01], [-439.29, -1522.06], [-553.95, -1336.72], [-558.71, -1331.7], [-565.85, -1337.07], [-563.88, -1341.31], [-518.53, -1419.27], [-440.07, -1543.23], [-437.67, -1551.9], [-464.17, -1679.18], [-462.31, -1684.16], [-452.28, -1685.96], [-448.31, -1684.38], [-445.24, -1680.01], [-432.22, -1604.7], [-429.67, -1591.42], [-425.55, -1585.64], [-420.48, -1584.84], [-416.22, -1585.59], [-405.49, -1600.91], [-312.52, -1752.17], [-308.36, -1755.11], [-301.92, -1751.37], [-298.21, -1748.57], [-280.06, -1735.74], [-275.11, -1729.52], [-274.24, -1724.54], [-288.56, -1697.09], [-320.21, -1650.73], [-346.36, -1599.26], [-360.41, -1552.17], [-368.0, -1498.4], [-367.04, -1456.01], [-361.73, -1414.74], [-353.22, -1376.03], [-339.33, -1320.01], [-325.12, -1259.77], [-321.06, -1232.34], [-324.92, -1223.05], [-345.73, -1220.34], [-373.36, -1210.98], [-389.88, -1295.66]], [[-365.43, -1153.36], [-367.31, -1170.73], [-351.94, -1171.17], [-315.24, -1176.87], [-304.36, -1167.37], [-296.73, -1148.34], [-284.67, -1101.64], [-284.44, -1092.81], [-287.53, -1085.74], [-306.66, -1079.71], [-320.78, -1074.67], [-324.89, -1068.44], [-339.85, -1064.02], [-365.43, -1153.36]]]}}, {"shape": {"outer": [[-8059.47, 2355.73], [-8064.1, 2359.19], [-8067.21, 2366.96], [-8070.13, 2383.77], [-8074.87, 2399.74], [-8080.62, 2430.11], [-8085.16, 2460.33], [-8088.07, 2472.13], [-8088.38, 2480.58], [-8093.19, 2497.64], [-8094.15, 2508.04], [-8100.02, 2538.07], [-8104.43, 2563.5], [-8107.02, 2591.09], [-8107.96, 2599.08], [-8118.08, 2677.3], [-8121.07, 2699.19], [-8123.3, 2701.72], [-8125.05, 2706.87], [-8122.03, 2706.5], [-8124.87, 2732.34], [-8128.32, 2735.33], [-8128.31, 2746.56], [-8125.75, 2747.6], [-8129.94, 2789.29], [-8132.53, 2799.96], [-8132.23, 2809.9], [-8132.69, 2819.45], [-8132.83, 2822.43], [-8136.0, 2845.63], [-8137.16, 2871.67], [-8137.24, 2934.57], [-8137.18, 2960.9], [-8137.14, 2981.1], [-8136.3, 3052.97], [-8134.5, 3102.66], [-8132.14, 3138.86], [-8128.96, 3170.19], [-8126.77, 3184.74], [-8125.41, 3214.28], [-8122.17, 3225.74], [-8120.06, 3242.68], [-8117.6, 3260.05], [-8112.38, 3273.59], [-8105.91, 3295.96], [-8093.94, 3330.27], [-8086.07, 3359.71], [-8089.37, 3364.99], [-8087.85, 3371.01], [-8084.53, 3377.9], [-8082.19, 3381.91], [-8060.92, 3418.49], [-8051.64, 3435.75], [-8036.61, 3454.23], [-8026.13, 3465.77], [-8013.09, 3477.41], [-8001.95, 3477.6], [-7988.4, 3460.5], [-7986.92, 3458.69], [-7976.39, 3455.41], [-7958.16, 3451.57], [-7944.34, 3450.3], [-7933.12, 3448.35], [-7924.99, 3451.32], [-7916.34, 3449.79], [-7896.31, 3462.86], [-7878.85, 3478.31], [-7861.07, 3487.3], [-7848.85, 3488.0], [-7833.68, 3480.68], [-7813.62, 3477.44], [-7790.25, 3478.34], [-7779.32, 3471.14], [-7747.0, 3463.31], [-7705.22, 3466.09], [-7691.59, 3478.06], [-7672.95, 3480.68], [-7663.76, 3486.22], [-7657.94, 3486.05], [-7654.73, 3495.99], [-7633.17, 3530.47], [-7615.8, 3556.07], [-7594.09, 3581.95], [-7573.93, 3604.12], [-7548.4, 3626.41], [-7533.88, 3639.1], [-7519.66, 3651.46], [-7511.28, 3656.47], [-7492.2, 3671.21], [-7473.91, 3679.98], [-7455.2, 3691.62], [-7437.12, 3705.75], [-7419.76, 3714.0], [-7409.18, 3723.31], [-7399.35, 3729.11], [-7392.25, 3729.55], [-7371.11, 3742.55], [-7340.1, 3757.87], [-7328.88, 3759.77], [-7320.35, 3762.04], [-7302.62, 3761.76], [-7292.04, 3763.82], [-7280.93, 3767.75], [-7258.33, 3778.7], [-7254.26, 3785.47], [-7238.25, 3793.32], [-7221.05, 3801.84], [-7189.71, 3815.67], [-7170.2, 3822.48], [-7160.35, 3828.92], [-7141.85, 3833.83], [-7128.6, 3835.04], [-7111.82, 3837.47], [-7094.07, 3837.55], [-7073.1, 3838.87], [-7049.9, 3839.46], [-7028.67, 3838.51], [-7014.95, 3839.0], [-7006.6, 3836.99], [-7003.71, 3835.53], [-6998.0, 3832.65], [-6997.07, 3830.82], [-6996.61, 3826.51], [-6987.82, 3820.63], [-6982.84, 3819.33], [-6979.85, 3817.05], [-6977.36, 3814.78], [-6979.49, 3809.6], [-6971.93, 3801.65], [-6968.14, 3794.38], [-6955.11, 3786.19], [-6950.56, 3784.8], [-6944.17, 3786.73], [-6940.39, 3789.82], [-6935.61, 3794.37], [-6930.32, 3809.95], [-6924.35, 3826.78], [-6914.48, 3855.69], [-6902.98, 3863.37], [-6886.26, 3872.32], [-6862.44, 3884.48], [-6846.48, 3895.3], [-6843.09, 3901.81], [-6839.38, 3906.91], [-6834.57, 3909.13], [-6827.5, 3907.27], [-6823.48, 3898.62], [-6826.54, 3891.39], [-6838.19, 3884.54], [-6858.84, 3873.84], [-6886.27, 3858.68], [-6894.34, 3851.1], [-6901.59, 3842.26], [-6901.82, 3834.61], [-6905.13, 3817.29], [-6911.92, 3800.08], [-6918.18, 3788.51], [-6921.67, 3783.25], [-6923.11, 3782.36], [-6928.0, 3780.32], [-6929.09, 3778.21], [-6929.85, 3775.16], [-6929.97, 3772.12], [-6920.84, 3760.52], [-6917.89, 3755.94], [-6917.28, 3755.01], [-6912.65, 3747.9], [-6910.75, 3745.01], [-6903.73, 3737.07], [-6882.98, 3714.95], [-6879.07, 3711.74], [-6877.04, 3708.37], [-6874.35, 3702.86], [-6869.04, 3697.73], [-6861.29, 3694.66], [-6852.25, 3695.58], [-6851.46, 3695.54], [-6828.08, 3694.16], [-6795.26, 3702.61], [-6778.25, 3709.49], [-6777.46, 3709.83], [-6770.55, 3712.8], [-6758.75, 3718.6], [-6743.7, 3729.99], [-6729.8, 3742.59], [-6718.77, 3754.1], [-6705.66, 3764.11], [-6681.81, 3784.23], [-6660.12, 3803.22], [-6636.57, 3820.98], [-6589.0, 3848.2], [-6566.28, 3862.2], [-6559.94, 3864.11], [-6544.22, 3868.87], [-6528.8, 3874.66], [-6504.37, 3876.7], [-6447.27, 3888.79], [-6409.16, 3901.34], [-6367.73, 3905.8], [-6332.06, 3908.39], [-6324.65, 3908.46], [-6320.51, 3907.19], [-6306.02, 3910.07], [-6303.98, 3912.43], [-6301.55, 3914.96], [-6296.44, 3916.48], [-6291.5, 3914.91], [-6287.44, 3915.98], [-6277.15, 3921.4], [-6258.19, 3925.98], [-6250.47, 3930.03], [-6228.76, 3941.45], [-6212.73, 3945.71], [-6195.36, 3955.37], [-6178.64, 3958.89], [-6165.93, 3957.22], [-6128.16, 3957.99], [-6106.5, 3958.43], [-6088.24, 3957.65], [-6074.8, 3954.65], [-6026.69, 3951.83], [-5990.07, 3946.02], [-5940.76, 3935.58], [-5910.1, 3929.01], [-5888.19, 3923.4], [-5818.54, 3902.2], [-5767.67, 3888.41], [-5740.64, 3879.34], [-5728.13, 3876.67], [-5722.62, 3878.58], [-5716.8, 3882.67], [-5712.69, 3885.61], [-5708.55, 3888.81], [-5702.55, 3891.0], [-5696.71, 3896.03], [-5688.77, 3899.82], [-5682.27, 3902.94], [-5678.33, 3907.55], [-5669.9, 3911.56], [-5662.22, 3913.9], [-5636.13, 3930.28], [-5610.54, 3939.88], [-5587.56, 3946.39], [-5576.05, 3952.28], [-5553.32, 3994.08], [-5528.43, 4042.84], [-5508.87, 4083.56], [-5489.6, 4127.41], [-5482.99, 4139.3], [-5475.52, 4154.26], [-5464.93, 4182.01], [-5448.94, 4207.25], [-5436.05, 4233.37], [-5423.24, 4257.15], [-5404.59, 4279.98], [-5399.59, 4290.35], [-5388.77, 4299.38], [-5367.51, 4331.1], [-5328.19, 4387.12], [-5323.42, 4393.7], [-5317.12, 4400.34], [-5287.71, 4431.37], [-5273.68, 4437.82], [-5235.97, 4484.25], [-5179.13, 4529.34], [-5151.01, 4555.0], [-5135.6, 4574.04], [-5098.08, 4600.6], [-5088.47, 4594.87], [-5081.78, 4599.89], [-5072.67, 4613.88], [-5053.56, 4625.41], [-5032.21, 4633.74], [-5025.76, 4640.17], [-5017.89, 4641.89], [-5008.02, 4645.5], [-4995.7, 4652.15], [-4979.01, 4661.4], [-4968.9, 4672.8], [-4953.13, 4691.03], [-4936.73, 4703.42], [-4919.89, 4718.11], [-4918.63, 4718.79], [-4892.87, 4732.9], [-4856.63, 4755.61], [-4849.41, 4762.02], [-4839.9, 4766.03], [-4825.62, 4773.4], [-4823.48, 4779.57], [-4816.31, 4784.43], [-4809.44, 4791.64], [-4796.14, 4805.65], [-4785.38, 4817.58], [-4781.77, 4820.22], [-4773.09, 4826.58], [-4760.66, 4837.13], [-4753.17, 4839.25], [-4746.0, 4844.11], [-4744.3, 4848.72], [-4736.38, 4852.01], [-4728.14, 4852.93], [-4720.58, 4857.77], [-4700.97, 4873.17], [-4664.66, 4911.85], [-4656.49, 4923.68], [-4651.77, 4938.35], [-4647.26, 4945.62], [-4645.43, 4954.53], [-4639.35, 4961.75], [-4626.75, 4978.52], [-4613.27, 4998.38], [-4606.55, 5014.16], [-4604.28, 5025.01], [-4590.98, 5061.82], [-4575.8, 5099.95], [-4557.8, 5127.08], [-4544.59, 5148.62], [-4540.74, 5160.18], [-4507.03, 5215.46], [-4491.22, 5249.5], [-4488.13, 5261.88], [-4475.13, 5278.64], [-4469.31, 5290.54], [-4470.83, 5299.34], [-4459.78, 5312.25], [-4448.28, 5328.11], [-4447.28, 5331.77], [-4444.44, 5342.15], [-4436.94, 5355.18], [-4432.47, 5362.14], [-4428.68, 5369.28], [-4423.58, 5375.12], [-4420.88, 5377.17], [-4415.6, 5381.64], [-4411.65, 5385.91], [-4400.06, 5399.27], [-4382.52, 5423.12], [-4375.27, 5431.21], [-4373.44, 5433.26], [-4361.07, 5450.63], [-4344.74, 5468.63], [-4330.44, 5491.22], [-4320.9, 5506.28], [-4310.21, 5517.63], [-4296.26, 5535.54], [-4276.34, 5559.01], [-4264.47, 5572.43], [-4257.53, 5580.08], [-4251.59, 5587.88], [-4220.41, 5637.23], [-4214.98, 5645.82], [-4200.12, 5664.52], [-4189.02, 5686.53], [-4174.0, 5713.9], [-4159.36, 5727.66], [-4150.03, 5754.82], [-4109.64, 5805.67], [-4083.26, 5831.39], [-4065.36, 5859.23], [-4051.6, 5870.98], [-4050.03, 5896.25], [-4044.49, 5923.52], [-4022.31, 5968.28], [-4004.39, 5997.08], [-3992.79, 6033.26], [-3985.89, 6052.59], [-3975.87, 6060.34], [-3967.94, 6074.54], [-3961.28, 6094.62], [-3952.14, 6152.63], [-3939.48, 6232.96], [-3930.22, 6253.55], [-3860.81, 6287.85], [-3865.67, 6297.54], [-3909.03, 6276.11], [-3915.28, 6288.97], [-3919.05, 6302.83], [-3920.0, 6318.16], [-3918.74, 6331.24], [-3917.75, 6341.45], [-3912.62, 6353.1], [-3905.64, 6365.31], [-3893.52, 6380.81], [-3882.39, 6389.99], [-3877.3, 6391.7], [-3859.37, 6374.45], [-3852.63, 6377.77], [-3866.68, 6398.72], [-3871.37, 6405.71], [-3870.79, 6417.54], [-3860.62, 6436.82], [-3841.78, 6454.63], [-3834.02, 6465.63], [-3834.13, 6476.52], [-3839.07, 6487.11], [-3839.14, 6494.78], [-3836.36, 6505.3], [-3832.54, 6516.51], [-3831.21, 6526.76], [-3827.22, 6534.19], [-3817.44, 6540.0], [-3808.24, 6556.26], [-3794.98, 6576.76], [-3778.24, 6596.73], [-3729.17, 6647.52], [-3716.12, 6665.36], [-3714.81, 6666.55], [-3608.05, 6763.35], [-3529.22, 6811.25], [-3531.26, 6832.0], [-3488.64, 6885.83], [-3466.5, 6927.61], [-3445.16, 6948.27], [-3431.69, 6987.02], [-3374.85, 7067.29], [-3360.12, 7106.07], [-3336.45, 7126.3], [-3311.65, 7161.13], [-3296.99, 7184.41], [-3285.44, 7196.61], [-3281.67, 7206.26], [-3265.96, 7216.97], [-3254.36, 7231.27], [-3232.1, 7250.83], [-3215.61, 7264.99], [-3215.25, 7271.51], [-3237.2, 7316.91], [-3253.48, 7350.59], [-3249.47, 7357.67], [-3248.55, 7359.3], [-3207.46, 7431.82], [-3195.82, 7438.2], [-3173.77, 7470.98], [-3151.29, 7488.52], [-3132.51, 7497.62], [-3098.4, 7504.35], [-3066.08, 7502.31], [-3038.11, 7496.68], [-3030.35, 7492.13], [-3022.08, 7487.04], [-3016.96, 7485.1], [-3014.28, 7491.03], [-3012.84, 7500.15], [-3010.86, 7550.27], [-3010.72, 7551.9], [-3008.26, 7579.12], [-3009.17, 7602.56], [-3009.03, 7621.71], [-3002.98, 7628.55], [-2998.85, 7632.32], [-2993.25, 7637.49], [-2976.83, 7654.54], [-2968.32, 7662.35], [-2839.11, 7739.13], [-2814.2, 7757.43], [-2797.73, 7777.02], [-2790.3, 7783.91], [-2780.24, 7790.72], [-2756.95, 7793.81], [-2677.29, 7798.9], [-2634.33, 7817.73], [-2621.01, 7838.48], [-2607.65, 7844.99], [-2603.7, 7944.43], [-2600.47, 7947.41], [-2595.78, 7951.74], [-2597.49, 7845.2], [-2584.48, 7855.38], [-2570.7, 7854.99], [-2559.21, 7849.37], [-2552.24, 7870.3], [-2516.7, 7889.35], [-2492.22, 7892.87], [-2441.05, 7893.88], [-2428.44, 7894.24], [-2411.13, 7893.29], [-2386.16, 7890.48], [-2366.9, 7886.87], [-2336.37, 7879.97], [-2311.45, 7874.35], [-2304.39, 7874.44], [-2299.84, 7876.24], [-2296.66, 7879.97], [-2295.61, 7884.29], [-2295.59, 7888.12], [-2298.19, 7891.78], [-2302.36, 7894.84], [-2314.58, 7897.47], [-2319.17, 7899.33], [-2330.1, 7908.75], [-2333.95, 7910.08], [-2339.39, 7908.88], [-2346.78, 7909.56], [-2352.16, 7911.1], [-2354.08, 7912.41], [-2354.32, 7915.63], [-2351.81, 7919.15], [-2348.89, 7925.96], [-2346.02, 7927.99], [-2345.02, 7930.21], [-2343.6, 7937.77], [-2340.96, 7948.8], [-2341.43, 7952.23], [-2345.65, 7955.46], [-2353.86, 7963.06], [-2350.42, 7963.09], [-2344.79, 7959.22], [-2337.25, 7955.29], [-2331.76, 7955.94], [-2326.24, 7957.54], [-2324.86, 7954.86], [-2327.23, 7954.33], [-2330.64, 7950.82], [-2331.91, 7945.85], [-2332.78, 7937.6], [-2333.42, 7928.31], [-2330.6, 7925.73], [-2322.54, 7924.72], [-2313.02, 7925.09], [-2290.36, 7922.88], [-2288.86, 7924.33], [-2280.67, 7927.9], [-2277.58, 7927.61], [-2274.54, 7924.54], [-2271.25, 7918.23], [-2265.15, 7910.88], [-2254.29, 7896.78], [-2254.93, 7895.29], [-2257.63, 7891.89], [-2257.67, 7890.14], [-2254.84, 7888.91], [-2249.77, 7887.24], [-2239.02, 7885.17], [-2227.92, 7882.75], [-2207.68, 7874.66], [-2199.08, 7872.62], [-2179.42, 7870.57], [-2145.12, 7854.83], [-2136.8, 7852.42], [-2130.38, 7852.48], [-2120.64, 7855.4], [-2120.45, 7861.82], [-2119.09, 7873.4], [-2110.37, 7877.43], [-2118.5, 7880.38], [-2119.07, 7887.41], [-2117.66, 7895.93], [-2118.55, 7897.06], [-2123.69, 7903.51], [-2135.93, 7912.43], [-2143.94, 7912.79], [-2152.21, 7903.55], [-2150.01, 7898.81], [-2156.35, 7895.49], [-2164.38, 7887.94], [-2170.72, 7885.0], [-2171.74, 7890.49], [-2179.41, 7895.38], [-2184.26, 7903.31], [-2185.24, 7909.95], [-2183.56, 7914.19], [-2178.0, 7917.14], [-2173.0, 7914.66], [-2171.23, 7908.38], [-2172.61, 7901.03], [-2170.43, 7895.12], [-2163.36, 7897.51], [-2160.1, 7903.57], [-2153.89, 7904.81], [-2148.05, 7910.08], [-2147.0, 7913.59], [-2142.61, 7917.72], [-2141.49, 7923.36], [-2143.95, 7928.87], [-2149.62, 7929.74], [-2151.34, 7935.7], [-2154.97, 7941.48], [-2159.87, 7944.22], [-2163.22, 7943.14], [-2164.05, 7939.37], [-2166.03, 7936.59], [-2167.33, 7940.89], [-2165.3, 7945.55], [-2170.23, 7947.12], [-2173.86, 7944.62], [-2176.96, 7944.0], [-2181.67, 7945.31], [-2189.6, 7947.9], [-2195.16, 7950.88], [-2204.45, 7953.31], [-2207.79, 7952.46], [-2212.0, 7954.7], [-2212.27, 7961.8], [-2219.61, 7962.25], [-2228.74, 7966.77], [-2267.76, 7979.0], [-2259.74, 7985.62], [-2220.61, 7972.53], [-2200.67, 7972.74], [-2193.82, 7972.67], [-2183.48, 7972.63], [-2176.91, 7970.11], [-2170.67, 7956.29], [-2159.2, 7961.03], [-2146.35, 7959.49], [-2133.01, 7961.44], [-2127.97, 7960.13], [-2124.08, 7959.24], [-2125.46, 7951.87], [-2130.27, 7948.12], [-2129.34, 7939.53], [-2122.14, 7931.54], [-2108.98, 7927.26], [-2107.93, 7936.58], [-2095.98, 7930.79], [-2091.11, 7923.63], [-2085.11, 7928.53], [-2089.14, 7937.59], [-2098.79, 7942.16], [-2098.15, 7950.7], [-2086.77, 7952.32], [-2078.61, 7950.53], [-2068.76, 7940.12], [-2061.53, 7930.78], [-2058.43, 7922.51], [-2054.58, 7920.4], [-2048.74, 7919.99], [-2046.16, 7918.06], [-2043.36, 7912.91], [-2040.71, 7912.03], [-2035.39, 7916.12], [-2028.39, 7922.74], [-2024.79, 7924.59], [-2019.0, 7924.46], [-1959.0, 7925.4], [-1949.75, 7925.69], [-1923.88, 7926.12], [-1906.7, 7927.05], [-1905.08, 7927.71], [-1886.17, 7935.51], [-1875.51, 7939.89], [-1845.84, 7979.92], [-1861.13, 8036.09], [-1862.52, 8041.2], [-1864.55, 8047.42], [-1877.18, 8052.2], [-1887.16, 8085.96], [-1891.48, 8125.8], [-1887.43, 8144.38], [-1891.2, 8162.78], [-1886.32, 8169.26], [-1888.61, 8184.91], [-1884.88, 8192.19], [-1892.89, 8199.05], [-1888.88, 8210.75], [-1888.26, 8224.49], [-1899.01, 8250.15], [-1901.71, 8267.87], [-1900.85, 8275.53], [-1902.29, 8281.67], [-1905.67, 8287.22], [-1904.06, 8298.4], [-1907.12, 8303.61], [-1911.49, 8319.46], [-1913.75, 8341.64], [-1920.03, 8358.5], [-1929.39, 8379.94], [-1930.85, 8391.5], [-1932.23, 8404.38], [-1930.67, 8413.64], [-1921.31, 8466.89], [-1891.86, 8486.93], [-1883.72, 8501.74], [-1871.91, 8509.44], [-1845.08, 8516.18], [-1776.83, 8525.94], [-1760.26, 8520.33], [-1747.29, 8519.74], [-1709.84, 8518.0], [-1701.55, 8517.62], [-1686.98, 8516.95], [-1674.71, 8516.08], [-1639.24, 8513.59], [-1601.39, 8511.92], [-1597.19, 8512.09], [-1592.99, 8512.26], [-1591.09, 8510.54], [-1580.61, 8501.01], [-1551.81, 8476.62], [-1529.69, 8457.89], [-1517.61, 8447.05], [-1515.3, 8440.96], [-1513.55, 8431.45], [-1512.33, 8420.43], [-1508.75, 8416.89], [-1513.58, 8401.44], [-1511.93, 8400.57], [-1506.03, 8398.78], [-1499.02, 8396.64], [-1493.8, 8414.66], [-1451.9, 8403.61], [-1405.81, 8367.85], [-1383.66, 8342.66], [-1384.74, 8334.43], [-1374.44, 8332.16], [-1362.81, 8340.11], [-1353.46, 8329.62], [-1365.05, 8318.31], [-1359.88, 8306.7], [-1353.69, 8292.76], [-1375.39, 8284.36], [-1381.97, 8284.39], [-1409.88, 8284.51], [-1428.54, 8291.15], [-1432.09, 8293.52], [-1451.56, 8308.64], [-1455.97, 8311.99], [-1467.76, 8331.12], [-1470.61, 8333.17], [-1492.36, 8349.97], [-1504.59, 8357.52], [-1508.54, 8363.05], [-1504.69, 8377.2], [-1512.11, 8378.64], [-1520.22, 8381.08], [-1524.97, 8367.75], [-1554.02, 8376.84], [-1563.74, 8374.55], [-1578.99, 8381.4], [-1591.82, 8382.72], [-1596.05, 8384.06], [-1622.38, 8392.3], [-1638.29, 8397.3], [-1646.89, 8410.78], [-1655.81, 8412.98], [-1662.44, 8399.94], [-1666.33, 8400.44], [-1669.68, 8406.37], [-1677.1, 8406.96], [-1682.11, 8401.7], [-1691.25, 8392.1], [-1694.41, 8388.78], [-1705.5, 8370.03], [-1707.59, 8364.08], [-1711.1, 8351.88], [-1706.01, 8338.5], [-1719.87, 8323.08], [-1730.23, 8311.55], [-1748.93, 8281.31], [-1752.12, 8276.15], [-1753.18, 8274.44], [-1770.8, 8244.37], [-1779.88, 8228.88], [-1781.31, 8217.92], [-1782.39, 8209.61], [-1782.85, 8207.4], [-1787.98, 8183.15], [-1788.17, 8180.93], [-1789.42, 8166.84], [-1784.56, 8156.44], [-1777.89, 8153.68], [-1780.9, 8149.6], [-1782.67, 8144.19], [-1778.89, 8141.2], [-1771.77, 8142.6], [-1765.67, 8142.1], [-1764.07, 8142.13], [-1759.23, 8142.24], [-1753.96, 8135.35], [-1749.53, 8132.66], [-1742.27, 8138.86], [-1744.15, 8129.3], [-1731.52, 8120.92], [-1722.86, 8119.71], [-1713.34, 8115.27], [-1709.33, 8120.6], [-1704.63, 8127.2], [-1699.16, 8127.36], [-1695.46, 8121.49], [-1695.97, 8115.09], [-1699.02, 8109.72], [-1702.43, 8103.08], [-1703.37, 8092.53], [-1706.32, 8090.69], [-1709.03, 8097.18], [-1717.36, 8098.71], [-1724.02, 8102.1], [-1730.19, 8100.03], [-1727.15, 8093.86], [-1720.54, 8088.85], [-1715.51, 8073.33], [-1712.6, 8059.9], [-1710.68, 8051.06], [-1707.41, 8047.03], [-1703.23, 8041.86], [-1694.24, 8029.74], [-1690.03, 8019.35], [-1690.85, 8002.06], [-1696.44, 7997.74], [-1703.09, 7990.55], [-1701.58, 7976.08], [-1696.73, 7965.36], [-1693.09, 7946.65], [-1694.48, 7923.71], [-1692.71, 7903.67], [-1697.79, 7894.84], [-1691.51, 7889.53], [-1687.04, 7876.9], [-1679.92, 7867.39], [-1679.18, 7859.35], [-1683.14, 7855.93], [-1697.07, 7864.03], [-1702.33, 7871.24], [-1710.7, 7871.16], [-1714.01, 7868.04], [-1705.52, 7861.07], [-1706.38, 7853.72], [-1705.88, 7848.57], [-1706.66, 7843.78], [-1710.93, 7841.02], [-1712.34, 7836.57], [-1714.53, 7827.66], [-1716.33, 7820.97], [-1717.47, 7815.82], [-1715.28, 7812.61], [-1714.02, 7801.57], [-1714.96, 7790.15], [-1718.16, 7792.83], [-1722.56, 7794.53], [-1725.87, 7791.43], [-1725.78, 7784.83], [-1727.52, 7778.65], [-1729.27, 7773.56], [-1734.27, 7768.75], [-1744.01, 7765.0], [-1748.01, 7760.0], [-1749.0, 7748.15], [-1766.48, 7733.26], [-1772.77, 7727.35], [-1777.91, 7727.5], [-1786.48, 7720.38], [-1790.91, 7700.62], [-1797.17, 7690.16], [-1803.4, 7680.45], [-1813.35, 7677.89], [-1821.8, 7678.42], [-1843.27, 7670.69], [-1853.81, 7662.03], [-1863.62, 7656.85], [-1868.17, 7655.38], [-1873.22, 7658.73], [-1885.32, 7652.03], [-1896.33, 7649.78], [-1902.25, 7645.13], [-1911.68, 7641.88], [-1921.49, 7636.38], [-1921.05, 7640.86], [-1929.14, 7639.17], [-1935.79, 7633.52], [-1946.09, 7631.65], [-1949.18, 7625.0], [-1954.96, 7628.41], [-1960.08, 7626.59], [-1964.77, 7619.99], [-1970.04, 7617.41], [-1977.09, 7616.82], [-1982.37, 7612.65], [-1987.78, 7603.34], [-1990.32, 7599.01], [-1995.82, 7592.35], [-1998.78, 7590.19], [-2000.16, 7586.7], [-2006.0, 7585.86], [-2007.76, 7580.18], [-2007.63, 7573.44], [-2015.05, 7572.42], [-2020.01, 7568.35], [-2027.39, 7552.66], [-2035.12, 7537.45], [-2039.59, 7533.1], [-2042.98, 7530.53], [-2047.75, 7521.37], [-2052.27, 7520.85], [-2058.57, 7514.3], [-2062.95, 7507.69], [-2079.88, 7500.81], [-2082.06, 7494.3], [-2097.02, 7486.86], [-2107.28, 7488.12], [-2112.56, 7483.78], [-2117.72, 7480.03], [-2127.31, 7478.12], [-2130.62, 7478.21], [-2139.9, 7473.02], [-2146.77, 7469.38], [-2154.17, 7469.59], [-2159.42, 7465.89], [-2165.21, 7466.06], [-2164.73, 7462.59], [-2165.45, 7457.73], [-2169.55, 7455.27], [-2167.88, 7451.39], [-2164.73, 7452.22], [-2162.82, 7448.35], [-2159.34, 7446.33], [-2161.63, 7445.11], [-2167.65, 7448.17], [-2169.69, 7444.71], [-2171.78, 7450.21], [-2172.87, 7457.3], [-2177.34, 7458.07], [-2183.06, 7460.81], [-2190.16, 7460.04], [-2199.23, 7458.06], [-2208.34, 7454.8], [-2211.71, 7452.23], [-2213.84, 7446.6], [-2212.99, 7442.11], [-2209.08, 7435.56], [-2201.15, 7432.61], [-2194.68, 7433.2], [-2192.8, 7430.2], [-2191.05, 7423.76], [-2181.27, 7417.24], [-2179.35, 7422.83], [-2174.34, 7413.73], [-2166.42, 7410.39], [-2163.41, 7406.41], [-2158.65, 7401.98], [-2153.85, 7399.32], [-2151.07, 7400.8], [-2144.88, 7398.47], [-2144.19, 7395.11], [-2143.0, 7389.27], [-2136.0, 7387.9], [-2132.77, 7387.52], [-2126.54, 7384.12], [-2124.93, 7378.26], [-2118.38, 7375.72], [-2103.47, 7364.18], [-2070.48, 7346.41], [-2029.21, 7312.67], [-1997.02, 7275.22], [-1970.45, 7249.8], [-1956.78, 7228.27], [-1950.23, 7212.85], [-1949.04, 7189.03], [-1944.95, 7176.69], [-1944.29, 7160.32], [-1931.62, 7123.84], [-1924.96, 7109.31], [-1925.33, 7099.21], [-1923.07, 7085.26], [-1923.29, 7073.81], [-1925.5, 7062.88], [-1928.43, 7055.75], [-1931.8, 7050.17], [-1936.7, 7048.77], [-1946.66, 7048.95], [-1949.35, 7046.18], [-1948.96, 7040.9], [-1952.93, 7033.05], [-1948.11, 7031.49], [-1941.91, 7028.47], [-1940.57, 7025.72], [-1941.0, 7023.01], [-1944.45, 7022.76], [-1952.84, 7023.83], [-1958.06, 7014.09], [-1948.23, 7008.99], [-1948.67, 7004.84], [-1958.04, 7003.83], [-1965.84, 7001.16], [-1969.77, 6987.48], [-1967.16, 6977.79], [-1933.06, 6970.72], [-1903.8, 6967.88], [-1906.19, 6955.5], [-1925.54, 6958.95], [-1961.29, 6963.98], [-1980.19, 6954.96], [-1978.81, 6940.69], [-1974.17, 6935.0], [-1968.17, 6914.6], [-1969.49, 6899.86], [-1972.83, 6892.32], [-1982.06, 6884.43], [-1982.45, 6877.54], [-1978.34, 6869.83], [-1973.93, 6868.07], [-1968.47, 6861.7], [-1966.94, 6858.61], [-1961.7, 6848.06], [-1958.81, 6845.3], [-1947.28, 6846.03], [-1946.4, 6839.62], [-1953.92, 6838.19], [-1958.12, 6836.17], [-1961.17, 6833.43], [-1960.87, 6825.92], [-1957.88, 6823.08], [-1955.43, 6820.77], [-1954.45, 6816.82], [-1953.29, 6812.14], [-1956.35, 6801.78], [-1948.63, 6773.21], [-1942.52, 6764.92], [-1936.17, 6750.62], [-1926.84, 6710.12], [-1917.81, 6698.52], [-1904.46, 6675.91], [-1893.74, 6646.59], [-1885.93, 6606.91], [-1878.77, 6550.13], [-1884.55, 6521.73], [-1890.62, 6506.23], [-1902.63, 6480.37], [-1912.4, 6461.95], [-1943.83, 6424.84], [-1949.98, 6417.8], [-1958.98, 6414.05], [-1971.93, 6406.76], [-1966.41, 6392.43], [-1967.96, 6380.08], [-1966.6, 6365.28], [-1962.07, 6354.12], [-1952.3, 6311.49], [-1955.02, 6298.21], [-1962.26, 6285.1], [-1969.1, 6279.41], [-1981.34, 6278.43], [-1988.37, 6274.63], [-1999.72, 6256.28], [-2011.94, 6241.96], [-2016.89, 6232.58], [-2023.03, 6224.5], [-2027.48, 6216.73], [-2030.32, 6198.95], [-2014.76, 6178.02], [-2014.98, 6148.93], [-2005.74, 6134.97], [-1996.26, 6125.03], [-1956.87, 6090.66], [-1919.8, 6051.8], [-1901.88, 6030.46], [-1890.05, 6019.27], [-1843.1, 5984.35], [-1800.65, 5954.57], [-1743.35, 5925.58], [-1716.39, 5913.3], [-1681.91, 5896.36], [-1648.67, 5888.74], [-1616.66, 5869.7], [-1588.95, 5856.34], [-1554.89, 5837.47], [-1538.2, 5831.99], [-1529.99, 5831.42], [-1520.94, 5832.16], [-1513.43, 5835.5], [-1499.75, 5832.78], [-1422.41, 5830.17], [-1403.52, 5828.15], [-1374.51, 5827.32], [-1356.26, 5820.21], [-1346.84, 5812.31], [-1337.61, 5797.24], [-1320.55, 5762.17], [-1300.18, 5714.79], [-1290.05, 5661.93], [-1292.06, 5638.79], [-1297.37, 5616.57], [-1301.34, 5603.23], [-1311.97, 5587.31], [-1339.76, 5569.43], [-1354.14, 5561.73], [-1369.59, 5551.28], [-1395.17, 5525.01], [-1415.38, 5513.14], [-1424.63, 5508.4], [-1439.76, 5505.95], [-1455.4, 5511.4], [-1486.53, 5526.03], [-1495.72, 5530.67], [-1496.03, 5542.57], [-1490.29, 5549.63], [-1501.44, 5551.39], [-1495.26, 5558.11], [-1552.14, 5538.96], [-1556.38, 5533.08], [-1545.58, 5512.43], [-1537.49, 5513.3], [-1531.58, 5508.47], [-1517.56, 5481.61], [-1507.37, 5470.65], [-1501.03, 5464.8], [-1494.45, 5455.48], [-1497.12, 5445.04], [-1497.79, 5424.36], [-1489.28, 5409.0], [-1478.72, 5388.13], [-1476.03, 5366.05], [-1475.7, 5358.84], [-1478.9, 5344.9], [-1458.7, 5322.43], [-1452.2, 5310.79], [-1441.03, 5297.13], [-1434.59, 5294.62], [-1426.0, 5290.48], [-1420.48, 5284.1], [-1407.52, 5278.72], [-1394.23, 5276.56], [-1385.19, 5273.97], [-1354.75, 5273.65], [-1337.75, 5275.95], [-1327.24, 5279.09], [-1319.18, 5281.97], [-1304.81, 5286.0], [-1291.37, 5289.18], [-1280.14, 5294.75], [-1272.83, 5302.43], [-1262.04, 5312.68], [-1253.84, 5323.22], [-1246.07, 5335.32], [-1238.65, 5358.69], [-1232.75, 5377.62], [-1219.23, 5411.37], [-1204.89, 5457.31], [-1206.75, 5463.56], [-1220.81, 5472.77], [-1226.88, 5477.06], [-1240.64, 5488.23], [-1245.98, 5495.17], [-1249.7, 5503.79], [-1256.41, 5520.36], [-1256.4, 5529.14], [-1255.64, 5544.57], [-1250.45, 5562.06], [-1245.88, 5570.0], [-1246.59, 5580.86], [-1249.23, 5584.97], [-1254.8, 5591.22], [-1261.3, 5615.6], [-1262.23, 5633.37], [-1254.05, 5655.35], [-1246.28, 5675.2], [-1234.69, 5690.64], [-1220.12, 5703.12], [-1202.88, 5715.0], [-1186.73, 5720.27], [-1146.86, 5730.6], [-1136.19, 5729.77], [-1128.67, 5728.0], [-1099.42, 5714.6], [-1096.64, 5703.52], [-1096.28, 5693.39], [-1094.95, 5685.79], [-1093.23, 5669.3], [-1085.87, 5659.34], [-1083.13, 5655.67], [-1079.92, 5649.6], [-1077.37, 5654.74], [-1073.51, 5659.96], [-1074.37, 5691.0], [-1074.24, 5706.88], [-1071.24, 5724.2], [-1067.3, 5737.27], [-1051.79, 5751.16], [-1041.02, 5756.77], [-1028.84, 5761.43], [-1015.67, 5770.73], [-989.74, 5789.04], [-978.18, 5800.72], [-965.68, 5807.69], [-947.74, 5814.99], [-908.45, 5821.95], [-901.83, 5817.2], [-892.07, 5805.37], [-878.59, 5815.76], [-872.55, 5819.03], [-862.46, 5821.75], [-856.34, 5825.02], [-842.09, 5839.61], [-824.53, 5847.12], [-806.07, 5852.26], [-767.59, 5856.94], [-754.63, 5857.34], [-736.89, 5861.17], [-685.81, 5874.92], [-660.18, 5877.76], [-633.34, 5885.44], [-568.5, 5895.48], [-519.82, 5906.77], [-430.02, 5929.77], [-421.33, 5931.46], [-395.59, 5932.56], [-382.6, 5933.97], [-326.46, 5944.37], [-312.34, 5945.75], [-280.62, 5950.4], [-244.64, 5953.04], [-234.18, 5954.64], [-225.39, 5957.39], [-213.08, 5960.22], [-200.53, 5961.23], [-184.11, 5963.1], [-162.5, 5964.49], [-150.65, 5966.26], [-116.82, 5967.85], [-101.16, 5971.63], [-77.99, 5976.42], [-54.44, 5977.08], [-23.5, 5977.31], [3.5, 5976.32], [36.46, 5973.05], [78.23, 5970.41], [96.82, 5968.39], [118.54, 5965.15], [160.83, 5957.95], [195.22, 5953.74], [212.75, 5948.91], [231.9, 5940.81], [277.93, 5916.38], [319.7, 5888.19], [343.24, 5874.18], [370.23, 5850.07], [384.44, 5833.34], [391.5, 5825.01], [405.01, 5813.99], [420.11, 5801.68], [426.51, 5796.46], [433.9, 5787.13], [442.51, 5777.88], [452.02, 5765.16], [456.78, 5758.81], [466.4, 5747.75], [481.2, 5732.88], [499.47, 5711.13], [505.52, 5703.4], [516.26, 5688.34], [524.08, 5677.14], [531.24, 5678.14], [535.99, 5691.31], [544.9, 5698.76], [549.89, 5697.0], [554.77, 5695.27], [555.8, 5685.94], [543.36, 5667.05], [547.38, 5659.68], [549.98, 5654.9], [563.42, 5637.96], [574.23, 5620.21], [575.12, 5608.62], [580.85, 5598.6], [592.16, 5584.95], [626.34, 5537.03], [633.86, 5518.04], [638.05, 5509.41], [642.24, 5500.79], [645.52, 5490.03], [630.49, 5479.79], [606.65, 5451.68], [608.5, 5444.95], [621.66, 5418.24], [628.72, 5419.53], [624.63, 5428.27], [618.4, 5450.92], [638.01, 5474.9], [655.73, 5475.08], [671.15, 5452.18], [690.72, 5411.21], [705.24, 5365.41], [714.7, 5328.57], [719.32, 5310.55], [721.3, 5291.48], [721.12, 5289.62], [720.48, 5282.84], [711.72, 5226.62], [702.01, 5205.56], [685.72, 5179.46], [669.98, 5159.59], [658.2, 5151.48], [644.4, 5142.74], [584.8, 5122.6], [570.25, 5116.67], [562.8, 5100.34], [547.13, 5071.2], [508.06, 5018.34], [488.57, 4977.99], [462.13, 4938.69], [437.72, 4909.8], [410.37, 4869.66], [397.11, 4863.95], [394.99, 4850.95], [397.25, 4807.37], [393.77, 4777.0], [370.3, 4750.68], [341.36, 4727.98], [321.61, 4713.1], [291.25, 4697.86], [276.63, 4697.84], [253.69, 4689.79], [240.91, 4682.2], [225.8, 4660.17], [204.14, 4622.93], [197.14, 4603.24], [198.07, 4590.7], [155.83, 4543.13], [140.51, 4514.06], [121.92, 4483.14], [107.76, 4460.45], [99.48, 4444.37], [91.91, 4412.06], [89.43, 4400.25], [89.98, 4392.24], [86.38, 4396.25], [82.78, 4393.23], [84.76, 4387.34], [89.37, 4377.66], [86.15, 4367.62], [87.39, 4356.1], [90.54, 4343.15], [94.55, 4327.47], [94.72, 4320.84], [97.26, 4309.78], [98.22, 4306.2], [108.58, 4290.53], [112.57, 4284.86], [116.3, 4273.99], [124.21, 4255.92], [128.99, 4250.01], [140.62, 4242.06], [152.5, 4227.53], [190.66, 4199.17], [213.56, 4178.31], [231.44, 4161.43], [242.12, 4151.82], [261.71, 4139.07], [292.07, 4119.28], [299.67, 4114.9], [307.18, 4118.53], [316.19, 4118.6], [334.79, 4115.82], [347.96, 4114.8], [357.24, 4112.62], [368.95, 4105.23], [385.87, 4100.26], [401.66, 4100.77], [411.22, 4098.21], [421.72, 4092.82], [442.88, 4089.72], [458.14, 4082.8], [467.9, 4086.06], [486.0, 4088.75], [519.12, 4086.85], [539.5, 4090.44], [557.52, 4089.93], [576.58, 4091.95], [635.07, 4110.83], [658.75, 4116.9], [686.54, 4120.28], [718.72, 4119.69], [747.97, 4110.7], [753.8, 4109.7], [771.74, 4106.36], [784.93, 4102.67], [790.96, 4099.84], [816.24, 4089.25], [820.12, 4087.84], [825.02, 4087.15], [836.84, 4083.94], [846.38, 4079.49], [854.21, 4071.89], [864.51, 4060.37], [879.05, 4050.66], [884.45, 4047.94], [890.08, 4042.0], [895.21, 4036.87], [902.14, 4034.2], [913.29, 4033.99], [917.39, 4033.53], [927.93, 4032.17], [934.6, 4027.83], [938.92, 4025.35], [950.29, 4012.14], [959.3, 3996.4], [978.83, 3975.31], [980.83, 3968.24], [983.04, 3965.54], [990.86, 3960.42], [998.7, 3952.44], [1000.97, 3949.54], [1003.3, 3946.57], [1018.14, 3930.79], [1023.23, 3922.25], [1024.68, 3918.55], [1028.85, 3914.76], [1031.66, 3913.85], [1042.87, 3898.87], [1050.89, 3884.45], [1054.84, 3872.99], [1065.92, 3847.59], [1083.57, 3815.38], [1099.73, 3767.89], [1105.04, 3749.23], [1119.9, 3693.32], [1127.38, 3661.81], [1129.37, 3653.41], [1129.43, 3651.81], [1131.75, 3640.27], [1135.32, 3614.46], [1137.11, 3608.37], [1140.37, 3599.31], [1140.09, 3589.58], [1141.85, 3586.0], [1144.15, 3581.1], [1148.97, 3571.46], [1152.83, 3551.8], [1156.17, 3521.93], [1159.7, 3508.58], [1163.86, 3476.12], [1169.59, 3462.54], [1172.11, 3442.77], [1173.57, 3425.59], [1180.76, 3407.25], [1186.96, 3376.03], [1194.33, 3326.52], [1199.46, 3314.18], [1202.93, 3300.28], [1203.78, 3273.63], [1206.92, 3247.95], [1212.73, 3215.92], [1221.91, 3177.54], [1223.57, 3168.78], [1234.05, 3161.66], [1248.38, 3144.57], [1252.09, 3150.88], [1261.17, 3152.87], [1274.31, 3156.68], [1279.03, 3158.14], [1293.48, 3156.77], [1297.71, 3158.26], [1288.68, 3169.1], [1288.64, 3179.04], [1289.03, 3192.84], [1291.51, 3200.79], [1299.45, 3208.27], [1307.29, 3212.22], [1314.74, 3213.93], [1325.65, 3212.34], [1337.45, 3208.15], [1347.84, 3199.83], [1357.47, 3187.69], [1365.62, 3168.21], [1361.99, 3162.33], [1364.46, 3149.95], [1366.17, 3142.2], [1361.36, 3131.43], [1351.66, 3118.55], [1343.52, 3104.02], [1335.38, 3089.49], [1332.48, 3078.02], [1333.79, 3067.39], [1322.6, 3034.82], [1320.11, 3027.66], [1315.74, 3021.37], [1308.68, 3010.66], [1300.75, 3003.5], [1291.25, 2997.99], [1283.13, 2995.65], [1278.72, 2998.99], [1278.18, 3002.54], [1280.86, 3006.31], [1282.91, 3010.42], [1282.26, 3021.68], [1273.76, 3028.65], [1267.22, 3036.54], [1256.32, 3038.14], [1239.23, 3026.1], [1225.74, 3016.22], [1222.43, 3002.82], [1224.67, 2982.18], [1223.03, 2969.39], [1217.18, 2959.48], [1216.23, 2940.96], [1213.31, 2921.52], [1201.98, 2897.53], [1188.53, 2842.19], [1184.09, 2823.19], [1171.01, 2783.18], [1147.23, 2748.99], [1119.36, 2705.06], [1094.69, 2666.33], [1080.41, 2618.99], [1068.93, 2562.46], [1072.87, 2513.84], [1071.52, 2466.13], [1057.0, 2409.69], [1060.4, 2368.66], [1116.12, 2348.13], [1146.26, 2338.19], [1150.01, 2320.95], [1151.64, 2298.07], [1153.72, 2266.44], [1151.6, 2259.71], [1152.4, 2250.78], [1152.53, 2236.67], [1144.08, 2209.56], [1138.83, 2205.5], [1136.03, 2203.32], [1123.1, 2177.79], [1112.13, 2165.14], [1100.41, 2154.11], [1088.99, 2139.17], [1087.81, 2137.63], [1083.89, 2134.15], [1080.51, 2131.72], [1078.68, 2130.41], [1051.03, 2117.61], [1045.6, 2115.51], [1044.95, 2114.89], [1036.46, 2105.55], [1033.41, 2105.03], [1030.15, 2104.86], [1027.02, 2104.88], [1023.68, 2105.19], [988.61, 2116.39], [956.36, 2126.66], [946.5, 2129.93], [936.05, 2133.37], [933.15, 2134.57], [931.03, 2136.0], [929.3, 2137.91], [928.04, 2139.96], [927.11, 2142.13], [926.92, 2144.67], [932.04, 2239.99], [932.47, 2240.59], [932.06, 2241.64], [928.29, 2242.69], [928.58, 2243.45], [928.05, 2243.97], [927.39, 2243.68], [924.03, 2241.68], [919.6, 2237.79], [916.2, 2157.18], [915.37, 2151.92], [910.15, 2145.8], [907.55, 2140.12], [906.95, 2134.93], [909.22, 2130.92], [912.15, 2127.74], [1009.59, 2097.55], [1020.02, 2093.57], [1024.56, 2090.22], [1026.09, 2087.74], [1026.83, 2085.36], [1025.19, 2061.67], [1018.35, 2032.41], [1014.45, 2011.9], [994.81, 1989.35], [988.02, 1988.57], [980.07, 1992.01], [976.42, 1986.95], [973.03, 1982.26], [958.2, 1959.25], [947.65, 1950.57], [936.61, 1947.35], [925.78, 1951.82], [917.74, 1963.61], [919.36, 1952.65], [917.46, 1942.11], [912.76, 1935.51], [900.96, 1928.46], [894.81, 1938.26], [877.43, 1927.73], [871.53, 1924.16], [862.92, 1920.16], [855.62, 1919.48], [854.27, 1926.49], [845.65, 1933.2], [834.39, 1929.75], [831.99, 1921.21], [837.64, 1910.83], [843.09, 1912.47], [837.83, 1898.64], [831.95, 1894.32], [824.44, 1887.62], [818.69, 1878.15], [807.27, 1861.15], [788.92, 1827.65], [764.46, 1771.53], [756.34, 1757.64], [752.39, 1743.31], [731.45, 1709.24], [712.28, 1680.57], [708.86, 1673.29], [697.49, 1647.29], [642.03, 1490.91], [612.15, 1409.63], [582.42, 1346.91], [547.62, 1287.66], [540.87, 1278.68], [528.79, 1264.56], [519.5, 1254.37], [516.06, 1248.76], [513.12, 1243.94], [502.0, 1234.11], [487.44, 1221.22], [453.05, 1197.58], [442.32, 1189.39], [409.39, 1168.55], [388.41, 1155.9], [379.01, 1147.13], [375.93, 1144.25], [371.79, 1139.14], [343.33, 1104.03], [319.79, 1075.73], [311.54, 1061.82], [285.82, 1033.59], [282.22, 1021.94], [278.49, 1006.36], [269.28, 989.64], [261.89, 982.52], [249.67, 970.74], [240.75, 962.15], [237.78, 950.04], [225.5, 937.34], [200.63, 903.62], [184.23, 880.14], [158.44, 841.68], [145.58, 818.89], [144.41, 816.83], [136.43, 797.46], [115.76, 777.8], [98.21, 759.79], [88.41, 753.91], [80.27, 747.39], [69.32, 735.31], [66.85, 732.57], [68.26, 730.82], [52.89, 718.4], [49.7, 713.7], [49.85, 711.08], [51.74, 708.41], [42.26, 698.01], [36.15, 698.19], [29.05, 694.47], [26.32, 690.84], [24.85, 688.73], [23.29, 683.96], [22.23, 677.68], [16.38, 671.89], [2.49, 658.19], [-6.15, 649.66], [-16.32, 639.63], [-20.67, 631.02], [-35.93, 631.2], [-74.3, 606.77], [-89.79, 598.62], [-135.26, 581.01], [-179.95, 564.5], [-217.57, 554.53], [-229.02, 543.09], [-246.73, 540.0], [-262.8, 537.32], [-272.01, 535.46], [-305.26, 537.21], [-344.14, 527.74], [-349.76, 527.03], [-367.94, 524.54], [-378.73, 522.82], [-380.08, 522.6], [-382.54, 522.21], [-385.58, 521.73], [-389.25, 521.14], [-393.02, 520.55], [-397.63, 523.7], [-398.01, 524.11], [-398.94, 525.11], [-401.32, 527.54], [-400.63, 528.75], [-400.54, 529.39], [-399.61, 536.85], [-398.72, 541.07], [-396.81, 544.98], [-389.43, 551.72], [-385.28, 554.85], [-385.77, 556.63], [-385.67, 558.13], [-388.75, 557.43], [-389.41, 556.32], [-395.4, 554.13], [-403.15, 548.47], [-407.27, 544.24], [-409.28, 538.63], [-409.38, 533.18], [-407.68, 527.45], [-404.38, 522.58], [-409.4, 515.97], [-421.38, 507.56], [-439.42, 505.92], [-458.94, 503.25], [-477.67, 494.82], [-483.55, 491.91], [-518.65, 474.52], [-543.81, 459.67], [-552.38, 454.6], [-562.46, 448.6], [-583.7, 435.93], [-601.72, 425.19], [-620.01, 408.67], [-624.18, 413.81], [-626.14, 414.77], [-643.71, 398.05], [-644.85, 396.44], [-669.99, 375.33], [-679.5, 367.33], [-696.92, 356.17], [-719.64, 350.22], [-725.93, 348.57], [-736.37, 342.41], [-738.29, 340.49], [-761.39, 317.11], [-765.27, 313.64], [-775.76, 308.58], [-792.82, 300.62], [-803.65, 295.85], [-835.66, 281.76], [-839.67, 275.79], [-850.3, 266.75], [-853.18, 266.65], [-864.97, 269.85], [-870.9, 257.48], [-871.53, 257.1], [-890.3, 246.37], [-902.14, 241.15], [-904.24, 243.72], [-908.42, 242.22], [-913.41, 237.35], [-916.81, 238.34], [-922.21, 231.85], [-933.61, 229.56], [-935.43, 229.19], [-950.15, 223.87], [-975.65, 209.43], [-977.6, 208.33], [-986.34, 204.82], [-1001.73, 201.54], [-1002.63, 201.34], [-1010.77, 193.68], [-1012.39, 192.24], [-1017.13, 189.96], [-1021.58, 186.24], [-1023.99, 186.23], [-1030.12, 186.22], [-1032.05, 186.22], [-1041.97, 184.29], [-1046.47, 183.42], [-1053.75, 182.66], [-1057.75, 182.53], [-1061.49, 182.4], [-1065.76, 181.95], [-1079.42, 180.5], [-1084.16, 178.39], [-1084.23, 175.83], [-1101.74, 172.45], [-1102.37, 172.34], [-1113.69, 169.71], [-1122.92, 168.91], [-1156.72, 164.42], [-1166.49, 163.37], [-1171.73, 162.8], [-1171.95, 159.38], [-1176.08, 158.89], [-1180.36, 158.42], [-1180.33, 159.15], [-1180.8, 159.17], [-1180.66, 161.89], [-1186.56, 161.16], [-1186.59, 158.7], [-1249.1, 161.8], [-1256.25, 161.88], [-1263.67, 161.06], [-1269.13, 159.97], [-1274.01, 159.02], [-1279.05, 158.84], [-1282.91, 158.98], [-1286.39, 159.26], [-1290.07, 160.16], [-1295.52, 161.93], [-1302.13, 164.02], [-1307.9, 165.11], [-1314.32, 165.48], [-1318.06, 165.33], [-1323.18, 164.69], [-1327.01, 163.92], [-1332.47, 162.74], [-1336.39, 162.45], [-1341.55, 162.52], [-1349.13, 163.97], [-1364.89, 167.64], [-1422.41, 180.67], [-1421.12, 186.16], [-1438.33, 190.27], [-1437.97, 191.51], [-1443.77, 192.93], [-1457.96, 196.39], [-1459.53, 188.74], [-1468.15, 190.86], [-1480.49, 194.41], [-1481.59, 194.72], [-1482.54, 194.99], [-1484.62, 195.6], [-1494.74, 198.69], [-1503.52, 200.93], [-1505.35, 201.2], [-1517.01, 203.86], [-1524.66, 205.1], [-1526.07, 205.32], [-1527.61, 205.5], [-1536.75, 206.95], [-1551.62, 209.38], [-1552.41, 209.5], [-1553.21, 209.6], [-1556.75, 210.21], [-1594.35, 212.45], [-1601.0, 208.18], [-1609.88, 208.41], [-1617.55, 208.8], [-1620.75, 210.57], [-1652.86, 213.88], [-1673.41, 215.89], [-1731.84, 229.42], [-1772.44, 239.66], [-1782.36, 241.77], [-1793.14, 243.73], [-1859.23, 247.65], [-1886.67, 249.49], [-1917.33, 256.14], [-1971.48, 265.25], [-2010.43, 276.58], [-2048.41, 285.73], [-2075.22, 293.15], [-2088.72, 297.55], [-2104.29, 303.39], [-2133.23, 315.16], [-2162.41, 329.19], [-2170.31, 333.21], [-2179.33, 338.48], [-2201.63, 353.49], [-2207.45, 357.16], [-2250.7, 384.43], [-2257.52, 387.21], [-2264.1, 389.11], [-2268.88, 388.86], [-2272.91, 387.52], [-2279.97, 384.69], [-2286.06, 382.15], [-2299.1, 378.95], [-2312.8, 377.96], [-2391.51, 378.94], [-2392.46, 378.96], [-2393.71, 378.97], [-2400.63, 379.27], [-2413.06, 379.79], [-2420.59, 379.86], [-2426.46, 379.91], [-2453.11, 380.16], [-2498.92, 377.87], [-2537.79, 370.57], [-2560.29, 371.37], [-2579.45, 369.08], [-2622.54, 361.69], [-2633.68, 360.96], [-2660.68, 361.01], [-2675.76, 362.17], [-2688.99, 363.46], [-2720.42, 373.86], [-2744.63, 383.16], [-2766.68, 392.41], [-2790.48, 405.67], [-2830.79, 428.68], [-2868.95, 453.46], [-2890.34, 465.82], [-2895.79, 468.98], [-2912.79, 478.43], [-2915.17, 480.46], [-2915.93, 481.09], [-2918.51, 483.98], [-2920.78, 487.0], [-2923.15, 487.88], [-2925.2, 487.69], [-2929.42, 485.41], [-2934.98, 481.66], [-2944.64, 473.0], [-2949.86, 471.61], [-2953.48, 472.09], [-2958.4, 472.76], [-2965.1, 475.77], [-2968.62, 477.45], [-2970.48, 478.33], [-2978.28, 480.94], [-2992.09, 484.75], [-3004.59, 486.26], [-3012.9, 485.21], [-3018.4, 483.85], [-3024.19, 480.31], [-3029.17, 474.36], [-3032.41, 467.92], [-3032.05, 463.72], [-3029.26, 459.94], [-3021.51, 455.79], [-3017.98, 454.85], [-3015.45, 453.66], [-3014.11, 450.91], [-3013.44, 447.72], [-3014.9, 427.29], [-3016.83, 413.41], [-3021.97, 402.02], [-3029.27, 391.13], [-3032.68, 386.65], [-3038.33, 380.29], [-3049.59, 373.89], [-3068.28, 368.11], [-3078.65, 364.76], [-3092.2, 356.82], [-3103.83, 348.15], [-3112.52, 338.76], [-3121.81, 325.08], [-3129.57, 325.26], [-3137.27, 325.43], [-3138.54, 344.44], [-3142.1, 348.94], [-3150.95, 353.85], [-3164.06, 361.41], [-3176.55, 364.99], [-3185.7, 367.56], [-3199.42, 371.03], [-3209.68, 377.06], [-3222.45, 383.89], [-3238.81, 390.47], [-3257.9, 402.5], [-3272.82, 413.99], [-3282.97, 421.81], [-3322.36, 462.27], [-3395.94, 560.84], [-3411.0, 583.23], [-3419.14, 595.37], [-3424.99, 600.09], [-3438.48, 613.45], [-3460.75, 636.12], [-3503.37, 690.92], [-3514.99, 700.25], [-3529.37, 725.88], [-3556.34, 882.32], [-3554.24, 917.95], [-3556.27, 939.77], [-3545.05, 990.83], [-3531.79, 1051.24], [-3518.92, 1080.0], [-3506.97, 1106.02], [-3457.93, 1139.68], [-3430.31, 1156.82], [-3406.56, 1167.74], [-3391.58, 1174.21], [-3367.82, 1178.49], [-3353.02, 1177.15], [-3328.23, 1172.69], [-3309.55, 1163.48], [-3299.33, 1149.87], [-3282.12, 1147.97], [-3264.77, 1150.9], [-3198.54, 1170.75], [-3156.47, 1190.67], [-3116.4, 1206.47], [-3075.91, 1218.24], [-3045.8, 1240.39], [-2952.53, 1309.38], [-2931.99, 1344.43], [-2901.13, 1363.1], [-2864.09, 1375.97], [-2833.48, 1389.68], [-2808.98, 1408.41], [-2778.14, 1423.13], [-2758.43, 1427.7], [-2734.7, 1431.6], [-2716.04, 1437.02], [-2697.76, 1451.46], [-2675.73, 1464.54], [-2664.93, 1480.18], [-2655.36, 1500.1], [-2639.37, 1524.27], [-2625.35, 1554.33], [-2608.7, 1579.43], [-2595.53, 1601.09], [-2590.25, 1609.54], [-2586.85, 1616.8], [-2587.33, 1624.33], [-2591.51, 1629.37], [-2599.95, 1633.5], [-2608.28, 1634.47], [-2614.08, 1633.68], [-2624.39, 1631.01], [-2636.54, 1622.55], [-2653.41, 1613.11], [-2654.86, 1612.29], [-2673.14, 1593.98], [-2714.03, 1556.27], [-2774.26, 1499.93], [-2809.78, 1443.15], [-2849.89, 1410.77], [-2909.51, 1381.81], [-2915.14, 1378.33], [-2930.67, 1374.24], [-2976.97, 1366.38], [-2992.97, 1364.1], [-3048.33, 1355.38], [-3164.79, 1350.29], [-3247.18, 1355.76], [-3346.77, 1373.57], [-3411.0, 1407.5], [-3508.15, 1499.72], [-3610.86, 1604.91], [-3628.42, 1641.96], [-3650.07, 1676.57], [-3737.04, 1821.11], [-3787.49, 1880.65], [-3817.13, 1929.44], [-3871.13, 1990.03], [-3891.29, 1974.93], [-3938.84, 1970.94], [-3976.57, 1985.45], [-4012.76, 1931.19], [-4061.34, 1899.55], [-4155.52, 1872.42], [-4366.26, 1780.57], [-4509.72, 1663.16], [-4595.67, 1624.87], [-4610.31, 1616.47], [-4611.84, 1608.11], [-4620.83, 1601.82], [-4647.91, 1601.06], [-4690.84, 1583.03], [-4768.76, 1547.39], [-4827.73, 1534.58], [-4956.48, 1478.68], [-4986.86, 1472.9], [-5106.77, 1402.84], [-5131.26, 1388.25], [-5153.91, 1372.97], [-5176.58, 1356.39], [-5191.31, 1347.13], [-5223.15, 1327.11], [-5258.4, 1306.69], [-5295.91, 1284.62], [-5329.31, 1257.66], [-5338.47, 1250.52], [-5372.83, 1223.75], [-5416.42, 1191.67], [-5439.05, 1174.93], [-5456.72, 1165.61], [-5457.86, 1164.7], [-5470.72, 1152.63], [-5491.45, 1141.23], [-5505.14, 1131.48], [-5510.92, 1125.77], [-5517.1, 1118.21], [-5517.57, 1117.84], [-5528.87, 1108.78], [-5541.18, 1097.32], [-5555.54, 1089.47], [-5565.72, 1079.43], [-5572.62, 1071.69], [-5581.4, 1062.54], [-5600.84, 1043.92], [-5617.12, 1028.98], [-5632.26, 1015.79], [-5640.85, 1011.2], [-5647.6, 1008.36], [-5651.85, 1004.35], [-5655.34, 1001.95], [-5655.2, 1000.5], [-5662.68, 997.31], [-5666.89, 994.75], [-5681.58, 984.6], [-5694.99, 975.49], [-5704.3, 971.09], [-5714.91, 965.13], [-5722.1, 958.27], [-5726.76, 953.82], [-5744.58, 941.42], [-5766.03, 934.16], [-5780.0, 930.44], [-5796.51, 925.73], [-5813.22, 914.57], [-5834.06, 903.52], [-5853.92, 889.39], [-5866.92, 881.7], [-5874.2, 878.87], [-5879.29, 877.04], [-5880.97, 874.95], [-5891.49, 872.2], [-5927.76, 862.68], [-5957.44, 851.18], [-5966.36, 847.49], [-5977.72, 840.83], [-5995.51, 829.7], [-6021.32, 815.03], [-6040.67, 805.38], [-6066.13, 796.62], [-6070.35, 794.05], [-6075.7, 795.64], [-6093.73, 794.56], [-6099.12, 794.72], [-6113.82, 790.66], [-6128.84, 787.88], [-6147.31, 787.22], [-6169.25, 784.08], [-6197.37, 778.95], [-6232.24, 772.19], [-6241.67, 771.11], [-6262.61, 768.7], [-6277.21, 770.59], [-6322.49, 772.78], [-6333.81, 771.05], [-6353.76, 768.09], [-6374.33, 764.56], [-6379.75, 761.47], [-6381.76, 753.55], [-6385.76, 748.64], [-6399.98, 749.06], [-6402.79, 754.78], [-6409.58, 755.25], [-6423.94, 750.95], [-6433.05, 751.59], [-6447.39, 756.3], [-6452.5, 757.69], [-6462.0, 757.09], [-6470.38, 754.38], [-6480.19, 753.78], [-6492.31, 754.73], [-6510.4, 754.67], [-6526.95, 756.33], [-6542.1, 755.3], [-6553.61, 751.95], [-6564.63, 755.37], [-6569.33, 756.29], [-6583.73, 759.08], [-6594.64, 763.06], [-6603.13, 767.14], [-6616.18, 766.94], [-6618.9, 763.67], [-6627.15, 756.33], [-6637.21, 757.22], [-6641.18, 763.54], [-6645.62, 773.7], [-6661.39, 781.85], [-6680.01, 787.69], [-6714.68, 792.61], [-6730.53, 798.92], [-6746.64, 812.43], [-6761.13, 822.82], [-6765.13, 827.35], [-6775.52, 839.08], [-6794.07, 849.4], [-6832.48, 870.91], [-6836.85, 868.31], [-6849.13, 876.47], [-6852.07, 882.79], [-6888.16, 906.06], [-6934.15, 936.42], [-6949.9, 944.09], [-6967.05, 948.87], [-6983.86, 958.42], [-6997.48, 962.45], [-7001.19, 962.56], [-7006.2, 961.73], [-7012.65, 965.72], [-7016.55, 969.15], [-7020.76, 969.17], [-7024.04, 971.41], [-7026.94, 974.6], [-7032.4, 980.61], [-7037.62, 986.83], [-7041.57, 991.51], [-7045.46, 996.14], [-7052.11, 1003.91], [-7061.16, 1011.28], [-7094.17, 1043.98], [-7146.15, 1102.08], [-7185.54, 1147.31], [-7249.24, 1237.79], [-7259.48, 1261.85], [-7264.64, 1277.66], [-7267.4, 1294.61], [-7270.68, 1355.89], [-7274.8, 1375.5], [-7273.53, 1391.83], [-7268.16, 1401.41], [-7255.97, 1403.79], [-7245.0, 1404.24], [-7244.49, 1417.29], [-7254.35, 1418.93], [-7265.12, 1425.1], [-7274.14, 1450.71], [-7276.39, 1453.89], [-7282.3, 1466.14], [-7294.29, 1483.65], [-7302.84, 1493.92], [-7315.38, 1506.92], [-7343.47, 1556.87], [-7356.25, 1556.88], [-7387.68, 1553.59], [-7403.56, 1557.5], [-7419.93, 1564.6], [-7436.96, 1578.59], [-7442.52, 1585.8], [-7457.7, 1598.89], [-7463.78, 1612.85], [-7480.99, 1620.84], [-7494.71, 1629.43], [-7506.44, 1637.53], [-7513.84, 1640.62], [-7519.01, 1641.35], [-7522.22, 1645.04], [-7530.4, 1651.17], [-7544.58, 1659.06], [-7565.93, 1678.36], [-7572.41, 1688.65], [-7574.88, 1692.56], [-7585.3, 1696.16], [-7587.15, 1696.81], [-7606.73, 1707.42], [-7609.69, 1709.68], [-7620.21, 1709.99], [-7625.29, 1713.73], [-7629.98, 1715.88], [-7643.53, 1725.91], [-7666.86, 1750.09], [-7680.14, 1765.2], [-7687.42, 1772.45], [-7713.61, 1788.46], [-7729.15, 1795.04], [-7754.35, 1829.3], [-7776.59, 1852.51], [-7788.88, 1870.69], [-7808.17, 1866.95], [-7817.05, 1859.02], [-7826.9, 1857.44], [-7837.43, 1867.09], [-7844.99, 1874.64], [-7869.25, 1906.91], [-7872.23, 1912.43], [-7877.64, 1922.45], [-7881.85, 1949.14], [-7896.61, 1966.81], [-7909.94, 1979.27], [-7922.49, 2003.35], [-7939.85, 2030.43], [-7959.99, 2065.78], [-7975.3, 2093.97], [-7984.3, 2128.46], [-8007.51, 2183.26], [-8010.12, 2189.42], [-8018.51, 2209.24], [-8021.07, 2215.27], [-8024.61, 2224.66], [-8030.16, 2230.02], [-8046.41, 2228.19], [-8064.33, 2222.5], [-8074.83, 2217.06], [-8083.1, 2208.38], [-8086.88, 2198.91], [-8096.78, 2189.19], [-8109.65, 2182.6], [-8123.71, 2179.98], [-8139.46, 2179.57], [-8157.74, 2193.83], [-8164.82, 2208.63], [-8166.54, 2224.35], [-8162.2, 2233.44], [-8154.43, 2249.25], [-8144.65, 2255.06], [-8141.53, 2256.7], [-8130.87, 2262.92], [-8110.77, 2262.76], [-8087.24, 2247.93], [-8068.03, 2245.84], [-8038.88, 2250.36], [-8033.84, 2256.82], [-8034.04, 2257.42], [-8043.1, 2285.55], [-8039.09, 2295.81], [-8046.29, 2302.76], [-8047.77, 2309.28], [-8059.47, 2355.73]], "holes": [[[-2651.53, 6797.92], [-2649.78, 6795.96], [-2645.67, 6794.79], [-2641.73, 6795.52], [-2638.17, 6797.43], [-2637.71, 6802.07], [-2637.23, 6804.28], [-2639.6, 6806.78], [-2642.39, 6809.19], [-2645.65, 6810.66], [-2649.86, 6811.63], [-2651.86, 6812.22], [-2653.27, 6811.3], [-2653.76, 6808.99], [-2654.06, 6805.92], [-2653.86, 6802.0], [-2651.53, 6797.92]], [[-2114.77, 7863.2], [-2116.84, 7860.01], [-2115.81, 7857.8], [-2112.79, 7856.4], [-2107.43, 7860.38], [-2110.18, 7863.73], [-2114.77, 7863.2]], [[-2144.4, 7956.29], [-2145.86, 7951.33], [-2144.82, 7949.33], [-2141.02, 7952.49], [-2144.4, 7956.29]]]}}, {"shape": {"outer": [[-1942.74, -3176.71], [-1912.75, -3167.99], [-1884.47, -3157.48], [-1852.24, -3131.38], [-1800.15, -3084.07], [-1776.71, -3059.48], [-1763.32, -3019.77], [-1731.37, -2972.76], [-1711.35, -2945.45], [-1704.38, -2916.01], [-1698.31, -2887.43], [-1686.98, -2858.13], [-1675.59, -2827.09], [-1658.64, -2829.23], [-1639.87, -2831.59], [-1655.44, -2856.42], [-1666.78, -2885.72], [-1679.29, -2925.45], [-1692.45, -2957.31], [-1727.0, -3003.38], [-1746.22, -3033.33], [-1758.6, -3068.71], [-1785.02, -3105.42], [-1809.37, -3130.87], [-1831.61, -3144.18], [-1861.07, -3165.12], [-1891.36, -3184.29], [-1918.82, -3196.57], [-1954.08, -3206.02], [-2004.44, -3223.75], [-1983.64, -3199.95], [-1942.74, -3176.71]], "holes": []}}, {"shape": {"outer": [[-2494.48, -3323.85], [-2419.96, -3318.14], [-2381.51, -3319.25], [-2383.76, -3275.61], [-2424.54, -3051.34], [-2426.93, -3012.93], [-2423.53, -2986.01], [-2373.83, -2929.93], [-2316.72, -2860.11], [-2288.76, -2830.42], [-2244.27, -2811.31], [-2214.71, -2804.17], [-2218.35, -2784.5], [-2218.7, -2766.2], [-2215.52, -2747.11], [-2201.05, -2730.1], [-2186.49, -2710.48], [-2176.82, -2678.51], [-2194.74, -2672.15], [-2269.2, -2696.45], [-2342.56, -2729.89], [-2319.95, -2687.54], [-2291.98, -2683.36], [-2179.27, -2641.84], [-2186.54, -2610.45], [-2187.66, -2591.5], [-2188.53, -2560.76], [-2180.06, -2532.46], [-2162.7, -2506.38], [-2150.12, -2487.36], [-2130.62, -2470.27], [-2109.57, -2445.61], [-2101.31, -2416.65], [-2096.53, -2386.94], [-2086.48, -2364.58], [-2078.97, -2351.96], [-2078.41, -2336.69], [-2077.24, -2322.47], [-2077.89, -2318.52], [-2077.64, -2310.13], [-2076.24, -2303.1], [-2075.66, -2298.0], [-2073.77, -2289.23], [-2073.64, -2280.96], [-2075.42, -2270.55], [-2076.46, -2261.27], [-2075.29, -2254.56], [-2076.51, -2247.44], [-2073.4, -2238.48], [-2072.89, -2228.25], [-2072.61, -2218.46], [-2074.5, -2212.1], [-2073.28, -2207.55], [-2073.29, -2203.96], [-2073.3, -2200.48], [-2070.72, -2194.54], [-2067.67, -2190.84], [-2063.66, -2188.33], [-2060.76, -2186.55], [-2057.26, -2186.44], [-2052.39, -2188.21], [-2049.34, -2188.62], [-2044.03, -2190.3], [-2039.3, -2193.05], [-2035.59, -2193.15], [-2028.68, -2196.18], [-2025.04, -2202.5], [-2019.99, -2205.58], [-2014.61, -2212.6], [-2013.33, -2217.23], [-2012.57, -2221.27], [-2011.43, -2227.4], [-2012.93, -2233.89], [-2016.32, -2237.71], [-2017.57, -2239.53], [-2016.46, -2246.21], [-2017.87, -2249.98], [-2021.08, -2255.22], [-2020.95, -2258.06], [-2021.88, -2260.32], [-2023.89, -2261.68], [-2024.53, -2264.93], [-2023.44, -2268.98], [-2023.76, -2276.16], [-2021.6, -2281.02], [-2015.0, -2286.87], [-2006.71, -2291.47], [-1999.83, -2291.67], [-1991.68, -2293.42], [-1985.85, -2295.99], [-1981.35, -2298.95], [-1977.86, -2303.3], [-1973.89, -2305.69], [-1968.98, -2305.83], [-1966.28, -2307.44], [-1961.08, -2308.57], [-1957.28, -2309.66], [-1946.74, -2312.03], [-1939.4, -2315.39], [-1935.95, -2316.81], [-1933.27, -2315.03], [-1918.29, -2318.51], [-1910.47, -2320.26], [-1903.0, -2318.95], [-1894.47, -2315.05], [-1886.43, -2313.21], [-1879.67, -2313.41], [-1873.47, -2314.67], [-1869.99, -2315.43], [-1862.03, -2319.9], [-1851.79, -2324.78], [-1845.27, -2330.08], [-1839.53, -2335.69], [-1835.95, -2336.56], [-1824.59, -2344.62], [-1818.7, -2348.71], [-1812.18, -2358.04], [-1806.25, -2364.53], [-1795.83, -2374.63], [-1791.15, -2382.71], [-1784.48, -2390.43], [-1780.55, -2390.64], [-1770.51, -2391.26], [-1760.7, -2392.3], [-1745.76, -2393.61], [-1736.09, -2399.33], [-1728.25, -2408.15], [-1722.08, -2413.78], [-1719.35, -2425.73], [-1717.25, -2439.84], [-1717.34, -2442.99], [-1715.45, -2449.69], [-1711.34, -2458.85], [-1709.13, -2465.89], [-1707.85, -2474.42], [-1705.18, -2484.52], [-1703.58, -2489.35], [-1700.29, -2492.93], [-1693.03, -2494.99], [-1683.74, -2499.18], [-1671.09, -2504.01], [-1662.59, -2508.5], [-1656.02, -2512.07], [-1649.76, -2514.64], [-1643.65, -2518.7], [-1645.99, -2528.15], [-1650.71, -2532.59], [-1655.11, -2533.77], [-1663.06, -2528.54], [-1672.89, -2528.26], [-1679.37, -2533.07], [-1680.81, -2537.61], [-1671.42, -2545.72], [-1656.58, -2554.21], [-1642.88, -2564.41], [-1640.97, -2574.04], [-1641.47, -2583.83], [-1652.45, -2608.79], [-1648.32, -2616.97], [-1649.59, -2630.87], [-1640.65, -2654.65], [-1636.5, -2669.8], [-1626.33, -2666.18], [-1616.28, -2666.47], [-1603.86, -2667.91], [-1590.47, -2665.89], [-1572.5, -2664.45], [-1568.73, -2662.59], [-1565.08, -2672.72], [-1570.71, -2670.82], [-1583.85, -2671.31], [-1596.67, -2676.39], [-1609.54, -2675.37], [-1626.02, -2678.17], [-1631.12, -2688.04], [-1636.94, -2692.88], [-1641.89, -2690.13], [-1645.47, -2700.92], [-1649.6, -2715.39], [-1645.46, -2723.37], [-1637.72, -2735.56], [-1629.64, -2751.04], [-1623.84, -2762.54], [-1623.67, -2771.69], [-1624.73, -2785.82], [-1628.18, -2791.82], [-1631.36, -2795.87], [-1638.13, -2795.89], [-1644.65, -2794.4], [-1648.22, -2789.28], [-1652.11, -2779.81], [-1654.58, -2774.5], [-1658.28, -2766.56], [-1673.1, -2741.73], [-1675.15, -2729.48], [-1673.25, -2724.3], [-1679.3, -2713.89], [-1676.41, -2689.36], [-1677.41, -2670.82], [-1685.59, -2643.56], [-1688.86, -2635.86], [-1685.99, -2626.99], [-1696.35, -2614.51], [-1703.77, -2591.41], [-1710.16, -2569.88], [-1711.57, -2558.29], [-1712.4, -2549.12], [-1709.25, -2538.1], [-1705.25, -2528.41], [-1709.8, -2511.95], [-1721.24, -2506.61], [-1731.94, -2498.46], [-1746.07, -2480.62], [-1755.64, -2471.2], [-1770.55, -2465.11], [-1785.49, -2459.9], [-1797.03, -2458.27], [-1806.91, -2459.72], [-1812.27, -2463.71], [-1815.24, -2467.98], [-1821.31, -2473.9], [-1829.12, -2471.93], [-1835.72, -2481.11], [-1848.06, -2492.08], [-1858.74, -2498.52], [-1869.09, -2500.85], [-1881.84, -2503.53], [-1894.02, -2501.22], [-1904.81, -2496.33], [-1913.76, -2488.23], [-1924.23, -2479.66], [-1938.22, -2471.85], [-1955.2, -2469.4], [-1967.78, -2466.21], [-1982.59, -2464.04], [-1995.77, -2466.27], [-2003.59, -2472.15], [-2014.96, -2479.88], [-2024.74, -2492.89], [-2033.05, -2500.71], [-2036.22, -2504.32], [-2036.39, -2510.42], [-2038.09, -2516.47], [-2040.15, -2519.46], [-2045.24, -2536.97], [-2049.43, -2545.56], [-2054.64, -2552.16], [-2056.81, -2559.29], [-2060.33, -2567.46], [-2067.41, -2578.15], [-2074.51, -2589.28], [-2081.26, -2596.05], [-2103.02, -2615.03], [-2108.5, -2615.75], [-2115.81, -2626.65], [-2120.23, -2635.89], [-2141.13, -2669.08], [-2155.32, -2690.9], [-2176.65, -2718.17], [-2197.37, -2739.36], [-2205.39, -2759.61], [-2199.1, -2799.44], [-2194.41, -2803.49], [-2165.38, -2797.79], [-2120.39, -2784.27], [-2105.19, -2787.75], [-2136.56, -2799.05], [-2206.24, -2819.7], [-2244.07, -2827.34], [-2276.84, -2842.09], [-2307.36, -2869.1], [-2341.09, -2916.92], [-2365.51, -2944.97], [-2404.26, -2984.82], [-2410.18, -3008.18], [-2405.67, -3064.08], [-2385.92, -3168.36], [-2368.46, -3276.05], [-2285.85, -3277.55], [-2254.72, -3289.77], [-2216.39, -3295.23], [-2141.31, -3300.0], [-2116.89, -3302.44], [-2126.78, -3311.31], [-2142.75, -3334.82], [-2152.46, -3350.16], [-2197.64, -3356.75], [-2350.07, -3348.67], [-2354.29, -3350.75], [-2349.62, -3382.26], [-2351.87, -3392.29], [-2362.55, -3391.72], [-2366.23, -3390.25], [-2373.57, -3357.52], [-2373.65, -3348.94], [-2377.51, -3343.27], [-2383.27, -3341.86], [-2399.56, -3345.92], [-2444.75, -3345.51], [-2464.92, -3344.44], [-2491.32, -3345.48], [-2540.86, -3342.09], [-2592.87, -3338.14], [-2612.29, -3336.5], [-2619.54, -3337.71], [-2635.93, -3340.44], [-2673.85, -3336.08], [-2686.07, -3343.14], [-2694.84, -3359.23], [-2702.13, -3369.05], [-2716.5, -3372.52], [-2736.61, -3371.18], [-2741.21, -3363.35], [-2745.02, -3352.81], [-2739.66, -3334.22], [-2732.93, -3313.06], [-2724.56, -3295.43], [-2705.51, -3302.51], [-2686.48, -3309.6], [-2637.74, -3317.98], [-2593.31, -3322.48], [-2544.95, -3315.41], [-2494.48, -3323.85]], "holes": [[[-2008.29, -2430.19], [-1995.82, -2422.27], [-1980.68, -2412.69], [-1975.29, -2407.61], [-1970.08, -2393.6], [-1967.26, -2379.08], [-1966.6, -2363.85], [-1972.49, -2355.85], [-1983.36, -2353.57], [-1994.08, -2354.14], [-1999.89, -2350.71], [-2011.94, -2343.84], [-2019.85, -2345.55], [-2023.5, -2343.27], [-2029.03, -2345.29], [-2036.08, -2347.27], [-2045.91, -2346.77], [-2048.96, -2346.46], [-2053.48, -2351.78], [-2054.32, -2358.07], [-2057.35, -2364.74], [-2060.7, -2367.04], [-2063.14, -2368.06], [-2067.23, -2373.83], [-2069.41, -2380.94], [-2077.49, -2426.68], [-2083.56, -2447.64], [-2099.93, -2469.39], [-2110.52, -2480.41], [-2119.67, -2486.9], [-2129.41, -2498.6], [-2142.05, -2512.62], [-2152.11, -2520.17], [-2159.17, -2530.01], [-2159.24, -2562.89], [-2162.76, -2586.53], [-2158.72, -2606.03], [-2155.98, -2617.0], [-2149.67, -2618.05], [-2127.86, -2604.74], [-2115.09, -2593.78], [-2105.35, -2582.08], [-2102.59, -2569.95], [-2092.8, -2556.07], [-2079.02, -2540.56], [-2066.11, -2525.04], [-2063.68, -2508.98], [-2048.74, -2491.12], [-2042.7, -2478.87], [-2033.88, -2468.67], [-2025.18, -2454.98], [-2017.9, -2445.16], [-2008.29, -2430.19]], [[-1891.7, -2443.34], [-1888.15, -2445.4], [-1881.18, -2446.46], [-1877.91, -2446.46], [-1876.34, -2445.3], [-1874.81, -2441.42], [-1874.52, -2439.03], [-1877.32, -2437.43], [-1880.23, -2435.82], [-1882.1, -2432.82], [-1885.11, -2430.89], [-1889.37, -2429.24], [-1888.6, -2426.87], [-1891.47, -2423.95], [-1906.09, -2419.06], [-1909.36, -2418.76], [-1912.5, -2417.69], [-1916.95, -2416.79], [-1920.76, -2416.25], [-1925.13, -2415.9], [-1931.18, -2417.16], [-1934.18, -2418.82], [-1935.34, -2421.4], [-1935.35, -2425.44], [-1933.12, -2427.55], [-1929.87, -2429.06], [-1926.89, -2431.44], [-1924.02, -2430.64], [-1920.96, -2430.73], [-1917.28, -2432.03], [-1910.8, -2434.83], [-1903.56, -2437.87], [-1899.75, -2438.09], [-1891.7, -2443.34]]]}}, {"shape": {"outer": [[-1968.1, -1979.68], [-1962.6, -1970.14], [-1963.81, -1969.15], [-1964.75, -1968.2], [-1965.37, -1966.99], [-1965.7, -1965.66], [-1965.81, -1964.44], [-1965.75, -1963.07], [-1965.47, -1962.05], [-1965.1, -1961.19], [-1964.63, -1960.43], [-1963.9, -1959.61], [-1963.05, -1958.91], [-1962.26, -1958.44], [-1961.54, -1958.12], [-1960.57, -1957.85], [-1959.52, -1957.72], [-1958.32, -1957.76], [-1957.04, -1958.06], [-1956.1, -1958.51], [-1953.65, -1960.06], [-1946.25, -1955.8], [-1945.21, -1958.27], [-1944.51, -1960.72], [-1940.84, -1963.0], [-1934.28, -1964.48], [-1925.08, -1970.0], [-1920.87, -1972.61], [-1893.49, -1984.05], [-1848.94, -2018.68], [-1809.39, -2051.12], [-1804.64, -2060.93], [-1803.14, -2069.69], [-1797.28, -2075.03], [-1794.06, -2077.99], [-1789.93, -2081.83], [-1779.88, -2082.11], [-1750.07, -2109.99], [-1721.21, -2140.0], [-1692.47, -2174.8], [-1674.44, -2197.89], [-1655.61, -2227.26], [-1636.39, -2261.8], [-1615.81, -2306.4], [-1599.63, -2352.16], [-1587.64, -2391.29], [-1581.05, -2406.46], [-1571.48, -2461.69], [-1571.13, -2489.53], [-1564.76, -2508.7], [-1557.8, -2571.21], [-1554.73, -2601.36], [-1554.57, -2626.2], [-1549.63, -2667.73], [-1545.45, -2704.88], [-1544.25, -2724.09], [-1545.08, -2738.0], [-1543.19, -2748.08], [-1539.48, -2756.03], [-1536.62, -2778.34], [-1530.93, -2793.31], [-1522.57, -2807.06], [-1513.69, -2817.33], [-1511.84, -2829.15], [-1487.76, -2843.34], [-1470.46, -2849.94], [-1441.93, -2861.65], [-1403.36, -2873.65], [-1354.72, -2885.5], [-1275.94, -2897.96], [-1148.3, -2925.69], [-1145.99, -2924.35], [-1105.11, -2933.4], [-1053.24, -2942.89], [-1034.52, -2946.72], [-1020.43, -2952.15], [-983.84, -2958.47], [-977.83, -2955.52], [-947.06, -2958.97], [-940.09, -2960.79], [-903.68, -2959.53], [-876.0, -2963.49], [-850.51, -2959.9], [-832.83, -2958.79], [-823.3, -2959.07], [-787.87, -2954.15], [-740.29, -2946.72], [-668.13, -2935.68], [-652.13, -2930.21], [-624.64, -2926.15], [-605.81, -2922.95], [-580.27, -2910.43], [-556.54, -2894.42], [-539.5, -2879.54], [-494.56, -2844.66], [-454.27, -2813.4], [-354.13, -2733.8], [-305.8, -2692.61], [-288.57, -2681.28], [-273.47, -2671.66], [-237.3, -2640.78], [-177.14, -2593.07], [-158.12, -2582.67], [-119.18, -2555.2], [-75.98, -2518.08], [-42.44, -2491.05], [-19.3, -2475.02], [5.35, -2464.09], [24.89, -2459.59], [94.92, -2451.33], [112.36, -2448.44], [115.96, -2447.35], [124.33, -2441.16], [127.14, -2434.6], [132.53, -2429.64], [162.46, -2401.82], [180.8, -2383.39], [195.86, -2366.78], [221.23, -2341.66], [239.64, -2321.2], [257.65, -2308.43], [268.19, -2299.23], [270.2, -2297.48], [271.89, -2295.2], [273.9, -2292.53], [276.48, -2291.92], [289.64, -2280.1], [292.77, -2278.57], [307.82, -2263.19], [313.63, -2259.11], [326.86, -2247.28], [335.85, -2238.71], [336.63, -2234.16], [341.69, -2240.08], [349.92, -2247.87], [340.17, -2253.29], [332.79, -2261.59], [316.86, -2277.46], [300.24, -2292.05], [291.4, -2295.93], [286.02, -2298.29], [280.72, -2301.79], [271.71, -2307.75], [253.56, -2331.64], [251.24, -2343.59], [235.75, -2356.96], [213.14, -2373.18], [188.46, -2393.37], [181.72, -2402.5], [176.05, -2405.57], [171.34, -2406.7], [143.84, -2430.31], [133.77, -2447.64], [128.05, -2450.72], [116.77, -2457.9], [108.11, -2458.24], [80.46, -2468.35], [63.51, -2469.12], [18.38, -2473.4], [-2.35, -2480.7], [-21.77, -2493.1], [-40.53, -2507.1], [-68.96, -2528.99], [-88.71, -2542.51], [-106.74, -2556.35], [-116.5, -2563.61], [-118.6, -2567.86], [-121.8, -2572.62], [-129.46, -2576.34], [-183.57, -2620.23], [-208.14, -2645.88], [-245.12, -2673.34], [-269.7, -2689.52], [-280.78, -2697.84], [-297.11, -2708.9], [-330.24, -2736.62], [-394.02, -2789.48], [-417.09, -2806.13], [-428.6, -2816.48], [-437.36, -2821.94], [-465.25, -2843.01], [-526.28, -2892.89], [-556.03, -2913.03], [-577.63, -2931.62], [-586.89, -2934.76], [-597.38, -2935.89], [-603.86, -2936.61], [-616.81, -2935.71], [-629.28, -2936.96], [-656.59, -2941.39], [-695.35, -2949.25], [-728.24, -2953.34], [-774.36, -2960.46], [-796.85, -2966.1], [-831.22, -2971.76], [-843.29, -2971.6], [-863.34, -2973.9], [-880.47, -2974.84], [-897.69, -2972.37], [-903.68, -2970.3], [-983.92, -2967.02], [-1017.5, -2963.66], [-1032.67, -2962.08], [-1054.04, -2957.78], [-1117.81, -2944.29], [-1140.77, -2940.98], [-1231.29, -2922.46], [-1237.01, -2924.09], [-1245.63, -2920.02], [-1297.44, -2913.45], [-1360.88, -2902.31], [-1432.55, -2885.45], [-1467.6, -2873.29], [-1493.29, -2853.21], [-1513.45, -2843.37], [-1517.39, -2845.03], [-1540.11, -2834.54], [-1550.56, -2799.06], [-1552.27, -2782.45], [-1565.08, -2672.72], [-1568.73, -2662.59], [-1590.91, -2601.96], [-1596.14, -2562.96], [-1641.94, -2533.33], [-1640.34, -2520.15], [-1607.78, -2497.14], [-1606.15, -2475.24], [-1624.26, -2428.82], [-1626.65, -2412.5], [-1640.96, -2363.12], [-1650.68, -2336.92], [-1668.22, -2301.58], [-1671.56, -2294.86], [-1667.87, -2269.07], [-1784.64, -2112.93], [-1798.82, -2093.36], [-1807.08, -2084.75], [-1811.67, -2080.45], [-1826.24, -2077.69], [-1837.42, -2084.23], [-1858.14, -2107.76], [-1879.03, -2118.85], [-1893.07, -2118.21], [-1907.41, -2106.73], [-1915.96, -2088.44], [-1928.97, -2072.86], [-1940.38, -2058.63], [-1963.39, -2018.23], [-1963.58, -2002.34], [-1963.62, -1998.63], [-1949.33, -1983.88], [-1953.28, -1980.03], [-1958.23, -1981.5], [-1963.7, -1980.98], [-1968.1, -1979.68]], "holes": []}}, {"shape": {"outer": [[-4045.74, -2522.61], [-4042.13, -2519.3], [-4036.86, -2519.45], [-3999.48, -2449.77], [-3967.32, -2402.6], [-3943.43, -2374.72], [-3890.54, -2312.12], [-3838.43, -2275.98], [-3831.9, -2272.32], [-3824.56, -2268.04], [-3813.59, -2261.95], [-3792.92, -2249.25], [-3769.11, -2241.07], [-3739.83, -2228.07], [-3708.64, -2211.42], [-3704.78, -2210.57], [-3679.64, -2204.95], [-3659.15, -2200.37], [-3649.57, -2206.2], [-3647.96, -2209.3], [-3633.3, -2206.45], [-3633.4, -2201.16], [-3625.07, -2198.56], [-3620.81, -2197.43], [-3620.17, -2193.41], [-3616.77, -2193.5], [-3611.93, -2200.32], [-3600.13, -2189.99], [-3588.09, -2189.1], [-3581.19, -2185.6], [-3575.2, -2186.26], [-3574.76, -2189.81], [-3535.28, -2182.18], [-3522.95, -2183.2], [-3517.78, -2188.39], [-3506.94, -2187.59], [-3503.84, -2181.35], [-3499.38, -2176.9], [-3480.92, -2168.67], [-3474.73, -2167.75], [-3465.19, -2165.71], [-3451.89, -2168.21], [-3427.88, -2178.72], [-3410.32, -2184.85], [-3356.01, -2164.51], [-3320.65, -2152.02], [-3265.93, -2132.71], [-3252.54, -2119.21], [-3229.67, -2112.18], [-3204.54, -2108.78], [-3196.43, -2105.79], [-3187.12, -2103.28], [-3177.12, -2096.5], [-3172.91, -2094.59], [-3170.63, -2092.22], [-3166.35, -2091.76], [-3159.79, -2089.93], [-3151.25, -2083.96], [-3141.72, -2075.49], [-3134.45, -2073.33], [-3123.14, -2061.57], [-3111.21, -2058.82], [-3082.18, -2031.23], [-3052.59, -2003.9], [-3032.02, -1993.61], [-3024.23, -1982.34], [-2998.12, -1974.95], [-2983.39, -1969.16], [-2946.05, -1960.93], [-2936.4, -1963.56], [-2927.39, -1949.84], [-2925.25, -1929.43], [-2940.13, -1911.57], [-2953.02, -1896.0], [-2957.61, -1871.63], [-2953.38, -1837.31], [-2945.0, -1824.83], [-2921.21, -1789.44], [-2886.32, -1770.62], [-2873.89, -1767.44], [-2871.39, -1766.5], [-2868.13, -1765.96], [-2857.51, -1769.98], [-2849.43, -1770.91], [-2844.54, -1770.45], [-2843.08, -1784.78], [-2850.77, -1786.17], [-2854.62, -1797.78], [-2856.23, -1810.11], [-2852.73, -1828.96], [-2838.92, -1851.03], [-2809.59, -1871.42], [-2792.04, -1884.93], [-2710.34, -1900.17], [-2660.69, -1908.45], [-2618.31, -1923.8], [-2604.92, -1924.82], [-2549.89, -1912.18], [-2516.79, -1907.74], [-2481.52, -1903.91], [-2431.86, -1903.95], [-2403.2, -1909.68], [-2399.52, -1911.43], [-2377.43, -1921.92], [-2352.9, -1938.86], [-2342.49, -1951.45], [-2324.82, -1964.83], [-2306.63, -1969.29], [-2286.15, -1951.85], [-2240.63, -1937.98], [-2195.9, -1914.87], [-2112.33, -1897.01], [-2083.31, -1896.9], [-2060.73, -1900.13], [-2045.17, -1907.35], [-2032.23, -1912.98], [-1965.68, -1943.35], [-1966.69, -1945.25], [-1968.23, -1948.14], [-1964.42, -1950.11], [-1960.84, -1949.2], [-1957.29, -1949.46], [-1955.18, -1956.87], [-1956.1, -1958.51], [-1957.04, -1958.06], [-1958.32, -1957.76], [-1959.52, -1957.72], [-1960.57, -1957.85], [-1961.54, -1958.12], [-1962.26, -1958.44], [-1963.05, -1958.91], [-1963.9, -1959.61], [-1964.63, -1960.43], [-1965.1, -1961.19], [-1965.47, -1962.05], [-1965.75, -1963.07], [-1965.81, -1964.44], [-1965.7, -1965.66], [-1965.37, -1966.99], [-1964.75, -1968.2], [-1963.81, -1969.15], [-1962.6, -1970.14], [-1968.1, -1979.68], [-1973.96, -1975.97], [-1976.61, -1970.92], [-1977.31, -1966.59], [-1987.81, -1965.75], [-2002.32, -1985.14], [-2072.18, -1991.61], [-2159.49, -2011.41], [-2174.07, -2080.7], [-2188.14, -2121.41], [-2192.64, -2136.05], [-2203.24, -2170.48], [-2235.51, -2222.52], [-2249.64, -2275.8], [-2248.0, -2359.85], [-2240.43, -2441.17], [-2247.61, -2521.93], [-2267.2, -2557.98], [-2312.15, -2623.34], [-2361.47, -2726.94], [-2372.44, -2759.42], [-2397.13, -2767.17], [-2413.14, -2776.29], [-2428.14, -2781.1], [-2436.21, -2787.83], [-2443.35, -2792.85], [-2455.36, -2784.67], [-2464.87, -2780.91], [-2482.39, -2773.28], [-2504.7, -2770.83], [-2520.35, -2772.7], [-2543.56, -2780.39], [-2562.86, -2782.45], [-2572.85, -2764.73], [-2588.87, -2757.87], [-2634.9, -2752.66], [-2740.32, -2745.17], [-2788.58, -2756.89], [-2960.59, -2803.2], [-2981.24, -2808.33], [-3000.87, -2802.82], [-3052.92, -2802.63], [-3235.29, -2789.91], [-3251.13, -2749.19], [-3330.28, -2723.56], [-3346.78, -2730.0], [-3370.33, -2746.06], [-3405.49, -2752.02], [-3441.8, -2749.58], [-3504.22, -2779.14], [-3527.17, -2791.51], [-3544.73, -2800.98], [-3591.26, -2837.28], [-3627.09, -2854.44], [-3678.61, -2894.07], [-3736.4, -2908.44], [-3816.1, -2906.13], [-3840.77, -2912.39], [-3855.41, -2907.52], [-3870.56, -2902.46], [-3908.31, -2876.96], [-3940.94, -2868.35], [-3956.64, -2879.05], [-3963.25, -2865.61], [-3992.82, -2871.74], [-4007.7, -2902.67], [-4023.28, -2932.9], [-4055.78, -2943.8], [-4058.28, -2935.02], [-4059.59, -2930.44], [-4032.91, -2903.34], [-3998.42, -2847.86], [-3999.94, -2827.6], [-4005.47, -2777.25], [-4037.65, -2728.3], [-4056.4, -2699.78], [-4070.89, -2620.59], [-4048.74, -2556.39], [-4045.74, -2522.61]], "holes": []}}, {"shape": {"outer": [[1148.75, 1965.12], [1153.94, 1962.07], [1159.62, 1956.79], [1163.1, 1953.47], [1165.94, 1950.09], [1168.15, 1936.47], [1171.36, 1931.53], [1180.67, 1927.14], [1194.87, 1920.27], [1203.75, 1916.92], [1208.87, 1912.63], [1215.65, 1904.82], [1220.36, 1897.72], [1227.26, 1882.95], [1231.16, 1860.73], [1231.23, 1849.63], [1227.64, 1834.61], [1229.03, 1829.01], [1235.01, 1824.71], [1246.29, 1821.67], [1252.92, 1820.5], [1256.88, 1817.67], [1261.87, 1816.44], [1265.27, 1813.29], [1267.76, 1808.55], [1272.21, 1803.74], [1276.62, 1794.99], [1283.1, 1779.27], [1288.2, 1756.55], [1294.2, 1750.54], [1299.63, 1741.68], [1314.09, 1731.8], [1321.86, 1724.5], [1329.71, 1720.15], [1339.78, 1720.74], [1347.51, 1719.76], [1366.01, 1718.59], [1367.59, 1718.87], [1369.47, 1721.35], [1369.55, 1723.33], [1370.49, 1726.42], [1374.55, 1737.18], [1375.92, 1743.01], [1375.89, 1746.11], [1375.02, 1748.04], [1372.74, 1750.9], [1356.39, 1774.77], [1352.57, 1788.36], [1351.04, 1802.05], [1351.57, 1807.21], [1353.14, 1810.81], [1355.72, 1815.04], [1359.55, 1817.32], [1363.09, 1818.22], [1365.26, 1816.31], [1373.19, 1808.72], [1377.24, 1801.65], [1385.32, 1790.14], [1397.34, 1770.45], [1400.34, 1766.72], [1403.69, 1763.17], [1406.23, 1759.01], [1407.85, 1754.42], [1408.48, 1749.59], [1408.19, 1745.22], [1407.07, 1740.97], [1405.19, 1737.01], [1402.59, 1733.47], [1383.72, 1716.24], [1380.19, 1712.45], [1379.1, 1710.77], [1375.93, 1702.31], [1369.72, 1695.62], [1357.25, 1685.3], [1346.91, 1678.85], [1336.42, 1675.22], [1323.91, 1672.96], [1314.63, 1669.52], [1307.91, 1663.62], [1300.26, 1650.41], [1295.06, 1642.72], [1289.07, 1635.61], [1282.38, 1629.18], [1275.03, 1623.47], [1267.13, 1618.57], [1258.76, 1614.52], [1250.01, 1611.36], [1240.97, 1609.14], [1231.74, 1607.88], [1222.44, 1607.57], [1213.4, 1608.23], [1204.47, 1609.79], [1195.76, 1612.26], [1187.35, 1615.6], [1179.31, 1619.77], [1171.75, 1624.76], [1149.48, 1639.36], [1125.88, 1670.07], [1112.49, 1697.19], [1100.83, 1724.91], [1095.04, 1730.36], [1062.57, 1749.36], [1050.42, 1752.2], [1045.27, 1751.7], [1041.69, 1752.78], [1038.82, 1755.48], [1030.41, 1770.95], [1026.25, 1774.44], [1017.12, 1779.82], [1009.14, 1786.27], [1004.29, 1793.35], [1000.03, 1800.8], [996.35, 1808.55], [993.31, 1816.57], [991.04, 1824.32], [989.34, 1832.21], [988.24, 1840.21], [987.74, 1848.27], [988.19, 1856.83], [989.46, 1865.31], [991.57, 1873.6], [994.48, 1881.67], [997.84, 1888.8], [1001.83, 1895.6], [1006.42, 1902.0], [1011.56, 1907.98], [1028.98, 1924.54], [1041.99, 1931.9], [1049.79, 1945.35], [1049.15, 1948.72], [1046.0, 1954.16], [1047.73, 1961.23], [1046.97, 1965.05], [1047.51, 1967.16], [1057.22, 1978.29], [1071.21, 1993.14], [1075.07, 1995.78], [1084.68, 1994.99], [1095.06, 1991.95], [1112.5, 1985.44], [1130.78, 1976.18], [1148.75, 1965.12]], "holes": [[[1154.2, 1946.56], [1154.37, 1947.95], [1153.19, 1950.33], [1148.52, 1952.26], [1145.87, 1951.64], [1141.42, 1946.65], [1136.34, 1944.02], [1131.64, 1944.58], [1127.64, 1946.19], [1122.47, 1948.53], [1116.48, 1952.6], [1081.39, 1973.53], [1077.21, 1973.71], [1075.08, 1973.12], [1072.4, 1971.9], [1070.7, 1970.06], [1069.44, 1966.39], [1069.01, 1961.65], [1068.92, 1958.17], [1067.85, 1951.34], [1059.07, 1922.86], [1050.02, 1907.91], [1033.29, 1876.89], [1030.35, 1850.09], [1032.6, 1840.56], [1038.71, 1828.85], [1052.56, 1820.07], [1060.01, 1809.52], [1066.35, 1796.97], [1075.15, 1792.22], [1090.27, 1786.34], [1100.8, 1777.2], [1108.14, 1757.65], [1111.15, 1743.96], [1117.02, 1735.41], [1129.78, 1730.62], [1146.08, 1716.93], [1156.57, 1708.82], [1166.29, 1700.82], [1175.39, 1686.52], [1182.11, 1680.89], [1199.49, 1673.43], [1208.86, 1668.59], [1220.29, 1668.7], [1248.17, 1679.45], [1267.91, 1703.65], [1292.53, 1719.24], [1294.0, 1724.2], [1290.47, 1730.51], [1284.78, 1733.18], [1278.32, 1734.66], [1263.86, 1741.88], [1254.87, 1748.82], [1249.34, 1759.75], [1239.22, 1770.7], [1230.84, 1781.45], [1224.72, 1787.28], [1206.67, 1800.03], [1201.05, 1821.26], [1201.78, 1831.64], [1198.68, 1841.9], [1198.34, 1858.78], [1198.57, 1874.72], [1194.98, 1884.89], [1190.48, 1890.02], [1184.59, 1899.82], [1175.54, 1902.75], [1156.52, 1899.9], [1144.85, 1906.55], [1137.98, 1912.21], [1135.52, 1917.4], [1134.2, 1922.83], [1140.06, 1932.6], [1148.68, 1941.75], [1154.2, 1946.56]]]}}, {"shape": {"outer": [[-2141.97, -1841.19], [-2138.27, -1837.54], [-2134.34, -1837.46], [-2133.85, -1838.65], [-2132.78, -1839.51], [-2131.54, -1839.96], [-2130.28, -1839.87], [-2129.38, -1839.57], [-2128.27, -1840.81], [-2128.32, -1841.64], [-2130.41, -1842.36], [-2131.13, -1841.71], [-2131.84, -1841.91], [-2132.04, -1843.01], [-2130.72, -1844.61], [-2130.03, -1844.18], [-2129.93, -1843.45], [-2127.72, -1842.61], [-2125.52, -1843.51], [-2124.75, -1845.55], [-2125.54, -1845.82], [-2130.82, -1847.69], [-2132.31, -1848.22], [-2139.27, -1844.76], [-2141.96, -1844.96], [-2141.97, -1841.19]], "holes": [[[-2138.92, -1841.0], [-2139.0, -1842.32], [-2136.76, -1843.42], [-2135.41, -1843.39], [-2135.3, -1842.31], [-2134.85, -1841.27], [-2135.25, -1840.73], [-2136.62, -1840.64], [-2138.46, -1840.71], [-2138.92, -1841.0]]]}}, {"shape": {"outer": [[-2205.48, -1810.76], [-2206.14, -1809.05], [-2206.76, -1807.24], [-2207.78, -1807.15], [-2208.48, -1806.37], [-2208.22, -1805.47], [-2206.59, -1803.74], [-2202.39, -1802.66], [-2201.21, -1803.14], [-2201.14, -1804.28], [-2200.75, -1805.26], [-2199.47, -1805.0], [-2197.74, -1805.56], [-2194.07, -1805.13], [-2191.89, -1808.74], [-2198.97, -1814.85], [-2206.05, -1812.22], [-2205.48, -1810.76]], "holes": [[[-2204.49, -1807.37], [-2204.64, -1808.18], [-2204.3, -1808.55], [-2202.93, -1808.7], [-2202.81, -1809.55], [-2201.94, -1810.16], [-2201.01, -1809.22], [-2202.63, -1807.43], [-2203.44, -1807.15], [-2204.49, -1807.37]]]}}, {"shape": {"outer": [[-2248.81, -1692.61], [-2247.09, -1693.05], [-2246.1, -1692.45], [-2245.51, -1690.35], [-2246.68, -1689.37], [-2246.9, -1687.36], [-2245.48, -1684.2], [-2241.49, -1685.76], [-2235.92, -1689.64], [-2240.43, -1693.47], [-2245.69, -1694.79], [-2251.94, -1693.19], [-2251.86, -1692.4], [-2251.25, -1691.83], [-2249.46, -1691.66], [-2248.81, -1692.61]], "holes": [[[-2242.6, -1690.14], [-2243.33, -1691.77], [-2242.87, -1692.43], [-2242.37, -1692.54], [-2241.88, -1692.39], [-2241.34, -1691.78], [-2240.99, -1691.06], [-2240.87, -1690.15], [-2241.05, -1689.25], [-2241.35, -1688.99], [-2241.74, -1689.08], [-2242.6, -1690.14]]]}}, {"shape": {"outer": [[87.44, -2857.39], [76.58, -2854.9], [60.93, -2859.57], [48.4, -2871.42], [31.86, -2909.07], [23.31, -2940.74], [24.2, -2955.69], [26.5, -2970.78], [30.53, -2990.62], [36.91, -3004.86], [45.31, -3017.08], [53.4, -3024.64], [67.28, -3039.0], [81.21, -3050.01], [97.66, -3056.03], [111.89, -3059.27], [118.75, -3060.06], [125.52, -3057.16], [127.63, -3053.35], [128.54, -3046.45], [126.91, -3038.34], [119.42, -3028.65], [109.98, -3018.37], [99.33, -2997.15], [92.86, -2986.18], [86.9, -2980.23], [71.0, -2963.12], [59.1, -2935.44], [54.98, -2926.5], [55.99, -2917.7], [62.04, -2905.25], [76.16, -2888.87], [86.63, -2870.76], [87.44, -2857.39]], "holes": []}}, {"shape": {"outer": [[107.43, -2819.29], [104.83, -2822.48], [103.2, -2829.32], [105.75, -2836.22], [109.83, -2838.63], [116.5, -2838.82], [169.05, -2832.25], [182.87, -2834.71], [203.93, -2843.7], [219.57, -2854.81], [249.99, -2903.82], [257.18, -2925.71], [256.09, -2939.29], [246.97, -2968.11], [240.15, -2983.78], [238.34, -2998.38], [240.32, -3005.73], [247.11, -3009.51], [257.78, -3010.9], [268.67, -3008.6], [283.48, -3002.69], [293.06, -2992.95], [305.46, -2975.19], [309.1, -2958.98], [310.24, -2949.76], [308.37, -2946.68], [304.34, -2922.47], [285.23, -2886.85], [247.38, -2837.85], [241.31, -2828.31], [212.03, -2800.68], [192.6, -2788.26], [169.6, -2782.41], [158.23, -2782.05], [145.01, -2785.71], [127.22, -2796.54], [107.43, -2819.29]], "holes": []}}, {"shape": {"outer": [[2361.46, 988.34], [2357.58, 997.36], [2302.31, 1052.15], [2292.19, 1065.88], [2284.33, 1073.12], [2250.42, 1110.53], [2244.49, 1121.15], [2230.44, 1134.5], [2171.92, 1197.87], [2157.91, 1212.19], [2120.69, 1236.75], [2103.71, 1250.51], [2071.76, 1280.15], [2046.54, 1300.12], [2023.97, 1313.17], [1989.92, 1330.02], [1969.1, 1337.87], [1950.73, 1350.5], [1918.45, 1379.6], [1908.23, 1393.06], [1899.0, 1402.2], [1896.33, 1403.89], [1890.55, 1408.45], [1867.6, 1420.76], [1852.76, 1428.08], [1829.5, 1456.45], [1814.91, 1470.37], [1808.42, 1470.75], [1791.6, 1481.7], [1775.7, 1492.89], [1767.37, 1500.22], [1753.59, 1511.41], [1747.88, 1518.06], [1743.55, 1521.03], [1741.16, 1524.47], [1736.41, 1529.76], [1702.51, 1566.12], [1697.9, 1569.75], [1680.27, 1578.75], [1678.89, 1581.81], [1671.95, 1587.71], [1650.65, 1609.33], [1638.44, 1628.59], [1626.81, 1636.68], [1616.53, 1644.34], [1599.07, 1652.89], [1585.94, 1663.6], [1580.17, 1672.25], [1563.04, 1688.31], [1519.22, 1712.84], [1508.3, 1719.85], [1487.22, 1731.02], [1480.18, 1736.91], [1473.17, 1748.71], [1451.69, 1769.57], [1433.64, 1780.29], [1386.02, 1821.97], [1375.6, 1829.4], [1365.25, 1839.34], [1345.12, 1855.44], [1297.46, 1895.44], [1248.58, 1933.71], [1195.32, 1978.21], [1185.1, 1987.65], [1126.62, 2032.62], [1113.31, 2047.47], [1099.88, 2061.82], [1074.89, 2084.1], [1078.01, 2087.25], [1072.98, 2091.45], [1061.67, 2101.79], [1054.36, 2107.77], [1045.6, 2115.51], [1051.03, 2117.61], [1078.68, 2130.41], [1077.13, 2121.21], [1082.47, 2105.38], [1083.46, 2104.5], [1084.05, 2103.98], [1084.53, 2103.56], [1122.17, 2069.83], [1129.78, 2063.01], [1140.07, 2052.16], [1152.4, 2040.28], [1234.78, 1971.0], [1245.1, 1961.35], [1255.22, 1953.8], [1268.78, 1943.84], [1280.23, 1934.3], [1285.06, 1932.86], [1306.83, 1913.82], [1312.74, 1907.73], [1320.41, 1902.58], [1322.64, 1903.76], [1326.76, 1900.69], [1325.96, 1898.44], [1330.19, 1895.28], [1341.7, 1885.15], [1349.79, 1877.95], [1362.67, 1864.09], [1385.76, 1851.9], [1403.11, 1835.74], [1415.79, 1824.49], [1424.69, 1817.66], [1434.68, 1812.21], [1443.32, 1811.48], [1450.91, 1804.51], [1455.07, 1791.71], [1469.49, 1787.82], [1486.04, 1763.3], [1503.97, 1754.38], [1507.65, 1754.74], [1512.12, 1753.85], [1511.44, 1748.71], [1531.78, 1736.01], [1546.99, 1727.59], [1586.89, 1701.33], [1590.21, 1695.69], [1597.81, 1678.15], [1606.13, 1669.79], [1614.58, 1668.62], [1618.64, 1667.61], [1622.17, 1665.16], [1629.56, 1656.32], [1651.34, 1647.06], [1659.08, 1642.5], [1712.63, 1589.06], [1720.24, 1580.11], [1725.94, 1574.64], [1728.71, 1571.64], [1734.29, 1565.57], [1749.74, 1548.85], [1751.2, 1545.9], [1756.87, 1539.91], [1760.57, 1537.35], [1766.69, 1535.16], [1770.97, 1534.33], [1774.12, 1533.71], [1779.32, 1531.6], [1785.88, 1528.25], [1789.38, 1525.72], [1792.24, 1522.66], [1797.99, 1514.14], [1825.14, 1491.34], [1835.69, 1483.08], [1847.53, 1467.58], [1870.63, 1452.97], [1884.39, 1440.18], [1904.35, 1429.02], [1906.2, 1426.06], [1915.84, 1417.61], [1950.99, 1395.36], [1958.57, 1384.45], [1983.07, 1366.14], [2003.75, 1349.32], [2027.68, 1328.74], [2056.47, 1315.08], [2074.51, 1304.01], [2106.98, 1274.04], [2121.95, 1266.0], [2174.06, 1223.71], [2191.1, 1208.1], [2214.52, 1185.78], [2233.16, 1165.45], [2247.97, 1147.84], [2275.09, 1117.47], [2298.3, 1088.51], [2306.35, 1078.69], [2332.03, 1055.88], [2352.26, 1025.48], [2370.24, 1008.54], [2379.97, 1003.91], [2368.97, 995.58], [2361.46, 988.34]], "holes": []}}, {"shape": {"outer": [[1072.98, 2091.45], [1075.55, 2094.48], [1077.68, 2096.99], [1066.29, 2106.83], [1059.01, 2113.12], [1057.1, 2110.72], [1054.36, 2107.77], [1061.67, 2101.79], [1072.98, 2091.45]], "holes": []}}, {"shape": {"outer": [[-1325.05, -11.5], [-1324.11, -10.23], [-1322.81, -9.33], [-1321.3, -8.9], [-1319.73, -8.99], [-1318.27, -9.56], [-1317.08, -10.59], [-1316.29, -11.94], [-1315.97, -13.47], [-1316.17, -15.04], [-1316.87, -16.44], [-1317.99, -17.54], [-1319.41, -18.23], [-1320.98, -18.42], [-1322.53, -18.09], [-1323.89, -17.27], [-1324.9, -16.06], [-1325.47, -14.58], [-1325.52, -13.01], [-1325.05, -11.5]], "holes": []}}, {"shape": {"outer": [[-2321.44, -1852.37], [-2325.68, -1852.42], [-2330.77, -1850.9], [-2333.52, -1849.4], [-2334.2, -1846.4], [-2334.23, -1843.67], [-2334.02, -1840.26], [-2333.53, -1838.19], [-2331.97, -1835.08], [-2329.9, -1833.45], [-2328.24, -1832.63], [-2325.81, -1832.16], [-2323.48, -1832.88], [-2322.51, -1833.28], [-2321.9, -1834.71], [-2321.37, -1835.27], [-2319.75, -1837.89], [-2319.8, -1839.73], [-2318.79, -1840.69], [-2316.6, -1842.22], [-2315.95, -1842.84], [-2308.26, -1851.1], [-2308.51, -1854.39], [-2312.3, -1854.94], [-2321.44, -1852.37]], "holes": []}}, {"shape": {"outer": [[-384.69, -2546.07], [-386.18, -2544.62], [-387.69, -2543.58], [-390.1, -2543.85], [-392.68, -2546.39], [-395.34, -2551.21], [-398.42, -2559.73], [-400.75, -2564.56], [-400.51, -2567.63], [-395.09, -2569.63], [-381.75, -2569.35], [-380.57, -2566.23], [-384.69, -2546.07]], "holes": []}}, {"shape": {"outer": [[6.68, -2713.93], [-1.13, -2727.44], [-2.32, -2730.67], [-2.56, -2743.08], [-0.76, -2745.08], [2.37, -2746.49], [6.74, -2746.61], [9.69, -2743.1], [10.77, -2739.32], [9.31, -2721.63], [7.67, -2717.55], [6.68, -2713.93]], "holes": []}}, {"shape": {"outer": [[-2513.04, 162.12], [-2514.25, 164.8], [-2516.62, 166.63], [-2517.7, 168.03], [-2516.81, 170.9], [-2513.73, 174.58], [-2509.66, 175.98], [-2507.02, 175.27], [-2507.19, 172.63], [-2505.36, 171.94], [-2503.16, 173.24], [-2500.74, 172.33], [-2499.94, 169.29], [-2500.6, 165.26], [-2501.68, 163.57], [-2504.31, 162.99], [-2507.58, 164.28], [-2510.63, 162.13], [-2511.43, 161.99], [-2513.04, 162.12]], "holes": []}}, {"shape": {"outer": [[216.59, -99.8], [216.65, -97.79], [218.46, -98.48], [219.79, -99.34], [221.2, -100.54], [223.21, -102.71], [224.15, -104.83], [223.97, -106.4], [223.56, -108.11], [222.15, -109.58], [220.68, -110.33], [219.38, -110.5], [217.52, -110.16], [214.66, -109.08], [206.63, -104.97], [205.2, -104.5], [204.49, -104.41], [203.7, -104.39], [200.73, -102.29], [202.18, -101.9], [203.91, -101.74], [206.71, -102.39], [215.54, -106.51], [218.38, -107.75], [219.61, -107.5], [220.5, -106.66], [221.25, -105.74], [221.57, -104.67], [221.6, -103.67], [221.33, -102.94], [220.84, -102.35], [219.5, -101.1], [216.59, -99.8]], "holes": []}}, {"shape": {"outer": [[-1745.03, -186.25], [-1742.62, -186.94], [-1740.49, -188.55], [-1739.14, -190.19], [-1738.81, -191.84], [-1739.78, -193.44], [-1741.55, -194.37], [-1740.95, -197.44], [-1739.68, -198.7], [-1738.4, -202.69], [-1739.66, -203.57], [-1741.59, -203.57], [-1743.56, -202.65], [-1744.07, -200.51], [-1743.59, -198.67], [-1742.64, -197.25], [-1743.25, -194.65], [-1745.25, -194.56], [-1746.39, -193.34], [-1746.57, -190.47], [-1746.24, -188.26], [-1744.99, -187.69], [-1744.79, -186.96], [-1745.03, -186.25]], "holes": []}}, {"shape": {"outer": [[-2306.75, -1794.17], [-2308.86, -1795.69], [-2310.06, -1797.23], [-2310.57, -1798.0], [-2312.0, -1798.81], [-2314.48, -1800.26], [-2315.25, -1801.57], [-2315.24, -1803.39], [-2313.69, -1804.65], [-2312.48, -1805.12], [-2310.33, -1804.57], [-2307.86, -1803.43], [-2305.63, -1802.16], [-2303.12, -1801.86], [-2300.87, -1801.81], [-2299.87, -1800.98], [-2299.33, -1799.36], [-2298.98, -1797.6], [-2299.85, -1796.0], [-2300.68, -1795.13], [-2301.45, -1794.5], [-2302.42, -1794.1], [-2303.75, -1793.94], [-2306.75, -1794.17]], "holes": []}}, {"shape": {"outer": [[-2059.7, -446.45], [-2061.53, -446.61], [-2061.72, -444.22], [-2063.82, -447.24], [-2070.34, -448.21], [-2069.68, -443.21], [-2066.58, -442.31], [-2064.84, -442.12], [-2063.17, -439.25], [-2063.33, -437.76], [-2064.27, -437.2], [-2064.84, -436.77], [-2065.15, -436.06], [-2065.01, -435.53], [-2065.16, -434.82], [-2065.1, -434.12], [-2064.64, -434.14], [-2063.98, -434.11], [-2065.38, -430.94], [-2063.62, -430.58], [-2062.06, -435.12], [-2060.65, -439.36], [-2059.83, -443.89], [-2059.7, -446.45]], "holes": []}}, {"shape": {"outer": [[141.88, -3050.09], [142.44, -3045.75], [145.8, -3042.91], [147.89, -3042.43], [156.6, -3043.76], [193.44, -3039.91], [209.1, -3038.93], [217.68, -3036.88], [219.63, -3037.71], [220.27, -3046.11], [219.55, -3048.16], [217.97, -3049.96], [215.97, -3050.99], [213.86, -3052.02], [200.11, -3055.45], [189.6, -3059.84], [172.43, -3063.92], [165.41, -3064.6], [158.53, -3064.51], [143.0, -3060.69], [141.77, -3057.83], [141.81, -3054.73], [141.88, -3050.09]], "holes": []}}, {"shape": {"outer": [[428.69, -2894.43], [417.48, -2905.95], [414.63, -2905.97], [405.44, -2894.77], [403.52, -2888.35], [404.02, -2883.36], [405.07, -2880.23], [408.45, -2878.27], [412.37, -2877.76], [428.77, -2891.59], [428.69, -2894.43]], "holes": []}}], "parks": [{"shape": {"outer": [[-1980.45, -716.69], [-1980.71, -725.13], [-1957.37, -725.86], [-1957.04, -732.76], [-1992.47, -730.67], [-1993.28, -728.24], [-2001.06, -727.28], [-2011.85, -727.72], [-2011.73, -715.72], [-2010.92, -715.74], [-1980.45, -716.69]], "holes": []}}, {"shape": {"outer": [[-1896.49, -660.5], [-1897.41, -687.11], [-1902.48, -686.93], [-1902.36, -691.89], [-1918.19, -691.46], [-1918.09, -687.95], [-1925.75, -687.74], [-1925.7, -686.01], [-1940.46, -685.65], [-1940.59, -690.85], [-1984.33, -689.78], [-2010.45, -696.2], [-2011.87, -696.42], [-2011.73, -690.87], [-2011.78, -687.94], [-1934.43, -664.23], [-1929.98, -663.32], [-1918.35, -661.52], [-1913.39, -660.5], [-1896.43, -655.71], [-1896.49, -660.5]], "holes": []}}, {"shape": {"outer": [[-2847.55, 363.22], [-2844.81, 362.95], [-2842.71, 360.61], [-2842.69, 357.88], [-2842.78, 349.7], [-2843.02, 347.1], [-2845.04, 344.85], [-2847.42, 344.38], [-2875.54, 345.24], [-2880.96, 345.41], [-2886.88, 346.45], [-2890.74, 348.25], [-2894.06, 350.54], [-2897.06, 353.69], [-2892.89, 357.27], [-2882.57, 358.49], [-2881.11, 358.62], [-2880.35, 359.49], [-2880.14, 363.78], [-2847.55, 363.22]], "holes": []}}, {"shape": {"outer": [[-2889.38, 396.18], [-2889.81, 378.96], [-2903.69, 379.07], [-2933.14, 392.18], [-2933.06, 397.77], [-2889.38, 396.18]], "holes": []}}, {"shape": {"outer": [[-2904.17, 219.86], [-2904.89, 192.72], [-2910.2, 192.86], [-2909.46, 220.0], [-2904.17, 219.86]], "holes": []}}, {"shape": {"outer": [[-2926.93, 269.01], [-2928.1, 238.81], [-2915.54, 238.31], [-2916.09, 219.96], [-2936.01, 220.76], [-2947.0, 232.49], [-2945.83, 269.69], [-2926.93, 269.01]], "holes": []}}, {"shape": {"outer": [[-1756.92, -142.6], [-1754.25, -137.67], [-1753.36, -131.0], [-1750.49, -114.77], [-1741.85, -116.28], [-1742.51, -119.95], [-1737.41, -120.84], [-1738.98, -133.62], [-1744.49, -139.61], [-1759.04, -156.83], [-1762.25, -154.84], [-1765.69, -152.7], [-1760.29, -147.83], [-1756.92, -142.6]], "holes": []}}, {"shape": {"outer": [[-1524.19, -130.39], [-1524.19, -129.18], [-1524.3, -127.97], [-1524.18, -125.94], [-1524.37, -125.48], [-1524.77, -125.31], [-1529.4, -125.2], [-1528.94, -114.87], [-1522.98, -114.99], [-1524.84, -112.12], [-1525.18, -109.71], [-1524.97, -107.12], [-1524.49, -107.15], [-1513.21, -107.36], [-1513.36, -110.35], [-1513.67, -111.43], [-1514.08, -112.3], [-1514.68, -113.1], [-1515.71, -114.16], [-1516.05, -123.13], [-1516.07, -124.28], [-1516.1, -125.35], [-1516.12, -127.71], [-1516.0, -130.84], [-1515.74, -133.97], [-1515.54, -134.69], [-1515.21, -135.31], [-1514.74, -135.47], [-1514.27, -135.35], [-1513.99, -134.89], [-1513.86, -134.31], [-1513.87, -128.15], [-1503.74, -128.67], [-1502.46, -128.81], [-1501.04, -128.9], [-1479.94, -129.86], [-1480.14, -134.54], [-1479.64, -135.44], [-1478.69, -135.82], [-1469.01, -136.24], [-1469.07, -143.42], [-1472.89, -143.29], [-1473.07, -149.16], [-1500.88, -147.73], [-1500.66, -142.86], [-1500.96, -142.27], [-1501.68, -142.06], [-1502.92, -142.41], [-1505.93, -143.48], [-1510.16, -145.37], [-1511.26, -146.51], [-1511.63, -147.91], [-1511.51, -149.36], [-1510.79, -150.66], [-1506.45, -153.52], [-1506.79, -163.02], [-1507.63, -165.77], [-1508.72, -168.25], [-1510.23, -170.32], [-1512.64, -171.91], [-1515.52, -172.85], [-1518.78, -172.94], [-1521.34, -172.52], [-1524.07, -171.04], [-1525.66, -169.56], [-1527.22, -167.61], [-1528.37, -165.22], [-1528.83, -162.62], [-1528.77, -154.91], [-1529.09, -153.75], [-1530.11, -153.17], [-1537.47, -152.78], [-1538.14, -152.94], [-1538.48, -153.54], [-1538.89, -154.53], [-1557.93, -153.7], [-1561.83, -153.42], [-1561.69, -151.1], [-1568.73, -150.84], [-1568.67, -146.63], [-1564.55, -144.76], [-1565.07, -143.17], [-1560.47, -142.73], [-1548.03, -142.76], [-1540.42, -143.59], [-1535.55, -144.23], [-1531.3, -144.58], [-1530.33, -144.25], [-1529.93, -143.47], [-1524.86, -133.5], [-1524.31, -131.95], [-1524.19, -130.39]], "holes": [[[-1521.44, -157.59], [-1521.77, -160.64], [-1521.18, -163.63], [-1519.45, -165.43], [-1517.28, -165.44], [-1514.74, -163.55], [-1513.97, -159.56], [-1513.95, -155.94], [-1515.26, -153.76], [-1517.72, -153.89], [-1519.69, -154.97], [-1521.44, -157.59]]]}}, {"shape": {"outer": [[-2048.76, 90.59], [-2055.04, 94.62], [-2068.7, 101.98], [-2061.64, 112.7], [-2031.35, 99.87], [-2041.67, 85.18], [-2048.76, 90.59]], "holes": []}}, {"shape": {"outer": [[-2308.72, 118.29], [-2308.77, 102.2], [-2333.16, 103.21], [-2332.32, 121.64], [-2310.28, 121.12], [-2308.72, 118.29]], "holes": []}}, {"shape": {"outer": [[-1966.14, 137.45], [-1954.96, 134.67], [-1942.29, 130.05], [-1934.05, 125.72], [-1924.53, 119.66], [-1912.59, 111.08], [-1914.21, 109.42], [-1926.12, 118.3], [-1935.03, 123.82], [-1943.13, 128.07], [-1956.13, 132.95], [-1966.25, 135.18], [-1983.34, 137.25], [-2004.85, 139.36], [-2004.57, 141.49], [-1983.41, 139.48], [-1966.14, 137.45]], "holes": []}}, {"shape": {"outer": [[-2159.91, 129.13], [-2146.51, 128.68], [-2133.39, 128.78], [-2111.43, 130.14], [-2079.28, 133.06], [-2048.28, 135.23], [-2048.08, 133.63], [-2079.33, 131.31], [-2111.2, 128.59], [-2133.27, 127.33], [-2146.51, 127.43], [-2160.07, 127.9], [-2176.51, 129.34], [-2191.18, 131.77], [-2209.7, 135.42], [-2230.59, 141.29], [-2251.32, 147.21], [-2267.46, 151.96], [-2272.69, 153.47], [-2277.66, 154.35], [-2277.56, 155.77], [-2272.45, 154.85], [-2266.67, 153.36], [-2250.74, 148.39], [-2230.13, 142.55], [-2209.26, 136.73], [-2191.09, 133.04], [-2176.25, 130.61], [-2159.91, 129.13]], "holes": []}}, {"shape": {"outer": [[-2119.28, 139.8], [-2102.88, 141.19], [-2086.99, 142.73], [-2073.22, 144.06], [-2072.9, 141.58], [-2086.31, 140.41], [-2102.71, 139.02], [-2119.36, 137.94], [-2136.54, 137.64], [-2164.87, 138.31], [-2164.76, 139.75], [-2153.63, 139.68], [-2136.54, 139.33], [-2119.28, 139.8]], "holes": []}}, {"shape": {"outer": [[-2841.73, -41.87], [-2853.52, -41.52], [-2853.29, -33.64], [-2841.49, -33.99], [-2841.73, -41.87]], "holes": []}}, {"shape": {"outer": [[-2738.74, -50.17], [-2737.69, -18.4], [-2707.92, -19.39], [-2708.97, -51.15], [-2738.74, -50.17]], "holes": []}}, {"shape": {"outer": [[-2774.29, 10.27], [-2723.79, 8.43], [-2723.54, 15.23], [-2704.95, 14.56], [-2705.89, -11.27], [-2774.97, -8.75], [-2774.29, 10.27]], "holes": []}}, {"shape": {"outer": [[-1431.27, -1989.53], [-1429.34, -1992.79], [-1426.81, -1991.44], [-1422.28, -1999.26], [-1422.33, -2000.91], [-1421.67, -2002.94], [-1398.36, -2043.5], [-1419.32, -2055.07], [-1432.4, -2062.29], [-1444.66, -2042.41], [-1463.23, -2006.61], [-1431.27, -1989.53]], "holes": [[[-1436.49, -2042.52], [-1427.38, -2037.57], [-1437.18, -2019.68], [-1446.29, -2024.63], [-1436.49, -2042.52]]]}}, {"shape": {"outer": [[-1397.55, -2044.48], [-1391.79, -2053.9], [-1392.28, -2055.52], [-1392.21, -2057.3], [-1388.47, -2067.7], [-1387.88, -2068.51], [-1388.5, -2089.36], [-1399.16, -2092.73], [-1418.86, -2055.95], [-1397.55, -2044.48]], "holes": [[[-1401.94, -2080.08], [-1393.84, -2075.62], [-1397.97, -2068.11], [-1396.37, -2067.12], [-1398.17, -2064.1], [-1399.63, -2064.96], [-1401.08, -2062.43], [-1409.54, -2067.09], [-1401.94, -2080.08]]]}}, {"shape": {"outer": [[-2385.35, -756.63], [-2389.35, -759.74], [-2408.02, -767.16], [-2423.0, -779.24], [-2425.91, -781.07], [-2428.81, -782.53], [-2447.87, -789.29], [-2522.33, -811.65], [-2534.37, -814.43], [-2539.12, -815.36], [-2546.02, -815.73], [-2549.16, -815.73], [-2560.01, -820.57], [-2559.69, -810.92], [-2558.07, -761.64], [-2557.22, -734.59], [-2556.96, -727.8], [-2556.66, -718.7], [-2551.35, -551.93], [-2550.96, -545.0], [-2550.75, -536.17], [-2548.42, -456.84], [-2546.96, -408.78], [-2546.7, -399.91], [-2546.47, -392.08], [-2542.17, -245.8], [-2541.14, -210.97], [-2540.91, -203.6], [-2540.44, -193.81], [-2550.32, -193.64], [-2565.0, -193.21], [-2574.62, -193.42], [-2583.62, -193.49], [-2616.78, -192.45], [-2624.06, -192.23], [-2632.62, -191.97], [-2678.25, -189.97], [-2698.67, -189.13], [-2706.92, -190.45], [-2723.1, -190.06], [-2733.36, -189.81], [-2737.35, -189.72], [-2742.65, -189.59], [-2746.63, -189.5], [-2758.71, -189.58], [-2766.61, -190.54], [-2771.27, -191.89], [-2779.07, -190.53], [-2832.66, -199.0], [-2843.59, -203.75], [-2857.05, -205.83], [-2858.71, -196.93], [-2861.29, -182.26], [-2864.66, -159.67], [-2865.58, -153.5], [-2867.28, -140.24], [-2868.04, -134.33], [-2869.42, -118.7], [-2871.3, -90.07], [-2893.54, -91.14], [-2924.29, -93.08], [-2958.75, -96.01], [-2982.93, -97.75], [-3006.75, -99.87], [-3085.05, -99.83], [-3260.04, -128.47], [-3282.68, -132.41], [-3304.55, -133.56], [-3354.32, -137.13], [-3461.6, -147.14], [-3458.95, 63.77], [-3577.32, 67.97], [-3571.57, 213.51], [-3581.98, 220.14], [-3592.39, 225.64], [-3606.55, 230.28], [-3623.9, 232.27], [-3736.56, 232.97], [-3740.68, 99.67], [-3770.51, 101.11], [-3928.89, 108.73], [-3932.01, 40.74], [-4053.3, 45.8], [-4053.93, 24.12], [-4154.13, 27.03], [-4155.18, 27.06], [-4160.73, 52.85], [-4164.52, 65.48], [-4167.31, 74.71], [-4169.87, 84.36], [-4171.29, 92.14], [-4172.08, 102.5], [-4172.15, 111.22], [-4171.8, 115.77], [-4170.46, 124.34], [-4168.66, 133.32], [-4190.05, 139.2], [-4192.14, 140.46], [-4193.76, 141.76], [-4195.83, 143.74], [-4198.71, 147.12], [-4206.63, 160.31], [-4212.64, 170.13], [-4221.95, 183.16], [-4187.73, 209.22], [-4201.91, 227.85], [-4183.42, 243.17], [-4230.95, 315.55], [-4277.72, 406.36], [-4287.31, 402.35], [-4314.83, 461.16], [-4359.89, 462.15], [-4363.25, 473.41], [-4365.29, 481.53], [-4367.6, 489.69], [-4371.44, 502.43], [-4375.35, 517.28], [-4382.17, 540.95], [-4387.25, 558.58], [-4391.95, 577.33], [-4396.09, 596.37], [-4398.23, 611.62], [-4400.12, 627.25], [-4401.16, 664.86], [-4400.86, 700.37], [-4399.66, 733.73], [-4398.8, 767.63], [-4396.96, 793.87], [-4397.07, 799.82], [-4396.85, 802.85], [-4395.74, 808.8], [-4394.11, 814.81], [-4389.62, 828.03], [-4385.64, 837.16], [-4382.54, 843.42], [-4375.05, 854.7], [-4372.29, 858.32], [-4363.23, 868.51], [-4372.81, 874.36], [-4376.38, 873.34], [-4378.8, 873.33], [-4381.2, 873.72], [-4385.43, 874.97], [-4387.9, 876.24], [-4388.99, 877.47], [-4390.06, 879.27], [-4390.63, 881.7], [-4408.78, 883.16], [-4465.47, 883.79], [-4511.84, 877.21], [-4534.16, 874.05], [-4570.94, 873.67], [-4582.13, 874.0], [-4636.28, 875.57], [-4711.31, 877.76], [-4878.97, 885.8], [-4930.58, 888.27], [-5119.49, 894.67], [-5118.03, 938.56], [-5116.88, 1002.31], [-5113.83, 1172.06], [-5110.46, 1263.29], [-5058.89, 1348.55], [-5032.96, 1372.76], [-5005.32, 1390.85], [-4975.27, 1403.08], [-4945.39, 1409.64], [-4947.09, 1420.82], [-4956.48, 1478.68], [-4827.73, 1534.58], [-4768.76, 1547.39], [-4690.84, 1583.03], [-4647.91, 1601.06], [-4626.06, 1601.67], [-4620.83, 1601.82], [-4612.15, 1607.9], [-4610.31, 1616.47], [-4595.67, 1624.87], [-4509.72, 1663.16], [-4366.26, 1780.57], [-4155.52, 1872.42], [-4061.34, 1899.55], [-4012.76, 1931.19], [-3976.57, 1985.45], [-3938.84, 1970.94], [-3891.29, 1974.93], [-3871.13, 1990.03], [-3817.13, 1929.44], [-3787.49, 1880.65], [-3737.04, 1821.11], [-3650.07, 1676.57], [-3628.42, 1641.96], [-3610.86, 1604.91], [-3508.15, 1499.72], [-3411.0, 1407.5], [-3346.77, 1373.57], [-3247.18, 1355.76], [-3164.79, 1350.29], [-3048.33, 1355.38], [-2992.97, 1364.1], [-2976.97, 1366.38], [-2930.67, 1374.24], [-2915.14, 1378.33], [-2909.51, 1381.81], [-2849.89, 1410.77], [-2809.78, 1443.15], [-2774.26, 1499.93], [-2714.03, 1556.27], [-2673.14, 1593.98], [-2653.41, 1613.11], [-2636.54, 1622.55], [-2624.39, 1631.01], [-2614.08, 1633.68], [-2608.28, 1634.47], [-2599.95, 1633.5], [-2591.51, 1629.37], [-2587.33, 1624.33], [-2586.85, 1616.8], [-2590.25, 1609.54], [-2595.53, 1601.09], [-2608.7, 1579.43], [-2625.35, 1554.33], [-2639.37, 1524.27], [-2655.36, 1500.1], [-2664.93, 1480.18], [-2675.73, 1464.54], [-2697.76, 1451.46], [-2716.04, 1437.02], [-2734.7, 1431.6], [-2758.43, 1427.7], [-2778.14, 1423.13], [-2808.98, 1408.41], [-2833.48, 1389.68], [-2864.09, 1375.97], [-2901.13, 1363.1], [-2931.99, 1344.43], [-2952.53, 1309.38], [-3045.8, 1240.39], [-3075.91, 1218.24], [-3116.4, 1206.47], [-3156.47, 1190.67], [-3198.54, 1170.75], [-3264.77, 1150.9], [-3282.12, 1147.97], [-3299.33, 1149.87], [-3309.55, 1163.48], [-3328.23, 1172.69], [-3353.02, 1177.15], [-3367.82, 1178.49], [-3391.58, 1174.21], [-3406.56, 1167.74], [-3430.31, 1156.82], [-3457.93, 1139.68], [-3506.97, 1106.02], [-3518.92, 1080.0], [-3531.79, 1051.24], [-3545.05, 990.83], [-3556.27, 939.77], [-3554.24, 917.95], [-3556.34, 882.32], [-3529.37, 725.88], [-3514.99, 700.25], [-3503.37, 690.92], [-3460.75, 636.12], [-3438.48, 613.45], [-3424.99, 600.09], [-3419.14, 595.37], [-3411.0, 583.23], [-3395.94, 560.84], [-3322.36, 462.27], [-3282.97, 421.81], [-3272.82, 413.99], [-3257.9, 402.5], [-3238.81, 390.47], [-3222.45, 383.89], [-3209.68, 377.06], [-3199.42, 371.03], [-3185.7, 367.56], [-3176.55, 364.99], [-3164.06, 361.41], [-3150.95, 353.85], [-3142.1, 348.94], [-3138.54, 344.44], [-3137.27, 325.43], [-3129.57, 325.26], [-3121.81, 325.08], [-3112.52, 338.76], [-3103.83, 348.15], [-3092.2, 356.82], [-3078.65, 364.76], [-3068.28, 368.11], [-3049.59, 373.89], [-3038.33, 380.29], [-3032.68, 386.65], [-3029.27, 391.13], [-3021.97, 402.02], [-3016.83, 413.41], [-3014.9, 427.29], [-3013.44, 447.72], [-3014.11, 450.91], [-3015.45, 453.66], [-3017.98, 454.85], [-3021.51, 455.79], [-3029.26, 459.94], [-3032.05, 463.72], [-3032.41, 467.92], [-3029.17, 474.36], [-3024.19, 480.31], [-3018.4, 483.85], [-3012.9, 485.21], [-3004.59, 486.26], [-2992.09, 484.75], [-2978.28, 480.94], [-2970.48, 478.33], [-2968.62, 477.45], [-2965.1, 475.77], [-2958.4, 472.76], [-2953.48, 472.09], [-2949.86, 471.61], [-2944.64, 473.0], [-2934.98, 481.66], [-2929.42, 485.41], [-2925.2, 487.69], [-2923.15, 487.88], [-2920.78, 487.0], [-2918.51, 483.98], [-2915.93, 481.09], [-2915.17, 480.46], [-2912.79, 478.43], [-2895.79, 468.98], [-2890.34, 465.82], [-2868.95, 453.46], [-2830.79, 428.68], [-2790.48, 405.67], [-2766.68, 392.41], [-2744.63, 383.16], [-2720.42, 373.86], [-2688.99, 363.46], [-2675.76, 362.17], [-2660.68, 361.01], [-2633.68, 360.96], [-2622.54, 361.69], [-2579.45, 369.08], [-2560.29, 371.37], [-2537.79, 370.57], [-2498.92, 377.87], [-2453.11, 380.16], [-2426.46, 379.91], [-2420.59, 379.86], [-2413.06, 379.79], [-2400.63, 379.27], [-2393.71, 378.97], [-2392.46, 378.96], [-2391.51, 378.94], [-2312.8, 377.96], [-2299.1, 378.95], [-2286.06, 382.15], [-2279.97, 384.69], [-2272.91, 387.52], [-2268.88, 388.86], [-2264.1, 389.11], [-2257.52, 387.21], [-2250.7, 384.43], [-2207.45, 357.16], [-2201.63, 353.49], [-2179.33, 338.48], [-2170.31, 333.21], [-2162.41, 329.19], [-2133.23, 315.16], [-2104.29, 303.39], [-2088.72, 297.55], [-2075.22, 293.15], [-2048.41, 285.73], [-2010.43, 276.58], [-1971.48, 265.25], [-1917.33, 256.14], [-1886.67, 249.49], [-1859.23, 247.65], [-1793.14, 243.73], [-1782.36, 241.77], [-1772.44, 239.66], [-1731.84, 229.42], [-1673.41, 215.89], [-1652.86, 213.88], [-1648.3, 246.35], [-1559.2, 264.02], [-1251.95, 204.18], [-1181.2, 200.28], [-1171.73, 162.8], [-1171.95, 159.38], [-1173.01, 143.38], [-1173.98, 122.25], [-1176.04, 121.17], [-1177.58, 119.18], [-1178.54, 116.64], [-1179.03, 113.74], [-1179.79, 99.19], [-1181.27, 73.48], [-1182.07, 59.63], [-1183.26, 38.87], [-1183.92, 29.6], [-1184.4, 21.22], [-1184.89, 11.93], [-1186.17, -12.05], [-1188.82, -61.95], [-1189.77, -70.18], [-1191.84, -79.41], [-1193.35, -106.82], [-1193.68, -114.11], [-1194.11, -125.26], [-1196.98, -174.82], [-1198.36, -204.65], [-1200.19, -244.74], [-1200.35, -257.04], [-1191.98, -257.34], [-1135.92, -260.21], [-1079.02, -263.05], [-1069.8, -263.51], [-1070.74, -273.84], [-1070.94, -276.86], [-1072.84, -310.49], [-1073.74, -326.46], [-1073.96, -331.59], [-1074.08, -333.97], [-1074.93, -352.93], [-1075.08, -356.36], [-1076.58, -385.49], [-1077.05, -406.28], [-1078.2, -429.69], [-1079.33, -452.54], [-1082.3, -512.9], [-1083.09, -530.99], [-1085.42, -578.08], [-946.27, -586.86], [-941.73, -587.14], [-941.8, -589.4], [-941.8, -591.44], [-942.05, -600.15], [-941.75, -605.49], [-940.59, -609.64], [-939.03, -612.77], [-957.53, -617.78], [-993.13, -675.25], [-947.41, -705.25], [-950.24, -707.73], [-956.77, -713.56], [-993.14, -746.06], [-1019.71, -768.04], [-1023.31, -771.05], [-1028.98, -775.78], [-1030.29, -777.12], [-1035.41, -782.01], [-1039.88, -781.71], [-1046.96, -787.66], [-1102.1, -770.98], [-1103.32, -776.21], [-1106.88, -775.94], [-1108.1, -787.5], [-1108.34, -789.12], [-1108.58, -791.64], [-1109.83, -794.91], [-1347.09, -686.4], [-1355.75, -682.4], [-1356.24, -696.96], [-1356.88, -707.76], [-1358.47, -740.06], [-1360.18, -773.65], [-1359.42, -782.56], [-1359.99, -795.28], [-1360.66, -810.12], [-1360.8, -813.19], [-1362.2, -844.14], [-1496.49, -819.52], [-1496.18, -775.27], [-1495.0, -748.98], [-1494.85, -747.28], [-1494.51, -740.87], [-1491.33, -683.49], [-1490.86, -674.81], [-1487.39, -634.78], [-1487.12, -632.21], [-1500.36, -625.56], [-1511.3, -620.45], [-1523.11, -615.57], [-1532.31, -612.5], [-1537.21, -610.53], [-1557.23, -600.49], [-1567.48, -595.98], [-1580.19, -592.22], [-1593.4, -588.87], [-1607.16, -586.32], [-1627.08, -584.43], [-1638.59, -584.35], [-1652.59, -584.94], [-1666.12, -586.68], [-1678.13, -588.77], [-1708.69, -595.68], [-1719.37, -598.33], [-1727.14, -601.62], [-1734.97, -605.63], [-1742.31, -608.61], [-1743.19, -608.83], [-1751.97, -609.36], [-1758.03, -609.26], [-1760.26, -609.46], [-1761.81, -609.79], [-1780.55, -614.82], [-1836.31, -632.49], [-1829.57, -643.87], [-1831.9, -684.03], [-1819.09, -684.65], [-1819.52, -698.08], [-1794.16, -699.07], [-1793.43, -669.32], [-1762.9, -670.03], [-1758.61, -670.17], [-1761.01, -749.48], [-1761.98, -797.31], [-1769.47, -797.1], [-1877.31, -793.85], [-1884.87, -793.63], [-1884.23, -768.66], [-1893.72, -768.31], [-1898.88, -768.08], [-1955.26, -765.55], [-1961.07, -765.11], [-1982.41, -764.34], [-2022.66, -762.54], [-2022.02, -732.8], [-2021.2, -693.88], [-2021.09, -688.47], [-2017.16, -687.07], [-2012.57, -685.85], [-1931.82, -661.27], [-1906.17, -653.99], [-1900.26, -651.44], [-1896.05, -648.93], [-1891.78, -645.53], [-1885.34, -641.05], [-1884.99, -631.69], [-1884.3, -607.69], [-1890.52, -607.64], [-1928.39, -606.49], [-1928.01, -583.56], [-1969.82, -582.37], [-1969.83, -580.02], [-2018.7, -576.9], [-2018.28, -557.55], [-2017.63, -527.25], [-2016.69, -483.72], [-2016.51, -475.33], [-2025.64, -474.91], [-2054.91, -473.47], [-2070.78, -472.68], [-2075.45, -472.46], [-2141.43, -469.13], [-2150.75, -468.15], [-2150.8, -476.75], [-2151.26, -548.22], [-2151.36, -550.41], [-2151.54, -552.98], [-2151.77, -555.45], [-2152.18, -558.42], [-2152.66, -561.07], [-2153.16, -563.75], [-2153.92, -567.01], [-2154.91, -570.08], [-2156.0, -572.86], [-2156.86, -574.9], [-2158.19, -577.16], [-2159.75, -579.18], [-2163.87, -582.41], [-2228.7, -634.35], [-2261.64, -660.07], [-2297.0, -687.66], [-2329.93, -713.36], [-2348.44, -727.82], [-2355.03, -732.95], [-2377.72, -750.66], [-2385.35, -756.63]], "holes": []}}, {"shape": {"outer": [[-3251.13, -2749.19], [-3235.29, -2789.91], [-3052.92, -2802.63], [-3046.44, -2829.13], [-3020.59, -2901.93], [-3044.28, -2905.39], [-3063.01, -2904.92], [-3105.07, -2900.78], [-3126.97, -2903.4], [-3174.77, -2913.79], [-3206.83, -2930.43], [-3245.17, -2973.94], [-3248.4, -2983.57], [-3255.13, -3003.63], [-3214.18, -3188.6], [-3217.38, -3207.29], [-3221.84, -3223.46], [-3225.37, -3237.8], [-3230.65, -3245.69], [-3244.71, -3262.93], [-3247.32, -3262.63], [-3255.74, -3266.31], [-3273.35, -3270.6], [-3312.01, -3271.42], [-3378.23, -3267.99], [-3405.12, -3265.55], [-3473.8, -3260.88], [-3505.23, -3258.67], [-3608.32, -3240.01], [-3631.39, -3238.65], [-3649.83, -3238.81], [-3684.11, -3244.35], [-3710.15, -3252.75], [-3739.4, -3266.28], [-3779.07, -3291.71], [-3820.64, -3323.19], [-3853.49, -3340.11], [-3892.48, -3357.27], [-3944.43, -3384.54], [-3995.58, -3413.99], [-3999.76, -3407.33], [-4007.59, -3375.74], [-4021.37, -3368.36], [-4061.97, -3381.13], [-4090.4, -3395.99], [-4117.57, -3428.32], [-4147.31, -3488.46], [-4153.71, -3528.37], [-4156.8, -3533.22], [-4194.21, -3581.29], [-4242.49, -3384.68], [-4239.82, -3309.24], [-4184.0, -3306.12], [-4162.16, -3277.12], [-4045.82, -3306.65], [-4006.61, -3281.63], [-3975.64, -3238.96], [-3949.75, -3190.9], [-3913.44, -3144.89], [-3893.25, -3112.37], [-3848.25, -3068.36], [-3827.78, -3033.44], [-3824.08, -3027.83], [-3819.05, -3025.95], [-3812.19, -3024.68], [-3815.24, -3009.35], [-3804.12, -3002.7], [-3793.51, -2999.08], [-3778.89, -3007.79], [-3769.59, -3013.2], [-3762.92, -3009.66], [-3763.22, -3000.96], [-3767.49, -2994.28], [-3773.58, -2990.51], [-3790.08, -2986.11], [-3797.83, -2981.96], [-3805.9, -2974.48], [-3807.18, -2965.49], [-3809.04, -2960.04], [-3814.6, -2949.91], [-3827.76, -2934.74], [-3841.59, -2929.11], [-3856.07, -2915.62], [-3855.41, -2907.52], [-3840.77, -2912.39], [-3816.1, -2906.13], [-3736.4, -2908.44], [-3678.61, -2894.07], [-3627.09, -2854.44], [-3591.26, -2837.28], [-3544.73, -2800.98], [-3527.17, -2791.51], [-3504.22, -2779.14], [-3441.8, -2749.58], [-3405.49, -2752.02], [-3370.33, -2746.06], [-3346.78, -2730.0], [-3330.28, -2723.56], [-3251.13, -2749.19]], "holes": [[[-3774.61, -3248.34], [-3763.61, -3262.63], [-3704.92, -3229.47], [-3705.39, -3215.51], [-3709.96, -3207.09], [-3774.61, -3248.34]], [[-3354.94, -3018.29], [-3336.08, -3050.04], [-3312.07, -3096.93], [-3294.13, -3141.9], [-3280.51, -3146.93], [-3268.92, -3117.35], [-3275.45, -3065.18], [-3285.43, -3023.9], [-3294.94, -2991.64], [-3300.15, -2955.49], [-3320.78, -2954.51], [-3337.55, -2959.09], [-3357.4, -2965.14], [-3377.3, -2978.77], [-3369.43, -2995.2], [-3354.94, -3018.29]]]}}, {"shape": {"outer": [[-130.63, -193.59], [-135.43, -193.37], [-135.4, -191.53], [-135.53, -190.94], [-135.86, -190.5], [-136.42, -190.28], [-137.12, -190.26], [-137.57, -190.46], [-137.98, -190.84], [-138.23, -191.49], [-138.3, -193.2], [-143.56, -193.03], [-144.97, -192.8], [-146.05, -192.28], [-146.85, -191.59], [-157.46, -179.88], [-156.06, -178.57], [-152.97, -178.48], [-149.81, -177.89], [-147.14, -176.86], [-144.85, -175.42], [-143.41, -174.33], [-142.12, -173.11], [-141.03, -171.74], [-140.21, -170.34], [-139.51, -168.81], [-138.94, -167.09], [-138.68, -165.42], [-138.53, -163.76], [-138.44, -161.13], [-138.54, -159.42], [-138.79, -157.86], [-136.52, -158.03], [-137.51, -187.22], [-131.78, -187.41], [-131.82, -189.23], [-130.21, -189.33], [-130.3, -192.13], [-130.63, -193.59]], "holes": [[[-146.02, -181.06], [-146.92, -181.21], [-147.71, -181.64], [-148.28, -182.26], [-148.62, -183.02], [-148.71, -183.85], [-148.54, -184.66], [-148.12, -185.38], [-147.5, -185.94], [-146.74, -186.27], [-145.9, -186.36], [-145.02, -186.15], [-144.26, -185.66], [-143.71, -184.96], [-143.42, -184.1], [-143.45, -183.2], [-143.76, -182.36], [-144.36, -181.67], [-145.14, -181.23], [-146.02, -181.06]]]}}, {"shape": {"outer": [[-185.45, -149.33], [-186.14, -148.28], [-186.55, -147.15], [-186.68, -146.07], [-186.39, -140.63], [-184.02, -140.79], [-183.36, -140.54], [-182.94, -139.96], [-182.92, -139.29], [-183.03, -138.57], [-183.35, -138.09], [-184.0, -137.81], [-186.13, -137.75], [-185.95, -134.4], [-182.81, -134.47], [-179.59, -134.59], [-179.63, -135.7], [-179.66, -136.39], [-178.48, -136.43], [-178.65, -142.27], [-151.02, -143.49], [-151.06, -144.49], [-152.47, -144.02], [-154.44, -143.63], [-157.83, -143.37], [-160.51, -143.62], [-163.03, -144.27], [-165.65, -145.74], [-168.16, -147.84], [-170.09, -150.05], [-171.58, -152.35], [-172.65, -154.76], [-173.24, -157.13], [-173.42, -159.69], [-174.71, -160.9], [-185.45, -149.33]], "holes": [[[-177.46, -147.02], [-178.36, -147.18], [-179.16, -147.64], [-179.71, -148.26], [-180.04, -149.01], [-180.12, -149.84], [-179.95, -150.65], [-179.53, -151.37], [-178.91, -151.92], [-178.16, -152.27], [-177.33, -152.36], [-176.43, -152.16], [-175.65, -151.67], [-175.09, -150.95], [-174.8, -150.08], [-174.83, -149.17], [-175.16, -148.32], [-175.76, -147.62], [-176.55, -147.18], [-177.46, -147.02]]]}}, {"shape": {"outer": [[-176.71, -103.29], [-176.92, -109.07], [-178.71, -108.98], [-178.76, -110.16], [-178.79, -110.88], [-181.96, -110.8], [-181.99, -111.77], [-185.83, -111.63], [-185.61, -105.8], [-183.36, -105.86], [-182.76, -105.68], [-182.4, -105.09], [-182.39, -104.57], [-182.43, -103.83], [-182.88, -103.23], [-183.42, -103.15], [-185.4, -103.09], [-185.14, -96.22], [-171.72, -83.77], [-170.37, -85.4], [-170.53, -86.2], [-170.56, -87.87], [-170.11, -91.48], [-169.0, -94.67], [-167.12, -97.66], [-164.56, -100.02], [-161.12, -101.97], [-158.4, -102.59], [-155.53, -103.12], [-152.1, -103.16], [-149.61, -103.18], [-149.47, -104.66], [-176.71, -103.29]], "holes": [[[-175.3, -92.12], [-176.2, -92.23], [-177.01, -92.63], [-177.71, -93.31], [-178.13, -94.19], [-178.22, -95.17], [-177.97, -96.12], [-177.41, -96.93], [-176.62, -97.51], [-175.67, -97.77], [-174.69, -97.69], [-173.86, -97.34], [-173.19, -96.75], [-172.73, -95.97], [-172.54, -95.09], [-172.64, -94.2], [-173.01, -93.38], [-173.63, -92.72], [-174.41, -92.28], [-175.3, -92.12]]]}}, {"shape": {"outer": [[-96.87, -160.67], [-97.3, -169.68], [-97.04, -172.14], [-96.22, -174.0], [-93.26, -177.81], [-88.72, -181.48], [-84.98, -182.29], [-81.95, -182.53], [-80.89, -183.67], [-93.56, -195.58], [-99.93, -195.24], [-99.85, -194.23], [-100.37, -193.17], [-101.67, -193.09], [-102.45, -193.79], [-102.58, -195.13], [-107.0, -194.95], [-106.92, -193.14], [-106.85, -190.45], [-104.97, -190.52], [-104.9, -188.68], [-98.52, -188.85], [-97.49, -160.65], [-96.87, -160.67]], "holes": [[[-93.53, -184.23], [-94.12, -184.87], [-94.47, -185.66], [-94.55, -186.59], [-94.3, -187.5], [-93.76, -188.27], [-93.0, -188.81], [-92.08, -189.06], [-91.14, -188.98], [-90.29, -188.58], [-89.67, -187.98], [-89.26, -187.22], [-89.12, -186.37], [-89.26, -185.51], [-89.66, -184.74], [-90.28, -184.13], [-91.06, -183.76], [-91.92, -183.64], [-92.77, -183.81], [-93.53, -184.23]]]}}, {"shape": {"outer": [[-54.25, -148.26], [-54.02, -142.68], [-51.5, -142.77], [-51.47, -142.08], [-51.4, -140.57], [-48.88, -140.66], [-46.97, -140.75], [-47.03, -145.35], [-48.96, -145.18], [-49.74, -145.45], [-50.23, -146.45], [-49.97, -147.35], [-49.27, -148.09], [-47.36, -148.25], [-47.43, -153.17], [-48.02, -155.12], [-49.07, -156.54], [-60.61, -166.87], [-61.74, -165.69], [-61.51, -162.93], [-62.14, -159.47], [-64.18, -155.28], [-67.51, -151.77], [-69.78, -149.71], [-71.59, -148.63], [-73.54, -147.96], [-81.77, -147.52], [-81.77, -146.97], [-54.25, -148.26]], "holes": [[[-57.73, -153.75], [-58.52, -154.2], [-59.11, -154.89], [-59.43, -155.7], [-59.48, -156.56], [-59.25, -157.41], [-58.76, -158.12], [-58.07, -158.65], [-57.25, -158.94], [-56.38, -158.94], [-55.55, -158.68], [-54.85, -158.16], [-54.33, -157.42], [-54.09, -156.54], [-54.15, -155.64], [-54.52, -154.81], [-55.13, -154.13], [-55.94, -153.71], [-56.84, -153.57], [-57.73, -153.75]]]}}, {"shape": {"outer": [[-74.89, -107.12], [-71.88, -106.8], [-69.08, -106.01], [-66.0, -104.3], [-63.76, -102.37], [-61.6, -99.69], [-60.28, -97.31], [-59.19, -94.32], [-58.36, -91.4], [-57.0, -90.11], [-46.16, -102.06], [-45.3, -103.7], [-45.09, -105.21], [-45.35, -110.31], [-47.33, -110.28], [-48.13, -110.7], [-48.7, -111.68], [-48.37, -112.59], [-47.48, -113.05], [-45.5, -113.22], [-45.64, -118.02], [-47.94, -117.88], [-47.91, -117.15], [-50.47, -117.04], [-50.42, -115.74], [-50.39, -115.23], [-52.25, -115.16], [-52.0, -109.13], [-80.78, -107.96], [-80.72, -106.86], [-74.89, -107.12]], "holes": [[[-55.36, -98.89], [-56.1, -99.42], [-56.64, -100.15], [-56.9, -101.02], [-56.86, -101.93], [-56.53, -102.79], [-55.94, -103.48], [-55.17, -103.95], [-54.27, -104.13], [-53.37, -104.02], [-52.54, -103.62], [-51.9, -102.99], [-51.49, -102.17], [-51.37, -101.27], [-51.56, -100.37], [-52.03, -99.59], [-52.72, -99.01], [-53.57, -98.67], [-54.48, -98.63], [-55.36, -98.89]]]}}, {"shape": {"outer": [[-92.77, -64.52], [-98.62, -64.33], [-98.54, -62.21], [-99.87, -62.17], [-100.62, -62.14], [-100.51, -59.45], [-102.03, -59.37], [-102.03, -56.49], [-97.35, -56.62], [-97.32, -58.35], [-96.83, -59.38], [-95.9, -59.84], [-95.17, -59.63], [-94.35, -58.87], [-94.29, -56.78], [-89.25, -57.14], [-87.29, -57.62], [-85.8, -58.56], [-75.38, -70.17], [-76.8, -71.53], [-80.75, -71.36], [-83.84, -72.27], [-87.13, -73.69], [-90.08, -76.29], [-92.72, -80.35], [-93.49, -84.5], [-93.91, -92.89], [-94.3, -92.96], [-92.77, -64.52]], "holes": [[[-86.95, -64.06], [-87.72, -64.47], [-88.32, -65.11], [-88.7, -65.95], [-88.76, -66.87], [-88.53, -67.77], [-88.0, -68.53], [-87.25, -69.06], [-86.35, -69.32], [-85.43, -69.27], [-84.57, -68.9], [-83.93, -68.32], [-83.5, -67.55], [-83.33, -66.7], [-83.45, -65.83], [-83.82, -65.06], [-84.44, -64.43], [-85.22, -64.04], [-86.08, -63.9], [-86.95, -64.06]]]}}, {"shape": {"outer": [[-123.73, -58.61], [-123.83, -61.19], [-125.11, -61.17], [-125.88, -61.16], [-125.97, -63.33], [-131.98, -63.16], [-133.28, -91.2], [-135.17, -90.72], [-134.72, -81.28], [-136.41, -77.35], [-139.39, -73.29], [-142.85, -70.67], [-146.78, -69.12], [-150.9, -68.72], [-152.73, -66.98], [-140.74, -56.0], [-138.45, -55.36], [-136.57, -55.12], [-132.07, -55.31], [-132.02, -57.33], [-131.51, -58.21], [-130.79, -58.52], [-129.92, -58.18], [-129.42, -57.48], [-129.24, -55.25], [-123.72, -55.47], [-123.73, -58.61]], "holes": [[[-142.93, -62.55], [-143.36, -63.27], [-143.54, -64.08], [-143.44, -64.93], [-143.06, -65.71], [-142.45, -66.3], [-141.67, -66.68], [-140.82, -66.77], [-139.98, -66.57], [-139.25, -66.11], [-138.72, -65.44], [-138.45, -64.66], [-138.43, -63.83], [-138.69, -63.04], [-139.19, -62.37], [-139.88, -61.89], [-140.68, -61.67], [-141.51, -61.71], [-142.29, -62.01], [-142.93, -62.55]]]}}, {"shape": {"outer": [[464.31, -78.74], [465.32, -77.56], [469.04, -80.56], [480.24, -64.9], [477.06, -61.71], [478.14, -60.49], [482.21, -64.85], [469.36, -82.62], [464.31, -78.74]], "holes": []}}, {"shape": {"outer": [[479.67, -58.01], [484.06, -62.78], [483.28, -63.78], [478.78, -58.84], [479.67, -58.01]], "holes": []}}, {"shape": {"outer": [[-2423.86, 200.23], [-2426.34, 200.32], [-2425.36, 227.18], [-2422.89, 227.1], [-2423.86, 200.23]], "holes": []}}, {"shape": {"outer": [[-2337.93, 248.35], [-2410.87, 250.92], [-2410.76, 253.86], [-2337.83, 251.31], [-2337.93, 248.35]], "holes": []}}, {"shape": {"outer": [[-2316.76, 269.11], [-2315.31, 267.28], [-2320.15, 263.21], [-2328.05, 254.04], [-2329.65, 255.4], [-2321.98, 264.81], [-2316.76, 269.11]], "holes": []}}, {"shape": {"outer": [[-2254.31, 261.69], [-2253.24, 280.31], [-2151.61, 277.96], [-2109.06, 276.99], [-2084.31, 272.93], [-2074.55, 271.19], [-2069.08, 270.0], [-2072.55, 241.5], [-2075.79, 235.92], [-2111.32, 242.84], [-2240.79, 245.97], [-2240.66, 249.63], [-2240.26, 261.25], [-2254.31, 261.69]], "holes": []}}, {"shape": {"outer": [[-2302.83, 268.06], [-2301.96, 270.67], [-2296.45, 268.65], [-2290.47, 264.97], [-2292.32, 262.69], [-2297.7, 266.18], [-2302.83, 268.06]], "holes": []}}, {"shape": {"outer": [[-2704.4, 260.33], [-2724.13, 261.23], [-2723.52, 280.03], [-2703.83, 279.25], [-2704.4, 260.33]], "holes": []}}, {"shape": {"outer": [[-2671.99, 348.98], [-2672.61, 335.47], [-2679.34, 335.78], [-2680.61, 297.63], [-2687.72, 297.48], [-2692.97, 319.12], [-2697.29, 328.16], [-2696.49, 349.97], [-2671.99, 348.98]], "holes": []}}, {"shape": {"outer": [[-2685.47, -1531.82], [-2685.09, -1532.26], [-2664.5, -1555.56], [-2486.85, -1421.44], [-2483.22, -1418.79], [-2465.32, -1440.05], [-2459.73, -1446.79], [-2454.95, -1454.28], [-2452.25, -1459.0], [-2447.02, -1466.41], [-2444.36, -1468.9], [-2442.7, -1470.38], [-2440.72, -1471.65], [-2439.19, -1472.5], [-2434.27, -1473.8], [-2428.03, -1474.26], [-2397.49, -1475.39], [-2362.6, -1476.2], [-2321.13, -1477.48], [-2279.11, -1478.36], [-2240.34, -1479.23], [-2231.0, -1479.48], [-2191.59, -1480.58], [-2189.52, -1481.03], [-2188.36, -1481.45], [-2187.71, -1481.82], [-2186.97, -1482.87], [-2186.39, -1484.08], [-2186.3, -1485.14], [-2186.55, -1487.41], [-2187.31, -1488.85], [-2188.53, -1489.82], [-2191.47, -1491.06], [-2188.51, -1497.5], [-2187.21, -1497.06], [-2186.31, -1496.94], [-2184.94, -1497.17], [-2183.1, -1498.13], [-2182.15, -1499.67], [-2181.7, -1502.3], [-2181.91, -1508.24], [-2183.1, -1541.9], [-2183.22, -1548.59], [-2182.34, -1550.62], [-2182.35, -1552.27], [-2183.39, -1553.8], [-2186.29, -1673.23], [-2186.58, -1680.77], [-2188.06, -1686.49], [-2188.62, -1688.4], [-2189.97, -1689.77], [-2191.36, -1690.07], [-2192.69, -1689.82], [-2195.21, -1691.03], [-2197.63, -1692.59], [-2198.66, -1694.42], [-2199.34, -1696.84], [-2199.21, -1698.98], [-2198.47, -1701.28], [-2197.83, -1702.39], [-2196.11, -1703.77], [-2194.37, -1704.58], [-2191.92, -1705.17], [-2189.78, -1705.28], [-2189.11, -1705.15], [-2184.55, -1709.77], [-2125.56, -1712.18], [-2125.4, -1714.34], [-2124.43, -1716.66], [-2122.85, -1718.32], [-2121.24, -1719.18], [-2119.33, -1719.68], [-2113.03, -1719.81], [-2061.51, -1720.83], [-2064.91, -1812.42], [-2021.29, -1814.45], [-2022.04, -1850.79], [-2022.65, -1856.61], [-2024.29, -1867.42], [-2027.6, -1879.38], [-2028.79, -1881.71], [-2031.85, -1885.01], [-2033.42, -1885.71], [-2034.68, -1885.74], [-2038.39, -1885.79], [-2040.06, -1895.05], [-2035.05, -1896.22], [-2029.76, -1897.71], [-2012.82, -1901.89], [-1990.05, -1911.71], [-1976.94, -1918.59], [-1843.5, -2001.54], [-1827.54, -2010.72], [-1817.83, -2014.59], [-1808.31, -2016.22], [-1800.75, -2016.19], [-1797.35, -2017.19], [-1794.37, -2020.38], [-1789.61, -2037.59], [-1785.22, -2045.89], [-1779.11, -2053.96], [-1778.84, -2058.18], [-1780.67, -2061.87], [-1788.34, -2066.85], [-1792.75, -2070.26], [-1797.28, -2075.03], [-1803.14, -2069.69], [-1804.64, -2060.93], [-1809.39, -2051.12], [-1848.94, -2018.68], [-1893.49, -1984.05], [-1920.87, -1972.61], [-1925.08, -1970.0], [-1934.28, -1964.48], [-1940.84, -1963.0], [-1939.36, -1960.28], [-1942.8, -1958.29], [-1943.53, -1956.27], [-1945.23, -1953.4], [-1948.37, -1950.31], [-1950.44, -1949.21], [-1953.48, -1947.6], [-1958.41, -1946.63], [-1963.44, -1947.04], [-1966.69, -1945.25], [-1965.68, -1943.35], [-2032.23, -1912.98], [-2045.17, -1907.35], [-2060.73, -1900.13], [-2083.31, -1896.9], [-2112.33, -1897.01], [-2195.9, -1914.87], [-2240.63, -1937.98], [-2286.15, -1951.85], [-2306.63, -1969.29], [-2324.82, -1964.83], [-2342.49, -1951.45], [-2352.9, -1938.86], [-2377.43, -1921.92], [-2399.52, -1911.43], [-2403.2, -1909.68], [-2431.86, -1903.95], [-2481.52, -1903.91], [-2516.79, -1907.74], [-2549.89, -1912.18], [-2604.92, -1924.82], [-2618.31, -1923.8], [-2660.69, -1908.45], [-2710.34, -1900.17], [-2792.04, -1884.93], [-2809.59, -1871.42], [-2838.92, -1851.03], [-2852.73, -1828.96], [-2856.23, -1810.11], [-2854.62, -1797.78], [-2850.77, -1786.17], [-2843.06, -1784.8], [-2843.64, -1777.91], [-2844.54, -1770.48], [-2849.43, -1770.91], [-2857.51, -1769.98], [-2868.13, -1765.96], [-2871.39, -1766.5], [-2873.89, -1767.44], [-2897.71, -1737.57], [-2885.06, -1729.64], [-2890.16, -1725.16], [-2892.89, -1722.76], [-2899.26, -1716.76], [-2900.03, -1715.31], [-2900.53, -1713.87], [-2900.41, -1710.19], [-2898.61, -1706.27], [-2707.09, -1543.19], [-2705.58, -1541.91], [-2689.03, -1527.8], [-2685.47, -1531.82]], "holes": [[[-2433.44, -1626.45], [-2436.72, -1667.54], [-2436.44, -1668.55], [-2431.75, -1680.96], [-2424.67, -1699.68], [-2422.22, -1706.08], [-2417.07, -1719.55], [-2403.27, -1776.86], [-2414.5, -1788.89], [-2421.19, -1795.49], [-2421.66, -1798.7], [-2421.43, -1802.58], [-2420.56, -1806.45], [-2418.03, -1813.82], [-2414.22, -1818.74], [-2406.82, -1825.63], [-2402.93, -1834.0], [-2395.33, -1838.29], [-2384.98, -1836.71], [-2373.46, -1837.48], [-2358.55, -1848.98], [-2349.42, -1869.22], [-2333.56, -1873.32], [-2304.03, -1881.83], [-2301.03, -1874.66], [-2294.29, -1858.59], [-2258.99, -1868.06], [-2198.72, -1888.61], [-2198.71, -1899.05], [-2083.36, -1879.61], [-2068.31, -1874.22], [-2065.27, -1839.04], [-2063.8, -1816.93], [-2075.14, -1813.53], [-2090.16, -1809.03], [-2165.28, -1786.52], [-2175.16, -1767.57], [-2187.51, -1743.91], [-2190.91, -1737.4], [-2189.68, -1711.26], [-2199.75, -1702.83], [-2201.37, -1683.94], [-2205.44, -1665.5], [-2231.64, -1624.33], [-2275.42, -1575.51], [-2294.95, -1564.53], [-2309.44, -1552.04], [-2320.84, -1548.12], [-2433.44, -1626.45]]]}}, {"shape": {"outer": [[-2588.87, -2757.87], [-2575.01, -2786.54], [-2556.74, -2809.68], [-2523.08, -2823.71], [-2479.48, -2828.55], [-2445.22, -2832.19], [-2416.8, -2827.9], [-2398.71, -2812.92], [-2382.45, -2789.11], [-2372.44, -2759.42], [-2361.47, -2726.94], [-2312.15, -2623.34], [-2267.2, -2557.98], [-2224.51, -2572.58], [-2186.54, -2610.45], [-2179.27, -2641.84], [-2291.98, -2683.36], [-2319.95, -2687.54], [-2342.56, -2729.89], [-2269.2, -2696.45], [-2194.74, -2672.15], [-2176.82, -2678.51], [-2186.49, -2710.48], [-2201.05, -2730.1], [-2215.52, -2747.11], [-2235.67, -2764.89], [-2270.98, -2782.17], [-2328.92, -2815.25], [-2385.18, -2852.6], [-2416.23, -2912.94], [-2446.11, -2902.43], [-2438.9, -2879.21], [-2422.98, -2861.17], [-2426.77, -2849.55], [-2451.42, -2849.22], [-2518.51, -2845.69], [-2524.23, -2886.42], [-2564.88, -2909.23], [-2612.22, -2942.47], [-2693.19, -2916.99], [-2739.48, -2907.61], [-2780.09, -2903.01], [-2807.79, -2927.51], [-2792.72, -2952.04], [-2777.0, -3001.21], [-2716.8, -3031.63], [-2668.84, -3068.56], [-2622.35, -3037.07], [-2617.46, -3085.22], [-2595.39, -3110.47], [-2604.27, -3129.15], [-2622.39, -3180.33], [-2640.04, -3246.2], [-2624.83, -3287.28], [-2597.59, -3317.7], [-2593.31, -3322.48], [-2637.74, -3317.98], [-2686.48, -3309.6], [-2705.51, -3302.51], [-2724.56, -3295.43], [-2732.93, -3313.06], [-2739.66, -3334.22], [-2745.02, -3352.81], [-2749.15, -3345.26], [-2759.86, -3332.62], [-2772.9, -3320.24], [-2774.05, -3314.39], [-2773.37, -3307.54], [-2765.05, -3295.84], [-2757.44, -3285.91], [-2745.77, -3272.39], [-2742.42, -3265.52], [-2742.01, -3257.36], [-2743.07, -3247.74], [-2746.78, -3236.72], [-2752.4, -3221.74], [-2759.15, -3209.45], [-2766.66, -3196.89], [-2772.79, -3184.28], [-2795.98, -3128.47], [-2751.8, -3104.58], [-2788.73, -3035.66], [-2871.99, -2948.97], [-2759.67, -2827.15], [-2871.97, -2859.54], [-3001.62, -2900.07], [-3020.59, -2901.93], [-3046.44, -2829.13], [-3052.92, -2802.63], [-3000.87, -2802.82], [-2981.24, -2808.33], [-2960.59, -2803.2], [-2788.58, -2756.89], [-2740.32, -2745.17], [-2634.9, -2752.66], [-2588.87, -2757.87]], "holes": []}}, {"shape": {"outer": [[924.82, 269.03], [919.27, 264.0], [928.33, 254.08], [930.73, 254.02], [935.0, 257.9], [924.82, 269.03]], "holes": []}}, {"shape": {"outer": [[-1326.48, 82.66], [-1324.15, 81.9], [-1321.43, 81.6], [-1317.98, 81.75], [-1318.78, 78.71], [-1321.98, 78.68], [-1324.77, 78.94], [-1326.79, 79.44], [-1328.63, 80.12], [-1328.43, 83.56], [-1326.48, 82.66]], "holes": []}}, {"shape": {"outer": [[-1321.9, 85.96], [-1319.23, 85.92], [-1316.59, 86.34], [-1317.33, 83.64], [-1320.88, 83.4], [-1323.57, 83.63], [-1325.9, 84.42], [-1328.34, 85.61], [-1328.13, 88.64], [-1324.67, 86.76], [-1321.9, 85.96]], "holes": []}}, {"shape": {"outer": [[-1324.65, 114.89], [-1322.18, 116.62], [-1318.8, 118.28], [-1315.49, 119.37], [-1311.86, 119.93], [-1309.16, 119.75], [-1307.31, 119.38], [-1308.15, 116.6], [-1311.33, 116.92], [-1315.47, 116.48], [-1319.62, 114.79], [-1323.3, 112.39], [-1327.0, 108.18], [-1327.1, 112.6], [-1324.65, 114.89]], "holes": []}}, {"shape": {"outer": [[-1324.67, 121.13], [-1322.55, 122.21], [-1320.2, 123.25], [-1317.78, 124.12], [-1315.37, 124.59], [-1312.95, 124.88], [-1311.16, 125.0], [-1309.35, 125.03], [-1307.57, 124.8], [-1305.89, 124.4], [-1306.89, 120.9], [-1308.7, 121.28], [-1310.69, 121.5], [-1313.01, 121.52], [-1315.25, 121.22], [-1317.71, 120.56], [-1320.05, 119.62], [-1321.83, 118.68], [-1323.53, 117.61], [-1325.15, 116.46], [-1326.65, 115.26], [-1326.38, 120.18], [-1324.67, 121.13]], "holes": []}}, {"shape": {"outer": [[-1400.59, -214.86], [-1388.85, -215.48], [-1388.16, -202.23], [-1387.0, -202.36], [-1384.7, -213.27], [-1385.14, -223.54], [-1386.7, -229.77], [-1395.94, -229.27], [-1395.93, -231.46], [-1441.67, -229.31], [-1444.18, -228.13], [-1445.72, -226.4], [-1446.4, -224.21], [-1445.82, -224.07], [-1445.98, -222.88], [-1445.27, -222.91], [-1445.16, -221.42], [-1446.53, -221.08], [-1447.84, -212.49], [-1442.44, -212.61], [-1438.98, -212.86], [-1400.59, -214.86]], "holes": [[[-1432.51, -224.06], [-1428.34, -225.05], [-1423.83, -225.57], [-1419.15, -225.55], [-1414.77, -224.91], [-1417.8, -216.87], [-1428.93, -216.23], [-1432.51, -224.06]]]}}, {"shape": {"outer": [[-1422.69, 179.75], [-1421.22, 179.41], [-1420.28, 179.16], [-1419.19, 178.88], [-1377.82, 169.03], [-1354.77, 163.72], [-1347.66, 162.09], [-1346.73, 161.87], [-1345.89, 161.68], [-1340.79, 161.03], [-1336.5, 160.93], [-1331.33, 161.43], [-1328.92, 162.02], [-1329.08, 159.0], [-1329.17, 156.03], [-1329.22, 150.79], [-1328.93, 149.11], [-1328.54, 146.87], [-1329.23, 145.12], [-1329.29, 143.12], [-1329.97, 130.14], [-1330.84, 123.07], [-1371.06, 125.46], [-1371.69, 112.13], [-1371.87, 104.74], [-1373.33, 104.85], [-1375.67, 105.03], [-1376.65, 105.09], [-1377.42, 105.17], [-1378.41, 105.64], [-1379.2, 106.25], [-1379.95, 107.37], [-1381.12, 108.76], [-1382.56, 109.67], [-1384.16, 110.47], [-1385.79, 110.75], [-1387.41, 110.71], [-1389.05, 110.33], [-1390.26, 109.71], [-1391.65, 108.49], [-1393.01, 107.17], [-1394.21, 106.64], [-1395.0, 106.45], [-1396.04, 106.53], [-1396.18, 102.69], [-1398.94, 102.79], [-1400.89, 102.87], [-1400.91, 102.54], [-1403.25, 102.64], [-1403.35, 100.17], [-1406.71, 100.31], [-1409.13, 100.41], [-1408.79, 109.18], [-1408.06, 109.14], [-1407.8, 115.4], [-1409.3, 115.45], [-1409.23, 117.21], [-1410.63, 117.28], [-1409.3, 149.4], [-1411.24, 149.48], [-1411.04, 154.51], [-1410.83, 159.5], [-1430.44, 160.32], [-1430.42, 160.9], [-1433.99, 161.06], [-1435.02, 161.1], [-1435.83, 161.13], [-1435.59, 165.54], [-1436.16, 165.57], [-1436.03, 168.14], [-1435.71, 171.39], [-1435.53, 174.26], [-1434.19, 179.99], [-1433.6, 182.44], [-1422.69, 179.75]], "holes": [[[-1353.85, 142.82], [-1351.14, 142.77], [-1348.72, 142.74], [-1345.31, 142.57], [-1342.17, 142.38], [-1339.87, 142.18], [-1337.48, 141.93], [-1335.34, 141.65], [-1335.32, 142.63], [-1337.45, 142.87], [-1339.92, 143.15], [-1342.21, 143.41], [-1345.24, 143.57], [-1348.77, 143.76], [-1351.16, 143.78], [-1353.83, 143.82], [-1355.63, 143.83], [-1355.68, 142.82], [-1353.85, 142.82]]]}}, {"shape": {"outer": [[-381.7, -342.32], [-376.18, -348.13], [-376.65, -349.62], [-378.21, -351.48], [-387.56, -360.12], [-394.02, -353.45], [-381.7, -342.32]], "holes": [[[-387.73, -354.35], [-386.29, -354.02], [-383.56, -352.57], [-381.27, -349.54], [-381.74, -348.25], [-382.66, -347.39], [-384.58, -348.24], [-385.66, -349.2], [-387.48, -351.18], [-388.48, -352.48], [-388.64, -353.91], [-387.73, -354.35]]]}}, {"shape": {"outer": [[-1366.28, -1320.35], [-1359.17, -1313.83], [-1358.23, -1312.27], [-1357.77, -1310.29], [-1357.84, -1308.64], [-1358.58, -1306.81], [-1359.86, -1305.24], [-1373.23, -1290.31], [-1367.92, -1285.81], [-1354.67, -1300.34], [-1353.63, -1301.15], [-1352.06, -1302.21], [-1350.34, -1302.74], [-1348.34, -1302.68], [-1346.14, -1301.89], [-1339.0, -1295.22], [-1303.35, -1334.24], [-1306.47, -1337.02], [-1306.77, -1337.67], [-1306.71, -1338.58], [-1303.44, -1341.9], [-1326.9, -1363.23], [-1366.28, -1320.35]], "holes": [[[-1320.66, -1336.16], [-1326.94, -1341.87], [-1327.27, -1342.56], [-1327.09, -1343.1], [-1326.72, -1343.57], [-1326.21, -1343.79], [-1325.71, -1343.84], [-1325.23, -1343.61], [-1319.1, -1338.13], [-1318.91, -1337.55], [-1318.88, -1337.01], [-1319.18, -1336.37], [-1319.52, -1336.08], [-1320.11, -1335.93], [-1320.66, -1336.16]], [[-1344.15, -1310.51], [-1350.42, -1316.11], [-1350.72, -1316.7], [-1350.7, -1317.56], [-1350.07, -1318.06], [-1349.06, -1318.16], [-1342.45, -1312.43], [-1342.33, -1311.76], [-1342.44, -1311.08], [-1342.78, -1310.63], [-1343.28, -1310.37], [-1344.15, -1310.51]]]}}, {"shape": {"outer": [[97.51, -264.5], [93.44, -268.21], [94.84, -269.73], [80.74, -282.6], [76.71, -278.21], [94.97, -261.71], [97.51, -264.5]], "holes": [[[79.18, -277.06], [77.57, -278.54], [78.66, -279.73], [80.27, -278.25], [79.18, -277.06]], [[85.22, -272.29], [87.13, -274.49], [90.89, -271.23], [89.04, -269.11], [90.11, -268.19], [89.27, -267.24], [88.14, -268.22], [88.91, -269.09], [85.22, -272.29]]]}}, {"shape": {"outer": [[509.78, -29.12], [515.28, -27.46], [523.31, -25.43], [523.6, -26.5], [521.83, -29.5], [517.65, -34.69], [514.05, -37.74], [510.68, -39.51], [505.3, -40.54], [501.08, -40.26], [497.87, -39.59], [497.14, -39.09], [500.69, -35.66], [504.69, -32.29], [508.11, -30.01], [509.78, -29.12]], "holes": [[[514.97, -29.34], [509.58, -31.6], [507.08, -33.26], [505.24, -35.72], [505.96, -37.44], [508.57, -37.87], [511.77, -37.52], [515.61, -34.11], [518.88, -30.23], [519.34, -29.02], [518.67, -28.25], [514.97, -29.34]]]}}, {"shape": {"outer": [[1202.13, 713.36], [1201.91, 712.43], [1205.31, 711.95], [1205.43, 712.94], [1210.38, 712.27], [1210.7, 711.75], [1210.26, 710.97], [1208.42, 709.79], [1207.06, 708.55], [1204.92, 706.73], [1203.26, 704.84], [1201.59, 702.76], [1200.26, 700.91], [1198.67, 698.36], [1197.08, 695.71], [1195.77, 692.68], [1193.94, 688.34], [1193.0, 683.6], [1192.05, 680.19], [1191.45, 678.98], [1190.43, 678.29], [1188.72, 678.02], [1182.47, 677.78], [1174.93, 677.89], [1174.01, 678.48], [1173.93, 679.09], [1174.56, 681.39], [1174.68, 683.93], [1174.39, 687.25], [1173.34, 690.25], [1172.99, 692.61], [1172.69, 695.75], [1173.36, 699.22], [1174.21, 702.59], [1176.05, 705.74], [1178.35, 708.42], [1181.26, 710.79], [1184.29, 712.21], [1188.39, 713.42], [1192.44, 714.25], [1194.81, 714.28], [1202.13, 713.36]], "holes": [[[1179.27, 694.56], [1178.09, 692.67], [1177.63, 690.67], [1177.96, 688.05], [1178.64, 686.17], [1179.75, 685.57], [1181.81, 684.65], [1184.3, 684.28], [1186.28, 685.19], [1187.46, 686.8], [1188.0, 688.96], [1188.29, 691.56], [1186.91, 693.37], [1184.86, 694.58], [1183.05, 695.28], [1181.31, 695.32], [1179.27, 694.56]]]}}, {"shape": {"outer": [[-1534.91, -9.74], [-1536.01, -9.63], [-1536.88, -9.38], [-1537.43, -8.58], [-1534.12, -5.07], [-1523.65, 4.64], [-1522.88, 4.68], [-1519.36, 8.02], [-1518.44, 8.74], [-1517.41, 9.32], [-1516.26, 9.75], [-1515.06, 10.02], [-1486.17, 8.57], [-1485.8, 7.58], [-1533.65, -9.43], [-1534.91, -9.74]], "holes": [[[-1515.6, 6.29], [-1513.51, 6.21], [-1513.42, 8.44], [-1515.52, 8.52], [-1515.6, 6.29]]]}}, {"shape": {"outer": [[-1620.57, -129.87], [-1657.88, -123.68], [-1657.33, -118.37], [-1657.51, -111.51], [-1657.61, -105.64], [-1655.56, -103.24], [-1653.28, -99.51], [-1645.09, -50.83], [-1644.15, -49.76], [-1595.53, -58.46], [-1596.54, -65.34], [-1629.23, -64.32], [-1629.32, -61.56], [-1630.95, -58.93], [-1633.13, -58.32], [-1635.06, -58.55], [-1637.14, -59.91], [-1638.1, -61.99], [-1638.95, -64.21], [-1639.17, -67.24], [-1639.17, -74.01], [-1638.7, -77.6], [-1637.33, -78.51], [-1635.48, -78.9], [-1616.61, -82.35], [-1620.87, -106.15], [-1626.98, -105.02], [-1630.5, -123.2], [-1619.66, -125.05], [-1620.57, -129.87]], "holes": [[[-1639.17, -57.4], [-1637.11, -57.67], [-1636.85, -55.65], [-1638.9, -55.38], [-1639.17, -57.4]]]}}, {"shape": {"outer": [[-1417.95, 66.5], [-1431.66, 67.12], [-1431.8, 63.99], [-1438.62, 64.27], [-1438.13, 75.65], [-1434.24, 75.48], [-1434.27, 74.67], [-1432.75, 74.61], [-1432.89, 71.32], [-1431.56, 71.26], [-1431.64, 69.61], [-1418.8, 69.02], [-1418.71, 70.71], [-1417.34, 70.65], [-1417.22, 73.62], [-1414.78, 73.51], [-1414.82, 72.55], [-1415.26, 63.26], [-1418.09, 63.36], [-1417.95, 66.5]], "holes": [[[-1435.57, 65.81], [-1432.7, 65.67], [-1432.47, 70.39], [-1435.35, 70.52], [-1435.57, 65.81]]]}}, {"shape": {"outer": [[-1398.71, 55.93], [-1377.92, 54.96], [-1378.15, 50.0], [-1398.89, 51.06], [-1398.71, 55.93]], "holes": [[[-1388.0, 52.71], [-1387.87, 52.94], [-1387.88, 53.29], [-1388.11, 53.56], [-1388.45, 53.63], [-1388.71, 53.54], [-1388.83, 53.41], [-1388.91, 53.25], [-1388.92, 52.98], [-1388.8, 52.74], [-1388.58, 52.59], [-1388.23, 52.58], [-1388.0, 52.71]]]}}, {"shape": {"outer": [[-1672.16, -157.84], [-1675.81, -155.79], [-1676.08, -152.98], [-1675.65, -150.09], [-1674.77, -147.12], [-1673.42, -144.08], [-1671.58, -141.15], [-1664.86, -135.15], [-1661.12, -129.44], [-1654.17, -131.25], [-1650.29, -135.54], [-1634.15, -161.55], [-1636.22, -162.96], [-1648.97, -162.41], [-1648.79, -160.52], [-1650.98, -160.3], [-1651.05, -161.13], [-1654.4, -160.87], [-1657.73, -160.34], [-1661.38, -159.47], [-1662.02, -161.15], [-1667.97, -159.55], [-1672.16, -157.84]], "holes": [[[-1649.17, -145.2], [-1647.02, -145.24], [-1646.98, -143.09], [-1649.14, -143.05], [-1649.17, -145.2]]]}}, {"shape": {"outer": [[-483.44, 108.09], [-483.16, 108.81], [-483.32, 109.66], [-483.94, 110.33], [-465.3, 127.26], [-462.86, 125.01], [-462.21, 124.65], [-461.66, 124.65], [-461.24, 124.93], [-457.34, 128.55], [-461.74, 133.2], [-455.78, 138.7], [-436.38, 117.88], [-436.16, 117.45], [-443.31, 111.33], [-443.79, 110.39], [-443.9, 109.47], [-443.51, 108.62], [-440.31, 104.85], [-436.25, 100.4], [-434.89, 101.48], [-434.21, 101.49], [-433.57, 101.17], [-409.59, 75.52], [-433.4, 53.49], [-434.58, 54.73], [-438.08, 51.56], [-458.86, 74.5], [-455.51, 77.42], [-455.0, 78.13], [-454.91, 79.08], [-455.31, 79.93], [-461.5, 86.3], [-462.85, 87.6], [-463.7, 88.03], [-464.53, 88.06], [-465.23, 87.54], [-468.21, 84.86], [-486.37, 105.43], [-483.44, 108.09]], "holes": [[[-459.48, 95.47], [-459.47, 94.32], [-459.0, 93.35], [-456.49, 90.7], [-454.88, 89.09], [-454.17, 88.74], [-453.22, 88.69], [-452.54, 89.15], [-447.19, 94.05], [-446.4, 94.94], [-446.37, 95.83], [-446.85, 96.62], [-448.17, 97.98], [-450.81, 100.93], [-451.67, 101.48], [-452.76, 101.52], [-453.66, 101.01], [-459.03, 96.44], [-459.48, 95.47]]]}}, {"shape": {"outer": [[2746.54, -1458.02], [2676.63, -1431.66], [2686.46, -1405.45], [2756.41, -1430.42], [2746.54, -1458.02]], "holes": []}}, {"shape": {"outer": [[2219.84, -3183.17], [2383.16, -3192.98], [2419.1, -3194.1], [2419.58, -3081.81], [2258.59, -3078.78], [2258.0, -3131.15], [2218.12, -3130.76], [2219.84, -3183.17]], "holes": []}}, {"shape": {"outer": [[374.3, -2706.87], [367.09, -2671.71], [438.56, -2656.88], [446.42, -2692.36], [374.3, -2706.87]], "holes": []}}, {"shape": {"outer": [[-158.65, 433.03], [-159.63, 432.6], [-160.58, 432.88], [-216.26, 493.91], [-227.74, 506.48], [-231.74, 502.91], [-262.8, 537.32], [-246.73, 540.0], [-229.02, 543.09], [-217.57, 554.53], [-179.95, 564.5], [-135.26, 581.01], [-89.79, 598.62], [-74.3, 606.77], [-35.93, 631.2], [-20.67, 631.02], [-16.32, 639.63], [-6.15, 649.66], [2.49, 658.19], [16.38, 671.89], [22.23, 677.68], [23.29, 683.96], [24.85, 688.73], [26.32, 690.84], [29.05, 694.47], [36.15, 698.19], [42.26, 698.01], [51.74, 708.41], [49.85, 711.08], [49.7, 713.7], [52.89, 718.4], [68.26, 730.82], [66.85, 732.57], [69.32, 735.31], [80.27, 747.39], [88.41, 753.91], [98.21, 759.79], [115.76, 777.8], [136.43, 797.46], [144.41, 816.83], [145.58, 818.89], [158.44, 841.68], [184.23, 880.14], [200.63, 903.62], [225.5, 937.34], [302.83, 853.13], [303.21, 852.72], [249.82, 806.02], [223.57, 835.87], [164.03, 781.81], [162.7, 780.54], [161.41, 777.89], [161.5, 775.18], [162.36, 772.99], [163.93, 771.43], [165.02, 770.79], [166.61, 770.29], [168.23, 769.9], [169.33, 768.67], [184.22, 751.99], [183.46, 751.26], [186.37, 747.83], [186.58, 747.21], [163.3, 725.7], [143.96, 746.91], [118.35, 722.62], [137.36, 702.06], [65.74, 636.97], [48.68, 621.25], [33.61, 607.69], [4.59, 582.14], [-0.28, 577.06], [-49.09, 532.42], [-158.65, 433.03]], "holes": []}}, {"shape": {"outer": [[577.32, 1227.35], [490.56, 1155.53], [481.26, 1165.96], [453.05, 1197.58], [487.44, 1221.22], [502.0, 1234.11], [513.12, 1243.94], [516.06, 1248.76], [519.5, 1254.37], [528.79, 1264.56], [540.87, 1278.68], [552.25, 1264.62], [547.62, 1260.27], [560.03, 1246.78], [577.32, 1227.35]], "holes": []}}, {"shape": {"outer": [[1152.71, 2090.85], [1113.31, 2047.47], [1099.88, 2061.82], [1074.89, 2084.1], [1078.01, 2087.25], [1072.98, 2091.45], [1061.67, 2101.79], [1054.36, 2107.77], [1045.6, 2115.51], [1044.95, 2114.89], [1036.46, 2105.55], [1033.41, 2105.03], [1030.15, 2104.86], [1027.02, 2104.88], [1023.68, 2105.19], [988.61, 2116.39], [956.36, 2126.66], [946.5, 2129.93], [936.05, 2133.37], [933.15, 2134.57], [931.03, 2136.0], [929.3, 2137.91], [928.04, 2139.96], [927.11, 2142.13], [926.92, 2144.67], [932.04, 2239.99], [932.47, 2240.59], [932.06, 2241.64], [928.29, 2242.69], [928.58, 2243.45], [928.05, 2243.97], [927.39, 2243.68], [924.03, 2241.68], [919.6, 2237.79], [916.2, 2157.18], [915.37, 2151.92], [910.15, 2145.8], [907.55, 2140.12], [906.95, 2134.93], [909.22, 2130.92], [912.15, 2127.74], [1009.59, 2097.55], [1020.02, 2093.57], [1024.56, 2090.22], [1026.09, 2087.74], [1026.83, 2085.36], [1025.19, 2061.67], [1018.35, 2032.41], [1014.45, 2011.9], [994.81, 1989.35], [988.02, 1988.57], [980.07, 1992.01], [976.42, 1986.95], [973.03, 1982.26], [958.2, 1959.25], [947.65, 1950.57], [936.61, 1947.35], [925.78, 1951.82], [917.74, 1963.61], [919.36, 1952.65], [917.46, 1942.11], [912.76, 1935.51], [900.96, 1928.46], [894.81, 1938.26], [877.43, 1927.73], [871.53, 1924.16], [862.92, 1920.16], [855.62, 1919.48], [854.27, 1926.49], [845.65, 1933.2], [834.39, 1929.75], [831.99, 1921.21], [837.64, 1910.83], [843.09, 1912.47], [837.83, 1898.64], [831.95, 1894.32], [824.44, 1887.62], [818.69, 1878.15], [892.41, 1817.71], [912.19, 1840.11], [929.14, 1829.29], [1049.88, 1722.54], [1083.57, 1693.05], [1211.07, 1551.59], [1308.33, 1635.96], [1423.34, 1737.42], [1493.09, 1800.78], [1394.87, 1888.18], [1320.89, 1953.99], [1296.27, 1975.9], [1182.16, 2066.64], [1152.71, 2090.85]], "holes": []}}, {"shape": {"outer": [[497.18, 729.07], [631.78, 851.0], [685.99, 791.39], [551.41, 669.15], [497.18, 729.07]], "holes": []}}, {"shape": {"outer": [[1581.1, 421.23], [1586.76, 426.38], [1653.84, 487.52], [1721.88, 550.38], [1729.23, 557.32], [1723.96, 562.71], [1667.7, 623.42], [1661.71, 630.46], [1654.86, 624.23], [1520.14, 501.56], [1511.82, 493.98], [1518.48, 486.98], [1575.73, 427.2], [1581.1, 421.23]], "holes": []}}, {"shape": {"outer": [[2242.85, 823.96], [2215.74, 854.0], [2251.63, 887.13], [2279.01, 856.22], [2276.88, 842.49], [2266.64, 844.19], [2242.85, 823.96]], "holes": []}}, {"shape": {"outer": [[1217.18, 2959.48], [1216.23, 2940.96], [1213.31, 2921.52], [1201.98, 2897.53], [1184.09, 2823.19], [1268.73, 2821.37], [1360.42, 2819.41], [1373.77, 2819.25], [1411.95, 2818.62], [1494.34, 2814.51], [1497.91, 2814.36], [1508.65, 2816.6], [1563.73, 2917.16], [1570.29, 2929.84], [1571.73, 2933.08], [1571.75, 2934.55], [1571.3, 2936.19], [1570.0, 2937.77], [1569.03, 2938.31], [1567.77, 2938.68], [1566.43, 2939.07], [1532.94, 2941.96], [1500.93, 2944.89], [1284.0, 2955.86], [1217.18, 2959.48]], "holes": []}}, {"shape": {"outer": [[2030.64, 2397.16], [2026.17, 2382.7], [2019.03, 2369.96], [2010.3, 2362.16], [2001.9, 2359.36], [1994.54, 2357.71], [1987.61, 2354.62], [1974.11, 2340.72], [1983.2, 2330.5], [2007.78, 2353.79], [2012.61, 2348.02], [2052.41, 2385.13], [2102.91, 2432.7], [2130.14, 2460.8], [2147.34, 2475.46], [2230.76, 2554.84], [2204.15, 2582.4], [2191.36, 2595.65], [2216.53, 2620.72], [2143.84, 2696.83], [2114.0, 2728.07], [2218.7, 2831.44], [2236.96, 2849.47], [2102.33, 2987.14], [2099.16, 2989.3], [2094.93, 2990.45], [2090.01, 2989.46], [2086.3, 2986.21], [2072.0, 2957.13], [2056.89, 2925.19], [2047.66, 2898.84], [2039.21, 2870.08], [2024.44, 2804.07], [2010.73, 2738.31], [1985.17, 2623.98], [1952.85, 2471.78], [1984.02, 2459.24], [2009.65, 2442.67], [2022.28, 2432.97], [2028.36, 2419.41], [2030.64, 2397.16]], "holes": []}}, {"shape": {"outer": [[150.91, 90.07], [210.77, 144.55], [278.08, 69.67], [218.56, 15.44], [150.91, 90.07]], "holes": []}}, {"shape": {"outer": [[2768.25, -2158.2], [2761.26, -2159.39], [2752.21, -2155.88], [2758.84, -2139.96], [2837.18, -2039.9], [2889.6, -1990.41], [2896.67, -1990.23], [2898.62, -2046.69], [2892.62, -2046.74], [2895.25, -2115.99], [2901.01, -2116.08], [2901.31, -2127.34], [2895.14, -2127.75], [2896.21, -2146.52], [2902.04, -2146.51], [2901.14, -2152.2], [2896.72, -2154.46], [2812.98, -2158.03], [2784.51, -2164.73], [2779.17, -2163.76], [2768.25, -2158.2]], "holes": []}}, {"shape": {"outer": [[-2017.27, -926.13], [-2014.81, -923.31], [-2012.04, -922.21], [-1901.68, -925.33], [-1897.94, -926.96], [-1896.7, -930.09], [-1897.78, -985.81], [-1899.5, -989.53], [-1903.0, -991.13], [-2010.15, -988.7], [-2013.75, -986.91], [-2015.6, -983.72], [-2017.27, -926.13]], "holes": []}}, {"shape": {"outer": [[-605.81, -2922.95], [-580.27, -2910.43], [-556.54, -2894.42], [-539.5, -2879.54], [-494.56, -2844.66], [-454.27, -2813.4], [-354.13, -2733.8], [-305.8, -2692.61], [-288.57, -2681.28], [-273.47, -2671.66], [-237.3, -2640.78], [-177.14, -2593.07], [-158.12, -2582.67], [-119.18, -2555.2], [-130.23, -2539.48], [-165.47, -2526.01], [-172.21, -2522.82], [-179.21, -2520.05], [-255.54, -2489.67], [-296.82, -2473.71], [-307.42, -2469.62], [-353.58, -2455.3], [-378.59, -2448.1], [-403.61, -2441.48], [-410.17, -2439.7], [-419.5, -2437.18], [-428.45, -2435.51], [-436.32, -2434.04], [-462.04, -2431.22], [-497.52, -2427.28], [-543.6, -2424.6], [-585.79, -2425.11], [-589.85, -2526.1], [-595.3, -2661.38], [-605.16, -2906.27], [-605.81, -2922.95]], "holes": []}}, {"shape": {"outer": [[1825.32, 1664.35], [1735.48, 1578.03], [1731.97, 1574.8], [1728.71, 1571.64], [1725.94, 1574.64], [1720.24, 1580.11], [1712.63, 1589.06], [1659.08, 1642.5], [1651.34, 1647.06], [1629.56, 1656.32], [1622.17, 1665.16], [1618.64, 1667.61], [1614.58, 1668.62], [1619.28, 1713.21], [1638.35, 1895.54], [1659.66, 1913.25], [1661.27, 1904.11], [1671.39, 1864.79], [1680.18, 1842.77], [1691.18, 1821.06], [1700.49, 1805.0], [1710.74, 1789.23], [1721.37, 1773.48], [1733.71, 1758.39], [1743.6, 1748.03], [1753.89, 1737.96], [1764.76, 1728.26], [1775.8, 1719.02], [1786.78, 1711.33], [1798.08, 1704.09], [1809.42, 1697.05], [1820.84, 1690.22], [1831.46, 1685.11], [1842.17, 1680.45], [1825.32, 1664.35]], "holes": []}}, {"shape": {"outer": [[2813.39, 1396.67], [2791.3, 1393.07], [2733.77, 1376.65], [2727.82, 1374.95], [2719.68, 1372.1], [2660.61, 1351.38], [2643.67, 1331.04], [2591.6, 1269.52], [2497.43, 1156.35], [2490.26, 1149.62], [2485.8, 1145.45], [2480.83, 1140.96], [2406.07, 1073.55], [2375.37, 1045.15], [2371.69, 1041.73], [2329.9, 1085.71], [2328.0, 1087.7], [2322.32, 1093.69], [2315.82, 1087.24], [2306.35, 1078.69], [2332.03, 1055.88], [2352.26, 1025.48], [2370.24, 1008.54], [2379.97, 1003.91], [2380.29, 1003.75], [2389.55, 1003.61], [2405.28, 1012.45], [2446.03, 1047.45], [2462.94, 1058.3], [2469.29, 1062.23], [2470.0, 1067.86], [2480.2, 1075.52], [2488.6, 1081.06], [2509.62, 1101.47], [2510.67, 1102.49], [2517.23, 1109.74], [2522.39, 1118.72], [2529.19, 1127.53], [2542.15, 1132.11], [2599.95, 1206.42], [2644.38, 1263.96], [2662.88, 1284.77], [2676.38, 1298.76], [2687.6, 1308.89], [2702.76, 1320.23], [2726.3, 1333.5], [2751.61, 1348.03], [2810.35, 1369.89], [2828.88, 1376.34], [2830.34, 1397.21], [2826.6, 1397.71], [2823.24, 1398.16], [2813.39, 1396.67]], "holes": []}}, {"shape": {"outer": [[-1435.73, -1339.55], [-1430.66, -1346.51], [-1429.18, -1348.76], [-1427.47, -1352.51], [-1426.34, -1356.69], [-1426.26, -1360.38], [-1426.44, -1365.38], [-1424.58, -1365.81], [-1422.81, -1366.83], [-1421.02, -1368.05], [-1419.39, -1369.53], [-1418.26, -1371.55], [-1417.12, -1373.57], [-1415.73, -1377.83], [-1416.37, -1419.99], [-1417.97, -1490.91], [-1421.59, -1647.72], [-1414.36, -1647.56], [-1411.05, -1581.93], [-1411.3, -1543.02], [-1407.49, -1491.6], [-1407.53, -1480.33], [-1404.29, -1448.44], [-1400.05, -1439.36], [-1394.67, -1430.57], [-1390.78, -1426.3], [-1384.61, -1415.74], [-1380.8, -1413.98], [-1376.74, -1409.78], [-1363.82, -1392.94], [-1351.11, -1384.78], [-1344.76, -1383.9], [-1339.83, -1384.19], [-1336.13, -1383.11], [-1331.5, -1382.74], [-1327.33, -1382.22], [-1321.7, -1382.34], [-1316.13, -1381.94], [-1311.39, -1382.21], [-1298.44, -1382.45], [-1293.41, -1384.66], [-1284.57, -1384.7], [-1270.24, -1386.19], [-1265.09, -1388.28], [-1261.15, -1388.33], [-1257.97, -1388.65], [-1253.55, -1388.01], [-1249.05, -1385.97], [-1244.6, -1382.88], [-1236.34, -1361.44], [-1237.26, -1359.07], [-1234.9, -1352.97], [-1231.15, -1346.45], [-1228.09, -1340.01], [-1217.65, -1321.28], [-1214.35, -1317.02], [-1211.16, -1310.68], [-1204.73, -1305.16], [-1197.64, -1298.39], [-1191.84, -1294.51], [-1179.67, -1285.64], [-1175.02, -1283.14], [-1169.91, -1280.78], [-1164.42, -1277.05], [-1157.07, -1273.37], [-1145.84, -1269.16], [-1139.85, -1268.56], [-1133.93, -1265.76], [-1130.65, -1265.61], [-1127.58, -1264.29], [-1122.31, -1262.36], [-1116.53, -1261.28], [-1105.27, -1258.78], [-1102.38, -1258.14], [-1099.16, -1257.81], [-1096.84, -1258.11], [-1094.95, -1258.53], [-1083.27, -1257.67], [-1061.6, -1258.45], [-1060.41, -1259.33], [-1058.86, -1258.44], [-1057.12, -1258.37], [-1055.73, -1257.33], [-1054.17, -1258.36], [-1052.68, -1258.08], [-1049.71, -1258.75], [-1045.0, -1258.63], [-1035.91, -1258.88], [-1034.83, -1259.52], [-1033.55, -1259.43], [-1031.15, -1259.64], [-1028.77, -1260.14], [-1026.41, -1261.11], [-1020.88, -1260.95], [-1015.37, -1262.07], [-1002.92, -1265.11], [-996.7, -1267.06], [-993.47, -1267.97], [-990.83, -1269.4], [-978.6, -1271.88], [-966.79, -1277.59], [-954.04, -1282.74], [-941.3, -1288.89], [-926.19, -1299.09], [-909.8, -1310.13], [-856.98, -1346.8], [-846.2, -1353.66], [-836.22, -1360.49], [-825.33, -1368.81], [-819.82, -1371.27], [-814.22, -1373.72], [-808.66, -1375.9], [-803.18, -1378.08], [-795.88, -1381.22], [-790.57, -1381.49], [-785.17, -1382.81], [-765.91, -1381.99], [-750.29, -1380.83], [-731.68, -1379.42], [-714.81, -1376.41], [-694.86, -1363.74], [-654.21, -1336.33], [-625.73, -1319.01], [-608.09, -1313.24], [-590.59, -1308.77], [-587.58, -1309.94], [-585.05, -1310.55], [-581.13, -1310.41], [-609.21, -1263.36], [-615.11, -1266.82], [-624.43, -1271.56], [-633.6, -1275.23], [-641.97, -1277.49], [-652.07, -1279.54], [-662.93, -1280.43], [-671.57, -1280.68], [-679.75, -1279.79], [-693.3, -1277.97], [-721.01, -1268.41], [-733.77, -1258.88], [-745.63, -1271.49], [-759.06, -1283.51], [-770.94, -1294.3], [-781.86, -1303.35], [-817.93, -1342.24], [-820.98, -1344.42], [-823.55, -1345.01], [-826.1, -1344.39], [-828.56, -1343.76], [-830.53, -1342.27], [-993.53, -1213.36], [-1043.9, -1173.04], [-1053.75, -1165.99], [-1056.27, -1166.34], [-1059.36, -1168.99], [-1062.64, -1170.97], [-1066.67, -1172.25], [-1070.59, -1172.13], [-1075.05, -1170.57], [-1077.68, -1168.2], [-1080.96, -1164.53], [-1095.13, -1165.2], [-1159.01, -1162.52], [-1173.67, -1164.1], [-1200.97, -1170.65], [-1222.54, -1147.05], [-1259.61, -1179.94], [-1271.54, -1191.36], [-1333.76, -1247.87], [-1377.6, -1287.54], [-1402.73, -1310.14], [-1435.73, -1339.55]], "holes": []}}, {"shape": {"outer": [[-2716.44, 74.81], [-2728.43, 75.55], [-2746.4, 76.69], [-2756.6, 77.06], [-2756.28, 85.83], [-2803.25, 87.53], [-2803.56, 79.1], [-2811.9, 79.41], [-2830.83, 82.73], [-2828.78, 119.98], [-2823.28, 119.86], [-2823.09, 124.65], [-2804.26, 123.85], [-2805.28, 101.3], [-2749.17, 99.45], [-2747.2, 94.37], [-2736.96, 94.05], [-2737.22, 85.55], [-2710.46, 84.73], [-2716.44, 74.81]], "holes": []}}, {"shape": {"outer": [[-2240.79, 245.97], [-2240.66, 249.63], [-2240.26, 261.25], [-2254.31, 261.69], [-2253.24, 280.31], [-2151.61, 277.96], [-2109.06, 276.99], [-2084.31, 272.93], [-2074.55, 271.19], [-2069.08, 270.0], [-2072.55, 241.5], [-2075.79, 235.92], [-2111.32, 242.84], [-2240.79, 245.97]], "holes": []}}, {"shape": {"outer": [[-1617.85, 205.81], [-1612.03, 205.42], [-1612.12, 203.95], [-1602.73, 203.45], [-1589.85, 202.9], [-1589.56, 199.59], [-1590.72, 191.51], [-1591.97, 173.74], [-1597.87, 173.93], [-1613.96, 175.07], [-1622.2, 178.15], [-1621.67, 195.63], [-1617.85, 205.81]], "holes": []}}, {"shape": {"outer": [[-2438.73, 147.2], [-2437.39, 175.99], [-2436.47, 201.24], [-2434.8, 230.22], [-2481.16, 232.01], [-2521.99, 232.13], [-2525.77, 228.68], [-2528.36, 222.73], [-2531.36, 149.4], [-2442.44, 145.63], [-2438.73, 147.2]], "holes": []}}, {"shape": {"outer": [[-2965.99, -5.87], [-3001.33, -4.84], [-3002.31, -36.21], [-3002.31, -39.67], [-2986.7, -40.7], [-2982.79, -40.73], [-2979.5, -39.48], [-2975.31, -36.55], [-2971.84, -33.15], [-2968.66, -29.9], [-2966.97, -26.12], [-2966.45, -21.48], [-2965.99, -5.87]], "holes": []}}, {"shape": {"outer": [[-2906.74, 38.78], [-2937.96, 40.06], [-2939.58, 0.72], [-2927.59, 0.23], [-2926.47, 27.67], [-2907.23, 26.88], [-2906.74, 38.78]], "holes": []}}, {"shape": {"outer": [[-3094.62, -42.72], [-3095.64, -81.2], [-3115.33, -84.44], [-3113.56, -95.91], [-3083.6, -91.5], [-3084.85, -84.69], [-3084.67, -83.45], [-3083.62, -83.04], [-3078.62, -83.21], [-3077.54, -43.03], [-3094.62, -42.72]], "holes": []}}, {"shape": {"outer": [[-3093.16, -25.96], [-3159.3, -23.54], [-3158.44, -2.6], [-3092.17, -4.89], [-3093.16, -25.96]], "holes": []}}, {"shape": {"outer": [[-2006.66, 15.04], [-1967.01, 13.44], [-1968.0, -11.27], [-2001.73, -9.92], [-2007.66, -9.69], [-2006.66, 15.04]], "holes": []}}, {"shape": {"outer": [[-2585.51, -13.09], [-2597.02, -12.65], [-2599.4, -58.57], [-2605.9, -62.36], [-2680.15, -60.01], [-2679.57, -26.95], [-2690.79, -26.81], [-2692.66, -58.3], [-2693.68, -74.79], [-2693.9, -77.62], [-2681.09, -77.78], [-2678.05, -73.93], [-2659.85, -74.25], [-2614.31, -76.27], [-2586.63, -80.21], [-2537.36, -90.62], [-2504.81, -102.94], [-2465.4, -115.84], [-2452.05, -116.68], [-2451.38, -95.62], [-2451.04, -77.54], [-2483.32, -76.53], [-2513.98, -79.63], [-2536.68, -78.57], [-2548.84, -73.63], [-2555.99, -68.42], [-2563.12, -67.83], [-2583.01, -68.45], [-2588.07, -68.22], [-2585.51, -13.09]], "holes": []}}, {"shape": {"outer": [[-2296.01, -61.55], [-2296.22, -67.98], [-2296.5, -76.56], [-2328.36, -75.52], [-2327.88, -60.52], [-2296.01, -61.55]], "holes": []}}, {"shape": {"outer": [[-2325.22, 66.65], [-2328.21, 68.61], [-2331.62, 68.62], [-2331.69, 65.37], [-2331.38, 62.97], [-2329.99, 60.72], [-2327.53, 59.09], [-2323.76, 58.56], [-2318.99, 59.03], [-2314.95, 59.85], [-2310.76, 60.97], [-2310.58, 67.93], [-2319.34, 68.15], [-2319.39, 66.53], [-2325.22, 66.65]], "holes": []}}, {"shape": {"outer": [[-1834.05, -118.13], [-1848.13, -117.53], [-1849.25, -121.02], [-1849.67, -131.23], [-1839.94, -132.15], [-1839.86, -128.79], [-1803.56, -130.08], [-1803.5, -126.09], [-1803.41, -121.44], [-1810.04, -121.38], [-1814.8, -121.07], [-1829.64, -118.24], [-1834.05, -118.13]], "holes": []}}, {"shape": {"outer": [[-1355.87, -1989.21], [-1342.47, -2014.54], [-1345.03, -2021.77], [-1340.61, -2030.15], [-1356.69, -2038.59], [-1360.06, -2032.22], [-1353.52, -2028.79], [-1368.15, -2001.13], [-1373.97, -1990.11], [-1365.19, -1985.51], [-1360.41, -1994.54], [-1359.61, -1994.16], [-1358.7, -1990.69], [-1355.87, -1989.21]], "holes": []}}, {"shape": {"outer": [[-736.16, -1304.75], [-727.33, -1307.59], [-711.21, -1312.77], [-696.53, -1316.16], [-683.46, -1318.44], [-681.12, -1318.85], [-678.32, -1300.29], [-693.02, -1297.74], [-707.35, -1294.15], [-730.03, -1286.45], [-733.1, -1295.78], [-736.16, -1304.75]], "holes": []}}, {"shape": {"outer": [[-465.25, -2843.01], [-437.36, -2821.94], [-428.6, -2816.48], [-417.09, -2806.13], [-394.02, -2789.48], [-330.24, -2736.62], [-297.11, -2708.9], [-280.78, -2697.84], [-269.7, -2689.52], [-245.12, -2673.34], [-208.14, -2645.88], [-183.57, -2620.23], [-129.46, -2576.34], [-120.71, -2588.57], [-109.2, -2603.42], [-136.29, -2613.58], [-198.04, -2663.23], [-199.83, -2677.68], [-221.8, -2695.35], [-211.02, -2708.29], [-270.63, -2754.19], [-216.7, -2812.53], [-132.68, -2800.46], [-110.24, -2804.33], [-108.88, -2795.29], [18.98, -2846.8], [-34.82, -2959.11], [-75.89, -3008.63], [-115.79, -3028.96], [-197.95, -3053.83], [-237.74, -3071.13], [-275.15, -3100.0], [-303.74, -3138.96], [-306.41, -3148.36], [-299.93, -3152.66], [-315.48, -3183.5], [-323.38, -3226.33], [-333.98, -3330.38], [-354.62, -3340.67], [-469.53, -3333.59], [-619.8, -3332.84], [-603.86, -2936.61], [-597.38, -2935.89], [-586.89, -2934.76], [-577.63, -2931.62], [-556.03, -2913.03], [-526.28, -2892.89], [-465.25, -2843.01]], "holes": []}}, {"shape": {"outer": [[-228.31, -813.21], [-221.42, -821.86], [-216.66, -829.96], [-215.94, -835.02], [-237.6, -866.15], [-258.21, -897.69], [-267.02, -909.88], [-275.03, -922.91], [-282.45, -939.02], [-289.07, -952.84], [-345.4, -964.3], [-357.93, -967.3], [-374.17, -972.02], [-381.13, -974.34], [-389.89, -977.65], [-399.94, -981.84], [-410.65, -986.63], [-420.99, -992.16], [-430.3, -997.74], [-436.61, -1001.62], [-443.6, -1006.37], [-455.6, -1015.18], [-469.54, -1025.51], [-497.03, -996.25], [-484.82, -992.51], [-469.79, -986.31], [-455.65, -979.97], [-440.54, -972.93], [-426.31, -964.92], [-413.37, -957.46], [-400.35, -949.83], [-386.85, -940.77], [-373.96, -931.69], [-348.49, -912.94], [-323.26, -894.2], [-299.03, -874.0], [-274.97, -853.76], [-250.86, -833.78], [-228.31, -813.21]], "holes": []}}, {"shape": {"outer": [[-496.35, -2756.96], [-496.71, -2809.39], [-463.77, -2783.45], [-460.12, -2735.52], [-494.5, -2733.67], [-496.35, -2756.96]], "holes": []}}, {"shape": {"outer": [[-1601.53, -3037.03], [-1759.36, -3302.2], [-1756.72, -3302.51], [-1752.03, -3299.15], [-1537.43, -3304.73], [-1537.66, -3312.02], [-1419.34, -3310.21], [-1407.53, -3111.41], [-1408.27, -3083.51], [-1468.12, -3081.57], [-1476.21, -3081.34], [-1489.95, -3072.89], [-1503.75, -3096.46], [-1601.53, -3037.03]], "holes": []}}, {"shape": {"outer": [[-2269.04, -652.62], [-2266.55, -650.77], [-2264.22, -649.04], [-2246.55, -635.32], [-2243.89, -633.23], [-2177.92, -581.41], [-2171.97, -575.42], [-2167.51, -569.17], [-2165.22, -564.13], [-2163.36, -559.07], [-2162.6, -554.8], [-2162.26, -550.31], [-2161.52, -520.91], [-2162.22, -512.77], [-2162.72, -507.0], [-2163.47, -498.41], [-2163.33, -479.65], [-2163.09, -467.15], [-2162.85, -454.8], [-2162.2, -437.58], [-2164.41, -437.65], [-2166.92, -437.68], [-2176.22, -437.81], [-2216.81, -435.61], [-2219.14, -435.56], [-2232.98, -435.25], [-2240.93, -435.06], [-2248.83, -434.68], [-2270.62, -433.64], [-2271.21, -448.32], [-2271.39, -456.92], [-2273.12, -456.87], [-2274.69, -512.21], [-2272.81, -512.32], [-2273.01, -520.4], [-2269.73, -520.39], [-2271.82, -620.58], [-2271.96, -627.14], [-2272.34, -643.79], [-2267.08, -645.64], [-2269.04, -652.62]], "holes": []}}, {"shape": {"outer": [[1333.91, 1838.39], [1326.58, 1843.72], [1318.7, 1849.31], [1314.01, 1841.67], [1310.69, 1834.62], [1308.15, 1826.81], [1306.06, 1817.67], [1305.84, 1811.26], [1306.11, 1803.51], [1307.13, 1795.96], [1309.29, 1787.46], [1312.41, 1779.66], [1320.95, 1783.32], [1329.4, 1787.51], [1327.77, 1791.51], [1325.78, 1798.4], [1324.55, 1805.69], [1324.56, 1813.45], [1326.42, 1822.62], [1329.54, 1830.7], [1333.91, 1838.39]], "holes": []}}, {"shape": {"outer": [[-2379.52, -1348.43], [-2377.8, -1357.71], [-2375.35, -1362.44], [-2372.44, -1368.03], [-2363.61, -1376.47], [-2354.75, -1381.74], [-2341.81, -1385.63], [-2329.96, -1387.54], [-2317.42, -1387.88], [-2315.09, -1387.44], [-2308.5, -1386.17], [-2304.09, -1385.26], [-2301.23, -1384.67], [-2294.31, -1381.74], [-2286.45, -1377.82], [-2281.12, -1372.31], [-2276.06, -1365.26], [-2272.78, -1357.21], [-2271.9, -1351.53], [-2272.0, -1345.21], [-2272.93, -1339.08], [-2275.22, -1332.94], [-2278.8, -1326.85], [-2283.14, -1322.09], [-2287.59, -1318.64], [-2292.32, -1316.52], [-2299.55, -1313.24], [-2308.88, -1310.64], [-2316.89, -1309.0], [-2324.86, -1308.3], [-2333.46, -1308.85], [-2339.49, -1309.98], [-2344.43, -1310.89], [-2352.28, -1313.14], [-2359.92, -1316.69], [-2365.72, -1320.52], [-2370.7, -1325.6], [-2375.17, -1331.52], [-2377.36, -1337.2], [-2378.56, -1340.3], [-2379.52, -1348.43]], "holes": []}}, {"shape": {"outer": [[-1416.11, -1256.23], [-1412.63, -1260.35], [-1426.4, -1271.91], [-1435.44, -1274.49], [-1480.25, -1273.45], [-1479.82, -1254.77], [-1416.11, -1256.23]], "holes": []}}, {"shape": {"outer": [[-1350.33, -1109.61], [-1340.29, -1110.07], [-1332.57, -1103.51], [-1281.35, -1104.23], [-1274.29, -1099.44], [-1272.13, -1103.16], [-1281.74, -1109.12], [-1281.27, -1117.03], [-1305.71, -1116.3], [-1323.24, -1115.34], [-1328.62, -1115.29], [-1337.03, -1117.98], [-1350.88, -1117.57], [-1350.33, -1109.61]], "holes": []}}, {"shape": {"outer": [[-1462.81, -903.7], [-1384.31, -907.21], [-1384.14, -902.19], [-1378.2, -894.71], [-1378.15, -890.31], [-1476.54, -885.23], [-1476.76, -889.16], [-1478.28, -890.64], [-1480.4, -890.67], [-1482.39, -890.69], [-1480.48, -951.7], [-1474.94, -951.52], [-1474.78, -956.56], [-1480.32, -956.72], [-1479.45, -984.58], [-1473.43, -984.64], [-1471.78, -986.31], [-1471.73, -991.83], [-1450.68, -991.99], [-1450.75, -988.68], [-1447.54, -979.24], [-1447.49, -974.56], [-1463.78, -974.14], [-1463.87, -979.59], [-1465.16, -979.83], [-1466.44, -979.07], [-1467.31, -977.46], [-1467.97, -953.22], [-1462.07, -953.36], [-1462.6, -917.87], [-1466.92, -917.77], [-1467.89, -917.13], [-1468.45, -916.02], [-1469.65, -901.74], [-1468.89, -899.88], [-1467.31, -897.55], [-1464.98, -896.34], [-1462.7, -896.93], [-1462.81, -903.7]], "holes": []}}, {"shape": {"outer": [[-1318.53, -984.07], [-1295.83, -984.62], [-1294.06, -910.85], [-1316.75, -910.3], [-1318.53, -984.07]], "holes": []}}, {"shape": {"outer": [[-1123.53, -1008.35], [-1108.97, -995.46], [-1140.81, -959.77], [-1151.44, -969.18], [-1149.84, -970.97], [-1151.69, -972.59], [-1153.77, -974.43], [-1151.64, -976.83], [-1123.53, -1008.35]], "holes": []}}, {"shape": {"outer": [[-1147.72, -883.63], [-1144.9, -877.04], [-1132.99, -875.58], [-1130.29, -871.39], [-1127.7, -872.42], [-1125.33, -867.63], [-1122.13, -861.2], [-1118.91, -861.79], [-1115.8, -860.4], [-1110.25, -848.4], [-1110.86, -845.98], [-1113.0, -843.97], [-1115.28, -843.41], [-1118.91, -845.03], [-1113.72, -834.87], [-1108.33, -837.18], [-1104.56, -839.17], [-1102.57, -841.12], [-1101.48, -843.47], [-1100.85, -846.2], [-1101.15, -849.14], [-1102.4, -852.51], [-1108.36, -866.89], [-1107.92, -867.8], [-1104.56, -869.36], [-1101.57, -864.52], [-1072.66, -877.29], [-1075.08, -882.9], [-1068.83, -885.74], [-1066.81, -881.43], [-1034.12, -896.25], [-1036.16, -900.76], [-1029.07, -903.98], [-1028.28, -904.06], [-1027.6, -903.98], [-1025.88, -903.23], [-1029.19, -899.36], [-1017.59, -889.6], [-1013.93, -892.89], [-1005.57, -883.36], [-1009.82, -881.44], [-1004.24, -868.95], [-1000.05, -870.91], [-999.68, -870.39], [-999.51, -869.68], [-991.61, -872.94], [-991.63, -873.79], [-987.33, -875.4], [-995.51, -891.07], [-999.17, -889.18], [-999.78, -889.0], [-1000.29, -889.32], [-1005.47, -894.59], [-1005.68, -895.39], [-1005.45, -896.14], [-1003.6, -897.81], [-1001.51, -899.41], [-1026.32, -920.99], [-1029.25, -917.67], [-1030.56, -916.78], [-1031.38, -916.94], [-1033.49, -918.45], [-1039.72, -920.82], [-1044.46, -921.26], [-1048.8, -921.22], [-1053.32, -920.22], [-1070.74, -912.33], [-1071.3, -912.33], [-1071.83, -912.68], [-1073.32, -915.77], [-1147.72, -883.63]], "holes": []}}, {"shape": {"outer": [[-1411.82, -1136.25], [-1362.73, -1137.27], [-1362.04, -1103.67], [-1407.56, -1102.73], [-1406.51, -1051.3], [-1398.18, -1051.47], [-1397.96, -1040.45], [-1416.07, -1040.08], [-1416.36, -1054.01], [-1418.92, -1053.96], [-1419.57, -1085.74], [-1417.42, -1085.78], [-1418.31, -1129.11], [-1411.67, -1129.24], [-1411.82, -1136.25]], "holes": []}}, {"shape": {"outer": [[-1437.67, -1111.23], [-1471.57, -1112.33], [-1471.89, -1102.41], [-1476.62, -1102.57], [-1478.58, -1042.6], [-1472.8, -1042.42], [-1472.96, -1037.61], [-1441.52, -1036.58], [-1441.38, -1040.94], [-1429.82, -1040.56], [-1429.74, -1042.79], [-1424.31, -1042.61], [-1422.08, -1110.73], [-1429.13, -1110.95], [-1429.25, -1113.93], [-1424.38, -1114.13], [-1425.11, -1132.07], [-1443.25, -1131.34], [-1442.51, -1113.39], [-1437.77, -1113.58], [-1437.67, -1111.23]], "holes": []}}, {"shape": {"outer": [[-1300.91, -1023.26], [-1300.74, -1009.8], [-1369.67, -1009.54], [-1379.4, -1009.68], [-1395.21, -1010.79], [-1421.19, -1015.45], [-1421.29, -1017.04], [-1394.22, -1021.62], [-1381.03, -1022.5], [-1371.27, -1022.92], [-1300.91, -1023.26]], "holes": []}}, {"shape": {"outer": [[-921.89, -1013.03], [-918.45, -1009.94], [-914.42, -1014.04], [-863.9, -968.81], [-866.92, -965.43], [-860.89, -959.15], [-855.87, -953.41], [-849.26, -957.47], [-844.77, -951.39], [-862.53, -938.09], [-881.03, -925.58], [-923.86, -899.26], [-928.41, -897.99], [-934.83, -907.88], [-938.95, -917.86], [-939.3, -921.5], [-932.1, -929.59], [-930.86, -928.43], [-922.5, -937.27], [-939.08, -952.27], [-942.55, -948.32], [-960.7, -965.01], [-951.44, -975.6], [-953.88, -977.68], [-921.89, -1013.03]], "holes": []}}, {"shape": {"outer": [[-574.22, -1305.51], [-602.62, -1262.71], [-596.68, -1258.83], [-589.68, -1252.66], [-583.79, -1246.03], [-577.43, -1237.89], [-572.58, -1230.58], [-565.57, -1217.88], [-559.1, -1205.95], [-550.08, -1189.49], [-531.03, -1154.58], [-517.39, -1129.3], [-503.78, -1104.04], [-499.26, -1096.87], [-495.9, -1091.68], [-492.37, -1086.94], [-487.41, -1079.9], [-481.46, -1072.77], [-478.42, -1069.47], [-465.63, -1055.63], [-460.11, -1050.3], [-454.44, -1045.13], [-448.58, -1040.13], [-442.66, -1035.49], [-437.4, -1031.56], [-430.48, -1026.83], [-423.82, -1022.43], [-416.87, -1018.3], [-402.76, -1010.71], [-393.46, -1006.37], [-385.72, -1003.01], [-377.81, -999.99], [-369.25, -996.94], [-360.69, -994.32], [-352.2, -992.33], [-343.76, -990.59], [-336.1, -989.24], [-328.43, -988.36], [-323.75, -987.9], [-319.13, -987.92], [-314.15, -988.07], [-309.77, -988.79], [-307.28, -989.63], [-304.99, -990.73], [-302.8, -991.94], [-300.69, -993.46], [-298.89, -995.51], [-297.48, -997.69], [-296.42, -1000.08], [-295.94, -1001.77], [-295.64, -1003.93], [-295.58, -1006.1], [-295.84, -1008.6], [-296.57, -1011.44], [-297.51, -1013.77], [-299.12, -1016.97], [-302.56, -1024.84], [-323.79, -1012.01], [-343.39, -1011.09], [-345.6, -1010.05], [-354.39, -1010.09], [-360.23, -1012.03], [-374.16, -1014.55], [-390.44, -1022.3], [-396.9, -1025.43], [-400.32, -1028.06], [-404.17, -1029.1], [-412.58, -1037.02], [-416.44, -1038.89], [-418.58, -1040.81], [-423.11, -1043.43], [-424.5, -1045.29], [-430.64, -1050.75], [-435.27, -1056.64], [-436.55, -1058.16], [-442.16, -1066.43], [-446.77, -1071.55], [-450.54, -1076.92], [-461.59, -1093.07], [-468.69, -1106.0], [-474.16, -1117.0], [-475.3, -1119.01], [-477.05, -1122.65], [-483.18, -1128.28], [-485.8, -1133.11], [-488.24, -1137.22], [-498.12, -1156.37], [-506.74, -1172.54], [-513.39, -1186.89], [-514.99, -1190.17], [-517.98, -1200.56], [-519.51, -1209.3], [-522.23, -1214.59], [-522.53, -1218.23], [-524.61, -1223.79], [-527.32, -1228.31], [-529.05, -1231.96], [-528.27, -1233.99], [-530.63, -1239.09], [-532.32, -1243.21], [-533.25, -1243.59], [-535.39, -1247.69], [-536.68, -1251.62], [-539.75, -1257.65], [-546.87, -1267.47], [-554.37, -1279.54], [-561.82, -1292.59], [-562.81, -1293.08], [-563.76, -1292.42], [-565.65, -1293.45], [-568.77, -1298.77], [-571.47, -1302.21], [-574.22, -1305.51]], "holes": []}}, {"shape": {"outer": [[-1076.6, -576.91], [-1070.19, -577.23], [-1049.91, -578.33], [-1049.52, -578.23], [-1049.39, -577.75], [-1048.95, -569.5], [-1030.43, -570.7], [-1030.92, -579.67], [-1002.68, -581.17], [-1002.06, -569.6], [-988.52, -570.32], [-975.82, -571.11], [-976.43, -582.31], [-957.96, -583.29], [-950.58, -583.83], [-951.16, -592.11], [-957.26, -591.86], [-966.19, -592.45], [-965.86, -593.36], [-958.69, -595.02], [-959.36, -598.96], [-957.93, -599.85], [-951.72, -600.09], [-952.63, -616.35], [-958.78, -616.44], [-968.72, -633.04], [-974.23, -629.06], [-982.83, -642.1], [-983.87, -658.71], [-990.61, -670.08], [-996.95, -666.36], [-1002.91, -676.4], [-958.03, -702.84], [-984.29, -721.69], [-983.92, -718.09], [-1015.48, -716.43], [-1008.36, -689.26], [-1018.01, -678.69], [-1030.66, -674.41], [-1030.87, -679.38], [-1076.54, -677.4], [-1076.29, -671.44], [-1081.91, -671.2], [-1081.72, -664.14], [-1076.6, -576.91]], "holes": []}}, {"shape": {"outer": [[-1014.92, -29.42], [-994.41, -30.4], [-990.71, -30.6], [-989.98, -15.65], [-1002.9, -15.01], [-1002.97, -16.31], [-1014.25, -15.75], [-1014.58, -22.67], [-1014.92, -29.42]], "holes": []}}, {"shape": {"outer": [[-1500.08, 31.61], [-1498.84, 58.43], [-1509.8, 58.85], [-1510.53, 58.75], [-1511.37, 58.8], [-1512.16, 59.1], [-1512.64, 59.54], [-1513.09, 60.12], [-1513.28, 60.83], [-1513.27, 61.87], [-1513.13, 64.19], [-1514.29, 64.26], [-1515.34, 64.3], [-1521.69, 64.55], [-1522.86, 34.94], [-1523.05, 32.42], [-1518.83, 32.3], [-1517.05, 32.24], [-1515.36, 32.16], [-1514.91, 32.15], [-1512.63, 32.32], [-1511.95, 32.32], [-1500.08, 31.61]], "holes": []}}, {"shape": {"outer": [[2110.41, 1423.55], [2105.94, 1417.5], [2101.93, 1411.16], [2098.26, 1405.28], [2099.6, 1404.42], [2102.61, 1405.64], [2121.09, 1424.77], [2139.16, 1439.89], [2151.97, 1449.89], [2178.76, 1469.21], [2204.36, 1486.04], [2208.49, 1489.11], [2209.73, 1490.71], [2210.01, 1493.19], [2209.12, 1496.05], [2204.91, 1500.65], [2187.68, 1521.7], [2184.9, 1523.52], [2182.76, 1523.44], [2179.05, 1523.06], [2177.15, 1521.6], [2175.44, 1519.95], [2171.88, 1514.82], [2131.79, 1448.94], [2127.79, 1441.81], [2125.14, 1438.05], [2122.75, 1435.09], [2117.1, 1430.22], [2110.41, 1423.55]], "holes": []}}, {"shape": {"outer": [[2616.86, 1812.37], [2637.61, 1784.9], [2694.16, 1822.39], [2719.97, 1835.16], [2731.71, 1840.6], [2728.32, 1840.59], [2700.49, 1833.75], [2640.3, 1818.35], [2616.86, 1812.37]], "holes": []}}, {"shape": {"outer": [[-1503.66, -3093.18], [-1590.94, -3041.56], [-1588.76, -3037.58], [-1589.35, -3035.61], [-1597.74, -3030.58], [-1592.37, -3022.45], [-1570.22, -3035.61], [-1558.5, -3046.08], [-1555.86, -3041.91], [-1502.36, -3074.48], [-1500.73, -3071.26], [-1582.37, -3022.64], [-1572.75, -3003.21], [-1570.09, -3000.37], [-1568.11, -2999.77], [-1566.07, -2999.78], [-1563.54, -3000.52], [-1482.82, -3048.83], [-1478.3, -3051.54], [-1503.66, -3093.18]], "holes": []}}, {"shape": {"outer": [[-2659.28, -1881.75], [-2668.58, -1878.18], [-2678.31, -1874.45], [-2649.42, -1801.01], [-2630.94, -1808.28], [-2659.28, -1881.75]], "holes": []}}, {"shape": {"outer": [[-2198.71, -1899.05], [-2198.72, -1888.61], [-2258.99, -1868.06], [-2294.29, -1858.59], [-2301.03, -1874.66], [-2304.03, -1881.83], [-2286.72, -1886.7], [-2229.42, -1903.08], [-2221.72, -1900.79], [-2211.94, -1901.32], [-2198.71, -1899.05]], "holes": []}}, {"shape": {"outer": [[-322.3, 311.77], [-309.11, 297.62], [-279.4, 324.41], [-296.88, 343.04], [-304.76, 335.98], [-300.55, 331.32], [-322.3, 311.77]], "holes": []}}, {"shape": {"outer": [[1049.44, 165.67], [1056.73, 134.54], [1068.97, 139.39], [1090.4, 141.16], [1109.53, 145.83], [1126.0, 148.68], [1135.97, 148.63], [1140.55, 151.1], [1141.68, 152.5], [1148.03, 156.01], [1155.61, 157.29], [1163.4, 156.81], [1164.45, 152.39], [1168.21, 150.55], [1168.82, 148.01], [1170.16, 147.07], [1180.0, 150.72], [1186.52, 155.48], [1197.27, 158.02], [1202.81, 159.68], [1208.32, 162.43], [1211.22, 163.75], [1215.02, 164.14], [1220.3, 165.47], [1228.44, 168.26], [1235.92, 172.78], [1245.29, 176.54], [1254.65, 179.82], [1223.5, 219.68], [1212.36, 208.82], [1199.52, 199.16], [1157.21, 189.04], [1049.44, 165.67]], "holes": []}}, {"shape": {"outer": [[633.31, -65.32], [662.01, -56.84], [676.28, -51.39], [715.18, -33.09], [705.92, -5.63], [696.38, -9.82], [685.28, -14.71], [673.31, -19.57], [673.23, -20.02], [660.75, -25.52], [648.69, -28.6], [624.42, -35.37], [625.77, -39.91], [630.95, -57.21], [633.31, -65.32]], "holes": []}}, {"shape": {"outer": [[466.95, 214.93], [519.65, 154.43], [580.53, 213.48], [556.29, 222.0], [514.94, 258.0], [466.95, 214.93]], "holes": []}}, {"shape": {"outer": [[441.35, 77.24], [481.91, 115.36], [521.87, 71.64], [479.29, 33.42], [441.35, 77.24]], "holes": []}}, {"shape": {"outer": [[603.02, -50.72], [614.73, -64.95], [533.91, -130.94], [533.18, -137.78], [534.29, -140.72], [533.19, -141.61], [529.14, -144.54], [524.15, -148.42], [523.28, -149.03], [520.46, -145.68], [509.25, -153.58], [502.68, -149.88], [524.55, -122.4], [526.3, -120.51], [528.31, -118.68], [530.75, -116.78], [556.89, -94.87], [553.59, -90.99], [603.02, -50.72]], "holes": []}}, {"shape": {"outer": [[-494.02, -2560.41], [-493.73, -2580.89], [-485.87, -2581.11], [-475.51, -2585.76], [-473.45, -2590.18], [-456.74, -2587.18], [-456.56, -2580.65], [-435.84, -2574.7], [-423.33, -2565.46], [-420.34, -2567.73], [-405.94, -2553.32], [-401.19, -2539.95], [-398.69, -2529.13], [-427.86, -2524.82], [-433.93, -2538.15], [-444.35, -2550.93], [-457.6, -2555.78], [-475.49, -2554.4], [-487.91, -2560.58], [-494.02, -2560.41]], "holes": []}}, {"shape": {"outer": [[-395.19, -2504.34], [-383.88, -2500.37], [-379.28, -2492.65], [-375.07, -2482.76], [-356.46, -2489.39], [-352.38, -2484.27], [-336.12, -2496.94], [-326.4, -2508.54], [-318.91, -2522.25], [-316.4, -2533.43], [-313.87, -2544.62], [-320.08, -2547.93], [-319.16, -2561.46], [-326.81, -2569.09], [-326.57, -2576.06], [-358.41, -2573.41], [-358.61, -2565.13], [-369.54, -2564.82], [-368.97, -2544.79], [-374.37, -2535.06], [-383.0, -2530.89], [-380.65, -2525.29], [-392.03, -2516.17], [-395.19, -2504.34]], "holes": []}}, {"shape": {"outer": [[-400.78, -2191.26], [-430.29, -2189.97], [-468.64, -2188.31], [-471.44, -2188.19], [-515.61, -2186.28], [-516.61, -2233.95], [-517.62, -2282.04], [-471.81, -2284.42], [-422.68, -2286.98], [-405.62, -2287.87], [-405.3, -2281.46], [-401.22, -2199.97], [-400.78, -2191.26]], "holes": []}}, {"shape": {"outer": [[2165.67, 2423.11], [2171.95, 2429.19], [2274.57, 2518.32], [2277.58, 2515.27], [2337.39, 2454.65], [2390.49, 2400.82], [2415.83, 2427.44], [2430.78, 2412.35], [2437.9, 2405.53], [2443.43, 2399.7], [2515.35, 2327.44], [2521.54, 2317.8], [2400.99, 2199.21], [2392.13, 2190.49], [2383.46, 2198.59], [2365.85, 2217.54], [2313.74, 2271.27], [2306.26, 2278.94], [2301.31, 2283.94], [2269.44, 2316.43], [2255.52, 2330.94], [2243.02, 2343.98], [2235.81, 2351.49], [2230.45, 2357.1], [2219.89, 2368.15], [2219.11, 2368.96], [2173.77, 2413.44], [2171.29, 2415.87], [2165.67, 2423.11]], "holes": []}}, {"shape": {"outer": [[2277.11, 2428.17], [2295.4, 2410.67], [2281.01, 2396.27], [2308.56, 2365.9], [2270.4, 2329.53], [2224.98, 2376.95], [2277.11, 2428.17]], "holes": []}}, {"shape": {"outer": [[2366.81, 2230.6], [2389.3, 2253.48], [2362.47, 2278.61], [2340.9, 2257.46], [2366.81, 2230.6]], "holes": []}}, {"shape": {"outer": [[2950.26, 1976.2], [2951.04, 1995.98], [3152.84, 2134.23], [3162.54, 2121.77], [2950.26, 1976.2]], "holes": []}}, {"shape": {"outer": [[2855.14, 1910.73], [2934.25, 1964.75], [2929.83, 1981.0], [2873.06, 1942.0], [2855.53, 1924.65], [2855.14, 1910.73]], "holes": []}}, {"shape": {"outer": [[-613.68, -2096.99], [-612.0, -2099.94], [-611.23, -2103.42], [-612.07, -2132.91], [-601.38, -2133.13], [-553.16, -2134.12], [-530.81, -2013.84], [-571.59, -2053.46], [-575.14, -2055.78], [-608.57, -2077.66], [-613.23, -2077.46], [-613.68, -2096.99]], "holes": []}}, {"shape": {"outer": [[243.98, -2442.19], [307.63, -2407.64], [277.96, -2353.93], [214.8, -2389.54], [243.98, -2442.19]], "holes": []}}, {"shape": {"outer": [[-1990.37, -2124.88], [-1975.1, -2126.19], [-1976.39, -2119.95], [-1987.41, -2119.19], [-1990.37, -2124.88]], "holes": []}}, {"shape": {"outer": [[-2316.84, -1886.33], [-2318.38, -1890.94], [-2316.77, -1896.56], [-2261.5, -1912.9], [-2259.32, -1912.44], [-2257.37, -1912.04], [-2254.0, -1910.38], [-2252.63, -1905.76], [-2260.41, -1903.44], [-2294.44, -1893.27], [-2316.84, -1886.33]], "holes": []}}, {"shape": {"outer": [[-2423.75, -1874.68], [-2424.71, -1883.21], [-2367.1, -1886.46], [-2366.8, -1876.87], [-2396.42, -1875.17], [-2423.75, -1874.68]], "holes": []}}, {"shape": {"outer": [[-2030.38, -1876.81], [-2025.78, -1837.63], [-2062.71, -1833.02], [-2066.37, -1870.83], [-2030.38, -1876.81]], "holes": []}}, {"shape": {"outer": [[-3078.71, -1552.83], [-3122.7, -1588.58], [-3119.21, -1592.85], [-3123.51, -1596.35], [-3093.72, -1632.72], [-3100.74, -1638.45], [-3089.86, -1651.73], [-3042.18, -1612.96], [-3077.17, -1570.24], [-3069.54, -1564.03], [-3078.71, -1552.83]], "holes": []}}, {"shape": {"outer": [[-193.53, 481.2], [-181.22, 467.52], [-145.11, 500.82], [-157.26, 515.05], [-193.53, 481.2]], "holes": []}}, {"shape": {"outer": [[-2863.13, -1716.43], [-2850.41, -1706.68], [-2842.26, -1697.32], [-2834.42, -1683.17], [-2818.07, -1691.66], [-2826.98, -1707.26], [-2835.44, -1717.93], [-2842.63, -1724.42], [-2853.34, -1729.95], [-2863.13, -1716.43]], "holes": []}}, {"shape": {"outer": [[-2279.84, -1545.23], [-2265.62, -1557.96], [-2236.89, -1526.11], [-2251.11, -1513.37], [-2279.84, -1545.23]], "holes": []}}, {"shape": {"outer": [[-2383.1, -1506.13], [-2384.52, -1511.95], [-2370.75, -1515.13], [-2367.77, -1516.06], [-2363.96, -1517.43], [-2357.68, -1519.81], [-2350.98, -1523.23], [-2341.27, -1528.69], [-2327.77, -1536.7], [-2321.15, -1540.58], [-2314.69, -1544.7], [-2302.13, -1553.2], [-2290.11, -1563.38], [-2283.12, -1563.07], [-2294.91, -1552.71], [-2309.21, -1542.06], [-2355.13, -1514.13], [-2383.1, -1506.13]], "holes": []}}, {"shape": {"outer": [[-2226.25, -1535.18], [-2211.95, -1548.02], [-2242.51, -1581.8], [-2256.8, -1568.96], [-2226.25, -1535.18]], "holes": []}}, {"shape": {"outer": [[299.62, -2329.0], [301.37, -2313.8], [352.38, -2267.43], [380.82, -2293.29], [378.49, -2303.52], [369.4, -2311.25], [364.69, -2307.57], [320.23, -2349.85], [299.62, -2329.0]], "holes": []}}, {"shape": {"outer": [[449.82, -2444.36], [454.54, -2447.76], [474.55, -2420.66], [482.5, -2417.62], [480.5, -2411.03], [472.73, -2415.16], [468.94, -2417.88], [449.82, -2444.36]], "holes": []}}, {"shape": {"outer": [[-1786.58, 50.53], [-1790.16, 30.63], [-1790.68, 28.58], [-1790.88, 27.02], [-1792.86, 16.74], [-1792.1, 15.78], [-1754.94, 9.33], [-1754.55, 11.39], [-1747.51, 10.03], [-1747.42, 10.54], [-1745.82, 21.33], [-1756.94, 23.49], [-1761.63, 25.08], [-1759.4, 40.73], [-1761.49, 41.37], [-1764.75, 42.91], [-1764.08, 47.61], [-1786.38, 51.86], [-1786.58, 50.53]], "holes": []}}, {"shape": {"outer": [[-2430.51, 299.31], [-2433.52, 295.99], [-2435.57, 291.99], [-2436.51, 287.61], [-2436.3, 283.13], [-2434.93, 278.87], [-2432.51, 275.08], [-2429.2, 272.05], [-2425.21, 269.97], [-2420.83, 268.99], [-2416.34, 269.15], [-2412.04, 270.47], [-2407.89, 273.12], [-2404.65, 276.83], [-2402.59, 281.29], [-2401.88, 286.15], [-2402.57, 291.02], [-2404.61, 295.49], [-2407.83, 299.2], [-2411.97, 301.88], [-2416.69, 303.28], [-2421.62, 303.3], [-2426.35, 301.95], [-2430.51, 299.31]], "holes": []}}, {"shape": {"outer": [[-1591.42, -507.26], [-1584.0, -507.55], [-1584.82, -523.58], [-1584.69, -524.95], [-1583.42, -526.47], [-1581.4, -527.45], [-1571.44, -527.83], [-1571.51, -532.41], [-1582.13, -532.13], [-1584.02, -532.67], [-1571.01, -539.63], [-1565.87, -540.71], [-1507.76, -543.21], [-1507.85, -548.4], [-1508.65, -556.12], [-1508.81, -561.47], [-1573.07, -558.49], [-1578.21, -556.79], [-1611.43, -539.48], [-1609.12, -535.15], [-1608.76, -525.36], [-1607.15, -522.24], [-1592.94, -528.89], [-1591.42, -507.26]], "holes": []}}, {"shape": {"outer": [[-1407.95, -495.5], [-1415.8, -495.19], [-1415.76, -492.93], [-1423.16, -484.57], [-1426.57, -484.47], [-1428.63, -484.96], [-1429.68, -486.54], [-1429.9, -492.17], [-1462.65, -490.6], [-1461.66, -469.5], [-1441.77, -470.49], [-1441.88, -475.07], [-1439.06, -475.37], [-1420.43, -475.91], [-1418.18, -476.57], [-1416.16, -477.26], [-1414.25, -478.51], [-1412.59, -479.84], [-1411.02, -481.39], [-1409.33, -483.43], [-1408.26, -486.05], [-1407.7, -488.33], [-1407.78, -491.63], [-1407.95, -495.5]], "holes": []}}, {"shape": {"outer": [[-1420.08, -580.44], [-1419.81, -574.34], [-1358.34, -577.05], [-1358.65, -583.95], [-1361.36, -583.83], [-1361.59, -589.08], [-1392.75, -587.71], [-1392.49, -581.65], [-1420.08, -580.44]], "holes": []}}, {"shape": {"outer": [[-1866.94, -383.72], [-1846.83, -384.58], [-1846.9, -387.5], [-1842.81, -387.66], [-1835.46, -387.95], [-1836.87, -423.92], [-1822.04, -424.49], [-1823.31, -435.37], [-1826.79, -441.41], [-1865.58, -422.18], [-1864.38, -418.37], [-1868.12, -416.98], [-1866.94, -383.72]], "holes": []}}, {"shape": {"outer": [[-2413.02, -728.84], [-2407.94, -727.45], [-2402.47, -725.69], [-2396.7, -722.97], [-2391.15, -719.91], [-2384.27, -715.84], [-2377.34, -709.86], [-2371.48, -703.63], [-2368.15, -699.49], [-2365.43, -695.33], [-2365.46, -693.5], [-2365.74, -693.14], [-2374.65, -686.35], [-2372.0, -681.04], [-2367.31, -683.06], [-2367.04, -682.95], [-2366.83, -682.77], [-2367.46, -672.13], [-2373.09, -669.48], [-2371.66, -665.36], [-2369.3, -658.88], [-2367.12, -653.1], [-2365.16, -647.76], [-2363.76, -644.01], [-2357.34, -657.96], [-2356.83, -658.43], [-2356.11, -658.54], [-2351.8, -658.71], [-2352.48, -699.21], [-2352.62, -708.02], [-2355.51, -708.46], [-2356.16, -708.61], [-2356.42, -709.22], [-2356.3, -709.97], [-2351.67, -716.03], [-2355.83, -719.36], [-2360.72, -723.26], [-2362.6, -720.95], [-2366.85, -724.84], [-2369.45, -727.09], [-2373.88, -730.45], [-2376.67, -732.56], [-2381.63, -735.76], [-2384.28, -737.34], [-2389.46, -739.95], [-2387.38, -743.89], [-2392.11, -748.07], [-2396.7, -752.12], [-2403.11, -747.65], [-2404.08, -747.22], [-2407.99, -748.1], [-2413.02, -728.84]], "holes": []}}, {"shape": {"outer": [[-2544.79, -757.32], [-2520.16, -758.0], [-2492.7, -758.93], [-2492.91, -764.86], [-2493.02, -767.82], [-2493.29, -780.07], [-2493.89, -791.53], [-2496.1, -791.58], [-2496.05, -793.99], [-2518.37, -800.94], [-2527.73, -802.03], [-2532.0, -801.18], [-2535.95, -798.29], [-2538.95, -795.36], [-2541.27, -792.22], [-2542.6, -788.56], [-2542.76, -784.48], [-2542.59, -775.15], [-2542.38, -768.05], [-2542.42, -767.19], [-2543.19, -766.57], [-2545.0, -766.63], [-2546.97, -766.51], [-2546.88, -761.8], [-2546.77, -756.08], [-2546.23, -756.19], [-2544.79, -757.32]], "holes": []}}, {"shape": {"outer": [[-1113.14, -406.93], [-1090.19, -408.13], [-1091.26, -428.48], [-1101.31, -427.96], [-1102.49, -428.56], [-1103.43, -429.46], [-1103.86, -430.74], [-1104.51, -442.75], [-1104.21, -444.11], [-1103.47, -445.63], [-1102.32, -446.76], [-1100.45, -447.44], [-1090.08, -448.02], [-1090.49, -455.3], [-1094.58, -455.07], [-1094.89, -460.63], [-1114.58, -459.53], [-1114.36, -455.56], [-1114.79, -454.59], [-1116.16, -454.05], [-1117.49, -453.99], [-1118.68, -454.22], [-1119.29, -454.91], [-1119.93, -458.91], [-1120.87, -460.8], [-1122.97, -463.0], [-1125.66, -464.34], [-1129.18, -464.94], [-1132.75, -464.01], [-1135.66, -461.79], [-1137.76, -458.4], [-1138.11, -455.11], [-1137.29, -452.1], [-1135.54, -449.21], [-1132.88, -447.12], [-1129.61, -446.03], [-1116.39, -447.35], [-1114.92, -446.98], [-1112.63, -445.43], [-1111.91, -444.2], [-1110.81, -423.01], [-1112.38, -422.93], [-1111.96, -414.87], [-1113.55, -414.79], [-1113.14, -406.93]], "holes": []}}, {"shape": {"outer": [[-1971.31, -361.91], [-1949.22, -362.99], [-1906.6, -364.42], [-1906.8, -368.66], [-1904.53, -368.77], [-1904.93, -380.64], [-1907.41, -381.48], [-1907.6, -384.54], [-1908.48, -386.5], [-1911.1, -388.78], [-1912.11, -388.92], [-1913.08, -389.23], [-1913.99, -389.7], [-1914.81, -390.31], [-1915.51, -391.05], [-1916.08, -391.89], [-1916.5, -392.82], [-1916.76, -393.8], [-1916.85, -394.82], [-1916.78, -395.83], [-1916.54, -396.83], [-1920.1, -396.73], [-1939.87, -389.0], [-1962.71, -378.02], [-1971.55, -369.53], [-1971.31, -361.91]], "holes": []}}, {"shape": {"outer": [[-1629.42, -434.34], [-1630.14, -453.66], [-1675.42, -451.98], [-1675.17, -445.29], [-1680.29, -445.1], [-1679.87, -433.83], [-1677.88, -433.9], [-1677.82, -432.55], [-1629.42, -434.34]], "holes": []}}, {"shape": {"outer": [[-1851.99, -514.45], [-1858.65, -514.28], [-1859.76, -558.09], [-1873.35, -557.74], [-1871.94, -502.03], [-1865.2, -502.2], [-1865.04, -496.04], [-1851.54, -496.37], [-1851.99, -514.45]], "holes": []}}, {"shape": {"outer": [[-1895.37, -607.14], [-1925.97, -606.14], [-1925.05, -581.64], [-1966.83, -580.47], [-1965.06, -550.56], [-1952.22, -551.16], [-1952.7, -562.25], [-1930.5, -563.48], [-1930.61, -572.84], [-1916.96, -576.49], [-1894.52, -577.41], [-1895.37, -607.14]], "holes": []}}, {"shape": {"outer": [[-1764.05, -710.38], [-1765.21, -741.17], [-1820.58, -739.66], [-1821.16, -777.99], [-1773.75, -778.88], [-1773.72, -783.15], [-1769.32, -783.32], [-1769.47, -797.1], [-1877.31, -793.85], [-1876.66, -752.16], [-1854.29, -752.7], [-1854.06, -749.79], [-1853.14, -746.66], [-1850.94, -742.87], [-1847.74, -739.79], [-1843.34, -737.66], [-1838.1, -737.8], [-1834.06, -737.61], [-1833.43, -711.18], [-1847.16, -710.59], [-1846.85, -698.5], [-1872.05, -697.89], [-1873.7, -684.61], [-1873.42, -678.75], [-1832.23, -680.05], [-1832.3, -684.71], [-1820.24, -685.25], [-1820.82, -700.7], [-1811.75, -701.0], [-1812.16, -708.26], [-1794.26, -709.13], [-1764.05, -710.38]], "holes": []}}, {"shape": {"outer": [[-1793.43, -669.32], [-1762.9, -670.03], [-1762.94, -672.08], [-1764.05, -710.38], [-1794.26, -709.13], [-1794.16, -699.07], [-1793.43, -669.32]], "holes": []}}, {"shape": {"outer": [[-2166.31, -669.37], [-2169.15, -711.52], [-2216.94, -725.42], [-2217.77, -724.72], [-2218.27, -724.41], [-2218.75, -724.24], [-2219.19, -724.21], [-2219.65, -724.35], [-2219.86, -724.61], [-2219.91, -725.03], [-2219.77, -725.5], [-2218.07, -727.06], [-2218.51, -728.64], [-2213.91, -731.87], [-2211.19, -733.05], [-2255.87, -747.25], [-2258.11, -744.28], [-2280.82, -714.69], [-2291.08, -700.96], [-2293.92, -696.39], [-2289.0, -692.77], [-2285.17, -697.16], [-2283.69, -696.25], [-2263.15, -722.39], [-2249.82, -711.99], [-2242.44, -721.37], [-2236.03, -716.36], [-2236.51, -715.75], [-2234.43, -714.0], [-2235.86, -711.52], [-2204.15, -686.65], [-2216.24, -671.35], [-2214.89, -670.29], [-2220.17, -663.61], [-2215.8, -660.17], [-2219.76, -655.17], [-2225.12, -648.74], [-2228.1, -644.72], [-2223.19, -641.1], [-2217.42, -636.85], [-2216.81, -637.7], [-2200.43, -658.68], [-2192.54, -670.22], [-2184.66, -664.17], [-2169.22, -652.2], [-2168.07, -653.31], [-2165.23, -651.91], [-2165.35, -667.86], [-2166.31, -669.37]], "holes": []}}, {"shape": {"outer": [[-2740.47, -135.66], [-2709.24, -136.49], [-2706.87, -146.54], [-2701.75, -146.65], [-2697.24, -131.19], [-2697.11, -128.8], [-2666.04, -127.91], [-2649.48, -128.21], [-2604.74, -130.47], [-2582.67, -131.71], [-2583.22, -142.93], [-2619.55, -141.62], [-2619.71, -149.42], [-2636.97, -148.84], [-2636.77, -140.16], [-2663.47, -139.12], [-2663.37, -136.56], [-2676.47, -136.08], [-2676.46, -138.49], [-2687.37, -138.39], [-2688.21, -159.14], [-2701.44, -158.6], [-2701.2, -152.57], [-2707.71, -152.26], [-2709.35, -158.64], [-2729.2, -157.97], [-2741.04, -157.74], [-2740.47, -135.66]], "holes": []}}, {"shape": {"outer": [[-1169.75, -481.4], [-1170.43, -498.35], [-1170.79, -507.43], [-1154.55, -508.08], [-1153.49, -482.05], [-1163.07, -481.66], [-1169.75, -481.4]], "holes": []}}, {"shape": {"outer": [[-1322.21, -228.81], [-1278.44, -230.87], [-1278.32, -228.29], [-1322.09, -226.25], [-1322.21, -228.81]], "holes": []}}, {"shape": {"outer": [[-1182.28, 145.13], [-1182.45, 142.18], [-1182.63, 139.22], [-1182.81, 136.4], [-1182.98, 133.49], [-1183.07, 131.86], [-1178.05, 129.06], [-1178.01, 129.62], [-1177.96, 130.63], [-1177.79, 133.5], [-1177.63, 136.4], [-1177.46, 139.36], [-1177.31, 142.1], [-1181.22, 144.48], [-1182.28, 145.13]], "holes": []}}, {"shape": {"outer": [[-1192.62, -327.73], [-1192.93, -335.37], [-1184.41, -335.83], [-1157.88, -337.32], [-1156.11, -337.83], [-1153.4, -338.69], [-1151.7, -338.97], [-1092.59, -342.14], [-1092.21, -342.3], [-1092.07, -342.55], [-1092.1, -342.99], [-1087.01, -343.37], [-1085.88, -324.07], [-1097.24, -323.57], [-1098.79, -323.15], [-1100.35, -321.99], [-1100.89, -320.72], [-1101.0, -318.53], [-1100.23, -316.13], [-1099.5, -315.04], [-1098.82, -314.37], [-1098.16, -313.7], [-1097.52, -313.26], [-1096.7, -313.01], [-1096.01, -312.95], [-1092.33, -313.01], [-1088.66, -313.12], [-1085.32, -313.24], [-1084.95, -305.75], [-1095.92, -305.26], [-1097.56, -305.53], [-1099.2, -306.13], [-1100.7, -306.89], [-1102.23, -307.85], [-1103.77, -309.08], [-1105.09, -310.49], [-1106.08, -311.83], [-1107.03, -313.33], [-1107.71, -314.86], [-1108.12, -316.54], [-1108.24, -317.78], [-1108.31, -319.35], [-1108.42, -320.78], [-1108.71, -321.67], [-1109.24, -322.26], [-1110.02, -322.54], [-1119.11, -322.19], [-1125.74, -321.87], [-1125.85, -323.91], [-1125.94, -325.63], [-1111.01, -326.27], [-1110.4, -326.41], [-1110.04, -326.74], [-1110.06, -327.13], [-1110.47, -327.42], [-1111.12, -327.41], [-1125.99, -326.68], [-1126.1, -328.72], [-1126.23, -331.14], [-1103.65, -332.26], [-1103.1, -332.68], [-1102.95, -333.4], [-1103.0, -334.61], [-1103.26, -335.21], [-1103.81, -335.48], [-1126.36, -333.78], [-1146.93, -332.71], [-1146.54, -325.15], [-1183.55, -323.25], [-1183.73, -328.1], [-1188.89, -327.92], [-1192.62, -327.73]], "holes": []}}, {"shape": {"outer": [[-1084.87, -729.02], [-1086.38, -754.45], [-1091.51, -754.32], [-1091.35, -758.21], [-1089.62, -760.6], [-1086.53, -761.61], [-1086.85, -762.78], [-1039.67, -775.84], [-1042.72, -781.77], [-1046.79, -785.22], [-1049.5, -786.17], [-1055.48, -784.67], [-1102.1, -770.98], [-1101.68, -761.42], [-1100.23, -728.36], [-1084.87, -729.02]], "holes": []}}, {"shape": {"outer": [[-1472.37, -779.72], [-1478.7, -779.32], [-1484.9, -779.21], [-1484.59, -770.96], [-1479.49, -771.22], [-1476.37, -771.2], [-1474.09, -770.82], [-1471.88, -769.96], [-1469.73, -768.14], [-1468.82, -766.76], [-1468.19, -764.78], [-1467.9, -762.76], [-1468.16, -760.06], [-1469.21, -757.95], [-1470.9, -755.98], [-1473.23, -754.68], [-1476.41, -754.06], [-1479.99, -753.79], [-1483.72, -753.72], [-1482.91, -745.34], [-1479.22, -745.59], [-1478.43, -745.25], [-1476.31, -743.85], [-1475.09, -743.37], [-1472.76, -743.6], [-1469.29, -744.46], [-1466.43, -746.03], [-1463.46, -748.41], [-1460.83, -750.89], [-1458.43, -754.15], [-1457.17, -757.51], [-1456.95, -762.4], [-1456.89, -764.6], [-1458.68, -766.78], [-1460.1, -769.44], [-1460.53, -770.82], [-1460.02, -772.48], [-1457.71, -773.27], [-1436.45, -775.74], [-1432.16, -772.42], [-1432.05, -767.35], [-1402.4, -767.64], [-1403.17, -782.44], [-1372.59, -788.06], [-1370.41, -787.97], [-1371.08, -798.44], [-1465.69, -781.4], [-1472.37, -779.72]], "holes": []}}, {"shape": {"outer": [[-1562.58, -225.93], [-1555.09, -226.11], [-1554.86, -216.48], [-1551.81, -216.56], [-1551.32, -198.04], [-1558.29, -197.73], [-1561.89, -197.37], [-1562.58, -225.93]], "holes": []}}, {"shape": {"outer": [[-1357.06, -641.1], [-1360.02, -640.95], [-1398.57, -639.48], [-1399.71, -645.87], [-1358.34, -667.03], [-1357.06, -641.1]], "holes": []}}, {"shape": {"outer": [[-1444.44, -112.46], [-1438.43, -112.76], [-1437.46, -112.81], [-1438.8, -139.68], [-1440.25, -168.82], [-1442.65, -168.7], [-1447.23, -168.47], [-1445.78, -139.32], [-1444.44, -112.46]], "holes": []}}, {"shape": {"outer": [[-1405.54, -393.17], [-1406.09, -404.65], [-1394.9, -405.18], [-1394.75, -402.07], [-1388.87, -402.36], [-1389.15, -408.13], [-1365.15, -409.29], [-1365.03, -406.74], [-1364.64, -406.12], [-1364.03, -405.76], [-1360.62, -405.92], [-1360.13, -396.96], [-1360.06, -395.37], [-1385.39, -394.19], [-1398.82, -393.51], [-1405.54, -393.17]], "holes": []}}, {"shape": {"outer": [[-1439.93, -300.78], [-1448.59, -300.42], [-1449.37, -318.94], [-1440.69, -319.29], [-1439.93, -300.78]], "holes": []}}, {"shape": {"outer": [[-1816.67, -441.36], [-1820.62, -440.88], [-1823.39, -442.45], [-1822.16, -447.1], [-1810.84, -451.57], [-1791.79, -454.68], [-1777.5, -456.98], [-1776.69, -457.17], [-1758.43, -462.2], [-1758.33, -459.99], [-1758.18, -456.34], [-1765.27, -454.03], [-1775.44, -450.98], [-1781.33, -449.91], [-1788.28, -448.81], [-1796.95, -447.55], [-1802.12, -446.76], [-1805.76, -445.97], [-1804.93, -428.6], [-1816.8, -427.77], [-1816.67, -441.36]], "holes": []}}, {"shape": {"outer": [[-1832.02, -294.72], [-1832.99, -312.38], [-1821.23, -312.27], [-1814.51, -302.3], [-1814.36, -278.4], [-1841.79, -277.91], [-1841.84, -281.48], [-1857.36, -281.47], [-1857.67, -294.14], [-1832.02, -294.72]], "holes": []}}, {"shape": {"outer": [[-2590.46, 82.2], [-2611.43, 82.96], [-2611.37, 84.51], [-2643.08, 85.67], [-2642.79, 93.92], [-2653.35, 94.3], [-2654.04, 75.56], [-2648.37, 75.35], [-2590.79, 73.26], [-2590.46, 82.2]], "holes": []}}, {"shape": {"outer": [[-1952.44, -84.27], [-1952.54, -86.56], [-1967.89, -85.85], [-1967.66, -80.85], [-1967.58, -79.12], [-1962.26, -79.36], [-1962.12, -76.31], [-1958.85, -76.45], [-1958.65, -71.94], [-1948.36, -72.41], [-1948.69, -79.71], [-1948.91, -84.43], [-1952.44, -84.27]], "holes": []}}, {"shape": {"outer": [[-1921.84, -128.81], [-1927.03, -128.58], [-1933.88, -128.29], [-1933.93, -129.41], [-1940.54, -129.13], [-1943.1, -129.02], [-1949.13, -128.77], [-1949.2, -128.09], [-1948.9, -119.87], [-1942.73, -120.1], [-1940.18, -120.19], [-1932.45, -120.48], [-1932.42, -119.78], [-1921.47, -120.24], [-1921.84, -128.81]], "holes": []}}, {"shape": {"outer": [[-2049.09, -90.45], [-2044.17, -88.68], [-2012.14, -89.24], [-2010.74, -42.72], [-2002.15, -41.89], [-1997.35, -42.09], [-1998.52, -80.36], [-2003.67, -80.21], [-2004.21, -86.51], [-2006.0, -88.35], [-2008.04, -89.9], [-2010.13, -91.44], [-2012.42, -92.6], [-2028.59, -92.76], [-2029.38, -107.46], [-2029.27, -113.06], [-2020.99, -113.36], [-2021.77, -131.43], [-2032.21, -130.99], [-2033.8, -125.54], [-2035.09, -122.65], [-2036.71, -119.16], [-2037.39, -118.61], [-2039.08, -118.55], [-2039.23, -123.16], [-2052.86, -122.72], [-2052.77, -117.86], [-2053.38, -117.27], [-2054.14, -117.33], [-2054.66, -117.9], [-2054.92, -122.0], [-2054.2, -124.06], [-2053.24, -124.76], [-2049.19, -124.8], [-2049.43, -133.22], [-2056.17, -133.01], [-2057.74, -133.99], [-2066.27, -134.2], [-2065.74, -115.72], [-2059.83, -115.89], [-2059.02, -114.0], [-2057.39, -112.08], [-2054.13, -111.02], [-2049.4, -110.21], [-2049.09, -90.45]], "holes": []}}, {"shape": {"outer": [[-2219.29, -81.0], [-2189.25, -82.06], [-2188.54, -67.17], [-2180.76, -67.41], [-2176.64, -69.6], [-2172.01, -70.09], [-2166.74, -70.47], [-2162.87, -72.37], [-2159.5, -75.05], [-2156.89, -75.35], [-2154.62, -75.4], [-2154.66, -77.12], [-2148.66, -77.26], [-2148.75, -85.32], [-2179.37, -84.29], [-2188.65, -85.2], [-2188.86, -92.29], [-2219.59, -91.22], [-2219.29, -81.0]], "holes": []}}, {"shape": {"outer": [[-1612.33, -879.88], [-1535.96, -883.33], [-1536.65, -912.23], [-1585.67, -910.87], [-1586.43, -938.02], [-1613.34, -937.3], [-1617.99, -937.21], [-1617.01, -889.06], [-1616.12, -887.2], [-1614.46, -885.95], [-1612.68, -885.2], [-1612.33, -879.88]], "holes": []}}, {"shape": {"outer": [[-2946.83, -720.94], [-2949.66, -793.55], [-2923.77, -794.72], [-2881.2, -796.64], [-2797.5, -800.4], [-2795.44, -726.86], [-2796.71, -726.81], [-2854.39, -724.52], [-2946.83, -720.94]], "holes": []}}, {"shape": {"outer": [[-1736.89, -543.22], [-1731.77, -543.31], [-1729.84, -531.53], [-1729.69, -526.29], [-1712.2, -526.8], [-1701.23, -531.04], [-1652.48, -555.49], [-1654.13, -558.66], [-1654.11, -559.71], [-1653.45, -560.66], [-1649.12, -562.86], [-1655.78, -575.92], [-1660.28, -573.78], [-1661.47, -574.38], [-1661.92, -575.59], [-1661.03, -580.25], [-1731.04, -596.46], [-1732.46, -590.14], [-1732.38, -579.02], [-1737.74, -578.84], [-1736.89, -543.22]], "holes": []}}, {"shape": {"outer": [[-1764.82, -540.47], [-1770.34, -540.38], [-1770.35, -534.86], [-1795.86, -534.26], [-1796.0, -540.55], [-1801.33, -540.49], [-1802.28, -579.03], [-1797.55, -579.28], [-1796.29, -582.3], [-1794.8, -584.29], [-1792.21, -585.38], [-1789.25, -585.81], [-1789.4, -590.92], [-1771.6, -591.35], [-1771.47, -585.81], [-1766.17, -585.9], [-1764.82, -540.47]], "holes": []}}, {"shape": {"outer": [[-2660.26, -1003.88], [-2638.72, -1029.08], [-2651.94, -1039.04], [-2671.78, -1014.91], [-2660.26, -1003.88]], "holes": []}}, {"shape": {"outer": [[-1955.54, -1060.58], [-1901.12, -1062.01], [-1902.26, -1105.33], [-1956.68, -1103.88], [-1955.54, -1060.58]], "holes": []}}, {"shape": {"outer": [[304.6, -109.93], [284.88, -127.37], [290.92, -133.74], [298.5, -134.02], [299.7, -132.11], [300.47, -131.11], [301.32, -131.0], [301.96, -131.15], [305.14, -134.42], [316.64, -123.71], [304.6, -109.93]], "holes": []}}, {"shape": {"outer": [[-579.85, 24.39], [-605.32, 1.62], [-580.3, -26.17], [-568.24, -15.39], [-566.06, -14.79], [-564.03, -15.1], [-537.82, -44.74], [-531.69, -39.36], [-532.74, -38.17], [-529.23, -35.09], [-529.16, -33.22], [-538.87, -22.43], [-539.52, -23.0], [-552.18, -8.93], [-550.89, -7.78], [-579.85, 24.39]], "holes": []}}, {"shape": {"outer": [[-765.46, -8.82], [-713.36, -66.39], [-708.85, -62.37], [-707.71, -62.76], [-704.33, -60.11], [-704.88, -58.97], [-699.82, -55.14], [-752.94, 2.76], [-758.09, -1.39], [-759.33, -1.2], [-761.08, -2.71], [-762.55, -3.86], [-761.94, -5.61], [-765.46, -8.82]], "holes": []}}, {"shape": {"outer": [[-793.63, -26.01], [-763.85, -58.02], [-770.67, -61.88], [-777.35, -61.79], [-781.3, -63.67], [-782.02, -64.7], [-786.2, -64.73], [-793.26, -65.76], [-793.73, -66.29], [-798.19, -66.81], [-798.84, -68.09], [-799.41, -80.87], [-800.39, -80.87], [-805.58, -80.59], [-811.54, -80.27], [-811.34, -74.42], [-812.9, -72.7], [-817.97, -67.08], [-818.76, -66.21], [-819.18, -65.74], [-824.59, -60.12], [-826.73, -57.42], [-793.63, -26.01]], "holes": []}}, {"shape": {"outer": [[-555.22, -61.3], [-582.05, -31.04], [-585.13, -33.76], [-597.79, -45.04], [-591.65, -51.9], [-589.48, -54.34], [-584.27, -59.96], [-582.64, -58.49], [-577.22, -64.48], [-578.8, -65.9], [-570.78, -74.78], [-555.22, -61.3]], "holes": []}}, {"shape": {"outer": [[720.21, 186.87], [748.79, 212.34], [760.78, 198.98], [754.1, 193.09], [748.23, 187.8], [744.59, 191.81], [736.47, 184.48], [740.15, 180.43], [732.29, 173.34], [727.67, 178.6], [725.94, 177.06], [721.64, 181.85], [723.35, 183.38], [720.21, 186.87]], "holes": []}}, {"shape": {"outer": [[714.48, 71.44], [711.69, 74.7], [707.92, 72.45], [701.92, 68.92], [696.83, 65.96], [693.73, 63.84], [689.54, 61.45], [684.84, 58.97], [673.45, 55.87], [661.46, 53.72], [644.06, 47.11], [644.09, 46.87], [629.14, 42.37], [609.6, 63.91], [613.27, 67.7], [612.32, 68.67], [610.03, 70.81], [610.58, 78.04], [611.58, 81.67], [613.98, 86.08], [620.01, 92.16], [626.21, 98.21], [650.29, 123.35], [661.6, 134.35], [661.93, 137.97], [699.68, 170.9], [702.71, 170.29], [702.64, 164.95], [706.61, 168.53], [711.14, 163.19], [706.72, 159.0], [706.52, 158.25], [707.05, 157.7], [707.9, 158.09], [711.32, 161.38], [737.45, 132.5], [724.48, 121.34], [722.11, 119.34], [696.75, 147.3], [622.37, 80.71], [646.26, 54.96], [655.83, 63.58], [658.95, 60.35], [666.46, 66.18], [680.08, 70.83], [684.76, 74.1], [683.1, 77.62], [706.88, 91.54], [720.45, 76.22], [714.48, 71.44]], "holes": []}}, {"shape": {"outer": [[590.68, 293.73], [603.83, 279.42], [584.51, 261.24], [595.94, 248.29], [615.92, 266.66], [627.78, 253.27], [589.39, 217.33], [586.51, 216.11], [580.63, 216.71], [574.98, 217.74], [570.25, 220.5], [554.56, 229.87], [538.74, 242.28], [535.74, 244.55], [535.42, 245.98], [589.91, 294.95], [590.68, 293.73]], "holes": []}}, {"shape": {"outer": [[569.16, 174.14], [571.5, 172.11], [575.07, 175.19], [600.33, 148.43], [585.1, 135.36], [570.29, 152.77], [572.3, 154.58], [569.35, 157.8], [572.28, 160.99], [563.79, 169.94], [569.16, 174.14]], "holes": []}}, {"shape": {"outer": [[2481.88, 1766.83], [2485.26, 1755.55], [2490.32, 1756.95], [2497.39, 1724.81], [2494.2, 1724.11], [2493.51, 1723.74], [2493.62, 1722.89], [2494.25, 1721.95], [2497.58, 1719.15], [2500.09, 1717.76], [2500.58, 1717.71], [2501.19, 1717.94], [2501.42, 1718.57], [2501.1, 1719.12], [2499.09, 1722.3], [2511.53, 1731.27], [2514.54, 1727.58], [2516.5, 1727.69], [2517.34, 1728.21], [2518.24, 1731.08], [2520.1, 1731.46], [2522.63, 1730.98], [2524.07, 1728.35], [2524.31, 1725.48], [2523.74, 1723.87], [2526.13, 1720.26], [2472.32, 1681.28], [2469.62, 1685.19], [2465.04, 1682.33], [2460.89, 1689.31], [2456.15, 1709.17], [2460.4, 1710.54], [2458.44, 1717.85], [2437.26, 1711.41], [2439.4, 1701.19], [2436.74, 1692.12], [2428.53, 1688.14], [2405.41, 1681.83], [2401.43, 1695.66], [2425.0, 1702.61], [2419.88, 1721.99], [2426.9, 1723.46], [2426.95, 1725.42], [2425.99, 1730.01], [2472.64, 1741.76], [2467.73, 1761.14], [2474.75, 1762.61], [2475.51, 1766.06], [2481.88, 1766.83]], "holes": []}}, {"shape": {"outer": [[2208.96, 1664.34], [2229.02, 1647.67], [2226.25, 1642.31], [2230.12, 1640.02], [2226.45, 1633.81], [2222.79, 1635.66], [2203.32, 1611.82], [2198.39, 1615.22], [2195.02, 1611.84], [2177.1, 1626.93], [2183.64, 1634.72], [2185.04, 1637.58], [2185.13, 1640.85], [2190.32, 1646.79], [2192.5, 1646.3], [2195.14, 1647.46], [2208.96, 1664.34]], "holes": []}}, {"shape": {"outer": [[-146.03, 418.6], [-132.05, 431.26], [-120.79, 418.9], [-134.77, 406.25], [-146.03, 418.6]], "holes": []}}, {"shape": {"outer": [[-327.47, -342.5], [-342.28, -355.75], [-272.37, -431.65], [-213.44, -377.95], [-248.28, -340.22], [-249.6, -341.46], [-271.26, -361.84], [-291.82, -381.2], [-327.47, -342.5]], "holes": []}}, {"shape": {"outer": [[2523.92, 2630.52], [2455.06, 2702.35], [2548.66, 2793.06], [2554.35, 2787.18], [2556.82, 2784.61], [2593.93, 2746.22], [2610.72, 2729.02], [2619.39, 2720.12], [2620.87, 2718.9], [2623.82, 2715.75], [2652.17, 2685.46], [2659.39, 2678.18], [2633.9, 2654.09], [2627.42, 2660.9], [2577.64, 2613.25], [2541.79, 2647.9], [2538.34, 2644.48], [2529.4, 2635.9], [2523.92, 2630.52]], "holes": []}}, {"shape": {"outer": [[-1701.11, -930.59], [-1752.4, -928.73], [-1750.34, -862.9], [-1525.96, -874.15], [-1521.73, -875.69], [-1520.72, -880.32], [-1520.42, -886.23], [-1520.52, -906.46], [-1518.79, -926.84], [-1516.34, -988.91], [-1516.33, -1024.93], [-1511.01, -1180.5], [-1511.8, -1231.88], [-1513.01, -1238.58], [-1516.82, -1241.85], [-1634.29, -1239.15], [-1625.64, -999.27], [-1701.49, -996.25], [-1701.11, -930.59]], "holes": []}}, {"shape": {"outer": [[-1414.36, -1647.56], [-1416.73, -1724.06], [-1400.17, -1789.28], [-1371.31, -1841.67], [-1281.77, -2004.23], [-1251.88, -2037.5], [-1234.67, -2048.81], [-1219.83, -2055.25], [-1199.2, -2056.67], [-1183.33, -2056.28], [-1127.93, -2047.8], [-1057.85, -2037.5], [-1010.59, -2041.5], [-965.69, -2055.61], [-889.94, -2062.35], [-819.93, -2072.67], [-769.42, -2064.9], [-720.98, -2066.09], [-700.36, -2073.71], [-613.23, -2077.46], [-613.68, -2096.99], [-617.58, -2094.62], [-622.03, -2093.25], [-625.3, -2092.7], [-631.47, -2092.19], [-663.21, -2090.84], [-778.5, -2084.02], [-787.75, -2084.62], [-839.03, -2084.96], [-854.62, -2082.77], [-870.06, -2080.82], [-883.19, -2079.12], [-957.33, -2072.12], [-981.31, -2067.21], [-1001.11, -2061.09], [-1028.14, -2054.42], [-1047.01, -2053.22], [-1066.53, -2054.55], [-1096.76, -2057.02], [-1160.44, -2066.54], [-1200.06, -2069.74], [-1207.72, -2069.75], [-1225.39, -2066.35], [-1240.49, -2061.36], [-1249.39, -2056.33], [-1258.9, -2049.5], [-1268.46, -2041.78], [-1280.79, -2027.98], [-1297.65, -2008.04], [-1317.57, -1977.69], [-1342.98, -1923.17], [-1378.99, -1856.89], [-1383.75, -1848.09], [-1416.76, -1787.69], [-1419.79, -1781.62], [-1425.09, -1767.66], [-1427.24, -1757.26], [-1427.86, -1747.79], [-1423.43, -1735.43], [-1421.59, -1647.72], [-1414.36, -1647.56]], "holes": []}}, {"shape": {"outer": [[-271.66, -1953.31], [-275.79, -1956.03], [-275.56, -1938.55], [-268.89, -1939.24], [-258.11, -1938.9], [-250.69, -1938.06], [-245.15, -1937.46], [-238.79, -1933.78], [-232.54, -1927.71], [-222.91, -1911.78], [-220.75, -1901.98], [-169.94, -1979.72], [-190.39, -1980.93], [-196.3, -1972.39], [-202.02, -1965.9], [-206.27, -1961.87], [-209.48, -1959.38], [-215.19, -1956.2], [-219.92, -1954.48], [-224.8, -1953.42], [-232.9, -1952.61], [-239.3, -1952.64], [-262.7, -1952.75], [-271.66, -1953.31]], "holes": []}}, {"shape": {"outer": [[-379.46, -1940.42], [-380.26, -1956.2], [-373.22, -1955.5], [-367.29, -1955.67], [-366.89, -1938.9], [-376.95, -1940.42], [-379.46, -1940.42]], "holes": []}}, {"shape": {"outer": [[-450.71, -1945.05], [-446.03, -1945.54], [-441.55, -1946.02], [-440.68, -1936.35], [-449.61, -1935.23], [-450.71, -1945.05]], "holes": []}}, {"shape": {"outer": [[-2591.44, -1891.95], [-2588.83, -1885.03], [-2554.27, -1874.06], [-2525.53, -1867.89], [-2523.98, -1876.96], [-2527.29, -1877.19], [-2538.37, -1879.28], [-2554.7, -1884.01], [-2569.63, -1889.15], [-2589.32, -1896.39], [-2591.44, -1891.95]], "holes": []}}, {"shape": {"outer": [[-2521.28, -1899.95], [-2517.57, -1892.74], [-2443.26, -1887.31], [-2448.62, -1898.83], [-2471.79, -1901.17], [-2500.91, -1903.93], [-2522.61, -1904.04], [-2521.28, -1899.95]], "holes": []}}, {"shape": {"outer": [[-1390.56, -2647.85], [-1345.82, -2646.98], [-1345.96, -2645.24], [-1328.94, -2645.14], [-1328.57, -2652.63], [-1322.25, -2653.1], [-1319.27, -2740.86], [-1319.29, -2744.31], [-1319.51, -2779.66], [-1325.87, -2779.76], [-1326.32, -2785.5], [-1391.73, -2783.05], [-1388.88, -2774.23], [-1386.78, -2751.29], [-1386.84, -2732.88], [-1387.47, -2724.82], [-1393.23, -2724.37], [-1394.86, -2660.48], [-1390.03, -2659.97], [-1390.56, -2647.85]], "holes": []}}, {"shape": {"outer": [[-1408.27, -3083.51], [-1411.27, -3042.16], [-1419.28, -3020.4], [-1430.38, -2992.81], [-1448.42, -2956.05], [-1451.03, -2943.83], [-1450.84, -2940.2], [-1444.99, -2903.6], [-1460.82, -2902.09], [-1481.17, -2902.56], [-1497.09, -2903.3], [-1522.14, -2897.7], [-1528.93, -2903.59], [-1607.17, -3034.17], [-1601.53, -3037.03], [-1503.75, -3096.46], [-1489.95, -3072.89], [-1476.21, -3081.34], [-1468.12, -3081.57], [-1408.27, -3083.51]], "holes": []}}, {"shape": {"outer": [[-1559.12, -2420.71], [-1513.15, -2414.88], [-1501.3, -2413.04], [-1464.52, -2411.48], [-1447.89, -2411.09], [-1445.65, -2364.74], [-1443.24, -2364.9], [-1447.64, -2483.73], [-1449.72, -2483.56], [-1447.75, -2436.58], [-1506.27, -2434.25], [-1511.3, -2418.86], [-1558.3, -2424.17], [-1559.12, -2420.71]], "holes": []}}, {"shape": {"outer": [[297.89, -3359.58], [316.44, -3360.1], [334.14, -3360.6], [353.41, -3361.15], [370.96, -3360.89], [372.93, -3353.62], [390.98, -3338.52], [414.53, -3317.65], [416.31, -3309.89], [418.47, -3285.24], [419.18, -3277.61], [421.8, -3268.32], [446.69, -3204.89], [455.37, -3174.89], [457.22, -3164.81], [457.44, -3157.01], [452.31, -3144.39], [445.96, -3133.74], [438.12, -3120.59], [434.42, -3116.42], [409.65, -3117.06], [390.26, -3116.16], [370.4, -3115.25], [347.03, -3114.16], [344.54, -3155.48], [342.21, -3163.0], [325.07, -3200.02], [319.81, -3210.34], [313.26, -3225.73], [307.58, -3241.79], [303.12, -3262.4], [301.09, -3280.59], [298.05, -3356.19], [297.89, -3359.58]], "holes": []}}, {"shape": {"outer": [[-185.32, -3221.32], [116.37, -3234.23], [119.17, -3115.3], [-131.43, -3104.26], [-160.37, -3104.34], [-164.75, -3134.32], [-171.65, -3136.18], [-180.13, -3135.66], [-185.32, -3221.32]], "holes": []}}, {"shape": {"outer": [[-1539.65, -3403.96], [-1535.03, -3316.8], [-1528.96, -3308.51], [-1480.48, -3303.01], [-1462.35, -3300.36], [-1435.87, -3302.7], [-1425.84, -3304.58], [-1415.65, -3301.17], [-1408.27, -3284.45], [-1397.09, -3264.66], [-1407.86, -3251.66], [-1411.42, -3246.27], [-1407.19, -3228.39], [-1410.95, -3210.83], [-1414.78, -3177.92], [-1417.63, -3147.68], [-1417.5, -3087.38], [-1419.66, -3051.34], [-1423.7, -3025.82], [-1446.46, -2967.51], [-1452.87, -2950.4], [-1455.35, -2943.98], [-1451.03, -2943.83], [-1446.84, -2943.69], [-1421.03, -2950.78], [-1418.79, -2947.14], [-1416.71, -2929.74], [-1417.58, -2923.37], [-1413.22, -2919.26], [-1393.68, -2922.48], [-1395.76, -2939.86], [-1399.5, -2959.33], [-1402.09, -3012.69], [-1388.85, -3032.65], [-1381.45, -3070.95], [-1380.41, -3090.02], [-1366.14, -3092.55], [-1370.04, -3117.3], [-1359.67, -3126.07], [-1348.07, -3129.04], [-1351.83, -3149.03], [-1335.11, -3177.03], [-1303.53, -3205.44], [-1319.94, -3222.43], [-1346.91, -3237.0], [-1344.44, -3243.42], [-1343.41, -3263.02], [-1342.7, -3293.73], [-1330.55, -3296.2], [-1309.43, -3300.5], [-1292.47, -3301.51], [-1300.69, -3310.28], [-1405.85, -3385.57], [-1437.24, -3387.84], [-1449.35, -3384.33], [-1501.88, -3382.83], [-1508.59, -3394.79], [-1521.69, -3407.12], [-1534.43, -3407.28], [-1539.65, -3403.96]], "holes": []}}, {"shape": {"outer": [[-1282.72, -3140.07], [-1247.23, -3147.3], [-1242.18, -3152.31], [-1172.38, -3100.24], [-1175.3, -3096.83], [-1175.41, -3096.53], [-1175.28, -3096.2], [-1175.0, -3096.06], [-1174.64, -3096.13], [-1170.35, -3097.02], [-1166.22, -3081.1], [-1172.78, -3079.86], [-1171.12, -3073.42], [-1271.4, -3054.45], [-1272.28, -3062.86], [-1275.36, -3062.23], [-1274.5, -3046.37], [-1279.01, -3046.82], [-1279.3, -3043.5], [-1274.41, -3043.45], [-1272.96, -2992.6], [-1270.97, -2950.53], [-1281.32, -2950.44], [-1284.16, -3060.41], [-1284.66, -3080.03], [-1285.19, -3100.24], [-1285.64, -3117.58], [-1282.72, -3140.07]], "holes": []}}, {"shape": {"outer": [[-1187.23, -2807.75], [-1186.61, -2774.67], [-1186.75, -2767.42], [-1155.4, -2764.46], [-1127.1, -2755.63], [-1125.42, -2765.09], [-1114.06, -2762.62], [-1102.49, -2759.56], [-1101.53, -2740.63], [-1069.33, -2741.55], [-1073.54, -2719.59], [-1052.89, -2718.9], [-1048.14, -2746.93], [-1040.45, -2745.17], [-1035.69, -2760.18], [-1094.6, -2769.41], [-1086.6, -2816.72], [-1081.42, -2849.62], [-1102.15, -2852.57], [-1102.16, -2862.32], [-1092.1, -2861.98], [-1092.28, -2879.32], [-1098.39, -2878.83], [-1098.47, -2881.71], [-1091.39, -2882.24], [-1091.65, -2902.14], [-1100.89, -2899.5], [-1101.23, -2893.39], [-1118.55, -2889.94], [-1142.7, -2885.13], [-1152.72, -2885.3], [-1150.86, -2809.76], [-1171.45, -2808.62], [-1187.23, -2807.75]], "holes": []}}, {"shape": {"outer": [[-1078.57, -2862.88], [-1087.63, -2863.07], [-1087.47, -2880.09], [-1082.31, -2879.92], [-1081.75, -2883.15], [-1087.87, -2882.97], [-1087.78, -2902.25], [-1070.04, -2902.11], [-1069.5, -2860.7], [-1079.14, -2860.26], [-1078.57, -2862.88]], "holes": []}}, {"shape": {"outer": [[-1073.74, -2848.35], [-1072.0, -2857.42], [-1049.95, -2852.9], [-1051.11, -2844.59], [-1027.01, -2840.59], [-1028.69, -2831.03], [-1056.57, -2836.34], [-1054.79, -2845.2], [-1073.74, -2848.35]], "holes": []}}, {"shape": {"outer": [[-1248.39, -2807.52], [-1238.33, -2808.34], [-1191.13, -2810.21], [-1191.12, -2772.66], [-1192.01, -2766.81], [-1185.38, -2765.03], [-1157.88, -2761.32], [-1137.32, -2752.27], [-1134.11, -2741.76], [-1134.26, -2709.75], [-1140.93, -2709.46], [-1244.55, -2705.79], [-1245.42, -2722.84], [-1247.43, -2793.13], [-1248.39, -2807.52]], "holes": []}}, {"shape": {"outer": [[-1298.33, -3011.24], [-1355.64, -3010.45], [-1356.03, -3039.52], [-1303.71, -3040.23], [-1298.33, -3011.24]], "holes": []}}, {"shape": {"outer": [[-1296.68, -3049.13], [-1308.69, -3049.56], [-1309.83, -3096.14], [-1299.57, -3095.84], [-1296.68, -3049.13]], "holes": []}}, {"shape": {"outer": [[-1398.48, -2979.73], [-1399.88, -2987.68], [-1302.4, -3000.61], [-1303.35, -2944.82], [-1339.37, -2938.33], [-1391.14, -2931.12], [-1392.44, -2939.76], [-1395.37, -2959.12], [-1398.48, -2979.73]], "holes": []}}, {"shape": {"outer": [[1959.4, 901.21], [1953.02, 908.22], [1918.6, 946.11], [1926.22, 953.24], [1941.95, 966.74], [1921.52, 989.85], [1914.83, 996.9], [1985.54, 1061.24], [1994.87, 1069.75], [2040.05, 1110.96], [2047.25, 1117.04], [2090.73, 1154.95], [2123.72, 1185.52], [2128.68, 1189.89], [2137.31, 1182.07], [2192.56, 1131.9], [2203.03, 1121.71], [2197.65, 1116.79], [2116.45, 1042.45], [2108.8, 1035.45], [2101.44, 1028.84], [2086.36, 1015.28], [1964.9, 906.14], [1959.4, 901.21]], "holes": []}}, {"shape": {"outer": [[867.06, 168.36], [884.46, 150.14], [869.51, 146.72], [844.76, 140.67], [841.17, 140.1], [839.87, 140.24], [838.77, 140.58], [838.04, 141.21], [837.82, 141.95], [838.27, 142.7], [855.56, 158.3], [867.06, 168.36]], "holes": []}}, {"shape": {"outer": [[1014.58, 138.24], [1006.53, 136.7], [1009.32, 123.71], [1012.52, 124.35], [1025.87, 126.65], [1019.95, 139.57], [1014.58, 138.24]], "holes": []}}, {"shape": {"outer": [[853.73, 38.22], [865.4, 52.37], [870.07, 60.2], [845.59, 85.42], [869.9, 106.3], [857.32, 120.74], [854.94, 119.55], [847.24, 114.57], [840.69, 112.06], [837.46, 112.15], [829.45, 115.6], [823.24, 112.38], [813.8, 102.95], [798.86, 96.74], [829.04, 62.89], [835.51, 55.88], [838.07, 50.98], [838.72, 48.81], [845.2, 48.8], [846.57, 47.11], [853.73, 38.22]], "holes": []}}, {"shape": {"outer": [[780.62, 36.47], [795.96, 40.98], [798.05, 41.99], [799.8, 43.48], [801.12, 45.36], [801.93, 47.52], [802.13, 50.3], [801.49, 53.01], [800.05, 55.41], [797.16, 57.63], [794.74, 60.37], [793.08, 63.15], [791.92, 66.17], [779.17, 81.34], [772.27, 72.93], [771.08, 69.02], [771.17, 65.78], [772.8, 59.82], [775.19, 55.26], [779.0, 56.24], [781.33, 55.81], [782.73, 54.34], [785.06, 47.82], [783.51, 43.91], [778.98, 42.96], [780.62, 36.47]], "holes": []}}, {"shape": {"outer": [[828.74, 49.41], [839.42, 45.71], [844.17, 46.17], [846.57, 47.11], [853.73, 38.22], [859.79, 33.8], [851.14, 33.77], [845.71, 32.3], [841.89, 18.86], [838.24, 18.77], [823.5, 45.34], [828.74, 49.41]], "holes": []}}, {"shape": {"outer": [[-26.9, 46.24], [-30.65, 50.96], [-21.02, 60.54], [-14.59, 57.29], [-11.86, 59.75], [-5.26, 63.4], [-6.74, 56.19], [-22.11, 41.02], [-26.9, 46.24]], "holes": []}}, {"shape": {"outer": [[-19.77, 41.15], [7.92, 65.47], [30.38, 39.0], [13.44, 25.23], [9.45, 30.45], [7.4, 28.17], [4.65, 26.1], [-1.81, 20.54], [-19.77, 41.15]], "holes": []}}, {"shape": {"outer": [[-2252.97, -193.8], [-2255.01, -192.38], [-2256.92, -191.02], [-2253.35, -118.4], [-2252.75, -102.82], [-2249.8, -26.36], [-2231.55, -27.04], [-2235.15, -103.34], [-2235.75, -119.1], [-2238.57, -187.18], [-2238.7, -190.43], [-2240.97, -192.26], [-2243.16, -194.02], [-2245.19, -193.99], [-2250.43, -193.83], [-2252.97, -193.8]], "holes": []}}, {"shape": {"outer": [[-823.16, -26.51], [-827.55, -30.38], [-845.4, -10.42], [-844.52, -9.64], [-842.98, -8.41], [-845.52, -5.9], [-833.63, 4.56], [-813.59, -18.04], [-817.6, -21.56], [-815.02, -24.48], [-817.47, -26.63], [-820.61, -29.39], [-823.16, -26.51]], "holes": []}}, {"shape": {"outer": [[1145.37, 613.69], [1176.97, 640.91], [1192.49, 654.95], [1204.85, 666.24], [1218.51, 678.38], [1232.7, 691.57], [1254.27, 710.95], [1265.37, 720.66], [1280.96, 734.9], [1288.2, 741.48], [1295.68, 748.67], [1300.21, 743.75], [1312.17, 754.46], [1330.0, 772.55], [1351.55, 796.12], [1371.81, 819.07], [1384.79, 835.18], [1397.42, 851.57], [1410.08, 869.17], [1422.79, 886.83], [1424.56, 889.66], [1426.87, 892.86], [1433.47, 903.18], [1455.15, 938.0], [1451.2, 940.94], [1467.88, 968.47], [1468.36, 970.15], [1468.29, 972.1], [1467.58, 973.76], [1466.42, 975.27], [1464.55, 976.36], [1462.49, 976.73], [1460.81, 976.28], [1459.24, 975.46], [1457.98, 974.21], [1455.45, 971.77], [1445.22, 961.43], [1435.34, 951.3], [1432.97, 953.31], [1396.27, 919.69], [1381.51, 906.21], [1290.37, 823.41], [1261.65, 797.42], [1256.03, 792.31], [1241.63, 779.25], [1241.07, 778.74], [1192.73, 734.87], [1161.53, 706.49], [1168.75, 698.47], [1154.59, 684.53], [1139.19, 670.07], [1115.02, 647.33], [1141.3, 618.21], [1143.69, 615.56], [1145.37, 613.69]], "holes": []}}, {"shape": {"outer": [[1255.3, 533.42], [1219.08, 573.04], [1191.35, 549.41], [1196.35, 543.94], [1219.07, 519.09], [1222.06, 515.82], [1228.52, 508.76], [1235.57, 515.23], [1255.3, 533.42]], "holes": []}}, {"shape": {"outer": [[1749.74, 1548.85], [1753.06, 1551.96], [1756.36, 1554.98], [1771.94, 1568.51], [1777.49, 1562.69], [1784.31, 1555.09], [1807.36, 1530.73], [1816.27, 1521.16], [1821.01, 1517.27], [1840.7, 1496.71], [1846.96, 1493.47], [1853.7, 1486.36], [1913.36, 1437.08], [1924.0, 1428.5], [1956.12, 1405.39], [1962.01, 1412.62], [2037.82, 1358.24], [2065.68, 1355.83], [2061.19, 1348.15], [2057.49, 1342.3], [2066.44, 1336.13], [2103.78, 1307.83], [2157.0, 1266.61], [2173.73, 1250.38], [2184.58, 1241.41], [2191.34, 1235.09], [2222.35, 1203.2], [2257.81, 1163.74], [2314.15, 1102.56], [2315.82, 1100.74], [2322.32, 1093.69], [2315.82, 1087.24], [2306.35, 1078.69], [2292.19, 1065.88], [2302.31, 1052.15], [2357.58, 997.36], [2361.46, 988.34], [2360.97, 976.35], [2348.29, 957.56], [2317.74, 985.78], [2318.51, 989.99], [2317.77, 992.56], [2316.68, 994.37], [2276.07, 1037.67], [2274.37, 1039.47], [2270.96, 1043.12], [2269.4, 1045.38], [2263.4, 1053.68], [2262.42, 1055.03], [2233.78, 1087.23], [2209.25, 1115.08], [2203.03, 1121.71], [2192.56, 1131.9], [2137.31, 1182.07], [2128.68, 1189.89], [2121.49, 1196.69], [2062.68, 1252.36], [2059.81, 1254.96], [2031.38, 1280.62], [2030.24, 1281.67], [2023.52, 1287.95], [2015.42, 1294.18], [2013.6, 1295.52], [2011.78, 1296.87], [1989.51, 1305.35], [1985.13, 1307.08], [1972.4, 1310.91], [1966.84, 1311.9], [1961.19, 1311.45], [1950.09, 1314.03], [1947.53, 1315.82], [1873.76, 1377.2], [1800.75, 1438.3], [1702.21, 1515.26], [1686.03, 1500.61], [1674.59, 1510.31], [1666.7, 1517.75], [1652.6, 1531.06], [1669.27, 1541.94], [1668.67, 1559.16], [1662.83, 1569.0], [1609.25, 1621.44], [1601.4, 1623.82], [1588.24, 1631.74], [1553.27, 1652.79], [1557.33, 1660.18], [1553.14, 1662.54], [1524.41, 1678.65], [1515.0, 1683.91], [1487.73, 1704.14], [1484.22, 1700.05], [1463.57, 1713.97], [1442.92, 1728.57], [1504.93, 1783.64], [1604.55, 1722.68], [1619.28, 1713.21], [1614.58, 1668.62], [1618.64, 1667.61], [1622.17, 1665.16], [1629.56, 1656.32], [1651.34, 1647.06], [1659.08, 1642.5], [1712.63, 1589.06], [1720.24, 1580.11], [1725.94, 1574.64], [1749.74, 1548.85]], "holes": []}}, {"shape": {"outer": [[1078.68, 2130.41], [1080.51, 2131.72], [1083.89, 2134.15], [1087.81, 2137.63], [1088.99, 2139.17], [1100.41, 2154.11], [1112.13, 2165.14], [1123.1, 2177.79], [1136.03, 2203.32], [1138.83, 2205.5], [1195.82, 2168.68], [1185.15, 2146.32], [1151.93, 2111.62], [1137.2, 2092.63], [1130.86, 2084.63], [1124.61, 2073.98], [1122.17, 2069.83], [1084.53, 2103.56], [1084.05, 2103.98], [1083.46, 2104.5], [1082.47, 2105.38], [1077.13, 2121.21], [1078.68, 2130.41]], "holes": []}}, {"shape": {"outer": [[842.89, 1883.01], [847.6, 1887.65], [845.46, 1890.0], [850.64, 1894.93], [852.96, 1892.84], [857.28, 1896.48], [883.01, 1869.01], [876.22, 1862.78], [878.19, 1860.71], [880.75, 1857.92], [873.77, 1851.27], [842.89, 1883.01]], "holes": []}}, {"shape": {"outer": [[664.46, 203.67], [683.23, 183.63], [635.41, 135.75], [609.94, 104.61], [596.82, 84.17], [591.75, 87.49], [609.29, 116.64], [592.59, 134.5], [611.76, 151.35], [608.57, 154.98], [612.19, 158.13], [664.46, 203.67]], "holes": []}}, {"shape": {"outer": [[1020.24, 604.68], [1027.72, 611.45], [1029.9, 609.15], [1078.82, 653.18], [1064.49, 667.14], [1058.51, 661.76], [1016.69, 623.83], [1019.27, 620.21], [1016.98, 618.47], [1013.76, 618.69], [1014.46, 624.22], [1009.31, 625.0], [1008.6, 619.81], [1001.54, 627.98], [1003.3, 629.52], [1000.96, 632.02], [997.08, 628.67], [1019.37, 603.73], [1020.24, 604.68]], "holes": []}}, {"shape": {"outer": [[-2433.13, -806.32], [-2431.94, -806.27], [-2403.47, -797.82], [-2194.63, -734.44], [-2186.79, -731.95], [-2169.59, -726.05], [-2168.29, -720.98], [-2167.1, -720.92], [-2165.25, -669.39], [-2166.31, -669.37], [-2169.15, -711.52], [-2216.94, -725.42], [-2217.77, -724.72], [-2218.27, -724.41], [-2218.75, -724.24], [-2219.19, -724.21], [-2219.65, -724.35], [-2219.86, -724.61], [-2219.91, -725.03], [-2219.77, -725.5], [-2218.07, -727.06], [-2213.45, -730.34], [-2211.04, -731.28], [-2199.18, -730.81], [-2194.35, -731.19], [-2190.86, -732.42], [-2194.9, -733.36], [-2196.54, -732.84], [-2198.86, -732.72], [-2211.19, -733.05], [-2255.87, -747.25], [-2258.11, -744.28], [-2295.72, -760.25], [-2306.47, -759.54], [-2371.67, -779.05], [-2413.81, -791.66], [-2415.64, -791.24], [-2433.13, -806.32]], "holes": []}}, {"shape": {"outer": [[-1125.7, -576.76], [-1129.99, -591.31], [-1133.9, -590.11], [-1136.92, -589.4], [-1139.79, -588.91], [-1143.39, -588.31], [-1147.04, -587.78], [-1149.69, -587.57], [-1152.28, -587.4], [-1155.62, -587.29], [-1158.97, -587.28], [-1162.5, -587.46], [-1165.95, -587.72], [-1169.41, -588.01], [-1172.76, -588.44], [-1175.42, -588.9], [-1178.31, -573.81], [-1176.65, -573.31], [-1174.54, -573.28], [-1172.0, -574.88], [-1171.09, -576.87], [-1170.63, -579.1], [-1170.39, -580.72], [-1169.64, -581.21], [-1164.41, -581.04], [-1159.32, -581.03], [-1152.23, -581.07], [-1145.56, -581.5], [-1138.89, -582.08], [-1135.15, -582.67], [-1134.7, -582.74], [-1134.03, -582.56], [-1132.95, -579.5], [-1130.4, -576.84], [-1128.25, -575.96], [-1126.5, -576.28], [-1125.7, -576.76]], "holes": []}}, {"shape": {"outer": [[-1185.52, -537.12], [-1178.31, -573.81], [-1176.65, -573.31], [-1174.54, -573.28], [-1172.0, -574.88], [-1171.09, -576.87], [-1170.63, -579.1], [-1170.39, -580.72], [-1169.64, -581.21], [-1164.41, -581.04], [-1159.32, -581.03], [-1152.23, -581.07], [-1145.56, -581.5], [-1138.89, -582.08], [-1135.15, -582.67], [-1134.7, -582.74], [-1134.03, -582.56], [-1132.95, -579.5], [-1130.4, -576.84], [-1128.25, -575.96], [-1126.5, -576.28], [-1125.7, -576.76], [-1114.76, -540.73], [-1123.91, -538.05], [-1136.22, -535.94], [-1148.24, -534.67], [-1160.01, -534.42], [-1170.55, -534.96], [-1178.68, -535.85], [-1185.52, -537.12]], "holes": []}}, {"shape": {"outer": [[-1104.24, -603.5], [-1108.15, -600.73], [-1113.35, -597.87], [-1120.7, -594.43], [-1101.83, -547.1], [-1095.92, -547.59], [-1095.0, -547.66], [-1093.55, -549.68], [-1094.3, -564.67], [-1093.76, -564.72], [-1095.16, -590.43], [-1098.07, -594.24], [-1104.24, -603.5]], "holes": []}}, {"shape": {"outer": [[-1234.27, -622.09], [-1233.23, -623.02], [-1227.71, -616.82], [-1217.51, -607.99], [-1206.69, -600.66], [-1193.9, -594.44], [-1185.73, -591.57], [-1199.56, -540.97], [-1201.08, -533.88], [-1203.26, -531.04], [-1204.54, -529.61], [-1206.36, -528.61], [-1208.5, -528.77], [-1208.73, -536.54], [-1206.38, -542.51], [-1203.89, -550.91], [-1204.76, -567.45], [-1205.4, -580.82], [-1205.62, -583.96], [-1207.14, -589.2], [-1208.12, -592.05], [-1209.36, -594.6], [-1210.66, -596.76], [-1212.26, -598.74], [-1216.13, -601.16], [-1220.64, -602.84], [-1224.66, -603.14], [-1226.63, -602.65], [-1227.46, -602.9], [-1228.12, -603.58], [-1228.29, -607.8], [-1228.48, -611.08], [-1243.94, -610.26], [-1245.68, -612.48], [-1234.27, -622.09]], "holes": []}}, {"shape": {"outer": [[-1263.55, -646.91], [-1238.94, -657.8], [-1236.7, -652.09], [-1246.0, -642.46], [-1257.27, -634.01], [-1263.55, -646.91]], "holes": []}}, {"shape": {"outer": [[-1484.8, -28.35], [-1483.62, -29.53], [-1482.57, -31.17], [-1481.71, -33.1], [-1480.2, -36.67], [-1479.22, -40.09], [-1478.67, -43.26], [-1478.45, -47.08], [-1478.91, -51.74], [-1480.56, -57.58], [-1482.77, -62.95], [-1487.41, -70.58], [-1488.9, -71.84], [-1490.64, -73.0], [-1492.5, -73.81], [-1497.47, -73.61], [-1543.8, -65.03], [-1544.74, -63.21], [-1545.14, -62.0], [-1545.25, -60.74], [-1544.99, -57.09], [-1539.88, -20.67], [-1539.17, -19.58], [-1538.33, -18.58], [-1537.41, -17.79], [-1536.45, -17.14], [-1490.0, -26.47], [-1486.49, -27.39], [-1484.8, -28.35]], "holes": []}}, {"shape": {"outer": [[-1693.17, 0.89], [-1694.14, -5.73], [-1693.12, -8.0], [-1692.54, -10.38], [-1692.39, -12.42], [-1692.97, -14.68], [-1693.89, -16.38], [-1695.28, -18.14], [-1696.69, -19.49], [-1697.85, -25.71], [-1689.58, -36.92], [-1666.23, -41.53], [-1664.9, -40.73], [-1663.61, -39.83], [-1662.8, -38.8], [-1662.31, -37.76], [-1661.9, -36.1], [-1655.61, 0.45], [-1655.49, 1.32], [-1655.48, 2.08], [-1655.64, 2.78], [-1656.15, 3.53], [-1656.72, 4.0], [-1657.34, 4.27], [-1658.95, 4.64], [-1680.58, 8.3], [-1693.17, 0.89]], "holes": []}}, {"shape": {"outer": [[-1550.46, -63.07], [-1591.56, -56.3], [-1594.33, -55.46], [-1596.36, -54.1], [-1596.98, -52.21], [-1590.43, -12.27], [-1589.37, -10.31], [-1587.85, -8.75], [-1551.64, -15.11], [-1545.17, -15.33], [-1543.78, -17.6], [-1543.22, -18.69], [-1543.09, -19.42], [-1543.03, -20.89], [-1543.16, -22.52], [-1548.58, -60.02], [-1549.3, -61.5], [-1549.95, -62.42], [-1550.46, -63.07]], "holes": []}}, {"shape": {"outer": [[-1649.01, 2.69], [-1650.02, 2.82], [-1650.82, 2.64], [-1651.53, 2.18], [-1652.0, 1.71], [-1652.34, 1.1], [-1652.6, 0.45], [-1659.47, -38.95], [-1659.6, -40.01], [-1659.65, -40.96], [-1659.51, -41.74], [-1659.29, -42.34], [-1658.9, -42.89], [-1603.83, -53.88], [-1602.43, -53.29], [-1601.25, -52.19], [-1600.51, -50.82], [-1594.3, -14.17], [-1593.99, -11.83], [-1594.39, -9.54], [-1595.46, -8.13], [-1597.1, -7.26], [-1649.01, 2.69]], "holes": []}}, {"shape": {"outer": [[-1899.34, 122.28], [-1898.11, 121.39], [-1877.35, 105.42], [-1879.72, 102.37], [-1883.0, 98.14], [-1905.36, 115.09], [-1899.34, 122.28]], "holes": []}}, {"shape": {"outer": [[-2011.73, -683.91], [-1932.75, -659.94], [-1932.84, -659.49], [-1926.73, -658.17], [-1910.3, -653.75], [-1906.22, -651.77], [-1901.29, -649.6], [-1900.04, -648.95], [-1919.09, -648.02], [-1918.27, -648.84], [-1918.23, -649.44], [-1918.86, -650.84], [-1919.44, -651.9], [-1920.27, -652.74], [-1922.01, -653.2], [-1925.35, -653.3], [-1928.67, -653.6], [-1931.13, -654.36], [-1933.62, -654.76], [-1936.17, -654.71], [-1937.89, -654.02], [-1938.5, -653.97], [-1940.91, -654.46], [-1943.49, -655.06], [-1948.61, -656.55], [-1955.16, -659.3], [-1961.54, -662.46], [-1965.42, -663.65], [-1968.74, -664.31], [-1971.56, -664.63], [-1974.36, -664.83], [-1976.13, -665.38], [-1978.33, -666.14], [-1980.75, -667.22], [-1982.86, -668.48], [-1985.0, -669.97], [-1987.47, -671.9], [-1990.54, -673.42], [-1993.33, -674.82], [-1996.53, -676.12], [-1999.5, -676.48], [-2002.41, -676.44], [-2004.86, -676.24], [-2006.54, -675.55], [-2008.97, -673.99], [-2010.7, -672.54], [-2011.48, -670.83], [-2011.73, -683.91]], "holes": []}}, {"shape": {"outer": [[-2031.46, -689.94], [-2031.14, -677.82], [-2032.0, -677.6], [-2034.26, -678.09], [-2034.18, -679.43], [-2035.42, -682.29], [-2037.99, -685.79], [-2040.82, -688.82], [-2043.24, -690.11], [-2045.74, -690.51], [-2049.04, -689.73], [-2052.43, -688.75], [-2057.73, -690.21], [-2062.2, -692.75], [-2064.77, -694.82], [-2069.05, -697.7], [-2071.32, -698.46], [-2074.32, -698.75], [-2077.32, -698.15], [-2080.81, -698.19], [-2085.27, -699.92], [-2089.69, -701.93], [-2095.52, -704.2], [-2097.81, -704.35], [-2099.93, -704.24], [-2102.01, -704.4], [-2106.39, -705.6], [-2115.73, -709.44], [-2116.84, -710.12], [-2118.33, -711.65], [-2120.05, -712.87], [-2122.18, -713.43], [-2123.8, -713.69], [-2126.19, -713.51], [-2128.3, -713.61], [-2130.63, -714.37], [-2132.58, -715.02], [-2134.34, -716.02], [-2135.7, -716.91], [-2137.31, -717.97], [-2139.02, -718.91], [-2141.2, -719.38], [-2143.05, -718.66], [-2144.69, -717.11], [-2145.12, -715.31], [-2146.9, -715.9], [-2147.02, -723.91], [-2144.54, -723.76], [-2142.19, -723.34], [-2139.29, -722.71], [-2136.16, -721.95], [-2133.11, -720.97], [-2031.46, -689.94]], "holes": []}}, {"shape": {"outer": [[-2789.96, -159.59], [-2789.93, -165.66], [-2775.89, -165.59], [-2775.83, -176.18], [-2744.73, -176.04], [-2744.82, -159.37], [-2789.96, -159.59]], "holes": []}}, {"shape": {"outer": [[-2616.63, -294.02], [-2616.09, -279.83], [-2587.94, -280.88], [-2588.46, -295.07], [-2616.63, -294.02]], "holes": []}}, {"shape": {"outer": [[-2615.61, -260.32], [-2615.29, -247.87], [-2585.21, -248.67], [-2585.54, -261.1], [-2615.61, -260.32]], "holes": []}}, {"shape": {"outer": [[-262.78, -1024.25], [-253.82, -1020.5], [-230.61, -982.89], [-222.76, -970.17], [-188.78, -911.95], [-180.85, -900.27], [-160.4, -869.49], [-143.01, -848.38], [-90.93, -787.84], [-58.65, -756.37], [-34.82, -730.06], [-19.73, -716.18], [-2.8, -703.35], [13.2, -688.81], [24.83, -675.81], [39.48, -662.58], [52.72, -647.34], [57.56, -641.71], [70.46, -629.02], [79.68, -622.21], [80.14, -619.61], [89.62, -613.23], [99.41, -606.47], [107.03, -601.6], [114.03, -595.09], [124.08, -585.04], [135.91, -573.22], [139.09, -570.41], [143.13, -567.59], [147.71, -565.27], [152.16, -563.49], [157.18, -562.01], [164.62, -559.74], [172.82, -556.74], [175.72, -555.35], [179.23, -553.32], [185.67, -548.44], [199.41, -534.71], [219.06, -515.35], [224.77, -509.7], [232.17, -502.58], [264.35, -470.0], [271.14, -463.35], [274.66, -459.0], [281.17, -449.89], [288.98, -438.38], [300.49, -421.29], [313.75, -401.69], [320.83, -391.12], [324.89, -385.53], [330.72, -380.0], [332.32, -379.75], [340.34, -373.08], [345.64, -370.91], [356.27, -363.24], [371.49, -349.05], [373.8, -345.74], [376.93, -338.48], [382.01, -329.77], [407.29, -304.16], [416.09, -295.7], [416.77, -292.85], [415.96, -290.78], [421.67, -284.52], [424.88, -283.7], [434.04, -274.72], [435.93, -266.95], [442.31, -256.0], [444.15, -250.94], [446.64, -239.6], [453.36, -225.87], [458.25, -221.8], [462.73, -218.56], [469.47, -212.86], [471.56, -206.4], [471.52, -204.76], [477.48, -198.5], [482.59, -193.4], [486.72, -192.14], [494.69, -184.61], [502.13, -178.51], [506.5, -173.96], [506.93, -168.82], [510.54, -168.31], [516.12, -159.22], [524.15, -148.42], [529.14, -144.54], [533.19, -141.61], [534.29, -140.72], [535.53, -139.73], [541.31, -140.66], [543.05, -139.98], [563.17, -124.94], [565.09, -121.49], [568.45, -121.91], [571.88, -119.99], [581.08, -111.21], [584.9, -108.3], [591.38, -105.37], [596.37, -101.53], [600.14, -100.52], [604.2, -97.84], [611.75, -95.07], [617.82, -92.63], [619.12, -91.68], [620.23, -88.11], [623.55, -87.6], [624.18, -86.08], [625.7, -86.07], [628.0, -83.86], [629.32, -81.71], [628.43, -77.37], [629.87, -75.03], [634.63, -72.4], [621.78, -27.72], [617.47, -10.07], [616.88, -8.56], [614.91, -7.14], [612.61, -6.51], [611.11, -5.38], [610.25, -4.12], [608.15, -3.36], [604.88, -2.38], [602.22, -1.43], [601.29, -3.26], [600.74, -5.01], [600.21, -7.78], [596.82, -19.55], [596.18, -21.62], [590.65, -33.44], [584.87, -46.03], [578.52, -54.28], [571.45, -62.29], [558.66, -76.32], [535.28, -100.69], [518.57, -118.11], [511.69, -125.7], [490.04, -151.82], [483.05, -160.62], [433.49, -218.72], [407.4, -245.96], [391.54, -262.01], [379.86, -274.21], [356.37, -298.06], [323.41, -328.3], [299.41, -347.88], [289.95, -357.47], [79.17, -568.21], [55.59, -592.4], [47.58, -600.91], [32.53, -617.06], [17.49, -632.59], [-12.15, -663.59], [-19.95, -671.76], [-26.59, -678.41], [-33.94, -684.55], [-46.0, -694.98], [-56.36, -703.96], [-82.27, -732.1], [-117.42, -773.85], [-129.14, -788.4], [-146.29, -811.54], [-166.78, -840.49], [-178.76, -860.5], [-211.99, -914.69], [-241.94, -970.41], [-264.2, -1016.98], [-262.78, -1024.25]], "holes": []}}, {"shape": {"outer": [[-509.18, -254.39], [-512.3, -257.15], [-494.1, -277.54], [-482.45, -267.2], [-469.94, -256.13], [-473.84, -251.76], [-469.39, -247.82], [-485.63, -229.62], [-489.82, -233.35], [-490.72, -232.34], [-495.31, -236.4], [-496.21, -236.45], [-497.05, -236.13], [-505.38, -243.87], [-506.7, -243.94], [-507.34, -243.54], [-510.51, -239.93], [-513.53, -242.67], [-519.57, -248.18], [-509.32, -253.45], [-509.04, -253.75], [-509.07, -254.09], [-509.18, -254.39]], "holes": []}}, {"shape": {"outer": [[-409.09, 287.15], [-395.64, 272.9], [-406.97, 262.6], [-408.44, 260.18], [-424.0, 246.55], [-427.69, 250.6], [-407.37, 269.25], [-417.11, 279.79], [-409.09, 287.15]], "holes": []}}, {"shape": {"outer": [[-392.18, 297.8], [-385.08, 290.15], [-399.2, 277.1], [-409.95, 288.67], [-407.35, 291.07], [-406.61, 290.27], [-401.27, 295.2], [-398.37, 292.08], [-392.18, 297.8]], "holes": []}}, {"shape": {"outer": [[-204.06, 180.83], [-194.6, 170.55], [-180.8, 183.15], [-190.26, 193.43], [-204.06, 180.83]], "holes": []}}, {"shape": {"outer": [[-1622.6, 129.34], [-1621.74, 128.4], [-1620.63, 127.78], [-1619.38, 127.52], [-1618.0, 127.71], [-1616.76, 128.35], [-1615.81, 129.36], [-1615.26, 130.64], [-1615.17, 132.03], [-1615.57, 133.36], [-1616.38, 134.48], [-1617.53, 135.26], [-1618.88, 135.61], [-1620.27, 135.49], [-1621.43, 134.96], [-1622.38, 134.11], [-1623.01, 133.01], [-1623.27, 131.76], [-1623.13, 130.5], [-1622.6, 129.34]], "holes": []}}, {"shape": {"outer": [[165.1, 764.89], [169.33, 768.67], [184.22, 751.99], [183.46, 751.26], [179.69, 747.7], [165.1, 764.89]], "holes": []}}, {"shape": {"outer": [[1304.9, 2903.86], [1321.58, 2894.35], [1311.28, 2866.2], [1282.1, 2830.73], [1265.07, 2839.68], [1304.9, 2903.86]], "holes": []}}, {"shape": {"outer": [[-112.3, 167.84], [-116.7, 172.63], [-111.93, 176.96], [-112.3, 167.84]], "holes": []}}, {"shape": {"outer": [[-179.82, -578.71], [-173.04, -572.51], [-166.19, -579.94], [-172.98, -586.14], [-179.82, -578.71]], "holes": []}}, {"shape": {"outer": [[-225.93, -600.81], [-213.55, -614.51], [-187.08, -590.74], [-199.76, -576.73], [-214.34, -589.82], [-211.63, -592.81], [-213.4, -594.41], [-215.82, -591.72], [-225.93, -600.81]], "holes": []}}, {"shape": {"outer": [[-238.19, -617.79], [-225.63, -606.39], [-231.46, -600.02], [-236.52, -604.61], [-238.08, -602.89], [-245.58, -609.69], [-238.19, -617.79]], "holes": []}}, {"shape": {"outer": [[-247.54, -625.99], [-254.05, -632.04], [-265.23, -620.08], [-252.08, -607.86], [-245.05, -615.37], [-251.7, -621.55], [-247.54, -625.99]], "holes": []}}, {"shape": {"outer": [[-714.13, -397.61], [-721.41, -404.22], [-714.97, -411.28], [-707.68, -404.66], [-714.13, -397.61]], "holes": []}}, {"shape": {"outer": [[-705.16, -391.84], [-712.61, -398.76], [-700.25, -412.0], [-692.79, -405.07], [-705.16, -391.84]], "holes": []}}, {"shape": {"outer": [[-606.33, -353.73], [-587.07, -336.39], [-584.84, -338.85], [-578.21, -332.88], [-567.48, -344.7], [-569.89, -346.88], [-592.45, -367.19], [-596.06, -363.21], [-596.98, -364.02], [-606.33, -353.73]], "holes": []}}, {"shape": {"outer": [[-313.24, -636.97], [-309.68, -634.09], [-297.33, -647.12], [-294.37, -644.81], [-289.2, -650.41], [-295.32, -656.47], [-313.24, -636.97]], "holes": []}}, {"shape": {"outer": [[-283.23, -667.11], [-276.35, -674.21], [-265.94, -664.88], [-278.62, -652.16], [-284.74, -657.6], [-279.43, -663.73], [-283.23, -667.11]], "holes": []}}, {"shape": {"outer": [[-987.5, -231.89], [-983.85, -228.67], [-975.55, -221.36], [-973.05, -219.16], [-971.93, -218.17], [-969.02, -221.47], [-958.09, -233.78], [-973.23, -247.91], [-979.19, -241.15], [-987.5, -231.89]], "holes": []}}, {"shape": {"outer": [[-920.4, -198.38], [-946.83, -169.33], [-933.27, -157.08], [-921.86, -169.9], [-909.19, -183.85], [-906.83, -185.94], [-920.4, -198.38]], "holes": []}}, {"shape": {"outer": [[-792.48, -138.81], [-786.21, -133.37], [-783.24, -130.63], [-789.88, -123.15], [-788.7, -122.11], [-791.1, -119.41], [-791.07, -118.9], [-798.28, -118.46], [-798.46, -121.47], [-800.7, -121.33], [-800.81, -123.09], [-806.5, -122.73], [-792.48, -138.81]], "holes": []}}, {"shape": {"outer": [[-700.41, -12.44], [-706.16, -17.88], [-709.58, -14.29], [-715.69, -20.06], [-721.58, -25.63], [-714.32, -33.35], [-696.51, -16.53], [-700.41, -12.44]], "holes": []}}, {"shape": {"outer": [[-721.58, -25.63], [-715.69, -20.06], [-717.87, -17.78], [-710.49, -10.8], [-718.19, -2.71], [-731.83, -15.59], [-727.76, -19.86], [-727.36, -19.49], [-721.58, -25.63]], "holes": []}}, {"shape": {"outer": [[-522.91, -562.94], [-514.93, -555.62], [-520.07, -550.06], [-528.05, -557.38], [-522.91, -562.94]], "holes": []}}, {"shape": {"outer": [[-519.63, -562.46], [-508.19, -551.85], [-496.03, -564.85], [-519.09, -586.24], [-527.93, -576.77], [-516.32, -566.01], [-519.63, -562.46]], "holes": []}}, {"shape": {"outer": [[-536.88, -665.92], [-567.15, -632.53], [-552.83, -619.63], [-522.55, -653.03], [-536.88, -665.92]], "holes": []}}, {"shape": {"outer": [[-587.29, -583.77], [-579.2, -576.45], [-545.93, -613.02], [-573.98, -638.37], [-592.63, -617.87], [-572.67, -599.84], [-587.29, -583.77]], "holes": []}}, {"shape": {"outer": [[-602.19, -637.8], [-587.96, -624.82], [-574.44, -639.53], [-573.05, -638.27], [-567.12, -644.72], [-561.49, -639.58], [-549.1, -653.08], [-555.69, -659.08], [-542.16, -673.81], [-544.76, -676.18], [-565.32, -653.8], [-574.86, -662.49], [-555.59, -683.48], [-558.13, -685.79], [-602.19, -637.8]], "holes": []}}, {"shape": {"outer": [[-245.29, -641.98], [-253.75, -632.66], [-261.47, -639.61], [-253.01, -648.93], [-245.29, -641.98]], "holes": []}}, {"shape": {"outer": [[-260.55, -666.53], [-255.14, -661.34], [-269.22, -646.79], [-274.63, -651.98], [-260.55, -666.53]], "holes": []}}, {"shape": {"outer": [[-236.15, -731.32], [-227.37, -723.04], [-242.79, -708.63], [-250.6, -716.64], [-236.15, -731.32]], "holes": []}}, {"shape": {"outer": [[-53.24, -610.48], [-49.05, -606.58], [-46.92, -606.64], [-45.43, -605.49], [-45.91, -603.62], [-41.7, -599.7], [-41.0, -599.06], [-29.07, -611.78], [-43.59, -625.31], [-44.42, -624.27], [-55.32, -612.42], [-53.24, -610.48]], "holes": []}}, {"shape": {"outer": [[270.47, -210.82], [263.47, -217.29], [262.64, -216.4], [240.87, -192.98], [245.34, -188.85], [247.88, -186.52], [249.81, -188.6], [270.47, -210.82]], "holes": []}}, {"shape": {"outer": [[156.97, -112.59], [160.88, -112.61], [167.41, -107.1], [168.53, -106.25], [174.06, -112.58], [169.53, -116.5], [174.53, -116.83], [173.63, -129.6], [167.91, -129.34], [156.48, -128.81], [156.97, -112.59]], "holes": []}}, {"shape": {"outer": [[288.46, -157.2], [303.39, -158.01], [302.76, -171.51], [299.92, -171.28], [289.91, -180.08], [288.19, -181.08], [285.89, -178.61], [287.14, -168.27], [288.3, -158.51], [288.46, -157.2]], "holes": []}}, {"shape": {"outer": [[853.38, 937.54], [887.61, 970.11], [987.43, 1058.69], [987.91, 1060.18], [987.6, 1062.53], [986.45, 1064.79], [984.35, 1068.12], [957.09, 1098.85], [932.39, 1126.0], [931.17, 1126.47], [929.41, 1126.91], [927.89, 1126.4], [922.34, 1122.11], [824.69, 1033.4], [792.03, 1004.39], [790.69, 1001.94], [790.61, 999.58], [791.7, 996.82], [793.31, 994.73], [846.29, 937.55], [847.31, 936.73], [849.28, 936.27], [851.83, 936.58], [853.38, 937.54]], "holes": []}}, {"shape": {"outer": [[334.94, -113.15], [350.58, -99.37], [351.48, -100.39], [356.29, -96.15], [359.46, -99.71], [364.96, -94.86], [366.09, -96.13], [370.82, -91.96], [356.43, -76.34], [345.58, -86.12], [343.56, -88.13], [327.83, -102.04], [328.44, -102.73], [326.9, -104.08], [334.94, -113.15]], "holes": []}}, {"shape": {"outer": [[335.82, -79.81], [338.0, -81.9], [341.78, -86.13], [343.88, -84.25], [345.58, -86.12], [356.43, -76.34], [348.88, -68.02], [340.56, -75.53], [338.67, -77.23], [335.82, -79.81]], "holes": []}}, {"shape": {"outer": [[302.4, -76.84], [345.01, -38.02], [355.36, -49.3], [342.43, -61.07], [348.88, -68.02], [340.56, -75.53], [330.57, -64.64], [309.13, -84.16], [302.4, -76.84]], "holes": []}}, {"shape": {"outer": [[357.96, -48.84], [371.32, -62.88], [363.99, -69.8], [350.63, -55.75], [357.96, -48.84]], "holes": []}}, {"shape": {"outer": [[463.85, -102.14], [472.38, -110.49], [472.16, -112.74], [476.18, -115.45], [498.2, -83.91], [516.46, -56.1], [509.46, -52.21], [509.06, -51.61], [509.46, -50.61], [506.12, -48.59], [505.38, -49.17], [503.85, -49.46], [502.44, -48.73], [499.99, -47.06], [490.47, -61.53], [463.85, -102.14]], "holes": []}}, {"shape": {"outer": [[385.05, -196.86], [388.07, -199.42], [390.8, -202.39], [391.8, -201.44], [395.48, -204.57], [445.64, -152.4], [458.73, -137.27], [453.31, -126.51], [451.87, -123.64], [451.55, -120.15], [448.96, -117.35], [448.14, -118.59], [435.73, -134.08], [437.05, -135.54], [422.47, -148.54], [423.76, -152.48], [425.55, -154.89], [418.85, -159.56], [417.33, -157.31], [404.77, -169.64], [407.36, -172.28], [404.46, -175.05], [385.05, -196.86]], "holes": []}}, {"shape": {"outer": [[277.2, 12.23], [283.27, 5.71], [292.69, 14.42], [283.11, 24.71], [279.13, 21.03], [282.65, 17.26], [277.2, 12.23]], "holes": []}}, {"shape": {"outer": [[286.06, -22.09], [280.26, -15.73], [281.08, -14.99], [278.17, -11.8], [276.13, -13.65], [260.91, 3.07], [266.63, 8.24], [269.3, 5.31], [276.52, 11.84], [283.21, 4.49], [297.77, -11.51], [286.06, -22.09]], "holes": []}}, {"shape": {"outer": [[298.58, -26.92], [291.17, -33.52], [302.55, -46.25], [309.98, -39.66], [298.58, -26.92]], "holes": []}}, {"shape": {"outer": [[313.93, -8.41], [306.29, -0.29], [298.11, -7.94], [305.75, -16.05], [313.93, -8.41]], "holes": []}}, {"shape": {"outer": [[307.52, 8.52], [310.87, 4.98], [298.24, -6.87], [285.45, 6.65], [293.21, 13.93], [295.49, 16.08], [304.93, 6.1], [307.52, 8.52]], "holes": []}}, {"shape": {"outer": [[-756.63, -52.15], [-762.76, -57.79], [-774.28, -45.33], [-768.15, -39.7], [-756.63, -52.15]], "holes": []}}, {"shape": {"outer": [[-848.18, -172.59], [-835.44, -161.03], [-836.69, -159.66], [-831.24, -154.72], [-838.93, -146.3], [-835.83, -143.49], [-818.44, -162.7], [-838.73, -180.96], [-848.18, -172.59]], "holes": []}}, {"shape": {"outer": [[-1889.65, -382.91], [-1890.01, -394.59], [-1907.57, -394.05], [-1907.21, -382.37], [-1889.65, -382.91]], "holes": []}}, {"shape": {"outer": [[-1821.92, -804.01], [-1807.86, -804.49], [-1808.81, -831.92], [-1785.23, -832.74], [-1784.44, -809.99], [-1767.3, -810.58], [-1768.29, -838.98], [-1773.32, -838.81], [-1773.49, -843.67], [-1823.22, -841.95], [-1821.92, -804.01]], "holes": []}}, {"shape": {"outer": [[-1588.21, -690.55], [-1588.96, -710.97], [-1614.65, -710.03], [-1613.9, -689.6], [-1588.21, -690.55]], "holes": []}}, {"shape": {"outer": [[-1777.36, -656.33], [-1792.05, -655.71], [-1792.58, -668.15], [-1777.89, -668.77], [-1777.36, -656.33]], "holes": []}}, {"shape": {"outer": [[-1707.54, -684.81], [-1719.56, -684.34], [-1720.07, -697.26], [-1726.39, -697.03], [-1726.8, -707.72], [-1708.46, -708.42], [-1707.54, -684.81]], "holes": []}}, {"shape": {"outer": [[318.13, 385.89], [295.4, 410.11], [266.66, 383.92], [288.61, 359.18], [318.13, 385.89]], "holes": []}}, {"shape": {"outer": [[324.62, 389.28], [289.07, 357.58], [294.22, 351.85], [307.38, 337.21], [333.04, 308.66], [367.65, 342.01], [358.51, 350.47], [342.71, 336.37], [330.37, 350.1], [346.72, 364.69], [333.01, 379.95], [324.62, 389.28]], "holes": []}}, {"shape": {"outer": [[358.68, 400.06], [344.58, 387.41], [377.52, 350.84], [391.99, 362.85], [358.68, 400.06]], "holes": []}}, {"shape": {"outer": [[1962.02, 2324.33], [1978.96, 2307.66], [1954.18, 2283.55], [1956.7, 2281.18], [1946.18, 2270.85], [1926.09, 2289.65], [1962.02, 2324.33]], "holes": []}}, {"shape": {"outer": [[535.77, 389.57], [547.74, 376.27], [555.12, 382.86], [590.89, 414.82], [580.05, 426.86], [575.79, 431.59], [574.09, 430.09], [575.7, 428.3], [568.6, 421.95], [570.13, 420.26], [535.77, 389.57]], "holes": []}}, {"shape": {"outer": [[58.58, 111.85], [83.51, 134.01], [108.87, 106.47], [93.03, 91.79], [76.44, 109.66], [67.93, 101.81], [58.58, 111.85]], "holes": []}}, {"shape": {"outer": [[108.01, 321.44], [133.53, 345.07], [144.44, 333.37], [118.91, 309.74], [108.01, 321.44]], "holes": []}}, {"shape": {"outer": [[-2930.45, -1233.23], [-2936.62, -1238.63], [-2922.23, -1254.95], [-2916.06, -1249.56], [-2930.45, -1233.23]], "holes": []}}, {"shape": {"outer": [[-1474.01, -1183.17], [-1473.97, -1175.4], [-1422.12, -1176.41], [-1423.03, -1191.63], [-1429.22, -1188.41], [-1435.13, -1186.47], [-1442.51, -1184.98], [-1449.41, -1184.46], [-1465.4, -1183.21], [-1474.01, -1183.17]], "holes": []}}, {"shape": {"outer": [[-189.06, -296.74], [-188.28, -297.66], [-187.52, -298.56], [-166.24, -279.55], [-172.82, -272.25], [-179.7, -264.57], [-200.97, -283.64], [-199.41, -285.41], [-189.06, -296.74]], "holes": []}}, {"shape": {"outer": [[-3004.2, -1221.1], [-2992.61, -1234.96], [-2981.34, -1225.61], [-2983.16, -1223.44], [-2947.89, -1194.15], [-2957.66, -1182.46], [-3004.2, -1221.1]], "holes": []}}, {"shape": {"outer": [[-1695.73, -218.75], [-1695.5, -218.39], [-1695.1, -217.86], [-1694.44, -217.29], [-1694.31, -216.59], [-1694.39, -215.58], [-1694.68, -215.13], [-1695.46, -214.41], [-1695.98, -213.76], [-1696.57, -212.73], [-1696.7, -212.03], [-1696.79, -210.66], [-1696.8, -208.95], [-1696.53, -208.1], [-1696.18, -207.34], [-1695.33, -206.34], [-1694.41, -205.58], [-1693.36, -204.7], [-1692.29, -204.51], [-1691.2, -178.81], [-1696.27, -178.54], [-1716.49, -179.72], [-1720.03, -180.0], [-1729.65, -180.8], [-1733.32, -180.81], [-1736.6, -180.43], [-1741.25, -179.18], [-1745.99, -177.45], [-1752.27, -173.92], [-1767.09, -162.89], [-1773.9, -157.71], [-1780.43, -152.81], [-1788.07, -145.49], [-1788.21, -155.63], [-1789.61, -158.67], [-1791.75, -213.14], [-1791.42, -214.29], [-1790.42, -214.8], [-1695.74, -219.18], [-1695.73, -218.75]], "holes": []}}, {"shape": {"outer": [[-2918.76, 310.76], [-2908.75, 310.01], [-2908.08, 322.08], [-2918.39, 322.59], [-2918.76, 310.76]], "holes": []}}, {"shape": {"outer": [[-1331.9, 56.55], [-1329.67, 57.14], [-1329.2, 66.63], [-1329.17, 68.52], [-1329.02, 70.05], [-1328.31, 78.38], [-1328.45, 79.16], [-1328.63, 80.12], [-1328.43, 83.56], [-1328.43, 84.51], [-1328.34, 85.61], [-1328.13, 88.64], [-1327.92, 90.54], [-1327.82, 92.3], [-1327.11, 102.88], [-1327.04, 105.77], [-1327.0, 108.18], [-1327.1, 112.6], [-1326.91, 113.82], [-1326.65, 115.26], [-1326.38, 120.18], [-1326.2, 122.14], [-1326.02, 126.34], [-1325.98, 128.51], [-1326.0, 128.85], [-1326.04, 129.23], [-1325.76, 139.56], [-1325.86, 140.44], [-1325.99, 141.75], [-1326.13, 142.17], [-1326.14, 142.57], [-1326.12, 143.01], [-1326.04, 143.43], [-1325.81, 143.89], [-1325.43, 144.31], [-1325.49, 148.05], [-1325.28, 150.06], [-1325.21, 151.39], [-1324.94, 156.53], [-1322.62, 156.94], [-1320.31, 157.32], [-1316.79, 157.51], [-1313.52, 157.58], [-1311.65, 157.51], [-1310.04, 157.53], [-1305.2, 156.76], [-1301.04, 155.63], [-1297.52, 154.36], [-1292.77, 152.74], [-1289.24, 151.9], [-1286.44, 151.46], [-1281.97, 151.28], [-1277.23, 151.13], [-1275.34, 151.1], [-1273.47, 151.2], [-1271.08, 151.57], [-1268.66, 152.03], [-1263.09, 153.15], [-1257.28, 153.91], [-1255.13, 154.03], [-1252.08, 154.0], [-1242.85, 153.83], [-1243.09, 147.59], [-1245.36, 147.43], [-1247.34, 147.15], [-1249.98, 146.57], [-1252.55, 145.84], [-1254.38, 145.18], [-1253.43, 144.49], [-1252.46, 143.62], [-1251.58, 142.57], [-1250.74, 141.39], [-1250.53, 139.09], [-1250.65, 136.51], [-1251.39, 132.32], [-1252.85, 128.86], [-1253.61, 127.56], [-1254.83, 125.42], [-1254.71, 122.32], [-1253.53, 121.77], [-1252.28, 121.4], [-1248.27, 117.78], [-1242.85, 112.64], [-1243.47, 111.0], [-1243.82, 109.3], [-1243.88, 107.77], [-1243.73, 106.42], [-1249.9, 106.74], [-1249.87, 111.44], [-1255.22, 111.64], [-1254.1, 113.06], [-1253.72, 114.29], [-1254.07, 115.24], [-1254.31, 116.12], [-1254.97, 116.86], [-1255.99, 117.35], [-1257.15, 117.64], [-1258.41, 117.32], [-1259.47, 116.65], [-1260.09, 115.81], [-1260.68, 115.84], [-1260.81, 116.42], [-1261.22, 116.89], [-1261.9, 117.11], [-1262.61, 116.96], [-1263.11, 116.55], [-1263.37, 116.0], [-1269.28, 116.32], [-1269.47, 116.92], [-1269.93, 117.34], [-1270.53, 117.51], [-1271.25, 117.35], [-1271.67, 117.0], [-1271.85, 116.47], [-1278.13, 116.82], [-1278.26, 117.39], [-1278.69, 117.84], [-1279.35, 118.05], [-1280.01, 117.88], [-1280.45, 117.51], [-1280.73, 116.96], [-1281.38, 117.0], [-1281.76, 117.89], [-1282.8, 118.71], [-1284.1, 119.0], [-1285.38, 118.83], [-1286.85, 117.95], [-1287.54, 116.99], [-1287.76, 115.42], [-1287.11, 113.78], [-1285.81, 112.8], [-1286.46, 100.37], [-1290.14, 100.41], [-1290.9, 100.41], [-1291.04, 100.79], [-1291.63, 101.47], [-1292.43, 101.89], [-1293.31, 101.86], [-1294.29, 101.42], [-1294.74, 100.99], [-1295.04, 100.09], [-1295.12, 99.2], [-1294.63, 98.36], [-1294.1, 97.83], [-1293.79, 97.52], [-1294.09, 89.99], [-1294.53, 89.74], [-1295.11, 89.24], [-1295.52, 88.4], [-1295.62, 87.52], [-1295.5, 86.77], [-1294.8, 85.95], [-1294.0, 85.6], [-1292.94, 85.63], [-1292.17, 86.03], [-1291.72, 86.79], [-1287.13, 86.58], [-1287.24, 83.96], [-1287.97, 67.07], [-1288.39, 66.8], [-1289.45, 65.88], [-1290.03, 64.75], [-1290.3, 63.53], [-1290.24, 62.23], [-1289.68, 61.05], [-1288.92, 60.05], [-1287.8, 59.13], [-1286.45, 58.87], [-1283.81, 58.62], [-1285.8, 57.94], [-1287.52, 57.05], [-1288.83, 56.11], [-1290.07, 55.0], [-1291.31, 53.54], [-1292.3, 52.03], [-1292.96, 50.33], [-1294.06, 46.02], [-1298.25, 46.08], [-1301.18, 46.17], [-1299.8, 76.97], [-1299.47, 85.39], [-1299.28, 89.69], [-1307.93, 90.12], [-1308.18, 84.8], [-1306.47, 84.79], [-1306.84, 75.2], [-1307.15, 68.39], [-1307.89, 51.74], [-1308.0, 49.8], [-1308.15, 46.62], [-1315.29, 46.98], [-1315.33, 45.95], [-1320.19, 46.2], [-1332.1, 46.87], [-1331.9, 56.55]], "holes": []}}, {"shape": {"outer": [[2311.26, 1770.82], [2303.0, 1762.58], [2293.95, 1753.56], [2295.84, 1750.89], [2299.4, 1748.95], [2312.76, 1769.58], [2311.26, 1770.82]], "holes": []}}, {"shape": {"outer": [[2279.65, 1742.31], [2291.45, 1753.63], [2294.28, 1749.53], [2298.26, 1747.24], [2295.31, 1743.73], [2289.88, 1740.61], [2282.41, 1739.41], [2279.7, 1739.92], [2279.65, 1742.31]], "holes": []}}, {"shape": {"outer": [[2577.13, 1991.41], [2658.84, 1989.05], [2663.02, 2043.81], [2612.76, 2048.89], [2577.13, 1991.41]], "holes": []}}, {"shape": {"outer": [[2323.53, 1676.76], [2321.45, 1690.47], [2324.29, 1691.23], [2323.58, 1693.45], [2331.39, 1695.19], [2328.8, 1704.19], [2330.28, 1704.55], [2335.18, 1705.75], [2329.33, 1726.92], [2341.18, 1730.18], [2345.92, 1713.08], [2348.98, 1700.72], [2353.06, 1684.27], [2323.53, 1676.76]], "holes": []}}, {"shape": {"outer": [[-1862.31, -1379.05], [-1856.75, -1378.2], [-1857.2, -1393.16], [-1857.37, -1397.87], [-1857.97, -1397.85], [-1858.07, -1400.75], [-1860.05, -1400.68], [-1860.2, -1405.02], [-1860.5, -1419.69], [-1872.88, -1419.5], [-1871.36, -1377.73], [-1867.48, -1379.01], [-1862.31, -1379.05]], "holes": []}}, {"shape": {"outer": [[-1836.3, -1383.32], [-1836.3, -1382.2], [-1835.1, -1381.01], [-1827.36, -1383.02], [-1827.73, -1410.32], [-1820.0, -1410.59], [-1820.01, -1415.85], [-1829.3, -1419.97], [-1837.64, -1420.87], [-1837.15, -1407.74], [-1836.3, -1383.32]], "holes": []}}, {"shape": {"outer": [[-1847.67, -800.69], [-1823.71, -801.0], [-1824.9, -842.51], [-1849.1, -841.46], [-1848.97, -839.96], [-1848.51, -824.73], [-1854.49, -824.53], [-1853.98, -809.48], [-1847.98, -809.69], [-1847.67, -800.69]], "holes": []}}, {"shape": {"outer": [[-2013.04, -809.53], [-2012.19, -787.89], [-1985.94, -788.92], [-1986.42, -801.03], [-1966.98, -801.79], [-1967.44, -813.52], [-1989.55, -812.64], [-1989.47, -810.45], [-2013.04, -809.53]], "holes": []}}, {"shape": {"outer": [[-2001.05, -834.31], [-1990.67, -834.83], [-1989.87, -813.06], [-2013.36, -812.36], [-2013.6, -824.18], [-2000.67, -824.79], [-2001.05, -834.31]], "holes": []}}, {"shape": {"outer": [[-1955.72, -790.1], [-1955.26, -765.55], [-1898.88, -768.08], [-1899.48, -789.02], [-1922.95, -787.55], [-1922.96, -791.53], [-1955.72, -790.1]], "holes": []}}, {"shape": {"outer": [[-1986.69, -785.95], [-1979.78, -786.07], [-1979.86, -788.73], [-1965.81, -789.36], [-1965.13, -765.11], [-1982.41, -764.34], [-1982.47, -771.57], [-1978.16, -775.35], [-1986.69, -785.95]], "holes": []}}, {"shape": {"outer": [[-1923.28, -838.33], [-1900.79, -839.24], [-1900.76, -826.48], [-1921.29, -825.7], [-1922.59, -825.52], [-1923.28, -838.33]], "holes": []}}, {"shape": {"outer": [[-2083.86, -830.41], [-2083.71, -820.58], [-2083.38, -799.28], [-2083.34, -796.45], [-2090.57, -796.1], [-2098.93, -795.78], [-2099.49, -810.24], [-2094.32, -810.43], [-2095.08, -830.27], [-2083.86, -830.41]], "holes": []}}, {"shape": {"outer": [[-2083.38, -799.28], [-2067.18, -799.65], [-2069.08, -807.99], [-2057.81, -808.55], [-2058.55, -830.07], [-2078.73, -829.36], [-2078.83, -820.85], [-2083.71, -820.58], [-2083.38, -799.28]], "holes": []}}, {"shape": {"outer": [[-2125.86, -798.26], [-2126.13, -803.69], [-2114.28, -804.27], [-2114.23, -798.71], [-2108.41, -798.76], [-2107.96, -791.08], [-2113.9, -791.03], [-2113.77, -786.65], [-2142.84, -785.7], [-2142.92, -788.42], [-2147.66, -788.16], [-2147.81, -797.5], [-2125.86, -798.26]], "holes": []}}, {"shape": {"outer": [[-2390.05, -815.97], [-2324.05, -819.3], [-2320.96, -819.46], [-2320.69, -814.12], [-2320.51, -813.92], [-2320.28, -813.85], [-2314.05, -814.11], [-2313.91, -810.75], [-2313.6, -804.14], [-2313.4, -799.57], [-2313.11, -793.35], [-2311.34, -792.28], [-2301.48, -792.69], [-2301.53, -793.9], [-2283.99, -794.62], [-2283.79, -793.47], [-2275.99, -791.17], [-2255.1, -792.04], [-2255.26, -795.89], [-2246.89, -796.23], [-2246.8, -792.0], [-2237.27, -792.43], [-2237.52, -796.61], [-2229.32, -796.96], [-2229.17, -793.22], [-2208.58, -794.07], [-2208.74, -797.84], [-2182.76, -798.91], [-2182.73, -798.19], [-2173.44, -798.58], [-2173.19, -794.22], [-2172.35, -792.95], [-2170.69, -792.5], [-2168.54, -792.57], [-2168.25, -785.65], [-2172.21, -785.36], [-2173.26, -783.77], [-2173.22, -777.68], [-2239.32, -774.43], [-2273.44, -772.76], [-2326.71, -790.71], [-2327.51, -796.3], [-2350.14, -795.37], [-2391.95, -810.5], [-2390.05, -815.97]], "holes": []}}, {"shape": {"outer": [[-2465.41, -1338.66], [-2455.53, -1339.04], [-2455.53, -1330.04], [-2465.41, -1338.66]], "holes": []}}, {"shape": {"outer": [[1217.67, 622.64], [1175.91, 585.13], [1200.78, 557.47], [1219.08, 573.04], [1228.98, 582.02], [1243.33, 594.66], [1241.86, 595.77], [1217.67, 622.64]], "holes": []}}, {"shape": {"outer": [[1533.17, 1088.77], [1541.02, 1080.57], [1557.17, 1093.86], [1559.9, 1097.19], [1564.57, 1103.09], [1566.73, 1107.99], [1570.32, 1125.06], [1591.89, 1240.2], [1597.3, 1283.53], [1591.56, 1289.11], [1578.9, 1291.48], [1567.17, 1211.49], [1557.03, 1159.87], [1550.87, 1120.01], [1547.01, 1102.95], [1533.17, 1088.77]], "holes": []}}, {"shape": {"outer": [[1634.43, 1213.64], [1644.93, 1201.76], [1659.27, 1214.35], [1657.99, 1218.02], [1650.3, 1226.65], [1649.19, 1226.61], [1634.43, 1213.64]], "holes": []}}, {"shape": {"outer": [[1634.75, 1242.94], [1620.46, 1257.06], [1608.16, 1247.22], [1606.26, 1252.63], [1593.67, 1241.51], [1586.72, 1202.04], [1595.96, 1208.9], [1634.75, 1242.94]], "holes": []}}, {"shape": {"outer": [[1217.31, 893.06], [1244.51, 917.77], [1232.55, 916.36], [1232.42, 925.72], [1243.06, 935.35], [1236.25, 943.11], [1309.76, 1007.97], [1314.36, 1002.93], [1322.88, 990.97], [1313.92, 982.89], [1353.73, 939.07], [1375.29, 958.53], [1371.66, 962.52], [1421.9, 1007.84], [1431.74, 997.01], [1455.01, 1018.0], [1445.18, 1028.82], [1480.56, 1060.74], [1456.51, 1087.22], [1468.29, 1099.11], [1495.87, 1071.64], [1492.0, 1059.48], [1489.85, 1054.57], [1480.16, 1035.33], [1472.3, 1022.07], [1463.89, 1010.0], [1430.96, 970.58], [1407.24, 946.29], [1382.37, 923.33], [1338.21, 885.65], [1332.31, 891.27], [1269.04, 834.3], [1264.86, 838.71], [1259.9, 836.11], [1226.34, 873.51], [1230.34, 876.71], [1224.67, 883.49], [1222.13, 883.56], [1222.27, 888.43], [1217.31, 893.06]], "holes": []}}, {"shape": {"outer": [[1237.2, 828.76], [1237.8, 849.99], [1215.33, 878.3], [1218.99, 924.76], [1216.71, 925.48], [1176.52, 927.87], [1174.22, 884.28], [1212.39, 843.5], [1217.19, 847.26], [1219.14, 847.01], [1224.26, 841.21], [1237.2, 828.76]], "holes": []}}, {"shape": {"outer": [[1402.69, 1198.47], [1470.1, 1124.57], [1466.23, 1121.0], [1413.76, 1072.97], [1396.41, 1057.32], [1386.66, 1068.32], [1366.73, 1090.21], [1388.4, 1111.28], [1356.83, 1145.94], [1354.55, 1148.0], [1376.46, 1168.61], [1373.75, 1171.83], [1402.69, 1198.47]], "holes": []}}, {"shape": {"outer": [[1522.04, 1332.65], [1539.46, 1345.84], [1558.8, 1324.25], [1541.77, 1311.38], [1522.04, 1332.65]], "holes": []}}, {"shape": {"outer": [[1548.19, 1548.16], [1535.91, 1556.82], [1592.09, 1607.23], [1600.1, 1606.72], [1587.32, 1485.93], [1582.55, 1442.86], [1574.99, 1443.51], [1575.18, 1448.35], [1573.98, 1449.16], [1575.73, 1465.44], [1580.13, 1469.39], [1581.06, 1480.17], [1544.61, 1522.58], [1559.54, 1537.04], [1548.19, 1548.16]], "holes": []}}, {"shape": {"outer": [[1199.02, 814.98], [1202.44, 818.4], [1178.97, 845.95], [1172.96, 840.86], [1168.21, 846.06], [1094.82, 782.07], [1135.6, 736.87], [1154.06, 753.5], [1156.52, 755.45], [1132.76, 781.78], [1151.82, 798.98], [1166.43, 782.77], [1190.12, 804.32], [1188.79, 805.92], [1199.02, 814.98]], "holes": []}}, {"shape": {"outer": [[1006.9, 842.13], [1001.58, 837.52], [1013.64, 824.4], [1031.31, 841.05], [1019.94, 853.64], [1006.9, 842.13]], "holes": []}}, {"shape": {"outer": [[972.4, 833.91], [959.12, 822.25], [997.37, 778.88], [998.08, 779.43], [1006.52, 786.99], [978.83, 817.78], [983.25, 821.75], [972.4, 833.91]], "holes": []}}, {"shape": {"outer": [[1019.91, 818.18], [1023.15, 814.97], [1029.72, 807.66], [1088.4, 856.92], [1082.76, 862.95], [1073.38, 872.75], [1048.02, 899.23], [1018.55, 873.57], [1047.03, 843.33], [1019.91, 818.18]], "holes": []}}, {"shape": {"outer": [[1382.51, 355.02], [1404.73, 330.83], [1436.42, 359.73], [1431.64, 366.1], [1416.62, 386.14], [1382.51, 355.02]], "holes": []}}, {"shape": {"outer": [[1323.56, 419.74], [1358.53, 380.2], [1363.13, 384.24], [1368.21, 378.49], [1373.04, 382.73], [1367.87, 388.56], [1370.23, 390.64], [1348.07, 415.7], [1383.28, 446.63], [1358.04, 475.17], [1336.22, 456.01], [1341.23, 450.35], [1348.75, 441.85], [1335.3, 430.04], [1323.56, 419.74]], "holes": []}}, {"shape": {"outer": [[1043.07, 433.18], [1054.47, 420.66], [1080.88, 444.58], [1096.28, 458.4], [1107.18, 468.17], [1123.67, 483.19], [1112.27, 495.71], [1067.15, 454.94], [1070.75, 451.0], [1064.17, 445.05], [1060.57, 449.0], [1043.07, 433.18]], "holes": []}}, {"shape": {"outer": [[1108.95, 469.13], [1134.75, 440.48], [1158.62, 461.83], [1132.82, 490.48], [1108.95, 469.13]], "holes": []}}, {"shape": {"outer": [[1156.09, 516.47], [1162.49, 509.22], [1163.82, 510.4], [1176.93, 521.89], [1188.98, 508.27], [1187.22, 506.72], [1195.66, 497.17], [1211.0, 510.63], [1184.1, 541.05], [1182.39, 539.55], [1156.09, 516.47]], "holes": []}}, {"shape": {"outer": [[897.27, 292.72], [904.81, 284.28], [947.61, 322.19], [941.12, 329.47], [937.71, 326.45], [936.68, 327.63], [897.27, 292.72]], "holes": []}}, {"shape": {"outer": [[1498.92, 1124.18], [1514.24, 1107.36], [1522.37, 1116.15], [1526.31, 1125.45], [1538.82, 1160.29], [1543.81, 1178.46], [1546.28, 1186.94], [1550.79, 1208.85], [1555.6, 1232.18], [1557.25, 1249.08], [1532.28, 1272.2], [1521.11, 1263.69], [1543.93, 1239.09], [1539.66, 1235.14], [1543.66, 1230.39], [1537.48, 1224.7], [1542.19, 1219.63], [1529.5, 1207.92], [1541.85, 1194.61], [1527.6, 1182.19], [1525.65, 1174.31], [1508.58, 1158.8], [1521.63, 1144.45], [1498.92, 1124.18]], "holes": []}}, {"shape": {"outer": [[1074.09, 924.65], [1073.07, 925.51], [1048.39, 902.48], [1074.78, 873.86], [1073.38, 872.75], [1082.76, 862.95], [1090.47, 868.08], [1099.43, 872.18], [1091.48, 884.82], [1093.9, 886.79], [1091.3, 890.45], [1088.36, 888.02], [1075.44, 902.19], [1073.78, 900.8], [1070.83, 904.48], [1079.13, 911.78], [1072.85, 918.58], [1074.09, 924.65]], "holes": []}}, {"shape": {"outer": [[1523.82, 1067.87], [1532.37, 1058.23], [1524.94, 1048.09], [1518.97, 1038.21], [1511.39, 1025.34], [1502.06, 1008.75], [1498.5, 1002.8], [1496.58, 999.6], [1495.17, 997.34], [1495.82, 999.41], [1496.81, 1001.95], [1507.6, 1026.46], [1510.39, 1032.22], [1512.63, 1038.08], [1516.28, 1047.11], [1520.56, 1059.09], [1523.82, 1067.87]], "holes": []}}, {"shape": {"outer": [[988.91, 492.8], [986.82, 493.07], [977.13, 503.6], [989.72, 519.14], [993.1, 515.48], [994.74, 516.96], [991.56, 520.41], [1019.91, 546.32], [1023.19, 542.75], [1025.22, 544.61], [1021.94, 548.17], [1050.13, 573.94], [1053.59, 570.18], [1056.98, 573.28], [1067.14, 562.24], [1063.84, 559.23], [1066.09, 556.79], [1103.7, 591.16], [1087.75, 608.49], [1106.93, 626.02], [1127.33, 603.85], [1125.16, 601.87], [1128.84, 597.87], [1054.29, 529.73], [1050.35, 534.02], [1046.44, 530.44], [1035.91, 541.89], [1033.89, 540.04], [1036.17, 537.58], [1018.39, 521.29], [1016.09, 523.77], [1013.94, 521.81], [1016.24, 519.32], [997.54, 502.19], [998.97, 501.12], [991.16, 490.69], [988.91, 492.8]], "holes": []}}, {"shape": {"outer": [[1422.39, 806.04], [1404.51, 790.09], [1430.47, 761.2], [1448.36, 777.16], [1445.33, 780.75], [1437.62, 789.92], [1422.39, 806.04]], "holes": []}}, {"shape": {"outer": [[1382.19, 714.41], [1395.85, 726.76], [1405.92, 715.7], [1392.25, 703.36], [1382.19, 714.41]], "holes": []}}, {"shape": {"outer": [[1525.26, 824.81], [1523.48, 826.73], [1516.25, 834.48], [1501.86, 821.15], [1510.88, 811.49], [1525.26, 824.81]], "holes": []}}, {"shape": {"outer": [[1512.01, 879.65], [1525.56, 891.56], [1546.95, 867.39], [1533.4, 855.49], [1512.01, 879.65]], "holes": []}}, {"shape": {"outer": [[1543.27, 837.74], [1531.78, 850.31], [1554.2, 870.63], [1559.84, 864.45], [1552.85, 858.1], [1556.85, 853.72], [1547.51, 845.26], [1549.34, 843.25], [1543.27, 837.74]], "holes": []}}, {"shape": {"outer": [[1564.08, 872.34], [1560.17, 876.62], [1581.38, 895.86], [1596.24, 879.6], [1590.16, 874.09], [1586.78, 871.03], [1581.34, 876.98], [1576.25, 872.37], [1572.85, 876.09], [1570.25, 873.73], [1568.15, 876.03], [1564.08, 872.34]], "holes": []}}, {"shape": {"outer": [[1636.23, 943.28], [1628.81, 951.59], [1608.21, 933.32], [1615.63, 925.01], [1616.36, 925.65], [1634.62, 941.84], [1636.23, 943.28]], "holes": []}}, {"shape": {"outer": [[1730.38, 948.86], [1729.78, 949.52], [1749.19, 966.89], [1774.05, 939.32], [1760.48, 927.18], [1751.49, 937.15], [1745.65, 931.92], [1730.38, 948.86]], "holes": []}}, {"shape": {"outer": [[1392.65, 610.82], [1402.78, 599.77], [1388.29, 586.59], [1376.37, 599.6], [1377.99, 601.07], [1384.6, 607.08], [1386.39, 605.12], [1392.65, 610.82]], "holes": []}}, {"shape": {"outer": [[-482.61, 455.15], [-455.59, 425.04], [-482.72, 402.31], [-499.54, 419.75], [-502.69, 426.69], [-504.44, 430.56], [-506.32, 434.69], [-482.61, 455.15]], "holes": []}}, {"shape": {"outer": [[-460.59, 459.09], [-460.98, 463.61], [-464.05, 465.83], [-469.03, 461.05], [-468.09, 458.18], [-472.28, 456.75], [-468.38, 447.82], [-465.18, 442.85], [-461.39, 438.84], [-459.89, 440.05], [-458.34, 441.52], [-456.14, 441.54], [-454.57, 442.65], [-451.47, 443.95], [-450.16, 444.1], [-452.27, 446.95], [-455.57, 449.78], [-457.98, 454.3], [-460.59, 459.09]], "holes": []}}, {"shape": {"outer": [[-434.82, 435.68], [-410.17, 458.47], [-416.52, 465.29], [-421.84, 460.37], [-434.44, 448.72], [-441.17, 442.49], [-434.82, 435.68]], "holes": []}}, {"shape": {"outer": [[-434.04, 435.18], [-425.69, 426.34], [-412.81, 438.41], [-407.71, 443.18], [-403.84, 446.8], [-412.19, 455.65], [-434.04, 435.18]], "holes": []}}, {"shape": {"outer": [[-445.24, 375.67], [-459.65, 391.82], [-468.81, 383.72], [-454.4, 367.56], [-445.24, 375.67]], "holes": []}}, {"shape": {"outer": [[-354.62, 448.09], [-375.46, 429.8], [-389.41, 417.18], [-362.58, 387.11], [-354.51, 394.07], [-355.07, 402.65], [-375.09, 425.17], [-360.54, 438.01], [-342.33, 417.47], [-332.3, 416.64], [-330.41, 415.1], [-328.7, 416.58], [-327.21, 417.95], [-354.62, 448.09]], "holes": []}}, {"shape": {"outer": [[-400.8, 468.01], [-409.55, 460.0], [-383.22, 431.14], [-378.86, 431.12], [-375.46, 429.8], [-354.62, 448.09], [-352.66, 449.77], [-365.83, 464.91], [-370.65, 461.53], [-371.17, 460.94], [-371.47, 460.42], [-371.66, 459.85], [-373.33, 460.22], [-374.66, 460.33], [-375.89, 460.06], [-376.96, 459.42], [-383.63, 452.97], [-384.63, 452.68], [-385.66, 452.59], [-386.55, 452.78], [-387.37, 453.2], [-388.79, 454.65], [-400.8, 468.01]], "holes": []}}, {"shape": {"outer": [[-390.1, 332.44], [-386.25, 328.21], [-389.97, 324.85], [-388.07, 322.77], [-392.92, 318.39], [-398.67, 324.71], [-395.76, 327.34], [-390.1, 332.44]], "holes": []}}, {"shape": {"outer": [[-249.69, 460.86], [-251.56, 459.21], [-253.4, 457.58], [-249.82, 453.55], [-268.02, 437.46], [-245.06, 411.66], [-223.14, 431.02], [-249.69, 460.86]], "holes": []}}, {"shape": {"outer": [[-211.01, 387.67], [-206.86, 391.5], [-224.19, 410.13], [-222.97, 411.25], [-231.47, 420.37], [-243.7, 409.07], [-232.88, 397.46], [-228.45, 401.55], [-223.38, 396.09], [-220.94, 398.35], [-211.01, 387.67]], "holes": []}}, {"shape": {"outer": [[-286.9, 363.4], [-266.46, 341.18], [-254.68, 351.94], [-271.18, 369.85], [-274.53, 366.79], [-278.48, 371.08], [-286.9, 363.4]], "holes": []}}, {"shape": {"outer": [[-578.89, 294.09], [-552.8, 266.32], [-567.02, 253.04], [-593.12, 280.82], [-578.89, 294.09]], "holes": []}}, {"shape": {"outer": [[-648.37, 376.09], [-644.32, 371.52], [-644.88, 367.09], [-641.26, 362.67], [-627.04, 375.77], [-633.5, 382.13], [-636.31, 379.48], [-638.16, 380.25], [-640.55, 382.62], [-648.37, 376.09]], "holes": []}}, {"shape": {"outer": [[-557.12, 243.73], [-551.88, 248.31], [-545.36, 240.88], [-548.77, 237.89], [-550.8, 240.21], [-552.62, 238.63], [-554.34, 240.56], [-557.12, 243.73]], "holes": []}}, {"shape": {"outer": [[-700.99, 78.16], [-688.31, 89.33], [-720.16, 125.22], [-741.29, 106.6], [-738.88, 103.88], [-730.43, 111.32], [-700.99, 78.16]], "holes": []}}, {"shape": {"outer": [[-686.93, 114.74], [-701.75, 131.24], [-692.47, 139.53], [-682.8, 128.76], [-687.99, 124.11], [-682.84, 118.39], [-686.93, 114.74]], "holes": []}}, {"shape": {"outer": [[-797.22, 25.0], [-806.35, 34.95], [-792.02, 48.01], [-783.95, 39.22], [-790.24, 33.5], [-789.17, 32.34], [-797.22, 25.0]], "holes": []}}, {"shape": {"outer": [[-670.94, 38.25], [-664.28, 30.31], [-640.43, 50.19], [-642.66, 52.84], [-636.33, 58.12], [-629.99, 50.57], [-622.05, 57.19], [-635.42, 73.11], [-647.43, 63.11], [-649.95, 66.1], [-655.3, 61.64], [-650.18, 55.55], [-670.94, 38.25]], "holes": []}}, {"shape": {"outer": [[-629.91, 85.67], [-617.49, 72.33], [-626.19, 64.29], [-638.61, 77.61], [-629.91, 85.67]], "holes": []}}, {"shape": {"outer": [[-615.58, 72.16], [-608.05, 79.19], [-610.66, 81.97], [-603.51, 88.64], [-613.05, 98.8], [-619.27, 93.0], [-616.04, 89.57], [-624.52, 81.67], [-615.58, 72.16]], "holes": []}}, {"shape": {"outer": [[-594.02, 56.58], [-585.01, 64.45], [-598.54, 79.85], [-607.56, 71.97], [-594.02, 56.58]], "holes": []}}, {"shape": {"outer": [[-600.74, 139.0], [-608.99, 131.16], [-607.38, 129.49], [-606.88, 129.96], [-588.84, 111.07], [-598.77, 101.66], [-593.3, 95.93], [-575.21, 113.09], [-589.19, 126.64], [-600.74, 139.0]], "holes": []}}, {"shape": {"outer": [[-577.01, 109.54], [-590.88, 96.38], [-583.15, 88.28], [-569.27, 101.43], [-577.01, 109.54]], "holes": []}}, {"shape": {"outer": [[-645.25, 130.31], [-631.39, 143.21], [-649.16, 162.19], [-649.97, 165.26], [-648.48, 168.64], [-645.43, 171.46], [-647.85, 174.03], [-650.88, 177.27], [-669.76, 159.71], [-663.41, 152.95], [-658.75, 157.28], [-645.2, 142.82], [-651.49, 136.98], [-645.25, 130.31]], "holes": []}}, {"shape": {"outer": [[-519.12, 188.23], [-508.25, 198.36], [-499.39, 188.92], [-510.26, 178.78], [-512.28, 180.94], [-516.89, 185.85], [-518.5, 187.38], [-519.12, 188.23]], "holes": []}}, {"shape": {"outer": [[-504.4, 195.83], [-494.01, 184.71], [-495.26, 183.7], [-499.27, 179.99], [-473.4, 150.63], [-469.8, 153.95], [-469.33, 154.07], [-468.01, 153.5], [-465.15, 155.95], [-462.82, 157.86], [-463.51, 158.68], [-463.46, 159.38], [-459.7, 162.86], [-486.73, 191.98], [-489.01, 189.82], [-489.41, 189.68], [-489.99, 189.72], [-490.38, 189.96], [-493.92, 193.92], [-493.94, 194.32], [-493.72, 194.63], [-493.38, 194.8], [-492.94, 194.69], [-490.05, 191.58], [-488.04, 193.34], [-490.33, 195.8], [-490.8, 196.94], [-490.4, 197.86], [-479.33, 207.86], [-478.46, 208.14], [-477.67, 207.79], [-474.32, 204.06], [-457.34, 219.19], [-460.16, 222.33], [-460.19, 222.71], [-459.63, 223.53], [-462.03, 226.14], [-464.6, 228.93], [-465.61, 228.27], [-466.63, 228.41], [-470.59, 232.68], [-504.56, 200.78], [-501.86, 198.08], [-504.4, 195.83]], "holes": []}}, {"shape": {"outer": [[-164.94, 368.09], [-172.55, 360.86], [-162.29, 350.14], [-154.69, 357.37], [-164.94, 368.09]], "holes": []}}, {"shape": {"outer": [[-169.62, 368.59], [-160.92, 376.66], [-163.72, 379.66], [-164.74, 378.71], [-175.07, 389.74], [-182.75, 382.61], [-169.62, 368.59]], "holes": []}}, {"shape": {"outer": [[-252.47, 284.42], [-243.75, 275.06], [-164.85, 347.95], [-174.95, 358.8], [-187.64, 347.09], [-187.06, 346.47], [-193.69, 340.35], [-194.86, 341.6], [-212.91, 324.93], [-213.89, 325.98], [-220.12, 320.22], [-222.63, 322.91], [-236.57, 310.04], [-231.1, 304.16], [-252.47, 284.42]], "holes": []}}, {"shape": {"outer": [[-139.26, 260.21], [-132.96, 253.25], [-126.49, 259.16], [-125.65, 274.05], [-126.9, 275.33], [-131.0, 271.66], [-139.78, 281.36], [-142.9, 278.55], [-132.11, 266.63], [-139.26, 260.21]], "holes": []}}, {"shape": {"outer": [[-220.14, 273.58], [-230.4, 284.23], [-251.73, 263.83], [-244.27, 256.09], [-230.11, 269.62], [-227.31, 266.73], [-220.14, 273.58]], "holes": []}}, {"shape": {"outer": [[-203.51, 274.99], [-207.17, 271.52], [-214.45, 279.19], [-217.83, 276.01], [-227.97, 286.68], [-198.7, 314.31], [-189.66, 304.79], [-196.77, 298.07], [-193.04, 294.15], [-199.41, 288.13], [-206.07, 295.13], [-213.74, 287.91], [-206.81, 280.62], [-207.88, 279.59], [-203.51, 274.99]], "holes": []}}, {"shape": {"outer": [[-155.95, 198.31], [-147.22, 206.49], [-155.29, 215.02], [-164.01, 206.84], [-155.95, 198.31]], "holes": []}}, {"shape": {"outer": [[-274.49, 164.08], [-269.34, 158.37], [-271.24, 156.68], [-251.92, 135.21], [-241.7, 144.5], [-233.74, 135.64], [-225.01, 143.07], [-240.49, 160.26], [-245.07, 156.17], [-248.51, 159.99], [-255.45, 153.79], [-269.07, 168.93], [-274.49, 164.08]], "holes": []}}, {"shape": {"outer": [[-311.99, 212.72], [-292.24, 189.87], [-288.71, 192.79], [-282.36, 186.1], [-276.98, 190.9], [-286.37, 201.03], [-276.19, 210.5], [-292.39, 228.19], [-293.55, 229.47], [-311.99, 212.72]], "holes": []}}, {"shape": {"outer": [[-331.37, 222.85], [-306.48, 246.94], [-301.96, 243.51], [-293.95, 250.31], [-283.65, 239.41], [-319.37, 207.74], [-327.29, 216.57], [-326.78, 217.92], [-331.37, 222.85]], "holes": []}}, {"shape": {"outer": [[-168.71, 322.81], [-178.18, 333.14], [-171.54, 339.18], [-167.32, 334.57], [-161.66, 339.71], [-166.03, 344.48], [-163.37, 346.9], [-151.35, 333.78], [-159.84, 326.05], [-162.26, 328.69], [-168.71, 322.81]], "holes": []}}, {"shape": {"outer": [[-151.01, 336.03], [-161.7, 347.71], [-149.01, 359.24], [-136.57, 345.64], [-140.53, 342.04], [-142.28, 343.96], [-151.01, 336.03]], "holes": []}}, {"shape": {"outer": [[-138.91, 349.43], [-131.11, 356.43], [-124.96, 349.63], [-128.22, 346.7], [-126.22, 344.49], [-130.75, 340.42], [-138.91, 349.43]], "holes": []}}, {"shape": {"outer": [[-537.47, 37.41], [-520.53, 19.98], [-506.64, 33.38], [-523.58, 50.82], [-537.47, 37.41]], "holes": []}}, {"shape": {"outer": [[-496.8, 41.36], [-503.04, 35.59], [-492.29, 24.03], [-483.42, 32.22], [-490.35, 39.68], [-491.33, 38.77], [-492.59, 40.12], [-494.23, 38.6], [-496.8, 41.36]], "holes": []}}, {"shape": {"outer": [[-523.49, -60.59], [-517.07, -54.74], [-507.39, -65.28], [-508.64, -66.42], [-513.81, -71.13], [-523.49, -60.59]], "holes": []}}, {"shape": {"outer": [[-610.47, -1.51], [-617.91, -8.15], [-611.32, -15.48], [-608.9, -18.17], [-603.48, -13.33], [-601.46, -11.54], [-610.47, -1.51]], "holes": []}}, {"shape": {"outer": [[127.71, -2180.86], [154.62, -2199.49], [166.24, -2200.3], [170.04, -2129.03], [153.24, -2118.37], [153.58, -2110.58], [130.54, -2097.84], [127.71, -2180.86]], "holes": []}}, {"shape": {"outer": [[173.16, -2202.14], [184.9, -2202.35], [187.43, -2155.31], [181.77, -2154.09], [183.41, -2146.2], [185.3, -2142.47], [187.56, -2142.3], [198.21, -2122.84], [200.93, -2115.1], [191.34, -2109.21], [190.47, -2110.57], [187.02, -2108.37], [183.35, -2114.07], [177.42, -2110.29], [174.95, -2114.13], [179.58, -2117.81], [179.12, -2129.99], [177.74, -2140.84], [175.66, -2143.15], [170.85, -2145.26], [170.57, -2150.7], [172.1, -2151.1], [174.79, -2153.06], [173.16, -2202.14]], "holes": []}}, {"shape": {"outer": [[-129.92, -1938.12], [-138.34, -1931.42], [-145.72, -1922.65], [-161.53, -1900.75], [-192.2, -1850.75], [-249.99, -1763.71], [-251.5, -1761.92], [-255.96, -1760.43], [-258.69, -1760.15], [-261.11, -1761.84], [-263.0, -1763.15], [-245.53, -1792.68], [-149.23, -1942.05], [-116.37, -1994.0], [-59.85, -2077.5], [-5.98, -2157.99], [15.51, -2190.61], [19.15, -2196.51], [20.19, -2197.61], [22.97, -2200.06], [25.31, -2201.19], [45.8, -2232.66], [58.67, -2252.09], [74.49, -2276.44], [80.93, -2288.22], [84.62, -2296.38], [88.22, -2303.11], [94.16, -2311.8], [119.17, -2347.19], [148.35, -2386.01], [157.91, -2398.24], [159.95, -2400.84], [168.71, -2412.05], [170.49, -2414.32], [172.2, -2416.51], [193.59, -2445.41], [219.35, -2479.53], [230.54, -2495.81], [242.01, -2514.37], [250.15, -2528.69], [257.05, -2540.84], [268.43, -2562.59], [275.47, -2578.52], [281.29, -2591.0], [288.7, -2610.39], [296.96, -2633.47], [306.87, -2665.12], [308.83, -2671.21], [311.42, -2676.25], [314.66, -2683.57], [317.22, -2689.55], [321.42, -2705.18], [324.52, -2717.1], [324.87, -2721.5], [325.59, -2729.45], [326.43, -2733.73], [327.98, -2737.45], [329.45, -2739.97], [332.94, -2742.74], [334.16, -2743.27], [341.98, -2765.06], [374.68, -2800.57], [446.57, -2871.81], [453.36, -2650.93], [630.1, -2652.12], [637.01, -2427.75], [629.28, -2420.43], [561.4, -2352.2], [503.44, -2326.8], [486.94, -2321.84], [475.64, -2320.35], [471.32, -2320.82], [465.75, -2323.97], [460.3, -2323.04], [453.91, -2320.71], [442.9, -2315.72], [442.95, -2313.77], [442.24, -2311.21], [440.33, -2309.6], [431.8, -2306.83], [420.95, -2302.82], [420.59, -2302.6], [396.83, -2288.41], [386.89, -2280.59], [381.28, -2276.18], [372.44, -2269.22], [364.62, -2261.81], [349.92, -2247.87], [340.17, -2253.29], [332.79, -2261.59], [316.86, -2277.46], [300.24, -2292.05], [291.4, -2295.93], [286.02, -2298.29], [280.72, -2301.79], [273.9, -2292.53], [266.69, -2281.27], [264.12, -2280.96], [264.0, -2283.73], [262.5, -2286.41], [261.02, -2288.49], [259.08, -2289.86], [256.8, -2290.63], [254.53, -2290.92], [251.93, -2290.37], [249.95, -2289.37], [247.85, -2287.53], [246.61, -2285.48], [246.1, -2282.51], [245.92, -2276.24], [246.0, -2273.27], [245.38, -2270.07], [243.46, -2266.58], [239.26, -2259.71], [232.85, -2251.25], [222.57, -2236.63], [219.22, -2233.33], [213.18, -2228.55], [206.4, -2224.81], [196.89, -2220.86], [186.97, -2218.69], [162.02, -2219.05], [140.6, -2220.22], [130.68, -2222.54], [116.17, -2231.37], [134.37, -2210.91], [131.05, -2203.8], [112.09, -2203.26], [113.25, -2177.35], [117.63, -2080.66], [118.51, -2061.17], [149.77, -2014.99], [140.24, -2002.17], [133.19, -1992.24], [114.56, -1977.6], [93.48, -1962.88], [61.23, -1946.39], [41.21, -1945.82], [22.03, -1950.63], [1.82, -1956.87], [-22.86, -1965.9], [-37.15, -1965.5], [-47.75, -1965.2], [-76.51, -1962.92], [-93.36, -1958.68], [-106.54, -1953.79], [-118.46, -1946.08], [-129.92, -1938.12]], "holes": []}}, {"shape": {"outer": [[604.79, -3155.14], [583.16, -3151.79], [570.32, -3148.89], [559.29, -3144.68], [546.45, -3135.16], [541.14, -3129.15], [514.15, -3087.05], [514.58, -3078.68], [613.37, -3087.14], [654.17, -3097.26], [661.71, -3100.4], [673.78, -3109.71], [679.72, -3114.36], [661.4, -3132.37], [657.27, -3133.03], [653.6, -3131.17], [641.9, -3123.23], [637.9, -3126.24], [642.47, -3130.46], [624.52, -3148.13], [619.84, -3145.58], [617.98, -3148.73], [631.39, -3151.56], [638.7, -3153.89], [651.02, -3161.66], [660.23, -3169.66], [654.0, -3175.51], [640.98, -3165.32], [636.2, -3162.46], [630.19, -3160.28], [620.41, -3157.87], [604.79, -3155.14]], "holes": []}}, {"shape": {"outer": [[527.52, -3024.93], [538.86, -3035.18], [542.68, -3036.9], [548.33, -3042.2], [550.8, -3046.12], [581.26, -3074.28], [584.59, -3070.84], [584.41, -3077.26], [617.64, -3080.31], [618.16, -3076.04], [625.42, -3081.9], [630.06, -3077.35], [625.87, -3073.14], [629.68, -3068.87], [550.33, -2997.85], [444.82, -2901.06], [439.94, -2905.17], [430.19, -2896.78], [416.71, -2911.52], [425.83, -2924.84], [456.5, -2954.26], [457.03, -2973.87], [460.92, -2977.61], [475.85, -2960.96], [482.49, -2957.14], [495.84, -2968.72], [503.31, -2979.24], [539.89, -3011.53], [527.52, -3024.93]], "holes": []}}, {"shape": {"outer": [[-2280.62, -48.36], [-2293.4, -47.89], [-2293.56, -54.57], [-2294.19, -66.59], [-2294.61, -67.64], [-2296.22, -67.98], [-2296.5, -76.56], [-2294.18, -76.62], [-2294.17, -77.22], [-2294.66, -92.57], [-2281.64, -92.99], [-2280.61, -77.49], [-2281.45, -77.47], [-2284.32, -77.39], [-2285.54, -77.05], [-2286.33, -76.66], [-2286.57, -76.19], [-2286.62, -75.57], [-2286.54, -69.53], [-2286.29, -67.59], [-2285.36, -66.05], [-2284.11, -65.36], [-2281.11, -65.45], [-2280.62, -48.36]], "holes": []}}, {"shape": {"outer": [[-281.42, 96.6], [-254.33, 120.84], [-236.12, 100.91], [-240.24, 97.18], [-237.82, 94.52], [-243.51, 89.88], [-250.09, 90.02], [-250.39, 84.54], [-269.71, 85.61], [-269.41, 90.82], [-273.2, 87.48], [-281.42, 96.6]], "holes": []}}, {"shape": {"outer": [[-2012.98, -1810.42], [-2014.03, -1851.47], [-2014.2, -1857.29], [-2014.69, -1865.08], [-2016.38, -1873.09], [-2019.0, -1881.68], [-2019.45, -1883.67], [-2019.33, -1884.96], [-2018.19, -1887.48], [-2016.32, -1889.63], [-2015.29, -1890.21], [-2011.86, -1891.36], [-1996.23, -1896.94], [-1986.36, -1901.16], [-1979.48, -1904.82], [-1964.73, -1913.58], [-1922.99, -1939.11], [-1837.21, -1992.87], [-1823.24, -2000.94], [-1819.58, -2002.64], [-1815.24, -2004.22], [-1811.78, -2004.8], [-1807.83, -2005.22], [-1799.62, -2005.72], [-1796.48, -2005.09], [-1795.58, -2004.39], [-1794.67, -2003.45], [-1793.76, -2000.03], [-1793.35, -1994.02], [-1793.0, -1984.87], [-1770.95, -1975.19], [-1756.25, -1966.89], [-1732.92, -1953.93], [-1730.47, -1951.29], [-1726.37, -1948.05], [-1708.03, -1937.34], [-1698.84, -1932.74], [-1692.15, -1929.02], [-1677.05, -1921.44], [-1668.04, -1917.19], [-1658.23, -1913.11], [-1629.04, -1897.04], [-1622.65, -1893.31], [-1621.0, -1891.84], [-1620.06, -1889.93], [-1619.93, -1888.33], [-1620.17, -1885.36], [-1604.26, -1881.88], [-1597.25, -1878.12], [-1521.25, -1836.15], [-1516.98, -1833.46], [-1514.33, -1830.89], [-1513.22, -1828.51], [-1512.98, -1825.95], [-1513.25, -1824.17], [-1515.29, -1819.14], [-1519.13, -1806.99], [-1520.43, -1801.81], [-1522.36, -1793.25], [-1524.07, -1782.6], [-1525.24, -1775.51], [-1526.07, -1768.17], [-1526.18, -1760.71], [-1526.4, -1745.93], [-1527.19, -1742.37], [-1527.65, -1741.56], [-1528.82, -1740.48], [-1530.34, -1740.04], [-1533.23, -1739.71], [-1559.8, -1738.95], [-1638.11, -1736.86], [-1640.09, -1737.24], [-1641.41, -1738.17], [-1643.24, -1740.52], [-1643.7, -1742.19], [-1643.45, -1744.77], [-1652.82, -1745.62], [-1653.54, -1739.74], [-1654.56, -1736.02], [-1656.13, -1734.53], [-1658.92, -1733.49], [-1662.05, -1733.32], [-1672.04, -1733.28], [-1678.72, -1732.76], [-1685.38, -1731.93], [-1689.15, -1731.5], [-1701.55, -1731.22], [-1767.41, -1729.5], [-1769.43, -1729.68], [-1771.71, -1730.65], [-1773.36, -1731.9], [-1774.2, -1733.32], [-1774.79, -1736.59], [-1774.95, -1742.21], [-1776.21, -1786.24], [-1863.03, -1783.82], [-1883.36, -1783.25], [-1969.05, -1780.39], [-1969.98, -1812.1], [-2012.98, -1810.42]], "holes": []}}, {"shape": {"outer": [[-1932.75, -1916.81], [-1931.95, -1902.95], [-1932.41, -1900.56], [-1934.03, -1896.81], [-1934.46, -1893.36], [-1933.72, -1872.09], [-1895.14, -1873.6], [-1895.6, -1880.33], [-1891.74, -1879.77], [-1888.49, -1877.76], [-1885.83, -1882.06], [-1883.72, -1882.78], [-1878.48, -1883.07], [-1879.53, -1912.31], [-1879.78, -1916.48], [-1889.46, -1915.94], [-1890.57, -1941.16], [-1890.6, -1942.09], [-1894.13, -1949.26], [-1910.19, -1940.21], [-1923.77, -1932.28], [-1934.05, -1925.24], [-1935.87, -1924.13], [-1932.75, -1916.81]], "holes": []}}, {"shape": {"outer": [[-1890.57, -1941.16], [-1874.73, -1944.14], [-1875.06, -1946.39], [-1863.0, -1946.73], [-1862.29, -1917.39], [-1879.78, -1916.48], [-1889.46, -1915.94], [-1890.57, -1941.16]], "holes": []}}, {"shape": {"outer": [[-1855.35, -1953.03], [-1855.79, -1959.36], [-1851.03, -1960.03], [-1850.42, -1961.76], [-1850.79, -1974.58], [-1836.33, -1979.36], [-1836.61, -1984.78], [-1831.7, -1984.92], [-1830.54, -1986.01], [-1830.81, -1990.76], [-1806.29, -1991.86], [-1806.57, -1987.88], [-1806.0, -1986.44], [-1803.73, -1985.72], [-1800.41, -1986.08], [-1799.47, -1957.68], [-1804.38, -1957.4], [-1804.73, -1956.07], [-1834.96, -1954.8], [-1835.04, -1957.71], [-1841.0, -1957.41], [-1842.04, -1956.59], [-1840.55, -1955.57], [-1836.12, -1953.58], [-1855.35, -1953.03]], "holes": []}}, {"shape": {"outer": [[-1944.37, -1863.46], [-1946.02, -1902.48], [-1957.55, -1901.88], [-1957.69, -1893.02], [-1958.44, -1891.28], [-1957.36, -1862.88], [-1950.08, -1863.31], [-1944.37, -1863.46]], "holes": []}}, {"shape": {"outer": [[-1991.19, -1828.07], [-1989.56, -1833.65], [-1974.71, -1833.95], [-1974.8, -1813.97], [-1998.55, -1813.56], [-2003.12, -1820.31], [-2003.45, -1827.3], [-1991.19, -1828.07]], "holes": []}}, {"shape": {"outer": [[-1688.78, -354.42], [-1688.82, -355.88], [-1680.28, -356.32], [-1675.94, -353.08], [-1674.26, -320.57], [-1674.11, -316.94], [-1673.91, -312.35], [-1672.62, -311.4], [-1663.74, -311.65], [-1663.7, -312.22], [-1663.82, -315.15], [-1645.5, -315.81], [-1645.26, -310.37], [-1647.97, -310.06], [-1648.01, -306.61], [-1675.71, -305.62], [-1675.62, -304.76], [-1685.55, -304.28], [-1685.91, -308.69], [-1686.68, -328.4], [-1687.16, -328.37], [-1687.22, -329.98], [-1687.28, -331.64], [-1686.8, -331.65], [-1687.54, -350.61], [-1688.67, -350.57], [-1688.78, -354.42]], "holes": []}}, {"shape": {"outer": [[-1593.72, -852.78], [-1593.4, -843.51], [-1582.99, -843.9], [-1580.32, -843.96], [-1580.62, -853.21], [-1593.72, -852.78]], "holes": []}}, {"shape": {"outer": [[-1606.42, -852.28], [-1605.76, -832.33], [-1607.25, -832.28], [-1607.18, -830.08], [-1617.71, -829.74], [-1618.44, -851.88], [-1606.42, -852.28]], "holes": []}}, {"shape": {"outer": [[-1742.69, -870.59], [-1695.36, -872.63], [-1697.34, -918.0], [-1743.54, -915.99], [-1742.69, -870.59]], "holes": []}}, {"shape": {"outer": [[-257.44, -143.43], [-271.96, -127.56], [-273.67, -125.84], [-275.0, -124.0], [-275.52, -122.43], [-275.84, -120.01], [-275.8, -116.85], [-275.39, -114.23], [-274.52, -112.41], [-273.12, -110.55], [-269.94, -107.33], [-201.52, -44.84], [-187.14, -32.12], [-116.59, 32.15], [-114.98, 33.42], [-113.73, 33.89], [-111.29, 34.65], [-108.12, 34.72], [-104.49, 33.76], [-102.01, 32.51], [-100.36, 31.04], [-98.87, 29.51], [-36.55, -38.87], [-35.92, -39.56], [-23.75, -53.01], [-22.87, -53.98], [-15.37, -62.28], [42.29, -125.21], [43.43, -126.71], [44.44, -128.6], [44.96, -131.39], [44.73, -134.82], [44.42, -136.47], [44.05, -137.71], [43.07, -139.46], [40.61, -141.97], [-24.89, -201.24], [-29.3, -205.08], [-29.85, -205.58], [-44.2, -218.83], [-95.42, -264.21], [-105.55, -272.84], [-115.23, -281.78], [-117.63, -283.56], [-119.75, -284.19], [-121.84, -284.61], [-124.17, -284.58], [-126.17, -284.45], [-128.5, -283.57], [-131.26, -282.04], [-133.82, -279.82], [-137.17, -276.07], [-195.64, -210.9], [-196.28, -210.29], [-208.76, -196.44], [-209.46, -195.68], [-213.11, -191.66], [-257.44, -143.43]], "holes": []}}, {"shape": {"outer": [[-176.55, -147.18], [-175.76, -147.62], [-175.16, -148.32], [-174.83, -149.17], [-174.8, -150.08], [-175.09, -150.95], [-175.65, -151.67], [-176.43, -152.16], [-177.33, -152.36], [-178.16, -152.27], [-178.91, -151.92], [-179.53, -151.37], [-179.95, -150.65], [-180.12, -149.84], [-180.04, -149.01], [-179.71, -148.26], [-179.16, -147.64], [-178.36, -147.18], [-177.46, -147.02], [-176.55, -147.18]], "holes": []}}, {"shape": {"outer": [[-145.14, -181.23], [-144.36, -181.67], [-143.76, -182.36], [-143.45, -183.2], [-143.42, -184.1], [-143.71, -184.96], [-144.26, -185.66], [-145.02, -186.15], [-145.9, -186.36], [-146.74, -186.27], [-147.5, -185.94], [-148.12, -185.38], [-148.54, -184.66], [-148.71, -183.85], [-148.62, -183.02], [-148.28, -182.26], [-147.71, -181.64], [-146.92, -181.21], [-146.02, -181.06], [-145.14, -181.23]], "holes": []}}, {"shape": {"outer": [[-92.77, -183.81], [-91.92, -183.64], [-91.06, -183.76], [-90.28, -184.13], [-89.66, -184.74], [-89.26, -185.51], [-89.12, -186.37], [-89.26, -187.22], [-89.67, -187.98], [-90.29, -188.58], [-91.14, -188.98], [-92.08, -189.06], [-93.0, -188.81], [-93.76, -188.27], [-94.3, -187.5], [-94.55, -186.59], [-94.47, -185.66], [-94.12, -184.87], [-93.53, -184.23], [-92.77, -183.81]], "holes": []}}, {"shape": {"outer": [[-56.84, -153.57], [-55.94, -153.71], [-55.13, -154.13], [-54.52, -154.81], [-54.15, -155.64], [-54.09, -156.54], [-54.33, -157.42], [-54.85, -158.16], [-55.55, -158.68], [-56.38, -158.94], [-57.25, -158.94], [-58.07, -158.65], [-58.76, -158.12], [-59.25, -157.41], [-59.48, -156.56], [-59.43, -155.7], [-59.11, -154.89], [-58.52, -154.2], [-57.73, -153.75], [-56.84, -153.57]], "holes": []}}, {"shape": {"outer": [[-54.48, -98.63], [-53.57, -98.67], [-52.72, -99.01], [-52.03, -99.59], [-51.56, -100.37], [-51.37, -101.27], [-51.49, -102.17], [-51.9, -102.99], [-52.54, -103.62], [-53.37, -104.02], [-54.27, -104.13], [-55.17, -103.95], [-55.94, -103.48], [-56.53, -102.79], [-56.86, -101.93], [-56.9, -101.02], [-56.64, -100.15], [-56.1, -99.42], [-55.36, -98.89], [-54.48, -98.63]], "holes": []}}, {"shape": {"outer": [[-86.08, -63.9], [-85.22, -64.04], [-84.44, -64.43], [-83.82, -65.06], [-83.45, -65.83], [-83.33, -66.7], [-83.5, -67.55], [-83.93, -68.32], [-84.57, -68.9], [-85.43, -69.27], [-86.35, -69.32], [-87.25, -69.06], [-88.0, -68.53], [-88.53, -67.77], [-88.76, -66.87], [-88.7, -65.95], [-88.32, -65.11], [-87.72, -64.47], [-86.95, -64.06], [-86.08, -63.9]], "holes": []}}, {"shape": {"outer": [[-142.29, -62.01], [-141.51, -61.71], [-140.68, -61.67], [-139.88, -61.89], [-139.19, -62.37], [-138.69, -63.04], [-138.43, -63.83], [-138.45, -64.66], [-138.72, -65.44], [-139.25, -66.11], [-139.98, -66.57], [-140.82, -66.77], [-141.67, -66.68], [-142.45, -66.3], [-143.06, -65.71], [-143.44, -64.93], [-143.54, -64.08], [-143.36, -63.27], [-142.93, -62.55], [-142.29, -62.01]], "holes": []}}, {"shape": {"outer": [[-174.41, -92.28], [-173.63, -92.72], [-173.01, -93.38], [-172.64, -94.2], [-172.54, -95.09], [-172.73, -95.97], [-173.19, -96.75], [-173.86, -97.34], [-174.69, -97.69], [-175.67, -97.77], [-176.62, -97.51], [-177.41, -96.93], [-177.97, -96.12], [-178.22, -95.17], [-178.13, -94.19], [-177.71, -93.31], [-177.01, -92.63], [-176.2, -92.23], [-175.3, -92.12], [-174.41, -92.28]], "holes": []}}, {"shape": {"outer": [[-158.11, -33.13], [-157.36, -34.32], [-157.02, -35.69], [-157.15, -37.1], [-157.73, -38.38], [-158.69, -39.41], [-159.94, -40.07], [-161.33, -40.3], [-162.74, -40.06], [-164.0, -39.38], [-164.96, -38.33], [-165.52, -37.02], [-165.62, -35.6], [-165.26, -34.23], [-164.46, -33.04], [-163.32, -32.19], [-161.96, -31.75], [-160.55, -31.77], [-159.22, -32.25], [-158.11, -33.13]], "holes": []}}, {"shape": {"outer": [[-1009.26, 163.95], [-1003.4, 163.53], [-1001.73, 201.54], [-1002.63, 201.34], [-1010.77, 193.68], [-1012.39, 192.24], [-1017.13, 189.96], [-1021.58, 186.24], [-1023.99, 186.23], [-1024.39, 171.09], [-1017.73, 170.79], [-1016.95, 171.32], [-1011.16, 171.25], [-1010.11, 171.1], [-1009.22, 170.33], [-1009.04, 168.91], [-1009.26, 163.95]], "holes": []}}, {"shape": {"outer": [[-205.31, -116.08], [-204.45, -114.13], [-202.14, -112.85], [-199.31, -112.99], [-198.4, -111.59], [-197.37, -110.23], [-195.76, -108.68], [-193.96, -107.54], [-193.75, -98.47], [-190.61, -98.57], [-190.46, -95.2], [-173.46, -80.1], [-174.79, -78.64], [-172.02, -76.47], [-180.88, -66.63], [-182.01, -67.21], [-183.56, -67.39], [-184.93, -66.83], [-185.83, -65.72], [-186.15, -64.46], [-185.86, -63.24], [-184.83, -62.22], [-193.53, -52.14], [-196.12, -54.69], [-197.5, -53.12], [-259.29, -109.5], [-255.68, -112.58], [-255.75, -113.98], [-246.1, -114.35], [-246.0, -113.0], [-241.67, -113.14], [-241.63, -114.3], [-231.64, -114.8], [-231.32, -113.51], [-230.45, -112.16], [-229.22, -111.49], [-227.92, -111.53], [-226.67, -112.06], [-225.82, -113.04], [-225.64, -114.24], [-224.78, -114.29], [-224.77, -115.2], [-215.3, -115.6], [-215.27, -114.73], [-211.14, -114.9], [-211.16, -115.8], [-205.31, -116.08]], "holes": []}}, {"shape": {"outer": [[-195.12, -145.07], [-192.08, -145.15], [-192.22, -148.41], [-177.07, -164.75], [-178.45, -165.96], [-176.35, -168.4], [-185.62, -177.15], [-186.79, -176.52], [-188.05, -176.28], [-188.78, -176.36], [-189.06, -176.48], [-189.72, -176.75], [-190.6, -177.6], [-190.82, -178.25], [-190.87, -179.13], [-190.68, -180.42], [-190.27, -181.43], [-200.13, -190.22], [-202.55, -187.59], [-203.87, -188.71], [-259.74, -127.86], [-256.55, -124.97], [-256.37, -123.66], [-246.3, -124.11], [-246.27, -125.03], [-242.16, -125.22], [-242.13, -124.26], [-232.2, -124.72], [-232.14, -125.87], [-231.84, -126.74], [-231.29, -127.48], [-230.44, -128.1], [-229.46, -128.36], [-228.18, -128.17], [-227.41, -127.73], [-226.72, -127.03], [-226.21, -125.95], [-226.09, -124.93], [-215.52, -125.41], [-215.54, -126.53], [-211.11, -126.71], [-211.04, -125.58], [-205.74, -125.82], [-205.76, -128.62], [-205.2, -129.83], [-204.68, -130.31], [-203.83, -130.65], [-203.04, -130.68], [-201.38, -130.72], [-200.17, -130.43], [-199.93, -130.35], [-199.48, -131.19], [-198.91, -132.1], [-198.01, -133.24], [-197.24, -134.1], [-196.15, -135.04], [-194.7, -135.87], [-195.12, -145.07]], "holes": []}}, {"shape": {"outer": [[-161.03, -160.88], [-152.68, -153.24], [-153.92, -151.86], [-153.08, -151.07], [-153.98, -150.59], [-155.24, -150.21], [-156.65, -150.07], [-158.24, -150.39], [-159.71, -151.09], [-161.34, -152.32], [-162.3, -153.35], [-163.03, -154.78], [-163.35, -156.4], [-163.24, -157.93], [-162.93, -158.81], [-161.23, -160.65], [-161.03, -160.88]], "holes": []}}, {"shape": {"outer": [[-150.65, -93.43], [-158.45, -85.16], [-159.96, -86.48], [-160.37, -87.4], [-160.75, -89.29], [-160.74, -90.81], [-160.29, -92.25], [-159.51, -93.51], [-157.54, -95.43], [-155.86, -95.96], [-154.33, -96.01], [-152.63, -95.72], [-151.52, -95.05], [-151.94, -94.55], [-150.65, -93.43]], "holes": []}}, {"shape": {"outer": [[-130.17, -264.26], [-129.62, -241.05], [-131.23, -239.35], [-131.9, -238.65], [-132.21, -237.03], [-131.89, -235.43], [-131.13, -234.2], [-130.16, -233.47], [-128.93, -232.55], [-128.03, -213.48], [-129.18, -212.81], [-130.4, -211.62], [-131.0, -210.26], [-131.14, -209.0], [-130.67, -207.78], [-130.19, -206.56], [-132.81, -204.46], [-133.6, -203.64], [-134.46, -202.45], [-143.54, -201.91], [-143.45, -198.69], [-146.78, -198.69], [-161.78, -182.21], [-163.16, -183.16], [-165.44, -180.94], [-174.69, -189.82], [-174.11, -191.06], [-174.03, -191.94], [-174.05, -192.7], [-174.4, -193.45], [-175.02, -194.19], [-175.8, -194.5], [-176.73, -194.74], [-177.49, -194.72], [-178.37, -194.54], [-179.44, -193.97], [-188.92, -202.73], [-186.69, -205.19], [-188.26, -206.56], [-180.0, -215.67], [-179.22, -215.04], [-176.83, -217.66], [-177.51, -218.35], [-161.67, -235.69], [-161.11, -235.2], [-158.66, -237.73], [-159.25, -238.3], [-134.02, -266.18], [-130.92, -263.42], [-130.17, -264.26]], "holes": []}}, {"shape": {"outer": [[174.45, -492.94], [169.64, -490.08], [174.37, -485.55], [175.34, -487.57], [175.3, -489.05], [174.78, -491.69], [174.45, -492.94]], "holes": []}}, {"shape": {"outer": [[170.29, -539.7], [166.99, -539.01], [164.64, -537.82], [161.78, -535.49], [160.14, -532.46], [159.23, -529.53], [162.55, -529.37], [164.47, -529.74], [167.28, -531.21], [169.33, -533.65], [170.0, -535.66], [170.35, -537.44], [170.29, -539.7]], "holes": []}}, {"shape": {"outer": [[263.4, -440.05], [261.39, -438.51], [260.18, -436.84], [259.19, -435.04], [258.72, -433.11], [258.69, -431.42], [258.9, -429.9], [261.32, -430.89], [263.04, -431.62], [264.46, -432.66], [263.69, -434.01], [263.44, -435.69], [263.72, -437.17], [264.21, -438.4], [264.91, -439.46], [266.14, -439.9], [267.47, -439.97], [268.6, -439.72], [268.93, -441.13], [266.51, -441.15], [264.67, -440.74], [263.4, -440.05]], "holes": []}}, {"shape": {"outer": [[114.04, -586.17], [115.52, -584.77], [116.97, -583.42], [116.41, -583.41], [115.85, -583.2], [114.79, -582.26], [123.31, -573.74], [132.57, -564.61], [133.6, -564.68], [134.41, -565.22], [134.66, -566.33], [137.7, -563.96], [140.87, -561.68], [140.22, -561.54], [139.76, -560.99], [139.61, -560.25], [139.83, -559.64], [140.34, -559.18], [145.51, -556.89], [152.65, -554.66], [153.33, -553.7], [160.17, -537.41], [159.23, -536.34], [158.33, -534.71], [157.63, -533.02], [153.15, -531.08], [150.74, -530.04], [148.38, -528.92], [145.93, -527.6], [143.85, -526.18], [131.99, -539.01], [131.07, -539.25], [130.21, -539.09], [127.73, -536.79], [127.04, -536.13], [123.02, -540.11], [106.15, -556.9], [97.96, -565.04], [98.8, -565.9], [104.49, -571.75], [107.71, -574.84], [109.1, -576.55], [110.18, -578.44], [110.55, -579.71], [110.77, -580.46], [111.11, -582.67], [113.57, -584.98], [113.95, -585.57], [114.04, -586.17]], "holes": []}}, {"shape": {"outer": [[269.8, -433.07], [290.45, -419.85], [291.69, -419.57], [292.57, -420.2], [292.94, -421.05], [295.06, -417.91], [297.35, -414.57], [296.08, -414.37], [295.52, -413.41], [296.23, -411.9], [310.9, -390.33], [307.31, -387.68], [304.49, -387.4], [301.65, -386.68], [298.57, -384.97], [289.26, -376.41], [287.96, -375.24], [277.76, -384.94], [271.36, -391.48], [272.49, -392.41], [274.15, -393.76], [274.4, -394.2], [274.32, -394.66], [257.28, -411.79], [262.04, -419.14], [259.16, -420.99], [260.81, -424.24], [262.47, -428.39], [264.6, -429.14], [266.4, -430.1], [268.04, -431.62], [269.8, -433.07]], "holes": []}}, {"shape": {"outer": [[56.1, -520.52], [33.22, -498.46], [35.48, -497.81], [35.91, -492.81], [31.55, -488.03], [40.8, -479.65], [54.11, -494.22], [55.51, -494.33], [57.39, -493.65], [59.75, -491.5], [63.36, -495.45], [75.18, -484.68], [64.38, -472.92], [65.04, -471.85], [79.28, -458.68], [90.65, -471.06], [105.17, -457.84], [93.35, -444.95], [95.67, -442.84], [93.49, -440.48], [90.89, -442.85], [85.8, -437.3], [102.19, -422.36], [107.43, -428.07], [104.53, -430.72], [106.57, -432.95], [109.23, -430.51], [120.78, -443.09], [128.16, -436.3], [134.28, -442.97], [63.59, -513.47], [56.1, -520.52]], "holes": []}}, {"shape": {"outer": [[-2.65, -580.76], [43.61, -539.08], [21.8, -515.02], [18.39, -518.08], [28.18, -528.87], [25.59, -531.21], [27.14, -532.91], [20.87, -538.56], [20.42, -538.07], [9.14, -548.23], [8.03, -547.01], [4.88, -549.84], [-15.03, -567.81], [-2.65, -580.76]], "holes": []}}, {"shape": {"outer": [[221.32, -361.6], [243.52, -338.15], [232.16, -327.16], [230.4, -328.73], [229.6, -330.39], [227.96, -331.95], [226.63, -332.36], [222.61, -335.63], [222.11, -336.87], [219.83, -338.94], [218.74, -339.01], [216.66, -340.88], [213.42, -337.29], [206.12, -344.05], [221.32, -361.6]], "holes": []}}, {"shape": {"outer": [[142.04, -439.71], [107.84, -403.88], [97.75, -393.03], [99.77, -391.3], [103.55, -387.92], [123.79, -370.28], [125.36, -368.95], [129.48, -365.3], [151.11, -389.26], [156.08, -394.65], [171.08, -410.66], [168.4, -413.35], [167.63, -414.06], [142.04, -439.71]], "holes": []}}, {"shape": {"outer": [[-1124.75, -109.99], [-1124.97, -114.36], [-1125.25, -120.14], [-1112.51, -120.76], [-1112.63, -123.11], [-1112.78, -125.98], [-1106.29, -126.29], [-1106.23, -125.08], [-1105.62, -112.81], [-1105.58, -112.03], [-1111.48, -111.74], [-1111.43, -110.65], [-1124.75, -109.99]], "holes": []}}, {"shape": {"outer": [[1107.79, 2006.45], [1110.55, 2011.98], [1149.79, 1992.57], [1147.04, 1987.04], [1107.79, 2006.45]], "holes": []}}, {"shape": {"outer": [[618.48, 518.59], [581.34, 485.01], [576.23, 480.1], [604.44, 448.94], [646.17, 486.71], [642.47, 490.99], [618.48, 518.59]], "holes": []}}, {"shape": {"outer": [[-2855.05, -735.42], [-2854.39, -724.52], [-2796.71, -726.81], [-2797.34, -743.53], [-2805.51, -743.21], [-2806.74, -737.08], [-2855.05, -735.42]], "holes": []}}, {"shape": {"outer": [[-2837.4, -751.79], [-2838.01, -771.94], [-2870.21, -770.97], [-2873.77, -770.59], [-2873.46, -750.35], [-2869.92, -750.81], [-2837.4, -751.79]], "holes": []}}, {"shape": {"outer": [[-3062.27, -907.33], [-3063.57, -906.63], [-3067.17, -901.99], [-3070.45, -898.1], [-3070.9, -896.77], [-3070.2, -895.05], [-3068.93, -894.27], [-3067.27, -894.06], [-3057.92, -894.5], [-3054.71, -895.09], [-3051.19, -896.59], [-3049.23, -897.56], [-3048.92, -898.22], [-3049.11, -899.3], [-3050.3, -900.08], [-3054.68, -902.85], [-3056.38, -904.28], [-3058.93, -906.6], [-3059.86, -907.23], [-3060.62, -907.46], [-3061.45, -907.6], [-3062.27, -907.33]], "holes": []}}, {"shape": {"outer": [[-2656.95, -236.16], [-2670.81, -235.63], [-2669.7, -206.39], [-2639.61, -207.53], [-2640.3, -225.84], [-2643.27, -225.73], [-2656.53, -225.23], [-2656.95, -236.16]], "holes": []}}, {"shape": {"outer": [[-1477.83, -1829.88], [-1472.08, -1841.04], [-1471.36, -1840.83], [-1470.43, -1841.29], [-1468.65, -1844.58], [-1448.3, -1834.03], [-1456.94, -1820.77], [-1457.13, -1822.49], [-1458.14, -1824.76], [-1458.86, -1825.18], [-1459.74, -1825.15], [-1460.36, -1824.49], [-1461.86, -1821.5], [-1477.83, -1829.88]], "holes": []}}, {"shape": {"outer": [[-1490.87, -1891.17], [-1488.97, -1894.63], [-1484.64, -1892.26], [-1482.39, -1891.28], [-1479.98, -1895.15], [-1492.88, -1902.41], [-1493.78, -1900.63], [-1497.1, -1894.57], [-1490.87, -1891.17]], "holes": []}}, {"shape": {"outer": [[-1489.0, -1959.43], [-1456.62, -1941.97], [-1471.63, -1914.52], [-1510.58, -1935.58], [-1495.08, -1962.74], [-1489.0, -1959.43]], "holes": []}}, {"shape": {"outer": [[-1494.38, -1998.92], [-1483.28, -1993.23], [-1479.08, -1991.22], [-1491.37, -1969.97], [-1509.46, -1979.5], [-1498.38, -2000.82], [-1494.38, -1998.92]], "holes": []}}, {"shape": {"outer": [[-1476.16, -1974.92], [-1474.79, -1977.55], [-1478.16, -1979.32], [-1470.47, -1993.04], [-1467.32, -1991.34], [-1467.78, -1990.5], [-1438.2, -1974.7], [-1446.72, -1959.23], [-1476.16, -1974.92]], "holes": []}}, {"shape": {"outer": [[-1482.14, -2003.32], [-1475.27, -1999.6], [-1444.84, -2054.96], [-1460.69, -2063.42], [-1473.7, -2040.18], [-1464.54, -2035.15], [-1482.14, -2003.32]], "holes": []}}, {"shape": {"outer": [[-1438.7, -2094.16], [-1455.59, -2076.32], [-1438.59, -2066.03], [-1432.4, -2062.29], [-1419.32, -2055.07], [-1418.86, -2055.95], [-1399.16, -2092.73], [-1388.5, -2089.36], [-1388.92, -2100.0], [-1393.49, -2099.9], [-1417.38, -2098.78], [-1430.02, -2086.37], [-1438.7, -2094.16]], "holes": []}}, {"shape": {"outer": [[881.82, 972.11], [884.85, 978.4], [887.27, 975.73], [907.17, 994.81], [942.1, 1025.42], [937.62, 1030.5], [932.51, 1034.67], [919.71, 1048.17], [902.42, 1032.69], [900.2, 1030.03], [898.95, 1027.57], [898.17, 1025.35], [896.68, 1023.27], [890.69, 1017.99], [889.96, 1018.77], [862.54, 995.48], [881.82, 972.11]], "holes": []}}, {"shape": {"outer": [[-809.6, -2258.0], [-812.13, -2312.17], [-812.22, -2322.04], [-811.41, -2329.79], [-810.09, -2337.29], [-796.56, -2334.09], [-797.76, -2328.44], [-798.15, -2323.26], [-797.78, -2312.84], [-795.25, -2258.67], [-809.6, -2258.0]], "holes": []}}, {"shape": {"outer": [[-780.15, -2377.9], [-772.52, -2382.26], [-763.32, -2385.57], [-751.91, -2388.3], [-741.75, -2388.59], [-729.71, -2387.84], [-721.0, -2385.03], [-712.5, -2382.12], [-701.51, -2376.55], [-692.82, -2370.49], [-688.31, -2365.6], [-682.51, -2357.92], [-678.85, -2351.92], [-675.73, -2344.34], [-672.99, -2334.62], [-671.81, -2325.94], [-671.77, -2314.6], [-685.53, -2314.11], [-686.02, -2321.82], [-687.24, -2328.22], [-689.33, -2336.33], [-692.32, -2343.48], [-696.27, -2349.9], [-700.2, -2355.4], [-705.62, -2361.19], [-712.08, -2365.36], [-719.02, -2369.24], [-725.21, -2371.84], [-730.71, -2373.16], [-737.96, -2374.05], [-746.21, -2374.24], [-753.24, -2373.33], [-761.31, -2371.04], [-767.47, -2368.19], [-772.59, -2365.59], [-780.15, -2377.9]], "holes": []}}, {"shape": {"outer": [[-1257.89, -2630.3], [-1244.45, -2630.69], [-1250.36, -2837.68], [-1263.8, -2837.3], [-1257.89, -2630.3]], "holes": []}}, {"shape": {"outer": [[-2067.56, -852.05], [-2068.43, -870.22], [-2036.51, -871.73], [-2035.64, -853.55], [-2067.56, -852.05]], "holes": []}}, {"shape": {"outer": [[-2288.17, 307.75], [-2301.08, 308.11], [-2301.42, 295.68], [-2288.17, 307.75]], "holes": []}}, {"shape": {"outer": [[-2368.12, 308.82], [-2380.11, 294.63], [-2368.43, 294.38], [-2368.12, 308.82]], "holes": []}}, {"shape": {"outer": [[-2275.03, 307.55], [-2282.4, 307.73], [-2282.75, 293.73], [-2275.38, 293.55], [-2275.03, 307.55]], "holes": []}}, {"shape": {"outer": [[1918.37, 2243.3], [1918.27, 2230.68], [1918.01, 2221.43], [1916.39, 2208.72], [1915.41, 2200.75], [1915.83, 2197.61], [1916.42, 2196.22], [1918.14, 2195.05], [1919.89, 2195.0], [1926.34, 2196.68], [1928.12, 2197.51], [1934.4, 2201.84], [1944.7, 2211.43], [1961.29, 2225.83], [1970.04, 2233.46], [1980.84, 2242.66], [1985.61, 2247.03], [1983.84, 2246.83], [1978.66, 2245.35], [1972.62, 2245.02], [1967.25, 2245.55], [1955.26, 2247.76], [1943.41, 2250.46], [1935.4, 2251.19], [1929.63, 2250.99], [1923.82, 2249.65], [1920.02, 2248.5], [1918.47, 2246.8], [1918.42, 2245.18], [1918.37, 2243.3]], "holes": []}}, {"shape": {"outer": [[2476.4, 1807.71], [2502.43, 1813.65], [2507.43, 1791.9], [2481.4, 1785.95], [2476.4, 1807.71]], "holes": []}}, {"shape": {"outer": [[2388.3, 1791.43], [2382.54, 1781.4], [2366.41, 1790.92], [2359.86, 1780.19], [2355.29, 1770.77], [2340.45, 1779.6], [2338.85, 1776.38], [2361.69, 1762.03], [2363.5, 1756.91], [2398.4, 1766.02], [2391.56, 1789.47], [2388.3, 1791.43]], "holes": []}}, {"shape": {"outer": [[-1826.19, -863.26], [-1827.18, -890.86], [-1807.6, -891.55], [-1806.61, -863.96], [-1826.19, -863.26]], "holes": []}}, {"shape": {"outer": [[-1866.08, -862.58], [-1880.2, -862.16], [-1881.11, -893.55], [-1866.99, -893.96], [-1866.08, -862.58]], "holes": []}}, {"shape": {"outer": [[-1853.33, -863.25], [-1853.65, -871.25], [-1839.93, -871.81], [-1840.64, -889.2], [-1829.3, -889.66], [-1828.26, -864.28], [-1853.33, -863.25]], "holes": []}}, {"shape": {"outer": [[297.84, 318.64], [306.27, 309.34], [291.67, 296.2], [283.25, 305.49], [297.84, 318.64]], "holes": []}}, {"shape": {"outer": [[1178.4, 1967.12], [1193.67, 1950.79], [1196.02, 1948.98], [1200.5, 1945.15], [1205.64, 1941.75], [1213.84, 1938.03], [1216.16, 1942.54], [1204.77, 1949.39], [1200.69, 1951.91], [1198.58, 1954.79], [1182.87, 1970.69], [1178.4, 1967.12]], "holes": []}}, {"shape": {"outer": [[-1546.44, -621.42], [-1547.75, -665.49], [-1540.34, -665.88], [-1517.54, -623.37], [-1546.44, -621.42]], "holes": []}}, {"shape": {"outer": [[-2379.78, -347.32], [-2346.27, -348.64], [-2349.2, -422.14], [-2382.7, -420.81], [-2379.78, -347.32]], "holes": []}}, {"shape": {"outer": [[309.69, -360.97], [310.65, -360.11], [313.04, -358.0], [315.41, -355.89], [317.85, -353.73], [320.43, -351.43], [315.92, -346.39], [313.33, -348.69], [310.89, -350.85], [308.55, -352.93], [306.29, -354.93], [303.84, -357.12], [307.12, -360.78], [308.85, -360.95], [309.69, -360.97]], "holes": []}}, {"shape": {"outer": [[306.3, -3106.04], [308.74, -3112.74], [313.34, -3120.18], [318.67, -3125.01], [327.61, -3129.62], [333.24, -3135.23], [340.4, -3148.94], [342.29, -3109.45], [415.78, -3112.08], [419.99, -3110.24], [421.29, -3106.79], [421.27, -3103.52], [415.02, -3096.48], [398.24, -3079.22], [391.66, -3076.21], [385.95, -3076.6], [379.01, -3079.01], [372.22, -3082.95], [364.81, -3085.9], [352.73, -3088.18], [311.23, -3094.3], [307.44, -3096.59], [305.84, -3099.49], [305.74, -3102.97], [306.3, -3106.04]], "holes": []}}, {"shape": {"outer": [[305.74, -3125.84], [308.81, -3129.42], [313.62, -3133.37], [322.1, -3138.94], [324.65, -3141.46], [326.55, -3144.49], [327.69, -3147.88], [328.01, -3151.45], [327.5, -3154.98], [326.18, -3158.31], [324.13, -3161.24], [321.45, -3163.61], [318.29, -3165.31], [314.45, -3166.28], [310.5, -3166.24], [306.69, -3165.2], [303.26, -3163.24], [300.46, -3160.46], [298.45, -3157.06], [297.38, -3153.28], [297.3, -3149.33], [298.24, -3145.51], [302.87, -3134.58], [304.45, -3129.07], [305.74, -3125.84]], "holes": []}}, {"shape": {"outer": [[412.84, -3077.03], [433.93, -3098.6], [446.76, -3122.16], [455.54, -3138.36], [458.19, -3143.23], [459.82, -3147.63], [462.26, -3154.08], [463.15, -3157.32], [467.28, -3158.04], [465.5, -3168.99], [462.35, -3183.66], [455.64, -3204.43], [450.58, -3217.09], [436.79, -3246.43], [427.46, -3267.09], [423.66, -3277.87], [421.68, -3297.53], [421.63, -3318.34], [387.82, -3346.47], [375.6, -3357.33], [376.02, -3369.34], [379.02, -3371.7], [424.86, -3374.31], [443.01, -3377.98], [452.83, -3382.41], [459.98, -3385.0], [467.33, -3384.01], [471.47, -3380.42], [480.53, -3365.97], [487.21, -3357.77], [505.81, -3337.83], [515.04, -3332.21], [543.7, -3300.55], [564.73, -3276.31], [568.48, -3267.38], [569.13, -3259.88], [567.83, -3251.78], [565.06, -3245.39], [558.48, -3238.12], [515.35, -3193.76], [493.71, -3166.57], [468.32, -3133.06], [443.46, -3095.98], [432.71, -3077.81], [425.82, -3066.5], [423.61, -3063.5], [419.15, -3062.61], [414.53, -3063.57], [412.07, -3065.57], [410.87, -3069.13], [410.69, -3071.85], [411.17, -3074.37], [412.84, -3077.03]], "holes": []}}, {"shape": {"outer": [[377.75, -3072.99], [394.63, -3065.62], [392.42, -3058.64], [391.48, -3059.05], [384.88, -3066.43], [380.13, -3070.22], [376.67, -3072.41], [376.71, -3073.07], [377.75, -3072.99]], "holes": []}}, {"shape": {"outer": [[407.68, -3054.55], [409.74, -3055.49], [411.8, -3055.65], [414.48, -3055.72], [417.38, -3055.59], [419.57, -3055.6], [421.04, -3055.75], [416.36, -3047.34], [405.35, -3028.61], [404.81, -3028.38], [404.15, -3028.91], [404.05, -3030.21], [402.39, -3046.55], [402.86, -3049.25], [403.84, -3051.34], [405.48, -3053.18], [407.68, -3054.55]], "holes": []}}, {"shape": {"outer": [[-80.42, -559.79], [-80.97, -565.76], [-73.48, -572.63], [-72.53, -573.96], [-71.36, -567.99], [-80.42, -559.79]], "holes": []}}, {"shape": {"outer": [[-89.87, -567.57], [-83.11, -567.82], [-75.16, -576.18], [-82.42, -576.44], [-89.87, -567.57]], "holes": []}}, {"shape": {"outer": [[-2304.79, -1118.94], [-2290.1, -1119.32], [-2290.85, -1148.21], [-2305.53, -1147.84], [-2304.79, -1118.94]], "holes": []}}, {"shape": {"outer": [[-1279.98, -2599.97], [-1282.75, -2617.09], [-1280.67, -2618.28], [-1281.15, -2623.79], [-1244.82, -2615.73], [-1189.91, -2627.86], [-1189.76, -2622.82], [-1186.35, -2622.92], [-1186.31, -2621.3], [-1181.92, -2621.92], [-1178.86, -2526.11], [-1183.09, -2525.98], [-1183.01, -2523.23], [-1179.39, -2522.03], [-1186.34, -2508.53], [-1191.3, -2511.16], [-1193.5, -2508.66], [-1193.04, -2503.8], [-1259.07, -2500.62], [-1260.01, -2516.48], [-1260.83, -2528.31], [-1262.66, -2540.92], [-1279.05, -2590.42], [-1279.98, -2599.97]], "holes": []}}, {"shape": {"outer": [[-112.24, -267.54], [-115.6, -263.48], [-114.38, -242.47], [-113.18, -241.7], [-111.78, -240.05], [-111.19, -237.81], [-111.37, -235.68], [-112.45, -234.31], [-113.85, -233.54], [-112.73, -214.08], [-110.29, -213.19], [-108.65, -211.18], [-108.45, -208.8], [-108.99, -206.98], [-107.1, -205.25], [-105.5, -203.39], [-97.2, -203.65], [-90.42, -198.93], [-88.82, -200.66], [-75.19, -188.23], [-72.52, -185.75], [-64.27, -194.9], [-65.05, -197.23], [-64.34, -199.27], [-62.39, -200.51], [-59.57, -199.95], [-51.17, -209.23], [-53.85, -211.65], [-52.55, -213.12], [-112.24, -267.54]], "holes": []}}, {"shape": {"outer": [[-60.97, -173.54], [-51.0, -184.08], [-48.32, -183.54], [-46.36, -184.79], [-45.41, -187.01], [-46.54, -189.15], [-40.56, -195.6], [-38.52, -198.18], [-35.97, -195.97], [-34.16, -197.83], [-30.7, -194.87], [24.88, -142.72], [22.04, -139.55], [1.66, -139.24], [-0.89, -141.52], [-3.98, -142.39], [-6.32, -140.98], [-8.6, -138.59], [-26.71, -137.56], [-32.06, -141.7], [-36.13, -145.01], [-39.88, -142.97], [-39.46, -152.25], [-43.16, -152.13], [-43.22, -155.47], [-60.15, -170.48], [-58.92, -172.05], [-60.97, -173.54]], "holes": []}}, {"shape": {"outer": [[-56.35, -81.41], [-46.43, -72.51], [-45.7, -73.34], [-44.27, -73.82], [-43.32, -73.75], [-41.98, -73.09], [-40.9, -71.67], [-41.11, -70.35], [-42.29, -69.01], [-32.01, -59.68], [-29.76, -62.14], [-28.46, -60.94], [-21.54, -68.49], [-23.07, -69.88], [-19.58, -73.69], [-18.54, -72.76], [-2.77, -89.97], [-3.75, -90.86], [-0.28, -94.64], [0.73, -93.72], [16.49, -110.88], [15.79, -111.51], [18.65, -114.6], [19.32, -113.98], [25.96, -121.21], [22.63, -124.24], [1.59, -123.35], [0.7, -121.84], [-1.0, -120.98], [-2.79, -120.09], [-5.06, -120.2], [-6.93, -121.09], [-8.13, -122.8], [-26.72, -121.85], [-28.33, -119.38], [-35.35, -117.89], [-37.38, -114.54], [-37.0, -105.75], [-40.64, -105.6], [-40.48, -101.94], [-55.36, -85.47], [-53.88, -84.15], [-56.35, -81.41]], "holes": []}}, {"shape": {"outer": [[-104.54, 14.04], [-103.0, 14.03], [-100.0, 16.73], [-45.12, -43.63], [-46.88, -45.23], [-44.0, -48.4], [-53.93, -57.37], [-54.85, -56.37], [-56.42, -56.05], [-58.14, -57.26], [-58.52, -59.09], [-57.22, -60.6], [-67.25, -69.16], [-69.41, -66.65], [-71.25, -68.24], [-85.65, -51.52], [-89.04, -51.39], [-88.93, -48.65], [-98.23, -48.3], [-100.9, -44.79], [-103.65, -42.88], [-106.58, -42.16], [-106.56, -41.26], [-107.76, -41.19], [-105.66, -16.49], [-103.79, -15.91], [-102.29, -14.88], [-101.66, -13.34], [-101.67, -11.63], [-103.17, -9.98], [-105.19, -9.35], [-105.1, 0.09], [-103.62, 0.07], [-103.58, 4.49], [-104.63, 4.5], [-104.54, 14.04]], "holes": []}}, {"shape": {"outer": [[-160.23, -64.89], [-158.02, -62.85], [-156.68, -64.28], [-140.6, -49.37], [-137.14, -49.5], [-137.02, -46.29], [-127.95, -46.66], [-125.21, -44.07], [-122.19, -42.15], [-118.96, -41.26], [-118.84, -40.39], [-117.77, -40.32], [-116.43, -16.65], [-117.92, -16.15], [-118.99, -15.13], [-120.04, -13.55], [-120.07, -11.69], [-118.97, -10.23], [-117.59, -9.36], [-115.67, -9.42], [-115.3, 0.8], [-116.27, 0.84], [-116.12, 5.12], [-115.07, 5.08], [-114.71, 14.85], [-115.98, 14.89], [-118.96, 18.18], [-180.33, -37.15], [-178.57, -39.08], [-181.27, -41.51], [-172.68, -50.97], [-170.42, -50.46], [-168.82, -51.42], [-167.64, -53.71], [-168.58, -55.95], [-160.23, -64.89]], "holes": []}}, {"shape": {"outer": [[591.67, 33.57], [590.47, 36.81], [609.86, 62.43], [611.93, 60.77], [628.48, 41.99], [591.67, 33.57]], "holes": []}}, {"shape": {"outer": [[-2189.82, -1753.77], [-2203.99, -1769.96], [-2186.81, -1784.88], [-2179.11, -1777.55], [-2178.82, -1763.43], [-2189.82, -1753.77]], "holes": []}}, {"shape": {"outer": [[-3419.76, -2052.31], [-3411.02, -2051.12], [-3413.11, -2022.75], [-3419.22, -1944.98], [-3429.86, -1817.06], [-3440.99, -1682.64], [-3441.42, -1679.37], [-3441.87, -1676.64], [-3442.8, -1672.74], [-3443.57, -1670.62], [-3444.46, -1668.73], [-3445.81, -1666.71], [-3446.59, -1665.2], [-3446.75, -1664.15], [-3446.64, -1662.14], [-3445.71, -1660.33], [-3443.68, -1658.36], [-3440.1, -1655.31], [-3387.72, -1610.97], [-3291.8, -1530.54], [-3153.15, -1415.66], [-3151.59, -1414.61], [-3150.58, -1414.35], [-3149.05, -1414.29], [-3148.6, -1414.36], [-3147.8, -1414.65], [-3146.84, -1415.34], [-3132.16, -1432.35], [-3128.81, -1435.43], [-3120.11, -1442.77], [-3115.91, -1446.87], [-3096.05, -1470.58], [-3037.01, -1539.96], [-3035.17, -1542.79], [-3034.08, -1544.95], [-3033.7, -1546.54], [-3033.62, -1549.92], [-3034.1, -1553.01], [-3035.49, -1555.91], [-3038.9, -1560.06], [-3041.21, -1561.95], [-3029.62, -1575.93], [-2961.71, -1655.85], [-2966.24, -1659.47], [-3007.21, -1693.28], [-2979.05, -1725.89], [-2943.11, -1766.88], [-2939.43, -1770.64], [-2921.21, -1789.44], [-2953.38, -1837.31], [-2957.61, -1871.63], [-2953.02, -1896.0], [-2940.13, -1911.57], [-2925.25, -1929.43], [-2927.39, -1949.84], [-2936.4, -1963.56], [-2946.05, -1960.93], [-2983.39, -1969.16], [-2998.12, -1974.95], [-3024.23, -1982.34], [-3032.02, -1993.61], [-3052.59, -2003.9], [-3082.18, -2031.23], [-3111.21, -2058.82], [-3123.14, -2061.57], [-3134.45, -2073.33], [-3141.72, -2075.49], [-3151.25, -2083.96], [-3159.79, -2089.93], [-3166.35, -2091.76], [-3170.63, -2092.22], [-3172.91, -2094.59], [-3177.12, -2096.5], [-3187.12, -2103.28], [-3196.43, -2105.79], [-3204.54, -2108.78], [-3229.67, -2112.18], [-3252.54, -2119.21], [-3265.93, -2132.71], [-3320.65, -2152.02], [-3356.01, -2164.51], [-3410.32, -2184.85], [-3413.34, -2137.18], [-3414.24, -2127.28], [-3416.23, -2105.26], [-3421.15, -2052.45], [-3419.76, -2052.31]], "holes": []}}, {"shape": {"outer": [[-628.06, -58.64], [-633.13, -59.84], [-631.25, -62.02], [-630.02, -63.44], [-628.27, -65.47], [-626.28, -67.77], [-624.35, -70.01], [-622.47, -72.18], [-620.39, -74.59], [-618.35, -76.95], [-616.38, -79.24], [-614.31, -81.63], [-612.33, -83.92], [-606.8, -82.44], [-608.89, -80.11], [-610.91, -77.85], [-612.9, -75.6], [-614.89, -73.38], [-617.01, -71.0], [-619.0, -68.79], [-620.97, -66.58], [-623.0, -64.31], [-624.95, -62.13], [-626.07, -60.85], [-628.06, -58.64]], "holes": []}}, {"shape": {"outer": [[235.95, -188.22], [228.08, -180.27], [219.9, -187.56], [210.45, -176.78], [210.88, -176.15], [210.34, -175.41], [205.96, -179.05], [224.92, -198.4], [235.95, -188.22]], "holes": []}}, {"shape": {"outer": [[-1358.75, -356.43], [-1352.11, -356.72], [-1352.39, -361.4], [-1352.49, -363.23], [-1352.75, -370.01], [-1354.59, -369.93], [-1354.64, -371.26], [-1359.39, -370.99], [-1358.75, -356.43]], "holes": []}}, {"shape": {"outer": [[-2331.3, -346.44], [-2339.81, -346.19], [-2341.72, -396.99], [-2333.2, -397.33], [-2331.3, -346.44]], "holes": []}}, {"shape": {"outer": [[1781.8, 2013.5], [1798.39, 1996.73], [1904.99, 2107.75], [1892.01, 2119.48], [1890.1, 2119.9], [1888.48, 2120.17], [1886.47, 2120.01], [1885.35, 2119.45], [1883.43, 2117.21], [1876.87, 2107.87], [1871.26, 2100.94], [1862.7, 2091.59], [1849.77, 2077.1], [1842.08, 2069.8], [1827.01, 2055.53], [1808.97, 2038.61], [1781.8, 2013.5]], "holes": []}}, {"shape": {"outer": [[907.94, 1328.15], [921.28, 1314.06], [904.67, 1298.43], [893.94, 1309.75], [891.33, 1312.5], [907.94, 1328.15]], "holes": []}}, {"shape": {"outer": [[893.94, 1309.75], [886.45, 1302.69], [890.02, 1298.92], [885.64, 1294.8], [892.8, 1287.25], [904.67, 1298.43], [893.94, 1309.75]], "holes": []}}, {"shape": {"outer": [[1319.52, 1860.36], [1291.54, 1883.59], [1287.97, 1879.33], [1315.96, 1856.09], [1319.52, 1860.36]], "holes": []}}, {"shape": {"outer": [[1044.3, 1421.65], [1060.12, 1403.42], [1050.44, 1395.09], [1045.42, 1400.89], [1041.48, 1397.49], [1030.68, 1409.92], [1044.3, 1421.65]], "holes": []}}, {"shape": {"outer": [[-1308.91, 113.63], [-1316.02, 88.17], [-1319.46, 87.94], [-1322.75, 88.53], [-1325.49, 89.77], [-1326.95, 91.04], [-1327.82, 92.3], [-1327.11, 102.88], [-1325.79, 105.32], [-1323.64, 108.15], [-1320.12, 111.06], [-1316.67, 112.9], [-1313.53, 113.93], [-1310.84, 114.1], [-1308.91, 113.63]], "holes": []}}, {"shape": {"outer": [[-1310.04, 157.53], [-1312.14, 155.12], [-1314.68, 153.33], [-1316.82, 151.6], [-1315.64, 151.56], [-1314.6, 151.44], [-1313.49, 151.23], [-1312.48, 150.92], [-1311.69, 150.62], [-1310.91, 150.28], [-1310.15, 149.91], [-1309.4, 149.51], [-1308.55, 149.02], [-1307.67, 148.45], [-1306.94, 147.84], [-1306.25, 147.18], [-1305.68, 146.62], [-1305.02, 145.9], [-1304.48, 145.2], [-1303.97, 144.58], [-1303.17, 143.64], [-1302.47, 142.97], [-1301.59, 142.25], [-1300.65, 141.63], [-1299.9, 141.21], [-1299.14, 140.84], [-1298.13, 140.42], [-1297.04, 140.08], [-1295.54, 139.69], [-1294.45, 139.5], [-1293.4, 139.45], [-1292.26, 139.49], [-1291.12, 139.7], [-1289.94, 140.02], [-1288.78, 140.54], [-1287.48, 141.36], [-1286.35, 142.35], [-1285.48, 143.26], [-1284.7, 144.28], [-1283.78, 145.92], [-1283.05, 147.65], [-1286.44, 151.46], [-1289.24, 151.9], [-1292.77, 152.74], [-1297.52, 154.36], [-1301.04, 155.63], [-1305.2, 156.76], [-1310.04, 157.53]], "holes": []}}, {"shape": {"outer": [[-2280.87, 234.14], [-2275.85, 234.0], [-2275.13, 237.48], [-2251.48, 230.3], [-2231.45, 228.72], [-2192.83, 226.99], [-2166.62, 221.85], [-2108.35, 218.68], [-2100.24, 216.82], [-2092.19, 213.21], [-2053.0, 213.84], [-2055.61, 188.71], [-2048.47, 183.82], [-2024.7, 181.25], [-2025.85, 171.92], [-2001.57, 169.34], [-1998.36, 167.37], [-1997.94, 164.6], [-1998.71, 155.24], [-1999.19, 151.51], [-1990.8, 151.02], [-1980.65, 141.6], [-2007.56, 144.25], [-2048.33, 145.17], [-2054.22, 145.52], [-2067.75, 146.35], [-2094.42, 144.37], [-2112.0, 148.49], [-2120.03, 148.48], [-2134.61, 143.26], [-2140.54, 142.19], [-2162.88, 142.21], [-2175.44, 142.19], [-2197.22, 144.44], [-2217.54, 149.4], [-2270.43, 165.05], [-2283.8, 166.95], [-2280.87, 234.14]], "holes": []}}, {"shape": {"outer": [[-1978.93, 193.13], [-1943.41, 188.92], [-1942.21, 198.93], [-1949.23, 199.76], [-1948.95, 202.1], [-1970.4, 204.64], [-1970.72, 201.98], [-1977.78, 202.81], [-1978.93, 193.13]], "holes": []}}, {"shape": {"outer": [[-1939.59, 201.91], [-1941.93, 181.75], [-1913.04, 178.56], [-1912.46, 183.8], [-1912.26, 184.73], [-1918.78, 185.48], [-1917.3, 198.2], [-1917.8, 198.95], [-1918.42, 199.47], [-1939.59, 201.91]], "holes": []}}, {"shape": {"outer": [[-1980.01, 206.44], [-1982.28, 186.96], [-2010.79, 190.2], [-2010.28, 194.68], [-2008.69, 195.68], [-2004.02, 195.4], [-2002.44, 209.01], [-1980.01, 206.44]], "holes": []}}, {"shape": {"outer": [[2104.54, 1681.02], [2085.26, 1657.97], [2071.86, 1669.11], [2091.15, 1692.15], [2104.54, 1681.02]], "holes": []}}, {"shape": {"outer": [[-1443.9, -33.83], [-1442.64, -33.89], [-1438.95, -34.06], [-1426.37, -34.63], [-1426.24, -33.45], [-1407.92, -34.26], [-1408.25, -41.94], [-1399.34, -42.33], [-1399.39, -43.45], [-1390.7, -43.85], [-1385.19, -44.08], [-1385.14, -43.02], [-1379.55, -43.27], [-1375.76, -43.43], [-1374.56, -16.23], [-1374.34, -11.11], [-1374.13, -5.89], [-1372.89, 21.38], [-1372.79, 23.96], [-1372.74, 25.51], [-1372.6, 28.93], [-1362.87, 28.44], [-1360.81, 28.36], [-1358.42, 28.22], [-1354.94, 27.9], [-1351.05, 27.7], [-1343.04, 27.22], [-1341.08, 27.12], [-1297.01, 25.21], [-1294.07, 25.29], [-1292.62, 25.46], [-1284.78, 25.1], [-1283.23, 24.99], [-1276.61, 24.56], [-1276.83, 19.25], [-1277.0, 15.81], [-1277.31, 9.17], [-1276.87, 9.15], [-1277.5, -4.36], [-1277.68, -8.22], [-1278.89, -8.17], [-1279.06, -11.78], [-1279.45, -11.77], [-1279.56, -14.13], [-1279.71, -17.28], [-1279.83, -19.88], [-1279.44, -19.9], [-1279.61, -23.55], [-1278.55, -23.59], [-1278.79, -28.74], [-1279.34, -40.73], [-1279.87, -40.7], [-1280.25, -48.95], [-1280.35, -51.14], [-1255.67, -52.27], [-1254.46, -53.31], [-1252.97, -53.74], [-1251.69, -53.5], [-1250.58, -52.55], [-1231.88, -53.4], [-1232.05, -57.18], [-1232.12, -58.64], [-1199.21, -60.15], [-1198.54, -60.21], [-1198.63, -61.46], [-1199.16, -69.75], [-1199.77, -80.45], [-1201.6, -80.27], [-1204.9, -80.11], [-1215.53, -79.58], [-1227.45, -78.98], [-1227.47, -79.43], [-1231.01, -79.25], [-1230.99, -78.87], [-1238.85, -78.49], [-1247.22, -78.08], [-1254.71, -77.72], [-1254.72, -78.04], [-1260.81, -77.73], [-1265.0, -77.57], [-1275.27, -77.01], [-1279.2, -76.78], [-1290.09, -76.07], [-1299.29, -75.65], [-1304.15, -75.43], [-1305.2, -75.34], [-1309.22, -74.85], [-1312.1, -74.7], [-1314.47, -74.57], [-1323.44, -74.09], [-1333.88, -73.47], [-1345.39, -72.94], [-1346.63, -72.94], [-1348.2, -72.84], [-1359.82, -72.31], [-1373.71, -71.7], [-1374.06, -79.31], [-1377.49, -79.12], [-1381.86, -78.91], [-1389.22, -78.5], [-1394.57, -78.25], [-1432.04, -76.42], [-1434.19, -76.29], [-1445.5, -75.87], [-1444.76, -58.08], [-1444.35, -43.86], [-1444.26, -41.62], [-1443.9, -33.83]], "holes": []}}, {"shape": {"outer": [[-1147.18, 41.67], [-1144.32, 37.99], [-1134.44, 37.4], [-1134.18, 43.54], [-1134.07, 45.37], [-1133.96, 48.66], [-1135.83, 53.52], [-1135.64, 60.05], [-1133.08, 64.36], [-1128.61, 68.59], [-1122.59, 71.86], [-1122.57, 70.38], [-1117.49, 70.11], [-1112.56, 67.75], [-1110.72, 68.91], [-1110.3, 75.95], [-1107.9, 75.77], [-1107.25, 88.21], [-1109.69, 88.34], [-1128.66, 89.24], [-1128.5, 87.34], [-1128.19, 86.42], [-1128.61, 75.24], [-1129.27, 72.37], [-1130.98, 71.26], [-1145.79, 71.95], [-1147.18, 41.67]], "holes": []}}, {"shape": {"outer": [[-126.98, -273.06], [-126.95, -271.84], [-126.52, -270.7], [-125.72, -269.76], [-124.65, -269.15], [-123.44, -268.94], [-122.32, -269.1], [-121.3, -269.62], [-120.5, -270.42], [-119.99, -271.44], [-119.81, -272.55], [-120.0, -273.67], [-120.54, -274.68], [-121.36, -275.47], [-122.38, -275.96], [-123.6, -276.11], [-124.8, -275.83], [-125.84, -275.18], [-126.59, -274.22], [-126.98, -273.06]], "holes": []}}, {"shape": {"outer": [[28.66, -133.38], [28.72, -132.15], [29.19, -131.02], [30.02, -130.1], [31.1, -129.52], [32.33, -129.34], [33.45, -129.54], [34.45, -130.09], [35.24, -130.91], [35.73, -131.95], [35.87, -133.08], [35.64, -134.19], [35.08, -135.19], [34.25, -135.95], [33.21, -136.43], [31.97, -136.55], [30.77, -136.25], [29.74, -135.56], [29.01, -134.56], [28.66, -133.38]], "holes": []}}, {"shape": {"outer": [[-111.61, 20.52], [-112.05, 21.34], [-112.21, 22.26], [-112.07, 23.19], [-111.64, 24.01], [-110.97, 24.67], [-110.07, 25.1], [-109.08, 25.2], [-108.11, 24.96], [-107.27, 24.42], [-106.68, 23.62], [-106.37, 22.68], [-106.4, 21.68], [-106.77, 20.76], [-107.44, 20.01], [-108.25, 19.54], [-109.17, 19.36], [-110.09, 19.47], [-110.94, 19.88], [-111.61, 20.52]], "holes": []}}, {"shape": {"outer": [[-145.03, -88.16], [-152.83, -79.89], [-151.42, -78.46], [-150.47, -78.12], [-148.55, -77.85], [-147.03, -77.96], [-145.62, -78.5], [-144.4, -79.36], [-142.61, -81.43], [-142.18, -83.15], [-142.23, -84.67], [-142.63, -86.35], [-143.37, -87.4], [-143.85, -86.95], [-145.03, -88.16]], "holes": []}}, {"shape": {"outer": [[-88.07, -161.9], [-80.46, -170.31], [-81.6, -171.51], [-83.15, -172.2], [-84.98, -172.39], [-87.38, -171.7], [-89.01, -170.77], [-90.23, -169.5], [-91.26, -167.12], [-91.52, -165.08], [-91.38, -163.29], [-90.34, -161.86], [-89.25, -163.11], [-88.07, -161.9]], "holes": []}}, {"shape": {"outer": [[-82.46, -156.86], [-74.86, -165.26], [-73.63, -164.23], [-72.82, -162.83], [-72.38, -161.06], [-72.77, -158.6], [-73.48, -156.87], [-74.61, -155.49], [-76.84, -154.17], [-78.84, -153.67], [-80.45, -153.98], [-82.03, -154.53], [-81.02, -155.71], [-82.46, -156.86]], "holes": []}}, {"shape": {"outer": [[-79.68, -96.89], [-71.0, -89.23], [-70.34, -89.95], [-69.83, -91.02], [-69.47, -92.24], [-69.37, -93.26], [-69.49, -94.38], [-69.74, -95.42], [-70.07, -96.38], [-70.57, -97.3], [-71.32, -98.18], [-72.08, -98.83], [-73.14, -99.48], [-74.06, -99.89], [-75.45, -100.2], [-76.83, -100.14], [-78.4, -99.68], [-79.83, -98.59], [-78.81, -97.89], [-79.68, -96.89]], "holes": []}}, {"shape": {"outer": [[-84.47, -91.66], [-76.06, -84.04], [-77.16, -82.79], [-78.56, -81.88], [-80.36, -81.49], [-82.81, -81.96], [-84.53, -82.72], [-85.87, -83.87], [-87.12, -86.14], [-87.58, -88.14], [-87.21, -89.73], [-86.45, -91.04], [-85.46, -90.26], [-84.47, -91.66]], "holes": []}}, {"shape": {"outer": [[2625.08, 1809.48], [2631.42, 1799.99], [2635.93, 1802.92], [2635.47, 1798.11], [2654.83, 1810.65], [2653.59, 1815.26], [2649.96, 1818.16], [2641.41, 1811.67], [2639.01, 1812.21], [2636.58, 1814.69], [2625.08, 1809.48]], "holes": []}}, {"shape": {"outer": [[-25.2, -20.93], [-24.13, -21.8], [-24.68, -22.52], [-25.06, -22.4], [-25.65, -23.18], [-25.93, -24.48], [-25.62, -26.05], [-24.76, -26.78], [-23.27, -27.18], [-21.86, -27.07], [-21.89, -26.55], [-21.05, -25.32], [-19.36, -26.51], [-20.48, -27.88], [-21.21, -27.43], [-21.76, -28.15], [-22.64, -28.2], [-24.17, -27.98], [-25.45, -27.42], [-26.36, -26.31], [-26.78, -24.73], [-26.73, -23.3], [-26.19, -22.37], [-25.75, -21.86], [-25.2, -20.93]], "holes": []}}, {"shape": {"outer": [[2116.15, 1307.3], [2137.44, 1333.99], [2134.81, 1336.16], [2145.41, 1348.79], [2139.76, 1353.22], [2140.94, 1354.75], [2137.63, 1357.13], [2140.29, 1360.89], [2131.48, 1368.08], [2117.21, 1349.86], [2116.92, 1348.95], [2112.85, 1344.38], [2113.49, 1334.69], [2117.36, 1331.45], [2112.19, 1324.93], [2108.2, 1328.25], [2101.31, 1319.21], [2116.15, 1307.3]], "holes": []}}, {"shape": {"outer": [[2554.53, 1576.31], [2567.29, 1557.68], [2573.53, 1562.88], [2578.09, 1558.51], [2590.7, 1559.41], [2590.07, 1540.95], [2577.72, 1538.85], [2561.53, 1534.03], [2541.16, 1568.82], [2554.53, 1576.31]], "holes": []}}, {"shape": {"outer": [[2807.65, 1870.4], [2803.34, 1878.63], [2808.37, 1891.12], [2824.2, 1903.68], [2839.08, 1913.76], [2839.02, 1878.35], [2807.65, 1870.4]], "holes": []}}, {"shape": {"outer": [[1626.62, 856.54], [1631.45, 851.28], [1628.94, 848.99], [1627.27, 847.88], [1625.37, 847.26], [1623.37, 847.19], [1621.69, 847.56], [1620.14, 848.32], [1618.81, 849.42], [1626.62, 856.54]], "holes": []}}, {"shape": {"outer": [[1656.4, 882.9], [1628.02, 857.4], [1632.84, 852.07], [1615.17, 836.19], [1611.09, 840.7], [1602.33, 832.83], [1647.09, 783.36], [1655.05, 790.5], [1621.46, 827.62], [1618.42, 824.91], [1617.96, 824.79], [1617.48, 824.9], [1616.81, 825.63], [1616.82, 826.78], [1617.32, 827.8], [1638.3, 846.66], [1642.59, 841.91], [1647.43, 846.25], [1644.76, 849.2], [1647.67, 851.82], [1656.2, 842.41], [1664.48, 849.84], [1669.72, 844.06], [1685.44, 858.19], [1674.64, 870.13], [1670.96, 866.82], [1656.4, 882.9]], "holes": []}}, {"shape": {"outer": [[1540.6, 774.85], [1538.88, 773.01], [1542.44, 769.72], [1544.15, 771.55], [1540.6, 774.85]], "holes": []}}, {"shape": {"outer": [[1419.1, 902.98], [1419.67, 901.0], [1419.76, 899.1], [1419.69, 896.76], [1416.49, 898.88], [1419.1, 902.98]], "holes": []}}, {"shape": {"outer": [[1412.8, 893.28], [1416.3, 891.0], [1415.19, 890.15], [1414.05, 889.45], [1412.03, 888.8], [1410.82, 888.48], [1409.62, 888.47], [1412.8, 893.28]], "holes": []}}, {"shape": {"outer": [[1300.21, 743.75], [1302.17, 741.75], [1304.45, 743.16], [1304.84, 744.5], [1306.27, 746.29], [1313.48, 752.64], [1324.84, 763.57], [1337.81, 777.09], [1350.14, 790.68], [1365.13, 806.44], [1370.11, 812.65], [1375.95, 819.85], [1389.21, 835.99], [1394.7, 842.69], [1401.67, 852.11], [1406.5, 859.27], [1409.25, 862.57], [1410.84, 865.27], [1412.94, 867.58], [1413.76, 868.79], [1419.33, 876.1], [1421.18, 879.49], [1423.92, 883.79], [1425.44, 884.89], [1422.79, 886.83], [1410.08, 869.17], [1397.42, 851.57], [1384.79, 835.18], [1371.81, 819.07], [1351.55, 796.12], [1330.0, 772.55], [1312.17, 754.46], [1300.21, 743.75]], "holes": []}}, {"shape": {"outer": [[1426.87, 892.86], [1430.54, 890.63], [1431.61, 892.62], [1432.32, 895.74], [1435.04, 900.32], [1437.19, 904.6], [1440.65, 908.99], [1449.9, 923.29], [1453.74, 929.53], [1457.15, 936.35], [1459.91, 940.31], [1466.12, 952.39], [1484.65, 989.46], [1495.0, 1010.52], [1510.39, 1052.88], [1507.99, 1053.92], [1507.15, 1055.97], [1502.58, 1058.53], [1492.59, 1042.42], [1479.0, 1022.37], [1460.17, 995.79], [1443.29, 974.53], [1424.15, 954.13], [1407.33, 938.37], [1405.86, 935.34], [1404.52, 934.15], [1400.29, 931.36], [1358.3, 891.89], [1353.91, 889.33], [1310.45, 849.9], [1251.24, 797.61], [1256.03, 792.31], [1261.65, 797.42], [1290.37, 823.41], [1381.51, 906.21], [1396.27, 919.69], [1432.97, 953.31], [1435.34, 951.3], [1445.22, 961.43], [1455.45, 971.77], [1457.98, 974.21], [1459.24, 975.46], [1460.81, 976.28], [1462.49, 976.73], [1464.55, 976.36], [1466.42, 975.27], [1467.58, 973.76], [1468.29, 972.1], [1468.36, 970.15], [1467.88, 968.47], [1451.2, 940.94], [1455.15, 938.0], [1433.47, 903.18], [1426.87, 892.86]], "holes": []}}, {"shape": {"outer": [[1279.7, 2012.18], [1307.22, 2054.71], [1356.16, 2024.25], [1394.62, 2085.01], [1327.35, 2127.46], [1291.68, 2146.47], [1286.18, 2134.23], [1270.63, 2139.14], [1260.48, 2126.18], [1239.35, 2088.69], [1215.22, 2054.14], [1279.7, 2012.18]], "holes": []}}, {"shape": {"outer": [[-2704.78, -205.57], [-2705.63, -225.7], [-2679.7, -226.79], [-2680.13, -237.07], [-2724.56, -235.19], [-2723.27, -204.79], [-2704.78, -205.57]], "holes": []}}, {"shape": {"outer": [[2860.43, 1863.26], [2868.51, 1865.01], [2872.23, 1848.02], [2871.95, 1847.96], [2872.39, 1845.93], [2864.89, 1844.3], [2864.41, 1846.5], [2864.11, 1846.44], [2860.43, 1863.26]], "holes": []}}, {"shape": {"outer": [[1990.27, 1049.31], [2024.65, 1081.43], [2037.87, 1067.27], [2002.5, 1035.94], [1990.27, 1049.31]], "holes": []}}, {"shape": {"outer": [[2069.46, 1050.11], [2084.54, 1033.73], [2074.35, 1024.75], [2059.61, 1041.8], [2069.46, 1050.11]], "holes": []}}, {"shape": {"outer": [[-474.0, -2259.37], [-431.34, -2261.12], [-422.42, -2269.45], [-421.01, -2277.56], [-428.88, -2276.91], [-428.67, -2274.3], [-429.65, -2272.05], [-432.02, -2270.71], [-434.55, -2270.73], [-435.87, -2271.53], [-438.05, -2273.69], [-438.55, -2275.2], [-474.59, -2273.71], [-474.0, -2259.37]], "holes": []}}, {"shape": {"outer": [[-1216.03, -2369.93], [-1208.4, -2381.88], [-1217.12, -2386.79], [-1214.49, -2391.41], [-1223.61, -2396.54], [-1220.32, -2402.34], [-1238.99, -2411.12], [-1247.53, -2394.15], [-1229.18, -2383.41], [-1228.07, -2379.99], [-1228.92, -2376.76], [-1216.03, -2369.93]], "holes": []}}, {"shape": {"outer": [[-1080.77, -2619.97], [-1082.08, -2623.84], [-1112.78, -2620.49], [-1141.84, -2560.92], [-1158.11, -2568.62], [-1172.56, -2567.91], [-1173.56, -2523.2], [-1155.4, -2513.42], [-1139.53, -2502.25], [-1124.58, -2529.86], [-1107.05, -2566.89], [-1100.61, -2580.16], [-1080.77, -2619.97]], "holes": []}}, {"shape": {"outer": [[2901.98, 2649.53], [2901.03, 2637.19], [2921.61, 2622.38], [2924.24, 2622.45], [2926.41, 2659.2], [2902.54, 2662.7], [2900.41, 2649.46], [2901.98, 2649.53]], "holes": []}}, {"shape": {"outer": [[2729.95, 2461.43], [2776.32, 2420.53], [2826.1, 2469.57], [2826.01, 2476.65], [2783.56, 2520.91], [2778.61, 2507.38], [2729.95, 2461.43]], "holes": []}}, {"shape": {"outer": [[52.38, -2043.05], [52.46, -2061.55], [67.03, -2061.76], [66.93, -2058.18], [66.58, -2046.45], [66.5, -2043.25], [52.38, -2043.05]], "holes": []}}, {"shape": {"outer": [[1167.69, 1071.58], [1139.72, 1102.28], [1152.73, 1114.05], [1180.69, 1083.34], [1167.69, 1071.58]], "holes": []}}, {"shape": {"outer": [[-1438.31, 30.82], [-1407.52, 29.55], [-1407.57, 28.2], [-1406.91, 28.19], [-1406.97, 26.79], [-1407.14, 23.19], [-1407.46, 15.95], [-1424.36, 16.7], [-1424.17, 18.07], [-1440.7, 18.83], [-1440.57, 21.74], [-1440.42, 24.73], [-1438.65, 24.68], [-1438.31, 30.82]], "holes": []}}, {"shape": {"outer": [[-1720.7, -54.43], [-1665.05, -45.68], [-1671.46, -83.4], [-1673.2, -86.37], [-1676.96, -87.35], [-1680.67, -87.38], [-1711.31, -82.13], [-1714.45, -79.81], [-1716.66, -76.96], [-1719.53, -71.75], [-1721.08, -67.1], [-1721.85, -62.14], [-1721.8, -58.55], [-1721.39, -56.3], [-1720.7, -54.43]], "holes": []}}, {"shape": {"outer": [[-935.85, -468.79], [-937.45, -498.15], [-934.52, -498.55], [-935.62, -517.96], [-919.71, -517.76], [-919.76, -515.53], [-910.69, -507.98], [-905.07, -514.1], [-877.66, -489.98], [-903.62, -461.81], [-917.77, -474.42], [-921.51, -469.58], [-935.85, -468.79]], "holes": []}}, {"shape": {"outer": [[-2426.38, 115.34], [-2426.91, 101.37], [-2419.63, 101.1], [-2419.11, 115.07], [-2426.38, 115.34]], "holes": []}}, {"shape": {"outer": [[-2431.22, 115.73], [-2428.73, 115.61], [-2429.55, 98.19], [-2432.05, 98.31], [-2431.22, 115.73]], "holes": []}}, {"shape": {"outer": [[2514.64, 1891.61], [2548.31, 1897.89], [2565.01, 1830.02], [2554.0, 1826.97], [2545.85, 1859.79], [2527.96, 1855.39], [2527.03, 1856.79], [2523.84, 1868.76], [2506.61, 1877.2], [2514.64, 1891.61]], "holes": []}}, {"shape": {"outer": [[2573.42, 1768.34], [2574.19, 1768.19], [2574.11, 1760.13], [2580.38, 1760.0], [2580.31, 1765.46], [2590.79, 1765.16], [2589.73, 1790.81], [2585.19, 1790.76], [2573.07, 1788.6], [2573.42, 1768.34]], "holes": []}}, {"shape": {"outer": [[-53.44, 114.56], [-84.39, 86.7], [-82.82, 80.67], [-52.07, 108.97], [-53.44, 114.56]], "holes": []}}, {"shape": {"outer": [[153.3, 280.12], [160.91, 286.96], [168.49, 278.59], [165.79, 276.16], [166.89, 274.95], [158.45, 267.34], [151.87, 274.6], [155.41, 277.79], [153.3, 280.12]], "holes": []}}, {"shape": {"outer": [[2512.25, 1835.63], [2525.11, 1838.48], [2528.78, 1822.04], [2517.76, 1819.59], [2515.92, 1819.19], [2512.25, 1835.63]], "holes": []}}, {"shape": {"outer": [[2445.31, 1819.99], [2441.18, 1806.65], [2441.04, 1801.86], [2414.9, 1803.07], [2413.73, 1811.29], [2414.02, 1826.25], [2421.99, 1821.58], [2445.31, 1819.99]], "holes": []}}, {"shape": {"outer": [[2306.81, 1896.45], [2332.46, 1881.93], [2318.07, 1858.59], [2290.93, 1878.77], [2306.81, 1896.45]], "holes": []}}, {"shape": {"outer": [[2315.19, 1908.87], [2320.99, 1905.7], [2325.72, 1914.29], [2333.3, 1910.14], [2339.82, 1921.95], [2334.42, 1924.91], [2324.26, 1925.32], [2315.19, 1908.87]], "holes": []}}, {"shape": {"outer": [[2414.65, 1994.2], [2396.13, 1964.33], [2419.09, 1950.08], [2412.27, 1939.5], [2385.18, 1956.86], [2369.31, 1939.95], [2347.12, 1956.57], [2359.07, 1971.15], [2375.66, 1957.74], [2398.94, 1988.42], [2388.38, 1995.98], [2391.9, 2000.45], [2386.69, 2004.51], [2410.57, 2034.86], [2423.95, 2026.98], [2406.72, 1999.64], [2414.65, 1994.2]], "holes": []}}, {"shape": {"outer": [[2401.05, 1652.41], [2366.47, 1643.72], [2363.83, 1654.19], [2398.4, 1662.88], [2401.05, 1652.41]], "holes": []}}, {"shape": {"outer": [[2327.96, 1661.91], [2331.38, 1649.45], [2349.1, 1654.27], [2350.26, 1650.04], [2358.28, 1652.22], [2353.7, 1668.92], [2327.96, 1661.91]], "holes": []}}, {"shape": {"outer": [[2269.46, 1558.04], [2279.44, 1576.47], [2253.31, 1592.17], [2249.64, 1585.85], [2246.91, 1576.21], [2244.66, 1572.58], [2269.46, 1558.04]], "holes": []}}, {"shape": {"outer": [[-2554.51, -828.28], [-2553.03, -827.7], [-2550.75, -827.51], [-2549.51, -827.55], [-2547.76, -827.62], [-2545.02, -828.17], [-2536.13, -830.1], [-2523.86, -830.54], [-2519.16, -830.31], [-2515.41, -829.17], [-2513.06, -828.36], [-2504.27, -828.59], [-2497.48, -828.76], [-2491.89, -828.9], [-2490.7, -829.11], [-2489.5, -829.59], [-2488.96, -830.34], [-2488.73, -831.15], [-2489.0, -831.9], [-2489.74, -832.8], [-2499.14, -840.95], [-2504.71, -844.85], [-2509.85, -848.37], [-2517.64, -854.11], [-2519.89, -855.77], [-2531.59, -865.79], [-2550.4, -882.04], [-2551.29, -882.73], [-2552.25, -883.28], [-2553.26, -883.38], [-2554.33, -883.11], [-2555.12, -882.57], [-2555.82, -881.65], [-2556.11, -880.75], [-2556.04, -878.04], [-2555.57, -856.51], [-2555.61, -856.19], [-2555.74, -854.93], [-2556.29, -853.36], [-2557.06, -851.62], [-2557.22, -851.31], [-2557.45, -850.89], [-2557.54, -850.04], [-2557.45, -843.65], [-2557.42, -841.33], [-2557.31, -832.7], [-2557.0, -831.33], [-2555.92, -829.76], [-2554.51, -828.28]], "holes": []}}, {"shape": {"outer": [[-866.72, -413.58], [-858.19, -422.52], [-869.38, -433.13], [-877.91, -424.2], [-866.72, -413.58]], "holes": []}}, {"shape": {"outer": [[-564.76, -1050.62], [-578.94, -1063.23], [-582.54, -1059.58], [-583.61, -1060.6], [-580.07, -1064.24], [-585.88, -1069.41], [-589.18, -1065.86], [-591.58, -1067.91], [-588.18, -1071.52], [-615.43, -1096.67], [-633.16, -1112.43], [-627.82, -1117.99], [-609.77, -1102.19], [-587.59, -1081.71], [-583.44, -1085.5], [-575.72, -1077.81], [-573.09, -1080.29], [-572.58, -1081.99], [-572.63, -1083.97], [-573.28, -1086.92], [-583.18, -1096.1], [-580.02, -1099.72], [-592.82, -1108.49], [-611.34, -1124.07], [-609.69, -1125.86], [-626.67, -1141.63], [-628.94, -1138.04], [-633.84, -1141.32], [-646.73, -1119.79], [-643.0, -1116.53], [-644.1, -1114.99], [-644.79, -1112.81], [-645.01, -1110.62], [-644.62, -1108.48], [-643.56, -1106.01], [-641.91, -1103.38], [-635.57, -1097.93], [-634.01, -1095.47], [-633.99, -1092.7], [-634.89, -1090.72], [-649.26, -1073.86], [-646.99, -1071.81], [-644.97, -1069.99], [-628.99, -1087.14], [-627.41, -1088.31], [-625.67, -1088.63], [-625.02, -1085.02], [-630.98, -1078.43], [-625.85, -1073.81], [-624.25, -1074.95], [-620.79, -1076.23], [-617.24, -1080.4], [-615.19, -1078.32], [-618.18, -1075.01], [-592.04, -1051.42], [-588.77, -1054.59], [-581.89, -1048.67], [-586.49, -1044.06], [-580.09, -1038.3], [-576.01, -1041.72], [-575.46, -1041.75], [-573.44, -1039.8], [-567.53, -1045.89], [-568.34, -1046.7], [-568.27, -1047.09], [-564.76, -1050.62]], "holes": []}}, {"shape": {"outer": [[336.98, 203.28], [348.65, 189.98], [326.05, 170.29], [314.38, 183.59], [336.98, 203.28]], "holes": []}}, {"shape": {"outer": [[1405.25, 1418.19], [1443.83, 1453.68], [1499.75, 1392.53], [1488.5, 1382.8], [1484.47, 1387.56], [1464.17, 1369.78], [1469.08, 1364.17], [1478.5, 1353.86], [1480.81, 1351.72], [1462.02, 1334.72], [1429.21, 1372.22], [1437.25, 1381.35], [1405.25, 1418.19]], "holes": []}}, {"shape": {"outer": [[423.61, -3063.5], [425.82, -3066.5], [432.71, -3077.81], [443.46, -3095.98], [468.32, -3133.06], [493.71, -3166.57], [515.35, -3193.76], [558.48, -3238.12], [565.06, -3245.39], [604.54, -3280.19], [600.94, -3391.22], [594.45, -3591.5], [379.61, -3581.16], [358.63, -3580.14], [327.81, -3680.16], [325.98, -3683.54], [323.5, -3685.54], [226.5, -3682.44], [220.26, -3683.3], [211.89, -3685.82], [205.2, -3690.45], [199.52, -3695.79], [194.43, -3704.61], [193.56, -3710.77], [193.37, -3717.31], [195.3, -3771.58], [44.64, -3766.82], [-21.98, -3764.72], [-214.42, -3756.79], [-217.18, -3756.67], [-210.71, -3625.62], [-211.08, -3618.65], [-210.7, -3612.49], [-210.45, -3603.63], [-213.58, -3595.55], [-215.81, -3591.16], [-220.52, -3586.2], [-219.69, -3579.38], [-207.5, -3479.43], [-201.16, -3357.87], [-325.8, -3351.62], [-320.63, -3285.56], [-317.64, -3241.5], [-315.81, -3223.08], [-312.43, -3206.02], [-309.32, -3193.41], [-306.32, -3184.7], [-301.22, -3173.16], [-295.28, -3162.94], [-281.04, -3140.56], [-273.82, -3131.38], [-267.26, -3124.5], [-247.74, -3105.29], [-234.56, -3094.71], [-210.81, -3079.22], [-200.2, -3072.74], [-194.92, -3070.31], [-185.58, -3067.39], [-145.74, -3056.26], [-127.06, -3050.88], [-96.64, -3040.2], [-88.5, -3036.47], [-80.04, -3031.59], [-63.98, -3022.09], [-58.06, -3017.21], [-46.56, -3004.99], [-36.99, -2994.01], [-26.15, -2979.6], [-14.79, -2961.61], [-2.61, -2940.89], [6.85, -2923.71], [24.13, -2885.97], [32.57, -2864.29], [39.37, -2844.14], [40.04, -2840.69], [40.76, -2830.48], [40.71, -2821.96], [38.94, -2803.02], [32.92, -2755.1], [29.89, -2730.11], [29.47, -2712.32], [30.5, -2700.36], [32.84, -2686.3], [34.33, -2679.85], [36.92, -2670.25], [49.05, -2640.46], [54.92, -2627.64], [58.2, -2624.42], [60.19, -2623.83], [62.05, -2623.89], [69.56, -2627.24], [106.18, -2644.74], [121.77, -2651.48], [141.29, -2663.5], [160.89, -2678.85], [181.87, -2698.5], [202.62, -2719.42], [228.12, -2743.08], [237.59, -2749.45], [245.65, -2753.38], [255.74, -2757.36], [268.24, -2761.79], [277.57, -2766.31], [284.5, -2770.57], [291.01, -2776.86], [297.84, -2784.63], [301.76, -2790.29], [306.02, -2797.26], [310.55, -2807.92], [312.35, -2816.11], [313.11, -2822.24], [313.5, -2828.17], [318.19, -2846.05], [322.82, -2859.69], [325.84, -2864.21], [329.57, -2870.05], [348.33, -2915.58], [357.05, -2940.8], [360.31, -2949.49], [374.05, -2975.76], [390.53, -3007.59], [393.43, -3014.86], [394.28, -3019.46], [394.62, -3025.03], [404.81, -3028.38], [405.35, -3028.61], [421.04, -3055.75], [423.61, -3063.5]], "holes": []}}, {"shape": {"outer": [[-187.78, -367.72], [-184.05, -371.94], [-147.1, -337.68], [-148.66, -331.42], [-187.78, -367.72]], "holes": []}}, {"shape": {"outer": [[91.36, -157.48], [98.01, -155.39], [131.94, -192.58], [127.23, -196.91], [91.36, -157.48]], "holes": []}}, {"shape": {"outer": [[91.77, -113.88], [95.06, -114.15], [134.05, -79.32], [133.61, -75.84], [91.77, -113.88]], "holes": []}}, {"shape": {"outer": [[-132.55, 89.86], [-129.63, 92.79], [-155.45, 121.71], [-158.47, 118.69], [-132.55, 89.86]], "holes": []}}, {"shape": {"outer": [[500.04, 1158.42], [556.4, 1209.6], [562.71, 1209.01], [568.2, 1213.75], [598.87, 1180.01], [595.38, 1176.5], [601.0, 1170.25], [606.87, 1161.54], [611.61, 1162.98], [612.72, 1158.0], [612.78, 1152.45], [612.27, 1147.94], [610.57, 1142.01], [609.03, 1137.43], [604.92, 1131.22], [599.07, 1125.18], [560.53, 1091.55], [539.32, 1114.42], [540.16, 1116.95], [542.53, 1119.33], [565.97, 1140.71], [567.77, 1138.92], [580.84, 1150.95], [579.25, 1152.74], [590.74, 1163.25], [575.1, 1180.92], [578.79, 1184.18], [579.15, 1184.84], [579.24, 1185.6], [579.01, 1186.37], [578.5, 1186.99], [574.98, 1183.89], [559.71, 1201.47], [503.66, 1151.13], [500.38, 1154.92], [500.04, 1158.42]], "holes": []}}, {"shape": {"outer": [[875.28, 310.97], [926.6, 356.69], [936.84, 365.81], [1011.75, 432.55], [995.06, 451.12], [862.8, 328.95], [860.47, 326.79], [865.36, 321.63], [869.96, 316.75], [875.28, 310.97]], "holes": []}}, {"shape": {"outer": [[-845.64, -924.78], [-858.86, -910.23], [-866.76, -910.01], [-866.55, -907.58], [-869.27, -907.5], [-869.35, -904.92], [-871.79, -904.85], [-871.98, -901.7], [-875.53, -905.18], [-881.13, -900.01], [-877.41, -895.82], [-878.54, -894.92], [-883.4, -899.23], [-904.47, -877.15], [-890.88, -864.23], [-870.26, -886.58], [-874.25, -890.47], [-872.71, -891.94], [-868.01, -888.35], [-863.03, -894.8], [-866.43, -898.28], [-864.05, -900.78], [-862.88, -899.95], [-862.64, -896.24], [-859.72, -896.39], [-859.7, -898.46], [-858.0, -898.45], [-857.84, -901.37], [-855.52, -901.25], [-855.64, -904.0], [-853.35, -904.1], [-853.49, -906.25], [-850.74, -906.44], [-850.83, -909.03], [-848.67, -909.09], [-848.74, -911.48], [-846.03, -911.55], [-846.15, -914.21], [-843.88, -914.31], [-844.09, -916.73], [-841.53, -916.95], [-841.75, -922.25], [-843.49, -926.2], [-845.64, -924.78]], "holes": []}}, {"shape": {"outer": [[-763.2, -972.07], [-758.29, -977.01], [-762.99, -980.67], [-763.8, -985.22], [-778.67, -980.33], [-781.97, -978.11], [-786.33, -973.75], [-810.2, -946.5], [-797.59, -934.94], [-769.7, -965.25], [-767.58, -963.31], [-765.26, -965.75], [-768.62, -969.79], [-766.53, -970.96], [-764.74, -971.01], [-763.2, -972.07]], "holes": []}}, {"shape": {"outer": [[-797.59, -934.94], [-789.39, -927.45], [-787.09, -929.94], [-775.21, -942.85], [-768.38, -936.62], [-754.67, -951.52], [-767.58, -963.31], [-769.7, -965.25], [-797.59, -934.94]], "holes": []}}, {"shape": {"outer": [[-752.1, -957.48], [-748.37, -954.11], [-751.51, -950.65], [-746.05, -945.72], [-721.59, -972.58], [-730.77, -980.89], [-752.1, -957.48]], "holes": []}}, {"shape": {"outer": [[-841.64, -882.19], [-809.61, -917.83], [-799.93, -908.5], [-800.68, -907.25], [-800.64, -905.91], [-797.65, -903.21], [-828.63, -869.84], [-841.64, -882.19]], "holes": []}}, {"shape": {"outer": [[-1300.42, -155.79], [-1300.95, -169.47], [-1286.04, -170.06], [-1285.5, -156.38], [-1300.42, -155.79]], "holes": []}}, {"shape": {"outer": [[1761.8, 2506.29], [1799.64, 2497.61], [1816.68, 2571.4], [1778.86, 2580.08], [1761.8, 2506.29]], "holes": []}}, {"shape": {"outer": [[-2328.93, -26.55], [-2325.7, -26.65], [-2326.33, -50.27], [-2329.86, -50.29], [-2328.93, -26.55]], "holes": []}}, {"shape": {"outer": [[-50.13, 357.34], [-56.44, 364.01], [-43.62, 376.06], [-36.48, 368.52], [-40.97, 364.3], [-41.8, 365.17], [-50.13, 357.34]], "holes": []}}, {"shape": {"outer": [[-64.39, 260.05], [-52.47, 247.29], [-59.92, 240.38], [-71.84, 253.16], [-64.39, 260.05]], "holes": []}}, {"shape": {"outer": [[-182.89, 217.72], [-161.26, 237.6], [-159.9, 236.14], [-138.45, 255.87], [-134.32, 251.41], [-149.55, 237.41], [-143.3, 230.66], [-171.15, 205.06], [-182.89, 217.72]], "holes": []}}, {"shape": {"outer": [[-196.37, 205.25], [-189.66, 211.42], [-191.46, 213.36], [-190.12, 214.59], [-192.24, 216.88], [-186.77, 221.91], [-182.89, 217.72], [-171.15, 205.06], [-184.67, 192.63], [-196.37, 205.25]], "holes": []}}, {"shape": {"outer": [[138.39, 436.28], [125.49, 450.59], [137.62, 461.44], [144.11, 454.23], [145.55, 455.53], [151.95, 448.42], [138.39, 436.28]], "holes": []}}, {"shape": {"outer": [[124.24, 450.73], [98.86, 477.48], [107.38, 485.51], [132.76, 458.76], [124.24, 450.73]], "holes": []}}, {"shape": {"outer": [[59.71, 545.76], [47.54, 534.8], [40.45, 542.62], [47.28, 548.77], [37.77, 559.26], [46.06, 566.72], [55.36, 556.46], [52.41, 553.81], [59.71, 545.76]], "holes": []}}, {"shape": {"outer": [[19.86, 541.02], [31.74, 551.72], [40.38, 542.2], [35.02, 537.37], [37.99, 534.09], [43.27, 538.85], [50.77, 530.59], [38.96, 519.95], [19.86, 541.02]], "holes": []}}, {"shape": {"outer": [[99.25, 343.38], [79.56, 365.28], [86.34, 371.33], [99.47, 356.73], [97.78, 355.23], [104.35, 347.93], [99.25, 343.38]], "holes": []}}, {"shape": {"outer": [[111.46, 327.03], [100.99, 317.68], [87.98, 332.14], [91.84, 335.59], [73.93, 355.51], [80.55, 361.42], [111.46, 327.03]], "holes": []}}, {"shape": {"outer": [[-628.91, -462.77], [-612.04, -481.32], [-625.24, -494.17], [-642.54, -475.58], [-628.91, -462.77]], "holes": []}}, {"shape": {"outer": [[-580.3, -479.24], [-566.83, -467.87], [-558.3, -476.86], [-565.58, -483.51], [-568.88, -479.68], [-575.31, -485.1], [-580.3, -479.24]], "holes": []}}, {"shape": {"outer": [[-687.73, -549.03], [-701.43, -533.38], [-694.6, -527.45], [-695.79, -526.09], [-694.1, -524.63], [-686.42, -517.95], [-671.53, -534.95], [-687.73, -549.03]], "holes": []}}, {"shape": {"outer": [[-669.87, -533.86], [-657.21, -547.77], [-660.54, -550.75], [-664.16, -553.99], [-671.48, -560.56], [-673.44, -562.31], [-686.04, -548.35], [-669.87, -533.86]], "holes": []}}, {"shape": {"outer": [[-761.09, -623.17], [-744.38, -641.14], [-758.31, -654.02], [-775.03, -636.05], [-761.09, -623.17]], "holes": []}}, {"shape": {"outer": [[-738.8, -571.08], [-732.5, -577.85], [-742.13, -586.75], [-749.96, -578.33], [-743.51, -572.38], [-741.98, -574.03], [-738.8, -571.08]], "holes": []}}, {"shape": {"outer": [[-773.47, -592.43], [-758.53, -578.63], [-741.7, -596.72], [-756.65, -610.52], [-773.47, -592.43]], "holes": []}}, {"shape": {"outer": [[-796.09, -613.19], [-789.16, -606.79], [-790.07, -605.81], [-775.55, -592.4], [-755.96, -613.46], [-763.55, -620.48], [-769.32, -614.27], [-776.59, -620.98], [-771.8, -626.11], [-778.41, -632.22], [-796.09, -613.19]], "holes": []}}, {"shape": {"outer": [[-863.47, -679.93], [-850.0, -667.49], [-842.95, -675.07], [-856.42, -687.51], [-863.47, -679.93]], "holes": []}}, {"shape": {"outer": [[-797.01, -641.83], [-810.45, -654.25], [-826.09, -637.44], [-812.65, -625.03], [-797.01, -641.83]], "holes": []}}, {"shape": {"outer": [[-793.19, -644.19], [-810.15, -625.96], [-796.83, -613.66], [-779.87, -631.9], [-793.19, -644.19]], "holes": []}}, {"shape": {"outer": [[-764.03, -650.05], [-771.89, -657.32], [-768.41, -661.05], [-774.76, -666.92], [-792.75, -647.58], [-778.54, -634.45], [-764.03, -650.05]], "holes": []}}, {"shape": {"outer": [[-820.56, -522.26], [-801.09, -505.23], [-794.44, -512.78], [-790.27, -509.13], [-785.33, -514.74], [-800.71, -528.18], [-808.97, -535.4], [-820.56, -522.26]], "holes": []}}, {"shape": {"outer": [[-876.0, -595.94], [-888.95, -595.74], [-888.89, -591.82], [-901.69, -591.62], [-901.79, -598.3], [-912.66, -598.13], [-912.59, -593.6], [-916.43, -593.54], [-916.4, -591.46], [-916.24, -580.35], [-909.87, -580.44], [-909.72, -570.78], [-909.61, -563.94], [-898.97, -564.1], [-899.04, -568.72], [-881.13, -569.0], [-881.2, -573.48], [-867.82, -588.67], [-876.0, -595.94]], "holes": []}}, {"shape": {"outer": [[-857.82, -554.59], [-872.94, -567.81], [-883.79, -555.49], [-877.21, -549.73], [-868.68, -542.27], [-857.82, -554.59]], "holes": []}}, {"shape": {"outer": [[-834.57, -536.47], [-825.48, -546.79], [-830.85, -551.48], [-828.74, -553.89], [-829.78, -554.8], [-852.21, -574.41], [-850.81, -576.01], [-858.61, -582.82], [-865.97, -589.26], [-878.57, -574.95], [-850.69, -550.57], [-847.46, -554.24], [-843.8, -551.05], [-847.03, -547.38], [-834.57, -536.47]], "holes": []}}, {"shape": {"outer": [[-867.49, -539.36], [-861.83, -534.41], [-854.45, -527.95], [-843.07, -540.86], [-848.54, -545.64], [-847.95, -546.33], [-855.52, -552.95], [-867.49, -539.36]], "holes": []}}, {"shape": {"outer": [[-851.9, -529.29], [-845.32, -523.47], [-836.63, -533.25], [-843.22, -539.06], [-851.9, -529.29]], "holes": []}}, {"shape": {"outer": [[-821.9, -521.15], [-834.42, -532.11], [-845.57, -519.44], [-839.58, -514.21], [-833.04, -508.5], [-821.9, -521.15]], "holes": []}}, {"shape": {"outer": [[-804.41, -506.66], [-819.26, -519.64], [-831.76, -505.44], [-825.8, -500.23], [-816.91, -492.46], [-811.29, -498.85], [-804.41, -506.66]], "holes": []}}, {"shape": {"outer": [[-694.34, -843.96], [-680.29, -831.08], [-653.56, -860.03], [-679.59, -883.89], [-688.3, -874.47], [-676.3, -863.48], [-694.34, -843.96]], "holes": []}}, {"shape": {"outer": [[-448.08, -700.65], [-462.63, -685.15], [-449.41, -672.84], [-435.96, -687.17], [-442.94, -693.67], [-441.85, -694.85], [-448.08, -700.65]], "holes": []}}, {"shape": {"outer": [[-473.33, -718.9], [-484.42, -707.08], [-464.06, -688.1], [-452.96, -699.92], [-473.33, -718.9]], "holes": []}}, {"shape": {"outer": [[-493.16, -730.87], [-497.06, -734.18], [-492.83, -739.11], [-498.09, -743.6], [-509.14, -730.71], [-499.99, -722.91], [-493.16, -730.87]], "holes": []}}, {"shape": {"outer": [[-977.83, 139.07], [-970.79, 145.39], [-968.34, 142.69], [-975.39, 136.36], [-977.83, 139.07]], "holes": []}}, {"shape": {"outer": [[-987.67, 121.71], [-987.57, 123.95], [-981.0, 123.66], [-980.65, 131.83], [-986.98, 132.12], [-986.84, 135.39], [-978.72, 135.04], [-978.84, 132.13], [-976.07, 132.0], [-976.4, 124.52], [-980.31, 124.69], [-980.45, 121.39], [-987.67, 121.71]], "holes": []}}, {"shape": {"outer": [[-977.91, 111.86], [-978.2, 105.53], [-987.03, 105.93], [-986.74, 112.26], [-977.91, 111.86]], "holes": []}}, {"shape": {"outer": [[-766.54, -788.27], [-754.92, -800.48], [-733.78, -780.51], [-745.4, -768.3], [-766.54, -788.27]], "holes": []}}, {"shape": {"outer": [[-698.74, 267.89], [-676.33, 287.33], [-669.69, 279.74], [-692.1, 260.3], [-698.74, 267.89]], "holes": []}}, {"shape": {"outer": [[-719.26, 262.06], [-705.62, 274.18], [-693.09, 260.17], [-706.73, 248.07], [-719.26, 262.06]], "holes": []}}, {"shape": {"outer": [[-735.39, 247.95], [-720.2, 261.5], [-712.9, 253.37], [-728.11, 239.83], [-735.39, 247.95]], "holes": []}}, {"shape": {"outer": [[-736.03, 272.65], [-732.68, 268.82], [-715.3, 283.88], [-708.39, 275.96], [-741.2, 247.55], [-751.45, 259.3], [-736.03, 272.65]], "holes": []}}, {"shape": {"outer": [[-809.18, 196.24], [-798.25, 205.92], [-782.08, 187.8], [-788.41, 182.18], [-785.17, 178.54], [-789.76, 174.48], [-809.18, 196.24]], "holes": []}}, {"shape": {"outer": [[-897.69, 201.88], [-886.03, 212.49], [-877.68, 203.4], [-881.22, 200.17], [-879.66, 198.48], [-887.79, 191.08], [-897.69, 201.88]], "holes": []}}, {"shape": {"outer": [[-878.76, 150.69], [-857.63, 128.02], [-875.77, 111.22], [-896.18, 133.11], [-887.68, 140.98], [-888.4, 141.76], [-878.76, 150.69]], "holes": []}}, {"shape": {"outer": [[-853.04, 150.16], [-859.34, 144.32], [-860.74, 145.84], [-866.59, 140.43], [-874.35, 148.75], [-862.21, 160.0], [-853.04, 150.16]], "holes": []}}, {"shape": {"outer": [[-2459.22, -229.07], [-2459.02, -222.95], [-2445.7, -223.39], [-2445.9, -229.51], [-2459.22, -229.07]], "holes": []}}, {"shape": {"outer": [[-2579.68, -183.87], [-2579.51, -179.01], [-2574.57, -179.18], [-2574.74, -184.05], [-2579.68, -183.87]], "holes": []}}, {"shape": {"outer": [[-1872.47, -12.81], [-1874.04, -22.46], [-1886.94, -19.99], [-1884.95, -10.62], [-1872.47, -12.81]], "holes": []}}, {"shape": {"outer": [[-2900.88, 272.43], [-2882.09, 271.53], [-2882.25, 268.13], [-2871.71, 267.63], [-2871.95, 262.56], [-2894.82, 263.65], [-2894.76, 264.97], [-2901.23, 265.28], [-2900.88, 272.43]], "holes": []}}, {"shape": {"outer": [[-2761.47, 290.57], [-2738.49, 289.91], [-2738.62, 285.5], [-2761.6, 286.16], [-2761.47, 290.57]], "holes": []}}, {"shape": {"outer": [[-2714.52, 253.39], [-2731.23, 253.93], [-2733.41, 254.49], [-2735.44, 255.46], [-2736.95, 256.54], [-2738.27, 257.84], [-2738.69, 258.25], [-2741.47, 255.43], [-2739.52, 253.5], [-2737.47, 252.04], [-2734.78, 250.77], [-2731.8, 249.99], [-2714.65, 249.44], [-2714.52, 253.39]], "holes": []}}, {"shape": {"outer": [[-1057.35, 176.27], [-1044.8, 175.7], [-1045.42, 161.99], [-1030.08, 161.3], [-1030.38, 154.58], [-1024.39, 154.31], [-1024.66, 148.57], [-1058.55, 150.12], [-1057.35, 176.27]], "holes": []}}, {"shape": {"outer": [[-1043.66, 120.41], [-1060.18, 121.16], [-1058.88, 149.53], [-1042.36, 148.78], [-1043.66, 120.41]], "holes": []}}, {"shape": {"outer": [[-2227.45, -181.84], [-2230.96, -181.71], [-2230.25, -162.43], [-2226.73, -162.56], [-2227.45, -181.84]], "holes": []}}, {"shape": {"outer": [[-2159.99, -195.92], [-2164.97, -195.7], [-2164.91, -194.36], [-2166.1, -194.31], [-2166.15, -195.64], [-2171.07, -195.42], [-2171.01, -194.11], [-2172.2, -194.06], [-2172.26, -195.38], [-2177.21, -195.16], [-2176.97, -189.77], [-2172.1, -189.99], [-2172.15, -191.1], [-2170.86, -191.16], [-2170.81, -190.05], [-2165.93, -190.27], [-2166.0, -191.66], [-2164.75, -191.7], [-2164.69, -190.33], [-2159.75, -190.55], [-2159.99, -195.92]], "holes": []}}, {"shape": {"outer": [[-2190.67, 11.35], [-2190.49, 16.65], [-2175.86, 16.15], [-2176.04, 10.86], [-2190.67, 11.35]], "holes": []}}, {"shape": {"outer": [[-1418.42, 57.58], [-1432.06, 58.27], [-1431.98, 59.94], [-1418.34, 59.27], [-1418.42, 57.58]], "holes": []}}, {"shape": {"outer": [[-1434.26, 55.4], [-1418.82, 54.62], [-1418.91, 52.8], [-1434.42, 53.67], [-1434.33, 53.89], [-1434.26, 55.4]], "holes": []}}, {"shape": {"outer": [[-1864.4, 108.02], [-1863.9, 109.84], [-1863.33, 111.06], [-1862.46, 112.0], [-1861.47, 112.59], [-1860.34, 112.89], [-1858.86, 112.86], [-1858.82, 114.99], [-1860.59, 115.02], [-1862.31, 114.57], [-1863.83, 113.66], [-1865.13, 112.25], [-1865.95, 110.51], [-1866.36, 108.21], [-1864.4, 108.02]], "holes": []}}, {"shape": {"outer": [[-1536.04, -205.65], [-1535.94, -201.74], [-1522.91, -202.09], [-1520.11, -203.66], [-1517.85, -205.67], [-1515.81, -208.03], [-1514.65, -210.64], [-1524.78, -210.36], [-1524.66, -205.97], [-1536.04, -205.65]], "holes": []}}, {"shape": {"outer": [[-1536.01, -192.75], [-1521.34, -193.22], [-1521.44, -197.84], [-1536.14, -197.56], [-1536.01, -192.75]], "holes": []}}, {"shape": {"outer": [[-1828.33, -202.45], [-1798.74, -203.66], [-1798.96, -208.95], [-1828.55, -207.74], [-1828.33, -202.45]], "holes": []}}, {"shape": {"outer": [[-1926.47, -85.42], [-1919.99, -85.69], [-1921.11, -112.5], [-1927.59, -112.24], [-1926.47, -85.42]], "holes": []}}, {"shape": {"outer": [[-1954.47, -22.91], [-1954.32, -19.14], [-1930.78, -20.04], [-1930.92, -23.81], [-1954.47, -22.91]], "holes": []}}, {"shape": {"outer": [[-1924.81, -16.11], [-1927.09, -16.02], [-1926.73, -6.55], [-1924.46, -6.63], [-1924.81, -16.11]], "holes": []}}, {"shape": {"outer": [[-1951.91, -7.93], [-1951.23, -7.96], [-1950.22, -8.0], [-1950.63, -17.0], [-1952.32, -16.93], [-1951.91, -7.93]], "holes": []}}, {"shape": {"outer": [[-2396.92, -221.87], [-2380.6, -222.69], [-2381.1, -232.63], [-2397.41, -231.82], [-2396.92, -221.87]], "holes": []}}, {"shape": {"outer": [[-2516.75, 279.54], [-2517.77, 248.27], [-2523.56, 248.45], [-2522.56, 279.73], [-2516.75, 279.54]], "holes": []}}, {"shape": {"outer": [[-2380.35, 0.04], [-2381.13, 5.96], [-2373.07, 5.71], [-2373.15, 3.24], [-2360.14, 2.83], [-2360.25, -0.6], [-2380.35, 0.04]], "holes": []}}, {"shape": {"outer": [[-915.21, -26.67], [-906.28, -18.56], [-909.0, -15.59], [-904.6, -11.59], [-894.27, -22.87], [-892.08, -20.89], [-883.03, -30.78], [-888.29, -35.58], [-893.18, -30.24], [-898.17, -34.77], [-902.47, -31.88], [-906.5, -38.8], [-913.38, -34.8], [-925.2, -34.57], [-925.05, -26.49], [-915.21, -26.67]], "holes": []}}, {"shape": {"outer": [[-963.72, 62.87], [-976.99, 63.3], [-977.29, 53.84], [-978.39, 53.88], [-978.6, 47.13], [-977.51, 47.1], [-977.81, 37.93], [-986.96, 38.24], [-985.79, 74.35], [-963.37, 73.63], [-963.72, 62.87]], "holes": []}}, {"shape": {"outer": [[-963.18, 59.2], [-962.7, 73.78], [-947.9, 73.3], [-935.92, 59.25], [-936.1, 53.57], [-949.57, 54.01], [-949.42, 58.76], [-963.18, 59.2]], "holes": []}}, {"shape": {"outer": [[-1372.43, 57.82], [-1357.81, 57.15], [-1357.88, 55.56], [-1357.94, 54.49], [-1357.99, 53.33], [-1358.17, 49.34], [-1372.79, 50.01], [-1372.56, 55.02], [-1372.43, 57.82]], "holes": []}}, {"shape": {"outer": [[-2875.54, 345.24], [-2847.42, 344.38], [-2847.54, 340.51], [-2875.66, 341.38], [-2875.54, 345.24]], "holes": []}}, {"shape": {"outer": [[-2455.11, -196.47], [-2450.58, -198.51], [-2444.93, -200.46], [-2438.32, -202.4], [-2438.38, -203.6], [-2450.82, -202.95], [-2450.73, -201.42], [-2455.29, -197.06], [-2455.11, -196.47]], "holes": []}}, {"shape": {"outer": [[-2471.37, -191.64], [-2468.17, -190.02], [-2466.83, -189.71], [-2465.68, -189.89], [-2464.67, -190.43], [-2461.67, -192.71], [-2458.43, -194.83], [-2459.88, -196.91], [-2469.77, -194.15], [-2470.85, -193.54], [-2471.2, -192.61], [-2471.37, -191.64]], "holes": []}}, {"shape": {"outer": [[-2517.27, -199.53], [-2454.41, -202.46], [-2456.85, -200.1], [-2457.85, -199.3], [-2458.81, -198.84], [-2470.01, -195.63], [-2471.83, -194.63], [-2473.94, -192.69], [-2478.66, -194.7], [-2483.52, -196.33], [-2490.57, -197.96], [-2497.77, -198.79], [-2517.26, -198.33], [-2517.27, -199.53]], "holes": []}}, {"shape": {"outer": [[-2434.19, -126.38], [-2432.22, -129.07], [-2430.01, -131.41], [-2427.39, -133.55], [-2424.41, -135.37], [-2425.37, -136.93], [-2428.46, -135.04], [-2431.26, -132.76], [-2433.63, -130.24], [-2435.67, -127.45], [-2434.19, -126.38]], "holes": []}}, {"shape": {"outer": [[-995.51, -476.24], [-995.98, -485.22], [-1012.08, -484.38], [-1012.62, -494.67], [-1016.03, -494.48], [-1016.54, -504.09], [-1031.35, -503.31], [-1028.8, -454.77], [-1020.39, -455.21], [-1021.43, -474.87], [-995.51, -476.24]], "holes": []}}, {"shape": {"outer": [[-2452.69, -172.83], [-2461.91, -176.16], [-2461.72, -177.44], [-2457.06, -175.9], [-2453.44, -175.11], [-2451.01, -174.78], [-2450.96, -173.33], [-2451.44, -172.75], [-2452.08, -172.59], [-2452.69, -172.83]], "holes": []}}, {"shape": {"outer": [[-2443.3, -169.53], [-2447.1, -170.79], [-2447.58, -171.12], [-2447.76, -171.62], [-2447.68, -174.58], [-2442.57, -174.83], [-2437.04, -175.87], [-2436.09, -174.15], [-2443.3, -169.53]], "holes": []}}, {"shape": {"outer": [[-2466.53, -173.71], [-2483.96, -154.76], [-2487.07, -151.6], [-2490.4, -148.69], [-2495.86, -144.72], [-2495.21, -142.86], [-2482.94, -148.26], [-2470.89, -154.1], [-2454.48, -162.9], [-2447.33, -167.13], [-2466.53, -173.71]], "holes": []}}, {"shape": {"outer": [[-2883.91, -266.78], [-2879.59, -266.08], [-2878.89, -270.36], [-2883.21, -271.06], [-2883.91, -266.78]], "holes": []}}, {"shape": {"outer": [[-2892.78, -272.6], [-2895.59, -255.46], [-2865.88, -250.65], [-2864.46, -259.29], [-2884.6, -262.56], [-2883.91, -266.78], [-2883.21, -271.06], [-2892.78, -272.6]], "holes": []}}, {"shape": {"outer": [[-2977.72, -179.02], [-2975.56, -192.92], [-2990.65, -195.25], [-2992.82, -181.34], [-2977.72, -179.02]], "holes": []}}, {"shape": {"outer": [[-3043.51, -201.83], [-3055.95, -203.81], [-3056.89, -197.93], [-3044.45, -195.97], [-3043.51, -201.83]], "holes": []}}, {"shape": {"outer": [[-3029.58, -199.79], [-3041.57, -201.69], [-3043.47, -189.76], [-3031.48, -187.86], [-3029.58, -199.79]], "holes": []}}, {"shape": {"outer": [[-2938.13, -183.53], [-2939.4, -174.99], [-2917.4, -171.76], [-2916.13, -180.31], [-2938.13, -183.53]], "holes": []}}, {"shape": {"outer": [[-3150.88, -179.18], [-3154.57, -156.52], [-3123.87, -151.56], [-3123.01, -156.83], [-3117.77, -155.99], [-3115.44, -170.34], [-3120.43, -171.16], [-3119.93, -174.19], [-3150.88, -179.18]], "holes": []}}, {"shape": {"outer": [[476.25, 302.01], [471.55, 307.33], [469.74, 305.74], [467.94, 307.78], [467.62, 307.5], [464.32, 311.24], [462.89, 309.99], [459.92, 313.37], [452.55, 306.91], [449.56, 310.31], [450.85, 311.44], [440.75, 322.9], [424.46, 308.64], [424.26, 305.93], [408.07, 323.65], [410.06, 325.45], [414.31, 329.32], [415.88, 327.6], [430.03, 340.42], [428.75, 341.81], [430.95, 343.8], [433.29, 345.91], [460.36, 316.15], [476.0, 330.28], [479.84, 326.16], [482.67, 322.94], [498.45, 337.19], [501.39, 333.97], [526.98, 305.83], [526.23, 300.74], [529.3, 297.28], [525.51, 293.93], [498.81, 323.95], [479.65, 307.03], [476.27, 310.83], [475.83, 310.79], [475.57, 310.42], [480.06, 305.34], [476.25, 302.01]], "holes": []}}, {"shape": {"outer": [[471.78, 381.29], [473.19, 379.73], [479.19, 385.15], [508.49, 352.98], [505.05, 350.36], [506.05, 349.46], [500.68, 344.82], [500.02, 345.56], [497.75, 343.51], [497.27, 344.05], [494.41, 341.47], [465.56, 373.17], [466.64, 374.15], [465.4, 375.53], [471.78, 381.29]], "holes": []}}, {"shape": {"outer": [[119.81, -2496.8], [111.42, -2498.56], [111.7, -2499.86], [103.27, -2501.63], [98.34, -2478.34], [115.15, -2474.8], [119.81, -2496.8]], "holes": []}}, {"shape": {"outer": [[-3.6, -2552.1], [20.9, -2561.78], [14.66, -2577.46], [-29.28, -2560.08], [-26.15, -2552.24], [-28.22, -2549.5], [11.65, -2519.76], [21.74, -2533.18], [-3.6, -2552.1]], "holes": []}}, {"shape": {"outer": [[24.91, -2493.82], [29.43, -2517.48], [20.79, -2519.12], [20.4, -2517.06], [12.09, -2518.64], [7.97, -2497.03], [24.91, -2493.82]], "holes": []}}, {"shape": {"outer": [[37.92, -2533.84], [36.21, -2525.88], [32.16, -2526.74], [30.32, -2518.17], [102.3, -2502.88], [103.99, -2510.72], [98.48, -2511.9], [100.33, -2520.58], [73.8, -2526.22], [72.8, -2521.59], [57.94, -2524.75], [58.93, -2529.38], [37.92, -2533.84]], "holes": []}}, {"shape": {"outer": [[128.11, -2515.04], [137.89, -2508.75], [195.07, -2596.85], [183.9, -2604.05], [166.66, -2577.47], [164.03, -2582.62], [138.83, -2569.87], [148.56, -2550.78], [128.34, -2540.56], [100.65, -2594.96], [92.66, -2590.92], [92.22, -2591.79], [84.6, -2587.94], [77.88, -2601.15], [33.52, -2578.73], [36.24, -2573.39], [21.55, -2565.96], [24.13, -2560.89], [13.49, -2555.51], [20.85, -2541.05], [31.49, -2546.42], [36.9, -2535.78], [45.66, -2540.21], [49.48, -2532.7], [55.49, -2535.74], [57.73, -2531.33], [60.79, -2532.88], [64.01, -2526.56], [81.69, -2535.49], [78.37, -2542.01], [84.42, -2545.06], [95.72, -2522.87], [105.69, -2527.91], [115.49, -2508.66], [128.11, -2515.04]], "holes": []}}, {"shape": {"outer": [[150.14, -2639.58], [89.4, -2607.25], [93.6, -2599.41], [99.87, -2602.74], [103.96, -2595.12], [127.09, -2607.44], [125.54, -2610.33], [139.03, -2617.51], [140.58, -2614.62], [165.27, -2627.76], [161.07, -2635.6], [154.22, -2631.95], [150.14, -2639.58]], "holes": []}}, {"shape": {"outer": [[238.54, -2659.95], [230.57, -2665.73], [190.16, -2610.45], [198.13, -2604.66], [238.54, -2659.95]], "holes": []}}, {"shape": {"outer": [[181.18, -2670.74], [188.64, -2663.09], [209.43, -2683.25], [214.9, -2677.66], [234.63, -2696.79], [243.06, -2688.15], [253.2, -2680.79], [261.27, -2688.61], [256.2, -2693.8], [260.12, -2697.62], [239.09, -2719.15], [235.17, -2715.35], [231.28, -2719.32], [181.18, -2670.74]], "holes": []}}, {"shape": {"outer": [[169.1, -2637.83], [185.59, -2648.04], [180.37, -2656.41], [175.21, -2653.21], [170.72, -2660.4], [159.39, -2653.38], [169.1, -2637.83]], "holes": []}}, {"shape": {"outer": [[-53.56, -2714.29], [-18.52, -2727.86], [-28.59, -2753.65], [-54.34, -2743.67], [-57.83, -2752.63], [-70.45, -2747.74], [-73.76, -2756.23], [-81.23, -2753.33], [-74.55, -2736.2], [-63.74, -2740.38], [-53.56, -2714.29]], "holes": []}}, {"shape": {"outer": [[-50.01, -2697.13], [-14.48, -2700.86], [-15.81, -2713.45], [-51.34, -2709.72], [-50.01, -2697.13]], "holes": []}}, {"shape": {"outer": [[-19.51, -2645.17], [-21.15, -2632.49], [-26.6, -2633.19], [-29.37, -2634.0], [-31.86, -2629.33], [-34.66, -2630.15], [-41.25, -2633.25], [-46.25, -2636.62], [-43.44, -2640.96], [-44.04, -2641.37], [-48.71, -2645.69], [-52.66, -2650.68], [-55.81, -2656.21], [-57.72, -2661.23], [-45.73, -2665.76], [-44.16, -2661.66], [-41.99, -2657.83], [-39.26, -2654.39], [-36.03, -2651.39], [-32.31, -2648.89], [-28.26, -2646.99], [-23.96, -2645.73], [-19.51, -2645.17]], "holes": []}}, {"shape": {"outer": [[-974.76, -3064.89], [-980.82, -3064.72], [-980.5, -3053.5], [-974.44, -3053.67], [-974.76, -3064.89]], "holes": []}}, {"shape": {"outer": [[-973.5, -3009.18], [-974.21, -3028.74], [-979.76, -3032.99], [-979.0, -3012.12], [-975.06, -3009.1], [-973.5, -3009.18]], "holes": []}}, {"shape": {"outer": [[-945.26, -2977.34], [-900.76, -2980.79], [-901.3, -2987.74], [-906.16, -2987.37], [-908.5, -3017.41], [-931.88, -3015.6], [-931.3, -3008.25], [-947.57, -3006.98], [-945.26, -2977.34]], "holes": []}}, {"shape": {"outer": [[-977.8, -2721.2], [-998.62, -2726.69], [-992.85, -2748.34], [-1003.7, -2751.21], [-1013.27, -2715.28], [-987.42, -2708.45], [-978.25, -2719.48], [-977.8, -2721.2]], "holes": []}}, {"shape": {"outer": [[-949.68, -2768.18], [-966.55, -2773.63], [-968.41, -2767.94], [-951.53, -2762.49], [-949.68, -2768.18]], "holes": []}}, {"shape": {"outer": [[-940.36, -2796.17], [-993.91, -2809.13], [-996.14, -2796.91], [-962.79, -2787.5], [-943.61, -2782.86], [-940.36, -2796.17]], "holes": []}}, {"shape": {"outer": [[-978.66, -2808.74], [-939.32, -2797.94], [-939.12, -2807.07], [-945.97, -2808.94], [-941.36, -2818.63], [-962.61, -2819.5], [-965.45, -2814.77], [-979.0, -2815.32], [-978.66, -2808.74]], "holes": []}}, {"shape": {"outer": [[-917.57, -2838.48], [-934.76, -2846.13], [-939.9, -2834.66], [-932.04, -2831.16], [-938.15, -2817.52], [-928.83, -2813.38], [-917.57, -2838.48]], "holes": []}}, {"shape": {"outer": [[-951.15, -2854.13], [-966.83, -2854.88], [-968.86, -2853.05], [-970.72, -2855.1], [-974.51, -2855.28], [-977.13, -2852.9], [-973.46, -2848.88], [-973.61, -2845.85], [-980.17, -2839.92], [-953.08, -2838.63], [-946.85, -2844.25], [-946.61, -2849.28], [-951.15, -2854.13]], "holes": []}}, {"shape": {"outer": [[-939.49, -2868.96], [-939.99, -2857.33], [-912.5, -2856.17], [-912.0, -2867.79], [-939.49, -2868.96]], "holes": []}}, {"shape": {"outer": [[-955.47, -2862.08], [-947.01, -2861.72], [-946.44, -2875.02], [-954.9, -2875.38], [-955.47, -2862.08]], "holes": []}}, {"shape": {"outer": [[-958.94, -2918.51], [-969.99, -2918.97], [-970.08, -2916.78], [-979.2, -2917.16], [-980.55, -2885.84], [-970.34, -2885.39], [-970.59, -2879.51], [-943.55, -2878.36], [-943.16, -2887.46], [-966.15, -2888.44], [-966.03, -2891.22], [-960.12, -2890.96], [-958.94, -2918.51]], "holes": []}}, {"shape": {"outer": [[1085.12, 1542.12], [1091.37, 1535.09], [1091.98, 1535.64], [1098.21, 1528.64], [1083.14, 1515.34], [1070.66, 1529.36], [1085.12, 1542.12]], "holes": []}}, {"shape": {"outer": [[235.64, 929.19], [248.51, 940.04], [257.97, 928.91], [253.9, 925.48], [261.15, 916.93], [252.35, 909.51], [235.64, 929.19]], "holes": []}}, {"shape": {"outer": [[-935.19, 156.1], [-942.84, 164.48], [-933.37, 173.05], [-925.72, 164.68], [-935.19, 156.1]], "holes": []}}, {"shape": {"outer": [[-759.97, 52.96], [-764.79, 58.31], [-754.67, 67.35], [-749.86, 62.0], [-759.97, 52.96]], "holes": []}}, {"shape": {"outer": [[-794.0, -849.66], [-808.16, -862.45], [-826.05, -842.81], [-811.89, -830.01], [-794.0, -849.66]], "holes": []}}, {"shape": {"outer": [[-763.64, -854.2], [-777.35, -866.77], [-796.79, -845.72], [-783.07, -833.15], [-763.64, -854.2]], "holes": []}}, {"shape": {"outer": [[-528.39, -719.54], [-541.44, -705.06], [-526.73, -691.9], [-513.68, -706.37], [-528.39, -719.54]], "holes": []}}, {"shape": {"outer": [[-519.54, -738.83], [-528.46, -746.81], [-541.44, -732.42], [-532.52, -724.44], [-519.54, -738.83]], "holes": []}}, {"shape": {"outer": [[-452.69, -803.14], [-444.8, -811.37], [-459.32, -825.19], [-467.21, -816.96], [-452.69, -803.14]], "holes": []}}, {"shape": {"outer": [[-327.58, -836.76], [-319.35, -829.14], [-332.06, -815.5], [-322.45, -806.6], [-302.6, -827.91], [-312.0, -836.6], [-301.31, -848.06], [-309.77, -855.89], [-327.58, -836.76]], "holes": []}}, {"shape": {"outer": [[-337.79, -844.03], [-314.03, -866.6], [-327.14, -880.32], [-350.9, -857.75], [-346.16, -852.79], [-337.79, -844.03]], "holes": []}}, {"shape": {"outer": [[-377.93, -883.67], [-367.83, -873.93], [-372.87, -867.61], [-393.93, -841.16], [-390.03, -837.72], [-370.5, -860.28], [-366.59, -856.75], [-370.67, -852.17], [-363.02, -845.33], [-377.18, -826.29], [-375.03, -824.34], [-358.96, -844.67], [-346.16, -852.79], [-350.9, -857.75], [-364.36, -867.19], [-351.69, -881.11], [-367.37, -895.28], [-377.93, -883.67]], "holes": []}}, {"shape": {"outer": [[-489.99, -971.03], [-474.99, -957.41], [-461.3, -972.36], [-480.72, -981.15], [-489.99, -971.03]], "holes": []}}, {"shape": {"outer": [[-558.94, -942.3], [-565.8, -948.74], [-567.26, -947.2], [-574.44, -953.94], [-582.6, -945.32], [-576.39, -939.48], [-581.93, -933.62], [-574.1, -926.28], [-558.94, -942.3]], "holes": []}}, {"shape": {"outer": [[-517.71, -697.68], [-525.75, -688.9], [-468.56, -636.9], [-460.52, -645.68], [-482.56, -665.72], [-486.13, -661.82], [-487.73, -663.28], [-484.16, -667.18], [-517.71, -697.68]], "holes": []}}, {"shape": {"outer": [[-732.5, -781.88], [-719.5, -795.56], [-728.35, -803.92], [-730.75, -801.4], [-736.67, -806.97], [-747.27, -795.82], [-732.5, -781.88]], "holes": []}}, {"shape": {"outer": [[-686.99, -741.54], [-678.66, -750.63], [-692.6, -763.3], [-694.37, -761.36], [-707.28, -773.1], [-712.82, -767.05], [-700.68, -756.02], [-701.7, -754.91], [-686.99, -741.54]], "holes": []}}, {"shape": {"outer": [[-729.73, -891.62], [-720.21, -883.02], [-715.66, -888.02], [-711.66, -884.41], [-705.96, -890.69], [-709.97, -894.3], [-702.54, -902.45], [-712.07, -911.05], [-729.73, -891.62]], "holes": []}}, {"shape": {"outer": [[-676.15, -693.01], [-664.1, -706.15], [-671.81, -713.16], [-683.85, -700.01], [-676.15, -693.01]], "holes": []}}, {"shape": {"outer": [[-629.76, -699.06], [-614.86, -714.86], [-623.13, -722.6], [-638.04, -706.81], [-629.76, -699.06]], "holes": []}}, {"shape": {"outer": [[-663.98, -677.43], [-643.73, -699.54], [-657.48, -712.04], [-675.88, -691.96], [-669.06, -685.76], [-670.92, -683.73], [-663.98, -677.43]], "holes": []}}, {"shape": {"outer": [[-663.86, -677.1], [-656.54, -670.45], [-654.74, -672.42], [-648.39, -666.64], [-643.57, -671.92], [-648.82, -676.7], [-635.32, -691.44], [-643.73, -699.08], [-663.86, -677.1]], "holes": []}}, {"shape": {"outer": [[-641.6, -655.88], [-634.57, -663.4], [-642.74, -670.96], [-649.76, -663.44], [-641.6, -655.88]], "holes": []}}, {"shape": {"outer": [[-497.45, -567.86], [-486.23, -579.87], [-491.55, -584.8], [-487.36, -589.29], [-495.05, -596.41], [-510.45, -579.92], [-497.45, -567.86]], "holes": []}}, {"shape": {"outer": [[-681.4, -432.61], [-673.43, -441.33], [-718.28, -482.05], [-726.25, -473.32], [-681.4, -432.61]], "holes": []}}, {"shape": {"outer": [[-758.78, -438.5], [-733.7, -465.52], [-741.16, -472.4], [-749.72, -480.29], [-774.8, -453.27], [-758.78, -438.5]], "holes": []}}, {"shape": {"outer": [[-745.5, -424.9], [-732.36, -439.05], [-745.14, -450.83], [-757.37, -437.65], [-751.29, -432.06], [-752.2, -431.08], [-745.5, -424.9]], "holes": []}}, {"shape": {"outer": [[-740.81, -427.38], [-727.37, -414.98], [-716.96, -426.2], [-730.39, -438.59], [-740.81, -427.38]], "holes": []}}, {"shape": {"outer": [[-664.42, -375.65], [-672.51, -383.6], [-684.78, -371.2], [-676.7, -363.25], [-664.42, -375.65]], "holes": []}}, {"shape": {"outer": [[-641.78, -358.45], [-620.42, -380.01], [-625.33, -384.83], [-638.71, -371.32], [-650.99, -383.38], [-658.96, -375.34], [-641.78, -358.45]], "holes": []}}, {"shape": {"outer": [[-813.93, -378.09], [-805.88, -386.7], [-832.98, -411.84], [-841.03, -403.22], [-813.93, -378.09]], "holes": []}}, {"shape": {"outer": [[-492.59, -563.7], [-485.41, -557.29], [-464.75, -580.23], [-471.92, -586.64], [-492.59, -563.7]], "holes": []}}, {"shape": {"outer": [[-597.17, -629.94], [-612.4, -643.76], [-619.11, -636.44], [-603.87, -622.61], [-597.17, -629.94]], "holes": []}}, {"shape": {"outer": [[-3147.0, -1823.81], [-3151.72, -1814.96], [-3154.5, -1811.01], [-3157.96, -1807.64], [-3162.0, -1804.97], [-3166.46, -1803.09], [-3170.56, -1802.15], [-3174.76, -1801.89], [-3178.96, -1802.3], [-3183.02, -1803.37], [-3190.13, -1807.15], [-3198.61, -1813.27], [-3205.42, -1803.91], [-3196.29, -1797.32], [-3187.3, -1792.55], [-3181.03, -1790.88], [-3175.39, -1790.33], [-3175.08, -1784.18], [-3168.0, -1784.63], [-3160.99, -1786.24], [-3153.59, -1789.36], [-3146.8, -1793.85], [-3140.95, -1799.52], [-3136.59, -1805.71], [-3133.97, -1810.62], [-3132.71, -1814.55], [-3137.5, -1821.3], [-3147.0, -1823.81]], "holes": []}}, {"shape": {"outer": [[-1293.44, -2134.55], [-1295.97, -2142.31], [-1306.78, -2138.83], [-1306.92, -2138.58], [-1307.52, -2138.92], [-1327.69, -2102.99], [-1313.81, -2095.24], [-1303.61, -2113.4], [-1299.59, -2111.14], [-1292.85, -2123.15], [-1292.1, -2123.4], [-1281.06, -2123.64], [-1281.32, -2134.84], [-1293.44, -2134.55]], "holes": []}}, {"shape": {"outer": [[-399.97, -2472.11], [-402.22, -2471.86], [-404.6, -2472.02], [-406.69, -2473.08], [-408.34, -2474.74], [-409.38, -2476.83], [-409.69, -2479.15], [-409.25, -2481.44], [-408.11, -2483.47], [-406.49, -2484.97], [-404.49, -2485.92], [-402.31, -2486.22], [-400.13, -2485.86], [-398.16, -2484.86], [-396.58, -2483.32], [-395.53, -2481.38], [-394.59, -2478.74], [-393.38, -2476.6], [-392.96, -2475.56], [-392.94, -2474.43], [-393.34, -2473.39], [-394.05, -2472.59], [-394.98, -2472.1], [-396.03, -2471.95], [-398.06, -2472.17], [-399.97, -2472.11]], "holes": []}}, {"shape": {"outer": [[-20.48, 315.43], [-40.84, 337.44], [-29.5, 347.85], [-22.06, 339.82], [-26.93, 335.34], [-20.45, 328.33], [-15.58, 332.81], [-9.14, 325.83], [-20.48, 315.43]], "holes": []}}, {"shape": {"outer": [[-1.83, 290.35], [-6.1, 294.96], [-4.28, 296.63], [-7.69, 300.32], [-5.83, 302.02], [-17.68, 314.83], [-7.76, 323.94], [11.76, 302.83], [-1.83, 290.35]], "holes": []}}, {"shape": {"outer": [[0.22, 291.04], [6.92, 297.18], [19.9, 283.13], [27.65, 290.24], [32.16, 285.37], [17.72, 272.11], [0.22, 291.04]], "holes": []}}, {"shape": {"outer": [[45.98, 266.02], [31.09, 252.98], [28.12, 256.34], [32.34, 260.05], [24.72, 268.68], [22.45, 266.68], [18.75, 270.88], [31.68, 282.21], [45.98, 266.02]], "holes": []}}, {"shape": {"outer": [[194.08, 373.57], [181.15, 387.1], [198.13, 403.22], [211.07, 389.68], [194.08, 373.57]], "holes": []}}, {"shape": {"outer": [[161.58, 385.44], [172.72, 395.92], [180.49, 387.73], [169.36, 377.24], [161.58, 385.44]], "holes": []}}, {"shape": {"outer": [[377.29, 565.0], [399.83, 584.88], [407.53, 576.23], [403.68, 572.83], [406.09, 570.12], [387.39, 553.62], [377.29, 565.0]], "holes": []}}, {"shape": {"outer": [[329.79, 535.98], [337.96, 526.64], [327.0, 517.12], [318.83, 526.46], [329.79, 535.98]], "holes": []}}, {"shape": {"outer": [[278.74, 613.39], [267.05, 602.67], [254.4, 616.34], [258.48, 620.08], [261.41, 616.92], [263.26, 618.61], [260.33, 621.79], [270.71, 631.32], [275.53, 626.1], [270.91, 621.86], [278.74, 613.39]], "holes": []}}, {"shape": {"outer": [[230.71, 589.84], [245.37, 603.58], [250.95, 597.68], [255.06, 601.52], [258.89, 595.55], [239.55, 580.46], [230.71, 589.84]], "holes": []}}, {"shape": {"outer": [[163.58, 532.76], [180.71, 548.13], [191.42, 536.28], [174.3, 520.91], [163.58, 532.76]], "holes": []}}, {"shape": {"outer": [[253.14, 566.06], [243.3, 576.41], [256.63, 589.0], [266.47, 578.65], [253.14, 566.06]], "holes": []}}, {"shape": {"outer": [[200.04, 537.36], [222.8, 512.47], [213.38, 503.92], [190.62, 528.8], [200.04, 537.36]], "holes": []}}, {"shape": {"outer": [[447.66, 112.75], [454.03, 105.62], [458.5, 109.58], [465.35, 101.91], [451.75, 89.84], [438.52, 104.64], [447.66, 112.75]], "holes": []}}, {"shape": {"outer": [[149.16, 423.18], [141.09, 432.13], [153.1, 442.88], [161.18, 433.93], [149.16, 423.18]], "holes": []}}, {"shape": {"outer": [[179.98, 417.51], [165.13, 404.24], [150.66, 420.31], [163.31, 431.63], [170.46, 423.69], [172.65, 425.65], [179.98, 417.51]], "holes": []}}, {"shape": {"outer": [[53.87, 409.28], [45.28, 401.72], [34.08, 414.37], [42.66, 421.93], [53.87, 409.28]], "holes": []}}, {"shape": {"outer": [[-8.18, 326.1], [-20.78, 339.71], [-6.9, 352.46], [-0.95, 346.03], [0.19, 347.09], [6.84, 339.9], [-8.18, 326.1]], "holes": []}}, {"shape": {"outer": [[-657.54, 172.32], [-670.5, 160.54], [-681.57, 172.62], [-668.61, 184.4], [-657.54, 172.32]], "holes": []}}, {"shape": {"outer": [[-828.46, 28.55], [-822.26, 21.3], [-837.52, 8.35], [-843.72, 15.61], [-828.46, 28.55]], "holes": []}}, {"shape": {"outer": [[-804.95, 82.83], [-789.96, 67.02], [-772.77, 83.2], [-764.68, 74.66], [-791.28, 49.61], [-803.57, 62.57], [-798.73, 67.12], [-809.53, 78.51], [-804.95, 82.83]], "holes": []}}, {"shape": {"outer": [[-636.99, 202.0], [-625.41, 189.11], [-636.9, 178.85], [-648.49, 191.74], [-636.99, 202.0]], "holes": []}}, {"shape": {"outer": [[-696.67, 300.33], [-713.48, 285.46], [-716.96, 289.37], [-718.34, 288.16], [-730.19, 301.44], [-725.34, 305.74], [-715.4, 294.57], [-702.05, 306.37], [-696.67, 300.33]], "holes": []}}, {"shape": {"outer": [[1654.92, 789.71], [1652.46, 787.55], [1652.13, 787.01], [1652.11, 786.32], [1653.3, 784.88], [1654.9, 783.55], [1656.73, 782.53], [1659.2, 781.18], [1661.77, 778.97], [1663.53, 780.68], [1654.92, 789.71]], "holes": []}}, {"shape": {"outer": [[1792.47, 1068.84], [1778.16, 1055.95], [1769.49, 1065.49], [1783.8, 1078.39], [1792.47, 1068.84]], "holes": []}}, {"shape": {"outer": [[1518.26, 2136.12], [1536.92, 2132.34], [1510.81, 2004.4], [1500.81, 2006.44], [1499.52, 2000.1], [1490.86, 2001.85], [1518.26, 2136.12]], "holes": []}}, {"shape": {"outer": [[1457.4, 782.59], [1470.4, 794.22], [1479.78, 783.81], [1473.63, 778.3], [1477.22, 774.31], [1470.38, 768.19], [1457.4, 782.59]], "holes": []}}, {"shape": {"outer": [[-1285.5, -2326.72], [-1294.47, -2310.89], [-1275.16, -2300.04], [-1272.5, -2304.73], [-1269.36, -2302.96], [-1272.54, -2297.36], [-1261.26, -2291.02], [-1254.48, -2303.01], [-1259.43, -2305.79], [-1256.73, -2310.54], [-1285.5, -2326.72]], "holes": []}}, {"shape": {"outer": [[-1330.94, -2275.65], [-1332.24, -2300.12], [-1336.68, -2299.88], [-1336.79, -2302.0], [-1321.34, -2302.82], [-1321.99, -2315.08], [-1356.09, -2313.28], [-1355.45, -2301.3], [-1362.51, -2300.93], [-1361.08, -2274.04], [-1330.94, -2275.65]], "holes": []}}, {"shape": {"outer": [[-1250.55, -2195.65], [-1235.74, -2188.02], [-1229.86, -2199.33], [-1244.67, -2206.97], [-1250.55, -2195.65]], "holes": []}}, {"shape": {"outer": [[-1495.84, -1697.11], [-1465.66, -1697.82], [-1465.85, -1706.31], [-1496.03, -1705.62], [-1495.84, -1697.11]], "holes": []}}, {"shape": {"outer": [[-1491.19, -1623.79], [-1472.85, -1624.31], [-1474.02, -1665.31], [-1492.29, -1664.79], [-1491.93, -1652.41], [-1482.93, -1652.66], [-1482.51, -1638.01], [-1491.59, -1637.75], [-1491.19, -1623.79]], "holes": []}}, {"shape": {"outer": [[-1490.19, -1503.96], [-1468.65, -1504.29], [-1469.09, -1532.91], [-1473.69, -1532.83], [-1473.79, -1539.36], [-1491.52, -1539.08], [-1491.2, -1518.43], [-1485.21, -1518.52], [-1485.12, -1512.37], [-1490.33, -1512.3], [-1490.19, -1503.96]], "holes": []}}, {"shape": {"outer": [[-1493.48, -1599.43], [-1492.76, -1577.99], [-1481.86, -1586.92], [-1481.87, -1587.3], [-1471.15, -1587.66], [-1471.56, -1599.71], [-1493.48, -1599.43]], "holes": []}}, {"shape": {"outer": [[-1459.67, -262.99], [-1460.76, -264.92], [-1461.52, -267.59], [-1463.03, -296.33], [-1462.93, -299.54], [-1460.56, -299.58], [-1458.76, -266.32], [-1458.74, -263.1], [-1459.67, -262.99]], "holes": []}}, {"shape": {"outer": [[-1370.92, -329.25], [-1370.74, -326.39], [-1356.37, -327.03], [-1356.51, -328.84], [-1356.99, -329.86], [-1370.92, -329.25]], "holes": []}}, {"shape": {"outer": [[-694.99, 138.87], [-703.01, 147.18], [-694.26, 155.55], [-696.86, 158.26], [-690.81, 164.04], [-680.2, 153.04], [-694.99, 138.87]], "holes": []}}, {"shape": {"outer": [[-788.67, 256.16], [-770.28, 272.5], [-763.45, 264.88], [-781.84, 248.53], [-788.67, 256.16]], "holes": []}}, {"shape": {"outer": [[1606.34, 783.8], [1600.09, 790.8], [1621.57, 809.8], [1627.81, 802.8], [1606.34, 783.8]], "holes": []}}, {"shape": {"outer": [[1605.68, 783.26], [1597.73, 776.04], [1589.96, 784.54], [1597.91, 791.77], [1605.68, 783.26]], "holes": []}}, {"shape": {"outer": [[1571.02, 803.45], [1595.74, 776.33], [1588.87, 770.13], [1564.15, 797.24], [1571.02, 803.45]], "holes": []}}, {"shape": {"outer": [[1341.88, 549.31], [1335.68, 556.33], [1342.38, 562.2], [1341.62, 563.06], [1348.27, 568.88], [1355.23, 561.0], [1341.88, 549.31]], "holes": []}}, {"shape": {"outer": [[1311.3, 524.08], [1303.51, 532.62], [1315.22, 543.24], [1323.02, 534.7], [1311.3, 524.08]], "holes": []}}, {"shape": {"outer": [[1276.25, 505.53], [1287.57, 516.29], [1297.35, 506.07], [1286.02, 495.31], [1276.25, 505.53]], "holes": []}}, {"shape": {"outer": [[1205.24, 444.12], [1221.5, 458.18], [1227.96, 450.78], [1211.71, 436.7], [1205.24, 444.12]], "holes": []}}, {"shape": {"outer": [[1073.47, 303.1], [1065.42, 312.19], [1072.9, 318.75], [1071.76, 320.05], [1078.42, 325.9], [1087.6, 315.49], [1073.47, 303.1]], "holes": []}}, {"shape": {"outer": [[967.14, 256.1], [976.42, 245.92], [969.36, 239.53], [960.08, 249.71], [967.14, 256.1]], "holes": []}}, {"shape": {"outer": [[-940.01, -869.05], [-926.26, -856.47], [-924.87, -857.74], [-924.86, -858.62], [-924.73, -860.44], [-925.51, -862.89], [-926.99, -865.0], [-935.17, -872.14], [-939.99, -869.65], [-940.12, -869.36], [-940.01, -869.05]], "holes": []}}, {"shape": {"outer": [[-950.68, -879.02], [-947.81, -876.18], [-947.18, -875.81], [-946.49, -875.87], [-942.68, -877.99], [-942.32, -878.4], [-942.46, -878.9], [-945.75, -881.67], [-948.38, -880.69], [-950.68, -879.02]], "holes": []}}, {"shape": {"outer": [[-955.15, -882.46], [-965.02, -891.31], [-973.75, -900.26], [-983.1, -911.34], [-986.44, -915.35], [-985.37, -916.55], [-950.02, -885.37], [-951.89, -883.76], [-955.15, -882.46]], "holes": []}}, {"shape": {"outer": [[-1481.59, -489.02], [-1481.02, -484.81], [-1479.68, -454.93], [-1478.4, -437.19], [-1477.63, -419.6], [-1476.52, -406.84], [-1474.53, -390.73], [-1478.79, -390.47], [-1480.64, -399.97], [-1482.43, -411.13], [-1483.68, -424.93], [-1483.93, -434.77], [-1482.81, -450.92], [-1482.59, -458.46], [-1483.92, -485.53], [-1483.81, -488.98], [-1481.59, -489.02]], "holes": []}}, {"shape": {"outer": [[-1614.68, -726.35], [-1587.8, -727.48], [-1587.31, -715.79], [-1576.26, -716.25], [-1577.24, -739.33], [-1615.16, -737.74], [-1614.68, -726.35]], "holes": []}}, {"shape": {"outer": [[-1498.32, -739.58], [-1496.27, -699.83], [-1496.62, -696.72], [-1497.64, -693.76], [-1498.88, -691.63], [-1500.47, -689.73], [-1502.03, -689.87], [-1503.93, -731.31], [-1503.89, -733.3], [-1503.55, -735.26], [-1502.8, -737.48], [-1501.68, -739.52], [-1498.32, -739.58]], "holes": []}}, {"shape": {"outer": [[-1483.72, -753.72], [-1484.59, -770.96], [-1479.49, -771.22], [-1476.37, -771.2], [-1474.09, -770.82], [-1471.88, -769.96], [-1469.73, -768.14], [-1468.82, -766.76], [-1468.19, -764.78], [-1467.9, -762.76], [-1468.16, -760.06], [-1469.21, -757.95], [-1470.9, -755.98], [-1473.23, -754.68], [-1476.41, -754.06], [-1479.99, -753.79], [-1483.72, -753.72]], "holes": []}}, {"shape": {"outer": [[-1502.18, -853.84], [-1500.59, -826.27], [-1500.27, -776.08], [-1499.77, -763.75], [-1500.22, -760.09], [-1500.87, -758.22], [-1503.95, -758.07], [-1504.95, -760.28], [-1505.62, -763.04], [-1506.48, -782.56], [-1506.25, -787.68], [-1504.43, -802.55], [-1503.67, -808.61], [-1503.15, -818.65], [-1503.22, -826.92], [-1504.61, -853.7], [-1502.18, -853.84]], "holes": []}}, {"shape": {"outer": [[-1496.73, -1231.0], [-1492.41, -1141.29], [-1492.38, -1118.28], [-1493.07, -1111.72], [-1496.14, -1095.25], [-1496.71, -1090.11], [-1497.44, -1069.78], [-1500.01, -1069.88], [-1500.46, -1112.11], [-1499.54, -1153.93], [-1500.11, -1181.0], [-1498.37, -1195.81], [-1497.94, -1201.7], [-1497.77, -1207.34], [-1498.45, -1230.93], [-1496.73, -1231.0]], "holes": []}}, {"shape": {"outer": [[-1500.85, -1348.14], [-1499.9, -1328.18], [-1499.7, -1322.33], [-1499.97, -1316.48], [-1500.75, -1310.33], [-1501.01, -1306.29], [-1501.23, -1302.62], [-1501.56, -1293.78], [-1500.75, -1267.58], [-1502.28, -1267.54], [-1503.6, -1310.24], [-1501.99, -1324.91], [-1501.92, -1327.45], [-1502.67, -1348.01], [-1500.85, -1348.14]], "holes": []}}, {"shape": {"outer": [[-1049.6, -966.73], [-1117.14, -1028.03], [-1119.77, -1031.06], [-1121.73, -1034.76], [-1120.62, -1036.07], [-1116.65, -1034.4], [-1114.45, -1033.0], [-1089.76, -1010.74], [-1083.79, -1004.32], [-1079.19, -998.52], [-1075.23, -993.54], [-1071.03, -989.21], [-1047.07, -967.51], [-1048.08, -966.85], [-1049.6, -966.73]], "holes": []}}, {"shape": {"outer": [[-1378.06, -1264.24], [-1467.49, -1345.51], [-1472.1, -1349.75], [-1477.07, -1353.57], [-1481.27, -1356.28], [-1485.66, -1358.68], [-1485.72, -1361.49], [-1481.14, -1360.04], [-1476.71, -1358.2], [-1470.68, -1354.91], [-1465.1, -1350.89], [-1460.08, -1346.21], [-1382.72, -1275.98], [-1381.87, -1275.02], [-1381.46, -1274.08], [-1380.49, -1269.99], [-1379.23, -1267.28], [-1377.5, -1264.83], [-1378.06, -1264.24]], "holes": []}}, {"shape": {"outer": [[-1273.39, -1169.71], [-1335.77, -1226.35], [-1370.23, -1263.94], [-1369.78, -1264.52], [-1269.1, -1173.05], [-1273.39, -1169.71]], "holes": []}}, {"shape": {"outer": [[-1137.22, -1048.72], [-1139.83, -1049.63], [-1142.53, -1051.08], [-1270.76, -1166.95], [-1266.22, -1170.33], [-1139.66, -1055.84], [-1137.23, -1052.23], [-1136.15, -1049.82], [-1137.22, -1048.72]], "holes": []}}, {"shape": {"outer": [[830.68, 570.48], [823.52, 564.01], [816.34, 557.53], [782.69, 593.85], [797.27, 606.69], [830.68, 570.48]], "holes": []}}, {"shape": {"outer": [[2997.61, 2800.89], [3011.78, 2788.09], [3008.1, 2784.04], [3009.23, 2783.01], [2995.93, 2768.41], [3000.0, 2764.72], [2992.08, 2756.03], [2987.07, 2760.56], [2980.33, 2753.15], [2961.89, 2769.81], [2989.94, 2800.64], [2994.02, 2796.95], [2997.61, 2800.89]], "holes": []}}, {"shape": {"outer": [[537.41, 5.28], [532.16, 3.0], [526.21, 0.34], [519.76, -3.2], [513.11, -7.42], [507.9, -11.62], [501.06, -17.39], [502.19, -18.69], [507.53, -15.32], [517.27, -9.51], [525.37, -4.82], [529.33, -2.57], [533.19, -0.99], [539.97, 1.13], [545.26, 2.49], [545.69, 8.09], [543.17, 7.32], [537.41, 5.28]], "holes": []}}, {"shape": {"outer": [[593.73, 15.41], [600.1, 18.49], [684.45, 41.42], [693.6, 44.23], [702.44, 47.88], [709.74, 51.64], [716.7, 55.98], [723.3, 60.85], [734.22, 70.44], [765.19, 98.79], [766.32, 97.56], [744.75, 77.58], [738.85, 71.81], [732.76, 64.98], [728.83, 60.5], [724.59, 56.31], [719.0, 51.59], [713.02, 47.37], [706.7, 43.68], [700.08, 40.54], [687.84, 36.75], [652.35, 26.81], [629.73, 21.08], [612.16, 16.13], [601.75, 13.22], [598.51, 12.61], [594.47, 12.39], [593.73, 15.41]], "holes": []}}, {"shape": {"outer": [[1812.31, 1679.53], [1806.8, 1668.21], [1778.17, 1684.06], [1769.05, 1689.99], [1760.93, 1696.38], [1749.2, 1705.71], [1726.14, 1726.35], [1729.09, 1729.96], [1725.25, 1734.38], [1730.47, 1739.54], [1755.08, 1717.02], [1776.52, 1700.39], [1796.22, 1687.87], [1806.83, 1682.27], [1812.31, 1679.53]], "holes": []}}, {"shape": {"outer": [[1602.66, 2081.78], [1581.9, 2085.94], [1589.45, 2123.34], [1594.14, 2122.4], [1596.7, 2123.29], [1615.11, 2119.61], [1617.59, 2116.25], [1622.46, 2115.73], [1620.49, 2097.08], [1615.42, 2097.61], [1614.13, 2085.38], [1619.2, 2084.85], [1613.23, 2028.44], [1608.17, 2028.97], [1606.79, 2015.94], [1611.86, 2015.41], [1608.88, 1987.2], [1592.84, 1988.88], [1595.63, 2015.22], [1599.69, 2014.8], [1600.29, 2020.49], [1596.23, 2020.92], [1598.35, 2041.01], [1602.46, 2040.58], [1603.06, 2046.22], [1598.95, 2046.65], [1602.17, 2077.15], [1606.34, 2076.72], [1606.7, 2080.08], [1602.53, 2080.52], [1602.66, 2081.78]], "holes": []}}, {"shape": {"outer": [[-2425.36, 227.18], [-2426.34, 200.32], [-2423.86, 200.23], [-2422.89, 227.1], [-2425.36, 227.18]], "holes": []}}, {"shape": {"outer": [[-2410.76, 253.86], [-2337.83, 251.31], [-2337.93, 248.35], [-2410.87, 250.92], [-2410.76, 253.86]], "holes": []}}, {"shape": {"outer": [[-2329.65, 255.4], [-2321.98, 264.81], [-2316.76, 269.11], [-2315.31, 267.28], [-2320.15, 263.21], [-2328.05, 254.04], [-2329.65, 255.4]], "holes": []}}, {"shape": {"outer": [[-2290.47, 264.97], [-2296.45, 268.65], [-2301.96, 270.67], [-2302.83, 268.06], [-2297.7, 266.18], [-2292.32, 262.69], [-2290.47, 264.97]], "holes": []}}, {"shape": {"outer": [[2832.74, 1834.5], [2835.92, 1820.93], [2811.9, 1815.35], [2808.72, 1828.92], [2832.74, 1834.5]], "holes": []}}, {"shape": {"outer": [[2784.94, 1808.63], [2782.45, 1818.57], [2797.35, 1822.27], [2794.91, 1832.04], [2804.88, 1834.5], [2809.8, 1814.79], [2784.94, 1808.63]], "holes": []}}, {"shape": {"outer": [[2693.05, 1841.03], [2694.62, 1868.04], [2704.92, 1867.44], [2703.6, 1844.92], [2694.08, 1840.97], [2693.05, 1841.03]], "holes": []}}, {"shape": {"outer": [[2817.82, -3110.02], [2796.15, -3110.52], [2795.95, -3102.08], [2817.63, -3101.59], [2817.82, -3110.02]], "holes": []}}, {"shape": {"outer": [[-3140.2, -1698.12], [-3126.71, -1713.62], [-3141.89, -1725.61], [-3152.33, -1713.25], [-3147.61, -1704.06], [-3140.2, -1698.12]], "holes": []}}, {"shape": {"outer": [[-1576.43, -357.85], [-1572.35, -358.06], [-1572.44, -359.97], [-1576.52, -359.77], [-1576.43, -357.85]], "holes": []}}, {"shape": {"outer": [[-1562.14, -344.26], [-1562.52, -355.64], [-1561.12, -358.24], [-1558.63, -360.39], [-1556.17, -360.91], [-1553.77, -361.1], [-1551.99, -358.78], [-1555.12, -356.13], [-1556.95, -353.93], [-1558.38, -351.34], [-1559.42, -347.93], [-1559.63, -345.73], [-1559.57, -344.39], [-1562.14, -344.26]], "holes": []}}, {"shape": {"outer": [[-1582.75, -350.15], [-1578.49, -354.79], [-1576.26, -354.9], [-1576.43, -357.85], [-1576.52, -359.77], [-1590.76, -359.08], [-1590.32, -349.8], [-1582.75, -350.15]], "holes": []}}, {"shape": {"outer": [[-2676.03, -804.27], [-2675.59, -790.99], [-2666.11, -791.2], [-2666.46, -804.59], [-2676.03, -804.27]], "holes": []}}, {"shape": {"outer": [[-1226.35, -590.29], [-1226.53, -594.78], [-1226.22, -595.37], [-1226.56, -599.65], [-1226.63, -602.65], [-1227.46, -602.9], [-1228.12, -603.58], [-1228.29, -607.8], [-1265.13, -605.95], [-1265.06, -600.9], [-1279.74, -600.03], [-1279.67, -598.52], [-1280.3, -597.97], [-1282.07, -597.79], [-1281.92, -595.73], [-1281.8, -594.04], [-1281.21, -593.18], [-1279.62, -592.76], [-1279.13, -591.84], [-1278.9, -587.73], [-1249.85, -588.8], [-1226.35, -590.29]], "holes": []}}, {"shape": {"outer": [[-1267.39, -805.04], [-1280.12, -799.67], [-1285.41, -810.97], [-1289.68, -819.02], [-1294.54, -830.07], [-1295.4, -829.76], [-1298.16, -836.14], [-1297.19, -836.6], [-1297.03, -836.93], [-1297.06, -837.37], [-1299.31, -842.51], [-1284.31, -849.16], [-1282.24, -844.59], [-1281.68, -844.34], [-1280.9, -844.43], [-1281.08, -835.26], [-1272.8, -816.39], [-1267.39, -805.04]], "holes": []}}, {"shape": {"outer": [[-1521.14, -330.34], [-1523.85, -330.06], [-1526.5, -330.73], [-1528.76, -332.26], [-1530.38, -334.45], [-1531.13, -337.07], [-1530.96, -339.78], [-1529.87, -342.28], [-1528.18, -344.11], [-1526.02, -345.32], [-1523.58, -345.81], [-1521.1, -345.5], [-1518.85, -344.45], [-1517.03, -342.76], [-1515.83, -340.6], [-1515.37, -338.15], [-1515.69, -335.7], [-1516.76, -333.46], [-1518.67, -331.51], [-1521.14, -330.34]], "holes": []}}, {"shape": {"outer": [[-1866.8, 106.22], [-1865.09, 105.96], [-1866.03, 100.05], [-1867.84, 100.48], [-1866.8, 106.22]], "holes": []}}, {"shape": {"outer": [[-1196.71, -471.71], [-1197.41, -487.32], [-1200.52, -489.84], [-1200.82, -496.52], [-1182.99, -497.31], [-1182.26, -480.92], [-1183.65, -480.85], [-1186.41, -480.73], [-1186.03, -472.18], [-1196.71, -471.71]], "holes": []}}, {"shape": {"outer": [[1504.55, 1586.01], [1485.79, 1606.74], [1496.73, 1616.56], [1499.88, 1613.09], [1535.88, 1645.42], [1544.53, 1656.83], [1558.61, 1641.28], [1529.61, 1615.24], [1532.13, 1612.46], [1527.71, 1608.49], [1528.55, 1607.57], [1504.55, 1586.01]], "holes": []}}, {"shape": {"outer": [[-2167.82, -356.29], [-2168.17, -371.65], [-2171.93, -371.57], [-2171.58, -356.21], [-2167.82, -356.29]], "holes": []}}, {"shape": {"outer": [[2014.57, 1262.43], [2035.16, 1245.2], [2028.63, 1237.44], [2008.03, 1254.68], [2014.57, 1262.43]], "holes": []}}, {"shape": {"outer": [[1993.83, 1269.12], [1987.54, 1262.6], [1968.29, 1281.05], [1974.57, 1287.56], [1993.83, 1269.12]], "holes": []}}, {"shape": {"outer": [[1765.08, 1010.47], [1755.8, 1002.53], [1749.66, 1009.29], [1750.54, 1010.09], [1748.0, 1012.89], [1746.95, 1011.94], [1742.42, 1016.95], [1736.48, 1011.61], [1728.61, 1020.35], [1743.92, 1033.7], [1765.08, 1010.47]], "holes": []}}, {"shape": {"outer": [[-41.16, -393.33], [-13.57, -424.36], [-16.07, -426.58], [-42.04, -397.38], [-41.16, -393.33]], "holes": []}}, {"shape": {"outer": [[-35.83, -413.1], [-4.27, -447.65], [-6.03, -449.24], [-37.58, -414.68], [-35.83, -413.1]], "holes": []}}, {"shape": {"outer": [[-1704.38, -983.97], [-1721.82, -983.78], [-1721.52, -955.64], [-1719.93, -955.65], [-1719.68, -931.98], [-1703.83, -932.16], [-1704.38, -983.97]], "holes": []}}, {"shape": {"outer": [[2494.67, 2701.12], [2536.87, 2658.52], [2534.71, 2653.33], [2518.32, 2637.2], [2474.57, 2681.34], [2494.67, 2701.12]], "holes": []}}, {"shape": {"outer": [[1608.48, 1610.88], [1616.75, 1609.97], [1625.16, 1599.22], [1619.33, 1547.09], [1626.33, 1544.65], [1618.81, 1477.33], [1597.71, 1460.64], [1591.75, 1461.31], [1608.48, 1610.88]], "holes": []}}, {"shape": {"outer": [[-2371.95, -349.59], [-2354.11, -350.39], [-2356.87, -413.79], [-2374.57, -413.04], [-2371.95, -349.59]], "holes": []}}, {"shape": {"outer": [[-2240.99, -175.16], [-2240.23, -175.44], [-2240.71, -187.04], [-2238.57, -187.18], [-2238.7, -190.43], [-2240.97, -192.26], [-2242.73, -190.3], [-2243.22, -189.37], [-2243.3, -188.36], [-2242.84, -186.26], [-2242.86, -184.33], [-2243.79, -182.67], [-2245.94, -181.38], [-2248.68, -181.37], [-2250.63, -182.26], [-2251.96, -184.14], [-2252.38, -186.13], [-2252.13, -187.51], [-2251.51, -188.51], [-2251.53, -189.35], [-2255.01, -192.38], [-2256.92, -191.02], [-2256.47, -186.33], [-2253.89, -186.52], [-2253.29, -174.62], [-2252.69, -174.25], [-2251.84, -174.85], [-2249.95, -176.39], [-2247.06, -177.09], [-2243.58, -176.64], [-2241.83, -175.34], [-2240.99, -175.16]], "holes": []}}, {"shape": {"outer": [[-2250.36, -191.56], [-2250.11, -189.77], [-2249.23, -188.81], [-2247.61, -188.48], [-2246.3, -188.89], [-2245.3, -189.88], [-2245.11, -191.72], [-2245.19, -193.99], [-2250.43, -193.83], [-2250.36, -191.56]], "holes": []}}, {"shape": {"outer": [[-2229.55, -182.11], [-2227.6, -182.19], [-2225.85, -184.49], [-2223.52, -185.46], [-2202.17, -186.26], [-2202.67, -197.99], [-2225.03, -197.06], [-2227.6, -196.19], [-2229.33, -194.68], [-2230.04, -193.43], [-2229.55, -182.11]], "holes": []}}, {"shape": {"outer": [[-2200.57, -198.04], [-2189.63, -198.42], [-2189.02, -181.13], [-2178.43, -181.5], [-2178.26, -176.69], [-2199.79, -175.93], [-2200.57, -198.04]], "holes": []}}, {"shape": {"outer": [[-2170.33, -195.7], [-2170.5, -199.44], [-2159.06, -199.97], [-2158.89, -196.22], [-2170.33, -195.7]], "holes": []}}, {"shape": {"outer": [[-2154.56, -187.85], [-2155.09, -200.11], [-2115.71, -201.82], [-2115.61, -199.45], [-2113.58, -199.54], [-2113.16, -189.64], [-2154.56, -187.85]], "holes": []}}, {"shape": {"outer": [[-2180.63, -37.01], [-2165.42, -37.51], [-2165.97, -54.31], [-2138.13, -55.66], [-2136.77, -57.73], [-2136.82, -59.62], [-2132.24, -59.93], [-2132.7, -78.59], [-2142.97, -78.29], [-2143.18, -76.51], [-2144.01, -75.32], [-2145.09, -74.81], [-2159.0, -74.37], [-2164.43, -70.44], [-2168.34, -69.35], [-2174.86, -69.24], [-2178.57, -67.79], [-2181.57, -65.21], [-2180.63, -37.01]], "holes": []}}, {"shape": {"outer": [[-2282.85, 153.61], [-2283.06, 150.93], [-2275.89, 147.75], [-2269.61, 144.37], [-2266.36, 140.76], [-2263.2, 131.47], [-2260.0, 121.77], [-2254.03, 115.02], [-2232.29, 92.15], [-2229.63, 89.93], [-2226.83, 89.2], [-2212.48, 87.73], [-2198.91, 88.22], [-2185.04, 91.33], [-2174.96, 91.47], [-2164.49, 89.91], [-2150.01, 89.76], [-2149.74, 100.97], [-2148.35, 103.39], [-2138.52, 107.82], [-2134.21, 107.96], [-2128.64, 104.24], [-2127.42, 101.27], [-2126.38, 100.93], [-2124.72, 100.97], [-2124.75, 105.87], [-2123.38, 107.39], [-2119.36, 109.08], [-2118.15, 114.18], [-2117.97, 126.71], [-2134.49, 126.01], [-2148.67, 126.02], [-2164.04, 126.86], [-2178.43, 128.41], [-2196.09, 131.2], [-2213.58, 135.03], [-2240.39, 142.65], [-2266.44, 150.28], [-2278.69, 152.87], [-2282.85, 153.61]], "holes": []}}, {"shape": {"outer": [[-2116.23, 126.8], [-2116.45, 116.79], [-2115.95, 115.89], [-2115.1, 115.56], [-2109.0, 115.32], [-2107.19, 114.85], [-2105.7, 113.58], [-2104.71, 112.2], [-2104.09, 110.72], [-2103.22, 105.21], [-2101.88, 101.03], [-2087.88, 106.69], [-2079.81, 108.23], [-2072.5, 108.66], [-2066.79, 112.65], [-2060.8, 114.24], [-2056.27, 117.18], [-2052.12, 118.81], [-2054.08, 124.26], [-2053.44, 126.82], [-2052.13, 128.49], [-2048.48, 129.74], [-2042.66, 129.19], [-2036.61, 126.13], [-2035.77, 129.76], [-2035.98, 131.98], [-2037.83, 132.22], [-2050.7, 132.03], [-2065.02, 131.27], [-2116.23, 126.8]], "holes": []}}, {"shape": {"outer": [[-2149.02, 83.57], [-2149.44, 68.9], [-2138.28, 67.1], [-2101.43, 68.5], [-2101.19, 64.7], [-2084.48, 64.64], [-2080.07, 59.4], [-2028.2, 58.86], [-2028.67, 26.08], [-2010.19, 25.56], [-2009.05, 61.81], [-2012.44, 66.95], [-2017.52, 70.72], [-2022.77, 71.23], [-2044.42, 77.33], [-2065.09, 81.94], [-2083.01, 84.06], [-2099.86, 83.98], [-2113.61, 81.5], [-2126.11, 81.09], [-2139.41, 81.89], [-2149.02, 83.57]], "holes": []}}, {"shape": {"outer": [[-2262.18, 115.85], [-2258.91, 116.73], [-2233.42, 89.2], [-2233.52, 85.86], [-2242.28, 78.0], [-2247.96, 79.44], [-2256.96, 78.82], [-2260.47, 80.73], [-2258.84, 88.26], [-2259.69, 98.5], [-2262.18, 115.85]], "holes": []}}, {"shape": {"outer": [[-2017.46, 120.74], [-2014.53, 125.13], [-2009.86, 127.18], [-1969.74, 122.86], [-1977.18, 106.92], [-1987.61, 92.0], [-1999.68, 74.26], [-2012.81, 74.77], [-2008.86, 87.38], [-2017.46, 120.74]], "holes": []}}, {"shape": {"outer": [[-2005.15, 55.55], [-2002.32, 51.45], [-1999.53, 50.09], [-1976.87, 46.11], [-1964.95, 45.64], [-1959.36, 48.17], [-1956.07, 53.12], [-1956.47, 57.17], [-1958.83, 59.66], [-1969.79, 62.59], [-1991.65, 70.12], [-1996.06, 70.51], [-1999.86, 67.75], [-2005.09, 62.26], [-2005.15, 55.55]], "holes": []}}, {"shape": {"outer": [[-2001.71, 21.05], [-1962.34, 19.81], [-1962.67, 9.18], [-1960.43, 9.11], [-1960.98, -8.3], [-1954.46, -8.51], [-1954.67, -15.18], [-1994.37, -13.93], [-1994.03, -3.17], [-2002.47, -2.9], [-2001.71, 21.05]], "holes": []}}, {"shape": {"outer": [[-1988.19, 77.41], [-1989.36, 76.32], [-1988.38, 75.05], [-1981.72, 70.92], [-1958.74, 64.37], [-1955.6, 61.91], [-1952.31, 61.59], [-1952.08, 64.7], [-1940.17, 64.31], [-1940.35, 60.89], [-1932.22, 63.56], [-1924.88, 71.06], [-1910.34, 77.79], [-1894.83, 81.29], [-1893.96, 82.46], [-1933.0, 111.78], [-1945.9, 119.03], [-1959.93, 124.08], [-1962.37, 115.82], [-1966.87, 104.68], [-1976.82, 89.88], [-1988.19, 77.41]], "holes": []}}, {"shape": {"outer": [[-2103.88, -11.33], [-2105.69, -5.96], [-2105.49, 1.03], [-2094.72, 11.06], [-2088.1, 17.02], [-2047.33, 15.76], [-2044.15, 12.78], [-2042.16, 0.42], [-2038.7, -5.74], [-2022.22, -8.82], [-2016.72, -6.37], [-2013.46, -0.41], [-2011.65, 0.93], [-2011.17, -11.56], [-2018.46, -11.64], [-2018.65, -14.9], [-2103.88, -11.33]], "holes": []}}, {"shape": {"outer": [[-2163.16, 13.89], [-2163.49, 10.93], [-2162.02, 5.71], [-2158.7, 2.9], [-2153.37, 1.56], [-2146.71, 2.39], [-2139.18, 3.69], [-2132.03, 3.67], [-2127.62, 2.85], [-2111.39, -1.01], [-2111.02, 11.88], [-2117.62, 13.34], [-2121.37, 13.29], [-2132.73, 11.82], [-2141.78, 10.89], [-2151.74, 11.18], [-2160.11, 13.12], [-2163.16, 13.89]], "holes": []}}, {"shape": {"outer": [[-2689.52, 63.34], [-2682.34, 66.42], [-2651.06, 56.5], [-2641.29, 46.18], [-2618.19, 45.01], [-2618.08, 51.72], [-2594.75, 50.81], [-2594.77, 54.3], [-2584.97, 54.13], [-2584.8, 61.81], [-2583.61, 62.58], [-2538.69, 60.83], [-2536.94, 58.97], [-2537.37, 46.01], [-2537.45, 37.46], [-2558.73, 38.07], [-2558.85, 34.24], [-2565.31, 34.56], [-2565.52, 29.72], [-2558.35, 29.51], [-2558.85, 17.94], [-2537.68, 16.99], [-2537.66, 15.59], [-2494.5, 13.88], [-2494.74, 3.36], [-2528.0, 4.48], [-2532.0, 7.22], [-2534.21, 11.77], [-2538.59, 11.95], [-2542.36, 10.43], [-2550.72, 10.14], [-2551.77, 8.14], [-2551.9, 5.64], [-2586.74, 7.43], [-2588.25, 9.56], [-2588.8, 11.97], [-2591.95, 12.09], [-2592.85, 9.82], [-2594.88, 7.78], [-2625.1, 9.08], [-2624.82, 14.61], [-2630.01, 14.87], [-2634.08, 11.44], [-2634.55, 7.39], [-2646.78, 8.61], [-2655.39, 11.24], [-2662.21, 15.8], [-2669.19, 23.1], [-2674.54, 31.81], [-2689.52, 63.34]], "holes": []}}, {"shape": {"outer": [[-2428.81, 30.45], [-2397.94, 29.05], [-2392.91, 2.77], [-2397.33, 0.27], [-2401.01, 2.5], [-2401.93, 8.71], [-2407.67, 13.38], [-2412.35, 13.43], [-2415.59, 10.55], [-2416.07, 8.53], [-2421.59, 8.95], [-2429.67, 15.46], [-2428.81, 30.45]], "holes": []}}, {"shape": {"outer": [[623.07, 514.47], [628.79, 507.98], [646.58, 487.78], [668.61, 507.01], [669.14, 507.52], [662.27, 515.33], [645.65, 534.19], [623.07, 514.47]], "holes": []}}, {"shape": {"outer": [[-1317.21, -2076.25], [-1324.89, -2062.92], [-1314.26, -2065.72], [-1304.25, -2083.09], [-1315.35, -2080.16], [-1316.35, -2083.73], [-1319.09, -2082.98], [-1317.21, -2076.25]], "holes": []}}, {"shape": {"outer": [[-1320.34, -2084.8], [-1314.59, -2087.5], [-1326.04, -2093.54], [-1327.17, -2093.94], [-1332.5, -2093.25], [-1331.9, -2088.61], [-1328.42, -2089.06], [-1320.34, -2084.8]], "holes": []}}, {"shape": {"outer": [[840.16, 1020.06], [807.99, 991.56], [798.37, 1002.35], [830.53, 1030.84], [840.16, 1020.06]], "holes": []}}, {"shape": {"outer": [[1140.2, 1367.1], [1148.81, 1357.46], [1144.89, 1353.98], [1146.55, 1352.12], [1137.54, 1344.15], [1127.27, 1355.65], [1140.2, 1367.1]], "holes": []}}, {"shape": {"outer": [[-748.24, -180.24], [-735.24, -194.55], [-745.77, -204.17], [-748.73, -201.21], [-749.45, -200.98], [-750.36, -201.06], [-752.16, -202.48], [-753.93, -204.02], [-756.63, -200.92], [-759.01, -198.36], [-757.18, -196.76], [-756.88, -195.77], [-757.04, -195.04], [-760.52, -191.33], [-748.24, -180.24]], "holes": []}}, {"shape": {"outer": [[2695.06, 2383.09], [2699.45, 2377.85], [2701.07, 2379.39], [2702.78, 2380.8], [2697.05, 2385.08], [2696.06, 2383.79], [2695.06, 2383.09]], "holes": []}}, {"shape": {"outer": [[2693.63, 2387.6], [2692.22, 2386.19], [2693.55, 2384.88], [2694.34, 2385.59], [2694.93, 2386.44], [2693.63, 2387.6]], "holes": []}}, {"shape": {"outer": [[2738.42, 2352.82], [2737.18, 2350.62], [2743.07, 2350.23], [2743.33, 2351.5], [2738.42, 2352.82]], "holes": []}}, {"shape": {"outer": [[2734.31, 2354.07], [2730.77, 2355.56], [2728.03, 2356.97], [2724.97, 2353.27], [2728.78, 2351.97], [2732.96, 2351.09], [2734.31, 2354.07]], "holes": []}}, {"shape": {"outer": [[2712.52, 2359.17], [2710.19, 2359.52], [2708.13, 2360.66], [2706.59, 2362.44], [2705.76, 2364.64], [2705.75, 2366.98], [2706.55, 2369.2], [2708.43, 2371.25], [2710.98, 2372.38], [2713.78, 2372.37], [2716.32, 2371.22], [2718.18, 2369.14], [2719.01, 2366.53], [2718.73, 2363.82], [2717.39, 2361.44], [2715.19, 2359.81], [2712.52, 2359.17]], "holes": []}}, {"shape": {"outer": [[1873.33, 1617.33], [1856.79, 1635.52], [1882.33, 1658.59], [1889.95, 1650.22], [1871.06, 1633.16], [1879.99, 1623.34], [1873.33, 1617.33]], "holes": []}}, {"shape": {"outer": [[-3046.66, -1768.31], [-3032.19, -1756.81], [-3010.28, -1784.17], [-3024.74, -1795.67], [-3046.66, -1768.31]], "holes": []}}, {"shape": {"outer": [[67.03, -2061.76], [66.93, -2058.18], [69.67, -2057.93], [71.69, -2059.84], [73.53, -2060.44], [79.54, -2060.5], [80.23, -2063.24], [78.56, -2099.03], [78.16, -2109.36], [77.76, -2123.29], [77.38, -2136.57], [76.11, -2185.33], [73.8, -2185.58], [72.99, -2187.53], [72.92, -2197.33], [75.32, -2197.4], [75.36, -2200.01], [74.47, -2200.64], [67.27, -2200.1], [66.45, -2198.33], [65.1, -2195.91], [63.08, -2193.67], [59.13, -2190.4], [55.23, -2188.98], [53.28, -2188.7], [49.66, -2188.93], [45.36, -2190.22], [40.95, -2191.73], [36.67, -2192.27], [33.09, -2191.4], [28.74, -2190.52], [25.18, -2188.89], [20.67, -2185.93], [17.53, -2183.06], [11.13, -2173.4], [-14.32, -2134.29], [-38.78, -2097.22], [-58.22, -2067.64], [-71.53, -2045.43], [-88.74, -2018.31], [-93.42, -2009.9], [-97.28, -2001.35], [-100.73, -1992.21], [-104.73, -1981.26], [-107.09, -1975.42], [-108.91, -1972.37], [-111.32, -1968.77], [-114.33, -1965.08], [-115.78, -1962.26], [-115.52, -1960.75], [-114.43, -1960.78], [-111.44, -1961.35], [-108.83, -1959.79], [-104.22, -1961.18], [-97.45, -1963.33], [-91.52, -1966.17], [-82.82, -1967.72], [-74.1, -1968.89], [-66.71, -1968.24], [-61.6, -1967.22], [-52.21, -1977.31], [-48.13, -1985.25], [-45.61, -2001.53], [-43.74, -2019.17], [-39.27, -2046.01], [-34.93, -2061.4], [-33.83, -2068.99], [-30.97, -2075.98], [-28.34, -2078.98], [-19.71, -2084.32], [-7.15, -2092.22], [9.0, -2106.32], [8.85, -2114.44], [13.58, -2122.23], [19.69, -2125.25], [26.1, -2125.46], [28.67, -2124.71], [32.26, -2127.99], [38.29, -2133.96], [41.37, -2140.57], [39.79, -2145.54], [47.24, -2156.42], [57.11, -2155.43], [63.51, -2117.7], [68.58, -2107.39], [69.47, -2101.9], [65.56, -2095.96], [61.77, -2088.97], [58.65, -2086.45], [60.73, -2081.42], [64.62, -2079.89], [76.11, -2080.31], [76.93, -2069.14], [76.52, -2063.16], [70.79, -2062.65], [67.03, -2061.76]], "holes": []}}, {"shape": {"outer": [[-498.93, -1116.1], [-521.97, -1165.14], [-510.62, -1169.77], [-495.11, -1140.77], [-488.6, -1123.89], [-494.27, -1118.1], [-498.93, -1116.1]], "holes": []}}, {"shape": {"outer": [[2542.51, 1779.6], [2550.88, 1775.51], [2552.0, 1765.75], [2545.29, 1768.77], [2542.51, 1779.6]], "holes": []}}, {"shape": {"outer": [[2547.5, 1753.25], [2553.46, 1749.88], [2552.38, 1757.01], [2547.06, 1758.22], [2547.5, 1753.25]], "holes": []}}, {"shape": {"outer": [[1356.18, 2332.25], [1334.27, 2343.7], [1331.6, 2338.64], [1294.66, 2357.94], [1303.99, 2375.69], [1326.43, 2363.97], [1325.15, 2361.52], [1368.14, 2339.05], [1364.55, 2332.22], [1364.25, 2320.52], [1355.89, 2320.74], [1356.18, 2332.25]], "holes": []}}, {"shape": {"outer": [[1375.46, 2316.93], [1375.78, 2328.11], [1406.24, 2327.24], [1410.9, 2329.61], [1411.81, 2332.02], [1467.26, 2330.61], [1467.21, 2328.29], [1506.34, 2327.23], [1506.45, 2331.02], [1580.3, 2328.93], [1579.79, 2311.07], [1375.46, 2316.93]], "holes": []}}, {"shape": {"outer": [[1580.82, 2407.5], [1583.0, 2350.05], [1573.3, 2347.52], [1571.05, 2407.14], [1573.37, 2416.75], [1578.44, 2418.2], [1580.82, 2407.5]], "holes": []}}, {"shape": {"outer": [[1541.15, 2552.05], [1554.37, 2543.77], [1555.07, 2543.68], [1578.35, 2542.34], [1578.02, 2536.6], [1579.9, 2536.49], [1579.15, 2523.54], [1553.98, 2525.0], [1554.3, 2530.27], [1550.16, 2531.16], [1546.34, 2532.85], [1539.67, 2537.62], [1537.04, 2533.43], [1535.16, 2534.61], [1516.07, 2541.05], [1522.0, 2558.51], [1541.15, 2552.05]], "holes": []}}, {"shape": {"outer": [[1531.12, 847.84], [1544.78, 833.11], [1539.3, 827.78], [1538.31, 827.16], [1524.65, 841.88], [1531.12, 847.84]], "holes": []}}, {"shape": {"outer": [[-2228.22, -1058.32], [-2226.15, -1061.67], [-2223.95, -1060.21], [-2222.3, -1060.01], [-2220.56, -1061.2], [-2217.66, -1066.47], [-2198.84, -1056.89], [-2200.17, -1054.44], [-2200.63, -1052.78], [-2200.46, -1051.28], [-2198.92, -1050.81], [-2196.91, -1051.63], [-2194.94, -1053.83], [-2192.22, -1056.31], [-2188.2, -1057.95], [-2184.37, -1057.05], [-2180.23, -1054.51], [-2179.14, -1051.89], [-2178.57, -1049.75], [-2177.01, -1048.53], [-2175.74, -1048.44], [-2175.35, -1043.92], [-2175.16, -1041.75], [-2177.05, -1041.19], [-2177.39, -1039.53], [-2177.16, -1036.25], [-2192.89, -1035.54], [-2206.26, -1040.86], [-2205.3, -1042.91], [-2204.6, -1045.21], [-2204.76, -1046.47], [-2228.22, -1058.32]], "holes": []}}, {"shape": {"outer": [[1566.41, 1892.63], [1577.45, 1913.33], [1584.22, 1935.29], [1579.13, 1935.88], [1582.81, 1967.91], [1600.52, 1965.9], [1597.01, 1935.26], [1589.1, 1909.63], [1576.53, 1886.03], [1569.74, 1877.9], [1561.22, 1869.97], [1557.78, 1873.65], [1552.77, 1869.17], [1556.02, 1865.55], [1525.2, 1838.01], [1513.48, 1851.03], [1544.3, 1878.57], [1548.06, 1874.39], [1554.41, 1880.07], [1561.18, 1886.36], [1566.41, 1892.63]], "holes": []}}, {"shape": {"outer": [[1483.1, 1964.05], [1494.45, 1951.18], [1468.3, 1928.25], [1465.08, 1931.9], [1431.42, 1902.41], [1423.28, 1911.64], [1483.1, 1964.05]], "holes": []}}, {"shape": {"outer": [[1449.31, 1993.94], [1437.86, 1996.32], [1436.75, 1991.0], [1406.74, 1997.22], [1408.61, 2006.13], [1403.33, 2007.22], [1405.13, 2015.85], [1470.64, 2002.27], [1487.4, 2000.55], [1486.22, 1989.03], [1493.27, 1981.2], [1455.51, 1947.51], [1446.79, 1957.21], [1458.27, 1967.45], [1454.76, 1971.35], [1474.62, 1989.07], [1467.84, 1989.76], [1466.96, 1984.64], [1448.32, 1987.84], [1449.31, 1993.94]], "holes": []}}, {"shape": {"outer": [[1388.92, 2025.67], [1441.57, 2165.3], [1453.66, 2160.77], [1415.85, 2060.48], [1421.94, 2058.19], [1406.55, 2017.37], [1400.76, 2019.53], [1388.78, 2007.07], [1379.53, 2015.9], [1388.92, 2025.67]], "holes": []}}, {"shape": {"outer": [[2044.05, 1912.71], [2064.44, 1932.49], [2071.74, 1925.02], [2065.22, 1918.7], [2071.72, 1912.05], [2057.85, 1898.59], [2044.05, 1912.71]], "holes": []}}, {"shape": {"outer": [[2121.35, 1949.36], [2088.74, 1916.05], [2075.48, 1930.27], [2106.02, 1958.52], [2110.33, 1956.56], [2116.57, 1955.12], [2121.35, 1949.36]], "holes": []}}, {"shape": {"outer": [[1653.03, 1146.7], [1666.67, 1131.91], [1653.53, 1119.88], [1636.36, 1138.49], [1636.55, 1149.53], [1682.0, 1191.14], [1688.03, 1184.59], [1648.55, 1148.45], [1648.31, 1144.26], [1649.26, 1143.24], [1653.03, 1146.7]], "holes": []}}, {"shape": {"outer": [[1698.81, 1331.25], [1727.91, 1299.29], [1711.1, 1284.09], [1701.59, 1294.54], [1707.75, 1300.12], [1688.16, 1321.63], [1698.81, 1331.25]], "holes": []}}, {"shape": {"outer": [[1863.13, 1256.11], [1864.82, 1257.64], [1867.26, 1254.96], [1865.58, 1253.43], [1863.13, 1256.11]], "holes": []}}, {"shape": {"outer": [[1899.94, 1268.47], [1891.69, 1277.65], [1908.81, 1292.91], [1917.06, 1283.71], [1899.94, 1268.47]], "holes": []}}, {"shape": {"outer": [[1809.47, 1208.53], [1862.8, 1255.82], [1871.09, 1246.76], [1818.11, 1198.66], [1809.47, 1208.53]], "holes": []}}, {"shape": {"outer": [[1787.54, 1438.86], [1752.17, 1406.29], [1737.0, 1422.65], [1746.78, 1431.65], [1745.78, 1432.74], [1750.13, 1436.75], [1748.96, 1438.01], [1768.09, 1455.61], [1770.26, 1453.27], [1787.54, 1438.86]], "holes": []}}, {"shape": {"outer": [[1712.52, 1505.57], [1747.44, 1476.08], [1718.48, 1450.63], [1720.57, 1448.26], [1693.89, 1424.83], [1661.83, 1461.04], [1712.52, 1505.57]], "holes": []}}, {"shape": {"outer": [[1622.02, 1289.11], [1608.94, 1303.47], [1612.95, 1353.93], [1642.83, 1380.98], [1656.53, 1365.95], [1689.48, 1395.78], [1712.27, 1370.77], [1622.02, 1289.11]], "holes": []}}, {"shape": {"outer": [[1831.92, 1356.42], [1836.61, 1351.13], [1806.0, 1324.25], [1803.04, 1321.95], [1800.24, 1320.17], [1797.63, 1318.85], [1795.25, 1317.92], [1793.14, 1317.32], [1791.33, 1316.98], [1789.86, 1316.83], [1788.77, 1316.79], [1779.32, 1317.48], [1779.82, 1324.37], [1769.13, 1325.15], [1771.34, 1337.88], [1784.07, 1335.67], [1785.21, 1335.56], [1786.85, 1335.51], [1787.81, 1335.52], [1788.79, 1335.61], [1789.75, 1335.76], [1790.65, 1335.99], [1791.45, 1336.33], [1793.4, 1337.49], [1793.96, 1337.89], [1794.47, 1338.29], [1794.94, 1338.74], [1795.36, 1339.21], [1795.74, 1339.74], [1796.08, 1340.32], [1796.38, 1340.95], [1799.18, 1349.21], [1805.58, 1348.11], [1809.1, 1352.02], [1810.4, 1353.28], [1810.91, 1353.69], [1809.25, 1358.27], [1817.14, 1361.96], [1825.87, 1366.94], [1831.92, 1356.42]], "holes": []}}, {"shape": {"outer": [[-1055.73, -181.7], [-1056.19, -190.6], [-1056.79, -201.54], [-1053.08, -202.89], [-1048.83, -199.05], [-1042.76, -193.65], [-1037.6, -199.42], [-1036.17, -198.14], [-1027.64, -190.45], [-1036.52, -180.67], [-1054.69, -179.84], [-1055.67, -179.79], [-1055.73, -181.7]], "holes": []}}, {"shape": {"outer": [[-1036.53, -250.88], [-1036.79, -251.3], [-1036.37, -251.65], [-1021.61, -252.42], [-1027.86, -245.51], [-1028.89, -246.43], [-1030.07, -245.12], [-1032.14, -246.96], [-1036.53, -250.88]], "holes": []}}, {"shape": {"outer": [[-936.0, -412.75], [-936.72, -452.03], [-892.25, -411.36], [-900.86, -402.67], [-909.43, -410.91], [-916.94, -413.67], [-936.0, -412.75]], "holes": []}}, {"shape": {"outer": [[-238.73, -527.76], [-226.33, -517.19], [-237.5, -504.49], [-243.8, -497.43], [-252.48, -505.69], [-253.62, -508.81], [-253.94, -511.23], [-238.73, -527.76]], "holes": []}}, {"shape": {"outer": [[564.76, -2485.02], [569.78, -2487.74], [556.4, -2512.24], [551.38, -2509.52], [564.76, -2485.02]], "holes": []}}, {"shape": {"outer": [[-2490.57, 92.18], [-2487.74, 92.06], [-2487.86, 89.25], [-2487.99, 86.36], [-2488.97, 86.4], [-2488.91, 87.51], [-2490.78, 87.57], [-2490.57, 92.18]], "holes": []}}, {"shape": {"outer": [[-2492.41, 87.64], [-2490.78, 87.57], [-2490.57, 92.18], [-2493.31, 92.29], [-2493.55, 86.6], [-2492.46, 86.56], [-2492.41, 87.64]], "holes": []}}, {"shape": {"outer": [[-2502.31, 102.32], [-2502.18, 106.11], [-2499.06, 106.01], [-2499.18, 102.22], [-2502.31, 102.32]], "holes": []}}, {"shape": {"outer": [[-2504.63, 106.19], [-2507.09, 106.27], [-2507.23, 102.51], [-2504.77, 102.42], [-2504.63, 106.19]], "holes": []}}, {"shape": {"outer": [[-2504.77, 102.42], [-2502.82, 102.34], [-2502.31, 102.32], [-2502.18, 106.11], [-2504.63, 106.19], [-2504.77, 102.42]], "holes": []}}, {"shape": {"outer": [[-2507.09, 106.27], [-2504.63, 106.19], [-2504.77, 102.42], [-2504.84, 100.59], [-2507.29, 100.69], [-2507.23, 102.51], [-2507.09, 106.27]], "holes": []}}, {"shape": {"outer": [[-2504.84, 100.59], [-2504.77, 102.42], [-2504.63, 106.19], [-2502.18, 106.11], [-2502.31, 102.32], [-2502.38, 100.5], [-2504.84, 100.59]], "holes": []}}, {"shape": {"outer": [[-125.82, -181.42], [-125.88, -182.91], [-125.95, -184.63], [-126.09, -187.98], [-126.17, -190.95], [-128.66, -190.84], [-128.59, -188.31], [-130.34, -188.26], [-130.25, -186.35], [-130.15, -184.48], [-130.13, -183.9], [-130.09, -183.24], [-129.99, -181.24], [-129.09, -181.27], [-127.97, -181.33], [-127.11, -181.36], [-126.5, -181.39], [-125.82, -181.42]], "holes": []}}, {"shape": {"outer": [[-110.75, -191.61], [-108.16, -191.73], [-108.07, -189.16], [-106.49, -189.22], [-106.41, -187.5], [-106.29, -184.83], [-106.18, -182.3], [-107.25, -182.25], [-108.19, -182.2], [-108.76, -182.17], [-109.68, -182.14], [-110.09, -182.11], [-110.38, -182.1], [-110.51, -185.35], [-110.64, -188.59], [-110.75, -191.61]], "holes": []}}, {"shape": {"outer": [[-135.06, -152.2], [-135.17, -155.12], [-135.27, -157.79], [-131.44, -157.93], [-130.64, -157.95], [-129.98, -157.98], [-129.11, -158.02], [-128.91, -153.41], [-128.87, -152.45], [-129.62, -152.41], [-129.77, -152.41], [-130.42, -152.39], [-131.8, -152.34], [-135.06, -152.2]], "holes": []}}, {"shape": {"outer": [[-134.93, -149.3], [-135.06, -152.2], [-131.8, -152.34], [-130.42, -152.39], [-130.38, -151.55], [-130.36, -151.05], [-130.34, -150.62], [-130.24, -148.36], [-130.22, -147.78], [-131.1, -147.74], [-131.67, -148.11], [-132.86, -148.9], [-134.93, -149.3]], "holes": []}}, {"shape": {"outer": [[-129.64, -171.81], [-129.63, -171.65], [-126.05, -171.79], [-124.55, -171.84], [-124.29, -171.85], [-124.4, -174.33], [-124.5, -176.71], [-125.67, -176.67], [-129.8, -176.51], [-129.78, -175.7], [-129.73, -174.17], [-129.67, -172.55], [-129.64, -171.81]], "holes": []}}, {"shape": {"outer": [[-129.38, -164.74], [-129.41, -165.56], [-129.44, -166.42], [-129.47, -167.11], [-129.51, -168.2], [-129.63, -171.65], [-126.05, -171.79], [-124.55, -171.84], [-124.29, -171.85], [-123.04, -171.9], [-122.74, -171.91], [-121.66, -171.95], [-121.37, -165.03], [-129.38, -164.74]], "holes": []}}, {"shape": {"outer": [[-129.11, -158.32], [-129.17, -159.81], [-129.22, -160.86], [-129.23, -161.08], [-129.28, -162.41], [-129.31, -163.24], [-129.33, -163.6], [-129.35, -164.03], [-129.38, -164.74], [-121.37, -165.03], [-121.18, -160.23], [-121.1, -158.59], [-121.57, -158.58], [-123.12, -158.52], [-124.3, -158.48], [-124.77, -158.47], [-125.98, -158.42], [-126.87, -158.39], [-127.1, -158.39], [-129.11, -158.32]], "holes": []}}, {"shape": {"outer": [[-98.58, -159.75], [-98.36, -153.94], [-102.26, -153.77], [-103.44, -153.71], [-104.18, -153.68], [-104.29, -153.68], [-104.97, -153.65], [-104.99, -154.23], [-105.21, -159.16], [-105.22, -159.49], [-104.57, -159.52], [-98.58, -159.75]], "holes": []}}, {"shape": {"outer": [[-98.36, -153.94], [-98.22, -150.96], [-102.47, -150.76], [-103.31, -150.73], [-103.35, -151.88], [-103.4, -152.9], [-103.44, -153.71], [-102.26, -153.77], [-98.36, -153.94]], "holes": []}}, {"shape": {"outer": [[-113.75, -172.16], [-113.59, -168.05], [-113.48, -165.33], [-105.48, -165.63], [-105.52, -166.49], [-105.55, -167.23], [-105.6, -168.35], [-105.64, -169.15], [-105.75, -171.67], [-105.78, -172.49], [-109.44, -172.34], [-110.97, -172.27], [-111.1, -172.27], [-112.47, -172.21], [-112.76, -172.2], [-113.75, -172.16]], "holes": []}}, {"shape": {"outer": [[-111.3, -177.3], [-110.19, -177.34], [-105.99, -177.52], [-105.95, -176.54], [-105.91, -175.57], [-105.9, -175.23], [-105.85, -174.15], [-105.8, -172.79], [-105.78, -172.49], [-109.44, -172.34], [-110.97, -172.27], [-111.1, -172.27], [-111.2, -174.81], [-111.3, -177.3]], "holes": []}}, {"shape": {"outer": [[-113.48, -165.33], [-105.48, -165.63], [-105.46, -165.08], [-105.45, -164.71], [-105.43, -164.43], [-105.41, -164.0], [-105.4, -163.74], [-105.38, -163.32], [-105.31, -161.72], [-105.29, -161.18], [-105.22, -159.49], [-105.21, -159.16], [-107.45, -159.07], [-108.41, -159.03], [-109.35, -159.0], [-110.01, -158.99], [-110.85, -158.95], [-112.63, -158.89], [-113.23, -158.87], [-113.3, -160.5], [-113.48, -165.33]], "holes": []}}, {"shape": {"outer": [[-81.18, -116.11], [-82.62, -116.06], [-86.38, -115.91], [-87.39, -115.87], [-87.36, -115.12], [-87.35, -114.9], [-87.32, -114.15], [-87.51, -114.13], [-87.69, -114.13], [-87.65, -112.96], [-87.6, -111.56], [-86.57, -111.6], [-85.45, -111.65], [-85.46, -112.09], [-85.54, -114.21], [-85.22, -114.22], [-84.99, -114.23], [-83.72, -114.27], [-82.55, -114.32], [-81.97, -114.35], [-79.66, -114.45], [-78.94, -114.48], [-78.71, -114.48], [-76.88, -114.56], [-76.57, -114.57], [-76.6, -115.44], [-76.64, -116.31], [-76.05, -116.34], [-75.39, -116.38], [-72.17, -116.51], [-71.53, -116.54], [-70.2, -116.6], [-67.2, -116.74], [-66.83, -116.75], [-66.38, -116.78], [-65.45, -116.83], [-63.1, -116.94], [-62.86, -116.95], [-61.57, -117.0], [-60.94, -117.03], [-58.86, -117.14], [-58.48, -117.16], [-57.51, -117.2], [-57.03, -117.22], [-56.69, -117.23], [-53.53, -117.39], [-52.26, -117.45], [-52.32, -118.85], [-49.75, -118.96], [-49.88, -121.65], [-52.41, -121.55], [-55.15, -121.44], [-57.21, -121.35], [-57.77, -121.32], [-58.13, -121.31], [-59.05, -121.28], [-59.04, -121.11], [-58.98, -119.63], [-58.98, -119.32], [-58.96, -118.91], [-60.0, -118.87], [-61.02, -118.83], [-62.22, -118.79], [-62.98, -118.75], [-63.47, -118.73], [-65.52, -118.63], [-65.81, -118.62], [-68.43, -118.5], [-70.28, -118.4], [-70.67, -118.38], [-72.1, -118.32], [-74.54, -118.2], [-76.65, -118.11], [-78.64, -118.02], [-79.93, -117.95], [-81.26, -117.89], [-81.18, -116.11]], "holes": []}}, {"shape": {"outer": [[-53.01, -135.76], [-53.94, -135.73], [-55.69, -135.67], [-56.51, -135.63], [-57.31, -135.6], [-57.7, -135.59], [-58.38, -135.56], [-59.58, -135.51], [-59.88, -135.5], [-60.97, -135.45], [-60.77, -131.33], [-61.58, -131.3], [-62.2, -131.27], [-63.13, -131.22], [-64.33, -131.16], [-65.09, -131.13], [-65.47, -139.0], [-65.53, -140.32], [-64.76, -140.37], [-64.41, -140.39], [-63.9, -140.41], [-62.71, -140.46], [-61.99, -140.49], [-59.8, -140.6], [-59.42, -140.62], [-58.52, -140.65], [-57.25, -140.71], [-55.02, -140.81], [-53.19, -140.91], [-53.15, -139.33], [-50.72, -139.44], [-50.54, -135.87], [-53.01, -135.76]], "holes": []}}, {"shape": {"outer": [[-58.38, -135.56], [-59.58, -135.51], [-59.88, -135.5], [-60.97, -135.45], [-60.77, -131.33], [-60.52, -131.34], [-59.38, -131.39], [-58.2, -131.44], [-58.38, -135.56]], "holes": []}}, {"shape": {"outer": [[-83.98, -145.75], [-87.66, -145.58], [-87.98, -145.57], [-88.63, -145.54], [-88.59, -144.53], [-88.55, -143.5], [-88.53, -143.04], [-88.51, -142.35], [-88.42, -140.53], [-87.45, -140.56], [-83.77, -140.73], [-83.82, -141.82], [-83.98, -145.75]], "holes": []}}, {"shape": {"outer": [[-88.63, -145.54], [-91.21, -145.43], [-91.11, -142.92], [-90.39, -142.95], [-88.53, -143.04], [-88.55, -143.5], [-88.59, -144.53], [-88.63, -145.54]], "holes": []}}, {"shape": {"outer": [[-87.5, -108.83], [-87.6, -111.56], [-86.57, -111.6], [-85.45, -111.65], [-85.36, -108.91], [-87.13, -108.84], [-87.5, -108.83]], "holes": []}}, {"shape": {"outer": [[-72.1, -118.32], [-72.19, -120.56], [-70.75, -120.62], [-68.52, -120.73], [-68.43, -118.5], [-65.81, -118.62], [-65.52, -118.63], [-63.47, -118.73], [-63.55, -120.92], [-63.6, -122.19], [-63.66, -123.72], [-63.72, -125.21], [-66.75, -125.07], [-68.99, -124.96], [-72.5, -124.82], [-76.91, -124.63], [-76.65, -118.11], [-74.54, -118.2], [-72.1, -118.32]], "holes": []}}, {"shape": {"outer": [[-132.19, -93.19], [-132.35, -96.54], [-132.41, -97.56], [-128.65, -97.68], [-126.8, -97.74], [-126.2, -97.77], [-126.06, -97.78], [-125.49, -97.79], [-125.45, -96.78], [-125.32, -93.42], [-126.02, -93.4], [-126.62, -93.38], [-132.19, -93.19]], "holes": []}}, {"shape": {"outer": [[-125.1, -88.04], [-122.42, -88.14], [-121.42, -88.18], [-120.86, -88.21], [-120.78, -88.21], [-120.66, -88.22], [-120.02, -88.23], [-119.11, -88.27], [-118.27, -88.31], [-116.79, -88.36], [-116.92, -91.88], [-117.5, -91.86], [-118.41, -91.83], [-119.25, -91.79], [-120.59, -91.74], [-121.47, -91.7], [-121.58, -91.7], [-122.54, -91.66], [-125.24, -91.56], [-125.19, -90.43], [-125.18, -90.27], [-125.16, -89.59], [-125.14, -89.04], [-125.1, -88.04]], "holes": []}}, {"shape": {"outer": [[-124.92, -83.72], [-123.2, -83.78], [-121.2, -83.85], [-118.92, -83.94], [-118.96, -84.85], [-118.98, -85.22], [-119.11, -88.27], [-120.02, -88.23], [-120.66, -88.22], [-120.78, -88.21], [-120.86, -88.21], [-121.42, -88.18], [-122.42, -88.14], [-125.1, -88.04], [-125.06, -87.06], [-125.04, -86.76], [-125.01, -86.02], [-124.99, -85.49], [-124.97, -84.98], [-124.92, -83.72]], "holes": []}}, {"shape": {"outer": [[-124.68, -79.29], [-124.62, -78.37], [-124.6, -77.89], [-124.55, -76.91], [-124.5, -75.86], [-124.44, -74.63], [-122.6, -74.7], [-120.76, -74.79], [-120.29, -74.8], [-119.44, -74.84], [-118.53, -74.88], [-118.58, -76.06], [-118.6, -76.37], [-118.62, -76.93], [-118.73, -79.51], [-124.68, -79.29]], "holes": []}}, {"shape": {"outer": [[-124.68, -79.29], [-118.73, -79.51], [-118.77, -80.51], [-118.82, -81.75], [-118.92, -83.94], [-121.2, -83.85], [-123.2, -83.78], [-124.92, -83.72], [-124.88, -83.05], [-124.85, -82.39], [-124.76, -80.8], [-124.69, -79.63], [-124.68, -79.29]], "holes": []}}, {"shape": {"outer": [[-124.21, -69.99], [-122.29, -70.06], [-120.54, -70.14], [-120.09, -70.15], [-120.13, -71.08], [-120.23, -73.53], [-120.29, -74.8], [-120.76, -74.79], [-122.6, -74.7], [-124.44, -74.63], [-124.42, -74.25], [-124.38, -73.46], [-124.32, -72.3], [-124.29, -71.6], [-124.27, -71.22], [-124.21, -69.99]], "holes": []}}, {"shape": {"outer": [[-107.89, -75.24], [-106.52, -75.29], [-101.28, -75.48], [-101.32, -76.26], [-101.36, -77.14], [-101.4, -78.13], [-101.41, -78.32], [-101.48, -79.6], [-105.24, -79.46], [-108.06, -79.36], [-108.0, -77.98], [-107.98, -77.47], [-107.95, -76.74], [-107.89, -75.24]], "holes": []}}, {"shape": {"outer": [[-101.28, -75.48], [-101.25, -74.86], [-101.21, -73.9], [-101.2, -73.64], [-101.17, -73.02], [-101.15, -72.5], [-101.11, -71.68], [-102.65, -71.62], [-102.99, -71.61], [-104.96, -71.53], [-107.72, -71.44], [-107.84, -74.1], [-107.89, -75.24], [-106.52, -75.29], [-101.28, -75.48]], "holes": []}}, {"shape": {"outer": [[-105.79, -67.6], [-104.71, -67.64], [-100.93, -67.76], [-100.89, -66.85], [-100.82, -65.41], [-100.76, -63.71], [-102.34, -63.64], [-102.25, -61.29], [-105.55, -61.15], [-105.57, -61.77], [-105.62, -63.5], [-105.63, -63.58], [-105.72, -65.86], [-105.79, -67.6]], "holes": []}}, {"shape": {"outer": [[-101.48, -79.6], [-101.51, -80.39], [-101.53, -80.95], [-101.55, -81.4], [-101.59, -82.61], [-101.6, -83.08], [-101.62, -83.58], [-108.21, -83.32], [-108.15, -81.88], [-108.11, -80.68], [-108.07, -79.74], [-108.06, -79.36], [-105.24, -79.46], [-101.48, -79.6]], "holes": []}}, {"shape": {"outer": [[-101.62, -83.58], [-101.66, -84.32], [-101.68, -84.61], [-101.7, -85.12], [-101.74, -85.93], [-101.77, -86.59], [-101.79, -87.07], [-101.81, -87.53], [-108.35, -87.32], [-108.3, -86.1], [-108.29, -85.59], [-108.27, -85.2], [-108.25, -84.31], [-108.21, -83.32], [-101.62, -83.58]], "holes": []}}, {"shape": {"outer": [[-101.63, -105.16], [-101.57, -103.63], [-101.53, -102.78], [-101.49, -101.86], [-101.45, -100.81], [-101.42, -100.2], [-101.36, -98.66], [-95.84, -98.87], [-96.01, -102.04], [-96.05, -102.9], [-98.44, -103.43], [-98.82, -103.71], [-100.17, -104.71], [-100.46, -105.21], [-101.63, -105.16]], "holes": []}}, {"shape": {"outer": [[-173.15, -130.0], [-174.03, -129.98], [-175.2, -129.93], [-175.77, -129.92], [-176.1, -129.91], [-178.29, -129.82], [-180.95, -129.76], [-181.08, -132.95], [-179.55, -132.99], [-178.41, -133.02], [-178.47, -135.04], [-177.5, -135.08], [-176.94, -135.11], [-176.25, -135.14], [-175.56, -135.17], [-174.22, -135.23], [-173.34, -135.27], [-173.31, -134.48], [-173.27, -133.57], [-173.23, -132.29], [-173.19, -131.11], [-173.15, -130.0]], "holes": []}}, {"shape": {"outer": [[-172.62, -115.91], [-173.54, -115.88], [-174.32, -115.84], [-174.99, -115.81], [-175.34, -115.8], [-175.64, -115.79], [-177.81, -115.71], [-180.32, -115.62], [-180.21, -112.59], [-178.85, -112.65], [-177.7, -112.69], [-177.63, -110.95], [-176.05, -111.0], [-175.0, -111.04], [-174.82, -111.05], [-173.38, -111.11], [-172.43, -111.15], [-172.53, -113.69], [-172.62, -115.91]], "holes": []}}, {"shape": {"outer": [[-149.38, -142.45], [-146.38, -142.57], [-145.09, -142.62], [-144.44, -142.65], [-144.36, -140.14], [-144.29, -137.63], [-144.28, -137.17], [-144.27, -136.97], [-144.26, -136.49], [-145.27, -136.44], [-148.92, -136.29], [-149.21, -136.27], [-149.24, -137.44], [-149.3, -139.35], [-149.38, -142.45]], "holes": []}}, {"shape": {"outer": [[-167.94, -135.49], [-168.41, -135.46], [-170.38, -135.38], [-171.2, -135.35], [-172.13, -135.3], [-172.39, -135.29], [-172.7, -135.28], [-173.09, -135.27], [-173.34, -135.27], [-173.31, -134.48], [-173.27, -133.57], [-173.23, -132.29], [-173.19, -131.11], [-173.15, -130.0], [-173.1, -128.77], [-173.08, -128.07], [-168.67, -128.26], [-167.69, -128.3], [-167.94, -135.49]], "holes": []}}, {"shape": {"outer": [[-163.35, -135.68], [-163.82, -135.66], [-165.7, -135.58], [-166.54, -135.55], [-167.54, -135.5], [-167.74, -135.49], [-167.94, -135.49], [-167.69, -128.3], [-165.92, -128.39], [-163.14, -128.51], [-163.16, -129.2], [-163.35, -135.68]], "holes": []}}, {"shape": {"outer": [[-158.83, -135.87], [-159.06, -135.86], [-162.09, -135.73], [-163.07, -135.69], [-163.35, -135.68], [-163.16, -129.2], [-163.14, -128.51], [-161.27, -128.59], [-158.61, -128.71], [-158.83, -135.87]], "holes": []}}, {"shape": {"outer": [[-154.38, -136.06], [-154.63, -136.05], [-155.07, -136.03], [-155.5, -136.02], [-157.27, -135.93], [-158.4, -135.89], [-158.83, -135.87], [-158.61, -128.71], [-155.52, -128.84], [-154.16, -128.9], [-154.36, -135.39], [-154.38, -136.06]], "holes": []}}, {"shape": {"outer": [[-150.13, -136.24], [-150.77, -136.21], [-151.27, -136.19], [-152.5, -136.15], [-153.04, -136.12], [-153.71, -136.09], [-154.03, -136.08], [-154.38, -136.06], [-154.36, -135.39], [-154.16, -128.9], [-151.25, -129.03], [-150.52, -129.06], [-149.91, -129.09], [-149.99, -131.53], [-149.99, -131.72], [-150.01, -132.46], [-150.02, -132.68], [-150.13, -136.24]], "holes": []}}, {"shape": {"outer": [[-172.69, -117.89], [-172.62, -115.91], [-172.53, -113.69], [-172.43, -111.15], [-171.59, -111.19], [-171.22, -111.2], [-168.89, -111.29], [-168.31, -111.3], [-167.96, -111.31], [-167.21, -111.34], [-166.99, -111.35], [-167.24, -118.09], [-170.0, -117.99], [-172.69, -117.89]], "holes": []}}, {"shape": {"outer": [[-148.6, -105.43], [-147.92, -105.45], [-147.22, -105.48], [-143.7, -105.62], [-143.83, -109.69], [-143.87, -110.79], [-143.45, -110.8], [-143.13, -110.81], [-142.42, -110.83], [-142.44, -111.49], [-142.45, -111.69], [-142.48, -112.27], [-143.5, -112.23], [-144.42, -112.19], [-147.16, -112.09], [-148.83, -112.03], [-148.79, -110.99], [-148.78, -110.63], [-148.74, -109.37], [-148.6, -105.43]], "holes": []}}, {"shape": {"outer": [[-143.7, -105.62], [-143.83, -109.69], [-142.39, -109.74], [-142.42, -110.83], [-141.36, -110.87], [-140.72, -110.89], [-138.74, -110.95], [-138.71, -109.97], [-138.68, -108.97], [-138.3, -108.98], [-137.84, -108.99], [-138.37, -108.11], [-138.6, -105.83], [-142.23, -105.69], [-143.28, -105.64], [-143.7, -105.62]], "holes": []}}, {"shape": {"outer": [[-157.24, -111.72], [-156.19, -111.76], [-155.75, -111.77], [-155.16, -111.8], [-154.65, -111.81], [-154.01, -111.84], [-153.34, -111.86], [-151.77, -111.92], [-151.87, -115.28], [-151.91, -116.55], [-151.98, -118.66], [-154.58, -118.56], [-157.47, -118.46], [-157.38, -115.74], [-157.24, -111.72]], "holes": []}}, {"shape": {"outer": [[-161.95, -111.54], [-161.16, -111.57], [-160.79, -111.58], [-160.13, -111.61], [-159.3, -111.64], [-157.68, -111.7], [-157.24, -111.72], [-157.38, -115.74], [-157.47, -118.46], [-159.81, -118.37], [-162.16, -118.28], [-161.95, -111.54]], "holes": []}}, {"shape": {"outer": [[-166.99, -111.35], [-166.6, -111.36], [-162.88, -111.5], [-161.95, -111.54], [-162.16, -118.28], [-164.66, -118.19], [-167.24, -118.09], [-166.99, -111.35]], "holes": []}}, {"shape": {"outer": [[-129.8, -176.51], [-129.88, -178.44], [-129.9, -178.94], [-129.92, -179.41], [-128.48, -179.48], [-127.06, -179.53], [-127.07, -179.87], [-127.09, -180.62], [-127.11, -181.36], [-127.97, -181.33], [-129.09, -181.27], [-129.99, -181.24], [-130.09, -183.24], [-130.13, -183.9], [-130.15, -184.48], [-130.25, -186.35], [-131.81, -186.29], [-136.31, -186.1], [-136.12, -180.99], [-136.08, -179.86], [-135.95, -176.24], [-133.55, -176.34], [-132.34, -176.4], [-131.62, -176.43], [-131.35, -176.44], [-129.8, -176.51]], "holes": []}}, {"shape": {"outer": [[-135.77, -171.53], [-129.64, -171.81], [-129.67, -172.55], [-129.73, -174.17], [-129.78, -175.7], [-129.8, -176.51], [-131.35, -176.44], [-131.62, -176.43], [-132.34, -176.4], [-133.55, -176.34], [-135.95, -176.24], [-135.77, -171.53]], "holes": []}}, {"shape": {"outer": [[-135.6, -166.86], [-135.71, -169.97], [-135.77, -171.53], [-129.64, -171.81], [-129.63, -171.65], [-129.51, -168.2], [-129.47, -167.11], [-135.6, -166.86]], "holes": []}}, {"shape": {"outer": [[-135.42, -162.16], [-135.59, -166.57], [-135.6, -166.86], [-129.47, -167.11], [-129.44, -166.42], [-129.41, -165.56], [-129.38, -164.74], [-129.35, -164.03], [-129.33, -163.6], [-129.31, -163.24], [-129.28, -162.41], [-130.8, -162.34], [-130.82, -162.34], [-135.42, -162.16]], "holes": []}}, {"shape": {"outer": [[-135.27, -157.79], [-131.44, -157.93], [-130.64, -157.95], [-130.55, -155.64], [-130.54, -155.3], [-130.49, -154.07], [-130.42, -152.39], [-131.8, -152.34], [-131.67, -148.11], [-132.86, -148.9], [-134.93, -149.3], [-135.06, -152.2], [-135.17, -155.12], [-135.27, -157.79]], "holes": []}}, {"shape": {"outer": [[-122.03, -181.57], [-120.59, -181.64], [-117.98, -181.77], [-115.39, -181.87], [-115.45, -183.35], [-115.67, -188.84], [-120.89, -188.63], [-122.27, -188.57], [-122.08, -182.99], [-122.03, -181.57]], "holes": []}}, {"shape": {"outer": [[-114.11, -181.93], [-113.16, -181.98], [-111.63, -182.05], [-111.71, -184.14], [-111.9, -189.01], [-115.67, -188.84], [-115.45, -183.35], [-115.39, -181.87], [-114.11, -181.93]], "holes": []}}, {"shape": {"outer": [[-114.6, -177.0], [-115.56, -177.84], [-115.58, -178.73], [-115.67, -180.79], [-114.3, -180.85], [-112.73, -180.93], [-111.8, -180.97], [-110.86, -181.01], [-109.64, -181.07], [-109.68, -182.14], [-108.76, -182.17], [-108.19, -182.2], [-107.25, -182.25], [-106.18, -182.3], [-106.14, -181.21], [-106.1, -180.29], [-106.07, -179.5], [-106.05, -179.05], [-105.99, -177.52], [-105.95, -176.54], [-105.91, -175.57], [-109.56, -175.44], [-109.63, -177.56], [-111.32, -177.5], [-112.96, -177.44], [-112.94, -177.06], [-113.95, -177.03], [-114.6, -177.0]], "holes": []}}, {"shape": {"outer": [[-105.6, -168.35], [-105.64, -169.15], [-105.75, -171.67], [-105.78, -172.49], [-105.8, -172.79], [-105.85, -174.15], [-105.9, -175.23], [-105.91, -175.57], [-109.56, -175.44], [-109.44, -172.34], [-110.97, -172.27], [-111.1, -172.27], [-112.47, -172.21], [-112.76, -172.2], [-113.75, -172.16], [-114.46, -172.13], [-115.21, -171.46], [-115.06, -168.01], [-113.59, -168.05], [-105.6, -168.35]], "holes": []}}, {"shape": {"outer": [[-105.4, -163.74], [-105.38, -163.32], [-106.49, -163.29], [-107.6, -163.24], [-112.7, -163.08], [-114.6, -163.01], [-114.87, -163.0], [-115.06, -168.01], [-110.39, -168.18], [-109.64, -168.2], [-105.6, -168.35], [-105.55, -167.23], [-105.52, -166.49], [-105.48, -165.63], [-105.46, -165.08], [-105.45, -164.71], [-105.43, -164.43], [-105.41, -164.0], [-105.4, -163.74]], "holes": []}}, {"shape": {"outer": [[-103.31, -150.73], [-103.35, -151.88], [-103.4, -152.9], [-103.44, -153.71], [-102.26, -153.77], [-98.36, -153.94], [-98.22, -150.96], [-102.47, -150.76], [-103.31, -150.73]], "holes": []}}, {"shape": {"outer": [[-103.79, -161.79], [-103.59, -157.22], [-103.56, -156.37], [-103.44, -153.71], [-102.26, -153.77], [-98.36, -153.94], [-98.66, -162.0], [-101.28, -161.89], [-103.79, -161.79]], "holes": []}}, {"shape": {"outer": [[-90.09, -108.74], [-90.23, -111.92], [-90.28, -112.9], [-90.33, -114.04], [-88.65, -114.1], [-88.05, -114.12], [-87.69, -114.13], [-87.51, -114.13], [-87.32, -114.15], [-87.13, -108.84], [-90.09, -108.74]], "holes": []}}, {"shape": {"outer": [[-132.41, -97.56], [-132.57, -101.16], [-129.3, -101.27], [-128.39, -101.3], [-126.93, -101.35], [-126.87, -99.61], [-126.83, -98.45], [-126.8, -97.74], [-128.65, -97.68], [-132.41, -97.56]], "holes": []}}, {"shape": {"outer": [[-125.18, -90.27], [-126.49, -90.22], [-126.51, -90.85], [-126.54, -91.52], [-128.04, -91.46], [-132.1, -91.34], [-131.98, -88.81], [-131.94, -88.15], [-131.86, -86.49], [-125.04, -86.76], [-125.06, -87.06], [-125.1, -88.04], [-125.14, -89.04], [-125.16, -89.59], [-125.18, -90.27]], "holes": []}}, {"shape": {"outer": [[-125.18, -90.27], [-125.16, -89.59], [-125.14, -89.04], [-125.1, -88.04], [-125.06, -87.06], [-125.04, -86.76], [-125.01, -86.02], [-124.99, -85.49], [-124.97, -84.98], [-119.91, -85.17], [-119.94, -86.02], [-120.02, -88.23], [-120.1, -90.44], [-125.18, -90.27]], "holes": []}}, {"shape": {"outer": [[-124.69, -79.63], [-124.76, -80.8], [-124.85, -82.39], [-124.88, -83.05], [-124.92, -83.72], [-124.97, -84.98], [-119.91, -85.17], [-119.72, -81.08], [-119.66, -79.83], [-124.69, -79.63]], "holes": []}}, {"shape": {"outer": [[-119.66, -79.83], [-124.69, -79.63], [-124.68, -79.29], [-124.62, -78.37], [-124.6, -77.89], [-124.55, -76.91], [-124.5, -75.86], [-124.44, -74.63], [-122.6, -74.7], [-120.76, -74.79], [-120.29, -74.8], [-119.44, -74.84], [-119.66, -79.83]], "holes": []}}, {"shape": {"outer": [[-120.29, -74.8], [-120.76, -74.79], [-122.6, -74.7], [-124.44, -74.63], [-124.42, -74.25], [-124.38, -73.46], [-124.32, -72.3], [-124.29, -71.6], [-124.27, -71.22], [-124.21, -69.99], [-124.19, -69.75], [-124.15, -68.92], [-124.06, -67.16], [-119.96, -67.32], [-119.99, -67.98], [-120.03, -68.76], [-120.09, -70.15], [-120.13, -71.08], [-120.23, -73.53], [-120.29, -74.8]], "holes": []}}, {"shape": {"outer": [[-120.09, -70.15], [-119.54, -70.16], [-119.26, -70.17], [-118.9, -70.19], [-118.89, -69.94], [-118.85, -69.23], [-118.8, -68.03], [-118.57, -63.01], [-119.73, -62.97], [-122.38, -62.87], [-123.87, -62.85], [-123.94, -64.66], [-124.04, -66.67], [-124.06, -67.16], [-119.96, -67.32], [-119.99, -67.98], [-120.03, -68.76], [-120.09, -70.15]], "holes": []}}, {"shape": {"outer": [[-113.91, -63.19], [-115.6, -63.13], [-118.57, -63.01], [-118.8, -68.03], [-118.85, -69.23], [-118.89, -69.94], [-117.82, -69.98], [-115.96, -70.05], [-114.91, -70.1], [-114.2, -70.13], [-114.1, -67.84], [-113.91, -63.19]], "holes": []}}, {"shape": {"outer": [[-105.82, -68.5], [-105.83, -68.89], [-105.88, -70.42], [-106.37, -70.39], [-106.7, -70.38], [-106.98, -70.38], [-108.08, -70.33], [-109.91, -70.27], [-109.82, -68.36], [-109.65, -63.35], [-105.62, -63.5], [-105.63, -63.58], [-105.72, -65.86], [-105.79, -67.6], [-105.81, -68.08], [-105.82, -68.5]], "holes": []}}, {"shape": {"outer": [[-101.06, -70.57], [-101.04, -70.17], [-101.01, -69.74], [-100.99, -69.3], [-99.41, -69.36], [-94.32, -69.54], [-94.34, -69.94], [-94.36, -70.4], [-94.54, -73.86], [-101.2, -73.64], [-101.17, -73.02], [-101.15, -72.5], [-102.68, -72.46], [-104.98, -72.38], [-105.93, -72.35], [-105.9, -71.32], [-105.88, -70.42], [-105.62, -70.43], [-104.91, -70.45], [-103.67, -70.49], [-102.61, -70.52], [-101.06, -70.57]], "holes": []}}, {"shape": {"outer": [[-95.77, -97.3], [-95.63, -94.68], [-95.61, -94.26], [-95.52, -92.63], [-101.09, -92.44], [-101.26, -96.16], [-101.29, -97.08], [-99.87, -97.13], [-95.77, -97.3]], "holes": []}}, {"shape": {"outer": [[-105.93, -72.35], [-106.78, -72.33], [-106.91, -75.99], [-106.94, -76.94], [-105.14, -77.0], [-101.36, -77.14], [-101.32, -76.26], [-101.28, -75.48], [-101.25, -74.86], [-101.21, -73.9], [-101.2, -73.64], [-101.17, -73.02], [-101.15, -72.5], [-102.68, -72.46], [-104.98, -72.38], [-105.93, -72.35]], "holes": []}}, {"shape": {"outer": [[-106.94, -76.94], [-105.14, -77.0], [-101.36, -77.14], [-101.4, -78.13], [-101.41, -78.32], [-101.48, -79.6], [-101.51, -80.39], [-101.53, -80.95], [-101.55, -81.4], [-107.08, -81.22], [-107.05, -80.16], [-106.94, -76.94]], "holes": []}}, {"shape": {"outer": [[-107.08, -81.22], [-101.55, -81.4], [-101.59, -82.61], [-101.6, -83.08], [-101.62, -83.58], [-101.66, -84.32], [-101.68, -84.61], [-101.7, -85.12], [-101.74, -85.93], [-107.26, -85.78], [-107.23, -84.85], [-107.08, -81.22]], "holes": []}}, {"shape": {"outer": [[-101.74, -85.93], [-101.77, -86.59], [-101.79, -87.07], [-101.81, -87.53], [-101.86, -88.53], [-101.89, -89.03], [-101.89, -89.22], [-101.93, -89.93], [-101.94, -90.35], [-101.97, -90.96], [-107.45, -90.78], [-107.39, -89.24], [-107.26, -85.78], [-101.74, -85.93]], "holes": []}}, {"shape": {"outer": [[-145.09, -142.62], [-145.02, -140.12], [-144.93, -137.6], [-144.29, -137.63], [-143.49, -137.66], [-142.66, -137.68], [-139.94, -137.78], [-139.96, -138.61], [-139.97, -138.99], [-139.99, -139.47], [-140.01, -140.05], [-140.1, -142.82], [-144.44, -142.65], [-145.09, -142.62]], "holes": []}}, {"shape": {"outer": [[-144.93, -137.6], [-146.21, -137.55], [-146.99, -137.52], [-147.57, -137.5], [-149.24, -137.44], [-150.14, -137.4], [-150.18, -139.05], [-150.28, -142.41], [-149.38, -142.45], [-146.38, -142.57], [-145.09, -142.62], [-145.02, -140.12], [-144.93, -137.6]], "holes": []}}, {"shape": {"outer": [[-158.4, -135.89], [-157.27, -135.93], [-155.5, -136.02], [-155.07, -136.03], [-154.63, -136.05], [-154.38, -136.06], [-154.03, -136.08], [-153.71, -136.09], [-153.04, -136.12], [-152.5, -136.15], [-151.27, -136.19], [-151.04, -129.7], [-157.43, -129.44], [-158.2, -129.41], [-158.33, -133.85], [-158.37, -134.9], [-158.4, -135.89]], "holes": []}}, {"shape": {"outer": [[-163.35, -135.68], [-163.07, -135.69], [-162.09, -135.73], [-159.06, -135.86], [-158.83, -135.87], [-158.4, -135.89], [-158.37, -134.9], [-158.33, -133.85], [-158.2, -129.41], [-161.95, -129.24], [-163.16, -129.2], [-163.35, -135.68]], "holes": []}}, {"shape": {"outer": [[-167.54, -135.5], [-166.54, -135.55], [-165.7, -135.58], [-163.82, -135.66], [-163.35, -135.68], [-163.16, -129.2], [-166.36, -129.06], [-167.32, -129.02], [-167.4, -131.32], [-167.54, -135.5]], "holes": []}}, {"shape": {"outer": [[-168.59, -141.68], [-172.59, -141.52], [-172.81, -141.52], [-173.29, -141.49], [-173.13, -136.44], [-173.09, -135.27], [-172.7, -135.28], [-172.39, -135.29], [-172.13, -135.3], [-172.11, -134.93], [-172.1, -134.52], [-171.96, -131.16], [-171.05, -131.2], [-170.25, -131.23], [-170.38, -135.38], [-168.41, -135.46], [-168.59, -141.68]], "holes": []}}, {"shape": {"outer": [[-173.0, -126.04], [-172.96, -125.12], [-171.72, -125.15], [-171.7, -124.65], [-169.55, -124.74], [-169.48, -123.21], [-169.41, -121.61], [-171.09, -121.54], [-171.06, -120.06], [-172.77, -120.0], [-175.03, -119.91], [-177.95, -119.81], [-178.29, -129.82], [-176.1, -129.91], [-175.77, -129.92], [-175.2, -129.93], [-174.03, -129.98], [-173.15, -130.0], [-173.1, -128.77], [-173.08, -128.07], [-173.06, -127.59], [-173.0, -126.04]], "holes": []}}, {"shape": {"outer": [[-170.92, -115.97], [-172.62, -115.91], [-173.54, -115.88], [-174.32, -115.84], [-174.99, -115.81], [-175.34, -115.8], [-175.64, -115.79], [-177.81, -115.71], [-177.7, -112.69], [-177.63, -110.95], [-176.05, -111.0], [-175.0, -111.04], [-174.82, -111.05], [-173.38, -111.11], [-172.43, -111.15], [-171.59, -111.19], [-171.22, -111.2], [-168.89, -111.29], [-169.12, -117.05], [-170.0, -117.02], [-170.95, -116.98], [-170.92, -115.97]], "holes": []}}, {"shape": {"outer": [[-167.43, -117.12], [-163.25, -117.26], [-161.35, -117.32], [-161.16, -111.57], [-161.95, -111.54], [-162.88, -111.5], [-166.6, -111.36], [-166.99, -111.35], [-167.21, -111.34], [-167.43, -117.12]], "holes": []}}, {"shape": {"outer": [[-155.75, -111.77], [-156.19, -111.76], [-157.24, -111.72], [-157.68, -111.7], [-159.3, -111.64], [-160.13, -111.61], [-160.79, -111.58], [-161.16, -111.57], [-161.35, -117.32], [-158.91, -117.4], [-155.95, -117.51], [-155.75, -111.77]], "holes": []}}, {"shape": {"outer": [[-155.95, -117.51], [-154.0, -117.58], [-151.06, -117.68], [-150.86, -111.95], [-151.19, -111.94], [-151.77, -111.92], [-153.34, -111.86], [-154.01, -111.84], [-154.65, -111.81], [-155.16, -111.8], [-155.75, -111.77], [-155.95, -117.51]], "holes": []}}, {"shape": {"outer": [[-148.78, -110.63], [-148.12, -110.65], [-147.41, -110.67], [-145.9, -110.73], [-143.87, -110.79], [-143.45, -110.8], [-142.42, -110.83], [-142.39, -109.74], [-142.23, -105.69], [-143.28, -105.64], [-143.7, -105.62], [-147.22, -105.48], [-147.92, -105.45], [-148.6, -105.43], [-148.74, -109.37], [-148.78, -110.63]], "holes": []}}, {"shape": {"outer": [[-138.6, -105.83], [-138.68, -108.97], [-138.71, -109.97], [-138.74, -110.95], [-140.72, -110.89], [-141.36, -110.87], [-142.42, -110.83], [-142.39, -109.74], [-142.23, -105.69], [-138.6, -105.83]], "holes": []}}, {"shape": {"outer": [[-63.84, -132.08], [-63.53, -124.47], [-61.25, -124.56], [-61.21, -123.68], [-61.19, -123.16], [-61.15, -122.3], [-61.09, -121.03], [-62.33, -120.97], [-63.08, -120.94], [-63.55, -120.92], [-64.32, -120.88], [-65.99, -120.82], [-68.52, -120.73], [-70.75, -120.62], [-72.19, -120.56], [-72.32, -120.54], [-75.57, -120.41], [-76.97, -120.35], [-77.04, -121.84], [-77.3, -127.77], [-77.37, -129.34], [-77.42, -130.56], [-77.47, -131.75], [-77.51, -132.52], [-77.54, -133.23], [-77.56, -133.71], [-77.65, -135.79], [-77.65, -135.98], [-75.53, -136.08], [-73.05, -136.21], [-71.9, -136.26], [-70.82, -136.3], [-66.7, -136.46], [-65.08, -136.52], [-63.85, -136.57], [-63.74, -136.57], [-61.85, -136.61], [-61.79, -135.41], [-61.73, -134.26], [-61.66, -132.93], [-61.62, -132.19], [-63.84, -132.08]], "holes": []}}, {"shape": {"outer": [[-2382.93, 365.68], [-2387.37, 354.62], [-2389.74, 334.0], [-2389.88, 329.24], [-2345.86, 327.89], [-2346.32, 311.67], [-2349.22, 311.86], [-2348.85, 256.37], [-2337.65, 255.58], [-2325.52, 270.53], [-2321.37, 273.23], [-2322.16, 280.0], [-2324.15, 282.75], [-2328.89, 276.31], [-2344.08, 287.43], [-2339.34, 293.85], [-2324.83, 283.24], [-2329.9, 293.87], [-2330.99, 298.46], [-2330.1, 329.1], [-2246.17, 326.51], [-2246.03, 308.7], [-2258.85, 308.69], [-2259.25, 284.65], [-2253.19, 281.32], [-2195.21, 311.27], [-2180.96, 318.0], [-2197.25, 331.56], [-2217.46, 344.26], [-2251.91, 366.15], [-2267.49, 371.39], [-2305.59, 365.09], [-2382.93, 365.68]], "holes": []}}, {"shape": {"outer": [[-2504.66, 340.34], [-2465.95, 339.47], [-2463.22, 338.09], [-2463.61, 324.83], [-2465.19, 323.66], [-2505.04, 324.56], [-2504.66, 340.34]], "holes": []}}, {"shape": {"outer": [[-2485.01, 343.66], [-2484.96, 351.1], [-2488.19, 351.19], [-2489.38, 358.03], [-2489.32, 367.17], [-2524.21, 358.42], [-2536.63, 355.95], [-2576.11, 358.33], [-2590.1, 356.61], [-2616.29, 348.12], [-2620.03, 344.72], [-2623.4, 340.52], [-2623.84, 336.72], [-2621.78, 334.73], [-2615.99, 335.85], [-2610.25, 337.55], [-2605.81, 339.45], [-2602.88, 342.6], [-2516.52, 340.36], [-2505.28, 344.32], [-2485.01, 343.66]], "holes": []}}, {"shape": {"outer": [[-2509.64, 266.43], [-2474.65, 264.86], [-2474.29, 262.38], [-2473.38, 260.49], [-2471.55, 258.5], [-2469.7, 257.35], [-2465.92, 255.63], [-2465.84, 238.62], [-2466.62, 237.11], [-2468.28, 235.78], [-2487.16, 236.23], [-2496.89, 238.52], [-2503.78, 239.19], [-2508.74, 242.69], [-2510.27, 247.19], [-2509.64, 266.43]], "holes": []}}, {"shape": {"outer": [[-2454.69, 287.67], [-2455.27, 278.78], [-2441.64, 278.15], [-2440.3, 279.65], [-2442.21, 286.5], [-2443.88, 287.6], [-2454.69, 287.67]], "holes": []}}, {"shape": {"outer": [[-2654.18, 253.51], [-2647.97, 257.38], [-2641.74, 259.39], [-2627.29, 258.97], [-2620.99, 260.98], [-2616.24, 264.72], [-2614.56, 272.44], [-2615.9, 273.86], [-2623.61, 273.92], [-2624.23, 269.49], [-2626.14, 268.24], [-2651.85, 269.15], [-2653.69, 267.67], [-2654.18, 253.51]], "holes": []}}, {"shape": {"outer": [[-2619.8, 285.14], [-2612.99, 284.63], [-2611.63, 283.85], [-2610.31, 281.96], [-2609.82, 279.19], [-2611.15, 278.17], [-2612.31, 277.4], [-2620.43, 277.3], [-2621.21, 278.38], [-2621.04, 284.37], [-2619.8, 285.14]], "holes": []}}, {"shape": {"outer": [[-2655.32, 301.05], [-2655.59, 294.51], [-2654.03, 292.28], [-2613.93, 291.37], [-2611.44, 293.47], [-2610.55, 296.13], [-2610.22, 299.11], [-2610.26, 303.23], [-2611.25, 305.69], [-2613.12, 308.41], [-2614.69, 310.24], [-2617.94, 310.25], [-2618.55, 300.16], [-2655.32, 301.05]], "holes": []}}, {"shape": {"outer": [[-2635.87, 328.75], [-2636.15, 319.94], [-2654.97, 320.54], [-2654.7, 329.34], [-2635.87, 328.75]], "holes": []}}, {"shape": {"outer": [[-2603.15, 291.78], [-2590.57, 291.42], [-2588.21, 297.34], [-2584.89, 299.68], [-2575.74, 304.59], [-2575.5, 318.42], [-2608.54, 319.21], [-2608.28, 328.18], [-2610.46, 328.41], [-2610.32, 333.34], [-2617.42, 332.01], [-2621.3, 330.18], [-2622.98, 328.04], [-2623.37, 325.87], [-2621.08, 320.7], [-2617.28, 320.03], [-2613.56, 316.93], [-2610.39, 313.84], [-2607.48, 310.52], [-2604.89, 304.7], [-2603.0, 297.04], [-2603.15, 291.78]], "holes": []}}, {"shape": {"outer": [[-2603.04, 275.76], [-2585.42, 258.9], [-2585.01, 256.3], [-2611.45, 257.55], [-2612.47, 258.87], [-2610.4, 265.93], [-2607.56, 271.28], [-2603.04, 275.76]], "holes": []}}, {"shape": {"outer": [[-2838.36, 350.8], [-2833.77, 346.24], [-2830.89, 348.47], [-2826.64, 348.77], [-2823.94, 351.86], [-2820.33, 352.46], [-2817.56, 350.96], [-2816.41, 348.83], [-2813.86, 346.86], [-2812.03, 344.41], [-2811.62, 341.59], [-2812.81, 339.52], [-2814.99, 337.12], [-2817.22, 335.36], [-2817.96, 334.47], [-2805.81, 328.01], [-2792.19, 323.32], [-2782.39, 320.86], [-2774.09, 320.21], [-2768.92, 321.19], [-2762.41, 324.15], [-2746.02, 349.75], [-2740.26, 360.24], [-2765.96, 372.19], [-2802.42, 390.12], [-2836.63, 411.59], [-2836.9, 389.26], [-2824.87, 388.13], [-2811.72, 377.36], [-2821.69, 369.12], [-2825.9, 362.21], [-2826.13, 358.01], [-2828.59, 354.58], [-2838.36, 350.8]], "holes": []}}, {"shape": {"outer": [[-2473.55, 350.5], [-2457.43, 350.18], [-2457.56, 343.86], [-2473.67, 344.18], [-2473.55, 350.5]], "holes": []}}, {"shape": {"outer": [[-2339.55, 238.93], [-2337.13, 235.42], [-2342.33, 229.97], [-2346.14, 224.67], [-2348.61, 216.92], [-2349.42, 211.34], [-2348.68, 204.7], [-2346.71, 198.12], [-2344.08, 192.08], [-2341.04, 187.23], [-2338.43, 180.36], [-2329.18, 180.0], [-2328.16, 182.76], [-2317.6, 182.74], [-2313.32, 178.33], [-2286.28, 178.48], [-2286.33, 166.92], [-2296.88, 167.88], [-2309.8, 167.23], [-2326.29, 164.29], [-2335.13, 161.74], [-2339.01, 161.72], [-2363.54, 150.84], [-2376.88, 144.09], [-2388.27, 141.17], [-2397.54, 139.87], [-2420.58, 140.57], [-2424.22, 143.86], [-2419.95, 237.92], [-2419.01, 240.15], [-2415.24, 241.28], [-2404.74, 240.84], [-2406.74, 225.38], [-2408.0, 223.41], [-2412.86, 222.53], [-2410.37, 217.13], [-2409.24, 212.54], [-2409.53, 208.26], [-2410.55, 204.05], [-2405.3, 198.91], [-2405.41, 193.55], [-2401.03, 193.34], [-2401.46, 179.86], [-2374.58, 179.2], [-2373.66, 220.77], [-2365.46, 220.45], [-2365.31, 231.98], [-2363.11, 238.12], [-2351.04, 237.45], [-2350.99, 239.29], [-2339.55, 238.93]], "holes": []}}, {"shape": {"outer": [[-2319.7, 257.2], [-2315.33, 259.97], [-2308.91, 261.67], [-2302.14, 259.87], [-2299.91, 257.1], [-2300.05, 255.21], [-2300.62, 251.83], [-2302.03, 250.94], [-2318.63, 251.1], [-2320.45, 252.21], [-2321.33, 253.61], [-2321.18, 255.63], [-2319.7, 257.2]], "holes": []}}, {"shape": {"outer": [[-2220.22, 19.94], [-2211.96, 20.2], [-2205.03, 20.91], [-2196.32, 17.43], [-2191.13, 16.51], [-2191.14, 11.63], [-2195.35, 12.3], [-2197.83, 13.23], [-2199.38, 8.2], [-2195.58, 6.45], [-2189.43, 5.36], [-2193.1, -1.06], [-2195.13, -7.71], [-2219.6, -7.08], [-2221.19, -3.06], [-2222.98, -1.06], [-2225.66, -0.68], [-2228.0, 0.73], [-2229.96, 3.05], [-2230.61, 5.93], [-2230.65, 8.61], [-2220.22, 19.94]], "holes": []}}, {"shape": {"outer": [[-2325.69, 17.59], [-2298.22, 17.12], [-2308.75, 46.85], [-2310.5, 52.0], [-2309.11, 52.33], [-2296.14, 49.11], [-2285.42, 41.72], [-2277.31, 28.66], [-2272.59, 24.11], [-2267.27, 21.47], [-2265.01, 13.55], [-2261.35, 12.38], [-2257.41, 14.66], [-2255.69, 15.26], [-2253.2, 14.91], [-2248.71, 10.78], [-2247.83, 7.82], [-2249.11, 4.72], [-2252.57, 3.17], [-2261.32, 0.8], [-2265.69, -0.55], [-2272.06, -5.56], [-2326.03, -3.49], [-2325.69, 17.59]], "holes": []}}, {"shape": {"outer": [[-2334.02, 4.04], [-2334.23, -3.26], [-2353.86, -2.52], [-2353.65, 4.69], [-2334.02, 4.04]], "holes": []}}, {"shape": {"outer": [[-2013.54, -205.33], [-2048.46, -203.79], [-2098.49, -201.97], [-2097.76, -175.16], [-2080.27, -175.84], [-2080.76, -187.01], [-2067.46, -187.6], [-2066.8, -172.59], [-2041.23, -173.7], [-2041.18, -172.62], [-2032.6, -172.99], [-2032.64, -173.95], [-2032.49, -175.35], [-2033.63, -185.0], [-2037.17, -186.52], [-2020.51, -190.34], [-2019.16, -191.3], [-2017.5, -193.09], [-2016.56, -195.73], [-2016.09, -198.19], [-2014.45, -200.06], [-2013.17, -200.31], [-2013.54, -205.33]], "holes": []}}, {"shape": {"outer": [[-1926.73, -202.32], [-1926.69, -203.2], [-1926.85, -204.44], [-1927.43, -205.22], [-1928.35, -206.04], [-1929.59, -206.6], [-1934.8, -206.33], [-1936.79, -192.77], [-1935.99, -172.78], [-1929.99, -173.09], [-1931.36, -176.5], [-1932.11, -197.23], [-1926.6, -197.41], [-1926.73, -202.32]], "holes": []}}, {"shape": {"outer": [[-2005.66, -205.87], [-2005.53, -201.02], [-2003.35, -200.42], [-2002.65, -199.53], [-2001.96, -195.77], [-1998.05, -192.8], [-1993.0, -188.95], [-1981.83, -189.21], [-1981.81, -187.98], [-1968.67, -188.63], [-1968.25, -176.28], [-1949.89, -177.07], [-1950.53, -192.18], [-1936.79, -192.77], [-1934.8, -206.33], [-1936.11, -208.51], [-2005.66, -205.87]], "holes": []}}, {"shape": {"outer": [[-2013.17, -200.31], [-2012.91, -193.71], [-2014.6, -191.65], [-2016.06, -189.52], [-2012.54, -187.29], [-2012.94, -185.86], [-2016.88, -185.71], [-2033.63, -185.0], [-2037.17, -186.52], [-2020.51, -190.34], [-2019.16, -191.3], [-2017.5, -193.09], [-2016.56, -195.73], [-2016.09, -198.19], [-2014.45, -200.06], [-2013.17, -200.31]], "holes": []}}, {"shape": {"outer": [[-2005.53, -201.02], [-2005.04, -193.78], [-2002.86, -191.72], [-2001.57, -189.69], [-2000.83, -186.55], [-1981.81, -187.98], [-1981.83, -189.21], [-1993.0, -188.95], [-1998.05, -192.8], [-2001.96, -195.77], [-2002.65, -199.53], [-2003.35, -200.42], [-2005.53, -201.02]], "holes": []}}, {"shape": {"outer": [[-2790.22, 31.04], [-2766.18, 30.35], [-2766.13, 25.98], [-2756.21, 25.85], [-2756.73, 10.07], [-2774.95, 10.68], [-2775.16, 5.66], [-2781.56, 6.28], [-2790.64, 22.88], [-2790.22, 31.04]], "holes": []}}, {"shape": {"outer": [[-1913.85, 2.39], [-1920.54, -1.33], [-1923.7, -1.39], [-1922.92, 23.16], [-1918.36, 23.01], [-1918.22, 26.56], [-1917.74, 27.39], [-1915.52, 29.77], [-1913.59, 29.73], [-1911.28, 29.52], [-1909.11, 27.06], [-1909.31, 26.04], [-1907.82, 22.95], [-1907.59, 22.01], [-1907.52, 20.9], [-1907.64, 19.93], [-1913.85, 2.39]], "holes": []}}, {"shape": {"outer": [[-1872.08, -0.36], [-1873.52, -11.36], [-1882.29, -10.03], [-1883.41, -9.21], [-1891.0, 1.34], [-1888.55, 10.76], [-1891.57, 11.69], [-1880.76, 46.08], [-1879.78, 45.85], [-1878.94, 45.3], [-1878.3, 44.25], [-1877.94, 42.53], [-1877.62, 41.23], [-1877.12, 38.66], [-1876.69, 35.23], [-1872.08, -0.36]], "holes": []}}, {"shape": {"outer": [[-1855.76, -70.95], [-1856.13, -82.7], [-1858.28, -83.75], [-1859.89, -84.99], [-1860.57, -86.59], [-1860.64, -87.91], [-1860.74, -90.82], [-1873.01, -90.31], [-1872.26, -70.31], [-1859.28, -70.81], [-1855.76, -70.95]], "holes": []}}, {"shape": {"outer": [[-1856.13, -82.7], [-1856.13, -85.93], [-1857.08, -86.98], [-1857.2, -89.01], [-1860.74, -90.82], [-1860.64, -87.91], [-1860.57, -86.59], [-1859.89, -84.99], [-1858.28, -83.75], [-1856.13, -82.7]], "holes": []}}, {"shape": {"outer": [[1264.43, 1982.19], [1181.26, 2051.14], [1168.73, 2053.03], [1164.4, 2046.77], [1208.06, 2008.02], [1251.28, 1975.51], [1264.43, 1982.19]], "holes": []}}, {"shape": {"outer": [[-2260.87, 79.75], [-2294.03, 80.67], [-2301.97, 93.1], [-2304.59, 95.3], [-2307.79, 97.03], [-2308.99, 97.09], [-2309.46, 95.84], [-2305.02, 81.54], [-2304.0, 75.37], [-2304.47, 68.79], [-2306.48, 64.3], [-2309.62, 61.0], [-2311.41, 60.02], [-2312.65, 58.85], [-2312.97, 57.38], [-2312.48, 56.17], [-2311.41, 55.86], [-2304.23, 54.9], [-2300.96, 54.25], [-2295.81, 55.06], [-2289.28, 58.1], [-2285.61, 60.23], [-2275.29, 66.76], [-2266.4, 73.68], [-2260.87, 79.75]], "holes": []}}, {"shape": {"outer": [[-132.41, -97.56], [-132.57, -101.16], [-129.3, -101.27], [-128.39, -101.3], [-126.93, -101.35], [-126.87, -99.61], [-126.83, -98.45], [-126.8, -97.74], [-128.65, -97.68], [-132.41, -97.56]], "holes": []}}, {"shape": {"outer": [[-131.98, -88.81], [-132.1, -91.34], [-132.19, -93.19], [-126.62, -93.38], [-126.02, -93.4], [-125.32, -93.42], [-125.31, -93.15], [-125.28, -92.39], [-125.24, -91.56], [-125.19, -90.43], [-125.18, -90.27], [-125.16, -89.59], [-125.14, -89.04], [-126.43, -89.0], [-131.98, -88.81]], "holes": []}}, {"shape": {"outer": [[-126.43, -89.0], [-125.14, -89.04], [-121.48, -89.16], [-121.42, -88.18], [-121.37, -87.21], [-121.28, -85.44], [-121.26, -84.9], [-121.24, -84.48], [-121.2, -83.85], [-123.2, -83.78], [-124.92, -83.72], [-126.19, -83.67], [-126.23, -84.72], [-126.26, -85.34], [-126.34, -87.01], [-126.38, -88.01], [-126.4, -88.34], [-126.43, -89.0]], "holes": []}}, {"shape": {"outer": [[-125.93, -78.56], [-126.04, -80.74], [-126.19, -83.67], [-124.92, -83.72], [-123.2, -83.78], [-121.2, -83.85], [-121.17, -83.2], [-121.1, -81.67], [-121.06, -80.97], [-120.95, -78.77], [-125.93, -78.56]], "holes": []}}, {"shape": {"outer": [[-125.93, -78.56], [-125.88, -77.62], [-125.67, -73.41], [-124.38, -73.46], [-120.7, -73.63], [-120.76, -74.79], [-120.79, -75.47], [-120.89, -77.26], [-120.91, -77.83], [-120.94, -78.53], [-120.95, -78.77], [-125.93, -78.56]], "holes": []}}, {"shape": {"outer": [[-131.21, -73.23], [-125.67, -73.41], [-124.38, -73.46], [-120.7, -73.63], [-120.69, -73.09], [-120.66, -72.47], [-122.43, -72.38], [-123.41, -72.34], [-124.32, -72.3], [-124.29, -71.6], [-124.27, -71.22], [-124.21, -69.99], [-124.19, -69.75], [-124.15, -68.92], [-125.3, -68.88], [-130.99, -68.69], [-131.21, -73.23]], "holes": []}}, {"shape": {"outer": [[-119.73, -62.97], [-118.57, -63.01], [-115.6, -63.13], [-115.86, -68.13], [-115.96, -70.05], [-117.82, -69.98], [-117.93, -72.58], [-118.69, -72.54], [-119.36, -72.51], [-119.26, -70.17], [-119.54, -70.16], [-120.09, -70.15], [-120.03, -68.76], [-119.99, -67.98], [-119.96, -67.32], [-119.86, -65.5], [-119.73, -63.09], [-119.73, -62.97]], "holes": []}}, {"shape": {"outer": [[-101.53, -102.78], [-101.49, -101.86], [-101.45, -100.81], [-101.42, -100.2], [-101.36, -98.66], [-95.84, -98.87], [-96.01, -102.04], [-96.05, -102.9], [-98.79, -102.84], [-99.43, -102.82], [-101.53, -102.78]], "holes": []}}, {"shape": {"outer": [[-95.38, -90.16], [-95.52, -92.63], [-95.61, -94.26], [-95.63, -94.68], [-101.09, -94.47], [-102.13, -94.42], [-102.11, -93.98], [-102.04, -92.41], [-101.98, -91.2], [-101.97, -90.96], [-101.94, -90.35], [-101.93, -89.93], [-100.98, -89.96], [-95.38, -90.16]], "holes": []}}, {"shape": {"outer": [[-105.62, -89.8], [-104.87, -89.82], [-101.93, -89.93], [-100.98, -89.96], [-100.84, -85.63], [-100.8, -84.65], [-101.68, -84.61], [-103.66, -84.54], [-105.43, -84.48], [-105.47, -85.44], [-105.56, -88.04], [-105.59, -88.77], [-105.59, -89.1], [-105.62, -89.8]], "holes": []}}, {"shape": {"outer": [[-105.43, -84.48], [-105.34, -82.06], [-105.33, -81.68], [-105.29, -80.53], [-105.24, -79.46], [-101.48, -79.6], [-100.62, -79.63], [-100.65, -80.7], [-100.8, -84.65], [-101.68, -84.61], [-103.66, -84.54], [-105.43, -84.48]], "holes": []}}, {"shape": {"outer": [[-105.24, -79.46], [-101.48, -79.6], [-100.62, -79.63], [-100.57, -78.66], [-100.39, -74.24], [-105.04, -74.09], [-105.06, -74.73], [-105.11, -76.08], [-105.14, -77.0], [-105.18, -77.86], [-105.19, -78.19], [-105.2, -78.51], [-105.24, -79.46]], "holes": []}}, {"shape": {"outer": [[-105.04, -74.09], [-105.02, -73.51], [-105.0, -72.91], [-102.69, -72.98], [-101.94, -73.0], [-101.17, -73.02], [-101.15, -72.5], [-101.11, -71.68], [-101.06, -70.57], [-101.04, -70.17], [-101.01, -69.74], [-94.34, -69.94], [-94.36, -70.4], [-94.54, -73.91], [-94.57, -74.45], [-100.39, -74.24], [-105.04, -74.09]], "holes": []}}, {"shape": {"outer": [[-109.65, -63.35], [-109.82, -68.36], [-109.91, -70.27], [-108.08, -70.33], [-108.1, -70.89], [-108.17, -72.82], [-107.33, -72.85], [-106.45, -72.88], [-106.37, -70.39], [-105.88, -70.42], [-105.83, -68.89], [-105.82, -68.5], [-105.81, -68.08], [-105.79, -67.6], [-105.72, -65.86], [-105.63, -63.58], [-105.62, -63.5], [-109.65, -63.35]], "holes": []}}, {"shape": {"outer": [[-115.86, -68.13], [-114.72, -68.18], [-113.99, -68.21], [-109.82, -68.36], [-109.91, -70.27], [-109.93, -70.84], [-110.03, -73.0], [-110.05, -73.41], [-114.38, -73.32], [-115.2, -73.3], [-116.1, -73.27], [-116.07, -72.82], [-115.98, -70.65], [-115.96, -70.05], [-115.86, -68.13]], "holes": []}}, {"shape": {"outer": [[-119.44, -74.84], [-119.66, -79.83], [-119.72, -81.08], [-119.91, -85.17], [-119.94, -86.02], [-120.02, -88.23], [-119.11, -88.27], [-118.27, -88.31], [-116.79, -88.36], [-113.64, -88.47], [-109.22, -88.62], [-108.4, -88.65], [-107.89, -88.67], [-107.02, -88.7], [-106.71, -80.41], [-106.52, -75.29], [-107.89, -75.24], [-118.53, -74.88], [-119.44, -74.84]], "holes": []}}, {"shape": {"outer": [[-153.88, -142.27], [-150.28, -142.41], [-149.38, -142.45], [-149.3, -139.35], [-147.52, -139.41], [-146.29, -139.46], [-146.26, -138.5], [-146.21, -137.55], [-144.93, -137.6], [-144.29, -137.63], [-144.28, -137.17], [-144.27, -136.97], [-144.26, -136.49], [-145.27, -136.44], [-148.92, -136.29], [-149.21, -136.27], [-150.13, -136.24], [-150.77, -136.21], [-151.27, -136.19], [-152.5, -136.15], [-153.04, -136.12], [-153.71, -136.09], [-153.88, -142.27]], "holes": []}}, {"shape": {"outer": [[-142.39, -109.74], [-142.23, -105.69], [-138.6, -105.83], [-138.68, -108.97], [-138.71, -109.97], [-138.74, -110.95], [-140.72, -110.89], [-141.36, -110.87], [-142.42, -110.83], [-143.45, -110.8], [-143.5, -112.23], [-144.42, -112.19], [-144.39, -111.41], [-144.37, -110.8], [-144.33, -109.67], [-143.83, -109.69], [-142.39, -109.74]], "holes": []}}, {"shape": {"outer": [[-142.39, -109.74], [-142.23, -105.69], [-143.28, -105.64], [-143.7, -105.62], [-147.22, -105.48], [-147.37, -109.55], [-145.86, -109.62], [-144.33, -109.67], [-143.83, -109.69], [-142.39, -109.74]], "holes": []}}, {"shape": {"outer": [[-153.34, -111.86], [-151.77, -111.92], [-151.19, -111.94], [-151.14, -110.56], [-150.81, -110.57], [-148.78, -110.63], [-148.12, -110.65], [-147.41, -110.67], [-147.37, -109.55], [-147.22, -105.48], [-147.92, -105.45], [-148.6, -105.43], [-153.13, -105.24], [-153.22, -107.99], [-153.23, -108.43], [-153.3, -110.46], [-153.32, -111.08], [-153.34, -111.86]], "holes": []}}, {"shape": {"outer": [[-177.81, -115.71], [-175.64, -115.79], [-175.56, -113.57], [-174.87, -113.6], [-174.24, -113.63], [-173.47, -113.66], [-172.53, -113.69], [-172.43, -111.15], [-171.59, -111.19], [-171.22, -111.2], [-168.89, -111.29], [-168.31, -111.3], [-167.96, -111.31], [-167.21, -111.34], [-166.99, -111.35], [-166.6, -111.36], [-162.88, -111.5], [-161.95, -111.54], [-161.16, -111.57], [-160.79, -111.58], [-160.13, -111.61], [-159.3, -111.64], [-157.68, -111.7], [-157.24, -111.72], [-157.38, -115.74], [-156.48, -116.21], [-156.11, -116.95], [-155.87, -116.96], [-154.83, -116.99], [-154.92, -119.83], [-155.07, -123.85], [-155.2, -127.6], [-155.4, -133.06], [-155.41, -133.39], [-155.5, -136.02], [-157.27, -135.93], [-158.4, -135.89], [-158.83, -135.87], [-159.06, -135.86], [-162.09, -135.73], [-163.07, -135.69], [-163.35, -135.68], [-163.82, -135.66], [-165.7, -135.58], [-166.54, -135.55], [-167.54, -135.5], [-167.74, -135.49], [-167.94, -135.49], [-168.41, -135.46], [-170.38, -135.38], [-171.2, -135.35], [-172.13, -135.3], [-172.39, -135.29], [-172.7, -135.28], [-173.09, -135.27], [-173.34, -135.27], [-174.22, -135.23], [-175.56, -135.17], [-176.25, -135.14], [-176.23, -134.41], [-176.1, -129.91], [-178.29, -129.82], [-177.95, -119.81], [-177.81, -115.71]], "holes": []}}, {"shape": {"outer": [[-105.22, -159.49], [-105.29, -161.18], [-105.31, -161.72], [-105.38, -163.32], [-105.4, -163.74], [-103.88, -163.81], [-102.7, -163.86], [-98.74, -164.03], [-98.66, -162.0], [-98.58, -159.75], [-104.57, -159.52], [-105.22, -159.49]], "holes": []}}, {"shape": {"outer": [[-105.91, -175.57], [-105.95, -176.54], [-105.99, -177.52], [-104.45, -177.59], [-104.34, -177.6], [-103.6, -177.63], [-99.25, -177.83], [-99.22, -176.83], [-99.08, -173.09], [-103.78, -172.88], [-103.84, -174.27], [-103.89, -175.66], [-105.91, -175.57]], "holes": []}}, {"shape": {"outer": [[-135.71, -169.97], [-135.77, -171.53], [-135.95, -176.24], [-133.55, -176.34], [-132.34, -176.4], [-131.62, -176.43], [-131.35, -176.44], [-131.24, -173.39], [-131.11, -170.17], [-135.71, -169.97]], "holes": []}}, {"shape": {"outer": [[-134.93, -149.3], [-135.06, -152.2], [-131.8, -152.34], [-130.42, -152.39], [-130.38, -151.55], [-130.36, -151.05], [-130.34, -150.62], [-130.24, -148.36], [-131.76, -148.32], [-131.81, -149.41], [-134.93, -149.3]], "holes": []}}, {"shape": {"outer": [[-135.06, -152.2], [-135.17, -155.12], [-130.54, -155.3], [-130.49, -154.07], [-130.42, -152.39], [-131.8, -152.34], [-135.06, -152.2]], "holes": []}}, {"shape": {"outer": [[-127.27, -163.67], [-127.35, -165.59], [-127.38, -166.5], [-129.44, -166.42], [-129.47, -167.11], [-129.51, -168.2], [-129.63, -171.65], [-129.64, -171.81], [-129.67, -172.55], [-129.73, -174.17], [-129.78, -175.7], [-129.8, -176.51], [-129.88, -178.44], [-128.9, -178.48], [-127.86, -178.53], [-127.88, -179.02], [-127.97, -181.33], [-127.11, -181.36], [-126.5, -181.39], [-125.82, -181.42], [-124.28, -181.49], [-122.03, -181.57], [-120.59, -181.64], [-117.98, -181.77], [-115.39, -181.87], [-114.11, -181.93], [-113.16, -181.98], [-111.63, -182.05], [-111.05, -182.07], [-110.38, -182.1], [-110.09, -182.11], [-109.68, -182.14], [-108.76, -182.17], [-108.19, -182.2], [-108.11, -180.19], [-108.08, -179.4], [-107.19, -179.45], [-106.07, -179.5], [-106.05, -179.05], [-105.99, -177.52], [-105.95, -176.54], [-105.91, -175.57], [-105.9, -175.23], [-105.85, -174.15], [-105.8, -172.79], [-105.78, -172.49], [-105.75, -171.67], [-105.64, -169.15], [-105.6, -168.35], [-105.55, -167.23], [-107.62, -167.12], [-107.59, -166.38], [-107.5, -164.36], [-110.49, -164.26], [-112.74, -164.19], [-112.7, -163.08], [-114.6, -163.01], [-114.87, -163.0], [-117.45, -162.91], [-120.15, -162.81], [-121.75, -162.75], [-121.81, -163.84], [-124.13, -163.76], [-127.27, -163.67]], "holes": []}}, {"shape": {"outer": [[488.31, 587.6], [503.15, 601.27], [570.57, 526.3], [542.77, 501.42], [518.16, 528.09], [531.73, 540.25], [488.31, 587.6]], "holes": []}}, {"shape": {"outer": [[378.39, 651.65], [391.97, 663.14], [365.96, 692.1], [351.54, 679.97], [378.39, 651.65]], "holes": []}}, {"shape": {"outer": [[382.63, 690.15], [407.16, 708.26], [396.45, 721.93], [373.82, 700.79], [382.63, 690.15]], "holes": []}}, {"shape": {"outer": [[433.13, 718.9], [442.94, 708.9], [433.25, 699.59], [422.78, 710.46], [433.13, 718.9]], "holes": []}}, {"shape": {"outer": [[856.11, 563.09], [862.77, 556.07], [855.1, 547.38], [863.63, 539.56], [871.04, 545.98], [881.07, 537.88], [878.96, 536.84], [876.51, 531.04], [886.68, 520.71], [875.7, 509.07], [888.48, 495.77], [924.94, 527.18], [934.76, 516.16], [890.74, 476.01], [832.07, 540.26], [856.11, 563.09]], "holes": []}}, {"shape": {"outer": [[607.17, 467.56], [601.73, 473.86], [610.13, 481.81], [615.86, 475.43], [607.17, 467.56]], "holes": []}}, {"shape": {"outer": [[518.02, 10.84], [542.79, 32.8], [542.64, 33.46], [545.69, 34.95], [547.73, 37.37], [548.45, 37.47], [548.78, 36.94], [548.77, 31.66], [549.23, 25.3], [547.32, 24.7], [542.07, 22.72], [537.86, 20.02], [533.27, 17.4], [528.08, 15.51], [523.68, 13.54], [518.29, 10.58], [518.02, 10.84]], "holes": []}}, {"shape": {"outer": [[-103.31, -150.73], [-103.35, -151.88], [-103.4, -152.9], [-103.44, -153.71], [-102.26, -153.77], [-98.36, -153.94], [-98.22, -150.96], [-102.47, -150.76], [-103.31, -150.73]], "holes": []}}, {"shape": {"outer": [[-134.93, -149.3], [-135.06, -152.2], [-131.8, -152.34], [-130.42, -152.39], [-130.38, -151.55], [-130.36, -151.05], [-130.34, -150.62], [-130.24, -148.36], [-131.76, -148.32], [-131.81, -149.41], [-134.93, -149.3]], "holes": []}}, {"shape": {"outer": [[-130.76, -161.02], [-130.67, -158.6], [-130.64, -157.95], [-130.55, -155.64], [-130.54, -155.3], [-130.49, -154.07], [-130.42, -152.39], [-131.8, -152.34], [-135.06, -152.2], [-135.17, -155.12], [-135.27, -157.79], [-135.38, -160.89], [-132.16, -160.98], [-130.76, -161.02]], "holes": []}}, {"shape": {"outer": [[-135.59, -166.57], [-135.6, -166.86], [-135.71, -169.97], [-135.77, -171.53], [-135.95, -176.24], [-133.55, -176.34], [-132.34, -176.4], [-131.62, -176.43], [-131.35, -176.44], [-131.24, -173.39], [-131.11, -170.17], [-131.05, -168.33], [-130.98, -166.75], [-135.59, -166.57]], "holes": []}}, {"shape": {"outer": [[-125.82, -181.42], [-126.5, -181.39], [-127.11, -181.36], [-127.97, -181.33], [-129.09, -181.27], [-129.99, -181.24], [-130.09, -183.24], [-130.13, -183.9], [-130.15, -184.48], [-130.25, -186.35], [-130.34, -188.26], [-128.59, -188.31], [-122.27, -188.57], [-120.89, -188.63], [-120.65, -183.13], [-125.88, -182.91], [-125.82, -181.42]], "holes": []}}, {"shape": {"outer": [[-115.67, -188.84], [-111.9, -189.01], [-108.07, -189.16], [-106.49, -189.22], [-106.41, -187.5], [-106.29, -184.83], [-106.18, -182.3], [-107.25, -182.25], [-108.19, -182.2], [-108.76, -182.17], [-108.82, -183.62], [-109.66, -183.58], [-115.45, -183.35], [-115.67, -188.84]], "holes": []}}, {"shape": {"outer": [[-104.45, -177.59], [-103.6, -177.63], [-99.25, -177.83], [-99.22, -176.83], [-99.08, -173.09], [-99.04, -171.93], [-98.91, -168.64], [-104.07, -168.41], [-104.16, -170.49], [-104.26, -172.86], [-104.45, -177.59]], "holes": []}}, {"shape": {"outer": [[-103.88, -163.81], [-103.79, -161.79], [-103.59, -157.22], [-103.56, -156.37], [-103.44, -153.71], [-102.26, -153.77], [-98.36, -153.94], [-98.58, -159.75], [-98.66, -162.0], [-98.74, -164.03], [-102.7, -163.86], [-103.88, -163.81]], "holes": []}}, {"shape": {"outer": [[-1328.74, -396.93], [-1329.82, -436.88], [-1324.22, -444.35], [-1281.93, -446.52], [-1281.38, -442.56], [-1278.82, -439.52], [-1272.6, -437.01], [-1267.14, -438.03], [-1264.57, -439.44], [-1259.27, -434.59], [-1254.36, -429.14], [-1252.19, -426.32], [-1250.68, -423.55], [-1248.85, -419.77], [-1244.08, -413.92], [-1237.74, -408.14], [-1239.96, -407.34], [-1244.16, -407.32], [-1248.47, -407.2], [-1248.99, -404.77], [-1248.85, -401.02], [-1328.74, -396.93]], "holes": []}}, {"shape": {"outer": [[-149.38, -142.45], [-149.3, -139.35], [-149.24, -137.44], [-147.57, -137.5], [-146.99, -137.52], [-146.21, -137.55], [-144.93, -137.6], [-145.02, -140.12], [-145.09, -142.62], [-146.38, -142.57], [-149.38, -142.45]], "holes": []}}, {"shape": {"outer": [[-154.45, -137.24], [-154.54, -139.78], [-154.62, -142.23], [-154.82, -142.23], [-158.58, -142.08], [-158.96, -142.07], [-158.81, -137.07], [-156.64, -137.15], [-154.45, -137.24]], "holes": []}}, {"shape": {"outer": [[-158.81, -137.07], [-160.94, -136.96], [-163.1, -136.87], [-163.17, -139.45], [-163.24, -141.9], [-159.29, -142.05], [-158.96, -142.07], [-158.81, -137.07]], "holes": []}}, {"shape": {"outer": [[-172.81, -141.52], [-172.59, -141.52], [-168.59, -141.68], [-168.29, -141.69], [-168.15, -136.65], [-170.39, -136.56], [-172.68, -136.47], [-172.74, -139.03], [-172.81, -141.52]], "holes": []}}, {"shape": {"outer": [[-143.45, -110.8], [-143.28, -105.64], [-142.23, -105.69], [-138.6, -105.83], [-138.37, -108.11], [-137.84, -108.99], [-137.31, -109.89], [-135.58, -111.08], [-136.28, -111.06], [-136.82, -111.03], [-138.74, -110.95], [-140.72, -110.89], [-141.36, -110.87], [-142.42, -110.83], [-143.13, -110.81], [-143.45, -110.8]], "holes": []}}, {"shape": {"outer": [[-157.47, -110.31], [-157.31, -105.08], [-157.1, -105.08], [-153.13, -105.24], [-153.22, -107.99], [-153.23, -108.43], [-153.3, -110.46], [-155.41, -110.39], [-156.42, -110.35], [-157.25, -110.32], [-157.47, -110.31]], "holes": []}}, {"shape": {"outer": [[-167.17, -109.97], [-164.91, -110.04], [-162.57, -110.12], [-162.47, -107.49], [-162.37, -104.87], [-166.39, -104.71], [-167.0, -104.68], [-167.17, -109.97]], "holes": []}}, {"shape": {"outer": [[-167.17, -109.97], [-170.25, -109.82], [-170.92, -109.8], [-171.18, -109.8], [-171.11, -107.18], [-171.03, -104.52], [-170.07, -104.56], [-167.0, -104.68], [-167.17, -109.97]], "holes": []}}, {"shape": {"outer": [[-125.32, -93.42], [-126.02, -93.4], [-126.62, -93.38], [-132.19, -93.19], [-132.35, -96.54], [-128.11, -96.7], [-126.75, -96.75], [-126.8, -97.74], [-126.2, -97.77], [-126.06, -97.78], [-125.49, -97.79], [-125.45, -96.78], [-125.32, -93.42]], "holes": []}}, {"shape": {"outer": [[-126.57, -92.34], [-125.28, -92.39], [-125.24, -91.56], [-122.54, -91.66], [-122.47, -89.84], [-122.42, -88.14], [-122.39, -87.18], [-125.06, -87.06], [-126.34, -87.01], [-126.38, -88.01], [-126.4, -88.34], [-126.43, -89.0], [-126.46, -89.7], [-126.49, -90.22], [-126.51, -90.85], [-126.54, -91.52], [-126.57, -92.34]], "holes": []}}, {"shape": {"outer": [[-126.19, -83.67], [-126.23, -84.72], [-126.26, -85.34], [-126.34, -87.01], [-125.06, -87.06], [-122.39, -87.18], [-121.37, -87.21], [-121.28, -85.44], [-121.26, -84.9], [-121.24, -84.48], [-121.2, -83.85], [-123.2, -83.78], [-124.92, -83.72], [-126.19, -83.67]], "holes": []}}, {"shape": {"outer": [[-124.62, -78.37], [-124.68, -79.29], [-124.69, -79.63], [-124.76, -80.8], [-124.85, -82.39], [-124.88, -83.05], [-124.92, -83.72], [-123.2, -83.78], [-121.2, -83.85], [-121.17, -83.2], [-121.1, -81.67], [-121.06, -80.97], [-120.95, -78.77], [-120.94, -78.53], [-124.62, -78.37]], "holes": []}}, {"shape": {"outer": [[-124.38, -73.46], [-124.42, -74.25], [-124.44, -74.63], [-124.5, -75.86], [-124.55, -76.91], [-124.6, -77.89], [-124.62, -78.37], [-120.94, -78.53], [-120.91, -77.83], [-120.89, -77.26], [-120.79, -75.47], [-120.76, -74.79], [-120.7, -73.63], [-120.69, -73.09], [-120.66, -72.47], [-122.43, -72.38], [-123.41, -72.34], [-124.32, -72.3], [-124.38, -73.46]], "holes": []}}, {"shape": {"outer": [[-124.15, -68.92], [-125.3, -68.88], [-130.99, -68.69], [-131.21, -73.23], [-131.25, -74.02], [-131.27, -74.38], [-124.44, -74.63], [-124.42, -74.25], [-124.38, -73.46], [-124.32, -72.3], [-123.41, -72.34], [-122.43, -72.38], [-120.66, -72.47], [-120.64, -71.92], [-120.61, -71.39], [-122.26, -71.31], [-124.27, -71.22], [-124.21, -69.99], [-124.19, -69.75], [-124.15, -68.92]], "holes": []}}, {"shape": {"outer": [[-115.96, -70.05], [-115.6, -63.13], [-118.57, -63.01], [-119.73, -62.97], [-119.73, -63.09], [-119.86, -65.5], [-119.96, -67.32], [-119.99, -67.98], [-120.03, -68.76], [-120.09, -70.15], [-119.54, -70.16], [-119.26, -70.17], [-118.9, -70.19], [-118.92, -70.55], [-115.98, -70.65], [-115.96, -70.05]], "holes": []}}, {"shape": {"outer": [[-116.1, -73.27], [-116.07, -72.82], [-115.98, -70.65], [-115.96, -70.05], [-115.86, -68.13], [-114.72, -68.18], [-113.99, -68.21], [-109.82, -68.36], [-109.91, -70.27], [-109.93, -70.84], [-110.03, -73.0], [-110.05, -73.41], [-114.38, -73.32], [-115.2, -73.3], [-116.1, -73.27]], "holes": []}}, {"shape": {"outer": [[-109.93, -70.84], [-109.91, -70.27], [-109.82, -68.36], [-109.65, -63.35], [-105.62, -63.5], [-105.63, -63.58], [-105.72, -65.86], [-105.79, -67.6], [-105.81, -68.08], [-105.82, -68.5], [-105.83, -68.89], [-105.88, -70.42], [-106.37, -70.39], [-106.7, -70.38], [-106.98, -70.38], [-106.99, -70.93], [-108.1, -70.89], [-109.93, -70.84]], "holes": []}}, {"shape": {"outer": [[-104.96, -71.53], [-102.99, -71.61], [-102.65, -71.62], [-101.11, -71.68], [-101.06, -70.57], [-101.04, -70.17], [-99.42, -70.22], [-94.36, -70.4], [-94.54, -73.91], [-94.57, -74.45], [-94.6, -75.1], [-101.25, -74.86], [-101.21, -73.9], [-101.2, -73.64], [-101.17, -73.02], [-101.15, -72.5], [-104.98, -72.38], [-104.97, -71.99], [-104.96, -71.53]], "holes": []}}, {"shape": {"outer": [[-104.98, -72.38], [-105.0, -72.91], [-105.02, -73.51], [-105.04, -74.09], [-105.06, -74.73], [-105.11, -76.08], [-105.14, -77.0], [-105.18, -77.86], [-105.19, -78.19], [-101.41, -78.32], [-101.4, -78.13], [-101.36, -77.14], [-101.32, -76.26], [-101.28, -75.48], [-101.25, -74.86], [-101.21, -73.9], [-101.2, -73.64], [-101.17, -73.02], [-101.15, -72.5], [-102.68, -72.46], [-104.98, -72.38]], "holes": []}}, {"shape": {"outer": [[-101.41, -78.32], [-101.48, -79.6], [-101.51, -80.39], [-101.53, -80.95], [-101.55, -81.4], [-101.59, -82.61], [-101.6, -83.08], [-101.62, -83.58], [-101.66, -84.32], [-101.68, -84.61], [-103.66, -84.54], [-105.43, -84.48], [-105.34, -82.06], [-105.33, -81.68], [-105.29, -80.53], [-105.2, -78.51], [-105.19, -78.19], [-101.41, -78.32]], "holes": []}}, {"shape": {"outer": [[-105.43, -84.48], [-105.47, -85.44], [-105.56, -88.04], [-105.59, -88.77], [-104.84, -88.79], [-104.87, -89.82], [-104.88, -90.39], [-101.95, -90.49], [-101.94, -90.35], [-101.93, -89.93], [-101.89, -89.22], [-101.89, -89.03], [-101.86, -88.53], [-101.81, -87.53], [-101.79, -87.07], [-101.77, -86.59], [-101.74, -85.93], [-101.7, -85.12], [-101.68, -84.61], [-103.66, -84.54], [-105.43, -84.48]], "holes": []}}, {"shape": {"outer": [[-102.28, -97.62], [-102.32, -98.62], [-101.87, -98.64], [-101.78, -98.64], [-101.36, -98.66], [-101.32, -97.66], [-95.79, -97.88], [-95.77, -97.3], [-95.63, -94.68], [-95.61, -94.26], [-95.52, -92.63], [-101.09, -92.44], [-101.54, -92.43], [-102.04, -92.41], [-102.11, -93.98], [-102.13, -94.42], [-102.28, -97.62]], "holes": []}}, {"shape": {"outer": [[-96.05, -102.9], [-98.79, -102.84], [-98.82, -103.71], [-99.59, -103.69], [-100.39, -103.66], [-101.57, -103.63], [-101.53, -102.78], [-101.49, -101.86], [-101.45, -100.81], [-101.42, -100.2], [-101.36, -98.66], [-101.32, -97.66], [-95.79, -97.88], [-95.84, -98.87], [-96.01, -102.04], [-96.05, -102.9]], "holes": []}}, {"shape": {"outer": [[-90.33, -114.04], [-90.28, -112.9], [-90.23, -111.92], [-90.09, -108.74], [-87.5, -108.83], [-87.13, -108.84], [-87.32, -114.15], [-87.51, -114.13], [-87.69, -114.13], [-88.05, -114.12], [-88.65, -114.1], [-90.33, -114.04]], "holes": []}}, {"shape": {"outer": [[-82.55, -114.32], [-81.97, -114.35], [-81.55, -114.37], [-80.35, -114.41], [-79.66, -114.45], [-78.94, -114.48], [-78.71, -114.48], [-76.88, -114.56], [-76.57, -114.57], [-76.5, -112.79], [-76.36, -109.27], [-76.67, -109.26], [-81.31, -109.07], [-81.78, -109.06], [-82.31, -109.03], [-82.45, -112.11], [-82.55, -114.32]], "holes": []}}, {"shape": {"outer": [[-67.88, -115.01], [-67.13, -115.06], [-66.29, -115.09], [-65.38, -115.12], [-63.05, -115.21], [-62.79, -115.21], [-62.76, -114.41], [-62.75, -113.88], [-62.59, -109.82], [-62.84, -109.81], [-66.97, -109.65], [-67.71, -109.62], [-67.88, -115.01]], "holes": []}}, {"shape": {"outer": [[-59.05, -121.28], [-59.04, -121.11], [-58.98, -119.63], [-58.98, -119.32], [-58.96, -118.91], [-58.91, -118.01], [-58.86, -117.14], [-58.48, -117.16], [-57.51, -117.2], [-57.03, -117.22], [-56.69, -117.23], [-53.53, -117.39], [-52.26, -117.45], [-52.32, -118.85], [-52.41, -121.55], [-55.15, -121.44], [-57.21, -121.35], [-57.77, -121.32], [-58.13, -121.31], [-59.05, -121.28]], "holes": []}}, {"shape": {"outer": [[-59.39, -130.9], [-59.38, -131.39], [-59.45, -133.02], [-59.48, -133.36], [-59.53, -134.46], [-59.58, -135.51], [-58.38, -135.56], [-57.7, -135.59], [-57.31, -135.6], [-56.51, -135.63], [-55.69, -135.67], [-53.94, -135.73], [-53.01, -135.76], [-52.94, -133.72], [-52.89, -132.69], [-52.85, -131.69], [-52.83, -131.16], [-56.28, -131.03], [-57.48, -130.98], [-59.39, -130.9]], "holes": []}}, {"shape": {"outer": [[-70.28, -141.29], [-70.48, -146.38], [-69.43, -146.43], [-65.06, -146.63], [-64.92, -143.62], [-64.88, -142.59], [-64.82, -141.52], [-66.99, -141.42], [-69.61, -141.32], [-70.28, -141.29]], "holes": []}}, {"shape": {"outer": [[-75.47, -141.07], [-75.5, -141.96], [-75.66, -146.14], [-73.48, -146.24], [-72.77, -146.27], [-70.48, -146.38], [-70.28, -141.29], [-70.9, -141.26], [-72.33, -141.21], [-73.25, -141.17], [-75.47, -141.07]], "holes": []}}, {"shape": {"outer": [[-77.92, -140.97], [-79.16, -140.92], [-80.45, -140.86], [-80.68, -140.86], [-81.46, -140.82], [-82.34, -140.79], [-83.16, -140.75], [-83.77, -140.73], [-83.82, -141.82], [-83.98, -145.75], [-82.56, -145.82], [-79.35, -145.96], [-78.12, -146.02], [-77.96, -142.05], [-77.92, -140.97]], "holes": []}}, {"shape": {"outer": [[-92.37, -145.37], [-92.3, -143.36], [-92.26, -142.34], [-92.23, -141.58], [-92.21, -141.03], [-92.17, -140.39], [-89.81, -140.48], [-89.15, -140.51], [-88.42, -140.53], [-87.45, -140.56], [-87.66, -145.58], [-87.98, -145.57], [-88.63, -145.54], [-91.21, -145.43], [-92.37, -145.37]], "holes": []}}, {"shape": {"outer": [[-1476.72, -3033.7], [-1484.11, -3046.74], [-1524.88, -3022.57], [-1525.03, -3020.54], [-1539.53, -3012.05], [-1539.4, -2996.17], [-1476.72, -3033.7]], "holes": []}}, {"shape": {"outer": [[-1471.29, -3037.32], [-1456.63, -3045.97], [-1457.48, -3048.85], [-1458.28, -3053.11], [-1457.47, -3058.52], [-1455.64, -3062.72], [-1451.65, -3067.79], [-1447.12, -3070.59], [-1442.48, -3072.2], [-1429.39, -3072.74], [-1430.12, -3074.43], [-1431.87, -3075.42], [-1473.01, -3073.36], [-1483.6, -3066.88], [-1484.48, -3065.25], [-1484.2, -3062.86], [-1477.83, -3051.51], [-1478.57, -3051.01], [-1471.29, -3037.32]], "holes": []}}, {"shape": {"outer": [[-105.41, -164.0], [-108.58, -163.88], [-108.51, -161.61], [-108.47, -160.6], [-108.41, -159.03], [-107.45, -159.07], [-105.21, -159.16], [-105.22, -159.49], [-105.29, -161.18], [-105.31, -161.72], [-105.38, -163.32], [-105.4, -163.74], [-105.41, -164.0]], "holes": []}}, {"shape": {"outer": [[-110.39, -168.18], [-110.44, -169.67], [-110.68, -176.37], [-110.07, -176.4], [-105.95, -176.54], [-105.91, -175.57], [-105.9, -175.23], [-105.85, -174.15], [-105.8, -172.79], [-105.78, -172.49], [-105.75, -171.67], [-105.64, -169.15], [-105.6, -168.35], [-109.64, -168.2], [-110.39, -168.18]], "holes": []}}, {"shape": {"outer": [[-125.65, -175.85], [-125.39, -169.02], [-125.32, -167.26], [-126.41, -167.22], [-129.47, -167.11], [-129.51, -168.2], [-129.63, -171.65], [-129.64, -171.81], [-129.67, -172.55], [-129.73, -174.17], [-129.78, -175.7], [-126.62, -175.81], [-125.65, -175.85]], "holes": []}}, {"shape": {"outer": [[-126.07, -160.97], [-126.17, -163.34], [-129.31, -163.24], [-129.28, -162.41], [-129.23, -161.08], [-129.22, -160.86], [-129.17, -159.81], [-129.11, -158.32], [-127.1, -158.39], [-126.87, -158.39], [-125.98, -158.42], [-126.03, -159.87], [-126.07, -160.97]], "holes": []}}, {"shape": {"outer": [[-847.16, -1101.69], [-845.09, -1100.92], [-833.16, -1090.15], [-832.23, -1086.93], [-833.07, -1083.85], [-888.52, -1020.5], [-905.51, -1036.12], [-847.16, -1101.69]], "holes": []}}, {"shape": {"outer": [[-1383.07, -223.63], [-1339.97, -225.57], [-1338.97, -206.96], [-1382.38, -204.81], [-1383.07, -223.63]], "holes": []}}, {"shape": {"outer": [[-1322.09, -226.25], [-1321.23, -207.74], [-1277.46, -209.77], [-1278.32, -228.29], [-1322.09, -226.25]], "holes": []}}, {"shape": {"outer": [[1126.01, 937.26], [1108.64, 956.99], [1108.78, 958.72], [1128.23, 977.04], [1126.01, 937.26]], "holes": []}}, {"shape": {"outer": [[1572.1, 1343.03], [1576.88, 1382.43], [1554.78, 1361.52], [1572.1, 1343.03]], "holes": []}}, {"shape": {"outer": [[-82.07, -135.61], [-82.26, -139.55], [-81.38, -139.58], [-80.61, -139.61], [-80.26, -139.64], [-79.1, -139.69], [-77.83, -139.75], [-77.79, -138.96], [-77.72, -137.47], [-77.65, -135.98], [-77.65, -135.79], [-79.41, -135.71], [-80.72, -135.65], [-82.07, -135.61]], "holes": []}}, {"shape": {"outer": [[-81.18, -116.11], [-81.26, -117.89], [-81.33, -119.31], [-79.49, -119.38], [-78.69, -119.42], [-76.94, -119.48], [-76.8, -116.3], [-78.54, -116.22], [-78.83, -116.2], [-79.03, -116.2], [-81.18, -116.11]], "holes": []}}, {"shape": {"outer": [[-101.89, -89.22], [-101.93, -89.93], [-101.94, -90.35], [-101.95, -90.49], [-101.97, -90.96], [-101.98, -91.2], [-102.04, -92.41], [-104.95, -92.31], [-105.7, -92.28], [-105.68, -91.63], [-105.62, -89.8], [-105.59, -89.1], [-101.89, -89.22]], "holes": []}}, {"shape": {"outer": [[-101.68, -84.61], [-101.7, -85.12], [-101.74, -85.93], [-101.77, -86.59], [-101.79, -87.07], [-101.81, -87.53], [-101.86, -88.53], [-101.89, -89.03], [-101.89, -89.22], [-105.59, -89.1], [-105.59, -88.77], [-105.56, -88.04], [-105.47, -85.44], [-105.43, -84.48], [-103.66, -84.54], [-101.68, -84.61]], "holes": []}}, {"shape": {"outer": [[-101.25, -74.86], [-101.28, -75.48], [-101.32, -76.26], [-101.36, -77.14], [-101.4, -78.13], [-101.41, -78.32], [-101.48, -79.6], [-105.24, -79.46], [-105.2, -78.51], [-105.19, -78.19], [-105.14, -77.0], [-105.11, -76.08], [-105.06, -74.73], [-103.35, -74.79], [-101.25, -74.86]], "holes": []}}, {"shape": {"outer": [[-124.44, -74.63], [-124.5, -75.86], [-124.55, -76.91], [-124.6, -77.89], [-124.62, -78.37], [-120.94, -78.53], [-120.91, -77.83], [-120.89, -77.26], [-120.79, -75.47], [-120.76, -74.79], [-122.6, -74.7], [-124.44, -74.63]], "holes": []}}, {"shape": {"outer": [[-124.88, -83.05], [-124.92, -83.72], [-124.97, -84.98], [-124.99, -85.49], [-125.01, -86.02], [-125.04, -86.76], [-125.06, -87.06], [-125.1, -88.04], [-122.42, -88.14], [-121.42, -88.18], [-121.37, -87.21], [-121.28, -85.44], [-121.26, -84.9], [-121.24, -84.48], [-121.2, -83.85], [-121.17, -83.2], [-124.88, -83.05]], "holes": []}}, {"shape": {"outer": [[-125.1, -88.04], [-125.14, -89.04], [-125.16, -89.59], [-125.18, -90.27], [-125.19, -90.43], [-125.24, -91.56], [-122.54, -91.66], [-121.58, -91.7], [-121.53, -90.52], [-121.48, -89.16], [-121.42, -88.18], [-122.42, -88.14], [-125.1, -88.04]], "holes": []}}, {"shape": {"outer": [[1445.85, 412.61], [1466.85, 390.38], [1462.84, 386.63], [1441.84, 408.84], [1445.85, 412.61]], "holes": []}}, {"shape": {"outer": [[1482.24, 399.48], [1484.15, 394.28], [1515.6, 377.08], [1513.27, 382.9], [1482.24, 399.48]], "holes": []}}, {"shape": {"outer": [[1939.93, 608.55], [1958.5, 616.85], [1968.91, 604.12], [1952.68, 595.38], [1939.93, 608.55]], "holes": []}}, {"shape": {"outer": [[675.18, 15.67], [685.28, -14.71], [673.23, -20.02], [663.05, 12.43], [675.18, 15.67]], "holes": []}}, {"shape": {"outer": [[-1650.86, -847.76], [-1662.15, -847.48], [-1661.03, -802.11], [-1649.74, -802.39], [-1650.86, -847.76]], "holes": []}}, {"shape": {"outer": [[-1684.1, -823.28], [-1683.19, -801.44], [-1662.78, -802.28], [-1663.68, -824.12], [-1684.1, -823.28]], "holes": []}}, {"shape": {"outer": [[-1685.17, -801.85], [-1686.71, -845.32], [-1710.2, -844.49], [-1709.57, -826.38], [-1695.72, -826.87], [-1694.83, -801.52], [-1685.17, -801.85]], "holes": []}}, {"shape": {"outer": [[-1746.66, -824.03], [-1746.11, -810.55], [-1710.66, -812.01], [-1712.02, -844.94], [-1724.29, -844.43], [-1723.49, -824.98], [-1746.66, -824.03]], "holes": []}}, {"shape": {"outer": [[-2360.01, -750.21], [-2358.65, -751.94], [-2356.88, -750.57], [-2359.18, -747.61], [-2337.17, -730.58], [-2333.27, -735.59], [-2332.15, -737.02], [-2338.61, -742.01], [-2339.53, -740.82], [-2353.39, -751.55], [-2346.59, -760.26], [-2348.41, -761.67], [-2345.24, -765.74], [-2354.12, -768.39], [-2356.94, -765.08], [-2373.43, -777.08], [-2381.55, -767.0], [-2376.06, -763.29], [-2375.33, -761.94], [-2375.63, -760.32], [-2369.73, -755.88], [-2368.89, -756.18], [-2367.51, -756.01], [-2360.01, -750.21]], "holes": []}}, {"shape": {"outer": [[276.28, 967.3], [261.89, 982.52], [249.67, 970.74], [263.85, 956.01], [276.28, 967.3]], "holes": []}}, {"shape": {"outer": [[1725.68, 1263.96], [1718.99, 1270.87], [1717.29, 1269.52], [1724.32, 1262.71], [1725.68, 1263.96]], "holes": []}}, {"shape": {"outer": [[2589.35, 1537.83], [2596.26, 1538.04], [2596.47, 1535.1], [2589.34, 1534.89], [2589.35, 1537.83]], "holes": []}}, {"shape": {"outer": [[-947.89, -945.01], [-945.9, -947.17], [-949.24, -950.23], [-951.23, -948.08], [-947.89, -945.01]], "holes": []}}, {"shape": {"outer": [[628.79, 507.98], [632.76, 511.43], [647.16, 495.13], [642.47, 490.99], [628.79, 507.98]], "holes": []}}, {"shape": {"outer": [[1422.89, 283.7], [1435.83, 267.32], [1449.43, 277.55], [1436.41, 291.78], [1430.07, 290.3], [1422.89, 283.7]], "holes": []}}, {"shape": {"outer": [[1611.0, 375.17], [1602.99, 383.63], [1612.46, 392.65], [1620.91, 383.75], [1611.0, 375.17]], "holes": []}}, {"shape": {"outer": [[1774.78, 510.0], [1782.83, 502.44], [1776.81, 498.48], [1770.35, 505.66], [1774.78, 510.0]], "holes": []}}, {"shape": {"outer": [[2124.2, 726.01], [2130.36, 719.1], [2122.9, 713.81], [2117.02, 721.09], [2124.2, 726.01]], "holes": []}}, {"shape": {"outer": [[393.25, 1133.05], [379.01, 1147.13], [371.79, 1139.14], [386.92, 1125.73], [393.25, 1133.05]], "holes": []}}, {"shape": {"outer": [[-841.82, -976.18], [-832.31, -967.19], [-813.4, -984.7], [-810.59, -982.17], [-793.93, -999.05], [-774.82, -1022.88], [-779.89, -1026.91], [-799.98, -1005.49], [-801.62, -1005.57], [-802.13, -1007.15], [-784.75, -1025.43], [-788.65, -1029.02], [-819.4, -997.31], [-834.84, -981.51], [-841.82, -976.18]], "holes": []}}, {"shape": {"outer": [[-883.97, -1019.72], [-877.32, -1018.56], [-826.22, -1075.35], [-832.57, -1077.02], [-883.97, -1019.72]], "holes": []}}, {"shape": {"outer": [[-795.18, -1049.55], [-785.91, -1058.44], [-775.35, -1046.4], [-773.75, -1045.61], [-771.08, -1045.19], [-768.62, -1045.47], [-766.35, -1046.36], [-764.39, -1048.03], [-762.81, -1050.18], [-757.29, -1058.77], [-756.55, -1059.95], [-756.12, -1061.23], [-756.06, -1062.67], [-756.59, -1063.64], [-757.67, -1064.6], [-739.34, -1085.99], [-737.86, -1087.82], [-733.19, -1094.69], [-721.99, -1107.99], [-711.19, -1120.56], [-724.89, -1133.46], [-722.11, -1137.66], [-703.88, -1121.7], [-705.2, -1117.34], [-712.8, -1108.25], [-721.01, -1098.96], [-725.56, -1095.22], [-726.04, -1094.07], [-721.2, -1091.23], [-729.45, -1078.87], [-760.37, -1032.51], [-763.55, -1035.2], [-765.21, -1035.37], [-769.91, -1031.09], [-774.79, -1026.65], [-795.18, -1049.55]], "holes": []}}, {"shape": {"outer": [[-623.38, -1168.13], [-623.41, -1171.93], [-624.55, -1173.84], [-627.21, -1182.15], [-627.48, -1186.26], [-600.75, -1189.11], [-600.03, -1185.49], [-598.74, -1184.12], [-597.12, -1176.18], [-596.47, -1169.98], [-623.38, -1168.13]], "holes": []}}, {"shape": {"outer": [[-509.33, -1003.98], [-505.64, -1007.52], [-503.16, -1008.0], [-498.49, -1013.11], [-511.2, -1024.28], [-507.03, -1027.43], [-531.44, -1048.58], [-526.78, -1053.7], [-525.39, -1052.53], [-520.47, -1057.66], [-482.68, -1022.87], [-486.08, -1019.07], [-486.04, -1017.45], [-482.21, -1013.58], [-494.28, -1000.56], [-496.72, -1002.78], [-497.66, -1002.82], [-500.05, -1001.14], [-509.33, -1003.98]], "holes": []}}, {"shape": {"outer": [[-473.32, -914.41], [-452.33, -895.29], [-437.53, -911.63], [-441.78, -914.91], [-459.54, -929.09], [-445.16, -945.51], [-452.53, -952.33], [-461.75, -941.99], [-456.92, -937.4], [-464.34, -925.89], [-466.65, -922.94], [-473.32, -914.41]], "holes": []}}, {"shape": {"outer": [[-500.8, -893.05], [-487.67, -880.86], [-478.5, -889.99], [-492.37, -901.41], [-500.8, -893.05]], "holes": []}}, {"shape": {"outer": [[-887.97, -855.48], [-883.12, -861.15], [-886.82, -864.95], [-862.48, -891.52], [-858.33, -888.54], [-856.38, -888.94], [-854.36, -891.36], [-818.19, -856.73], [-819.09, -855.65], [-820.54, -856.93], [-822.86, -856.09], [-823.44, -854.77], [-819.44, -851.66], [-824.2, -846.03], [-826.52, -848.22], [-830.33, -844.59], [-830.62, -844.42], [-824.84, -839.12], [-827.73, -836.67], [-826.56, -835.3], [-845.27, -815.26], [-853.99, -824.21], [-839.71, -838.74], [-841.87, -840.87], [-832.81, -850.52], [-831.23, -849.0], [-830.31, -848.67], [-828.91, -849.82], [-827.41, -852.56], [-826.82, -855.06], [-827.18, -856.73], [-854.55, -881.46], [-855.66, -881.37], [-863.05, -874.0], [-883.47, -851.52], [-887.97, -855.48]], "holes": []}}, {"shape": {"outer": [[-801.6, -896.08], [-794.56, -903.19], [-786.2, -895.91], [-793.07, -888.35], [-801.6, -896.08]], "holes": []}}, {"shape": {"outer": [[-1715.93, -1028.85], [-1716.5, -1063.54], [-1712.97, -1063.71], [-1710.77, -1065.25], [-1708.4, -1068.62], [-1701.9, -1068.67], [-1702.33, -1088.47], [-1707.92, -1093.93], [-1708.08, -1109.39], [-1715.49, -1109.24], [-1715.01, -1072.93], [-1716.47, -1072.19], [-1718.37, -1072.35], [-1719.26, -1073.58], [-1719.05, -1085.95], [-1731.59, -1085.8], [-1731.26, -1069.16], [-1729.0, -1068.94], [-1728.56, -1039.76], [-1727.65, -1039.65], [-1727.61, -1035.58], [-1725.56, -1035.24], [-1724.82, -1034.74], [-1724.74, -1033.27], [-1723.22, -1033.07], [-1722.24, -1032.5], [-1721.79, -1030.83], [-1721.63, -1029.28], [-1720.93, -1028.75], [-1715.93, -1028.85]], "holes": []}}, {"shape": {"outer": [[-1724.42, -1012.2], [-1724.43, -1020.8], [-1717.44, -1020.82], [-1717.38, -1012.22], [-1724.42, -1012.2]], "holes": []}}, {"shape": {"outer": [[-1702.21, -1012.9], [-1702.84, -1051.36], [-1715.35, -1050.65], [-1715.49, -1061.69], [-1711.15, -1061.69], [-1709.15, -1062.36], [-1707.36, -1064.18], [-1707.46, -1067.9], [-1695.61, -1068.42], [-1695.5, -1062.93], [-1644.18, -1064.22], [-1644.1, -1052.88], [-1674.86, -1051.69], [-1674.0, -1013.04], [-1682.01, -1012.81], [-1682.96, -1052.08], [-1694.26, -1051.25], [-1693.34, -1012.84], [-1702.21, -1012.9]], "holes": []}}, {"shape": {"outer": [[-1679.78, -1210.8], [-1679.89, -1178.64], [-1691.83, -1178.3], [-1691.93, -1180.32], [-1692.42, -1180.95], [-1697.3, -1180.85], [-1698.48, -1210.25], [-1679.78, -1210.8]], "holes": []}}, {"shape": {"outer": [[-1754.4, -1182.55], [-1741.8, -1182.99], [-1736.24, -1183.71], [-1735.61, -1185.12], [-1735.64, -1190.67], [-1727.28, -1190.95], [-1727.17, -1185.81], [-1720.48, -1185.76], [-1720.43, -1177.02], [-1730.68, -1178.2], [-1735.88, -1177.86], [-1754.06, -1177.69], [-1754.4, -1182.55]], "holes": []}}, {"shape": {"outer": [[-1737.88, -1202.93], [-1737.99, -1208.26], [-1738.13, -1213.13], [-1738.31, -1214.78], [-1733.07, -1213.78], [-1728.94, -1213.11], [-1721.92, -1213.03], [-1721.46, -1208.09], [-1727.87, -1207.95], [-1729.2, -1207.45], [-1729.15, -1202.62], [-1737.88, -1202.93]], "holes": []}}, {"shape": {"outer": [[-1820.39, -1454.46], [-1820.75, -1469.52], [-1812.38, -1469.76], [-1811.02, -1467.33], [-1806.5, -1467.5], [-1805.97, -1452.34], [-1820.45, -1451.71], [-1820.39, -1454.46]], "holes": []}}, {"shape": {"outer": [[-2391.4, -837.74], [-2402.75, -837.15], [-2405.44, -836.89], [-2430.1, -857.71], [-2420.3, -868.19], [-2389.23, -841.52], [-2391.4, -837.74]], "holes": []}}, {"shape": {"outer": [[-2446.6, -853.68], [-2441.41, -859.55], [-2456.41, -874.64], [-2457.79, -876.37], [-2457.75, -877.24], [-2454.14, -874.15], [-2447.29, -882.65], [-2453.28, -888.0], [-2457.11, -882.89], [-2466.62, -888.94], [-2469.82, -886.23], [-2469.11, -883.73], [-2475.13, -878.24], [-2476.16, -877.21], [-2488.33, -884.9], [-2491.26, -882.25], [-2476.27, -869.83], [-2474.33, -867.24], [-2462.5, -879.38], [-2462.79, -878.68], [-2458.71, -874.8], [-2462.42, -870.7], [-2466.54, -873.81], [-2470.56, -869.46], [-2466.6, -866.51], [-2464.8, -868.41], [-2446.6, -853.68]], "holes": []}}, {"shape": {"outer": [[-2517.65, -940.49], [-2510.24, -934.43], [-2514.06, -929.2], [-2523.08, -937.11], [-2517.65, -940.49]], "holes": []}}, {"shape": {"outer": [[-2559.43, -941.2], [-2569.84, -949.22], [-2558.45, -962.1], [-2548.94, -953.77], [-2559.43, -941.2]], "holes": []}}, {"shape": {"outer": [[-2600.16, -983.89], [-2594.85, -990.17], [-2595.34, -991.11], [-2597.2, -990.05], [-2598.31, -988.68], [-2602.65, -992.01], [-2607.31, -987.0], [-2607.88, -987.5], [-2609.0, -986.17], [-2610.46, -987.28], [-2624.69, -970.68], [-2628.94, -973.87], [-2614.2, -990.8], [-2632.21, -1005.5], [-2627.72, -1009.88], [-2613.59, -996.93], [-2606.91, -1003.34], [-2586.39, -985.56], [-2584.62, -984.02], [-2591.66, -976.58], [-2600.16, -983.89]], "holes": []}}, {"shape": {"outer": [[-1284.78, 25.1], [-1286.18, -5.32], [-1289.22, -5.18], [-1289.33, -7.51], [-1294.13, -7.3], [-1293.0, 17.29], [-1292.62, 25.46], [-1284.78, 25.1]], "holes": []}}, {"shape": {"outer": [[-1295.91, 18.8], [-1297.06, -7.28], [-1308.41, -6.71], [-1309.89, -4.58], [-1311.3, -3.1], [-1295.91, 18.8]], "holes": []}}, {"shape": {"outer": [[-1297.01, 25.21], [-1297.09, 22.44], [-1313.78, -1.33], [-1316.96, -0.02], [-1320.5, 0.49], [-1323.81, 0.15], [-1325.93, -0.5], [-1341.08, 27.12], [-1297.01, 25.21]], "holes": []}}, {"shape": {"outer": [[-1297.17, -10.26], [-1297.7, -19.51], [-1307.7, -18.99], [-1306.98, -16.78], [-1306.65, -12.57], [-1307.11, -9.88], [-1297.17, -10.26]], "holes": []}}, {"shape": {"outer": [[-1342.46, 16.67], [-1338.83, 16.53], [-1328.59, -2.19], [-1329.74, -2.9], [-1330.77, -3.83], [-1331.48, -4.58], [-1332.09, -5.38], [-1343.43, -4.99], [-1342.46, 16.67]], "holes": []}}, {"shape": {"outer": [[-1362.86, 23.38], [-1363.93, -0.66], [-1362.04, -0.69], [-1362.17, -4.14], [-1362.22, -4.97], [-1364.35, -4.9], [-1364.94, -5.25], [-1369.25, -5.05], [-1368.13, 21.12], [-1366.99, 21.06], [-1366.85, 23.56], [-1362.86, 23.38]], "holes": []}}, {"shape": {"outer": [[-1366.21, -46.46], [-1368.78, -46.39], [-1371.26, -46.27], [-1369.99, -17.65], [-1365.44, -17.83], [-1362.92, -17.91], [-1362.96, -19.25], [-1363.05, -22.6], [-1365.11, -22.53], [-1366.21, -46.46]], "holes": []}}, {"shape": {"outer": [[-1346.77, -7.8], [-1347.14, -16.92], [-1355.08, -16.59], [-1354.72, -7.47], [-1346.77, -7.8]], "holes": []}}, {"shape": {"outer": [[-1333.88, -8.43], [-1343.62, -8.03], [-1343.97, -17.22], [-1334.26, -17.61], [-1334.8, -14.8], [-1334.84, -12.88], [-1334.6, -10.91], [-1333.88, -8.43]], "holes": []}}, {"shape": {"outer": [[-1333.05, -20.48], [-1332.23, -21.76], [-1331.34, -22.87], [-1330.33, -23.91], [-1341.94, -41.63], [-1343.06, -41.95], [-1343.73, -41.08], [-1343.42, -29.68], [-1344.52, -28.3], [-1344.14, -20.09], [-1333.05, -20.48]], "holes": []}}, {"shape": {"outer": [[-1326.67, -26.35], [-1324.78, -27.06], [-1321.15, -27.64], [-1317.39, -27.25], [-1315.39, -26.61], [-1307.78, -40.15], [-1307.42, -42.42], [-1305.89, -45.08], [-1306.68, -45.65], [-1305.62, -47.63], [-1306.09, -47.89], [-1304.75, -50.01], [-1304.74, -51.31], [-1306.4, -52.33], [-1307.31, -51.62], [-1308.54, -51.65], [-1309.37, -52.4], [-1309.53, -53.39], [-1313.1, -54.15], [-1313.86, -53.87], [-1314.81, -53.88], [-1315.86, -54.4], [-1318.43, -52.72], [-1320.67, -51.91], [-1323.32, -51.68], [-1326.38, -52.21], [-1329.75, -53.84], [-1334.93, -52.31], [-1335.28, -51.58], [-1336.1, -51.0], [-1336.93, -50.89], [-1337.84, -51.12], [-1339.48, -50.06], [-1340.1, -49.21], [-1340.02, -48.38], [-1337.51, -44.09], [-1338.13, -43.59], [-1337.77, -42.52], [-1326.67, -26.35]], "holes": []}}, {"shape": {"outer": [[-1297.87, -22.45], [-1298.77, -40.71], [-1299.52, -42.08], [-1299.71, -43.36], [-1299.93, -43.95], [-1300.68, -44.35], [-1301.64, -44.15], [-1303.81, -40.16], [-1305.31, -38.66], [-1312.46, -24.98], [-1310.72, -23.51], [-1309.39, -21.95], [-1297.87, -22.45]], "holes": []}}, {"shape": {"outer": [[-1294.85, -22.6], [-1290.17, -22.8], [-1290.29, -25.63], [-1287.64, -25.76], [-1288.36, -50.66], [-1293.93, -50.49], [-1293.88, -48.17], [-1295.52, -48.06], [-1295.45, -41.58], [-1295.84, -40.78], [-1294.85, -22.6]], "holes": []}}, {"shape": {"outer": [[-2946.93, 41.11], [-2947.67, 15.33], [-2948.88, 13.5], [-2963.73, 8.47], [-2963.43, 6.74], [-2965.25, 6.07], [-2964.84, 10.23], [-2958.67, 41.74], [-2946.93, 41.11]], "holes": []}}, {"shape": {"outer": [[-1321.23, 51.88], [-1321.66, 51.45], [-1322.22, 51.18], [-1322.83, 51.11], [-1323.44, 51.22], [-1323.97, 51.52], [-1324.39, 51.97], [-1324.65, 52.53], [-1324.72, 53.14], [-1324.57, 53.78], [-1324.21, 54.34], [-1323.69, 54.75], [-1323.05, 54.95], [-1322.38, 54.93], [-1321.77, 54.69], [-1321.27, 54.26], [-1320.95, 53.68], [-1320.83, 53.03], [-1320.93, 52.42], [-1321.23, 51.88]], "holes": []}}, {"shape": {"outer": [[-1254.38, 145.18], [-1252.55, 145.84], [-1249.98, 146.57], [-1247.34, 147.15], [-1245.36, 147.43], [-1243.09, 147.59], [-1237.86, 147.72], [-1238.69, 127.55], [-1241.14, 127.71], [-1241.28, 124.66], [-1243.21, 124.7], [-1243.24, 123.77], [-1250.42, 123.98], [-1251.69, 125.24], [-1254.83, 125.42], [-1253.61, 127.56], [-1252.85, 128.86], [-1251.39, 132.32], [-1250.65, 136.51], [-1250.53, 139.09], [-1250.74, 141.39], [-1251.58, 142.57], [-1252.46, 143.62], [-1253.43, 144.49], [-1254.38, 145.18]], "holes": []}}, {"shape": {"outer": [[-1325.99, 141.75], [-1326.13, 142.17], [-1326.14, 142.57], [-1326.12, 143.01], [-1326.04, 143.43], [-1325.81, 143.89], [-1325.43, 144.31], [-1324.52, 145.23], [-1323.47, 146.03], [-1322.46, 146.62], [-1321.36, 147.1], [-1319.74, 147.55], [-1318.05, 147.82], [-1316.12, 147.95], [-1314.35, 147.7], [-1313.15, 147.41], [-1311.94, 147.01], [-1310.71, 146.18], [-1310.03, 145.4], [-1309.63, 144.32], [-1309.6, 143.38], [-1309.78, 142.28], [-1310.14, 141.5], [-1310.69, 140.86], [-1311.38, 140.39], [-1311.58, 140.61], [-1312.11, 140.29], [-1312.44, 140.07], [-1312.86, 139.88], [-1313.33, 139.66], [-1313.95, 139.44], [-1314.53, 139.25], [-1315.13, 139.04], [-1315.84, 138.86], [-1316.6, 138.74], [-1317.54, 138.6], [-1318.53, 138.54], [-1319.52, 138.54], [-1320.38, 138.61], [-1321.37, 138.73], [-1322.25, 138.94], [-1323.07, 139.3], [-1323.82, 139.76], [-1324.61, 140.3], [-1325.42, 141.02], [-1325.74, 141.38], [-1325.99, 141.75]], "holes": []}}, {"shape": {"outer": [[-1329.02, 70.05], [-1328.31, 78.38], [-1327.02, 77.76], [-1325.27, 77.22], [-1323.07, 76.77], [-1321.17, 76.6], [-1319.39, 76.65], [-1321.21, 69.66], [-1329.02, 70.05]], "holes": []}}, {"shape": {"outer": [[-1317.28, 69.08], [-1311.07, 89.01], [-1309.86, 89.85], [-1308.66, 90.74], [-1307.93, 90.12], [-1308.18, 84.8], [-1306.47, 84.79], [-1306.84, 75.2], [-1307.15, 68.39], [-1317.28, 69.08]], "holes": []}}, {"shape": {"outer": [[-1291.25, 46.01], [-1291.08, 46.91], [-1290.85, 47.75], [-1290.5, 48.88], [-1290.04, 49.95], [-1289.52, 50.97], [-1288.66, 52.16], [-1287.73, 53.15], [-1286.55, 54.13], [-1285.28, 54.81], [-1283.94, 55.38], [-1282.74, 55.79], [-1281.29, 56.05], [-1279.86, 56.07], [-1278.16, 55.99], [-1276.57, 55.77], [-1274.98, 55.1], [-1273.58, 54.31], [-1272.1, 53.23], [-1270.4, 51.78], [-1269.3, 50.67], [-1268.46, 49.47], [-1267.81, 48.5], [-1267.38, 47.35], [-1267.13, 46.24], [-1266.99, 44.97], [-1291.25, 46.01]], "holes": []}}, {"shape": {"outer": [[-1303.83, 131.46], [-1301.18, 130.67], [-1298.54, 129.87], [-1299.89, 125.56], [-1298.68, 125.24], [-1297.44, 125.09], [-1295.77, 124.98], [-1294.12, 125.18], [-1292.56, 125.5], [-1291.01, 125.98], [-1289.75, 126.49], [-1288.53, 127.18], [-1287.86, 127.58], [-1287.1, 128.12], [-1286.41, 128.76], [-1285.66, 129.48], [-1285.01, 130.25], [-1284.42, 131.04], [-1283.78, 131.94], [-1283.26, 132.85], [-1282.55, 134.11], [-1281.79, 135.33], [-1281.08, 136.5], [-1280.48, 137.43], [-1279.85, 138.31], [-1279.29, 139.13], [-1278.68, 139.92], [-1278.14, 140.56], [-1277.51, 141.2], [-1280.87, 144.85], [-1281.41, 144.07], [-1282.02, 143.32], [-1282.6, 142.6], [-1283.32, 141.88], [-1283.94, 141.36], [-1284.57, 140.91], [-1285.25, 140.45], [-1285.97, 140.05], [-1286.82, 139.61], [-1287.72, 139.22], [-1288.6, 138.88], [-1289.51, 138.63], [-1290.52, 138.4], [-1291.52, 138.25], [-1292.59, 138.16], [-1293.57, 138.09], [-1294.59, 138.11], [-1295.76, 138.28], [-1296.76, 138.44], [-1297.57, 138.63], [-1298.28, 138.89], [-1299.45, 139.35], [-1300.36, 139.71], [-1301.07, 140.05], [-1301.77, 140.46], [-1302.41, 140.89], [-1302.99, 141.33], [-1303.59, 141.83], [-1304.2, 142.41], [-1304.74, 142.97], [-1305.21, 143.55], [-1305.63, 144.08], [-1306.02, 144.6], [-1306.39, 145.05], [-1306.77, 145.48], [-1307.21, 145.92], [-1307.78, 146.49], [-1308.5, 147.02], [-1309.07, 147.44], [-1309.71, 147.83], [-1310.5, 148.33], [-1311.36, 148.76], [-1312.19, 149.1], [-1313.05, 149.43], [-1313.74, 149.68], [-1314.55, 149.88], [-1315.36, 150.06], [-1316.17, 150.21], [-1316.93, 150.3], [-1317.69, 150.36], [-1318.59, 150.43], [-1319.56, 150.36], [-1320.33, 150.22], [-1321.1, 150.05], [-1322.16, 149.73], [-1323.17, 149.38], [-1324.05, 148.94], [-1324.79, 148.52], [-1325.49, 148.05], [-1325.43, 144.31], [-1324.52, 145.23], [-1323.47, 146.03], [-1322.46, 146.62], [-1321.36, 147.1], [-1319.74, 147.55], [-1318.05, 147.82], [-1316.12, 147.95], [-1314.35, 147.7], [-1313.15, 147.41], [-1311.94, 147.01], [-1310.71, 146.18], [-1310.03, 145.4], [-1309.63, 144.32], [-1309.6, 143.38], [-1309.78, 142.28], [-1310.14, 141.5], [-1310.69, 140.86], [-1311.38, 140.39], [-1310.99, 140.06], [-1312.18, 139.32], [-1313.87, 138.54], [-1315.47, 138.06], [-1317.19, 137.77], [-1318.98, 137.72], [-1320.67, 137.89], [-1322.11, 138.13], [-1323.49, 138.5], [-1324.71, 138.97], [-1325.76, 139.56], [-1326.04, 129.23], [-1325.25, 129.2], [-1324.35, 129.19], [-1323.47, 129.19], [-1322.6, 129.25], [-1321.74, 129.35], [-1320.91, 129.46], [-1320.08, 129.57], [-1319.46, 129.67], [-1319.3, 129.09], [-1320.73, 128.85], [-1322.41, 128.6], [-1323.35, 128.53], [-1324.31, 128.5], [-1325.37, 128.51], [-1325.98, 128.51], [-1326.02, 126.34], [-1324.72, 126.31], [-1323.01, 126.38], [-1321.49, 126.52], [-1320.02, 126.83], [-1318.82, 127.13], [-1317.5, 127.46], [-1316.18, 127.83], [-1314.73, 128.15], [-1313.59, 128.35], [-1312.43, 128.44], [-1311.3, 128.45], [-1310.1, 128.38], [-1308.8, 128.26], [-1307.38, 128.09], [-1305.94, 127.87], [-1304.89, 127.7], [-1303.83, 131.46]], "holes": []}}, {"shape": {"outer": [[-1278.75, 146.54], [-1277.23, 151.13], [-1275.34, 151.1], [-1273.47, 151.2], [-1271.08, 151.57], [-1268.66, 152.03], [-1263.09, 153.15], [-1257.28, 153.91], [-1255.13, 154.03], [-1255.33, 150.6], [-1257.7, 150.43], [-1260.61, 150.11], [-1263.56, 149.45], [-1266.74, 148.44], [-1269.07, 147.31], [-1271.37, 146.1], [-1273.48, 144.67], [-1275.62, 143.09], [-1278.75, 146.54]], "holes": []}}, {"shape": {"outer": [[-1281.17, 131.73], [-1280.03, 133.78], [-1278.82, 135.81], [-1277.19, 138.04], [-1275.84, 139.59], [-1274.3, 141.07], [-1272.61, 142.47], [-1270.69, 143.77], [-1268.61, 145.0], [-1264.58, 146.63], [-1261.71, 147.4], [-1259.16, 147.91], [-1255.45, 148.23], [-1255.49, 146.79], [-1256.92, 146.59], [-1258.34, 146.33], [-1259.81, 145.97], [-1261.25, 145.49], [-1262.33, 145.02], [-1263.37, 144.5], [-1264.57, 143.81], [-1265.16, 143.46], [-1265.76, 143.07], [-1266.33, 142.67], [-1266.85, 142.24], [-1267.38, 141.7], [-1267.82, 141.14], [-1268.24, 140.57], [-1268.49, 140.01], [-1268.67, 139.49], [-1268.75, 138.93], [-1268.77, 138.38], [-1268.75, 137.89], [-1268.7, 137.39], [-1268.61, 136.92], [-1268.5, 136.42], [-1268.31, 135.9], [-1268.04, 135.37], [-1267.67, 134.86], [-1267.13, 134.37], [-1266.48, 134.01], [-1265.75, 133.77], [-1265.02, 133.66], [-1264.38, 133.64], [-1263.76, 133.7], [-1263.13, 133.8], [-1262.54, 133.93], [-1262.03, 134.1], [-1261.38, 134.35], [-1260.79, 134.62], [-1260.13, 134.97], [-1259.54, 135.38], [-1258.98, 135.88], [-1258.54, 136.4], [-1258.14, 136.94], [-1257.83, 137.42], [-1257.51, 137.96], [-1257.27, 138.37], [-1257.06, 138.79], [-1256.82, 139.25], [-1256.69, 139.57], [-1256.54, 139.92], [-1254.52, 139.87], [-1254.12, 139.06], [-1253.84, 138.41], [-1253.58, 137.65], [-1253.38, 136.81], [-1253.3, 136.2], [-1253.29, 135.68], [-1253.35, 134.98], [-1253.4, 134.41], [-1253.45, 133.87], [-1253.52, 133.44], [-1253.6, 132.97], [-1253.71, 132.47], [-1253.92, 131.88], [-1254.09, 131.35], [-1254.41, 130.67], [-1254.79, 129.97], [-1255.35, 129.19], [-1256.06, 128.4], [-1256.44, 127.99], [-1256.87, 127.62], [-1257.49, 127.02], [-1258.11, 126.53], [-1258.73, 126.05], [-1259.42, 125.65], [-1260.25, 125.3], [-1261.1, 125.07], [-1261.96, 124.87], [-1262.81, 124.74], [-1263.58, 124.65], [-1264.36, 124.68], [-1265.14, 124.74], [-1265.9, 124.93], [-1266.68, 125.26], [-1267.38, 125.61], [-1268.23, 126.09], [-1269.07, 126.59], [-1269.89, 127.05], [-1270.69, 127.54], [-1271.46, 127.99], [-1272.24, 128.44], [-1272.93, 128.85], [-1273.91, 129.37], [-1275.03, 129.88], [-1276.49, 130.41], [-1277.91, 130.93], [-1279.66, 131.42], [-1281.17, 131.73]], "holes": []}}, {"shape": {"outer": [[-1290.14, 100.41], [-1289.62, 118.33], [-1293.95, 118.41], [-1294.29, 101.42], [-1293.31, 101.86], [-1292.43, 101.89], [-1291.63, 101.47], [-1291.04, 100.79], [-1290.9, 100.41], [-1290.14, 100.41]], "holes": []}}, {"shape": {"outer": [[-1299.52, 61.4], [-1298.78, 76.82], [-1296.58, 76.71], [-1297.33, 61.31], [-1299.52, 61.4]], "holes": []}}, {"shape": {"outer": [[-1358.17, 49.34], [-1356.38, 49.26], [-1356.2, 53.25], [-1357.99, 53.33], [-1358.17, 49.34]], "holes": []}}, {"shape": {"outer": [[-1372.79, 50.01], [-1374.01, 50.06], [-1373.78, 55.08], [-1372.56, 55.02], [-1372.79, 50.01]], "holes": []}}, {"shape": {"outer": [[-1333.82, 62.56], [-1346.37, 62.99], [-1346.22, 67.62], [-1342.66, 67.49], [-1342.76, 64.36], [-1337.62, 64.19], [-1337.54, 67.02], [-1333.68, 66.9], [-1333.82, 62.56]], "holes": []}}, {"shape": {"outer": [[-1280.91, 123.63], [-1281.07, 124.35], [-1281.06, 125.02], [-1280.91, 125.67], [-1280.57, 126.31], [-1280.06, 126.73], [-1279.1, 127.09], [-1278.04, 127.09], [-1277.87, 128.13], [-1276.26, 127.68], [-1276.35, 126.66], [-1275.66, 126.07], [-1275.08, 125.41], [-1274.84, 124.78], [-1274.86, 124.07], [-1275.01, 123.53], [-1275.26, 123.03], [-1275.7, 122.46], [-1276.27, 122.01], [-1277.02, 121.67], [-1277.84, 121.53], [-1278.66, 121.61], [-1279.44, 121.9], [-1280.08, 122.37], [-1280.59, 122.98], [-1280.91, 123.63]], "holes": []}}, {"shape": {"outer": [[-1290.14, 100.41], [-1286.46, 100.37], [-1285.81, 112.8], [-1287.11, 113.78], [-1287.76, 115.42], [-1287.54, 116.99], [-1286.85, 117.95], [-1285.38, 118.83], [-1284.1, 119.0], [-1282.8, 118.71], [-1281.76, 117.89], [-1281.38, 117.0], [-1280.73, 116.96], [-1280.45, 117.51], [-1280.01, 117.88], [-1279.35, 118.05], [-1278.69, 117.84], [-1278.26, 117.39], [-1278.13, 116.82], [-1271.85, 116.47], [-1271.67, 117.0], [-1271.25, 117.35], [-1270.53, 117.51], [-1269.93, 117.34], [-1269.47, 116.92], [-1269.28, 116.32], [-1263.37, 116.0], [-1263.11, 116.55], [-1262.61, 116.96], [-1261.9, 117.11], [-1261.22, 116.89], [-1260.81, 116.42], [-1260.68, 115.84], [-1260.09, 115.81], [-1259.47, 116.65], [-1258.41, 117.32], [-1257.15, 117.64], [-1255.99, 117.35], [-1254.97, 116.86], [-1254.31, 116.12], [-1254.07, 115.24], [-1253.72, 114.29], [-1254.1, 113.06], [-1255.22, 111.64], [-1249.87, 111.44], [-1249.9, 106.74], [-1243.73, 106.42], [-1243.88, 107.77], [-1243.82, 109.3], [-1243.47, 111.0], [-1242.85, 112.64], [-1248.27, 117.78], [-1252.28, 121.4], [-1253.53, 121.77], [-1254.71, 122.32], [-1256.06, 122.99], [-1257.2, 123.75], [-1257.77, 123.79], [-1258.31, 123.74], [-1259.58, 123.16], [-1261.14, 122.74], [-1262.69, 122.4], [-1264.17, 122.32], [-1265.17, 122.37], [-1266.16, 122.53], [-1267.33, 122.83], [-1268.4, 123.28], [-1269.51, 123.76], [-1270.89, 124.46], [-1272.62, 125.59], [-1274.46, 126.64], [-1276.26, 127.68], [-1276.35, 126.66], [-1275.66, 126.07], [-1275.08, 125.41], [-1274.84, 124.78], [-1274.86, 124.07], [-1275.01, 123.53], [-1275.26, 123.03], [-1275.7, 122.46], [-1276.27, 122.01], [-1277.02, 121.67], [-1277.84, 121.53], [-1278.66, 121.61], [-1279.44, 121.9], [-1280.08, 122.37], [-1280.59, 122.98], [-1280.91, 123.63], [-1281.07, 124.35], [-1281.06, 125.02], [-1280.91, 125.67], [-1280.57, 126.31], [-1280.06, 126.73], [-1279.1, 127.09], [-1278.04, 127.09], [-1277.87, 128.13], [-1279.52, 128.51], [-1281.34, 128.78], [-1282.25, 128.92], [-1282.74, 128.83], [-1283.21, 128.6], [-1284.3, 127.33], [-1287.26, 125.19], [-1290.83, 123.5], [-1293.79, 122.57], [-1293.95, 118.41], [-1289.62, 118.33], [-1290.14, 100.41]], "holes": []}}, {"shape": {"outer": [[-1407.56, 52.47], [-1403.5, 52.28], [-1403.28, 57.06], [-1403.01, 63.26], [-1407.07, 63.45], [-1407.56, 52.47]], "holes": []}}, {"shape": {"outer": [[-1307.93, 90.12], [-1299.28, 89.69], [-1298.2, 89.65], [-1296.49, 122.44], [-1298.76, 122.57], [-1300.63, 122.95], [-1303.87, 112.67], [-1303.03, 111.59], [-1302.33, 110.44], [-1301.83, 109.25], [-1301.44, 108.04], [-1301.13, 106.49], [-1301.03, 104.99], [-1301.1, 103.53], [-1301.37, 102.11], [-1301.79, 100.64], [-1302.4, 99.16], [-1301.07, 98.99], [-1300.27, 98.47], [-1299.83, 97.82], [-1299.58, 96.85], [-1299.68, 95.92], [-1300.04, 94.96], [-1300.6, 94.13], [-1301.51, 93.68], [-1302.52, 93.5], [-1303.68, 93.89], [-1304.4, 94.4], [-1304.73, 94.81], [-1305.68, 93.59], [-1306.63, 92.54], [-1307.61, 91.61], [-1308.66, 90.74], [-1307.93, 90.12]], "holes": []}}, {"shape": {"outer": [[-1310.02, 91.98], [-1304.17, 111.12], [-1303.55, 109.94], [-1303.07, 108.86], [-1302.68, 107.36], [-1302.45, 105.96], [-1302.52, 104.5], [-1302.66, 103.12], [-1302.86, 101.68], [-1303.23, 100.29], [-1303.84, 98.8], [-1304.63, 97.35], [-1305.68, 95.81], [-1306.27, 95.17], [-1306.88, 94.59], [-1307.66, 93.86], [-1308.44, 93.19], [-1309.22, 92.56], [-1310.02, 91.98]], "holes": []}}, {"shape": {"outer": [[-1360.12, -4.16], [-1358.56, 4.22], [-1359.25, 5.68], [-1359.7, 7.47], [-1359.94, 9.2], [-1359.79, 10.91], [-1359.37, 13.05], [-1356.3, 20.54], [-1355.31, 25.18], [-1354.94, 27.9], [-1351.05, 27.7], [-1348.29, 24.16], [-1346.52, 21.51], [-1345.42, 18.88], [-1346.63, -4.69], [-1360.12, -4.16]], "holes": []}}, {"shape": {"outer": [[-1362.86, 23.38], [-1358.65, 23.21], [-1358.53, 25.64], [-1358.42, 28.22], [-1354.94, 27.9], [-1355.31, 25.18], [-1356.3, 20.54], [-1359.37, 13.05], [-1359.79, 10.91], [-1359.94, 9.2], [-1359.7, 7.47], [-1359.25, 5.68], [-1358.56, 4.22], [-1360.12, -4.16], [-1362.17, -4.14], [-1362.04, -0.69], [-1363.93, -0.66], [-1362.86, 23.38]], "holes": []}}, {"shape": {"outer": [[-1357.88, -32.17], [-1357.9, -35.43], [-1350.92, -36.6], [-1348.16, -37.56], [-1348.57, -48.02], [-1350.35, -49.96], [-1352.75, -51.23], [-1356.31, -50.75], [-1358.57, -48.78], [-1359.16, -46.75], [-1363.16, -46.58], [-1366.21, -46.46], [-1365.11, -22.53], [-1363.05, -22.6], [-1362.96, -19.25], [-1356.11, -19.67], [-1357.88, -32.17]], "holes": []}}, {"shape": {"outer": [[-1548.77, 87.27], [-1547.94, 85.82], [-1560.34, 86.82], [-1564.8, 87.03], [-1564.72, 89.79], [-1566.17, 89.82], [-1566.06, 93.11], [-1569.54, 93.28], [-1570.85, 93.9], [-1571.96, 95.34], [-1572.12, 98.56], [-1572.32, 103.1], [-1573.35, 107.51], [-1575.8, 111.54], [-1580.53, 117.04], [-1583.02, 119.67], [-1584.2, 122.09], [-1583.98, 123.74], [-1576.9, 137.07], [-1574.33, 139.8], [-1572.23, 141.06], [-1569.66, 141.07], [-1567.11, 140.33], [-1564.54, 137.87], [-1563.53, 135.53], [-1563.04, 131.58], [-1564.53, 103.27], [-1564.37, 99.19], [-1562.91, 95.55], [-1559.88, 91.81], [-1555.87, 89.04], [-1552.05, 87.8], [-1548.77, 87.27]], "holes": []}}, {"shape": {"outer": [[-1583.53, 93.16], [-1581.93, 93.43], [-1581.36, 93.73], [-1580.6, 94.16], [-1579.83, 95.1], [-1579.54, 95.85], [-1579.41, 96.62], [-1579.37, 102.19], [-1579.9, 104.11], [-1580.73, 106.03], [-1581.92, 107.6], [-1583.32, 109.06], [-1584.69, 110.32], [-1586.13, 111.5], [-1587.48, 112.23], [-1589.04, 112.41], [-1590.54, 112.29], [-1591.76, 111.72], [-1592.44, 111.09], [-1601.57, 99.82], [-1615.3, 85.52], [-1616.45, 83.38], [-1617.77, 80.2], [-1619.56, 73.19], [-1616.31, 72.56], [-1602.68, 72.11], [-1601.81, 72.94], [-1602.31, 73.52], [-1601.55, 74.42], [-1600.63, 75.49], [-1599.8, 74.93], [-1598.97, 75.98], [-1598.35, 77.49], [-1598.08, 79.06], [-1598.1, 80.63], [-1598.82, 80.69], [-1598.6, 83.25], [-1597.46, 83.18], [-1596.92, 84.14], [-1596.24, 85.04], [-1594.69, 86.31], [-1595.02, 87.18], [-1594.52, 87.63], [-1592.4, 88.04], [-1592.26, 86.73], [-1590.99, 86.71], [-1589.69, 86.9], [-1588.89, 87.13], [-1588.02, 87.6], [-1587.11, 88.39], [-1586.56, 89.43], [-1586.11, 90.51], [-1585.86, 91.61], [-1585.83, 92.96], [-1586.08, 94.33], [-1586.51, 95.42], [-1587.18, 96.31], [-1588.94, 97.64], [-1591.01, 98.49], [-1592.34, 98.81], [-1595.99, 98.87], [-1596.96, 99.25], [-1597.33, 100.27], [-1583.24, 99.62], [-1583.53, 93.16]], "holes": []}}, {"shape": {"outer": [[-1256.08, 60.49], [-1254.89, 60.4], [-1254.55, 54.69], [-1254.49, 52.99], [-1254.44, 51.79], [-1257.09, 51.83], [-1259.34, 44.5], [-1264.24, 44.61], [-1264.33, 46.36], [-1264.71, 48.08], [-1265.41, 49.78], [-1266.39, 51.3], [-1268.32, 53.43], [-1270.25, 55.22], [-1271.61, 56.3], [-1273.09, 57.33], [-1274.56, 58.35], [-1264.93, 58.03], [-1264.07, 57.6], [-1259.6, 57.51], [-1258.45, 57.86], [-1257.58, 58.56], [-1256.76, 59.56], [-1256.08, 60.49]], "holes": []}}, {"shape": {"outer": [[-1440.97, 56.21], [-1440.76, 60.38], [-1431.98, 59.94], [-1432.06, 58.27], [-1418.42, 57.58], [-1418.34, 59.27], [-1415.01, 59.09], [-1415.34, 52.62], [-1418.91, 52.8], [-1418.82, 54.62], [-1434.26, 55.4], [-1434.33, 53.89], [-1439.25, 54.13], [-1440.97, 56.21]], "holes": []}}, {"shape": {"outer": [[-1518.55, 101.56], [-1498.9, 100.74], [-1498.65, 106.56], [-1502.33, 112.48], [-1513.39, 113.18], [-1513.64, 104.77], [-1518.4, 105.05], [-1518.55, 101.56]], "holes": []}}, {"shape": {"outer": [[-1464.94, -50.08], [-1465.56, -50.05], [-1465.67, -51.05], [-1465.95, -51.65], [-1466.56, -52.41], [-1467.28, -52.77], [-1468.37, -53.0], [-1470.62, -52.85], [-1470.66, -53.27], [-1471.46, -53.22], [-1472.2, -52.89], [-1472.82, -52.32], [-1473.35, -51.63], [-1473.72, -50.87], [-1474.03, -50.02], [-1474.05, -47.02], [-1474.47, -41.46], [-1475.44, -36.31], [-1477.11, -31.69], [-1479.37, -28.04], [-1481.85, -25.24], [-1486.25, -22.67], [-1494.84, -20.77], [-1529.4, -14.34], [-1530.52, -13.98], [-1530.9, -13.7], [-1531.14, -13.33], [-1531.22, -13.08], [-1531.15, -12.88], [-1530.84, -12.59], [-1530.41, -12.34], [-1529.94, -12.13], [-1477.52, 6.45], [-1476.0, 7.11], [-1474.76, 8.02], [-1473.78, 9.03], [-1473.16, 10.24], [-1472.64, 11.71], [-1471.29, 16.34], [-1467.35, 35.81], [-1467.19, 36.06], [-1466.99, 36.32], [-1466.72, 36.54], [-1462.12, 36.35], [-1462.1, 32.49], [-1460.97, 32.43], [-1464.94, -50.08]], "holes": []}}, {"shape": {"outer": [[-1439.55, -47.62], [-1439.55, -48.58], [-1437.68, -50.96], [-1436.81, -52.5], [-1436.47, -53.81], [-1434.67, -53.88], [-1434.58, -51.56], [-1423.67, -52.05], [-1422.52, -51.98], [-1421.85, -51.42], [-1421.68, -50.66], [-1419.43, -50.76], [-1419.08, -51.9], [-1417.98, -52.87], [-1416.14, -53.05], [-1414.65, -52.9], [-1413.73, -51.81], [-1410.57, -51.94], [-1409.49, -51.39], [-1409.39, -48.86], [-1435.41, -47.81], [-1439.55, -47.62]], "holes": []}}, {"shape": {"outer": [[-1402.17, -49.42], [-1375.87, -50.7], [-1366.19, -51.17], [-1366.23, -51.97], [-1366.53, -51.95], [-1366.67, -53.06], [-1367.06, -53.56], [-1367.58, -53.94], [-1369.97, -53.84], [-1370.75, -53.34], [-1371.07, -52.49], [-1374.11, -52.32], [-1374.61, -53.09], [-1375.28, -53.51], [-1381.68, -53.29], [-1382.41, -53.08], [-1383.02, -52.66], [-1383.25, -51.88], [-1385.31, -51.79], [-1385.73, -52.79], [-1386.1, -53.05], [-1394.33, -52.78], [-1394.66, -52.45], [-1394.75, -51.91], [-1397.05, -51.82], [-1397.53, -53.0], [-1398.59, -53.58], [-1401.16, -53.46], [-1402.04, -52.68], [-1402.25, -51.77], [-1402.17, -49.42]], "holes": []}}, {"shape": {"outer": [[-1545.58, -8.32], [-1553.02, 9.27], [-1554.81, 14.64], [-1554.32, 20.57], [-1552.8, 29.84], [-1552.03, 37.08], [-1552.38, 42.47], [-1551.1, 42.66], [-1550.64, 41.8], [-1550.07, 41.93], [-1548.64, 43.89], [-1545.76, 44.34], [-1544.62, 43.96], [-1543.55, 37.66], [-1524.44, 36.78], [-1524.55, 35.04], [-1523.76, 35.0], [-1522.86, 34.94], [-1523.05, 32.42], [-1518.83, 32.3], [-1518.66, 31.66], [-1519.53, 16.77], [-1519.7, 15.33], [-1519.95, 13.99], [-1520.49, 12.97], [-1521.37, 11.63], [-1525.49, 7.34], [-1525.69, 6.51], [-1541.85, -8.95], [-1542.38, -9.27], [-1543.81, -9.12], [-1544.84, -8.78], [-1545.58, -8.32]], "holes": []}}, {"shape": {"outer": [[-1518.55, 101.56], [-1498.9, 100.74], [-1497.95, 98.87], [-1488.53, 98.42], [-1490.44, 94.79], [-1542.65, 97.13], [-1546.78, 97.25], [-1548.28, 97.96], [-1549.25, 99.17], [-1549.74, 102.02], [-1546.84, 103.04], [-1519.43, 101.59], [-1518.55, 101.56]], "holes": []}}, {"shape": {"outer": [[-1476.2, 12.45], [-1515.45, 13.91], [-1514.85, 29.06], [-1514.82, 29.98], [-1514.77, 31.49], [-1514.91, 32.15], [-1515.36, 32.16], [-1515.61, 31.44], [-1516.08, 14.8], [-1515.93, 14.32], [-1515.69, 13.85], [-1515.25, 13.43], [-1514.41, 12.99], [-1513.37, 12.74], [-1479.9, 11.0], [-1478.87, 10.96], [-1477.86, 11.08], [-1477.02, 11.35], [-1476.29, 11.77], [-1475.76, 12.27], [-1475.31, 12.93], [-1475.02, 13.54], [-1473.83, 18.01], [-1472.68, 22.64], [-1469.92, 36.7], [-1469.85, 37.41], [-1469.86, 38.14], [-1469.93, 38.98], [-1470.06, 39.9], [-1475.69, 40.15], [-1475.89, 36.06], [-1480.11, 36.26], [-1480.63, 27.45], [-1475.53, 27.29], [-1476.2, 12.45]], "holes": []}}, {"shape": {"outer": [[-1473.68, 66.42], [-1468.64, 66.41], [-1468.33, 64.84], [-1469.52, 47.03], [-1475.39, 47.26], [-1475.18, 51.1], [-1479.34, 51.3], [-1478.86, 60.36], [-1473.88, 60.24], [-1473.68, 66.42]], "holes": []}}, {"shape": {"outer": [[-1466.05, 50.21], [-1465.58, 65.29], [-1466.9, 73.95], [-1466.71, 77.91], [-1464.84, 77.13], [-1462.67, 75.5], [-1461.21, 73.49], [-1460.12, 71.36], [-1459.46, 69.27], [-1459.29, 66.1], [-1459.2, 62.0], [-1459.61, 53.59], [-1461.16, 53.66], [-1461.27, 50.0], [-1466.05, 50.21]], "holes": []}}, {"shape": {"outer": [[-1512.58, 76.76], [-1512.97, 76.78], [-1512.68, 78.12], [-1512.16, 79.35], [-1511.47, 80.52], [-1510.55, 81.51], [-1509.57, 81.91], [-1469.68, 80.15], [-1470.02, 74.47], [-1469.26, 68.67], [-1473.54, 68.64], [-1473.15, 75.0], [-1512.58, 76.76]], "holes": []}}, {"shape": {"outer": [[-1461.63, -53.95], [-1460.39, -28.7], [-1459.37, -28.75], [-1458.81, -28.78], [-1460.05, -54.05], [-1460.47, -54.21], [-1461.3, -54.15], [-1461.63, -53.95]], "holes": []}}, {"shape": {"outer": [[-1461.99, -60.66], [-1462.95, -79.08], [-1463.15, -83.01], [-1463.63, -92.04], [-1464.27, -104.35], [-1463.52, -104.39], [-1462.79, -104.43], [-1460.52, -60.69], [-1460.93, -60.48], [-1461.56, -60.45], [-1461.99, -60.66]], "holes": []}}, {"shape": {"outer": [[-1444.44, -112.46], [-1443.44, -89.57], [-1435.53, -89.99], [-1436.55, -109.44], [-1438.43, -112.76], [-1444.44, -112.46]], "holes": []}}, {"shape": {"outer": [[-2116.24, -874.03], [-2116.69, -895.47], [-2112.31, -895.63], [-2099.94, -895.45], [-2099.83, -874.7], [-2113.14, -874.16], [-2116.24, -874.03]], "holes": []}}, {"shape": {"outer": [[-1436.12, -75.72], [-1440.58, -69.75], [-1440.54, -68.39], [-1438.43, -68.49], [-1394.52, -70.52], [-1394.6, -72.96], [-1394.76, -77.76], [-1436.12, -75.72]], "holes": []}}, {"shape": {"outer": [[-1440.54, -68.39], [-1440.55, -68.07], [-1440.57, -67.63], [-1439.43, -66.6], [-1437.78, -64.85], [-1436.99, -63.26], [-1436.39, -63.07], [-1435.22, -63.15], [-1435.03, -63.63], [-1435.15, -65.58], [-1424.58, -66.04], [-1423.85, -66.73], [-1423.87, -68.16], [-1413.93, -68.56], [-1413.6, -67.89], [-1412.93, -67.25], [-1412.08, -66.85], [-1410.84, -67.01], [-1410.14, -67.64], [-1409.82, -68.16], [-1409.79, -68.76], [-1403.44, -69.01], [-1403.16, -68.28], [-1402.75, -67.71], [-1401.9, -67.23], [-1396.1, -67.5], [-1395.07, -68.11], [-1394.52, -68.98], [-1394.52, -70.52], [-1438.43, -68.49], [-1440.54, -68.39]], "holes": []}}, {"shape": {"outer": [[-1359.03, -114.84], [-1360.37, -114.78], [-1360.86, -126.05], [-1376.07, -125.39], [-1374.06, -79.31], [-1373.71, -71.7], [-1359.82, -72.31], [-1359.88, -73.48], [-1359.92, -74.15], [-1359.94, -75.66], [-1360.06, -78.06], [-1356.78, -78.21], [-1356.95, -82.0], [-1357.6, -81.97], [-1359.03, -114.84]], "holes": []}}, {"shape": {"outer": [[-1348.16, -37.56], [-1350.92, -36.6], [-1357.9, -35.43], [-1357.88, -32.17], [-1356.11, -19.67], [-1347.19, -20.04], [-1348.16, -37.56]], "holes": []}}, {"shape": {"outer": [[-1402.1, -48.03], [-1402.17, -49.42], [-1375.87, -50.7], [-1375.8, -49.32], [-1402.1, -48.03]], "holes": []}}, {"shape": {"outer": [[-1379.66, -45.81], [-1374.25, -46.03], [-1373.05, -16.3], [-1374.56, -16.23], [-1375.76, -43.43], [-1379.55, -43.27], [-1379.66, -45.81]], "holes": []}}, {"shape": {"outer": [[-1387.49, 24.76], [-1387.6, 23.18], [-1382.12, 22.93], [-1382.17, 21.79], [-1372.89, 21.38], [-1374.13, -5.89], [-1372.37, -5.91], [-1370.91, 23.87], [-1372.79, 23.96], [-1387.49, 24.76]], "holes": []}}, {"shape": {"outer": [[-1334.04, -76.98], [-1345.55, -76.44], [-1345.66, -78.64], [-1337.59, -79.01], [-1337.76, -82.73], [-1336.51, -82.79], [-1336.74, -87.63], [-1335.16, -87.69], [-1335.18, -88.25], [-1334.57, -88.28], [-1334.04, -76.98]], "holes": []}}, {"shape": {"outer": [[-1312.82, -86.92], [-1312.1, -74.7], [-1309.22, -74.85], [-1309.09, -76.18], [-1308.19, -77.43], [-1306.76, -77.9], [-1305.66, -78.55], [-1304.66, -79.31], [-1304.38, -80.28], [-1304.42, -81.14], [-1305.56, -81.07], [-1305.7, -83.45], [-1307.75, -83.4], [-1309.77, -84.93], [-1311.79, -87.31], [-1313.51, -90.81], [-1314.2, -92.24], [-1314.67, -92.18], [-1314.48, -86.91], [-1312.82, -86.92]], "holes": []}}, {"shape": {"outer": [[-1313.85, -96.85], [-1313.11, -97.48], [-1312.3, -97.65], [-1311.52, -97.24], [-1310.87, -93.52], [-1309.82, -92.36], [-1308.49, -92.04], [-1307.5, -92.38], [-1307.2, -86.35], [-1308.31, -85.79], [-1309.48, -86.48], [-1311.29, -89.12], [-1312.82, -92.42], [-1313.73, -95.2], [-1313.85, -96.85]], "holes": []}}, {"shape": {"outer": [[-1448.01, -35.21], [-1445.46, 17.04], [-1443.42, 16.94], [-1445.96, -35.31], [-1448.01, -35.21]], "holes": []}}, {"shape": {"outer": [[894.0, 222.19], [888.97, 227.82], [893.28, 231.63], [889.32, 236.08], [884.85, 241.56], [893.81, 249.67], [906.68, 235.53], [902.0, 231.44], [903.8, 229.52], [894.0, 222.19]], "holes": []}}, {"shape": {"outer": [[871.85, 255.85], [882.25, 244.42], [877.77, 240.34], [867.03, 251.58], [871.85, 255.85]], "holes": []}}, {"shape": {"outer": [[851.99, 254.54], [859.76, 261.57], [861.33, 263.16], [865.48, 259.08], [855.98, 250.24], [851.99, 254.54]], "holes": []}}, {"shape": {"outer": [[829.46, 268.8], [823.73, 263.64], [840.93, 244.61], [846.67, 249.77], [829.46, 268.8]], "holes": []}}, {"shape": {"outer": [[828.35, 241.37], [832.18, 237.19], [820.19, 226.3], [816.36, 230.49], [828.35, 241.37]], "holes": []}}, {"shape": {"outer": [[848.76, 242.03], [852.72, 237.73], [828.58, 215.73], [824.63, 220.03], [848.76, 242.03]], "holes": []}}, {"shape": {"outer": [[823.95, 209.2], [845.87, 184.88], [850.04, 188.61], [828.12, 212.93], [823.95, 209.2]], "holes": []}}, {"shape": {"outer": [[859.15, 243.07], [862.99, 238.94], [859.05, 235.3], [870.42, 223.06], [865.67, 218.84], [876.52, 206.69], [871.87, 202.84], [871.86, 202.42], [872.76, 201.32], [867.65, 196.69], [865.52, 197.8], [864.52, 197.68], [852.92, 187.73], [835.13, 206.89], [838.93, 210.39], [831.9, 217.95], [859.15, 243.07]], "holes": []}}, {"shape": {"outer": [[-1339.24, -131.37], [-1339.77, -143.02], [-1354.89, -142.33], [-1375.98, -141.35], [-1375.43, -129.68], [-1339.24, -131.37]], "holes": []}}, {"shape": {"outer": [[-1479.96, -1230.03], [-1428.21, -1231.14], [-1428.46, -1242.18], [-1433.22, -1249.79], [-1471.15, -1249.04], [-1480.18, -1240.55], [-1479.96, -1230.03]], "holes": []}}, {"shape": {"outer": [[478.47, -56.72], [449.91, -83.34], [456.84, -91.05], [464.32, -84.2], [467.69, -88.32], [485.14, -63.85], [484.06, -62.78], [479.67, -58.01], [478.47, -56.72]], "holes": []}}, {"shape": {"outer": [[-1202.55, -958.82], [-1208.3, -955.43], [-1214.46, -952.71], [-1221.25, -956.49], [-1223.7, -963.38], [-1225.4, -971.9], [-1225.42, -977.83], [-1225.38, -981.55], [-1222.48, -988.72], [-1219.94, -992.08], [-1215.62, -997.17], [-1208.52, -1001.64], [-1202.27, -1002.65], [-1194.53, -1002.87], [-1183.13, -997.32], [-1178.69, -993.07], [-1174.52, -985.5], [-1173.47, -980.63], [-1173.08, -971.51], [-1174.64, -965.71], [-1177.55, -958.63], [-1184.4, -962.65], [-1190.73, -963.29], [-1197.2, -962.41], [-1202.55, -958.82]], "holes": []}}, {"shape": {"outer": [[-1367.29, -1978.93], [-1364.95, -1983.28], [-1386.67, -1994.91], [-1397.3, -1975.2], [-1392.22, -1972.47], [-1388.82, -1975.87], [-1386.77, -1977.91], [-1384.02, -1978.58], [-1381.83, -1977.46], [-1379.49, -1976.23], [-1376.89, -1981.14], [-1375.62, -1983.46], [-1367.29, -1978.93]], "holes": []}}, {"shape": {"outer": [[1611.4, 2342.06], [1671.85, 2337.78], [1664.53, 2260.49], [1635.96, 2265.46], [1611.63, 2330.01], [1611.4, 2342.06]], "holes": []}}, {"shape": {"outer": [[-2360.0, -305.82], [-2333.19, -306.82], [-2333.31, -309.95], [-2360.12, -308.94], [-2360.0, -305.82]], "holes": []}}, {"shape": {"outer": [[-2372.56, -341.66], [-2352.76, -342.41], [-2352.96, -347.57], [-2372.75, -346.81], [-2372.56, -341.66]], "holes": []}}, {"shape": {"outer": [[-1011.39, -354.33], [-1010.68, -336.61], [-1007.29, -336.76], [-1008.06, -353.32], [-998.87, -353.79], [-998.1, -337.14], [-973.12, -338.19], [-971.31, -338.26], [-972.91, -369.36], [-964.5, -369.7], [-965.15, -387.8], [-978.96, -387.19], [-978.89, -384.43], [-977.35, -355.95], [-990.44, -355.24], [-991.98, -383.72], [-1004.91, -382.65], [-1004.16, -367.42], [-1042.6, -365.56], [-1041.38, -340.6], [-1057.48, -339.81], [-1057.31, -334.67], [-1033.02, -335.69], [-1033.22, -337.33], [-1033.98, -353.51], [-1011.39, -354.33]], "holes": []}}, {"shape": {"outer": [[-45.37, -442.6], [-56.5, -452.74], [-53.25, -456.37], [-58.09, -460.57], [-46.95, -472.72], [-37.99, -464.78], [-34.12, -469.08], [-26.76, -462.8], [-45.37, -442.6]], "holes": []}}, {"shape": {"outer": [[-815.32, -59.7], [-813.7, -61.38], [-812.6, -60.65], [-810.64, -60.17], [-808.63, -60.42], [-806.84, -61.38], [-805.27, -59.77], [-806.25, -58.92], [-807.18, -58.41], [-808.11, -58.14], [-809.45, -57.88], [-810.74, -57.89], [-812.03, -58.08], [-813.27, -58.43], [-814.34, -58.91], [-815.32, -59.7]], "holes": []}}, {"shape": {"outer": [[-803.46, -61.06], [-805.53, -62.9], [-804.84, -64.8], [-804.88, -66.81], [-805.65, -68.68], [-805.66, -69.0], [-805.41, -69.43], [-805.0, -69.87], [-804.45, -70.13], [-803.82, -70.19], [-803.22, -69.94], [-802.67, -69.04], [-802.38, -68.13], [-802.05, -66.8], [-802.01, -65.52], [-802.16, -64.22], [-802.46, -62.97], [-802.9, -61.89], [-803.46, -61.06]], "holes": []}}, {"shape": {"outer": [[-812.9, -72.7], [-812.14, -70.92], [-813.8, -70.02], [-815.04, -68.61], [-815.75, -66.87], [-817.66, -66.71], [-817.97, -67.08], [-812.9, -72.7]], "holes": []}}, {"shape": {"outer": [[-819.18, -65.74], [-817.62, -65.07], [-816.17, -65.17], [-815.94, -63.86], [-814.92, -62.13], [-818.82, -58.3], [-819.57, -59.14], [-820.53, -59.91], [-821.16, -60.37], [-821.77, -60.44], [-822.38, -60.19], [-823.39, -59.13], [-824.59, -60.12], [-819.18, -65.74]], "holes": []}}, {"shape": {"outer": [[-1229.65, -401.94], [-1229.26, -402.8], [-1233.43, -404.84], [-1237.74, -408.14], [-1239.96, -407.34], [-1248.47, -407.2], [-1248.99, -404.77], [-1248.85, -401.02], [-1229.65, -401.94]], "holes": []}}, {"shape": {"outer": [[-1279.23, -53.59], [-1279.62, -54.26], [-1279.58, -54.57], [-1276.55, -56.37], [-1276.23, -56.36], [-1275.96, -55.83], [-1275.39, -55.29], [-1274.18, -55.32], [-1273.5, -55.98], [-1273.26, -56.47], [-1272.96, -56.58], [-1262.89, -57.1], [-1261.7, -56.72], [-1260.94, -55.41], [-1261.08, -54.92], [-1262.09, -54.25], [-1278.95, -53.55], [-1279.23, -53.59]], "holes": []}}, {"shape": {"outer": [[-1279.51, -53.07], [-1280.3, -54.29], [-1280.23, -54.71], [-1276.52, -56.87], [-1275.96, -56.79], [-1275.69, -56.23], [-1275.2, -55.72], [-1274.35, -55.72], [-1273.87, -56.24], [-1273.56, -56.87], [-1273.2, -57.02], [-1262.86, -57.56], [-1261.35, -57.02], [-1260.41, -55.25], [-1260.54, -54.73], [-1261.92, -53.77], [-1279.1, -52.96], [-1279.51, -53.07]], "holes": []}}, {"shape": {"outer": [[-1227.48, -62.11], [-1227.1, -61.92], [-1223.12, -62.16], [-1222.77, -62.39], [-1222.13, -63.62], [-1222.17, -64.01], [-1223.01, -64.56], [-1227.32, -64.25], [-1228.05, -63.87], [-1228.06, -63.24], [-1227.48, -62.11]], "holes": []}}, {"shape": {"outer": [[-1227.83, -61.43], [-1227.53, -61.27], [-1222.78, -61.54], [-1222.49, -61.73], [-1221.4, -63.64], [-1221.48, -64.19], [-1222.86, -65.21], [-1227.86, -64.81], [-1228.8, -64.18], [-1228.85, -63.15], [-1227.83, -61.43]], "holes": []}}, {"shape": {"outer": [[-1213.67, -62.56], [-1213.98, -62.67], [-1215.08, -63.42], [-1215.11, -63.76], [-1214.53, -64.85], [-1214.16, -65.06], [-1205.6, -65.68], [-1205.07, -65.44], [-1203.89, -63.88], [-1204.05, -63.26], [-1204.78, -63.05], [-1213.67, -62.56]], "holes": []}}, {"shape": {"outer": [[-1214.0, -61.89], [-1204.04, -62.5], [-1203.67, -62.77], [-1203.22, -64.1], [-1204.73, -66.04], [-1205.34, -66.39], [-1214.51, -65.71], [-1214.86, -65.53], [-1216.11, -63.68], [-1216.07, -63.21], [-1214.49, -62.05], [-1214.0, -61.89]], "holes": []}}, {"shape": {"outer": [[-1304.15, -75.43], [-1299.29, -75.65], [-1299.41, -77.08], [-1299.72, -77.59], [-1300.34, -77.93], [-1300.92, -77.58], [-1301.61, -77.21], [-1302.3, -76.25], [-1303.56, -75.89], [-1304.15, -75.43]], "holes": []}}, {"shape": {"outer": [[-1337.34, -100.67], [-1335.41, -100.78], [-1334.6, -101.23], [-1335.22, -113.38], [-1337.91, -113.27], [-1337.34, -100.67]], "holes": []}}, {"shape": {"outer": [[-1359.94, -75.66], [-1348.32, -76.22], [-1348.44, -78.61], [-1356.78, -78.21], [-1360.06, -78.06], [-1359.94, -75.66]], "holes": []}}, {"shape": {"outer": [[-1330.24, -75.98], [-1328.02, -76.08], [-1328.93, -95.92], [-1331.15, -95.81], [-1330.24, -75.98]], "holes": []}}, {"shape": {"outer": [[-1331.37, -103.77], [-1329.23, -103.88], [-1330.4, -126.97], [-1332.54, -126.86], [-1331.37, -103.77]], "holes": []}}, {"shape": {"outer": [[-1335.42, -131.17], [-1330.21, -131.41], [-1330.71, -142.36], [-1335.93, -142.12], [-1335.42, -131.17]], "holes": []}}, {"shape": {"outer": [[-1336.43, -158.09], [-1332.08, -158.31], [-1333.03, -177.42], [-1332.4, -177.45], [-1332.71, -183.66], [-1333.57, -183.62], [-1333.87, -189.7], [-1336.32, -189.57], [-1336.38, -190.83], [-1338.06, -190.74], [-1336.43, -158.09]], "holes": []}}, {"shape": {"outer": [[-1336.06, -149.09], [-1336.16, -151.52], [-1332.48, -151.67], [-1332.37, -149.24], [-1336.06, -149.09]], "holes": []}}, {"shape": {"outer": [[-1401.57, 37.29], [-1396.06, 37.04], [-1396.17, 34.68], [-1401.67, 34.92], [-1401.57, 37.29]], "holes": []}}, {"shape": {"outer": [[-1396.06, 37.04], [-1390.45, 36.8], [-1390.55, 34.43], [-1396.17, 34.68], [-1396.06, 37.04]], "holes": []}}, {"shape": {"outer": [[-1388.18, 36.57], [-1382.68, 36.28], [-1382.79, 34.04], [-1388.3, 34.33], [-1388.18, 36.57]], "holes": []}}, {"shape": {"outer": [[-1382.68, 36.28], [-1377.11, 36.0], [-1377.22, 33.74], [-1382.79, 34.04], [-1382.68, 36.28]], "holes": []}}, {"shape": {"outer": [[-1374.89, 35.85], [-1369.29, 35.57], [-1369.42, 33.16], [-1375.01, 33.45], [-1374.89, 35.85]], "holes": []}}, {"shape": {"outer": [[-1369.29, 35.57], [-1363.65, 35.31], [-1363.75, 32.93], [-1369.42, 33.16], [-1369.29, 35.57]], "holes": []}}, {"shape": {"outer": [[-1387.59, 46.08], [-1382.15, 45.84], [-1382.26, 43.46], [-1387.7, 43.71], [-1387.59, 46.08]], "holes": []}}, {"shape": {"outer": [[-1382.15, 45.84], [-1376.71, 45.59], [-1376.81, 43.22], [-1382.26, 43.46], [-1382.15, 45.84]], "holes": []}}, {"shape": {"outer": [[-1373.99, 45.38], [-1368.53, 45.14], [-1368.64, 42.76], [-1374.1, 43.01], [-1373.99, 45.38]], "holes": []}}, {"shape": {"outer": [[-1368.53, 45.14], [-1363.09, 44.89], [-1363.19, 42.52], [-1368.64, 42.76], [-1368.53, 45.14]], "holes": []}}, {"shape": {"outer": [[-1329.71, 33.66], [-1324.26, 33.41], [-1324.37, 31.04], [-1329.82, 31.28], [-1329.71, 33.66]], "holes": []}}, {"shape": {"outer": [[-1321.75, 33.22], [-1316.31, 32.98], [-1316.42, 30.61], [-1321.86, 30.84], [-1321.75, 33.22]], "holes": []}}, {"shape": {"outer": [[-1316.31, 32.9], [-1310.87, 32.65], [-1310.97, 30.27], [-1316.42, 30.52], [-1316.31, 32.9]], "holes": []}}, {"shape": {"outer": [[-1308.52, 32.61], [-1303.07, 32.37], [-1303.18, 30.0], [-1308.63, 30.23], [-1308.52, 32.61]], "holes": []}}, {"shape": {"outer": [[-1303.04, 32.38], [-1297.6, 32.15], [-1297.7, 29.77], [-1303.15, 30.01], [-1303.04, 32.38]], "holes": []}}, {"shape": {"outer": [[-1295.16, 32.1], [-1289.71, 31.86], [-1289.82, 29.48], [-1295.26, 29.73], [-1295.16, 32.1]], "holes": []}}, {"shape": {"outer": [[-1289.66, 31.79], [-1284.22, 31.54], [-1284.33, 29.17], [-1289.77, 29.41], [-1289.66, 31.79]], "holes": []}}, {"shape": {"outer": [[-1281.93, 31.41], [-1276.47, 31.17], [-1276.58, 28.79], [-1282.03, 29.02], [-1281.93, 31.41]], "holes": []}}, {"shape": {"outer": [[-1276.42, 31.15], [-1270.97, 30.92], [-1271.08, 28.54], [-1276.53, 28.78], [-1276.42, 31.15]], "holes": []}}, {"shape": {"outer": [[-1264.84, 30.56], [-1258.03, 30.24], [-1258.14, 27.87], [-1264.95, 28.19], [-1264.84, 30.56]], "holes": []}}, {"shape": {"outer": [[-1255.87, 30.14], [-1250.41, 29.9], [-1250.51, 27.52], [-1255.98, 27.77], [-1255.87, 30.14]], "holes": []}}, {"shape": {"outer": [[-1250.41, 29.9], [-1244.97, 29.65], [-1245.07, 27.28], [-1250.51, 27.52], [-1250.41, 29.9]], "holes": []}}, {"shape": {"outer": [[-1242.34, 29.49], [-1236.87, 29.2], [-1236.99, 26.82], [-1242.47, 27.12], [-1242.34, 29.49]], "holes": []}}, {"shape": {"outer": [[-1236.87, 29.2], [-1231.43, 28.92], [-1231.55, 26.55], [-1236.99, 26.82], [-1236.87, 29.2]], "holes": []}}, {"shape": {"outer": [[-1229.08, 28.69], [-1223.62, 28.44], [-1223.72, 26.07], [-1229.18, 26.31], [-1229.08, 28.69]], "holes": []}}, {"shape": {"outer": [[-1223.62, 28.44], [-1218.17, 28.2], [-1218.28, 25.82], [-1223.72, 26.07], [-1223.62, 28.44]], "holes": []}}, {"shape": {"outer": [[-1315.12, 50.12], [-1315.29, 46.98], [-1308.15, 46.62], [-1308.0, 49.8], [-1315.12, 50.12]], "holes": []}}, {"shape": {"outer": [[-1289.37, 41.35], [-1287.49, 41.24], [-1287.63, 38.84], [-1289.52, 38.95], [-1289.37, 41.35]], "holes": []}}, {"shape": {"outer": [[-1287.49, 41.24], [-1285.67, 41.13], [-1285.82, 38.74], [-1287.63, 38.84], [-1287.49, 41.24]], "holes": []}}, {"shape": {"outer": [[-1285.67, 41.13], [-1283.79, 41.02], [-1283.92, 38.63], [-1285.82, 38.74], [-1285.67, 41.13]], "holes": []}}, {"shape": {"outer": [[-1283.79, 41.02], [-1281.94, 40.91], [-1282.08, 38.52], [-1283.92, 38.63], [-1283.79, 41.02]], "holes": []}}, {"shape": {"outer": [[-1279.36, 40.96], [-1273.89, 40.71], [-1274.0, 38.31], [-1279.47, 38.55], [-1279.36, 40.96]], "holes": []}}, {"shape": {"outer": [[-1273.89, 40.71], [-1268.47, 40.47], [-1268.57, 38.08], [-1274.0, 38.31], [-1273.89, 40.71]], "holes": []}}, {"shape": {"outer": [[-1265.68, 40.29], [-1260.23, 40.06], [-1260.34, 37.68], [-1265.79, 37.92], [-1265.68, 40.29]], "holes": []}}, {"shape": {"outer": [[-1260.23, 40.06], [-1254.77, 39.8], [-1254.88, 37.43], [-1260.34, 37.68], [-1260.23, 40.06]], "holes": []}}, {"shape": {"outer": [[-1251.71, 39.66], [-1246.28, 39.44], [-1246.38, 37.06], [-1251.81, 37.29], [-1251.71, 39.66]], "holes": []}}, {"shape": {"outer": [[-1246.28, 39.44], [-1240.83, 39.19], [-1240.93, 36.83], [-1246.38, 37.06], [-1246.28, 39.44]], "holes": []}}, {"shape": {"outer": [[-1231.95, 38.83], [-1226.5, 38.6], [-1226.61, 36.22], [-1232.06, 36.45], [-1231.95, 38.83]], "holes": []}}, {"shape": {"outer": [[-1237.4, 39.06], [-1231.95, 38.83], [-1232.06, 36.45], [-1237.51, 36.69], [-1237.4, 39.06]], "holes": []}}, {"shape": {"outer": [[-1218.43, 38.08], [-1212.99, 37.84], [-1213.1, 35.47], [-1218.54, 35.7], [-1218.43, 38.08]], "holes": []}}, {"shape": {"outer": [[-1223.88, 38.31], [-1218.43, 38.08], [-1218.54, 35.7], [-1223.99, 35.93], [-1223.88, 38.31]], "holes": []}}, {"shape": {"outer": [[-1308.91, -54.49], [-1309.26, -54.09], [-1309.4, -53.92], [-1309.53, -53.39], [-1309.37, -52.4], [-1308.54, -51.65], [-1307.31, -51.62], [-1306.4, -52.33], [-1306.26, -53.05], [-1306.18, -53.49], [-1306.91, -54.56], [-1308.11, -54.77], [-1308.91, -54.49]], "holes": []}}, {"shape": {"outer": [[-1447.75, -172.9], [-1442.74, -173.18], [-1440.42, -173.3], [-1441.63, -197.46], [-1442.71, -197.39], [-1442.8, -201.23], [-1448.41, -201.12], [-1447.75, -172.9]], "holes": []}}, {"shape": {"outer": [[-1382.62, -72.21], [-1381.53, -72.25], [-1381.99, -78.04], [-1385.42, -77.94], [-1382.62, -72.21]], "holes": []}}, {"shape": {"outer": [[-1442.76, -36.85], [-1439.07, -37.0], [-1438.95, -34.06], [-1442.64, -33.89], [-1442.76, -36.85]], "holes": []}}, {"shape": {"outer": [[-1437.4, -37.29], [-1433.61, -37.44], [-1433.51, -35.08], [-1437.3, -34.93], [-1437.4, -37.29]], "holes": []}}, {"shape": {"outer": [[-1420.34, -34.54], [-1420.43, -36.89], [-1416.62, -37.04], [-1416.53, -34.68], [-1420.34, -34.54]], "holes": []}}, {"shape": {"outer": [[-1369.85, -232.3], [-1367.92, -232.37], [-1367.97, -234.07], [-1369.91, -234.0], [-1369.85, -232.3]], "holes": []}}, {"shape": {"outer": [[-1365.25, -232.51], [-1358.79, -232.81], [-1358.87, -234.49], [-1365.33, -234.19], [-1365.25, -232.51]], "holes": []}}, {"shape": {"outer": [[-1356.12, -232.95], [-1349.66, -233.25], [-1349.74, -234.92], [-1356.2, -234.63], [-1356.12, -232.95]], "holes": []}}, {"shape": {"outer": [[-1347.01, -233.42], [-1341.1, -233.67], [-1341.17, -235.29], [-1347.08, -235.05], [-1347.01, -233.42]], "holes": []}}, {"shape": {"outer": [[-1321.76, -234.67], [-1315.88, -234.94], [-1315.96, -236.59], [-1321.83, -236.32], [-1321.76, -234.67]], "holes": []}}, {"shape": {"outer": [[-1313.27, -234.98], [-1306.81, -235.27], [-1306.89, -236.95], [-1313.35, -236.66], [-1313.27, -234.98]], "holes": []}}, {"shape": {"outer": [[-1304.0, -235.48], [-1297.54, -235.78], [-1297.62, -237.45], [-1304.08, -237.15], [-1304.0, -235.48]], "holes": []}}, {"shape": {"outer": [[-1294.91, -235.92], [-1288.46, -236.21], [-1288.54, -237.89], [-1294.99, -237.59], [-1294.91, -235.92]], "holes": []}}, {"shape": {"outer": [[-1443.53, -235.56], [-1442.71, -232.51], [-1439.87, -232.97], [-1413.84, -234.26], [-1413.95, -236.92], [-1443.53, -235.56]], "holes": []}}, {"shape": {"outer": [[-1398.49, -235.15], [-1398.66, -237.83], [-1389.64, -238.25], [-1386.42, -237.34], [-1386.48, -236.42], [-1389.23, -235.6], [-1398.49, -235.15]], "holes": []}}, {"shape": {"outer": [[-1215.23, -237.34], [-1214.87, -238.65], [-1218.52, -241.51], [-1228.51, -239.28], [-1228.52, -238.86], [-1228.12, -238.88], [-1228.05, -236.92], [-1215.23, -237.34]], "holes": []}}, {"shape": {"outer": [[-1435.24, -128.84], [-1436.63, -128.76], [-1433.85, -82.61], [-1432.45, -82.7], [-1432.59, -84.15], [-1432.67, -86.4], [-1432.87, -88.17], [-1435.24, -128.84]], "holes": []}}, {"shape": {"outer": [[-1438.27, -200.89], [-1440.13, -200.79], [-1437.5, -147.35], [-1436.32, -147.41], [-1438.61, -194.0], [-1437.93, -194.03], [-1438.27, -200.89]], "holes": []}}, {"shape": {"outer": [[-1214.26, -211.79], [-1213.81, -211.83], [-1213.16, -212.73], [-1213.55, -225.55], [-1214.0, -225.86], [-1214.26, -211.79]], "holes": []}}, {"shape": {"outer": [[-1214.63, -178.36], [-1212.34, -178.45], [-1208.62, -179.38], [-1212.75, -197.09], [-1213.35, -197.03], [-1213.08, -192.04], [-1214.63, -178.36]], "holes": []}}, {"shape": {"outer": [[-1217.05, -197.04], [-1214.92, -197.07], [-1214.64, -191.54], [-1216.33, -179.78], [-1217.05, -197.04]], "holes": []}}, {"shape": {"outer": [[-1405.54, 30.94], [-1407.47, 31.0], [-1407.52, 29.55], [-1407.57, 28.2], [-1406.91, 28.19], [-1405.63, 28.14], [-1405.54, 30.94]], "holes": []}}, {"shape": {"outer": [[-1391.86, 24.31], [-1391.85, 24.61], [-1392.11, 24.99], [-1399.14, 25.3], [-1400.65, 24.71], [-1401.47, 23.93], [-1401.54, 23.63], [-1398.78, 23.56], [-1398.57, 24.25], [-1398.15, 24.54], [-1391.86, 24.31]], "holes": []}}, {"shape": {"outer": [[-1256.08, 17.9], [-1256.02, 19.21], [-1255.79, 23.49], [-1194.39, 20.58], [-1194.67, 14.44], [-1201.09, 14.74], [-1201.05, 15.64], [-1212.65, 16.18], [-1212.67, 15.86], [-1256.08, 17.9]], "holes": []}}, {"shape": {"outer": [[-1263.09, 18.6], [-1263.05, 19.53], [-1262.87, 23.91], [-1276.61, 24.56], [-1276.83, 19.25], [-1263.09, 18.6]], "holes": []}}, {"shape": {"outer": [[-1325.21, 151.39], [-1324.15, 151.41], [-1322.93, 151.61], [-1321.52, 152.08], [-1319.99, 152.73], [-1316.2, 155.07], [-1313.52, 157.58], [-1316.79, 157.51], [-1320.31, 157.32], [-1322.62, 156.94], [-1324.94, 156.53], [-1325.21, 151.39]], "holes": []}}, {"shape": {"outer": [[-1207.38, -74.93], [-1207.35, -75.33], [-1208.15, -76.59], [-1208.73, -76.68], [-1211.12, -75.09], [-1211.18, -74.78], [-1210.72, -74.06], [-1210.35, -73.97], [-1208.28, -74.13], [-1208.01, -74.25], [-1207.38, -74.93]], "holes": []}}, {"shape": {"outer": [[-1211.95, -75.25], [-1211.93, -74.8], [-1211.28, -73.77], [-1210.8, -73.45], [-1208.05, -73.6], [-1207.66, -73.78], [-1206.69, -74.81], [-1206.7, -75.33], [-1207.97, -77.22], [-1208.57, -77.38], [-1211.95, -75.25]], "holes": []}}, {"shape": {"outer": [[-1335.46, -94.08], [-1334.77, -94.11], [-1334.31, -94.91], [-1334.48, -97.55], [-1335.2, -98.42], [-1337.18, -98.33], [-1337.13, -96.12], [-1335.53, -96.19], [-1335.46, -94.08]], "holes": []}}, {"shape": {"outer": [[-1435.37, -86.27], [-1435.18, -82.49], [-1443.07, -82.07], [-1443.26, -85.84], [-1435.37, -86.27]], "holes": []}}, {"shape": {"outer": [[-1277.68, -202.23], [-1275.01, -202.35], [-1274.69, -194.66], [-1277.31, -194.55], [-1277.68, -202.23]], "holes": []}}, {"shape": {"outer": [[-1268.05, -175.41], [-1270.29, -175.31], [-1270.83, -175.64], [-1271.18, -176.13], [-1271.38, -180.67], [-1268.36, -180.79], [-1268.05, -175.41]], "holes": []}}, {"shape": {"outer": [[-1268.85, -189.5], [-1269.73, -189.46], [-1269.93, -193.54], [-1270.31, -195.39], [-1270.73, -210.21], [-1269.93, -210.44], [-1268.85, -189.5]], "holes": []}}, {"shape": {"outer": [[-1273.4, -210.12], [-1275.02, -210.03], [-1275.92, -228.43], [-1274.17, -228.52], [-1273.74, -226.85], [-1274.06, -225.83], [-1273.62, -224.15], [-1273.94, -223.0], [-1273.49, -221.18], [-1273.82, -220.1], [-1273.37, -218.38], [-1273.7, -217.24], [-1273.26, -215.71], [-1273.57, -214.41], [-1273.15, -213.06], [-1273.47, -211.98], [-1273.06, -210.93], [-1273.4, -210.12]], "holes": []}}, {"shape": {"outer": [[-1242.85, 153.83], [-1206.06, 151.75], [-1206.29, 144.35], [-1195.73, 143.88], [-1195.69, 145.04], [-1193.07, 144.91], [-1193.33, 140.98], [-1195.68, 141.09], [-1207.11, 141.75], [-1206.82, 149.58], [-1237.75, 150.85], [-1237.86, 147.72], [-1243.09, 147.59], [-1242.85, 153.83]], "holes": []}}, {"shape": {"outer": [[-1194.63, 115.7], [-1189.02, 115.44], [-1189.08, 114.21], [-1210.96, 115.22], [-1210.91, 116.44], [-1204.73, 116.16], [-1194.63, 115.7]], "holes": []}}, {"shape": {"outer": [[-1256.3, 108.98], [-1253.0, 108.84], [-1253.27, 102.77], [-1244.39, 102.17], [-1245.41, 76.43], [-1256.2, 73.0], [-1257.82, 72.64], [-1256.3, 108.98]], "holes": []}}, {"shape": {"outer": [[-1294.46, 61.16], [-1293.72, 76.57], [-1291.53, 76.47], [-1292.27, 61.06], [-1294.46, 61.16]], "holes": []}}, {"shape": {"outer": [[-1457.25, 50.73], [-1457.66, 39.44], [-1455.56, 37.76], [-1455.02, 52.2], [-1457.25, 50.73]], "holes": []}}, {"shape": {"outer": [[-1456.48, 58.45], [-1454.42, 56.78], [-1454.21, 65.03], [-1456.31, 65.08], [-1456.48, 58.45]], "holes": []}}, {"shape": {"outer": [[-1397.58, 153.76], [-1395.67, 152.69], [-1395.79, 150.41], [-1394.41, 150.36], [-1394.1, 154.15], [-1396.62, 155.5], [-1397.58, 153.76]], "holes": []}}, {"shape": {"outer": [[-1394.56, 159.18], [-1392.54, 162.56], [-1393.55, 163.05], [-1396.0, 164.24], [-1395.54, 165.1], [-1395.09, 165.41], [-1394.51, 165.55], [-1393.78, 165.42], [-1388.75, 162.71], [-1388.3, 162.19], [-1388.01, 161.69], [-1387.82, 161.12], [-1387.68, 160.48], [-1387.62, 159.87], [-1387.6, 159.25], [-1387.57, 158.63], [-1387.63, 158.03], [-1387.72, 157.53], [-1387.94, 157.03], [-1388.61, 155.71], [-1394.56, 159.18]], "holes": []}}, {"shape": {"outer": [[-1363.63, 159.82], [-1363.66, 157.01], [-1355.55, 156.3], [-1355.57, 157.21], [-1363.63, 159.82]], "holes": []}}, {"shape": {"outer": [[-1347.07, 154.24], [-1342.23, 153.55], [-1342.33, 155.27], [-1341.02, 155.24], [-1341.03, 150.35], [-1347.33, 150.63], [-1347.07, 154.24]], "holes": []}}, {"shape": {"outer": [[-1452.83, 175.04], [-1452.15, 176.8], [-1438.92, 171.66], [-1439.37, 170.52], [-1439.62, 169.89], [-1452.83, 175.04]], "holes": []}}, {"shape": {"outer": [[-1443.44, -43.9], [-1443.5, -45.72], [-1439.5, -45.86], [-1439.44, -44.03], [-1443.44, -43.9]], "holes": []}}, {"shape": {"outer": [[-1339.52, -153.01], [-1339.33, -148.84], [-1340.6, -148.09], [-1352.0, -147.39], [-1352.25, -152.34], [-1339.52, -153.01]], "holes": []}}, {"shape": {"outer": [[-1377.11, -151.03], [-1376.92, -146.85], [-1374.38, -146.55], [-1364.31, -147.57], [-1364.52, -151.69], [-1377.11, -151.03]], "holes": []}}, {"shape": {"outer": [[-1383.18, -225.98], [-1340.08, -227.91], [-1339.97, -225.57], [-1383.07, -223.63], [-1383.18, -225.98]], "holes": []}}, {"shape": {"outer": [[-1219.25, -161.09], [-1205.67, -161.8], [-1206.08, -169.59], [-1228.21, -168.38], [-1228.1, -166.38], [-1219.0, -166.86], [-1218.8, -162.93], [-1219.34, -162.87], [-1219.25, -161.09]], "holes": []}}, {"shape": {"outer": [[-1222.01, -129.14], [-1221.93, -127.58], [-1217.74, -127.8], [-1217.79, -128.69], [-1205.34, -129.35], [-1205.87, -139.31], [-1204.35, -139.38], [-1204.65, -145.02], [-1207.94, -144.85], [-1208.19, -149.58], [-1207.16, -149.63], [-1207.22, -150.9], [-1208.17, -150.85], [-1208.48, -156.76], [-1218.99, -156.2], [-1217.57, -129.38], [-1222.01, -129.14]], "holes": []}}, {"shape": {"outer": [[-1252.28, -128.11], [-1249.88, -128.25], [-1250.2, -134.07], [-1252.62, -133.92], [-1252.28, -128.11]], "holes": []}}, {"shape": {"outer": [[-1251.29, -154.58], [-1252.79, -153.94], [-1253.48, -152.94], [-1253.46, -151.78], [-1256.85, -151.51], [-1256.21, -137.27], [-1250.38, -137.59], [-1251.29, -154.58]], "holes": []}}, {"shape": {"outer": [[-1253.93, -165.2], [-1254.03, -167.08], [-1244.6, -167.51], [-1244.5, -165.65], [-1253.93, -165.2]], "holes": []}}, {"shape": {"outer": [[-1277.5, -4.36], [-1281.65, -4.17], [-1280.66, 16.0], [-1277.0, 15.81], [-1277.31, 9.17], [-1276.87, 9.15], [-1277.5, -4.36]], "holes": []}}, {"shape": {"outer": [[-1280.25, -48.95], [-1283.93, -48.76], [-1282.91, -28.57], [-1278.79, -28.74], [-1279.34, -40.73], [-1279.87, -40.7], [-1280.25, -48.95]], "holes": []}}, {"shape": {"outer": [[-1956.73, -869.6], [-1957.28, -884.1], [-1926.49, -885.25], [-1925.95, -870.74], [-1956.73, -869.6]], "holes": []}}, {"shape": {"outer": [[-1904.39, -860.08], [-1899.49, -860.23], [-1900.11, -879.05], [-1907.59, -878.8], [-1907.1, -863.98], [-1904.52, -864.06], [-1904.39, -860.08]], "holes": []}}, {"shape": {"outer": [[-1908.23, -859.82], [-1908.68, -870.67], [-1922.92, -870.09], [-1922.48, -859.23], [-1908.23, -859.82]], "holes": []}}, {"shape": {"outer": [[-1250.42, 123.98], [-1243.24, 123.77], [-1243.3, 121.46], [-1241.43, 121.35], [-1241.57, 118.32], [-1238.71, 118.18], [-1238.93, 115.5], [-1241.97, 115.57], [-1250.42, 123.98]], "holes": []}}, {"shape": {"outer": [[-1447.81, -210.92], [-1442.41, -211.04], [-1442.44, -212.61], [-1447.84, -212.49], [-1447.81, -210.92]], "holes": []}}, {"shape": {"outer": [[-1448.41, -201.12], [-1442.8, -201.23], [-1442.83, -202.91], [-1448.44, -202.8], [-1448.41, -201.12]], "holes": []}}, {"shape": {"outer": [[-1448.19, -206.12], [-1442.61, -206.26], [-1442.65, -207.96], [-1448.23, -207.82], [-1448.19, -206.12]], "holes": []}}, {"shape": {"outer": [[-1448.01, -208.68], [-1446.64, -208.65], [-1446.61, -209.82], [-1447.99, -209.86], [-1448.01, -208.68]], "holes": []}}, {"shape": {"outer": [[-1433.49, -54.03], [-1423.9, -54.46], [-1423.85, -53.18], [-1433.43, -52.76], [-1433.49, -54.03]], "holes": []}}, {"shape": {"outer": [[-1434.15, -64.57], [-1424.57, -65.03], [-1424.51, -63.76], [-1434.09, -63.31], [-1434.15, -64.57]], "holes": []}}, {"shape": {"outer": [[-1483.98, -229.06], [-1474.64, -220.37], [-1473.28, -220.5], [-1473.56, -222.86], [-1473.81, -224.54], [-1474.15, -226.04], [-1474.75, -227.48], [-1475.97, -228.61], [-1477.66, -229.22], [-1479.83, -229.28], [-1483.98, -229.06]], "holes": []}}, {"shape": {"outer": [[-1355.68, 142.82], [-1353.85, 142.82], [-1351.14, 142.77], [-1348.72, 142.74], [-1345.31, 142.57], [-1342.17, 142.38], [-1339.87, 142.18], [-1337.48, 141.93], [-1335.34, 141.65], [-1335.32, 142.63], [-1337.45, 142.87], [-1339.92, 143.15], [-1342.21, 143.41], [-1345.24, 143.57], [-1348.77, 143.76], [-1351.16, 143.78], [-1353.83, 143.82], [-1355.63, 143.83], [-1355.68, 142.82]], "holes": []}}, {"shape": {"outer": [[-1295.01, 50.41], [-1292.96, 50.33], [-1292.3, 52.03], [-1291.31, 53.54], [-1290.07, 55.0], [-1288.83, 56.11], [-1287.52, 57.05], [-1285.8, 57.94], [-1283.81, 58.62], [-1286.45, 58.87], [-1287.8, 59.13], [-1288.92, 60.05], [-1289.68, 61.05], [-1290.24, 62.23], [-1290.3, 63.53], [-1290.03, 64.75], [-1289.45, 65.88], [-1288.39, 66.8], [-1287.97, 67.07], [-1287.24, 83.96], [-1289.64, 82.99], [-1293.61, 83.06], [-1293.72, 76.57], [-1291.53, 76.47], [-1292.27, 61.06], [-1294.46, 61.16], [-1295.01, 50.41]], "holes": []}}, {"shape": {"outer": [[-1242.14, 47.92], [-1255.03, 48.58], [-1255.27, 43.85], [-1242.38, 43.18], [-1242.14, 47.92]], "holes": []}}, {"shape": {"outer": [[-1230.08, 49.4], [-1226.7, 49.26], [-1226.59, 53.21], [-1229.97, 53.31], [-1230.08, 49.4]], "holes": []}}, {"shape": {"outer": [[-1375.67, 105.03], [-1375.64, 106.52], [-1376.69, 106.57], [-1377.77, 107.02], [-1378.67, 107.77], [-1379.48, 108.98], [-1380.4, 110.05], [-1382.08, 111.07], [-1383.89, 111.84], [-1385.83, 112.17], [-1387.48, 112.02], [-1389.23, 111.71], [-1390.81, 110.9], [-1392.13, 109.86], [-1392.96, 109.04], [-1393.93, 108.08], [-1394.93, 107.69], [-1396.0, 107.73], [-1396.04, 106.53], [-1395.0, 106.45], [-1394.21, 106.64], [-1393.01, 107.17], [-1391.65, 108.49], [-1390.26, 109.71], [-1389.05, 110.33], [-1387.41, 110.71], [-1385.79, 110.75], [-1384.16, 110.47], [-1382.56, 109.67], [-1381.12, 108.76], [-1379.95, 107.37], [-1379.2, 106.25], [-1378.41, 105.64], [-1377.42, 105.17], [-1376.65, 105.09], [-1375.67, 105.03]], "holes": []}}, {"shape": {"outer": [[-1454.06, 177.41], [-1453.74, 179.81], [-1444.77, 177.34], [-1438.71, 174.64], [-1435.53, 174.26], [-1435.71, 171.39], [-1438.63, 171.41], [-1438.92, 171.66], [-1452.15, 176.8], [-1454.06, 177.41]], "holes": []}}, {"shape": {"outer": [[-1359.39, -370.99], [-1402.51, -368.58], [-1402.39, -366.04], [-1389.39, -366.67], [-1387.83, -334.28], [-1384.82, -334.42], [-1384.65, -330.84], [-1374.9, -331.3], [-1374.57, -324.35], [-1370.66, -324.54], [-1370.74, -326.39], [-1370.92, -329.25], [-1356.99, -329.86], [-1357.62, -343.97], [-1349.32, -344.34], [-1349.39, -345.97], [-1350.08, -361.5], [-1352.39, -361.4], [-1352.11, -356.72], [-1358.75, -356.43], [-1359.39, -370.99]], "holes": []}}, {"shape": {"outer": [[-1469.01, -89.86], [-1468.33, -90.07], [-1467.87, -90.42], [-1467.56, -90.78], [-1467.3, -91.21], [-1467.16, -91.82], [-1467.73, -101.54], [-1467.8, -101.99], [-1467.98, -102.26], [-1468.27, -102.45], [-1468.61, -102.56], [-1471.07, -102.38], [-1471.11, -102.86], [-1483.25, -102.14], [-1483.55, -101.2], [-1483.9, -100.23], [-1484.38, -99.35], [-1484.91, -98.52], [-1485.65, -97.59], [-1486.48, -96.7], [-1487.44, -95.72], [-1488.59, -94.73], [-1489.79, -93.65], [-1490.66, -92.45], [-1491.19, -90.81], [-1491.44, -89.1], [-1491.14, -87.33], [-1490.48, -85.64], [-1489.51, -84.15], [-1488.33, -82.98], [-1486.36, -84.86], [-1484.9, -86.01], [-1483.0, -87.29], [-1480.85, -88.14], [-1478.6, -88.85], [-1476.14, -89.33], [-1473.62, -89.67], [-1471.35, -89.98], [-1469.05, -90.27], [-1469.01, -89.86]], "holes": []}}, {"shape": {"outer": [[-1494.51, -81.18], [-1494.39, -77.31], [-1493.33, -77.66], [-1491.59, -79.4], [-1489.89, -81.26], [-1488.33, -82.98], [-1489.51, -84.15], [-1490.48, -85.64], [-1491.14, -87.33], [-1491.44, -89.1], [-1491.19, -90.81], [-1490.66, -92.45], [-1489.79, -93.65], [-1488.59, -94.73], [-1487.44, -95.72], [-1486.48, -96.7], [-1485.65, -97.59], [-1484.91, -98.52], [-1484.38, -99.35], [-1483.9, -100.23], [-1483.55, -101.2], [-1483.25, -102.14], [-1490.76, -101.35], [-1490.75, -100.81], [-1494.48, -100.67], [-1494.02, -87.43], [-1493.18, -87.45], [-1492.95, -81.23], [-1494.51, -81.18]], "holes": []}}, {"shape": {"outer": [[-1484.58, -103.96], [-1468.66, -105.17], [-1468.65, -104.58], [-1468.23, -104.69], [-1468.0, -104.94], [-1467.84, -105.26], [-1467.8, -105.66], [-1467.84, -106.18], [-1468.76, -124.94], [-1471.47, -124.77], [-1471.93, -124.98], [-1500.77, -123.69], [-1500.47, -112.67], [-1495.6, -112.72], [-1493.64, -113.14], [-1491.57, -113.13], [-1488.68, -111.5], [-1487.07, -109.43], [-1485.07, -105.99], [-1484.58, -103.96]], "holes": []}}, {"shape": {"outer": [[-1500.47, -112.67], [-1500.22, -105.9], [-1499.43, -105.94], [-1498.95, -106.25], [-1498.0, -106.74], [-1496.86, -107.07], [-1495.62, -107.21], [-1494.72, -107.15], [-1493.93, -106.99], [-1492.09, -106.54], [-1490.3, -105.46], [-1488.82, -104.71], [-1487.29, -104.15], [-1485.93, -103.96], [-1484.58, -103.96], [-1485.07, -105.99], [-1487.07, -109.43], [-1488.68, -111.5], [-1491.57, -113.13], [-1493.64, -113.14], [-1495.6, -112.72], [-1500.47, -112.67]], "holes": []}}, {"shape": {"outer": [[-1498.17, -103.93], [-1498.36, -104.71], [-1498.32, -105.29], [-1497.72, -105.65], [-1494.85, -105.61], [-1493.76, -105.39], [-1492.64, -104.96], [-1491.3, -104.21], [-1495.52, -104.03], [-1498.17, -103.93]], "holes": []}}, {"shape": {"outer": [[-1511.13, -104.27], [-1511.17, -105.4], [-1502.14, -105.67], [-1502.11, -104.59], [-1511.13, -104.27]], "holes": []}}, {"shape": {"outer": [[-1513.21, -107.36], [-1513.22, -106.58], [-1502.3, -106.98], [-1503.21, -123.53], [-1516.05, -123.13], [-1515.71, -114.16], [-1514.68, -113.1], [-1514.08, -112.3], [-1513.67, -111.43], [-1513.36, -110.35], [-1513.21, -107.36]], "holes": []}}, {"shape": {"outer": [[-1469.01, -136.24], [-1468.65, -127.94], [-1500.94, -126.05], [-1501.04, -128.9], [-1479.94, -129.86], [-1480.14, -134.54], [-1479.64, -135.44], [-1478.69, -135.82], [-1469.01, -136.24]], "holes": []}}, {"shape": {"outer": [[-1517.72, -153.89], [-1519.69, -154.97], [-1521.44, -157.59], [-1521.77, -160.64], [-1521.18, -163.63], [-1519.45, -165.43], [-1517.28, -165.44], [-1514.74, -163.55], [-1513.97, -159.56], [-1513.95, -155.94], [-1515.26, -153.76], [-1517.72, -153.89]], "holes": []}}, {"shape": {"outer": [[-1597.6, -168.96], [-1601.91, -168.82], [-1602.12, -167.91], [-1599.74, -165.75], [-1599.48, -159.07], [-1601.31, -159.08], [-1601.84, -158.68], [-1601.94, -157.97], [-1600.06, -155.12], [-1598.35, -153.26], [-1596.83, -151.7], [-1594.18, -150.03], [-1590.87, -148.27], [-1587.29, -146.84], [-1583.54, -145.59], [-1577.0, -144.2], [-1572.65, -143.83], [-1569.81, -143.73], [-1572.17, -145.64], [-1573.75, -147.36], [-1575.21, -149.3], [-1576.08, -150.83], [-1576.47, -152.53], [-1576.46, -153.91], [-1580.85, -153.72], [-1580.82, -152.94], [-1596.89, -152.26], [-1597.6, -168.96]], "holes": []}}, {"shape": {"outer": [[-1607.88, -146.46], [-1612.14, -137.95], [-1619.95, -137.01], [-1619.7, -134.53], [-1625.45, -133.77], [-1625.16, -131.73], [-1630.16, -130.62], [-1651.09, -127.38], [-1651.85, -128.43], [-1645.14, -139.39], [-1634.35, -155.71], [-1631.46, -160.08], [-1627.94, -161.53], [-1622.0, -158.74], [-1607.88, -146.46]], "holes": []}}, {"shape": {"outer": [[-1506.03, -80.77], [-1505.87, -75.33], [-1497.43, -76.99], [-1497.5, -81.07], [-1506.03, -80.77]], "holes": []}}, {"shape": {"outer": [[-1693.17, 0.89], [-1694.73, 0.04], [-1695.97, -6.21], [-1695.01, -7.54], [-1694.28, -9.43], [-1694.14, -11.94], [-1694.54, -13.55], [-1695.22, -15.18], [-1696.26, -16.45], [-1697.23, -17.42], [-1697.98, -18.21], [-1699.05, -24.29], [-1697.85, -25.71], [-1696.69, -19.49], [-1695.28, -18.14], [-1693.89, -16.38], [-1692.97, -14.68], [-1692.39, -12.42], [-1692.54, -10.38], [-1693.12, -8.0], [-1694.14, -5.73], [-1693.17, 0.89]], "holes": []}}, {"shape": {"outer": [[-1702.07, 30.39], [-1703.43, 31.24], [-1704.78, 30.83], [-1705.52, 29.74], [-1707.19, 18.33], [-1682.88, 14.22], [-1680.62, 17.53], [-1702.07, 30.39]], "holes": []}}, {"shape": {"outer": [[-1705.19, 2.02], [-1706.01, 2.74], [-1704.25, 12.02], [-1703.32, 13.11], [-1684.14, 9.74], [-1700.35, 1.18], [-1705.19, 2.02]], "holes": []}}, {"shape": {"outer": [[-1702.82, -5.2], [-1707.49, -4.54], [-1708.25, -5.46], [-1709.96, -15.15], [-1709.4, -15.82], [-1704.6, -16.77], [-1704.41, -15.89], [-1706.42, -15.12], [-1707.68, -13.09], [-1708.13, -11.06], [-1707.49, -8.26], [-1706.56, -7.06], [-1704.56, -6.22], [-1702.89, -6.08], [-1702.82, -5.2]], "holes": []}}, {"shape": {"outer": [[-1710.1, -22.19], [-1711.14, -22.56], [-1712.97, -31.82], [-1712.51, -33.19], [-1693.45, -37.19], [-1705.3, -23.22], [-1710.1, -22.19]], "holes": []}}, {"shape": {"outer": [[-1722.79, -19.37], [-1721.93, -14.86], [-1720.67, -15.09], [-1720.36, -13.38], [-1719.55, -13.54], [-1720.73, -19.76], [-1722.79, -19.37]], "holes": []}}, {"shape": {"outer": [[-1718.11, -1.01], [-1718.4, -2.6], [-1717.62, -2.75], [-1716.48, 3.68], [-1718.85, 4.1], [-1719.69, -0.68], [-1718.11, -1.01]], "holes": []}}, {"shape": {"outer": [[-1724.19, -14.41], [-1725.76, -22.81], [-1727.78, -22.43], [-1728.64, -27.01], [-1733.01, -26.19], [-1732.91, -25.5], [-1733.92, -25.34], [-1732.71, -18.85], [-1729.67, -19.42], [-1728.59, -13.62], [-1724.19, -14.41]], "holes": []}}, {"shape": {"outer": [[-1725.8, 14.06], [-1721.19, 13.27], [-1722.1, 8.05], [-1720.31, 7.74], [-1721.71, -0.27], [-1726.07, 0.47], [-1725.03, 6.49], [-1727.92, 6.98], [-1726.78, 13.59], [-1725.91, 13.43], [-1725.8, 14.06]], "holes": []}}, {"shape": {"outer": [[-1733.37, -28.53], [-1723.3, -30.59], [-1722.64, -31.2], [-1722.82, -32.14], [-1726.64, -51.57], [-1727.14, -52.4], [-1728.18, -52.73], [-1729.73, -52.41], [-1731.53, -52.03], [-1733.35, -51.66], [-1735.67, -51.17], [-1737.74, -50.74], [-1746.95, -48.82], [-1747.98, -48.25], [-1746.88, -48.45], [-1746.74, -47.62], [-1738.3, -49.29], [-1738.2, -48.66], [-1733.23, -49.58], [-1730.89, -36.5], [-1735.64, -35.71], [-1734.37, -29.27], [-1733.5, -29.41], [-1733.37, -28.53]], "holes": []}}, {"shape": {"outer": [[-1720.11, -50.48], [-1716.74, -36.17], [-1678.52, -43.18], [-1720.11, -50.48]], "holes": []}}, {"shape": {"outer": [[-1736.21, -57.33], [-1738.94, -71.03], [-1728.15, -72.9], [-1727.02, -72.62], [-1726.36, -71.52], [-1726.4, -69.95], [-1727.23, -67.46], [-1727.53, -63.77], [-1728.04, -61.11], [-1728.75, -59.21], [-1730.26, -58.58], [-1736.21, -57.33]], "holes": []}}, {"shape": {"outer": [[-1660.76, -52.12], [-1660.11, -48.11], [-1649.16, -49.94], [-1649.78, -54.0], [-1660.76, -52.12]], "holes": []}}, {"shape": {"outer": [[-1668.02, -86.34], [-1667.62, -87.71], [-1667.27, -89.21], [-1666.18, -90.25], [-1663.85, -92.17], [-1661.72, -94.65], [-1660.02, -97.61], [-1659.1, -99.2], [-1658.47, -99.46], [-1657.93, -99.32], [-1657.33, -98.97], [-1657.04, -98.25], [-1654.98, -88.58], [-1668.02, -86.34]], "holes": []}}, {"shape": {"outer": [[-1607.09, -127.01], [-1608.25, -134.41], [-1616.53, -133.12], [-1615.36, -125.72], [-1607.09, -127.01]], "holes": []}}, {"shape": {"outer": [[-1569.05, -70.45], [-1571.76, -70.37], [-1571.33, -66.66], [-1569.81, -66.66], [-1569.66, -63.91], [-1551.73, -67.33], [-1549.61, -69.23], [-1548.91, -71.04], [-1548.19, -74.6], [-1548.39, -82.69], [-1548.35, -87.29], [-1549.66, -87.29], [-1549.71, -82.67], [-1554.83, -82.62], [-1555.11, -96.91], [-1554.43, -96.9], [-1554.41, -98.29], [-1552.45, -98.32], [-1552.47, -96.96], [-1549.64, -97.01], [-1549.55, -90.04], [-1548.49, -90.01], [-1548.42, -99.02], [-1549.84, -101.0], [-1551.97, -103.96], [-1553.76, -105.4], [-1555.32, -106.29], [-1557.28, -106.79], [-1556.66, -81.16], [-1569.21, -81.19], [-1569.05, -70.45]], "holes": []}}, {"shape": {"outer": [[-1548.9, -108.62], [-1547.78, -109.15], [-1546.57, -110.31], [-1545.63, -111.61], [-1544.69, -113.89], [-1544.1, -116.5], [-1543.68, -119.14], [-1543.5, -121.49], [-1543.65, -123.84], [-1544.3, -127.14], [-1544.84, -128.36], [-1545.57, -129.05], [-1546.71, -129.49], [-1549.56, -129.36], [-1548.9, -108.62]], "holes": []}}, {"shape": {"outer": [[-1525.37, -72.0], [-1508.91, -74.75], [-1508.94, -80.66], [-1517.49, -80.35], [-1517.63, -84.22], [-1522.86, -84.02], [-1522.84, -83.42], [-1530.28, -83.15], [-1530.3, -81.46], [-1530.26, -80.11], [-1530.09, -78.58], [-1529.56, -76.84], [-1529.1, -75.77], [-1528.47, -74.57], [-1527.61, -73.35], [-1526.7, -72.51], [-1525.37, -72.0]], "holes": []}}, {"shape": {"outer": [[-1658.14, -216.26], [-1650.45, -216.59], [-1650.65, -221.24], [-1658.35, -220.97], [-1658.14, -216.26]], "holes": []}}, {"shape": {"outer": [[-1471.18, -161.66], [-1488.12, -160.79], [-1488.8, -158.92], [-1495.74, -154.74], [-1506.15, -171.93], [-1509.09, -173.47], [-1508.54, -171.64], [-1507.32, -170.32], [-1506.16, -168.67], [-1505.19, -166.77], [-1504.63, -164.95], [-1504.34, -163.2], [-1504.18, -161.49], [-1501.37, -161.78], [-1500.91, -157.04], [-1497.87, -157.26], [-1497.35, -152.31], [-1492.79, -152.66], [-1492.6, -150.43], [-1470.81, -151.56], [-1471.18, -161.66]], "holes": []}}, {"shape": {"outer": [[-1494.86, -181.58], [-1489.39, -181.79], [-1473.58, -182.64], [-1472.24, -181.91], [-1471.55, -180.31], [-1470.55, -163.24], [-1489.84, -162.2], [-1485.96, -164.6], [-1494.76, -178.77], [-1494.86, -181.58]], "holes": []}}, {"shape": {"outer": [[-1489.58, -186.87], [-1473.72, -187.87], [-1472.79, -188.37], [-1471.79, -189.44], [-1472.84, -206.53], [-1487.19, -206.6], [-1488.33, -206.55], [-1489.0, -205.71], [-1487.34, -204.86], [-1495.21, -189.66], [-1495.1, -186.66], [-1489.58, -186.87]], "holes": []}}, {"shape": {"outer": [[-1478.06, -219.66], [-1473.87, -215.81], [-1473.27, -212.74], [-1473.01, -210.53], [-1474.09, -209.21], [-1475.72, -208.68], [-1477.95, -208.57], [-1478.98, -208.62], [-1481.42, -210.52], [-1483.27, -212.19], [-1484.0, -214.15], [-1483.72, -215.62], [-1481.99, -218.49], [-1480.86, -219.36], [-1479.49, -219.66], [-1478.06, -219.66]], "holes": []}}, {"shape": {"outer": [[-1501.86, -227.42], [-1489.62, -228.08], [-1484.75, -226.0], [-1484.77, -225.0], [-1485.39, -223.67], [-1486.52, -222.75], [-1487.76, -221.96], [-1487.68, -219.03], [-1488.3, -217.88], [-1489.5, -216.23], [-1495.71, -215.33], [-1499.67, -215.67], [-1501.0, -214.26], [-1501.45, -211.95], [-1501.06, -209.51], [-1507.23, -197.58], [-1509.26, -197.07], [-1510.95, -199.8], [-1519.26, -194.68], [-1521.15, -196.15], [-1516.45, -199.9], [-1512.18, -202.82], [-1509.39, -206.14], [-1506.45, -212.22], [-1505.68, -216.3], [-1504.19, -218.99], [-1502.61, -222.96], [-1501.86, -227.42]], "holes": []}}, {"shape": {"outer": [[-1484.75, -226.0], [-1478.06, -219.66], [-1479.49, -219.66], [-1480.86, -219.36], [-1481.99, -218.49], [-1483.72, -215.62], [-1484.0, -214.15], [-1483.27, -212.19], [-1481.42, -210.52], [-1478.98, -208.62], [-1485.35, -208.38], [-1487.95, -207.79], [-1490.51, -208.74], [-1490.27, -209.21], [-1497.86, -213.11], [-1499.0, -210.91], [-1500.05, -211.46], [-1501.06, -209.51], [-1501.45, -211.95], [-1501.0, -214.26], [-1499.67, -215.67], [-1495.71, -215.33], [-1489.5, -216.23], [-1488.3, -217.88], [-1487.68, -219.03], [-1487.76, -221.96], [-1486.52, -222.75], [-1485.39, -223.67], [-1484.77, -225.0], [-1484.75, -226.0]], "holes": []}}, {"shape": {"outer": [[-1803.35, -43.76], [-1789.83, -45.7], [-1789.86, -51.57], [-1803.8, -46.9], [-1803.35, -43.76]], "holes": []}}, {"shape": {"outer": [[-1821.14, -40.36], [-1821.18, -41.79], [-1821.21, -42.9], [-1816.83, -43.03], [-1816.76, -40.49], [-1821.14, -40.36]], "holes": []}}, {"shape": {"outer": [[-1848.38, -74.29], [-1850.7, -74.17], [-1850.96, -82.36], [-1849.53, -83.1], [-1848.35, -84.32], [-1847.63, -85.59], [-1847.39, -86.63], [-1804.16, -88.4], [-1804.43, -93.6], [-1779.74, -94.52], [-1772.64, -88.77], [-1772.33, -86.5], [-1769.04, -86.18], [-1767.79, -85.29], [-1767.02, -84.13], [-1775.93, -83.89], [-1777.65, -89.18], [-1793.06, -88.53], [-1794.47, -83.01], [-1836.22, -81.45], [-1839.6, -81.31], [-1848.65, -80.94], [-1848.38, -74.29]], "holes": []}}, {"shape": {"outer": [[-1847.39, -86.63], [-1847.63, -85.59], [-1848.35, -84.32], [-1849.53, -83.1], [-1850.96, -82.36], [-1851.21, -86.52], [-1847.39, -86.63]], "holes": []}}, {"shape": {"outer": [[-1817.51, 8.56], [-1810.79, 7.75], [-1815.16, -17.03], [-1810.86, -17.71], [-1813.16, -30.08], [-1816.11, -29.6], [-1816.6, -32.87], [-1826.02, -31.06], [-1825.54, -29.06], [-1824.46, -28.05], [-1823.93, -27.08], [-1823.71, -26.43], [-1823.74, -25.79], [-1824.15, -25.31], [-1824.74, -24.77], [-1825.95, -24.02], [-1824.24, -14.75], [-1821.74, -15.3], [-1817.51, 8.56]], "holes": []}}, {"shape": {"outer": [[-1859.21, -46.01], [-1853.49, -46.33], [-1853.24, -40.29], [-1855.65, -40.26], [-1855.76, -35.03], [-1892.05, -28.73], [-1896.39, -30.28], [-1897.76, -30.21], [-1897.7, -34.84], [-1897.67, -36.94], [-1899.74, -36.86], [-1900.21, -45.2], [-1899.81, -45.66], [-1898.6, -46.07], [-1896.17, -45.82], [-1893.1, -45.53], [-1888.94, -45.56], [-1885.07, -45.03], [-1882.48, -43.33], [-1880.6, -39.7], [-1880.16, -37.9], [-1879.99, -36.13], [-1876.39, -36.31], [-1875.8, -38.99], [-1875.18, -43.63], [-1872.9, -45.55], [-1869.55, -45.77], [-1859.21, -46.01]], "holes": []}}, {"shape": {"outer": [[-1891.72, -2.09], [-1888.16, -7.95], [-1890.08, -19.92], [-1894.91, -19.04], [-1897.8, -16.75], [-1897.7, -14.39], [-1898.37, -14.1], [-1897.34, -8.19], [-1896.07, -8.38], [-1893.31, -9.01], [-1891.72, -2.09]], "holes": []}}, {"shape": {"outer": [[-1902.42, -26.99], [-1902.84, -42.51], [-1904.18, -40.97], [-1903.9, -28.33], [-1902.42, -26.99]], "holes": []}}, {"shape": {"outer": [[-1896.07, -8.38], [-1894.47, -1.47], [-1891.72, -2.09], [-1893.31, -9.01], [-1896.07, -8.38]], "holes": []}}, {"shape": {"outer": [[-1894.15, 2.27], [-1891.57, 11.69], [-1888.55, 10.76], [-1891.0, 1.34], [-1894.15, 2.27]], "holes": []}}, {"shape": {"outer": [[-1933.06, -12.94], [-1931.18, -13.01], [-1930.93, -6.49], [-1932.82, -6.41], [-1933.06, -12.94]], "holes": []}}, {"shape": {"outer": [[-1945.95, -12.47], [-1944.03, -12.54], [-1943.81, -5.97], [-1945.73, -5.91], [-1945.95, -12.47]], "holes": []}}, {"shape": {"outer": [[-1918.34, -13.48], [-1919.82, -13.39], [-1923.06, -13.18], [-1922.68, -5.15], [-1922.66, -4.65], [-1917.94, -4.87], [-1917.96, -5.42], [-1918.2, -10.44], [-1918.34, -13.48]], "holes": []}}, {"shape": {"outer": [[-1917.96, -5.42], [-1917.07, -4.9], [-1916.39, -5.04], [-1916.05, -5.5], [-1916.1, -6.2], [-1917.12, -10.63], [-1918.2, -10.44], [-1917.96, -5.42]], "holes": []}}, {"shape": {"outer": [[-1923.82, -4.89], [-1923.47, -4.8], [-1923.02, -4.84], [-1922.68, -5.15], [-1923.06, -13.18], [-1919.82, -13.39], [-1919.88, -16.27], [-1924.81, -16.11], [-1924.46, -6.63], [-1923.88, -6.6], [-1923.82, -4.89]], "holes": []}}, {"shape": {"outer": [[-1841.72, -12.72], [-1841.56, -11.73], [-1838.07, -12.31], [-1838.51, -14.88], [-1842.79, -14.02], [-1842.47, -12.63], [-1841.72, -12.72]], "holes": []}}, {"shape": {"outer": [[-1845.22, -15.06], [-1844.83, -16.37], [-1844.79, -17.56], [-1845.08, -19.56], [-1845.81, -21.31], [-1846.96, -22.5], [-1845.22, -15.06]], "holes": []}}, {"shape": {"outer": [[-1838.91, -17.16], [-1842.47, -16.51], [-1842.33, -17.94], [-1842.44, -19.66], [-1842.71, -21.22], [-1843.15, -22.64], [-1843.96, -23.53], [-1844.95, -24.45], [-1845.31, -27.75], [-1840.89, -28.69], [-1840.31, -24.47], [-1842.12, -24.11], [-1840.99, -17.78], [-1839.12, -18.1], [-1838.91, -17.16]], "holes": []}}, {"shape": {"outer": [[-1770.05, -58.41], [-1770.17, -62.68], [-1765.63, -62.81], [-1765.79, -68.36], [-1761.46, -68.48], [-1761.18, -58.66], [-1770.05, -58.41]], "holes": []}}, {"shape": {"outer": [[-1752.27, -68.93], [-1751.48, -68.99], [-1751.19, -66.87], [-1745.31, -67.85], [-1742.96, -54.28], [-1764.58, -50.92], [-1764.65, -50.16], [-1777.13, -48.19], [-1777.37, -50.26], [-1778.2, -50.42], [-1777.49, -51.17], [-1777.65, -53.39], [-1768.13, -55.36], [-1755.26, -56.19], [-1752.63, -56.84], [-1752.81, -66.73], [-1752.27, -68.93]], "holes": []}}, {"shape": {"outer": [[-1755.23, -75.23], [-1754.93, -75.57], [-1750.91, -75.21], [-1750.63, -73.4], [-1751.21, -73.31], [-1755.23, -75.23]], "holes": []}}, {"shape": {"outer": [[-1804.87, -11.77], [-1804.48, -9.61], [-1802.22, -10.0], [-1802.61, -12.18], [-1804.87, -11.77]], "holes": []}}, {"shape": {"outer": [[-1807.69, -4.63], [-1805.76, 5.86], [-1801.89, 5.16], [-1803.3, -2.53], [-1802.17, -2.74], [-1802.68, -5.54], [-1807.69, -4.63]], "holes": []}}, {"shape": {"outer": [[-1799.6, -34.86], [-1805.55, -33.85], [-1804.64, -28.51], [-1801.22, -29.08], [-1800.24, -23.36], [-1797.53, -23.82], [-1799.6, -34.86]], "holes": []}}, {"shape": {"outer": [[-1799.65, -5.86], [-1799.25, -3.56], [-1797.65, -3.84], [-1796.99, -0.05], [-1795.14, -0.36], [-1795.9, -4.66], [-1794.46, -4.87], [-1794.59, -6.73], [-1799.65, -5.86]], "holes": []}}, {"shape": {"outer": [[-1532.74, -83.06], [-1532.77, -82.19], [-1533.09, -81.51], [-1533.06, -80.69], [-1533.06, -79.77], [-1532.89, -78.7], [-1532.6, -77.63], [-1532.04, -76.36], [-1531.35, -75.04], [-1531.1, -73.96], [-1531.18, -72.87], [-1531.33, -71.81], [-1531.81, -70.84], [-1542.95, -68.67], [-1544.06, -69.4], [-1545.26, -70.91], [-1545.46, -74.96], [-1545.51, -80.53], [-1545.34, -83.81], [-1545.02, -84.44], [-1544.95, -93.96], [-1544.93, -96.69], [-1544.93, -98.55], [-1544.42, -101.26], [-1543.74, -103.65], [-1543.21, -105.73], [-1542.12, -108.24], [-1540.11, -111.61], [-1539.16, -114.16], [-1538.25, -117.48], [-1537.47, -120.76], [-1536.4, -123.15], [-1535.43, -124.49], [-1534.02, -125.57], [-1532.43, -126.45], [-1529.66, -127.48], [-1526.54, -127.92], [-1524.3, -127.97], [-1524.18, -125.94], [-1524.37, -125.48], [-1524.77, -125.31], [-1529.4, -125.2], [-1528.94, -114.87], [-1522.98, -114.99], [-1524.84, -112.12], [-1525.18, -109.71], [-1524.97, -107.12], [-1540.59, -106.55], [-1539.72, -82.8], [-1532.74, -83.06]], "holes": []}}, {"shape": {"outer": [[-1524.19, -130.39], [-1529.37, -130.66], [-1531.46, -130.66], [-1533.59, -130.37], [-1534.83, -129.98], [-1535.95, -129.35], [-1536.77, -129.25], [-1537.6, -129.47], [-1538.28, -130.07], [-1538.65, -130.77], [-1539.0, -131.73], [-1539.16, -133.03], [-1539.2, -134.6], [-1528.24, -134.79], [-1526.84, -134.66], [-1525.74, -134.32], [-1524.86, -133.5], [-1524.31, -131.95], [-1524.19, -130.39]], "holes": []}}, {"shape": {"outer": [[-1650.0, 8.5], [-1649.19, 13.04], [-1638.13, 11.19], [-1638.98, 6.51], [-1650.0, 8.5]], "holes": []}}, {"shape": {"outer": [[-1593.37, 66.67], [-1592.95, 78.73], [-1595.48, 77.0], [-1594.87, 76.37], [-1596.67, 73.89], [-1597.36, 74.34], [-1598.2, 72.99], [-1598.59, 71.49], [-1598.28, 70.11], [-1597.58, 69.98], [-1596.21, 68.62], [-1596.77, 68.07], [-1595.25, 67.02], [-1594.31, 66.71], [-1593.37, 66.67]], "holes": []}}, {"shape": {"outer": [[-1557.88, 9.96], [-1555.99, 9.94], [-1548.11, -8.73], [-1550.04, -9.93], [-1566.61, -6.86], [-1564.16, -4.12], [-1557.88, 9.96]], "holes": []}}, {"shape": {"outer": [[-1562.04, 10.1], [-1561.18, 30.48], [-1555.84, 30.17], [-1555.63, 29.23], [-1555.53, 27.77], [-1557.97, 15.92], [-1560.6, 9.99], [-1564.06, 2.83], [-1565.71, -0.98], [-1569.23, -4.94], [-1572.01, -5.84], [-1587.19, -3.25], [-1588.33, -2.33], [-1589.04, -1.3], [-1588.71, 3.0], [-1587.3, 5.82], [-1585.04, 7.31], [-1584.85, 12.79], [-1578.19, 12.5], [-1578.26, 10.77], [-1562.04, 10.1]], "holes": []}}, {"shape": {"outer": [[-1676.43, 18.46], [-1664.97, 12.3], [-1658.88, 10.83], [-1659.95, 13.07], [-1660.61, 16.41], [-1660.29, 20.03], [-1658.18, 25.35], [-1655.48, 29.99], [-1650.87, 34.35], [-1649.34, 35.64], [-1645.49, 53.86], [-1676.43, 18.46]], "holes": []}}, {"shape": {"outer": [[-1649.34, 35.64], [-1653.59, 10.75], [-1654.49, 9.66], [-1658.88, 10.83], [-1659.95, 13.07], [-1660.61, 16.41], [-1660.29, 20.03], [-1658.18, 25.35], [-1655.48, 29.99], [-1650.87, 34.35], [-1649.34, 35.64]], "holes": []}}, {"shape": {"outer": [[-1630.75, 66.4], [-1630.33, 64.45], [-1630.19, 62.07], [-1632.31, 52.59], [-1633.84, 50.35], [-1635.75, 49.44], [-1637.96, 49.63], [-1643.56, 50.5], [-1642.43, 57.53], [-1637.42, 63.22], [-1634.29, 65.04], [-1630.75, 66.4]], "holes": []}}, {"shape": {"outer": [[-1873.98, 34.76], [-1871.16, 35.67], [-1863.94, 31.2], [-1857.32, 9.65], [-1857.74, 4.19], [-1869.19, 6.4], [-1869.62, -0.38], [-1871.64, 15.06], [-1868.7, 15.52], [-1869.72, 21.17], [-1872.47, 20.7], [-1873.98, 34.76]], "holes": []}}, {"shape": {"outer": [[-1853.99, 3.52], [-1853.83, 9.99], [-1859.59, 29.4], [-1855.96, 29.72], [-1835.13, 26.1], [-1839.17, 3.36], [-1842.56, 3.94], [-1843.0, 1.6], [-1853.99, 3.52]], "holes": []}}, {"shape": {"outer": [[-1857.21, 33.17], [-1857.65, 32.03], [-1858.81, 31.66], [-1859.93, 31.81], [-1874.89, 41.7], [-1878.07, 49.2], [-1878.66, 52.51], [-1877.99, 56.06], [-1876.43, 59.79], [-1874.44, 61.9], [-1873.46, 60.14], [-1871.91, 61.12], [-1872.97, 63.11], [-1870.85, 64.47], [-1867.05, 65.45], [-1864.78, 65.78], [-1864.28, 65.37], [-1864.42, 64.04], [-1863.01, 61.33], [-1858.54, 57.42], [-1858.29, 56.6], [-1859.2, 56.76], [-1860.27, 50.58], [-1859.2, 50.4], [-1860.5, 42.89], [-1856.57, 42.21], [-1858.11, 33.32], [-1857.21, 33.17]], "holes": []}}, {"shape": {"outer": [[-1844.14, 52.2], [-1843.64, 54.14], [-1821.34, 50.39], [-1821.16, 51.22], [-1819.31, 50.88], [-1819.24, 52.48], [-1819.84, 54.26], [-1820.4, 55.14], [-1821.28, 55.75], [-1837.28, 57.88], [-1844.14, 59.59], [-1854.17, 62.71], [-1858.06, 63.87], [-1858.7, 60.98], [-1855.44, 58.18], [-1854.34, 55.94], [-1854.67, 54.0], [-1844.14, 52.2]], "holes": []}}, {"shape": {"outer": [[-1814.28, 47.04], [-1813.64, 50.84], [-1810.97, 50.4], [-1812.14, 43.52], [-1813.76, 43.8], [-1813.23, 46.86], [-1814.28, 47.04]], "holes": []}}, {"shape": {"outer": [[-1814.3, 40.56], [-1810.4, 38.93], [-1811.6, 33.32], [-1813.17, 33.59], [-1812.45, 37.76], [-1814.71, 38.15], [-1814.3, 40.56]], "holes": []}}, {"shape": {"outer": [[-1813.58, 31.18], [-1809.79, 30.13], [-1813.06, 10.95], [-1817.02, 11.33], [-1813.58, 31.18]], "holes": []}}, {"shape": {"outer": [[-1805.52, 42.55], [-1803.16, 42.09], [-1803.64, 39.64], [-1806.01, 40.1], [-1805.52, 42.55]], "holes": []}}, {"shape": {"outer": [[-1806.0, 54.68], [-1807.51, 46.17], [-1801.16, 44.17], [-1803.31, 32.7], [-1795.81, 31.36], [-1791.77, 52.91], [-1794.7, 53.39], [-1794.88, 55.01], [-1806.0, 54.68]], "holes": []}}, {"shape": {"outer": [[-1793.98, 27.64], [-1790.88, 27.02], [-1792.86, 16.74], [-1793.13, 15.37], [-1796.22, 15.97], [-1793.98, 27.64]], "holes": []}}, {"shape": {"outer": [[-1805.39, 22.65], [-1802.94, 22.24], [-1805.18, 9.18], [-1801.1, 8.47], [-1799.5, 17.73], [-1798.13, 17.5], [-1796.32, 28.05], [-1804.24, 29.4], [-1805.39, 22.65]], "holes": []}}, {"shape": {"outer": [[-1789.34, 51.17], [-1786.58, 50.53], [-1790.16, 30.63], [-1793.1, 31.14], [-1789.34, 51.17]], "holes": []}}, {"shape": {"outer": [[-1764.75, 42.91], [-1763.59, 45.1], [-1762.02, 47.85], [-1760.95, 50.78], [-1760.7, 52.32], [-1766.7, 53.4], [-1776.16, 54.45], [-1782.49, 54.96], [-1788.6, 55.17], [-1788.93, 52.45], [-1786.38, 51.86], [-1764.08, 47.61], [-1764.75, 42.91]], "holes": []}}, {"shape": {"outer": [[-1848.25, -91.17], [-1849.6, -92.95], [-1852.1, -94.31], [-1855.43, -94.49], [-1857.64, -93.78], [-1858.97, -92.76], [-1856.37, -91.23], [-1855.13, -91.76], [-1853.72, -92.12], [-1851.96, -91.58], [-1851.53, -90.94], [-1848.25, -91.17]], "holes": []}}, {"shape": {"outer": [[-1858.97, -92.76], [-1859.86, -93.44], [-1873.11, -92.98], [-1873.24, -96.28], [-1836.15, -97.68], [-1836.19, -98.8], [-1811.5, -99.76], [-1811.07, -92.53], [-1848.25, -91.17], [-1849.6, -92.95], [-1852.1, -94.31], [-1855.43, -94.49], [-1857.64, -93.78], [-1858.97, -92.76]], "holes": []}}, {"shape": {"outer": [[-1784.63, -106.29], [-1793.3, -98.86], [-1793.09, -98.17], [-1779.74, -98.04], [-1779.02, -98.66], [-1782.9, -106.51], [-1784.63, -106.29]], "holes": []}}, {"shape": {"outer": [[-1747.03, -89.63], [-1745.94, -83.59], [-1745.33, -83.71], [-1744.7, -79.06], [-1746.55, -78.74], [-1747.74, -78.98], [-1750.44, -83.02], [-1760.17, -82.86], [-1761.05, -85.39], [-1763.41, -85.46], [-1763.81, -87.77], [-1762.24, -88.11], [-1762.04, -86.99], [-1747.03, -89.63]], "holes": []}}, {"shape": {"outer": [[-1762.57, -89.93], [-1769.58, -90.21], [-1776.49, -98.99], [-1779.96, -107.96], [-1780.17, -109.42], [-1779.25, -110.8], [-1773.02, -117.14], [-1771.56, -117.67], [-1767.57, -118.3], [-1762.57, -89.93]], "holes": []}}, {"shape": {"outer": [[77.11, -287.22], [72.23, -281.79], [62.21, -290.75], [74.12, -303.97], [78.25, -300.29], [79.59, -300.15], [81.13, -300.62], [90.79, -311.3], [91.79, -310.41], [80.63, -298.06], [82.25, -296.6], [78.87, -292.87], [78.22, -293.46], [76.65, -291.72], [77.3, -291.14], [75.26, -288.89], [77.11, -287.22]], "holes": []}}, {"shape": {"outer": [[97.57, -318.3], [95.51, -320.22], [96.84, -321.82], [97.11, -321.79], [97.4, -321.83], [97.73, -321.97], [98.0, -322.22], [98.16, -322.48], [98.23, -322.71], [98.25, -322.95], [98.23, -323.16], [98.16, -323.37], [98.0, -323.65], [97.76, -323.86], [97.43, -324.02], [97.05, -324.06], [96.84, -324.04], [96.63, -323.96], [105.67, -333.49], [104.07, -334.99], [103.08, -335.93], [115.06, -348.61], [120.92, -343.23], [115.5, -337.2], [97.57, -318.3]], "holes": []}}, {"shape": {"outer": [[79.73, -302.49], [78.08, -304.03], [84.22, -310.97], [84.4, -311.22], [84.73, -311.43], [85.08, -311.54], [85.48, -311.64], [85.87, -311.55], [86.31, -311.38], [86.73, -311.1], [87.02, -310.85], [79.73, -302.49]], "holes": []}}, {"shape": {"outer": [[-2472.09, 173.4], [-2472.74, 169.84], [-2472.37, 166.52], [-2471.47, 163.76], [-2469.12, 160.96], [-2465.47, 158.79], [-2461.61, 158.33], [-2458.19, 159.01], [-2455.11, 161.11], [-2452.85, 164.82], [-2452.51, 168.79], [-2453.45, 172.52], [-2455.71, 175.58], [-2458.16, 177.64], [-2460.56, 178.52], [-2463.89, 178.39], [-2466.43, 177.09], [-2472.09, 173.4]], "holes": []}}, {"shape": {"outer": [[-2511.41, 203.03], [-2509.85, 215.27], [-2508.1, 217.55], [-2506.39, 218.71], [-2504.26, 219.07], [-2500.79, 218.63], [-2498.75, 216.5], [-2497.52, 214.13], [-2498.94, 201.5], [-2511.41, 203.03]], "holes": []}}, {"shape": {"outer": [[-1404.5, 68.1], [-1404.55, 66.69], [-1407.08, 66.79], [-1406.85, 72.28], [-1406.33, 72.19], [-1406.27, 73.74], [-1405.66, 73.71], [-1405.7, 72.81], [-1404.65, 72.77], [-1404.84, 68.11], [-1404.5, 68.1]], "holes": []}}, {"shape": {"outer": [[-1188.9, 7.4], [-1189.17, 1.95], [-1191.69, 2.08], [-1191.41, 7.53], [-1188.9, 7.4]], "holes": []}}, {"shape": {"outer": [[-1190.45, -16.86], [-1190.68, -22.38], [-1193.0, -22.28], [-1192.77, -16.76], [-1190.45, -16.86]], "holes": []}}, {"shape": {"outer": [[-1190.68, -22.38], [-1191.04, -30.13], [-1193.35, -30.02], [-1193.0, -22.28], [-1190.68, -22.38]], "holes": []}}, {"shape": {"outer": [[-1191.04, -30.13], [-1191.13, -31.95], [-1193.43, -31.83], [-1193.35, -30.02], [-1191.04, -30.13]], "holes": []}}, {"shape": {"outer": [[-1191.13, -31.95], [-1191.23, -33.74], [-1193.52, -33.63], [-1193.43, -31.83], [-1191.13, -31.95]], "holes": []}}, {"shape": {"outer": [[-1191.23, -33.74], [-1191.32, -35.5], [-1193.6, -35.38], [-1193.52, -33.63], [-1191.23, -33.74]], "holes": []}}, {"shape": {"outer": [[-1191.32, -35.5], [-1191.41, -37.32], [-1193.69, -37.21], [-1193.6, -35.38], [-1191.32, -35.5]], "holes": []}}, {"shape": {"outer": [[-1191.41, -37.32], [-1191.81, -44.56], [-1194.13, -44.42], [-1193.69, -37.21], [-1191.41, -37.32]], "holes": []}}, {"shape": {"outer": [[-1191.81, -44.56], [-1192.06, -50.17], [-1194.48, -50.05], [-1194.13, -44.42], [-1191.81, -44.56]], "holes": []}}, {"shape": {"outer": [[-1339.24, -131.37], [-1336.87, -131.47], [-1337.45, -143.12], [-1339.77, -143.02], [-1339.24, -131.37]], "holes": []}}, {"shape": {"outer": [[116.97, -583.42], [134.66, -566.33], [134.41, -565.22], [133.6, -564.68], [132.57, -564.61], [123.31, -573.74], [114.79, -582.26], [115.85, -583.2], [116.41, -583.41], [116.97, -583.42]], "holes": []}}, {"shape": {"outer": [[113.57, -584.98], [113.95, -585.57], [114.04, -586.17], [108.9, -591.35], [110.43, -588.24], [110.92, -585.59], [111.11, -582.67], [113.57, -584.98]], "holes": []}}, {"shape": {"outer": [[26.9, -650.77], [28.54, -650.4], [29.96, -649.48], [31.52, -648.12], [32.29, -647.05], [32.72, -645.5], [32.91, -642.69], [33.35, -636.09], [33.96, -630.77], [36.2, -623.06], [38.31, -618.71], [42.11, -610.83], [44.95, -606.55], [48.57, -601.86], [47.58, -600.91], [17.49, -632.59], [16.12, -635.89], [15.28, -640.55], [16.51, -644.48], [18.22, -647.95], [20.75, -650.32], [23.92, -651.26], [26.9, -650.77]], "holes": []}}, {"shape": {"outer": [[166.34, -499.21], [167.49, -500.52], [168.05, -502.65], [167.74, -504.58], [166.9, -506.13], [163.58, -509.2], [161.88, -508.91], [159.68, -509.56], [157.99, -511.15], [157.19, -512.87], [156.93, -514.49], [157.11, -515.95], [151.4, -520.52], [152.64, -521.74], [153.67, -523.18], [154.24, -525.19], [154.33, -527.3], [153.86, -529.39], [153.15, -531.08], [150.74, -530.04], [148.38, -528.92], [145.93, -527.6], [143.85, -526.18], [141.88, -524.78], [140.23, -523.2], [138.57, -521.48], [137.7, -519.65], [137.12, -517.54], [137.13, -515.73], [137.69, -513.45], [139.95, -510.88], [142.92, -508.05], [143.06, -509.65], [143.58, -510.78], [145.34, -512.63], [146.87, -513.28], [149.1, -513.41], [150.54, -513.07], [151.54, -512.55], [152.54, -512.01], [153.8, -511.1], [166.34, -499.21]], "holes": []}}, {"shape": {"outer": [[185.89, -527.5], [185.76, -530.65], [184.65, -533.47], [182.06, -532.38], [179.67, -530.73], [177.19, -527.37], [175.81, -524.13], [174.6, -520.18], [175.06, -516.84], [176.5, -513.28], [183.33, -515.18], [182.28, -515.83], [181.38, -516.67], [180.24, -518.42], [179.87, -519.56], [179.71, -520.75], [179.79, -522.04], [180.12, -523.28], [181.25, -525.21], [182.11, -526.05], [183.13, -526.73], [184.47, -527.26], [185.89, -527.5]], "holes": []}}, {"shape": {"outer": [[152.29, -501.84], [152.47, -503.1], [153.36, -504.13], [154.82, -504.55], [150.66, -508.49], [149.99, -507.22], [149.19, -506.56], [148.04, -505.99], [152.29, -501.84]], "holes": []}}, {"shape": {"outer": [[155.9, -501.27], [154.89, -500.77], [153.87, -500.62], [179.21, -474.84], [180.47, -476.13], [155.9, -501.27]], "holes": []}}, {"shape": {"outer": [[193.56, -457.0], [192.51, -455.74], [191.11, -454.87], [189.52, -454.51], [187.88, -454.66], [186.38, -455.33], [185.17, -456.43], [184.36, -457.93], [184.09, -459.61], [184.39, -461.27], [185.24, -462.76], [186.52, -463.87], [188.11, -464.5], [189.81, -464.57], [191.44, -464.09], [192.82, -463.08], [193.75, -461.73], [194.21, -460.16], [194.14, -458.53], [193.56, -457.0]], "holes": []}}, {"shape": {"outer": [[145.27, -398.29], [146.84, -398.52], [150.48, -399.96], [153.19, -402.08], [154.6, -403.81], [155.67, -405.76], [156.5, -408.39], [156.71, -409.63], [156.68, -411.72], [156.19, -411.76], [155.74, -411.71], [155.29, -411.47], [155.12, -411.04], [154.99, -408.95], [154.14, -406.23], [153.03, -404.36], [151.6, -402.77], [150.2, -401.69], [148.44, -400.75], [146.89, -400.01], [145.44, -399.71], [145.05, -399.48], [144.88, -399.11], [144.94, -398.69], [145.27, -398.29]], "holes": []}}, {"shape": {"outer": [[145.29, -423.29], [143.12, -423.43], [139.53, -422.62], [137.13, -421.4], [135.24, -419.88], [133.47, -417.75], [132.17, -415.14], [131.75, -413.75], [131.46, -411.96], [131.49, -410.64], [131.9, -410.28], [132.46, -410.15], [132.97, -410.34], [133.23, -410.73], [133.34, -411.89], [133.67, -413.66], [134.18, -415.11], [135.12, -416.82], [136.26, -418.25], [138.61, -420.14], [140.99, -421.2], [143.16, -421.63], [144.5, -421.6], [144.96, -421.73], [145.25, -422.06], [145.31, -422.52], [145.29, -423.29]], "holes": []}}, {"shape": {"outer": [[187.8, -537.8], [186.83, -537.87], [186.44, -536.61], [194.7, -528.03], [195.63, -525.7], [196.01, -522.28], [196.8, -521.53], [197.56, -521.73], [199.02, -522.89], [199.25, -524.79], [198.89, -526.42], [197.72, -528.4], [187.8, -537.8]], "holes": []}}, {"shape": {"outer": [[220.02, -440.08], [220.86, -441.36], [221.87, -443.57], [222.57, -445.29], [219.13, -446.48], [217.87, -446.68], [216.88, -446.64], [215.7, -446.33], [214.85, -445.7], [214.26, -445.05], [217.04, -442.6], [220.02, -440.08]], "holes": []}}, {"shape": {"outer": [[230.5, -426.29], [229.89, -425.44], [229.79, -424.29], [202.08, -452.32], [203.06, -453.58], [230.5, -426.29]], "holes": []}}, {"shape": {"outer": [[-575.34, -265.02], [-580.26, -269.5], [-585.11, -273.93], [-584.16, -274.96], [-606.43, -295.37], [-613.97, -301.52], [-586.41, -332.05], [-583.65, -335.35], [-576.34, -328.01], [-560.2, -312.9], [-561.31, -311.74], [-571.61, -300.82], [-571.44, -299.18], [-564.95, -293.25], [-569.66, -288.12], [-561.19, -280.4], [-570.87, -269.88], [-575.34, -265.02]], "holes": []}}, {"shape": {"outer": [[-199.31, -112.99], [-199.85, -113.97], [-200.33, -114.97], [-200.46, -116.4], [-205.31, -116.08], [-204.45, -114.13], [-202.14, -112.85], [-199.31, -112.99]], "holes": []}}, {"shape": {"outer": [[-205.74, -125.82], [-200.72, -126.2], [-200.78, -127.42], [-200.63, -128.43], [-200.32, -129.45], [-199.93, -130.35], [-200.17, -130.43], [-201.38, -130.72], [-203.04, -130.68], [-203.83, -130.65], [-204.68, -130.31], [-205.2, -129.83], [-205.76, -128.62], [-205.74, -125.82]], "holes": []}}, {"shape": {"outer": [[-215.13, -32.33], [-214.59, -31.83], [-212.8, -33.72], [-213.44, -34.32], [-212.98, -34.81], [-214.63, -36.36], [-215.19, -35.78], [-215.9, -36.45], [-217.64, -34.61], [-216.97, -33.98], [-217.53, -33.39], [-215.73, -31.69], [-215.13, -32.33]], "holes": []}}, {"shape": {"outer": [[-222.49, -40.55], [-222.07, -40.15], [-220.97, -41.32], [-221.39, -41.7], [-220.79, -42.34], [-225.08, -46.36], [-225.56, -45.85], [-225.04, -45.37], [-226.3, -44.02], [-226.83, -44.52], [-227.42, -43.9], [-223.12, -39.88], [-222.49, -40.55]], "holes": []}}, {"shape": {"outer": [[-366.25, -329.13], [-363.32, -332.37], [-360.24, -329.6], [-358.45, -331.57], [-351.5, -325.34], [-356.17, -320.18], [-366.25, -329.13]], "holes": []}}, {"shape": {"outer": [[-354.54, -318.74], [-349.91, -323.85], [-343.06, -317.67], [-347.65, -312.62], [-354.54, -318.74]], "holes": []}}, {"shape": {"outer": [[-345.77, -310.96], [-341.23, -315.97], [-333.41, -308.93], [-334.65, -307.57], [-335.21, -308.08], [-336.95, -306.17], [-336.3, -305.58], [-337.82, -303.91], [-345.77, -310.96]], "holes": []}}, {"shape": {"outer": [[-321.96, -298.61], [-326.37, -293.74], [-334.29, -300.76], [-333.1, -302.07], [-332.54, -301.57], [-330.8, -303.48], [-331.42, -304.06], [-329.88, -305.76], [-321.96, -298.61]], "holes": []}}, {"shape": {"outer": [[-317.9, -286.21], [-313.84, -290.5], [-316.23, -293.4], [-320.14, -296.94], [-324.52, -292.09], [-317.9, -286.21]], "holes": []}}, {"shape": {"outer": [[-309.86, -280.35], [-309.19, -279.68], [-307.42, -281.4], [-312.54, -287.62], [-315.7, -284.28], [-310.46, -279.62], [-309.86, -280.35]], "holes": []}}, {"shape": {"outer": [[-230.74, -209.71], [-227.16, -213.66], [-227.88, -214.31], [-227.23, -215.04], [-238.97, -224.99], [-244.31, -219.1], [-233.69, -209.8], [-232.41, -211.21], [-230.74, -209.71]], "holes": []}}, {"shape": {"outer": [[-286.14, -265.32], [-271.33, -252.18], [-276.07, -246.89], [-290.87, -260.02], [-286.14, -265.32]], "holes": []}}, {"shape": {"outer": [[-267.36, -249.09], [-250.39, -234.68], [-255.46, -228.89], [-272.2, -243.57], [-267.36, -249.09]], "holes": []}}, {"shape": {"outer": [[-248.07, -232.72], [-241.43, -227.08], [-246.67, -221.17], [-253.21, -226.92], [-248.07, -232.72]], "holes": []}}, {"shape": {"outer": [[-250.32, -188.46], [-254.98, -192.58], [-244.95, -203.82], [-240.98, -200.3], [-242.0, -199.14], [-241.04, -198.35], [-240.06, -199.44], [-238.87, -198.39], [-260.06, -174.63], [-262.33, -176.64], [-254.43, -185.49], [-253.62, -184.77], [-250.32, -188.46]], "holes": []}}, {"shape": {"outer": [[-1093.55, -549.68], [-1093.06, -541.09], [-1093.58, -540.37], [-1094.26, -539.83], [-1095.65, -539.81], [-1097.11, -540.13], [-1098.39, -540.72], [-1099.59, -541.78], [-1100.61, -543.72], [-1101.39, -545.8], [-1101.83, -547.1], [-1095.92, -547.59], [-1095.0, -547.66], [-1093.55, -549.68]], "holes": []}}, {"shape": {"outer": [[-1101.54, -755.2], [-1100.23, -728.36], [-1099.77, -719.78], [-1099.39, -711.85], [-1099.53, -704.08], [-1102.57, -704.05], [-1105.15, -755.07], [-1101.54, -755.2]], "holes": []}}, {"shape": {"outer": [[-1099.48, -702.54], [-1098.07, -695.57], [-1098.5, -694.11], [-1098.73, -692.02], [-1098.39, -687.73], [-1095.11, -630.91], [-1099.0, -630.67], [-1102.45, -702.43], [-1099.48, -702.54]], "holes": []}}, {"shape": {"outer": [[-1237.77, -628.73], [-1237.07, -627.82], [-1244.91, -622.6], [-1266.05, -609.72], [-1281.07, -601.91], [-1282.63, -600.13], [-1283.27, -597.92], [-1289.59, -597.06], [-1292.08, -596.2], [-1302.14, -591.87], [-1304.26, -592.5], [-1293.54, -597.47], [-1283.39, -602.11], [-1273.58, -607.11], [-1264.85, -612.08], [-1254.79, -618.19], [-1247.78, -622.71], [-1237.77, -628.73]], "holes": []}}, {"shape": {"outer": [[-1237.07, -627.82], [-1235.64, -625.96], [-1248.46, -615.57], [-1255.76, -609.59], [-1265.21, -609.03], [-1265.13, -605.95], [-1265.06, -600.9], [-1279.74, -600.03], [-1279.67, -598.52], [-1280.3, -597.97], [-1282.07, -597.79], [-1281.92, -595.73], [-1285.45, -595.24], [-1289.6, -593.35], [-1294.32, -591.79], [-1300.41, -591.44], [-1302.14, -591.87], [-1292.08, -596.2], [-1289.59, -597.06], [-1283.27, -597.92], [-1282.63, -600.13], [-1281.07, -601.91], [-1266.05, -609.72], [-1244.91, -622.6], [-1237.07, -627.82]], "holes": []}}, {"shape": {"outer": [[-1142.01, -760.06], [-1140.87, -756.14], [-1138.12, -756.73], [-1136.86, -749.69], [-1134.46, -748.89], [-1132.59, -748.18], [-1130.53, -747.3], [-1129.17, -746.61], [-1127.25, -745.73], [-1125.86, -744.76], [-1125.02, -744.06], [-1116.85, -747.77], [-1122.19, -760.63], [-1110.15, -761.04], [-1114.99, -761.81], [-1119.17, -762.22], [-1124.75, -762.32], [-1129.41, -762.09], [-1134.48, -761.51], [-1138.23, -760.95], [-1142.01, -760.06]], "holes": []}}, {"shape": {"outer": [[-1105.37, -761.24], [-1102.55, -761.54], [-1103.32, -776.21], [-1106.88, -775.94], [-1108.1, -787.5], [-1108.34, -789.12], [-1214.61, -739.7], [-1213.79, -737.15], [-1187.77, -748.83], [-1142.57, -762.53], [-1138.52, -763.42], [-1134.45, -764.0], [-1129.3, -764.53], [-1124.34, -764.75], [-1118.66, -764.56], [-1113.57, -764.23], [-1109.29, -763.64], [-1106.61, -762.41], [-1105.37, -761.24]], "holes": []}}, {"shape": {"outer": [[-1185.13, -779.33], [-1180.1, -777.48], [-1211.02, -763.87], [-1215.45, -765.36], [-1185.13, -779.33]], "holes": []}}, {"shape": {"outer": [[-1219.54, -770.4], [-1216.77, -769.55], [-1198.58, -777.77], [-1197.48, -780.4], [-1219.54, -770.4]], "holes": []}}, {"shape": {"outer": [[-1188.25, -784.59], [-1185.58, -783.72], [-1161.51, -794.79], [-1160.92, -796.21], [-1147.37, -802.49], [-1146.74, -803.82], [-1173.76, -791.33], [-1176.49, -792.26], [-1177.45, -789.49], [-1188.25, -784.59]], "holes": []}}, {"shape": {"outer": [[1738.33, 986.22], [1743.07, 990.65], [1730.97, 1003.84], [1728.92, 1008.52], [1729.14, 1011.65], [1732.65, 1014.61], [1722.89, 1024.88], [1716.02, 1019.21], [1725.22, 1009.44], [1729.39, 1002.58], [1722.22, 997.03], [1726.95, 991.64], [1730.52, 994.85], [1738.33, 986.22]], "holes": []}}, {"shape": {"outer": [[103.55, -387.92], [105.65, -389.13], [108.85, -390.21], [112.29, -390.42], [115.58, -389.98], [117.91, -389.18], [116.59, -387.79], [114.05, -388.52], [111.31, -388.72], [108.89, -388.44], [106.7, -387.65], [105.06, -386.64], [103.55, -387.92]], "holes": []}}, {"shape": {"outer": [[124.32, -383.41], [125.68, -380.95], [126.3, -378.23], [126.67, -375.04], [126.63, -372.0], [126.09, -370.02], [125.36, -368.95], [123.79, -370.28], [124.04, -370.81], [124.58, -372.75], [124.64, -375.06], [124.36, -378.03], [123.76, -380.53], [123.05, -382.09], [124.32, -383.41]], "holes": []}}, {"shape": {"outer": [[-130.19, -206.56], [-130.67, -207.78], [-131.14, -209.0], [-131.0, -210.26], [-130.4, -211.62], [-129.18, -212.81], [-128.03, -213.48], [-128.93, -232.55], [-130.16, -233.47], [-131.13, -234.2], [-131.89, -235.43], [-132.21, -237.03], [-131.9, -238.65], [-131.23, -239.35], [-129.62, -241.05], [-130.17, -264.26], [-130.92, -263.42], [-134.02, -266.18], [-132.36, -268.04], [-128.94, -265.0], [-127.82, -265.08], [-127.17, -254.72], [-128.74, -254.62], [-128.47, -250.23], [-127.05, -250.32], [-126.44, -240.63], [-127.35, -240.27], [-128.61, -239.79], [-129.74, -238.65], [-130.07, -237.23], [-129.75, -235.82], [-128.72, -234.53], [-127.18, -234.12], [-126.06, -233.82], [-125.61, -223.67], [-126.65, -223.63], [-126.47, -219.63], [-125.47, -219.66], [-124.96, -208.09], [-126.37, -208.04], [-130.19, -206.56]], "holes": []}}, {"shape": {"outer": [[-113.61, -269.01], [-112.24, -267.54], [-115.6, -263.48], [-114.38, -242.47], [-113.18, -241.7], [-111.78, -240.05], [-111.19, -237.81], [-111.37, -235.68], [-112.45, -234.31], [-113.85, -233.54], [-112.73, -214.08], [-110.29, -213.19], [-108.65, -211.18], [-108.45, -208.8], [-108.99, -206.98], [-111.82, -207.82], [-115.1, -208.14], [-115.77, -219.56], [-114.36, -219.68], [-114.59, -223.69], [-116.03, -223.58], [-116.53, -234.85], [-115.36, -235.13], [-114.2, -235.79], [-113.29, -236.78], [-113.17, -238.14], [-113.56, -239.2], [-114.31, -240.0], [-115.49, -240.73], [-116.94, -241.18], [-117.5, -251.09], [-116.07, -251.12], [-116.24, -255.26], [-117.82, -255.24], [-118.41, -265.56], [-116.7, -265.56], [-113.61, -269.01]], "holes": []}}, {"shape": {"outer": [[-156.14, -166.22], [-147.97, -158.45], [-146.81, -159.74], [-145.89, -158.91], [-145.36, -160.12], [-145.15, -161.61], [-145.2, -162.92], [-145.58, -164.23], [-146.31, -165.4], [-147.04, -166.38], [-147.92, -167.3], [-148.99, -168.07], [-150.28, -168.63], [-151.69, -168.84], [-153.17, -168.63], [-154.35, -168.16], [-155.98, -166.41], [-156.14, -166.22]], "holes": []}}, {"shape": {"outer": [[25.96, -121.21], [27.52, -122.83], [24.28, -125.67], [24.26, -127.03], [14.33, -126.92], [14.35, -125.43], [9.6, -125.37], [9.59, -126.43], [-0.88, -125.99], [-0.93, -124.17], [-1.7, -122.77], [-3.55, -122.05], [-5.19, -122.54], [-6.29, -123.54], [-6.55, -125.65], [-17.13, -125.27], [-17.08, -123.78], [-21.1, -123.63], [-21.14, -124.79], [-32.38, -124.39], [-33.74, -121.39], [-35.35, -117.89], [-28.33, -119.38], [-26.72, -121.85], [-8.13, -122.8], [-6.93, -121.09], [-5.06, -120.2], [-2.79, -120.09], [-1.0, -120.98], [0.7, -121.84], [1.59, -123.35], [22.63, -124.24], [25.96, -121.21]], "holes": []}}, {"shape": {"outer": [[24.88, -142.72], [27.07, -141.06], [24.12, -138.01], [24.21, -136.49], [13.72, -136.28], [13.7, -137.0], [9.92, -136.99], [9.93, -136.0], [-0.91, -135.64], [-1.63, -136.68], [-2.73, -138.26], [-5.45, -138.36], [-6.91, -136.82], [-7.63, -134.99], [-17.65, -134.58], [-17.37, -135.67], [-21.4, -135.62], [-21.37, -134.6], [-33.34, -134.35], [-33.72, -135.61], [-35.91, -139.52], [-37.96, -141.71], [-39.88, -142.97], [-36.13, -145.01], [-32.06, -141.7], [-26.71, -137.56], [-8.6, -138.59], [-6.32, -140.98], [-3.98, -142.39], [-0.89, -141.52], [1.66, -139.24], [22.04, -139.55], [24.88, -142.72]], "holes": []}}, {"shape": {"outer": [[-1228.6, -271.53], [-1221.27, -271.89], [-1221.07, -268.39], [-1319.17, -263.44], [-1319.27, -266.38], [-1314.33, -266.63], [-1314.23, -264.73], [-1302.16, -265.3], [-1302.23, -266.85], [-1271.03, -268.33], [-1270.96, -266.87], [-1264.39, -267.18], [-1264.48, -268.96], [-1261.82, -269.08], [-1261.73, -267.33], [-1252.55, -267.76], [-1252.65, -269.8], [-1249.53, -269.95], [-1249.44, -267.93], [-1240.71, -268.34], [-1240.81, -270.65], [-1234.95, -270.93], [-1234.84, -268.64], [-1228.48, -268.95], [-1228.6, -271.53]], "holes": []}}, {"shape": {"outer": [[-3129.78, -1620.9], [-3116.78, -1609.82], [-3134.74, -1588.9], [-3136.15, -1590.09], [-3137.6, -1588.4], [-3147.4, -1576.98], [-3169.41, -1595.73], [-3166.29, -1599.35], [-3175.08, -1606.85], [-3177.43, -1604.1], [-3181.61, -1607.66], [-3185.61, -1611.07], [-3165.13, -1634.95], [-3162.3, -1632.55], [-3159.48, -1635.85], [-3154.85, -1641.45], [-3129.78, -1620.9]], "holes": []}}, {"shape": {"outer": [[-1227.54, -405.72], [-1219.86, -406.16], [-1221.19, -430.32], [-1225.98, -431.34], [-1230.78, -431.87], [-1233.51, -432.66], [-1237.21, -431.02], [-1240.21, -428.3], [-1241.17, -425.29], [-1242.37, -416.49], [-1237.81, -412.28], [-1233.14, -408.56], [-1229.67, -406.15], [-1227.54, -405.72]], "holes": []}}, {"shape": {"outer": [[-1924.23, -182.77], [-1924.73, -202.38], [-1926.73, -202.32], [-1926.6, -197.41], [-1926.24, -182.73], [-1924.23, -182.77]], "holes": []}}, {"shape": {"outer": [[1145.37, 613.69], [1143.69, 615.56], [1178.76, 647.18], [1183.76, 652.21], [1188.6, 659.06], [1192.84, 668.21], [1195.04, 675.65], [1195.47, 676.71], [1196.2, 677.23], [1198.2, 677.84], [1205.98, 679.98], [1210.74, 682.26], [1217.03, 686.22], [1223.54, 693.28], [1227.56, 700.13], [1229.22, 704.99], [1233.07, 704.11], [1234.31, 709.55], [1230.36, 710.45], [1231.12, 712.83], [1231.82, 713.43], [1232.88, 713.75], [1244.12, 715.32], [1253.64, 718.51], [1263.29, 723.32], [1269.09, 727.44], [1274.87, 732.46], [1279.48, 736.6], [1280.96, 734.9], [1254.27, 710.95], [1232.7, 691.57], [1218.51, 678.38], [1204.85, 666.24], [1192.49, 654.95], [1176.97, 640.91], [1145.37, 613.69]], "holes": []}}, {"shape": {"outer": [[1197.08, 685.02], [1199.95, 684.29], [1198.99, 679.91], [1202.97, 681.12], [1202.84, 681.87], [1204.93, 682.54], [1204.92, 681.95], [1208.34, 683.13], [1212.59, 685.36], [1216.92, 688.67], [1219.7, 691.44], [1222.77, 695.23], [1225.15, 699.58], [1226.7, 703.76], [1228.27, 708.86], [1229.25, 712.36], [1228.69, 713.17], [1227.75, 713.14], [1222.55, 712.12], [1218.53, 710.76], [1215.94, 709.61], [1212.68, 707.73], [1209.72, 705.8], [1206.84, 703.04], [1204.28, 699.68], [1201.92, 696.31], [1199.53, 691.92], [1197.99, 687.98], [1197.08, 685.02]], "holes": []}}, {"shape": {"outer": [[-197.56, -16.52], [-196.91, -15.92], [-195.38, -17.57], [-195.97, -18.11], [-195.36, -18.77], [-197.13, -20.4], [-197.71, -19.77], [-198.29, -20.31], [-200.03, -18.45], [-199.52, -17.97], [-200.08, -17.38], [-198.28, -15.73], [-197.56, -16.52]], "holes": []}}, {"shape": {"outer": [[-208.33, -2.16], [-209.55, -3.26], [-203.65, -9.76], [-202.43, -8.67], [-208.33, -2.16]], "holes": []}}, {"shape": {"outer": [[-202.74, -10.8], [-204.17, -12.08], [-203.42, -12.92], [-205.36, -14.65], [-206.3, -13.6], [-206.93, -14.16], [-208.7, -12.2], [-210.94, -2.19], [-209.5, -0.88], [-208.33, -2.16], [-209.55, -3.26], [-203.65, -9.76], [-202.74, -10.8]], "holes": []}}, {"shape": {"outer": [[-222.53, -28.07], [-221.04, -26.79], [-219.75, -28.03], [-218.02, -26.49], [-219.01, -25.48], [-218.39, -24.89], [-220.23, -23.0], [-229.82, -20.0], [-231.23, -21.33], [-230.04, -22.58], [-228.86, -21.47], [-222.53, -28.07]], "holes": []}}, {"shape": {"outer": [[-2166.46, -476.72], [-2170.23, -477.56], [-2174.83, -479.49], [-2179.62, -482.31], [-2178.02, -485.98], [-2174.49, -487.23], [-2171.81, -490.53], [-2169.28, -495.02], [-2164.81, -498.15], [-2165.5, -479.59], [-2166.53, -479.56], [-2166.46, -476.72]], "holes": []}}, {"shape": {"outer": [[-2177.79, -469.34], [-2167.46, -469.77], [-2166.31, -471.32], [-2166.4, -474.68], [-2168.91, -475.18], [-2172.85, -476.6], [-2177.32, -478.87], [-2176.52, -476.8], [-2177.43, -475.11], [-2179.91, -473.71], [-2181.34, -472.91], [-2179.05, -472.98], [-2178.99, -471.19], [-2177.85, -471.22], [-2177.79, -469.34]], "holes": []}}, {"shape": {"outer": [[-2170.33, -455.66], [-2168.75, -454.23], [-2168.67, -449.33], [-2166.65, -447.72], [-2164.97, -446.1], [-2164.92, -442.09], [-2165.79, -439.22], [-2168.8, -438.87], [-2171.77, -439.23], [-2176.22, -437.81], [-2166.92, -437.68], [-2164.41, -437.65], [-2164.57, -452.84], [-2165.31, -452.82], [-2165.37, -454.8], [-2165.73, -454.79], [-2166.02, -463.34], [-2167.24, -464.86], [-2177.58, -464.39], [-2177.54, -462.75], [-2178.33, -462.73], [-2178.28, -460.97], [-2181.0, -460.89], [-2180.22, -460.12], [-2178.31, -459.6], [-2170.33, -455.66]], "holes": []}}, {"shape": {"outer": [[-2231.72, -511.76], [-2230.44, -509.23], [-2229.24, -507.93], [-2228.31, -507.18], [-2228.33, -504.99], [-2229.06, -503.17], [-2229.31, -501.36], [-2230.45, -499.17], [-2231.38, -497.3], [-2233.21, -496.14], [-2235.61, -495.81], [-2237.05, -496.45], [-2238.11, -497.36], [-2239.55, -499.39], [-2240.22, -500.23], [-2240.92, -501.93], [-2242.52, -503.77], [-2244.3, -504.3], [-2246.54, -504.14], [-2243.64, -506.72], [-2231.72, -511.76]], "holes": []}}, {"shape": {"outer": [[-2216.81, -435.61], [-2219.14, -435.56], [-2222.43, -436.52], [-2225.2, -437.58], [-2226.93, -439.3], [-2228.55, -442.89], [-2229.0, -447.49], [-2228.62, -452.38], [-2227.78, -455.28], [-2226.04, -457.6], [-2224.21, -459.41], [-2222.49, -460.78], [-2218.98, -462.36], [-2215.7, -463.03], [-2211.37, -463.48], [-2207.01, -460.61], [-2209.48, -452.78], [-2216.06, -449.98], [-2221.1, -447.05], [-2223.85, -442.34], [-2223.27, -438.84], [-2219.64, -436.19], [-2216.81, -435.61]], "holes": []}}, {"shape": {"outer": [[-2164.41, -437.65], [-2162.2, -437.58], [-2162.77, -454.88], [-2164.28, -454.83], [-2164.26, -452.84], [-2164.57, -452.84], [-2164.41, -437.65]], "holes": []}}, {"shape": {"outer": [[-2165.5, -479.59], [-2163.33, -479.65], [-2163.47, -498.41], [-2164.81, -498.15], [-2165.5, -479.59]], "holes": []}}, {"shape": {"outer": [[-2437.05, -432.13], [-2437.16, -435.01], [-2407.96, -436.1], [-2407.85, -433.34], [-2437.05, -432.13]], "holes": []}}, {"shape": {"outer": [[-2537.38, -452.73], [-2533.66, -452.95], [-2533.47, -449.88], [-2537.19, -449.65], [-2537.38, -452.73]], "holes": []}}, {"shape": {"outer": [[-2537.7, -465.13], [-2534.07, -465.29], [-2533.93, -461.99], [-2537.56, -461.84], [-2537.7, -465.13]], "holes": []}}, {"shape": {"outer": [[-2253.71, -621.19], [-2252.76, -620.34], [-2251.6, -620.13], [-2250.55, -620.52], [-2249.92, -621.57], [-2249.97, -622.31], [-2253.71, -621.19]], "holes": []}}, {"shape": {"outer": [[-2264.22, -649.04], [-2246.55, -635.32], [-2248.89, -625.63], [-2253.32, -629.17], [-2256.0, -626.77], [-2257.01, -626.4], [-2258.29, -626.89], [-2260.49, -630.14], [-2263.71, -641.53], [-2265.05, -646.45], [-2265.06, -647.38], [-2264.66, -648.24], [-2264.22, -649.04]], "holes": []}}, {"shape": {"outer": [[-2235.13, -467.2], [-2236.16, -466.83], [-2237.28, -465.7], [-2237.91, -464.04], [-2238.09, -462.36], [-2239.08, -460.06], [-2239.88, -458.66], [-2240.52, -457.13], [-2242.47, -455.04], [-2245.8, -453.42], [-2249.51, -453.28], [-2252.69, -454.04], [-2256.78, -455.85], [-2260.34, -458.04], [-2262.32, -460.35], [-2263.49, -462.09], [-2264.6, -464.01], [-2266.28, -466.1], [-2266.69, -468.22], [-2266.12, -470.58], [-2265.42, -472.37], [-2264.4, -473.72], [-2262.67, -474.32], [-2260.59, -474.73], [-2258.04, -474.84], [-2255.26, -474.31], [-2253.26, -475.24], [-2252.29, -476.54], [-2251.34, -478.24], [-2249.86, -480.34], [-2247.88, -482.51], [-2244.25, -483.87], [-2240.8, -484.21], [-2238.23, -483.62], [-2236.08, -482.56], [-2233.79, -481.42], [-2232.1, -480.19], [-2237.03, -472.31], [-2235.13, -467.2]], "holes": []}}, {"shape": {"outer": [[-2535.71, -687.43], [-2535.55, -686.43], [-2526.23, -682.42], [-2505.8, -672.98], [-2503.54, -676.4], [-2507.35, -680.44], [-2525.85, -687.63], [-2535.71, -687.43]], "holes": []}}, {"shape": {"outer": [[-2398.56, -753.66], [-2399.81, -752.6], [-2419.86, -767.86], [-2426.57, -772.97], [-2450.92, -774.73], [-2451.23, -780.23], [-2449.21, -780.2], [-2448.04, -781.97], [-2426.81, -775.63], [-2425.68, -774.91], [-2398.56, -753.66]], "holes": []}}, {"shape": {"outer": [[-2478.73, -791.77], [-2478.56, -788.8], [-2472.88, -788.82], [-2472.87, -787.69], [-2470.36, -787.7], [-2470.37, -789.5], [-2478.73, -791.77]], "holes": []}}, {"shape": {"outer": [[-2464.26, -774.57], [-2464.4, -780.51], [-2466.46, -780.46], [-2466.42, -778.78], [-2474.95, -778.57], [-2474.99, -780.28], [-2485.16, -780.03], [-2485.28, -785.15], [-2488.21, -785.08], [-2488.35, -790.99], [-2484.85, -791.08], [-2484.89, -792.61], [-2490.17, -792.48], [-2489.8, -777.71], [-2477.79, -778.01], [-2477.69, -774.24], [-2464.26, -774.57]], "holes": []}}, {"shape": {"outer": [[-2493.89, -791.53], [-2493.81, -795.38], [-2534.27, -807.58], [-2536.32, -806.1], [-2538.78, -805.77], [-2541.45, -804.69], [-2543.16, -803.48], [-2544.65, -801.95], [-2545.71, -800.17], [-2547.76, -798.56], [-2546.97, -766.51], [-2545.0, -766.63], [-2545.77, -795.34], [-2542.7, -797.45], [-2543.73, -798.94], [-2536.28, -804.05], [-2535.39, -802.75], [-2531.88, -805.15], [-2518.37, -800.94], [-2496.05, -793.99], [-2496.1, -791.58], [-2493.89, -791.53]], "holes": []}}, {"shape": {"outer": [[-2545.0, -766.63], [-2543.19, -766.57], [-2542.42, -767.19], [-2542.38, -768.05], [-2542.76, -784.48], [-2542.6, -788.56], [-2541.27, -792.22], [-2538.95, -795.36], [-2535.95, -798.29], [-2532.0, -801.18], [-2527.73, -802.03], [-2518.37, -800.94], [-2531.88, -805.15], [-2535.39, -802.75], [-2536.28, -804.05], [-2543.73, -798.94], [-2542.7, -797.45], [-2545.77, -795.34], [-2545.0, -766.63]], "holes": []}}, {"shape": {"outer": [[-2145.12, -715.31], [-2116.23, -705.61], [-2116.1, -703.99], [-2112.51, -702.65], [-2102.56, -698.94], [-2074.05, -691.85], [-2064.88, -687.3], [-2063.76, -684.07], [-2055.9, -684.17], [-2034.26, -678.09], [-2034.18, -679.43], [-2035.42, -682.29], [-2037.99, -685.79], [-2040.82, -688.82], [-2043.24, -690.11], [-2045.74, -690.51], [-2049.04, -689.73], [-2052.43, -688.75], [-2057.73, -690.21], [-2062.2, -692.75], [-2064.77, -694.82], [-2069.05, -697.7], [-2071.32, -698.46], [-2074.32, -698.75], [-2077.32, -698.15], [-2080.81, -698.19], [-2085.27, -699.92], [-2089.69, -701.93], [-2095.52, -704.2], [-2097.81, -704.35], [-2099.93, -704.24], [-2102.01, -704.4], [-2106.39, -705.6], [-2115.73, -709.44], [-2116.84, -710.12], [-2118.33, -711.65], [-2120.05, -712.87], [-2122.18, -713.43], [-2123.8, -713.69], [-2126.19, -713.51], [-2128.3, -713.61], [-2130.63, -714.37], [-2132.58, -715.02], [-2134.34, -716.02], [-2135.7, -716.91], [-2137.31, -717.97], [-2139.02, -718.91], [-2141.2, -719.38], [-2143.05, -718.66], [-2144.69, -717.11], [-2145.12, -715.31]], "holes": []}}, {"shape": {"outer": [[-2102.56, -698.94], [-2103.34, -698.35], [-2103.96, -695.7], [-2103.85, -683.54], [-2096.89, -683.71], [-2092.05, -681.68], [-2080.87, -682.0], [-2080.76, -678.3], [-2077.53, -678.14], [-2066.95, -678.38], [-2063.87, -678.34], [-2063.76, -684.07], [-2064.88, -687.3], [-2074.05, -691.85], [-2102.56, -698.94]], "holes": []}}, {"shape": {"outer": [[-2031.31, -665.17], [-2032.0, -677.6], [-2034.26, -678.09], [-2055.9, -684.17], [-2063.76, -684.07], [-2063.87, -678.34], [-2062.99, -642.19], [-2055.18, -642.39], [-2055.57, -645.13], [-2056.38, -670.89], [-2034.94, -671.55], [-2034.74, -665.13], [-2031.31, -665.17]], "holes": []}}, {"shape": {"outer": [[-2116.1, -703.99], [-2117.71, -695.08], [-2117.77, -689.56], [-2123.72, -689.44], [-2122.97, -656.41], [-2116.65, -656.55], [-2116.24, -638.96], [-2110.15, -639.06], [-2110.42, -649.95], [-2111.05, -664.06], [-2111.49, -671.58], [-2109.36, -671.67], [-2100.28, -672.08], [-2097.98, -672.19], [-2096.78, -672.37], [-2096.96, -681.4], [-2105.7, -681.43], [-2106.07, -692.83], [-2111.59, -692.81], [-2113.89, -694.23], [-2112.51, -702.65], [-2116.1, -703.99]], "holes": []}}, {"shape": {"outer": [[-2011.48, -670.83], [-2010.42, -671.33], [-1957.4, -655.62], [-1942.22, -651.39], [-1932.68, -649.22], [-1931.53, -647.39], [-1919.09, -648.02], [-1918.27, -648.84], [-1918.23, -649.44], [-1918.86, -650.84], [-1919.44, -651.9], [-1920.27, -652.74], [-1922.01, -653.2], [-1925.35, -653.3], [-1928.67, -653.6], [-1931.13, -654.36], [-1933.62, -654.76], [-1936.17, -654.71], [-1937.89, -654.02], [-1938.5, -653.97], [-1940.91, -654.46], [-1943.49, -655.06], [-1948.61, -656.55], [-1955.16, -659.3], [-1961.54, -662.46], [-1965.42, -663.65], [-1968.74, -664.31], [-1971.56, -664.63], [-1974.36, -664.83], [-1976.13, -665.38], [-1978.33, -666.14], [-1980.75, -667.22], [-1982.86, -668.48], [-1985.0, -669.97], [-1987.47, -671.9], [-1990.54, -673.42], [-1993.33, -674.82], [-1996.53, -676.12], [-1999.5, -676.48], [-2002.41, -676.44], [-2004.86, -676.24], [-2006.54, -675.55], [-2008.97, -673.99], [-2010.7, -672.54], [-2011.48, -670.83]], "holes": []}}, {"shape": {"outer": [[-1956.76, -646.16], [-1957.49, -647.02], [-1957.4, -655.62], [-2010.42, -671.33], [-2011.48, -670.83], [-2011.04, -660.86], [-2005.16, -661.5], [-1985.08, -662.36], [-1984.91, -658.59], [-1977.93, -658.89], [-1977.45, -648.02], [-1976.76, -648.19], [-1976.76, -645.02], [-1956.76, -646.16]], "holes": []}}, {"shape": {"outer": [[-1957.49, -647.02], [-1956.76, -646.16], [-1931.53, -647.39], [-1932.68, -649.22], [-1942.22, -651.39], [-1957.4, -655.62], [-1957.49, -647.02]], "holes": []}}, {"shape": {"outer": [[-2322.37, -718.93], [-2321.06, -720.54], [-2320.0, -720.94], [-2316.3, -718.02], [-2306.4, -730.45], [-2309.72, -733.07], [-2309.92, -733.8], [-2308.9, -734.94], [-2307.03, -735.4], [-2304.56, -734.8], [-2299.11, -730.29], [-2298.75, -729.4], [-2296.49, -732.24], [-2293.01, -736.62], [-2285.06, -730.34], [-2287.95, -726.71], [-2290.32, -723.74], [-2287.43, -721.44], [-2284.6, -720.33], [-2281.24, -720.36], [-2276.41, -723.07], [-2263.56, -740.29], [-2267.02, -742.85], [-2267.9, -744.19], [-2267.77, -746.92], [-2294.04, -754.88], [-2306.75, -746.7], [-2308.44, -746.75], [-2312.8, -750.24], [-2327.58, -731.86], [-2321.3, -726.86], [-2325.61, -721.51], [-2322.37, -718.93]], "holes": []}}, {"shape": {"outer": [[-2551.09, -874.62], [-2553.18, -874.58], [-2553.26, -877.37], [-2552.07, -878.8], [-2549.65, -876.76], [-2550.49, -875.8], [-2550.75, -875.79], [-2551.11, -875.78], [-2551.09, -874.62]], "holes": []}}, {"shape": {"outer": [[-2551.09, -874.62], [-2553.18, -874.58], [-2552.95, -865.94], [-2550.86, -866.0], [-2551.09, -874.62]], "holes": []}}, {"shape": {"outer": [[-2540.5, -868.74], [-2530.81, -860.56], [-2532.68, -858.97], [-2535.17, -856.52], [-2536.22, -854.31], [-2536.26, -852.82], [-2535.53, -850.61], [-2534.11, -848.87], [-2532.73, -847.69], [-2534.79, -845.92], [-2537.35, -845.2], [-2539.47, -845.39], [-2541.5, -846.31], [-2543.55, -847.71], [-2545.47, -849.16], [-2548.15, -850.55], [-2550.74, -851.47], [-2552.72, -851.75], [-2552.81, -858.33], [-2549.87, -858.3], [-2548.93, -858.88], [-2548.86, -859.28], [-2546.78, -860.13], [-2545.57, -861.53], [-2545.13, -863.76], [-2545.29, -865.3], [-2545.62, -866.12], [-2542.75, -866.2], [-2540.5, -868.74]], "holes": []}}, {"shape": {"outer": [[-2529.48, -848.26], [-2533.04, -851.3], [-2533.54, -852.59], [-2533.74, -854.04], [-2533.18, -855.06], [-2531.83, -856.15], [-2531.2, -856.2], [-2530.4, -856.27], [-2529.43, -856.0], [-2528.64, -855.38], [-2527.85, -854.52], [-2527.43, -853.51], [-2526.89, -851.6], [-2526.73, -850.35], [-2526.77, -849.1], [-2526.93, -848.04], [-2527.17, -847.06], [-2527.53, -846.13], [-2528.01, -845.18], [-2529.29, -843.37], [-2531.08, -842.25], [-2533.26, -841.29], [-2534.7, -841.11], [-2536.12, -841.07], [-2538.72, -841.14], [-2539.49, -841.3], [-2540.18, -841.54], [-2541.28, -841.95], [-2541.59, -842.33], [-2541.77, -842.76], [-2541.76, -843.47], [-2541.63, -843.93], [-2540.81, -843.65], [-2539.26, -843.39], [-2537.81, -843.24], [-2535.89, -843.32], [-2534.35, -843.72], [-2532.99, -844.67], [-2531.47, -845.97], [-2530.12, -847.31], [-2529.48, -848.26]], "holes": []}}, {"shape": {"outer": [[-2530.39, -856.58], [-2529.54, -856.36], [-2528.73, -855.84], [-2528.09, -855.24], [-2527.14, -856.32], [-2528.99, -857.96], [-2530.39, -856.58]], "holes": []}}, {"shape": {"outer": [[-2526.48, -848.96], [-2526.39, -849.93], [-2526.45, -850.96], [-2526.53, -851.6], [-2526.74, -852.27], [-2525.09, -852.25], [-2524.93, -850.3], [-2524.99, -848.73], [-2526.48, -848.96]], "holes": []}}, {"shape": {"outer": [[-2526.57, -848.09], [-2525.15, -847.91], [-2525.25, -847.1], [-2525.74, -845.73], [-2526.21, -844.73], [-2526.73, -843.68], [-2526.91, -843.32], [-2527.82, -844.97], [-2527.26, -846.07], [-2526.86, -847.07], [-2526.57, -848.09]], "holes": []}}, {"shape": {"outer": [[-2528.27, -844.18], [-2527.95, -843.2], [-2527.53, -842.73], [-2528.04, -842.08], [-2528.57, -841.53], [-2529.22, -840.92], [-2529.99, -840.49], [-2530.86, -840.0], [-2531.4, -839.62], [-2531.85, -839.43], [-2531.72, -839.04], [-2532.59, -838.93], [-2533.34, -838.77], [-2532.91, -839.72], [-2532.15, -841.38], [-2531.4, -841.74], [-2530.36, -842.31], [-2529.57, -842.8], [-2528.86, -843.52], [-2528.27, -844.18]], "holes": []}}, {"shape": {"outer": [[-2533.14, -841.02], [-2534.57, -838.65], [-2535.67, -838.56], [-2537.0, -838.57], [-2537.9, -838.53], [-2538.91, -838.72], [-2540.04, -839.09], [-2540.81, -839.43], [-2541.55, -839.83], [-2542.53, -840.39], [-2543.44, -841.09], [-2544.12, -841.75], [-2544.67, -842.31], [-2545.46, -843.13], [-2546.2, -843.94], [-2546.87, -844.51], [-2547.9, -845.17], [-2548.8, -845.68], [-2549.79, -846.22], [-2550.75, -846.63], [-2551.36, -846.84], [-2552.14, -847.07], [-2552.55, -847.12], [-2552.63, -849.86], [-2551.77, -849.81], [-2550.94, -849.65], [-2549.95, -849.39], [-2548.95, -848.9], [-2547.65, -848.18], [-2546.19, -847.28], [-2545.22, -846.57], [-2544.13, -845.78], [-2543.24, -845.07], [-2542.2, -844.41], [-2541.63, -843.93], [-2541.76, -843.47], [-2541.77, -842.76], [-2541.59, -842.33], [-2541.28, -841.95], [-2540.18, -841.54], [-2539.49, -841.3], [-2538.72, -841.14], [-2538.39, -840.83], [-2536.56, -840.74], [-2534.87, -840.81], [-2533.14, -841.02]], "holes": []}}, {"shape": {"outer": [[-2554.44, -847.63], [-2557.22, -851.31], [-2557.06, -851.62], [-2556.29, -853.36], [-2555.74, -854.93], [-2555.61, -856.19], [-2554.67, -856.24], [-2554.44, -847.63]], "holes": []}}, {"shape": {"outer": [[-2557.45, -843.65], [-2554.29, -843.79], [-2553.97, -831.55], [-2555.89, -831.49], [-2555.97, -832.76], [-2557.31, -832.7], [-2557.45, -843.65]], "holes": []}}, {"shape": {"outer": [[-2550.99, -831.76], [-2546.28, -831.9], [-2545.92, -832.05], [-2545.75, -832.31], [-2545.8, -832.73], [-2545.96, -833.08], [-2546.48, -833.55], [-2547.19, -834.41], [-2547.95, -835.29], [-2548.66, -836.2], [-2549.37, -837.03], [-2550.01, -837.49], [-2550.59, -837.68], [-2551.07, -837.59], [-2551.67, -837.33], [-2551.85, -836.96], [-2552.06, -836.67], [-2551.98, -832.87], [-2551.78, -832.36], [-2551.48, -831.94], [-2550.99, -831.76]], "holes": []}}, {"shape": {"outer": [[-2552.49, -843.49], [-2552.41, -839.98], [-2552.02, -839.52], [-2551.25, -839.22], [-2549.73, -839.44], [-2549.33, -839.47], [-2549.01, -839.63], [-2548.85, -839.79], [-2548.06, -840.58], [-2548.92, -841.38], [-2549.68, -842.05], [-2550.97, -842.85], [-2552.49, -843.49]], "holes": []}}, {"shape": {"outer": [[-2515.59, -833.0], [-2515.25, -832.6], [-2515.06, -832.12], [-2515.42, -831.73], [-2515.58, -831.54], [-2514.67, -831.44], [-2511.42, -830.84], [-2510.64, -831.62], [-2512.02, -831.91], [-2513.38, -832.48], [-2515.47, -833.34], [-2515.59, -833.0]], "holes": []}}, {"shape": {"outer": [[-2497.19, -832.61], [-2497.68, -835.67], [-2500.19, -838.02], [-2506.74, -843.02], [-2517.46, -849.94], [-2518.12, -849.41], [-2518.01, -848.43], [-2518.46, -847.79], [-2519.24, -847.28], [-2520.08, -847.3], [-2520.79, -847.72], [-2521.12, -847.63], [-2521.0, -846.81], [-2520.84, -845.39], [-2520.26, -843.65], [-2519.37, -842.13], [-2518.36, -840.76], [-2516.73, -839.03], [-2515.24, -837.88], [-2514.45, -837.23], [-2513.54, -836.63], [-2512.47, -836.09], [-2508.84, -834.82], [-2504.97, -833.46], [-2501.38, -832.72], [-2499.33, -832.58], [-2497.19, -832.61]], "holes": []}}, {"shape": {"outer": [[-2534.94, -833.24], [-2534.85, -832.6], [-2526.49, -832.96], [-2526.51, -834.1], [-2527.72, -834.13], [-2529.13, -834.1], [-2530.82, -833.95], [-2532.31, -833.71], [-2534.94, -833.24]], "holes": []}}, {"shape": {"outer": [[-2571.96, -875.61], [-2572.42, -900.39], [-2588.92, -914.44], [-2594.35, -906.87], [-2593.74, -896.26], [-2589.67, -895.47], [-2585.95, -895.47], [-2585.97, -896.39], [-2583.84, -897.16], [-2581.36, -896.65], [-2579.7, -895.8], [-2578.61, -892.74], [-2579.03, -890.46], [-2579.03, -889.25], [-2580.68, -888.9], [-2580.6, -878.17], [-2571.96, -875.61]], "holes": []}}, {"shape": {"outer": [[-2570.79, -835.46], [-2573.9, -835.43], [-2574.01, -847.23], [-2570.91, -847.27], [-2570.79, -835.46]], "holes": []}}, {"shape": {"outer": [[-2570.91, -847.27], [-2570.89, -848.02], [-2593.29, -854.84], [-2591.76, -828.02], [-2570.81, -829.0], [-2570.79, -835.46], [-2573.9, -835.43], [-2574.01, -847.23], [-2570.91, -847.27]], "holes": []}}, {"shape": {"outer": [[-2569.05, -829.03], [-2566.69, -829.55], [-2566.18, -830.84], [-2566.14, -831.7], [-2566.4, -846.23], [-2569.37, -848.4], [-2569.05, -829.03]], "holes": []}}, {"shape": {"outer": [[-2570.96, -827.1], [-2591.64, -826.41], [-2591.55, -824.39], [-2573.13, -825.42], [-2570.94, -825.79], [-2570.96, -827.1]], "holes": []}}, {"shape": {"outer": [[-2416.15, -717.12], [-2416.97, -717.04], [-2416.52, -719.23], [-2417.94, -719.83], [-2418.95, -720.99], [-2419.46, -722.6], [-2419.35, -723.64], [-2418.69, -726.92], [-2413.8, -725.71], [-2416.15, -717.12]], "holes": []}}, {"shape": {"outer": [[-2418.37, -728.84], [-2416.83, -734.02], [-2417.34, -749.26], [-2417.39, -750.92], [-2416.06, -752.37], [-2414.59, -753.16], [-2411.54, -753.24], [-2408.97, -751.95], [-2405.4, -750.37], [-2403.45, -748.73], [-2403.11, -747.65], [-2404.08, -747.22], [-2407.99, -748.1], [-2413.02, -728.84], [-2413.4, -727.57], [-2418.37, -728.84]], "holes": []}}, {"shape": {"outer": [[-2365.74, -693.14], [-2369.87, -698.51], [-2368.15, -699.49], [-2365.43, -695.33], [-2365.46, -693.5], [-2365.74, -693.14]], "holes": []}}, {"shape": {"outer": [[-2349.57, -712.98], [-2349.34, -709.86], [-2349.98, -708.62], [-2349.94, -707.43], [-2349.36, -705.59], [-2348.11, -704.44], [-2345.85, -703.76], [-2341.71, -703.97], [-2342.14, -704.96], [-2342.12, -705.99], [-2341.85, -706.96], [-2341.23, -707.88], [-2347.49, -713.04], [-2349.57, -712.98]], "holes": []}}, {"shape": {"outer": [[-2387.38, -743.89], [-2382.39, -740.08], [-2384.28, -737.34], [-2389.46, -739.95], [-2387.38, -743.89]], "holes": []}}, {"shape": {"outer": [[-2380.2, -738.15], [-2375.16, -734.84], [-2376.67, -732.56], [-2381.63, -735.76], [-2380.2, -738.15]], "holes": []}}, {"shape": {"outer": [[-2372.51, -732.24], [-2368.09, -728.87], [-2369.45, -727.09], [-2373.88, -730.45], [-2372.51, -732.24]], "holes": []}}, {"shape": {"outer": [[-2365.0, -726.96], [-2360.72, -723.26], [-2362.6, -720.95], [-2366.85, -724.84], [-2365.0, -726.96]], "holes": []}}, {"shape": {"outer": [[-2546.23, -756.19], [-2546.16, -752.93], [-2547.35, -752.82], [-2546.08, -705.16], [-2543.19, -705.2], [-2544.79, -757.32], [-2546.23, -756.19]], "holes": []}}, {"shape": {"outer": [[-2493.17, -698.81], [-2499.43, -698.61], [-2500.03, -716.66], [-2501.2, -718.75], [-2503.2, -719.81], [-2515.76, -719.7], [-2516.73, -720.7], [-2517.44, -736.17], [-2522.53, -735.93], [-2521.78, -719.57], [-2539.08, -718.77], [-2538.62, -717.25], [-2538.55, -715.23], [-2539.44, -715.21], [-2538.91, -697.8], [-2542.96, -697.69], [-2543.19, -705.2], [-2544.79, -757.32], [-2520.16, -758.0], [-2492.7, -758.93], [-2489.3, -759.03], [-2489.12, -754.57], [-2488.13, -754.61], [-2486.65, -717.85], [-2489.46, -717.73], [-2489.3, -713.96], [-2486.46, -714.07], [-2486.12, -706.26], [-2487.03, -706.21], [-2486.69, -699.03], [-2493.17, -698.81]], "holes": []}}, {"shape": {"outer": [[-1313.66, -1300.89], [-1312.18, -1299.01], [-1310.06, -1300.68], [-1311.55, -1302.56], [-1313.66, -1300.89]], "holes": []}}, {"shape": {"outer": [[-1410.1, -1324.02], [-1400.64, -1315.38], [-1397.86, -1318.29], [-1398.49, -1318.87], [-1394.8, -1322.9], [-1403.59, -1330.9], [-1410.1, -1324.02]], "holes": []}}, {"shape": {"outer": [[-1344.15, -1310.51], [-1350.42, -1316.11], [-1350.72, -1316.7], [-1350.7, -1317.56], [-1350.07, -1318.06], [-1349.06, -1318.16], [-1342.45, -1312.43], [-1342.33, -1311.76], [-1342.44, -1311.08], [-1342.78, -1310.63], [-1343.28, -1310.37], [-1344.15, -1310.51]], "holes": []}}, {"shape": {"outer": [[-1320.66, -1336.16], [-1326.94, -1341.87], [-1327.27, -1342.56], [-1327.09, -1343.1], [-1326.72, -1343.57], [-1326.21, -1343.79], [-1325.71, -1343.84], [-1325.23, -1343.61], [-1319.1, -1338.13], [-1318.91, -1337.55], [-1318.88, -1337.01], [-1319.18, -1336.37], [-1319.52, -1336.08], [-1320.11, -1335.93], [-1320.66, -1336.16]], "holes": []}}, {"shape": {"outer": [[550.76, 38.3], [551.78, 37.51], [552.84, 34.64], [554.08, 31.44], [554.67, 28.68], [554.43, 26.87], [550.51, 25.77], [550.36, 37.17], [550.76, 38.3]], "holes": []}}, {"shape": {"outer": [[550.8, 24.14], [554.11, 24.89], [553.54, 23.25], [552.88, 22.04], [551.97, 20.99], [550.77, 20.02], [550.8, 24.14]], "holes": []}}, {"shape": {"outer": [[548.67, 19.11], [549.09, 23.67], [543.49, 21.54], [541.24, 20.29], [539.12, 18.93], [537.12, 17.63], [535.62, 16.66], [533.93, 16.04], [534.35, 14.63], [540.17, 16.25], [541.27, 16.72], [541.44, 17.65], [541.7, 19.5], [541.91, 20.3], [543.35, 20.14], [543.31, 18.83], [543.67, 17.49], [548.67, 19.11]], "holes": []}}, {"shape": {"outer": [[503.96, -1.53], [504.08, -1.86], [506.57, -0.06], [509.82, 2.2], [513.4, 4.6], [517.41, 6.92], [521.18, 8.78], [525.28, 10.93], [529.37, 12.67], [531.33, 13.52], [530.97, 14.63], [528.68, 13.89], [525.52, 12.54], [521.83, 10.81], [517.9, 8.57], [515.21, 6.81], [511.82, 4.56], [510.05, 3.4], [509.43, 3.37], [503.96, -1.53]], "holes": []}}, {"shape": {"outer": [[-1130.13, 88.42], [-1133.15, 88.55], [-1142.29, 88.95], [-1144.23, 89.04], [-1146.13, 89.13], [-1146.83, 72.93], [-1130.83, 72.24], [-1130.13, 88.42]], "holes": []}}, {"shape": {"outer": [[-1134.07, 45.37], [-1129.71, 45.12], [-1130.22, 43.95], [-1129.64, 43.7], [-1129.66, 43.28], [-1134.18, 43.54], [-1134.07, 45.37]], "holes": []}}, {"shape": {"outer": [[-1179.25, 40.15], [-1175.3, 39.45], [-1174.5, 56.74], [-1177.93, 55.87], [-1179.25, 40.15]], "holes": []}}, {"shape": {"outer": [[-1173.68, 71.32], [-1176.83, 69.99], [-1177.33, 62.65], [-1174.25, 60.75], [-1173.68, 71.32]], "holes": []}}, {"shape": {"outer": [[-1175.77, 95.73], [-1172.38, 95.58], [-1173.33, 74.44], [-1176.68, 76.07], [-1175.77, 95.73]], "holes": []}}, {"shape": {"outer": [[-1171.95, 98.81], [-1170.93, 117.15], [-1171.23, 118.49], [-1172.82, 118.12], [-1173.57, 117.6], [-1174.17, 116.9], [-1175.15, 98.99], [-1171.95, 98.81]], "holes": []}}, {"shape": {"outer": [[-1168.61, 160.49], [-1171.77, 160.1], [-1171.56, 159.56], [-1171.84, 153.79], [-1172.06, 153.81], [-1172.09, 152.99], [-1172.02, 151.9], [-1171.83, 151.17], [-1171.46, 150.41], [-1171.04, 149.52], [-1170.69, 148.52], [-1170.39, 147.48], [-1170.19, 146.68], [-1170.01, 145.33], [-1169.41, 145.29], [-1168.61, 160.49]], "holes": []}}, {"shape": {"outer": [[-1158.18, 125.35], [-1158.05, 127.47], [-1166.47, 128.0], [-1166.6, 125.87], [-1158.18, 125.35]], "holes": []}}, {"shape": {"outer": [[-1191.18, 104.77], [-1190.87, 112.21], [-1189.0, 112.14], [-1189.32, 104.7], [-1189.79, 104.71], [-1191.18, 104.77]], "holes": []}}, {"shape": {"outer": [[-1216.78, 47.7], [-1216.89, 45.97], [-1217.07, 42.22], [-1197.49, 41.3], [-1194.71, 41.41], [-1193.74, 42.47], [-1193.26, 43.68], [-1191.0, 83.56], [-1191.93, 83.58], [-1191.95, 83.14], [-1193.53, 83.15], [-1194.79, 51.04], [-1195.61, 51.11], [-1195.8, 47.3], [-1199.68, 47.45], [-1199.74, 46.81], [-1216.78, 47.7]], "holes": []}}, {"shape": {"outer": [[-1217.07, 42.22], [-1218.5, 42.29], [-1218.32, 46.03], [-1216.89, 45.97], [-1217.07, 42.22]], "holes": []}}, {"shape": {"outer": [[-1225.99, 42.85], [-1225.94, 44.2], [-1223.68, 44.13], [-1223.73, 42.77], [-1225.99, 42.85]], "holes": []}}, {"shape": {"outer": [[-1232.63, 43.38], [-1232.58, 44.73], [-1230.32, 44.65], [-1230.37, 43.3], [-1232.63, 43.38]], "holes": []}}, {"shape": {"outer": [[108.45, 161.36], [110.69, 163.49], [121.44, 173.28], [149.85, 142.49], [145.83, 138.82], [145.46, 139.61], [125.9, 160.52], [119.32, 154.41], [116.45, 157.48], [114.12, 155.31], [108.45, 161.36]], "holes": []}}, {"shape": {"outer": [[-333.42, -87.98], [-329.73, -92.5], [-328.94, -92.98], [-328.08, -93.08], [-327.44, -92.77], [-327.47, -92.08], [-328.01, -91.33], [-328.69, -90.29], [-328.99, -89.01], [-328.8, -87.44], [-328.09, -86.2], [-327.08, -85.41], [-326.09, -85.04], [-325.15, -84.99], [-324.44, -84.79], [-323.94, -84.4], [-324.05, -83.82], [-325.85, -81.84], [-329.57, -84.85], [-333.42, -87.98]], "holes": []}}, {"shape": {"outer": [[-329.57, -84.85], [-330.29, -83.96], [-334.15, -87.09], [-333.42, -87.98], [-329.57, -84.85]], "holes": []}}, {"shape": {"outer": [[-325.85, -81.84], [-326.56, -80.96], [-330.29, -83.96], [-329.57, -84.85], [-325.85, -81.84]], "holes": []}}, {"shape": {"outer": [[-1136.86, 15.57], [-1136.75, 18.01], [-1133.79, 17.92], [-1130.66, 17.75], [-1130.87, 13.64], [-1132.59, -19.9], [-1132.88, -25.98], [-1134.69, -25.89], [-1136.23, -25.83], [-1136.35, -28.64], [-1147.93, -28.05], [-1147.37, -17.16], [-1138.53, -17.6], [-1138.38, -14.57], [-1136.86, 15.57]], "holes": []}}, {"shape": {"outer": [[-1116.23, -35.41], [-1115.11, -35.47], [-1109.61, -35.73], [-1104.42, -35.97], [-1104.5, -37.67], [-1100.95, -37.84], [-1100.79, -34.5], [-1100.07, -34.53], [-1100.21, -37.71], [-1096.11, -37.9], [-1095.78, -31.05], [-1095.72, -29.84], [-1085.46, -30.34], [-1085.26, -26.11], [-1075.24, -26.59], [-1073.57, -26.67], [-1073.54, -26.04], [-1073.37, -22.33], [-1086.85, -21.69], [-1086.57, -15.78], [-1091.75, -15.53], [-1091.45, -9.12], [-1092.74, -7.81], [-1091.61, 15.74], [-1093.75, 15.85], [-1095.53, 15.93], [-1095.74, 11.47], [-1097.29, -20.95], [-1097.46, -24.4], [-1115.66, -23.54], [-1115.83, -26.74], [-1116.23, -35.41]], "holes": []}}, {"shape": {"outer": [[-1046.67, -18.32], [-1051.05, -18.1], [-1062.06, -17.57], [-1062.5, -26.03], [-1034.97, -27.44], [-1034.82, -25.3], [-1034.59, -20.84], [-1037.6, -20.73], [-1040.41, -20.53], [-1040.55, -23.23], [-1046.9, -22.92], [-1046.67, -18.32]], "holes": []}}, {"shape": {"outer": [[355.37, 194.69], [369.74, 207.56], [396.7, 177.67], [388.86, 170.66], [382.32, 164.79], [355.37, 194.69]], "holes": []}}, {"shape": {"outer": [[369.63, 233.56], [383.88, 220.21], [369.74, 207.56], [355.37, 194.69], [349.68, 189.85], [328.43, 214.27], [314.19, 229.08], [317.27, 231.67], [317.59, 232.33], [313.32, 237.25], [317.4, 240.77], [320.5, 237.47], [321.24, 237.16], [322.42, 237.25], [326.58, 239.53], [348.29, 215.59], [369.63, 233.56]], "holes": []}}, {"shape": {"outer": [[396.97, 206.68], [396.16, 205.44], [386.66, 196.73], [383.0, 200.7], [379.81, 197.78], [371.63, 206.64], [385.27, 219.14], [387.78, 216.42], [389.09, 217.63], [392.05, 214.41], [394.58, 211.67], [393.38, 210.57], [396.97, 206.68]], "holes": []}}, {"shape": {"outer": [[-266.68, 517.68], [-259.55, 524.08], [-258.53, 522.94], [-257.4, 523.96], [-253.57, 519.73], [-250.92, 522.13], [-235.0, 504.52], [-245.92, 494.72], [-266.68, 517.68]], "holes": []}}, {"shape": {"outer": [[-1333.88, -73.47], [-1333.97, -75.49], [-1345.49, -74.95], [-1345.45, -74.34], [-1345.39, -72.94], [-1333.88, -73.47]], "holes": []}}, {"shape": {"outer": [[-1348.28, -74.69], [-1348.26, -74.28], [-1348.2, -72.84], [-1359.82, -72.29], [-1359.88, -73.48], [-1359.92, -74.15], [-1348.28, -74.69]], "holes": []}}, {"shape": {"outer": [[86.81, -315.63], [85.73, -316.6], [86.7, -317.67], [87.78, -316.7], [86.81, -315.63]], "holes": []}}, {"shape": {"outer": [[91.73, -320.96], [90.66, -321.94], [91.65, -323.0], [92.71, -322.02], [91.73, -320.96]], "holes": []}}, {"shape": {"outer": [[96.32, -323.74], [94.73, -325.25], [104.07, -334.99], [105.67, -333.49], [96.63, -323.96], [96.32, -323.74]], "holes": []}}, {"shape": {"outer": [[78.08, -304.03], [76.5, -305.42], [82.65, -312.35], [84.22, -310.97], [78.08, -304.03]], "holes": []}}, {"shape": {"outer": [[119.32, -333.8], [117.47, -335.46], [115.5, -337.2], [120.92, -343.23], [124.74, -339.81], [119.32, -333.8]], "holes": []}}, {"shape": {"outer": [[96.55, -321.94], [96.84, -321.82], [97.11, -321.79], [97.4, -321.83], [97.73, -321.97], [98.0, -322.22], [98.16, -322.48], [98.23, -322.71], [98.25, -322.95], [98.23, -323.16], [98.16, -323.37], [98.0, -323.65], [97.76, -323.86], [97.43, -324.02], [97.05, -324.06], [96.84, -324.04], [96.63, -323.96], [96.32, -323.74], [96.15, -323.54], [96.03, -323.3], [95.97, -323.04], [95.98, -322.79], [96.05, -322.52], [96.17, -322.28], [96.31, -322.12], [96.55, -321.94]], "holes": []}}, {"shape": {"outer": [[150.91, -315.97], [149.17, -317.55], [147.6, -315.84], [139.16, -323.48], [140.55, -325.0], [128.9, -335.54], [123.82, -329.97], [145.66, -310.2], [150.91, -315.97]], "holes": []}}, {"shape": {"outer": [[102.7, -264.19], [103.64, -263.41], [98.88, -258.17], [94.97, -261.71], [97.51, -264.5], [99.69, -266.9], [102.7, -264.19]], "holes": []}}, {"shape": {"outer": [[-235.97, -194.45], [-233.35, -192.16], [-232.37, -193.27], [-235.0, -195.56], [-235.97, -194.45]], "holes": []}}, {"shape": {"outer": [[-233.73, -191.91], [-234.52, -191.03], [-233.7, -190.32], [-237.22, -186.42], [-238.04, -187.12], [-238.89, -186.18], [-242.76, -189.46], [-242.12, -190.17], [-242.99, -190.93], [-239.13, -195.21], [-238.25, -194.47], [-237.6, -195.19], [-233.73, -191.91]], "holes": []}}, {"shape": {"outer": [[-240.37, -184.55], [-241.16, -183.68], [-240.34, -182.96], [-245.26, -177.49], [-246.09, -178.19], [-245.61, -178.72], [-249.44, -182.05], [-249.97, -181.47], [-250.84, -182.21], [-245.72, -187.9], [-244.86, -187.14], [-244.21, -187.86], [-240.37, -184.55]], "holes": []}}, {"shape": {"outer": [[-252.74, -170.81], [-251.97, -171.66], [-251.16, -170.95], [-246.05, -176.61], [-246.88, -177.31], [-247.54, -176.58], [-251.36, -179.92], [-250.9, -180.43], [-251.77, -181.18], [-256.78, -175.62], [-255.91, -174.86], [-256.58, -174.12], [-252.74, -170.81]], "holes": []}}, {"shape": {"outer": [[-253.65, -169.79], [-254.44, -168.91], [-253.63, -168.2], [-258.56, -162.74], [-259.38, -163.44], [-258.9, -163.98], [-262.73, -167.3], [-263.26, -166.71], [-264.14, -167.46], [-259.01, -173.14], [-258.14, -172.39], [-257.5, -173.11], [-253.65, -169.79]], "holes": []}}, {"shape": {"outer": [[-266.03, -156.05], [-265.26, -156.91], [-264.44, -156.19], [-259.35, -161.86], [-260.17, -162.56], [-260.83, -161.83], [-264.65, -165.17], [-264.19, -165.68], [-265.06, -166.43], [-270.08, -160.87], [-269.21, -160.11], [-269.86, -159.37], [-266.03, -156.05]], "holes": []}}, {"shape": {"outer": [[-224.71, -210.4], [-224.87, -210.14], [-224.95, -209.84], [-224.93, -209.54], [-224.82, -209.26], [-224.62, -209.03], [-224.36, -208.87], [-224.07, -208.8], [-223.74, -208.83], [-223.44, -208.98], [-223.25, -209.15], [-223.04, -209.55], [-223.06, -209.84], [-223.13, -210.16], [-223.32, -210.42], [-223.59, -210.62], [-223.88, -210.7], [-224.19, -210.69], [-224.48, -210.58], [-224.71, -210.4]], "holes": []}}, {"shape": {"outer": [[-212.64, -223.95], [-212.81, -223.71], [-212.89, -223.4], [-212.87, -223.1], [-212.76, -222.82], [-212.55, -222.59], [-212.3, -222.43], [-212.0, -222.36], [-211.68, -222.39], [-211.48, -222.48], [-211.29, -222.57], [-211.14, -222.74], [-211.04, -222.93], [-210.98, -223.18], [-210.98, -223.4], [-211.06, -223.72], [-211.26, -223.99], [-211.52, -224.18], [-211.82, -224.27], [-212.12, -224.25], [-212.41, -224.14], [-212.64, -223.95]], "holes": []}}, {"shape": {"outer": [[-223.25, -209.15], [-222.85, -208.8], [-222.54, -208.28], [-222.42, -207.82], [-222.34, -207.34], [-222.3, -206.97], [-222.31, -206.44], [-222.43, -205.96], [-222.64, -205.52], [-222.92, -205.17], [-222.57, -204.94], [-222.12, -205.55], [-221.95, -206.16], [-221.89, -206.91], [-221.95, -207.66], [-222.19, -208.56], [-222.5, -209.07], [-223.04, -209.55], [-223.25, -209.15]], "holes": []}}, {"shape": {"outer": [[-211.04, -222.93], [-210.66, -222.7], [-210.15, -222.47], [-209.61, -222.33], [-209.13, -222.28], [-208.54, -222.3], [-207.91, -222.42], [-207.35, -222.62], [-206.93, -222.94], [-206.6, -223.26], [-206.32, -222.97], [-206.66, -222.61], [-207.02, -222.34], [-207.41, -222.12], [-208.14, -221.94], [-208.76, -221.86], [-209.36, -221.87], [-209.95, -221.94], [-210.52, -222.14], [-210.98, -222.38], [-211.29, -222.57], [-211.14, -222.74], [-211.04, -222.93]], "holes": []}}, {"shape": {"outer": [[41.02, -330.61], [42.52, -329.27], [52.16, -340.05], [51.67, -340.48], [52.57, -341.47], [48.85, -344.77], [46.08, -341.67], [48.77, -339.28], [41.02, -330.61]], "holes": []}}, {"shape": {"outer": [[-231.92, -51.53], [-232.34, -51.93], [-233.44, -50.77], [-233.03, -50.38], [-233.63, -49.75], [-229.36, -45.71], [-228.87, -46.21], [-229.39, -46.7], [-228.12, -48.04], [-227.59, -47.54], [-227.01, -48.16], [-231.29, -52.19], [-231.92, -51.53]], "holes": []}}, {"shape": {"outer": [[-247.32, -65.28], [-247.75, -65.67], [-248.81, -64.46], [-248.39, -64.1], [-248.96, -63.44], [-244.53, -59.55], [-244.12, -60.02], [-243.6, -59.57], [-242.33, -61.01], [-242.85, -61.47], [-242.28, -62.1], [-246.71, -65.98], [-247.32, -65.28]], "holes": []}}, {"shape": {"outer": [[-211.33, -230.64], [-212.16, -231.44], [-211.42, -232.22], [-222.88, -242.5], [-223.62, -241.7], [-222.91, -241.02], [-226.39, -237.33], [-226.89, -237.82], [-227.68, -236.98], [-216.3, -226.8], [-215.51, -227.63], [-214.79, -226.94], [-211.33, -230.64]], "holes": []}}, {"shape": {"outer": [[-189.04, -241.29], [-189.83, -240.41], [-189.01, -239.7], [-193.94, -234.22], [-194.77, -234.92], [-194.29, -235.46], [-198.11, -238.78], [-198.64, -238.2], [-199.52, -238.94], [-194.4, -244.64], [-193.53, -243.87], [-192.88, -244.59], [-189.04, -241.29]], "holes": []}}, {"shape": {"outer": [[-201.42, -227.54], [-200.64, -228.4], [-199.83, -227.69], [-194.73, -233.34], [-195.56, -234.04], [-196.21, -233.31], [-200.04, -236.65], [-199.57, -237.16], [-200.45, -237.92], [-205.46, -232.35], [-204.59, -231.6], [-205.25, -230.86], [-201.42, -227.54]], "holes": []}}, {"shape": {"outer": [[-175.65, -255.86], [-176.44, -254.98], [-175.62, -254.27], [-180.55, -248.8], [-181.38, -249.5], [-180.9, -250.03], [-184.72, -253.36], [-185.25, -252.78], [-186.13, -253.52], [-181.01, -259.21], [-180.14, -258.44], [-179.49, -259.16], [-175.65, -255.86]], "holes": []}}, {"shape": {"outer": [[-188.03, -242.12], [-187.26, -242.97], [-186.44, -242.26], [-181.34, -247.92], [-182.17, -248.62], [-182.82, -247.89], [-186.65, -251.22], [-186.18, -251.74], [-187.06, -252.49], [-192.07, -246.92], [-191.2, -246.17], [-191.86, -245.43], [-188.03, -242.12]], "holes": []}}, {"shape": {"outer": [[-169.46, -262.63], [-170.25, -261.75], [-169.43, -261.04], [-172.95, -257.14], [-173.77, -257.84], [-174.61, -256.9], [-178.49, -260.18], [-177.85, -260.89], [-178.72, -261.64], [-174.86, -265.93], [-173.98, -265.19], [-173.33, -265.91], [-169.46, -262.63]], "holes": []}}, {"shape": {"outer": [[-360.38, -52.97], [-363.84, -57.02], [-363.9, -57.15], [-363.89, -57.32], [-363.86, -57.42], [-362.12, -59.28], [-360.46, -61.07], [-358.65, -63.03], [-356.88, -64.96], [-354.89, -67.1], [-353.1, -69.03], [-351.29, -70.97], [-349.48, -72.9], [-347.92, -71.46], [-345.26, -68.98], [-347.06, -67.05], [-348.87, -65.12], [-350.69, -63.2], [-352.69, -61.07], [-354.49, -59.17], [-356.34, -57.25], [-358.02, -55.45], [-359.75, -53.6], [-360.38, -52.97]], "holes": []}}, {"shape": {"outer": [[-142.03, -292.87], [-142.82, -291.99], [-142.0, -291.28], [-147.16, -285.84], [-147.97, -286.54], [-148.82, -285.6], [-152.69, -288.88], [-152.05, -289.59], [-152.92, -290.34], [-147.42, -296.18], [-146.55, -295.43], [-145.9, -296.15], [-142.03, -292.87]], "holes": []}}, {"shape": {"outer": [[-154.96, -277.66], [-155.75, -276.78], [-154.94, -276.07], [-160.09, -270.62], [-160.91, -271.32], [-161.76, -270.38], [-165.63, -273.66], [-164.99, -274.37], [-165.86, -275.12], [-160.36, -280.96], [-159.49, -280.22], [-158.84, -280.94], [-154.96, -277.66]], "holes": []}}, {"shape": {"outer": [[-136.29, -312.12], [-134.09, -314.45], [-134.26, -319.95], [-136.71, -319.82], [-136.61, -318.01], [-142.49, -317.69], [-136.29, -312.12]], "holes": []}}, {"shape": {"outer": [[-136.71, -319.82], [-142.59, -319.5], [-142.49, -317.69], [-136.61, -318.01], [-136.71, -319.82]], "holes": []}}, {"shape": {"outer": [[-117.46, -319.22], [-117.4, -317.78], [-111.49, -318.04], [-111.55, -319.48], [-117.46, -319.22]], "holes": []}}, {"shape": {"outer": [[-102.38, -335.05], [-106.42, -338.18], [-71.77, -377.47], [-66.98, -375.52], [-102.38, -335.05]], "holes": []}}, {"shape": {"outer": [[-54.07, -250.79], [-53.19, -250.01], [-52.48, -250.83], [-46.96, -245.94], [-47.66, -245.11], [-48.21, -245.55], [-50.39, -242.92], [-49.8, -242.39], [-50.54, -241.51], [-56.28, -246.6], [-55.51, -247.46], [-56.24, -248.11], [-54.07, -250.79]], "holes": []}}, {"shape": {"outer": [[-40.23, -238.5], [-41.09, -239.28], [-40.38, -240.09], [-46.09, -245.15], [-46.78, -244.32], [-46.04, -243.67], [-48.25, -241.0], [-48.76, -241.46], [-49.52, -240.59], [-43.92, -235.62], [-43.16, -236.49], [-42.41, -235.83], [-40.23, -238.5]], "holes": []}}, {"shape": {"outer": [[-105.03, -296.67], [-104.18, -295.95], [-103.44, -296.82], [-98.38, -292.48], [-101.32, -289.07], [-102.15, -289.78], [-101.39, -290.66], [-105.67, -294.31], [-106.39, -293.47], [-107.19, -294.16], [-105.03, -296.67]], "holes": []}}, {"shape": {"outer": [[-91.88, -285.76], [-92.72, -286.48], [-91.98, -287.35], [-97.04, -291.67], [-99.97, -288.27], [-99.15, -287.56], [-98.39, -288.43], [-94.12, -284.78], [-94.85, -283.94], [-94.04, -283.26], [-91.88, -285.76]], "holes": []}}, {"shape": {"outer": [[-70.44, -267.18], [-77.54, -273.51], [-79.53, -271.29], [-78.77, -270.61], [-77.99, -271.46], [-72.5, -266.57], [-73.23, -265.75], [-72.39, -265.0], [-70.44, -267.18]], "holes": []}}, {"shape": {"outer": [[365.65, -3117.48], [366.52, -3118.01], [367.0, -3118.93], [366.42, -3120.12], [365.43, -3120.48], [356.75, -3120.16], [355.86, -3119.62], [355.36, -3118.79], [355.66, -3117.65], [356.59, -3117.11], [365.65, -3117.48]], "holes": []}}, {"shape": {"outer": [[384.63, -3118.59], [385.51, -3119.14], [385.99, -3120.06], [385.41, -3121.24], [384.42, -3121.61], [375.75, -3121.29], [374.86, -3120.75], [374.35, -3119.9], [374.65, -3118.78], [375.57, -3118.24], [384.63, -3118.59]], "holes": []}}, {"shape": {"outer": [[404.42, -3119.31], [405.29, -3119.86], [405.77, -3120.77], [405.19, -3121.96], [404.21, -3122.33], [395.53, -3122.0], [394.64, -3121.47], [394.13, -3120.63], [394.43, -3119.49], [395.36, -3118.95], [404.42, -3119.31]], "holes": []}}, {"shape": {"outer": [[423.34, -3120.08], [424.21, -3120.63], [424.7, -3121.54], [424.12, -3122.74], [423.13, -3123.1], [414.45, -3122.77], [413.56, -3122.24], [413.05, -3121.4], [413.35, -3120.26], [414.27, -3119.72], [423.34, -3120.08]], "holes": []}}, {"shape": {"outer": [[433.21, -3128.02], [440.75, -3128.39], [441.89, -3130.95], [441.89, -3134.0], [440.96, -3134.83], [431.5, -3134.45], [430.51, -3133.75], [430.43, -3132.15], [430.8, -3130.22], [431.81, -3129.03], [433.21, -3128.02]], "holes": []}}, {"shape": {"outer": [[-2055.09, -454.32], [-2055.05, -452.53], [-2031.9, -453.16], [-2031.95, -454.95], [-2055.09, -454.32]], "holes": []}}, {"shape": {"outer": [[-2055.09, -454.32], [-2055.25, -460.09], [-2043.14, -460.41], [-2032.1, -460.7], [-2031.95, -454.95], [-2055.09, -454.32]], "holes": []}}, {"shape": {"outer": [[-2043.2, -462.84], [-2043.19, -462.46], [-2043.14, -460.41], [-2032.1, -460.7], [-2032.16, -463.12], [-2043.2, -462.84]], "holes": []}}, {"shape": {"outer": [[-2075.32, -461.92], [-2091.78, -461.0], [-2091.74, -456.37], [-2090.04, -455.9], [-2087.32, -453.14], [-2088.0, -451.47], [-2078.34, -442.62], [-2077.08, -444.47], [-2075.85, -446.53], [-2075.12, -448.67], [-2074.74, -450.62], [-2075.13, -455.85], [-2075.32, -461.92]], "holes": []}}, {"shape": {"outer": [[-2069.51, -423.26], [-2066.33, -429.72], [-2064.67, -429.63], [-2063.62, -430.58], [-2065.38, -430.94], [-2063.98, -434.11], [-2064.64, -434.14], [-2065.1, -434.12], [-2065.16, -434.82], [-2065.01, -435.53], [-2065.15, -436.06], [-2064.84, -436.77], [-2064.27, -437.2], [-2063.33, -437.76], [-2063.17, -439.25], [-2064.84, -442.12], [-2066.58, -442.31], [-2066.44, -439.2], [-2067.12, -436.03], [-2068.23, -433.02], [-2070.08, -429.92], [-2071.81, -428.01], [-2072.61, -427.19], [-2069.51, -423.26]], "holes": []}}, {"shape": {"outer": [[-2072.61, -427.19], [-2082.35, -437.55], [-2078.34, -442.62], [-2077.08, -444.47], [-2075.85, -446.53], [-2075.12, -448.67], [-2074.74, -450.62], [-2071.88, -450.62], [-2070.75, -449.54], [-2070.34, -448.21], [-2069.68, -443.21], [-2066.58, -442.31], [-2066.44, -439.2], [-2067.12, -436.03], [-2068.23, -433.02], [-2070.08, -429.92], [-2071.81, -428.01], [-2072.61, -427.19]], "holes": []}}, {"shape": {"outer": [[-2075.13, -455.85], [-2067.01, -456.11], [-2067.12, -459.73], [-2062.99, -459.83], [-2061.53, -446.61], [-2061.72, -444.22], [-2063.82, -447.24], [-2070.34, -448.21], [-2070.75, -449.54], [-2071.88, -450.62], [-2074.74, -450.62], [-2075.13, -455.85]], "holes": []}}, {"shape": {"outer": [[-2114.94, -397.15], [-2113.51, -397.22], [-2113.07, -393.9], [-2116.07, -393.58], [-2124.14, -393.17], [-2125.34, -392.29], [-2134.02, -392.19], [-2134.1, -393.96], [-2116.94, -394.86], [-2114.94, -397.15]], "holes": []}}, {"shape": {"outer": [[-2107.94, -394.65], [-2108.26, -397.52], [-2108.87, -397.59], [-2108.72, -398.43], [-2104.97, -398.77], [-2100.25, -399.66], [-2097.59, -400.31], [-2096.6, -398.25], [-2100.98, -396.65], [-2105.66, -395.24], [-2107.94, -394.65]], "holes": []}}, {"shape": {"outer": [[-2123.98, -458.17], [-2121.95, -456.1], [-2110.21, -456.54], [-2108.11, -458.3], [-2109.9, -460.01], [-2122.78, -459.54], [-2123.98, -458.17]], "holes": []}}, {"shape": {"outer": [[-2109.9, -460.01], [-2108.11, -458.3], [-2106.33, -456.81], [-2098.47, -457.17], [-2096.47, -459.09], [-2094.63, -460.85], [-2109.9, -460.01]], "holes": []}}, {"shape": {"outer": [[-2096.47, -459.09], [-2093.63, -456.61], [-2093.83, -460.94], [-2094.63, -460.85], [-2096.47, -459.09]], "holes": []}}, {"shape": {"outer": [[-2136.21, -445.44], [-2138.86, -443.01], [-2137.2, -403.82], [-2134.44, -403.94], [-2136.21, -445.44]], "holes": []}}, {"shape": {"outer": [[-2113.7, -401.05], [-2106.85, -401.64], [-2098.23, -403.07], [-2098.2, -408.64], [-2097.95, -414.83], [-2097.72, -417.52], [-2097.86, -426.35], [-2100.11, -428.38], [-2099.52, -417.29], [-2113.7, -401.05]], "holes": []}}, {"shape": {"outer": [[-2139.64, -451.1], [-2139.76, -456.38], [-2136.32, -456.45], [-2135.44, -455.64], [-2139.64, -451.1]], "holes": []}}, {"shape": {"outer": [[-2170.18, -568.95], [-2167.7, -565.54], [-2165.41, -558.63], [-2164.14, -550.73], [-2163.78, -537.14], [-2163.68, -532.5], [-2163.2, -520.01], [-2163.49, -513.84], [-2166.42, -515.5], [-2170.28, -514.76], [-2170.19, -521.39], [-2171.28, -525.91], [-2171.62, -532.72], [-2172.84, -537.71], [-2174.86, -544.13], [-2175.01, -546.79], [-2176.47, -556.5], [-2181.76, -562.88], [-2183.78, -569.93], [-2182.09, -573.39], [-2179.96, -572.86], [-2175.05, -573.15], [-2170.18, -568.95]], "holes": []}}, {"shape": {"outer": [[-2177.92, -581.41], [-2182.09, -573.39], [-2179.96, -572.86], [-2175.05, -573.15], [-2170.18, -568.95], [-2167.7, -565.54], [-2165.41, -558.63], [-2164.14, -550.73], [-2163.78, -537.14], [-2163.68, -532.5], [-2163.2, -520.01], [-2163.49, -513.84], [-2162.22, -512.77], [-2161.52, -520.91], [-2162.26, -550.31], [-2162.6, -554.8], [-2163.36, -559.07], [-2165.22, -564.13], [-2167.51, -569.17], [-2171.97, -575.42], [-2177.92, -581.41]], "holes": []}}, {"shape": {"outer": [[-2244.79, -607.9], [-2193.11, -501.85], [-2190.98, -502.54], [-2184.29, -501.27], [-2176.77, -512.49], [-2170.28, -514.76], [-2170.19, -521.39], [-2171.28, -525.91], [-2171.62, -532.72], [-2172.84, -537.71], [-2174.86, -544.13], [-2175.01, -546.79], [-2176.47, -556.5], [-2181.76, -562.88], [-2183.78, -569.93], [-2190.04, -567.68], [-2197.53, -569.05], [-2202.27, -574.65], [-2205.64, -580.91], [-2210.39, -585.23], [-2213.81, -591.03], [-2216.89, -596.45], [-2222.15, -596.4], [-2228.11, -596.18], [-2232.2, -597.66], [-2239.56, -601.85], [-2244.79, -607.9]], "holes": []}}, {"shape": {"outer": [[-2260.08, -624.59], [-2257.36, -619.62], [-2256.55, -616.42], [-2254.33, -612.29], [-2254.19, -609.14], [-2254.87, -607.46], [-2256.88, -606.85], [-2256.76, -603.76], [-2257.38, -598.72], [-2253.59, -597.15], [-2251.78, -594.96], [-2240.91, -591.33], [-2237.35, -587.27], [-2241.5, -595.73], [-2251.6, -615.41], [-2260.08, -624.59]], "holes": []}}, {"shape": {"outer": [[-2237.35, -587.27], [-2236.58, -579.89], [-2237.99, -576.31], [-2239.85, -572.98], [-2242.79, -569.58], [-2245.86, -568.77], [-2246.86, -567.88], [-2245.23, -564.18], [-2242.6, -563.02], [-2241.87, -560.83], [-2240.01, -560.45], [-2236.28, -562.39], [-2233.28, -562.94], [-2231.45, -561.93], [-2231.45, -559.15], [-2228.34, -559.29], [-2225.54, -557.66], [-2225.18, -554.13], [-2225.67, -550.16], [-2227.8, -545.17], [-2227.63, -540.52], [-2226.64, -538.37], [-2221.78, -536.51], [-2219.85, -532.82], [-2219.01, -529.1], [-2218.75, -525.32], [-2222.44, -521.12], [-2227.19, -517.86], [-2230.06, -517.99], [-2229.76, -512.75], [-2231.72, -511.76], [-2230.44, -509.23], [-2229.24, -507.93], [-2228.31, -507.18], [-2228.33, -504.99], [-2229.06, -503.17], [-2229.31, -501.36], [-2230.45, -499.17], [-2231.38, -497.3], [-2233.21, -496.14], [-2235.61, -495.81], [-2237.05, -496.45], [-2238.11, -497.36], [-2239.55, -499.39], [-2240.22, -500.23], [-2240.92, -501.93], [-2242.52, -503.77], [-2244.3, -504.3], [-2246.54, -504.14], [-2251.61, -504.37], [-2252.37, -502.08], [-2250.19, -499.97], [-2250.74, -496.66], [-2247.81, -494.13], [-2245.73, -491.57], [-2246.97, -487.76], [-2249.54, -485.79], [-2256.54, -485.49], [-2260.54, -486.88], [-2263.74, -493.3], [-2266.86, -496.78], [-2269.75, -507.15], [-2268.21, -469.82], [-2266.87, -464.74], [-2264.13, -459.93], [-2259.93, -455.95], [-2254.83, -453.07], [-2249.67, -452.46], [-2241.96, -452.99], [-2236.99, -455.23], [-2233.5, -457.97], [-2231.15, -460.35], [-2228.56, -462.42], [-2225.91, -464.13], [-2222.96, -465.69], [-2219.4, -466.95], [-2221.14, -467.7], [-2235.13, -467.2], [-2236.16, -466.83], [-2237.28, -465.7], [-2237.91, -464.04], [-2238.09, -462.36], [-2239.08, -460.06], [-2239.88, -458.66], [-2240.52, -457.13], [-2242.47, -455.04], [-2245.8, -453.42], [-2249.51, -453.28], [-2252.69, -454.04], [-2256.78, -455.85], [-2260.34, -458.04], [-2262.32, -460.35], [-2263.49, -462.09], [-2264.6, -464.01], [-2266.28, -466.1], [-2266.69, -468.22], [-2266.12, -470.58], [-2265.42, -472.37], [-2264.4, -473.72], [-2262.67, -474.32], [-2260.59, -474.73], [-2258.04, -474.84], [-2255.26, -474.31], [-2253.26, -475.24], [-2252.29, -476.54], [-2251.34, -478.24], [-2249.86, -480.34], [-2247.88, -482.51], [-2244.25, -483.87], [-2240.8, -484.21], [-2238.23, -483.62], [-2236.08, -482.56], [-2233.79, -481.42], [-2232.1, -480.19], [-2231.22, -481.9], [-2228.13, -483.82], [-2223.93, -484.19], [-2220.68, -486.75], [-2216.7, -486.59], [-2207.31, -490.16], [-2194.68, -500.25], [-2195.24, -501.36], [-2237.35, -587.27]], "holes": []}}, {"shape": {"outer": [[-2239.77, -446.37], [-2238.02, -445.94], [-2236.7, -444.84], [-2236.52, -443.06], [-2237.84, -439.73], [-2240.93, -435.06], [-2248.83, -434.68], [-2251.39, -439.32], [-2251.64, -442.52], [-2250.67, -444.14], [-2245.81, -444.39], [-2242.84, -445.58], [-2239.77, -446.37]], "holes": []}}, {"shape": {"outer": [[-2250.67, -444.14], [-2268.54, -443.19], [-2271.11, -443.13], [-2285.56, -442.78], [-2286.35, -436.92], [-2285.4, -433.57], [-2270.62, -433.64], [-2248.83, -434.68], [-2251.39, -439.32], [-2251.64, -442.52], [-2250.67, -444.14]], "holes": []}}, {"shape": {"outer": [[-2692.69, -924.02], [-2689.35, -925.98], [-2660.32, -897.08], [-2667.93, -887.72], [-2677.03, -891.47], [-2710.9, -900.3], [-2702.2, -921.78], [-2697.69, -923.34], [-2701.36, -929.83], [-2699.71, -931.25], [-2698.13, -932.6], [-2692.69, -924.02]], "holes": []}}, {"shape": {"outer": [[-2571.2, -855.65], [-2571.08, -852.74], [-2595.14, -859.94], [-2595.25, -863.04], [-2571.2, -855.65]], "holes": []}}, {"shape": {"outer": [[-2599.25, -846.23], [-2599.31, -843.38], [-2600.62, -841.58], [-2601.26, -837.62], [-2601.42, -836.17], [-2602.61, -835.23], [-2605.83, -835.1], [-2606.58, -834.03], [-2609.34, -835.16], [-2612.75, -836.45], [-2614.7, -839.95], [-2616.15, -840.86], [-2616.97, -845.07], [-2621.09, -843.73], [-2623.78, -841.27], [-2629.18, -839.92], [-2630.7, -840.06], [-2632.07, -838.48], [-2636.07, -840.61], [-2638.31, -844.27], [-2639.76, -848.78], [-2642.88, -846.15], [-2644.38, -845.46], [-2647.82, -845.21], [-2649.72, -844.64], [-2651.73, -846.36], [-2652.99, -845.56], [-2653.93, -848.29], [-2653.54, -850.81], [-2651.4, -850.02], [-2649.98, -855.94], [-2655.43, -861.5], [-2659.86, -858.91], [-2661.65, -857.63], [-2663.88, -857.82], [-2666.0, -856.67], [-2670.37, -855.72], [-2672.59, -858.07], [-2676.33, -858.76], [-2680.03, -857.63], [-2682.71, -859.74], [-2683.46, -859.31], [-2682.99, -857.94], [-2683.2, -856.62], [-2684.64, -856.21], [-2687.01, -856.65], [-2693.39, -863.01], [-2695.41, -860.43], [-2693.4, -855.14], [-2695.15, -850.59], [-2692.93, -849.66], [-2693.17, -847.23], [-2694.65, -845.26], [-2695.55, -842.68], [-2695.84, -838.3], [-2694.28, -834.8], [-2695.91, -831.76], [-2699.09, -831.21], [-2701.43, -835.36], [-2698.74, -838.1], [-2698.96, -843.22], [-2701.55, -846.83], [-2700.24, -850.67], [-2701.34, -855.7], [-2701.09, -860.91], [-2702.62, -864.6], [-2707.15, -866.32], [-2710.01, -866.73], [-2712.22, -862.56], [-2712.46, -856.52], [-2709.0, -854.71], [-2709.0, -852.05], [-2711.09, -850.16], [-2711.89, -844.79], [-2717.05, -846.17], [-2717.53, -848.86], [-2718.29, -857.86], [-2727.82, -863.11], [-2733.97, -862.27], [-2734.3, -859.16], [-2736.8, -858.36], [-2738.14, -860.69], [-2738.94, -864.21], [-2751.88, -864.26], [-2753.5, -874.55], [-2757.97, -873.88], [-2762.16, -880.35], [-2760.58, -886.64], [-2763.61, -885.3], [-2767.12, -885.12], [-2768.16, -883.18], [-2769.78, -883.75], [-2775.72, -889.31], [-2777.8, -898.37], [-2784.42, -896.98], [-2784.87, -889.1], [-2781.1, -887.01], [-2780.99, -882.37], [-2784.11, -879.74], [-2784.14, -878.27], [-2784.58, -877.08], [-2783.27, -875.5], [-2784.25, -873.46], [-2784.89, -870.65], [-2789.22, -869.47], [-2791.18, -870.0], [-2791.43, -867.91], [-2796.64, -865.76], [-2797.85, -867.52], [-2797.2, -869.08], [-2796.93, -871.53], [-2799.56, -870.9], [-2800.99, -872.85], [-2799.34, -876.5], [-2800.35, -881.06], [-2797.85, -884.32], [-2799.18, -887.27], [-2797.47, -888.68], [-2795.08, -889.56], [-2793.4, -896.42], [-2792.29, -899.19], [-2793.49, -901.84], [-2793.0, -906.03], [-2791.88, -908.14], [-2791.84, -913.23], [-2806.91, -915.92], [-2808.54, -911.66], [-2802.57, -907.54], [-2804.46, -904.31], [-2801.57, -903.21], [-2800.83, -900.59], [-2802.22, -899.49], [-2802.59, -896.88], [-2806.16, -897.32], [-2806.35, -892.15], [-2809.28, -891.79], [-2809.04, -889.7], [-2806.71, -887.11], [-2806.84, -883.72], [-2807.88, -882.56], [-2807.28, -878.04], [-2810.29, -877.11], [-2812.57, -874.95], [-2815.87, -876.3], [-2816.38, -875.01], [-2820.45, -879.13], [-2823.01, -878.06], [-2824.36, -875.23], [-2825.48, -875.35], [-2826.77, -874.12], [-2827.16, -872.31], [-2831.37, -871.57], [-2832.86, -875.9], [-2838.55, -879.84], [-2839.33, -882.59], [-2836.17, -885.27], [-2832.91, -885.08], [-2832.87, -888.07], [-2829.57, -890.86], [-2827.6, -891.09], [-2829.37, -893.13], [-2828.5, -895.21], [-2827.48, -896.2], [-2828.3, -897.54], [-2825.63, -898.06], [-2820.01, -894.7], [-2818.87, -896.34], [-2820.37, -900.22], [-2818.95, -902.21], [-2815.91, -901.66], [-2815.34, -902.67], [-2818.35, -904.48], [-2818.79, -907.89], [-2822.22, -910.17], [-2820.07, -914.3], [-2816.77, -916.22], [-2821.31, -920.48], [-2824.82, -924.18], [-2839.15, -924.35], [-2840.04, -918.82], [-2843.7, -917.6], [-2848.35, -918.44], [-2851.61, -918.71], [-2853.39, -919.69], [-2855.57, -918.07], [-2858.63, -921.38], [-2860.95, -922.71], [-2862.49, -919.98], [-2864.9, -919.39], [-2867.83, -920.25], [-2871.79, -927.72], [-2879.0, -928.6], [-2885.19, -929.94], [-2886.32, -932.31], [-2887.16, -934.53], [-2887.81, -936.85], [-2894.35, -935.85], [-2895.98, -941.44], [-2900.56, -937.2], [-2900.03, -928.42], [-2901.06, -926.92], [-2902.7, -926.45], [-2902.36, -924.0], [-2905.24, -921.45], [-2908.62, -921.13], [-2909.94, -923.92], [-2911.14, -927.84], [-2913.26, -927.03], [-2914.68, -928.46], [-2914.24, -930.01], [-2915.77, -935.71], [-2913.63, -939.2], [-2916.46, -941.38], [-2916.74, -943.92], [-2924.81, -942.72], [-2926.47, -943.73], [-2927.05, -940.93], [-2929.67, -941.59], [-2931.4, -940.44], [-2935.53, -941.92], [-2937.94, -943.96], [-2939.69, -946.0], [-2942.56, -946.13], [-2942.51, -944.6], [-2935.77, -940.63], [-2937.41, -937.02], [-2932.69, -932.58], [-2933.8, -931.11], [-2933.89, -927.93], [-2937.44, -925.36], [-2939.91, -924.94], [-2941.72, -923.03], [-2941.25, -920.42], [-2942.83, -918.79], [-2944.92, -918.66], [-2947.03, -919.61], [-2948.84, -924.38], [-2952.84, -923.49], [-2958.23, -927.23], [-2962.14, -925.01], [-2965.84, -926.32], [-2968.13, -928.99], [-2968.36, -932.82], [-2965.41, -937.36], [-2963.56, -937.95], [-2964.8, -941.71], [-2962.61, -944.18], [-2960.98, -945.68], [-2960.76, -949.75], [-2966.01, -952.12], [-2976.49, -949.74], [-2979.6, -946.45], [-2980.31, -942.38], [-2982.67, -942.27], [-2982.44, -940.88], [-2981.59, -939.37], [-2983.31, -936.22], [-2986.27, -936.42], [-2986.94, -938.4], [-2986.57, -940.41], [-2986.21, -941.59], [-2987.67, -943.86], [-2993.39, -951.39], [-2996.81, -953.0], [-2998.43, -955.67], [-2996.82, -960.82], [-2997.64, -962.66], [-3001.1, -957.17], [-3005.57, -955.31], [-3011.17, -955.89], [-3013.54, -953.73], [-3018.14, -955.31], [-3015.45, -951.18], [-3010.84, -952.37], [-3006.77, -950.82], [-3007.52, -949.31], [-3007.74, -946.72], [-3009.96, -944.22], [-3011.03, -944.85], [-3011.03, -945.78], [-3011.89, -944.9], [-3013.83, -945.57], [-3014.52, -944.14], [-3015.61, -943.91], [-3015.85, -941.28], [-3018.15, -940.95], [-3019.75, -941.67], [-3020.5, -942.24], [-3021.83, -940.96], [-3022.61, -941.0], [-3022.6, -940.36], [-3022.14, -939.76], [-3018.98, -940.72], [-3017.1, -940.54], [-3015.67, -936.49], [-3017.79, -929.68], [-3022.7, -928.97], [-3027.34, -929.2], [-3028.1, -930.33], [-3027.14, -933.82], [-3028.02, -934.98], [-3029.13, -935.12], [-3028.56, -933.99], [-3029.91, -931.97], [-3031.49, -931.9], [-3035.07, -932.28], [-3036.77, -929.5], [-3041.23, -929.52], [-3042.06, -928.69], [-3042.0, -927.35], [-3040.9, -926.76], [-3041.29, -925.72], [-3042.3, -923.98], [-3048.33, -921.37], [-3050.22, -919.47], [-3053.55, -919.32], [-3053.98, -922.37], [-3059.05, -926.33], [-3059.7, -929.66], [-3065.49, -945.22], [-3062.86, -944.51], [-3064.38, -947.86], [-3058.9, -948.81], [-3056.8, -943.86], [-3055.92, -938.53], [-3052.92, -934.66], [-3049.16, -934.39], [-3046.24, -937.31], [-3048.03, -941.22], [-3046.46, -943.63], [-3048.57, -946.03], [-3048.16, -948.92], [-3041.22, -948.42], [-3036.84, -954.93], [-3036.82, -963.37], [-3046.55, -965.34], [-3057.13, -978.28], [-3068.88, -975.3], [-3072.9, -983.54], [-3066.11, -987.77], [-3074.73, -995.34], [-3097.14, -1001.54], [-3102.18, -1000.95], [-3104.38, -995.97], [-3108.49, -994.68], [-3110.78, -997.18], [-3116.22, -999.28], [-3123.35, -1000.39], [-3128.52, -998.48], [-3132.05, -995.26], [-3140.55, -996.05], [-3143.0, -994.61], [-3138.86, -990.67], [-3141.51, -989.33], [-3144.25, -992.6], [-3146.16, -991.69], [-3144.67, -990.05], [-3146.07, -988.32], [-3143.37, -987.17], [-3143.34, -985.11], [-3143.91, -983.31], [-3145.2, -981.9], [-3146.53, -982.99], [-3148.0, -985.47], [-3151.73, -986.26], [-3153.34, -983.84], [-3156.65, -984.11], [-3159.85, -985.47], [-3159.97, -1007.42], [-3158.85, -1010.13], [-3155.4, -1010.72], [-3153.08, -1014.96], [-3157.81, -1018.36], [-3159.2, -1023.34], [-3157.83, -1023.83], [-3153.58, -1022.56], [-3151.16, -1022.48], [-3151.48, -1023.75], [-3153.62, -1025.65], [-3152.93, -1027.1], [-3155.26, -1031.77], [-3156.95, -1033.93], [-3156.61, -1036.6], [-3158.61, -1039.88], [-3159.07, -1043.86], [-3158.14, -1044.67], [-3158.71, -1046.64], [-3160.36, -1047.52], [-3162.25, -1054.08], [-3157.81, -1055.28], [-3153.91, -1052.17], [-3153.94, -1048.59], [-3151.81, -1047.03], [-3152.31, -1046.0], [-3151.98, -1045.03], [-3149.81, -1044.85], [-3148.01, -1043.67], [-3147.09, -1042.26], [-3144.34, -1041.23], [-3141.46, -1039.42], [-3136.93, -1038.35], [-3130.63, -1038.59], [-3125.66, -1035.54], [-3121.8, -1034.46], [-3120.28, -1036.09], [-3121.27, -1038.99], [-3120.75, -1040.8], [-3119.87, -1041.35], [-3119.9, -1042.47], [-3117.51, -1043.97], [-3117.79, -1046.34], [-3117.85, -1047.86], [-3118.32, -1050.39], [-3122.29, -1051.46], [-3122.18, -1054.6], [-3125.21, -1058.38], [-3123.91, -1060.85], [-3121.39, -1062.64], [-3118.08, -1066.42], [-3120.88, -1069.81], [-3121.71, -1073.46], [-3120.38, -1074.81], [-3116.33, -1075.34], [-3115.26, -1077.28], [-3112.85, -1076.11], [-3111.52, -1073.85], [-3109.88, -1074.49], [-3107.63, -1078.85], [-3103.61, -1080.2], [-3104.58, -1081.53], [-3103.77, -1082.55], [-3102.05, -1082.15], [-3101.73, -1083.38], [-3100.81, -1084.56], [-3099.58, -1085.4], [-3101.22, -1088.26], [-3100.87, -1090.08], [-3099.61, -1090.66], [-3097.15, -1090.53], [-3096.43, -1088.43], [-3095.04, -1090.49], [-3093.78, -1090.55], [-3091.81, -1088.17], [-3092.08, -1085.93], [-3088.84, -1082.18], [-3087.42, -1081.45], [-3089.21, -1077.61], [-3094.17, -1074.77], [-3098.24, -1074.24], [-3099.59, -1072.36], [-3099.06, -1070.59], [-3099.65, -1068.15], [-3090.91, -1065.85], [-3083.24, -1062.18], [-3081.21, -1061.98], [-3077.6, -1059.98], [-3077.52, -1058.75], [-3076.23, -1057.42], [-3076.45, -1055.76], [-3074.36, -1053.16], [-3075.19, -1050.66], [-3077.27, -1048.62], [-3077.11, -1046.53], [-3081.07, -1044.6], [-3089.15, -1042.82], [-3091.88, -1039.71], [-3091.81, -1038.7], [-3092.35, -1034.36], [-3093.32, -1033.95], [-3093.27, -1033.14], [-3095.19, -1032.97], [-3095.81, -1031.59], [-3092.71, -1031.03], [-3088.29, -1027.72], [-3088.24, -1027.19], [-3089.45, -1026.62], [-3089.05, -1026.04], [-3086.82, -1026.5], [-3084.35, -1024.54], [-3081.8, -1025.01], [-3078.71, -1027.1], [-3074.4, -1027.79], [-3072.78, -1029.07], [-3067.86, -1026.76], [-3064.57, -1028.17], [-3061.23, -1027.16], [-3056.88, -1028.48], [-3054.42, -1030.04], [-3052.18, -1028.96], [-3050.52, -1028.43], [-3050.14, -1027.45], [-3048.21, -1028.25], [-3047.44, -1030.27], [-3045.77, -1032.67], [-3043.21, -1033.5], [-3031.1, -1045.83], [-3031.77, -1047.33], [-3033.99, -1048.67], [-3033.82, -1051.96], [-3035.79, -1054.14], [-3038.48, -1056.01], [-3039.4, -1057.61], [-3038.31, -1058.39], [-3038.91, -1059.71], [-3037.82, -1061.03], [-3033.51, -1061.96], [-3029.0, -1058.16], [-3027.18, -1057.2], [-3025.19, -1057.65], [-3021.36, -1055.75], [-3016.77, -1051.7], [-3013.8, -1049.41], [-3013.76, -1044.7], [-3013.04, -1043.02], [-3013.58, -1041.55], [-3012.9, -1038.43], [-3014.65, -1037.63], [-3015.16, -1035.99], [-3015.14, -1034.2], [-3014.78, -1033.03], [-3014.89, -1032.01], [-3015.83, -1032.32], [-3016.46, -1030.1], [-3017.26, -1030.17], [-3017.58, -1028.44], [-3019.6, -1027.8], [-3020.65, -1026.3], [-3019.32, -1025.36], [-3019.46, -1022.69], [-3021.48, -1020.28], [-3019.68, -1019.27], [-3017.84, -1016.77], [-3017.18, -1013.72], [-3018.6, -1012.49], [-3020.46, -1012.67], [-3020.29, -1010.63], [-3018.56, -1007.06], [-3021.06, -1006.16], [-3020.27, -1000.46], [-3017.78, -999.01], [-3014.04, -1006.02], [-3012.26, -1007.23], [-3009.39, -1008.27], [-3008.57, -1010.17], [-3007.6, -1011.18], [-3006.37, -1010.82], [-3005.0, -1010.85], [-3003.54, -1008.85], [-3003.02, -1009.04], [-3002.49, -1012.22], [-3000.96, -1012.3], [-2998.45, -1014.68], [-2996.77, -1014.39], [-2995.85, -1013.3], [-2994.28, -1013.44], [-2992.43, -1012.39], [-2992.26, -1013.43], [-2992.05, -1016.96], [-2989.83, -1017.6], [-2989.92, -1019.88], [-2986.29, -1022.99], [-2982.17, -1021.73], [-2981.4, -1018.62], [-2982.05, -1016.93], [-2981.36, -1013.79], [-2979.69, -1010.86], [-2975.23, -1012.04], [-2971.5, -1008.04], [-2972.4, -1002.05], [-2977.5, -997.77], [-2981.9, -993.29], [-2981.23, -991.86], [-2977.62, -990.67], [-2973.55, -989.92], [-2970.8, -989.73], [-2970.57, -991.87], [-2969.06, -992.59], [-2969.42, -993.74], [-2967.86, -994.25], [-2965.28, -992.76], [-2964.1, -990.54], [-2960.19, -986.87], [-2959.75, -983.92], [-2958.96, -983.78], [-2957.36, -985.07], [-2954.45, -984.24], [-2953.17, -982.43], [-2950.0, -982.23], [-2949.03, -983.83], [-2948.98, -985.8], [-2949.63, -987.63], [-2948.63, -991.55], [-2948.28, -996.06], [-2947.72, -995.61], [-2946.58, -996.53], [-2945.67, -996.3], [-2945.16, -994.56], [-2945.28, -993.04], [-2943.66, -991.25], [-2943.68, -988.37], [-2945.68, -986.14], [-2945.8, -984.86], [-2943.76, -983.01], [-2944.62, -981.24], [-2943.67, -979.94], [-2944.06, -977.91], [-2942.61, -976.97], [-2938.28, -977.07], [-2936.08, -975.88], [-2935.39, -974.98], [-2934.36, -974.52], [-2933.45, -975.99], [-2930.48, -976.02], [-2927.75, -975.88], [-2927.54, -977.86], [-2927.29, -978.27], [-2926.49, -977.88], [-2926.92, -976.83], [-2925.92, -976.29], [-2925.52, -976.26], [-2925.03, -976.8], [-2924.59, -976.67], [-2925.17, -975.85], [-2925.47, -974.31], [-2924.32, -972.84], [-2923.75, -972.08], [-2922.98, -972.64], [-2921.77, -972.41], [-2920.81, -972.79], [-2919.04, -971.87], [-2918.53, -970.2], [-2916.5, -969.52], [-2914.67, -969.8], [-2913.77, -971.09], [-2912.73, -972.24], [-2910.65, -972.05], [-2910.19, -970.49], [-2908.11, -970.49], [-2907.02, -971.18], [-2904.71, -971.5], [-2904.09, -975.49], [-2903.1, -976.19], [-2904.28, -977.53], [-2901.4, -979.68], [-2898.22, -978.27], [-2894.17, -979.02], [-2891.87, -978.42], [-2891.81, -976.82], [-2890.94, -976.54], [-2886.73, -977.2], [-2886.47, -982.97], [-2885.69, -983.65], [-2883.32, -983.46], [-2880.62, -985.13], [-2877.48, -983.58], [-2875.61, -980.38], [-2876.13, -979.11], [-2876.83, -977.87], [-2875.57, -976.69], [-2875.72, -975.41], [-2873.66, -974.0], [-2874.53, -971.09], [-2875.02, -967.55], [-2873.53, -967.94], [-2872.52, -965.65], [-2870.79, -966.48], [-2868.31, -966.16], [-2866.85, -964.14], [-2864.27, -965.73], [-2865.28, -968.1], [-2864.88, -969.88], [-2862.11, -970.61], [-2859.3, -968.38], [-2857.1, -969.23], [-2857.12, -972.24], [-2855.41, -975.03], [-2854.13, -974.97], [-2854.02, -977.14], [-2851.77, -977.99], [-2849.76, -978.53], [-2846.05, -977.74], [-2845.45, -975.56], [-2846.4, -974.09], [-2848.23, -971.47], [-2846.84, -971.23], [-2844.9, -975.08], [-2842.11, -975.61], [-2843.31, -978.28], [-2845.54, -980.04], [-2843.91, -984.64], [-2848.13, -986.82], [-2848.44, -984.58], [-2848.14, -982.48], [-2851.01, -982.58], [-2853.03, -983.21], [-2855.25, -985.8], [-2854.67, -988.94], [-2851.6, -992.19], [-2848.49, -991.07], [-2845.04, -993.61], [-2841.64, -991.25], [-2841.92, -988.36], [-2841.0, -987.87], [-2839.76, -990.72], [-2838.05, -985.38], [-2836.72, -985.23], [-2836.32, -981.37], [-2838.58, -978.77], [-2837.73, -973.37], [-2835.8, -966.7], [-2837.84, -961.53], [-2837.48, -959.26], [-2838.95, -957.11], [-2842.64, -956.62], [-2842.63, -953.21], [-2837.38, -950.75], [-2834.17, -952.78], [-2830.99, -951.69], [-2828.13, -950.32], [-2826.51, -948.84], [-2824.79, -948.85], [-2822.84, -947.46], [-2820.8, -947.56], [-2817.64, -947.27], [-2816.68, -949.44], [-2815.18, -949.71], [-2808.11, -946.86], [-2795.02, -946.09], [-2795.15, -947.73], [-2795.01, -950.1], [-2794.09, -952.04], [-2791.23, -951.59], [-2787.71, -939.03], [-2784.6, -933.35], [-2780.45, -933.69], [-2776.87, -938.69], [-2773.25, -938.43], [-2772.18, -940.53], [-2769.55, -939.69], [-2767.59, -938.52], [-2761.5, -934.61], [-2759.81, -933.11], [-2757.7, -933.52], [-2754.69, -936.21], [-2750.6, -938.24], [-2748.73, -939.4], [-2744.83, -939.31], [-2739.35, -935.87], [-2738.29, -935.8], [-2737.18, -936.88], [-2736.78, -936.13], [-2735.16, -935.27], [-2733.75, -936.42], [-2732.84, -937.56], [-2731.26, -936.68], [-2729.42, -937.11], [-2729.13, -938.48], [-2727.28, -937.46], [-2725.42, -938.13], [-2725.62, -934.88], [-2727.97, -931.32], [-2723.37, -928.54], [-2723.06, -925.09], [-2724.81, -920.51], [-2722.4, -918.04], [-2723.43, -911.63], [-2717.79, -910.2], [-2712.74, -909.69], [-2708.78, -915.61], [-2707.24, -923.15], [-2706.66, -925.25], [-2706.5, -926.28], [-2705.6, -927.65], [-2704.69, -928.37], [-2702.01, -929.97], [-2698.99, -929.44], [-2696.8, -928.87], [-2694.81, -925.87], [-2695.71, -923.52], [-2695.26, -922.29], [-2698.44, -917.53], [-2698.49, -911.32], [-2703.96, -907.77], [-2704.95, -907.02], [-2702.75, -904.19], [-2699.92, -900.96], [-2699.96, -898.75], [-2698.84, -896.81], [-2696.83, -897.85], [-2695.82, -896.98], [-2694.04, -898.56], [-2691.45, -896.07], [-2690.86, -894.62], [-2683.1, -892.59], [-2677.95, -893.27], [-2674.87, -892.41], [-2674.31, -894.2], [-2673.23, -894.7], [-2671.24, -893.73], [-2668.66, -896.59], [-2667.85, -896.13], [-2665.65, -893.79], [-2665.14, -895.58], [-2670.05, -901.3], [-2676.87, -908.28], [-2682.46, -916.0], [-2680.13, -918.36], [-2678.0, -919.65], [-2675.63, -919.82], [-2674.66, -922.97], [-2673.08, -924.52], [-2672.42, -924.82], [-2671.9, -926.36], [-2670.96, -926.03], [-2669.28, -926.86], [-2668.29, -926.48], [-2668.16, -925.35], [-2668.47, -924.61], [-2667.75, -923.91], [-2664.9, -923.81], [-2663.81, -916.42], [-2658.65, -915.35], [-2660.33, -912.6], [-2656.44, -912.47], [-2655.94, -908.88], [-2658.05, -907.1], [-2656.99, -902.76], [-2653.96, -900.13], [-2652.56, -905.83], [-2646.89, -903.94], [-2646.1, -900.55], [-2639.92, -895.43], [-2641.33, -893.62], [-2648.17, -891.97], [-2652.31, -893.78], [-2655.59, -891.33], [-2653.76, -887.37], [-2654.36, -881.78], [-2652.74, -878.71], [-2631.3, -862.3], [-2622.76, -858.3], [-2621.91, -855.27], [-2617.78, -852.23], [-2617.15, -849.32], [-2611.09, -851.45], [-2607.58, -852.49], [-2603.55, -851.07], [-2603.14, -848.3], [-2599.25, -846.23]], "holes": []}}, {"shape": {"outer": [[56.21, -104.97], [55.53, -99.95], [58.23, -97.41], [59.33, -98.57], [58.7, -99.15], [60.43, -100.98], [56.21, -104.97]], "holes": []}}, {"shape": {"outer": [[-1663.54, -203.74], [-1664.41, -209.5], [-1665.65, -210.86], [-1666.33, -213.0], [-1666.3, -214.81], [-1665.78, -215.96], [-1664.75, -217.43], [-1663.48, -218.26], [-1662.95, -218.5], [-1663.07, -220.52], [-1663.09, -220.82], [-1662.15, -220.82], [-1661.95, -216.09], [-1662.87, -216.05], [-1663.51, -215.61], [-1664.01, -214.99], [-1664.34, -214.23], [-1664.34, -213.53], [-1664.09, -212.72], [-1663.6, -212.05], [-1662.77, -211.63], [-1657.52, -211.86], [-1657.18, -204.01], [-1663.54, -203.74]], "holes": []}}, {"shape": {"outer": [[-1663.07, -220.52], [-1695.74, -219.18], [-1695.73, -218.75], [-1695.5, -218.39], [-1695.1, -217.86], [-1694.44, -217.29], [-1694.31, -216.59], [-1694.39, -215.58], [-1694.68, -215.13], [-1695.46, -214.41], [-1695.98, -213.76], [-1696.57, -212.73], [-1696.7, -212.03], [-1696.79, -210.66], [-1696.8, -208.95], [-1696.53, -208.1], [-1696.18, -207.34], [-1695.33, -206.34], [-1694.41, -205.58], [-1693.36, -204.7], [-1692.29, -204.51], [-1675.81, -205.21], [-1675.73, -203.23], [-1663.54, -203.74], [-1664.41, -209.5], [-1665.65, -210.86], [-1666.33, -213.0], [-1666.3, -214.81], [-1665.78, -215.96], [-1664.75, -217.43], [-1663.48, -218.26], [-1662.95, -218.5], [-1663.07, -220.52]], "holes": []}}, {"shape": {"outer": [[-1612.95, -196.28], [-1613.06, -200.3], [-1613.36, -202.25], [-1613.63, -204.02], [-1613.88, -205.61], [-1614.12, -207.2], [-1615.63, -209.18], [-1617.26, -210.44], [-1620.02, -209.31], [-1622.66, -209.02], [-1623.92, -209.2], [-1626.26, -209.53], [-1628.42, -210.29], [-1629.92, -209.61], [-1630.63, -209.01], [-1632.49, -208.84], [-1634.28, -208.68], [-1635.68, -208.11], [-1636.09, -207.41], [-1638.48, -206.94], [-1641.0, -207.23], [-1643.5, -207.52], [-1645.07, -208.16], [-1646.35, -209.23], [-1647.38, -210.09], [-1648.89, -210.73], [-1650.45, -211.4], [-1650.92, -211.11], [-1650.62, -204.3], [-1631.78, -205.11], [-1631.88, -207.31], [-1615.31, -208.01], [-1614.94, -196.22], [-1612.95, -196.28]], "holes": []}}, {"shape": {"outer": [[-1612.95, -196.28], [-1606.35, -196.61], [-1607.5, -223.14], [-1647.29, -221.39], [-1647.08, -216.71], [-1645.64, -216.77], [-1645.07, -216.5], [-1644.57, -216.07], [-1644.26, -215.51], [-1644.28, -214.8], [-1644.28, -214.15], [-1644.3, -213.52], [-1644.62, -212.95], [-1645.08, -212.47], [-1645.69, -212.16], [-1650.96, -211.93], [-1650.92, -211.11], [-1650.45, -211.4], [-1648.89, -210.73], [-1647.38, -210.09], [-1646.35, -209.23], [-1645.07, -208.16], [-1643.5, -207.52], [-1641.0, -207.23], [-1638.48, -206.94], [-1636.09, -207.41], [-1635.68, -208.11], [-1634.28, -208.68], [-1632.49, -208.84], [-1630.63, -209.01], [-1629.92, -209.61], [-1628.42, -210.29], [-1626.26, -209.53], [-1623.92, -209.2], [-1622.66, -209.02], [-1620.02, -209.31], [-1617.26, -210.44], [-1615.63, -209.18], [-1614.12, -207.2], [-1613.88, -205.61], [-1613.63, -204.02], [-1613.36, -202.25], [-1613.06, -200.3], [-1612.95, -196.28]], "holes": []}}, {"shape": {"outer": [[-2415.64, -791.24], [-2382.33, -765.93], [-2381.55, -767.0], [-2373.43, -777.08], [-2371.67, -779.05], [-2413.81, -791.66], [-2415.64, -791.24]], "holes": []}}, {"shape": {"outer": [[603.82, -22.64], [605.61, -24.88], [617.72, -30.37], [621.78, -27.72], [617.47, -10.07], [616.88, -8.56], [614.91, -7.14], [612.61, -6.51], [611.11, -5.38], [610.25, -4.12], [608.15, -3.36], [607.1, -5.75], [606.18, -8.79], [606.02, -13.47], [606.35, -17.48], [605.45, -20.39], [603.82, -22.64]], "holes": []}}, {"shape": {"outer": [[596.82, -19.55], [599.84, -20.93], [600.99, -19.77], [601.63, -18.2], [602.11, -16.88], [602.03, -12.4], [602.07, -8.6], [600.21, -7.78], [596.82, -19.55]], "holes": []}}, {"shape": {"outer": [[602.22, -1.43], [603.16, 0.76], [605.4, 3.26], [607.47, 5.18], [609.67, 6.96], [613.52, 9.02], [617.13, 10.37], [617.43, 9.19], [613.13, 6.97], [610.32, 4.65], [607.75, 2.03], [606.09, 0.02], [604.88, -2.38], [602.22, -1.43]], "holes": []}}, {"shape": {"outer": [[617.13, 10.37], [622.4, 11.71], [622.69, 10.49], [621.37, 10.34], [620.03, 10.18], [618.65, 9.72], [617.43, 9.19], [617.13, 10.37]], "holes": []}}, {"shape": {"outer": [[622.4, 11.71], [631.99, 14.38], [632.91, 11.36], [630.25, 11.0], [627.7, 10.64], [625.26, 10.28], [623.47, 10.42], [622.69, 10.49], [622.4, 11.71]], "holes": []}}, {"shape": {"outer": [[641.21, 13.57], [640.45, 16.63], [636.88, 15.72], [637.68, 12.62], [641.21, 13.57]], "holes": []}}, {"shape": {"outer": [[640.45, 16.63], [651.55, 19.45], [667.98, 23.67], [676.11, 25.65], [682.06, 27.55], [682.8, 25.32], [641.21, 13.57], [640.45, 16.63]], "holes": []}}, {"shape": {"outer": [[682.06, 27.55], [689.87, 29.67], [690.65, 27.2], [682.8, 25.32], [682.06, 27.55]], "holes": []}}, {"shape": {"outer": [[689.87, 29.67], [695.93, 31.92], [700.75, 33.93], [703.35, 31.96], [703.36, 31.55], [699.69, 30.17], [694.56, 28.43], [690.65, 27.2], [689.87, 29.67]], "holes": []}}, {"shape": {"outer": [[810.38, 112.89], [802.92, 106.33], [804.75, 104.23], [812.26, 110.77], [810.38, 112.89]], "holes": []}}, {"shape": {"outer": [[-2543.69, -888.0], [-2544.86, -886.67], [-2527.68, -871.89], [-2526.52, -873.23], [-2543.69, -888.0]], "holes": []}}, {"shape": {"outer": [[-2538.96, -893.31], [-2538.2, -894.44], [-2520.7, -879.5], [-2522.17, -878.86], [-2538.96, -893.31]], "holes": []}}, {"shape": {"outer": [[-2542.95, -878.8], [-2544.26, -877.3], [-2540.04, -873.61], [-2538.72, -875.11], [-2542.95, -878.8]], "holes": []}}, {"shape": {"outer": [[-2538.72, -875.11], [-2540.04, -873.61], [-2535.85, -869.91], [-2534.52, -871.4], [-2538.72, -875.11]], "holes": []}}, {"shape": {"outer": [[-2508.58, -850.35], [-2509.74, -848.71], [-2505.16, -845.49], [-2503.99, -847.14], [-2508.58, -850.35]], "holes": []}}, {"shape": {"outer": [[-2503.99, -847.14], [-2505.16, -845.49], [-2500.65, -842.39], [-2499.5, -844.07], [-2503.99, -847.14]], "holes": []}}, {"shape": {"outer": [[-2497.25, -842.31], [-2498.56, -840.8], [-2494.33, -837.12], [-2493.01, -838.63], [-2497.25, -842.31]], "holes": []}}, {"shape": {"outer": [[-2535.95, -890.05], [-2537.28, -888.55], [-2533.06, -884.86], [-2531.73, -886.36], [-2535.95, -890.05]], "holes": []}}, {"shape": {"outer": [[-2531.73, -886.36], [-2533.06, -884.86], [-2528.87, -881.16], [-2527.53, -882.65], [-2531.73, -886.36]], "holes": []}}, {"shape": {"outer": [[-2503.19, -862.19], [-2504.5, -860.66], [-2500.22, -857.03], [-2498.92, -858.54], [-2503.19, -862.19]], "holes": []}}, {"shape": {"outer": [[-2498.92, -858.54], [-2500.22, -857.03], [-2495.98, -853.38], [-2494.67, -854.89], [-2498.92, -858.54]], "holes": []}}, {"shape": {"outer": [[-2494.67, -854.89], [-2495.98, -853.38], [-2491.76, -849.75], [-2490.45, -851.26], [-2494.67, -854.89]], "holes": []}}, {"shape": {"outer": [[-2455.22, -800.28], [-2459.45, -803.82], [-2459.54, -804.15], [-2456.97, -804.46], [-2455.42, -803.12], [-2454.67, -802.36], [-2454.28, -801.46], [-2454.57, -800.94], [-2455.22, -800.28]], "holes": []}}, {"shape": {"outer": [[-2463.76, -803.71], [-2462.57, -803.58], [-2460.66, -802.62], [-2459.34, -801.84], [-2458.5, -800.99], [-2458.32, -800.5], [-2461.89, -801.38], [-2478.21, -806.25], [-2480.96, -807.46], [-2483.08, -808.89], [-2483.7, -810.38], [-2483.45, -811.82], [-2482.41, -812.56], [-2479.69, -812.79], [-2478.72, -811.5], [-2475.9, -808.69], [-2472.22, -805.93], [-2469.09, -804.48], [-2466.13, -803.88], [-2463.76, -803.71]], "holes": []}}, {"shape": {"outer": [[-2440.79, -808.34], [-2415.42, -786.9], [-2414.13, -788.25], [-2438.23, -808.37], [-2439.04, -808.79], [-2440.08, -808.86], [-2440.79, -808.34]], "holes": []}}, {"shape": {"outer": [[-2413.72, -815.58], [-2431.73, -814.92], [-2436.81, -814.45], [-2439.81, -814.04], [-2439.97, -812.98], [-2433.41, -810.39], [-2414.77, -805.26], [-2414.02, -812.72], [-2413.72, -815.58]], "holes": []}}, {"shape": {"outer": [[-2414.02, -812.72], [-2402.57, -812.14], [-2395.47, -810.91], [-2391.95, -810.5], [-2390.05, -815.97], [-2401.18, -815.69], [-2413.72, -815.58], [-2414.02, -812.72]], "holes": []}}, {"shape": {"outer": [[-2313.91, -810.75], [-2311.8, -810.83], [-2311.83, -811.41], [-2311.85, -813.52], [-2303.02, -813.87], [-2302.57, -814.05], [-2302.15, -814.44], [-2302.03, -814.87], [-2302.3, -820.37], [-2320.96, -819.46], [-2320.69, -814.12], [-2320.51, -813.92], [-2320.28, -813.85], [-2314.05, -814.11], [-2313.91, -810.75]], "holes": []}}, {"shape": {"outer": [[-2293.35, -820.52], [-2292.94, -811.12], [-2276.78, -811.8], [-2276.94, -815.41], [-2274.17, -815.52], [-2274.42, -821.33], [-2293.35, -820.52]], "holes": []}}, {"shape": {"outer": [[-2211.99, -818.77], [-2212.18, -823.67], [-2169.72, -825.22], [-2168.54, -792.57], [-2170.69, -792.5], [-2172.35, -792.95], [-2173.19, -794.22], [-2173.44, -798.58], [-2173.74, -805.85], [-2172.39, -805.9], [-2172.57, -810.14], [-2173.54, -810.1], [-2173.86, -817.64], [-2177.14, -817.5], [-2177.27, -820.61], [-2192.63, -819.98], [-2192.6, -818.99], [-2199.05, -818.75], [-2198.91, -815.32], [-2209.17, -814.88], [-2209.33, -818.88], [-2211.99, -818.77]], "holes": []}}, {"shape": {"outer": [[-2414.77, -805.26], [-2411.26, -804.26], [-2395.02, -799.58], [-2182.75, -734.77], [-2174.45, -734.99], [-2167.0, -737.23], [-2167.99, -756.34], [-2188.82, -754.79], [-2200.56, -754.8], [-2201.71, -759.95], [-2210.51, -759.68], [-2210.59, -762.13], [-2222.03, -761.67], [-2227.44, -764.88], [-2232.17, -764.22], [-2237.68, -766.34], [-2239.94, -765.58], [-2241.09, -767.38], [-2244.5, -767.98], [-2244.49, -770.79], [-2240.99, -769.88], [-2239.25, -772.12], [-2239.32, -774.43], [-2273.44, -772.76], [-2326.71, -790.71], [-2327.51, -796.3], [-2350.14, -795.37], [-2391.95, -810.5], [-2395.47, -810.91], [-2402.57, -812.14], [-2414.02, -812.72], [-2414.77, -805.26]], "holes": []}}, {"shape": {"outer": [[749.55, 100.74], [750.89, 99.28], [759.18, 106.88], [760.02, 107.93], [758.72, 109.3], [749.55, 100.74]], "holes": []}}, {"shape": {"outer": [[712.73, 166.17], [711.37, 165.09], [718.78, 157.59], [731.93, 143.14], [747.59, 125.69], [758.86, 112.93], [760.14, 113.94], [759.29, 115.04], [736.05, 140.52], [717.14, 161.37], [712.73, 166.17]], "holes": []}}, {"shape": {"outer": [[737.45, 132.5], [738.22, 133.15], [711.14, 163.19], [706.72, 159.0], [706.52, 158.25], [707.05, 157.7], [707.9, 158.09], [711.32, 161.38], [737.45, 132.5]], "holes": []}}, {"shape": {"outer": [[-1765.27, -454.03], [-1765.02, -447.91], [-1805.76, -445.97], [-1802.12, -446.76], [-1788.28, -448.81], [-1781.33, -449.91], [-1775.44, -450.98], [-1765.27, -454.03]], "holes": []}}, {"shape": {"outer": [[-1763.09, -439.98], [-1764.69, -439.91], [-1765.02, -447.91], [-1765.27, -454.03], [-1763.66, -454.1], [-1763.09, -439.98]], "holes": []}}, {"shape": {"outer": [[-1759.6, -423.03], [-1760.36, -438.82], [-1758.91, -438.9], [-1758.16, -423.09], [-1759.6, -423.03]], "holes": []}}, {"shape": {"outer": [[550.66, 3.95], [550.89, 9.55], [555.16, 10.35], [552.36, 4.25], [550.66, 3.95]], "holes": []}}, {"shape": {"outer": [[512.7, -20.91], [515.68, -19.45], [540.77, -12.91], [540.93, -13.8], [540.16, -14.67], [538.67, -15.49], [513.56, -22.22], [512.7, -20.91]], "holes": []}}, {"shape": {"outer": [[518.67, -28.25], [514.97, -29.34], [509.58, -31.6], [507.08, -33.26], [505.24, -35.72], [505.96, -37.44], [508.57, -37.87], [511.77, -37.52], [515.61, -34.11], [518.88, -30.23], [519.34, -29.02], [518.67, -28.25]], "holes": []}}, {"shape": {"outer": [[499.99, -47.06], [502.44, -48.73], [503.85, -49.46], [505.38, -49.17], [506.12, -48.59], [509.46, -50.61], [509.06, -51.61], [509.46, -52.21], [516.46, -56.1], [517.97, -55.79], [532.83, -28.79], [534.6, -26.78], [534.57, -23.05], [533.82, -22.38], [526.43, -24.43], [525.54, -26.14], [523.9, -30.78], [521.5, -35.67], [519.72, -40.38], [517.49, -43.81], [515.34, -45.69], [509.84, -45.36], [507.21, -43.62], [502.45, -44.23], [498.48, -44.91], [495.03, -47.57], [489.92, -55.51], [486.53, -58.6], [487.62, -60.52], [488.58, -61.31], [489.46, -61.67], [490.47, -61.53], [499.99, -47.06]], "holes": []}}, {"shape": {"outer": [[502.45, -44.23], [498.48, -44.91], [495.03, -47.57], [489.92, -55.51], [486.53, -58.6], [486.02, -57.57], [485.06, -55.19], [484.35, -51.4], [495.47, -40.61], [498.18, -41.47], [501.25, -42.06], [504.48, -42.28], [508.43, -41.69], [514.12, -40.08], [518.11, -36.95], [520.75, -33.59], [523.44, -29.81], [525.54, -26.14], [523.9, -30.78], [521.5, -35.67], [519.72, -40.38], [517.49, -43.81], [515.34, -45.69], [509.84, -45.36], [507.21, -43.62], [502.45, -44.23]], "holes": []}}, {"shape": {"outer": [[416.22, 482.33], [429.29, 468.3], [405.02, 445.96], [402.06, 443.24], [399.97, 445.5], [388.93, 457.42], [416.22, 482.33]], "holes": []}}, {"shape": {"outer": [[405.82, 443.14], [403.99, 441.74], [437.59, 404.45], [467.89, 431.61], [432.92, 467.99], [405.82, 443.14]], "holes": []}}, {"shape": {"outer": [[694.05, 481.18], [692.87, 480.4], [689.33, 477.2], [702.35, 462.76], [683.41, 445.79], [687.31, 441.53], [710.78, 462.64], [694.05, 481.18]], "holes": []}}, {"shape": {"outer": [[403.54, 234.41], [415.21, 221.47], [441.91, 245.37], [438.34, 249.33], [441.2, 251.9], [433.1, 260.88], [403.54, 234.41]], "holes": []}}, {"shape": {"outer": [[444.29, 246.51], [454.03, 235.35], [449.73, 231.63], [453.11, 227.76], [447.99, 223.32], [446.5, 225.04], [437.78, 217.48], [434.41, 221.35], [429.66, 217.21], [426.05, 221.35], [431.06, 225.69], [426.42, 231.0], [444.29, 246.51]], "holes": []}}, {"shape": {"outer": [[495.05, 396.18], [482.21, 384.64], [510.04, 353.9], [522.88, 365.45], [495.05, 396.18]], "holes": []}}, {"shape": {"outer": [[473.83, 332.65], [479.84, 326.16], [494.97, 340.04], [488.96, 346.54], [473.83, 332.65]], "holes": []}}, {"shape": {"outer": [[1181.31, 695.32], [1183.05, 695.28], [1184.86, 694.58], [1186.91, 693.37], [1188.29, 691.56], [1188.0, 688.96], [1187.46, 686.8], [1186.28, 685.19], [1184.3, 684.28], [1181.81, 684.65], [1179.75, 685.57], [1178.64, 686.17], [1177.96, 688.05], [1177.63, 690.67], [1178.09, 692.67], [1179.27, 694.56], [1181.31, 695.32]], "holes": []}}, {"shape": {"outer": [[1141.3, 618.21], [1177.37, 650.82], [1181.0, 654.54], [1185.14, 660.29], [1188.13, 666.12], [1189.92, 671.48], [1190.76, 674.75], [1190.21, 676.3], [1187.32, 675.93], [1183.31, 675.93], [1178.27, 675.84], [1172.22, 675.99], [1164.57, 675.66], [1157.3, 674.22], [1150.89, 671.89], [1144.95, 668.97], [1139.72, 664.78], [1135.59, 660.56], [1132.83, 656.44], [1130.67, 651.69], [1130.11, 647.93], [1130.73, 644.52], [1131.92, 642.44], [1133.61, 641.69], [1135.16, 641.21], [1135.93, 641.39], [1136.3, 642.26], [1136.63, 644.09], [1136.51, 644.95], [1135.93, 645.39], [1135.27, 646.37], [1134.99, 648.45], [1135.79, 649.73], [1137.64, 650.56], [1139.02, 651.16], [1139.87, 651.0], [1140.11, 650.6], [1140.11, 649.66], [1139.38, 647.78], [1138.52, 644.7], [1138.44, 641.89], [1137.75, 640.33], [1135.92, 639.16], [1133.49, 639.48], [1131.83, 640.24], [1130.36, 641.35], [1128.81, 644.17], [1128.38, 647.1], [1128.61, 650.04], [1129.28, 653.76], [1132.23, 659.38], [1136.35, 664.42], [1142.06, 669.25], [1147.27, 672.49], [1157.1, 675.98], [1164.74, 677.7], [1167.7, 677.89], [1170.67, 678.09], [1171.69, 678.69], [1172.28, 679.81], [1172.8, 682.08], [1172.83, 684.3], [1172.46, 686.34], [1171.67, 689.04], [1170.86, 692.46], [1170.89, 696.31], [1171.61, 700.86], [1173.83, 705.81], [1178.34, 710.91], [1183.69, 714.17], [1190.97, 715.91], [1195.74, 716.98], [1203.56, 720.91], [1206.45, 723.18], [1205.98, 723.8], [1207.41, 724.9], [1207.93, 724.38], [1210.3, 726.47], [1213.67, 730.47], [1216.3, 734.77], [1218.17, 739.23], [1219.68, 744.13], [1221.51, 750.41], [1217.65, 752.1], [1219.85, 757.11], [1223.53, 755.81], [1226.07, 760.52], [1230.66, 766.86], [1233.54, 770.05], [1232.83, 770.76], [1234.14, 772.08], [1234.79, 771.6], [1241.58, 778.18], [1241.07, 778.74], [1161.53, 706.49], [1168.75, 698.47], [1154.59, 684.53], [1139.19, 670.07], [1115.02, 647.33], [1141.3, 618.21]], "holes": []}}, {"shape": {"outer": [[1222.19, 746.09], [1222.43, 746.18], [1222.68, 746.13], [1224.39, 740.51], [1227.53, 734.78], [1229.14, 731.47], [1229.95, 729.24], [1230.88, 724.71], [1230.81, 721.42], [1230.72, 719.66], [1230.64, 718.63], [1230.44, 718.17], [1230.24, 717.85], [1229.9, 717.49], [1229.42, 717.37], [1228.03, 716.94], [1225.04, 716.52], [1221.46, 715.82], [1217.75, 714.75], [1215.67, 713.99], [1214.74, 713.81], [1213.75, 713.76], [1212.08, 713.96], [1207.95, 714.47], [1207.98, 715.33], [1204.76, 715.77], [1204.63, 714.93], [1199.7, 715.5], [1199.38, 715.82], [1199.18, 716.33], [1199.46, 716.83], [1200.54, 717.23], [1203.77, 719.01], [1208.23, 721.86], [1212.97, 726.68], [1216.78, 731.71], [1218.47, 734.96], [1220.52, 740.51], [1222.19, 746.09]], "holes": []}}, {"shape": {"outer": [[1247.42, 720.25], [1246.3, 723.0], [1254.38, 726.29], [1252.77, 728.02], [1249.91, 730.2], [1247.55, 731.49], [1244.0, 732.73], [1241.2, 733.09], [1239.22, 733.04], [1239.1, 732.03], [1237.12, 732.18], [1237.22, 733.13], [1235.67, 733.18], [1233.62, 733.53], [1231.68, 734.35], [1230.46, 734.83], [1230.17, 734.8], [1229.98, 734.65], [1230.04, 734.32], [1230.28, 733.81], [1231.04, 731.9], [1232.09, 728.83], [1232.7, 726.35], [1232.81, 723.66], [1232.77, 721.47], [1232.4, 718.79], [1232.63, 718.39], [1233.03, 718.05], [1233.68, 717.89], [1234.79, 717.83], [1238.35, 718.15], [1243.29, 719.0], [1247.42, 720.25]], "holes": []}}, {"shape": {"outer": [[1254.38, 726.29], [1255.5, 723.55], [1247.42, 720.25], [1246.3, 723.0], [1254.38, 726.29]], "holes": []}}, {"shape": {"outer": [[1255.08, 728.11], [1254.98, 728.32], [1255.15, 728.57], [1255.49, 728.53], [1256.67, 727.53], [1257.11, 727.37], [1259.03, 729.76], [1260.24, 732.13], [1260.87, 734.31], [1261.06, 735.61], [1261.14, 736.69], [1261.31, 736.91], [1261.61, 736.89], [1261.85, 736.65], [1262.06, 736.26], [1262.14, 735.71], [1262.14, 733.38], [1262.02, 730.99], [1261.27, 730.95], [1261.18, 729.3], [1261.69, 728.81], [1261.33, 727.16], [1260.49, 726.03], [1259.33, 725.32], [1258.24, 724.89], [1257.47, 724.84], [1257.08, 725.06], [1256.99, 725.35], [1256.44, 726.35], [1255.08, 728.11]], "holes": []}}, {"shape": {"outer": [[1265.41, 751.84], [1265.21, 751.99], [1264.07, 751.02], [1262.46, 749.39], [1261.97, 748.79], [1263.66, 747.35], [1262.2, 745.54], [1261.41, 744.11], [1261.1, 742.39], [1261.08, 740.4], [1261.19, 739.5], [1262.18, 739.57], [1263.44, 740.06], [1264.28, 741.37], [1264.74, 743.24], [1265.43, 746.4], [1264.62, 746.42], [1264.71, 748.34], [1265.64, 748.33], [1265.41, 751.84]], "holes": []}}, {"shape": {"outer": [[1269.15, 747.74], [1268.5, 747.77], [1268.05, 747.3], [1268.0, 746.25], [1267.75, 744.05], [1267.08, 741.82], [1268.0, 741.59], [1267.61, 739.95], [1266.5, 740.22], [1266.05, 739.21], [1265.44, 737.53], [1264.83, 735.92], [1264.49, 733.69], [1264.49, 732.56], [1265.35, 732.62], [1265.26, 730.78], [1264.58, 730.76], [1264.64, 730.39], [1265.12, 730.09], [1265.93, 730.0], [1266.63, 730.24], [1276.92, 739.3], [1269.15, 747.74]], "holes": []}}, {"shape": {"outer": [[1257.49, 760.79], [1256.77, 760.28], [1257.86, 759.12], [1258.6, 759.58], [1259.15, 758.89], [1259.18, 758.27], [1258.76, 757.95], [1256.63, 757.56], [1253.25, 756.26], [1251.42, 754.98], [1249.7, 753.47], [1248.28, 751.45], [1246.69, 748.22], [1245.74, 744.78], [1245.4, 741.83], [1244.92, 739.4], [1244.35, 737.93], [1243.5, 736.9], [1242.69, 735.97], [1240.73, 735.22], [1237.59, 735.09], [1234.98, 735.28], [1232.86, 735.87], [1230.06, 737.16], [1228.04, 739.02], [1226.69, 740.73], [1225.5, 742.85], [1224.57, 746.21], [1224.9, 750.38], [1225.9, 754.45], [1227.5, 757.64], [1230.35, 761.37], [1233.6, 765.38], [1237.52, 769.57], [1241.05, 772.93], [1244.02, 775.53], [1257.49, 760.79]], "holes": []}}, {"shape": {"outer": [[1251.42, 731.5], [1248.75, 733.02], [1246.39, 733.99], [1245.52, 734.76], [1245.33, 735.64], [1245.67, 736.14], [1246.25, 737.01], [1246.74, 739.28], [1247.11, 740.96], [1247.93, 740.69], [1248.65, 744.08], [1247.79, 744.28], [1248.34, 747.02], [1249.39, 749.59], [1250.32, 751.29], [1251.25, 752.47], [1252.06, 751.78], [1253.4, 753.18], [1252.97, 753.96], [1253.9, 754.4], [1256.4, 755.39], [1259.38, 756.05], [1261.52, 756.24], [1263.63, 753.9], [1260.04, 750.42], [1258.31, 751.91], [1257.15, 750.62], [1255.6, 748.18], [1254.49, 745.66], [1254.1, 743.58], [1253.9, 741.18], [1254.05, 738.95], [1254.04, 737.08], [1253.83, 735.17], [1253.06, 733.38], [1251.42, 731.5]], "holes": []}}, {"shape": {"outer": [[1295.92, 720.58], [1296.69, 722.15], [1295.07, 724.31], [1293.82, 723.04], [1295.92, 720.58]], "holes": []}}, {"shape": {"outer": [[1288.26, 732.1], [1286.65, 731.34], [1280.34, 737.81], [1282.9, 737.85], [1288.26, 732.1]], "holes": []}}, {"shape": {"outer": [[1242.86, 779.14], [1243.23, 781.65], [1239.88, 785.62], [1239.36, 785.73], [1237.89, 784.6], [1242.86, 779.14]], "holes": []}}, {"shape": {"outer": [[1254.92, 790.14], [1252.4, 789.92], [1248.63, 793.99], [1248.76, 794.84], [1249.97, 795.58], [1254.92, 790.14]], "holes": []}}, {"shape": {"outer": [[1297.21, 741.01], [1298.53, 742.06], [1292.45, 748.55], [1292.31, 745.94], [1297.21, 741.01]], "holes": []}}, {"shape": {"outer": [[-2821.47, -1085.14], [-2821.48, -1085.58], [-2821.49, -1086.83], [-2818.27, -1086.9], [-2818.28, -1090.12], [-2818.55, -1090.11], [-2818.57, -1090.67], [-2818.57, -1091.27], [-2818.55, -1091.93], [-2818.47, -1092.69], [-2818.35, -1093.44], [-2816.75, -1093.35], [-2816.94, -1092.78], [-2817.04, -1092.2], [-2817.1, -1091.54], [-2817.1, -1090.88], [-2817.06, -1090.26], [-2816.95, -1089.65], [-2817.17, -1089.65], [-2817.02, -1087.32], [-2816.71, -1087.33], [-2816.7, -1087.03], [-2816.65, -1086.72], [-2816.6, -1086.42], [-2816.49, -1086.12], [-2817.23, -1085.85], [-2817.24, -1085.27], [-2821.47, -1085.14]], "holes": []}}, {"shape": {"outer": [[-2814.32, -1106.19], [-2810.12, -1102.47], [-2810.6, -1102.06], [-2810.5, -1101.52], [-2810.88, -1101.38], [-2811.29, -1101.19], [-2811.68, -1100.91], [-2811.99, -1100.61], [-2812.23, -1100.25], [-2812.46, -1100.49], [-2814.33, -1098.66], [-2814.12, -1098.43], [-2814.6, -1097.99], [-2815.03, -1097.51], [-2815.39, -1097.08], [-2815.72, -1096.52], [-2815.99, -1096.01], [-2817.25, -1096.92], [-2816.91, -1097.62], [-2816.44, -1098.36], [-2815.85, -1099.07], [-2815.64, -1098.84], [-2812.94, -1101.86], [-2815.19, -1103.98], [-2814.57, -1104.58], [-2815.21, -1105.28], [-2814.32, -1106.19]], "holes": []}}, {"shape": {"outer": [[-2814.06, -1086.18], [-2811.55, -1087.35], [-2811.81, -1088.16], [-2811.99, -1089.0], [-2812.08, -1089.92], [-2812.04, -1090.99], [-2811.88, -1092.2], [-2811.56, -1093.3], [-2810.92, -1094.57], [-2810.13, -1095.51], [-2809.03, -1096.51], [-2807.9, -1097.23], [-2809.22, -1099.69], [-2810.06, -1099.32], [-2810.87, -1098.83], [-2811.7, -1098.21], [-2812.28, -1097.6], [-2812.83, -1096.89], [-2813.31, -1096.19], [-2813.84, -1095.3], [-2814.27, -1094.37], [-2814.6, -1093.4], [-2814.82, -1092.42], [-2814.99, -1091.32], [-2815.02, -1090.32], [-2814.98, -1089.24], [-2814.83, -1088.15], [-2814.52, -1087.07], [-2814.06, -1086.18]], "holes": []}}, {"shape": {"outer": [[-2803.07, -1078.65], [-2797.64, -1081.26], [-2794.27, -1082.55], [-2794.81, -1083.42], [-2795.43, -1084.37], [-2796.31, -1085.61], [-2797.07, -1086.49], [-2797.76, -1087.08], [-2797.88, -1086.61], [-2798.28, -1085.82], [-2798.76, -1085.22], [-2799.35, -1084.61], [-2800.01, -1084.12], [-2800.67, -1083.68], [-2801.29, -1083.34], [-2801.95, -1083.04], [-2802.55, -1082.84], [-2803.22, -1082.49], [-2803.48, -1081.97], [-2803.53, -1081.25], [-2803.49, -1080.24], [-2803.07, -1078.65]], "holes": []}}, {"shape": {"outer": [[-2820.0, -1080.74], [-2820.13, -1083.28], [-2811.3, -1083.36], [-2809.1, -1082.97], [-2807.59, -1082.43], [-2807.0, -1082.09], [-2806.44, -1081.53], [-2806.0, -1080.73], [-2805.68, -1079.86], [-2805.52, -1078.25], [-2806.22, -1078.26], [-2807.03, -1078.49], [-2807.89, -1078.8], [-2809.87, -1079.4], [-2812.2, -1079.94], [-2815.44, -1080.35], [-2820.0, -1080.74]], "holes": []}}, {"shape": {"outer": [[-2874.25, -1139.1], [-2872.97, -1138.11], [-2866.0, -1147.03], [-2867.28, -1148.02], [-2874.25, -1139.1]], "holes": []}}, {"shape": {"outer": [[-2872.95, -1082.09], [-2872.97, -1079.49], [-2886.32, -1079.18], [-2891.8, -1079.64], [-2894.6, -1080.27], [-2898.04, -1081.34], [-2900.9, -1082.35], [-2906.43, -1085.11], [-2908.71, -1086.63], [-2909.92, -1087.67], [-2910.35, -1088.32], [-2908.83, -1090.16], [-2906.98, -1088.6], [-2904.8, -1086.99], [-2901.76, -1085.46], [-2898.7, -1084.12], [-2894.95, -1082.91], [-2891.33, -1082.11], [-2886.64, -1081.74], [-2872.95, -1082.09]], "holes": []}}, {"shape": {"outer": [[-2911.57, -1095.84], [-2909.82, -1094.26], [-2908.64, -1094.91], [-2907.54, -1096.04], [-2906.61, -1097.05], [-2906.49, -1097.41], [-2906.33, -1098.41], [-2908.23, -1098.97], [-2909.11, -1099.01], [-2909.87, -1098.8], [-2910.58, -1098.38], [-2911.14, -1097.54], [-2911.57, -1095.84]], "holes": []}}, {"shape": {"outer": [[-2909.97, -1099.52], [-2903.95, -1098.84], [-2895.64, -1109.26], [-2897.07, -1115.92], [-2909.97, -1099.52]], "holes": []}}, {"shape": {"outer": [[-2876.42, -1141.72], [-2876.42, -1133.54], [-2882.8, -1125.68], [-2888.88, -1125.89], [-2876.42, -1141.72]], "holes": []}}, {"shape": {"outer": [[-2897.49, -1102.81], [-2906.09, -1092.35], [-2906.32, -1091.23], [-2905.75, -1089.78], [-2904.67, -1088.76], [-2902.93, -1087.42], [-2901.97, -1087.41], [-2900.86, -1088.23], [-2899.53, -1088.58], [-2898.14, -1088.57], [-2897.07, -1088.14], [-2895.64, -1089.8], [-2898.76, -1092.21], [-2897.32, -1094.03], [-2899.69, -1095.96], [-2895.49, -1101.2], [-2897.49, -1102.81]], "holes": []}}, {"shape": {"outer": [[-2888.17, -1083.9], [-2884.25, -1083.89], [-2886.8, -1085.79], [-2888.17, -1083.9]], "holes": []}}, {"shape": {"outer": [[-2883.64, -1084.66], [-2883.19, -1084.42], [-2882.45, -1084.39], [-2881.66, -1084.49], [-2881.03, -1084.78], [-2880.44, -1085.37], [-2880.23, -1086.02], [-2880.23, -1086.75], [-2880.36, -1087.45], [-2880.58, -1087.95], [-2880.83, -1088.22], [-2883.64, -1084.66]], "holes": []}}, {"shape": {"outer": [[-2878.41, -1084.05], [-2878.0, -1083.47], [-2872.78, -1083.69], [-2872.11, -1084.15], [-2872.05, -1085.84], [-2875.35, -1085.77], [-2876.47, -1086.59], [-2878.41, -1084.05]], "holes": []}}, {"shape": {"outer": [[-2859.97, -1086.07], [-2859.95, -1084.46], [-2856.65, -1084.49], [-2856.68, -1086.11], [-2859.97, -1086.07]], "holes": []}}, {"shape": {"outer": [[-2844.22, -1086.3], [-2844.17, -1084.39], [-2841.67, -1084.46], [-2841.73, -1086.37], [-2844.22, -1086.3]], "holes": []}}, {"shape": {"outer": [[-2834.77, -1086.46], [-2834.7, -1084.72], [-2832.69, -1084.74], [-2832.5, -1085.21], [-2832.55, -1086.49], [-2834.77, -1086.46]], "holes": []}}, {"shape": {"outer": [[-242.89, 491.59], [-247.41, 487.36], [-242.92, 487.5], [-240.88, 489.34], [-242.89, 491.59]], "holes": []}}, {"shape": {"outer": [[-255.76, 479.72], [-261.59, 473.94], [-260.41, 471.84], [-259.65, 471.5], [-254.38, 476.69], [-254.04, 477.3], [-254.15, 478.02], [-255.76, 479.72]], "holes": []}}, {"shape": {"outer": [[-263.84, 472.03], [-267.06, 469.1], [-265.86, 468.08], [-265.01, 467.99], [-263.59, 468.03], [-261.49, 469.82], [-263.84, 472.03]], "holes": []}}, {"shape": {"outer": [[-272.51, 463.9], [-271.67, 462.82], [-271.48, 462.1], [-271.61, 461.06], [-272.19, 460.09], [-283.74, 450.18], [-284.81, 452.94], [-272.51, 463.9]], "holes": []}}, {"shape": {"outer": [[-289.08, 445.03], [-287.92, 446.01], [-287.92, 447.31], [-289.15, 449.26], [-306.8, 433.88], [-304.61, 431.15], [-289.08, 445.03]], "holes": []}}, {"shape": {"outer": [[-1253.1, -961.59], [-1253.67, -996.91], [-1242.36, -997.11], [-1229.78, -997.3], [-1229.2, -961.99], [-1253.1, -961.59]], "holes": []}}, {"shape": {"outer": [[-925.78, -327.41], [-928.56, -327.95], [-928.62, -328.99], [-928.12, -330.66], [-926.97, -333.48], [-925.6, -335.94], [-924.64, -337.27], [-923.01, -337.32], [-922.74, -337.06], [-922.68, -336.68], [-925.78, -327.41]], "holes": []}}, {"shape": {"outer": [[-904.59, -363.07], [-904.61, -363.55], [-904.88, -363.92], [-905.59, -363.91], [-922.7, -344.93], [-921.92, -344.03], [-904.59, -363.07]], "holes": []}}, {"shape": {"outer": [[-897.98, -345.42], [-890.83, -353.33], [-890.5, -353.04], [-897.32, -345.49], [-897.67, -345.15], [-897.98, -345.42]], "holes": []}}, {"shape": {"outer": [[-875.25, -350.12], [-874.5, -350.74], [-883.86, -357.74], [-884.0, -357.58], [-875.25, -350.12]], "holes": []}}, {"shape": {"outer": [[-870.21, -347.16], [-860.0, -337.83], [-862.94, -334.56], [-873.13, -343.68], [-870.21, -347.16]], "holes": []}}, {"shape": {"outer": [[-910.51, -285.74], [-909.66, -285.79], [-909.07, -276.54], [-909.91, -276.48], [-910.51, -285.74]], "holes": []}}, {"shape": {"outer": [[-908.55, -273.1], [-908.02, -273.65], [-902.45, -268.3], [-902.98, -267.76], [-908.55, -273.1]], "holes": []}}, {"shape": {"outer": [[-900.67, -265.41], [-900.06, -266.03], [-895.52, -261.52], [-894.57, -260.62], [-895.14, -260.03], [-900.67, -265.41]], "holes": []}}, {"shape": {"outer": [[-895.52, -261.52], [-895.02, -262.03], [-900.46, -267.42], [-900.95, -266.93], [-900.06, -266.03], [-895.52, -261.52]], "holes": []}}, {"shape": {"outer": [[-887.09, -256.78], [-886.16, -255.97], [-888.08, -253.9], [-889.56, -255.36], [-888.3, -257.88], [-887.09, -256.78]], "holes": []}}, {"shape": {"outer": [[-872.25, -348.89], [-870.21, -347.16], [-873.13, -343.68], [-875.15, -345.48], [-872.25, -348.89]], "holes": []}}, {"shape": {"outer": [[-852.99, -226.84], [-853.4, -226.37], [-850.81, -224.13], [-849.94, -222.76], [-849.93, -221.31], [-846.18, -218.09], [-845.62, -218.74], [-846.23, -219.27], [-845.31, -220.33], [-852.99, -226.84]], "holes": []}}, {"shape": {"outer": [[-832.99, -205.16], [-832.42, -205.86], [-828.85, -203.0], [-829.43, -202.29], [-832.99, -205.16]], "holes": []}}, {"shape": {"outer": [[-838.7, -209.66], [-838.12, -210.37], [-834.55, -207.5], [-835.13, -206.79], [-838.7, -209.66]], "holes": []}}, {"shape": {"outer": [[-844.5, -214.52], [-843.93, -215.22], [-840.36, -212.36], [-840.93, -211.65], [-844.5, -214.52]], "holes": []}}, {"shape": {"outer": [[-949.0, -260.13], [-948.93, -258.43], [-939.93, -258.81], [-940.01, -260.52], [-949.0, -260.13]], "holes": []}}, {"shape": {"outer": [[-988.54, -253.6], [-982.9, -253.89], [-982.81, -251.66], [-986.13, -247.77], [-990.38, -251.49], [-988.54, -253.6]], "holes": []}}, {"shape": {"outer": [[-1088.87, -318.18], [-1085.51, -318.29], [-1085.32, -313.24], [-1088.66, -313.12], [-1088.87, -318.18]], "holes": []}}, {"shape": {"outer": [[-1092.46, -316.11], [-1092.33, -313.01], [-1096.01, -312.95], [-1096.7, -313.01], [-1097.52, -313.26], [-1098.16, -313.7], [-1098.48, -319.62], [-1097.97, -320.51], [-1097.26, -321.2], [-1085.61, -321.74], [-1085.53, -320.01], [-1088.87, -319.85], [-1088.88, -320.1], [-1094.72, -319.84], [-1094.55, -316.01], [-1092.46, -316.11]], "holes": []}}, {"shape": {"outer": [[-1119.02, -320.62], [-1111.1, -320.99], [-1110.54, -320.84], [-1110.32, -320.47], [-1110.11, -319.06], [-1110.01, -317.6], [-1109.92, -316.46], [-1109.75, -315.46], [-1109.52, -314.56], [-1109.22, -313.58], [-1118.65, -313.32], [-1119.02, -320.62]], "holes": []}}, {"shape": {"outer": [[252.92, -250.15], [252.12, -249.29], [302.95, -202.88], [303.76, -203.76], [252.92, -250.15]], "holes": []}}, {"shape": {"outer": [[63.22, -352.93], [59.47, -356.38], [65.25, -362.64], [60.59, -366.92], [72.38, -380.06], [62.87, -388.64], [64.13, -390.02], [62.54, -391.46], [67.71, -394.51], [69.51, -392.84], [68.79, -392.06], [67.73, -390.97], [80.93, -378.86], [83.34, -376.64], [82.97, -376.24], [82.15, -375.45], [83.77, -374.0], [65.49, -354.29], [64.95, -354.8], [63.22, -352.93]], "holes": []}}, {"shape": {"outer": [[82.97, -376.24], [82.15, -375.45], [83.77, -374.0], [84.52, -374.81], [82.97, -376.24]], "holes": []}}, {"shape": {"outer": [[80.93, -378.86], [81.93, -379.93], [68.79, -392.06], [67.73, -390.97], [80.93, -378.86]], "holes": []}}, {"shape": {"outer": [[53.42, -345.44], [54.92, -347.11], [56.52, -345.7], [55.02, -344.02], [53.42, -345.44]], "holes": []}}, {"shape": {"outer": [[9.64, -337.73], [13.44, -341.93], [26.49, -330.16], [29.39, -333.35], [33.62, -329.55], [38.74, -335.22], [35.22, -338.37], [36.57, -339.85], [41.04, -335.84], [44.98, -340.2], [46.58, -338.77], [41.35, -332.97], [39.21, -330.6], [38.46, -328.71], [38.72, -327.03], [39.79, -325.85], [38.36, -324.56], [34.14, -320.78], [32.58, -320.05], [31.07, -319.79], [29.47, -319.94], [28.41, -320.89], [27.24, -321.95], [9.64, -337.73]], "holes": []}}, {"shape": {"outer": [[-70.53, -378.61], [-66.8, -377.26], [-66.28, -378.7], [-70.01, -380.05], [-70.53, -378.61]], "holes": []}}, {"shape": {"outer": [[-117.4, -317.78], [-117.19, -314.44], [-114.84, -312.23], [-108.69, -318.15], [-111.49, -318.04], [-117.4, -317.78]], "holes": []}}, {"shape": {"outer": [[-111.49, -318.04], [-108.69, -318.15], [-108.76, -319.6], [-111.55, -319.48], [-111.49, -318.04]], "holes": []}}, {"shape": {"outer": [[824.12, 128.86], [827.25, 132.32], [828.31, 132.07], [828.57, 131.89], [828.7, 131.62], [828.74, 131.34], [828.7, 130.94], [828.17, 129.69], [824.12, 128.86]], "holes": []}}, {"shape": {"outer": [[793.82, 104.72], [794.05, 105.5], [794.69, 106.38], [795.78, 107.71], [821.91, 130.79], [822.97, 131.49], [824.68, 132.14], [823.8, 131.0], [811.28, 119.57], [796.1, 106.39], [793.82, 104.72]], "holes": []}}, {"shape": {"outer": [[800.48, 124.67], [801.42, 123.49], [787.61, 112.51], [786.34, 114.21], [787.13, 115.18], [788.18, 116.16], [790.04, 117.76], [800.48, 124.67]], "holes": []}}, {"shape": {"outer": [[-1183.48, -524.12], [-1177.98, -524.41], [-1178.11, -526.65], [-1183.6, -526.36], [-1183.48, -524.12]], "holes": []}}, {"shape": {"outer": [[-1177.98, -524.41], [-1170.65, -524.78], [-1170.77, -527.04], [-1178.11, -526.65], [-1177.98, -524.41]], "holes": []}}, {"shape": {"outer": [[-1170.65, -524.78], [-1163.42, -525.16], [-1163.54, -527.41], [-1170.77, -527.04], [-1170.65, -524.78]], "holes": []}}, {"shape": {"outer": [[-1163.42, -525.16], [-1156.08, -525.53], [-1156.2, -527.8], [-1163.54, -527.41], [-1163.42, -525.16]], "holes": []}}, {"shape": {"outer": [[-1156.08, -525.53], [-1148.81, -525.91], [-1148.94, -528.18], [-1156.2, -527.8], [-1156.08, -525.53]], "holes": []}}, {"shape": {"outer": [[-1148.81, -525.91], [-1141.55, -526.28], [-1141.67, -528.56], [-1148.94, -528.18], [-1148.81, -525.91]], "holes": []}}, {"shape": {"outer": [[-1141.55, -526.28], [-1134.27, -526.66], [-1134.39, -528.95], [-1141.67, -528.56], [-1141.55, -526.28]], "holes": []}}, {"shape": {"outer": [[-1134.27, -526.66], [-1127.02, -527.02], [-1127.13, -529.32], [-1134.39, -528.95], [-1134.27, -526.66]], "holes": []}}, {"shape": {"outer": [[-1127.02, -527.02], [-1121.4, -527.29], [-1121.52, -529.6], [-1127.13, -529.32], [-1127.02, -527.02]], "holes": []}}, {"shape": {"outer": [[255.9, 213.45], [255.3, 214.11], [254.74, 214.72], [251.48, 212.43], [248.36, 209.82], [241.97, 204.29], [238.67, 201.27], [235.21, 197.91], [232.19, 194.77], [231.46, 193.99], [230.96, 193.06], [229.77, 190.43], [228.28, 187.57], [227.45, 186.68], [222.25, 182.13], [212.27, 173.4], [213.3, 172.28], [214.36, 171.11], [224.28, 180.19], [233.73, 188.68], [236.11, 191.22], [237.35, 193.19], [239.12, 196.63], [240.46, 198.76], [241.55, 200.03], [243.99, 202.26], [246.37, 204.51], [251.23, 208.85], [253.79, 211.17], [255.9, 213.45]], "holes": []}}, {"shape": {"outer": [[477.51, 417.1], [478.69, 415.82], [452.32, 391.99], [448.23, 387.97], [446.18, 385.9], [444.26, 383.7], [441.76, 380.99], [435.47, 373.25], [433.24, 370.57], [430.82, 367.93], [428.2, 365.5], [420.47, 358.17], [414.71, 352.92], [407.83, 346.51], [395.92, 335.1], [390.01, 329.61], [380.9, 321.22], [374.07, 315.02], [364.16, 305.6], [361.05, 302.31], [359.38, 300.76], [358.15, 302.2], [359.31, 303.23], [363.08, 306.72], [372.9, 316.0], [380.0, 322.56], [388.93, 330.67], [394.86, 336.16], [406.95, 347.66], [413.08, 353.25], [419.56, 359.38], [426.93, 366.44], [429.74, 368.99], [431.92, 371.45], [434.63, 374.67], [440.82, 381.89], [443.08, 384.84], [444.66, 386.87], [447.45, 389.63], [451.04, 393.01], [477.51, 417.1]], "holes": []}}, {"shape": {"outer": [[-38.95, -382.02], [7.86, -339.47], [11.62, -343.58], [-27.95, -379.29], [-29.6, -377.47], [-32.11, -379.74], [-33.62, -378.07], [-38.52, -382.49], [-38.95, -382.02]], "holes": []}}, {"shape": {"outer": [[-1850.42, -204.65], [-1850.46, -206.4], [-1847.47, -206.47], [-1847.42, -204.73], [-1850.42, -204.65]], "holes": []}}, {"shape": {"outer": [[-1850.62, -209.79], [-1850.66, -211.54], [-1847.66, -211.61], [-1847.61, -209.87], [-1850.62, -209.79]], "holes": []}}, {"shape": {"outer": [[-2122.3, -318.0], [-2119.8, -315.8], [-2117.84, -314.56], [-2029.11, -358.79], [-2032.58, -365.7], [-2118.39, -323.33], [-2122.3, -318.0]], "holes": []}}, {"shape": {"outer": [[-2027.93, -368.01], [-2027.29, -366.71], [-2025.72, -367.48], [-2025.02, -366.06], [-2026.64, -365.26], [-2024.65, -361.22], [-2023.95, -360.4], [-2017.92, -363.32], [-2017.22, -364.12], [-2017.27, -371.55], [-2020.73, -371.53], [-2027.93, -368.01]], "holes": []}}, {"shape": {"outer": [[-2016.7, -354.55], [-2016.65, -350.63], [-2018.79, -349.81], [-2021.59, -354.89], [-2021.4, -355.74], [-2019.66, -356.9], [-2019.11, -356.92], [-2018.6, -354.57], [-2016.7, -354.55]], "holes": []}}, {"shape": {"outer": [[24.56, -425.7], [28.51, -429.98], [50.58, -409.76], [49.86, -408.97], [48.82, -407.82], [52.11, -404.79], [52.81, -404.16], [50.91, -402.1], [24.56, -425.7]], "holes": []}}, {"shape": {"outer": [[49.86, -408.97], [53.16, -405.94], [52.11, -404.79], [48.82, -407.82], [49.86, -408.97]], "holes": []}}, {"shape": {"outer": [[56.62, -400.18], [61.22, -395.8], [62.93, -397.6], [58.33, -401.97], [56.62, -400.18]], "holes": []}}, {"shape": {"outer": [[13.37, -441.86], [14.05, -442.2], [14.85, -442.19], [18.74, -438.73], [17.93, -437.82], [13.37, -441.86]], "holes": []}}, {"shape": {"outer": [[57.62, -350.05], [59.12, -351.72], [60.72, -350.31], [59.22, -348.63], [57.62, -350.05]], "holes": []}}, {"shape": {"outer": [[10.64, -467.98], [11.05, -469.36], [21.67, -459.98], [20.06, -458.92], [12.82, -465.65], [12.59, -466.08], [12.19, -466.49], [10.64, -467.98]], "holes": []}}, {"shape": {"outer": [[-23.37, -500.44], [-23.53, -498.64], [-16.43, -492.0], [-14.23, -492.15], [-23.37, -500.44]], "holes": []}}, {"shape": {"outer": [[-261.6, -970.71], [-257.13, -968.19], [-253.38, -963.77], [-250.19, -957.01], [-242.5, -937.01], [-193.03, -849.59], [-190.74, -844.87], [-191.7, -844.3], [-212.94, -875.66], [-236.67, -916.36], [-246.31, -934.02], [-253.76, -947.84], [-264.46, -969.62], [-261.6, -970.71]], "holes": []}}, {"shape": {"outer": [[-279.94, -960.13], [-272.24, -965.58], [-266.93, -954.61], [-273.98, -958.35], [-279.94, -960.13]], "holes": []}}, {"shape": {"outer": [[-502.54, -1079.0], [-486.94, -1065.79], [-467.77, -1046.19], [-449.94, -1030.39], [-430.53, -1016.64], [-412.38, -1005.99], [-386.86, -993.85], [-361.88, -983.74], [-338.9, -977.9], [-320.45, -975.68], [-299.76, -974.45], [-295.75, -965.89], [-300.88, -965.01], [-312.14, -966.59], [-344.02, -972.72], [-359.85, -976.52], [-389.22, -986.55], [-412.61, -997.55], [-434.17, -1010.1], [-452.95, -1023.86], [-472.89, -1041.92], [-487.49, -1057.35], [-497.32, -1069.2], [-503.58, -1078.01], [-502.54, -1079.0]], "holes": []}}, {"shape": {"outer": [[-543.12, -1147.77], [-541.51, -1148.69], [-547.0, -1159.61], [-552.9, -1175.32], [-561.07, -1191.68], [-569.74, -1207.97], [-577.94, -1222.87], [-585.05, -1233.95], [-593.28, -1244.12], [-597.66, -1248.26], [-600.46, -1243.46], [-593.87, -1236.3], [-580.54, -1216.32], [-564.55, -1186.52], [-548.87, -1157.75], [-543.12, -1147.77]], "holes": []}}, {"shape": {"outer": [[-615.7, -1254.75], [-612.91, -1259.21], [-624.37, -1266.11], [-637.78, -1271.51], [-655.23, -1275.26], [-668.63, -1276.04], [-703.08, -1269.98], [-711.29, -1267.34], [-717.74, -1264.21], [-716.52, -1262.34], [-701.22, -1268.2], [-669.51, -1270.3], [-656.94, -1269.59], [-641.83, -1266.68], [-627.15, -1261.12], [-615.7, -1254.75]], "holes": []}}, {"shape": {"outer": [[-736.1, -1246.71], [-745.1, -1235.73], [-763.04, -1215.84], [-780.86, -1196.43], [-788.74, -1193.71], [-789.68, -1194.73], [-768.5, -1217.46], [-747.36, -1241.56], [-742.46, -1246.34], [-738.5, -1248.94], [-736.1, -1246.71]], "holes": []}}, {"shape": {"outer": [[-790.4, -1186.17], [-811.0, -1162.14], [-834.44, -1136.42], [-854.05, -1114.94], [-895.86, -1067.74], [-905.64, -1061.98], [-915.53, -1051.54], [-917.1, -1052.64], [-888.16, -1085.02], [-840.07, -1138.51], [-805.35, -1176.07], [-791.01, -1186.76], [-790.4, -1186.17]], "holes": []}}, {"shape": {"outer": [[-1500.82, -1003.6], [-1501.96, -972.39], [-1503.03, -956.49], [-1505.24, -932.32], [-1506.72, -901.37], [-1506.7, -885.09], [-1508.89, -885.06], [-1509.79, -936.92], [-1508.98, -954.08], [-1508.19, -964.16], [-1504.89, -981.6], [-1503.94, -1000.14], [-1503.3, -1004.77], [-1500.82, -1003.6]], "holes": []}}, {"shape": {"outer": [[-283.01, -1025.08], [-280.76, -1019.02], [-272.29, -993.46], [-274.91, -992.43], [-287.66, -1023.03], [-283.01, -1025.08]], "holes": []}}, {"shape": {"outer": [[-289.83, -967.79], [-283.99, -970.65], [-282.8, -971.85], [-282.57, -972.96], [-283.04, -973.99], [-283.84, -974.34], [-293.57, -974.91], [-289.83, -967.79]], "holes": []}}, {"shape": {"outer": [[1906.08, 2254.53], [1907.58, 2311.06], [1910.5, 2334.96], [1917.59, 2367.05], [1915.86, 2367.42], [1913.47, 2364.31], [1912.05, 2360.91], [1904.19, 2326.36], [1883.07, 2228.29], [1885.57, 2227.7], [1888.91, 2235.59], [1893.34, 2242.42], [1898.41, 2247.86], [1906.08, 2254.53]], "holes": []}}, {"shape": {"outer": [[1905.85, 2240.28], [1905.48, 2226.92], [1903.46, 2205.65], [1899.03, 2184.55], [1892.52, 2164.56], [1882.47, 2142.27], [1871.72, 2124.39], [1860.75, 2109.21], [1844.9, 2091.76], [1772.15, 2021.67], [1762.09, 2013.31], [1760.69, 2015.09], [1818.28, 2070.44], [1837.08, 2092.85], [1848.77, 2104.44], [1859.75, 2120.2], [1869.04, 2145.27], [1880.35, 2183.14], [1888.8, 2210.39], [1890.7, 2217.85], [1893.26, 2225.48], [1897.36, 2232.44], [1904.42, 2240.44], [1905.85, 2240.28]], "holes": []}}, {"shape": {"outer": [[-1927.03, -128.58], [-1927.51, -139.43], [-1933.2, -139.19], [-1933.27, -140.54], [-1932.34, -142.33], [-1922.45, -142.77], [-1921.84, -128.81], [-1927.03, -128.58]], "holes": []}}, {"shape": {"outer": [[-1927.51, -139.43], [-1933.2, -139.19], [-1934.37, -139.13], [-1933.93, -129.41], [-1933.88, -128.29], [-1927.03, -128.58], [-1927.51, -139.43]], "holes": []}}, {"shape": {"outer": [[-1932.09, -85.19], [-1926.47, -85.42], [-1927.59, -112.24], [-1932.14, -112.04], [-1932.09, -110.76], [-1933.15, -110.71], [-1932.09, -85.19]], "holes": []}}, {"shape": {"outer": [[-1933.66, -149.21], [-1933.21, -149.2], [-1932.78, -148.89], [-1932.53, -148.5], [-1932.5, -147.96], [-1924.82, -148.25], [-1925.09, -153.23], [-1922.97, -153.31], [-1923.81, -170.59], [-1930.63, -170.31], [-1930.58, -169.24], [-1930.6, -168.33], [-1930.8, -167.47], [-1931.14, -166.59], [-1931.66, -165.72], [-1932.29, -165.03], [-1932.97, -164.63], [-1933.6, -164.37], [-1933.35, -158.32], [-1934.05, -157.29], [-1933.66, -149.21]], "holes": []}}, {"shape": {"outer": [[-1935.86, -170.07], [-1930.63, -170.31], [-1930.58, -169.24], [-1930.6, -168.33], [-1930.8, -167.47], [-1931.14, -166.59], [-1931.66, -165.72], [-1932.29, -165.03], [-1932.97, -164.63], [-1933.6, -164.37], [-1935.56, -164.27], [-1935.86, -170.07]], "holes": []}}, {"shape": {"outer": [[-1929.99, -173.09], [-1923.95, -173.31], [-1924.23, -182.77], [-1926.24, -182.73], [-1926.6, -197.41], [-1932.11, -197.23], [-1931.36, -176.5], [-1929.99, -173.09]], "holes": []}}, {"shape": {"outer": [[-921.86, -169.9], [-921.15, -169.27], [-914.56, -163.33], [-924.31, -152.57], [-926.28, -150.4], [-921.54, -146.13], [-920.69, -147.13], [-901.28, -168.37], [-886.15, -154.64], [-882.92, -151.92], [-902.78, -130.03], [-900.85, -128.28], [-883.02, -147.94], [-877.37, -142.85], [-868.75, -152.35], [-899.31, -179.87], [-901.77, -177.16], [-909.19, -183.85], [-921.86, -169.9]], "holes": []}}, {"shape": {"outer": [[-889.09, -121.26], [-886.21, -118.71], [-867.29, -139.96], [-856.67, -130.57], [-855.25, -132.16], [-852.96, -130.13], [-851.35, -131.94], [-848.61, -129.52], [-845.17, -133.26], [-866.46, -152.57], [-867.82, -153.61], [-868.75, -152.35], [-895.06, -123.0], [-890.85, -119.28], [-889.09, -121.26]], "holes": []}}, {"shape": {"outer": [[-551.48, 347.51], [-544.66, 353.64], [-543.64, 350.55], [-548.14, 346.46], [-551.48, 347.51]], "holes": []}}, {"shape": {"outer": [[-539.61, 358.04], [-534.83, 362.41], [-534.11, 361.91], [-533.05, 360.14], [-536.78, 356.74], [-539.61, 358.04]], "holes": []}}, {"shape": {"outer": [[-533.33, 363.57], [-532.6, 362.7], [-531.05, 361.86], [-530.38, 362.61], [-530.16, 363.11], [-529.94, 364.04], [-529.74, 365.61], [-529.66, 366.89], [-533.33, 363.57]], "holes": []}}, {"shape": {"outer": [[-556.76, 338.82], [-555.01, 340.24], [-556.21, 343.07], [-558.98, 340.67], [-557.92, 339.48], [-556.76, 338.82]], "holes": []}}, {"shape": {"outer": [[-552.64, 349.06], [-551.71, 349.79], [-566.75, 366.43], [-567.92, 365.35], [-552.64, 349.06]], "holes": []}}, {"shape": {"outer": [[-546.98, 354.16], [-545.87, 354.99], [-561.01, 371.89], [-562.1, 370.91], [-546.98, 354.16]], "holes": []}}, {"shape": {"outer": [[-551.71, 349.79], [-549.9, 351.42], [-553.55, 355.46], [-554.93, 355.42], [-555.58, 355.75], [-556.09, 356.27], [-556.38, 356.94], [-556.44, 357.65], [-556.25, 358.35], [-555.83, 358.95], [-555.25, 359.37], [-554.55, 359.59], [-553.87, 359.55], [-553.23, 359.3], [-552.69, 358.87], [-552.33, 358.29], [-552.18, 357.43], [-552.35, 356.73], [-548.66, 352.65], [-546.98, 354.16], [-562.1, 370.91], [-562.83, 371.82], [-563.61, 371.47], [-564.33, 371.02], [-565.03, 370.57], [-565.65, 370.03], [-566.31, 369.48], [-566.84, 368.85], [-567.36, 368.21], [-567.72, 367.5], [-566.75, 366.43], [-551.71, 349.79]], "holes": []}}, {"shape": {"outer": [[-559.98, 342.28], [-557.59, 344.49], [-570.37, 358.64], [-571.26, 358.73], [-572.16, 359.07], [-572.87, 356.21], [-559.98, 342.28]], "holes": []}}, {"shape": {"outer": [[-574.62, 358.32], [-577.93, 361.74], [-577.29, 362.32], [-576.39, 361.29], [-575.46, 360.48], [-574.35, 360.0], [-574.62, 358.32]], "holes": []}}, {"shape": {"outer": [[-575.1, 378.71], [-574.85, 378.23], [-576.02, 377.69], [-577.24, 377.39], [-578.52, 377.3], [-579.9, 377.36], [-579.52, 378.5], [-579.02, 379.38], [-578.48, 380.24], [-577.73, 381.12], [-577.54, 380.06], [-577.25, 379.48], [-576.86, 379.07], [-576.36, 378.76], [-575.79, 378.68], [-575.1, 378.71]], "holes": []}}, {"shape": {"outer": [[-573.39, 380.02], [-573.0, 379.86], [-572.37, 380.93], [-571.91, 382.19], [-571.67, 383.53], [-571.64, 384.77], [-572.66, 384.5], [-573.55, 384.2], [-574.44, 383.82], [-575.4, 383.31], [-574.45, 382.81], [-573.86, 382.39], [-573.46, 381.85], [-573.31, 381.19], [-573.28, 380.62], [-573.39, 380.02]], "holes": []}}, {"shape": {"outer": [[-580.13, 389.79], [-581.62, 391.58], [-580.92, 392.7], [-580.49, 394.31], [-580.45, 395.87], [-576.16, 395.76], [-574.38, 393.65], [-575.57, 392.72], [-578.0, 391.53], [-580.13, 389.79]], "holes": []}}, {"shape": {"outer": [[-568.91, 388.77], [-569.09, 390.28], [-569.15, 391.16], [-568.18, 391.33], [-567.33, 391.71], [-566.64, 392.19], [-566.01, 392.71], [-565.35, 393.34], [-564.82, 394.0], [-564.36, 394.68], [-563.99, 395.39], [-563.58, 394.4], [-563.55, 393.4], [-563.94, 392.26], [-564.71, 391.31], [-565.92, 390.21], [-567.63, 389.2], [-568.91, 388.77]], "holes": []}}, {"shape": {"outer": [[-584.42, 386.41], [-585.65, 387.85], [-586.83, 387.37], [-588.27, 387.06], [-590.04, 387.02], [-590.26, 382.59], [-588.38, 380.6], [-587.01, 381.93], [-585.93, 384.22], [-584.42, 386.41]], "holes": []}}, {"shape": {"outer": [[-582.78, 378.9], [-582.3, 379.98], [-581.49, 381.42], [-580.83, 382.33], [-580.1, 383.21], [-582.09, 384.64], [-582.77, 383.71], [-583.56, 382.38], [-584.12, 381.23], [-584.56, 380.16], [-584.04, 379.87], [-584.27, 379.35], [-582.78, 378.9]], "holes": []}}, {"shape": {"outer": [[-572.47, 388.02], [-572.6, 389.71], [-572.87, 389.66], [-572.94, 390.22], [-574.07, 389.93], [-575.46, 389.45], [-576.96, 388.76], [-578.67, 387.72], [-577.35, 385.29], [-575.99, 386.4], [-574.12, 387.51], [-572.47, 388.02]], "holes": []}}, {"shape": {"outer": [[-593.18, 380.89], [-596.01, 383.89], [-593.87, 383.57], [-592.42, 385.13], [-592.33, 387.51], [-593.27, 387.77], [-594.15, 388.24], [-594.91, 388.79], [-595.91, 389.69], [-602.05, 396.75], [-602.68, 397.59], [-603.13, 398.43], [-603.46, 399.22], [-603.62, 400.12], [-606.45, 400.31], [-608.1, 397.89], [-612.7, 403.05], [-614.38, 401.53], [-615.32, 402.55], [-616.33, 401.71], [-596.4, 379.13], [-595.44, 379.96], [-594.74, 379.27], [-593.18, 380.89]], "holes": []}}, {"shape": {"outer": [[-593.47, 371.91], [-593.78, 372.34], [-593.91, 372.85], [-593.86, 373.32], [-593.55, 373.82], [-593.09, 374.0], [-592.51, 373.95], [-591.92, 373.64], [-591.5, 373.26], [-591.22, 372.69], [-591.07, 372.19], [-590.97, 371.71], [-590.95, 371.39], [-591.08, 371.03], [-591.37, 370.86], [-591.86, 370.86], [-592.37, 371.05], [-592.98, 371.44], [-593.47, 371.91]], "holes": []}}, {"shape": {"outer": [[-546.72, 424.66], [-514.55, 389.43], [-514.15, 388.97], [-511.53, 389.88], [-508.61, 390.35], [-503.88, 389.35], [-493.94, 397.66], [-492.72, 398.19], [-491.4, 397.83], [-483.75, 390.55], [-488.91, 385.46], [-478.05, 388.17], [-502.11, 413.55], [-505.32, 411.75], [-506.92, 409.15], [-507.32, 406.43], [-506.91, 405.22], [-508.59, 403.88], [-525.84, 423.51], [-527.32, 428.99], [-529.9, 430.03], [-531.38, 429.28], [-533.83, 430.43], [-534.8, 426.9], [-536.51, 423.97], [-538.13, 424.0], [-546.72, 424.66]], "holes": []}}, {"shape": {"outer": [[-531.18, 345.28], [-529.79, 345.57], [-524.27, 350.41], [-525.62, 351.48], [-526.35, 352.11], [-529.46, 349.44], [-530.19, 348.44], [-530.88, 347.34], [-531.23, 346.3], [-531.18, 345.28]], "holes": []}}, {"shape": {"outer": [[-523.02, 351.72], [-524.3, 353.73], [-523.66, 354.53], [-522.73, 354.82], [-521.63, 354.59], [-520.23, 354.82], [-519.14, 355.08], [-523.02, 351.72]], "holes": []}}, {"shape": {"outer": [[-604.0, 402.9], [-603.97, 403.85], [-603.85, 404.72], [-603.62, 405.68], [-603.24, 406.54], [-602.7, 407.35], [-604.29, 409.12], [-607.27, 406.27], [-608.67, 407.46], [-610.11, 405.3], [-607.82, 402.91], [-604.0, 402.9]], "holes": []}}, {"shape": {"outer": [[-594.59, 411.47], [-595.85, 411.41], [-597.02, 411.27], [-598.19, 410.98], [-599.48, 410.52], [-600.99, 412.18], [-597.53, 415.23], [-598.83, 416.51], [-596.48, 417.87], [-594.49, 415.41], [-594.59, 411.47]], "holes": []}}, {"shape": {"outer": [[-591.71, 410.91], [-591.57, 413.97], [-590.28, 415.07], [-575.6, 399.1], [-576.37, 398.14], [-580.51, 398.29], [-581.06, 399.94], [-581.87, 401.15], [-589.19, 409.4], [-590.38, 410.27], [-591.71, 410.91]], "holes": []}}, {"shape": {"outer": [[-1850.3, -40.32], [-1847.02, -40.44], [-1847.23, -46.62], [-1850.51, -46.51], [-1850.3, -40.32]], "holes": []}}, {"shape": {"outer": [[-1900.51, -55.94], [-1900.44, -51.63], [-1900.21, -51.17], [-1899.5, -50.97], [-1889.29, -50.1], [-1889.27, -50.79], [-1889.49, -56.33], [-1893.81, -56.18], [-1893.79, -55.54], [-1896.71, -55.44], [-1896.72, -56.07], [-1900.51, -55.94]], "holes": []}}, {"shape": {"outer": [[-1900.76, -60.68], [-1900.92, -74.6], [-1899.17, -75.78], [-1896.42, -76.82], [-1893.3, -76.85], [-1892.43, -75.17], [-1893.74, -72.83], [-1892.32, -67.07], [-1892.43, -64.96], [-1891.91, -62.57], [-1892.46, -61.17], [-1896.06, -60.54], [-1899.0, -60.39], [-1900.76, -60.68]], "holes": []}}, {"shape": {"outer": [[-1900.76, -60.68], [-1900.66, -58.42], [-1889.57, -58.51], [-1890.43, -80.12], [-1895.84, -80.0], [-1895.85, -79.39], [-1896.07, -78.9], [-1896.45, -78.6], [-1896.93, -78.53], [-1897.46, -78.59], [-1897.88, -78.89], [-1898.09, -79.38], [-1898.11, -79.94], [-1901.04, -79.88], [-1900.92, -74.6], [-1899.17, -75.78], [-1896.42, -76.82], [-1893.3, -76.85], [-1892.43, -75.17], [-1893.74, -72.83], [-1892.32, -67.07], [-1892.43, -64.96], [-1891.91, -62.57], [-1892.46, -61.17], [-1896.06, -60.54], [-1899.0, -60.39], [-1900.76, -60.68]], "holes": []}}, {"shape": {"outer": [[-603.82, -775.72], [-610.63, -768.34], [-601.17, -759.69], [-596.22, -755.16], [-589.41, -762.54], [-603.82, -775.72]], "holes": []}}, {"shape": {"outer": [[-1129.67, -87.94], [-1130.19, -98.78], [-1127.96, -98.89], [-1127.43, -88.04], [-1129.67, -87.94]], "holes": []}}, {"shape": {"outer": [[-1114.05, -206.78], [-1103.92, -207.38], [-1104.98, -225.37], [-1117.45, -224.64], [-1117.54, -226.24], [-1125.24, -225.78], [-1127.13, -226.94], [-1130.61, -226.74], [-1131.33, -226.7], [-1130.78, -217.2], [-1129.97, -217.25], [-1121.3, -217.76], [-1121.44, -220.1], [-1114.86, -220.49], [-1114.05, -206.78]], "holes": []}}, {"shape": {"outer": [[-1108.3, -279.84], [-1106.76, -278.64], [-1099.26, -278.99], [-1103.77, -283.16], [-1108.44, -282.95], [-1108.3, -279.84]], "holes": []}}, {"shape": {"outer": [[-1183.09, -275.45], [-1181.83, -273.74], [-1166.99, -274.49], [-1167.08, -277.63], [-1169.35, -277.54], [-1172.73, -280.36], [-1179.46, -279.92], [-1183.09, -275.45]], "holes": []}}, {"shape": {"outer": [[-1327.39, -373.11], [-1327.46, -374.61], [-1311.52, -375.42], [-1311.44, -373.93], [-1327.39, -373.11]], "holes": []}}, {"shape": {"outer": [[-1348.15, -363.43], [-1349.9, -363.33], [-1350.2, -371.42], [-1348.46, -371.46], [-1348.15, -363.43]], "holes": []}}, {"shape": {"outer": [[-1354.64, -371.26], [-1350.2, -371.42], [-1349.9, -363.33], [-1352.49, -363.23], [-1352.75, -370.01], [-1354.59, -369.93], [-1354.64, -371.26]], "holes": []}}, {"shape": {"outer": [[-1349.32, -267.69], [-1349.2, -264.98], [-1361.96, -264.42], [-1362.07, -267.08], [-1349.32, -267.69]], "holes": []}}, {"shape": {"outer": [[-1479.55, -658.28], [-1475.35, -657.62], [-1464.58, -658.14], [-1464.39, -656.75], [-1470.57, -653.32], [-1475.77, -650.81], [-1479.49, -650.7], [-1479.55, -658.28]], "holes": []}}, {"shape": {"outer": [[-1500.75, -672.62], [-1496.11, -672.91], [-1495.36, -671.7], [-1494.74, -670.17], [-1494.29, -668.73], [-1494.18, -667.27], [-1491.27, -632.87], [-1497.08, -630.0], [-1500.21, -664.45], [-1500.75, -672.62]], "holes": []}}, {"shape": {"outer": [[-1490.13, -619.77], [-1495.87, -617.0], [-1493.95, -594.58], [-1492.08, -568.43], [-1489.58, -516.4], [-1489.24, -513.87], [-1486.83, -513.95], [-1486.73, -516.81], [-1487.98, -540.66], [-1488.08, -551.29], [-1488.01, -557.23], [-1487.48, -562.7], [-1487.0, -568.42], [-1486.62, -574.85], [-1486.92, -581.33], [-1490.13, -619.77]], "holes": []}}, {"shape": {"outer": [[-1482.91, -745.34], [-1482.53, -744.17], [-1481.82, -743.3], [-1480.87, -742.96], [-1478.95, -742.99], [-1475.09, -743.37], [-1476.31, -743.85], [-1478.43, -745.25], [-1479.22, -745.59], [-1482.91, -745.34]], "holes": []}}, {"shape": {"outer": [[-1354.08, -737.98], [-1353.65, -737.98], [-1353.66, -738.69], [-1352.71, -739.14], [-1351.2, -739.39], [-1349.83, -739.79], [-1349.22, -740.43], [-1349.17, -741.23], [-1349.19, -742.23], [-1348.86, -743.13], [-1348.33, -743.64], [-1347.38, -735.93], [-1343.8, -727.41], [-1344.57, -727.09], [-1344.09, -725.92], [-1344.61, -725.69], [-1344.26, -724.91], [-1343.84, -725.05], [-1343.23, -723.24], [-1343.24, -722.69], [-1343.52, -722.25], [-1343.6, -720.57], [-1343.24, -715.08], [-1336.91, -717.57], [-1335.95, -716.7], [-1334.6, -716.19], [-1333.1, -716.1], [-1298.96, -731.66], [-1295.33, -732.42], [-1292.61, -731.19], [-1290.25, -729.75], [-1289.31, -728.99], [-1249.64, -746.75], [-1244.15, -750.72], [-1243.63, -748.26], [-1289.24, -727.72], [-1289.95, -727.63], [-1290.64, -727.71], [-1291.53, -728.01], [-1292.38, -728.44], [-1293.29, -728.97], [-1294.14, -729.5], [-1295.09, -729.82], [-1296.38, -729.89], [-1297.99, -729.65], [-1331.99, -714.42], [-1334.15, -713.46], [-1338.23, -711.74], [-1341.47, -710.96], [-1344.02, -710.79], [-1345.3, -710.77], [-1346.65, -711.0], [-1350.16, -711.35], [-1350.73, -712.05], [-1351.83, -712.8], [-1353.0, -713.21], [-1354.08, -737.98]], "holes": []}}, {"shape": {"outer": [[-1342.68, -648.57], [-1342.1, -635.62], [-1337.72, -637.7], [-1342.68, -648.57]], "holes": []}}, {"shape": {"outer": [[-1352.42, -858.58], [-1349.32, -857.61], [-1347.45, -850.35], [-1353.27, -844.39], [-1353.71, -852.63], [-1353.31, -857.38], [-1352.42, -858.58]], "holes": []}}, {"shape": {"outer": [[-1348.58, -861.95], [-1347.96, -858.95], [-1339.99, -856.88], [-1335.34, -861.8], [-1339.06, -862.25], [-1344.94, -862.53], [-1348.58, -861.95]], "holes": []}}, {"shape": {"outer": [[-1345.23, -835.8], [-1310.71, -851.46], [-1318.78, -860.57], [-1332.61, -861.3], [-1353.35, -841.2], [-1352.84, -834.82], [-1350.75, -835.98], [-1347.92, -836.26], [-1345.23, -835.8]], "holes": []}}, {"shape": {"outer": [[-1258.9, -870.92], [-1258.47, -872.0], [-1258.67, -876.53], [-1259.02, -877.62], [-1273.53, -877.09], [-1271.19, -875.03], [-1270.0, -872.78], [-1269.64, -870.61], [-1263.3, -870.65], [-1258.9, -870.92]], "holes": []}}, {"shape": {"outer": [[-1256.68, -872.08], [-1256.06, -871.21], [-1242.69, -872.05], [-1226.03, -874.48], [-1224.88, -875.19], [-1224.83, -877.11], [-1227.18, -877.36], [-1233.74, -877.48], [-1245.5, -877.97], [-1251.1, -878.13], [-1254.5, -877.78], [-1256.38, -877.37], [-1256.93, -876.64], [-1256.68, -872.08]], "holes": []}}, {"shape": {"outer": [[-1345.81, -873.5], [-1345.84, -874.72], [-1323.72, -874.77], [-1310.0, -873.37], [-1297.79, -872.82], [-1285.42, -873.28], [-1283.87, -872.63], [-1284.09, -871.25], [-1297.81, -871.35], [-1313.39, -871.8], [-1326.85, -872.26], [-1345.81, -873.5]], "holes": []}}, {"shape": {"outer": [[-1195.31, 0.7], [-1198.47, 0.85], [-1201.61, 1.0], [-1201.7, -0.87], [-1201.8, -3.12], [-1202.35, -3.1], [-1202.88, -14.33], [-1196.1, -14.67], [-1195.94, -11.59], [-1195.31, 0.7]], "holes": []}}, {"shape": {"outer": [[-1200.52, -21.04], [-1198.04, -21.16], [-1196.53, -21.23], [-1198.21, -57.5], [-1199.09, -57.45], [-1202.26, -57.23], [-1200.52, -21.04]], "holes": []}}, {"shape": {"outer": [[-1175.14, -284.19], [-1173.56, -284.27], [-1171.91, -286.18], [-1172.74, -302.35], [-1176.04, -298.71], [-1175.14, -284.19]], "holes": []}}, {"shape": {"outer": [[-1177.1, -284.18], [-1183.35, -283.83], [-1185.58, -284.62], [-1187.14, -317.62], [-1181.24, -317.89], [-1181.39, -321.0], [-1149.26, -322.51], [-1148.7, -310.61], [-1164.36, -309.87], [-1168.95, -304.71], [-1173.3, -304.51], [-1177.95, -299.32], [-1177.1, -284.18]], "holes": []}}, {"shape": {"outer": [[-1188.27, -294.89], [-1190.93, -294.74], [-1190.08, -279.5], [-1187.42, -279.66], [-1188.27, -294.89]], "holes": []}}, {"shape": {"outer": [[-1217.31, -202.0], [-1215.93, -202.07], [-1216.28, -208.62], [-1217.67, -208.55], [-1217.31, -202.0]], "holes": []}}, {"shape": {"outer": [[-1309.47, -154.41], [-1309.42, -153.26], [-1316.89, -152.97], [-1316.92, -154.06], [-1309.47, -154.41]], "holes": []}}, {"shape": {"outer": [[-1561.61, -1892.22], [-1568.09, -1895.74], [-1548.93, -1930.79], [-1536.2, -1923.87], [-1537.09, -1922.24], [-1554.6, -1890.19], [-1560.87, -1893.59], [-1561.61, -1892.22]], "holes": []}}, {"shape": {"outer": [[-1177.34, -31.22], [-1170.45, -31.56], [-1170.47, -32.06], [-1166.01, -32.28], [-1164.14, -32.37], [-1164.12, -31.88], [-1156.82, -32.24], [-1156.94, -34.73], [-1157.34, -42.94], [-1158.31, -62.61], [-1159.0, -62.58], [-1168.48, -62.12], [-1178.83, -61.61], [-1178.68, -58.57], [-1177.46, -33.74], [-1177.34, -31.22]], "holes": []}}, {"shape": {"outer": [[-1181.66, -81.45], [-1180.5, -81.5], [-1173.72, -81.83], [-1174.88, -105.64], [-1182.81, -105.26], [-1181.66, -81.45]], "holes": []}}, {"shape": {"outer": [[-1173.72, -81.83], [-1167.63, -82.12], [-1165.82, -82.2], [-1166.98, -106.03], [-1174.88, -105.64], [-1173.72, -81.83]], "holes": []}}, {"shape": {"outer": [[-1155.59, -82.69], [-1134.3, -83.7], [-1129.49, -83.93], [-1129.67, -87.94], [-1130.19, -98.78], [-1130.41, -103.39], [-1156.5, -102.17], [-1155.59, -82.69]], "holes": []}}, {"shape": {"outer": [[-1187.18, -86.71], [-1187.66, -96.09], [-1185.05, -96.22], [-1184.57, -86.84], [-1187.18, -86.71]], "holes": []}}, {"shape": {"outer": [[-1199.63, -86.61], [-1199.97, -93.44], [-1197.45, -93.56], [-1197.11, -86.74], [-1199.63, -86.61]], "holes": []}}, {"shape": {"outer": [[-1255.06, -85.15], [-1254.72, -78.04], [-1254.71, -77.72], [-1247.22, -78.08], [-1238.85, -78.49], [-1230.99, -78.87], [-1231.01, -79.25], [-1231.35, -86.3], [-1255.06, -85.15]], "holes": []}}, {"shape": {"outer": [[-1256.67, -118.2], [-1256.63, -117.45], [-1256.21, -108.96], [-1255.14, -87.4], [-1255.06, -85.15], [-1231.35, -86.3], [-1231.01, -79.25], [-1227.47, -79.43], [-1227.45, -78.98], [-1215.53, -79.58], [-1204.9, -80.11], [-1201.6, -80.27], [-1201.75, -83.43], [-1202.89, -106.1], [-1203.21, -106.08], [-1203.3, -107.99], [-1203.59, -113.71], [-1203.94, -120.82], [-1224.48, -119.8], [-1256.67, -118.2]], "holes": []}}, {"shape": {"outer": [[-1255.14, -87.4], [-1256.99, -87.32], [-1258.03, -108.86], [-1256.21, -108.96], [-1255.14, -87.4]], "holes": []}}, {"shape": {"outer": [[-1126.2, -26.28], [-1127.91, -64.08], [-1128.32, -64.07], [-1136.91, -63.67], [-1136.75, -60.19], [-1136.24, -60.21], [-1135.61, -46.35], [-1134.69, -25.89], [-1132.88, -25.98], [-1126.86, -26.25], [-1126.2, -26.28]], "holes": []}}, {"shape": {"outer": [[-1126.2, -26.28], [-1124.06, -26.38], [-1123.14, -26.41], [-1122.22, -26.46], [-1115.83, -26.74], [-1116.23, -35.41], [-1116.27, -36.42], [-1116.44, -40.11], [-1115.2, -40.17], [-1116.09, -59.66], [-1117.75, -59.59], [-1117.98, -64.53], [-1121.75, -64.35], [-1127.91, -64.08], [-1126.2, -26.28]], "holes": []}}, {"shape": {"outer": [[-1086.3, -56.89], [-1084.69, -56.97], [-1085.13, -65.96], [-1083.16, -66.06], [-1077.21, -66.35], [-1075.52, -32.2], [-1085.08, -31.74], [-1086.3, -56.89]], "holes": []}}, {"shape": {"outer": [[-1155.79, 22.99], [-1155.86, 21.34], [-1145.17, 20.89], [-1145.11, 22.55], [-1155.79, 22.99]], "holes": []}}, {"shape": {"outer": [[-1167.63, 17.22], [-1167.54, 19.5], [-1162.64, 19.25], [-1162.73, 16.95], [-1167.63, 17.22]], "holes": []}}, {"shape": {"outer": [[-1139.79, 15.74], [-1139.68, 18.16], [-1136.75, 18.01], [-1136.86, 15.57], [-1139.79, 15.74]], "holes": []}}, {"shape": {"outer": [[-872.06, -787.61], [-831.37, -750.02], [-898.6, -674.33], [-941.25, -713.36], [-937.69, -720.3], [-909.04, -751.63], [-908.4, -752.76], [-906.33, -756.58], [-879.53, -785.46], [-874.39, -785.08], [-872.06, -787.61]], "holes": []}}, {"shape": {"outer": [[-1622.88, -1092.74], [-1616.85, -1092.88], [-1617.35, -1114.44], [-1623.38, -1114.3], [-1622.88, -1092.74]], "holes": []}}, {"shape": {"outer": [[-1616.06, -1093.57], [-1616.1, -1098.75], [-1605.56, -1099.04], [-1603.89, -1097.78], [-1601.33, -1097.21], [-1598.9, -1097.21], [-1596.86, -1097.98], [-1592.74, -1094.31], [-1616.06, -1093.57]], "holes": []}}, {"shape": {"outer": [[-1616.13, -1101.43], [-1607.36, -1101.7], [-1607.71, -1103.66], [-1607.66, -1105.33], [-1607.3, -1106.6], [-1616.18, -1106.37], [-1616.13, -1101.43]], "holes": []}}, {"shape": {"outer": [[-1616.26, -1109.17], [-1616.36, -1114.25], [-1613.81, -1114.32], [-1608.63, -1109.3], [-1616.26, -1109.17]], "holes": []}}, {"shape": {"outer": [[-2040.88, -865.1], [-2038.21, -865.25], [-2038.44, -869.58], [-2041.13, -869.42], [-2040.88, -865.1]], "holes": []}}, {"shape": {"outer": [[-147.77, 144.56], [-157.54, 135.49], [-154.65, 132.4], [-157.05, 130.18], [-152.74, 125.59], [-142.9, 134.73], [-140.58, 136.89], [-147.77, 144.56]], "holes": []}}, {"shape": {"outer": [[179.38, -314.4], [184.78, -308.92], [191.76, -303.35], [192.66, -303.36], [193.25, -303.98], [182.51, -313.05], [179.94, -315.01], [179.38, -314.4]], "holes": []}}, {"shape": {"outer": [[200.45, -297.1], [199.92, -296.6], [199.93, -295.8], [200.94, -294.74], [201.87, -295.63], [200.45, -297.1]], "holes": []}}, {"shape": {"outer": [[-540.92, 359.41], [-540.42, 359.83], [-549.56, 369.85], [-549.6, 370.79], [-549.5, 371.58], [-549.21, 372.25], [-550.83, 374.05], [-551.83, 374.56], [-552.87, 374.93], [-553.99, 375.18], [-553.71, 374.17], [-553.69, 373.29], [-540.92, 359.41]], "holes": []}}, {"shape": {"outer": [[-550.37, 377.6], [-547.3, 380.05], [-541.9, 374.14], [-543.41, 372.83], [-543.82, 373.26], [-545.85, 371.35], [-546.15, 370.57], [-546.03, 369.88], [-545.72, 369.2], [-543.93, 367.34], [-544.39, 366.89], [-547.36, 369.92], [-547.54, 370.47], [-547.49, 371.11], [-547.33, 371.84], [-547.04, 372.49], [-545.63, 373.83], [-547.39, 375.67], [-548.8, 374.33], [-549.59, 375.31], [-550.1, 376.23], [-550.37, 377.6]], "holes": []}}, {"shape": {"outer": [[-598.88, 373.34], [-598.23, 373.26], [-597.7, 373.01], [-597.27, 372.69], [-596.74, 372.13], [-596.32, 371.48], [-596.15, 370.93], [-595.93, 370.47], [-595.44, 369.93], [-594.96, 369.61], [-594.51, 369.21], [-594.12, 368.6], [-594.09, 368.18], [-594.31, 367.82], [-594.77, 367.87], [-595.52, 368.9], [-596.73, 370.09], [-597.96, 371.01], [-599.6, 371.46], [-599.32, 371.82], [-599.1, 372.23], [-598.96, 372.77], [-598.88, 373.34]], "holes": []}}, {"shape": {"outer": [[-586.89, 371.59], [-585.84, 372.05], [-584.71, 373.11], [-584.27, 374.04], [-584.02, 375.11], [-585.45, 375.71], [-585.97, 374.89], [-586.35, 374.15], [-586.65, 373.05], [-586.89, 371.59]], "holes": []}}, {"shape": {"outer": [[-597.5, 377.61], [-597.22, 377.16], [-597.02, 376.66], [-597.1, 376.15], [-597.46, 375.73], [-598.0, 375.61], [-598.64, 375.75], [-599.2, 376.11], [-599.07, 376.65], [-598.91, 377.15], [-598.61, 377.9], [-598.48, 378.68], [-597.5, 377.61]], "holes": []}}, {"shape": {"outer": [[-603.11, 354.82], [-613.5, 366.34], [-606.0, 372.79], [-605.62, 372.33], [-611.71, 366.95], [-604.67, 359.21], [-601.01, 362.44], [-599.92, 361.28], [-593.68, 366.74], [-592.36, 367.5], [-591.07, 367.87], [-589.86, 367.75], [-588.82, 367.52], [-587.82, 366.93], [-581.71, 361.97], [-564.54, 343.23], [-566.57, 341.42], [-567.16, 342.07], [-581.69, 357.77], [-582.18, 357.33], [-590.54, 366.37], [-603.11, 354.82]], "holes": []}}, {"shape": {"outer": [[-568.82, 334.54], [-570.3, 336.08], [-570.41, 336.88], [-570.09, 337.46], [-567.97, 339.41], [-567.92, 341.37], [-567.16, 342.07], [-566.57, 341.42], [-564.54, 343.23], [-562.0, 340.46], [-568.82, 334.54]], "holes": []}}, {"shape": {"outer": [[-592.67, 424.43], [-590.06, 426.74], [-588.69, 425.27], [-589.73, 424.31], [-589.0, 423.01], [-587.87, 421.49], [-586.29, 420.1], [-584.69, 418.91], [-583.77, 419.76], [-582.15, 418.21], [-584.58, 415.95], [-592.67, 424.43]], "holes": []}}, {"shape": {"outer": [[-581.6, 421.77], [-578.66, 424.48], [-577.22, 422.9], [-580.21, 420.23], [-581.6, 421.77]], "holes": []}}, {"shape": {"outer": [[309.38, 500.9], [314.88, 505.46], [337.23, 481.04], [331.76, 475.54], [309.38, 500.9]], "holes": []}}, {"shape": {"outer": [[90.67, -390.54], [89.35, -389.11], [24.97, -448.24], [26.27, -449.66], [90.67, -390.54]], "holes": []}}, {"shape": {"outer": [[65.67, -605.83], [70.18, -603.5], [75.87, -601.06], [81.88, -598.47], [89.34, -594.85], [88.14, -593.85], [87.29, -592.98], [86.53, -591.99], [85.57, -590.64], [84.85, -589.19], [84.25, -587.66], [83.83, -585.66], [82.07, -587.6], [79.98, -589.91], [77.9, -592.22], [75.86, -594.46], [73.59, -596.98], [70.01, -593.77], [69.44, -593.21], [68.46, -593.33], [60.44, -602.13], [62.86, -605.39], [65.67, -605.83]], "holes": []}}, {"shape": {"outer": [[13.08, -669.98], [13.49, -667.61], [11.67, -666.7], [8.88, -664.4], [6.42, -662.17], [2.51, -660.25], [-3.38, -659.75], [-7.7, -660.14], [-12.15, -663.59], [-19.95, -671.76], [-26.59, -678.41], [-33.94, -684.55], [-46.0, -694.98], [-56.36, -703.96], [-82.27, -732.1], [-117.42, -773.85], [-129.14, -788.4], [-142.41, -806.06], [-146.29, -811.54], [-166.78, -840.49], [-166.41, -841.57], [-162.94, -844.22], [-161.7, -844.56], [-159.86, -844.49], [-158.01, -843.74], [-156.02, -841.5], [-141.7, -821.65], [-131.21, -807.02], [-121.73, -793.72], [-110.68, -778.06], [-95.26, -758.55], [-78.69, -744.43], [-66.49, -733.81], [-43.59, -715.1], [-9.27, -686.48], [4.07, -677.71], [6.3, -676.73], [8.63, -675.45], [9.89, -674.53], [9.34, -673.12], [9.11, -671.61], [10.21, -670.83], [10.91, -669.57], [11.91, -669.97], [13.08, -669.98]], "holes": []}}, {"shape": {"outer": [[32.67, -600.26], [29.52, -597.24], [-0.42, -627.16], [-33.19, -661.13], [-38.83, -667.2], [-36.14, -669.81], [-15.86, -651.55], [8.78, -626.19], [32.67, -600.26]], "holes": []}}, {"shape": {"outer": [[353.92, -323.53], [355.8, -325.4], [358.38, -322.92], [358.53, -322.09], [358.08, -321.68], [356.57, -322.13], [353.92, -323.53]], "holes": []}}, {"shape": {"outer": [[319.23, -368.8], [341.55, -338.76], [340.24, -337.85], [344.18, -333.25], [340.09, -329.42], [337.31, -330.93], [331.58, -334.38], [326.16, -338.17], [319.72, -343.12], [315.92, -346.39], [320.43, -351.43], [317.85, -353.73], [315.41, -355.89], [313.04, -358.0], [310.65, -360.11], [309.69, -360.97], [311.73, -361.72], [313.65, -362.62], [315.32, -363.83], [316.93, -365.25], [318.33, -367.05], [319.23, -368.8]], "holes": []}}, {"shape": {"outer": [[356.37, -298.06], [358.35, -296.33], [360.29, -294.9], [362.2, -293.76], [364.13, -292.77], [366.62, -292.27], [369.21, -292.05], [371.96, -292.45], [374.88, -292.97], [377.35, -294.11], [378.7, -295.16], [379.52, -296.96], [379.73, -298.42], [379.6, -300.07], [378.94, -302.63], [377.48, -304.84], [375.95, -306.39], [374.59, -307.29], [373.04, -307.99], [365.89, -310.37], [358.51, -312.8], [347.0, -317.67], [337.97, -321.83], [327.47, -328.07], [325.03, -330.03], [323.41, -328.3], [356.37, -298.06]], "holes": []}}, {"shape": {"outer": [[320.43, -351.43], [317.85, -353.73], [313.33, -348.69], [315.92, -346.39], [320.43, -351.43]], "holes": []}}, {"shape": {"outer": [[317.85, -353.73], [315.41, -355.89], [310.89, -350.85], [313.33, -348.69], [317.85, -353.73]], "holes": []}}, {"shape": {"outer": [[315.41, -355.89], [313.04, -358.0], [308.55, -352.93], [310.89, -350.85], [315.41, -355.89]], "holes": []}}, {"shape": {"outer": [[313.04, -358.0], [310.65, -360.11], [306.29, -354.93], [308.55, -352.93], [313.04, -358.0]], "holes": []}}, {"shape": {"outer": [[310.65, -360.11], [309.69, -360.97], [308.85, -360.95], [307.12, -360.78], [303.84, -357.12], [306.29, -354.93], [310.65, -360.11]], "holes": []}}, {"shape": {"outer": [[82.07, -587.6], [79.98, -589.91], [74.72, -585.18], [76.8, -582.88], [82.07, -587.6]], "holes": []}}, {"shape": {"outer": [[83.83, -585.66], [82.07, -587.6], [76.8, -582.88], [79.26, -580.16], [83.68, -584.12], [83.75, -584.87], [83.83, -585.66]], "holes": []}}, {"shape": {"outer": [[79.98, -589.91], [77.9, -592.22], [72.67, -587.45], [74.72, -585.18], [79.98, -589.91]], "holes": []}}, {"shape": {"outer": [[77.9, -592.22], [75.86, -594.46], [70.58, -589.76], [72.67, -587.45], [77.9, -592.22]], "holes": []}}, {"shape": {"outer": [[75.86, -594.46], [73.59, -596.98], [70.01, -593.77], [68.33, -592.25], [70.58, -589.76], [75.86, -594.46]], "holes": []}}, {"shape": {"outer": [[73.59, -596.98], [70.01, -593.77], [68.33, -592.25], [70.58, -589.76], [72.67, -587.45], [74.72, -585.18], [76.8, -582.88], [79.26, -580.16], [83.68, -584.12], [83.75, -584.87], [83.83, -585.66], [82.07, -587.6], [79.98, -589.91], [77.9, -592.22], [75.86, -594.46], [73.59, -596.98]], "holes": []}}, {"shape": {"outer": [[244.31, -454.15], [242.77, -447.64], [245.03, -446.26], [247.97, -445.5], [250.53, -445.4], [250.42, -446.78], [250.88, -446.85], [250.51, -450.36], [249.3, -450.41], [247.98, -450.74], [246.56, -451.48], [245.33, -452.57], [244.31, -454.15]], "holes": []}}, {"shape": {"outer": [[251.69, -410.92], [250.21, -409.19], [249.25, -410.37], [248.31, -411.77], [247.49, -413.17], [247.14, -414.32], [246.9, -415.55], [246.89, -416.91], [247.11, -418.52], [247.75, -420.27], [248.93, -422.05], [250.36, -423.27], [252.36, -424.49], [254.91, -425.22], [257.68, -425.23], [260.81, -424.24], [259.16, -420.99], [257.57, -418.35], [255.64, -415.46], [253.04, -412.45], [251.69, -410.92]], "holes": []}}, {"shape": {"outer": [[141.73, -410.75], [144.15, -413.26], [146.78, -410.76], [144.36, -408.23], [141.73, -410.75]], "holes": []}}, {"shape": {"outer": [[171.34, -381.95], [176.71, -376.99], [179.0, -376.73], [181.23, -376.23], [183.4, -375.4], [184.92, -374.8], [186.38, -374.05], [189.24, -377.04], [196.22, -384.36], [184.06, -396.06], [171.34, -381.95]], "holes": []}}, {"shape": {"outer": [[269.8, -433.07], [290.45, -419.85], [291.69, -419.57], [292.57, -420.2], [292.94, -421.05], [283.45, -435.0], [282.86, -435.09], [282.46, -434.95], [282.35, -434.38], [285.54, -429.99], [283.75, -429.08], [281.01, -428.86], [278.95, -429.38], [277.09, -430.31], [275.79, -431.63], [274.97, -432.88], [276.55, -434.21], [276.92, -435.23], [277.11, -436.23], [276.7, -437.34], [275.73, -438.08], [273.63, -438.23], [272.26, -437.48], [271.32, -435.32], [269.8, -433.07]], "holes": []}}, {"shape": {"outer": [[254.85, -470.65], [260.49, -464.92], [266.79, -458.4], [266.85, -457.9], [266.51, -457.58], [265.82, -457.71], [263.97, -459.54], [261.31, -462.17], [258.03, -465.12], [255.54, -466.66], [253.23, -467.46], [251.53, -467.38], [250.59, -467.7], [250.18, -468.56], [250.18, -469.58], [250.87, -470.55], [252.17, -471.2], [253.43, -471.17], [254.85, -470.65]], "holes": []}}, {"shape": {"outer": [[278.93, -441.32], [270.23, -454.46], [269.81, -454.62], [269.29, -454.4], [269.23, -453.99], [270.81, -451.95], [272.5, -449.14], [273.25, -446.83], [273.57, -441.87], [273.95, -440.23], [275.18, -439.42], [276.6, -439.48], [278.93, -441.32]], "holes": []}}, {"shape": {"outer": [[52.85, -618.09], [47.77, -622.99], [46.5, -623.19], [45.35, -622.29], [45.43, -620.2], [48.23, -614.66], [51.43, -610.61], [54.92, -607.46], [57.21, -605.63], [58.45, -605.68], [60.05, -607.2], [60.21, -608.04], [51.44, -616.75], [52.85, -618.09]], "holes": []}}, {"shape": {"outer": [[311.4, -386.67], [313.95, -388.23], [314.46, -388.25], [315.25, -387.76], [316.76, -385.46], [318.49, -382.91], [320.27, -381.06], [321.18, -379.96], [321.0, -379.3], [318.76, -381.35], [317.4, -382.3], [315.68, -384.1], [313.65, -385.54], [311.4, -386.67]], "holes": []}}, {"shape": {"outer": [[310.9, -390.33], [311.98, -390.94], [312.35, -391.92], [311.9, -392.87], [297.35, -414.57], [296.08, -414.37], [295.52, -413.41], [296.23, -411.9], [310.9, -390.33]], "holes": []}}, {"shape": {"outer": [[196.34, -434.94], [195.21, -433.53], [197.03, -431.8], [202.65, -426.14], [207.74, -421.02], [208.37, -421.48], [209.19, -420.63], [208.66, -420.13], [213.69, -415.08], [214.38, -415.76], [215.49, -416.64], [216.86, -416.64], [216.58, -417.49], [213.32, -420.63], [209.58, -424.26], [207.03, -427.02], [203.97, -429.68], [202.09, -431.13], [199.39, -433.11], [196.34, -434.94]], "holes": []}}, {"shape": {"outer": [[143.73, -484.94], [149.13, -479.57], [157.89, -470.73], [162.32, -466.07], [164.19, -467.08], [162.51, -469.87], [159.98, -473.47], [156.83, -477.08], [153.15, -480.67], [148.9, -485.13], [146.82, -487.09], [145.94, -487.27], [145.91, -486.8], [145.78, -486.31], [144.94, -485.5], [144.48, -485.24], [143.73, -484.94]], "holes": []}}, {"shape": {"outer": [[-1479.81, -1424.41], [-1491.09, -1423.83], [-1490.56, -1409.46], [-1489.82, -1404.51], [-1488.46, -1399.84], [-1486.76, -1396.27], [-1485.05, -1393.64], [-1482.88, -1390.83], [-1478.48, -1386.45], [-1479.36, -1411.12], [-1479.81, -1424.41]], "holes": []}}, {"shape": {"outer": [[-1470.84, -1444.1], [-1466.64, -1444.21], [-1466.89, -1453.83], [-1467.12, -1462.49], [-1467.41, -1473.46], [-1467.51, -1477.7], [-1482.87, -1477.3], [-1489.6, -1477.13], [-1489.58, -1476.19], [-1491.07, -1474.92], [-1490.76, -1463.28], [-1472.85, -1463.75], [-1472.55, -1452.35], [-1471.05, -1452.4], [-1470.84, -1444.1]], "holes": []}}, {"shape": {"outer": [[-1444.49, -862.09], [-1444.44, -860.86], [-1435.49, -861.24], [-1435.54, -862.46], [-1444.49, -862.09]], "holes": []}}, {"shape": {"outer": [[-1429.29, -862.94], [-1429.24, -861.73], [-1420.29, -862.11], [-1420.34, -863.33], [-1429.29, -862.94]], "holes": []}}, {"shape": {"outer": [[-1413.84, -863.63], [-1413.79, -862.41], [-1404.85, -862.79], [-1404.9, -864.01], [-1413.84, -863.63]], "holes": []}}, {"shape": {"outer": [[-1398.35, -864.32], [-1398.29, -863.1], [-1389.35, -863.47], [-1389.4, -864.7], [-1398.35, -864.32]], "holes": []}}, {"shape": {"outer": [[-1153.86, -789.52], [-1128.5, -801.47], [-1132.38, -803.55], [-1152.31, -794.26], [-1153.86, -789.52]], "holes": []}}, {"shape": {"outer": [[-1218.73, -766.57], [-1215.45, -765.36], [-1185.13, -779.33], [-1180.1, -777.48], [-1153.86, -789.52], [-1152.31, -794.26], [-1132.38, -803.55], [-1134.61, -804.8], [-1218.73, -766.57]], "holes": []}}, {"shape": {"outer": [[-1250.68, -808.42], [-1205.62, -828.56], [-1207.96, -833.74], [-1253.02, -813.6], [-1250.68, -808.42]], "holes": []}}, {"shape": {"outer": [[-1178.96, -822.22], [-1131.92, -843.62], [-1134.18, -848.56], [-1181.23, -827.17], [-1178.96, -822.22]], "holes": []}}, {"shape": {"outer": [[-1288.8, -796.59], [-1286.52, -791.7], [-1331.96, -770.7], [-1334.23, -775.59], [-1288.8, -796.59]], "holes": []}}, {"shape": {"outer": [[-1118.77, -857.32], [-1123.81, -854.81], [-1118.91, -845.03], [-1113.87, -847.54], [-1118.77, -857.32]], "holes": []}}, {"shape": {"outer": [[-1082.6, -825.84], [-1081.1, -822.55], [-1006.11, -856.51], [-1007.6, -859.78], [-1082.6, -825.84]], "holes": []}}, {"shape": {"outer": [[-1123.93, -803.21], [-1121.64, -807.21], [-1104.41, -815.29], [-1100.44, -813.92], [-1123.93, -803.21]], "holes": []}}, {"shape": {"outer": [[-1234.87, -753.11], [-1231.78, -761.19], [-1225.93, -759.04], [-1226.82, -756.84], [-1234.87, -753.11]], "holes": []}}, {"shape": {"outer": [[-667.95, -126.64], [-669.86, -129.06], [-677.78, -128.7], [-677.09, -115.31], [-675.55, -116.73], [-675.92, -123.09], [-667.77, -123.55], [-667.95, -126.64]], "holes": []}}, {"shape": {"outer": [[-1109.61, -35.73], [-1110.94, -64.85], [-1112.37, -64.79], [-1116.79, -64.58], [-1117.98, -64.53], [-1117.75, -59.59], [-1116.09, -59.66], [-1115.2, -40.17], [-1116.44, -40.11], [-1116.27, -36.42], [-1115.16, -36.47], [-1115.11, -35.47], [-1109.61, -35.73]], "holes": []}}, {"shape": {"outer": [[-1103.05, -40.83], [-1097.56, -41.07], [-1098.37, -58.74], [-1097.22, -58.79], [-1097.53, -65.46], [-1098.85, -65.4], [-1104.16, -65.16], [-1103.05, -40.83]], "holes": []}}, {"shape": {"outer": [[-1109.61, -35.73], [-1110.94, -64.85], [-1112.37, -64.79], [-1116.79, -64.58], [-1117.98, -64.53], [-1117.75, -59.59], [-1116.09, -59.66], [-1115.2, -40.17], [-1116.44, -40.11], [-1116.27, -36.42], [-1115.16, -36.47], [-1115.11, -35.47], [-1109.61, -35.73]], "holes": []}}, {"shape": {"outer": [[-1095.78, -31.05], [-1096.11, -37.9], [-1097.22, -58.79], [-1097.53, -65.46], [-1096.79, -65.43], [-1095.97, -65.47], [-1092.97, -65.63], [-1092.23, -65.66], [-1091.43, -65.7], [-1087.23, -65.92], [-1086.78, -65.94], [-1086.3, -56.89], [-1084.98, -31.62], [-1090.43, -31.34], [-1095.78, -31.05]], "holes": []}}, {"shape": {"outer": [[-1092.23, -65.66], [-1090.43, -31.34], [-1084.98, -31.62], [-1086.3, -56.89], [-1086.78, -65.94], [-1087.23, -65.92], [-1091.43, -65.7], [-1092.23, -65.66]], "holes": []}}, {"shape": {"outer": [[-1095.63, -58.87], [-1095.97, -65.47], [-1092.97, -65.63], [-1092.23, -65.66], [-1090.43, -31.34], [-1095.78, -31.05], [-1096.11, -37.9], [-1097.22, -58.79], [-1095.63, -58.87]], "holes": []}}, {"shape": {"outer": [[-1097.53, -65.46], [-1096.79, -65.43], [-1095.97, -65.47], [-1092.97, -65.63], [-1092.23, -65.66], [-1091.43, -65.7], [-1087.23, -65.92], [-1086.78, -65.94], [-1086.07, -65.94], [-1085.13, -65.96], [-1084.69, -56.97], [-1086.3, -56.89], [-1084.98, -31.62], [-1090.43, -31.34], [-1095.78, -31.05], [-1096.11, -37.9], [-1097.22, -58.79], [-1097.53, -65.46]], "holes": []}}, {"shape": {"outer": [[-1109.61, -35.73], [-1104.42, -35.97], [-1104.5, -37.67], [-1104.6, -40.75], [-1105.01, -40.72], [-1106.11, -65.07], [-1108.41, -64.97], [-1110.94, -64.85], [-1109.61, -35.73]], "holes": []}}, {"shape": {"outer": [[-1063.25, -67.08], [-1056.73, -67.4], [-1051.01, -67.69], [-1049.39, -33.33], [-1061.65, -32.76], [-1063.25, -67.08]], "holes": []}}, {"shape": {"outer": [[-1016.53, -58.97], [-996.01, -60.19], [-996.59, -71.01], [-1015.22, -69.98], [-1017.1, -69.89], [-1016.53, -58.97]], "holes": []}}, {"shape": {"outer": [[-1054.2, 5.02], [-1055.17, -15.37], [-1050.94, -15.57], [-1051.05, -18.1], [-1046.67, -18.32], [-1040.32, -18.61], [-1037.53, -18.75], [-1037.49, -17.74], [-1037.44, -16.64], [-1037.39, -15.54], [-1036.82, -3.88], [-1036.7, -1.49], [-1036.44, 4.18], [-1054.2, 5.02]], "holes": []}}, {"shape": {"outer": [[-1037.39, -15.54], [-1056.76, -14.57], [-1055.67, 7.2], [-1046.1, 6.71], [-1036.33, 6.21], [-1036.36, 5.54], [-1036.7, -1.49], [-1036.82, -3.88], [-1037.39, -15.54]], "holes": []}}, {"shape": {"outer": [[-1037.6, -20.73], [-1037.53, -18.75], [-1037.49, -17.74], [-1034.48, -17.85], [-1034.59, -20.84], [-1037.6, -20.73]], "holes": []}}, {"shape": {"outer": [[-1033.37, 5.39], [-1033.28, 7.2], [-1036.27, 7.35], [-1036.33, 6.21], [-1036.36, 5.54], [-1033.37, 5.39]], "holes": []}}, {"shape": {"outer": [[-1119.24, -84.43], [-1120.46, -108.84], [-1124.53, -108.63], [-1123.31, -84.23], [-1119.87, -84.4], [-1119.24, -84.43]], "holes": []}}, {"shape": {"outer": [[-1114.63, -84.66], [-1115.85, -109.07], [-1120.46, -108.84], [-1119.24, -84.43], [-1118.72, -84.46], [-1114.63, -84.66]], "holes": []}}, {"shape": {"outer": [[-1114.63, -84.66], [-1113.95, -84.69], [-1110.43, -84.87], [-1110.68, -90.11], [-1111.06, -98.16], [-1110.82, -98.17], [-1111.32, -108.82], [-1111.35, -109.3], [-1115.85, -109.07], [-1114.63, -84.66]], "holes": []}}, {"shape": {"outer": [[-1106.4, -109.05], [-1105.51, -90.35], [-1105.25, -85.13], [-1106.14, -85.08], [-1110.43, -84.87], [-1110.68, -90.11], [-1111.06, -98.16], [-1110.82, -98.17], [-1111.32, -108.82], [-1106.4, -109.05]], "holes": []}}, {"shape": {"outer": [[-1103.15, -85.24], [-1103.39, -90.45], [-1105.51, -90.35], [-1106.4, -109.05], [-1099.91, -109.36], [-1099.21, -109.4], [-1098.98, -104.54], [-1098.28, -89.94], [-1098.07, -85.48], [-1100.98, -85.34], [-1103.15, -85.24]], "holes": []}}, {"shape": {"outer": [[-1092.07, -85.79], [-1092.13, -87.06], [-1092.57, -96.34], [-1092.05, -96.37], [-1092.71, -110.09], [-1099.23, -109.78], [-1099.21, -109.4], [-1098.98, -104.54], [-1098.13, -104.58], [-1097.43, -89.98], [-1098.28, -89.94], [-1098.07, -85.48], [-1094.38, -85.68], [-1092.07, -85.79]], "holes": []}}, {"shape": {"outer": [[-1091.03, -87.12], [-1090.97, -85.84], [-1089.75, -85.9], [-1085.27, -86.13], [-1086.38, -109.79], [-1088.38, -109.7], [-1088.4, -110.29], [-1092.71, -110.09], [-1092.05, -96.37], [-1091.48, -96.4], [-1091.03, -87.12]], "holes": []}}, {"shape": {"outer": [[-699.5, -92.19], [-699.47, -91.48], [-694.98, -91.7], [-695.02, -92.41], [-699.5, -92.19]], "holes": []}}, {"shape": {"outer": [[-607.78, -90.08], [-607.91, -89.48], [-602.84, -88.36], [-602.19, -89.02], [-601.22, -89.99], [-601.57, -90.28], [-604.48, -90.17], [-607.78, -90.08]], "holes": []}}, {"shape": {"outer": [[-633.13, -59.84], [-628.06, -58.64], [-626.07, -60.85], [-631.25, -62.02], [-633.13, -59.84]], "holes": []}}, {"shape": {"outer": [[-630.02, -63.44], [-624.95, -62.13], [-623.0, -64.31], [-628.27, -65.47], [-630.02, -63.44]], "holes": []}}, {"shape": {"outer": [[-628.27, -65.47], [-623.0, -64.31], [-620.97, -66.58], [-626.28, -67.77], [-628.27, -65.47]], "holes": []}}, {"shape": {"outer": [[-626.28, -67.77], [-620.97, -66.58], [-619.0, -68.79], [-624.35, -70.01], [-626.28, -67.77]], "holes": []}}, {"shape": {"outer": [[-624.35, -70.01], [-619.0, -68.79], [-617.01, -71.0], [-622.47, -72.18], [-624.35, -70.01]], "holes": []}}, {"shape": {"outer": [[-622.47, -72.18], [-617.01, -71.0], [-614.89, -73.38], [-620.39, -74.59], [-622.47, -72.18]], "holes": []}}, {"shape": {"outer": [[-620.39, -74.59], [-614.89, -73.38], [-612.9, -75.6], [-618.35, -76.95], [-620.39, -74.59]], "holes": []}}, {"shape": {"outer": [[-618.35, -76.95], [-612.9, -75.6], [-610.91, -77.85], [-616.38, -79.24], [-618.35, -76.95]], "holes": []}}, {"shape": {"outer": [[-616.38, -79.24], [-610.91, -77.85], [-608.89, -80.11], [-614.31, -81.63], [-616.38, -79.24]], "holes": []}}, {"shape": {"outer": [[-614.31, -81.63], [-608.89, -80.11], [-606.8, -82.44], [-612.33, -83.92], [-614.31, -81.63]], "holes": []}}, {"shape": {"outer": [[-638.34, -55.56], [-633.99, -51.91], [-636.0, -49.77], [-637.83, -47.81], [-641.62, -43.74], [-643.51, -41.71], [-645.47, -39.59], [-647.58, -37.33], [-651.8, -40.47], [-651.31, -41.01], [-649.43, -43.13], [-647.56, -45.21], [-645.74, -47.27], [-643.8, -49.43], [-642.07, -51.37], [-640.41, -53.24], [-638.34, -55.56]], "holes": []}}, {"shape": {"outer": [[-645.47, -39.59], [-651.31, -41.01], [-649.43, -43.13], [-643.51, -41.71], [-645.47, -39.59]], "holes": []}}, {"shape": {"outer": [[-643.51, -41.71], [-649.43, -43.13], [-647.56, -45.21], [-641.62, -43.74], [-643.51, -41.71]], "holes": []}}, {"shape": {"outer": [[-641.62, -43.74], [-647.56, -45.21], [-645.74, -47.27], [-639.83, -45.76], [-641.62, -43.74]], "holes": []}}, {"shape": {"outer": [[-639.83, -45.76], [-645.74, -47.27], [-643.8, -49.43], [-637.83, -47.81], [-639.83, -45.76]], "holes": []}}, {"shape": {"outer": [[-637.83, -47.81], [-643.8, -49.43], [-642.07, -51.37], [-636.0, -49.77], [-637.83, -47.81]], "holes": []}}, {"shape": {"outer": [[-636.0, -49.77], [-642.07, -51.37], [-640.41, -53.24], [-633.99, -51.91], [-636.0, -49.77]], "holes": []}}, {"shape": {"outer": [[-608.69, -89.33], [-608.98, -88.12], [-603.13, -86.75], [-602.85, -87.96], [-608.69, -89.33]], "holes": []}}, {"shape": {"outer": [[-676.56, -71.85], [-672.19, -67.92], [-671.27, -68.94], [-669.04, -71.6], [-669.12, -73.26], [-669.83, -87.6], [-677.28, -87.28], [-676.56, -71.85]], "holes": []}}, {"shape": {"outer": [[-682.21, -65.62], [-676.56, -71.85], [-677.28, -87.28], [-700.25, -86.2], [-700.87, -84.94], [-701.65, -83.36], [-682.21, -65.62]], "holes": []}}, {"shape": {"outer": [[-613.92, -86.96], [-612.2, -88.85], [-612.31, -89.43], [-612.61, -90.04], [-612.93, -90.35], [-615.68, -90.22], [-623.54, -89.84], [-622.91, -77.16], [-613.92, -86.96]], "holes": []}}, {"shape": {"outer": [[-646.3, -88.79], [-645.62, -74.86], [-652.3, -74.53], [-637.35, -60.87], [-630.91, -67.89], [-638.25, -75.1], [-638.87, -89.11], [-646.3, -88.79]], "holes": []}}, {"shape": {"outer": [[-737.54, -71.9], [-738.06, -84.24], [-735.41, -84.37], [-731.14, -84.59], [-728.0, -81.37], [-736.68, -71.94], [-737.54, -71.9]], "holes": []}}, {"shape": {"outer": [[-771.5, -82.43], [-770.79, -64.64], [-763.85, -58.02], [-759.79, -64.65], [-760.57, -83.02], [-771.5, -82.43]], "holes": []}}, {"shape": {"outer": [[-763.85, -58.02], [-751.52, -58.55], [-751.59, -59.98], [-752.59, -83.44], [-758.49, -83.12], [-760.57, -83.02], [-759.79, -64.65], [-763.85, -58.02]], "holes": []}}, {"shape": {"outer": [[-776.63, -62.31], [-772.16, -62.49], [-772.24, -64.58], [-770.79, -64.64], [-771.5, -82.43], [-772.64, -82.36], [-777.41, -82.05], [-776.73, -65.53], [-776.63, -62.31]], "holes": []}}, {"shape": {"outer": [[-751.59, -59.98], [-745.82, -62.76], [-746.28, -74.29], [-746.68, -83.78], [-749.11, -83.65], [-752.59, -83.44], [-751.59, -59.98]], "holes": []}}, {"shape": {"outer": [[-745.11, -74.34], [-745.52, -83.84], [-744.34, -83.9], [-741.51, -84.05], [-739.29, -84.17], [-738.76, -71.84], [-740.67, -71.77], [-740.47, -67.83], [-744.82, -67.68], [-745.11, -74.34]], "holes": []}}, {"shape": {"outer": [[-1080.77, -130.72], [-1080.71, -129.29], [-1089.68, -128.9], [-1089.74, -130.33], [-1080.77, -130.72]], "holes": []}}, {"shape": {"outer": [[-1111.84, -251.69], [-1109.96, -249.95], [-1098.97, -250.59], [-1097.33, -252.52], [-1111.84, -251.69]], "holes": []}}, {"shape": {"outer": [[-1118.71, -246.56], [-1117.6, -227.68], [-1112.92, -227.96], [-1114.02, -246.86], [-1118.71, -246.56]], "holes": []}}, {"shape": {"outer": [[-1110.8, -247.06], [-1109.72, -228.14], [-1104.84, -228.41], [-1105.94, -247.37], [-1110.8, -247.06]], "holes": []}}, {"shape": {"outer": [[-1092.62, -248.2], [-1091.62, -227.53], [-1097.97, -227.21], [-1098.46, -228.78], [-1099.49, -247.77], [-1092.62, -248.2]], "holes": []}}, {"shape": {"outer": [[-1085.43, -227.84], [-1091.62, -227.53], [-1092.62, -248.2], [-1086.56, -248.59], [-1085.43, -227.84]], "holes": []}}, {"shape": {"outer": [[-1035.23, -37.95], [-1033.29, -39.43], [-1033.73, -49.14], [-1035.11, -50.29], [-1035.45, -59.37], [-1034.26, -61.07], [-1034.43, -64.77], [-1035.72, -66.36], [-1035.86, -69.18], [-1037.09, -69.12], [-1037.06, -68.44], [-1036.75, -68.46], [-1035.23, -37.95]], "holes": []}}, {"shape": {"outer": [[-1037.7, -73.41], [-1037.59, -71.54], [-1031.99, -71.87], [-1032.1, -73.75], [-1037.7, -73.41]], "holes": []}}, {"shape": {"outer": [[-1023.67, -74.26], [-1023.56, -72.38], [-1017.96, -72.71], [-1018.07, -74.6], [-1023.67, -74.26]], "holes": []}}, {"shape": {"outer": [[-1045.92, -72.92], [-1045.81, -71.05], [-1040.2, -71.38], [-1040.31, -73.25], [-1045.92, -72.92]], "holes": []}}, {"shape": {"outer": [[-1055.39, -72.35], [-1055.28, -70.47], [-1049.66, -70.8], [-1049.78, -72.68], [-1055.39, -72.35]], "holes": []}}, {"shape": {"outer": [[-668.25, -131.95], [-667.95, -126.64], [-667.77, -123.55], [-666.84, -107.05], [-659.25, -107.42], [-660.31, -127.23], [-665.64, -132.1], [-668.25, -131.95]], "holes": []}}, {"shape": {"outer": [[-642.49, -108.31], [-643.69, -133.32], [-654.01, -132.83], [-652.8, -107.76], [-642.49, -108.31]], "holes": []}}, {"shape": {"outer": [[-1055.29, -167.65], [-1054.12, -167.72], [-1054.27, -170.29], [-1055.18, -170.25], [-1055.29, -167.65]], "holes": []}}, {"shape": {"outer": [[-1055.67, -179.79], [-1055.35, -172.2], [-1054.36, -172.24], [-1054.69, -179.84], [-1055.67, -179.79]], "holes": []}}, {"shape": {"outer": [[-1051.18, -87.84], [-1048.35, -87.98], [-1045.63, -88.09], [-1044.04, -88.17], [-1041.75, -88.27], [-1040.14, -88.36], [-1038.51, -88.43], [-1039.77, -116.14], [-1052.51, -115.59], [-1051.18, -87.84]], "holes": []}}, {"shape": {"outer": [[-1038.51, -88.43], [-1037.88, -88.5], [-1036.44, -88.58], [-1035.38, -88.62], [-1034.25, -88.67], [-1032.75, -88.75], [-1030.64, -88.95], [-1031.68, -116.48], [-1039.77, -116.14], [-1038.51, -88.43]], "holes": []}}, {"shape": {"outer": [[-1052.51, -115.59], [-1052.65, -118.98], [-1053.17, -130.92], [-1032.33, -131.81], [-1031.68, -116.48], [-1039.77, -116.14], [-1052.51, -115.59]], "holes": []}}, {"shape": {"outer": [[-922.21, -94.03], [-922.66, -103.27], [-918.14, -103.49], [-916.42, -103.58], [-915.97, -94.33], [-922.21, -94.03]], "holes": []}}, {"shape": {"outer": [[-922.66, -103.27], [-930.08, -102.91], [-929.63, -93.66], [-922.21, -94.03], [-922.66, -103.27]], "holes": []}}, {"shape": {"outer": [[-927.29, -124.49], [-930.2, -121.17], [-929.67, -112.71], [-923.57, -110.85], [-918.39, -116.76], [-927.29, -124.49]], "holes": []}}, {"shape": {"outer": [[-951.49, -146.22], [-959.49, -137.1], [-959.52, -135.87], [-958.04, -134.56], [-955.99, -132.64], [-946.36, -133.06], [-946.38, -133.52], [-942.28, -138.2], [-951.49, -146.22]], "holes": []}}, {"shape": {"outer": [[-953.31, -111.25], [-945.28, -111.67], [-944.35, -92.97], [-944.29, -92.51], [-952.33, -92.1], [-953.31, -111.25]], "holes": []}}, {"shape": {"outer": [[-970.87, -112.66], [-969.8, -91.86], [-959.44, -92.39], [-960.46, -112.14], [-966.2, -111.85], [-966.26, -112.9], [-970.87, -112.66]], "holes": []}}, {"shape": {"outer": [[-970.9, -113.3], [-976.01, -113.04], [-975.66, -106.81], [-974.88, -91.77], [-974.91, -91.59], [-969.8, -91.86], [-970.9, -113.3]], "holes": []}}, {"shape": {"outer": [[-975.66, -106.81], [-983.69, -106.36], [-982.89, -91.37], [-974.88, -91.77], [-975.66, -106.81]], "holes": []}}, {"shape": {"outer": [[-948.25, -73.08], [-947.73, -62.15], [-946.43, -62.22], [-945.35, -39.7], [-945.3, -38.85], [-953.29, -38.47], [-953.7, -47.09], [-954.14, -47.07], [-954.17, -47.57], [-955.05, -66.06], [-955.78, -66.03], [-956.09, -72.7], [-948.25, -73.08]], "holes": []}}, {"shape": {"outer": [[-956.09, -72.7], [-948.25, -73.08], [-946.95, -73.14], [-946.43, -62.22], [-945.35, -39.7], [-945.3, -38.85], [-953.29, -38.47], [-953.7, -47.09], [-954.14, -47.07], [-954.17, -47.57], [-955.05, -66.06], [-955.78, -66.03], [-956.09, -72.7]], "holes": []}}, {"shape": {"outer": [[-994.93, -90.74], [-995.72, -105.72], [-983.69, -106.36], [-982.89, -91.37], [-983.93, -91.32], [-994.05, -90.79], [-994.93, -90.74]], "holes": []}}, {"shape": {"outer": [[-1070.73, -112.46], [-1070.68, -111.34], [-1067.77, -111.49], [-1067.61, -108.13], [-1066.59, -108.18], [-1066.78, -112.63], [-1070.73, -112.46]], "holes": []}}, {"shape": {"outer": [[258.08, 854.61], [276.49, 834.02], [249.58, 810.15], [234.19, 827.37], [238.52, 831.22], [235.51, 834.58], [238.16, 836.93], [258.08, 854.61]], "holes": []}}, {"shape": {"outer": [[-1152.21, -62.91], [-1151.79, -54.3], [-1150.88, -35.3], [-1154.46, -35.13], [-1154.17, -29.24], [-1136.41, -30.09], [-1137.19, -46.27], [-1138.02, -63.57], [-1146.36, -63.2], [-1148.27, -63.07], [-1149.37, -63.05], [-1150.33, -62.98], [-1152.21, -62.91]], "holes": []}}, {"shape": {"outer": [[-1149.37, -63.05], [-1148.27, -63.07], [-1146.36, -63.2], [-1138.02, -63.57], [-1137.19, -46.27], [-1136.41, -30.09], [-1154.17, -29.24], [-1154.46, -35.13], [-1150.88, -35.3], [-1151.79, -54.3], [-1148.96, -54.44], [-1149.37, -63.05]], "holes": []}}, {"shape": {"outer": [[-1146.36, -63.2], [-1139.79, -63.48], [-1138.02, -63.57], [-1137.19, -46.27], [-1136.41, -30.09], [-1154.17, -29.24], [-1154.46, -35.13], [-1150.88, -35.3], [-1151.79, -54.3], [-1148.96, -54.44], [-1145.94, -54.58], [-1146.36, -63.2]], "holes": []}}, {"shape": {"outer": [[-1177.46, 139.36], [-1182.45, 142.18], [-1182.28, 145.13], [-1181.22, 144.48], [-1177.31, 142.1], [-1177.46, 139.36]], "holes": []}}, {"shape": {"outer": [[-1177.63, 136.4], [-1182.63, 139.22], [-1182.45, 142.18], [-1177.46, 139.36], [-1177.63, 136.4]], "holes": []}}, {"shape": {"outer": [[-1177.79, 133.5], [-1182.81, 136.4], [-1182.63, 139.22], [-1177.63, 136.4], [-1177.79, 133.5]], "holes": []}}, {"shape": {"outer": [[-1177.96, 130.63], [-1182.98, 133.49], [-1182.81, 136.4], [-1177.79, 133.5], [-1177.96, 130.63]], "holes": []}}, {"shape": {"outer": [[-1108.84, 39.39], [-1108.9, 38.2], [-1109.63, 38.23], [-1109.73, 36.16], [-1093.93, 35.43], [-1093.84, 37.49], [-1093.78, 38.66], [-1108.84, 39.39]], "holes": []}}, {"shape": {"outer": [[-1134.07, 45.37], [-1133.96, 48.66], [-1132.89, 49.19], [-1129.71, 45.12], [-1134.07, 45.37]], "holes": []}}, {"shape": {"outer": [[-1120.52, 14.16], [-1120.37, 17.23], [-1113.66, 16.89], [-1114.16, 7.19], [-1114.59, -1.38], [-1116.3, -1.29], [-1115.55, 12.89], [-1119.34, 13.09], [-1119.28, 14.08], [-1120.52, 14.16]], "holes": []}}, {"shape": {"outer": [[-1130.87, 13.64], [-1130.66, 17.75], [-1125.48, 17.49], [-1125.64, 14.42], [-1127.05, 14.48], [-1127.11, 13.45], [-1130.87, 13.64]], "holes": []}}, {"shape": {"outer": [[-1110.49, 12.27], [-1110.28, 16.73], [-1112.16, 16.82], [-1113.05, -1.53], [-1112.37, -1.57], [-1111.68, 12.31], [-1110.49, 12.27]], "holes": []}}, {"shape": {"outer": [[-1117.15, -17.55], [-1116.65, -8.2], [-1115.31, -8.28], [-1115.78, -17.62], [-1117.15, -17.55]], "holes": []}}, {"shape": {"outer": [[-1699.94, -158.66], [-1698.85, -160.8], [-1696.97, -159.66], [-1693.3, -158.03], [-1688.82, -156.78], [-1683.47, -155.02], [-1682.71, -153.11], [-1682.53, -150.91], [-1682.7, -149.82], [-1683.37, -149.42], [-1685.33, -149.08], [-1692.22, -153.13], [-1696.96, -152.26], [-1699.94, -158.66]], "holes": []}}, {"shape": {"outer": [[-1730.22, -178.14], [-1728.57, -175.44], [-1723.45, -174.95], [-1712.63, -173.45], [-1699.55, -170.48], [-1697.15, -169.65], [-1691.61, -166.61], [-1686.23, -164.96], [-1682.39, -164.63], [-1677.08, -165.26], [-1664.02, -169.77], [-1659.74, -170.92], [-1645.02, -171.45], [-1634.24, -171.8], [-1630.99, -171.19], [-1629.69, -171.18], [-1627.47, -172.47], [-1626.99, -173.39], [-1627.75, -173.91], [-1632.17, -173.6], [-1658.44, -172.41], [-1658.39, -173.44], [-1663.93, -175.17], [-1669.52, -176.06], [-1674.59, -176.19], [-1691.78, -175.23], [-1698.98, -175.37], [-1710.83, -176.89], [-1725.39, -177.96], [-1730.22, -178.14]], "holes": []}}, {"shape": {"outer": [[-1733.54, -175.65], [-1732.28, -178.24], [-1735.47, -178.18], [-1739.0, -177.03], [-1744.68, -174.82], [-1750.03, -171.99], [-1760.43, -164.13], [-1773.28, -154.75], [-1772.25, -154.74], [-1754.0, -167.1], [-1749.13, -170.1], [-1744.17, -172.79], [-1740.54, -174.3], [-1733.54, -175.65]], "holes": []}}, {"shape": {"outer": [[-1623.42, -168.66], [-1620.7, -167.44], [-1618.04, -166.01], [-1617.11, -165.5], [-1616.42, -165.08], [-1614.41, -163.68], [-1612.35, -162.11], [-1611.62, -161.59], [-1611.03, -161.15], [-1608.93, -159.26], [-1604.8, -163.79], [-1606.91, -165.7], [-1607.69, -166.3], [-1608.62, -166.94], [-1610.68, -168.52], [-1613.03, -170.1], [-1613.85, -170.6], [-1614.78, -171.19], [-1617.84, -172.72], [-1620.92, -174.0], [-1623.42, -168.66]], "holes": []}}, {"shape": {"outer": [[-1506.45, -153.52], [-1505.93, -143.48], [-1510.16, -145.37], [-1511.26, -146.51], [-1511.63, -147.91], [-1511.51, -149.36], [-1510.79, -150.66], [-1506.45, -153.52]], "holes": []}}, {"shape": {"outer": [[-1623.42, -168.66], [-1620.92, -174.0], [-1617.84, -172.72], [-1620.7, -167.44], [-1623.42, -168.66]], "holes": []}}, {"shape": {"outer": [[-1620.7, -167.44], [-1617.84, -172.72], [-1614.78, -171.19], [-1618.04, -166.01], [-1620.7, -167.44]], "holes": []}}, {"shape": {"outer": [[-1616.42, -165.08], [-1613.03, -170.1], [-1610.68, -168.52], [-1614.41, -163.68], [-1616.42, -165.08]], "holes": []}}, {"shape": {"outer": [[-1614.41, -163.68], [-1610.68, -168.52], [-1608.62, -166.94], [-1612.35, -162.11], [-1614.41, -163.68]], "holes": []}}, {"shape": {"outer": [[-1611.03, -161.15], [-1608.93, -159.26], [-1604.8, -163.79], [-1606.91, -165.7], [-1611.03, -161.15]], "holes": []}}, {"shape": {"outer": [[-1607.35, -179.09], [-1611.48, -172.49], [-1607.93, -169.88], [-1607.35, -169.3], [-1606.87, -169.23], [-1606.71, -169.66], [-1607.0, -178.51], [-1607.35, -179.09]], "holes": []}}, {"shape": {"outer": [[-1346.08, 60.76], [-1346.15, 58.68], [-1344.4, 58.62], [-1344.42, 58.17], [-1342.79, 58.12], [-1342.71, 60.09], [-1341.48, 60.05], [-1341.46, 60.65], [-1338.89, 60.55], [-1338.9, 59.97], [-1337.29, 59.92], [-1337.36, 57.84], [-1333.96, 57.72], [-1333.81, 62.21], [-1343.95, 62.56], [-1344.01, 60.69], [-1346.08, 60.76]], "holes": []}}, {"shape": {"outer": [[-1516.1, -125.35], [-1503.65, -125.91], [-1503.74, -128.67], [-1513.87, -128.15], [-1513.86, -134.31], [-1513.99, -134.89], [-1514.27, -135.35], [-1514.74, -135.47], [-1515.21, -135.31], [-1515.54, -134.69], [-1515.74, -133.97], [-1516.0, -130.84], [-1516.12, -127.71], [-1516.1, -125.35]], "holes": []}}, {"shape": {"outer": [[-1483.29, -79.74], [-1466.45, -82.64], [-1466.49, -83.52], [-1466.59, -84.12], [-1466.77, -84.56], [-1467.11, -85.05], [-1467.75, -85.41], [-1468.17, -85.55], [-1468.58, -85.62], [-1468.71, -85.12], [-1473.65, -84.84], [-1476.51, -84.35], [-1479.73, -83.29], [-1481.33, -82.61], [-1482.47, -81.87], [-1483.4, -81.08], [-1483.93, -80.33], [-1483.29, -79.74]], "holes": []}}, {"shape": {"outer": [[-1466.21, -74.27], [-1465.74, -63.89], [-1466.02, -63.89], [-1466.0, -63.2], [-1466.12, -62.65], [-1466.55, -62.04], [-1467.31, -61.37], [-1468.27, -60.92], [-1469.36, -60.8], [-1471.15, -60.74], [-1471.14, -60.12], [-1474.04, -60.34], [-1475.23, -60.64], [-1476.31, -61.21], [-1477.49, -62.29], [-1478.53, -63.55], [-1481.6, -68.03], [-1481.09, -70.35], [-1478.92, -71.43], [-1476.71, -71.74], [-1474.56, -70.71], [-1472.46, -71.18], [-1469.41, -72.95], [-1467.49, -73.89], [-1466.21, -74.27]], "holes": []}}, {"shape": {"outer": [[-1481.6, -68.03], [-1483.92, -70.7], [-1484.87, -71.98], [-1485.03, -73.47], [-1484.61, -74.67], [-1483.77, -75.21], [-1483.19, -75.45], [-1466.41, -78.2], [-1466.21, -74.27], [-1467.49, -73.89], [-1469.41, -72.95], [-1472.46, -71.18], [-1474.56, -70.71], [-1476.71, -71.74], [-1478.92, -71.43], [-1481.09, -70.35], [-1481.6, -68.03]], "holes": []}}, {"shape": {"outer": [[-1533.86, 79.94], [-1535.64, 79.83], [-1537.42, 79.92], [-1538.61, 80.22], [-1540.26, 81.04], [-1541.94, 80.99], [-1543.09, 80.31], [-1543.32, 79.19], [-1543.73, 78.44], [-1544.38, 77.84], [-1545.58, 77.6], [-1546.85, 77.84], [-1547.53, 78.68], [-1548.92, 80.08], [-1550.28, 80.92], [-1552.26, 81.43], [-1553.25, 81.47], [-1554.45, 82.13], [-1554.62, 80.1], [-1554.88, 78.23], [-1554.91, 76.89], [-1554.31, 76.07], [-1553.6, 75.13], [-1552.97, 73.55], [-1552.23, 72.15], [-1552.0, 71.39], [-1551.33, 70.0], [-1550.77, 68.36], [-1550.09, 66.62], [-1549.75, 64.59], [-1549.63, 62.5], [-1549.46, 60.1], [-1550.31, 59.5], [-1550.95, 59.95], [-1551.58, 60.79], [-1552.07, 60.87], [-1552.47, 60.74], [-1552.98, 61.08], [-1554.07, 60.91], [-1555.2, 60.4], [-1556.1, 59.23], [-1556.36, 57.98], [-1555.82, 57.29], [-1554.83, 56.77], [-1551.69, 57.32], [-1551.17, 55.72], [-1550.71, 54.0], [-1554.47, 53.23], [-1554.9, 54.26], [-1555.77, 53.78], [-1554.58, 50.74], [-1552.45, 50.69], [-1551.12, 51.25], [-1549.83, 51.66], [-1549.32, 51.55], [-1548.41, 50.24], [-1548.43, 49.18], [-1548.67, 48.38], [-1548.74, 48.14], [-1548.89, 47.12], [-1548.53, 46.28], [-1548.4, 46.0], [-1544.95, 46.55], [-1543.94, 46.71], [-1548.08, 73.76], [-1543.1, 74.98], [-1542.93, 77.95], [-1539.3, 77.75], [-1534.02, 77.53], [-1533.86, 79.94]], "holes": []}}, {"shape": {"outer": [[-1526.95, 79.95], [-1526.25, 80.87], [-1525.05, 81.06], [-1524.16, 81.05], [-1522.65, 80.68], [-1522.41, 80.39], [-1522.46, 79.17], [-1526.14, 79.3], [-1526.11, 79.91], [-1526.95, 79.95]], "holes": []}}, {"shape": {"outer": [[-1522.41, 80.39], [-1522.33, 82.15], [-1546.04, 83.12], [-1545.98, 82.45], [-1553.81, 82.96], [-1554.45, 82.13], [-1553.25, 81.47], [-1552.26, 81.43], [-1550.28, 80.92], [-1548.92, 80.08], [-1547.53, 78.68], [-1546.85, 77.84], [-1545.58, 77.6], [-1544.38, 77.84], [-1543.73, 78.44], [-1543.32, 79.19], [-1543.09, 80.31], [-1541.94, 80.99], [-1540.26, 81.04], [-1538.61, 80.22], [-1537.42, 79.92], [-1535.64, 79.83], [-1533.86, 79.94], [-1533.84, 80.26], [-1526.95, 79.95], [-1526.25, 80.87], [-1525.05, 81.06], [-1524.16, 81.05], [-1522.65, 80.68], [-1522.41, 80.39]], "holes": []}}, {"shape": {"outer": [[-1554.91, 76.89], [-1554.94, 75.41], [-1556.42, 70.15], [-1557.77, 64.48], [-1557.77, 60.75], [-1557.33, 57.63], [-1556.9, 55.84], [-1556.63, 55.7], [-1556.24, 55.68], [-1554.63, 55.8], [-1554.83, 56.77], [-1555.82, 57.29], [-1556.36, 57.98], [-1556.1, 59.23], [-1555.2, 60.4], [-1554.07, 60.91], [-1552.98, 61.08], [-1552.47, 60.74], [-1552.07, 60.87], [-1551.58, 60.79], [-1550.95, 59.95], [-1550.31, 59.5], [-1549.46, 60.1], [-1549.63, 62.5], [-1549.75, 64.59], [-1550.09, 66.62], [-1550.77, 68.36], [-1551.33, 70.0], [-1552.0, 71.39], [-1552.23, 72.15], [-1552.97, 73.55], [-1553.6, 75.13], [-1554.31, 76.07], [-1554.91, 76.89]], "holes": []}}, {"shape": {"outer": [[-1554.58, 50.74], [-1553.22, 47.22], [-1552.56, 47.26], [-1551.94, 47.01], [-1551.34, 46.55], [-1550.95, 46.3], [-1550.57, 46.17], [-1550.02, 46.23], [-1549.65, 46.14], [-1549.2, 46.22], [-1548.53, 46.28], [-1548.89, 47.12], [-1548.67, 48.38], [-1548.43, 49.18], [-1548.41, 50.24], [-1549.32, 51.55], [-1549.83, 51.66], [-1551.12, 51.25], [-1552.45, 50.69], [-1554.58, 50.74]], "holes": []}}, {"shape": {"outer": [[-1562.61, 66.27], [-1561.29, 66.21], [-1560.55, 82.46], [-1559.04, 82.46], [-1558.97, 82.81], [-1558.15, 82.64], [-1557.51, 82.29], [-1557.18, 81.85], [-1557.06, 80.4], [-1557.09, 79.27], [-1557.16, 77.59], [-1557.54, 75.47], [-1557.99, 73.65], [-1558.6, 71.38], [-1559.23, 69.03], [-1560.01, 66.15], [-1560.39, 65.31], [-1560.88, 64.98], [-1561.54, 64.88], [-1562.68, 64.96], [-1562.61, 66.27]], "holes": []}}, {"shape": {"outer": [[-1562.68, 64.96], [-1565.87, 65.13], [-1565.81, 66.41], [-1563.43, 66.3], [-1562.61, 66.27], [-1562.68, 64.96]], "holes": []}}, {"shape": {"outer": [[-1565.98, 62.68], [-1564.91, 63.01], [-1563.73, 63.04], [-1561.79, 62.9], [-1560.58, 62.52], [-1560.26, 62.0], [-1560.18, 60.62], [-1559.91, 57.75], [-1559.72, 55.95], [-1558.89, 53.79], [-1558.15, 51.93], [-1556.72, 49.1], [-1555.9, 47.0], [-1555.16, 44.16], [-1554.76, 41.3], [-1554.59, 38.29], [-1554.62, 35.89], [-1554.84, 35.57], [-1555.33, 35.19], [-1555.63, 34.98], [-1562.09, 35.07], [-1560.97, 61.21], [-1566.04, 61.42], [-1565.98, 62.68]], "holes": []}}, {"shape": {"outer": [[-1564.93, 84.38], [-1564.8, 87.03], [-1564.72, 89.79], [-1566.17, 89.82], [-1566.06, 93.11], [-1569.54, 93.28], [-1581.36, 93.73], [-1581.93, 93.43], [-1583.53, 93.16], [-1583.68, 89.99], [-1583.9, 85.26], [-1581.63, 85.15], [-1575.32, 84.86], [-1573.11, 84.76], [-1564.93, 84.38]], "holes": []}}, {"shape": {"outer": [[-1629.23, -64.32], [-1635.71, -64.17], [-1637.5, -77.04], [-1635.23, -77.47], [-1635.48, -78.9], [-1637.33, -78.51], [-1638.7, -77.6], [-1639.17, -74.01], [-1639.17, -67.24], [-1638.95, -64.21], [-1638.1, -61.99], [-1637.14, -59.91], [-1635.06, -58.55], [-1633.13, -58.32], [-1630.95, -58.93], [-1629.32, -61.56], [-1629.23, -64.32]], "holes": []}}, {"shape": {"outer": [[-1667.31, -100.32], [-1666.41, -98.73], [-1665.7, -100.26], [-1664.85, -103.19], [-1664.48, -105.67], [-1663.95, -109.09], [-1663.64, -112.01], [-1663.59, -115.27], [-1667.83, -114.5], [-1666.47, -107.54], [-1668.37, -107.16], [-1667.31, -100.32]], "holes": []}}, {"shape": {"outer": [[-1669.18, -99.4], [-1669.24, -95.88], [-1670.15, -95.38], [-1670.98, -94.93], [-1672.87, -94.23], [-1674.52, -93.89], [-1677.0, -93.35], [-1677.56, -93.52], [-1678.06, -94.51], [-1680.01, -98.56], [-1671.53, -100.06], [-1671.07, -99.37], [-1669.18, -99.4]], "holes": []}}, {"shape": {"outer": [[-1667.83, -114.5], [-1669.73, -114.14], [-1668.37, -107.16], [-1666.47, -107.54], [-1667.83, -114.5]], "holes": []}}, {"shape": {"outer": [[-1682.07, -137.18], [-1681.78, -138.11], [-1682.5, -141.82], [-1682.17, -142.32], [-1681.59, -142.79], [-1681.1, -142.81], [-1680.21, -142.68], [-1679.56, -142.02], [-1678.93, -140.75], [-1678.17, -139.55], [-1677.23, -138.31], [-1676.15, -137.0], [-1674.43, -135.3], [-1672.97, -134.09], [-1671.32, -132.51], [-1669.73, -130.82], [-1668.22, -128.94], [-1666.49, -127.13], [-1665.56, -124.71], [-1664.02, -120.67], [-1663.59, -118.39], [-1666.49, -117.17], [-1669.64, -117.02], [-1669.8, -117.86], [-1669.02, -118.0], [-1671.33, -131.07], [-1672.22, -130.91], [-1672.37, -131.8], [-1676.32, -131.11], [-1677.42, -137.31], [-1678.21, -137.18], [-1678.33, -137.83], [-1682.07, -137.18]], "holes": []}}, {"shape": {"outer": [[-1740.43, -138.09], [-1739.79, -137.41], [-1739.23, -137.62], [-1739.12, -138.42], [-1738.18, -142.62], [-1730.39, -143.31], [-1730.79, -145.78], [-1711.97, -148.8], [-1712.14, -149.85], [-1705.93, -150.87], [-1705.83, -150.2], [-1699.62, -151.22], [-1698.89, -151.68], [-1701.34, -156.42], [-1701.8, -158.26], [-1701.71, -159.56], [-1701.12, -160.94], [-1700.67, -161.9], [-1705.19, -163.44], [-1705.53, -162.83], [-1710.22, -164.04], [-1710.43, -163.61], [-1715.94, -164.93], [-1716.42, -164.31], [-1722.48, -165.3], [-1722.56, -166.08], [-1729.69, -167.11], [-1731.71, -167.11], [-1733.72, -166.81], [-1735.39, -166.59], [-1736.64, -166.21], [-1737.15, -166.95], [-1735.55, -167.57], [-1733.88, -167.66], [-1732.05, -167.82], [-1733.52, -169.1], [-1736.41, -168.4], [-1739.03, -167.64], [-1741.76, -166.6], [-1744.18, -165.37], [-1747.1, -163.77], [-1749.22, -162.5], [-1751.86, -158.76], [-1752.61, -157.59], [-1752.92, -156.06], [-1752.48, -154.63], [-1751.64, -151.93], [-1749.68, -148.1], [-1740.43, -138.09]], "holes": []}}, {"shape": {"outer": [[-1779.78, -114.26], [-1780.32, -113.84], [-1780.84, -114.12], [-1782.66, -119.78], [-1782.55, -120.51], [-1781.85, -120.66], [-1776.54, -118.86], [-1775.77, -118.25], [-1776.18, -117.39], [-1779.78, -114.26]], "holes": []}}, {"shape": {"outer": [[-1768.04, -120.9], [-1770.56, -120.56], [-1771.59, -120.5], [-1773.38, -120.88], [-1782.34, -123.76], [-1783.06, -124.25], [-1783.53, -125.3], [-1785.15, -131.6], [-1785.14, -132.54], [-1784.93, -133.55], [-1783.58, -135.17], [-1780.14, -139.63], [-1778.02, -142.03], [-1776.6, -143.32], [-1773.46, -145.92], [-1769.76, -149.11], [-1765.85, -151.45], [-1765.05, -151.04], [-1766.76, -147.85], [-1761.61, -144.19], [-1760.58, -143.49], [-1757.92, -135.33], [-1761.58, -134.56], [-1760.63, -131.32], [-1764.78, -129.52], [-1769.32, -128.2], [-1768.04, -120.9]], "holes": []}}, {"shape": {"outer": [[-1437.25, -443.62], [-1426.34, -444.13], [-1420.96, -444.51], [-1420.97, -445.99], [-1416.69, -446.26], [-1416.86, -449.35], [-1412.11, -449.62], [-1412.47, -455.92], [-1400.1, -456.63], [-1400.36, -461.07], [-1396.44, -461.3], [-1397.52, -479.97], [-1399.84, -481.58], [-1400.12, -484.78], [-1405.13, -486.84], [-1406.85, -486.8], [-1408.26, -486.05], [-1409.33, -483.43], [-1411.02, -481.39], [-1412.59, -479.84], [-1414.25, -478.51], [-1416.16, -477.26], [-1418.18, -476.57], [-1420.43, -475.91], [-1439.06, -475.37], [-1438.36, -467.23], [-1437.25, -443.62]], "holes": []}}, {"shape": {"outer": [[-1454.19, -424.15], [-1460.02, -423.86], [-1458.72, -397.95], [-1453.91, -398.19], [-1453.53, -390.65], [-1429.5, -391.86], [-1429.44, -390.62], [-1421.87, -391.0], [-1422.17, -396.91], [-1436.91, -396.16], [-1436.83, -394.4], [-1446.06, -393.97], [-1446.19, -396.5], [-1448.89, -396.37], [-1449.16, -402.05], [-1453.12, -401.87], [-1454.19, -424.15]], "holes": []}}, {"shape": {"outer": [[-1411.64, -390.82], [-1400.19, -391.39], [-1400.25, -392.73], [-1398.79, -392.8], [-1398.82, -393.51], [-1405.54, -393.17], [-1411.74, -392.86], [-1411.64, -390.82]], "holes": []}}, {"shape": {"outer": [[-1385.39, -394.19], [-1385.3, -392.2], [-1350.68, -393.82], [-1350.85, -397.39], [-1360.13, -396.96], [-1360.06, -395.37], [-1385.39, -394.19]], "holes": []}}, {"shape": {"outer": [[-1420.96, -444.51], [-1420.9, -443.18], [-1426.28, -442.93], [-1426.34, -444.13], [-1420.96, -444.51]], "holes": []}}, {"shape": {"outer": [[-1416.86, -449.35], [-1416.69, -446.26], [-1405.37, -446.89], [-1405.54, -449.99], [-1412.11, -449.62], [-1416.86, -449.35]], "holes": []}}, {"shape": {"outer": [[-1407.85, -444.63], [-1407.59, -445.55], [-1405.29, -445.63], [-1404.95, -435.72], [-1407.46, -435.64], [-1407.85, -444.63]], "holes": []}}, {"shape": {"outer": [[-1400.96, -428.1], [-1401.1, -430.4], [-1390.42, -430.91], [-1390.46, -431.66], [-1392.09, -431.58], [-1392.41, -438.23], [-1386.19, -438.53], [-1385.96, -433.96], [-1377.36, -434.38], [-1377.41, -435.49], [-1375.21, -435.6], [-1375.17, -434.73], [-1376.53, -434.66], [-1376.1, -425.69], [-1377.36, -425.62], [-1377.62, -431.81], [-1389.56, -431.29], [-1389.44, -428.6], [-1400.96, -428.1]], "holes": []}}, {"shape": {"outer": [[-1342.38, -581.98], [-1342.46, -584.12], [-1319.56, -584.98], [-1319.47, -582.85], [-1342.38, -581.98]], "holes": []}}, {"shape": {"outer": [[-312.42, 66.13], [-308.73, 69.58], [-289.98, 48.79], [-289.07, 47.33], [-288.54, 45.91], [-288.56, 45.24], [-291.68, 42.15], [-312.43, 65.08], [-312.42, 66.13]], "holes": []}}, {"shape": {"outer": [[-328.57, 82.41], [-324.66, 85.91], [-342.03, 105.15], [-344.47, 102.97], [-344.5, 100.06], [-328.57, 82.41]], "holes": []}}, {"shape": {"outer": [[-320.07, 81.77], [-311.26, 72.11], [-315.31, 68.43], [-324.13, 78.09], [-320.07, 81.77]], "holes": []}}, {"shape": {"outer": [[-387.6, 200.21], [-370.27, 181.13], [-375.53, 176.43], [-392.44, 195.23], [-391.69, 196.61], [-387.6, 200.21]], "holes": []}}, {"shape": {"outer": [[-369.47, 180.14], [-365.05, 175.13], [-370.25, 170.58], [-374.67, 175.57], [-369.47, 180.14]], "holes": []}}, {"shape": {"outer": [[-363.93, 173.84], [-360.49, 169.99], [-364.6, 166.28], [-365.24, 165.98], [-366.01, 166.13], [-369.0, 169.44], [-363.93, 173.84]], "holes": []}}, {"shape": {"outer": [[-358.34, 167.85], [-354.81, 163.85], [-355.14, 163.57], [-347.93, 155.4], [-352.83, 151.11], [-362.95, 162.57], [-362.99, 163.3], [-362.68, 164.05], [-358.34, 167.85]], "holes": []}}, {"shape": {"outer": [[-345.7, 153.27], [-333.22, 139.76], [-337.48, 136.22], [-338.49, 135.64], [-350.47, 148.91], [-345.7, 153.27]], "holes": []}}, {"shape": {"outer": [[-336.26, 134.38], [-335.44, 135.51], [-332.06, 138.58], [-331.39, 137.96], [-330.84, 136.78], [-332.05, 135.79], [-333.55, 134.91], [-334.72, 134.43], [-336.26, 134.38]], "holes": []}}, {"shape": {"outer": [[-390.64, 203.17], [-388.93, 201.32], [-392.26, 198.25], [-393.46, 197.96], [-393.47, 198.67], [-393.15, 199.89], [-392.44, 201.34], [-390.64, 203.17]], "holes": []}}, {"shape": {"outer": [[-399.42, 213.18], [-398.17, 211.47], [-399.72, 210.07], [-401.11, 209.25], [-402.56, 208.79], [-404.11, 208.59], [-403.83, 209.39], [-399.42, 213.18]], "holes": []}}, {"shape": {"outer": [[-420.41, 193.96], [-426.08, 189.4], [-425.19, 188.39], [-424.02, 187.92], [-423.26, 188.59], [-421.48, 190.65], [-420.67, 192.43], [-420.41, 193.96]], "holes": []}}, {"shape": {"outer": [[-414.58, 178.02], [-415.89, 179.84], [-414.81, 180.59], [-413.19, 181.31], [-411.24, 181.73], [-410.48, 181.66], [-414.58, 178.02]], "holes": []}}, {"shape": {"outer": [[-413.56, 176.53], [-408.79, 180.83], [-380.24, 149.32], [-385.02, 145.02], [-413.56, 176.53]], "holes": []}}, {"shape": {"outer": [[-354.43, 120.84], [-372.95, 141.79], [-378.07, 137.3], [-359.54, 116.36], [-354.43, 120.84]], "holes": []}}, {"shape": {"outer": [[-356.8, 113.99], [-357.74, 115.34], [-355.18, 117.79], [-354.01, 118.29], [-354.03, 117.65], [-354.19, 116.9], [-354.6, 116.17], [-356.8, 113.99]], "holes": []}}, {"shape": {"outer": [[-321.44, 126.96], [-322.89, 128.41], [-323.59, 127.51], [-324.14, 126.26], [-324.37, 125.07], [-324.41, 124.29], [-321.44, 126.96]], "holes": []}}, {"shape": {"outer": [[-320.01, 125.69], [-294.99, 97.89], [-300.11, 93.2], [-321.47, 117.19], [-322.79, 118.65], [-323.77, 119.88], [-324.16, 120.66], [-324.31, 121.44], [-320.01, 125.69]], "holes": []}}, {"shape": {"outer": [[-293.5, 96.12], [-265.74, 65.8], [-267.76, 63.94], [-270.69, 62.25], [-272.07, 63.05], [-274.02, 64.77], [-276.78, 67.43], [-298.72, 91.47], [-293.5, 96.12]], "holes": []}}, {"shape": {"outer": [[-236.7, -8.89], [-232.71, -13.05], [-234.4, -14.66], [-238.39, -10.5], [-236.7, -8.89]], "holes": []}}, {"shape": {"outer": [[-230.78, -3.49], [-226.79, -7.65], [-228.41, -9.18], [-232.4, -5.03], [-230.78, -3.49]], "holes": []}}, {"shape": {"outer": [[-268.05, 25.62], [-264.39, 21.47], [-266.73, 19.42], [-270.43, 23.57], [-268.05, 25.62]], "holes": []}}, {"shape": {"outer": [[-264.39, 21.47], [-259.35, 15.74], [-261.65, 13.7], [-266.73, 19.42], [-264.39, 21.47]], "holes": []}}, {"shape": {"outer": [[-261.65, 13.7], [-259.35, 15.74], [-254.41, 10.12], [-256.68, 8.12], [-261.65, 13.7]], "holes": []}}, {"shape": {"outer": [[-256.68, 8.12], [-254.41, 10.12], [-249.91, 5.02], [-252.16, 3.04], [-256.68, 8.12]], "holes": []}}, {"shape": {"outer": [[-226.97, -1.7], [-219.81, -9.47], [-221.89, -11.59], [-229.08, -3.85], [-226.97, -1.7]], "holes": []}}, {"shape": {"outer": [[-236.64, 8.8], [-227.87, -0.73], [-230.1, -2.75], [-238.91, 6.74], [-236.64, 8.8]], "holes": []}}, {"shape": {"outer": [[-246.74, 19.76], [-237.67, 9.92], [-239.96, 7.87], [-249.07, 17.68], [-246.74, 19.76]], "holes": []}}, {"shape": {"outer": [[-257.2, 31.1], [-247.8, 20.91], [-250.11, 18.81], [-259.54, 28.97], [-257.2, 31.1]], "holes": []}}, {"shape": {"outer": [[-263.34, 37.77], [-258.02, 32.0], [-260.38, 29.86], [-265.71, 35.6], [-263.34, 37.77]], "holes": []}}, {"shape": {"outer": [[-234.72, 0.68], [-230.78, -3.49], [-232.4, -5.03], [-236.34, -0.84], [-234.72, 0.68]], "holes": []}}, {"shape": {"outer": [[-239.89, 6.46], [-234.72, 0.68], [-236.34, -0.84], [-241.56, 4.99], [-239.89, 6.46]], "holes": []}}, {"shape": {"outer": [[-245.13, 12.3], [-239.89, 6.46], [-241.56, 4.99], [-246.79, 10.82], [-245.13, 12.3]], "holes": []}}, {"shape": {"outer": [[-250.33, 18.05], [-245.13, 12.3], [-246.79, 10.82], [-251.99, 16.56], [-250.33, 18.05]], "holes": []}}, {"shape": {"outer": [[-255.0, 23.18], [-250.33, 18.05], [-251.99, 16.56], [-256.65, 21.69], [-255.0, 23.18]], "holes": []}}, {"shape": {"outer": [[-259.88, 28.57], [-255.0, 23.18], [-256.65, 21.69], [-261.54, 27.08], [-259.88, 28.57]], "holes": []}}, {"shape": {"outer": [[-263.65, 32.54], [-259.88, 28.57], [-261.54, 27.08], [-265.26, 31.01], [-263.65, 32.54]], "holes": []}}, {"shape": {"outer": [[-258.1, 37.03], [-254.34, 33.06], [-255.99, 31.57], [-259.72, 35.5], [-258.1, 37.03]], "holes": []}}, {"shape": {"outer": [[-254.34, 33.06], [-249.46, 27.66], [-251.11, 26.17], [-255.99, 31.57], [-254.34, 33.06]], "holes": []}}, {"shape": {"outer": [[-249.46, 27.66], [-244.79, 22.54], [-246.44, 21.05], [-251.11, 26.17], [-249.46, 27.66]], "holes": []}}, {"shape": {"outer": [[-244.79, 22.54], [-239.59, 16.79], [-241.25, 15.3], [-246.44, 21.05], [-244.79, 22.54]], "holes": []}}, {"shape": {"outer": [[-239.59, 16.79], [-234.35, 10.95], [-236.03, 9.47], [-241.25, 15.3], [-239.59, 16.79]], "holes": []}}, {"shape": {"outer": [[-234.35, 10.95], [-229.18, 5.16], [-230.81, 3.65], [-236.03, 9.47], [-234.35, 10.95]], "holes": []}}, {"shape": {"outer": [[-229.18, 5.16], [-225.24, 0.99], [-226.85, -0.55], [-230.81, 3.65], [-229.18, 5.16]], "holes": []}}, {"shape": {"outer": [[-225.24, 0.99], [-221.25, -3.16], [-222.86, -4.69], [-226.85, -0.55], [-225.24, 0.99]], "holes": []}}, {"shape": {"outer": [[-218.31, 6.94], [-214.34, 2.77], [-215.96, 1.24], [-219.93, 5.4], [-218.31, 6.94]], "holes": []}}, {"shape": {"outer": [[-222.24, 11.12], [-218.31, 6.94], [-219.93, 5.4], [-223.87, 9.59], [-222.24, 11.12]], "holes": []}}, {"shape": {"outer": [[-227.46, 16.87], [-222.24, 11.12], [-223.87, 9.59], [-229.12, 15.39], [-227.46, 16.87]], "holes": []}}, {"shape": {"outer": [[-232.1, 21.97], [-227.46, 16.87], [-229.12, 15.39], [-233.75, 20.48], [-232.1, 21.97]], "holes": []}}, {"shape": {"outer": [[-250.72, 42.24], [-246.98, 38.25], [-248.63, 36.75], [-252.35, 40.71], [-250.72, 42.24]], "holes": []}}, {"shape": {"outer": [[-246.98, 38.25], [-242.07, 32.88], [-243.72, 31.38], [-248.63, 36.75], [-246.98, 38.25]], "holes": []}}, {"shape": {"outer": [[-469.05, 236.3], [-462.42, 242.11], [-460.7, 243.04], [-456.19, 238.31], [-458.13, 234.53], [-463.33, 230.09], [-469.05, 236.3]], "holes": []}}, {"shape": {"outer": [[-472.47, 258.16], [-481.73, 250.24], [-471.82, 239.44], [-463.62, 246.4], [-465.58, 248.53], [-466.77, 251.16], [-467.69, 253.2], [-468.8, 255.04], [-469.83, 256.38], [-471.0, 257.41], [-472.47, 258.16]], "holes": []}}, {"shape": {"outer": [[-482.82, 251.41], [-475.76, 257.69], [-475.36, 258.63], [-476.27, 258.56], [-477.33, 258.28], [-478.58, 257.61], [-480.3, 256.36], [-482.85, 254.1], [-484.06, 252.8], [-482.82, 251.41]], "holes": []}}, {"shape": {"outer": [[-427.4, 190.41], [-440.4, 204.5], [-437.43, 207.22], [-442.96, 213.21], [-445.83, 210.56], [-458.61, 224.39], [-453.8, 228.81], [-449.83, 230.31], [-421.97, 200.21], [-421.05, 198.35], [-420.7, 196.56], [-427.4, 190.41]], "holes": []}}, {"shape": {"outer": [[-464.12, 268.65], [-462.32, 269.77], [-455.9, 275.85], [-457.83, 277.92], [-460.16, 275.76], [-461.99, 273.98], [-462.6, 273.24], [-463.09, 272.48], [-463.58, 271.5], [-464.03, 270.13], [-464.12, 268.65]], "holes": []}}, {"shape": {"outer": [[-493.55, 263.8], [-487.98, 269.01], [-486.8, 269.91], [-486.7, 269.14], [-486.66, 267.93], [-486.85, 266.92], [-487.37, 265.76], [-488.1, 264.74], [-489.63, 263.23], [-491.48, 261.61], [-493.55, 263.8]], "holes": []}}, {"shape": {"outer": [[-466.97, 287.9], [-464.46, 285.62], [-466.64, 283.56], [-467.91, 282.88], [-469.71, 282.31], [-471.77, 281.99], [-473.28, 282.06], [-466.97, 287.9]], "holes": []}}, {"shape": {"outer": [[-463.36, 265.51], [-461.57, 268.49], [-454.71, 274.64], [-440.62, 259.08], [-447.19, 253.16], [-447.74, 252.91], [-448.37, 252.88], [-449.04, 253.15], [-457.83, 261.64], [-462.77, 264.61], [-463.36, 265.51]], "holes": []}}, {"shape": {"outer": [[-439.37, 256.75], [-430.8, 247.65], [-437.05, 241.81], [-437.54, 241.53], [-438.12, 241.55], [-438.68, 241.95], [-445.7, 249.41], [-445.9, 249.96], [-445.85, 250.56], [-445.59, 251.03], [-439.37, 256.75]], "holes": []}}, {"shape": {"outer": [[-428.13, 244.24], [-421.13, 236.6], [-428.21, 230.16], [-434.46, 236.97], [-434.65, 237.52], [-434.6, 238.12], [-434.34, 238.59], [-428.13, 244.24]], "holes": []}}, {"shape": {"outer": [[-425.74, 227.53], [-418.94, 233.65], [-400.59, 214.5], [-407.39, 209.0], [-409.86, 211.27], [-413.77, 214.69], [-425.74, 227.53]], "holes": []}}, {"shape": {"outer": [[-522.95, 349.45], [-467.97, 289.26], [-474.16, 283.42], [-475.58, 282.73], [-476.65, 283.54], [-478.76, 285.57], [-528.15, 340.42], [-529.28, 341.71], [-530.04, 343.08], [-522.95, 349.45]], "holes": []}}, {"shape": {"outer": [[-536.96, 327.15], [-531.68, 321.54], [-531.31, 320.31], [-531.48, 318.85], [-532.29, 318.16], [-533.61, 317.69], [-535.38, 317.93], [-538.46, 320.26], [-540.68, 323.1], [-540.85, 324.36], [-540.75, 325.98], [-539.64, 327.25], [-538.32, 327.59], [-536.96, 327.15]], "holes": []}}, {"shape": {"outer": [[-543.26, 331.34], [-543.69, 331.83], [-550.05, 326.21], [-544.42, 320.04], [-544.7, 321.82], [-544.73, 323.74], [-544.44, 326.14], [-543.62, 329.25], [-543.08, 330.73], [-543.26, 331.34]], "holes": []}}, {"shape": {"outer": [[-528.03, 315.16], [-527.38, 314.58], [-533.8, 308.89], [-539.42, 314.7], [-537.66, 314.3], [-535.74, 314.17], [-533.31, 314.3], [-530.15, 314.93], [-528.63, 315.37], [-528.03, 315.16]], "holes": []}}, {"shape": {"outer": [[-494.73, 265.15], [-488.68, 270.6], [-487.93, 271.29], [-487.48, 272.16], [-487.71, 272.99], [-495.23, 283.43], [-496.49, 284.14], [-498.42, 284.07], [-500.24, 283.25], [-506.3, 277.79], [-494.73, 265.15]], "holes": []}}, {"shape": {"outer": [[-508.02, 280.07], [-508.86, 281.06], [-502.54, 286.83], [-502.04, 286.68], [-501.75, 286.28], [-501.78, 285.79], [-508.02, 280.07]], "holes": []}}, {"shape": {"outer": [[-503.94, 289.97], [-505.16, 288.07], [-511.1, 283.27], [-517.06, 290.03], [-509.25, 296.4], [-503.94, 289.97]], "holes": []}}, {"shape": {"outer": [[-517.7, 290.81], [-510.1, 297.14], [-513.15, 300.77], [-520.74, 294.44], [-517.7, 290.81]], "holes": []}}, {"shape": {"outer": [[-526.71, 300.79], [-521.66, 295.17], [-514.29, 301.75], [-519.35, 307.37], [-526.71, 300.79]], "holes": []}}, {"shape": {"outer": [[-527.39, 301.92], [-532.25, 307.37], [-525.55, 313.3], [-524.79, 313.06], [-520.38, 308.12], [-527.39, 301.92]], "holes": []}}, {"shape": {"outer": [[-552.12, 329.06], [-551.03, 327.84], [-549.68, 329.02], [-550.76, 330.25], [-552.12, 329.06]], "holes": []}}, {"shape": {"outer": [[-568.03, 332.58], [-566.46, 330.89], [-560.16, 336.32], [-558.97, 337.42], [-559.2, 338.41], [-560.26, 339.44], [-568.03, 332.58]], "holes": []}}, {"shape": {"outer": [[-438.82, 313.32], [-436.61, 310.81], [-463.46, 286.67], [-465.54, 288.97], [-438.82, 313.32]], "holes": []}}, {"shape": {"outer": [[-432.49, 314.8], [-434.66, 317.15], [-414.99, 334.69], [-414.07, 333.51], [-413.67, 331.86], [-432.49, 314.8]], "holes": []}}, {"shape": {"outer": [[-443.66, 311.41], [-444.68, 312.81], [-446.56, 314.83], [-449.31, 316.0], [-455.54, 310.06], [-455.59, 306.98], [-454.87, 304.04], [-453.34, 302.63], [-443.66, 311.41]], "holes": []}}, {"shape": {"outer": [[-443.66, 311.41], [-440.13, 314.8], [-445.84, 320.58], [-459.6, 308.04], [-464.86, 313.76], [-466.87, 310.2], [-470.12, 306.89], [-473.89, 303.43], [-476.95, 302.42], [-477.6, 302.06], [-471.17, 295.02], [-469.25, 294.22], [-466.96, 293.91], [-464.66, 293.88], [-462.69, 294.09], [-453.34, 302.63], [-454.87, 304.04], [-455.59, 306.98], [-455.54, 310.06], [-449.31, 316.0], [-446.56, 314.83], [-444.68, 312.81], [-443.66, 311.41]], "holes": []}}, {"shape": {"outer": [[-521.68, 350.59], [-477.6, 302.06], [-476.95, 302.42], [-473.89, 303.43], [-470.12, 306.89], [-466.87, 310.2], [-464.86, 313.76], [-489.4, 340.81], [-457.53, 369.24], [-474.3, 386.59], [-475.6, 385.66], [-471.75, 381.45], [-471.49, 380.62], [-469.23, 378.16], [-468.14, 372.65], [-465.75, 374.82], [-461.6, 370.29], [-465.82, 366.46], [-468.55, 369.44], [-468.09, 369.86], [-469.68, 371.46], [-470.57, 377.12], [-478.51, 386.48], [-486.91, 384.07], [-488.71, 382.95], [-488.5, 382.3], [-480.69, 373.95], [-486.69, 368.4], [-488.61, 370.36], [-500.93, 359.68], [-507.36, 354.24], [-511.04, 358.55], [-511.94, 359.61], [-521.68, 350.59]], "holes": []}}, {"shape": {"outer": [[-503.71, 364.01], [-500.6, 360.58], [-488.89, 371.12], [-491.99, 374.54], [-503.71, 364.01]], "holes": []}}, {"shape": {"outer": [[-507.26, 365.97], [-506.66, 369.54], [-506.43, 370.11], [-505.96, 370.75], [-497.42, 378.35], [-497.85, 374.18], [-507.26, 365.97]], "holes": []}}, {"shape": {"outer": [[-494.93, 377.32], [-495.77, 375.02], [-494.09, 373.21], [-492.38, 374.62], [-494.93, 377.32]], "holes": []}}, {"shape": {"outer": [[-432.49, 321.62], [-435.73, 325.8], [-436.01, 327.64], [-435.29, 328.98], [-429.68, 333.62], [-428.38, 333.58], [-426.92, 333.06], [-423.62, 329.48], [-432.49, 321.62]], "holes": []}}, {"shape": {"outer": [[-432.49, 321.62], [-435.85, 318.36], [-441.43, 324.7], [-428.33, 336.51], [-417.74, 337.76], [-416.16, 336.17], [-423.62, 329.48], [-426.92, 333.06], [-428.38, 333.58], [-429.68, 333.62], [-435.29, 328.98], [-436.01, 327.64], [-435.73, 325.8], [-432.49, 321.62]], "holes": []}}, {"shape": {"outer": [[-494.44, 169.94], [-474.59, 148.13], [-475.99, 146.87], [-481.35, 141.72], [-489.79, 150.94], [-493.43, 155.04], [-494.39, 154.2], [-502.27, 162.92], [-501.3, 163.84], [-494.44, 169.94]], "holes": []}}, {"shape": {"outer": [[-505.1, 117.66], [-504.11, 118.85], [-503.13, 117.52], [-503.78, 117.39], [-504.56, 117.43], [-505.1, 117.66]], "holes": []}}, {"shape": {"outer": [[-502.03, 119.3], [-500.86, 120.31], [-500.68, 120.14], [-499.76, 121.01], [-500.3, 121.5], [-501.12, 120.8], [-501.53, 121.2], [-483.98, 137.06], [-482.18, 135.13], [-498.78, 120.51], [-501.11, 118.58], [-502.03, 119.3]], "holes": []}}, {"shape": {"outer": [[-467.41, 152.28], [-466.71, 149.43], [-469.9, 146.45], [-470.5, 146.1], [-471.2, 146.06], [-471.81, 146.33], [-472.72, 147.35], [-467.41, 152.28]], "holes": []}}, {"shape": {"outer": [[-482.66, 138.17], [-480.88, 136.26], [-476.07, 140.7], [-475.68, 141.26], [-475.59, 141.96], [-475.82, 142.59], [-476.78, 143.61], [-482.66, 138.17]], "holes": []}}, {"shape": {"outer": [[-461.69, 157.1], [-458.99, 156.31], [-440.22, 173.2], [-441.81, 174.97], [-461.69, 157.1]], "holes": []}}, {"shape": {"outer": [[-427.64, 188.08], [-426.47, 187.11], [-425.83, 185.96], [-437.92, 175.15], [-439.68, 177.18], [-427.64, 188.08]], "holes": []}}, {"shape": {"outer": [[-900.4, -336.83], [-902.17, -338.41], [-904.0, -339.73], [-905.23, -337.81], [-905.98, -336.01], [-906.68, -334.01], [-911.55, -314.4], [-911.85, -310.44], [-909.12, -310.37], [-910.31, -311.45], [-910.09, -314.18], [-909.42, -316.96], [-908.45, -320.06], [-907.35, -323.04], [-906.02, -326.41], [-904.52, -329.45], [-903.15, -332.23], [-901.74, -334.77], [-900.4, -336.83]], "holes": []}}, {"shape": {"outer": [[-1355.73, -764.97], [-1351.3, -765.19], [-1351.32, -767.93], [-1350.63, -768.01], [-1350.74, -768.87], [-1351.66, -768.84], [-1351.99, -775.2], [-1347.88, -775.32], [-1347.28, -766.41], [-1348.97, -766.36], [-1348.44, -759.79], [-1346.89, -756.99], [-1348.65, -755.94], [-1349.3, -755.48], [-1349.49, -754.46], [-1348.88, -747.09], [-1350.99, -746.36], [-1350.78, -741.99], [-1350.96, -741.39], [-1351.71, -741.2], [-1353.46, -741.12], [-1353.93, -741.36], [-1353.96, -742.48], [-1354.56, -742.43], [-1355.73, -764.97]], "holes": []}}, {"shape": {"outer": [[-1295.33, -732.42], [-1290.75, -733.54], [-1284.43, -735.68], [-1279.53, -737.57], [-1274.18, -740.27], [-1265.52, -745.14], [-1257.14, -750.54], [-1246.8, -756.45], [-1244.15, -750.72], [-1249.64, -746.75], [-1289.31, -728.99], [-1290.25, -729.75], [-1292.61, -731.19], [-1295.33, -732.42]], "holes": []}}, {"shape": {"outer": [[-1280.29, -739.33], [-1268.08, -745.86], [-1259.93, -750.94], [-1270.68, -746.63], [-1274.01, -745.19], [-1277.05, -743.42], [-1279.02, -741.39], [-1280.29, -739.33]], "holes": []}}, {"shape": {"outer": [[-1259.93, -750.94], [-1256.42, -753.34], [-1252.09, -755.71], [-1252.33, -756.32], [-1263.74, -751.2], [-1331.81, -720.33], [-1340.51, -739.36], [-1343.15, -738.17], [-1334.6, -718.45], [-1334.04, -718.15], [-1333.29, -718.15], [-1296.62, -734.54], [-1293.11, -735.05], [-1288.01, -736.51], [-1283.36, -738.16], [-1280.29, -739.33], [-1279.02, -741.39], [-1277.05, -743.42], [-1274.01, -745.19], [-1270.68, -746.63], [-1259.93, -750.94]], "holes": []}}, {"shape": {"outer": [[-1241.34, -750.94], [-1242.1, -751.93], [-1243.65, -755.57], [-1238.21, -758.03], [-1241.34, -750.94]], "holes": []}}, {"shape": {"outer": [[-193.41, -13.49], [-189.11, -9.48], [-188.66, -9.96], [-188.23, -9.56], [-186.87, -11.01], [-187.33, -11.44], [-186.99, -11.82], [-191.24, -15.79], [-191.64, -15.35], [-192.24, -15.91], [-193.45, -14.62], [-192.86, -14.08], [-193.41, -13.49]], "holes": []}}, {"shape": {"outer": [[-178.19, -9.18], [-182.37, -12.94], [-182.89, -12.37], [-178.71, -8.61], [-178.19, -9.18]], "holes": []}}, {"shape": {"outer": [[-167.78, 10.09], [-166.98, 10.87], [-167.77, 11.68], [-163.0, 16.31], [-159.85, 13.1], [-160.63, 12.33], [-161.44, 13.16], [-165.47, 9.24], [-164.7, 8.46], [-165.47, 7.72], [-167.78, 10.09]], "holes": []}}, {"shape": {"outer": [[-155.34, 21.79], [-156.13, 21.02], [-156.93, 21.84], [-161.7, 17.2], [-158.57, 13.98], [-157.77, 14.74], [-158.59, 15.57], [-154.55, 19.47], [-153.78, 18.69], [-153.02, 19.43], [-155.34, 21.79]], "holes": []}}, {"shape": {"outer": [[-145.4, 31.7], [-143.63, 29.79], [-139.75, 33.34], [-141.52, 35.26], [-145.4, 31.7]], "holes": []}}, {"shape": {"outer": [[-127.16, 46.4], [-128.02, 45.66], [-128.75, 46.49], [-133.85, 42.07], [-131.9, 39.84], [-131.34, 40.34], [-131.69, 40.75], [-128.83, 43.24], [-127.87, 42.13], [-127.3, 42.61], [-126.82, 42.06], [-125.44, 43.25], [-125.81, 43.67], [-125.22, 44.19], [-127.16, 46.4]], "holes": []}}, {"shape": {"outer": [[-135.95, 39.8], [-134.28, 37.97], [-132.56, 39.52], [-134.22, 41.36], [-135.95, 39.8]], "holes": []}}, {"shape": {"outer": [[-121.26, 52.98], [-119.49, 51.06], [-118.0, 52.45], [-119.68, 54.39], [-121.26, 52.98]], "holes": []}}, {"shape": {"outer": [[-647.93, -309.22], [-649.09, -310.3], [-648.01, -311.46], [-649.3, -312.65], [-648.22, -313.81], [-650.02, -315.48], [-643.53, -322.44], [-641.96, -320.98], [-643.39, -319.45], [-642.12, -318.28], [-643.39, -316.93], [-641.97, -315.62], [-647.93, -309.22]], "holes": []}}, {"shape": {"outer": [[-608.95, -348.03], [-609.87, -348.83], [-610.35, -349.22], [-611.05, -349.35], [-620.52, -349.38], [-636.76, -332.06], [-636.3, -322.98], [-636.18, -322.34], [-635.86, -321.71], [-635.27, -321.22], [-633.96, -320.27], [-608.95, -348.03]], "holes": []}}, {"shape": {"outer": [[-588.23, -289.78], [-588.23, -290.48], [-587.57, -291.22], [-586.41, -291.92], [-584.74, -292.58], [-583.27, -293.3], [-581.99, -294.4], [-580.5, -296.14], [-578.52, -298.44], [-577.01, -301.51], [-575.48, -306.0], [-574.63, -308.09], [-574.37, -311.21], [-575.22, -312.56], [-576.79, -313.15], [-578.88, -313.14], [-580.9, -312.76], [-582.35, -311.97], [-583.44, -311.56], [-584.64, -311.48], [-587.27, -310.84], [-589.51, -309.96], [-592.55, -308.14], [-594.78, -306.84], [-597.18, -305.19], [-598.6, -303.39], [-599.36, -300.83], [-599.56, -299.02], [-599.14, -296.93], [-598.21, -294.41], [-596.43, -291.87], [-595.6, -291.13], [-593.65, -290.22], [-591.41, -289.6], [-588.23, -289.78]], "holes": []}}, {"shape": {"outer": [[-326.43, -328.61], [-319.73, -333.21], [-343.37, -354.3], [-348.38, -348.65], [-345.65, -345.08], [-340.33, -340.26], [-326.43, -328.61]], "holes": []}}, {"shape": {"outer": [[-348.5, -351.94], [-348.66, -354.06], [-348.4, -355.76], [-347.43, -357.12], [-344.77, -355.36], [-348.5, -351.94]], "holes": []}}, {"shape": {"outer": [[-380.08, -340.96], [-379.27, -340.12], [-378.6, -339.85], [-377.07, -341.4], [-376.26, -342.7], [-375.77, -344.2], [-375.7, -345.38], [-376.32, -345.25], [-380.08, -340.96]], "holes": []}}, {"shape": {"outer": [[-433.83, -254.85], [-431.53, -252.72], [-434.01, -250.05], [-436.31, -252.18], [-433.83, -254.85]], "holes": []}}, {"shape": {"outer": [[-1249.54, -1106.54], [-1250.22, -1109.51], [-1242.11, -1118.17], [-1240.29, -1116.6], [-1249.54, -1106.54]], "holes": []}}, {"shape": {"outer": [[-1240.41, -1118.93], [-1148.54, -1035.93], [-1147.83, -1036.82], [-1146.55, -1038.46], [-1228.42, -1112.95], [-1233.62, -1117.53], [-1235.96, -1118.61], [-1238.47, -1119.14], [-1240.41, -1118.93]], "holes": []}}, {"shape": {"outer": [[-1201.52, -1050.98], [-1200.99, -1033.18], [-1200.87, -1032.25], [-1200.35, -1031.34], [-1199.62, -1030.82], [-1198.71, -1030.61], [-1197.84, -1030.57], [-1196.94, -1031.1], [-1196.3, -1032.1], [-1195.94, -1033.03], [-1195.64, -1033.96], [-1195.3, -1035.0], [-1195.06, -1036.04], [-1194.87, -1037.16], [-1194.79, -1038.27], [-1194.78, -1039.85], [-1194.88, -1041.44], [-1195.1, -1042.82], [-1195.39, -1044.19], [-1195.85, -1045.58], [-1196.39, -1046.94], [-1197.45, -1048.41], [-1198.63, -1049.81], [-1199.9, -1051.11], [-1201.3, -1052.35], [-1202.95, -1053.42], [-1204.69, -1054.4], [-1206.53, -1055.13], [-1208.56, -1055.66], [-1210.3, -1055.74], [-1212.04, -1055.62], [-1213.9, -1055.34], [-1215.75, -1054.86], [-1217.47, -1054.17], [-1219.18, -1053.38], [-1220.38, -1052.6], [-1221.53, -1051.69], [-1222.53, -1050.62], [-1217.12, -1050.7], [-1217.14, -1052.15], [-1208.42, -1052.29], [-1208.4, -1050.89], [-1201.52, -1050.98]], "holes": []}}, {"shape": {"outer": [[-353.79, -73.2], [-366.59, -84.84], [-367.45, -102.69], [-366.66, -102.73], [-365.83, -103.72], [-364.87, -103.76], [-362.15, -103.88], [-361.16, -102.93], [-360.81, -102.96], [-360.38, -102.97], [-359.73, -88.19], [-348.82, -78.32], [-349.22, -77.88], [-349.66, -77.4], [-349.6, -76.77], [-350.91, -75.35], [-352.28, -73.85], [-353.15, -73.89], [-353.79, -73.2]], "holes": []}}, {"shape": {"outer": [[-345.26, -68.98], [-347.06, -67.05], [-351.29, -70.97], [-349.48, -72.9], [-347.92, -71.46], [-345.26, -68.98]], "holes": []}}, {"shape": {"outer": [[-347.06, -67.05], [-348.87, -65.12], [-353.1, -69.03], [-351.29, -70.97], [-347.06, -67.05]], "holes": []}}, {"shape": {"outer": [[-348.87, -65.12], [-350.69, -63.2], [-354.89, -67.1], [-353.1, -69.03], [-348.87, -65.12]], "holes": []}}, {"shape": {"outer": [[-350.69, -63.2], [-352.69, -61.07], [-356.88, -64.96], [-354.89, -67.1], [-350.69, -63.2]], "holes": []}}, {"shape": {"outer": [[-352.69, -61.07], [-354.49, -59.17], [-358.65, -63.03], [-356.88, -64.96], [-352.69, -61.07]], "holes": []}}, {"shape": {"outer": [[-356.34, -57.25], [-358.02, -55.45], [-362.12, -59.28], [-360.46, -61.07], [-356.34, -57.25]], "holes": []}}, {"shape": {"outer": [[-354.49, -59.17], [-356.34, -57.25], [-360.46, -61.07], [-358.65, -63.03], [-354.49, -59.17]], "holes": []}}, {"shape": {"outer": [[-358.02, -55.45], [-359.75, -53.6], [-363.86, -57.42], [-362.12, -59.28], [-358.02, -55.45]], "holes": []}}, {"shape": {"outer": [[-171.52, -163.47], [-168.78, -163.55], [-168.8, -157.58], [-171.27, -157.32], [-171.49, -160.36], [-171.52, -163.47]], "holes": []}}, {"shape": {"outer": [[-168.8, -157.58], [-168.61, -156.22], [-167.97, -154.48], [-167.1, -153.15], [-166.15, -152.04], [-168.14, -150.65], [-169.94, -153.17], [-170.9, -155.38], [-171.27, -157.32], [-168.8, -157.58]], "holes": []}}, {"shape": {"outer": [[-166.15, -152.04], [-164.86, -150.72], [-163.05, -149.23], [-161.39, -148.51], [-162.39, -146.36], [-163.99, -147.04], [-165.54, -148.01], [-166.94, -149.33], [-168.14, -150.65], [-166.15, -152.04]], "holes": []}}, {"shape": {"outer": [[-160.51, -176.33], [-160.44, -173.56], [-154.09, -173.73], [-154.1, -176.36], [-157.38, -176.46], [-160.51, -176.33]], "holes": []}}, {"shape": {"outer": [[-154.09, -173.73], [-151.66, -173.66], [-149.07, -172.95], [-147.91, -172.22], [-146.52, -174.41], [-148.15, -175.33], [-150.85, -176.11], [-154.1, -176.36], [-154.09, -173.73]], "holes": []}}, {"shape": {"outer": [[-147.91, -172.22], [-146.37, -171.02], [-144.83, -169.34], [-143.65, -167.76], [-141.64, -168.82], [-142.41, -170.21], [-143.67, -171.77], [-144.92, -173.03], [-146.52, -174.41], [-147.91, -172.22]], "holes": []}}, {"shape": {"outer": [[-161.23, -160.65], [-165.48, -164.48], [-163.75, -166.39], [-159.49, -162.57], [-161.23, -160.65]], "holes": []}}, {"shape": {"outer": [[-157.69, -164.49], [-162.01, -168.28], [-160.3, -170.2], [-155.98, -166.41], [-157.69, -164.49]], "holes": []}}, {"shape": {"outer": [[-190.59, -185.27], [-194.94, -189.21], [-193.23, -191.1], [-188.88, -187.15], [-190.59, -185.27]], "holes": []}}, {"shape": {"outer": [[-186.27, -181.34], [-190.59, -185.27], [-188.88, -187.15], [-184.55, -183.22], [-186.27, -181.34]], "holes": []}}, {"shape": {"outer": [[-181.86, -177.34], [-186.27, -181.34], [-184.55, -183.22], [-180.13, -179.22], [-181.86, -177.34]], "holes": []}}, {"shape": {"outer": [[-177.39, -173.29], [-181.86, -177.34], [-180.13, -179.22], [-175.66, -175.18], [-177.39, -173.29]], "holes": []}}, {"shape": {"outer": [[-173.02, -169.32], [-177.39, -173.29], [-175.66, -175.18], [-171.28, -171.22], [-173.02, -169.32]], "holes": []}}, {"shape": {"outer": [[-167.3, -174.99], [-171.51, -178.87], [-169.78, -180.73], [-165.57, -176.86], [-167.3, -174.99]], "holes": []}}, {"shape": {"outer": [[-171.51, -178.87], [-175.68, -182.69], [-173.95, -184.56], [-169.78, -180.73], [-171.51, -178.87]], "holes": []}}, {"shape": {"outer": [[-175.68, -182.69], [-179.95, -186.62], [-178.21, -188.49], [-173.95, -184.56], [-175.68, -182.69]], "holes": []}}, {"shape": {"outer": [[-179.95, -186.62], [-184.25, -190.57], [-182.5, -192.46], [-178.21, -188.49], [-179.95, -186.62]], "holes": []}}, {"shape": {"outer": [[-184.25, -190.57], [-188.91, -194.84], [-187.15, -196.74], [-182.5, -192.46], [-184.25, -190.57]], "holes": []}}, {"shape": {"outer": [[-194.94, -189.21], [-199.27, -193.14], [-197.55, -195.02], [-193.23, -191.1], [-194.94, -189.21]], "holes": []}}, {"shape": {"outer": [[-188.91, -194.84], [-193.44, -199.0], [-191.66, -200.91], [-187.15, -196.74], [-188.91, -194.84]], "holes": []}}, {"shape": {"outer": [[-275.5, -211.93], [-274.35, -212.16], [-273.12, -212.12], [-272.1, -211.85], [-271.28, -211.46], [-268.82, -214.08], [-269.08, -214.9], [-269.11, -215.69], [-268.89, -216.59], [-268.62, -217.09], [-268.26, -217.54], [-267.8, -217.93], [-267.27, -218.23], [-266.58, -218.44], [-265.86, -218.48], [-264.92, -218.28], [-263.36, -219.74], [-269.4, -224.91], [-278.63, -214.6], [-275.5, -211.93]], "holes": []}}, {"shape": {"outer": [[-276.24, -239.22], [-274.32, -241.41], [-258.45, -226.93], [-258.49, -225.47], [-261.55, -222.04], [-267.37, -227.19], [-268.28, -227.94], [-264.58, -232.05], [-270.04, -236.99], [-271.62, -235.11], [-276.24, -239.22]], "holes": []}}, {"shape": {"outer": [[-269.14, -209.04], [-268.86, -208.21], [-268.75, -207.49], [-268.73, -206.85], [-268.81, -206.06], [-268.93, -205.27], [-269.15, -204.6], [-269.44, -204.04], [-269.22, -203.85], [-268.12, -203.85], [-267.02, -203.67], [-266.04, -203.37], [-265.09, -202.88], [-264.36, -202.27], [-263.56, -203.17], [-251.16, -217.16], [-242.59, -209.61], [-241.96, -210.32], [-240.41, -208.92], [-239.47, -210.02], [-255.56, -224.26], [-256.79, -224.24], [-263.17, -217.29], [-262.83, -216.46], [-262.75, -215.46], [-262.88, -214.79], [-263.16, -214.17], [-263.63, -213.55], [-264.25, -213.07], [-264.9, -212.78], [-265.59, -212.64], [-266.3, -212.67], [-266.98, -212.86], [-269.75, -210.09], [-269.14, -209.04]], "holes": []}}, {"shape": {"outer": [[-271.64, -205.99], [-271.43, -206.42], [-271.31, -206.88], [-271.28, -207.36], [-271.34, -207.84], [-271.55, -208.41], [-271.89, -208.91], [-272.33, -209.3], [-272.85, -209.57], [-273.51, -209.72], [-274.19, -209.69], [-274.77, -209.5], [-275.26, -209.21], [-271.64, -205.99]], "holes": []}}, {"shape": {"outer": [[-265.34, -215.49], [-265.41, -215.28], [-265.54, -215.11], [-265.72, -214.99], [-265.93, -214.94], [-266.14, -214.94], [-266.34, -215.01], [-266.51, -215.15], [-266.63, -215.35], [-266.68, -215.57], [-266.65, -215.8], [-266.54, -216.01], [-266.38, -216.17], [-266.16, -216.25], [-265.93, -216.27], [-265.71, -216.21], [-265.54, -216.08], [-265.4, -215.91], [-265.34, -215.71], [-265.34, -215.49]], "holes": []}}, {"shape": {"outer": [[-631.61, -38.41], [-640.61, -28.38], [-617.91, -8.15], [-611.32, -15.48], [-612.97, -16.95], [-614.71, -15.02], [-615.42, -15.67], [-618.12, -12.65], [-619.37, -12.77], [-621.86, -15.17], [-621.97, -16.21], [-619.88, -18.55], [-632.0, -29.34], [-627.31, -34.57], [-631.61, -38.41]], "holes": []}}, {"shape": {"outer": [[-607.91, -63.66], [-606.79, -62.67], [-604.76, -60.95], [-603.93, -61.89], [-598.94, -57.52], [-595.07, -54.07], [-594.65, -54.55], [-591.65, -51.9], [-589.48, -54.34], [-604.4, -67.6], [-607.91, -63.66]], "holes": []}}], "roads": [{"shape": {"outer": [[-2859.92, -2925.09], [-2880.52, -2945.64], [-2888.37, -2953.47], [-2910.06, -2973.84], [-2926.75, -2990.93], [-2945.66, -3012.53], [-2971.83, -3038.09], [-2973.92, -3035.94], [-2976.33, -3037.73], [-2981.56, -3030.72], [-2990.06, -3021.73], [-2998.04, -3016.53], [-3008.76, -3012.6], [-3025.77, -3016.22], [-3049.45, -3023.09], [-3065.24, -3026.41], [-3072.15, -3023.44], [-3079.04, -3018.34], [-3087.1, -3000.39], [-3094.36, -2988.96], [-3106.35, -2971.7], [-3118.98, -2954.8], [-3130.14, -2935.7], [-3138.05, -2920.19], [-3144.36, -2915.26], [-3142.51, -2912.89], [-3143.28, -2910.52], [-3137.1, -2908.52], [-3118.25, -2905.31], [-3097.71, -2905.79], [-3075.54, -2908.11], [-3056.43, -2909.54], [-3039.1, -2908.94], [-3021.83, -2907.35], [-3000.58, -2902.69], [-2987.85, -2898.87], [-2987.13, -2901.26], [-2987.84, -2898.86], [-2969.79, -2893.51], [-2886.26, -2865.57], [-2823.28, -2846.14], [-2784.36, -2835.24], [-2784.32, -2835.2], [-2784.3, -2835.22], [-2782.76, -2834.79], [-2782.09, -2837.2], [-2782.89, -2834.31], [-2765.29, -2829.43], [-2745.04, -2826.03], [-2715.86, -2825.63], [-2683.43, -2826.9], [-2617.46, -2830.8], [-2548.65, -2836.01], [-2479.13, -2840.23], [-2452.31, -2841.22], [-2426.28, -2840.44], [-2415.72, -2837.98], [-2406.7, -2833.01], [-2396.98, -2824.3], [-2386.6, -2811.4], [-2376.53, -2793.28], [-2365.96, -2767.33], [-2350.41, -2726.55], [-2340.71, -2706.75], [-2326.52, -2680.68], [-2311.79, -2656.94], [-2292.69, -2624.92], [-2255.28, -2564.8], [-2243.49, -2537.74], [-2235.93, -2511.74], [-2233.85, -2489.38], [-2235.04, -2451.92], [-2243.77, -2338.52], [-2244.7, -2310.89], [-2242.25, -2286.27], [-2234.73, -2259.05], [-2221.34, -2232.85], [-2204.2, -2203.24], [-2178.83, -2152.07], [-2165.69, -2135.97], [-2147.04, -2124.88], [-2123.04, -2118.68], [-2099.6, -2118.33], [-2089.84, -2119.28], [-2075.88, -2119.91], [-2011.97, -2124.41], [-1983.68, -2126.8], [-1974.95, -2127.54], [-1869.23, -2136.48], [-1848.49, -2130.59], [-1833.68, -2121.0], [-1822.0, -2109.5], [-1812.32, -2096.57], [-1808.6, -2091.59], [-1796.37, -2076.07], [-1794.32, -2073.74], [-1786.42, -2067.25], [-1776.77, -2061.84], [-1771.76, -2060.2], [-1773.8, -2057.87], [-1775.62, -2055.63], [-1780.73, -2048.0], [-1787.25, -2038.3], [-1791.35, -2019.3], [-1791.8, -2014.32], [-1796.78, -2014.3], [-1808.13, -2013.99], [-1818.17, -2011.44], [-1835.43, -2002.42], [-1854.11, -1991.05], [-1881.96, -1974.45], [-1909.07, -1958.14], [-1913.6, -1955.42], [-1923.67, -1949.37], [-1943.37, -1936.88], [-1946.47, -1934.91], [-1974.48, -1917.16], [-1995.72, -1905.94], [-2017.65, -1897.9], [-2026.67, -1895.06], [-2026.52, -1894.6], [-2031.14, -1893.65], [-2059.27, -1890.17], [-2070.66, -1889.26], [-2084.99, -1888.5], [-2100.92, -1889.15], [-2131.23, -1893.14], [-2163.58, -1900.18], [-2198.4, -1908.3], [-2213.02, -1911.16], [-2226.91, -1912.34], [-2235.99, -1911.58], [-2253.23, -1908.19], [-2261.12, -1905.83], [-2295.16, -1895.66], [-2317.55, -1888.73], [-2331.67, -1884.67], [-2349.74, -1881.22], [-2367.0, -1879.36], [-2396.52, -1877.67], [-2423.8, -1877.18], [-2428.91, -1877.09], [-2449.62, -1876.7], [-2490.36, -1877.19], [-2513.4, -1878.76], [-2523.81, -1879.46], [-2526.97, -1879.67], [-2537.79, -1881.72], [-2553.94, -1886.4], [-2568.79, -1891.51], [-2588.42, -1898.72], [-2597.78, -1902.46], [-2611.64, -1904.66], [-2625.76, -1904.87], [-2656.12, -1901.87], [-2671.97, -1899.53], [-2671.24, -1894.58], [-2655.51, -1896.91], [-2625.55, -1899.87], [-2612.07, -1899.67], [-2599.12, -1897.61], [-2590.21, -1894.05], [-2570.47, -1886.8], [-2555.45, -1881.63], [-2538.95, -1876.85], [-2527.61, -1874.71], [-2524.15, -1874.47], [-2513.73, -1873.77], [-2490.56, -1872.19], [-2449.61, -1871.7], [-2428.82, -1872.09], [-2423.71, -1872.18], [-2396.33, -1872.68], [-2366.59, -1874.38], [-2349.01, -1876.27], [-2330.51, -1879.8], [-2316.12, -1883.94], [-2293.71, -1890.87], [-2259.69, -1901.04], [-2252.03, -1903.33], [-2235.3, -1906.62], [-2226.91, -1907.32], [-2213.71, -1906.2], [-2199.45, -1903.41], [-2164.68, -1895.3], [-2132.08, -1888.21], [-2101.35, -1884.17], [-2084.96, -1883.5], [-2070.33, -1884.27], [-2058.76, -1885.19], [-2030.33, -1888.71], [-2028.08, -1889.17], [-2026.65, -1883.73], [-2021.77, -1865.65], [-2020.41, -1855.67], [-2020.22, -1823.5], [-2020.19, -1814.6], [-2020.06, -1810.17], [-2019.48, -1790.09], [-2017.76, -1724.13], [-2017.63, -1720.14], [-2021.11, -1720.06], [-2061.37, -1719.13], [-2114.73, -1718.37], [-2118.63, -1718.16], [-2120.92, -1717.65], [-2122.85, -1715.89], [-2123.96, -1713.0], [-2124.12, -1710.06], [-2123.98, -1705.76], [-2122.08, -1652.81], [-2121.51, -1618.37], [-2118.52, -1618.42], [-2121.51, -1618.35], [-2120.13, -1557.71], [-2117.13, -1557.78], [-2120.13, -1557.71], [-2118.46, -1486.02], [-2118.24, -1477.73], [-2149.36, -1476.86], [-2167.62, -1476.35], [-2173.94, -1476.17], [-2174.3, -1483.41], [-2174.51, -1487.62], [-2179.68, -1671.89], [-2180.19, -1680.8], [-2181.16, -1688.13], [-2182.74, -1694.0], [-2185.98, -1697.99], [-2190.96, -1701.77], [-2192.77, -1699.38], [-2195.56, -1700.49], [-2199.13, -1691.54], [-2203.17, -1672.56], [-2204.98, -1665.44], [-2214.39, -1647.16], [-2221.41, -1634.63], [-2229.33, -1622.69], [-2238.08, -1610.8], [-2248.66, -1598.77], [-2249.53, -1597.64], [-2260.39, -1585.99], [-2270.4, -1575.5], [-2274.77, -1571.82], [-2283.76, -1564.25], [-2297.26, -1551.75], [-2300.32, -1548.92], [-2326.13, -1532.01], [-2359.16, -1512.49], [-2373.17, -1508.41], [-2402.67, -1501.11], [-2421.6, -1495.57], [-2439.86, -1489.82], [-2447.42, -1486.48], [-2452.03, -1481.95], [-2454.03, -1477.95], [-2454.85, -1472.66], [-2454.39, -1469.2], [-2452.37, -1464.56], [-2448.32, -1459.21], [-2456.28, -1449.31], [-2466.88, -1436.33], [-2479.87, -1420.73], [-2511.42, -1382.98], [-2515.35, -1378.17], [-2519.52, -1382.02], [-2522.18, -1384.31], [-2555.62, -1413.12], [-2572.83, -1427.42], [-2605.78, -1455.2], [-2612.32, -1460.72], [-2658.63, -1500.85], [-2691.03, -1527.83], [-2704.63, -1539.19], [-2710.94, -1544.17], [-2722.59, -1554.24], [-2791.15, -1612.38], [-2809.45, -1628.72], [-2811.44, -1626.48], [-2809.55, -1628.81], [-2851.08, -1662.59], [-2888.73, -1695.36], [-2906.23, -1710.9], [-2898.71, -1719.61], [-2894.81, -1723.46], [-2890.24, -1727.86], [-2885.63, -1731.07], [-2880.27, -1734.59], [-2874.68, -1737.77], [-2866.38, -1740.93], [-2856.39, -1743.56], [-2850.93, -1744.99], [-2845.27, -1745.62], [-2845.93, -1751.59], [-2852.03, -1750.9], [-2857.92, -1749.36], [-2868.21, -1746.65], [-2877.25, -1743.22], [-2883.41, -1739.71], [-2888.99, -1736.04], [-2894.06, -1732.52], [-2899.0, -1727.75], [-2903.09, -1723.71], [-2912.71, -1712.59], [-2910.44, -1710.62], [-2912.72, -1712.58], [-2918.72, -1705.58], [-2934.87, -1686.75], [-2961.3, -1655.51], [-2975.24, -1637.74], [-2981.46, -1630.54], [-2992.61, -1617.66], [-3000.6, -1607.11], [-3007.1, -1599.87], [-3031.94, -1570.46], [-3039.37, -1561.38], [-3031.38, -1554.06], [-3026.89, -1549.96], [-3030.73, -1545.26], [-3055.92, -1515.3], [-3081.95, -1485.06], [-3088.78, -1477.37], [-3094.05, -1471.51], [-3119.31, -1442.46], [-3144.01, -1414.26], [-3145.67, -1412.31], [-3151.19, -1405.79], [-3148.9, -1403.85], [-3151.17, -1401.19], [-3071.76, -1333.32], [-3064.97, -1327.51], [-3062.7, -1330.17], [-3064.94, -1327.48], [-2989.79, -1264.87], [-2986.06, -1261.39], [-2988.28, -1258.95], [-2990.75, -1256.16], [-3007.64, -1236.28], [-3014.02, -1228.62], [-3036.54, -1201.13], [-3043.26, -1192.79], [-3049.0, -1186.25], [-3096.3, -1130.33], [-3101.29, -1124.31], [-3098.98, -1122.4], [-3100.92, -1120.11], [-3094.44, -1114.6], [-2986.8, -1023.35], [-2980.61, -1017.97], [-2978.64, -1020.24], [-2980.42, -1017.82], [-2971.77, -1011.46], [-2966.7, -1009.44], [-2955.33, -1007.28], [-2906.21, -1001.79], [-2885.59, -999.92], [-2866.89, -999.23], [-2812.35, -1000.87], [-2809.06, -1000.96], [-2804.31, -1001.1], [-2803.81, -967.62], [-2800.81, -967.67], [-2803.81, -967.57], [-2803.14, -946.07], [-2802.46, -921.11], [-2801.97, -902.86], [-2801.6, -873.46], [-2804.51, -873.84], [-2806.8, -875.48], [-2811.39, -878.74], [-2835.05, -891.03], [-2849.25, -896.66], [-2862.09, -899.61], [-2874.8, -901.17], [-2889.41, -901.78], [-2949.96, -898.98], [-2957.83, -898.74], [-2957.74, -895.74], [-2957.87, -898.74], [-3031.81, -895.55], [-3050.37, -907.87], [-3060.44, -915.37], [-3062.23, -912.97], [-3064.6, -914.81], [-3069.46, -908.57], [-3075.35, -900.99], [-3082.32, -892.03], [-3079.95, -890.19], [-3079.8, -887.2], [-3050.95, -888.61], [-3032.51, -889.52], [-2960.61, -892.61], [-2960.41, -887.75], [-2960.26, -884.01], [-2958.86, -850.2], [-2957.34, -813.03], [-2956.89, -803.53], [-2953.89, -803.68], [-2956.89, -803.52], [-2956.44, -794.77], [-2953.37, -719.49], [-2953.17, -710.66], [-2953.0, -702.41], [-2952.76, -694.34], [-2956.06, -678.68], [-2960.72, -668.31], [-2966.23, -660.42], [-2972.02, -654.12], [-2980.25, -647.61], [-2991.68, -641.16], [-2990.2, -638.55], [-2991.98, -640.97], [-3004.96, -631.44], [-3010.49, -628.08], [-3014.74, -625.5], [-3021.37, -619.08], [-3019.28, -616.93], [-3021.57, -618.86], [-3030.85, -607.88], [-3035.93, -599.62], [-3041.34, -590.46], [-3045.51, -576.58], [-3047.24, -565.76], [-3047.21, -553.05], [-3045.26, -541.3], [-3040.91, -528.07], [-3036.04, -518.74], [-3034.52, -515.84], [-3032.24, -513.13], [-3041.81, -517.07], [-3051.4, -519.55], [-3069.06, -522.66], [-3076.1, -523.03], [-3090.3, -522.96], [-3099.06, -522.38], [-3104.77, -522.73], [-3107.55, -523.32], [-3118.29, -527.21], [-3124.08, -530.17], [-3130.37, -536.43], [-3134.6, -532.17], [-3127.64, -525.25], [-3120.69, -521.69], [-3109.2, -517.54], [-3105.59, -516.77], [-3099.05, -516.36], [-3090.08, -516.96], [-3076.25, -517.03], [-3069.74, -516.68], [-3052.67, -513.68], [-3043.71, -511.36], [-3032.4, -506.72], [-3025.57, -503.13], [-3017.26, -498.14], [-3012.77, -495.05], [-3005.39, -489.14], [-2961.69, -451.79], [-2961.69, -451.79], [-2944.79, -437.21], [-2921.98, -422.49], [-2907.53, -413.95], [-2899.57, -409.68], [-2904.73, -406.01], [-2905.95, -405.15], [-2910.89, -402.38], [-2922.12, -397.61], [-2938.79, -392.3], [-2950.85, -389.1], [-2960.69, -387.07], [-2972.29, -385.65], [-2990.27, -385.13], [-2999.04, -385.53], [-3034.5, -389.6], [-3034.84, -386.62], [-3038.07, -385.27], [-3033.98, -375.51], [-3032.44, -371.81], [-3021.17, -354.36], [-3007.18, -339.56], [-2999.51, -332.28], [-2995.41, -325.36], [-2994.64, -323.08], [-2994.82, -320.9], [-2995.32, -314.57], [-2996.65, -305.79], [-2997.07, -303.02], [-3001.63, -273.22], [-3006.61, -241.31], [-3007.11, -238.42], [-3007.73, -234.48], [-3012.1, -235.16], [-3069.52, -244.04], [-3070.32, -238.85], [-3073.29, -239.32], [-3074.58, -231.14], [-3075.2, -227.25], [-3087.02, -148.76], [-3081.09, -147.86], [-3069.27, -226.33], [-3068.66, -230.21], [-3068.18, -233.2], [-3013.71, -224.78], [-3009.38, -224.11], [-3009.96, -220.55], [-3010.38, -217.81], [-3021.62, -146.88], [-3014.71, -145.78], [-3003.47, -216.73], [-3003.04, -219.46], [-3002.46, -223.04], [-2998.04, -222.35], [-2978.33, -219.3], [-2970.25, -218.04], [-2945.73, -214.25], [-2946.33, -210.91], [-2946.71, -208.74], [-2953.04, -173.27], [-2949.59, -172.65], [-2953.06, -173.12], [-2953.81, -167.63], [-2957.63, -139.5], [-2950.7, -138.56], [-2946.87, -166.69], [-2946.61, -168.64], [-2903.35, -161.83], [-2890.29, -159.84], [-2889.23, -166.76], [-2902.28, -168.75], [-2945.52, -175.55], [-2939.82, -207.51], [-2939.43, -209.69], [-2938.81, -213.18], [-2877.43, -203.67], [-2868.98, -202.37], [-2860.58, -201.07], [-2857.86, -200.64], [-2844.39, -198.56], [-2844.22, -199.66], [-2833.78, -195.13], [-2779.03, -186.47], [-2772.5, -187.61], [-2772.72, -186.84], [-2767.66, -185.38], [-2759.04, -184.33], [-2746.59, -184.25], [-2742.52, -184.34], [-2737.22, -184.47], [-2733.24, -184.56], [-2733.36, -189.81], [-2733.24, -184.56], [-2722.97, -184.82], [-2706.79, -185.2], [-2706.87, -188.67], [-2698.78, -187.38], [-2678.17, -188.22], [-2632.55, -190.22], [-2624.01, -190.48], [-2624.06, -192.23], [-2624.01, -190.48], [-2616.72, -190.7], [-2597.14, -191.43], [-2583.61, -191.74], [-2574.64, -191.67], [-2565.0, -191.46], [-2550.27, -191.89], [-2540.41, -192.06], [-2540.44, -193.81], [-2540.37, -190.31], [-2531.3, -190.49], [-2528.3, -190.56], [-2513.45, -190.96], [-2497.85, -191.35], [-2492.24, -190.88], [-2487.95, -189.64], [-2478.13, -185.05], [-2471.24, -182.11], [-2467.03, -180.34], [-2465.68, -183.57], [-2466.72, -180.23], [-2457.98, -177.52], [-2449.95, -176.51], [-2443.51, -176.74], [-2435.71, -178.45], [-2430.07, -180.58], [-2418.27, -185.31], [-2409.42, -188.3], [-2401.24, -190.84], [-2389.1, -193.34], [-2379.08, -194.95], [-2368.3, -196.27], [-2353.15, -198.06], [-2333.16, -200.24], [-2319.97, -201.14], [-2311.21, -201.73], [-2322.7, -194.77], [-2345.6, -181.75], [-2405.12, -154.45], [-2419.32, -147.7], [-2430.19, -142.57], [-2435.45, -138.48], [-2440.86, -132.86], [-2443.15, -129.68], [-2445.75, -124.2], [-2447.15, -118.12], [-2447.13, -103.25], [-2446.7, -86.16], [-2446.58, -81.09], [-2446.02, -68.05], [-2445.37, -53.01], [-2445.12, -45.79], [-2444.22, -19.31], [-2443.68, -11.44], [-2445.06, -11.37], [-2451.02, -11.18], [-2559.34, -7.2], [-2593.66, -4.6], [-2623.74, -2.3], [-2646.42, -1.04], [-2654.41, 0.81], [-2659.45, 2.8], [-2667.05, 7.19], [-2674.31, 14.01], [-2679.81, 22.16], [-2682.89, 27.85], [-2683.26, 28.52], [-2689.21, 39.6], [-2694.38, 50.91], [-2700.51, 48.79], [-2709.9, 45.75], [-2719.61, 42.24], [-2729.67, 39.27], [-2737.77, 37.54], [-2747.9, 36.56], [-2761.8, 36.69], [-2790.5, 38.26], [-2790.64, 33.68], [-2790.96, 26.92], [-2790.83, 15.65], [-2790.08, 15.45], [-2787.1, 13.72], [-2784.68, 11.26], [-2782.99, 8.26], [-2782.14, 4.94], [-2782.19, 1.44], [-2783.5, -2.59], [-2786.06, -6.01], [-2789.58, -8.44], [-2793.71, -9.59], [-2797.99, -9.35], [-2801.96, -7.76], [-2802.95, -6.92], [-2806.64, -9.87], [-2808.59, -11.58], [-2814.57, -14.53], [-2865.38, -13.59], [-2888.52, -13.92], [-2912.3, -12.61], [-2942.35, -11.16], [-2942.95, -23.2], [-2944.27, -56.58], [-2944.59, -74.98], [-2944.66, -78.55], [-2944.69, -80.52], [-2951.69, -80.4], [-2951.65, -78.44], [-2951.59, -74.86], [-2951.26, -56.38], [-2949.95, -22.89], [-2949.19, -7.82], [-2945.7, -8.0], [-2949.19, -7.81], [-2948.87, -1.7], [-2948.44, 6.35], [-2948.26, 11.3], [-2947.44, 32.78], [-2947.07, 42.6], [-2946.96, 46.27], [-2961.62, 46.49], [-2985.99, 47.67], [-3038.2, 49.62], [-3040.95, 50.37], [-3043.48, 53.64], [-3043.38, 56.93], [-3043.24, 58.26], [-3042.87, 63.6], [-3042.8, 66.03], [-3040.14, 149.44], [-3039.86, 158.37], [-3036.36, 158.26], [-3036.23, 161.76], [-2905.57, 156.76], [-2905.52, 160.65], [-2903.87, 228.37], [-2903.78, 239.33], [-2904.01, 246.9], [-2906.0, 255.94], [-2917.08, 282.06], [-2918.94, 287.95], [-2921.68, 298.5], [-2922.27, 310.73], [-2921.89, 322.71], [-2921.71, 328.42], [-2920.13, 343.62], [-2917.68, 354.87], [-2914.35, 362.51], [-2908.45, 373.51], [-2902.28, 370.21], [-2908.04, 359.45], [-2910.99, 352.71], [-2913.2, 342.51], [-2914.72, 327.94], [-2914.89, 322.48], [-2915.26, 310.78], [-2914.73, 299.55], [-2912.22, 289.88], [-2910.51, 284.49], [-2899.3, 258.08], [-2897.04, 247.76], [-2896.78, 239.41], [-2896.87, 228.25], [-2898.53, 160.53], [-2898.57, 156.48], [-2896.86, 156.41], [-2894.5, 156.3], [-2743.32, 149.98], [-2705.49, 148.4], [-2698.85, 148.16], [-2698.73, 152.89], [-2694.83, 247.59], [-2694.41, 256.67], [-2693.74, 283.0], [-2693.76, 289.99], [-2693.79, 303.14], [-2698.61, 314.15], [-2700.81, 318.24], [-2712.21, 336.33], [-2706.29, 340.06], [-2694.76, 321.76], [-2692.31, 317.21], [-2686.8, 304.62], [-2686.76, 290.01], [-2686.74, 282.92], [-2687.42, 256.42], [-2687.84, 247.28], [-2691.74, 152.66], [-2691.85, 147.96], [-2684.86, 147.83], [-2580.71, 143.58], [-2573.67, 143.39], [-2462.28, 138.78], [-2443.13, 137.99], [-2436.3, 137.53], [-2436.0, 142.59], [-2435.49, 150.97], [-2434.78, 168.94], [-2434.29, 182.79], [-2432.72, 211.16], [-2431.84, 232.03], [-2431.15, 248.32], [-2431.0, 254.46], [-2429.79, 270.04], [-2430.07, 280.91], [-2438.12, 289.15], [-2460.04, 290.09], [-2502.46, 291.68], [-2502.23, 297.67], [-2459.8, 296.09], [-2435.49, 295.05], [-2426.53, 285.87], [-2420.55, 289.81], [-2416.7, 283.97], [-2423.04, 279.78], [-2422.78, 269.86], [-2424.01, 254.1], [-2424.08, 251.05], [-2420.15, 250.89], [-2416.93, 250.73], [-2410.66, 250.58], [-2365.87, 249.05], [-2344.12, 248.45], [-2336.96, 248.65], [-2332.82, 249.62], [-2330.22, 250.33], [-2328.79, 252.35], [-2327.37, 254.86], [-2326.43, 256.67], [-2325.39, 258.35], [-2323.65, 260.59], [-2321.36, 262.69], [-2319.71, 264.05], [-2317.18, 265.81], [-2313.5, 266.98], [-2309.47, 267.73], [-2305.35, 267.59], [-2301.69, 267.06], [-2297.77, 265.49], [-2294.56, 263.51], [-2291.84, 260.51], [-2291.25, 259.03], [-2290.41, 256.84], [-2290.19, 253.21], [-2291.0, 249.91], [-2292.3, 247.55], [-2293.74, 245.34], [-2296.14, 244.24], [-2298.14, 243.76], [-2304.03, 243.36], [-2309.32, 243.66], [-2318.9, 244.14], [-2328.07, 244.7], [-2331.34, 243.8], [-2336.19, 242.67], [-2344.12, 242.45], [-2366.06, 243.05], [-2410.84, 244.58], [-2417.15, 244.73], [-2420.42, 244.89], [-2424.29, 245.06], [-2424.85, 231.73], [-2425.73, 210.82], [-2427.3, 182.48], [-2427.79, 168.68], [-2428.5, 150.62], [-2429.01, 142.17], [-2429.31, 137.2], [-2423.43, 137.04], [-2396.28, 136.39], [-2389.7, 136.91], [-2376.94, 140.15], [-2370.51, 142.75], [-2351.91, 152.24], [-2342.3, 156.09], [-2334.93, 158.66], [-2324.08, 161.4], [-2316.18, 163.07], [-2303.78, 164.53], [-2284.47, 163.74], [-2273.7, 162.46], [-2254.99, 157.98], [-2232.38, 151.4], [-2208.49, 144.66], [-2194.02, 141.92], [-2178.52, 139.35], [-2167.66, 138.23], [-2157.4, 137.63], [-2136.87, 137.5], [-2120.18, 138.1], [-2098.33, 139.84], [-2069.62, 141.8], [-2055.52, 142.05], [-2043.44, 141.85], [-2032.86, 141.74], [-2022.27, 141.19], [-2011.19, 140.38], [-1991.64, 138.82], [-1976.9, 137.2], [-1968.8, 136.13], [-1960.8, 134.5], [-1953.31, 132.45], [-1942.55, 128.22], [-1934.25, 123.76], [-1927.54, 119.41], [-1920.58, 114.17], [-1907.57, 104.39], [-1894.9, 94.94], [-1885.49, 87.83], [-1876.75, 81.97], [-1868.27, 78.29], [-1855.59, 74.23], [-1844.81, 70.9], [-1834.46, 68.55], [-1821.08, 66.81], [-1807.52, 65.96], [-1784.4, 65.88], [-1770.19, 64.44], [-1752.5, 61.69], [-1730.05, 58.42], [-1713.6, 56.97], [-1703.65, 56.52], [-1693.99, 56.53], [-1685.43, 57.83], [-1677.09, 60.77], [-1657.18, 70.96], [-1648.52, 75.5], [-1639.07, 79.68], [-1630.4, 83.79], [-1623.43, 86.85], [-1617.8, 91.42], [-1610.51, 98.39], [-1601.13, 109.47], [-1592.8, 120.6], [-1588.52, 128.54], [-1583.99, 136.94], [-1581.43, 141.47], [-1578.18, 145.84], [-1573.34, 149.05], [-1568.49, 150.22], [-1565.06, 149.71], [-1561.25, 147.8], [-1558.31, 145.0], [-1556.17, 140.2], [-1554.68, 133.97], [-1554.5, 126.29], [-1554.56, 119.14], [-1554.81, 109.35], [-1554.83, 104.28], [-1554.36, 100.55], [-1553.41, 98.13], [-1552.54, 97.22], [-1550.85, 96.18], [-1548.2, 95.12], [-1544.72, 94.68], [-1539.37, 94.34], [-1515.99, 93.24], [-1487.59, 91.82], [-1474.36, 91.19], [-1458.5, 90.14], [-1455.89, 90.06], [-1451.31, 89.88], [-1450.85, 99.33], [-1449.89, 122.28], [-1449.69, 126.83], [-1449.58, 129.99], [-1448.96, 140.61], [-1448.84, 145.37], [-1450.98, 159.26], [-1445.05, 160.17], [-1442.83, 145.75], [-1442.96, 140.36], [-1443.58, 129.72], [-1443.69, 126.59], [-1443.89, 122.02], [-1444.85, 99.06], [-1445.49, 86.16], [-1444.99, 86.15], [-1446.05, 54.32], [-1446.25, 46.19], [-1440.99, 45.93], [-1348.86, 41.52], [-1304.47, 39.38], [-1192.56, 34.38], [-1187.14, 33.6], [-1186.75, 39.09], [-1185.56, 59.83], [-1184.76, 73.68], [-1183.28, 99.38], [-1182.51, 114.12], [-1181.94, 117.55], [-1180.67, 120.91], [-1178.34, 123.91], [-1174.77, 125.8], [-1169.48, 125.53], [-1144.28, 124.22], [-1107.81, 122.33], [-1094.35, 121.62], [-1094.71, 114.63], [-1108.18, 115.34], [-1144.64, 117.23], [-1169.84, 118.54], [-1173.2, 118.71], [-1173.73, 118.43], [-1174.5, 117.45], [-1175.15, 115.72], [-1175.54, 113.36], [-1176.29, 99.0], [-1177.78, 73.28], [-1178.57, 59.43], [-1179.77, 38.65], [-1180.19, 32.63], [-1174.65, 31.89], [-1140.42, 30.2], [-1133.2, 29.91], [-1093.21, 27.82], [-1057.49, 26.09], [-1031.02, 24.97], [-1025.25, 24.85], [-1024.87, 30.66], [-1024.81, 32.04], [-1023.79, 55.46], [-1022.51, 84.69], [-1021.83, 100.33], [-1021.29, 112.76], [-1021.25, 113.58], [-1019.78, 147.14], [-1019.52, 153.3], [-1018.94, 166.46], [-1018.79, 170.0], [-1011.79, 169.69], [-1011.95, 166.15], [-1012.52, 153.0], [-1012.79, 146.84], [-1014.25, 113.26], [-1014.29, 112.44], [-1014.83, 100.03], [-1015.52, 84.38], [-1016.79, 55.16], [-1017.81, 31.73], [-1017.88, 30.27], [-1018.24, 24.72], [-1013.9, 24.65], [-986.41, 22.48], [-968.25, 21.45], [-952.84, 20.46], [-951.93, 20.42], [-916.92, 19.36], [-911.51, 20.14], [-911.15, 20.25], [-906.23, 21.75], [-901.12, 24.24], [-898.26, 26.23], [-896.41, 27.52], [-889.64, 33.62], [-894.44, 38.87], [-895.24, 39.96], [-952.07, 103.68], [-954.54, 105.77], [-957.94, 108.07], [-963.05, 111.08], [-969.56, 112.93], [-968.47, 116.78], [-961.47, 114.79], [-955.81, 111.45], [-952.13, 108.97], [-949.27, 106.55], [-892.14, 42.49], [-891.34, 41.42], [-886.67, 36.3], [-884.65, 38.12], [-871.72, 49.77], [-860.37, 60.02], [-863.56, 63.57], [-865.23, 65.41], [-918.15, 124.18], [-932.47, 140.08], [-944.09, 152.97], [-952.1, 161.88], [-947.64, 165.89], [-939.63, 156.99], [-928.02, 144.1], [-914.91, 129.54], [-912.71, 131.5], [-896.35, 146.04], [-888.74, 152.81], [-888.13, 153.36], [-915.27, 184.13], [-917.64, 186.82], [-914.21, 189.84], [-911.84, 187.15], [-884.71, 156.4], [-884.36, 156.71], [-876.61, 163.61], [-853.62, 184.03], [-851.39, 186.02], [-870.75, 207.53], [-868.52, 209.54], [-870.75, 207.53], [-875.18, 212.46], [-877.91, 215.48], [-873.45, 219.5], [-870.72, 216.47], [-868.26, 213.73], [-866.21, 215.5], [-823.38, 252.48], [-819.46, 247.93], [-862.29, 210.96], [-864.24, 209.27], [-845.7, 188.67], [-847.93, 186.66], [-845.7, 188.67], [-796.31, 133.81], [-792.25, 129.31], [-788.34, 124.96], [-784.21, 128.67], [-739.73, 168.78], [-722.67, 184.2], [-709.52, 196.01], [-702.42, 202.12], [-684.01, 219.02], [-668.5, 233.0], [-647.35, 252.07], [-643.72, 255.82], [-646.98, 259.41], [-649.37, 262.05], [-662.32, 276.43], [-675.94, 291.53], [-688.61, 305.6], [-694.48, 312.11], [-707.88, 326.99], [-702.68, 331.67], [-689.28, 316.8], [-683.41, 310.28], [-670.74, 296.22], [-657.12, 281.11], [-644.17, 266.74], [-641.79, 264.11], [-638.71, 260.72], [-634.21, 264.89], [-615.79, 281.57], [-595.58, 299.84], [-588.03, 306.95], [-557.29, 335.35], [-555.86, 336.59], [-550.26, 341.36], [-543.72, 346.99], [-538.84, 351.48], [-530.54, 359.1], [-499.44, 387.7], [-490.09, 396.28], [-485.36, 391.13], [-494.7, 382.55], [-525.8, 353.95], [-534.1, 346.32], [-536.47, 344.14], [-533.8, 341.19], [-530.32, 337.33], [-520.29, 326.25], [-516.83, 322.42], [-493.57, 296.68], [-490.59, 293.38], [-477.68, 279.1], [-474.1, 275.14], [-463.09, 285.11], [-461.08, 286.93], [-430.64, 314.46], [-409.17, 333.87], [-408.35, 334.62], [-407.26, 335.6], [-405.28, 337.4], [-388.0, 353.04], [-382.56, 357.96], [-386.9, 362.91], [-411.98, 390.65], [-421.87, 401.59], [-423.75, 403.66], [-442.7, 424.62], [-449.53, 432.19], [-454.5, 437.68], [-449.31, 442.38], [-444.34, 436.88], [-437.5, 429.32], [-418.56, 408.36], [-416.68, 406.29], [-406.79, 395.34], [-381.67, 367.57], [-377.36, 362.65], [-374.35, 365.37], [-352.16, 385.45], [-351.28, 386.24], [-330.31, 405.21], [-323.5, 411.36], [-319.72, 414.79], [-312.44, 421.37], [-299.84, 432.77], [-284.4, 446.73], [-283.52, 447.52], [-281.3, 449.54], [-266.55, 462.88], [-260.25, 468.58], [-257.93, 470.67], [-247.86, 479.79], [-237.65, 489.02], [-232.4, 491.96], [-228.99, 492.29], [-225.29, 491.69], [-221.85, 489.65], [-221.18, 488.82], [-191.28, 456.55], [-188.19, 453.21], [-166.57, 429.84], [-165.32, 428.49], [-163.93, 426.99], [-159.84, 422.55], [-155.57, 426.41], [-125.32, 453.7], [-101.61, 475.1], [-89.98, 485.6], [-84.74, 490.51], [-34.62, 536.36], [-27.98, 542.15], [-21.85, 548.17], [39.85, 604.43], [47.13, 610.67], [53.14, 616.19], [156.67, 710.8], [188.35, 739.34], [192.79, 743.57], [188.83, 747.88], [186.51, 750.35], [165.38, 774.05], [170.61, 778.71], [191.67, 755.08], [193.96, 752.64], [197.87, 748.39], [201.95, 752.25], [338.58, 874.91], [342.34, 878.4], [338.29, 882.85], [335.97, 885.39], [277.35, 949.66], [282.52, 954.38], [341.14, 890.11], [343.46, 887.56], [347.48, 883.16], [351.54, 886.89], [411.72, 942.34], [407.67, 946.98], [405.32, 949.66], [346.26, 1017.23], [345.94, 1017.61], [303.16, 978.93], [299.14, 983.38], [344.17, 1024.1], [385.23, 1061.24], [416.74, 1089.73], [420.62, 1093.25], [389.12, 1128.14], [393.58, 1132.16], [427.08, 1095.04], [492.34, 1022.76], [494.82, 1020.01], [499.56, 1024.1], [509.06, 1032.33], [524.52, 1045.73], [538.96, 1058.25], [552.8, 1071.12], [555.73, 1073.67], [552.53, 1077.23], [549.72, 1080.35], [536.68, 1094.86], [493.19, 1143.23], [484.17, 1153.26], [483.32, 1153.9], [482.59, 1154.08], [481.85, 1153.98], [480.86, 1153.38], [461.94, 1136.5], [457.95, 1140.98], [477.28, 1158.23], [479.8, 1159.75], [482.92, 1160.19], [485.97, 1159.42], [488.25, 1157.7], [497.66, 1147.24], [541.14, 1098.87], [554.18, 1084.37], [556.99, 1081.24], [560.33, 1077.53], [567.27, 1083.08], [570.02, 1085.57], [581.24, 1094.74], [616.76, 1127.58], [636.61, 1145.76], [640.23, 1149.67], [636.74, 1153.46], [633.83, 1156.55], [619.01, 1172.29], [615.26, 1176.4], [608.75, 1185.87], [607.22, 1190.36], [607.48, 1190.45], [606.41, 1191.19], [603.8, 1193.52], [598.89, 1198.51], [595.72, 1202.09], [582.34, 1217.2], [575.08, 1225.36], [557.8, 1244.77], [545.41, 1258.24], [549.83, 1262.3], [562.25, 1248.8], [579.56, 1229.35], [586.83, 1221.18], [600.21, 1206.07], [603.27, 1202.61], [607.16, 1198.65], [607.19, 1199.07], [607.66, 1201.54], [612.72, 1217.78], [671.25, 1400.22], [674.05, 1409.17], [677.86, 1407.97], [674.05, 1409.2], [690.28, 1459.71], [721.65, 1558.17], [742.13, 1623.71], [744.67, 1631.85], [746.69, 1638.45], [748.15, 1643.25], [750.16, 1648.65], [752.8, 1654.81], [755.81, 1658.81], [795.34, 1703.22], [801.22, 1709.84], [806.25, 1715.61], [845.94, 1764.58], [851.41, 1770.34], [856.33, 1776.14], [907.01, 1833.26], [912.12, 1838.79], [918.74, 1846.22], [1033.28, 1976.51], [1063.89, 2018.96], [1072.6, 2026.96], [1081.27, 2035.53], [1087.88, 2041.82], [1100.82, 2053.73], [1121.37, 2076.37], [1127.55, 2086.9], [1134.05, 2095.1], [1148.9, 2114.24], [1181.82, 2148.62], [1192.19, 2170.38], [1197.55, 2182.0], [1198.9, 2185.43], [1200.89, 2190.46], [1216.14, 2233.14], [1225.33, 2255.97], [1242.1, 2299.35], [1243.86, 2303.88], [1247.59, 2302.43], [1244.34, 2303.75], [1249.16, 2315.63], [1251.44, 2321.37], [1253.46, 2325.65], [1264.66, 2346.59], [1276.28, 2368.3], [1281.1, 2377.4], [1284.19, 2375.76], [1281.13, 2377.44], [1298.23, 2408.55], [1293.06, 2412.59], [1274.98, 2425.24], [1257.92, 2442.99], [1251.68, 2451.91], [1254.14, 2453.63], [1251.68, 2451.91], [1244.44, 2462.29], [1238.25, 2469.04], [1230.09, 2475.5], [1216.65, 2484.46], [1196.68, 2496.85], [1181.29, 2505.11], [1174.81, 2511.59], [1169.11, 2500.91], [1166.08, 2484.12], [1163.17, 2473.02], [1162.01, 2464.99], [1162.01, 2459.79], [1163.23, 2454.79], [1164.86, 2453.36], [1167.41, 2447.49], [1175.14, 2437.84], [1188.92, 2424.65], [1193.12, 2420.27], [1203.51, 2409.48], [1210.22, 2400.14], [1212.97, 2390.25], [1207.19, 2388.64], [1204.72, 2397.5], [1198.89, 2405.63], [1188.8, 2416.11], [1184.68, 2420.4], [1170.7, 2433.78], [1162.23, 2444.36], [1159.89, 2449.74], [1157.85, 2451.53], [1156.01, 2459.07], [1156.01, 2465.42], [1157.28, 2474.22], [1160.22, 2485.41], [1163.37, 2502.9], [1170.34, 2515.96], [1170.06, 2516.22], [1169.51, 2517.26], [1165.37, 2525.01], [1162.74, 2533.15], [1161.57, 2541.85], [1163.11, 2553.67], [1165.65, 2562.04], [1167.69, 2568.72], [1170.46, 2577.0], [1176.66, 2595.54], [1183.85, 2622.15], [1190.95, 2641.95], [1200.59, 2659.8], [1205.42, 2666.91], [1220.54, 2689.17], [1236.71, 2705.49], [1239.43, 2707.64], [1244.6, 2711.7], [1254.57, 2716.65], [1265.87, 2718.88], [1275.21, 2720.1], [1289.97, 2720.37], [1325.82, 2719.02], [1382.76, 2717.74], [1404.94, 2716.23], [1404.74, 2713.23], [1404.96, 2716.23], [1452.54, 2712.76], [1457.25, 2712.41], [1474.61, 2744.61], [1478.1, 2751.08], [1482.55, 2759.35], [1485.25, 2764.36], [1497.33, 2785.63], [1509.14, 2807.03], [1504.49, 2809.85], [1503.09, 2810.6], [1501.67, 2810.91], [1497.68, 2811.36], [1494.19, 2811.52], [1411.85, 2815.62], [1373.73, 2816.25], [1360.64, 2816.4], [1342.3, 2813.44], [1337.11, 2812.1], [1321.44, 2808.04], [1291.86, 2801.92], [1281.18, 2797.9], [1279.07, 2803.52], [1290.19, 2807.7], [1320.08, 2813.89], [1335.61, 2817.91], [1341.07, 2819.32], [1360.19, 2822.41], [1373.81, 2822.25], [1412.05, 2821.62], [1494.48, 2817.51], [1498.15, 2817.35], [1502.64, 2816.83], [1504.77, 2816.38], [1504.14, 2813.45], [1505.57, 2816.08], [1507.47, 2815.05], [1515.14, 2810.41], [1513.59, 2807.85], [1516.65, 2806.15], [1504.94, 2784.93], [1510.72, 2781.9], [1520.6, 2776.74], [1546.5, 2763.19], [1549.92, 2761.47], [1588.31, 2742.17], [1594.45, 2739.38], [1596.86, 2738.29], [1599.34, 2737.84], [1605.19, 2737.47], [1605.0, 2734.48], [1608.99, 2734.29], [1608.7, 2728.19], [1607.39, 2701.27], [1605.46, 2662.5], [1604.9, 2651.17], [1603.89, 2626.34], [1603.78, 2623.81], [1602.57, 2594.03], [1601.27, 2561.91], [1600.06, 2532.11], [1599.96, 2529.83], [1599.07, 2507.97], [1598.12, 2485.52], [1594.13, 2485.69], [1598.12, 2485.41], [1596.02, 2454.68], [1594.68, 2434.99], [1594.53, 2430.95], [1594.53, 2430.95], [1594.3, 2412.34], [1594.35, 2396.84], [1596.35, 2369.35], [1599.91, 2346.94], [1604.93, 2323.93], [1609.62, 2311.43], [1614.86, 2297.46], [1621.08, 2283.38], [1634.34, 2249.89], [1639.29, 2227.9], [1641.75, 2212.88], [1643.79, 2190.92], [1641.61, 2158.04], [1639.26, 2122.65], [1635.74, 2089.12], [1632.17, 2055.17], [1628.47, 2020.04], [1623.57, 1973.48], [1622.62, 1960.57], [1621.45, 1944.83], [1623.35, 1935.95], [1619.44, 1935.12], [1621.18, 1935.27], [1621.2, 1935.07], [1623.44, 1935.01], [1623.12, 1922.66], [1625.06, 1920.32], [1626.71, 1919.27], [1630.05, 1919.43], [1632.16, 1919.96], [1634.38, 1921.93], [1635.39, 1920.78], [1635.45, 1920.8], [1633.34, 1923.34], [1654.17, 1940.65], [1656.6, 1942.67], [1664.95, 1949.94], [1677.32, 1960.79], [1693.79, 1975.76], [1700.98, 1982.26], [1709.96, 1990.51], [1715.53, 1995.6], [1719.07, 1991.73], [1715.53, 1995.6], [1726.31, 2005.44], [1729.85, 2001.56], [1724.2, 2008.24], [1736.94, 2019.0], [1741.38, 2023.18], [1794.37, 2074.49], [1820.18, 2099.59], [1838.01, 2117.23], [1845.44, 2127.67], [1851.01, 2142.82], [1854.21, 2155.92], [1857.61, 2155.09], [1868.56, 2210.83], [1873.4, 2232.52], [1898.4, 2348.08], [1899.52, 2353.06], [1906.6, 2384.55], [1911.72, 2383.4], [1913.01, 2386.1], [1926.99, 2379.43], [1925.69, 2376.72], [1927.69, 2378.96], [1935.65, 2371.86], [1960.35, 2349.23], [1966.76, 2342.71], [1979.51, 2329.7], [1981.15, 2328.04], [1983.69, 2325.45], [2018.3, 2290.14], [2021.18, 2286.97], [2025.15, 2290.77], [2047.77, 2312.05], [2106.83, 2370.22], [2156.56, 2419.08], [2163.22, 2425.61], [2165.67, 2423.11], [2163.23, 2425.62], [2169.51, 2431.7], [2286.55, 2545.25], [2290.59, 2549.15], [2286.83, 2552.96], [2252.91, 2588.61], [2229.39, 2612.67], [2225.11, 2617.18], [2220.74, 2612.86], [2203.2, 2595.96], [2199.04, 2600.28], [2216.55, 2617.16], [2220.98, 2621.53], [2217.02, 2625.68], [2159.63, 2685.15], [2153.17, 2691.68], [2128.63, 2715.81], [2132.84, 2720.08], [2157.39, 2695.94], [2155.29, 2693.8], [2157.42, 2695.91], [2163.92, 2689.34], [2221.34, 2629.83], [2225.32, 2625.67], [2229.55, 2629.56], [2340.65, 2737.67], [2347.18, 2743.7], [2349.22, 2741.5], [2351.35, 2743.61], [2357.75, 2737.13], [2412.91, 2679.39], [2414.93, 2677.28], [2418.78, 2672.67], [2422.13, 2676.82], [2452.65, 2704.89], [2538.4, 2789.25], [2546.46, 2795.78], [2548.66, 2793.06], [2550.82, 2795.14], [2556.5, 2789.26], [2558.98, 2786.69], [2596.09, 2748.31], [2612.86, 2731.12], [2621.43, 2722.33], [2622.93, 2721.09], [2626.01, 2717.8], [2654.33, 2687.54], [2661.52, 2680.29], [2683.3, 2658.25], [2683.88, 2657.7], [2688.42, 2652.49], [2690.64, 2654.69], [2739.88, 2703.66], [2784.94, 2746.21], [2786.25, 2747.44], [2794.24, 2753.02], [2795.95, 2750.56], [2799.28, 2751.63], [2802.93, 2740.31], [2807.34, 2726.65], [2819.24, 2689.74], [2821.81, 2681.79], [2821.93, 2681.4], [2822.19, 2681.58], [2829.71, 2671.27], [2832.6, 2668.27], [2836.22, 2665.88], [2847.63, 2658.34], [2845.42, 2655.0], [2847.83, 2658.19], [2857.84, 2650.65], [2864.47, 2661.37], [2880.02, 2687.07], [2893.32, 2708.86], [2902.28, 2703.39], [2888.99, 2681.62], [2873.43, 2655.89], [2867.1, 2645.68], [2872.73, 2642.04], [2888.27, 2631.98], [2910.39, 2622.0], [2924.83, 2617.22], [2931.11, 2615.79], [2936.7, 2614.52], [2943.08, 2612.72], [2947.89, 2610.98], [2946.11, 2606.04], [2949.1, 2605.88], [2948.55, 2595.25], [2948.37, 2592.04], [2946.1, 2561.91], [2945.53, 2554.23], [2944.05, 2535.34], [2943.78, 2531.98], [2942.53, 2519.73], [2940.71, 2512.85], [2937.85, 2504.9], [2936.95, 2503.62], [2934.01, 2499.39], [2925.76, 2490.49], [2914.05, 2479.88], [2894.36, 2463.27], [2872.19, 2440.9], [2871.44, 2440.14], [2870.59, 2439.29], [2867.66, 2436.43], [2805.26, 2375.6], [2796.19, 2366.75], [2792.99, 2363.81], [2788.49, 2360.24], [2782.94, 2356.75], [2775.28, 2352.73], [2769.12, 2350.33], [2763.02, 2348.46], [2752.34, 2344.63], [2744.51, 2343.85], [2737.98, 2344.27], [2732.68, 2345.41], [2715.63, 2349.05], [2714.34, 2348.72], [2714.18, 2349.36], [2713.41, 2349.52], [2713.42, 2348.6], [2712.06, 2348.58], [2698.65, 2343.9], [2697.24, 2343.42], [2693.94, 2342.29], [2683.31, 2335.57], [2683.11, 2335.89], [2670.6, 2322.15], [2654.46, 2303.07], [2649.6, 2295.7], [2648.27, 2296.58], [2647.02, 2289.51], [2646.79, 2288.18], [2643.18, 2281.25], [2629.26, 2257.95], [2631.29, 2258.05], [2635.31, 2258.27], [2642.1, 2259.68], [2657.32, 2268.66], [2675.25, 2269.52], [2681.9, 2269.16], [2688.01, 2268.97], [2763.17, 2264.65], [2768.04, 2264.37], [2768.31, 2269.45], [2771.51, 2304.96], [2777.48, 2304.42], [2774.29, 2269.03], [2774.03, 2264.04], [2778.81, 2263.79], [2854.37, 2259.91], [2860.41, 2259.64], [2860.49, 2264.54], [2865.7, 2332.67], [2871.68, 2332.21], [2866.49, 2264.26], [2866.4, 2259.38], [2870.39, 2259.22], [2944.85, 2256.17], [2951.49, 2255.72], [2951.74, 2259.99], [2956.23, 2343.35], [2962.22, 2343.03], [2957.73, 2259.65], [2957.24, 2251.25], [2956.87, 2243.59], [2947.53, 2070.08], [2947.02, 2060.74], [2946.65, 2053.86], [2944.17, 2007.83], [2944.02, 2004.9], [2943.41, 1993.57], [2940.41, 1993.73], [2942.2, 1991.32], [2933.42, 1984.81], [2857.82, 1928.74], [2855.1, 1926.65], [2846.14, 1919.13], [2845.7, 1919.66], [2845.69, 1919.35], [2845.95, 1918.99], [2845.68, 1918.79], [2845.38, 1905.34], [2845.37, 1898.93], [2844.76, 1893.98], [2844.37, 1888.14], [2844.37, 1881.42], [2844.71, 1878.59], [2846.54, 1873.18], [2847.92, 1873.7], [2851.62, 1863.9], [2852.21, 1861.15], [2866.82, 1793.14], [2868.3, 1786.23], [2868.3, 1786.23], [2869.42, 1781.03], [2884.79, 1709.45], [2886.39, 1702.03], [2883.46, 1701.4], [2886.39, 1702.03], [2887.41, 1697.29], [2904.19, 1619.15], [2901.25, 1618.52], [2904.19, 1619.15], [2905.29, 1614.01], [2918.41, 1552.97], [2919.88, 1546.11], [2916.94, 1545.48], [2917.21, 1542.49], [2908.26, 1541.68], [2866.75, 1537.9], [2823.21, 1536.2], [2819.96, 1536.07], [2820.02, 1534.76], [2820.12, 1532.83], [2823.35, 1467.76], [2823.49, 1464.78], [2823.87, 1457.3], [2820.87, 1457.15], [2823.87, 1457.26], [2824.11, 1451.13], [2824.24, 1448.07], [2826.35, 1395.6], [2813.86, 1393.71], [2791.95, 1390.13], [2734.59, 1373.77], [2728.73, 1372.09], [2720.67, 1369.27], [2662.39, 1348.83], [2645.97, 1329.11], [2593.9, 1267.59], [2499.62, 1154.29], [2492.31, 1147.44], [2487.85, 1143.26], [2485.8, 1145.45], [2487.84, 1143.18], [2482.87, 1138.7], [2408.12, 1071.3], [2377.44, 1042.92], [2371.56, 1037.44], [2327.69, 1083.61], [2325.79, 1085.61], [2323.41, 1088.11], [2319.07, 1083.8], [2285.09, 1053.1], [2283.58, 1051.75], [2275.73, 1044.71], [2277.7, 1042.6], [2279.4, 1040.8], [2320.34, 997.15], [2321.99, 994.41], [2323.2, 990.22], [2322.09, 984.14], [2314.63, 971.77], [2257.86, 894.4], [2253.19, 889.92], [2246.69, 883.66], [2243.52, 886.95], [2246.65, 883.62], [2239.75, 877.14], [2212.46, 851.52], [2102.75, 754.25], [2100.05, 751.85], [2104.8, 746.55], [2122.73, 726.59], [2118.27, 722.58], [2100.34, 742.54], [2095.59, 747.84], [2090.47, 743.18], [1960.23, 624.66], [1955.2, 620.71], [1949.75, 618.45], [1943.09, 618.71], [1937.55, 620.43], [1932.7, 623.83], [1929.12, 627.82], [1927.21, 625.46], [1925.5, 623.34], [1913.73, 613.13], [1909.8, 617.66], [1921.16, 627.52], [1922.54, 629.23], [1926.15, 633.69], [1919.76, 641.64], [1901.03, 662.54], [1881.34, 683.7], [1878.33, 686.93], [1873.31, 682.33], [1822.03, 635.34], [1824.92, 632.2], [1871.2, 582.04], [1866.79, 577.97], [1820.51, 628.13], [1817.57, 631.32], [1736.73, 559.95], [1733.52, 557.11], [1738.68, 551.6], [1755.58, 532.29], [1758.34, 528.94], [1772.88, 511.27], [1768.25, 507.46], [1753.71, 525.13], [1751.01, 528.4], [1734.23, 547.58], [1729.09, 553.07], [1723.92, 548.19], [1655.87, 485.31], [1588.78, 424.16], [1585.31, 421.0], [1601.19, 403.03], [1608.68, 392.59], [1603.8, 389.1], [1596.5, 399.28], [1580.87, 416.97], [1575.07, 411.73], [1536.25, 376.65], [1532.23, 381.11], [1571.05, 416.18], [1576.87, 421.45], [1573.53, 425.16], [1516.31, 484.91], [1511.63, 489.83], [1507.74, 486.42], [1454.06, 439.31], [1450.86, 436.36], [1437.59, 424.17], [1407.91, 396.89], [1398.93, 388.64], [1379.09, 370.4], [1371.62, 363.53], [1365.99, 358.35], [1370.34, 353.75], [1371.95, 352.03], [1391.43, 331.38], [1415.75, 305.6], [1413.57, 303.54], [1415.75, 305.6], [1419.03, 302.12], [1424.26, 306.74], [1459.32, 340.46], [1463.48, 336.14], [1428.33, 302.33], [1423.15, 297.75], [1428.06, 292.55], [1423.7, 288.43], [1416.66, 295.89], [1418.85, 297.94], [1416.66, 295.89], [1413.29, 299.46], [1411.34, 297.9], [1408.05, 295.22], [1369.36, 263.63], [1366.33, 262.23], [1360.65, 263.3], [1321.27, 305.76], [1319.93, 307.2], [1315.61, 311.86], [1285.55, 284.16], [1224.12, 226.44], [1218.09, 220.74], [1216.03, 222.92], [1217.95, 220.61], [1210.21, 214.2], [1208.91, 213.13], [1197.92, 204.37], [1186.6, 201.04], [1158.87, 193.89], [1076.14, 174.15], [1071.82, 173.12], [1071.12, 176.03], [1071.52, 174.33], [1045.18, 168.14], [1039.12, 167.94], [1033.72, 169.5], [1027.74, 172.51], [1026.07, 174.02], [1025.28, 174.74], [1022.8, 176.98], [1020.38, 179.74], [1015.38, 175.65], [1007.92, 170.23], [1003.66, 166.99], [1000.04, 166.07], [1004.11, 162.33], [1012.97, 147.52], [1013.68, 146.2], [1017.22, 139.67], [1011.94, 136.81], [1008.4, 143.35], [1007.75, 144.56], [999.41, 158.5], [993.11, 164.29], [983.74, 161.8], [957.97, 154.94], [937.2, 149.4], [913.27, 143.01], [895.75, 138.36], [877.07, 133.39], [839.45, 124.23], [838.03, 130.06], [875.59, 139.2], [894.2, 144.16], [911.72, 148.81], [935.65, 155.2], [956.42, 160.74], [982.2, 167.6], [988.32, 169.22], [984.87, 172.92], [950.05, 210.19], [934.11, 227.24], [932.88, 228.56], [931.4, 230.13], [926.26, 225.49], [914.8, 214.93], [883.51, 186.85], [859.67, 165.47], [833.41, 141.89], [828.59, 137.57], [820.96, 130.72], [819.35, 129.27], [817.64, 131.17], [815.3, 125.35], [808.7, 119.26], [790.94, 104.5], [786.02, 101.17], [788.31, 98.5], [789.82, 96.77], [797.4, 88.18], [801.18, 84.0], [815.02, 68.62], [830.94, 51.46], [826.55, 47.37], [810.59, 64.57], [796.72, 79.98], [792.93, 84.19], [785.31, 92.81], [783.77, 94.57], [780.79, 98.05], [778.97, 96.66], [774.8, 93.07], [743.2, 66.23], [731.6, 53.7], [718.77, 43.39], [704.64, 35.75], [697.03, 33.09], [669.15, 24.15], [637.16, 15.6], [608.0, 8.39], [606.14, 7.93], [606.28, 7.45], [605.27, 7.16], [600.7, -3.27], [599.49, -4.71], [596.91, -10.47], [593.96, -20.75], [592.68, -25.1], [586.23, -37.96], [578.95, -44.33], [576.48, -48.58], [575.05, -47.75], [574.81, -47.96], [577.47, -50.2], [542.05, -92.36], [432.22, -222.21], [405.75, -249.6], [376.45, -278.06], [288.8, -356.5], [175.44, -471.94], [78.39, -567.31], [55.67, -591.37], [27.04, -622.2], [7.46, -643.23], [-1.98, -652.91], [-30.69, -681.52], [-60.67, -709.27], [-88.78, -740.51], [-122.2, -780.38], [-140.06, -802.85], [-141.4, -801.79], [-151.37, -819.15], [-167.02, -842.61], [-178.88, -859.61], [-198.28, -883.38], [-221.94, -926.19], [-230.04, -940.48], [-254.28, -984.07], [-259.65, -995.16], [-273.64, -1029.0], [-283.84, -1056.84], [-295.35, -1087.03], [-310.35, -1130.7], [-320.69, -1169.62], [-334.05, -1225.73], [-355.84, -1315.44], [-373.74, -1400.89], [-379.53, -1440.57], [-380.99, -1490.94], [-376.52, -1532.22], [-369.69, -1563.0], [-362.77, -1586.28], [-356.17, -1604.57], [-351.85, -1614.58], [-344.12, -1630.76], [-325.01, -1663.97], [-301.66, -1702.66], [-283.42, -1732.56], [-262.47, -1766.34], [-169.02, -1912.46], [-150.4, -1940.96], [-131.47, -1969.57], [-3.55, -2166.24], [8.57, -2184.07], [22.76, -2205.62], [25.03, -2205.72], [26.44, -2204.84], [27.03, -2205.8], [32.01, -2206.0], [47.92, -2206.81], [47.77, -2209.81], [47.94, -2206.81], [63.41, -2207.65], [71.14, -2208.53], [77.16, -2209.79], [77.43, -2202.17], [82.32, -2063.83], [82.45, -2059.65], [82.31, -2059.64], [73.64, -2059.26], [73.9, -2053.27], [82.58, -2053.65], [85.68, -2053.79], [95.85, -2054.24], [95.59, -2060.23], [88.45, -2059.92], [88.32, -2064.03], [83.42, -2202.38], [83.1, -2211.66], [96.49, -2218.55], [102.14, -2226.54], [103.54, -2229.14], [106.95, -2226.92], [109.77, -2225.07], [125.78, -2217.21], [139.4, -2213.11], [155.28, -2211.06], [160.31, -2210.74], [176.69, -2210.89], [184.16, -2210.96], [198.72, -2213.0], [212.98, -2219.17], [219.57, -2223.74], [226.37, -2228.45], [233.14, -2236.94], [237.39, -2242.26], [249.02, -2258.19], [253.14, -2255.8], [261.54, -2248.46], [268.72, -2242.81], [275.86, -2237.18], [280.44, -2237.09], [292.49, -2249.32], [295.21, -2252.07], [290.94, -2256.29], [288.22, -2253.53], [277.98, -2243.15], [272.43, -2247.52], [265.37, -2253.08], [256.65, -2260.71], [251.92, -2263.44], [257.92, -2278.73], [252.33, -2280.92], [245.53, -2263.59], [232.62, -2245.91], [228.45, -2240.68], [222.23, -2232.88], [216.15, -2228.67], [210.05, -2224.44], [197.08, -2218.83], [183.72, -2216.96], [176.63, -2216.89], [160.47, -2216.74], [155.86, -2217.03], [140.66, -2218.99], [127.98, -2222.81], [112.74, -2230.29], [110.23, -2231.94], [106.4, -2234.44], [108.39, -2238.14], [111.08, -2250.67], [110.41, -2268.33], [109.44, -2279.66], [109.62, -2290.06], [110.86, -2297.02], [112.9, -2302.24], [144.27, -2346.52], [155.21, -2361.95], [174.49, -2382.59], [189.06, -2398.55], [200.26, -2411.32], [222.08, -2435.79], [227.32, -2441.51], [231.52, -2446.14], [235.92, -2452.89], [230.9, -2456.17], [226.76, -2449.82], [222.89, -2445.55], [217.63, -2439.82], [195.76, -2415.3], [184.59, -2402.55], [170.08, -2386.66], [150.55, -2365.75], [139.37, -2349.99], [107.58, -2305.11], [105.06, -2298.65], [103.63, -2290.64], [103.44, -2279.46], [104.42, -2267.96], [105.06, -2251.19], [102.7, -2240.24], [99.81, -2234.86], [97.03, -2229.71], [92.44, -2223.21], [79.02, -2216.31], [70.18, -2214.46], [62.91, -2213.64], [47.62, -2212.8], [46.43, -2212.74], [44.68, -2213.65], [43.15, -2215.55], [41.3, -2218.41], [40.3, -2223.01], [39.93, -2226.57], [42.82, -2231.22], [44.29, -2230.28], [72.38, -2274.0], [117.08, -2339.9], [160.7, -2396.78], [172.7, -2413.2], [222.0, -2477.51], [243.2, -2510.09], [261.8, -2543.41], [277.44, -2575.92], [292.25, -2612.34], [308.27, -2660.68], [324.25, -2715.2], [330.56, -2741.25], [332.62, -2748.68], [336.94, -2747.67], [346.25, -2745.49], [352.77, -2742.11], [356.2, -2739.13], [359.67, -2733.78], [360.67, -2730.27], [361.68, -2725.8], [360.93, -2720.66], [354.11, -2692.13], [352.1, -2685.88], [348.33, -2676.46], [345.73, -2665.09], [352.55, -2663.53], [355.03, -2674.37], [358.69, -2683.5], [360.85, -2690.24], [367.82, -2719.34], [368.79, -2726.08], [367.45, -2732.0], [366.12, -2736.7], [361.54, -2743.77], [356.73, -2747.94], [348.69, -2752.1], [338.54, -2754.48], [331.22, -2756.19], [335.72, -2770.38], [346.05, -2802.72], [355.88, -2837.71], [368.13, -2874.85], [385.63, -2913.61], [380.84, -2915.77], [379.66, -2917.38], [378.75, -2916.71], [376.06, -2917.93], [373.89, -2913.12], [365.08, -2906.61], [360.07, -2898.61], [368.24, -2917.9], [377.17, -2934.81], [413.05, -3002.71], [405.31, -3006.8], [411.5, -3003.53], [446.69, -3070.16], [440.5, -3073.43], [439.4, -3074.79], [438.82, -3074.32], [434.31, -3076.7], [428.69, -3066.05], [424.13, -3062.33], [419.92, -3061.27], [414.02, -3061.81], [401.47, -3067.15], [393.76, -3072.17], [376.67, -3078.22], [367.05, -3078.54], [367.36, -3079.7], [358.43, -3082.09], [300.3, -3091.65], [299.81, -3088.69], [300.25, -3091.66], [289.41, -3093.28], [266.67, -3096.68], [253.93, -3098.52], [236.74, -3100.23], [177.67, -3104.69], [136.26, -3105.0], [130.81, -3104.69], [68.55, -3101.18], [21.29, -3099.18], [-73.5, -3095.15], [-73.38, -3092.15], [-76.38, -3092.16], [-76.43, -3078.08], [-108.91, -3042.12], [-106.68, -3040.11], [-108.2, -3037.53], [-73.09, -3016.94], [-65.6, -3012.42], [-30.08, -2972.28], [-5.99, -2932.57], [14.95, -2891.66], [29.39, -2850.03], [32.08, -2829.34], [32.98, -2806.3], [26.78, -2757.41], [21.71, -2717.43], [23.42, -2698.54], [28.53, -2673.48], [33.96, -2659.67], [40.1, -2641.69], [42.39, -2636.27], [46.06, -2627.6], [50.98, -2614.74], [13.75, -2599.91], [10.11, -2598.46], [-39.68, -2578.62], [-52.79, -2573.44], [-84.71, -2561.19], [-131.5, -2542.74], [-166.85, -2529.23], [-171.24, -2527.16], [-173.54, -2532.98], [-177.11, -2541.99], [-184.0, -2564.47], [-190.53, -2576.59], [-209.81, -2595.28], [-299.45, -2666.7], [-401.82, -2742.42], [-453.19, -2785.04], [-471.58, -2800.29], [-494.63, -2819.41], [-497.82, -2815.56], [-474.77, -2796.44], [-456.38, -2781.19], [-404.91, -2738.49], [-302.5, -2662.74], [-213.11, -2591.52], [-194.57, -2573.54], [-188.64, -2562.53], [-181.83, -2540.33], [-178.19, -2531.14], [-175.83, -2525.16], [-180.5, -2523.3], [-256.82, -2492.93], [-298.08, -2476.98], [-308.68, -2472.89], [-308.06, -2471.26], [-354.08, -2456.98], [-379.05, -2449.79], [-404.06, -2443.17], [-410.63, -2441.39], [-419.82, -2438.9], [-420.14, -2440.62], [-429.1, -2438.95], [-436.83, -2437.51], [-462.42, -2434.7], [-497.81, -2430.77], [-543.8, -2428.09], [-590.45, -2425.5], [-634.9, -2423.32], [-640.15, -2423.1], [-640.0, -2419.61], [-640.15, -2423.1], [-646.59, -2422.83], [-666.4, -2421.68], [-672.0, -2421.38], [-672.06, -2423.46], [-672.19, -2426.03], [-676.91, -2517.74], [-678.2, -2522.38], [-681.66, -2532.46], [-684.5, -2531.49], [-681.78, -2532.75], [-682.98, -2535.32], [-691.05, -2552.59], [-700.16, -2572.09], [-708.58, -2591.85], [-711.11, -2597.79], [-723.76, -2627.49], [-731.24, -2645.06], [-734.0, -2643.89], [-731.29, -2645.18], [-754.31, -2693.57], [-758.17, -2702.06], [-784.28, -2758.59], [-807.64, -2817.26], [-812.66, -2829.86], [-825.73, -2862.68], [-835.89, -2873.52], [-869.3, -2872.11], [-880.8, -2872.58], [-883.29, -2872.69], [-889.07, -2872.93], [-885.93, -2883.53], [-884.53, -2891.2], [-882.88, -2902.71], [-882.03, -2914.59], [-881.56, -2926.06], [-881.87, -2936.75], [-882.58, -2946.89], [-885.58, -2946.68], [-881.6, -2947.12], [-882.62, -2956.29], [-882.84, -2957.89], [-885.28, -2977.15], [-888.71, -3003.99], [-891.72, -3027.45], [-893.15, -3038.45], [-896.13, -3061.25], [-898.64, -3080.53], [-893.4, -3080.78], [-891.36, -3080.89], [-852.29, -3082.8], [-847.89, -3083.02], [-798.7, -3085.43], [-797.9, -3078.75], [-784.29, -2978.14], [-779.92, -2970.9], [-772.34, -2967.15], [-685.98, -2953.29], [-677.55, -2955.42], [-673.02, -2961.35], [-672.22, -2971.07], [-688.91, -3094.07], [-691.89, -3093.66], [-692.03, -3096.66], [-796.21, -3091.56], [-796.06, -3088.56], [-796.21, -3091.56], [-848.18, -3089.01], [-852.58, -3088.79], [-891.66, -3086.88], [-893.69, -3086.78], [-903.18, -3086.32], [-903.04, -3083.32], [-907.0, -3082.8], [-904.06, -3060.21], [-901.09, -3037.41], [-899.66, -3026.42], [-896.65, -3002.97], [-893.21, -2976.14], [-890.78, -2956.84], [-890.56, -2955.3], [-890.0, -2950.28], [-893.3, -2949.97], [-896.36, -2949.68], [-944.13, -2943.97], [-971.07, -2940.26], [-985.4, -2938.28], [-989.6, -2937.7], [-989.54, -2944.79], [-989.58, -2947.52], [-989.53, -2951.66], [-989.48, -2959.85], [-989.88, -2972.17], [-990.13, -2982.81], [-993.63, -2982.73], [-993.77, -2985.72], [-1008.71, -2985.04], [-1008.57, -2982.04], [-1008.87, -2985.03], [-1016.8, -2984.25], [-1020.56, -2983.8], [-1099.13, -2968.65], [-1139.07, -2961.37], [-1277.5, -2936.11], [-1281.34, -2935.47], [-1289.86, -2934.06], [-1305.85, -2931.42], [-1336.4, -2925.1], [-1388.92, -2915.1], [-1429.05, -2906.88], [-1445.15, -2903.92], [-1452.81, -2902.32], [-1460.87, -2901.38], [-1471.52, -2900.59], [-1489.35, -2901.9], [-1504.88, -2899.66], [-1514.3, -2897.11], [-1517.18, -2896.26], [-1531.0, -2892.58], [-1530.23, -2889.68], [-1536.23, -2886.07], [-1512.73, -2846.96], [-1502.56, -2829.79], [-1500.41, -2831.06], [-1484.95, -2803.82], [-1481.98, -2798.84], [-1487.54, -2794.44], [-1503.3, -2781.99], [-1520.63, -2763.22], [-1525.14, -2746.12], [-1528.63, -2721.02], [-1548.14, -2508.48], [-1551.12, -2484.67], [-1552.0, -2477.67], [-1552.76, -2471.64], [-1559.68, -2435.64], [-1562.19, -2425.1], [-1563.01, -2421.63], [-1570.04, -2391.67], [-1571.92, -2383.87], [-1573.85, -2377.12], [-1585.51, -2341.48], [-1595.54, -2315.47], [-1603.99, -2296.2], [-1606.5, -2290.27], [-1611.11, -2280.54], [-1630.01, -2242.52], [-1654.66, -2201.29], [-1668.94, -2181.29], [-1697.57, -2144.3], [-1742.52, -2094.07], [-1760.73, -2072.93], [-1767.47, -2065.11], [-1774.34, -2067.36], [-1783.02, -2072.22], [-1790.13, -2078.06], [-1791.75, -2079.91], [-1803.84, -2095.24], [-1807.51, -2100.17], [-1817.47, -2113.46], [-1829.91, -2125.7], [-1845.99, -2136.12], [-1868.64, -2142.55], [-1975.46, -2133.52], [-1984.18, -2132.78], [-2012.43, -2130.39], [-2076.22, -2125.9], [-2090.27, -2125.27], [-2099.85, -2124.33], [-2122.24, -2124.67], [-2144.71, -2130.47], [-2161.72, -2140.59], [-2173.76, -2155.34], [-2198.91, -2206.08], [-2216.07, -2235.72], [-2229.11, -2261.23], [-2236.33, -2287.38], [-2238.69, -2311.08], [-2237.78, -2338.19], [-2229.05, -2451.59], [-2227.84, -2489.56], [-2230.01, -2512.87], [-2237.83, -2539.78], [-2249.95, -2567.6], [-2287.57, -2628.04], [-2306.66, -2660.05], [-2321.33, -2683.7], [-2335.38, -2709.51], [-2344.9, -2728.94], [-2360.38, -2769.53], [-2371.11, -2795.88], [-2381.61, -2814.76], [-2392.62, -2828.44], [-2403.21, -2837.93], [-2413.55, -2843.63], [-2425.5, -2846.42], [-2452.33, -2847.22], [-2479.42, -2846.22], [-2549.05, -2841.99], [-2617.86, -2836.79], [-2683.73, -2832.9], [-2715.94, -2831.64], [-2744.5, -2832.02], [-2763.98, -2835.3], [-2780.44, -2839.86], [-2791.76, -2852.54], [-2820.38, -2882.76], [-2841.97, -2905.46], [-2859.92, -2925.09]], "holes": [[[-545.71, 336.05], [-551.29, 331.29], [-552.62, 330.14], [-583.26, 301.83], [-590.83, 294.7], [-611.1, 276.38], [-629.48, 259.73], [-634.02, 255.52], [-630.66, 251.76], [-628.93, 249.83], [-598.63, 216.21], [-575.47, 190.78], [-571.57, 186.5], [-567.88, 189.86], [-554.33, 202.18], [-542.41, 213.03], [-532.78, 221.78], [-513.53, 239.3], [-493.56, 257.47], [-491.28, 259.54], [-479.29, 270.44], [-482.88, 274.41], [-495.78, 288.69], [-498.76, 291.99], [-522.03, 317.73], [-525.49, 321.56], [-535.51, 332.64], [-538.99, 336.49], [-541.7, 339.49], [-545.71, 336.05]], [[-486.57, 254.36], [-488.84, 252.29], [-508.82, 234.12], [-528.07, 216.6], [-537.7, 207.85], [-549.62, 197.01], [-563.16, 184.69], [-566.86, 181.32], [-563.65, 177.81], [-550.65, 163.52], [-548.73, 161.42], [-547.94, 160.54], [-537.93, 149.57], [-509.25, 118.07], [-507.9, 116.59], [-503.75, 112.04], [-499.78, 115.63], [-471.0, 141.65], [-467.4, 144.91], [-464.18, 147.82], [-460.56, 151.09], [-452.06, 158.78], [-423.17, 184.9], [-418.22, 189.39], [-413.3, 193.83], [-418.53, 195.93], [-423.83, 202.38], [-426.04, 205.64], [-427.58, 208.38], [-428.57, 211.15], [-429.04, 213.79], [-428.98, 214.78], [-435.09, 221.54], [-444.88, 232.38], [-449.37, 237.34], [-455.4, 244.02], [-458.64, 247.6], [-470.92, 261.17], [-474.6, 265.25], [-486.57, 254.36]], [[-508.53, 98.29], [-542.35, 67.7], [-553.12, 57.96], [-575.38, 37.82], [-600.41, 15.19], [-612.32, 4.42], [-613.03, 3.79], [-616.2, 0.91], [-620.36, -2.85], [-644.36, -24.55], [-648.51, -28.3], [-644.7, -31.25], [-642.45, -33.13], [-627.74, -50.42], [-594.3, -87.48], [-593.58, -88.38], [-593.11, -89.69], [-592.81, -91.9], [-592.59, -94.13], [-592.36, -95.12], [-592.04, -96.05], [-591.29, -97.43], [-591.22, -97.51], [-579.4, -86.86], [-560.57, -69.9], [-552.97, -63.06], [-551.65, -61.86], [-532.95, -45.02], [-531.48, -43.7], [-527.28, -39.92], [-508.8, -23.27], [-464.43, 16.93], [-448.0, 31.49], [-443.53, 35.51], [-445.28, 37.44], [-457.73, 51.11], [-460.29, 53.92], [-489.83, 86.35], [-499.17, 96.6], [-501.15, 98.78], [-504.23, 102.17], [-508.53, 98.29]], [[-575.15, -111.66], [-525.38, -168.12], [-523.71, -170.03], [-516.77, -177.88], [-511.42, -183.71], [-454.16, -243.11], [-450.4, -247.18], [-445.52, -242.75], [-384.63, -187.84], [-379.64, -183.34], [-383.33, -179.54], [-418.79, -141.71], [-424.67, -135.06], [-427.95, -130.61], [-430.26, -127.0], [-432.12, -123.38], [-433.98, -118.49], [-434.48, -113.16], [-434.45, -109.71], [-433.48, -103.45], [-431.92, -99.81], [-430.29, -96.68], [-428.47, -94.04], [-426.43, -91.61], [-424.0, -89.19], [-414.55, -80.65], [-402.41, -69.67], [-377.45, -46.2], [-372.98, -41.94], [-377.34, -37.16], [-397.36, -15.17], [-411.83, 0.71], [-433.23, 24.21], [-434.1, 25.16], [-438.67, 21.05], [-455.09, 6.51], [-499.41, -33.66], [-517.91, -50.32], [-522.11, -54.1], [-523.58, -55.43], [-542.26, -72.25], [-543.59, -73.45], [-551.2, -80.31], [-570.03, -97.26], [-579.96, -106.21], [-575.15, -111.66]], [[-521.51, -186.9], [-522.61, -187.89], [-552.64, -215.22], [-571.0, -231.9], [-598.58, -256.98], [-618.91, -275.47], [-630.46, -285.97], [-655.53, -308.77], [-656.74, -309.88], [-660.95, -313.7], [-657.65, -317.3], [-625.56, -352.3], [-606.87, -372.67], [-601.69, -377.98], [-598.67, -381.26], [-595.84, -378.56], [-593.39, -376.36], [-565.3, -351.04], [-516.45, -307.0], [-514.05, -304.83], [-505.54, -297.17], [-496.47, -288.98], [-491.04, -284.08], [-481.97, -275.92], [-459.45, -255.62], [-454.81, -251.25], [-458.52, -247.23], [-515.79, -187.82], [-518.86, -184.48], [-521.51, -186.9]], [[-454.71, -260.77], [-477.29, -281.12], [-486.35, -289.28], [-491.78, -294.18], [-500.85, -302.36], [-509.36, -310.04], [-511.77, -312.2], [-560.61, -356.23], [-588.71, -381.57], [-591.08, -383.7], [-593.93, -386.41], [-589.79, -390.94], [-567.4, -415.72], [-519.78, -467.34], [-510.17, -478.04], [-506.77, -474.94], [-494.23, -463.52], [-489.46, -459.19], [-474.1, -445.2], [-473.35, -444.51], [-452.4, -424.37], [-427.77, -401.52], [-425.72, -399.71], [-421.43, -395.91], [-403.45, -379.74], [-387.71, -364.36], [-386.75, -363.44], [-386.57, -363.61], [-386.55, -363.25], [-385.88, -360.96], [-384.72, -358.64], [-374.32, -349.07], [-370.48, -345.55], [-376.76, -336.7], [-388.85, -323.3], [-399.76, -311.21], [-412.04, -297.59], [-418.42, -290.51], [-423.91, -284.42], [-441.39, -265.04], [-445.84, -260.11], [-449.89, -256.24], [-454.71, -260.77]], [[-513.38, -495.16], [-536.21, -515.95], [-550.66, -529.11], [-552.13, -530.44], [-565.88, -542.96], [-581.28, -556.99], [-596.04, -570.43], [-596.9, -571.21], [-610.65, -583.72], [-624.07, -595.94], [-632.85, -603.94], [-633.42, -604.46], [-649.56, -619.14], [-653.23, -622.48], [-644.55, -632.41], [-594.23, -687.3], [-592.61, -688.82], [-574.99, -708.27], [-571.21, -712.44], [-567.29, -708.92], [-550.47, -693.75], [-544.1, -687.98], [-536.05, -680.72], [-531.59, -676.69], [-521.02, -667.15], [-513.9, -660.72], [-480.76, -630.96], [-473.57, -624.5], [-463.51, -615.46], [-449.1, -602.51], [-439.37, -593.76], [-433.13, -588.2], [-430.65, -585.98], [-427.33, -582.91], [-431.0, -577.93], [-445.33, -562.22], [-464.68, -541.0], [-481.34, -522.71], [-500.46, -501.74], [-509.6, -491.72], [-513.38, -495.16]], [[-562.7, -721.68], [-543.19, -742.95], [-541.11, -745.22], [-533.88, -753.11], [-522.77, -765.23], [-521.79, -766.3], [-507.05, -782.37], [-502.95, -786.83], [-499.29, -783.49], [-475.51, -761.8], [-463.91, -751.21], [-445.52, -734.43], [-438.04, -727.61], [-431.21, -721.38], [-423.15, -714.03], [-364.1, -660.13], [-360.96, -657.19], [-365.1, -652.62], [-421.45, -591.74], [-423.35, -588.76], [-425.94, -591.16], [-428.47, -593.42], [-434.7, -598.97], [-444.43, -607.72], [-458.83, -620.67], [-468.89, -629.7], [-476.08, -636.17], [-509.22, -665.92], [-516.33, -672.35], [-526.9, -681.89], [-531.36, -685.91], [-539.41, -693.18], [-545.78, -698.94], [-562.61, -714.13], [-566.48, -717.6], [-562.7, -721.68]], [[-494.99, -795.91], [-467.95, -826.74], [-466.68, -828.16], [-460.82, -833.07], [-453.33, -837.98], [-449.27, -840.45], [-444.88, -842.45], [-440.89, -843.72], [-437.62, -844.37], [-435.39, -844.57], [-430.16, -844.63], [-426.86, -844.11], [-422.44, -842.92], [-418.47, -841.3], [-411.15, -836.68], [-401.68, -828.49], [-385.23, -813.54], [-380.11, -808.91], [-365.03, -795.21], [-355.87, -786.87], [-326.96, -760.63], [-323.54, -757.51], [-320.68, -754.88], [-319.7, -755.94], [-316.15, -750.84], [-296.84, -733.74], [-294.63, -731.78], [-299.6, -726.89], [-353.91, -670.32], [-359.5, -664.05], [-360.02, -664.53], [-419.11, -718.46], [-427.17, -725.81], [-433.99, -732.04], [-441.47, -738.86], [-459.86, -755.65], [-471.47, -766.23], [-495.24, -787.93], [-498.96, -791.31], [-494.99, -795.91]], [[-307.59, -748.93], [-300.61, -745.8], [-293.81, -744.12], [-286.3, -743.14], [-281.0, -743.39], [-278.05, -743.88], [-286.55, -735.4], [-289.5, -732.58], [-294.19, -736.73], [-308.5, -749.41], [-307.59, -748.93]], [[-267.13, -747.46], [-267.14, -747.44], [-267.98, -748.28], [-267.13, -747.46]], [[-256.66, -754.26], [-258.05, -755.6], [-258.02, -755.65], [-256.58, -754.34], [-224.15, -789.96], [-216.51, -791.61], [-212.47, -795.84], [-206.24, -801.05], [-203.79, -803.07], [-199.37, -804.41], [-194.85, -805.65], [-190.68, -806.22], [-189.36, -806.42], [-186.16, -806.15], [-183.97, -805.49], [-170.94, -799.72], [-167.64, -795.41], [-165.28, -797.21], [-165.16, -797.16], [-166.13, -796.32], [-154.56, -782.81], [-104.09, -723.88], [-46.57, -663.35], [-0.95, -614.75], [39.79, -575.02], [62.77, -552.03], [273.3, -340.81], [359.87, -258.29], [423.29, -194.73], [483.05, -128.82], [547.44, -44.95], [558.97, -24.94], [559.72, -19.9], [558.74, -12.85], [557.87, -9.68], [560.22, -4.34], [552.02, -6.0], [549.87, -6.56], [543.05, -8.52], [536.24, -10.64], [531.36, -12.36], [526.49, -14.2], [522.77, -15.81], [519.12, -17.57], [513.84, -20.31], [509.54, -22.8], [505.19, -25.71], [501.11, -28.91], [494.67, -34.66], [495.01, -35.04], [441.73, -83.02], [437.74, -85.73], [439.37, -87.51], [440.3, -88.52], [464.53, -114.85], [460.11, -118.91], [435.88, -92.59], [434.95, -91.57], [432.62, -89.04], [426.52, -92.67], [418.99, -97.19], [411.03, -103.26], [387.94, -123.79], [371.36, -138.76], [363.69, -145.53], [360.43, -148.01], [356.08, -149.01], [352.16, -149.62], [349.94, -149.54], [349.2, -151.72], [348.01, -154.49], [345.99, -158.02], [340.28, -165.31], [329.94, -175.43], [277.98, -221.7], [244.31, -250.66], [212.77, -278.21], [208.53, -281.58], [211.25, -283.98], [213.84, -286.76], [215.22, -288.25], [228.96, -303.03], [241.53, -316.57], [237.13, -320.65], [224.56, -307.11], [210.83, -292.33], [209.44, -290.85], [207.06, -288.29], [203.82, -285.42], [197.93, -290.4], [175.88, -310.54], [170.52, -315.66], [162.69, -322.82], [153.1, -331.6], [143.59, -340.77], [124.15, -359.37], [122.87, -360.5], [119.07, -363.41], [108.68, -372.36], [98.63, -381.17], [92.14, -386.84], [30.35, -444.57], [18.74, -455.05], [12.56, -460.54], [6.06, -466.34], [2.41, -469.6], [-5.42, -476.57], [-10.06, -479.62], [-16.99, -485.79], [-26.28, -495.16], [-30.45, -498.88], [-39.65, -507.07], [-87.58, -549.79], [-99.17, -560.13], [-125.25, -583.37], [-134.53, -592.91], [-134.86, -600.0], [-135.11, -605.5], [-135.37, -611.0], [-127.13, -611.67], [-118.64, -612.35], [-99.97, -632.9], [-78.99, -655.98], [-83.43, -660.01], [-104.41, -636.93], [-121.49, -618.14], [-127.61, -617.65], [-135.65, -617.0], [-135.69, -617.81], [-137.4, -654.23], [-137.75, -661.9], [-137.93, -665.69], [-139.38, -696.87], [-139.71, -703.66], [-140.24, -715.12], [-140.69, -724.76], [-146.68, -724.48], [-146.23, -714.84], [-145.7, -703.38], [-145.38, -696.59], [-143.92, -665.42], [-143.75, -661.62], [-143.39, -653.95], [-141.69, -617.53], [-141.5, -613.62], [-141.11, -605.22], [-140.85, -599.73], [-140.84, -599.37], [-148.32, -606.16], [-185.13, -639.67], [-216.43, -668.13], [-225.9, -676.76], [-241.07, -690.54], [-251.76, -700.27], [-262.24, -710.38], [-263.51, -709.07], [-266.88, -716.88], [-267.81, -719.71], [-268.57, -722.49], [-269.09, -725.72], [-269.16, -728.37], [-269.15, -730.45], [-268.76, -733.37], [-267.84, -736.78], [-265.81, -741.59], [-261.67, -749.06], [-256.66, -754.26]], [[-262.46, -759.77], [-270.83, -751.08], [-272.82, -749.1], [-276.02, -748.28], [-281.43, -747.37], [-286.14, -747.15], [-293.07, -748.06], [-299.3, -749.6], [-305.85, -752.54], [-310.68, -755.04], [-316.93, -758.95], [-315.94, -760.02], [-318.81, -762.67], [-322.26, -765.81], [-351.16, -792.05], [-360.33, -800.39], [-375.41, -814.09], [-380.52, -818.72], [-397.04, -833.73], [-406.97, -842.33], [-415.25, -847.54], [-420.19, -849.57], [-425.4, -850.96], [-428.58, -851.47], [-429.31, -854.8], [-432.34, -868.5], [-428.29, -871.15], [-391.49, -910.02], [-385.19, -917.29], [-381.24, -921.85], [-385.77, -925.78], [-389.72, -921.22], [-395.94, -914.05], [-432.17, -875.79], [-435.22, -873.78], [-439.99, -875.47], [-476.55, -908.0], [-498.93, -928.34], [-501.49, -930.66], [-530.43, -956.96], [-545.14, -970.33], [-575.37, -997.82], [-577.23, -999.51], [-581.64, -1003.51], [-577.57, -1008.72], [-575.98, -1010.39], [-547.53, -1040.95], [-519.65, -1071.49], [-517.6, -1074.02], [-513.22, -1078.84], [-510.63, -1075.19], [-505.96, -1068.63], [-498.31, -1058.76], [-490.29, -1049.25], [-482.09, -1040.32], [-475.28, -1033.72], [-468.14, -1026.97], [-461.55, -1021.34], [-454.56, -1015.6], [-444.63, -1008.27], [-434.36, -1001.36], [-424.14, -995.09], [-414.8, -990.17], [-401.87, -983.89], [-389.71, -978.63], [-377.46, -974.06], [-366.77, -970.74], [-354.41, -967.66], [-333.6, -962.92], [-318.99, -960.13], [-305.36, -958.17], [-305.12, -959.87], [-287.77, -953.95], [-279.88, -951.99], [-273.51, -949.33], [-269.6, -946.42], [-265.2, -939.98], [-250.13, -911.41], [-246.68, -905.39], [-238.76, -892.53], [-229.67, -880.79], [-222.75, -873.01], [-217.81, -869.48], [-216.03, -866.44], [-214.66, -867.23], [-214.65, -867.22], [-217.51, -865.51], [-210.21, -853.3], [-207.54, -854.9], [-207.52, -854.81], [-210.1, -853.13], [-206.25, -847.21], [-205.89, -844.44], [-206.58, -838.39], [-207.38, -834.76], [-209.61, -830.79], [-216.48, -817.06], [-218.58, -813.25], [-222.47, -809.86], [-221.24, -808.45], [-221.38, -808.2], [-222.85, -809.49], [-224.84, -807.23], [-228.74, -802.55], [-230.49, -794.88], [-262.46, -759.77]], [[-219.27, -885.84], [-225.61, -896.68], [-231.25, -906.45], [-237.29, -917.0], [-243.41, -927.88], [-248.77, -937.79], [-259.02, -958.62], [-266.9, -974.51], [-260.13, -978.7], [-259.34, -978.77], [-236.14, -937.05], [-228.05, -922.77], [-204.34, -879.86], [-192.21, -852.06], [-188.73, -845.21], [-186.98, -840.68], [-186.71, -836.79], [-186.74, -836.64], [-187.23, -837.22], [-201.25, -858.77], [-208.5, -870.9], [-210.01, -870.0], [-219.27, -885.84]], [[-271.35, -984.76], [-274.33, -991.95], [-282.95, -1010.0], [-289.68, -1022.47], [-284.78, -1024.25], [-305.89, -1082.39], [-321.79, -1129.88], [-331.83, -1167.86], [-344.34, -1223.98], [-352.63, -1258.25], [-367.55, -1337.21], [-362.67, -1313.9], [-340.85, -1224.09], [-327.48, -1167.91], [-317.05, -1128.66], [-301.94, -1084.64], [-290.4, -1054.38], [-280.17, -1026.45], [-266.04, -992.29], [-262.75, -985.5], [-271.35, -984.76]], [[-294.85, -1020.27], [-296.08, -1019.6], [-294.03, -1015.8], [-292.34, -1006.56], [-292.7, -1002.16], [-293.62, -998.78], [-295.23, -996.44], [-296.95, -994.12], [-299.3, -992.29], [-302.77, -990.09], [-305.51, -989.14], [-307.33, -988.59], [-310.7, -987.99], [-319.44, -987.21], [-328.3, -986.13], [-332.01, -986.98], [-332.31, -985.64], [-332.7, -985.59], [-332.63, -987.06], [-344.62, -987.59], [-362.05, -992.16], [-383.59, -1000.95], [-403.65, -1010.31], [-412.31, -1014.82], [-422.83, -1021.23], [-432.42, -1027.49], [-442.49, -1034.53], [-461.6, -1051.83], [-473.92, -1064.26], [-481.58, -1072.33], [-488.85, -1081.01], [-495.37, -1089.33], [-500.47, -1096.38], [-508.11, -1108.61], [-526.48, -1142.25], [-537.99, -1167.37], [-549.39, -1189.21], [-575.34, -1235.5], [-583.61, -1246.61], [-593.67, -1256.88], [-604.96, -1264.94], [-607.45, -1266.39], [-613.43, -1269.89], [-622.98, -1274.76], [-632.5, -1278.55], [-641.17, -1280.9], [-651.58, -1283.01], [-662.73, -1283.92], [-671.71, -1284.19], [-680.17, -1283.27], [-694.04, -1281.4], [-710.58, -1276.53], [-722.81, -1271.45], [-733.98, -1262.53], [-740.26, -1269.47], [-750.3, -1278.8], [-756.22, -1284.1], [-780.57, -1305.46], [-782.55, -1303.2], [-780.57, -1305.46], [-791.1, -1314.68], [-817.85, -1339.09], [-820.46, -1341.33], [-822.8, -1342.31], [-825.52, -1342.06], [-828.48, -1341.33], [-830.87, -1340.28], [-832.11, -1339.4], [-834.67, -1337.55], [-992.56, -1212.46], [-990.7, -1210.11], [-992.57, -1212.45], [-1017.94, -1192.1], [-1050.69, -1166.08], [-1053.68, -1161.83], [-1053.93, -1157.42], [-1053.3, -1154.36], [-1051.84, -1151.49], [-1049.53, -1148.66], [-1031.97, -1132.02], [-1021.34, -1123.32], [-1013.73, -1116.04], [-976.26, -1081.85], [-968.29, -1074.58], [-958.31, -1065.24], [-940.81, -1049.93], [-938.61, -1048.01], [-934.42, -1044.04], [-938.06, -1040.07], [-979.81, -995.72], [-991.0, -985.29], [-997.31, -981.21], [-1003.99, -977.91], [-1018.87, -971.52], [-1029.76, -966.93], [-1035.35, -971.9], [-1058.11, -994.59], [-1085.16, -1019.03], [-1119.4, -1049.96], [-1127.79, -1057.53], [-1165.74, -1091.83], [-1216.0, -1137.24], [-1224.56, -1144.96], [-1261.52, -1178.36], [-1376.38, -1282.12], [-1408.62, -1311.25], [-1437.38, -1337.24], [-1465.48, -1364.11], [-1466.93, -1365.91], [-1466.75, -1366.56], [-1467.64, -1366.81], [-1473.86, -1374.57], [-1480.41, -1382.92], [-1482.21, -1385.19], [-1494.25, -1398.71], [-1494.25, -1399.36], [-1494.84, -1399.36], [-1496.05, -1400.72], [-1496.51, -1414.47], [-1497.39, -1440.98], [-1498.26, -1477.66], [-1497.43, -1486.3], [-1492.54, -1486.44], [-1490.39, -1486.5], [-1483.09, -1486.68], [-1481.49, -1486.73], [-1478.67, -1486.81], [-1467.93, -1487.12], [-1442.29, -1487.85], [-1429.72, -1488.01], [-1424.48, -1488.06], [-1423.76, -1416.72], [-1423.23, -1384.68], [-1424.25, -1377.77], [-1425.83, -1373.3], [-1428.68, -1371.47], [-1436.68, -1370.42], [-1444.28, -1370.25], [-1444.14, -1364.25], [-1436.22, -1364.43], [-1426.58, -1365.7], [-1420.86, -1369.35], [-1418.4, -1376.32], [-1417.22, -1384.29], [-1417.76, -1416.8], [-1418.51, -1491.11], [-1421.51, -1491.08], [-1418.51, -1491.16], [-1421.87, -1612.71], [-1424.95, -1732.94], [-1424.86, -1747.69], [-1424.26, -1756.85], [-1422.2, -1766.82], [-1417.04, -1780.42], [-1414.1, -1786.3], [-1381.11, -1846.65], [-1376.35, -1855.46], [-1340.3, -1921.81], [-1314.94, -1976.22], [-1295.24, -2006.25], [-1278.53, -2026.01], [-1266.38, -2039.6], [-1257.08, -2047.11], [-1247.78, -2053.8], [-1239.27, -2058.61], [-1224.64, -2063.44], [-1207.44, -2066.75], [-1200.18, -2066.74], [-1160.78, -2063.56], [-1097.1, -2054.04], [-1066.77, -2051.56], [-1066.53, -2054.55], [-1066.73, -2051.56], [-1047.02, -2050.21], [-1027.68, -2051.45], [-1000.3, -2058.19], [-980.57, -2064.3], [-956.88, -2069.15], [-882.86, -2076.14], [-869.67, -2077.84], [-854.23, -2079.8], [-838.83, -2081.96], [-787.85, -2081.62], [-778.51, -2081.02], [-663.06, -2087.85], [-631.29, -2089.2], [-624.93, -2089.72], [-621.53, -2090.29], [-622.03, -2093.25], [-621.14, -2090.38], [-616.34, -2091.86], [-611.46, -2094.83], [-609.17, -2098.85], [-608.22, -2103.13], [-609.07, -2133.04], [-609.96, -2149.12], [-610.83, -2159.84], [-611.76, -2173.42], [-611.89, -2179.38], [-606.47, -2179.53], [-585.52, -2180.09], [-560.29, -2180.83], [-550.5, -2181.26], [-547.54, -2181.39], [-538.65, -2181.77], [-538.81, -2185.27], [-538.65, -2181.77], [-535.98, -2181.89], [-531.73, -2182.07], [-515.45, -2182.78], [-474.08, -2184.57], [-473.44, -2178.5], [-470.23, -2147.77], [-452.33, -1976.87], [-452.05, -1974.19], [-450.05, -1955.04], [-449.02, -1945.22], [-443.05, -1945.85], [-444.08, -1955.67], [-446.04, -1974.36], [-434.85, -1974.97], [-427.01, -1975.4], [-416.8, -1975.96], [-417.12, -1981.95], [-427.34, -1981.39], [-435.17, -1980.97], [-446.66, -1980.34], [-464.26, -2148.4], [-467.48, -2179.13], [-468.07, -2184.83], [-430.14, -2186.47], [-400.63, -2187.76], [-389.39, -2188.25], [-386.61, -2188.37], [-386.36, -2182.59], [-378.09, -1997.39], [-377.52, -1984.54], [-377.03, -1973.78], [-377.0, -1972.91], [-376.4, -1959.43], [-376.22, -1955.37], [-370.22, -1955.63], [-370.4, -1959.7], [-371.01, -1973.16], [-371.04, -1974.03], [-371.52, -1984.81], [-372.09, -1997.66], [-380.36, -2182.86], [-380.62, -2188.63], [-293.1, -2192.43], [-289.11, -2192.6], [-288.93, -2187.63], [-287.19, -2140.58], [-282.53, -2015.15], [-282.09, -2003.66], [-280.39, -1957.67], [-277.98, -1953.87], [-272.64, -1950.36], [-262.8, -1949.75], [-239.32, -1949.64], [-232.75, -1949.61], [-224.33, -1950.45], [-219.09, -1951.59], [-213.94, -1953.47], [-207.83, -1956.87], [-204.32, -1959.59], [-199.86, -1963.82], [-193.93, -1970.54], [-187.74, -1979.48], [-184.82, -1986.47], [-183.67, -1991.2], [-182.8, -1996.51], [-182.44, -2002.36], [-182.13, -2007.13], [-182.33, -2013.11], [-183.09, -2036.4], [-183.28, -2039.15], [-184.73, -2059.98], [-185.03, -2067.08], [-186.26, -2096.38], [-187.04, -2114.99], [-187.16, -2117.64], [-183.0, -2117.78], [-148.64, -2118.98], [-143.1, -2119.18], [-128.26, -2119.69], [-112.53, -2120.25], [-101.49, -2120.63], [-101.7, -2126.63], [-112.74, -2126.25], [-128.47, -2125.69], [-143.31, -2125.18], [-148.86, -2124.98], [-183.21, -2123.78], [-187.4, -2123.63], [-189.97, -2188.52], [-190.09, -2191.4], [-190.26, -2196.88], [-186.75, -2197.03], [-155.93, -2198.36], [-155.95, -2198.86], [-117.09, -2200.38], [-112.34, -2200.56], [-87.51, -2201.53], [-54.12, -2202.84], [-45.14, -2203.18], [-27.01, -2203.88], [-13.01, -2204.43], [-16.91, -2197.68], [-18.46, -2195.21], [-48.42, -2146.86], [-68.43, -2116.69], [-123.06, -2026.66], [-280.96, -1777.74], [-301.84, -1743.84], [-350.49, -1666.31], [-372.69, -1623.26], [-387.33, -1583.31], [-398.48, -1537.36], [-403.92, -1485.11], [-401.94, -1441.01], [-395.91, -1397.17], [-386.02, -1340.71], [-369.74, -1254.57], [-361.39, -1220.02], [-348.84, -1163.71], [-338.56, -1124.86], [-322.41, -1076.62], [-301.23, -1018.28], [-294.91, -1020.57], [-294.85, -1020.27]], [[-280.31, -2192.98], [-242.95, -2194.59], [-243.1, -2198.09], [-242.95, -2194.59], [-199.24, -2196.49], [-196.25, -2196.62], [-196.08, -2191.19], [-195.97, -2188.28], [-193.28, -2120.41], [-190.28, -2120.53], [-193.28, -2120.4], [-193.04, -2114.74], [-192.26, -2096.13], [-191.02, -2066.83], [-190.72, -2059.65], [-189.27, -2038.73], [-189.08, -2036.09], [-188.33, -2012.92], [-188.14, -2007.22], [-188.42, -2002.74], [-188.77, -1997.18], [-189.55, -1992.39], [-190.54, -1988.35], [-193.04, -1982.38], [-198.67, -1974.24], [-204.18, -1967.99], [-208.23, -1964.15], [-211.14, -1961.89], [-216.44, -1958.94], [-220.76, -1957.37], [-225.27, -1956.39], [-233.04, -1955.61], [-239.29, -1955.64], [-262.6, -1955.75], [-270.68, -1956.25], [-273.6, -1958.18], [-274.45, -1959.51], [-276.1, -2003.88], [-276.53, -2015.37], [-281.19, -2140.8], [-282.94, -2187.85], [-283.12, -2192.86], [-280.31, -2192.98]], [[-240.53, -2207.09], [-244.84, -2295.74], [-247.67, -2384.7], [-247.83, -2389.91], [-173.19, -2393.18], [-166.7, -2393.46], [-166.47, -2387.72], [-159.43, -2210.59], [-159.22, -2205.23], [-187.05, -2204.03], [-193.52, -2203.74], [-199.54, -2203.48], [-240.27, -2201.71], [-240.53, -2207.09]], [[-248.23, -2399.4], [-251.66, -2472.85], [-252.41, -2487.15], [-177.92, -2516.79], [-174.19, -2518.27], [-172.86, -2512.83], [-171.42, -2506.96], [-166.94, -2399.46], [-173.45, -2399.17], [-248.07, -2395.91], [-248.23, -2399.4]], [[-1888.07, 37.93], [-1897.62, 9.68], [-1900.84, 1.32], [-1903.9, -9.23], [-1905.33, -17.38], [-1905.68, -30.37], [-1909.18, -30.28], [-1905.68, -30.38], [-1906.16, -46.96], [-1906.25, -49.69], [-1907.15, -80.45], [-1908.21, -116.12], [-1908.46, -125.56], [-1908.52, -126.95], [-1910.19, -183.42], [-1909.94, -188.37], [-1909.37, -193.4], [-1908.62, -198.4], [-1905.74, -206.99], [-1905.42, -207.85], [-1904.92, -209.83], [-1901.48, -217.8], [-1888.03, -218.36], [-1884.08, -218.51], [-1750.83, -223.67], [-1741.05, -224.42], [-1733.02, -224.8], [-1696.61, -226.56], [-1604.77, -230.97], [-1596.98, -231.33], [-1591.83, -231.58], [-1557.16, -233.23], [-1532.32, -234.44], [-1502.94, -235.84], [-1472.53, -237.33], [-1465.46, -237.66], [-1465.5, -232.06], [-1465.48, -226.99], [-1465.64, -204.02], [-1464.51, -143.03], [-1468.09, -142.84], [-1502.68, -141.18], [-1520.72, -143.02], [-1545.18, -140.5], [-1558.63, -140.29], [-1566.56, -140.48], [-1573.87, -141.4], [-1582.29, -143.09], [-1590.45, -145.9], [-1595.58, -148.47], [-1600.99, -152.32], [-1604.07, -154.8], [-1607.52, -158.19], [-1611.64, -162.33], [-1616.71, -166.18], [-1622.9, -169.01], [-1628.24, -170.42], [-1636.17, -171.46], [-1657.81, -170.91], [-1662.62, -169.65], [-1668.8, -167.8], [-1673.0, -166.37], [-1676.42, -165.43], [-1678.42, -165.03], [-1680.38, -164.79], [-1683.8, -164.71], [-1686.77, -165.03], [-1689.67, -165.81], [-1698.72, -169.95], [-1715.0, -173.7], [-1722.65, -175.15], [-1726.74, -175.59], [-1731.07, -175.53], [-1735.32, -175.18], [-1738.51, -174.53], [-1741.32, -173.57], [-1744.56, -172.35], [-1765.14, -159.51], [-1770.86, -155.58], [-1777.09, -150.98], [-1781.47, -147.39], [-1785.06, -143.68], [-1787.79, -139.57], [-1782.79, -136.25], [-1780.37, -139.91], [-1777.4, -142.97], [-1773.4, -146.24], [-1767.38, -150.69], [-1761.85, -154.48], [-1741.89, -166.94], [-1739.29, -167.92], [-1736.93, -168.73], [-1734.47, -169.23], [-1730.79, -169.54], [-1727.02, -169.58], [-1723.53, -169.21], [-1716.23, -167.82], [-1700.66, -164.24], [-1691.71, -160.14], [-1687.87, -159.11], [-1684.04, -158.71], [-1679.94, -158.8], [-1677.46, -159.11], [-1675.04, -159.59], [-1671.24, -160.64], [-1666.97, -162.08], [-1661.0, -163.87], [-1656.96, -164.93], [-1636.49, -165.45], [-1629.4, -164.52], [-1624.93, -163.34], [-1619.81, -161.0], [-1615.6, -157.81], [-1611.75, -153.93], [-1608.07, -150.32], [-1604.62, -147.54], [-1598.69, -143.31], [-1592.78, -140.36], [-1583.87, -137.29], [-1574.84, -135.48], [-1567.01, -134.49], [-1558.65, -134.29], [-1544.82, -134.51], [-1520.72, -136.98], [-1502.84, -135.16], [-1467.78, -136.85], [-1460.86, -137.22], [-1459.25, -84.16], [-1459.18, -80.19], [-1458.42, -57.39], [-1454.16, 22.3], [-1453.65, 34.85], [-1453.34, 42.97], [-1453.34, 42.97], [-1453.05, 54.53], [-1452.1, 82.9], [-1456.13, 83.07], [-1458.83, 83.14], [-1474.76, 84.2], [-1487.93, 84.82], [-1516.33, 86.25], [-1539.76, 87.35], [-1545.38, 87.71], [-1549.97, 88.28], [-1554.0, 89.9], [-1556.98, 91.73], [-1559.42, 94.29], [-1561.19, 98.8], [-1561.84, 103.85], [-1561.81, 109.46], [-1561.56, 119.26], [-1561.5, 126.24], [-1561.66, 133.06], [-1562.83, 137.94], [-1564.14, 140.88], [-1565.32, 142.01], [-1567.2, 142.95], [-1568.18, 143.09], [-1570.5, 142.53], [-1573.3, 140.68], [-1575.55, 137.64], [-1577.86, 133.56], [-1582.36, 125.21], [-1586.89, 116.82], [-1595.65, 105.11], [-1605.41, 93.58], [-1613.17, 86.16], [-1619.76, 80.83], [-1627.49, 77.42], [-1636.16, 73.31], [-1645.47, 69.19], [-1653.96, 64.74], [-1674.32, 54.32], [-1683.72, 51.01], [-1693.46, 49.53], [-1703.8, 49.52], [-1714.06, 49.98], [-1730.87, 51.46], [-1753.55, 54.77], [-1771.08, 57.5], [-1784.77, 58.88], [-1807.75, 58.97], [-1821.74, 59.84], [-1835.69, 61.65], [-1846.62, 64.13], [-1857.7, 67.56], [-1870.74, 71.73], [-1876.4, 74.19], [-1879.05, 66.7], [-1888.07, 37.93]], [[-1884.63, -232.5], [-1888.6, -232.34], [-1892.71, -232.17], [-1892.13, -232.9], [-1889.33, -235.95], [-1885.66, -240.45], [-1883.12, -243.93], [-1880.96, -247.62], [-1878.27, -253.4], [-1875.65, -261.1], [-1873.99, -268.77], [-1873.11, -282.07], [-1873.27, -297.41], [-1874.32, -342.54], [-1874.41, -346.34], [-1874.5, -349.13], [-1868.88, -349.64], [-1757.59, -355.25], [-1748.57, -355.7], [-1748.5, -352.24], [-1747.48, -299.98], [-1743.98, -300.05], [-1747.47, -299.9], [-1746.17, -267.74], [-1745.65, -244.85], [-1745.57, -241.22], [-1745.39, -238.13], [-1751.64, -237.65], [-1884.63, -232.5]], [[-1869.86, -363.61], [-1875.41, -363.11], [-1875.51, -367.17], [-1875.64, -371.92], [-1876.06, -388.32], [-1876.15, -391.94], [-1877.78, -428.71], [-1877.63, -450.53], [-1878.11, -469.55], [-1878.21, -473.21], [-1878.34, -478.66], [-1872.69, -478.94], [-1763.78, -483.72], [-1758.71, -484.19], [-1752.89, -484.43], [-1752.79, -478.87], [-1752.37, -460.25], [-1750.78, -428.33], [-1749.83, -399.54], [-1749.63, -394.22], [-1748.87, -374.39], [-1748.81, -369.71], [-1758.28, -369.24], [-1869.86, -363.61]], [[-1764.26, -490.7], [-1873.02, -485.93], [-1878.97, -485.64], [-1879.05, -491.27], [-1879.08, -493.2], [-1879.21, -503.81], [-1879.87, -536.45], [-1879.92, -538.87], [-1880.76, -580.94], [-1881.1, -597.8], [-1881.3, -607.75], [-1881.32, -608.57], [-1881.73, -625.33], [-1881.99, -631.81], [-1882.21, -637.7], [-1875.52, -638.03], [-1858.01, -638.92], [-1829.39, -640.38], [-1827.64, -640.47], [-1808.49, -641.45], [-1799.5, -641.91], [-1784.66, -642.67], [-1764.62, -643.69], [-1760.92, -643.87], [-1755.81, -644.14], [-1755.47, -609.24], [-1754.67, -595.69], [-1754.37, -586.01], [-1753.72, -564.32], [-1753.62, -534.21], [-1753.3, -499.53], [-1753.13, -494.26], [-1753.05, -491.43], [-1759.17, -491.17], [-1764.26, -490.7]], [[-1764.97, -650.68], [-1785.01, -649.66], [-1799.85, -648.9], [-1808.85, -648.45], [-1828.01, -647.46], [-1829.75, -647.37], [-1858.37, -645.91], [-1875.87, -645.02], [-1882.64, -644.69], [-1883.24, -651.89], [-1883.38, -663.13], [-1883.11, -690.24], [-1884.78, -739.87], [-1887.78, -739.77], [-1884.78, -739.88], [-1884.97, -745.02], [-1885.45, -768.63], [-1885.87, -780.28], [-1886.24, -793.57], [-1886.9, -832.77], [-1887.04, -840.52], [-1887.08, -842.95], [-1881.57, -843.2], [-1871.94, -843.65], [-1839.56, -845.14], [-1835.98, -845.31], [-1815.66, -846.25], [-1808.66, -846.57], [-1798.96, -847.02], [-1766.02, -848.54], [-1761.14, -848.76], [-1761.08, -846.92], [-1760.65, -820.31], [-1760.48, -810.41], [-1760.38, -804.82], [-1760.0, -797.28], [-1759.79, -792.55], [-1757.78, -735.84], [-1756.72, -672.27], [-1752.72, -672.34], [-1756.22, -672.27], [-1756.0, -661.48], [-1755.94, -656.59], [-1755.88, -651.14], [-1761.28, -650.87], [-1764.97, -650.68]], [[-1799.6, -861.0], [-1809.31, -860.56], [-1816.31, -860.23], [-1836.63, -859.3], [-1840.21, -859.13], [-1872.58, -857.63], [-1882.21, -857.19], [-1887.21, -856.96], [-1887.22, -859.04], [-1887.25, -860.54], [-1887.42, -867.67], [-1887.46, -869.24], [-1887.78, -882.54], [-1888.11, -894.31], [-1888.77, -919.67], [-1883.7, -919.76], [-1882.45, -919.79], [-1768.0, -922.91], [-1763.15, -923.03], [-1762.99, -917.21], [-1762.0, -880.68], [-1761.96, -879.27], [-1761.61, -865.04], [-1761.54, -862.76], [-1766.66, -862.53], [-1799.6, -861.0]], [[-1882.61, -925.79], [-1883.84, -925.75], [-1888.91, -925.66], [-1890.19, -990.22], [-1890.27, -994.07], [-1844.58, -995.4], [-1801.71, -996.51], [-1773.5, -996.98], [-1770.39, -997.04], [-1765.2, -997.09], [-1765.01, -990.3], [-1763.31, -929.03], [-1768.16, -928.9], [-1882.61, -925.79]], [[-1843.18, -1053.24], [-1843.2, -1053.67], [-1843.23, -1055.11], [-1774.38, -1056.39], [-1770.79, -1056.46], [-1766.33, -1056.57], [-1765.47, -1009.78], [-1765.34, -1003.09], [-1770.47, -1003.04], [-1773.61, -1002.98], [-1801.83, -1002.51], [-1841.74, -1001.48], [-1841.85, -1005.48], [-1843.18, -1053.24]], [[-1883.68, -1060.19], [-1888.59, -1060.04], [-1888.66, -1062.17], [-1889.98, -1104.24], [-1890.07, -1106.92], [-1890.32, -1115.01], [-1884.97, -1115.13], [-1773.25, -1117.54], [-1768.21, -1117.65], [-1767.97, -1110.07], [-1766.48, -1062.57], [-1770.92, -1062.46], [-1774.49, -1062.39], [-1846.37, -1061.05], [-1846.31, -1058.05], [-1846.38, -1061.05], [-1883.68, -1060.19]], [[-1885.1, -1121.13], [-1890.49, -1121.01], [-1890.71, -1129.28], [-1891.99, -1178.19], [-1893.05, -1227.36], [-1893.22, -1235.2], [-1887.91, -1235.38], [-1776.29, -1238.2], [-1775.49, -1238.22], [-1770.99, -1238.41], [-1770.79, -1230.68], [-1769.53, -1182.18], [-1768.53, -1131.83], [-1768.36, -1123.65], [-1773.38, -1123.54], [-1885.1, -1121.13]], [[-1776.45, -1244.19], [-1888.09, -1241.38], [-1893.35, -1241.2], [-1893.55, -1249.81], [-1894.64, -1298.37], [-1895.4, -1325.11], [-1895.91, -1348.22], [-1895.98, -1350.98], [-1896.26, -1356.71], [-1892.03, -1356.83], [-1863.56, -1357.52], [-1831.76, -1358.49], [-1779.7, -1359.92], [-1777.59, -1359.98], [-1773.95, -1360.04], [-1773.75, -1352.02], [-1772.48, -1301.92], [-1771.34, -1253.14], [-1771.13, -1244.41], [-1775.71, -1244.21], [-1776.45, -1244.19]], [[-1779.87, -1365.91], [-1831.93, -1364.49], [-1863.73, -1363.52], [-1892.18, -1362.83], [-1896.44, -1362.71], [-1896.51, -1370.86], [-1897.27, -1415.33], [-1903.27, -1415.23], [-1902.51, -1370.78], [-1902.44, -1362.58], [-1907.47, -1362.49], [-2019.52, -1359.66], [-2024.82, -1359.53], [-2024.96, -1367.24], [-2024.97, -1367.85], [-2026.95, -1466.14], [-2026.97, -1473.74], [-2014.73, -1474.14], [-2009.09, -1474.35], [-1781.58, -1480.49], [-1777.58, -1480.59], [-1777.29, -1472.38], [-1775.52, -1422.78], [-1774.29, -1373.57], [-1774.1, -1366.04], [-1777.72, -1365.97], [-1779.87, -1365.91]], [[-2006.24, -1480.43], [-2006.4, -1488.66], [-2008.33, -1588.7], [-2008.49, -1592.78], [-2005.46, -1592.86], [-1787.49, -1601.35], [-1784.92, -1601.44], [-1779.88, -1601.54], [-1779.78, -1595.13], [-1778.91, -1543.6], [-1777.91, -1494.87], [-1777.74, -1486.59], [-1781.73, -1486.49], [-2006.24, -1480.43]], [[-1787.75, -1608.34], [-2005.69, -1599.86], [-2008.75, -1599.78], [-2008.92, -1604.44], [-2009.5, -1620.98], [-2011.35, -1708.39], [-2011.47, -1714.32], [-2008.55, -1714.44], [-1896.38, -1718.77], [-1813.68, -1721.96], [-1788.23, -1722.52], [-1784.26, -1722.61], [-1783.96, -1714.22], [-1782.16, -1665.59], [-1780.34, -1616.03], [-1780.07, -1608.54], [-1785.11, -1608.44], [-1787.75, -1608.34]], [[-1778.49, -1784.08], [-1779.05, -1802.11], [-1777.78, -1808.63], [-1777.49, -1816.21], [-1777.57, -1821.48], [-1778.38, -1873.18], [-1779.83, -1924.47], [-1780.31, -1932.53], [-1781.64, -1942.31], [-1781.81, -1943.46], [-1783.0, -1951.39], [-1783.54, -1973.61], [-1783.74, -1981.88], [-1779.34, -1979.69], [-1777.03, -1978.36], [-1746.45, -1960.84], [-1705.64, -1937.88], [-1700.65, -1935.23], [-1699.24, -1937.88], [-1700.63, -1935.22], [-1696.21, -1932.9], [-1659.1, -1913.6], [-1623.92, -1894.31], [-1618.38, -1891.27], [-1619.07, -1885.63], [-1621.05, -1858.94], [-1621.45, -1853.59], [-1621.58, -1851.9], [-1622.34, -1843.59], [-1622.64, -1840.38], [-1623.53, -1834.37], [-1624.59, -1827.24], [-1625.77, -1821.67], [-1627.29, -1815.59], [-1628.55, -1810.49], [-1629.42, -1807.0], [-1632.0, -1798.95], [-1636.46, -1787.58], [-1638.24, -1783.0], [-1640.73, -1777.46], [-1647.01, -1763.47], [-1649.97, -1752.07], [-1651.9, -1742.31], [-1651.85, -1738.71], [-1651.86, -1731.83], [-1658.42, -1731.74], [-1675.75, -1731.51], [-1725.81, -1730.87], [-1771.08, -1729.48], [-1776.5, -1729.32], [-1776.7, -1734.88], [-1778.49, -1784.08]], [[-1645.89, -1741.76], [-1644.12, -1750.73], [-1641.33, -1761.48], [-1635.25, -1775.0], [-1632.71, -1780.68], [-1630.87, -1785.39], [-1626.35, -1796.94], [-1623.65, -1805.36], [-1622.73, -1809.04], [-1621.47, -1814.15], [-1619.93, -1820.32], [-1618.68, -1826.17], [-1617.59, -1833.49], [-1616.68, -1839.66], [-1616.37, -1843.04], [-1615.6, -1851.4], [-1615.47, -1853.14], [-1615.07, -1858.5], [-1613.1, -1885.05], [-1612.71, -1888.2], [-1607.58, -1885.45], [-1551.03, -1854.33], [-1515.49, -1833.93], [-1512.41, -1832.17], [-1508.39, -1831.0], [-1517.48, -1809.28], [-1522.51, -1781.95], [-1524.09, -1743.03], [-1523.74, -1734.53], [-1528.37, -1734.42], [-1557.13, -1733.85], [-1603.79, -1732.86], [-1612.76, -1732.68], [-1640.39, -1731.91], [-1645.86, -1731.88], [-1645.85, -1738.74], [-1645.89, -1741.76]], [[-1512.5, -1839.14], [-1548.09, -1859.56], [-1604.71, -1890.72], [-1611.07, -1894.14], [-1610.52, -1895.13], [-1580.39, -1950.24], [-1579.6, -1951.7], [-1577.83, -1954.94], [-1573.09, -1952.4], [-1517.8, -1922.74], [-1514.32, -1920.86], [-1501.55, -1913.94], [-1478.71, -1901.11], [-1476.42, -1899.82], [-1473.2, -1898.01], [-1474.83, -1894.95], [-1485.83, -1874.25], [-1505.84, -1836.51], [-1510.05, -1837.73], [-1512.5, -1839.14]], [[-1474.79, -1908.09], [-1497.68, -1920.94], [-1510.51, -1927.89], [-1514.0, -1929.79], [-1569.31, -1959.45], [-1574.0, -1961.97], [-1571.28, -1966.96], [-1570.19, -1968.96], [-1496.54, -2104.05], [-1475.14, -2139.96], [-1467.09, -2146.52], [-1458.45, -2150.44], [-1447.71, -2151.77], [-1429.76, -2153.99], [-1415.08, -2154.87], [-1395.25, -2155.56], [-1390.6, -2155.72], [-1387.32, -2155.84], [-1387.08, -2150.62], [-1385.5, -2115.79], [-1383.66, -2115.87], [-1386.63, -2109.94], [-1386.49, -2100.23], [-1384.0, -2100.27], [-1384.05, -2099.67], [-1386.29, -2098.99], [-1384.62, -2093.48], [-1384.87, -2090.84], [-1384.8, -2084.8], [-1384.01, -2071.94], [-1383.81, -2067.05], [-1384.59, -2059.3], [-1385.48, -2058.35], [-1384.75, -2057.68], [-1384.82, -2057.01], [-1385.98, -2057.65], [-1390.7, -2049.04], [-1399.64, -2031.82], [-1418.06, -1998.46], [-1420.49, -1994.1], [-1437.98, -1962.32], [-1454.89, -1931.49], [-1469.4, -1905.05], [-1472.5, -1906.8], [-1474.79, -1908.09]], [[-1620.05, -1986.63], [-1653.28, -2005.41], [-1657.45, -2007.76], [-1654.77, -2012.62], [-1615.35, -2084.25], [-1587.65, -2135.48], [-1555.2, -2191.86], [-1532.8, -2232.5], [-1525.05, -2243.38], [-1513.52, -2254.28], [-1479.1, -2255.05], [-1433.49, -2257.64], [-1416.27, -2258.62], [-1399.52, -2259.09], [-1396.12, -2259.19], [-1389.82, -2257.74], [-1389.7, -2253.12], [-1387.7, -2169.32], [-1387.52, -2161.84], [-1390.81, -2161.72], [-1395.46, -2161.55], [-1415.36, -2160.86], [-1430.31, -2159.96], [-1448.44, -2157.72], [-1460.1, -2156.28], [-1470.28, -2151.66], [-1479.75, -2143.94], [-1501.75, -2107.02], [-1575.45, -1971.83], [-1576.55, -1969.83], [-1579.29, -1964.8], [-1585.15, -1967.95], [-1620.05, -1986.63]], [[-1570.06, -2278.46], [-1592.53, -2287.71], [-1597.97, -2289.9], [-1596.64, -2293.03], [-1588.14, -2312.43], [-1577.98, -2338.8], [-1566.2, -2374.78], [-1564.97, -2379.09], [-1560.23, -2378.04], [-1515.53, -2365.04], [-1478.97, -2357.56], [-1462.04, -2356.45], [-1444.65, -2356.75], [-1404.01, -2359.39], [-1400.43, -2359.62], [-1394.83, -2359.75], [-1394.58, -2354.78], [-1390.17, -2265.49], [-1390.09, -2263.96], [-1395.52, -2265.21], [-1399.68, -2265.09], [-1416.53, -2264.62], [-1433.83, -2263.63], [-1479.34, -2261.04], [-1514.29, -2260.26], [-1530.9, -2265.68], [-1570.06, -2278.46]], [[-1555.23, -2419.79], [-1554.4, -2423.24], [-1551.85, -2433.96], [-1544.86, -2470.38], [-1544.07, -2476.67], [-1543.49, -2481.26], [-1538.99, -2481.36], [-1503.62, -2482.2], [-1409.68, -2487.25], [-1406.52, -2487.42], [-1399.9, -2487.28], [-1399.3, -2474.47], [-1395.31, -2369.87], [-1395.12, -2365.75], [-1400.7, -2365.61], [-1404.4, -2365.37], [-1444.9, -2362.75], [-1461.9, -2362.45], [-1478.17, -2363.52], [-1514.09, -2370.87], [-1558.73, -2383.85], [-1563.44, -2384.9], [-1562.26, -2389.82], [-1555.23, -2419.79]], [[-2884.76, -2941.39], [-2864.26, -2920.94], [-2846.36, -2901.37], [-2824.73, -2878.63], [-2796.18, -2848.48], [-2790.54, -2842.16], [-2821.87, -2850.94], [-2884.73, -2870.33], [-2968.29, -2898.27], [-2982.2, -2902.4], [-2979.35, -2905.74], [-2971.48, -2912.59], [-2958.15, -2922.36], [-2946.8, -2931.27], [-2918.23, -2959.98], [-2911.92, -2967.36], [-2892.54, -2949.16], [-2884.76, -2941.39]], [[-3056.53, -2914.54], [-3075.98, -2913.09], [-3098.03, -2910.79], [-3117.89, -2910.32], [-3135.9, -2913.39], [-3136.69, -2913.64], [-3133.31, -2916.28], [-3124.87, -2932.82], [-3113.97, -2951.48], [-3101.48, -2968.19], [-3089.36, -2985.64], [-3081.81, -2997.54], [-3074.21, -3014.45], [-3069.14, -3018.21], [-3064.62, -3020.15], [-3050.91, -3017.27], [-3027.23, -3010.39], [-3008.32, -3006.38], [-2995.33, -3011.13], [-2986.19, -3017.1], [-2976.96, -3026.85], [-2973.57, -3031.4], [-2950.02, -3008.4], [-2931.16, -2986.85], [-2916.22, -2971.56], [-2922.64, -2964.05], [-2950.8, -2935.77], [-2961.77, -2927.14], [-2975.23, -2917.28], [-2983.62, -2909.98], [-2988.49, -2904.28], [-2999.33, -2907.53], [-3021.07, -2912.3], [-3038.78, -2913.93], [-3056.53, -2914.54]], [[-2512.15, -201.81], [-2494.02, -202.69], [-2465.13, -204.06], [-2457.8, -204.36], [-2453.22, -204.54], [-2427.83, -205.8], [-2431.83, -204.74], [-2447.03, -200.09], [-2456.62, -196.16], [-2468.01, -188.34], [-2468.52, -188.55], [-2475.27, -191.44], [-2485.48, -196.21], [-2490.96, -197.8], [-2497.64, -198.36], [-2513.63, -197.95], [-2528.48, -197.56], [-2531.45, -197.48], [-2537.11, -197.38], [-2537.25, -200.37], [-2531.76, -200.79], [-2512.15, -201.81]], [[-2542.97, -392.19], [-2543.2, -400.01], [-2546.7, -399.91], [-2542.7, -400.03], [-2542.96, -408.89], [-2544.42, -456.96], [-2546.75, -536.27], [-2546.96, -545.09], [-2550.96, -545.0], [-2546.97, -545.22], [-2547.35, -552.11], [-2552.67, -718.83], [-2552.96, -727.92], [-2556.96, -727.8], [-2552.96, -727.95], [-2553.22, -734.73], [-2554.07, -761.77], [-2555.7, -811.05], [-2555.82, -814.87], [-2549.9, -812.23], [-2546.11, -812.23], [-2539.55, -811.88], [-2535.1, -811.01], [-2523.23, -808.27], [-2448.96, -785.96], [-2430.19, -779.31], [-2427.63, -778.02], [-2425.04, -776.39], [-2409.8, -764.1], [-2391.1, -756.67], [-2387.51, -753.87], [-2379.87, -747.9], [-2357.18, -730.19], [-2350.6, -725.06], [-2332.08, -710.61], [-2299.15, -684.9], [-2263.79, -657.31], [-2230.88, -631.6], [-2166.05, -579.67], [-2162.6, -576.96], [-2163.9, -575.95], [-2162.54, -574.21], [-2161.56, -572.55], [-2160.87, -570.89], [-2159.86, -568.31], [-2158.98, -565.6], [-2158.3, -562.67], [-2157.82, -560.13], [-2157.37, -557.6], [-2156.99, -554.85], [-2156.78, -552.56], [-2156.61, -550.1], [-2156.51, -548.08], [-2156.05, -476.72], [-2156.0, -468.12], [-2150.75, -468.15], [-2155.25, -468.13], [-2155.2, -458.8], [-2155.03, -434.13], [-2154.85, -404.12], [-2154.18, -404.12], [-2156.71, -398.36], [-2157.12, -395.27], [-2157.12, -382.69], [-2156.96, -370.26], [-2156.39, -354.51], [-2156.17, -348.45], [-2155.71, -338.43], [-2152.21, -338.59], [-2155.7, -338.27], [-2154.98, -330.54], [-2153.24, -303.11], [-2152.92, -294.57], [-2152.46, -286.16], [-2151.6, -281.99], [-2151.59, -281.98], [-2157.87, -278.84], [-2161.22, -277.22], [-2194.39, -261.16], [-2191.34, -254.86], [-2193.67, -259.57], [-2235.38, -238.9], [-2247.21, -232.79], [-2253.92, -230.29], [-2258.51, -228.59], [-2272.91, -225.84], [-2306.48, -222.61], [-2324.97, -221.13], [-2371.24, -217.42], [-2371.1, -215.68], [-2371.4, -215.66], [-2371.68, -217.37], [-2386.57, -214.9], [-2424.06, -213.0], [-2453.53, -211.53], [-2458.08, -211.36], [-2465.44, -211.06], [-2494.35, -209.68], [-2512.5, -208.8], [-2532.21, -207.78], [-2537.53, -207.37], [-2537.64, -211.07], [-2538.67, -245.91], [-2542.97, -392.19]], [[-2490.77, -808.3], [-2487.38, -805.61], [-2484.54, -803.96], [-2516.75, -813.63], [-2504.36, -812.06], [-2495.32, -812.17], [-2490.77, -808.3]], [[-2530.16, -819.9], [-2537.25, -820.43], [-2546.04, -820.53], [-2549.07, -820.52], [-2551.32, -820.95], [-2549.09, -821.57], [-2527.5, -821.95], [-2518.96, -818.89], [-2509.65, -817.27], [-2506.46, -817.04], [-2503.51, -816.87], [-2501.7, -816.35], [-2501.26, -816.1], [-2504.13, -816.06], [-2518.47, -817.88], [-2530.16, -819.9]], [[-2557.9, -829.44], [-2558.06, -848.38], [-2558.51, -858.02], [-2558.86, -886.58], [-2558.89, -889.13], [-2556.09, -892.53], [-2555.85, -892.33], [-2555.04, -893.28], [-2552.4, -886.8], [-2548.93, -883.79], [-2529.95, -867.59], [-2521.07, -860.23], [-2516.09, -856.1], [-2508.75, -850.21], [-2498.79, -846.1], [-2499.69, -845.02], [-2480.71, -829.25], [-2477.19, -826.27], [-2484.69, -827.56], [-2491.65, -827.34], [-2527.23, -825.95], [-2549.68, -825.56], [-2556.94, -823.52], [-2557.9, -829.44]], [[-2524.81, -873.36], [-2518.06, -867.81], [-2516.67, -866.63], [-2511.3, -861.95], [-2504.5, -856.11], [-2502.05, -851.78], [-2506.69, -853.69], [-2513.56, -859.2], [-2518.52, -863.31], [-2527.37, -870.65], [-2546.33, -886.82], [-2549.06, -889.19], [-2550.42, -892.54], [-2546.17, -891.96], [-2543.68, -889.91], [-2524.81, -873.36]], [[-2544.5, -895.77], [-2552.04, -896.8], [-2551.31, -897.66], [-2554.13, -900.07], [-2565.01, -911.25], [-2572.41, -917.38], [-2582.23, -925.7], [-2587.31, -930.22], [-2639.86, -975.11], [-2649.53, -983.87], [-2654.0, -988.2], [-2649.73, -992.65], [-2648.65, -993.9], [-2631.24, -1014.11], [-2623.77, -1022.72], [-2600.54, -1050.43], [-2599.1, -1052.08], [-2594.77, -1057.28], [-2590.13, -1053.36], [-2466.87, -946.63], [-2464.14, -944.27], [-2458.36, -939.63], [-2462.06, -935.55], [-2487.34, -905.41], [-2494.86, -896.87], [-2512.36, -877.01], [-2514.21, -874.91], [-2516.81, -871.96], [-2522.22, -876.41], [-2541.09, -892.96], [-2544.5, -895.77]], [[-2561.62, -1096.46], [-2535.9, -1126.34], [-2532.19, -1130.61], [-2527.55, -1126.53], [-2404.96, -1022.06], [-2400.31, -1018.11], [-2395.04, -1013.61], [-2399.06, -1009.0], [-2425.14, -979.0], [-2450.72, -950.08], [-2455.32, -944.88], [-2460.3, -948.88], [-2462.94, -951.16], [-2586.23, -1057.92], [-2590.93, -1061.9], [-2587.53, -1066.02], [-2585.04, -1068.95], [-2561.62, -1096.46]], [[-2633.07, -1221.62], [-2637.17, -1225.0], [-2631.01, -1232.27], [-2606.52, -1261.19], [-2580.77, -1291.61], [-2577.0, -1296.06], [-2572.44, -1292.16], [-2570.03, -1290.1], [-2479.17, -1212.45], [-2474.79, -1208.71], [-2478.4, -1204.29], [-2503.09, -1173.98], [-2528.04, -1144.69], [-2532.86, -1139.03], [-2538.29, -1143.42], [-2630.42, -1219.44], [-2633.07, -1221.62]], [[-2518.28, -1365.43], [-2514.67, -1369.64], [-2510.0, -1365.84], [-2507.85, -1364.05], [-2480.77, -1341.5], [-2478.85, -1343.8], [-2480.77, -1341.5], [-2453.37, -1318.69], [-2452.04, -1284.41], [-2451.32, -1256.77], [-2451.29, -1236.88], [-2451.28, -1226.66], [-2455.29, -1226.46], [-2456.92, -1226.11], [-2459.07, -1225.37], [-2461.26, -1223.82], [-2466.65, -1218.19], [-2470.92, -1213.29], [-2475.27, -1217.01], [-2566.13, -1294.66], [-2568.54, -1296.72], [-2573.14, -1300.66], [-2569.07, -1305.56], [-2543.82, -1335.33], [-2518.28, -1365.43]], [[-2885.21, -1005.91], [-2905.61, -1007.76], [-2954.43, -1013.22], [-2965.01, -1015.23], [-2968.84, -1016.75], [-2974.33, -1020.79], [-2971.67, -1024.08], [-2924.17, -1082.63], [-2920.78, -1086.96], [-2916.34, -1083.0], [-2910.59, -1078.78], [-2904.57, -1075.8], [-2901.58, -1074.64], [-2898.98, -1073.86], [-2896.21, -1073.28], [-2893.49, -1072.86], [-2890.89, -1072.61], [-2887.94, -1072.46], [-2868.82, -1072.74], [-2865.24, -1072.81], [-2845.9, -1073.31], [-2838.78, -1073.49], [-2827.14, -1073.65], [-2824.15, -1073.7], [-2821.69, -1073.49], [-2816.95, -1072.61], [-2812.13, -1071.45], [-2808.63, -1070.71], [-2804.38, -1070.09], [-2804.95, -1068.08], [-2805.61, -1064.16], [-2804.6, -1033.2], [-2804.64, -1028.21], [-2804.43, -1012.35], [-2804.39, -1007.11], [-2809.23, -1006.96], [-2812.53, -1006.86], [-2866.87, -1005.23], [-2885.21, -1005.91]], [[-2820.89, -1079.45], [-2823.95, -1079.7], [-2827.22, -1079.65], [-2838.89, -1079.48], [-2846.05, -1079.31], [-2865.38, -1078.81], [-2868.92, -1078.74], [-2887.83, -1078.46], [-2890.44, -1078.59], [-2892.74, -1078.82], [-2895.14, -1079.19], [-2897.5, -1079.68], [-2899.63, -1080.32], [-2902.16, -1081.3], [-2907.46, -1083.92], [-2912.56, -1087.66], [-2917.09, -1091.71], [-2913.58, -1096.29], [-2892.66, -1122.8], [-2879.66, -1138.99], [-2869.58, -1151.93], [-2868.29, -1153.32], [-2864.23, -1158.27], [-2859.65, -1154.35], [-2847.44, -1143.87], [-2787.42, -1092.76], [-2775.77, -1082.06], [-2780.05, -1079.69], [-2794.97, -1075.96], [-2797.49, -1075.54], [-2800.33, -1075.55], [-2807.58, -1076.62], [-2810.82, -1077.3], [-2815.7, -1078.48], [-2820.89, -1079.45]], [[-2805.42, -1227.89], [-2801.84, -1231.73], [-2797.51, -1228.02], [-2795.4, -1226.28], [-2714.49, -1158.28], [-2711.64, -1155.86], [-2707.33, -1152.16], [-2711.13, -1147.96], [-2736.42, -1118.19], [-2762.51, -1089.83], [-2769.39, -1085.7], [-2782.79, -1098.01], [-2842.89, -1149.19], [-2855.1, -1159.67], [-2859.82, -1163.71], [-2856.44, -1167.97], [-2854.35, -1170.45], [-2832.39, -1197.6], [-2805.42, -1227.89]], [[-2897.74, -1319.77], [-2892.75, -1325.46], [-2867.45, -1354.35], [-2841.64, -1385.93], [-2838.89, -1389.29], [-2834.71, -1385.74], [-2748.91, -1312.8], [-2743.48, -1307.94], [-2746.1, -1305.04], [-2773.68, -1274.57], [-2798.16, -1245.26], [-2802.44, -1240.12], [-2807.03, -1244.02], [-2809.92, -1246.47], [-2893.29, -1316.45], [-2897.74, -1319.77]], [[-2775.47, -1464.62], [-2771.42, -1461.18], [-2685.27, -1387.99], [-2680.83, -1384.22], [-2684.56, -1379.58], [-2709.7, -1348.36], [-2734.29, -1318.78], [-2739.54, -1312.47], [-2744.97, -1317.32], [-2830.82, -1390.32], [-2835.09, -1393.94], [-2830.15, -1399.99], [-2805.88, -1429.69], [-2779.7, -1459.76], [-2775.47, -1464.62]], [[-2712.35, -1537.64], [-2708.41, -1534.53], [-2694.87, -1523.22], [-2662.51, -1496.27], [-2618.45, -1458.09], [-2622.24, -1453.54], [-2646.79, -1424.01], [-2673.07, -1393.7], [-2677.04, -1388.88], [-2681.39, -1392.57], [-2767.54, -1465.76], [-2771.46, -1469.09], [-2767.89, -1472.97], [-2741.58, -1503.46], [-2715.93, -1533.05], [-2712.35, -1537.64]], [[-2903.82, -1512.51], [-2877.75, -1543.36], [-2872.99, -1549.0], [-2868.37, -1545.16], [-2855.58, -1534.54], [-2783.44, -1472.01], [-2779.92, -1468.64], [-2784.22, -1463.7], [-2810.47, -1433.56], [-2834.79, -1403.79], [-2839.66, -1397.83], [-2843.81, -1401.36], [-2928.24, -1473.48], [-2933.22, -1477.73], [-2928.86, -1482.88], [-2903.82, -1512.51]], [[-2795.09, -1607.85], [-2726.49, -1549.68], [-2716.97, -1541.46], [-2720.56, -1536.86], [-2746.12, -1507.38], [-2772.37, -1476.96], [-2775.92, -1473.11], [-2779.4, -1476.45], [-2851.7, -1539.11], [-2864.54, -1549.78], [-2869.12, -1553.58], [-2865.98, -1557.31], [-2840.66, -1587.27], [-2815.17, -1617.44], [-2811.15, -1622.19], [-2795.09, -1607.85]], [[-2911.04, -1323.27], [-2906.22, -1318.94], [-2908.52, -1315.98], [-2934.9, -1285.12], [-2958.95, -1256.14], [-2963.06, -1251.09], [-2969.87, -1256.64], [-2979.19, -1264.54], [-2979.19, -1264.54], [-2985.15, -1270.12], [-3058.14, -1330.93], [-3054.23, -1335.57], [-3028.7, -1364.73], [-3002.83, -1395.35], [-3000.22, -1398.45], [-2996.64, -1395.43], [-2911.04, -1323.27]], [[-2937.09, -1473.15], [-2932.14, -1468.92], [-2847.7, -1396.8], [-2843.46, -1393.18], [-2846.29, -1389.73], [-2872.03, -1358.23], [-2897.27, -1329.42], [-2902.39, -1323.56], [-2907.1, -1327.8], [-2992.77, -1400.02], [-2996.35, -1403.03], [-2991.51, -1408.75], [-2966.22, -1438.67], [-2940.08, -1469.62], [-2937.09, -1473.15]], [[-2976.92, -1626.62], [-2972.58, -1631.65], [-2968.61, -1628.36], [-2953.58, -1615.87], [-2929.68, -1596.05], [-2907.75, -1577.84], [-2886.04, -1559.81], [-2882.73, -1557.07], [-2877.61, -1552.83], [-2882.33, -1547.24], [-2908.41, -1516.39], [-2933.44, -1486.75], [-2937.78, -1481.63], [-2941.84, -1485.1], [-3013.5, -1546.28], [-3020.79, -1552.5], [-3027.32, -1558.49], [-3031.13, -1561.97], [-3027.32, -1566.62], [-3002.57, -1595.93], [-2995.97, -1603.29], [-2987.94, -1613.88], [-2976.92, -1626.62]], [[-2968.76, -1636.28], [-2956.65, -1651.72], [-2930.3, -1682.85], [-2914.16, -1701.67], [-2910.15, -1706.35], [-2892.69, -1690.86], [-2854.94, -1658.0], [-2815.71, -1626.08], [-2819.75, -1621.31], [-2845.24, -1591.14], [-2870.56, -1561.18], [-2873.74, -1557.41], [-2878.9, -1561.69], [-2882.21, -1564.43], [-2903.92, -1582.45], [-2925.85, -1600.66], [-2949.75, -1620.49], [-2964.78, -1632.97], [-2968.76, -1636.28]], [[-2944.66, -1473.49], [-2970.81, -1442.54], [-2996.1, -1412.62], [-3000.93, -1406.91], [-3003.56, -1409.13], [-3075.38, -1469.91], [-3077.68, -1471.85], [-3082.25, -1475.68], [-3077.43, -1481.12], [-3051.35, -1511.41], [-3026.11, -1541.43], [-3022.4, -1545.98], [-3017.4, -1541.71], [-2945.74, -1480.54], [-2941.65, -1477.05], [-2944.66, -1473.49]], [[-3004.8, -1402.32], [-3007.41, -1399.22], [-3033.25, -1368.64], [-3058.78, -1339.47], [-3062.72, -1334.8], [-3067.21, -1338.64], [-3144.36, -1404.58], [-3141.1, -1408.43], [-3139.47, -1410.33], [-3114.79, -1438.51], [-3089.56, -1467.54], [-3086.25, -1471.21], [-3081.54, -1467.26], [-3079.26, -1465.33], [-3007.43, -1404.55], [-3004.8, -1402.32]], [[-2925.42, -1090.77], [-2928.86, -1086.38], [-2976.33, -1027.86], [-2979.02, -1024.54], [-2982.89, -1027.9], [-3090.56, -1119.17], [-3094.78, -1122.76], [-3091.7, -1126.47], [-3044.45, -1182.34], [-3040.68, -1186.64], [-3037.02, -1183.45], [-2932.39, -1095.82], [-2930.15, -1094.34], [-2925.42, -1090.77]], [[-3003.05, -1232.42], [-2986.22, -1252.23], [-2983.81, -1254.94], [-2981.59, -1257.39], [-2974.34, -1251.26], [-2965.16, -1243.76], [-2962.95, -1246.48], [-2965.16, -1243.76], [-2956.67, -1236.87], [-2937.25, -1220.43], [-2873.51, -1166.34], [-2868.77, -1162.19], [-2872.8, -1157.27], [-2874.15, -1155.83], [-2884.36, -1142.71], [-2897.35, -1126.54], [-2918.32, -1099.98], [-2921.74, -1095.51], [-2926.69, -1099.24], [-2928.79, -1100.63], [-3033.12, -1188.01], [-3036.81, -1191.23], [-3031.89, -1197.35], [-3009.4, -1224.8], [-3003.05, -1232.42]], [[-2806.42, -1235.62], [-2809.85, -1231.93], [-2836.97, -1201.49], [-2858.98, -1174.27], [-2861.09, -1171.76], [-2864.36, -1167.64], [-2868.94, -1171.65], [-2932.73, -1225.77], [-2952.2, -1242.26], [-2958.41, -1247.3], [-2954.31, -1252.33], [-2930.31, -1281.25], [-2903.87, -1312.18], [-2901.57, -1315.14], [-2897.01, -1311.74], [-2813.79, -1241.88], [-2810.91, -1239.45], [-2806.42, -1235.62]], [[-2855.2, -216.67], [-2853.98, -224.92], [-2845.26, -282.2], [-2844.45, -287.52], [-2839.13, -286.68], [-2790.06, -278.86], [-2781.88, -277.72], [-2774.57, -277.81], [-2748.29, -278.78], [-2744.86, -278.91], [-2739.51, -279.21], [-2739.38, -275.11], [-2738.9, -257.91], [-2738.67, -252.93], [-2738.38, -246.94], [-2737.78, -231.03], [-2736.66, -200.92], [-2736.62, -199.89], [-2736.5, -194.99], [-2737.47, -194.97], [-2742.77, -194.84], [-2746.67, -194.75], [-2758.37, -194.83], [-2765.56, -195.7], [-2769.81, -196.93], [-2770.1, -195.93], [-2775.97, -199.93], [-2831.67, -209.0], [-2837.81, -208.37], [-2842.96, -207.84], [-2842.79, -208.94], [-2856.04, -210.99], [-2855.48, -214.76], [-2855.2, -216.67]], [[-2829.68, -381.03], [-2822.25, -379.23], [-2793.4, -372.36], [-2780.3, -368.82], [-2778.85, -368.15], [-2761.11, -357.7], [-2753.19, -352.01], [-2748.39, -346.42], [-2744.36, -337.47], [-2742.37, -327.62], [-2740.14, -291.24], [-2739.83, -286.21], [-2745.2, -285.9], [-2748.56, -285.77], [-2774.74, -284.81], [-2781.43, -284.72], [-2789.02, -285.79], [-2838.03, -293.59], [-2843.4, -294.44], [-2842.83, -298.24], [-2832.59, -361.9], [-2830.23, -377.99], [-2829.68, -381.03]], [[-2904.58, -419.18], [-2918.82, -427.6], [-2941.18, -442.03], [-2951.36, -450.81], [-2948.1, -450.71], [-2934.04, -449.75], [-2925.9, -449.45], [-2919.46, -449.75], [-2913.05, -450.56], [-2904.73, -452.39], [-2896.63, -455.08], [-2888.83, -458.6], [-2883.32, -461.96], [-2878.29, -466.0], [-2873.83, -470.65], [-2870.65, -474.86], [-2867.91, -479.42], [-2866.16, -483.59], [-2864.98, -487.92], [-2864.35, -492.37], [-2864.3, -497.04], [-2864.89, -501.67], [-2865.54, -504.1], [-2866.08, -506.17], [-2866.17, -506.39], [-2856.16, -500.08], [-2847.79, -493.46], [-2812.83, -469.48], [-2802.26, -464.58], [-2794.93, -462.31], [-2786.57, -461.13], [-2780.77, -461.23], [-2780.19, -454.7], [-2780.07, -453.27], [-2779.87, -401.31], [-2780.31, -378.61], [-2780.37, -375.06], [-2791.92, -378.17], [-2820.85, -385.06], [-2831.19, -387.57], [-2856.24, -396.87], [-2885.58, -409.06], [-2892.48, -412.68], [-2904.58, -419.18]], [[-2809.85, -474.71], [-2844.23, -498.3], [-2852.69, -504.98], [-2870.43, -516.18], [-2880.21, -528.11], [-2918.4, -564.32], [-2931.07, -577.73], [-2942.62, -591.18], [-2958.08, -607.67], [-2961.94, -610.48], [-2966.74, -613.96], [-2971.19, -616.21], [-2958.8, -616.89], [-2791.24, -623.47], [-2786.18, -623.67], [-2786.04, -618.67], [-2783.9, -577.78], [-2782.85, -535.86], [-2782.11, -475.98], [-2781.31, -467.22], [-2786.19, -467.14], [-2793.62, -468.19], [-2800.1, -470.19], [-2809.85, -474.71]], [[-2986.47, -621.39], [-2987.75, -621.36], [-2988.02, -621.36], [-2987.81, -625.62], [-2987.28, -636.75], [-2976.9, -642.61], [-2967.92, -649.71], [-2961.54, -656.66], [-2955.47, -665.33], [-2950.33, -676.81], [-2946.75, -693.8], [-2947.0, -702.56], [-2947.11, -707.87], [-2942.07, -708.12], [-2870.1, -711.55], [-2821.08, -713.86], [-2793.86, -714.99], [-2788.61, -715.21], [-2788.32, -710.12], [-2786.52, -635.2], [-2786.35, -629.67], [-2791.47, -629.47], [-2959.08, -622.89], [-2986.47, -621.39], [-2986.47, -621.39]], [[-2942.35, -714.11], [-2947.24, -713.87], [-2947.37, -719.68], [-2950.45, -795.05], [-2950.72, -800.32], [-2945.78, -800.54], [-2897.69, -802.7], [-2872.16, -803.84], [-2804.71, -806.42], [-2794.1, -806.81], [-2791.17, -800.87], [-2790.41, -761.08], [-2789.11, -726.28], [-2788.9, -721.2], [-2794.11, -720.99], [-2821.34, -719.86], [-2870.38, -717.54], [-2942.35, -714.11]], [[-2946.1, -807.54], [-2951.06, -807.31], [-2951.35, -813.3], [-2952.87, -850.45], [-2954.26, -884.26], [-2954.42, -887.99], [-2954.62, -892.83], [-2949.73, -892.98], [-2889.4, -895.78], [-2875.29, -895.19], [-2863.14, -893.69], [-2851.04, -890.91], [-2837.54, -885.56], [-2814.53, -873.61], [-2810.28, -870.59], [-2806.77, -868.08], [-2801.51, -867.4], [-2800.48, -817.72], [-2798.02, -813.67], [-2804.97, -813.42], [-2872.45, -810.84], [-2898.01, -809.69], [-2946.1, -807.54]], [[-3053.82, -902.96], [-3041.92, -895.06], [-3051.25, -894.6], [-3073.57, -893.51], [-3070.61, -897.31], [-3064.73, -904.88], [-3061.67, -908.81], [-3053.82, -902.96]], [[-2985.0, -309.51], [-2855.11, -289.12], [-2850.38, -288.43], [-2851.19, -283.11], [-2859.92, -225.81], [-2861.14, -217.54], [-2861.42, -215.63], [-2861.97, -211.91], [-2867.37, -212.74], [-2875.82, -214.05], [-2940.55, -224.07], [-2941.35, -218.88], [-2940.55, -224.07], [-2968.64, -228.42], [-2976.72, -229.67], [-2996.43, -232.73], [-3000.81, -233.41], [-3000.2, -237.28], [-2999.7, -240.17], [-2994.72, -272.15], [-2990.15, -301.97], [-2989.73, -304.75], [-2988.91, -310.14], [-2985.0, -309.51]], [[-3041.24, -565.29], [-3039.65, -575.24], [-3035.8, -588.04], [-3030.79, -596.52], [-3025.98, -604.35], [-3017.82, -614.01], [-2995.67, -615.38], [-2991.22, -615.29], [-2991.17, -618.29], [-2991.11, -615.29], [-2986.76, -615.38], [-2977.52, -612.69], [-2969.88, -608.83], [-2965.46, -605.62], [-2962.07, -603.15], [-2947.09, -587.17], [-2935.53, -573.72], [-2922.65, -560.08], [-2884.61, -524.02], [-2875.05, -512.36], [-2871.78, -504.28], [-2871.34, -502.57], [-2870.79, -500.52], [-2870.31, -496.69], [-2870.34, -492.82], [-2870.86, -489.13], [-2871.84, -485.55], [-2873.28, -482.14], [-2875.63, -478.22], [-2878.4, -474.54], [-2882.34, -470.43], [-2886.77, -466.88], [-2891.64, -463.92], [-2898.82, -460.68], [-2906.33, -458.18], [-2914.07, -456.48], [-2919.97, -455.73], [-2925.93, -455.45], [-2933.72, -455.74], [-2947.81, -456.7], [-2958.58, -457.03], [-3001.56, -493.76], [-3009.2, -499.87], [-3013.81, -503.04], [-3021.27, -509.45], [-3029.51, -519.21], [-3030.72, -521.52], [-3035.37, -530.41], [-3039.42, -542.73], [-3041.21, -553.55], [-3041.24, -565.29]], [[-2993.5, -632.41], [-2993.81, -625.9], [-2994.02, -621.35], [-2995.79, -621.39], [-3011.36, -620.42], [-3011.05, -620.72], [-3007.38, -622.95], [-3001.62, -626.45], [-2993.5, -632.41]], [[-2999.51, -379.54], [-2990.32, -379.13], [-2971.84, -379.66], [-2959.72, -381.14], [-2949.47, -383.25], [-2937.11, -386.54], [-2920.03, -391.98], [-2908.24, -396.99], [-2902.75, -400.07], [-2901.27, -401.11], [-2893.66, -406.52], [-2888.13, -403.62], [-2858.43, -391.28], [-2835.47, -382.76], [-2836.16, -378.96], [-2838.52, -362.82], [-2848.76, -299.16], [-2849.33, -295.35], [-2854.06, -296.04], [-2983.9, -316.42], [-2988.1, -317.1], [-2987.84, -320.34], [-2987.55, -323.95], [-2989.01, -328.3], [-2993.99, -336.68], [-3002.23, -344.5], [-3015.64, -358.7], [-3026.22, -375.08], [-3027.52, -378.21], [-3029.53, -382.99], [-2999.51, -379.54]], [[-2647.82, -721.32], [-2643.53, -721.41], [-2643.26, -716.04], [-2641.09, -641.12], [-2640.97, -636.06], [-2645.17, -635.88], [-2775.71, -630.13], [-2780.36, -629.92], [-2780.52, -635.37], [-2782.32, -710.36], [-2782.61, -715.47], [-2778.11, -715.69], [-2647.82, -721.32]], [[-2566.9, -724.73], [-2560.86, -724.77], [-2560.66, -718.57], [-2555.35, -551.76], [-2555.11, -547.52], [-2561.67, -546.72], [-2626.72, -544.87], [-2630.55, -544.71], [-2630.67, -550.01], [-2632.43, -625.11], [-2632.68, -633.35], [-2632.86, -641.34], [-2635.04, -716.36], [-2635.3, -721.68], [-2631.4, -721.85], [-2566.9, -724.73]], [[-2798.3, -1069.54], [-2797.01, -1069.54], [-2793.74, -1070.08], [-2777.83, -1074.06], [-2770.97, -1077.86], [-2762.06, -1070.9], [-2718.59, -1033.52], [-2705.26, -1022.21], [-2701.49, -1018.66], [-2704.97, -1014.84], [-2707.14, -1012.64], [-2708.87, -1010.84], [-2710.28, -1007.99], [-2710.53, -1003.0], [-2709.77, -983.2], [-2709.58, -972.05], [-2714.01, -971.98], [-2793.78, -970.77], [-2795.42, -970.74], [-2797.86, -970.71], [-2798.36, -1004.23], [-2798.43, -1012.42], [-2798.64, -1028.23], [-2798.6, -1033.28], [-2799.59, -1063.75], [-2799.09, -1066.76], [-2798.3, -1069.54]], [[-2731.92, -1114.22], [-2706.62, -1144.01], [-2702.75, -1148.27], [-2697.64, -1143.98], [-2694.79, -1141.69], [-2603.98, -1064.82], [-2599.39, -1061.1], [-2603.67, -1055.97], [-2605.1, -1054.34], [-2628.34, -1026.61], [-2635.78, -1018.03], [-2653.19, -997.82], [-2654.16, -996.7], [-2658.57, -992.11], [-2663.43, -995.71], [-2671.32, -1002.38], [-2694.63, -1021.81], [-2700.59, -1027.43], [-2714.04, -1038.84], [-2757.62, -1076.31], [-2764.46, -1081.66], [-2758.68, -1085.13], [-2731.92, -1114.22]], [[-2650.33, -1228.33], [-2645.64, -1224.29], [-2647.78, -1221.76], [-2674.79, -1189.89], [-2699.4, -1161.42], [-2703.38, -1156.68], [-2707.74, -1160.42], [-2710.62, -1162.87], [-2791.56, -1230.89], [-2793.65, -1232.61], [-2797.88, -1236.23], [-2793.55, -1241.41], [-2769.15, -1270.64], [-2741.65, -1301.02], [-2739.02, -1303.92], [-2735.88, -1301.08], [-2652.81, -1230.43], [-2650.33, -1228.33]], [[-2585.35, -1295.48], [-2611.1, -1265.07], [-2635.59, -1236.15], [-2641.76, -1228.87], [-2646.43, -1232.89], [-2648.92, -1235.0], [-2731.92, -1305.58], [-2735.08, -1308.45], [-2729.68, -1314.95], [-2705.06, -1344.56], [-2679.89, -1375.82], [-2676.25, -1380.33], [-2671.95, -1376.68], [-2588.25, -1305.63], [-2586.19, -1303.88], [-2581.57, -1299.95], [-2585.35, -1295.48]], [[-2526.1, -1379.76], [-2523.51, -1377.54], [-2519.21, -1373.57], [-2522.84, -1369.33], [-2548.4, -1339.21], [-2573.67, -1309.42], [-2577.71, -1304.55], [-2582.31, -1308.46], [-2584.37, -1310.2], [-2668.07, -1381.26], [-2672.47, -1384.99], [-2668.49, -1389.83], [-2642.22, -1420.12], [-2617.62, -1449.71], [-2613.89, -1454.19], [-2609.65, -1450.62], [-2576.68, -1422.82], [-2559.49, -1408.54], [-2526.1, -1379.76]], [[-2636.88, -1216.99], [-2634.24, -1214.81], [-2542.08, -1138.77], [-2536.77, -1134.48], [-2540.44, -1130.27], [-2566.18, -1100.36], [-2589.62, -1072.83], [-2592.13, -1069.87], [-2595.56, -1065.72], [-2600.15, -1069.44], [-2690.98, -1146.31], [-2693.83, -1148.61], [-2698.81, -1152.79], [-2694.83, -1157.53], [-2670.23, -1185.98], [-2643.21, -1217.88], [-2641.05, -1220.42], [-2636.88, -1216.99]], [[-2795.33, -964.75], [-2793.69, -964.77], [-2713.92, -965.98], [-2709.43, -966.05], [-2709.11, -955.36], [-2708.82, -947.45], [-2707.97, -937.12], [-2701.99, -937.61], [-2702.83, -947.81], [-2703.11, -955.56], [-2703.53, -969.17], [-2703.77, -983.36], [-2704.52, -1002.97], [-2704.35, -1006.44], [-2703.9, -1007.36], [-2702.84, -1008.46], [-2700.62, -1010.71], [-2697.0, -1014.67], [-2675.82, -997.02], [-2667.78, -990.22], [-2660.85, -985.09], [-2654.32, -978.76], [-2644.48, -969.85], [-2591.91, -924.94], [-2586.82, -920.41], [-2576.91, -912.01], [-2569.77, -906.1], [-2561.22, -897.31], [-2565.92, -891.61], [-2565.86, -886.5], [-2565.51, -857.81], [-2565.06, -848.19], [-2564.9, -828.85], [-2564.1, -823.9], [-2568.84, -823.69], [-2591.97, -822.68], [-2642.69, -820.45], [-2642.54, -816.95], [-2642.7, -820.45], [-2651.14, -820.07], [-2780.51, -814.39], [-2791.16, -813.93], [-2794.51, -819.46], [-2795.56, -870.09], [-2795.97, -902.98], [-2796.47, -921.27], [-2797.14, -946.24], [-2797.72, -964.71], [-2795.33, -964.75]], [[-2643.79, -732.48], [-2643.72, -727.41], [-2648.01, -727.32], [-2778.38, -721.68], [-2782.91, -721.47], [-2783.12, -726.52], [-2784.41, -761.24], [-2785.2, -802.32], [-2787.55, -807.08], [-2780.21, -807.39], [-2650.83, -813.08], [-2646.62, -813.27], [-2646.57, -806.52], [-2643.79, -732.48]], [[-2562.07, -761.51], [-2561.22, -734.45], [-2561.08, -730.77], [-2567.06, -730.73], [-2631.67, -727.85], [-2635.49, -727.68], [-2635.56, -732.69], [-2638.34, -806.71], [-2638.4, -813.63], [-2591.67, -815.68], [-2568.54, -816.69], [-2563.89, -816.9], [-2563.69, -810.79], [-2562.07, -761.51]], [[-2732.9, -258.13], [-2733.38, -275.29], [-2733.53, -280.01], [-2728.83, -280.22], [-2726.64, -280.31], [-2637.86, -284.0], [-2635.25, -284.1], [-2630.93, -284.28], [-2630.92, -283.78], [-2630.77, -279.05], [-2629.84, -249.89], [-2629.44, -237.42], [-2628.86, -217.58], [-2628.55, -206.67], [-2628.48, -204.19], [-2628.4, -200.0], [-2632.72, -199.84], [-2669.51, -198.6], [-2699.4, -197.61], [-2706.97, -192.53], [-2707.04, -195.7], [-2723.22, -195.31], [-2730.5, -195.13], [-2730.63, -200.08], [-2730.67, -201.14], [-2731.79, -231.25], [-2732.38, -247.2], [-2732.68, -253.21], [-2732.9, -258.13]], [[-2550.17, -198.99], [-2544.23, -199.69], [-2544.02, -195.5], [-2550.36, -195.39], [-2565.01, -194.96], [-2574.59, -195.17], [-2583.63, -195.24], [-2597.25, -194.93], [-2616.84, -194.2], [-2620.0, -194.1], [-2620.03, -195.03], [-2616.65, -195.13], [-2600.28, -195.86], [-2583.69, -196.47], [-2562.96, -197.95], [-2554.66, -198.62], [-2550.17, -198.99]], [[-2764.14, -460.8], [-2753.22, -458.97], [-2736.2, -453.92], [-2721.96, -447.01], [-2709.81, -438.13], [-2700.75, -428.81], [-2686.79, -416.62], [-2680.21, -411.57], [-2673.1, -406.9], [-2661.51, -401.76], [-2643.58, -394.79], [-2638.23, -393.97], [-2634.27, -394.28], [-2634.13, -388.97], [-2633.58, -367.4], [-2631.29, -295.53], [-2631.12, -290.28], [-2635.5, -290.1], [-2638.11, -289.99], [-2726.9, -286.31], [-2729.09, -286.21], [-2733.81, -286.01], [-2734.15, -291.61], [-2736.41, -328.4], [-2738.61, -339.32], [-2743.28, -349.68], [-2749.11, -356.46], [-2757.83, -362.73], [-2774.42, -372.51], [-2774.31, -378.5], [-2773.87, -401.26], [-2774.07, -453.54], [-2774.21, -455.22], [-2774.74, -461.16], [-2770.59, -461.02], [-2764.14, -460.8]], [[-2550.87, -205.95], [-2555.23, -205.6], [-2563.49, -204.93], [-2584.07, -203.46], [-2600.56, -202.85], [-2616.91, -202.13], [-2620.21, -202.03], [-2620.25, -204.39], [-2620.32, -206.91], [-2620.64, -217.81], [-2621.22, -237.66], [-2621.61, -250.15], [-2622.54, -279.31], [-2622.69, -284.04], [-2622.8, -287.58], [-2626.92, -287.46], [-2622.8, -287.59], [-2623.06, -295.79], [-2625.35, -367.64], [-2625.91, -389.18], [-2626.05, -394.71], [-2621.49, -394.84], [-2556.17, -396.6], [-2550.11, -396.8], [-2549.97, -391.98], [-2545.67, -245.7], [-2544.64, -210.86], [-2544.51, -206.7], [-2550.87, -205.95]], [[-2642.02, -400.62], [-2659.2, -407.3], [-2670.22, -412.18], [-2676.73, -416.46], [-2682.99, -421.26], [-2696.62, -433.17], [-2705.86, -442.67], [-2718.85, -452.18], [-2734.03, -459.54], [-2751.86, -464.82], [-2763.54, -466.79], [-2770.39, -467.01], [-2775.28, -467.18], [-2776.11, -476.29], [-2776.82, -533.03], [-2772.89, -533.18], [-2642.09, -538.24], [-2638.61, -538.37], [-2638.47, -533.48], [-2634.59, -405.64], [-2634.44, -400.28], [-2638.01, -400.01], [-2642.02, -400.62]], [[-2556.35, -402.59], [-2621.65, -400.83], [-2626.22, -400.71], [-2626.36, -405.88], [-2630.24, -533.73], [-2630.39, -538.71], [-2626.51, -538.87], [-2561.22, -540.73], [-2554.88, -541.5], [-2554.75, -536.06], [-2552.41, -456.72], [-2550.96, -408.66], [-2550.78, -402.78], [-2556.35, -402.59]], [[-2638.77, -544.37], [-2642.33, -544.23], [-2773.12, -539.17], [-2776.93, -539.03], [-2777.9, -578.01], [-2780.04, -618.91], [-2780.18, -623.92], [-2775.45, -624.14], [-2644.91, -629.89], [-2640.81, -630.07], [-2640.66, -624.89], [-2638.9, -549.82], [-2638.77, -544.37]], [[-2628.23, -193.85], [-2632.68, -193.72], [-2678.32, -191.72], [-2698.57, -190.89], [-2702.25, -191.48], [-2698.28, -194.14], [-2669.4, -195.11], [-2632.6, -196.34], [-2628.32, -196.5], [-2628.23, -193.85]], [[-2573.91, 136.39], [-2580.95, 136.59], [-2685.07, 140.83], [-2692.02, 140.96], [-2692.18, 135.03], [-2694.46, 83.34], [-2694.09, 76.46], [-2693.11, 68.71], [-2691.95, 63.99], [-2689.28, 56.58], [-2682.94, 42.72], [-2677.1, 31.85], [-2676.74, 31.19], [-2673.82, 25.79], [-2668.95, 18.57], [-2662.85, 12.85], [-2656.4, 9.12], [-2652.32, 7.51], [-2645.42, 5.91], [-2623.28, 4.68], [-2593.14, 2.38], [-2558.94, -0.2], [-2450.78, -4.18], [-2444.79, -4.38], [-2443.25, -4.45], [-2442.97, 0.96], [-2437.12, 115.26], [-2436.98, 119.4], [-2436.78, 125.76], [-2436.63, 130.54], [-2443.51, 131.0], [-2462.57, 131.79], [-2573.91, 136.39]], [[-3035.88, 63.24], [-3036.27, 57.64], [-3036.38, 56.55], [-2985.69, 54.67], [-2961.4, 53.49], [-2943.29, 53.21], [-2943.35, 49.71], [-2943.2, 53.21], [-2897.6, 51.31], [-2859.72, 49.18], [-2828.53, 47.45], [-2793.19, 45.41], [-2761.58, 43.69], [-2748.21, 43.57], [-2738.83, 44.47], [-2731.39, 46.06], [-2721.79, 48.9], [-2712.17, 52.37], [-2702.73, 55.43], [-2697.02, 57.41], [-2698.66, 61.96], [-2700.01, 67.43], [-2701.07, 75.83], [-2701.47, 83.31], [-2699.17, 135.28], [-2699.02, 141.16], [-2705.76, 141.4], [-2743.61, 142.98], [-2894.8, 149.31], [-2897.16, 149.41], [-2902.25, 149.63], [-3032.98, 154.63], [-3033.15, 149.21], [-3035.8, 65.81], [-3035.88, 63.24]], [[-2939.96, 46.07], [-2940.08, 42.36], [-2940.45, 32.51], [-2941.26, 11.04], [-2941.45, 6.04], [-2941.88, -2.07], [-2942.04, -5.17], [-2911.99, -6.61], [-2888.4, -7.91], [-2865.37, -7.59], [-2815.91, -8.5], [-2811.95, -6.55], [-2810.49, -5.27], [-2806.81, -2.33], [-2807.24, -1.63], [-2808.2, 2.17], [-2807.98, 6.07], [-2806.62, 9.72], [-2804.24, 12.82], [-2801.04, 15.09], [-2797.32, 16.3], [-2796.84, 16.31], [-2796.97, 27.03], [-2796.63, 33.92], [-2796.49, 38.59], [-2828.92, 40.46], [-2860.11, 42.19], [-2897.94, 44.32], [-2939.96, 46.07]], [[-2794.18, 10.35], [-2796.32, 10.31], [-2798.32, 9.67], [-2800.03, 8.45], [-2801.31, 6.79], [-2802.04, 4.83], [-2802.15, 2.74], [-2801.64, 0.72], [-2800.57, -1.06], [-2798.81, -2.56], [-2796.67, -3.42], [-2794.37, -3.55], [-2792.16, -2.93], [-2790.27, -1.62], [-2788.9, 0.21], [-2788.18, 2.43], [-2788.15, 4.22], [-2788.61, 6.0], [-2789.51, 7.62], [-2790.81, 8.93], [-2792.42, 9.87], [-2794.18, 10.35]], [[-2438.46, -1459.23], [-2436.44, -1459.99], [-2435.37, -1460.16], [-2427.38, -1460.1], [-2423.0, -1460.4], [-2384.93, -1464.93], [-2369.62, -1465.38], [-2326.77, -1466.63], [-2326.55, -1459.02], [-2326.44, -1455.11], [-2324.69, -1394.6], [-2328.53, -1394.52], [-2342.35, -1392.07], [-2350.41, -1389.9], [-2360.29, -1386.6], [-2367.07, -1382.93], [-2373.11, -1377.53], [-2376.76, -1373.4], [-2380.98, -1367.23], [-2384.07, -1360.26], [-2384.8, -1357.53], [-2385.94, -1353.28], [-2386.07, -1349.41], [-2441.77, -1347.91], [-2447.87, -1347.72], [-2447.9, -1355.06], [-2448.03, -1358.59], [-2449.69, -1405.0], [-2450.88, -1424.63], [-2453.89, -1427.73], [-2456.14, -1430.05], [-2460.56, -1434.6], [-2451.62, -1445.53], [-2442.52, -1456.84], [-2438.46, -1459.23]], [[-2320.77, -1466.78], [-2186.14, -1469.68], [-2179.66, -1469.97], [-2179.32, -1462.03], [-2177.88, -1427.51], [-2177.41, -1412.77], [-2176.2, -1363.5], [-2176.14, -1361.32], [-2178.59, -1359.84], [-2180.48, -1357.67], [-2181.51, -1355.26], [-2182.18, -1355.25], [-2185.4, -1355.2], [-2263.33, -1352.78], [-2265.16, -1352.77], [-2265.47, -1356.43], [-2267.27, -1362.17], [-2270.99, -1370.04], [-2277.69, -1378.21], [-2284.96, -1384.11], [-2291.26, -1387.52], [-2298.94, -1390.79], [-2307.61, -1393.07], [-2316.26, -1394.19], [-2318.69, -1394.41], [-2320.44, -1455.28], [-2320.56, -1459.19], [-2320.77, -1466.78]], [[-2171.88, -1427.73], [-2173.33, -1462.29], [-2173.66, -1470.18], [-2167.45, -1470.35], [-2149.19, -1470.86], [-2115.08, -1471.81], [-2032.97, -1473.58], [-2032.95, -1466.07], [-2030.97, -1367.75], [-2030.96, -1367.14], [-2030.82, -1359.37], [-2035.91, -1359.23], [-2162.19, -1355.83], [-2163.78, -1355.79], [-2163.79, -1355.79], [-2165.22, -1358.43], [-2167.47, -1360.51], [-2170.15, -1361.69], [-2170.2, -1363.65], [-2171.41, -1412.94], [-2171.88, -1427.73]], [[-2419.86, -1489.83], [-2401.11, -1495.32], [-2371.61, -1502.61], [-2356.76, -1506.94], [-2322.96, -1526.91], [-2296.61, -1544.17], [-2293.18, -1547.35], [-2279.79, -1559.75], [-2270.91, -1567.23], [-2266.29, -1571.12], [-2256.03, -1581.87], [-2244.93, -1593.77], [-2244.02, -1594.97], [-2233.4, -1607.03], [-2224.41, -1619.25], [-2216.29, -1631.5], [-2209.1, -1644.32], [-2199.34, -1663.3], [-2197.33, -1671.19], [-2193.37, -1689.79], [-2191.45, -1694.61], [-2190.18, -1693.65], [-2188.2, -1691.21], [-2187.06, -1686.96], [-2186.17, -1680.23], [-2185.68, -1671.63], [-2180.51, -1487.38], [-2180.29, -1483.11], [-2179.93, -1475.96], [-2186.33, -1475.68], [-2323.92, -1472.71], [-2323.86, -1469.71], [-2323.95, -1472.71], [-2385.08, -1470.93], [-2416.45, -1473.25], [-2423.82, -1473.66], [-2428.91, -1473.3], [-2432.85, -1472.65], [-2435.41, -1471.97], [-2437.66, -1471.06], [-2441.14, -1469.32], [-2442.69, -1467.98], [-2444.24, -1466.0], [-2444.95, -1464.69], [-2447.15, -1467.61], [-2448.55, -1470.83], [-2448.79, -1472.59], [-2448.24, -1476.1], [-2447.11, -1478.37], [-2444.0, -1481.44], [-2437.74, -1484.19], [-2419.86, -1489.83]], [[-2428.21, -1467.33], [-2423.77, -1467.65], [-2416.84, -1467.26], [-2416.38, -1467.23], [-2423.57, -1466.37], [-2427.56, -1466.1], [-2433.8, -1466.15], [-2433.51, -1466.27], [-2431.6, -1466.77], [-2428.21, -1467.33]], [[-2147.49, -562.02], [-2148.02, -564.83], [-2148.86, -568.41], [-2149.97, -571.85], [-2151.14, -574.83], [-2152.15, -577.26], [-2153.48, -579.52], [-2150.59, -580.67], [-2149.57, -583.3], [-2148.7, -587.92], [-2148.87, -594.79], [-2149.99, -598.95], [-2151.82, -602.11], [-2150.56, -602.17], [-2151.33, -617.64], [-2151.47, -624.76], [-2144.75, -625.16], [-2141.51, -625.32], [-2113.51, -626.71], [-2093.56, -627.69], [-2078.91, -628.43], [-2077.55, -628.5], [-2057.82, -629.48], [-2055.16, -629.61], [-2029.3, -630.89], [-2022.87, -631.21], [-2022.74, -625.12], [-2022.2, -599.88], [-2021.7, -576.84], [-2021.28, -557.49], [-2020.76, -533.46], [-2020.7, -530.45], [-2020.63, -527.19], [-2019.69, -483.65], [-2019.58, -478.7], [-2025.8, -478.41], [-2055.08, -476.97], [-2070.95, -476.18], [-2075.62, -475.96], [-2141.7, -472.62], [-2145.53, -472.22], [-2145.55, -476.79], [-2145.99, -545.52], [-2142.5, -545.73], [-2140.41, -545.79], [-2130.41, -546.1], [-2119.43, -546.4], [-2102.06, -547.04], [-2097.17, -547.23], [-2080.37, -547.86], [-2080.59, -553.85], [-2097.4, -553.23], [-2102.29, -553.04], [-2119.62, -552.4], [-2130.59, -552.09], [-2140.59, -551.78], [-2142.76, -551.72], [-2146.18, -551.52], [-2146.31, -553.4], [-2146.55, -556.05], [-2147.0, -559.24], [-2147.49, -562.02]], [[-2152.86, -594.21], [-2152.71, -588.25], [-2153.43, -584.4], [-2153.69, -583.74], [-2157.2, -582.35], [-2156.21, -588.3], [-2154.0, -594.09], [-2153.41, -596.25], [-2152.86, -594.21]], [[-2160.89, -584.52], [-2161.7, -585.16], [-2226.53, -637.09], [-2259.49, -662.82], [-2294.85, -690.42], [-2327.77, -716.12], [-2346.29, -730.57], [-2352.88, -735.71], [-2375.56, -753.42], [-2383.2, -759.39], [-2387.2, -762.5], [-2439.99, -803.71], [-2439.35, -804.47], [-2447.81, -811.6], [-2453.24, -816.4], [-2409.47, -818.44], [-2395.72, -819.17], [-2386.66, -819.6], [-2338.73, -821.74], [-2330.76, -822.07], [-2324.16, -822.36], [-2298.0, -823.67], [-2264.2, -825.07], [-2196.25, -827.89], [-2168.12, -828.94], [-2162.17, -829.28], [-2162.2, -826.97], [-2161.2, -792.83], [-2161.12, -788.93], [-2161.03, -784.46], [-2161.58, -776.58], [-2161.77, -770.25], [-2161.89, -762.77], [-2161.58, -751.36], [-2160.41, -731.92], [-2160.19, -726.57], [-2160.79, -709.96], [-2159.59, -664.51], [-2158.99, -639.94], [-2158.83, -635.42], [-2158.53, -627.45], [-2158.32, -617.4], [-2157.56, -601.83], [-2156.14, -601.9], [-2156.88, -598.68], [-2157.81, -595.34], [-2160.09, -589.35], [-2160.89, -584.52]], [[-2153.78, -709.93], [-2153.18, -726.59], [-2153.41, -732.27], [-2154.58, -751.67], [-2154.89, -762.81], [-2154.77, -770.09], [-2154.59, -776.23], [-2154.02, -784.29], [-2154.12, -789.08], [-2154.2, -793.01], [-2155.2, -827.03], [-2155.17, -829.6], [-2149.98, -829.77], [-2116.53, -832.35], [-2111.44, -832.58], [-2091.56, -833.5], [-2069.14, -834.53], [-2063.55, -834.79], [-2033.14, -836.2], [-2027.22, -836.47], [-2027.18, -834.53], [-2027.13, -831.88], [-2026.85, -818.75], [-2026.59, -806.66], [-2026.42, -798.64], [-2026.17, -786.76], [-2025.66, -762.48], [-2025.02, -732.74], [-2024.2, -693.82], [-2024.08, -688.41], [-2023.72, -671.18], [-2023.64, -667.65], [-2023.11, -642.21], [-2023.0, -637.22], [-2029.6, -636.89], [-2055.45, -635.6], [-2058.11, -635.47], [-2077.86, -634.49], [-2079.22, -634.42], [-2093.86, -633.69], [-2113.8, -632.7], [-2141.8, -631.31], [-2145.07, -631.15], [-2151.65, -630.76], [-2151.84, -635.67], [-2151.99, -640.14], [-2152.6, -664.69], [-2153.78, -709.93]], [[-2156.29, -873.95], [-2156.59, -880.91], [-2157.21, -911.87], [-2151.72, -912.12], [-2118.15, -912.87], [-2067.83, -914.83], [-2032.0, -915.89], [-2026.0, -916.07], [-2026.61, -889.3], [-2026.67, -885.09], [-2027.34, -863.42], [-2027.57, -856.02], [-2027.66, -853.02], [-2027.58, -850.47], [-2033.78, -850.18], [-2064.2, -848.78], [-2069.78, -848.52], [-2092.2, -847.48], [-2112.08, -846.57], [-2117.38, -846.32], [-2150.75, -843.76], [-2155.68, -843.59], [-2155.71, -845.48], [-2156.14, -866.3], [-2156.16, -867.29], [-2156.29, -873.95]], [[-2154.08, -986.52], [-2030.21, -990.0], [-2024.04, -990.16], [-2024.04, -985.34], [-2025.84, -922.08], [-2032.18, -921.89], [-2068.04, -920.82], [-2118.33, -918.87], [-2151.92, -918.11], [-2157.37, -917.86], [-2158.76, -961.01], [-2159.02, -981.25], [-2159.09, -986.4], [-2154.08, -986.52]], [[-2160.64, -1046.18], [-2155.97, -1046.3], [-2065.74, -1048.54], [-2028.36, -1049.95], [-2023.37, -1050.14], [-2023.57, -1036.04], [-2023.94, -1001.4], [-2024.0, -996.16], [-2030.37, -996.0], [-2154.24, -992.52], [-2159.21, -992.39], [-2159.36, -997.71], [-2160.34, -1034.88], [-2160.58, -1043.99], [-2160.64, -1046.18]], [[-2029.43, -1111.36], [-2024.03, -1111.5], [-2023.94, -1103.43], [-2023.63, -1077.92], [-2023.36, -1056.14], [-2028.58, -1055.94], [-2065.93, -1054.54], [-2156.11, -1052.29], [-2160.85, -1052.18], [-2162.93, -1099.89], [-2163.03, -1107.7], [-2157.53, -1107.85], [-2029.43, -1111.36]], [[-2165.65, -1228.38], [-2159.77, -1228.52], [-2157.76, -1228.57], [-2032.59, -1231.77], [-2027.26, -1231.91], [-2027.1, -1224.16], [-2026.09, -1174.92], [-2024.45, -1125.73], [-2024.17, -1117.5], [-2029.59, -1117.36], [-2157.69, -1113.85], [-2163.15, -1113.7], [-2163.35, -1121.57], [-2164.62, -1170.99], [-2165.51, -1220.35], [-2165.65, -1228.38]], [[-2169.62, -1343.98], [-2167.22, -1345.15], [-2165.11, -1347.21], [-2163.77, -1349.78], [-2163.61, -1349.79], [-2162.02, -1349.83], [-2035.75, -1353.24], [-2030.68, -1353.38], [-2030.47, -1345.12], [-2029.17, -1295.04], [-2027.68, -1246.57], [-2027.41, -1237.91], [-2032.75, -1237.76], [-2157.91, -1234.57], [-2159.91, -1234.52], [-2165.81, -1234.38], [-2166.07, -1242.38], [-2167.75, -1292.28], [-2169.54, -1341.68], [-2169.62, -1343.98]], [[-2475.52, -817.78], [-2480.09, -817.4], [-2494.07, -816.23], [-2497.92, -818.8], [-2500.13, -820.06], [-2502.83, -820.83], [-2506.2, -821.03], [-2509.16, -821.25], [-2515.76, -822.4], [-2491.5, -823.34], [-2484.97, -823.55], [-2476.46, -822.08], [-2471.74, -821.27], [-2475.52, -817.78]], [[-2508.68, -864.97], [-2514.06, -869.67], [-2514.12, -869.72], [-2511.58, -872.6], [-2509.73, -874.7], [-2492.24, -894.55], [-2484.69, -903.13], [-2459.42, -933.25], [-2455.65, -937.4], [-2450.26, -932.83], [-2343.22, -840.62], [-2342.3, -837.88], [-2342.23, -835.59], [-2387.31, -833.59], [-2396.43, -833.15], [-2410.16, -832.42], [-2454.89, -830.34], [-2454.56, -823.35], [-2454.78, -826.84], [-2466.21, -826.14], [-2476.22, -834.61], [-2495.21, -850.41], [-2496.08, -849.36], [-2501.37, -858.69], [-2508.68, -864.97]], [[-2457.09, -819.69], [-2454.4, -819.85], [-2454.28, -817.3], [-2457.09, -819.69]], [[-2338.8, -1093.48], [-2336.75, -1091.75], [-2332.61, -1088.25], [-2336.81, -1083.21], [-2362.06, -1052.89], [-2387.34, -1022.72], [-2391.15, -1018.17], [-2396.42, -1022.67], [-2401.07, -1026.63], [-2523.62, -1131.07], [-2528.27, -1135.16], [-2523.47, -1140.8], [-2498.48, -1170.14], [-2473.75, -1200.5], [-2470.22, -1204.82], [-2465.61, -1200.92], [-2338.8, -1093.48]], [[-2448.17, -1220.8], [-2438.38, -1221.03], [-2326.43, -1223.68], [-2320.59, -1223.82], [-2320.48, -1216.99], [-2320.44, -1215.07], [-2319.99, -1186.38], [-2319.19, -1136.67], [-2318.43, -1124.75], [-2317.5, -1117.41], [-2315.37, -1107.21], [-2316.51, -1106.7], [-2320.33, -1101.81], [-2324.92, -1096.97], [-2328.69, -1092.78], [-2332.87, -1096.33], [-2334.92, -1098.06], [-2461.73, -1205.49], [-2466.35, -1209.41], [-2462.22, -1214.14], [-2457.33, -1219.25], [-2456.3, -1219.98], [-2455.31, -1220.32], [-2454.51, -1220.49], [-2448.17, -1220.8]], [[-2314.59, -1223.98], [-2308.61, -1224.16], [-2181.94, -1227.91], [-2177.83, -1228.03], [-2171.65, -1228.21], [-2171.51, -1220.24], [-2170.62, -1170.86], [-2169.35, -1121.41], [-2169.15, -1113.56], [-2175.49, -1113.46], [-2241.54, -1111.46], [-2298.17, -1109.75], [-2305.3, -1109.54], [-2309.29, -1109.42], [-2309.68, -1109.3], [-2311.58, -1118.4], [-2312.45, -1125.31], [-2313.19, -1136.91], [-2313.99, -1186.48], [-2314.45, -1215.16], [-2314.48, -1217.08], [-2314.59, -1223.98]], [[-2382.16, -1332.89], [-2380.38, -1329.18], [-2375.06, -1320.76], [-2371.16, -1316.14], [-2364.96, -1311.46], [-2356.78, -1307.71], [-2347.79, -1304.53], [-2340.66, -1302.65], [-2328.86, -1301.34], [-2323.15, -1301.77], [-2323.11, -1300.18], [-2322.77, -1287.16], [-2321.04, -1237.94], [-2320.91, -1234.27], [-2320.75, -1229.82], [-2326.58, -1229.68], [-2438.52, -1227.03], [-2445.28, -1226.87], [-2445.29, -1236.89], [-2445.32, -1256.85], [-2446.05, -1284.61], [-2447.42, -1320.22], [-2447.74, -1338.23], [-2447.81, -1341.71], [-2441.59, -1341.91], [-2385.68, -1343.42], [-2385.21, -1340.75], [-2383.21, -1335.08], [-2382.16, -1332.89]], [[-2363.59, -1377.99], [-2357.89, -1381.08], [-2348.68, -1384.15], [-2341.04, -1386.21], [-2327.94, -1388.53], [-2321.71, -1388.66], [-2316.92, -1388.22], [-2308.77, -1387.16], [-2300.88, -1385.09], [-2293.86, -1382.11], [-2288.31, -1379.1], [-2281.94, -1373.93], [-2276.09, -1366.81], [-2272.87, -1359.98], [-2271.39, -1355.27], [-2270.94, -1349.74], [-2271.53, -1342.37], [-2272.15, -1340.31], [-2273.25, -1336.71], [-2275.76, -1330.87], [-2278.37, -1326.69], [-2281.29, -1323.37], [-2284.72, -1320.2], [-2288.29, -1317.35], [-2294.18, -1314.51], [-2298.95, -1312.89], [-2306.42, -1310.56], [-2312.02, -1309.34], [-2315.44, -1308.59], [-2320.53, -1307.98], [-2328.76, -1307.36], [-2339.56, -1308.56], [-2346.02, -1310.27], [-2354.53, -1313.27], [-2361.87, -1316.64], [-2367.01, -1320.52], [-2370.21, -1324.32], [-2375.12, -1332.1], [-2376.75, -1335.49], [-2377.66, -1337.38], [-2379.39, -1342.28], [-2380.17, -1346.7], [-2379.96, -1352.38], [-2379.0, -1355.98], [-2378.39, -1358.26], [-2375.72, -1364.3], [-2372.02, -1369.7], [-2368.85, -1373.29], [-2363.59, -1377.99]], [[-2175.62, -1343.99], [-2175.53, -1341.47], [-2173.75, -1292.07], [-2172.06, -1242.19], [-2171.8, -1234.21], [-2178.01, -1234.03], [-2182.12, -1233.91], [-2308.79, -1230.16], [-2314.75, -1229.98], [-2314.91, -1234.48], [-2315.04, -1238.15], [-2316.77, -1287.34], [-2317.11, -1300.34], [-2317.17, -1302.34], [-2314.45, -1302.66], [-2310.73, -1303.48], [-2304.89, -1304.76], [-2297.1, -1307.18], [-2291.9, -1308.94], [-2285.08, -1312.24], [-2280.81, -1315.64], [-2276.99, -1319.17], [-2273.54, -1323.1], [-2270.42, -1328.07], [-2267.61, -1334.65], [-2266.42, -1338.56], [-2265.6, -1341.24], [-2265.16, -1346.77], [-2263.22, -1346.78], [-2185.26, -1349.2], [-2182.05, -1349.25], [-2181.18, -1349.27], [-2179.94, -1347.06], [-2177.94, -1345.16], [-2175.62, -1343.99]], [[-2504.01, -1368.66], [-2506.18, -1370.48], [-2510.82, -1374.24], [-2506.79, -1379.16], [-2475.26, -1416.89], [-2464.4, -1429.94], [-2460.44, -1425.87], [-2458.2, -1423.56], [-2456.74, -1422.05], [-2455.68, -1404.71], [-2454.02, -1358.38], [-2453.9, -1354.94], [-2453.87, -1347.53], [-2477.8, -1346.84], [-2504.01, -1368.66]], [[-2170.02, -1354.7], [-2169.52, -1353.77], [-2169.35, -1352.72], [-2169.52, -1351.73], [-2169.99, -1350.83], [-2170.72, -1350.12], [-2171.63, -1349.68], [-2172.67, -1349.53], [-2173.6, -1349.69], [-2174.45, -1350.12], [-2175.15, -1350.78], [-2175.61, -1351.61], [-2175.81, -1352.53], [-2175.72, -1353.53], [-2175.33, -1354.44], [-2174.68, -1355.19], [-2173.82, -1355.71], [-2172.85, -1355.94], [-2171.78, -1355.85], [-2170.81, -1355.42], [-2170.02, -1354.7]], [[-2470.84, -1341.04], [-2453.81, -1341.53], [-2453.74, -1338.12], [-2453.54, -1326.63], [-2467.74, -1338.46], [-2470.84, -1341.04]], [[-2247.61, -886.73], [-2217.96, -861.75], [-2199.84, -844.88], [-2199.79, -844.03], [-2199.72, -841.76], [-2264.78, -839.06], [-2298.65, -837.66], [-2324.82, -836.34], [-2331.35, -836.05], [-2336.23, -835.85], [-2336.32, -838.95], [-2338.06, -844.09], [-2446.36, -937.39], [-2450.69, -941.06], [-2446.23, -946.1], [-2420.63, -975.05], [-2394.53, -1005.06], [-2390.49, -1009.71], [-2386.69, -1006.44], [-2381.75, -1002.19], [-2247.61, -886.73]], [[-2184.05, -961.37], [-2181.35, -959.75], [-2179.38, -958.96], [-2177.51, -958.31], [-2174.74, -957.91], [-2171.77, -957.53], [-2167.81, -957.56], [-2164.66, -957.76], [-2163.26, -914.65], [-2162.58, -880.72], [-2162.29, -873.76], [-2162.16, -867.17], [-2162.14, -866.17], [-2161.71, -845.38], [-2161.68, -843.33], [-2168.78, -842.93], [-2193.73, -841.99], [-2193.79, -844.28], [-2193.98, -847.63], [-2213.99, -866.25], [-2243.72, -891.3], [-2377.84, -1006.74], [-2382.78, -1010.98], [-2386.59, -1014.27], [-2382.74, -1018.87], [-2357.45, -1049.04], [-2332.2, -1079.37], [-2328.04, -1084.36], [-2323.22, -1080.23], [-2320.87, -1078.23], [-2184.05, -961.37]], [[-2241.36, -1105.46], [-2175.34, -1107.46], [-2169.03, -1107.57], [-2168.92, -1099.72], [-2166.72, -1049.0], [-2166.58, -1043.83], [-2166.34, -1034.72], [-2165.35, -997.55], [-2165.13, -989.26], [-2165.02, -981.17], [-2164.79, -963.76], [-2168.02, -963.56], [-2171.41, -963.53], [-2173.93, -963.86], [-2176.09, -964.16], [-2177.28, -964.58], [-2178.67, -965.14], [-2180.53, -966.25], [-2316.97, -1082.8], [-2319.32, -1084.8], [-2324.12, -1088.89], [-2320.51, -1092.9], [-2315.78, -1097.89], [-2312.7, -1101.83], [-2310.88, -1102.65], [-2308.3, -1103.45], [-2305.12, -1103.54], [-2297.99, -1103.76], [-2241.36, -1105.46]], [[-2459.96, -800.47], [-2468.33, -802.43], [-2476.84, -805.03], [-2482.04, -807.13], [-2485.12, -808.92], [-2488.23, -811.39], [-2489.64, -812.58], [-2479.75, -813.42], [-2473.82, -813.91], [-2469.19, -818.18], [-2459.33, -809.78], [-2453.69, -804.78], [-2449.4, -801.17], [-2453.6, -800.04], [-2456.65, -800.0], [-2459.96, -800.47]], [[-2453.04, -796.05], [-2445.68, -798.03], [-2445.15, -797.59], [-2444.51, -798.35], [-2444.3, -798.41], [-2444.4, -798.27], [-2429.15, -786.37], [-2446.78, -792.62], [-2459.04, -796.3], [-2456.91, -796.0], [-2453.04, -796.05]], [[-2435.98, 0.6], [-2436.26, -4.75], [-2429.69, -5.03], [-2404.41, -6.09], [-2332.05, -9.11], [-2329.14, -9.24], [-2259.41, -12.16], [-2257.0, -12.26], [-2251.63, -12.48], [-2251.78, -15.98], [-2251.63, -12.48], [-2229.17, -13.43], [-2229.32, -16.92], [-2229.17, -13.43], [-2223.51, -13.67], [-2220.23, -13.81], [-2206.16, -14.39], [-2190.18, -15.06], [-2182.77, -15.37], [-2109.22, -18.45], [-2098.75, -18.89], [-2026.2, -21.93], [-2005.72, -22.78], [-2001.85, -22.94], [-1919.62, -26.41], [-1912.58, -26.65], [-1912.31, -16.67], [-1910.73, -7.64], [-1907.48, 3.55], [-1904.21, 12.06], [-1894.73, 40.1], [-1885.7, 68.92], [-1882.65, 77.5], [-1889.55, 82.12], [-1899.1, 89.34], [-1911.77, 98.79], [-1924.78, 108.57], [-1931.55, 113.67], [-1937.82, 117.73], [-1945.5, 121.86], [-1955.52, 125.79], [-1962.43, 127.69], [-1969.96, 129.22], [-1977.74, 130.25], [-1992.31, 131.85], [-2011.73, 133.4], [-2022.71, 134.21], [-2033.07, 134.74], [-2043.53, 134.85], [-2055.52, 135.05], [-2069.32, 134.81], [-2097.81, 132.86], [-2119.77, 131.11], [-2136.77, 130.5], [-2157.62, 130.63], [-2168.22, 131.25], [-2179.45, 132.41], [-2195.24, 135.03], [-2210.09, 137.84], [-2234.31, 144.67], [-2256.78, 151.21], [-2274.94, 155.56], [-2285.02, 156.76], [-2303.51, 157.51], [-2315.05, 156.16], [-2322.49, 154.58], [-2332.92, 151.95], [-2339.85, 149.53], [-2349.01, 145.86], [-2367.61, 136.37], [-2374.76, 133.48], [-2388.55, 129.98], [-2396.09, 129.39], [-2423.61, 130.04], [-2429.63, 130.21], [-2429.79, 125.53], [-2429.99, 119.18], [-2430.12, 114.97], [-2435.98, 0.6]], [[-2183.26, -84.24], [-2189.26, -84.01], [-2188.92, -75.21], [-2188.37, -67.73], [-2186.05, -26.02], [-2185.98, -22.24], [-2190.47, -22.05], [-2206.46, -21.38], [-2220.52, -20.8], [-2223.81, -20.66], [-2227.72, -20.49], [-2227.97, -26.08], [-2228.09, -28.83], [-2229.27, -55.95], [-2231.02, -55.88], [-2229.27, -55.95], [-2230.44, -82.48], [-2230.68, -88.04], [-2231.06, -97.52], [-2231.76, -111.07], [-2232.27, -124.23], [-2232.85, -137.42], [-2233.35, -154.8], [-2235.0, -197.72], [-2235.12, -201.8], [-2225.52, -203.51], [-2210.6, -205.07], [-2190.05, -206.36], [-2140.88, -207.95], [-2141.11, -214.95], [-2140.79, -207.95], [-2128.45, -208.52], [-2124.58, -208.62], [-2107.71, -209.31], [-2015.51, -213.11], [-2007.28, -213.5], [-2003.43, -213.61], [-2000.21, -213.74], [-1967.0, -215.1], [-1964.42, -215.21], [-1920.93, -217.04], [-1909.24, -217.5], [-1911.57, -212.09], [-1912.12, -209.93], [-1912.35, -209.31], [-1915.45, -200.04], [-1916.31, -194.31], [-1916.92, -188.94], [-1917.19, -183.49], [-1915.52, -126.68], [-1915.46, -125.3], [-1915.2, -115.92], [-1914.15, -80.25], [-1913.25, -49.48], [-1913.16, -46.75], [-1912.78, -33.65], [-1919.89, -33.4], [-2002.14, -29.93], [-2006.01, -29.77], [-2026.49, -28.92], [-2099.04, -25.88], [-2109.51, -25.45], [-2179.98, -22.49], [-2180.05, -26.24], [-2182.39, -68.12], [-2182.93, -75.55], [-2183.26, -84.24]], [[-2189.32, -241.42], [-2189.35, -245.02], [-2189.47, -249.93], [-2189.05, -250.14], [-2188.29, -248.56], [-2155.11, -264.62], [-2151.69, -266.28], [-2150.11, -267.07], [-2150.01, -264.42], [-2148.63, -228.38], [-2148.47, -224.15], [-2148.38, -221.71], [-2188.85, -220.41], [-2188.93, -222.9], [-2189.02, -227.03], [-2189.32, -241.42]], [[-2439.7, -86.33], [-2440.13, -103.34], [-2440.14, -117.34], [-2439.1, -121.89], [-2437.1, -126.1], [-2435.47, -128.37], [-2430.76, -133.26], [-2426.5, -136.56], [-2416.32, -141.37], [-2402.16, -148.11], [-2342.4, -175.52], [-2319.15, -188.73], [-2307.42, -195.84], [-2307.3, -194.49], [-2304.65, -194.72], [-2299.16, -195.33], [-2261.5, -199.69], [-2261.06, -194.86], [-2260.33, -180.75], [-2258.95, -153.74], [-2258.25, -136.64], [-2258.22, -134.81], [-2257.12, -110.13], [-2256.58, -96.29], [-2256.2, -86.84], [-2254.91, -55.11], [-2253.16, -55.18], [-2254.91, -55.11], [-2253.66, -24.96], [-2253.58, -19.41], [-2257.3, -19.25], [-2259.71, -19.15], [-2329.44, -16.23], [-2332.35, -16.11], [-2404.71, -13.08], [-2429.98, -12.02], [-2436.68, -11.74], [-2437.23, -19.67], [-2438.13, -46.03], [-2438.38, -53.28], [-2439.02, -68.35], [-2439.58, -81.33], [-2439.7, -86.33]], [[-2230.64, -229.53], [-2192.93, -248.22], [-2192.85, -244.96], [-2192.82, -241.37], [-2192.52, -226.95], [-2192.43, -222.81], [-2192.35, -220.24], [-2211.76, -219.02], [-2227.48, -217.38], [-2238.19, -215.47], [-2261.28, -212.04], [-2261.02, -210.32], [-2274.31, -208.78], [-2299.99, -209.07], [-2305.54, -209.12], [-2320.44, -208.12], [-2333.78, -207.21], [-2353.94, -205.01], [-2369.14, -203.22], [-2380.06, -201.89], [-2390.36, -200.23], [-2402.99, -197.63], [-2411.58, -194.96], [-2420.7, -191.88], [-2432.61, -187.1], [-2437.7, -185.18], [-2444.39, -183.72], [-2449.63, -183.53], [-2455.41, -184.26], [-2451.6, -186.87], [-2443.5, -190.19], [-2428.95, -194.64], [-2414.72, -198.42], [-2394.21, -202.99], [-2370.18, -206.97], [-2324.14, -210.66], [-2305.56, -212.15], [-2271.42, -215.44], [-2255.68, -218.44], [-2250.27, -220.45], [-2242.95, -223.16], [-2230.64, -229.53]], [[-2253.08, -96.43], [-2253.56, -108.52], [-2235.17, -109.18], [-2234.56, -97.36], [-2234.17, -87.9], [-2233.93, -82.33], [-2232.85, -57.57], [-2251.48, -56.99], [-2252.7, -86.98], [-2253.08, -96.43]], [[-2309.07, -201.87], [-2307.96, -201.94], [-2307.77, -199.72], [-2309.07, -201.87]], [[-2254.73, -134.91], [-2254.75, -136.74], [-2255.45, -153.9], [-2256.83, -180.93], [-2257.57, -195.11], [-2257.87, -198.4], [-2238.61, -201.26], [-2238.5, -197.6], [-2236.85, -154.68], [-2236.34, -137.29], [-2235.77, -124.09], [-2235.33, -112.68], [-2241.28, -112.46], [-2253.7, -112.02], [-2254.73, -134.91]], [[-2231.58, -28.68], [-2231.46, -25.93], [-2231.22, -20.35], [-2250.08, -19.55], [-2250.17, -25.06], [-2251.34, -53.49], [-2232.7, -54.07], [-2231.58, -28.68]], [[-2296.84, 256.85], [-2297.01, 257.28], [-2298.43, 258.85], [-2300.48, 260.11], [-2303.26, 261.22], [-2305.89, 261.6], [-2309.02, 261.71], [-2312.04, 261.15], [-2314.5, 260.37], [-2316.08, 259.27], [-2317.42, 258.16], [-2319.22, 256.51], [-2320.46, 254.92], [-2321.21, 253.7], [-2322.1, 252.0], [-2323.0, 250.4], [-2318.57, 250.13], [-2309.0, 249.66], [-2304.06, 249.37], [-2299.05, 249.71], [-2298.12, 249.94], [-2297.82, 250.07], [-2297.45, 250.64], [-2296.64, 252.11], [-2296.23, 253.75], [-2296.34, 255.56], [-2296.84, 256.85]], [[-2008.78, -1720.43], [-2011.64, -1720.32], [-2011.76, -1724.3], [-2013.48, -1790.25], [-2014.06, -1810.34], [-2014.19, -1814.69], [-2014.22, -1823.53], [-2014.42, -1856.1], [-2015.88, -1866.84], [-2020.85, -1885.27], [-2022.14, -1890.2], [-2015.72, -1892.22], [-1993.27, -1900.44], [-1971.47, -1911.97], [-1943.26, -1929.85], [-1940.16, -1931.81], [-1920.51, -1944.26], [-1910.51, -1950.28], [-1905.98, -1953.0], [-1878.88, -1969.3], [-1851.02, -1985.91], [-1832.48, -1997.19], [-1816.01, -2005.8], [-1807.3, -2008.01], [-1796.69, -2008.3], [-1792.09, -2008.32], [-1792.16, -2002.71], [-1791.87, -1987.21], [-1787.87, -1987.29], [-1791.87, -1987.19], [-1791.53, -1973.42], [-1791.01, -1951.4], [-1795.43, -1929.54], [-1796.45, -1917.8], [-1796.63, -1893.37], [-1795.82, -1872.5], [-1791.82, -1824.75], [-1791.3, -1820.74], [-1790.07, -1811.06], [-1787.04, -1801.74], [-1786.48, -1783.81], [-1784.7, -1734.59], [-1784.48, -1728.61], [-1788.36, -1728.52], [-1813.86, -1727.96], [-1896.61, -1724.76], [-2008.78, -1720.43]], [[-2061.26, -1713.13], [-2020.97, -1714.06], [-2017.47, -1714.14], [-2017.35, -1708.26], [-2015.5, -1620.81], [-2014.91, -1604.23], [-2014.62, -1596.09], [-2011.63, -1596.2], [-2014.62, -1596.08], [-2014.33, -1588.53], [-2012.4, -1488.55], [-2012.24, -1480.24], [-2014.94, -1480.13], [-2030.06, -1479.64], [-2112.24, -1477.87], [-2112.46, -1486.17], [-2114.06, -1554.84], [-2110.59, -1554.91], [-2067.29, -1555.77], [-2067.41, -1561.76], [-2110.71, -1560.91], [-2114.2, -1560.84], [-2115.45, -1615.5], [-2112.28, -1615.58], [-2065.83, -1616.85], [-2066.0, -1622.85], [-2112.44, -1621.58], [-2115.57, -1621.5], [-2116.08, -1652.97], [-2117.99, -1705.96], [-2118.11, -1710.0], [-2118.02, -1711.73], [-2117.84, -1712.19], [-2117.81, -1712.2], [-2114.53, -1712.37], [-2061.26, -1713.13]], [[-1896.73, -637.48], [-1888.23, -637.9], [-1887.99, -631.57], [-1887.73, -625.13], [-1887.32, -608.44], [-1887.3, -607.63], [-1887.1, -597.68], [-1886.76, -580.82], [-1885.92, -538.75], [-1885.87, -536.32], [-1885.21, -503.71], [-1885.08, -493.13], [-1885.05, -491.19], [-1884.97, -485.34], [-1890.99, -485.05], [-2007.44, -479.33], [-2013.59, -478.99], [-2013.69, -483.78], [-2014.63, -527.31], [-2014.7, -530.58], [-2014.76, -533.59], [-2015.28, -557.62], [-2015.7, -576.97], [-2016.2, -600.01], [-2016.74, -625.25], [-2016.88, -631.51], [-2011.05, -631.8], [-1977.9, -633.45], [-1967.02, -633.98], [-1922.46, -636.2], [-1896.73, -637.48]], [[-1899.54, -1053.85], [-1891.46, -1053.94], [-1891.5, -1056.94], [-1891.4, -1053.95], [-1883.52, -1054.19], [-1849.23, -1054.98], [-1849.19, -1053.5], [-1849.18, -1053.07], [-1847.85, -1005.32], [-1847.74, -1001.31], [-1893.42, -999.98], [-1899.6, -999.8], [-2011.91, -996.51], [-2018.0, -996.33], [-2017.94, -1001.33], [-2017.57, -1035.96], [-2017.37, -1050.37], [-2012.23, -1050.57], [-2000.86, -1050.95], [-1952.0, -1052.61], [-1946.17, -1052.74], [-1927.97, -1053.27], [-1899.54, -1053.85]], [[-1896.49, -1120.86], [-1901.63, -1120.73], [-1911.08, -1120.38], [-1932.91, -1119.91], [-2013.71, -1117.83], [-2018.17, -1117.68], [-2018.45, -1125.93], [-2020.09, -1175.08], [-2021.1, -1224.28], [-2021.26, -1232.08], [-2016.44, -1232.21], [-1904.02, -1234.87], [-1899.22, -1235.01], [-1899.05, -1227.23], [-1897.99, -1178.05], [-1896.71, -1129.13], [-1896.49, -1120.86]], [[-1899.54, -1249.67], [-1899.35, -1241.01], [-1904.18, -1240.86], [-2016.6, -1238.2], [-2021.42, -1238.07], [-2021.68, -1246.76], [-2023.17, -1295.21], [-2024.47, -1345.27], [-2024.68, -1353.53], [-2019.37, -1353.66], [-1907.34, -1356.49], [-1902.26, -1356.58], [-1901.97, -1350.76], [-1901.91, -1348.08], [-1901.39, -1324.96], [-1900.64, -1298.22], [-1899.54, -1249.67]], [[-1894.66, -1061.98], [-1894.59, -1059.91], [-1899.64, -1059.84], [-1928.12, -1059.27], [-1946.33, -1058.74], [-1952.17, -1058.6], [-2001.06, -1056.95], [-2012.44, -1056.56], [-2017.37, -1056.37], [-2017.63, -1077.99], [-2017.94, -1103.5], [-2018.04, -1111.68], [-2013.53, -1111.83], [-1932.77, -1113.91], [-1910.91, -1114.38], [-1901.44, -1114.73], [-1896.32, -1114.87], [-1896.06, -1106.73], [-1895.98, -1104.06], [-1894.66, -1061.98]], [[-2014.19, -916.22], [-1924.35, -918.76], [-1899.72, -919.24], [-1894.77, -919.47], [-1894.11, -894.14], [-1893.78, -882.38], [-1893.46, -869.1], [-1893.42, -867.53], [-1893.25, -860.4], [-1893.22, -858.97], [-1893.21, -856.68], [-1898.88, -856.42], [-1914.84, -855.67], [-1916.52, -855.6], [-1963.1, -853.44], [-1996.8, -851.89], [-2016.04, -851.0], [-2021.59, -850.74], [-2021.66, -853.02], [-2021.57, -855.83], [-2021.34, -863.23], [-2020.67, -884.95], [-2020.61, -889.19], [-2019.99, -916.18], [-2014.19, -916.22]], [[-1891.87, -780.09], [-1891.44, -768.46], [-1890.97, -744.85], [-1890.89, -742.61], [-1897.91, -742.26], [-1923.87, -740.9], [-1957.54, -739.16], [-1957.56, -740.37], [-1958.07, -765.17], [-1958.32, -777.41], [-1958.58, -790.16], [-1959.0, -809.99], [-1959.56, -837.21], [-1959.61, -839.59], [-1915.91, -841.62], [-1914.22, -841.69], [-1898.23, -842.44], [-1893.07, -842.67], [-1893.04, -840.42], [-1892.9, -832.67], [-1892.24, -793.43], [-1891.87, -780.09]], [[-2018.04, -985.25], [-2018.04, -990.33], [-2011.74, -990.52], [-1899.43, -993.81], [-1896.27, -993.9], [-1896.19, -990.1], [-1894.9, -925.47], [-1899.92, -925.24], [-1924.49, -924.75], [-2014.29, -922.22], [-2019.84, -922.18], [-2018.04, -985.25]], [[-2021.23, -836.75], [-2015.4, -837.02], [-1996.15, -837.9], [-1965.61, -839.31], [-1965.56, -837.08], [-1965.0, -809.87], [-1964.58, -790.04], [-1964.32, -777.29], [-1964.07, -765.05], [-1963.56, -740.24], [-1963.53, -738.85], [-1984.65, -737.74], [-2013.39, -736.25], [-2019.09, -735.96], [-2019.66, -762.6], [-2020.17, -786.89], [-2020.42, -798.77], [-2020.59, -806.79], [-2020.85, -818.88], [-2021.13, -832.0], [-2021.18, -834.65], [-2021.23, -836.75]], [[-1897.03, -643.47], [-1922.76, -642.19], [-1967.32, -639.98], [-1978.2, -639.44], [-2011.34, -637.79], [-2017.01, -637.51], [-2017.11, -642.34], [-2017.65, -667.77], [-2017.72, -671.31], [-2018.09, -688.53], [-2018.2, -693.94], [-2018.96, -729.96], [-2013.08, -730.26], [-1984.33, -731.75], [-1960.31, -733.01], [-1923.56, -734.91], [-1897.6, -736.26], [-1890.68, -736.62], [-1889.11, -690.16], [-1889.38, -663.12], [-1889.23, -651.61], [-1888.59, -643.89], [-1897.03, -643.47]], [[-2070.61, -469.19], [-2054.73, -469.98], [-2025.47, -471.42], [-2019.41, -471.7], [-2019.24, -465.74], [-2018.24, -444.96], [-2012.24, -445.25], [-2013.24, -465.97], [-2013.41, -471.99], [-2007.08, -472.34], [-1890.65, -478.06], [-1885.33, -478.31], [-1885.2, -473.03], [-1885.11, -469.37], [-1884.63, -450.46], [-1884.78, -428.58], [-1883.15, -391.7], [-1883.05, -388.14], [-1882.64, -371.74], [-1882.51, -366.98], [-1882.4, -362.54], [-1890.55, -361.97], [-1894.14, -361.75], [-1908.74, -360.82], [-1942.27, -359.04], [-1950.64, -358.41], [-1963.35, -357.12], [-1980.58, -354.45], [-1992.74, -351.68], [-2003.94, -348.98], [-2012.72, -346.25], [-2021.04, -343.84], [-2036.6, -338.14], [-2054.58, -330.47], [-2100.95, -307.13], [-2098.68, -302.63], [-2098.69, -302.63], [-2100.17, -305.56], [-2105.9, -302.65], [-2106.58, -302.66], [-2113.89, -304.06], [-2118.43, -306.85], [-2122.05, -309.36], [-2125.65, -312.26], [-2129.62, -317.93], [-2131.28, -321.08], [-2131.9, -322.6], [-2133.38, -327.47], [-2134.45, -330.31], [-2135.51, -332.51], [-2138.59, -338.46], [-2138.78, -341.94], [-2140.35, -341.86], [-2140.43, -342.01], [-2138.81, -342.23], [-2139.3, -345.77], [-2140.06, -355.59], [-2141.2, -370.21], [-2142.29, -382.46], [-2143.2, -395.88], [-2143.97, -398.66], [-2146.51, -404.17], [-2145.85, -404.17], [-2146.03, -434.19], [-2146.2, -458.86], [-2146.23, -465.11], [-2141.16, -465.64], [-2075.28, -468.97], [-2070.61, -469.19]], [[-2013.46, -329.93], [-2010.9, -234.13], [-2010.77, -229.3], [-2010.72, -227.35], [-2016.13, -227.09], [-2108.29, -223.3], [-2125.05, -222.61], [-2128.96, -222.51], [-2134.39, -222.26], [-2134.48, -224.69], [-2134.64, -228.91], [-2136.02, -264.95], [-2136.19, -269.32], [-2136.43, -275.69], [-2129.07, -279.13], [-2095.44, -296.18], [-2094.65, -294.62], [-2048.68, -317.77], [-2031.44, -325.12], [-2016.68, -330.53], [-2013.5, -331.45], [-2013.46, -329.93]], [[-1893.26, -347.77], [-1889.63, -348.0], [-1882.49, -348.5], [-1882.41, -346.12], [-1882.32, -342.36], [-1881.27, -297.28], [-1881.11, -282.29], [-1881.93, -269.89], [-1883.37, -263.24], [-1885.7, -256.39], [-1888.06, -251.33], [-1889.82, -248.32], [-1892.0, -245.34], [-1895.38, -241.19], [-1898.22, -238.1], [-1902.78, -232.34], [-1903.1, -231.75], [-1921.5, -231.03], [-1965.0, -229.2], [-1967.58, -229.09], [-2000.78, -227.72], [-2003.91, -227.6], [-2004.73, -227.58], [-2004.78, -229.46], [-2004.91, -234.29], [-2007.46, -330.09], [-2007.54, -333.2], [-2000.21, -335.47], [-1989.54, -338.05], [-1977.95, -340.69], [-1961.58, -343.23], [-1949.41, -344.46], [-1941.37, -345.07], [-1907.93, -346.84], [-1893.26, -347.77]], [[-2149.17, -348.74], [-2149.4, -354.76], [-2149.96, -370.43], [-2150.12, -382.73], [-2150.12, -394.46], [-2149.27, -381.92], [-2148.18, -369.63], [-2147.04, -355.05], [-2146.27, -345.12], [-2145.16, -345.21], [-2145.28, -345.05], [-2146.24, -344.92], [-2146.13, -344.07], [-2148.31, -341.98], [-2148.86, -341.77], [-2149.17, -348.74]], [[-2144.49, -283.72], [-2144.98, -284.55], [-2145.5, -287.06], [-2145.92, -294.9], [-2146.25, -303.46], [-2148.0, -331.08], [-2148.65, -338.09], [-2146.4, -338.97], [-2145.67, -339.67], [-2145.23, -331.4], [-2144.5, -309.75], [-2143.94, -299.23], [-2143.41, -291.18], [-2143.38, -287.68], [-2143.59, -286.08], [-2144.07, -284.51], [-2144.49, -283.72]], [[-2136.37, -287.31], [-2136.41, -291.45], [-2136.95, -299.65], [-2137.5, -310.05], [-2138.18, -329.99], [-2137.67, -328.93], [-2136.69, -326.34], [-2135.2, -321.44], [-2134.46, -319.6], [-2132.61, -316.1], [-2128.23, -309.84], [-2124.15, -306.56], [-2120.35, -303.92], [-2115.18, -300.75], [-2111.18, -299.98], [-2133.67, -288.57], [-2136.37, -287.31]], [[-1764.46, -2056.38], [-1760.02, -2054.25], [-1756.5, -2052.56], [-1670.69, -2005.91], [-1666.52, -2003.64], [-1668.72, -1999.54], [-1669.83, -1997.54], [-1697.81, -1947.0], [-1699.08, -1944.7], [-1700.51, -1941.95], [-1702.76, -1943.14], [-1743.49, -1966.06], [-1774.04, -1983.56], [-1776.5, -1984.98], [-1783.9, -1988.66], [-1784.16, -2002.74], [-1784.06, -2011.14], [-1783.43, -2018.09], [-1779.75, -2035.11], [-1774.08, -2043.54], [-1769.18, -2050.87], [-1767.69, -2052.7], [-1764.46, -2056.38]], [[-1594.79, -2282.16], [-1572.13, -2272.83], [-1532.76, -2259.98], [-1520.47, -2255.96], [-1529.6, -2247.34], [-1537.89, -2235.7], [-1560.43, -2194.8], [-1592.89, -2138.4], [-1620.62, -2087.12], [-1660.03, -2015.51], [-1662.69, -2010.67], [-1666.87, -2012.94], [-1752.86, -2059.69], [-1756.57, -2061.46], [-1759.03, -2062.65], [-1754.67, -2067.71], [-1736.5, -2088.79], [-1691.42, -2139.17], [-1662.52, -2176.52], [-1647.96, -2196.91], [-1622.98, -2238.68], [-1603.92, -2277.04], [-1600.42, -2284.42], [-1594.79, -2282.16]], [[-1588.93, -1960.89], [-1583.12, -1957.78], [-1584.87, -1954.56], [-1585.66, -1953.11], [-1615.79, -1898.01], [-1616.34, -1897.0], [-1621.03, -1899.57], [-1656.28, -1918.89], [-1693.43, -1938.22], [-1695.2, -1939.15], [-1693.79, -1941.86], [-1692.56, -1944.1], [-1664.58, -1994.64], [-1663.46, -1996.66], [-1661.27, -2000.73], [-1657.22, -1998.44], [-1623.91, -1979.62], [-1588.93, -1960.89]], [[-1786.05, -1851.67], [-1787.83, -1872.99], [-1788.63, -1893.49], [-1788.45, -1917.42], [-1787.84, -1924.46], [-1787.82, -1924.12], [-1786.38, -1873.01], [-1786.05, -1851.67]], [[-1500.7, -2854.14], [-1521.58, -2888.88], [-1515.56, -2890.49], [-1512.67, -2891.34], [-1503.66, -2893.77], [-1489.14, -2895.87], [-1471.52, -2894.57], [-1460.3, -2895.41], [-1451.85, -2896.39], [-1443.99, -2898.03], [-1427.9, -2900.99], [-1387.76, -2909.21], [-1335.23, -2919.22], [-1304.75, -2925.52], [-1288.88, -2928.14], [-1280.36, -2929.55], [-1276.47, -2930.2], [-1138.0, -2955.47], [-1098.03, -2962.76], [-1019.65, -2977.87], [-1016.15, -2978.28], [-1011.88, -2978.7], [-1011.36, -2969.91], [-1011.33, -2949.34], [-1011.28, -2943.35], [-1010.81, -2934.37], [-1016.58, -2933.49], [-1103.32, -2917.57], [-1158.03, -2907.33], [-1188.43, -2901.46], [-1246.22, -2890.31], [-1262.92, -2887.07], [-1305.84, -2878.79], [-1314.74, -2877.07], [-1328.06, -2874.52], [-1331.19, -2873.92], [-1365.76, -2865.8], [-1401.74, -2854.93], [-1417.22, -2847.16], [-1451.3, -2821.73], [-1450.38, -2820.5], [-1450.41, -2820.5], [-1451.64, -2822.11], [-1454.69, -2819.77], [-1461.41, -2818.63], [-1465.46, -2818.51], [-1468.26, -2819.1], [-1473.84, -2821.55], [-1480.5, -2825.5], [-1490.37, -2831.6], [-1492.63, -2835.58], [-1494.81, -2834.34], [-1494.84, -2834.36], [-1490.52, -2836.92], [-1500.7, -2854.14]], [[-1349.2, 34.53], [-1441.33, 38.94], [-1446.48, 39.19], [-1446.66, 34.58], [-1447.16, 21.97], [-1451.42, -57.7], [-1452.18, -80.37], [-1452.25, -84.33], [-1453.96, -140.47], [-1450.46, -140.53], [-1451.64, -204.11], [-1451.48, -226.96], [-1451.5, -232.03], [-1451.44, -240.06], [-1446.56, -240.28], [-1441.66, -240.49], [-1380.07, -243.22], [-1340.64, -244.98], [-1331.93, -245.3], [-1323.85, -245.8], [-1281.0, -248.1], [-1212.43, -251.85], [-1203.78, -251.8], [-1203.69, -244.63], [-1201.85, -204.5], [-1200.48, -174.64], [-1197.61, -125.09], [-1197.18, -113.97], [-1196.85, -106.65], [-1195.32, -78.93], [-1193.22, -69.59], [-1192.31, -61.65], [-1189.66, -11.87], [-1188.38, 12.12], [-1187.9, 21.41], [-1187.6, 26.59], [-1193.22, 27.4], [-1304.79, 32.39], [-1349.2, 34.53]], [[-1324.46, -256.28], [-1332.44, -255.79], [-1341.07, -255.47], [-1380.53, -253.71], [-1442.11, -250.98], [-1447.02, -250.77], [-1453.22, -250.49], [-1452.23, -253.59], [-1451.09, -257.66], [-1450.07, -263.76], [-1451.54, -294.98], [-1452.38, -312.94], [-1454.37, -332.27], [-1458.45, -352.9], [-1461.64, -366.35], [-1462.65, -371.18], [-1458.47, -371.39], [-1390.88, -374.72], [-1347.41, -376.88], [-1338.45, -377.31], [-1330.43, -377.71], [-1291.91, -379.61], [-1270.46, -380.68], [-1217.9, -383.27], [-1215.44, -383.39], [-1214.94, -378.08], [-1213.11, -350.62], [-1212.68, -341.24], [-1212.29, -336.02], [-1212.11, -332.04], [-1212.05, -330.55], [-1209.15, -271.49], [-1209.12, -267.55], [-1209.11, -262.33], [-1212.69, -262.35], [-1281.56, -258.59], [-1324.46, -256.28]], [[-1292.43, -390.1], [-1330.94, -388.2], [-1338.96, -387.8], [-1347.92, -387.36], [-1391.39, -385.21], [-1458.99, -381.87], [-1464.65, -381.59], [-1465.7, -387.71], [-1467.69, -401.15], [-1472.25, -469.25], [-1473.85, -492.82], [-1474.28, -499.18], [-1466.49, -499.65], [-1465.87, -499.68], [-1411.64, -502.36], [-1352.69, -505.27], [-1344.83, -505.64], [-1335.1, -506.14], [-1225.5, -511.72], [-1218.48, -512.08], [-1218.08, -505.45], [-1217.88, -502.18], [-1212.19, -399.34], [-1211.45, -394.11], [-1218.42, -393.76], [-1270.98, -391.17], [-1292.43, -390.1]], [[-1345.17, -512.63], [-1353.02, -512.27], [-1411.99, -509.36], [-1466.21, -506.67], [-1466.86, -506.64], [-1474.71, -506.17], [-1475.05, -512.17], [-1476.6, -539.52], [-1479.32, -587.73], [-1482.71, -621.99], [-1483.63, -632.55], [-1483.9, -635.12], [-1487.37, -675.05], [-1487.84, -683.68], [-1491.33, -683.49], [-1486.34, -683.76], [-1489.52, -741.14], [-1489.85, -747.54], [-1494.85, -747.28], [-1489.87, -747.74], [-1490.01, -749.32], [-1491.18, -775.4], [-1491.49, -819.54], [-1491.52, -832.96], [-1492.31, -858.38], [-1492.44, -861.24], [-1489.45, -861.31], [-1366.31, -867.32], [-1366.14, -862.7], [-1365.19, -844.0], [-1363.8, -813.05], [-1363.66, -809.99], [-1362.99, -795.15], [-1362.41, -782.42], [-1356.42, -782.7], [-1357.0, -795.42], [-1357.67, -810.26], [-1357.8, -813.32], [-1359.2, -844.29], [-1360.14, -862.97], [-1360.31, -867.55], [-1359.76, -867.56], [-1359.79, -870.5], [-1355.76, -868.19], [-1349.15, -866.2], [-1273.37, -861.08], [-1257.15, -861.65], [-1238.04, -862.78], [-1222.09, -864.94], [-1208.06, -868.02], [-1181.33, -877.16], [-1163.4, -885.04], [-1149.84, -891.3], [-1112.97, -907.08], [-1113.65, -908.68], [-1113.63, -908.69], [-1112.93, -907.09], [-1097.78, -913.79], [-1057.44, -926.8], [-1040.56, -928.71], [-1035.22, -928.78], [-1028.57, -927.09], [-1021.76, -924.11], [-1005.97, -910.8], [-992.77, -901.9], [-985.34, -899.27], [-982.63, -896.75], [-981.55, -897.92], [-981.49, -897.9], [-982.55, -896.68], [-966.56, -882.71], [-958.78, -875.83], [-949.83, -868.01], [-930.04, -851.04], [-922.4, -850.48], [-924.12, -848.52], [-922.92, -847.47], [-919.64, -844.59], [-907.68, -834.07], [-905.89, -832.5], [-870.79, -801.63], [-859.99, -792.14], [-848.38, -781.93], [-838.79, -773.5], [-821.61, -758.4], [-816.74, -754.13], [-823.22, -747.0], [-824.43, -745.66], [-866.56, -699.11], [-869.32, -696.03], [-894.25, -668.5], [-897.73, -664.66], [-901.86, -668.43], [-903.94, -670.32], [-943.16, -706.14], [-947.88, -700.98], [-908.66, -665.15], [-906.58, -663.25], [-902.42, -659.47], [-906.51, -654.95], [-939.47, -618.26], [-942.05, -614.56], [-943.87, -610.9], [-945.22, -606.07], [-945.56, -600.2], [-945.3, -591.4], [-945.3, -589.36], [-944.88, -569.72], [-944.3, -540.42], [-944.25, -537.88], [-944.11, -532.98], [-947.31, -532.83], [-978.36, -531.27], [-988.05, -530.78], [-997.82, -530.29], [-1036.33, -528.34], [-1075.58, -526.38], [-1079.36, -526.18], [-1079.6, -531.16], [-1079.74, -533.85], [-1081.92, -578.28], [-1082.22, -583.03], [-1086.38, -663.82], [-1087.4, -685.63], [-1086.1, -693.52], [-1093.01, -694.66], [-1094.42, -686.04], [-1093.37, -663.48], [-1089.21, -582.63], [-1088.91, -577.88], [-1086.73, -533.49], [-1086.59, -530.81], [-1086.35, -525.72], [-1092.84, -525.18], [-1205.14, -519.77], [-1209.95, -519.53], [-1215.37, -519.25], [-1225.85, -518.71], [-1335.46, -513.13], [-1345.17, -512.63]], [[-1183.88, -883.69], [-1209.96, -874.78], [-1223.32, -871.83], [-1238.72, -869.76], [-1257.48, -868.65], [-1273.26, -868.09], [-1347.89, -873.13], [-1348.72, -873.38], [-1348.17, -873.51], [-1315.75, -874.65], [-1257.74, -877.73], [-1237.3, -879.18], [-1222.1, -881.01], [-1206.69, -884.22], [-1191.17, -889.41], [-1169.45, -898.38], [-1093.32, -928.48], [-1095.16, -933.13], [-1093.18, -928.54], [-1051.48, -946.52], [-1043.77, -950.62], [-1039.33, -947.09], [-1044.61, -944.97], [-1115.74, -913.5], [-1152.69, -897.7], [-1166.27, -891.43], [-1183.88, -883.69]], [[-1209.31, -893.89], [-1223.72, -890.89], [-1238.25, -889.14], [-1258.36, -887.71], [-1316.19, -884.64], [-1349.55, -883.47], [-1356.0, -881.9], [-1357.25, -881.34], [-1359.89, -880.07], [-1359.9, -881.56], [-1361.8, -881.54], [-1363.85, -881.45], [-1363.57, -874.46], [-1363.91, -881.45], [-1489.96, -875.3], [-1492.84, -875.23], [-1493.17, -882.29], [-1494.05, -903.08], [-1493.68, -914.85], [-1492.91, -926.41], [-1492.16, -938.65], [-1489.48, -971.62], [-1488.76, -992.65], [-1488.56, -997.3], [-1487.9, -1011.69], [-1487.81, -1013.55], [-1483.72, -1013.42], [-1442.48, -1013.58], [-1400.43, -1005.85], [-1383.79, -1002.85], [-1363.33, -1002.51], [-1357.33, -1002.87], [-1308.12, -1003.11], [-1297.45, -1002.34], [-1274.2, -1002.39], [-1264.97, -1002.68], [-1261.56, -1010.99], [-1261.6, -1021.92], [-1262.49, -1026.52], [-1262.49, -1033.14], [-1262.86, -1081.31], [-1262.58, -1084.52], [-1262.07, -1087.81], [-1261.44, -1090.81], [-1260.67, -1093.77], [-1259.74, -1096.59], [-1258.72, -1099.14], [-1257.65, -1101.42], [-1256.49, -1103.56], [-1255.17, -1105.56], [-1253.91, -1107.2], [-1252.35, -1108.96], [-1242.53, -1119.68], [-1237.72, -1124.84], [-1143.74, -1039.81], [-1135.65, -1032.49], [-1110.29, -1009.55], [-1069.85, -972.96], [-1068.51, -971.73], [-1066.88, -965.78], [-1067.0, -963.04], [-1068.2, -958.15], [-1071.79, -953.56], [-1086.43, -942.34], [-1097.06, -937.75], [-1173.19, -907.66], [-1194.67, -898.79], [-1209.31, -893.89]], [[-1363.32, -1247.9], [-1364.38, -1246.73], [-1364.38, -1246.73], [-1363.32, -1247.91], [-1365.92, -1250.26], [-1371.27, -1262.48], [-1373.91, -1267.81], [-1375.82, -1272.15], [-1375.83, -1272.19], [-1266.22, -1173.17], [-1229.25, -1139.77], [-1220.69, -1132.04], [-1170.43, -1086.63], [-1132.48, -1052.34], [-1124.09, -1044.76], [-1089.85, -1013.83], [-1062.93, -989.51], [-1040.15, -966.8], [-1037.85, -964.76], [-1045.54, -960.95], [-1051.65, -965.74], [-1065.12, -978.12], [-1067.49, -975.54], [-1065.14, -978.14], [-1105.59, -1014.74], [-1130.95, -1037.68], [-1139.05, -1045.0], [-1235.21, -1132.01], [-1237.56, -1129.41], [-1235.21, -1132.01], [-1273.52, -1166.66], [-1363.32, -1247.9]], [[-1326.32, -2057.56], [-1347.6, -2069.54], [-1351.19, -2071.5], [-1346.59, -2079.35], [-1335.12, -2099.79], [-1328.31, -2111.83], [-1307.39, -2148.83], [-1300.8, -2149.07], [-1297.8, -2149.17], [-1291.9, -2149.39], [-1285.97, -2149.6], [-1282.74, -2149.72], [-1252.96, -2150.8], [-1243.4, -2151.14], [-1081.27, -2160.73], [-1075.49, -2161.07], [-1075.14, -2154.93], [-1069.88, -2061.1], [-1069.71, -2057.82], [-1096.41, -2060.0], [-1160.1, -2069.52], [-1199.94, -2072.74], [-1208.01, -2072.75], [-1226.15, -2069.26], [-1241.71, -2064.12], [-1251.01, -2058.86], [-1260.72, -2051.89], [-1270.53, -2043.96], [-1281.44, -2031.76], [-1285.68, -2034.11], [-1320.49, -2054.34], [-1326.32, -2057.56]], [[-1250.98, -2248.43], [-1243.05, -2262.43], [-1238.22, -2270.98], [-1233.62, -2270.57], [-1231.53, -2270.38], [-1223.43, -2269.66], [-1184.5, -2271.25], [-1080.94, -2276.15], [-1080.67, -2270.32], [-1078.34, -2221.54], [-1076.08, -2173.03], [-1075.85, -2168.06], [-1081.69, -2167.72], [-1243.73, -2158.13], [-1253.21, -2157.8], [-1282.99, -2156.71], [-1286.22, -2156.6], [-1292.15, -2156.38], [-1298.05, -2156.17], [-1301.05, -2156.06], [-1303.34, -2155.98], [-1298.31, -2164.88], [-1292.16, -2175.72], [-1250.98, -2248.43]], [[-1203.66, -2333.93], [-1172.16, -2387.58], [-1167.65, -2387.38], [-1158.7, -2386.99], [-1154.25, -2386.79], [-1141.52, -2386.24], [-1130.61, -2386.67], [-1125.47, -2387.11], [-1092.25, -2389.93], [-1084.11, -2390.62], [-1083.96, -2385.41], [-1083.88, -2382.78], [-1082.51, -2334.79], [-1081.16, -2282.15], [-1184.76, -2277.25], [-1223.29, -2275.67], [-1231.0, -2276.36], [-1233.09, -2276.54], [-1235.06, -2276.72], [-1210.76, -2321.46], [-1208.06, -2326.42], [-1203.66, -2333.93]], [[-964.84, -2178.44], [-964.64, -2173.56], [-970.25, -2173.22], [-1022.95, -2170.11], [-1063.68, -2168.58], [-1069.86, -2168.35], [-1070.09, -2173.31], [-1072.35, -2221.83], [-1074.68, -2270.6], [-1074.95, -2276.44], [-969.23, -2281.47], [-968.99, -2275.85], [-964.84, -2178.44]], [[-827.94, -2351.99], [-829.01, -2394.94], [-829.08, -2397.7], [-829.29, -2402.95], [-823.76, -2403.24], [-715.29, -2408.43], [-709.14, -2405.38], [-681.59, -2406.65], [-674.46, -2407.08], [-665.56, -2407.54], [-645.41, -2408.51], [-642.44, -2408.65], [-642.34, -2406.76], [-642.11, -2404.33], [-629.19, -2292.62], [-625.34, -2262.17], [-619.89, -2217.31], [-618.42, -2190.82], [-618.17, -2186.18], [-621.85, -2186.05], [-669.38, -2184.87], [-784.45, -2181.19], [-791.31, -2180.85], [-797.13, -2180.7], [-861.28, -2177.95], [-952.32, -2174.15], [-958.65, -2173.87], [-958.85, -2178.69], [-962.99, -2276.11], [-963.23, -2281.77], [-878.94, -2286.2], [-826.35, -2288.52], [-827.94, -2351.99]], [[-971.41, -2403.22], [-971.25, -2399.72], [-971.42, -2403.22], [-1074.83, -2398.19], [-1081.38, -2397.87], [-1081.21, -2394.37], [-1081.51, -2397.86], [-1092.84, -2396.9], [-1126.07, -2394.09], [-1131.05, -2393.66], [-1141.5, -2393.24], [-1153.94, -2393.79], [-1158.39, -2393.98], [-1167.34, -2394.37], [-1168.36, -2394.42], [-1164.2, -2402.03], [-1139.72, -2446.92], [-1131.05, -2462.41], [-1111.93, -2495.79], [-1104.72, -2507.6], [-1098.29, -2507.59], [-1096.16, -2507.58], [-1090.16, -2507.58], [-1079.82, -2507.56], [-1062.42, -2508.41], [-988.22, -2512.04], [-960.15, -2513.84], [-845.97, -2519.47], [-839.96, -2519.77], [-839.72, -2513.72], [-839.59, -2510.46], [-835.86, -2418.26], [-835.75, -2415.48], [-835.55, -2409.65], [-840.19, -2409.45], [-893.13, -2406.8], [-971.41, -2403.22]], [[-988.56, -2518.03], [-1062.71, -2514.41], [-1079.96, -2513.56], [-1090.15, -2513.58], [-1096.15, -2513.58], [-1098.28, -2513.59], [-1101.06, -2513.59], [-1095.75, -2522.3], [-1089.92, -2531.83], [-1072.16, -2569.91], [-1066.53, -2581.96], [-1065.45, -2584.49], [-1061.1, -2594.65], [-1053.53, -2612.32], [-1043.52, -2639.09], [-1035.71, -2634.95], [-1034.3, -2637.6], [-1035.7, -2634.95], [-1025.32, -2629.5], [-1021.92, -2629.51], [-1019.71, -2629.45], [-1015.59, -2629.37], [-973.39, -2629.24], [-930.3, -2630.53], [-851.32, -2633.8], [-846.2, -2634.01], [-845.96, -2629.65], [-845.72, -2625.31], [-843.31, -2581.4], [-840.76, -2535.2], [-840.57, -2531.69], [-840.25, -2525.76], [-846.27, -2525.46], [-960.49, -2519.84], [-988.56, -2518.03]], [[-973.47, -2635.24], [-1015.52, -2635.37], [-1019.57, -2635.45], [-1021.85, -2635.51], [-1023.86, -2635.5], [-1029.56, -2638.5], [-1022.68, -2646.43], [-1004.52, -2666.94], [-982.37, -2693.64], [-977.19, -2700.36], [-953.9, -2730.62], [-944.75, -2748.04], [-935.95, -2747.84], [-932.11, -2747.74], [-925.14, -2747.58], [-857.4, -2750.88], [-850.89, -2751.2], [-850.69, -2745.94], [-850.56, -2742.26], [-848.81, -2696.31], [-846.98, -2652.02], [-846.79, -2647.35], [-846.49, -2640.0], [-851.57, -2639.79], [-930.52, -2636.53], [-973.47, -2635.24]], [[-931.97, -2753.74], [-935.8, -2753.83], [-941.96, -2753.98], [-941.26, -2755.54], [-926.18, -2789.07], [-921.68, -2799.09], [-917.14, -2809.18], [-908.34, -2828.75], [-898.31, -2851.06], [-891.14, -2867.01], [-883.55, -2866.69], [-881.05, -2866.59], [-869.29, -2866.1], [-838.38, -2867.41], [-830.88, -2859.41], [-818.23, -2827.64], [-813.22, -2815.04], [-791.38, -2760.19], [-792.98, -2760.11], [-798.66, -2759.83], [-839.36, -2757.78], [-848.15, -2757.34], [-857.69, -2756.88], [-925.21, -2753.59], [-931.97, -2753.74]], [[-1557.84, -247.22], [-1592.51, -245.57], [-1597.65, -245.31], [-1601.95, -245.11], [-1602.08, -247.58], [-1602.24, -251.53], [-1603.89, -282.35], [-1605.18, -306.37], [-1608.68, -306.18], [-1605.18, -306.39], [-1607.74, -349.96], [-1608.26, -358.74], [-1608.49, -362.76], [-1601.59, -363.1], [-1491.73, -368.46], [-1483.14, -368.73], [-1481.87, -363.82], [-1475.12, -338.42], [-1472.63, -322.29], [-1471.36, -307.44], [-1469.53, -263.21], [-1467.22, -256.55], [-1465.5, -252.86], [-1465.04, -251.7], [-1473.2, -251.32], [-1503.61, -249.83], [-1532.99, -248.43], [-1557.84, -247.22]], [[-1609.86, -379.69], [-1612.63, -433.57], [-1613.1, -444.25], [-1614.81, -483.16], [-1614.97, -486.74], [-1615.18, -491.62], [-1609.54, -491.9], [-1587.27, -492.99], [-1547.16, -494.96], [-1503.98, -497.09], [-1501.08, -497.22], [-1495.14, -497.52], [-1494.97, -492.07], [-1493.43, -459.5], [-1493.36, -458.03], [-1492.74, -438.91], [-1491.98, -420.69], [-1491.26, -412.54], [-1490.3, -404.41], [-1487.34, -385.7], [-1486.6, -382.63], [-1492.29, -382.45], [-1602.28, -377.09], [-1609.73, -376.71], [-1609.86, -379.69]], [[-1587.62, -499.98], [-1609.88, -498.89], [-1618.5, -498.46], [-1627.74, -498.01], [-1740.16, -491.85], [-1746.06, -491.68], [-1746.13, -494.46], [-1746.3, -499.67], [-1746.62, -534.26], [-1746.72, -564.44], [-1747.38, -586.23], [-1747.67, -596.0], [-1748.47, -609.48], [-1748.84, -647.86], [-1752.34, -647.82], [-1748.84, -647.86], [-1748.94, -656.67], [-1749.0, -661.59], [-1749.16, -669.49], [-1744.13, -669.71], [-1742.38, -669.78], [-1715.24, -670.94], [-1710.15, -671.15], [-1688.85, -672.06], [-1688.63, -666.44], [-1686.85, -630.35], [-1685.37, -600.25], [-1679.37, -600.55], [-1680.86, -630.65], [-1682.63, -666.7], [-1682.85, -672.32], [-1635.68, -674.33], [-1625.28, -674.78], [-1624.28, -669.25], [-1624.19, -666.6], [-1623.47, -646.34], [-1622.55, -620.08], [-1621.83, -599.44], [-1621.51, -593.57], [-1615.52, -593.89], [-1615.83, -599.71], [-1616.55, -620.29], [-1617.47, -646.55], [-1618.19, -666.81], [-1618.3, -669.89], [-1619.23, -675.04], [-1582.85, -676.59], [-1579.89, -676.72], [-1515.51, -679.46], [-1509.04, -679.73], [-1508.67, -673.81], [-1504.07, -627.96], [-1503.85, -625.28], [-1503.01, -614.97], [-1495.93, -511.05], [-1495.49, -504.51], [-1501.43, -504.22], [-1504.32, -504.08], [-1547.51, -501.95], [-1587.62, -499.98]], [[-1620.17, -681.0], [-1621.03, -687.57], [-1621.07, -688.87], [-1621.38, -699.57], [-1621.81, -736.49], [-1621.84, -738.98], [-1615.9, -739.35], [-1614.13, -739.45], [-1595.32, -740.52], [-1518.42, -743.26], [-1513.44, -743.43], [-1513.35, -741.53], [-1510.86, -685.66], [-1515.76, -685.45], [-1580.15, -682.71], [-1583.11, -682.58], [-1620.17, -681.0]], [[-1616.25, -745.34], [-1622.08, -744.98], [-1622.18, -746.45], [-1622.66, -770.7], [-1623.2, -792.77], [-1623.3, -796.47], [-1617.27, -796.6], [-1524.52, -801.05], [-1521.12, -801.23], [-1515.7, -801.46], [-1513.71, -749.43], [-1518.63, -749.26], [-1595.6, -746.51], [-1614.46, -745.44], [-1616.25, -745.34]], [[-1623.44, -802.47], [-1623.51, -805.11], [-1624.31, -837.16], [-1624.58, -849.05], [-1624.69, -850.54], [-1624.76, -855.3], [-1619.33, -855.56], [-1586.66, -857.03], [-1525.36, -859.8], [-1518.35, -860.12], [-1518.2, -857.04], [-1515.95, -807.45], [-1521.41, -807.22], [-1524.82, -807.05], [-1617.48, -802.59], [-1623.44, -802.47]], [[-1509.03, -970.07], [-1507.28, -973.28], [-1504.66, -985.22], [-1504.26, -992.77], [-1504.01, -997.47], [-1503.47, -1008.51], [-1501.67, -1012.26], [-1501.15, -1012.99], [-1500.55, -1013.34], [-1498.31, -1013.85], [-1498.39, -1012.2], [-1499.05, -997.76], [-1499.25, -993.06], [-1499.97, -972.23], [-1502.64, -939.39], [-1503.39, -927.08], [-1504.17, -915.37], [-1504.56, -903.02], [-1503.66, -881.82], [-1503.24, -872.85], [-1506.39, -872.71], [-1510.29, -872.51], [-1510.43, -880.86], [-1510.02, -934.24], [-1509.15, -967.46], [-1509.03, -970.07]], [[-1517.32, -874.18], [-1525.99, -873.79], [-1587.3, -871.01], [-1619.98, -869.54], [-1625.08, -869.3], [-1625.16, -871.72], [-1625.2, -873.31], [-1626.26, -908.62], [-1626.66, -922.64], [-1627.25, -943.89], [-1628.39, -991.74], [-1628.65, -1002.48], [-1631.65, -1002.41], [-1628.65, -1002.53], [-1629.11, -1014.05], [-1630.45, -1062.62], [-1631.16, -1087.13], [-1631.75, -1112.88], [-1632.08, -1123.41], [-1632.4, -1135.04], [-1632.58, -1140.68], [-1635.22, -1230.3], [-1635.32, -1234.04], [-1635.52, -1240.68], [-1628.45, -1240.88], [-1521.24, -1243.88], [-1517.8, -1243.98], [-1511.49, -1244.08], [-1511.22, -1233.48], [-1511.12, -1231.16], [-1510.65, -1203.3], [-1509.87, -1156.8], [-1510.17, -1141.38], [-1511.14, -1093.08], [-1511.3, -1084.75], [-1512.58, -1050.1], [-1514.36, -1023.82], [-1514.35, -1018.31], [-1514.34, -1012.99], [-1514.83, -997.74], [-1515.1, -993.03], [-1515.48, -981.51], [-1516.15, -967.76], [-1512.65, -967.59], [-1516.15, -967.68], [-1517.01, -934.36], [-1517.43, -880.83], [-1517.32, -874.18]], [[-1635.59, -1246.68], [-1635.53, -1255.74], [-1635.53, -1258.09], [-1635.31, -1305.38], [-1636.57, -1353.63], [-1636.79, -1362.21], [-1631.3, -1362.31], [-1549.97, -1363.71], [-1530.23, -1364.13], [-1519.74, -1364.32], [-1515.22, -1364.4], [-1514.81, -1355.11], [-1514.5, -1348.09], [-1514.04, -1337.6], [-1513.77, -1331.53], [-1513.17, -1318.1], [-1512.71, -1307.54], [-1511.63, -1250.08], [-1517.93, -1249.98], [-1521.41, -1249.88], [-1628.62, -1246.87], [-1635.59, -1246.68]], [[-1512.02, -1486.1], [-1504.48, -1486.18], [-1505.27, -1477.92], [-1504.39, -1440.78], [-1503.51, -1414.24], [-1503.01, -1399.33], [-1504.75, -1399.32], [-1504.67, -1379.36], [-1504.56, -1372.66], [-1508.51, -1372.55], [-1508.72, -1379.37], [-1510.3, -1429.13], [-1511.79, -1478.61], [-1512.02, -1486.1]], [[-1514.85, -1607.59], [-1506.65, -1607.7], [-1506.63, -1600.74], [-1506.18, -1571.45], [-1505.12, -1528.09], [-1504.46, -1501.14], [-1504.24, -1492.18], [-1512.22, -1492.1], [-1512.57, -1501.05], [-1514.43, -1549.94], [-1514.79, -1600.24], [-1514.85, -1607.59]], [[-1514.97, -1686.58], [-1516.02, -1722.4], [-1516.4, -1728.19], [-1509.28, -1728.33], [-1508.5, -1722.9], [-1508.06, -1702.8], [-1507.29, -1655.08], [-1506.81, -1622.38], [-1506.7, -1614.7], [-1514.92, -1614.59], [-1515.0, -1622.27], [-1515.7, -1661.07], [-1515.4, -1672.0], [-1514.97, -1686.58]], [[-1510.73, -1807.28], [-1501.35, -1829.71], [-1497.27, -1829.9], [-1490.45, -1831.9], [-1492.89, -1826.91], [-1501.54, -1803.71], [-1502.12, -1801.6], [-1504.59, -1792.59], [-1507.19, -1783.1], [-1509.68, -1761.29], [-1510.54, -1742.19], [-1509.92, -1734.32], [-1516.72, -1734.18], [-1517.09, -1743.03], [-1515.53, -1781.17], [-1510.73, -1807.28]], [[-1675.58, -736.34], [-1633.87, -738.37], [-1627.83, -738.66], [-1627.81, -736.43], [-1627.38, -699.44], [-1627.06, -688.7], [-1627.02, -687.1], [-1626.19, -680.74], [-1686.09, -678.19], [-1685.97, -675.19], [-1686.09, -678.19], [-1710.4, -677.14], [-1715.49, -676.93], [-1742.63, -675.78], [-1744.38, -675.7], [-1748.77, -675.51], [-1749.73, -733.12], [-1745.58, -733.31], [-1743.78, -733.4], [-1717.14, -734.61], [-1675.58, -736.34]], [[-1641.32, -1233.87], [-1641.21, -1230.13], [-1638.58, -1140.49], [-1638.4, -1134.86], [-1638.16, -1126.27], [-1643.92, -1126.15], [-1646.13, -1126.11], [-1703.82, -1124.95], [-1710.79, -1124.81], [-1756.71, -1123.89], [-1760.36, -1123.81], [-1760.53, -1131.99], [-1761.53, -1182.37], [-1762.79, -1230.89], [-1762.99, -1238.69], [-1759.09, -1238.79], [-1731.67, -1239.49], [-1707.75, -1239.77], [-1646.63, -1240.5], [-1641.52, -1240.56], [-1641.32, -1233.87]], [[-1700.69, -1603.44], [-1658.11, -1604.3], [-1655.26, -1604.36], [-1648.83, -1604.36], [-1648.66, -1597.41], [-1647.47, -1547.36], [-1646.72, -1500.76], [-1646.67, -1497.57], [-1646.53, -1489.31], [-1652.54, -1489.26], [-1652.76, -1489.25], [-1764.58, -1487.34], [-1769.75, -1487.25], [-1769.92, -1495.03], [-1770.91, -1543.75], [-1771.78, -1595.26], [-1771.89, -1601.79], [-1767.72, -1601.97], [-1764.97, -1602.03], [-1700.69, -1603.44]], [[-1519.0, -1485.47], [-1518.79, -1478.4], [-1517.3, -1428.91], [-1515.72, -1379.15], [-1515.44, -1370.39], [-1519.85, -1370.32], [-1530.35, -1370.13], [-1550.08, -1369.71], [-1631.41, -1368.31], [-1636.95, -1368.21], [-1637.13, -1374.86], [-1637.19, -1376.94], [-1638.6, -1426.88], [-1640.0, -1471.02], [-1640.15, -1475.64], [-1640.37, -1482.39], [-1634.75, -1482.49], [-1602.93, -1483.05], [-1559.05, -1484.38], [-1555.35, -1484.48], [-1530.17, -1485.16], [-1524.73, -1485.3], [-1522.69, -1485.36], [-1519.0, -1485.47]], [[-1658.33, -1724.75], [-1651.78, -1724.83], [-1651.6, -1718.19], [-1651.56, -1714.67], [-1651.05, -1677.61], [-1650.92, -1668.18], [-1649.28, -1618.92], [-1649.03, -1611.36], [-1655.33, -1611.36], [-1658.26, -1611.3], [-1700.84, -1610.43], [-1765.12, -1609.03], [-1767.95, -1608.97], [-1772.07, -1608.79], [-1772.35, -1616.32], [-1774.17, -1665.88], [-1775.96, -1714.52], [-1776.25, -1722.32], [-1770.86, -1722.49], [-1725.66, -1723.87], [-1675.66, -1724.52], [-1658.33, -1724.75]], [[-1612.59, -1725.68], [-1603.65, -1725.87], [-1556.98, -1726.85], [-1528.22, -1727.43], [-1523.37, -1727.54], [-1523.01, -1722.06], [-1521.98, -1686.58], [-1522.4, -1672.2], [-1522.71, -1661.1], [-1522.0, -1622.16], [-1521.91, -1614.45], [-1525.17, -1614.35], [-1527.72, -1614.31], [-1594.82, -1613.14], [-1635.05, -1611.74], [-1637.32, -1611.67], [-1643.03, -1611.47], [-1643.28, -1619.12], [-1644.92, -1668.32], [-1645.05, -1677.69], [-1645.56, -1714.75], [-1645.6, -1718.3], [-1645.78, -1724.88], [-1640.28, -1724.91], [-1612.59, -1725.68]], [[-1519.56, -1500.78], [-1519.24, -1492.46], [-1522.89, -1492.36], [-1524.92, -1492.3], [-1530.35, -1492.16], [-1555.54, -1491.48], [-1559.26, -1491.37], [-1603.1, -1490.05], [-1634.87, -1489.48], [-1640.53, -1489.39], [-1640.67, -1497.66], [-1640.72, -1500.86], [-1641.48, -1547.48], [-1642.67, -1597.55], [-1642.83, -1604.47], [-1637.08, -1604.67], [-1634.81, -1604.75], [-1594.64, -1606.14], [-1527.6, -1607.32], [-1525.02, -1607.36], [-1521.85, -1607.45], [-1521.79, -1600.19], [-1521.43, -1549.78], [-1519.56, -1500.78]], [[-1641.53, -1258.1], [-1641.53, -1255.76], [-1641.59, -1246.56], [-1646.7, -1246.5], [-1707.82, -1245.77], [-1731.78, -1245.48], [-1759.24, -1244.79], [-1763.14, -1244.69], [-1763.34, -1253.33], [-1764.48, -1302.12], [-1765.75, -1352.22], [-1765.95, -1360.22], [-1761.41, -1360.34], [-1758.98, -1360.38], [-1649.57, -1362.02], [-1647.63, -1362.04], [-1642.79, -1362.11], [-1642.56, -1353.47], [-1641.31, -1305.32], [-1641.53, -1258.1]], [[-1643.13, -1374.69], [-1642.95, -1368.11], [-1647.71, -1368.04], [-1649.65, -1368.02], [-1759.07, -1366.38], [-1761.53, -1366.34], [-1766.11, -1366.21], [-1766.29, -1373.77], [-1767.53, -1423.02], [-1769.29, -1472.67], [-1769.56, -1480.25], [-1764.46, -1480.34], [-1652.6, -1482.25], [-1652.41, -1482.26], [-1646.37, -1482.31], [-1646.15, -1475.45], [-1646.0, -1470.83], [-1644.6, -1426.7], [-1643.19, -1376.77], [-1643.13, -1374.69]], [[-1755.31, -928.82], [-1757.02, -990.52], [-1757.2, -997.21], [-1752.39, -997.31], [-1750.79, -997.35], [-1716.09, -998.09], [-1703.35, -998.23], [-1696.84, -998.18], [-1692.7, -998.2], [-1676.39, -998.72], [-1643.76, -999.26], [-1640.45, -999.31], [-1634.58, -999.37], [-1634.39, -991.59], [-1633.25, -943.74], [-1632.65, -922.48], [-1632.26, -908.45], [-1631.2, -873.13], [-1631.15, -871.54], [-1631.08, -869.01], [-1637.37, -868.71], [-1658.73, -867.67], [-1695.02, -865.91], [-1721.04, -864.7], [-1749.05, -863.35], [-1753.55, -863.14], [-1753.61, -865.26], [-1753.96, -879.49], [-1754.01, -880.9], [-1755.0, -917.43], [-1755.23, -926.24], [-1759.23, -926.14], [-1755.23, -926.25], [-1755.31, -928.82]], [[-1710.67, -1118.81], [-1703.71, -1118.95], [-1646.02, -1120.11], [-1643.8, -1120.15], [-1637.98, -1120.27], [-1637.75, -1112.72], [-1637.16, -1086.97], [-1636.44, -1062.45], [-1635.11, -1013.85], [-1634.77, -1005.37], [-1640.53, -1005.31], [-1643.85, -1005.26], [-1676.53, -1004.72], [-1692.8, -1004.2], [-1696.83, -1004.18], [-1703.36, -1004.23], [-1716.18, -1004.09], [-1750.92, -1003.35], [-1752.52, -1003.31], [-1757.34, -1003.21], [-1757.47, -1009.93], [-1758.38, -1059.74], [-1762.38, -1059.67], [-1758.38, -1059.79], [-1759.97, -1110.32], [-1760.21, -1117.81], [-1756.59, -1117.89], [-1710.67, -1118.81]], [[-1629.29, -796.24], [-1629.2, -792.62], [-1628.66, -770.57], [-1628.17, -746.19], [-1628.07, -744.65], [-1634.16, -744.36], [-1675.85, -742.33], [-1717.4, -740.61], [-1744.05, -739.39], [-1745.86, -739.3], [-1749.89, -739.12], [-1751.69, -789.9], [-1747.14, -790.11], [-1709.5, -792.09], [-1692.09, -792.98], [-1672.42, -794.0], [-1655.96, -794.85], [-1637.96, -795.79], [-1635.09, -795.94], [-1629.29, -796.24]], [[-1630.31, -837.02], [-1629.51, -804.96], [-1629.44, -802.25], [-1635.4, -801.93], [-1638.28, -801.78], [-1656.27, -800.85], [-1672.73, -800.0], [-1692.4, -798.98], [-1709.81, -798.08], [-1747.44, -796.1], [-1751.93, -795.89], [-1752.01, -797.67], [-1752.39, -805.09], [-1752.49, -810.55], [-1752.65, -820.44], [-1753.09, -847.1], [-1753.14, -849.14], [-1748.38, -849.37], [-1720.38, -850.72], [-1694.35, -851.93], [-1658.05, -853.69], [-1636.7, -854.73], [-1630.76, -855.01], [-1630.68, -850.27], [-1630.57, -848.76], [-1630.31, -837.02]], [[-1745.9, -484.68], [-1739.87, -484.86], [-1627.38, -491.02], [-1621.17, -491.32], [-1620.96, -486.47], [-1620.8, -482.9], [-1619.09, -443.98], [-1618.62, -433.28], [-1615.85, -379.4], [-1615.72, -376.41], [-1621.88, -376.1], [-1684.78, -372.92], [-1734.91, -370.41], [-1741.81, -370.06], [-1741.87, -374.57], [-1742.64, -394.48], [-1742.84, -399.79], [-1743.79, -428.62], [-1745.37, -460.51], [-1745.8, -479.01], [-1745.9, -484.68]], [[-1612.08, -304.27], [-1610.88, -281.98], [-1609.23, -251.2], [-1609.07, -247.26], [-1608.95, -244.78], [-1697.28, -240.54], [-1733.69, -238.79], [-1738.4, -238.56], [-1738.58, -241.5], [-1738.65, -245.0], [-1739.17, -267.96], [-1740.41, -298.48], [-1734.93, -298.76], [-1682.38, -300.93], [-1617.38, -304.01], [-1612.08, -304.27]], [[-1617.54, -307.51], [-1682.54, -304.43], [-1735.09, -302.25], [-1740.51, -301.98], [-1741.5, -352.38], [-1741.58, -356.05], [-1734.21, -356.42], [-1684.08, -358.94], [-1621.18, -362.12], [-1615.49, -362.41], [-1615.24, -358.33], [-1614.73, -349.55], [-1612.28, -307.76], [-1617.54, -307.51]], [[-1373.7, -2169.65], [-1375.71, -2253.46], [-1375.85, -2259.39], [-1382.85, -2259.22], [-1375.86, -2259.57], [-1376.19, -2266.18], [-1380.6, -2355.48], [-1380.78, -2359.0], [-1380.75, -2359.0], [-1377.84, -2359.14], [-1376.23, -2359.22], [-1325.16, -2361.77], [-1280.48, -2364.08], [-1274.84, -2361.38], [-1246.27, -2344.6], [-1236.1, -2338.85], [-1232.72, -2336.94], [-1230.12, -2335.47], [-1231.2, -2333.61], [-1242.32, -2314.54], [-1259.99, -2284.06], [-1266.45, -2272.92], [-1290.99, -2230.59], [-1292.57, -2227.87], [-1319.24, -2177.91], [-1327.68, -2162.09], [-1351.5, -2117.48], [-1361.85, -2099.37], [-1365.91, -2090.29], [-1365.93, -2090.35], [-1367.74, -2099.42], [-1369.59, -2111.52], [-1373.12, -2116.35], [-1371.52, -2116.42], [-1373.09, -2151.25], [-1373.46, -2159.32], [-1373.7, -2169.65]], [[-1352.66, -2082.84], [-1356.07, -2077.02], [-1361.78, -2082.35], [-1355.6, -2096.2], [-1345.37, -2114.09], [-1323.16, -2155.69], [-1314.28, -2150.87], [-1334.41, -2115.27], [-1341.21, -2103.22], [-1352.66, -2082.84]], [[-1224.03, -2332.02], [-1215.59, -2327.23], [-1216.91, -2324.8], [-1242.13, -2278.37], [-1252.3, -2283.36], [-1236.27, -2311.02], [-1225.16, -2330.08], [-1224.03, -2332.02]], [[-1269.44, -2365.16], [-1264.33, -2374.82], [-1253.32, -2392.1], [-1247.55, -2401.15], [-1244.52, -2405.89], [-1201.93, -2487.49], [-1207.25, -2490.27], [-1249.72, -2408.9], [-1252.61, -2404.38], [-1258.38, -2395.32], [-1264.55, -2385.64], [-1264.98, -2392.02], [-1267.19, -2424.57], [-1267.6, -2435.0], [-1268.39, -2454.84], [-1269.54, -2483.67], [-1270.68, -2512.47], [-1271.62, -2520.24], [-1271.9, -2522.49], [-1272.89, -2530.73], [-1273.08, -2532.24], [-1282.18, -2561.14], [-1291.62, -2591.1], [-1292.61, -2594.25], [-1294.43, -2610.18], [-1289.53, -2610.72], [-1244.32, -2612.75], [-1228.42, -2617.48], [-1215.34, -2623.25], [-1195.63, -2636.07], [-1180.77, -2639.99], [-1149.99, -2643.38], [-1111.07, -2646.66], [-1082.73, -2648.34], [-1068.73, -2647.6], [-1065.2, -2646.25], [-1070.12, -2634.03], [-1073.39, -2625.89], [-1081.44, -2605.84], [-1082.78, -2602.72], [-1096.54, -2570.71], [-1114.09, -2537.47], [-1115.62, -2534.7], [-1125.25, -2517.26], [-1122.18, -2515.56], [-1125.26, -2517.24], [-1133.37, -2502.36], [-1145.13, -2482.81], [-1152.55, -2470.48], [-1185.56, -2413.16], [-1193.46, -2398.02], [-1207.15, -2374.68], [-1224.38, -2345.28], [-1227.09, -2340.65], [-1229.77, -2342.16], [-1233.15, -2344.08], [-1243.28, -2349.8], [-1269.44, -2365.16]], [[-1300.28, -2695.56], [-1302.46, -2744.29], [-1303.52, -2767.8], [-1305.25, -2806.4], [-1307.73, -2839.02], [-1309.44, -2861.43], [-1309.77, -2863.92], [-1310.67, -2870.73], [-1304.52, -2871.92], [-1261.59, -2880.2], [-1244.89, -2883.43], [-1187.1, -2894.59], [-1156.73, -2900.46], [-1102.04, -2910.69], [-1015.42, -2926.59], [-1010.46, -2927.34], [-1010.18, -2921.43], [-1012.55, -2878.79], [-1017.69, -2839.57], [-1020.37, -2820.12], [-1027.17, -2778.75], [-1035.04, -2744.16], [-1042.68, -2714.34], [-1044.94, -2706.99], [-1058.24, -2663.59], [-1062.97, -2651.82], [-1067.47, -2653.54], [-1082.75, -2654.35], [-1111.5, -2652.64], [-1150.57, -2649.36], [-1181.87, -2645.91], [-1198.09, -2641.63], [-1218.21, -2628.55], [-1230.49, -2623.12], [-1245.32, -2618.71], [-1289.99, -2616.7], [-1295.18, -2616.14], [-1296.42, -2624.97], [-1297.45, -2633.33], [-1297.6, -2635.98], [-1300.28, -2695.56]], [[-1460.67, -2815.21], [-1469.66, -2808.33], [-1474.81, -2804.4], [-1477.16, -2808.34], [-1486.77, -2825.26], [-1482.31, -2822.5], [-1475.44, -2818.43], [-1469.33, -2815.75], [-1465.77, -2815.0], [-1461.07, -2815.14], [-1460.67, -2815.21]], [[-1316.57, -2869.59], [-1315.72, -2863.13], [-1315.4, -2860.81], [-1313.71, -2838.57], [-1311.24, -2806.04], [-1309.51, -2767.53], [-1308.45, -2744.02], [-1306.27, -2695.29], [-1303.6, -2635.68], [-1303.43, -2632.78], [-1302.36, -2624.19], [-1301.18, -2615.72], [-1307.06, -2615.5], [-1340.48, -2614.02], [-1348.72, -2613.8], [-1390.51, -2611.97], [-1393.36, -2611.54], [-1394.13, -2618.21], [-1395.58, -2630.79], [-1397.25, -2638.4], [-1408.43, -2678.09], [-1420.65, -2710.37], [-1427.5, -2726.09], [-1443.9, -2759.27], [-1466.04, -2794.75], [-1468.66, -2799.03], [-1464.81, -2801.97], [-1446.78, -2815.75], [-1447.08, -2816.15], [-1413.53, -2841.18], [-1399.14, -2848.4], [-1363.95, -2859.04], [-1329.73, -2867.07], [-1326.74, -2867.65], [-1316.57, -2869.59]], [[-1387.32, -2505.31], [-1391.1, -2572.2], [-1392.31, -2598.75], [-1392.59, -2604.91], [-1392.66, -2605.58], [-1389.93, -2605.99], [-1348.52, -2607.81], [-1340.27, -2608.02], [-1306.82, -2609.51], [-1300.42, -2609.74], [-1298.51, -2593.0], [-1297.34, -2589.3], [-1287.9, -2559.34], [-1278.97, -2530.97], [-1278.85, -2530.01], [-1277.86, -2521.77], [-1277.58, -2519.52], [-1276.67, -2511.99], [-1275.53, -2483.43], [-1274.38, -2454.6], [-1273.6, -2434.76], [-1273.18, -2424.25], [-1270.97, -2391.61], [-1269.98, -2376.98], [-1274.74, -2367.98], [-1279.27, -2370.15], [-1325.46, -2367.77], [-1376.52, -2365.22], [-1378.13, -2365.14], [-1380.53, -2365.02], [-1381.07, -2365.09], [-1381.32, -2370.45], [-1385.31, -2475.06], [-1386.03, -2490.47], [-1393.02, -2490.14], [-1386.04, -2490.58], [-1386.52, -2498.25], [-1387.32, -2505.31]], [[-1477.95, -2787.39], [-1456.14, -2752.45], [-1440.2, -2720.19], [-1433.62, -2705.1], [-1421.74, -2673.71], [-1410.84, -2634.99], [-1409.4, -2628.48], [-1408.04, -2616.61], [-1406.89, -2606.71], [-1399.94, -2607.51], [-1406.89, -2606.71], [-1406.55, -2603.78], [-1406.29, -2598.11], [-1405.08, -2571.49], [-1401.27, -2504.13], [-1400.47, -2497.03], [-1400.23, -2493.29], [-1406.61, -2493.42], [-1409.99, -2493.24], [-1503.85, -2488.19], [-1539.12, -2487.36], [-1542.73, -2487.28], [-1540.19, -2507.61], [-1520.68, -2720.1], [-1517.28, -2744.55], [-1513.4, -2759.26], [-1497.84, -2776.1], [-1482.58, -2788.17], [-1479.78, -2790.38], [-1477.95, -2787.39]], [[-1298.25, -2179.17], [-1304.4, -2168.33], [-1310.83, -2156.97], [-1319.87, -2161.87], [-1313.06, -2174.61], [-1286.45, -2224.47], [-1284.93, -2227.08], [-1260.4, -2269.41], [-1255.32, -2278.16], [-1245.05, -2273.12], [-1249.15, -2265.88], [-1257.08, -2251.88], [-1298.25, -2179.17]], [[-1508.46, -862.59], [-1505.91, -862.72], [-1502.52, -862.88], [-1502.3, -857.99], [-1501.52, -832.79], [-1501.49, -819.49], [-1501.18, -775.14], [-1500.05, -750.03], [-1503.72, -749.85], [-1505.82, -804.86], [-1510.81, -804.67], [-1505.82, -804.9], [-1508.21, -857.51], [-1508.46, -862.59]], [[-1460.96, -1886.98], [-1468.12, -1874.12], [-1484.55, -1843.92], [-1486.86, -1839.21], [-1498.26, -1835.86], [-1498.27, -1835.86], [-1479.65, -1870.97], [-1468.65, -1891.66], [-1467.1, -1894.58], [-1463.49, -1892.54], [-1459.07, -1890.04], [-1460.36, -1887.87], [-1460.96, -1886.98]], [[-1354.13, -2066.27], [-1350.51, -2064.29], [-1329.24, -2052.32], [-1323.45, -2049.12], [-1288.64, -2028.89], [-1285.45, -2027.12], [-1300.06, -2009.84], [-1320.19, -1979.15], [-1345.66, -1924.52], [-1381.62, -1858.32], [-1386.38, -1849.52], [-1419.41, -1789.08], [-1422.54, -1782.83], [-1427.98, -1768.5], [-1430.22, -1757.66], [-1430.86, -1747.9], [-1430.93, -1735.85], [-1434.0, -1735.78], [-1466.4, -1735.15], [-1470.01, -1735.08], [-1497.67, -1734.55], [-1502.91, -1734.45], [-1503.52, -1742.31], [-1502.7, -1760.74], [-1500.3, -1781.77], [-1497.84, -1790.74], [-1495.37, -1799.74], [-1494.87, -1801.55], [-1486.45, -1824.14], [-1480.96, -1835.35], [-1484.1, -1836.89], [-1480.96, -1835.35], [-1478.33, -1840.71], [-1461.98, -1870.75], [-1455.0, -1883.3], [-1454.45, -1884.11], [-1450.97, -1889.97], [-1453.98, -1891.76], [-1450.94, -1890.02], [-1398.44, -1981.9], [-1387.43, -2003.15], [-1385.81, -2006.28], [-1370.01, -2036.76], [-1365.57, -2044.87], [-1354.13, -2066.27]], [[-1404.59, -1985.25], [-1455.04, -1896.95], [-1459.56, -1899.51], [-1463.3, -1901.62], [-1448.76, -1928.13], [-1431.85, -1958.95], [-1414.37, -1990.71], [-1411.94, -1995.07], [-1393.47, -2028.52], [-1384.52, -2045.75], [-1380.05, -2053.9], [-1373.19, -2061.28], [-1366.06, -2074.03], [-1360.63, -2068.96], [-1371.73, -2048.2], [-1376.19, -2040.05], [-1392.02, -2009.5], [-1393.64, -2006.38], [-1404.59, -1985.25]], [[-1377.5, -2101.0], [-1377.54, -2103.99], [-1376.66, -2098.23], [-1377.5, -2101.0]], [[-1380.01, -2072.14], [-1380.8, -2084.94], [-1380.81, -2085.99], [-1376.39, -2079.11], [-1372.04, -2077.66], [-1378.89, -2065.43], [-1380.08, -2064.15], [-1379.81, -2066.93], [-1380.01, -2072.14]], [[-1429.78, -1494.01], [-1442.42, -1493.85], [-1468.11, -1493.11], [-1478.84, -1492.81], [-1481.66, -1492.73], [-1483.26, -1492.68], [-1490.55, -1492.49], [-1492.71, -1492.43], [-1497.24, -1492.31], [-1497.46, -1501.31], [-1498.12, -1528.26], [-1499.18, -1571.59], [-1499.63, -1600.8], [-1499.65, -1607.84], [-1494.87, -1607.96], [-1491.61, -1608.05], [-1486.51, -1608.11], [-1481.61, -1608.2], [-1432.12, -1609.02], [-1427.77, -1609.09], [-1424.6, -1494.05], [-1429.78, -1494.01]], [[-1491.74, -1615.04], [-1495.05, -1614.96], [-1499.71, -1614.84], [-1499.81, -1622.48], [-1500.29, -1655.19], [-1501.06, -1702.93], [-1501.51, -1723.48], [-1502.22, -1728.46], [-1497.56, -1728.55], [-1469.89, -1729.08], [-1466.28, -1729.15], [-1433.88, -1729.78], [-1430.87, -1729.85], [-1427.96, -1616.08], [-1432.23, -1616.01], [-1481.73, -1615.2], [-1486.61, -1615.11], [-1491.74, -1615.04]], [[-1479.34, -1331.38], [-1475.97, -1331.91], [-1472.69, -1331.94], [-1468.89, -1331.19], [-1464.87, -1330.22], [-1462.99, -1328.63], [-1399.41, -1271.11], [-1391.38, -1263.84], [-1368.01, -1242.71], [-1278.21, -1161.47], [-1242.17, -1128.86], [-1246.93, -1123.75], [-1256.81, -1112.97], [-1258.53, -1111.03], [-1260.06, -1109.05], [-1261.65, -1106.64], [-1263.0, -1104.13], [-1264.23, -1101.54], [-1265.39, -1098.63], [-1266.42, -1095.46], [-1267.28, -1092.19], [-1267.97, -1088.89], [-1268.55, -1085.23], [-1268.86, -1081.54], [-1268.49, -1033.12], [-1268.49, -1029.24], [-1274.24, -1029.24], [-1297.82, -1028.88], [-1352.12, -1029.52], [-1357.95, -1029.71], [-1382.39, -1028.4], [-1393.75, -1026.65], [-1410.13, -1023.8], [-1417.63, -1022.5], [-1442.39, -1019.58], [-1483.64, -1019.43], [-1489.36, -1019.6], [-1489.27, -1026.05], [-1487.5, -1062.58], [-1486.7, -1091.42], [-1484.82, -1121.93], [-1487.3, -1183.24], [-1489.59, -1227.42], [-1489.65, -1234.26], [-1489.8, -1247.44], [-1493.3, -1247.4], [-1489.8, -1247.59], [-1492.23, -1292.22], [-1493.31, -1311.92], [-1493.51, -1316.54], [-1492.62, -1320.01], [-1491.17, -1322.95], [-1489.56, -1325.45], [-1488.09, -1327.01], [-1485.95, -1328.82], [-1483.97, -1329.83], [-1479.34, -1331.38]], [[-1504.22, -1233.71], [-1504.49, -1244.2], [-1496.76, -1244.34], [-1496.65, -1234.19], [-1496.59, -1227.21], [-1494.29, -1182.91], [-1491.83, -1122.01], [-1493.69, -1091.73], [-1494.5, -1062.84], [-1496.26, -1026.27], [-1496.32, -1022.5], [-1498.95, -1024.88], [-1499.83, -1028.19], [-1500.27, -1031.76], [-1500.7, -1041.9], [-1500.65, -1049.98], [-1500.79, -1067.36], [-1501.52, -1073.97], [-1502.99, -1079.19], [-1504.39, -1082.14], [-1504.31, -1084.52], [-1505.55, -1084.56], [-1505.57, -1084.6], [-1504.31, -1084.58], [-1504.14, -1092.94], [-1503.17, -1141.24], [-1502.87, -1156.79], [-1503.65, -1203.42], [-1504.13, -1231.35], [-1504.22, -1233.71]], [[-1496.96, -1250.34], [-1504.63, -1250.2], [-1505.71, -1307.75], [-1506.18, -1318.41], [-1506.78, -1331.84], [-1507.05, -1337.91], [-1507.51, -1348.39], [-1507.82, -1355.42], [-1508.02, -1360.09], [-1502.1, -1355.53], [-1501.89, -1349.56], [-1501.61, -1341.59], [-1500.3, -1311.59], [-1496.8, -1311.75], [-1500.3, -1311.55], [-1499.22, -1291.84], [-1496.96, -1250.34]], [[-1477.54, -1359.15], [-1469.39, -1356.92], [-1469.12, -1357.9], [-1442.15, -1332.11], [-1413.32, -1306.06], [-1381.08, -1276.93], [-1380.24, -1277.85], [-1380.24, -1277.85], [-1381.08, -1276.93], [-1379.94, -1275.9], [-1379.21, -1271.16], [-1377.08, -1266.33], [-1374.44, -1261.0], [-1372.24, -1255.98], [-1386.68, -1269.03], [-1394.71, -1276.3], [-1458.34, -1333.86], [-1460.69, -1331.26], [-1458.43, -1333.94], [-1471.66, -1345.11], [-1482.2, -1353.56], [-1485.25, -1354.92], [-1493.74, -1358.87], [-1493.92, -1362.31], [-1486.68, -1361.66], [-1477.54, -1359.15]], [[-1494.17, -1379.47], [-1494.21, -1388.13], [-1487.57, -1380.68], [-1485.91, -1378.58], [-1479.34, -1370.22], [-1479.13, -1369.96], [-1484.9, -1371.54], [-1494.05, -1372.36], [-1494.17, -1379.47]], [[-1492.72, -1327.93], [-1493.93, -1326.06], [-1494.62, -1341.87], [-1494.89, -1349.8], [-1494.96, -1351.72], [-1488.15, -1348.55], [-1485.88, -1347.53], [-1476.11, -1339.71], [-1471.44, -1335.77], [-1472.31, -1335.94], [-1476.3, -1335.91], [-1480.29, -1335.28], [-1485.52, -1333.52], [-1488.18, -1332.17], [-1490.84, -1329.92], [-1492.72, -1327.93]], [[-1504.25, -1031.43], [-1503.77, -1027.43], [-1502.51, -1022.71], [-1497.4, -1018.08], [-1498.34, -1017.94], [-1502.02, -1017.1], [-1503.91, -1016.02], [-1505.13, -1014.29], [-1507.42, -1009.51], [-1507.49, -1008.09], [-1507.34, -1012.88], [-1507.35, -1018.32], [-1507.36, -1023.59], [-1505.59, -1049.74], [-1504.91, -1068.19], [-1504.79, -1067.12], [-1504.65, -1049.98], [-1504.7, -1041.83], [-1504.25, -1031.43]], [[-1267.97, -1023.24], [-1267.59, -1021.33], [-1267.56, -1012.17], [-1269.04, -1008.56], [-1274.3, -1008.39], [-1297.24, -1008.34], [-1307.92, -1009.11], [-1357.53, -1008.87], [-1363.46, -1008.51], [-1383.2, -1008.84], [-1399.36, -1011.75], [-1422.09, -1015.93], [-1416.76, -1016.56], [-1409.1, -1017.89], [-1392.78, -1020.73], [-1381.77, -1022.42], [-1357.89, -1023.7], [-1352.25, -1023.52], [-1297.81, -1022.88], [-1274.19, -1023.24], [-1267.97, -1023.24]], [[-1480.47, -387.08], [-1483.37, -405.37], [-1484.3, -413.26], [-1484.99, -421.14], [-1485.75, -439.17], [-1486.37, -458.3], [-1486.44, -459.83], [-1487.97, -492.35], [-1488.15, -498.01], [-1481.26, -498.65], [-1480.83, -492.34], [-1479.24, -468.78], [-1474.66, -400.4], [-1472.61, -386.6], [-1472.01, -383.07], [-1479.45, -382.85], [-1480.47, -387.08]], [[-1481.69, -505.64], [-1483.26, -505.49], [-1488.5, -505.01], [-1488.95, -511.53], [-1496.03, -615.49], [-1496.88, -625.85], [-1497.09, -628.58], [-1501.69, -674.38], [-1502.04, -680.03], [-1494.67, -680.34], [-1494.36, -674.56], [-1490.87, -634.45], [-1490.6, -631.88], [-1489.68, -621.34], [-1486.3, -587.18], [-1483.59, -539.13], [-1482.04, -511.78], [-1481.69, -505.64]], [[-1500.87, -686.08], [-1503.36, -742.0], [-1503.45, -743.85], [-1499.68, -744.04], [-1499.51, -740.6], [-1496.49, -686.27], [-1500.87, -686.08]], [[-1458.94, -255.6], [-1458.99, -255.44], [-1459.06, -255.63], [-1460.72, -259.18], [-1462.58, -264.53], [-1464.37, -307.88], [-1465.68, -323.12], [-1468.26, -339.85], [-1475.1, -365.59], [-1475.97, -368.95], [-1469.37, -369.14], [-1468.47, -364.83], [-1465.29, -351.41], [-1461.3, -331.23], [-1459.36, -312.42], [-1458.53, -294.66], [-1457.09, -264.18], [-1457.93, -259.19], [-1458.94, -255.6]], [[-1004.69, -2823.04], [-1005.15, -2819.06], [-1006.77, -2805.6], [-1008.87, -2788.16], [-1016.75, -2749.02], [-1017.74, -2745.14], [-1023.45, -2723.0], [-1028.24, -2704.41], [-1043.69, -2658.37], [-1047.89, -2647.33], [-1056.3, -2649.65], [-1051.63, -2661.25], [-1038.25, -2704.93], [-1035.94, -2712.44], [-1028.23, -2742.51], [-1020.3, -2777.41], [-1013.45, -2819.08], [-1010.75, -2838.64], [-1005.58, -2878.14], [-1003.17, -2921.4], [-1003.47, -2927.82], [-996.77, -2928.67], [-996.95, -2922.84], [-997.66, -2900.28], [-998.89, -2880.05], [-999.89, -2863.77], [-1004.69, -2823.04]], [[-888.28, -2942.4], [-887.86, -2936.45], [-887.57, -2926.09], [-888.02, -2914.93], [-888.85, -2903.35], [-890.46, -2892.16], [-891.77, -2884.93], [-895.86, -2871.14], [-903.78, -2853.52], [-913.81, -2831.21], [-922.61, -2811.64], [-927.15, -2801.55], [-931.65, -2791.53], [-946.73, -2758.0], [-949.24, -2752.4], [-958.98, -2733.87], [-981.94, -2704.02], [-987.05, -2697.39], [-1009.08, -2670.85], [-1027.19, -2650.38], [-1035.01, -2641.37], [-1041.38, -2644.75], [-1037.09, -2656.01], [-1021.52, -2702.42], [-1016.67, -2721.25], [-1010.97, -2743.4], [-1009.92, -2747.45], [-1001.95, -2787.05], [-999.82, -2804.77], [-998.2, -2818.23], [-997.73, -2822.22], [-992.91, -2863.14], [-991.91, -2879.62], [-990.67, -2899.96], [-989.96, -2922.63], [-989.74, -2929.6], [-984.3, -2930.36], [-969.98, -2932.33], [-943.11, -2936.04], [-895.51, -2941.72], [-892.55, -2942.01], [-888.28, -2942.4]], [[-1003.87, -2935.83], [-1004.28, -2943.56], [-1004.33, -2949.37], [-1004.36, -2970.12], [-1004.9, -2979.21], [-997.06, -2979.57], [-996.88, -2971.98], [-996.48, -2959.76], [-996.53, -2951.72], [-996.59, -2947.5], [-996.54, -2944.76], [-996.6, -2936.76], [-1003.87, -2935.83]], [[-1117.96, -2499.36], [-1137.15, -2465.85], [-1145.85, -2450.3], [-1170.35, -2405.38], [-1175.81, -2395.37], [-1185.37, -2398.4], [-1179.42, -2409.79], [-1146.52, -2466.93], [-1139.13, -2479.2], [-1127.3, -2498.88], [-1120.26, -2511.78], [-1112.02, -2509.08], [-1117.96, -2499.36]], [[-1101.72, -2525.95], [-1108.8, -2514.35], [-1117.32, -2517.13], [-1109.49, -2531.32], [-1107.93, -2534.15], [-1090.22, -2567.69], [-1076.34, -2599.96], [-1074.97, -2603.15], [-1066.89, -2623.28], [-1063.62, -2631.42], [-1058.55, -2644.04], [-1050.02, -2641.69], [-1060.03, -2614.92], [-1067.53, -2597.41], [-1071.89, -2587.25], [-1072.93, -2584.81], [-1078.5, -2572.87], [-1096.1, -2535.15], [-1101.72, -2525.95]], [[-1218.34, -2341.74], [-1201.11, -2371.14], [-1188.79, -2392.14], [-1179.35, -2389.15], [-1209.69, -2337.48], [-1212.64, -2332.46], [-1221.0, -2337.2], [-1218.34, -2341.74]], [[-1077.89, -2382.95], [-1077.96, -2385.59], [-1078.12, -2391.02], [-1074.49, -2391.2], [-974.1, -2396.08], [-973.85, -2390.13], [-973.75, -2387.77], [-969.48, -2287.46], [-1075.16, -2282.43], [-1076.52, -2334.95], [-1077.89, -2382.95]], [[-879.23, -2292.19], [-963.49, -2287.76], [-967.75, -2388.03], [-967.85, -2390.38], [-968.1, -2396.36], [-892.8, -2399.81], [-839.86, -2402.46], [-835.28, -2402.66], [-835.08, -2397.51], [-835.01, -2394.79], [-833.94, -2351.84], [-832.5, -2294.26], [-879.23, -2292.19]], [[-536.8, -2278.03], [-517.47, -2279.04], [-471.66, -2281.42], [-422.52, -2283.99], [-407.22, -2284.78], [-407.05, -2281.37], [-402.97, -2199.88], [-402.71, -2194.68], [-430.45, -2193.47], [-468.79, -2191.81], [-471.6, -2191.69], [-515.76, -2189.77], [-532.03, -2189.06], [-536.01, -2188.9], [-536.32, -2194.3], [-539.3, -2233.43], [-542.28, -2277.75], [-536.8, -2278.03]], [[-542.0, -2188.63], [-547.85, -2188.38], [-550.8, -2188.25], [-560.55, -2187.83], [-585.71, -2187.09], [-606.67, -2186.53], [-612.17, -2186.37], [-612.43, -2191.16], [-613.91, -2217.84], [-619.39, -2262.91], [-623.23, -2293.34], [-636.15, -2404.95], [-636.35, -2407.2], [-636.45, -2408.92], [-633.6, -2409.03], [-589.03, -2411.1], [-542.77, -2412.83], [-504.1, -2415.61], [-452.48, -2420.94], [-427.52, -2425.15], [-422.06, -2426.07], [-422.01, -2424.83], [-420.76, -2392.61], [-420.59, -2388.41], [-469.94, -2385.44], [-516.55, -2383.89], [-536.88, -2383.31], [-541.18, -2383.37], [-547.11, -2382.57], [-549.96, -2379.95], [-551.81, -2376.83], [-551.77, -2373.83], [-551.23, -2331.36], [-548.47, -2280.43], [-545.47, -2280.59], [-548.47, -2280.39], [-545.28, -2233.0], [-542.3, -2193.9], [-542.0, -2188.63]], [[-860.99, -2170.95], [-796.89, -2173.7], [-793.94, -2173.78], [-793.57, -2168.31], [-791.1, -2092.21], [-790.89, -2087.64], [-839.23, -2087.96], [-855.02, -2085.75], [-870.44, -2083.8], [-883.53, -2082.1], [-954.46, -2075.4], [-954.63, -2079.5], [-958.09, -2160.73], [-958.35, -2166.88], [-952.02, -2167.15], [-860.99, -2170.95]], [[-982.06, -2070.12], [-1001.91, -2063.98], [-1028.6, -2057.4], [-1047.01, -2056.22], [-1063.67, -2057.36], [-1063.89, -2061.43], [-1069.15, -2155.27], [-1069.5, -2161.36], [-1063.42, -2161.58], [-1022.61, -2163.12], [-969.83, -2166.24], [-964.34, -2166.56], [-964.09, -2160.48], [-960.63, -2079.25], [-960.43, -2074.54], [-982.06, -2070.12]], [[-757.32, -2523.97], [-698.63, -2527.61], [-694.82, -2527.84], [-686.6, -2528.35], [-683.94, -2520.6], [-682.87, -2516.77], [-678.19, -2425.72], [-678.06, -2423.21], [-677.99, -2421.08], [-682.05, -2420.9], [-709.75, -2419.44], [-715.7, -2415.42], [-824.11, -2410.23], [-829.55, -2409.94], [-829.76, -2415.7], [-829.87, -2418.5], [-833.59, -2510.7], [-833.72, -2513.96], [-833.97, -2520.07], [-827.74, -2520.38], [-757.32, -2523.97]], [[-798.36, -2753.83], [-792.68, -2754.12], [-788.92, -2754.31], [-763.62, -2699.56], [-759.75, -2691.04], [-738.61, -2646.59], [-743.85, -2646.25], [-748.49, -2645.95], [-752.5, -2645.69], [-840.5, -2640.31], [-840.8, -2647.59], [-840.99, -2652.27], [-842.82, -2696.55], [-844.56, -2742.49], [-844.7, -2746.16], [-844.9, -2751.49], [-839.06, -2751.78], [-798.36, -2753.83]], [[-699.0, -2533.59], [-757.65, -2529.96], [-828.04, -2526.37], [-834.25, -2526.06], [-834.58, -2532.02], [-834.77, -2535.53], [-837.32, -2581.73], [-839.73, -2625.64], [-839.97, -2629.98], [-840.21, -2634.31], [-752.12, -2639.71], [-748.1, -2639.97], [-743.47, -2640.26], [-735.93, -2640.76], [-729.28, -2625.14], [-716.63, -2595.44], [-714.1, -2589.5], [-705.64, -2569.64], [-696.49, -2550.05], [-689.08, -2534.21], [-695.19, -2533.83], [-699.0, -2533.59]], [[-615.94, -2148.71], [-615.07, -2132.79], [-614.24, -2103.7], [-614.83, -2101.03], [-615.9, -2099.15], [-618.82, -2097.38], [-622.72, -2096.17], [-625.67, -2095.68], [-631.66, -2095.19], [-663.37, -2093.84], [-778.49, -2087.03], [-784.87, -2087.44], [-785.11, -2092.45], [-787.58, -2168.61], [-787.94, -2174.01], [-784.16, -2174.2], [-669.18, -2177.88], [-621.64, -2179.05], [-617.89, -2179.18], [-617.75, -2173.14], [-616.82, -2159.39], [-615.94, -2148.71]], [[-666.02, -2414.69], [-646.24, -2415.84], [-642.83, -2415.98], [-642.81, -2415.64], [-645.75, -2415.5], [-665.91, -2414.53], [-671.77, -2414.23], [-671.77, -2414.38], [-666.02, -2414.69]], [[-636.82, -2415.91], [-636.83, -2416.23], [-634.59, -2416.33], [-590.09, -2418.51], [-543.4, -2421.1], [-497.22, -2423.79], [-461.65, -2427.74], [-440.41, -2430.07], [-453.42, -2427.88], [-504.71, -2422.59], [-543.15, -2419.82], [-589.32, -2418.09], [-633.91, -2416.02], [-636.82, -2415.91]], [[-677.76, -2413.89], [-681.96, -2413.64], [-707.57, -2412.46], [-707.44, -2412.55], [-681.7, -2413.91], [-677.77, -2414.09], [-677.76, -2413.89]], [[-291.81, -2246.35], [-289.8, -2207.15], [-289.69, -2204.99], [-289.42, -2199.59], [-293.4, -2199.42], [-383.92, -2195.49], [-383.77, -2192.0], [-383.92, -2195.49], [-389.69, -2195.24], [-399.21, -2194.83], [-399.47, -2200.06], [-403.55, -2281.54], [-403.72, -2284.97], [-295.37, -2290.61], [-294.07, -2290.67], [-291.81, -2246.35]], [[-306.16, -2466.36], [-299.72, -2468.84], [-298.24, -2399.84], [-298.1, -2393.6], [-346.91, -2391.24], [-350.84, -2391.05], [-409.77, -2388.93], [-409.67, -2385.93], [-409.79, -2388.93], [-414.6, -2388.72], [-414.76, -2392.84], [-416.02, -2425.06], [-416.18, -2429.16], [-409.28, -2431.16], [-397.34, -2434.64], [-364.03, -2444.17], [-349.35, -2449.72], [-336.04, -2454.77], [-306.79, -2467.99], [-306.16, -2466.36]], [[-255.32, -2395.58], [-292.11, -2393.89], [-292.24, -2399.96], [-293.77, -2471.14], [-258.3, -2484.85], [-257.66, -2472.55], [-254.22, -2399.12], [-254.06, -2395.64], [-255.32, -2395.58]], [[-398.31, -2438.0], [-410.26, -2434.52], [-416.32, -2432.76], [-416.46, -2436.19], [-409.71, -2438.01], [-403.16, -2439.79], [-378.12, -2446.41], [-353.08, -2453.63], [-333.88, -2459.58], [-337.38, -2458.0], [-350.59, -2453.0], [-365.14, -2447.49], [-398.31, -2438.0]], [[-283.7, -2205.29], [-283.81, -2207.46], [-285.81, -2246.65], [-288.23, -2293.96], [-291.73, -2382.97], [-291.92, -2387.89], [-255.04, -2389.58], [-253.82, -2389.64], [-253.66, -2384.51], [-250.83, -2295.5], [-246.52, -2206.8], [-246.27, -2201.45], [-280.61, -2199.98], [-283.42, -2199.85], [-283.7, -2205.29]], [[-517.78, -2285.03], [-537.11, -2284.03], [-542.64, -2283.74], [-545.23, -2331.56], [-545.77, -2373.91], [-545.79, -2375.22], [-545.25, -2376.12], [-544.43, -2376.88], [-540.82, -2377.37], [-536.84, -2377.31], [-516.37, -2377.89], [-469.66, -2379.44], [-417.33, -2382.6], [-411.29, -2382.86], [-411.07, -2377.3], [-409.4, -2336.69], [-407.73, -2296.44], [-407.49, -2290.78], [-422.83, -2289.98], [-471.97, -2287.42], [-517.78, -2285.03]], [[-297.72, -2382.74], [-294.34, -2296.67], [-295.68, -2296.6], [-404.0, -2290.96], [-404.23, -2296.58], [-405.9, -2336.83], [-407.57, -2377.44], [-407.79, -2383.0], [-350.59, -2385.06], [-346.62, -2385.25], [-297.92, -2387.6], [-297.72, -2382.74]], [[-951.24, -896.79], [-987.19, -929.12], [-988.24, -927.95], [-988.25, -927.96], [-987.2, -929.14], [-989.76, -931.4], [-991.65, -935.72], [-993.17, -941.47], [-994.23, -945.21], [-993.76, -952.83], [-986.3, -962.37], [-983.28, -963.92], [-983.99, -965.32], [-983.7, -965.69], [-982.57, -964.39], [-974.06, -971.81], [-966.95, -978.77], [-940.38, -1006.41], [-922.69, -1025.9], [-919.43, -1030.0], [-915.76, -1026.74], [-913.44, -1024.67], [-895.92, -1008.63], [-855.33, -970.88], [-847.31, -963.35], [-836.9, -953.75], [-829.07, -946.58], [-823.0, -941.16], [-812.46, -931.49], [-802.81, -922.12], [-797.14, -916.75], [-789.7, -909.79], [-756.56, -879.85], [-730.14, -856.35], [-726.9, -853.23], [-729.54, -850.36], [-764.17, -812.57], [-772.7, -803.2], [-799.32, -773.11], [-801.23, -771.0], [-807.28, -764.45], [-812.36, -768.92], [-829.55, -784.02], [-839.13, -792.45], [-850.74, -802.65], [-861.54, -812.15], [-896.65, -843.01], [-898.44, -844.58], [-910.4, -855.1], [-913.69, -857.99], [-914.9, -859.05], [-916.33, -857.41], [-917.09, -865.6], [-932.69, -880.04], [-941.7, -888.68], [-951.24, -896.79]], [[-911.96, -1038.79], [-850.12, -1107.31], [-846.1, -1103.63], [-844.95, -1102.64], [-829.26, -1089.19], [-889.87, -1020.32], [-893.52, -1015.92], [-908.74, -1029.87], [-911.11, -1031.97], [-914.95, -1035.38], [-911.96, -1038.79]], [[-775.49, -1178.72], [-771.76, -1175.34], [-763.57, -1167.37], [-760.25, -1165.45], [-755.16, -1163.88], [-750.35, -1163.38], [-724.06, -1141.91], [-717.26, -1136.0], [-712.28, -1128.99], [-710.67, -1123.94], [-710.89, -1120.93], [-712.13, -1119.05], [-713.29, -1117.29], [-731.04, -1095.87], [-738.21, -1085.02], [-764.86, -1044.93], [-767.59, -1043.17], [-769.75, -1042.37], [-771.65, -1042.31], [-773.65, -1043.02], [-775.7, -1044.58], [-792.08, -1064.04], [-823.0, -1091.72], [-825.0, -1089.49], [-823.05, -1091.77], [-841.04, -1107.19], [-842.12, -1108.12], [-846.06, -1111.73], [-780.18, -1182.25], [-779.44, -1181.91], [-777.14, -1180.21], [-775.49, -1178.72]], [[-772.59, -1036.28], [-768.58, -1036.4], [-764.89, -1037.77], [-760.56, -1040.57], [-733.21, -1081.71], [-726.21, -1092.29], [-708.47, -1113.71], [-707.12, -1115.75], [-705.01, -1118.94], [-704.6, -1124.66], [-706.84, -1131.71], [-712.78, -1140.06], [-720.2, -1146.5], [-746.85, -1168.26], [-748.89, -1171.64], [-751.34, -1174.88], [-768.03, -1190.96], [-771.03, -1192.47], [-737.64, -1230.33], [-730.46, -1238.2], [-726.93, -1241.0], [-722.7, -1244.36], [-714.43, -1250.84], [-706.07, -1255.49], [-695.28, -1259.36], [-685.75, -1261.69], [-675.76, -1262.89], [-646.32, -1260.88], [-634.57, -1257.18], [-621.93, -1250.58], [-616.38, -1246.76], [-607.23, -1238.88], [-602.15, -1233.69], [-597.78, -1229.23], [-593.84, -1223.64], [-587.18, -1212.83], [-575.01, -1189.88], [-572.25, -1184.71], [-522.28, -1093.5], [-517.21, -1084.86], [-522.92, -1078.58], [-524.96, -1076.05], [-552.67, -1045.69], [-581.08, -1015.19], [-582.87, -1013.3], [-586.83, -1008.23], [-591.54, -1012.5], [-593.56, -1014.34], [-597.04, -1017.51], [-651.4, -1066.91], [-672.2, -1085.82], [-675.2, -1094.36], [-680.86, -1092.37], [-677.36, -1082.4], [-655.44, -1062.48], [-601.08, -1013.08], [-597.6, -1009.91], [-595.57, -1008.06], [-590.52, -1003.48], [-594.66, -998.1], [-628.34, -962.13], [-650.32, -937.04], [-654.0, -932.85], [-657.99, -936.62], [-709.51, -985.24], [-711.56, -987.17], [-724.62, -999.5], [-728.74, -995.14], [-715.68, -982.8], [-713.63, -980.87], [-662.11, -932.26], [-658.0, -928.38], [-662.19, -923.78], [-689.61, -893.88], [-692.99, -890.2], [-695.76, -887.25], [-718.34, -862.21], [-722.1, -858.32], [-725.38, -861.49], [-751.88, -885.06], [-784.96, -914.94], [-792.34, -921.85], [-797.96, -927.17], [-807.65, -936.58], [-818.31, -946.35], [-824.38, -951.77], [-832.16, -958.91], [-842.54, -968.48], [-850.55, -975.99], [-889.11, -1011.85], [-885.31, -1016.42], [-824.75, -1085.24], [-796.39, -1059.85], [-779.87, -1040.21], [-776.54, -1037.68], [-772.59, -1036.28]], [[-581.11, -1216.31], [-587.99, -1227.5], [-592.39, -1233.73], [-597.15, -1238.59], [-602.44, -1243.99], [-612.1, -1252.31], [-618.31, -1256.59], [-631.88, -1263.67], [-645.01, -1267.81], [-675.94, -1269.92], [-687.01, -1268.59], [-697.29, -1266.07], [-708.97, -1261.89], [-718.32, -1256.69], [-724.74, -1251.65], [-729.39, -1257.23], [-719.21, -1265.37], [-708.24, -1269.92], [-692.57, -1274.54], [-679.32, -1276.32], [-671.44, -1277.17], [-663.12, -1276.93], [-652.56, -1276.06], [-642.78, -1274.08], [-634.71, -1271.9], [-625.88, -1268.37], [-616.79, -1263.75], [-610.97, -1260.34], [-608.76, -1259.05], [-598.24, -1251.55], [-588.95, -1242.05], [-581.22, -1231.68], [-555.55, -1185.88], [-544.27, -1164.29], [-532.75, -1139.11], [-514.15, -1105.07], [-507.78, -1094.87], [-512.22, -1090.19], [-516.19, -1096.95], [-566.09, -1188.04], [-568.83, -1193.17], [-581.11, -1216.31]], [[-921.15, -1049.1], [-887.93, -1086.01], [-807.94, -1172.73], [-806.17, -1174.64], [-795.26, -1182.99], [-788.2, -1187.32], [-785.68, -1188.45], [-783.61, -1188.85], [-783.94, -1188.48], [-853.25, -1114.3], [-850.69, -1111.91], [-853.29, -1114.25], [-917.19, -1043.45], [-920.2, -1040.02], [-925.02, -1044.27], [-921.15, -1049.1]], [[-972.22, -1086.28], [-1009.63, -1120.42], [-1017.36, -1127.81], [-1028.0, -1136.53], [-1045.12, -1152.75], [-1046.78, -1154.79], [-1047.59, -1156.37], [-1047.9, -1157.87], [-1047.79, -1159.78], [-1046.28, -1161.92], [-1014.2, -1187.41], [-990.88, -1206.12], [-986.38, -1201.79], [-985.47, -1201.0], [-970.33, -1187.89], [-946.51, -1165.85], [-937.3, -1157.71], [-927.02, -1148.57], [-922.78, -1146.19], [-918.59, -1147.43], [-903.58, -1165.04], [-785.27, -1295.73], [-782.31, -1299.0], [-760.2, -1279.61], [-754.35, -1274.37], [-744.53, -1265.25], [-738.37, -1258.44], [-741.51, -1255.04], [-743.68, -1252.69], [-751.12, -1244.65], [-813.08, -1177.48], [-810.51, -1175.11], [-813.08, -1177.48], [-893.11, -1090.72], [-926.48, -1053.64], [-930.51, -1048.61], [-934.57, -1052.45], [-936.86, -1054.44], [-954.28, -1069.69], [-964.22, -1078.99], [-972.22, -1086.28]], [[-937.49, -874.94], [-923.81, -862.28], [-923.38, -857.57], [-927.23, -857.85], [-945.25, -873.3], [-954.16, -881.09], [-961.93, -887.97], [-977.91, -901.92], [-1021.81, -942.62], [-1025.31, -945.19], [-1018.37, -947.99], [-1013.14, -942.76], [-991.86, -923.91], [-955.85, -891.52], [-946.4, -883.48], [-937.49, -874.94]], [[-996.54, -940.54], [-995.47, -936.46], [-1008.34, -947.86], [-1011.31, -950.83], [-1007.59, -952.33], [-995.57, -957.62], [-993.72, -958.57], [-997.19, -954.13], [-997.76, -944.83], [-996.54, -940.54]], [[-823.65, -1336.16], [-821.82, -1334.59], [-795.1, -1310.21], [-786.82, -1302.95], [-789.71, -1299.76], [-908.09, -1169.0], [-922.0, -1152.68], [-922.06, -1152.66], [-923.52, -1153.49], [-933.32, -1162.2], [-942.48, -1170.3], [-966.33, -1192.36], [-981.54, -1205.54], [-982.33, -1206.22], [-986.14, -1209.89], [-831.06, -1332.76], [-828.61, -1334.52], [-827.9, -1335.03], [-826.54, -1335.62], [-824.52, -1336.12], [-823.74, -1336.2], [-823.65, -1336.16]], [[-1010.31, -958.78], [-1016.9, -956.13], [-1023.77, -961.86], [-1016.13, -965.08], [-1001.06, -971.55], [-993.85, -975.11], [-986.68, -979.74], [-974.87, -990.75], [-932.94, -1035.3], [-929.58, -1038.96], [-924.69, -1034.65], [-928.03, -1030.43], [-945.5, -1011.19], [-971.92, -983.7], [-978.81, -976.96], [-986.85, -969.95], [-998.58, -963.94], [-1010.31, -958.78]], [[-1062.97, -966.63], [-1056.19, -960.4], [-1052.34, -957.39], [-1055.82, -955.54], [-1071.41, -948.82], [-1068.95, -950.7], [-1064.52, -956.36], [-1063.02, -962.47], [-1062.86, -966.23], [-1062.97, -966.63]], [[-1029.66, -957.66], [-1024.26, -953.16], [-1031.87, -950.09], [-1036.88, -954.08], [-1029.66, -957.66]], [[-1058.19, -930.23], [-1067.15, -927.34], [-1041.89, -938.52], [-1032.95, -942.11], [-1026.27, -937.21], [-992.64, -906.04], [-1003.86, -913.6], [-1019.89, -927.12], [-1027.43, -930.42], [-1034.81, -932.29], [-1040.78, -932.21], [-1058.19, -930.23]], [[-787.51, -1194.21], [-788.57, -1193.73], [-745.98, -1239.9], [-738.54, -1247.93], [-736.36, -1250.29], [-733.76, -1253.11], [-729.46, -1247.93], [-731.28, -1246.48], [-735.26, -1243.33], [-742.85, -1235.0], [-778.39, -1194.71], [-780.03, -1195.02], [-783.9, -1194.91], [-787.51, -1194.21]], [[-771.46, -1183.17], [-773.34, -1184.87], [-776.02, -1186.84], [-775.22, -1187.74], [-774.52, -1187.52], [-771.54, -1186.01], [-755.84, -1170.89], [-755.33, -1170.21], [-757.83, -1170.98], [-759.92, -1172.2], [-767.66, -1179.71], [-771.46, -1183.17]], [[-897.56, 18.18], [-903.66, 15.21], [-909.08, 13.56], [-909.96, 13.29], [-916.53, 12.34], [-952.18, 13.43], [-953.21, 13.47], [-968.67, 14.47], [-986.89, 15.5], [-1014.23, 17.66], [-1018.61, 17.72], [-1018.83, 12.47], [-1018.96, 8.99], [-1020.22, -22.45], [-1020.37, -26.02], [-1020.39, -26.57], [-1027.38, -26.26], [-1027.36, -25.73], [-1027.22, -22.17], [-1025.95, 9.26], [-1025.82, 12.75], [-1025.61, 17.86], [-1031.24, 17.98], [-1057.8, 19.1], [-1093.56, 20.82], [-1133.52, 22.92], [-1140.73, 23.21], [-1175.28, 24.91], [-1180.64, 25.63], [-1180.91, 21.03], [-1181.39, 11.75], [-1182.67, -12.24], [-1185.33, -62.24], [-1186.31, -70.76], [-1188.36, -79.89], [-1189.86, -107.0], [-1190.18, -114.26], [-1190.62, -125.43], [-1193.49, -175.0], [-1194.86, -204.82], [-1196.69, -244.84], [-1196.76, -250.16], [-1191.68, -250.35], [-1135.56, -253.22], [-1078.68, -256.06], [-1072.99, -256.34], [-1072.75, -251.01], [-1071.36, -219.2], [-1070.8, -206.46], [-1070.38, -196.87], [-1070.08, -190.13], [-1069.68, -181.13], [-1069.23, -169.6], [-1068.81, -160.14], [-1067.19, -124.54], [-1060.2, -124.86], [-1061.82, -160.45], [-1062.24, -169.89], [-1062.69, -181.42], [-1063.08, -190.44], [-1063.38, -197.17], [-1063.8, -206.76], [-1064.36, -219.51], [-1065.76, -251.31], [-1066.0, -256.69], [-1064.5, -256.76], [-1052.29, -249.29], [-1049.28, -246.64], [-1040.55, -238.77], [-1013.62, -214.5], [-993.22, -196.12], [-947.15, -154.6], [-931.34, -140.35], [-909.51, -120.67], [-900.31, -112.39], [-883.23, -96.99], [-879.92, -94.1], [-877.1, -91.98], [-871.85, -89.05], [-866.6, -86.97], [-863.95, -86.01], [-863.04, -82.46], [-861.61, -78.29], [-859.53, -74.29], [-857.62, -71.59], [-855.42, -68.94], [-853.07, -66.71], [-852.36, -66.05], [-833.86, -49.63], [-813.33, -31.4], [-806.3, -25.17], [-800.18, -19.74], [-799.55, -19.18], [-792.59, -13.01], [-777.53, 0.36], [-776.86, 0.96], [-770.3, 6.79], [-768.18, 8.66], [-761.54, 14.56], [-739.61, 34.02], [-730.37, 42.22], [-725.3, 46.72], [-728.33, 50.02], [-747.51, 70.82], [-749.89, 73.47], [-761.19, 85.79], [-763.26, 88.03], [-783.54, 110.08], [-785.62, 112.35], [-788.45, 115.43], [-792.59, 111.69], [-817.07, 89.62], [-853.45, 56.83], [-867.03, 44.58], [-879.96, 32.92], [-883.45, 29.77], [-885.8, 32.37], [-883.45, 29.77], [-892.04, 22.03], [-894.26, 20.49], [-897.56, 18.18]], [[-876.14, -98.77], [-879.25, -101.48], [-896.29, -116.85], [-905.49, -125.13], [-927.32, -144.8], [-943.14, -159.06], [-989.2, -200.58], [-1009.6, -218.96], [-1036.53, -243.23], [-1045.28, -251.11], [-1048.71, -254.14], [-1053.84, -257.27], [-1051.33, -257.4], [-1027.41, -258.53], [-981.17, -260.76], [-969.62, -261.31], [-956.91, -261.91], [-945.31, -262.32], [-937.5, -262.43], [-934.14, -262.22], [-930.59, -261.74], [-927.16, -260.89], [-923.68, -259.84], [-923.22, -261.37], [-922.96, -261.22], [-918.72, -259.1], [-916.13, -257.72], [-912.84, -255.39], [-909.62, -252.95], [-906.17, -250.02], [-902.28, -246.28], [-881.91, -227.41], [-871.88, -218.41], [-860.9, -208.78], [-851.08, -199.69], [-847.51, -203.54], [-849.88, -200.96], [-827.76, -180.63], [-813.07, -167.15], [-808.34, -163.21], [-812.42, -158.68], [-818.16, -152.37], [-841.07, -127.14], [-838.48, -124.78], [-841.07, -127.13], [-855.45, -111.23], [-858.41, -107.54], [-861.05, -103.73], [-863.09, -99.69], [-864.32, -93.58], [-864.33, -92.53], [-864.46, -92.58], [-869.27, -94.49], [-873.82, -97.02], [-876.14, -98.77]], [[-874.83, -235.17], [-895.08, -253.93], [-899.13, -257.81], [-903.04, -261.14], [-906.64, -263.87], [-910.6, -266.67], [-913.9, -268.43], [-917.95, -270.45], [-918.63, -270.85], [-918.59, -279.79], [-918.46, -297.41], [-918.35, -318.0], [-918.14, -323.12], [-917.45, -328.1], [-916.5, -331.78], [-915.45, -335.09], [-913.9, -338.48], [-912.13, -341.21], [-910.16, -343.8], [-907.53, -346.88], [-892.97, -361.91], [-886.47, -368.84], [-883.44, -366.56], [-881.19, -364.42], [-863.38, -348.59], [-848.8, -335.75], [-834.98, -323.58], [-825.02, -314.8], [-744.2, -243.09], [-740.97, -240.02], [-745.97, -234.41], [-766.96, -209.61], [-770.15, -206.24], [-767.69, -203.91], [-767.74, -203.88], [-768.95, -204.96], [-771.71, -201.85], [-780.43, -197.4], [-784.18, -193.61], [-787.67, -190.86], [-791.51, -188.64], [-794.82, -187.49], [-797.85, -186.71], [-801.12, -186.26], [-804.68, -186.06], [-808.24, -186.23], [-811.4, -186.81], [-814.65, -187.66], [-817.77, -189.06], [-833.36, -199.49], [-841.79, -203.03], [-845.13, -206.11], [-843.94, -207.39], [-853.87, -216.58], [-864.91, -226.27], [-874.83, -235.17]], [[-917.8, -399.76], [-923.7, -402.66], [-932.32, -405.37], [-935.27, -406.3], [-944.81, -407.42], [-950.77, -407.34], [-956.41, -407.18], [-972.04, -406.66], [-977.45, -406.44], [-977.68, -410.46], [-977.85, -413.35], [-978.29, -421.24], [-981.79, -482.39], [-982.02, -486.22], [-983.72, -515.99], [-983.85, -518.34], [-984.18, -523.96], [-978.01, -524.28], [-946.98, -525.84], [-940.37, -526.14], [-918.29, -526.95], [-914.74, -526.66], [-911.75, -526.2], [-909.53, -525.69], [-907.25, -525.02], [-904.74, -523.97], [-902.92, -522.74], [-901.93, -522.03], [-886.74, -508.69], [-877.97, -500.85], [-872.12, -495.71], [-863.23, -487.9], [-848.39, -474.85], [-826.8, -455.87], [-824.64, -453.94], [-822.46, -451.77], [-821.95, -451.24], [-827.03, -445.69], [-850.92, -419.65], [-856.68, -413.37], [-861.98, -407.6], [-866.18, -403.0], [-883.11, -384.74], [-887.27, -380.15], [-889.17, -381.45], [-891.61, -382.92], [-907.25, -393.95], [-917.8, -399.76]], [[-843.77, -480.11], [-858.61, -493.16], [-867.5, -500.97], [-873.32, -506.09], [-882.1, -513.93], [-897.56, -527.5], [-898.9, -528.48], [-901.41, -530.17], [-904.91, -531.62], [-907.75, -532.47], [-910.44, -533.08], [-913.92, -533.62], [-918.13, -533.96], [-937.11, -533.26], [-937.25, -538.05], [-937.3, -540.55], [-937.88, -569.86], [-938.3, -589.43], [-938.3, -591.49], [-938.55, -600.1], [-938.28, -604.91], [-937.31, -608.38], [-936.01, -610.98], [-933.98, -613.9], [-901.32, -650.26], [-897.25, -654.76], [-893.39, -651.25], [-891.44, -649.47], [-843.12, -605.47], [-839.87, -602.52], [-828.01, -591.72], [-810.99, -576.24], [-806.81, -572.43], [-791.99, -558.93], [-781.63, -549.5], [-759.55, -529.39], [-757.49, -527.52], [-755.3, -525.51], [-753.21, -523.62], [-757.26, -519.2], [-792.02, -481.3], [-813.01, -458.41], [-815.99, -455.16], [-817.48, -456.69], [-819.83, -459.04], [-822.16, -461.11], [-843.77, -480.11]], [[-1082.83, -452.36], [-1081.85, -433.76], [-1081.61, -428.96], [-1080.55, -406.1], [-1080.28, -401.22], [-1087.31, -400.41], [-1195.82, -395.67], [-1204.46, -394.67], [-1205.22, -400.03], [-1210.9, -502.59], [-1211.1, -505.87], [-1211.49, -512.44], [-1209.59, -512.53], [-1204.79, -512.78], [-1092.38, -518.2], [-1086.04, -518.72], [-1085.8, -512.7], [-1085.57, -509.74], [-1082.83, -452.36]], [[-989.0, -485.81], [-988.78, -481.99], [-985.28, -420.85], [-984.84, -412.94], [-984.67, -410.06], [-984.44, -406.13], [-990.31, -405.85], [-1026.58, -404.08], [-1029.03, -403.95], [-1069.04, -402.0], [-1073.3, -401.79], [-1073.56, -406.45], [-1074.62, -429.3], [-1074.85, -434.11], [-1075.83, -452.71], [-1078.58, -510.17], [-1078.81, -513.11], [-1079.05, -519.19], [-1075.23, -519.39], [-1035.98, -521.35], [-997.47, -523.3], [-991.17, -523.61], [-990.84, -517.94], [-990.71, -515.59], [-989.0, -485.81]], [[-1197.5, -379.49], [-1198.0, -384.85], [-1194.99, -385.2], [-1086.47, -389.93], [-1082.55, -390.39], [-1082.58, -385.36], [-1081.08, -356.07], [-1080.92, -352.66], [-1080.07, -333.69], [-1079.95, -331.32], [-1079.73, -326.16], [-1078.83, -310.15], [-1076.93, -276.49], [-1076.72, -273.36], [-1076.43, -270.19], [-1079.37, -270.04], [-1136.27, -267.2], [-1191.61, -264.37], [-1191.62, -267.62], [-1191.65, -271.99], [-1194.57, -331.33], [-1194.63, -332.78], [-1194.82, -337.06], [-1195.21, -342.29], [-1195.63, -351.6], [-1197.5, -379.49]], [[-1069.09, -356.65], [-1070.58, -385.63], [-1070.54, -391.41], [-1068.52, -391.51], [-1028.51, -393.46], [-1026.05, -393.59], [-989.8, -395.36], [-980.42, -395.82], [-971.66, -396.16], [-956.09, -396.69], [-950.56, -396.84], [-945.35, -396.91], [-937.49, -395.99], [-935.47, -395.35], [-927.61, -392.88], [-922.65, -390.45], [-912.82, -385.04], [-897.35, -374.12], [-894.86, -372.62], [-892.6, -371.07], [-897.31, -366.05], [-911.97, -350.92], [-914.83, -347.57], [-917.04, -344.66], [-919.17, -341.37], [-921.06, -337.26], [-922.27, -333.44], [-923.34, -329.26], [-924.12, -323.66], [-924.34, -318.14], [-924.46, -297.45], [-924.59, -279.82], [-924.61, -274.68], [-927.97, -275.52], [-932.77, -276.16], [-937.15, -276.43], [-945.65, -276.32], [-957.49, -275.9], [-970.29, -275.29], [-981.84, -274.74], [-1028.08, -272.52], [-1052.0, -271.38], [-1064.43, -270.78], [-1064.75, -274.31], [-1064.96, -277.24], [-1066.85, -310.82], [-1067.75, -326.75], [-1067.97, -331.87], [-1068.08, -334.25], [-1068.93, -353.2], [-1069.09, -356.65]], [[-912.46, 126.82], [-860.77, 69.43], [-859.1, 67.58], [-855.91, 64.03], [-821.76, 94.82], [-797.28, 116.88], [-792.79, 120.94], [-796.71, 125.29], [-800.77, 129.8], [-848.94, 183.31], [-851.18, 181.3], [-874.18, 160.87], [-881.92, 153.98], [-884.0, 152.14], [-886.3, 150.08], [-893.92, 143.31], [-910.27, 128.77], [-912.46, 126.82]], [[-620.61, -902.3], [-645.07, -924.62], [-648.87, -928.09], [-645.06, -932.42], [-623.15, -957.43], [-589.32, -993.57], [-585.32, -998.76], [-581.27, -995.07], [-579.4, -993.37], [-549.18, -965.89], [-534.46, -952.52], [-505.52, -926.22], [-502.96, -923.9], [-480.56, -903.54], [-443.1, -870.2], [-439.41, -868.9], [-445.7, -863.0], [-463.31, -844.84], [-468.53, -835.75], [-471.37, -833.37], [-470.5, -832.32], [-470.66, -832.04], [-471.75, -833.0], [-473.2, -831.37], [-500.27, -800.5], [-504.13, -796.03], [-506.32, -798.04], [-508.86, -800.34], [-569.59, -855.76], [-607.8, -890.63], [-620.61, -902.3]], [[-819.29, -438.6], [-814.4, -443.94], [-812.05, -441.8], [-809.72, -439.68], [-773.18, -406.41], [-758.63, -393.16], [-737.53, -373.95], [-729.16, -366.33], [-677.14, -318.97], [-675.77, -317.72], [-673.37, -315.53], [-677.19, -311.09], [-733.68, -248.48], [-736.38, -245.31], [-739.47, -248.25], [-820.38, -320.04], [-830.35, -328.83], [-844.17, -341.01], [-858.74, -353.83], [-876.45, -369.58], [-878.91, -371.91], [-879.9, -372.65], [-875.37, -377.64], [-858.46, -395.89], [-854.24, -400.5], [-848.94, -406.27], [-843.18, -412.55], [-819.29, -438.6]], [[-717.29, -844.4], [-708.98, -836.9], [-696.65, -825.76], [-693.79, -823.17], [-689.32, -819.14], [-661.07, -793.62], [-645.64, -779.68], [-632.9, -768.19], [-627.61, -763.41], [-611.18, -748.58], [-603.78, -741.9], [-596.12, -734.82], [-581.19, -721.4], [-578.31, -718.8], [-576.42, -717.11], [-580.18, -712.97], [-597.61, -693.73], [-599.21, -692.22], [-649.77, -637.08], [-658.41, -627.19], [-660.96, -629.49], [-664.8, -633.01], [-667.17, -635.13], [-679.09, -645.99], [-692.97, -658.65], [-701.66, -666.59], [-711.05, -675.02], [-718.75, -682.14], [-734.56, -696.53], [-742.67, -703.93], [-771.13, -729.83], [-775.16, -733.53], [-779.96, -737.88], [-798.88, -755.09], [-803.14, -758.62], [-796.07, -766.27], [-794.11, -768.44], [-767.49, -798.52], [-759.0, -807.85], [-724.38, -845.63], [-721.79, -848.45], [-717.29, -844.4]], [[-649.11, -920.19], [-624.65, -897.87], [-611.85, -886.2], [-573.64, -851.33], [-512.9, -795.91], [-510.36, -793.6], [-508.12, -791.55], [-512.21, -787.1], [-526.94, -771.03], [-527.93, -769.96], [-539.04, -757.84], [-546.26, -749.95], [-548.35, -747.68], [-567.85, -726.43], [-571.7, -722.27], [-573.63, -724.01], [-576.51, -726.6], [-591.41, -739.99], [-599.06, -747.07], [-606.49, -753.77], [-622.92, -768.6], [-628.21, -773.38], [-640.95, -784.88], [-656.38, -798.81], [-684.63, -824.34], [-689.1, -828.37], [-691.96, -830.95], [-704.29, -842.09], [-712.6, -849.59], [-716.98, -853.54], [-713.22, -857.43], [-690.61, -882.51], [-687.86, -885.43], [-684.45, -889.15], [-657.02, -919.06], [-652.87, -923.62], [-649.11, -920.19]], [[-823.3, -596.9], [-835.16, -607.7], [-838.41, -610.65], [-886.73, -654.64], [-888.68, -656.42], [-892.55, -659.95], [-889.06, -663.8], [-864.12, -691.34], [-861.36, -694.42], [-819.24, -740.96], [-818.04, -742.3], [-810.24, -750.87], [-805.77, -747.16], [-787.02, -730.11], [-782.24, -725.77], [-778.21, -722.08], [-749.74, -696.16], [-741.63, -688.77], [-725.85, -674.41], [-718.12, -667.26], [-708.71, -658.81], [-700.05, -650.89], [-686.17, -638.23], [-674.2, -627.33], [-671.85, -625.23], [-668.03, -621.72], [-665.03, -619.02], [-673.48, -607.7], [-674.78, -606.19], [-708.13, -570.42], [-721.8, -556.06], [-745.08, -532.49], [-748.48, -528.78], [-750.58, -530.68], [-752.77, -532.69], [-754.84, -534.57], [-776.92, -554.68], [-787.27, -564.11], [-802.1, -577.61], [-806.28, -581.41], [-823.3, -596.9]], [[-603.96, -563.44], [-603.11, -562.67], [-588.35, -549.23], [-572.95, -535.2], [-559.19, -522.67], [-557.72, -521.34], [-543.28, -508.19], [-520.45, -487.4], [-517.94, -485.11], [-527.54, -474.4], [-575.15, -422.8], [-597.56, -398.0], [-601.43, -393.78], [-603.89, -396.27], [-606.07, -398.63], [-634.42, -424.93], [-657.56, -446.0], [-671.63, -458.8], [-686.24, -472.11], [-700.85, -485.42], [-716.27, -499.46], [-717.23, -500.33], [-737.54, -518.82], [-739.95, -521.01], [-743.3, -524.07], [-740.01, -527.66], [-716.77, -551.18], [-703.04, -565.62], [-669.56, -601.52], [-668.02, -603.32], [-659.82, -614.29], [-656.63, -611.38], [-640.49, -596.69], [-639.92, -596.17], [-631.14, -588.18], [-617.72, -575.95], [-603.96, -563.44]], [[-705.57, -480.25], [-690.95, -466.94], [-676.34, -453.63], [-662.28, -440.82], [-639.16, -419.78], [-611.03, -393.67], [-608.95, -391.43], [-606.17, -388.62], [-609.31, -385.21], [-614.5, -379.89], [-633.29, -359.4], [-665.39, -324.4], [-668.72, -320.77], [-671.06, -322.9], [-672.43, -324.15], [-724.45, -371.5], [-732.81, -379.12], [-753.92, -398.34], [-768.47, -411.58], [-805.01, -444.85], [-807.33, -446.97], [-810.97, -450.28], [-807.85, -453.68], [-786.86, -476.56], [-752.11, -514.47], [-748.03, -518.91], [-744.66, -515.83], [-742.25, -513.64], [-721.94, -495.15], [-720.98, -494.28], [-705.57, -480.25]], [[-656.2, -18.25], [-652.41, -22.39], [-649.05, -19.36], [-625.06, 2.34], [-620.9, 6.1], [-617.72, 8.98], [-617.02, 9.62], [-605.11, 20.38], [-580.08, 43.01], [-557.81, 63.15], [-547.05, 72.89], [-513.22, 103.48], [-508.94, 107.34], [-513.07, 111.87], [-514.42, 113.36], [-543.1, 144.85], [-553.11, 155.83], [-553.91, 156.71], [-555.82, 158.81], [-568.83, 173.09], [-572.03, 176.61], [-576.09, 172.93], [-607.29, 144.54], [-613.53, 138.87], [-625.38, 128.1], [-637.23, 117.31], [-638.2, 116.43], [-653.67, 102.36], [-656.19, 100.07], [-664.51, 92.5], [-665.22, 91.86], [-666.82, 90.4], [-674.31, 83.59], [-685.76, 73.17], [-686.38, 72.6], [-711.93, 49.36], [-715.36, 46.25], [-712.1, 42.71], [-695.84, 25.01], [-695.21, 24.32], [-676.07, 3.5], [-675.07, 2.42], [-658.48, -15.64], [-656.2, -18.25]], [[-710.31, -212.5], [-706.37, -208.84], [-670.25, -176.52], [-648.8, -155.56], [-598.8, -108.64], [-591.2, -102.12], [-592.34, -101.35], [-594.13, -99.54], [-595.26, -97.46], [-595.74, -96.08], [-596.05, -94.7], [-596.29, -92.31], [-596.53, -90.53], [-596.68, -90.1], [-596.97, -89.74], [-630.37, -52.73], [-644.92, -35.62], [-646.89, -33.98], [-651.15, -30.69], [-658.12, -36.98], [-689.05, -64.95], [-696.55, -71.74], [-715.89, -89.23], [-724.11, -96.66], [-732.95, -104.68], [-776.49, -144.44], [-794.74, -160.61], [-797.8, -163.35], [-793.97, -166.25], [-763.8, -200.23], [-762.53, -199.02], [-759.13, -202.6], [-738.05, -227.53], [-733.25, -232.91], [-730.57, -230.52], [-710.31, -212.5]], [[-725.78, -241.57], [-669.31, -304.15], [-665.6, -308.47], [-661.46, -304.71], [-660.25, -303.6], [-635.16, -280.79], [-623.62, -270.29], [-603.29, -251.8], [-575.71, -226.72], [-557.35, -210.04], [-527.31, -182.71], [-526.22, -181.71], [-523.54, -179.28], [-528.21, -173.99], [-529.88, -172.09], [-579.65, -115.63], [-586.78, -107.55], [-594.12, -113.85], [-643.96, -160.61], [-665.46, -181.64], [-701.65, -214.01], [-705.61, -217.68], [-725.91, -235.74], [-728.65, -238.19], [-725.78, -241.57]], [[-785.7, -187.95], [-781.84, -190.99], [-778.33, -194.54], [-778.1, -194.66], [-798.75, -171.42], [-803.2, -168.05], [-808.47, -172.43], [-823.03, -185.79], [-833.33, -195.26], [-819.48, -185.99], [-815.82, -184.34], [-812.16, -183.39], [-808.64, -182.74], [-804.66, -182.56], [-800.78, -182.78], [-797.18, -183.27], [-793.81, -184.13], [-790.05, -185.44], [-785.7, -187.95]], [[-803.03, -158.64], [-799.4, -155.38], [-781.17, -139.23], [-737.66, -99.5], [-728.81, -91.48], [-720.59, -84.04], [-701.25, -66.55], [-693.75, -59.76], [-662.81, -31.79], [-657.6, -27.08], [-661.41, -22.92], [-663.69, -20.31], [-680.22, -2.33], [-681.22, -1.24], [-700.38, 19.6], [-701.0, 20.28], [-717.25, 37.97], [-720.56, 41.57], [-725.73, 36.99], [-734.96, 28.79], [-756.89, 9.33], [-763.54, 3.42], [-765.65, 1.55], [-772.2, -4.26], [-772.86, -4.86], [-787.95, -18.24], [-794.9, -24.41], [-795.52, -24.97], [-801.66, -30.41], [-808.68, -36.63], [-829.21, -54.86], [-847.64, -71.23], [-848.27, -71.81], [-850.3, -73.73], [-852.06, -75.86], [-853.54, -77.95], [-855.16, -81.05], [-856.32, -84.47], [-857.37, -88.51], [-857.33, -92.85], [-856.41, -97.38], [-855.02, -100.15], [-852.8, -103.35], [-850.12, -106.69], [-835.88, -122.43], [-812.98, -147.66], [-807.23, -153.99], [-803.03, -158.64]], [[-720.09, 51.4], [-716.64, 54.54], [-691.11, 77.76], [-690.49, 78.33], [-679.02, 88.77], [-671.53, 95.58], [-669.93, 97.03], [-669.22, 97.68], [-660.9, 105.25], [-658.38, 107.54], [-642.9, 121.62], [-641.93, 122.49], [-630.09, 133.28], [-618.25, 144.04], [-612.01, 149.72], [-580.8, 178.11], [-576.75, 181.79], [-580.65, 186.07], [-603.82, 211.51], [-634.13, 245.15], [-635.87, 247.08], [-639.02, 250.61], [-642.49, 247.03], [-663.82, 227.8], [-679.3, 213.84], [-697.77, 196.89], [-704.9, 190.76], [-717.98, 179.0], [-735.04, 163.58], [-779.52, 123.47], [-783.25, 120.12], [-780.47, 117.09], [-778.38, 114.82], [-758.12, 92.77], [-756.05, 90.53], [-744.7, 78.18], [-742.33, 75.53], [-723.18, 54.76], [-720.09, 51.4]], [[-387.09, -985.13], [-398.95, -990.26], [-411.64, -996.41], [-420.67, -1001.17], [-430.58, -1007.25], [-440.59, -1013.99], [-450.25, -1021.12], [-457.05, -1026.71], [-463.46, -1032.18], [-470.44, -1038.78], [-477.07, -1045.21], [-485.04, -1053.88], [-492.86, -1063.16], [-500.34, -1072.81], [-504.93, -1079.24], [-508.37, -1084.08], [-503.74, -1088.96], [-500.96, -1085.12], [-494.29, -1076.61], [-486.8, -1067.66], [-478.94, -1059.39], [-466.44, -1046.77], [-446.86, -1029.04], [-436.34, -1021.69], [-426.56, -1015.31], [-415.75, -1008.72], [-406.75, -1004.03], [-386.39, -994.53], [-364.27, -985.51], [-345.68, -980.63], [-333.26, -980.08], [-320.14, -977.07], [-310.59, -976.06], [-298.95, -976.0], [-284.92, -976.21], [-275.79, -977.27], [-274.25, -973.7], [-276.25, -972.17], [-280.94, -968.98], [-285.36, -966.8], [-291.32, -964.89], [-304.61, -963.42], [-304.37, -965.1], [-317.83, -967.03], [-332.16, -969.77], [-352.79, -974.47], [-364.89, -977.48], [-375.19, -980.68], [-387.09, -985.13]], [[-291.97, -994.11], [-289.93, -997.07], [-288.74, -1001.47], [-288.43, -1005.23], [-280.73, -989.1], [-278.61, -983.99], [-285.37, -983.21], [-298.99, -983.0], [-310.2, -983.06], [-315.11, -983.58], [-310.17, -984.02], [-306.39, -984.69], [-304.27, -985.34], [-301.02, -986.47], [-296.99, -989.02], [-294.06, -991.3], [-291.97, -994.11]], [[-267.87, -978.03], [-268.36, -977.73], [-268.47, -977.98], [-267.87, -978.03]], [[-237.31, -902.96], [-231.66, -893.16], [-225.32, -882.31], [-223.34, -878.94], [-226.97, -883.02], [-235.88, -894.53], [-243.68, -907.18], [-247.06, -913.09], [-262.2, -941.79], [-267.04, -948.87], [-271.77, -952.4], [-278.78, -955.32], [-286.78, -957.31], [-296.88, -960.75], [-290.58, -961.45], [-284.04, -963.54], [-279.17, -965.95], [-274.2, -969.34], [-272.71, -970.48], [-265.29, -955.52], [-254.99, -934.58], [-249.54, -924.5], [-243.38, -913.55], [-237.31, -902.96]], [[-460.09, -842.42], [-442.9, -860.15], [-436.02, -866.6], [-433.21, -853.94], [-432.7, -851.6], [-435.75, -851.56], [-438.62, -851.31], [-442.64, -850.5], [-447.41, -848.99], [-452.55, -846.65], [-457.07, -843.9], [-460.55, -841.62], [-460.09, -842.42]], [[-775.69, -2975.5], [-778.52, -2980.17], [-791.95, -3079.51], [-792.7, -3085.72], [-694.49, -3090.53], [-678.25, -2970.91], [-678.86, -2963.6], [-681.05, -2960.72], [-686.25, -2959.41], [-770.49, -2972.93], [-775.69, -2975.5]], [[919.93, 1835.53], [922.54, 1832.94], [1078.37, 1696.66], [1207.21, 1553.21], [1210.79, 1549.61], [1218.28, 1556.27], [1302.27, 1625.34], [1312.61, 1634.46], [1425.43, 1736.91], [1447.59, 1754.71], [1479.97, 1783.81], [1552.3, 1849.71], [1603.07, 1890.85], [1608.48, 1896.94], [1608.7, 1897.19], [1606.5, 1906.92], [1606.49, 1910.07], [1608.18, 1929.86], [1613.47, 1945.36], [1614.64, 1961.17], [1615.6, 1974.19], [1620.52, 2020.87], [1624.21, 2056.0], [1627.78, 2089.96], [1631.29, 2123.34], [1633.63, 2158.57], [1635.77, 2190.81], [1633.81, 2211.86], [1631.44, 2226.37], [1626.67, 2247.53], [1613.7, 2280.29], [1607.45, 2294.44], [1602.13, 2308.62], [1598.24, 2318.98], [1595.33, 2318.24], [1588.04, 2317.26], [1579.46, 2316.78], [1567.37, 2317.07], [1385.49, 2322.26], [1378.65, 2322.96], [1369.31, 2325.34], [1360.64, 2329.18], [1347.59, 2336.72], [1290.06, 2368.66], [1285.78, 2371.27], [1282.46, 2365.01], [1270.84, 2343.29], [1259.72, 2322.5], [1257.87, 2318.58], [1255.65, 2313.02], [1251.92, 2303.8], [1256.15, 2301.92], [1277.19, 2292.97], [1296.0, 2285.9], [1332.84, 2271.84], [1346.95, 2266.29], [1355.54, 2260.86], [1361.53, 2255.93], [1366.95, 2250.5], [1369.6, 2246.8], [1373.97, 2239.48], [1376.9, 2229.84], [1377.88, 2223.34], [1383.57, 2195.3], [1390.55, 2196.82], [1397.94, 2163.3], [1379.58, 2159.35], [1372.11, 2192.74], [1377.71, 2194.0], [1371.97, 2222.29], [1371.03, 2228.51], [1368.44, 2237.03], [1364.57, 2243.51], [1362.36, 2246.61], [1357.49, 2251.48], [1352.01, 2255.99], [1344.23, 2260.91], [1330.68, 2266.25], [1293.87, 2280.28], [1274.96, 2287.4], [1253.76, 2296.42], [1250.16, 2298.01], [1249.56, 2296.46], [1232.77, 2253.03], [1223.62, 2230.3], [1208.38, 2187.65], [1206.35, 2182.5], [1204.91, 2178.86], [1199.44, 2166.98], [1188.76, 2144.6], [1181.95, 2130.18], [1153.2, 2095.09], [1142.98, 2084.52], [1136.81, 2078.81], [1127.37, 2071.08], [1106.89, 2048.52], [1093.09, 2025.4], [1084.52, 2015.82], [1076.7, 2007.54], [1039.32, 1971.25], [924.73, 1840.92], [919.93, 1835.53]], [[862.37, 1770.89], [860.05, 1768.16], [863.14, 1765.58], [883.23, 1748.21], [1019.96, 1627.61], [1060.96, 1590.76], [1058.29, 1587.79], [1060.96, 1590.76], [1079.49, 1574.1], [1091.89, 1562.59], [1105.47, 1547.68], [1145.32, 1503.82], [1146.44, 1502.49], [1149.82, 1498.89], [1154.3, 1502.49], [1202.39, 1542.52], [1206.22, 1545.69], [1202.84, 1549.09], [1074.15, 1692.38], [918.45, 1828.55], [915.89, 1831.08], [912.94, 1827.89], [862.37, 1770.89]], [[1215.61, 1544.53], [1219.62, 1540.14], [1227.09, 1546.44], [1304.8, 1617.97], [1304.59, 1618.19], [1222.83, 1550.95], [1215.61, 1544.53]], [[1319.63, 1610.63], [1373.8, 1549.9], [1376.68, 1546.67], [1381.06, 1550.67], [1384.01, 1553.35], [1473.49, 1635.05], [1502.52, 1661.56], [1517.18, 1675.8], [1519.43, 1677.99], [1513.37, 1681.38], [1485.85, 1701.8], [1479.59, 1707.23], [1483.52, 1711.76], [1489.61, 1706.48], [1516.63, 1686.43], [1525.88, 1681.27], [1524.41, 1678.65], [1525.88, 1681.27], [1554.6, 1665.15], [1558.8, 1662.8], [1555.86, 1657.57], [1551.67, 1659.92], [1524.9, 1674.94], [1521.36, 1671.5], [1506.64, 1657.19], [1477.54, 1630.62], [1388.05, 1548.91], [1385.1, 1546.24], [1380.68, 1542.2], [1385.32, 1537.03], [1441.42, 1474.56], [1445.76, 1469.73], [1445.76, 1469.73], [1453.31, 1461.96], [1501.41, 1409.6], [1518.99, 1390.62], [1522.58, 1386.72], [1526.87, 1382.09], [1534.95, 1389.63], [1576.7, 1428.54], [1581.01, 1432.55], [1584.79, 1435.98], [1605.54, 1454.78], [1629.84, 1476.83], [1668.53, 1511.9], [1664.65, 1515.56], [1650.54, 1528.88], [1640.83, 1538.02], [1635.41, 1541.95], [1629.23, 1546.42], [1632.75, 1551.28], [1638.93, 1546.81], [1644.66, 1542.66], [1654.65, 1533.24], [1668.76, 1519.93], [1673.03, 1515.9], [1681.33, 1523.06], [1682.71, 1524.36], [1682.97, 1524.61], [1709.72, 1549.79], [1733.97, 1572.56], [1748.1, 1585.92], [1777.36, 1613.85], [1828.08, 1662.4], [1832.69, 1666.82], [1849.56, 1684.72], [1864.27, 1698.61], [1924.27, 1755.27], [1925.21, 1754.27], [1925.29, 1754.48], [1924.46, 1755.44], [1926.24, 1756.96], [1926.79, 1758.4], [1927.34, 1762.69], [1926.32, 1766.69], [1925.19, 1769.35], [1914.79, 1786.18], [1907.66, 1795.36], [1902.74, 1801.68], [1894.82, 1811.88], [1889.41, 1816.56], [1890.34, 1817.64], [1890.0, 1818.09], [1869.51, 1840.65], [1860.42, 1850.68], [1863.01, 1853.03], [1860.39, 1850.71], [1854.04, 1857.88], [1841.37, 1872.18], [1823.96, 1897.64], [1822.6, 1899.63], [1820.24, 1897.16], [1810.71, 1906.29], [1799.89, 1915.15], [1794.62, 1920.32], [1792.32, 1917.69], [1784.9, 1924.19], [1759.24, 1946.65], [1763.56, 1951.59], [1761.88, 1952.0], [1760.14, 1950.97], [1759.12, 1952.69], [1751.85, 1954.48], [1739.27, 1965.87], [1730.96, 1973.38], [1727.82, 1970.65], [1702.99, 1951.11], [1690.53, 1940.96], [1667.99, 1920.59], [1664.59, 1917.51], [1662.31, 1915.6], [1641.27, 1897.63], [1636.96, 1894.4], [1627.38, 1885.34], [1625.83, 1884.07], [1619.78, 1879.57], [1618.57, 1878.66], [1615.71, 1876.28], [1608.46, 1870.24], [1534.19, 1809.64], [1497.77, 1780.55], [1489.04, 1773.8], [1456.7, 1744.54], [1434.67, 1724.7], [1411.46, 1703.37], [1322.99, 1623.19], [1314.7, 1616.07], [1317.3, 1613.24], [1319.63, 1610.63]], [[1480.34, 1327.23], [1472.58, 1320.46], [1426.01, 1279.61], [1400.36, 1257.11], [1391.72, 1249.54], [1389.15, 1247.29], [1383.43, 1242.27], [1388.58, 1236.36], [1394.56, 1241.71], [1527.03, 1360.29], [1533.27, 1365.88], [1529.44, 1370.26], [1522.82, 1364.46], [1480.34, 1327.23]], [[1401.56, 1233.89], [1395.2, 1228.19], [1400.57, 1222.3], [1402.9, 1219.74], [1413.99, 1207.59], [1438.34, 1180.88], [1465.0, 1151.66], [1474.68, 1141.04], [1504.0, 1108.88], [1512.49, 1099.58], [1519.08, 1092.0], [1526.54, 1084.19], [1528.16, 1082.55], [1532.86, 1077.53], [1538.91, 1071.1], [1543.6, 1066.17], [1546.99, 1062.28], [1557.93, 1050.11], [1572.38, 1034.03], [1589.64, 1014.82], [1601.54, 1001.58], [1604.75, 998.08], [1609.19, 993.24], [1612.99, 996.83], [1658.67, 1040.01], [1654.35, 1044.59], [1624.5, 1076.3], [1622.74, 1079.62], [1622.45, 1083.64], [1623.88, 1086.94], [1626.07, 1089.54], [1654.81, 1115.87], [1662.24, 1122.65], [1684.43, 1142.86], [1707.84, 1164.29], [1712.46, 1168.49], [1710.21, 1170.95], [1697.34, 1185.04], [1692.56, 1190.1], [1684.69, 1198.44], [1682.16, 1201.3], [1669.62, 1215.5], [1660.19, 1226.18], [1637.74, 1250.88], [1624.26, 1265.72], [1620.92, 1269.4], [1616.58, 1265.33], [1614.6, 1263.47], [1599.87, 1249.69], [1597.35, 1247.41], [1593.33, 1251.86], [1595.81, 1254.1], [1610.49, 1267.85], [1612.48, 1269.71], [1616.9, 1273.85], [1612.1, 1279.16], [1606.22, 1285.68], [1604.85, 1287.21], [1576.13, 1319.03], [1571.16, 1324.53], [1567.98, 1327.99], [1563.0, 1333.4], [1546.21, 1351.63], [1544.3, 1353.61], [1540.26, 1358.04], [1534.03, 1352.47], [1401.56, 1233.89]], [[1381.37, 1215.76], [1250.0, 1097.43], [1235.68, 1084.57], [1101.71, 963.88], [1096.57, 959.25], [1102.19, 952.9], [1136.39, 914.29], [1146.2, 903.21], [1155.41, 893.68], [1170.16, 877.36], [1176.6, 870.23], [1174.0, 867.88], [1176.6, 870.23], [1180.84, 865.53], [1206.41, 837.23], [1219.69, 822.53], [1238.99, 801.18], [1241.97, 797.87], [1244.47, 795.11], [1252.87, 785.84], [1288.1, 746.82], [1290.8, 743.82], [1299.16, 734.57], [1302.87, 730.47], [1305.37, 727.71], [1309.8, 722.8], [1314.03, 726.63], [1316.76, 729.1], [1384.1, 790.14], [1391.66, 796.98], [1394.44, 799.51], [1407.41, 811.26], [1435.63, 836.88], [1439.72, 840.52], [1452.25, 851.69], [1457.23, 856.41], [1459.3, 854.24], [1457.3, 856.47], [1463.98, 862.45], [1485.59, 881.9], [1504.64, 899.07], [1525.43, 917.76], [1545.49, 935.82], [1568.98, 956.95], [1581.42, 968.14], [1599.54, 984.44], [1604.04, 988.49], [1599.58, 993.35], [1596.36, 996.88], [1584.43, 1010.14], [1567.18, 1029.35], [1552.73, 1045.43], [1541.75, 1057.64], [1538.42, 1061.46], [1533.83, 1066.29], [1527.75, 1072.74], [1523.12, 1077.7], [1521.52, 1079.31], [1513.9, 1087.28], [1507.26, 1094.92], [1498.83, 1104.17], [1469.5, 1136.33], [1459.82, 1146.95], [1433.17, 1176.16], [1408.82, 1202.87], [1397.73, 1215.02], [1395.39, 1217.59], [1389.99, 1223.51], [1384.1, 1218.21], [1381.37, 1215.76]], [[1481.58, 833.71], [1487.57, 827.05], [1489.12, 825.32], [1498.77, 814.6], [1502.84, 810.1], [1522.06, 788.69], [1525.72, 784.66], [1529.72, 788.2], [1552.22, 807.72], [1553.94, 809.25], [1555.26, 810.45], [1567.4, 821.31], [1568.84, 822.61], [1572.15, 825.57], [1604.48, 854.48], [1613.47, 862.58], [1621.86, 870.1], [1629.2, 876.72], [1666.01, 910.57], [1670.3, 914.45], [1664.96, 919.96], [1664.14, 920.81], [1647.92, 939.09], [1637.85, 950.44], [1632.19, 956.83], [1611.4, 980.27], [1608.06, 984.04], [1603.56, 979.98], [1585.43, 963.67], [1573.0, 952.49], [1549.51, 931.36], [1529.44, 913.3], [1508.66, 894.61], [1489.6, 877.44], [1467.99, 857.98], [1463.58, 854.04], [1466.98, 850.4], [1479.03, 836.53], [1481.58, 833.71]], [[1497.59, 749.28], [1438.7, 695.05], [1431.03, 688.5], [1425.44, 683.21], [1424.85, 682.65], [1413.34, 672.29], [1410.59, 669.75], [1395.62, 655.92], [1395.12, 655.47], [1393.58, 654.0], [1387.18, 648.14], [1381.74, 643.17], [1385.55, 638.96], [1404.78, 617.67], [1405.01, 617.42], [1412.43, 609.2], [1413.32, 608.22], [1439.44, 579.25], [1443.51, 574.74], [1447.8, 578.56], [1471.4, 599.49], [1485.89, 612.34], [1502.55, 627.13], [1584.42, 701.91], [1588.47, 705.49], [1584.66, 710.15], [1529.44, 771.58], [1525.91, 775.51], [1521.71, 771.83], [1497.59, 749.28]], [[1508.14, 503.28], [1512.4, 498.56], [1518.12, 503.78], [1652.84, 626.45], [1657.41, 630.61], [1652.75, 635.44], [1628.17, 660.98], [1598.13, 694.66], [1593.05, 700.2], [1589.1, 696.7], [1507.24, 621.93], [1490.54, 607.11], [1476.05, 594.26], [1452.45, 573.33], [1448.21, 569.55], [1453.2, 564.08], [1508.14, 503.28]], [[57.87, 611.03], [54.44, 607.87], [57.5, 604.63], [59.15, 602.79], [112.86, 542.95], [114.05, 541.62], [115.68, 539.81], [119.95, 543.68], [147.35, 568.52], [218.02, 632.58], [255.25, 666.31], [259.89, 670.52], [258.38, 672.17], [257.11, 673.56], [203.03, 733.05], [201.58, 734.61], [197.64, 738.53], [193.11, 734.21], [161.37, 705.62], [57.87, 611.03]], [[47.41, 463.57], [49.59, 461.18], [50.38, 460.31], [69.18, 439.61], [139.45, 362.25], [153.44, 346.82], [172.9, 325.4], [173.42, 324.97], [175.11, 325.38], [177.24, 325.3], [179.27, 324.64], [180.54, 323.78], [181.87, 324.92], [221.69, 361.5], [240.62, 378.89], [242.57, 380.68], [245.69, 383.55], [242.21, 387.57], [192.85, 443.19], [182.07, 455.35], [181.07, 456.46], [175.06, 463.16], [166.79, 472.36], [147.89, 493.44], [119.56, 524.9], [117.47, 527.26], [113.5, 523.65], [52.05, 467.79], [47.41, 463.57]], [[135.0, 358.22], [64.74, 435.58], [45.94, 456.27], [45.15, 457.14], [42.97, 459.54], [38.79, 455.75], [-7.25, 413.34], [-13.71, 407.36], [-12.09, 405.61], [23.47, 367.07], [69.49, 317.2], [110.29, 274.4], [113.52, 271.07], [117.12, 267.09], [121.68, 271.17], [168.13, 313.28], [169.07, 314.17], [168.35, 316.08], [168.19, 318.25], [168.64, 320.37], [168.93, 320.9], [168.75, 321.04], [149.0, 342.79], [135.0, 358.22]], [[121.88, 261.95], [125.52, 258.13], [164.49, 214.25], [166.75, 211.8], [192.58, 183.81], [194.4, 181.85], [197.39, 178.61], [201.93, 182.62], [248.34, 224.06], [253.24, 228.29], [249.57, 232.12], [235.17, 247.18], [181.78, 306.91], [180.71, 308.11], [178.7, 310.62], [178.15, 310.36], [176.09, 310.03], [175.0, 310.15], [172.89, 308.15], [126.36, 265.97], [121.88, 261.95]], [[239.58, 251.26], [253.9, 236.27], [258.61, 231.35], [262.83, 235.16], [309.1, 276.58], [319.76, 285.97], [327.19, 292.73], [322.97, 297.21], [305.22, 317.37], [300.69, 322.41], [296.4, 327.19], [283.24, 341.86], [269.26, 357.44], [253.92, 373.82], [250.0, 378.01], [247.31, 375.53], [245.36, 373.74], [226.42, 356.34], [186.52, 319.69], [183.51, 317.1], [183.39, 316.0], [182.98, 314.88], [185.29, 311.99], [186.25, 310.91], [239.58, 251.26]], [[366.11, 300.27], [362.6, 304.17], [394.84, 333.23], [399.43, 337.38], [420.09, 355.99], [422.7, 358.35], [459.5, 391.52], [483.08, 412.78], [489.26, 418.34], [483.26, 425.33], [477.61, 420.16], [470.41, 413.57], [396.14, 344.31], [370.54, 320.44], [339.16, 291.17], [344.04, 286.29], [362.68, 303.91], [366.11, 300.27]], [[365.91, 267.66], [363.41, 273.86], [362.34, 277.05], [360.61, 283.0], [360.31, 287.91], [350.97, 279.08], [354.56, 275.21], [371.94, 257.62], [365.91, 267.66]], [[367.55, 284.21], [369.03, 279.13], [369.98, 276.28], [372.19, 270.79], [377.99, 261.14], [385.11, 248.75], [389.7, 239.73], [392.34, 241.91], [399.12, 233.68], [400.15, 232.58], [405.67, 226.31], [427.07, 202.7], [429.92, 199.09], [431.18, 200.32], [433.54, 202.55], [453.78, 220.71], [455.95, 222.59], [463.03, 229.0], [465.63, 231.29], [499.19, 261.2], [532.62, 291.92], [567.55, 322.83], [572.45, 327.36], [568.06, 331.56], [566.35, 333.52], [537.29, 367.11], [533.81, 371.13], [532.7, 372.49], [530.43, 374.87], [501.14, 405.37], [498.67, 407.98], [496.42, 410.66], [490.11, 404.98], [466.53, 383.72], [429.74, 350.55], [427.12, 348.19], [406.47, 329.58], [401.87, 325.44], [369.63, 296.37], [369.46, 296.56], [368.31, 295.48], [367.83, 293.87], [367.24, 289.27], [367.55, 284.21]], [[503.22, 256.75], [469.61, 226.79], [467.02, 224.52], [459.93, 218.1], [457.74, 216.21], [437.6, 198.13], [435.34, 196.0], [433.73, 194.42], [439.12, 188.16], [463.11, 162.09], [487.36, 135.32], [493.98, 128.13], [497.94, 123.83], [498.82, 124.61], [501.27, 126.88], [522.43, 146.52], [545.79, 168.21], [558.4, 179.92], [576.39, 195.76], [632.11, 248.32], [634.61, 250.68], [639.74, 255.55], [583.58, 316.21], [582.35, 317.69], [576.77, 323.18], [571.58, 318.38], [536.64, 287.47], [503.22, 256.75]], [[575.24, 34.16], [577.41, 30.6], [579.89, 23.58], [588.01, 25.66], [590.29, 26.29], [634.51, 37.9], [640.75, 39.43], [686.9, 51.99], [694.1, 54.48], [701.13, 57.45], [706.65, 60.15], [711.9, 63.26], [716.92, 66.4], [721.58, 69.85], [725.4, 72.94], [747.44, 93.08], [762.55, 107.09], [767.22, 111.45], [763.54, 114.38], [741.76, 137.81], [713.08, 169.18], [711.66, 170.87], [705.83, 179.78], [699.59, 187.19], [689.64, 199.09], [683.03, 206.8], [662.29, 230.2], [643.76, 251.1], [638.74, 246.32], [636.23, 243.96], [580.43, 191.33], [562.43, 175.47], [549.87, 163.82], [526.51, 142.13], [505.36, 122.49], [502.84, 120.15], [501.96, 119.38], [537.33, 79.29], [559.3, 55.49], [575.24, 34.16]], [[544.38, 8.57], [538.03, 6.47], [530.61, 3.4], [520.92, -1.43], [515.63, -4.62], [510.55, -8.23], [494.12, -20.9], [489.53, -24.56], [492.2, -27.48], [496.62, -23.54], [501.08, -20.04], [505.84, -16.86], [510.47, -14.17], [515.98, -11.31], [519.86, -9.44], [523.86, -7.71], [528.96, -5.78], [534.04, -3.99], [541.04, -1.81], [548.03, 0.2], [550.45, 0.82], [563.67, 3.5], [568.16, 13.51], [562.01, 12.06], [549.75, 10.06], [544.38, 8.57]], [[566.79, -19.93], [565.7, -27.28], [553.27, -48.85], [488.43, -133.31], [428.36, -199.55], [364.76, -263.3], [278.19, -345.81], [67.72, -556.97], [44.71, -580.0], [4.05, -619.65], [-41.48, -668.16], [-98.89, -728.57], [-149.24, -787.37], [-160.69, -800.73], [-159.3, -801.79], [-174.28, -821.36], [-176.66, -824.68], [-173.63, -823.87], [-160.72, -812.04], [-149.4, -801.66], [-147.21, -797.84], [-145.99, -798.54], [-145.76, -798.32], [-148.28, -796.32], [-130.34, -773.74], [-96.71, -733.63], [-68.15, -701.89], [-37.96, -673.95], [-9.44, -645.52], [-0.14, -635.99], [19.35, -615.05], [48.0, -584.2], [70.89, -559.96], [168.02, -464.52], [281.55, -348.9], [369.28, -270.38], [398.32, -242.18], [424.43, -215.16], [534.03, -85.59], [569.44, -43.44], [570.73, -44.54], [577.58, -32.77], [580.66, -25.58], [582.0, -21.38], [582.36, -20.22], [583.22, -17.53], [584.38, -12.56], [584.4, -10.67], [584.42, -7.93], [584.02, -5.14], [583.85, -4.2], [583.43, -2.19], [582.64, 1.72], [578.84, 0.62], [568.69, -2.46], [565.28, -10.23], [565.61, -11.44], [566.79, -19.93]], [[-193.32, 448.46], [-196.41, 451.79], [-226.49, 484.25], [-226.52, 484.28], [-227.72, 484.99], [-229.21, 485.23], [-230.26, 485.13], [-233.54, 483.3], [-243.17, 474.6], [-253.24, 465.48], [-255.55, 463.39], [-261.86, 457.69], [-276.6, 444.35], [-278.82, 442.34], [-279.7, 441.54], [-295.14, 427.58], [-307.74, 416.18], [-315.02, 409.6], [-318.8, 406.17], [-325.61, 400.02], [-346.58, 381.06], [-347.45, 380.26], [-369.65, 360.18], [-372.65, 357.47], [-369.92, 354.57], [-350.1, 332.95], [-329.87, 310.27], [-327.49, 307.65], [-315.06, 293.9], [-313.57, 292.26], [-309.38, 287.61], [-305.21, 291.36], [-256.72, 335.13], [-248.76, 342.31], [-214.45, 373.28], [-202.69, 383.89], [-185.2, 399.66], [-168.63, 414.63], [-165.04, 417.86], [-169.08, 422.24], [-170.46, 423.73], [-171.71, 425.08], [-193.32, 448.46]], [[-280.26, 255.41], [-273.52, 247.96], [-248.04, 219.79], [-245.44, 216.9], [-244.57, 215.94], [-240.33, 219.82], [-224.67, 234.12], [-222.57, 236.03], [-211.59, 246.06], [-210.86, 246.73], [-196.83, 259.54], [-195.62, 260.64], [-178.74, 276.05], [-166.37, 287.36], [-156.37, 296.49], [-141.94, 309.66], [-134.8, 315.1], [-121.3, 326.74], [-118.03, 329.5], [-108.95, 338.03], [-100.02, 347.58], [-105.26, 353.25], [-130.71, 380.76], [-149.76, 401.35], [-154.79, 406.8], [-157.18, 409.37], [-160.28, 412.72], [-163.94, 409.43], [-180.51, 394.46], [-198.0, 378.69], [-209.76, 368.09], [-244.07, 337.11], [-252.03, 329.93], [-300.52, 286.16], [-304.68, 282.42], [-301.45, 278.85], [-299.23, 276.39], [-284.49, 260.09], [-280.26, 255.41]], [[-274.74, 169.44], [-275.13, 169.08], [-278.59, 165.93], [-320.66, 127.54], [-326.91, 121.73], [-320.94, 115.02], [-318.27, 110.7], [-316.97, 106.39], [-316.37, 102.03], [-316.37, 102.01], [-315.04, 103.24], [-282.41, 67.8], [-285.61, 64.85], [-281.04, 64.33], [-276.05, 62.15], [-271.92, 59.24], [-268.82, 55.9], [-261.86, 62.07], [-235.3, 86.35], [-232.79, 88.6], [-226.77, 94.16], [-223.34, 97.29], [-219.96, 100.38], [-206.66, 112.53], [-185.17, 132.18], [-181.33, 135.69], [-183.76, 138.23], [-185.96, 140.69], [-210.39, 167.71], [-227.66, 186.8], [-238.13, 198.38], [-239.82, 200.26], [-240.35, 200.84], [-244.16, 197.36], [-261.33, 181.68], [-267.62, 175.95], [-274.74, 169.44]], [[-238.98, 1.32], [-236.2, -1.72], [-228.96, -9.64], [-225.67, -12.17], [-221.24, -14.08], [-216.15, -15.16], [-216.38, -10.58], [-217.86, -6.04], [-220.08, -2.26], [-241.07, 20.41], [-244.04, 23.61], [-262.13, 43.15], [-264.45, 45.65], [-272.47, 37.96], [-270.38, 35.66], [-242.03, 4.66], [-238.98, 1.32]], [[-238.78, -4.08], [-241.56, -1.05], [-244.62, 2.3], [-272.96, 33.3], [-275.05, 35.59], [-282.05, 29.41], [-293.79, 18.67], [-358.39, -40.37], [-360.66, -42.44], [-358.56, -43.68], [-337.48, -67.26], [-333.39, -74.31], [-339.44, -77.82], [-343.18, -71.39], [-363.05, -49.15], [-367.59, -46.48], [-372.64, -51.29], [-397.67, -74.81], [-409.85, -85.84], [-419.18, -94.27], [-421.27, -96.35], [-422.89, -98.28], [-424.28, -100.31], [-425.59, -102.81], [-426.69, -105.39], [-427.46, -110.28], [-427.48, -112.87], [-427.1, -116.88], [-425.71, -120.53], [-424.19, -123.5], [-422.18, -126.64], [-419.22, -130.66], [-413.61, -137.0], [-378.27, -174.71], [-374.38, -178.71], [-371.3, -176.06], [-341.12, -149.75], [-336.52, -155.02], [-366.72, -181.35], [-369.55, -183.78], [-366.08, -187.47], [-345.73, -210.08], [-338.16, -218.41], [-332.29, -225.17], [-324.2, -234.5], [-297.38, -265.12], [-287.07, -276.91], [-282.85, -273.05], [-263.8, -255.65], [-238.96, -233.08], [-221.69, -217.38], [-211.35, -208.0], [-218.12, -200.23], [-249.09, -166.65], [-282.04, -130.51], [-283.69, -128.63], [-282.52, -127.61], [-283.97, -127.01], [-284.46, -127.12], [-284.54, -126.77], [-289.77, -124.6], [-296.3, -121.1], [-305.81, -115.7], [-295.49, -110.63], [-289.77, -108.11], [-283.54, -106.23], [-283.4, -105.85], [-282.89, -106.03], [-281.38, -105.58], [-282.42, -104.4], [-210.24, -40.57], [-203.17, -33.89], [-212.61, -24.18], [-216.82, -19.76], [-215.82, -18.8], [-222.3, -17.43], [-227.46, -15.21], [-231.33, -12.23], [-238.78, -4.08]], [[-276.82, -125.85], [-243.93, -161.92], [-212.9, -195.56], [-203.88, -205.92], [-195.76, -214.38], [-156.37, -258.39], [-142.49, -273.28], [-131.52, -285.03], [-127.46, -287.35], [-122.87, -288.36], [-119.07, -288.1], [-115.45, -286.01], [-43.97, -222.19], [-34.85, -214.04], [-26.53, -206.0], [45.18, -142.13], [46.32, -139.23], [47.17, -135.66], [47.53, -132.79], [47.33, -129.23], [46.72, -126.89], [45.46, -125.1], [-18.64, -54.06], [-26.78, -44.69], [-35.86, -35.24], [-99.92, 35.01], [-100.54, 35.26], [-103.21, 36.49], [-106.96, 37.16], [-111.04, 36.93], [-114.29, 36.06], [-116.31, 35.19], [-186.97, -28.74], [-195.83, -36.58], [-205.51, -45.74], [-277.11, -109.04], [-278.91, -114.12], [-279.05, -119.55], [-277.85, -124.67], [-276.82, -125.85]], [[-278.13, -278.21], [-282.04, -281.79], [-271.94, -292.9], [-237.89, -330.34], [-229.25, -339.84], [-202.69, -369.05], [-199.37, -372.7], [-197.3, -368.99], [-194.74, -365.26], [-163.14, -336.3], [-150.58, -325.21], [-146.75, -322.66], [-141.7, -321.96], [-136.21, -322.3], [-132.86, -322.43], [-128.33, -322.69], [-127.44, -306.5], [-126.79, -294.66], [-130.01, -293.95], [-135.91, -290.58], [-147.61, -278.06], [-161.54, -263.11], [-200.9, -219.14], [-206.63, -213.16], [-216.98, -222.56], [-234.25, -238.26], [-259.08, -260.82], [-278.13, -278.21]], [[-277.85, -298.29], [-286.82, -288.43], [-291.68, -292.69], [-295.0, -295.58], [-305.37, -304.43], [-305.33, -308.05], [-306.54, -311.64], [-308.6, -314.75], [-321.07, -325.91], [-332.92, -336.52], [-348.51, -350.46], [-353.94, -355.32], [-348.79, -360.92], [-277.58, -438.54], [-273.33, -443.17], [-268.02, -438.17], [-229.92, -402.67], [-208.19, -382.71], [-204.47, -378.98], [-208.61, -374.44], [-235.17, -345.23], [-243.81, -335.72], [-277.85, -298.29]], [[-210.74, -511.36], [-206.7, -515.78], [-202.1, -511.49], [-199.7, -509.27], [-145.52, -459.72], [-140.18, -451.21], [-136.99, -446.16], [-139.33, -445.57], [-144.04, -443.46], [-148.74, -440.26], [-173.8, -413.34], [-196.65, -387.58], [-199.76, -384.16], [-203.34, -387.76], [-225.17, -407.81], [-263.24, -443.28], [-268.6, -448.33], [-265.45, -451.76], [-230.82, -489.5], [-212.14, -509.85], [-210.74, -511.36]], [[-87.93, -406.6], [-67.02, -387.41], [-60.74, -381.79], [-63.64, -377.09], [-105.39, -331.5], [-106.99, -330.31], [-109.02, -329.75], [-115.58, -329.38], [-118.72, -329.24], [-121.67, -329.07], [-121.93, -333.99], [-122.18, -338.46], [-124.73, -384.98], [-125.01, -390.21], [-127.16, -429.37], [-127.63, -437.9], [-124.89, -437.25], [-122.87, -436.41], [-94.93, -413.02], [-87.93, -406.6]], [[5.92, -448.79], [7.35, -450.34], [10.11, -453.35], [14.07, -449.84], [25.61, -439.42], [87.45, -381.65], [94.02, -375.9], [101.51, -369.34], [99.34, -366.73], [98.21, -365.41], [71.19, -335.57], [43.51, -305.73], [41.11, -303.07], [33.59, -309.77], [-46.58, -382.99], [-50.6, -386.74], [-48.61, -389.9], [-46.32, -392.32], [-20.53, -419.96], [5.92, -448.79]], [[-380.86, -549.99], [-402.2, -569.58], [-410.53, -577.23], [-412.49, -579.01], [-418.1, -583.99], [-415.89, -587.45], [-359.93, -647.9], [-355.8, -652.46], [-353.07, -650.04], [-350.41, -647.62], [-324.92, -624.24], [-307.67, -608.6], [-291.9, -594.02], [-282.94, -585.74], [-282.36, -585.2], [-274.52, -578.02], [-268.39, -572.39], [-248.37, -554.03], [-217.62, -525.82], [-215.47, -523.86], [-211.1, -519.85], [-215.17, -515.42], [-216.56, -513.9], [-235.24, -493.55], [-269.87, -455.81], [-273.05, -452.34], [-276.86, -455.64], [-329.75, -503.37], [-341.75, -514.31], [-375.37, -544.95], [-380.86, -549.99]], [[-270.46, -582.44], [-278.3, -589.62], [-278.86, -590.14], [-287.83, -598.42], [-303.62, -613.02], [-320.88, -628.67], [-346.37, -652.05], [-349.06, -654.5], [-349.17, -654.6], [-343.63, -660.81], [-289.63, -717.05], [-284.28, -722.32], [-282.44, -720.57], [-266.4, -706.07], [-267.79, -704.63], [-257.23, -694.43], [-246.45, -684.62], [-231.28, -670.84], [-221.82, -662.22], [-190.51, -633.75], [-153.7, -600.24], [-143.11, -590.63], [-150.73, -585.39], [-163.93, -571.05], [-187.73, -545.23], [-202.23, -529.49], [-207.04, -524.27], [-211.42, -528.28], [-213.56, -530.24], [-244.32, -558.46], [-264.33, -576.81], [-270.46, -582.44]], [[-285.53, -122.57], [-286.07, -120.27], [-285.88, -112.83], [-284.99, -110.32], [-288.55, -111.4], [-294.01, -113.8], [-298.33, -115.92], [-294.61, -118.03], [-288.27, -121.43], [-285.53, -122.57]], [[-467.02, -452.95], [-482.4, -466.96], [-487.17, -471.29], [-499.7, -482.7], [-504.42, -487.0], [-495.29, -497.02], [-476.17, -517.99], [-459.5, -536.29], [-440.16, -557.5], [-425.59, -573.48], [-422.11, -578.19], [-417.17, -573.81], [-415.26, -572.06], [-406.94, -564.42], [-385.59, -544.84], [-380.09, -539.79], [-346.47, -509.14], [-334.45, -498.18], [-281.5, -450.39], [-277.79, -447.19], [-282.0, -442.6], [-353.21, -364.98], [-358.41, -359.32], [-362.01, -362.56], [-372.04, -371.53], [-375.63, -372.89], [-378.95, -373.17], [-381.56, -373.03], [-396.27, -387.4], [-414.44, -403.74], [-418.77, -407.58], [-420.73, -409.31], [-445.19, -432.0], [-466.17, -452.17], [-467.02, -452.95]], [[-271.64, -718.55], [-270.62, -715.46], [-270.49, -715.16], [-279.72, -723.51], [-283.58, -727.17], [-280.96, -729.67], [-270.98, -739.63], [-271.63, -738.09], [-272.69, -734.16], [-273.15, -730.74], [-273.17, -728.33], [-273.08, -725.34], [-272.49, -721.64], [-271.64, -718.55]], [[-372.07, -332.94], [-366.03, -341.45], [-360.98, -336.81], [-322.13, -301.09], [-319.2, -299.6], [-316.2, -298.87], [-314.17, -298.86], [-314.53, -298.44], [-301.85, -287.62], [-298.58, -284.78], [-293.43, -280.26], [-302.65, -269.73], [-329.48, -239.1], [-337.58, -229.76], [-343.39, -223.05], [-350.92, -214.77], [-371.23, -192.21], [-374.8, -188.41], [-379.94, -193.04], [-440.82, -247.94], [-445.47, -252.17], [-441.53, -255.92], [-436.94, -261.02], [-419.45, -280.41], [-413.97, -286.5], [-407.59, -293.57], [-395.3, -307.19], [-384.39, -319.28], [-372.07, -332.94]], [[-316.76, -306.21], [-318.1, -306.89], [-356.24, -341.96], [-361.64, -346.93], [-361.04, -347.58], [-355.51, -342.64], [-339.93, -328.7], [-328.07, -318.09], [-316.61, -307.82], [-316.05, -306.98], [-315.85, -306.39], [-315.85, -305.99], [-316.76, -306.21]], [[-365.51, -351.59], [-366.06, -350.99], [-369.58, -354.23], [-378.7, -362.61], [-377.98, -362.55], [-377.58, -362.4], [-369.02, -354.74], [-365.51, -351.59]], [[-284.55, 179.44], [-284.16, 179.8], [-277.06, 186.29], [-270.77, 192.02], [-253.6, 207.7], [-249.74, 211.22], [-250.63, 212.21], [-253.24, 215.1], [-278.71, 243.26], [-285.45, 250.71], [-289.68, 255.39], [-304.42, 271.7], [-306.64, 274.16], [-309.88, 277.74], [-313.82, 274.18], [-358.13, 234.19], [-360.22, 232.3], [-390.68, 204.82], [-399.26, 197.07], [-396.1, 193.56], [-382.41, 178.31], [-340.67, 131.79], [-338.84, 129.76], [-330.15, 137.84], [-288.02, 176.27], [-284.55, 179.44]], [[-289.06, 37.22], [-282.32, 43.17], [-285.61, 46.77], [-288.53, 51.83], [-289.81, 57.45], [-289.65, 61.14], [-292.71, 58.32], [-325.34, 93.76], [-323.74, 95.23], [-324.23, 95.26], [-328.94, 96.49], [-333.2, 98.99], [-336.43, 101.78], [-342.0, 107.9], [-348.24, 102.25], [-425.17, 33.22], [-428.9, 29.85], [-428.05, 28.92], [-406.66, 5.42], [-392.18, -10.46], [-372.16, -32.45], [-369.04, -35.88], [-365.47, -32.62], [-300.88, 26.42], [-289.06, 37.22]], [[-282.37, 49.15], [-279.38, 45.88], [-271.76, 53.18], [-274.57, 56.21], [-278.02, 58.65], [-282.09, 60.42], [-285.65, 60.83], [-285.79, 57.81], [-284.76, 53.31], [-282.37, 49.15]], [[-392.83, 168.95], [-406.52, 184.2], [-409.66, 187.69], [-413.52, 184.2], [-418.47, 179.72], [-447.37, 153.58], [-455.86, 145.9], [-459.48, 142.63], [-462.7, 139.72], [-466.3, 136.46], [-495.09, 110.44], [-499.04, 106.86], [-495.96, 103.48], [-493.99, 101.31], [-484.65, 91.06], [-455.11, 58.63], [-452.55, 55.83], [-440.11, 42.15], [-438.33, 40.2], [-434.54, 43.62], [-357.61, 112.65], [-349.16, 120.29], [-351.08, 122.44], [-392.83, 168.95]], [[-324.71, 107.8], [-326.58, 110.83], [-330.64, 115.38], [-333.43, 115.67], [-334.52, 114.65], [-335.63, 115.84], [-335.62, 115.72], [-334.6, 114.59], [-335.54, 113.73], [-335.44, 111.09], [-331.54, 106.8], [-329.11, 104.7], [-326.24, 103.02], [-323.47, 102.3], [-323.83, 104.89], [-324.71, 107.8]], [[-423.46, 217.77], [-423.23, 217.77], [-420.61, 217.07], [-418.05, 215.84], [-415.39, 214.12], [-411.69, 210.92], [-407.17, 206.59], [-406.02, 200.41], [-395.36, 210.01], [-364.91, 237.5], [-362.82, 239.39], [-318.51, 279.38], [-314.58, 282.93], [-318.77, 287.56], [-320.25, 289.2], [-332.68, 302.95], [-335.08, 305.6], [-355.29, 328.26], [-375.04, 349.8], [-377.85, 352.78], [-383.3, 347.84], [-400.58, 332.21], [-402.57, 330.41], [-403.66, 329.43], [-404.47, 328.69], [-425.94, 309.27], [-456.38, 281.74], [-458.39, 279.92], [-469.41, 269.95], [-465.72, 265.87], [-453.45, 252.29], [-450.21, 248.71], [-444.18, 242.04], [-439.69, 237.07], [-429.89, 226.24], [-422.79, 218.37], [-423.46, 217.77]], [[-421.83, 213.77], [-421.93, 213.8], [-421.78, 212.96], [-421.19, 211.3], [-420.08, 209.32], [-418.22, 206.57], [-414.26, 201.76], [-409.48, 199.84], [-410.4, 204.84], [-414.05, 208.33], [-417.49, 211.31], [-419.76, 212.78], [-421.83, 213.77]], [[-135.11, -454.41], [-140.88, -463.6], [-195.64, -513.69], [-198.01, -515.89], [-202.63, -520.2], [-197.82, -525.42], [-183.32, -541.16], [-159.52, -566.99], [-146.78, -580.83], [-140.71, -585.0], [-140.18, -571.2], [-137.68, -530.53], [-133.63, -462.74], [-133.92, -456.17], [-134.09, -453.32], [-134.13, -452.87], [-135.11, -454.41]], [[-92.24, -544.57], [-44.31, -501.85], [-35.11, -493.65], [-31.1, -490.08], [-21.81, -480.71], [-14.33, -474.05], [-9.69, -471.0], [-2.25, -464.38], [1.4, -461.11], [5.63, -457.34], [2.94, -454.4], [1.51, -452.85], [-24.93, -424.03], [-50.7, -396.43], [-53.38, -393.59], [-55.11, -390.84], [-59.96, -395.19], [-80.83, -414.34], [-88.01, -420.92], [-117.35, -445.48], [-121.64, -447.27], [-126.92, -448.52], [-127.46, -448.48], [-127.11, -452.83], [-126.93, -455.8], [-126.62, -462.79], [-130.69, -530.95], [-133.18, -571.55], [-133.59, -581.9], [-130.1, -578.31], [-103.83, -554.91], [-92.24, -544.57]], [[366.09, -3074.97], [374.84, -3068.19], [383.42, -3060.96], [388.3, -3055.76], [392.52, -3050.87], [395.59, -3045.69], [397.8, -3032.82], [401.72, -3014.99], [399.12, -3010.07], [397.57, -3010.89], [361.7, -2942.99], [352.42, -2925.41], [340.44, -2897.12], [330.17, -2867.27], [315.47, -2819.03], [322.11, -2817.01], [322.08, -2816.96], [318.77, -2817.86], [315.54, -2805.98], [312.12, -2800.24], [301.99, -2785.96], [295.82, -2780.08], [287.21, -2771.86], [272.39, -2761.9], [251.98, -2754.86], [242.91, -2750.95], [230.95, -2741.47], [226.12, -2734.98], [221.6, -2731.61], [222.61, -2730.27], [222.48, -2730.1], [218.91, -2733.91], [206.86, -2722.62], [173.78, -2690.06], [161.81, -2679.4], [157.84, -2675.85], [145.92, -2666.4], [142.95, -2664.5], [124.58, -2652.77], [94.0, -2636.26], [72.06, -2626.72], [66.04, -2624.09], [64.62, -2623.57], [55.33, -2620.16], [51.63, -2629.84], [47.91, -2638.61], [45.71, -2643.83], [39.59, -2661.74], [34.3, -2675.19], [29.37, -2699.41], [27.75, -2717.32], [32.73, -2756.66], [38.99, -2806.04], [38.07, -2829.85], [35.26, -2851.42], [20.48, -2894.02], [-0.75, -2935.5], [-25.23, -2975.86], [-61.71, -3017.08], [-68.61, -3021.24], [-70.43, -3076.97], [-70.39, -3089.28], [21.55, -3093.18], [68.85, -3095.19], [131.14, -3098.7], [136.4, -3099.0], [177.42, -3098.69], [236.21, -3094.26], [253.2, -3092.56], [265.79, -3090.74], [288.52, -3087.34], [299.34, -3085.73], [357.17, -3076.22], [365.8, -3073.91], [366.09, -3074.97]], [[15.87, -2211.4], [7.54, -2211.15], [84.65, -2328.08], [144.67, -2410.91], [156.25, -2427.13], [203.94, -2492.4], [221.03, -2519.41], [237.19, -2547.32], [248.76, -2570.44], [263.61, -2604.02], [273.83, -2633.23], [268.88, -2634.97], [273.83, -2633.23], [284.55, -2663.85], [290.26, -2682.1], [295.76, -2701.31], [311.05, -2752.38], [315.28, -2751.66], [313.62, -2745.65], [307.34, -2719.73], [291.56, -2665.9], [275.82, -2618.39], [261.44, -2583.01], [246.26, -2551.47], [228.21, -2519.13], [207.71, -2487.62], [158.7, -2423.69], [146.69, -2407.27], [102.89, -2350.15], [57.77, -2283.64], [29.56, -2239.74], [36.93, -2235.01], [30.98, -2238.7], [20.49, -2221.81], [14.54, -2212.22], [15.87, -2211.4]], [[-27.25, -2209.88], [-45.37, -2209.17], [-48.87, -2209.04], [-44.99, -2215.63], [-18.13, -2262.34], [-12.81, -2271.79], [-6.47, -2281.96], [4.6, -2299.72], [34.14, -2347.08], [46.12, -2366.3], [48.03, -2372.15], [48.03, -2382.76], [47.37, -2387.66], [44.18, -2393.61], [41.39, -2396.85], [37.22, -2401.83], [23.27, -2405.12], [-0.93, -2405.11], [-113.7, -2401.29], [-154.82, -2399.9], [-160.94, -2399.69], [-165.45, -2507.81], [-167.03, -2514.26], [-168.6, -2520.66], [-164.1, -2522.78], [-128.96, -2536.22], [-82.17, -2554.66], [-50.25, -2566.92], [-37.1, -2572.11], [12.7, -2591.95], [16.34, -2593.4], [56.22, -2609.3], [57.43, -2606.01], [69.44, -2610.43], [71.25, -2611.09], [77.65, -2613.89], [100.13, -2623.66], [131.69, -2640.7], [150.48, -2652.7], [154.06, -2654.99], [166.86, -2665.13], [171.13, -2668.95], [183.35, -2679.84], [216.56, -2712.52], [228.49, -2723.69], [226.11, -2726.23], [234.87, -2732.78], [247.65, -2739.6], [260.41, -2742.81], [269.65, -2741.96], [277.41, -2738.63], [282.17, -2732.84], [283.4, -2729.5], [284.56, -2726.33], [285.15, -2718.3], [284.61, -2708.5], [279.13, -2690.89], [268.83, -2655.65], [268.3, -2649.2], [263.92, -2636.7], [253.83, -2607.88], [239.26, -2574.91], [227.94, -2552.3], [212.05, -2524.85], [195.26, -2498.31], [147.74, -2433.27], [136.15, -2417.04], [76.01, -2334.06], [-5.27, -2210.79], [-5.19, -2210.74], [-5.75, -2210.72], [-8.46, -2212.29], [-9.45, -2210.57], [-27.25, -2209.88]], [[-33.69, -2137.41], [-3.62, -2185.94], [-1.93, -2188.64], [6.69, -2203.52], [4.05, -2205.05], [14.2, -2205.35], [2.75, -2187.96], [-9.38, -2170.12], [-101.17, -2029.0], [-53.66, -2107.31], [-33.69, -2137.41]], [[39.2, -2390.19], [41.57, -2385.79], [42.03, -2382.36], [42.03, -2373.1], [40.64, -2368.85], [29.05, -2350.26], [-0.49, -2302.89], [-11.56, -2285.14], [-17.98, -2274.85], [-23.34, -2265.31], [-50.18, -2218.64], [-55.99, -2208.77], [-87.75, -2207.53], [-112.57, -2206.55], [-117.32, -2206.37], [-153.2, -2204.98], [-153.43, -2210.83], [-160.47, -2387.96], [-160.7, -2393.7], [-154.62, -2393.91], [-113.5, -2395.3], [-0.83, -2399.11], [22.57, -2399.12], [33.9, -2396.45], [36.81, -2392.97], [39.2, -2390.19]], [[-101.98, -3040.84], [-76.19, -3069.4], [-74.73, -3024.86], [-101.98, -3040.84]], [[37.55, -2216.85], [39.91, -2213.21], [40.51, -2212.44], [31.73, -2212.0], [30.85, -2211.96], [32.38, -2214.42], [36.6, -2221.22], [37.55, -2216.85]], [[-210.7, -806.45], [-208.48, -803.74], [-210.72, -806.43], [-217.27, -800.95], [-220.08, -798.0], [-221.65, -797.66], [-221.37, -798.9], [-218.77, -802.02], [-217.02, -804.0], [-199.53, -819.25], [-193.5, -823.58], [-191.27, -824.24], [-190.87, -824.19], [-192.54, -822.25], [-198.18, -816.76], [-210.7, -806.45]], [[-185.41, -810.1], [-189.5, -810.44], [-191.25, -810.18], [-195.66, -809.57], [-196.01, -809.48], [-193.5, -811.54], [-187.43, -817.45], [-185.78, -819.38], [-182.72, -815.11], [-176.01, -806.34], [-182.58, -809.25], [-185.41, -810.1]], [[-195.86, -831.23], [-197.07, -830.87], [-204.5, -825.53], [-210.29, -820.48], [-206.08, -828.91], [-203.6, -833.32], [-202.63, -837.74], [-202.25, -841.05], [-195.86, -831.23]], [[-157.32, -815.47], [-155.97, -813.1], [-158.02, -814.98], [-171.65, -827.47], [-175.88, -828.61], [-178.71, -829.31], [-180.61, -829.5], [-181.26, -830.25], [-180.71, -831.79], [-179.65, -836.2], [-180.07, -842.23], [-182.33, -848.06], [-185.87, -855.05], [-187.81, -859.48], [-184.47, -855.39], [-172.81, -838.67], [-157.32, -815.47]], [[49.94, 191.22], [51.62, 189.36], [63.77, 175.89], [67.77, 171.46], [73.57, 165.02], [92.34, 144.22], [99.25, 136.57], [110.79, 123.77], [117.78, 116.03], [119.47, 114.21], [123.28, 109.96], [127.77, 114.12], [152.01, 136.48], [154.19, 138.51], [188.48, 170.45], [192.94, 174.58], [189.99, 177.78], [188.18, 179.74], [162.34, 207.73], [160.04, 210.23], [121.1, 254.06], [117.4, 257.95], [113.04, 254.04], [81.42, 225.32], [51.51, 198.45], [47.13, 194.33], [49.94, 191.22]], [[206.44, 160.3], [200.13, 166.92], [195.63, 162.76], [161.35, 130.83], [159.15, 128.78], [134.9, 106.41], [130.4, 102.24], [133.53, 98.93], [135.61, 96.74], [139.86, 100.65], [201.76, 156.1], [206.44, 160.3]], [[113.56, -26.82], [140.74, -56.46], [143.36, -59.32], [148.05, -55.23], [207.9, -3.12], [213.37, 1.64], [209.71, 5.67], [175.53, 44.02], [163.23, 57.43], [159.95, 61.01], [142.66, 80.52], [141.03, 82.28], [137.17, 86.36], [132.47, 82.2], [69.55, 26.17], [65.41, 26.03], [71.32, 19.2], [113.56, -26.82]], [[89.18, -114.66], [88.4, -116.21], [87.64, -127.56], [87.34, -132.29], [94.31, -132.7], [163.88, -136.3], [187.85, -137.51], [197.03, -137.97], [197.04, -137.14], [196.45, -133.04], [196.43, -132.88], [194.29, -126.85], [192.17, -123.35], [189.23, -119.64], [174.61, -104.15], [164.17, -93.09], [148.89, -76.9], [148.25, -76.23], [140.58, -68.09], [135.99, -72.16], [113.02, -92.44], [97.27, -106.56], [92.65, -111.15], [89.18, -114.66]], [[129.63, -200.4], [131.1, -202.01], [136.95, -205.33], [142.0, -200.78], [191.16, -156.25], [193.84, -152.72], [195.15, -149.84], [196.49, -145.06], [196.63, -143.95], [187.55, -143.5], [163.58, -142.3], [93.97, -138.7], [88.1, -138.35], [87.75, -141.87], [87.35, -153.05], [87.47, -153.95], [88.15, -154.93], [129.63, -200.4]], [[168.18, -247.3], [176.94, -256.78], [183.64, -260.36], [181.6, -254.36], [171.95, -244.1], [145.36, -213.93], [141.07, -212.39], [140.95, -212.5], [140.74, -212.27], [140.61, -212.23], [141.71, -213.49], [140.96, -214.14], [141.57, -217.2], [155.09, -233.51], [168.18, -247.3]], [[46.34, -298.42], [48.68, -301.0], [76.35, -330.84], [103.47, -360.78], [104.69, -362.22], [106.8, -364.75], [114.66, -357.98], [118.42, -355.1], [119.4, -354.22], [138.74, -335.72], [148.31, -326.49], [157.96, -317.66], [165.74, -310.54], [171.1, -305.43], [193.31, -285.14], [198.47, -280.78], [195.99, -278.65], [184.51, -266.02], [185.36, -265.25], [174.77, -259.58], [165.62, -249.7], [152.47, -235.83], [138.3, -218.75], [137.92, -216.79], [134.57, -219.7], [109.01, -242.89], [97.45, -253.32], [53.72, -291.89], [46.34, -298.42]], [[-124.39, 79.11], [-123.84, 78.79], [-123.15, 78.62], [-122.05, 78.48], [-114.52, 78.4], [-108.66, 78.16], [-108.4, 83.79], [-105.06, 156.02], [-104.0, 179.01], [-103.54, 189.07], [-104.99, 189.0], [-107.73, 188.0], [-110.56, 186.14], [-118.64, 178.76], [-124.96, 172.97], [-149.78, 150.29], [-165.05, 136.34], [-170.1, 131.72], [-167.96, 128.13], [-161.9, 121.28], [-153.38, 111.65], [-150.36, 108.24], [-125.02, 79.64], [-124.39, 79.11]], [[-89.64, 76.57], [-87.51, 76.59], [-85.58, 76.74], [-84.16, 77.05], [-82.96, 77.49], [-82.04, 77.94], [-81.28, 78.49], [-69.8, 89.27], [-38.13, 120.0], [-33.49, 124.52], [-40.39, 132.56], [-54.78, 146.58], [-87.51, 183.38], [-90.67, 186.76], [-93.83, 189.17], [-96.48, 190.13], [-97.48, 190.33], [-98.01, 178.74], [-99.07, 155.74], [-102.4, 83.51], [-102.71, 76.81], [-98.9, 76.82], [-89.64, 76.57]], [[53.31, 38.63], [54.39, 43.4], [115.67, 100.77], [120.01, 104.62], [115.04, 110.16], [113.35, 111.98], [106.34, 119.75], [94.79, 132.55], [87.89, 140.2], [69.12, 161.0], [63.31, 167.44], [59.32, 171.87], [47.16, 185.34], [45.49, 187.2], [42.76, 190.21], [38.97, 186.64], [29.41, 177.7], [-9.8, 141.03], [-21.83, 128.69], [-25.15, 125.37], [-23.33, 123.09], [-0.27, 97.3], [14.67, 80.79], [18.68, 76.38], [45.56, 46.73], [53.31, 38.63]], [[90.17, -108.68], [94.86, -104.02], [110.69, -89.83], [133.67, -69.54], [138.2, -65.52], [134.84, -61.86], [107.67, -32.23], [65.35, 13.88], [55.74, 24.98], [51.06, 20.95], [31.32, 3.15], [19.11, -8.08], [-9.58, -34.38], [-19.25, -42.69], [-13.4, -49.42], [50.95, -120.73], [53.17, -123.9], [54.28, -128.13], [54.39, -130.14], [68.71, -131.15], [75.03, -131.55], [83.85, -132.08], [84.15, -127.33], [84.96, -115.27], [86.3, -112.59], [90.17, -108.68]], [[-53.7, -375.28], [26.56, -301.97], [34.05, -295.29], [31.57, -292.55], [5.32, -263.55], [-25.02, -230.05], [-32.73, -221.53], [-39.3, -227.41], [-111.33, -291.71], [-116.98, -294.97], [-119.81, -295.16], [-120.45, -306.88], [-121.34, -323.08], [-118.41, -323.24], [-115.28, -323.39], [-108.03, -323.79], [-104.3, -324.83], [-101.35, -327.02], [-58.84, -373.46], [-56.25, -377.65], [-53.7, -375.28]], [[-131.72, -384.6], [-129.17, -338.07], [-128.92, -333.61], [-128.65, -328.68], [-133.14, -328.43], [-136.51, -328.3], [-141.47, -327.99], [-144.57, -328.41], [-146.91, -329.98], [-159.12, -340.76], [-190.18, -369.22], [-192.19, -372.16], [-195.11, -377.38], [-190.7, -382.24], [-167.88, -407.96], [-143.49, -434.15], [-140.12, -436.45], [-136.69, -437.99], [-134.67, -438.5], [-134.15, -428.99], [-132.0, -389.83], [-131.72, -384.6]], [[131.03, -208.87], [127.31, -206.76], [125.2, -204.45], [83.44, -158.67], [81.69, -156.15], [81.34, -153.32], [81.76, -141.47], [82.11, -137.99], [74.66, -137.53], [68.31, -137.13], [54.17, -136.14], [54.07, -136.91], [53.02, -141.34], [51.08, -146.24], [-21.76, -211.13], [-27.6, -216.77], [-19.83, -225.35], [10.51, -258.85], [36.76, -287.85], [39.29, -290.64], [46.76, -284.02], [90.46, -245.48], [101.97, -235.11], [127.6, -211.85], [131.03, -208.87]], [[-211.75, -14.93], [-207.56, -19.33], [-198.01, -29.16], [-191.64, -23.52], [-120.14, 41.16], [-116.58, 42.69], [-112.16, 43.87], [-110.21, 43.98], [-110.05, 56.58], [-109.42, 72.19], [-114.67, 72.4], [-122.46, 72.48], [-124.24, 72.71], [-126.14, 73.17], [-127.86, 74.2], [-129.2, 75.31], [-154.85, 104.26], [-157.87, 107.67], [-166.4, 117.31], [-172.82, 124.58], [-174.62, 127.59], [-178.08, 124.43], [-199.57, 104.78], [-212.87, 92.62], [-216.25, 89.54], [-219.67, 86.42], [-225.73, 80.83], [-228.26, 78.56], [-254.84, 54.27], [-261.88, 48.02], [-259.56, 45.52], [-241.47, 25.99], [-238.5, 22.78], [-217.25, -0.16], [-214.65, -4.59], [-212.91, -9.94], [-212.61, -15.75], [-211.75, -14.93]], [[26.6, 8.33], [46.43, 26.2], [51.41, 30.49], [40.44, 41.96], [13.49, 71.67], [9.48, 76.09], [-5.48, 92.62], [-28.68, 118.57], [-31.26, 121.81], [-35.69, 117.49], [-67.38, 86.74], [-79.05, 75.77], [-80.24, 74.93], [-81.58, 74.27], [-83.19, 73.68], [-85.07, 73.27], [-87.36, 73.09], [-89.68, 73.07], [-98.94, 73.32], [-102.37, 73.31], [-103.06, 56.39], [-103.21, 43.6], [-101.1, 43.22], [-97.8, 41.7], [-95.85, 40.94], [-30.75, -30.46], [-23.97, -37.52], [-14.23, -29.15], [14.38, -2.93], [26.6, 8.33]], [[127.82, 87.43], [132.36, 91.45], [124.75, 99.47], [120.39, 95.6], [60.74, 39.76], [60.03, 36.62], [60.01, 33.32], [62.87, 32.95], [66.79, 33.08], [127.82, 87.43]], [[-95.29, 365.29], [-91.71, 460.88], [-91.51, 464.49], [-91.29, 474.56], [-91.28, 474.99], [-96.92, 469.9], [-120.63, 448.5], [-150.88, 421.22], [-155.09, 417.41], [-152.04, 414.13], [-149.65, 411.55], [-144.62, 406.1], [-125.57, 385.51], [-100.12, 358.0], [-95.92, 353.45], [-95.29, 365.29]], [[-76.2, 367.66], [-55.82, 385.1], [-27.35, 409.46], [-25.35, 411.13], [-27.37, 413.32], [-28.16, 414.17], [-31.44, 417.74], [-81.14, 471.6], [-84.28, 475.0], [-84.29, 474.41], [-84.51, 464.22], [-84.72, 460.55], [-88.29, 364.97], [-88.77, 356.06], [-84.95, 359.66], [-76.2, 367.66]], [[-172.14, 144.09], [-156.87, 158.04], [-132.05, 180.72], [-125.72, 186.51], [-117.02, 194.46], [-112.48, 197.44], [-107.1, 199.41], [-103.09, 199.6], [-102.85, 205.67], [-102.25, 218.65], [-100.61, 254.45], [-99.47, 273.54], [-99.4, 274.75], [-99.33, 276.1], [-96.87, 322.22], [-96.49, 330.86], [-99.03, 328.14], [-108.71, 319.04], [-112.22, 316.09], [-125.98, 304.23], [-132.95, 298.91], [-146.93, 286.15], [-156.93, 277.02], [-169.3, 265.71], [-186.18, 250.3], [-187.39, 249.2], [-201.41, 236.4], [-202.14, 235.73], [-213.14, 225.69], [-215.23, 223.78], [-230.88, 209.48], [-235.18, 205.56], [-234.63, 204.95], [-232.94, 203.08], [-222.47, 191.5], [-205.2, 172.4], [-180.76, 145.37], [-178.62, 142.99], [-176.16, 140.41], [-172.14, 144.09]], [[-94.58, 196.88], [-90.44, 195.4], [-85.95, 191.97], [-82.34, 188.09], [-49.71, 151.42], [-35.28, 137.35], [-29.64, 130.78], [-26.81, 133.61], [-14.7, 146.03], [24.63, 182.82], [34.18, 191.75], [38.07, 195.41], [33.85, 200.09], [31.76, 202.4], [11.9, 224.42], [-2.45, 240.32], [-14.52, 253.7], [-40.48, 282.46], [-62.18, 306.52], [-76.02, 321.86], [-85.19, 332.02], [-90.19, 337.56], [-90.87, 321.93], [-93.34, 275.78], [-93.41, 274.41], [-93.48, 273.17], [-94.62, 254.14], [-96.25, 218.38], [-96.85, 205.41], [-97.17, 197.41], [-94.58, 196.88]], [[19.06, 363.0], [-16.5, 401.54], [-18.22, 403.4], [-20.59, 401.43], [-48.99, 377.13], [-69.25, 359.8], [-77.81, 351.96], [-87.16, 343.16], [-80.74, 336.05], [-71.57, 325.88], [-57.73, 310.54], [-36.02, 286.48], [-10.07, 257.72], [2.0, 244.34], [16.35, 228.44], [36.21, 206.43], [38.3, 204.11], [42.44, 199.52], [46.77, 203.6], [76.73, 230.52], [108.35, 259.24], [112.64, 263.09], [109.14, 266.97], [105.96, 270.24], [65.11, 313.1], [19.06, 363.0]], [[35.91, 467.32], [33.37, 470.12], [8.96, 497.01], [-22.72, 531.91], [-25.52, 535.01], [-29.95, 531.14], [-79.98, 485.38], [-83.04, 482.5], [-81.57, 480.91], [-76.73, 475.67], [-27.02, 421.8], [-23.76, 418.25], [-22.97, 417.4], [-20.83, 415.08], [-14.38, 421.06], [31.71, 463.5], [35.91, 467.32]], [[44.48, 599.18], [-17.04, 543.09], [-21.11, 539.08], [-18.27, 535.94], [13.41, 501.04], [37.82, 474.15], [40.36, 471.35], [44.99, 475.56], [106.43, 531.42], [110.49, 535.1], [108.83, 536.95], [107.65, 538.27], [53.94, 598.12], [52.35, 599.88], [49.2, 603.22], [44.48, 599.18]], [[198.75, -118.77], [201.56, -123.41], [204.29, -131.1], [204.38, -132.04], [205.04, -136.6], [205.04, -137.43], [216.74, -138.2], [240.47, -139.25], [249.89, -139.72], [299.39, -141.99], [332.63, -143.75], [342.9, -142.14], [341.6, -139.18], [339.81, -136.48], [337.34, -132.75], [323.26, -117.56], [318.32, -112.14], [311.61, -104.53], [298.81, -90.9], [293.4, -85.04], [279.09, -69.56], [266.03, -55.45], [264.14, -53.41], [222.15, -7.91], [217.42, -2.78], [211.84, -7.64], [151.99, -59.76], [147.45, -63.71], [154.08, -70.75], [154.71, -71.42], [169.99, -87.6], [180.42, -98.66], [195.29, -114.4], [198.75, -118.77]], [[303.2, -86.81], [316.05, -100.49], [322.79, -108.14], [327.68, -113.49], [342.07, -129.03], [344.81, -133.16], [346.89, -136.3], [347.29, -137.22], [348.73, -135.04], [351.06, -132.62], [353.19, -130.27], [384.17, -103.04], [385.7, -101.7], [387.39, -100.22], [399.35, -89.77], [407.44, -83.83], [415.78, -78.3], [420.24, -75.56], [419.06, -74.26], [406.67, -60.61], [406.01, -59.87], [403.87, -57.76], [402.87, -56.68], [366.88, -17.24], [365.99, -16.25], [345.22, 6.51], [338.31, 14.47], [331.88, 21.61], [319.27, 35.61], [317.45, 37.63], [311.53, 44.25], [296.34, 60.85], [293.07, 64.46], [288.25, 60.17], [267.09, 41.36], [265.2, 39.68], [247.52, 23.95], [226.53, 5.28], [221.92, 1.18], [226.56, -3.84], [268.55, -49.34], [270.44, -51.38], [283.49, -65.49], [297.81, -80.97], [303.2, -86.81]], [[434.81, -75.84], [430.91, -78.32], [432.26, -79.78], [436.79, -76.71], [487.4, -31.12], [485.33, -28.86], [437.07, -74.28], [434.81, -75.84]], [[340.17, -154.1], [341.74, -151.35], [342.17, -150.35], [333.04, -151.78], [299.0, -149.98], [249.51, -147.71], [240.09, -147.25], [216.3, -146.19], [204.51, -145.41], [204.35, -146.65], [202.68, -152.59], [200.76, -156.84], [197.09, -161.68], [147.36, -206.71], [144.02, -209.73], [147.39, -210.93], [174.54, -241.75], [184.67, -252.52], [188.15, -262.72], [188.96, -261.99], [200.18, -274.34], [203.17, -276.91], [208.28, -272.84], [239.72, -245.37], [273.37, -216.43], [325.16, -170.31], [335.05, -160.64], [340.17, -154.1]], [[420.09, -85.04], [412.02, -90.39], [404.36, -96.02], [392.65, -106.24], [390.97, -107.71], [389.45, -109.04], [358.81, -135.99], [356.9, -138.08], [355.0, -140.06], [354.25, -141.2], [354.57, -141.15], [356.95, -140.6], [358.61, -139.34], [366.03, -132.79], [382.61, -117.83], [405.94, -97.09], [414.49, -90.56], [422.41, -85.8], [427.09, -83.02], [425.74, -81.56], [420.09, -85.04]], [[293.45, 72.95], [297.36, 76.66], [343.47, 118.92], [348.16, 123.13], [343.78, 127.59], [334.75, 137.29], [324.74, 148.42], [314.52, 159.81], [307.94, 167.11], [277.22, 201.27], [275.27, 203.44], [271.85, 207.29], [267.59, 203.16], [239.63, 176.93], [222.34, 160.72], [217.84, 156.5], [219.83, 154.09], [233.75, 138.71], [247.66, 123.39], [263.96, 105.45], [286.48, 80.64], [288.81, 77.99], [293.45, 72.95]], [[489.8, -15.39], [506.38, -2.6], [511.79, 1.24], [517.55, 4.71], [527.71, 9.77], [535.59, 13.04], [542.35, 15.27], [548.24, 16.9], [560.64, 18.93], [566.22, 20.24], [564.69, 24.56], [563.62, 26.31], [548.52, 46.53], [526.93, 69.91], [489.51, 112.33], [489.51, 112.33], [483.69, 118.64], [477.02, 125.88], [452.77, 152.65], [428.67, 178.85], [423.78, 184.52], [422.21, 182.94], [420.35, 180.86], [405.79, 167.54], [401.88, 164.05], [397.99, 160.49], [391.55, 154.59], [361.32, 127.13], [356.77, 122.88], [360.98, 118.51], [363.1, 116.14], [457.18, 11.09], [458.38, 9.78], [482.9, -17.4], [484.77, -19.4], [489.8, -15.39]], [[222.54, 9.76], [243.54, 28.43], [261.21, 44.16], [263.1, 45.85], [284.26, 64.65], [289.03, 68.89], [284.35, 73.98], [282.01, 76.64], [259.52, 101.41], [243.22, 119.36], [229.3, 134.68], [215.29, 150.17], [213.41, 152.44], [208.77, 148.28], [146.92, 92.88], [142.83, 89.11], [145.4, 86.38], [147.1, 84.56], [164.41, 65.03], [167.66, 61.49], [179.98, 48.04], [214.17, 9.68], [217.87, 5.61], [222.54, 9.76]], [[370.44, -12.22], [371.32, -13.2], [407.3, -52.63], [408.18, -53.59], [410.36, -55.73], [411.13, -56.6], [423.49, -70.22], [425.42, -72.33], [430.39, -69.17], [432.02, -68.04], [479.9, -22.98], [478.48, -21.46], [453.94, 5.75], [452.73, 7.06], [358.63, 112.14], [356.58, 114.43], [352.35, 118.83], [347.5, 114.48], [301.45, 72.27], [297.49, 68.52], [300.78, 64.89], [315.98, 48.27], [321.91, 41.63], [323.73, 39.62], [336.33, 25.63], [342.81, 18.44], [349.7, 10.5], [370.44, -12.22]], [[325.1, 280.0], [314.41, 270.59], [268.18, 229.21], [264.1, 225.53], [265.63, 223.89], [270.24, 218.34], [274.88, 222.31], [304.51, 251.27], [330.87, 273.48], [339.53, 280.9], [333.12, 287.31], [325.1, 280.0]], [[318.98, 163.83], [329.2, 152.43], [339.18, 141.34], [348.11, 131.73], [352.59, 127.18], [357.26, 131.54], [387.5, 159.03], [393.94, 164.92], [397.86, 168.5], [401.76, 171.99], [416.08, 185.08], [417.84, 187.05], [419.92, 189.16], [416.37, 193.65], [395.23, 216.98], [389.77, 223.18], [388.59, 224.45], [381.54, 233.0], [384.23, 235.22], [349.51, 270.37], [345.09, 275.13], [336.05, 267.39], [309.89, 245.34], [280.28, 216.41], [275.45, 212.27], [279.74, 207.44], [281.68, 205.29], [312.4, 171.13], [318.98, 163.83]], [[208.9, 174.77], [204.58, 170.95], [210.87, 164.35], [215.16, 168.38], [232.45, 184.59], [260.34, 210.75], [264.99, 215.27], [261.13, 219.93], [260.45, 220.65], [255.26, 216.17], [208.9, 174.77]], [[312.47, -2794.68], [309.66, -2784.36], [307.2, -2776.12], [302.44, -2760.23], [295.17, -2759.58], [285.61, -2758.72], [264.14, -2755.35], [273.96, -2758.74], [289.41, -2769.12], [298.24, -2777.54], [304.65, -2783.66], [312.47, -2794.68]], [[385.83, -3063.5], [377.04, -3070.92], [371.93, -3074.88], [376.01, -3074.74], [392.2, -3069.01], [399.82, -3064.05], [413.15, -3058.38], [420.19, -3057.73], [424.92, -3058.92], [404.25, -3019.78], [401.24, -3033.49], [398.93, -3046.92], [395.38, -3052.92], [390.9, -3058.1], [385.83, -3063.5]], [[330.45, -2814.47], [326.98, -2802.14], [320.58, -2778.4], [319.6, -2775.48], [317.93, -2770.5], [314.7, -2764.57], [317.26, -2773.11], [319.76, -2781.48], [328.86, -2814.95], [330.45, -2814.47]], [[368.07, -2903.85], [370.52, -2905.65], [358.34, -2878.67], [345.83, -2840.77], [335.99, -2805.74], [325.71, -2773.57], [321.02, -2758.79], [315.66, -2759.71], [317.65, -2761.63], [321.62, -2768.89], [323.39, -2774.21], [324.41, -2777.24], [330.84, -2801.08], [342.03, -2840.93], [347.83, -2859.09], [356.38, -2883.26], [359.47, -2890.1], [368.07, -2903.85]], [[285.26, -2734.6], [279.57, -2741.51], [270.52, -2745.4], [260.14, -2746.35], [256.17, -2745.35], [261.96, -2747.93], [286.47, -2751.77], [295.8, -2752.61], [300.28, -2753.01], [288.38, -2713.27], [288.66, -2718.33], [288.01, -2727.07], [286.68, -2730.7], [285.26, -2734.6]], [[709.93, 1083.78], [711.51, 1082.03], [712.8, 1080.63], [717.16, 1084.75], [852.08, 1209.32], [856.98, 1213.85], [856.83, 1214.02], [855.73, 1215.32], [853.37, 1218.1], [832.09, 1241.78], [799.97, 1277.1], [795.47, 1282.06], [790.42, 1277.36], [653.93, 1153.95], [649.8, 1149.64], [653.91, 1145.24], [654.79, 1144.27], [707.4, 1086.55], [709.93, 1083.78]], [[722.05, 1070.47], [723.33, 1069.08], [777.96, 1009.12], [782.11, 1004.57], [786.57, 1008.65], [788.86, 1010.74], [919.72, 1130.18], [922.06, 1132.31], [926.82, 1136.67], [922.78, 1141.11], [867.83, 1201.56], [863.88, 1205.93], [859.21, 1201.61], [724.33, 1077.08], [719.87, 1072.86], [722.05, 1070.47]], [[1002.61, 1070.9], [1138.19, 1194.13], [1141.88, 1197.49], [1137.64, 1202.19], [1136.23, 1203.73], [1083.52, 1261.88], [1079.66, 1266.15], [1075.78, 1262.63], [1073.76, 1260.78], [943.56, 1142.44], [940.56, 1139.8], [935.95, 1135.55], [940.19, 1130.87], [995.42, 1070.07], [998.24, 1066.98], [1002.61, 1070.9]], [[1062.98, 1043.36], [1066.67, 1046.64], [1081.03, 1059.4], [1087.3, 1064.98], [1126.23, 1100.15], [1131.42, 1104.84], [1139.56, 1112.36], [1169.62, 1140.16], [1173.42, 1143.67], [1179.35, 1148.93], [1183.08, 1152.24], [1173.87, 1162.36], [1152.02, 1186.35], [1149.92, 1188.66], [1146.59, 1192.31], [1142.9, 1188.95], [1007.3, 1065.7], [1002.94, 1061.79], [1007.11, 1057.2], [1039.02, 1022.08], [1043.78, 1026.31], [1062.98, 1043.36]], [[993.49, 1053.2], [957.27, 1020.23], [931.2, 996.33], [929.62, 994.88], [899.88, 967.62], [858.15, 929.95], [853.75, 925.97], [858.05, 921.25], [859.37, 919.81], [924.36, 848.49], [927.28, 845.3], [930.0, 842.31], [942.13, 852.81], [960.87, 869.04], [1006.35, 911.1], [1020.37, 924.07], [1067.52, 967.7], [1074.47, 974.13], [1071.48, 977.42], [1060.26, 989.78], [1047.38, 1003.96], [1036.58, 1015.84], [1038.8, 1017.86], [1036.58, 1015.84], [1002.67, 1053.17], [998.49, 1057.77], [993.49, 1053.2]], [[967.93, 861.27], [965.75, 863.64], [965.71, 863.58], [967.81, 861.16], [956.68, 851.53], [950.87, 843.76], [947.2, 839.26], [945.65, 835.87], [952.22, 841.86], [980.03, 867.21], [1011.92, 896.23], [1025.92, 909.06], [1040.62, 922.47], [1051.04, 931.97], [1077.54, 956.12], [1084.76, 962.72], [1081.51, 966.33], [1074.65, 959.99], [1027.5, 916.36], [1013.48, 903.39], [967.93, 861.27]], [[1033.0, 901.32], [1019.0, 888.47], [987.1, 859.45], [959.29, 834.1], [947.44, 823.29], [952.02, 818.26], [954.16, 815.91], [977.13, 790.71], [978.89, 788.78], [987.55, 779.29], [989.72, 776.9], [997.73, 768.11], [1021.41, 742.15], [1025.57, 737.59], [1028.75, 740.47], [1092.35, 798.02], [1103.69, 808.3], [1119.36, 822.47], [1163.44, 862.35], [1165.78, 864.47], [1169.4, 867.76], [1164.96, 872.66], [1150.3, 888.9], [1141.06, 898.45], [1131.15, 909.65], [1096.95, 948.26], [1091.38, 954.55], [1084.61, 948.37], [1058.11, 924.21], [1047.69, 914.71], [1033.0, 901.32]], [[930.8, 645.48], [882.88, 601.97], [878.44, 598.0], [884.1, 591.78], [908.83, 564.57], [937.28, 533.27], [938.51, 531.88], [947.76, 521.75], [951.04, 518.13], [976.01, 490.66], [996.34, 468.31], [999.88, 464.41], [1011.72, 451.39], [1039.57, 420.75], [1050.88, 408.31], [1073.58, 383.32], [1077.05, 379.51], [1081.94, 383.82], [1104.15, 403.55], [1142.29, 437.39], [1155.18, 448.84], [1188.05, 478.0], [1194.39, 483.63], [1210.8, 498.19], [1218.42, 504.72], [1223.5, 509.06], [1219.48, 513.46], [1216.49, 516.73], [1193.77, 541.58], [1188.77, 547.04], [1186.89, 549.1], [1154.8, 582.45], [1144.82, 594.16], [1141.14, 599.09], [1132.65, 608.71], [1126.05, 616.16], [1094.67, 651.64], [1091.38, 655.12], [1086.89, 660.13], [1078.58, 669.37], [1028.42, 724.1], [1024.4, 728.49], [1019.69, 724.31], [960.53, 671.85], [957.83, 669.45], [930.8, 645.48]], [[1041.56, 337.1], [1026.04, 322.69], [1000.11, 298.63], [993.74, 292.71], [991.8, 290.92], [937.79, 241.23], [933.36, 236.82], [937.25, 232.66], [938.49, 231.35], [954.43, 214.29], [989.25, 177.01], [994.91, 170.96], [1001.0, 172.5], [1004.33, 175.04], [1011.71, 180.41], [1017.79, 185.37], [1137.9, 294.8], [1142.68, 299.15], [1137.78, 304.5], [1136.03, 306.47], [1118.67, 325.56], [1082.69, 365.13], [1077.68, 370.65], [1071.76, 365.23], [1057.83, 352.2], [1049.44, 344.43], [1041.56, 337.1]], [[1029.74, 175.42], [1035.0, 172.77], [1039.56, 171.46], [1044.72, 171.63], [1070.72, 177.74], [1070.43, 178.95], [1074.74, 179.99], [1157.43, 199.72], [1185.01, 206.83], [1195.1, 209.79], [1205.13, 217.79], [1206.39, 218.83], [1211.7, 223.23], [1205.47, 230.09], [1203.82, 231.9], [1151.74, 289.18], [1151.07, 289.92], [1146.72, 294.71], [1141.93, 290.36], [1023.03, 182.03], [1025.3, 179.44], [1027.63, 177.34], [1028.42, 176.61], [1029.74, 175.42]], [[504.14, 1018.8], [499.91, 1015.14], [504.34, 1010.27], [560.48, 948.65], [562.28, 946.68], [563.02, 945.87], [567.33, 949.58], [577.0, 958.01], [591.5, 971.35], [605.93, 985.08], [624.93, 1003.18], [631.39, 1009.31], [629.57, 1011.27], [602.4, 1040.58], [573.27, 1072.0], [569.58, 1075.97], [562.57, 1070.36], [557.49, 1065.92], [543.64, 1053.04], [529.1, 1040.44], [513.64, 1027.04], [504.14, 1018.8]], [[492.36, 869.87], [491.59, 869.17], [477.07, 855.68], [474.04, 852.82], [425.13, 806.63], [420.95, 802.61], [423.44, 799.88], [424.56, 798.65], [478.99, 738.99], [484.5, 732.93], [487.99, 736.11], [490.64, 738.57], [621.26, 859.47], [623.36, 861.44], [627.28, 864.97], [623.47, 869.15], [567.27, 930.82], [564.83, 933.49], [560.38, 929.52], [537.91, 909.65], [528.93, 901.84], [499.29, 876.12], [492.36, 869.87]], [[554.76, 663.3], [608.54, 712.25], [690.4, 786.76], [694.86, 790.8], [691.13, 794.9], [635.78, 855.65], [632.0, 859.79], [628.09, 856.29], [626.04, 854.36], [495.4, 733.43], [492.73, 730.95], [489.22, 727.76], [491.62, 725.14], [518.05, 696.15], [546.94, 664.48], [551.07, 659.95], [554.76, 663.3]], [[435.01, 546.05], [409.21, 522.9], [406.35, 520.29], [409.62, 516.7], [411.04, 515.15], [436.36, 487.37], [443.69, 479.34], [451.49, 470.79], [476.93, 442.89], [479.05, 440.56], [481.5, 437.88], [486.32, 442.17], [531.61, 482.47], [564.75, 512.04], [626.47, 566.9], [622.99, 570.71], [567.07, 632.02], [552.92, 647.13], [550.42, 650.09], [545.88, 646.26], [487.79, 593.54], [452.91, 562.22], [450.11, 559.63], [435.01, 546.05]], [[544.53, 464.22], [542.43, 466.49], [547.99, 471.62], [550.28, 476.54], [562.42, 490.5], [593.39, 520.47], [618.18, 543.89], [621.96, 547.29], [624.64, 549.58], [626.07, 550.96], [627.56, 552.87], [628.91, 555.02], [571.73, 504.2], [538.6, 474.63], [493.3, 434.32], [488.46, 430.02], [494.58, 422.89], [500.3, 427.54], [542.43, 466.49], [544.53, 464.22], [544.53, 464.22]], [[534.76, 379.02], [537.2, 376.46], [538.41, 374.99], [541.82, 371.04], [570.89, 337.45], [572.4, 335.7], [577.0, 331.32], [581.43, 334.88], [650.72, 395.61], [715.85, 458.39], [720.04, 462.42], [716.5, 466.32], [675.03, 512.01], [667.69, 520.99], [648.47, 542.48], [645.58, 545.16], [642.75, 542.6], [627.62, 529.23], [610.79, 514.63], [579.76, 486.7], [549.56, 458.78], [507.18, 419.6], [500.98, 414.57], [503.15, 411.97], [505.48, 409.51], [534.76, 379.02]], [[268.79, 678.58], [404.82, 802.04], [408.75, 805.6], [407.31, 807.18], [406.19, 808.41], [403.28, 811.59], [363.78, 854.89], [351.09, 868.81], [350.3, 869.68], [347.06, 873.23], [343.3, 869.74], [206.69, 747.1], [202.72, 743.35], [206.61, 739.47], [208.18, 737.79], [262.28, 678.28], [263.55, 676.89], [265.08, 675.22], [268.79, 678.58]], [[282.78, 412.77], [280.43, 415.37], [286.32, 420.7], [327.85, 458.3], [328.93, 459.29], [339.21, 468.64], [354.3, 482.22], [391.79, 516.5], [396.46, 520.75], [392.87, 524.69], [390.13, 527.69], [370.98, 548.69], [349.85, 571.88], [337.31, 585.63], [334.26, 588.97], [329.51, 584.56], [326.87, 582.39], [291.76, 550.76], [285.29, 544.98], [243.57, 507.72], [232.25, 497.6], [195.36, 464.66], [192.75, 462.29], [188.6, 458.54], [198.09, 447.84], [247.48, 392.18], [251.18, 387.9], [256.98, 393.22], [258.72, 394.81], [280.75, 414.99], [282.78, 412.77]], [[285.13, 410.18], [284.79, 410.55], [262.77, 390.39], [261.03, 388.8], [255.56, 383.78], [259.76, 379.29], [275.16, 362.85], [289.2, 347.2], [302.35, 332.54], [306.64, 327.76], [311.19, 322.69], [328.89, 302.59], [332.22, 299.06], [363.37, 328.12], [388.98, 351.99], [463.28, 421.29], [470.52, 427.9], [476.3, 433.19], [473.88, 435.84], [471.76, 438.17], [446.31, 466.08], [438.52, 474.62], [431.19, 482.65], [405.88, 510.42], [404.45, 511.97], [401.17, 515.58], [396.5, 511.33], [359.0, 477.04], [343.91, 463.45], [333.64, 454.11], [332.55, 453.12], [291.02, 415.51], [285.13, 410.18]], [[176.61, 319.2], [176.18, 319.34], [175.72, 319.36], [175.27, 319.25], [174.88, 319.02], [174.55, 318.68], [174.33, 318.28], [174.24, 317.83], [174.27, 317.38], [174.43, 316.95], [174.71, 316.58], [175.08, 316.3], [175.49, 316.14], [175.94, 316.09], [176.37, 316.15], [176.77, 316.34], [177.13, 316.64], [177.36, 316.97], [177.5, 317.36], [177.55, 317.77], [177.49, 318.16], [177.29, 318.58], [176.99, 318.94], [176.61, 319.2]], [[393.99, 651.99], [472.95, 722.42], [474.61, 723.89], [479.33, 728.22], [473.81, 734.27], [419.39, 793.93], [418.27, 795.16], [415.83, 797.84], [411.88, 794.26], [275.84, 670.79], [272.16, 667.46], [274.62, 664.77], [291.95, 645.76], [293.05, 644.55], [316.22, 619.14], [330.37, 603.61], [334.72, 598.85], [337.78, 601.61], [340.21, 604.04], [393.99, 651.99]], [[430.33, 551.26], [445.4, 564.8], [448.19, 567.39], [483.1, 598.74], [541.27, 651.53], [545.8, 655.34], [541.77, 659.76], [512.88, 691.44], [486.45, 720.42], [484.05, 723.04], [479.3, 718.7], [477.61, 717.2], [398.65, 646.77], [345.02, 598.94], [342.6, 596.53], [339.43, 593.68], [342.48, 590.34], [355.02, 576.59], [376.15, 553.41], [395.31, 532.4], [398.04, 529.4], [401.63, 525.47], [404.51, 528.09], [430.33, 551.26]], [[322.3, 587.69], [324.9, 589.84], [329.54, 594.14], [325.2, 598.9], [311.04, 614.43], [287.87, 639.84], [286.78, 641.05], [269.44, 660.05], [266.97, 662.77], [262.3, 658.53], [225.07, 624.8], [154.4, 560.74], [127.0, 535.9], [122.66, 531.97], [124.78, 529.56], [153.1, 498.12], [172.0, 477.04], [180.27, 467.83], [183.93, 463.75], [188.05, 467.48], [190.69, 469.86], [227.58, 502.82], [238.91, 512.94], [280.63, 550.2], [287.09, 555.97], [322.3, 587.69]], [[350.39, 1021.63], [350.78, 1021.19], [409.84, 953.61], [412.18, 950.93], [416.13, 946.42], [454.49, 981.88], [486.2, 1012.01], [490.38, 1015.98], [487.88, 1018.74], [424.64, 1088.79], [420.76, 1085.28], [389.26, 1056.79], [350.39, 1021.63]], [[466.83, 860.45], [469.89, 863.35], [484.46, 876.87], [485.28, 877.63], [492.34, 883.99], [522.04, 909.76], [530.98, 917.54], [553.41, 937.38], [557.76, 941.25], [557.11, 941.96], [555.31, 943.93], [499.17, 1005.56], [494.72, 1010.45], [491.02, 1006.94], [459.28, 976.77], [418.6, 939.17], [416.23, 941.74], [418.6, 939.17], [356.28, 881.74], [352.2, 877.99], [355.48, 874.4], [356.27, 873.53], [368.95, 859.61], [408.45, 816.31], [411.36, 813.13], [412.48, 811.89], [413.87, 810.37], [417.9, 814.23], [466.83, 860.45]], [[809.97, 139.67], [811.59, 141.13], [819.24, 147.99], [824.06, 152.31], [850.32, 175.89], [874.16, 197.27], [905.38, 225.29], [916.83, 235.84], [921.47, 240.03], [919.19, 242.49], [916.76, 245.02], [888.97, 274.67], [880.84, 283.33], [855.5, 312.96], [847.36, 322.11], [843.96, 326.0], [798.41, 375.0], [788.77, 385.29], [729.27, 451.9], [724.03, 457.93], [720.01, 454.07], [654.78, 391.19], [585.29, 330.28], [581.34, 327.11], [586.77, 321.76], [588.09, 320.18], [646.15, 257.46], [643.95, 255.42], [646.19, 257.41], [666.78, 234.17], [687.55, 210.74], [694.22, 202.97], [704.19, 191.04], [710.65, 183.37], [716.48, 174.46], [717.59, 173.14], [746.18, 141.87], [767.63, 118.79], [771.68, 115.56], [777.91, 119.35], [798.41, 132.37], [806.27, 136.11], [811.98, 137.44], [809.97, 139.67]], [[704.03, 51.08], [696.61, 47.94], [688.97, 45.3], [642.5, 32.65], [636.23, 31.11], [592.12, 19.53], [589.81, 18.89], [582.65, 17.06], [584.76, 15.63], [587.1, 10.6], [591.66, 11.57], [604.07, 15.14], [605.17, 11.3], [604.34, 14.7], [606.32, 15.18], [635.42, 22.38], [667.17, 30.87], [694.81, 39.73], [701.8, 42.18], [714.89, 49.24], [726.81, 58.83], [738.35, 71.3], [770.25, 98.39], [774.55, 102.1], [776.11, 103.29], [772.68, 106.97], [767.32, 101.96], [752.18, 87.93], [729.97, 67.63], [725.87, 64.31], [720.86, 60.61], [715.54, 57.28], [709.98, 53.99], [704.03, 51.08]], [[575.74, 13.29], [572.47, 6.01], [576.85, 7.34], [580.42, 8.36], [579.23, 10.92], [575.74, 13.29]], [[587.23, -28.02], [586.83, -28.95], [589.41, -23.81], [590.6, -19.77], [593.61, -9.27], [596.5, -2.83], [597.7, -1.4], [600.9, 5.9], [593.6, 3.8], [589.53, 2.94], [590.29, -0.78], [590.72, -2.86], [590.93, -4.01], [591.43, -7.46], [591.4, -10.73], [591.38, -13.39], [589.97, -19.4], [589.04, -22.33], [588.67, -23.49], [587.23, -28.02]], [[803.43, 125.28], [807.3, 128.85], [801.8, 126.24], [781.61, 113.4], [777.32, 110.8], [780.65, 107.21], [786.14, 110.91], [803.43, 125.28]], [[572.22, 636.77], [628.17, 575.43], [631.74, 571.52], [633.42, 572.98], [670.81, 605.35], [706.12, 638.23], [738.9, 668.47], [742.46, 664.61], [738.9, 668.47], [767.0, 694.36], [775.37, 702.46], [771.82, 706.35], [769.07, 709.38], [716.8, 766.73], [702.21, 782.42], [699.5, 785.56], [695.12, 781.58], [613.25, 707.07], [559.46, 658.12], [555.69, 654.69], [558.15, 651.79], [572.22, 636.77]], [[907.66, 798.32], [907.69, 798.37], [905.61, 800.76], [913.39, 807.52], [913.95, 808.01], [920.19, 817.6], [924.52, 822.85], [924.76, 823.29], [919.64, 818.55], [796.02, 707.12], [793.56, 704.9], [786.81, 698.8], [789.95, 695.34], [796.65, 701.45], [833.46, 735.0], [842.84, 743.52], [905.51, 800.67], [907.66, 798.32]], [[804.66, 679.16], [840.18, 640.09], [844.25, 635.6], [871.64, 605.47], [874.4, 602.44], [878.86, 606.43], [926.79, 649.95], [953.85, 673.94], [956.55, 676.34], [1015.71, 728.8], [1020.35, 732.92], [1016.23, 737.44], [992.56, 763.39], [984.54, 772.19], [982.37, 774.58], [973.71, 784.07], [971.96, 785.99], [948.99, 811.2], [946.85, 813.55], [942.21, 818.64], [929.45, 807.56], [923.52, 802.4], [920.27, 799.59], [912.54, 792.87], [849.91, 735.76], [840.52, 727.23], [803.72, 693.69], [797.02, 687.57], [802.57, 681.46], [804.66, 679.16]], [[886.06, 288.0], [894.07, 279.46], [921.84, 249.83], [924.28, 247.29], [928.94, 242.29], [932.94, 246.29], [987.05, 296.06], [988.98, 297.85], [995.34, 303.76], [1021.27, 327.82], [1036.79, 342.23], [1044.68, 349.56], [1053.06, 357.33], [1067.01, 370.37], [1073.34, 376.17], [1069.88, 379.95], [1047.18, 404.95], [1035.87, 417.38], [1008.02, 448.02], [996.17, 461.05], [992.63, 464.95], [972.31, 487.3], [947.34, 514.77], [944.06, 518.39], [934.79, 528.54], [933.56, 529.93], [905.13, 561.21], [880.4, 588.42], [874.73, 594.65], [869.63, 590.03], [842.43, 565.38], [831.25, 555.25], [802.68, 529.77], [788.53, 516.46], [785.64, 513.9], [733.64, 466.78], [729.15, 462.71], [734.52, 456.53], [793.93, 390.02], [803.53, 379.78], [849.16, 330.68], [852.61, 326.74], [860.77, 317.57], [886.06, 288.0]], [[649.93, 569.9], [648.36, 567.6], [646.93, 565.45], [646.38, 563.73], [645.59, 560.82], [645.32, 559.26], [707.05, 617.65], [776.69, 683.23], [786.26, 691.97], [783.16, 695.38], [774.2, 686.73], [746.02, 660.75], [741.37, 656.47], [741.08, 655.65], [705.48, 621.12], [687.38, 604.21], [668.97, 587.97], [662.86, 582.46], [656.61, 576.4], [649.93, 569.9]], [[784.49, 520.89], [798.63, 534.19], [827.24, 559.71], [838.4, 569.82], [865.6, 594.47], [870.69, 599.09], [867.94, 602.11], [840.55, 632.24], [836.47, 636.73], [800.96, 675.79], [798.87, 678.1], [793.32, 684.2], [783.83, 675.53], [714.26, 610.01], [650.73, 549.93], [653.47, 547.39], [673.01, 525.54], [680.33, 516.59], [721.69, 471.02], [725.16, 467.19], [729.61, 471.23], [781.63, 518.37], [784.49, 520.89]], [[620.89, 540.95], [596.16, 517.58], [565.33, 487.75], [564.9, 487.25], [572.69, 494.46], [603.84, 522.49], [620.7, 537.13], [635.76, 550.44], [640.77, 554.96], [641.88, 556.01], [641.77, 556.45], [641.69, 558.85], [642.17, 561.59], [643.03, 564.72], [643.75, 566.99], [645.4, 569.46], [640.29, 565.04], [636.09, 561.4], [634.71, 560.17], [634.52, 558.87], [633.97, 556.26], [632.78, 553.65], [630.83, 550.57], [629.06, 548.28], [627.33, 546.62], [624.59, 544.28], [620.89, 540.95]], [[773.33, 996.8], [777.64, 1000.57], [773.53, 1005.08], [718.9, 1065.03], [717.62, 1066.42], [715.43, 1068.83], [710.57, 1064.58], [653.93, 1015.19], [640.67, 1003.64], [632.16, 995.57], [613.17, 977.47], [598.67, 963.68], [584.0, 950.19], [574.21, 941.65], [570.1, 938.11], [572.45, 935.53], [628.64, 873.86], [632.56, 869.56], [637.29, 873.55], [639.47, 875.4], [770.58, 994.3], [773.33, 996.8]], [[700.03, 795.52], [703.9, 799.04], [839.89, 922.84], [844.58, 927.12], [841.29, 930.74], [838.52, 933.77], [785.77, 991.65], [782.36, 995.39], [777.99, 991.57], [775.28, 989.11], [644.09, 870.14], [641.81, 868.21], [637.28, 864.39], [640.95, 860.37], [696.31, 799.61], [700.03, 795.52]], [[912.56, 826.3], [925.53, 838.31], [922.84, 841.26], [919.93, 844.45], [854.93, 915.77], [853.62, 917.2], [849.3, 921.95], [844.6, 917.67], [708.61, 793.87], [704.68, 790.28], [707.43, 787.1], [721.95, 771.47], [774.24, 714.09], [776.99, 711.07], [780.48, 707.24], [786.51, 712.69], [788.98, 714.92], [912.56, 826.3]], [[943.0, 839.68], [934.77, 832.56], [931.79, 829.8], [931.03, 826.5], [927.86, 820.61], [926.32, 818.75], [937.82, 828.74], [940.36, 831.05], [941.17, 835.7], [943.0, 839.68]], [[649.5, 1141.18], [645.69, 1145.26], [641.55, 1140.79], [621.5, 1122.43], [585.84, 1089.46], [574.59, 1080.26], [574.15, 1079.87], [577.67, 1076.08], [606.8, 1044.66], [633.97, 1015.35], [635.83, 1013.35], [647.03, 1023.11], [703.66, 1072.49], [708.36, 1076.59], [707.08, 1077.99], [705.49, 1079.74], [702.96, 1082.51], [650.36, 1140.23], [649.5, 1141.18]], [[926.46, 1001.49], [952.55, 1025.4], [988.77, 1058.37], [993.79, 1062.95], [990.98, 1066.04], [935.75, 1126.84], [931.53, 1131.49], [926.78, 1127.15], [924.43, 1125.01], [793.58, 1005.58], [791.3, 1003.49], [786.83, 999.4], [790.21, 995.69], [842.96, 937.81], [845.72, 934.78], [849.03, 931.15], [853.46, 935.14], [895.17, 972.8], [924.88, 1000.03], [926.46, 1001.49]], [[1002.8, 1531.17], [922.24, 1458.2], [917.86, 1454.24], [921.99, 1449.47], [938.8, 1430.93], [941.59, 1427.74], [944.5, 1424.56], [949.96, 1428.38], [974.06, 1445.24], [982.51, 1451.38], [995.62, 1458.78], [1008.77, 1462.98], [1021.5, 1465.35], [1033.8, 1466.54], [1059.12, 1465.79], [1074.39, 1465.6], [1093.39, 1467.99], [1103.75, 1471.08], [1114.18, 1475.51], [1123.25, 1480.22], [1140.2, 1491.93], [1143.35, 1494.1], [1140.46, 1497.17], [1139.3, 1498.55], [1099.55, 1542.3], [1086.2, 1556.96], [1074.1, 1568.19], [1057.64, 1582.99], [1055.11, 1580.55], [1021.14, 1547.8], [1002.8, 1531.17], [1000.79, 1533.39], [1002.8, 1531.17]], [[1008.56, 1355.69], [1011.19, 1352.85], [1012.47, 1351.42], [1016.22, 1354.87], [1057.52, 1392.78], [1149.05, 1476.79], [1151.37, 1478.79], [1155.41, 1482.01], [1148.29, 1489.01], [1144.18, 1486.17], [1126.87, 1474.21], [1117.16, 1469.17], [1106.12, 1464.49], [1094.84, 1461.12], [1074.79, 1458.59], [1058.97, 1458.79], [1034.03, 1459.53], [1022.48, 1458.41], [1010.48, 1456.18], [998.44, 1452.33], [986.3, 1445.48], [978.12, 1439.54], [953.97, 1422.64], [949.24, 1419.34], [952.92, 1415.28], [954.57, 1413.45], [972.1, 1394.04], [1006.62, 1357.81], [1008.56, 1355.69]], [[1084.54, 1280.15], [1086.43, 1281.9], [1132.84, 1324.74], [1146.57, 1337.26], [1151.45, 1341.72], [1161.9, 1351.26], [1177.11, 1365.15], [1200.9, 1386.87], [1217.15, 1401.69], [1219.18, 1403.55], [1220.18, 1404.47], [1217.29, 1407.69], [1215.27, 1409.93], [1210.74, 1415.99], [1200.54, 1431.6], [1163.33, 1473.37], [1160.25, 1476.91], [1155.84, 1473.39], [1153.69, 1471.56], [1062.25, 1387.62], [1020.95, 1349.71], [1017.18, 1346.25], [1020.65, 1342.52], [1022.66, 1340.28], [1076.31, 1279.0], [1079.43, 1275.43], [1084.54, 1280.15]], [[820.94, 1561.66], [826.87, 1555.19], [824.66, 1553.16], [826.89, 1555.17], [891.49, 1483.43], [913.88, 1458.74], [918.21, 1462.65], [996.29, 1533.37], [992.7, 1536.54], [807.49, 1700.31], [805.23, 1702.31], [801.32, 1697.91], [762.01, 1653.74], [759.77, 1650.78], [757.59, 1645.67], [755.73, 1640.68], [754.34, 1636.12], [753.11, 1632.09], [754.64, 1631.49], [756.4, 1630.54], [759.52, 1628.87], [763.92, 1625.25], [794.97, 1589.97], [820.94, 1561.66]], [[857.97, 1759.48], [854.71, 1762.19], [851.96, 1759.3], [812.37, 1710.46], [809.2, 1706.81], [811.46, 1704.81], [996.67, 1541.04], [1000.76, 1537.42], [1017.05, 1552.18], [1050.94, 1584.87], [1053.16, 1587.01], [1014.64, 1621.63], [877.97, 1742.18], [857.97, 1759.48]], [[744.04, 1432.79], [748.43, 1436.88], [790.04, 1392.26], [816.03, 1416.7], [783.34, 1452.41], [782.2, 1454.07], [781.49, 1456.18], [781.39, 1458.41], [781.86, 1460.35], [814.36, 1543.39], [816.17, 1546.87], [817.46, 1549.37], [820.65, 1553.09], [816.52, 1557.6], [790.5, 1585.96], [759.73, 1620.92], [756.16, 1623.86], [753.56, 1625.26], [752.12, 1626.03], [751.33, 1626.34], [749.77, 1621.33], [729.28, 1555.77], [697.9, 1457.28], [682.48, 1409.26], [685.96, 1407.78], [695.68, 1401.33], [741.01, 1350.93], [743.33, 1348.36], [746.41, 1351.25], [785.67, 1388.15], [744.04, 1432.79]], [[935.61, 1417.04], [939.8, 1420.8], [937.11, 1423.74], [934.32, 1426.94], [917.49, 1445.49], [911.43, 1452.51], [889.09, 1477.14], [884.96, 1473.26], [822.3, 1414.36], [791.96, 1385.83], [789.9, 1388.02], [791.96, 1385.83], [750.52, 1346.88], [747.35, 1343.9], [792.2, 1294.57], [795.2, 1291.28], [798.91, 1294.6], [935.61, 1417.04]], [[743.14, 1344.07], [740.91, 1342.06], [736.55, 1346.92], [691.73, 1396.75], [683.1, 1402.48], [680.66, 1403.52], [678.87, 1397.81], [620.35, 1215.37], [615.44, 1199.59], [615.14, 1198.03], [615.03, 1196.53], [615.01, 1192.31], [615.96, 1189.49], [621.55, 1181.39], [624.88, 1177.72], [639.65, 1162.04], [642.59, 1158.91], [645.73, 1155.51], [649.05, 1158.97], [785.69, 1282.53], [790.76, 1287.24], [787.76, 1290.53], [740.92, 1342.05], [743.14, 1344.07]], [[1003.18, 1342.76], [1008.07, 1347.34], [1006.75, 1348.81], [1004.15, 1351.63], [1002.24, 1353.71], [967.71, 1389.96], [950.12, 1409.43], [948.47, 1411.25], [944.51, 1415.62], [940.28, 1411.83], [803.58, 1289.38], [799.91, 1286.1], [804.41, 1281.14], [836.54, 1245.8], [857.9, 1222.04], [860.3, 1219.2], [861.41, 1217.9], [862.55, 1216.55], [866.88, 1220.43], [927.23, 1274.4], [1003.18, 1342.76]], [[1075.0, 1271.38], [1071.79, 1275.05], [1018.17, 1336.3], [1016.22, 1338.47], [1012.78, 1342.16], [1007.91, 1337.6], [931.91, 1269.19], [871.55, 1215.21], [867.15, 1211.27], [872.28, 1205.58], [927.22, 1145.15], [931.24, 1140.73], [935.88, 1145.0], [938.9, 1147.66], [1069.05, 1265.96], [1071.07, 1267.8], [1075.0, 1271.38]], [[787.42, 1457.82], [787.45, 1457.29], [787.62, 1456.77], [788.05, 1456.15], [820.41, 1420.81], [880.85, 1477.63], [885.07, 1481.6], [824.72, 1548.61], [822.47, 1545.99], [821.49, 1544.11], [819.83, 1540.91], [787.6, 1458.55], [787.42, 1457.82]], [[1291.54, 445.1], [1296.3, 439.9], [1299.87, 443.32], [1330.74, 470.75], [1417.2, 550.62], [1434.53, 567.08], [1438.21, 570.17], [1434.24, 574.57], [1408.12, 603.53], [1407.24, 604.51], [1399.82, 612.72], [1399.6, 612.97], [1380.35, 634.27], [1376.56, 638.46], [1372.23, 634.54], [1364.41, 627.59], [1356.31, 620.15], [1319.73, 587.78], [1304.14, 574.0], [1296.41, 567.13], [1291.9, 563.04], [1289.71, 561.04], [1282.57, 554.29], [1282.35, 554.1], [1267.58, 539.84], [1257.66, 530.84], [1237.94, 512.65], [1233.46, 508.54], [1236.79, 504.91], [1238.51, 503.03], [1256.34, 483.54], [1290.04, 446.75], [1291.54, 445.1]], [[1356.07, 369.7], [1357.9, 367.57], [1361.98, 362.82], [1367.56, 367.95], [1375.03, 374.82], [1394.87, 393.05], [1403.85, 401.3], [1433.53, 428.59], [1446.8, 440.78], [1450.05, 443.77], [1503.78, 490.93], [1507.18, 493.9], [1502.94, 498.59], [1448.02, 559.38], [1442.91, 564.97], [1439.2, 561.86], [1421.98, 545.51], [1335.44, 465.57], [1304.62, 438.17], [1300.73, 434.45], [1304.62, 430.41], [1317.74, 418.04], [1329.76, 403.98], [1343.34, 384.52], [1356.07, 369.7]], [[1281.46, 288.55], [1313.74, 318.3], [1355.62, 356.96], [1357.56, 358.75], [1353.35, 363.66], [1351.52, 365.79], [1338.6, 380.84], [1325.01, 400.31], [1313.39, 413.9], [1300.4, 426.14], [1296.0, 430.72], [1290.67, 425.85], [1154.8, 302.08], [1151.15, 298.75], [1155.51, 293.95], [1156.18, 293.21], [1208.26, 235.94], [1209.91, 234.12], [1216.2, 227.2], [1220.01, 230.8], [1281.46, 288.55]], [[1407.56, 302.56], [1409.16, 303.84], [1387.07, 327.26], [1367.59, 347.92], [1365.97, 349.63], [1361.58, 354.29], [1359.69, 352.55], [1320.02, 315.93], [1324.33, 311.28], [1325.66, 309.85], [1363.7, 268.83], [1365.55, 268.48], [1366.15, 268.76], [1404.26, 299.87], [1407.56, 302.56]], [[1291.52, 434.76], [1286.38, 440.38], [1284.87, 442.02], [1251.18, 478.82], [1233.34, 498.3], [1231.62, 500.19], [1228.23, 503.9], [1222.97, 499.41], [1215.4, 492.92], [1199.04, 478.4], [1192.69, 472.76], [1159.83, 443.6], [1146.93, 432.15], [1108.8, 398.32], [1086.58, 378.58], [1082.14, 374.66], [1087.13, 369.16], [1123.11, 329.59], [1140.48, 310.49], [1142.23, 308.53], [1147.11, 303.19], [1150.76, 306.52], [1286.63, 430.28], [1291.52, 434.76]], [[1286.73, 1329.6], [1291.42, 1333.88], [1289.14, 1336.32], [1254.38, 1373.49], [1254.21, 1373.19], [1247.04, 1377.37], [1241.26, 1381.98], [1229.4, 1394.76], [1224.95, 1399.35], [1223.92, 1398.39], [1221.87, 1396.52], [1205.62, 1381.7], [1181.83, 1359.98], [1166.62, 1346.09], [1156.17, 1336.55], [1151.29, 1332.09], [1137.58, 1319.58], [1091.18, 1276.76], [1089.29, 1275.01], [1084.08, 1270.2], [1087.97, 1265.91], [1140.67, 1207.77], [1142.08, 1206.22], [1146.31, 1201.54], [1151.31, 1206.11], [1286.73, 1329.6]], [[1202.83, 1140.01], [1222.64, 1119.08], [1225.41, 1116.14], [1228.86, 1112.5], [1233.24, 1116.38], [1279.44, 1159.47], [1336.92, 1213.09], [1364.59, 1238.76], [1370.97, 1245.04], [1368.98, 1247.26], [1366.01, 1250.58], [1350.16, 1268.26], [1300.86, 1323.44], [1296.14, 1328.71], [1291.45, 1324.43], [1156.03, 1200.94], [1151.02, 1196.36], [1154.37, 1192.69], [1156.46, 1190.38], [1178.3, 1166.4], [1189.54, 1154.06], [1200.68, 1142.29], [1202.83, 1140.01]], [[1388.13, 785.69], [1320.79, 724.65], [1318.06, 722.18], [1313.98, 718.48], [1317.16, 715.4], [1355.48, 672.24], [1356.53, 671.08], [1372.93, 652.92], [1377.05, 648.37], [1382.45, 653.3], [1388.8, 659.11], [1390.36, 660.6], [1390.9, 661.09], [1405.83, 674.89], [1408.62, 677.47], [1420.09, 687.78], [1420.61, 688.28], [1426.34, 693.71], [1434.06, 700.29], [1492.83, 754.41], [1517.02, 777.03], [1521.22, 780.7], [1517.61, 784.66], [1498.37, 806.09], [1494.32, 810.59], [1484.66, 821.31], [1483.11, 823.03], [1477.12, 829.69], [1474.54, 832.55], [1462.52, 846.39], [1459.17, 849.98], [1456.32, 847.27], [1443.71, 836.04], [1439.64, 832.42], [1411.45, 806.82], [1398.47, 795.06], [1395.68, 792.54], [1388.13, 785.69]], [[1146.58, 603.51], [1150.29, 598.53], [1159.99, 587.15], [1191.99, 553.89], [1193.94, 551.77], [1198.93, 546.3], [1221.65, 521.46], [1224.65, 518.18], [1228.74, 513.71], [1233.2, 517.8], [1252.93, 536.0], [1262.8, 544.95], [1277.57, 559.21], [1277.81, 559.43], [1284.95, 566.17], [1287.19, 568.22], [1291.73, 572.34], [1299.49, 579.24], [1315.09, 593.03], [1351.62, 625.35], [1359.72, 632.79], [1367.56, 639.75], [1371.87, 643.66], [1367.74, 648.23], [1351.33, 666.39], [1350.26, 667.57], [1312.1, 710.55], [1308.69, 713.86], [1304.68, 710.48], [1302.34, 708.51], [1272.24, 683.06], [1257.06, 670.23], [1253.18, 674.81], [1268.36, 687.64], [1298.47, 713.09], [1300.82, 715.07], [1304.53, 718.19], [1300.17, 723.01], [1297.68, 725.77], [1293.97, 729.88], [1285.61, 739.13], [1282.9, 742.13], [1247.67, 781.15], [1239.28, 790.42], [1236.78, 793.18], [1233.79, 796.49], [1214.49, 817.84], [1201.22, 832.54], [1175.65, 860.84], [1173.42, 863.3], [1169.81, 860.02], [1167.47, 857.9], [1123.39, 818.02], [1107.72, 803.85], [1096.38, 793.58], [1032.78, 736.02], [1029.61, 733.16], [1033.58, 728.84], [1083.77, 674.08], [1092.1, 664.8], [1096.53, 659.86], [1099.84, 656.36], [1131.29, 620.8], [1137.89, 613.35], [1146.58, 603.51]], [[1085.01, 1054.91], [1070.66, 1042.16], [1066.96, 1038.88], [1047.77, 1021.82], [1043.06, 1017.63], [1051.82, 1007.99], [1064.7, 993.81], [1075.92, 981.46], [1078.91, 978.17], [1084.22, 982.92], [1102.6, 999.38], [1105.55, 1002.02], [1120.87, 1015.76], [1152.34, 1043.96], [1166.42, 1056.58], [1182.78, 1071.23], [1219.35, 1104.02], [1224.37, 1108.51], [1221.05, 1112.02], [1218.28, 1114.95], [1198.47, 1135.89], [1196.32, 1138.17], [1187.16, 1147.84], [1183.33, 1144.44], [1177.45, 1139.22], [1173.69, 1135.75], [1143.64, 1107.96], [1135.47, 1100.41], [1130.26, 1095.7], [1091.31, 1060.51], [1085.01, 1054.91]], [[1091.22, 975.1], [1085.95, 970.37], [1089.21, 966.75], [1094.68, 971.68], [1228.66, 1092.38], [1242.98, 1105.23], [1374.34, 1223.56], [1377.07, 1226.02], [1382.63, 1231.02], [1377.58, 1236.81], [1371.84, 1231.17], [1344.08, 1205.4], [1286.6, 1151.79], [1240.3, 1108.61], [1233.71, 1102.77], [1226.36, 1096.2], [1189.78, 1063.41], [1173.43, 1048.76], [1159.35, 1036.14], [1127.88, 1007.94], [1112.55, 994.2], [1109.6, 991.56], [1091.22, 975.1]], [[1355.98, 1528.44], [1366.44, 1537.99], [1368.3, 1539.69], [1371.92, 1542.99], [1369.32, 1545.9], [1315.15, 1606.63], [1312.85, 1609.21], [1310.89, 1611.34], [1233.04, 1539.68], [1223.26, 1531.44], [1220.36, 1534.88], [1223.1, 1531.31], [1216.45, 1526.2], [1170.98, 1484.92], [1167.0, 1481.34], [1169.34, 1478.66], [1206.54, 1436.89], [1220.26, 1424.97], [1226.03, 1420.42], [1228.77, 1417.38], [1231.22, 1414.66], [1233.27, 1416.53], [1234.57, 1417.71], [1355.98, 1528.44]], [[1300.36, 1342.02], [1347.72, 1385.15], [1348.49, 1385.85], [1399.77, 1432.2], [1411.15, 1442.66], [1427.76, 1457.91], [1433.25, 1462.95], [1435.9, 1465.39], [1439.02, 1468.25], [1436.95, 1470.55], [1380.86, 1533.02], [1376.59, 1537.78], [1373.02, 1534.52], [1371.16, 1532.82], [1360.7, 1523.27], [1239.29, 1412.54], [1237.99, 1411.36], [1236.03, 1409.56], [1240.46, 1405.07], [1251.57, 1390.84], [1259.55, 1378.87], [1259.17, 1378.62], [1294.25, 1341.11], [1296.6, 1338.59], [1300.36, 1342.02]], [[1393.44, 1265.0], [1419.09, 1287.51], [1465.66, 1328.37], [1473.43, 1335.14], [1515.9, 1372.36], [1522.41, 1378.07], [1518.18, 1382.65], [1514.58, 1386.54], [1497.0, 1405.54], [1448.95, 1457.84], [1443.8, 1463.14], [1440.63, 1460.24], [1437.98, 1457.8], [1432.5, 1452.75], [1415.89, 1437.51], [1404.49, 1427.03], [1353.2, 1380.67], [1352.43, 1379.97], [1305.08, 1336.85], [1301.32, 1333.43], [1306.08, 1328.1], [1355.37, 1272.93], [1371.22, 1255.25], [1374.19, 1251.94], [1376.1, 1249.81], [1382.23, 1255.18], [1384.79, 1257.43], [1393.44, 1265.0]], [[1154.75, 1493.88], [1160.84, 1487.89], [1164.94, 1491.59], [1210.68, 1533.11], [1214.93, 1536.38], [1211.06, 1540.62], [1206.87, 1537.13], [1158.73, 1497.07], [1154.75, 1493.88]], [[1919.13, 2309.89], [1917.83, 2256.94], [1923.31, 2259.4], [1938.79, 2260.08], [1955.73, 2257.16], [1966.74, 2254.6], [1976.15, 2253.59], [1984.51, 2255.67], [2012.5, 2279.28], [2016.74, 2282.93], [2013.93, 2286.03], [1979.4, 2321.25], [1976.86, 2323.84], [1975.23, 2325.5], [1962.48, 2338.5], [1956.18, 2344.92], [1931.63, 2367.41], [1929.51, 2369.29], [1925.16, 2348.38], [1920.76, 2326.86], [1919.13, 2309.89]], [[1911.29, 2188.33], [1914.6, 2190.73], [1931.73, 2197.98], [1938.13, 2201.42], [1974.21, 2235.46], [1986.8, 2249.03], [1976.64, 2246.5], [1965.57, 2247.69], [1954.34, 2250.29], [1938.34, 2253.06], [1924.95, 2252.46], [1917.65, 2249.2], [1917.39, 2230.89], [1915.02, 2205.79], [1911.29, 2188.33]], [[1906.41, 2180.46], [1909.35, 2179.44], [1900.95, 2155.27], [1889.82, 2132.48], [1893.42, 2128.62], [1943.17, 2078.84], [1947.71, 2074.31], [1951.62, 2078.14], [2082.08, 2206.62], [2086.48, 2210.73], [2082.21, 2214.83], [2025.12, 2274.07], [2021.52, 2277.81], [2017.06, 2273.97], [2015.92, 2275.29], [2015.91, 2275.27], [2017.03, 2273.94], [2006.23, 2264.83], [1976.7, 2232.99], [1940.2, 2198.56], [1933.25, 2194.82], [1916.33, 2187.67], [1910.2, 2183.22], [1909.53, 2180.07], [1906.7, 2180.67], [1906.41, 2180.46]], [[2161.17, 2142.76], [2165.43, 2146.89], [2296.7, 2273.9], [2301.99, 2278.99], [2299.17, 2281.84], [2267.28, 2314.34], [2253.35, 2328.87], [2240.85, 2341.9], [2235.74, 2347.23], [2230.67, 2342.29], [2099.39, 2214.81], [2095.1, 2210.64], [2099.39, 2206.26], [2157.32, 2146.7], [2161.17, 2142.76]], [[2165.41, 2138.52], [2169.5, 2134.53], [2207.08, 2096.06], [2221.93, 2081.16], [2242.65, 2060.37], [2246.15, 2056.85], [2249.72, 2060.3], [2261.02, 2071.22], [2263.75, 2073.85], [2368.13, 2174.62], [2381.09, 2187.12], [2386.13, 2191.99], [2381.34, 2196.47], [2363.67, 2215.49], [2341.47, 2238.83], [2311.6, 2269.17], [2306.19, 2274.71], [2300.86, 2269.58], [2169.61, 2142.58], [2165.41, 2138.52]], [[2232.5, 2029.75], [2160.56, 1959.68], [2152.88, 1952.46], [2158.82, 1946.45], [2166.65, 1954.03], [2251.55, 2036.24], [2262.87, 2047.19], [2393.52, 2173.71], [2399.06, 2179.08], [2393.63, 2184.64], [2388.38, 2179.57], [2375.42, 2167.06], [2271.05, 2066.3], [2268.32, 2063.66], [2257.01, 2052.75], [2251.34, 2047.27], [2247.69, 2051.05], [2251.27, 2047.2], [2244.37, 2040.79], [2232.5, 2029.75]], [[2227.96, 1875.59], [2232.39, 1879.87], [2276.89, 1933.54], [2301.93, 1961.09], [2335.54, 2001.78], [2359.79, 2030.43], [2439.85, 2128.37], [2443.78, 2133.19], [2433.7, 2143.53], [2409.42, 2168.45], [2406.39, 2171.56], [2400.82, 2166.17], [2270.17, 2039.64], [2258.85, 2028.69], [2173.96, 1946.49], [2166.18, 1938.96], [2168.46, 1936.63], [2225.49, 1878.12], [2227.96, 1875.59]], [[2251.57, 1850.84], [2280.7, 1819.9], [2289.89, 1810.9], [2303.08, 1797.98], [2308.42, 1792.75], [2309.65, 1791.54], [2311.07, 1790.37], [2319.4, 1786.17], [2323.41, 1784.05], [2323.73, 1784.57], [2324.67, 1786.13], [2335.7, 1804.28], [2346.37, 1821.82], [2348.76, 1825.77], [2367.7, 1855.99], [2369.79, 1859.42], [2372.19, 1863.35], [2369.91, 1864.76], [2365.63, 1867.39], [2326.91, 1891.19], [2312.88, 1899.8], [2309.45, 1901.91], [2312.59, 1907.02], [2316.02, 1904.92], [2330.05, 1896.3], [2368.77, 1872.5], [2373.05, 1869.87], [2375.37, 1868.44], [2376.8, 1870.67], [2397.59, 1903.07], [2422.64, 1943.37], [2436.87, 1965.49], [2446.49, 1980.78], [2451.18, 1988.24], [2455.93, 1995.95], [2500.72, 2068.64], [2504.11, 2074.14], [2500.13, 2077.6], [2481.22, 2093.99], [2460.46, 2117.07], [2458.97, 2118.79], [2448.09, 2128.98], [2444.5, 2124.58], [2364.41, 2026.6], [2340.14, 1997.93], [2306.46, 1957.16], [2281.42, 1929.6], [2236.8, 1875.79], [2232.12, 1871.27], [2236.04, 1867.13], [2247.48, 1855.07], [2251.57, 1850.84]], [[2305.64, 1787.07], [2304.22, 1788.47], [2298.88, 1793.7], [2285.69, 1806.62], [2276.41, 1815.7], [2247.23, 1846.7], [2243.15, 1850.92], [2231.69, 1863.0], [2227.81, 1867.09], [2223.22, 1862.6], [2047.69, 1691.3], [2044.36, 1688.04], [2046.35, 1685.87], [2051.45, 1679.92], [2055.06, 1675.64], [2056.71, 1673.59], [2063.16, 1666.76], [2081.27, 1647.58], [2085.21, 1643.4], [2098.71, 1629.46], [2107.36, 1620.52], [2106.13, 1619.34], [2115.41, 1613.29], [2120.59, 1608.96], [2124.51, 1605.69], [2125.45, 1604.61], [2128.75, 1607.78], [2177.79, 1654.95], [2204.28, 1680.44], [2213.94, 1689.74], [2237.47, 1712.37], [2252.0, 1726.35], [2259.67, 1733.73], [2265.2, 1737.04], [2272.07, 1738.41], [2295.55, 1738.34], [2296.95, 1740.59], [2296.92, 1741.34], [2297.42, 1741.35], [2301.16, 1747.34], [2314.41, 1768.6], [2320.7, 1778.7], [2316.65, 1780.84], [2307.77, 1785.32], [2305.64, 1787.07]], [[2264.56, 1727.34], [2257.55, 1720.59], [2243.01, 1706.61], [2219.49, 1683.97], [2209.83, 1674.67], [2183.34, 1649.19], [2134.29, 1602.0], [2130.74, 1598.6], [2134.97, 1593.79], [2140.28, 1587.76], [2155.65, 1569.54], [2159.61, 1572.99], [2179.1, 1550.6], [2179.32, 1550.35], [2180.75, 1552.55], [2190.22, 1566.36], [2211.45, 1600.9], [2231.74, 1633.92], [2239.95, 1647.28], [2248.41, 1661.05], [2267.25, 1691.71], [2283.88, 1719.16], [2290.67, 1730.36], [2272.85, 1730.41], [2268.12, 1729.47], [2264.56, 1727.34]], [[2237.7, 1630.25], [2217.41, 1597.24], [2196.09, 1562.55], [2186.57, 1548.66], [2184.06, 1544.82], [2190.11, 1537.38], [2215.72, 1505.15], [2217.83, 1502.49], [2221.32, 1498.36], [2222.66, 1499.34], [2249.06, 1515.76], [2264.74, 1522.44], [2263.77, 1523.85], [2281.36, 1536.03], [2337.92, 1575.21], [2339.91, 1572.34], [2337.92, 1575.21], [2343.42, 1579.02], [2420.53, 1632.43], [2417.94, 1635.4], [2415.78, 1638.53], [2411.7, 1644.45], [2407.89, 1651.17], [2404.17, 1659.49], [2401.68, 1667.43], [2397.31, 1683.41], [2393.44, 1697.56], [2392.8, 1699.88], [2390.33, 1708.86], [2388.17, 1715.81], [2386.26, 1725.02], [2381.79, 1744.01], [2381.61, 1744.75], [2363.92, 1740.41], [2331.39, 1732.42], [2313.05, 1727.91], [2297.43, 1727.34], [2297.41, 1727.97], [2289.87, 1715.53], [2274.79, 1690.65], [2279.35, 1687.91], [2283.11, 1685.7], [2301.84, 1674.69], [2303.45, 1673.75], [2321.83, 1663.04], [2325.1, 1649.99], [2337.22, 1602.53], [2338.35, 1597.2], [2332.48, 1595.96], [2331.37, 1601.16], [2319.28, 1648.52], [2316.63, 1659.13], [2300.43, 1668.56], [2298.81, 1669.51], [2280.07, 1680.53], [2276.29, 1682.76], [2271.67, 1685.53], [2254.37, 1657.38], [2245.91, 1643.62], [2237.7, 1630.25]], [[2227.98, 1491.46], [2185.77, 1464.87], [2175.11, 1458.21], [2176.1, 1456.77], [2160.74, 1446.2], [2154.39, 1441.81], [2144.29, 1434.12], [2134.93, 1426.67], [2127.88, 1420.38], [2120.94, 1413.5], [2100.53, 1394.52], [2095.23, 1388.38], [2070.8, 1357.1], [2073.68, 1355.13], [2071.6, 1352.08], [2067.17, 1344.51], [2064.97, 1341.03], [2068.32, 1338.72], [2105.73, 1310.37], [2159.1, 1269.03], [2175.86, 1252.76], [2183.68, 1246.31], [2186.87, 1249.46], [2188.42, 1250.99], [2212.68, 1274.98], [2220.92, 1282.19], [2242.43, 1300.76], [2246.31, 1304.29], [2241.85, 1307.86], [2239.86, 1309.47], [2168.16, 1367.0], [2161.91, 1370.47], [2136.98, 1384.33], [2139.9, 1389.57], [2164.83, 1375.71], [2169.68, 1373.02], [2174.99, 1376.63], [2254.84, 1430.86], [2259.91, 1434.31], [2317.7, 1473.8], [2375.17, 1513.56], [2372.75, 1517.79], [2352.54, 1548.09], [2347.5, 1555.13], [2344.23, 1559.78], [2339.3, 1567.66], [2285.35, 1530.28], [2267.75, 1518.09], [2266.76, 1519.53], [2255.89, 1510.75], [2236.89, 1496.8], [2227.98, 1491.46]], [[2174.88, 1369.3], [2243.62, 1314.14], [2245.61, 1312.54], [2250.77, 1308.41], [2254.45, 1311.89], [2268.22, 1324.93], [2283.87, 1338.23], [2298.04, 1348.54], [2307.31, 1354.68], [2309.05, 1355.83], [2306.21, 1360.31], [2304.88, 1362.41], [2294.71, 1378.49], [2262.17, 1425.73], [2260.82, 1427.67], [2258.21, 1425.9], [2178.36, 1371.67], [2174.88, 1369.3]], [[2218.28, 1268.95], [2194.21, 1245.14], [2192.66, 1243.61], [2189.87, 1240.85], [2193.58, 1237.37], [2224.68, 1205.38], [2260.18, 1165.9], [2316.5, 1104.73], [2318.18, 1102.91], [2321.51, 1099.28], [2324.43, 1101.87], [2346.07, 1121.03], [2382.03, 1152.89], [2383.4, 1154.1], [2379.04, 1159.16], [2377.18, 1161.32], [2365.19, 1175.23], [2258.88, 1292.08], [2256.65, 1294.39], [2254.84, 1296.27], [2252.45, 1298.75], [2247.89, 1294.6], [2226.32, 1275.98], [2218.28, 1268.95]], [[2255.45, 1161.59], [2220.01, 1201.01], [2189.1, 1232.8], [2182.46, 1239.01], [2171.59, 1247.99], [2154.9, 1264.19], [2101.83, 1305.29], [2064.57, 1333.53], [2061.73, 1335.49], [2055.57, 1324.28], [2037.88, 1295.47], [2031.33, 1286.71], [2033.25, 1284.91], [2034.36, 1283.88], [2062.77, 1258.24], [2065.68, 1255.61], [2124.53, 1199.9], [2131.69, 1193.13], [2140.28, 1185.34], [2195.59, 1135.12], [2206.11, 1124.88], [2203.03, 1121.71], [2206.25, 1124.74], [2212.53, 1118.05], [2237.09, 1090.16], [2265.86, 1057.8], [2266.98, 1056.27], [2269.92, 1052.2], [2277.27, 1058.78], [2278.77, 1060.12], [2312.57, 1090.67], [2316.84, 1094.91], [2313.47, 1098.57], [2311.79, 1100.4], [2255.45, 1161.59]], [[1725.11, 1990.13], [1729.04, 1985.64], [1734.07, 1990.02], [1729.81, 1994.42], [1725.11, 1990.13]], [[1851.89, 2098.05], [1868.14, 2117.83], [1879.99, 2136.29], [1891.23, 2159.31], [1899.33, 2182.58], [1904.62, 2207.38], [1906.9, 2231.46], [1907.06, 2242.77], [1905.49, 2241.42], [1899.01, 2234.08], [1894.86, 2227.27], [1869.21, 2159.7], [1867.86, 2152.83], [1866.69, 2153.06], [1866.63, 2152.88], [1871.21, 2151.76], [1867.77, 2137.71], [1861.06, 2119.43], [1851.39, 2105.86], [1832.44, 2087.1], [1806.56, 2061.93], [1753.47, 2010.53], [1748.59, 2005.93], [1739.79, 1998.5], [1742.83, 1995.36], [1751.92, 2003.33], [1771.77, 2020.85], [1851.89, 2098.05]], [[1798.73, 1939.99], [1804.69, 1934.78], [1807.83, 1937.7], [1938.65, 2065.45], [1943.42, 2070.11], [1938.93, 2074.6], [1889.1, 2124.46], [1886.6, 2127.14], [1876.65, 2111.64], [1859.62, 2090.92], [1778.89, 2013.13], [1758.86, 1995.45], [1751.52, 1989.01], [1758.01, 1981.87], [1771.0, 1960.09], [1773.07, 1962.46], [1798.73, 1939.99]], [[1827.51, 1904.75], [1853.9, 1883.72], [1867.26, 1870.42], [1872.38, 1865.33], [1875.81, 1868.63], [2007.03, 1994.98], [2012.11, 1999.87], [2008.81, 2003.24], [1952.08, 2061.31], [1947.64, 2065.85], [1942.84, 2061.16], [1811.97, 1933.36], [1806.51, 1928.27], [1809.25, 1925.58], [1820.0, 1916.78], [1829.92, 1907.27], [1827.51, 1904.75]], [[1927.47, 1809.95], [1952.52, 1787.85], [1958.23, 1782.69], [1964.24, 1787.45], [1966.67, 1789.48], [1972.87, 1794.72], [2087.65, 1903.17], [2133.45, 1948.62], [2141.23, 1955.92], [2137.08, 1960.34], [2123.61, 1974.41], [2102.63, 1997.1], [2080.44, 2019.06], [2065.97, 2034.66], [2061.67, 2039.25], [2056.14, 2033.93], [2031.32, 2010.04], [2024.07, 2003.05], [2018.45, 1997.64], [2016.37, 1999.8], [2018.45, 1997.64], [2011.19, 1990.65], [1879.97, 1864.31], [1876.6, 1861.06], [1883.79, 1853.69], [1906.68, 1830.23], [1918.2, 1818.43], [1927.47, 1809.95]], [[1901.67, 1825.34], [1878.78, 1848.8], [1871.43, 1856.34], [1867.68, 1853.09], [1874.7, 1845.36], [1894.98, 1823.01], [1895.95, 1824.12], [1942.59, 1783.81], [1945.04, 1781.58], [1950.36, 1776.75], [1952.56, 1778.38], [1947.86, 1782.63], [1922.79, 1804.74], [1913.32, 1813.4], [1901.67, 1825.34]], [[1931.43, 1772.58], [1932.97, 1768.94], [1934.28, 1763.82], [1939.06, 1767.9], [1942.34, 1770.53], [1938.31, 1774.18], [1935.95, 1776.33], [1921.26, 1789.03], [1931.43, 1772.58]], [[1835.34, 1654.82], [1784.62, 1606.26], [1755.33, 1578.31], [1741.17, 1564.92], [1716.92, 1542.14], [1690.2, 1516.99], [1689.94, 1516.74], [1688.36, 1515.26], [1678.07, 1506.38], [1636.9, 1469.05], [1612.6, 1447.01], [1591.85, 1428.2], [1588.11, 1424.81], [1583.86, 1420.86], [1542.11, 1381.95], [1533.89, 1374.29], [1537.34, 1370.34], [1537.7, 1369.92], [1546.0, 1377.64], [1578.41, 1407.79], [1582.58, 1411.81], [1619.93, 1447.82], [1663.9, 1487.64], [1674.51, 1497.11], [1675.66, 1498.14], [1682.48, 1504.48], [1698.68, 1519.14], [1700.9, 1521.18], [1701.61, 1521.79], [1719.63, 1538.87], [1744.12, 1561.61], [1753.22, 1570.1], [1762.5, 1578.44], [1804.76, 1618.25], [1835.77, 1647.23], [1836.39, 1647.79], [1847.77, 1658.43], [1862.69, 1672.3], [1870.04, 1679.23], [1875.52, 1684.18], [1950.69, 1752.11], [1952.04, 1753.44], [1956.99, 1757.85], [1950.33, 1763.48], [1945.75, 1759.81], [1931.38, 1747.54], [1871.48, 1690.97], [1857.0, 1677.3], [1840.15, 1659.42], [1835.34, 1654.82]], [[1877.16, 1671.51], [1869.87, 1664.64], [1854.94, 1650.75], [1843.48, 1640.04], [1842.85, 1639.48], [1811.95, 1610.59], [1769.61, 1570.71], [1760.31, 1562.35], [1751.28, 1553.92], [1726.82, 1531.21], [1708.66, 1514.0], [1707.89, 1513.34], [1705.75, 1511.38], [1689.58, 1496.74], [1682.73, 1490.37], [1681.5, 1489.27], [1670.92, 1479.83], [1627.1, 1440.15], [1589.87, 1404.26], [1585.63, 1400.17], [1553.15, 1369.95], [1544.69, 1362.09], [1548.68, 1357.71], [1550.58, 1355.74], [1567.41, 1337.46], [1572.39, 1332.05], [1575.59, 1328.57], [1580.58, 1323.06], [1609.3, 1291.22], [1610.68, 1289.69], [1616.55, 1283.18], [1621.31, 1277.91], [1625.78, 1281.97], [1627.83, 1283.84], [1653.71, 1307.3], [1684.86, 1335.57], [1713.56, 1361.59], [1722.49, 1369.68], [1770.77, 1414.53], [1797.43, 1439.31], [1798.63, 1440.42], [1800.16, 1442.09], [1804.88, 1446.08], [1818.72, 1458.83], [1842.39, 1480.89], [1851.75, 1488.64], [1867.15, 1502.26], [2045.72, 1666.33], [2049.82, 1670.99], [2049.66, 1671.19], [2046.12, 1675.38], [2041.11, 1681.22], [2037.24, 1685.44], [2038.48, 1686.57], [2030.37, 1691.54], [2028.53, 1692.67], [1973.51, 1748.08], [1967.52, 1753.17], [1959.22, 1745.77], [1957.89, 1744.46], [1882.56, 1676.39], [1877.16, 1671.51]], [[1873.53, 1492.08], [1869.14, 1496.01], [1855.66, 1484.08], [1846.35, 1476.38], [1822.79, 1454.43], [1808.85, 1441.58], [1804.32, 1437.75], [1802.88, 1436.18], [1801.52, 1434.92], [1774.85, 1410.14], [1728.71, 1367.28], [1730.82, 1364.91], [1734.27, 1361.05], [1743.36, 1350.86], [1755.97, 1335.96], [1757.49, 1330.19], [1758.95, 1324.63], [1757.67, 1316.27], [1753.78, 1309.45], [1747.34, 1302.73], [1726.39, 1283.23], [1720.25, 1277.53], [1697.79, 1256.78], [1670.85, 1231.88], [1666.62, 1227.97], [1674.12, 1219.47], [1686.66, 1205.27], [1689.12, 1202.48], [1696.93, 1194.22], [1701.74, 1189.12], [1714.64, 1175.0], [1718.92, 1170.32], [1716.7, 1168.3], [1718.96, 1170.28], [1752.04, 1132.72], [1752.97, 1131.37], [1758.07, 1125.54], [1764.23, 1118.93], [1795.08, 1085.88], [1796.61, 1084.24], [1817.9, 1061.41], [1819.72, 1059.46], [1821.58, 1057.47], [1825.37, 1061.57], [1838.14, 1075.43], [1842.81, 1081.01], [1865.98, 1108.62], [1894.01, 1142.03], [1921.47, 1176.47], [1943.5, 1202.97], [1949.6, 1210.3], [1954.39, 1216.07], [1985.09, 1253.09], [1990.48, 1248.62], [1985.2, 1253.22], [1990.4, 1259.18], [1992.62, 1261.71], [1997.17, 1267.0], [2012.89, 1286.05], [2015.16, 1288.81], [2012.76, 1290.65], [2010.98, 1291.97], [2009.64, 1292.95], [1987.91, 1301.23], [1983.68, 1302.91], [1971.37, 1306.6], [1966.62, 1307.45], [1961.54, 1307.04], [1960.83, 1315.85], [1967.05, 1316.35], [1973.42, 1315.22], [1986.58, 1311.26], [1991.11, 1309.47], [2013.92, 1300.78], [2016.22, 1299.08], [2018.08, 1297.72], [2020.62, 1295.76], [2026.29, 1303.34], [2043.47, 1331.32], [2051.36, 1345.68], [2057.49, 1342.3], [2051.58, 1346.04], [2055.2, 1351.78], [2059.76, 1359.58], [2062.13, 1363.04], [2065.0, 1361.07], [2085.39, 1398.47], [2087.34, 1401.98], [2085.83, 1403.39], [2066.04, 1421.35], [2041.84, 1447.28], [2016.14, 1474.83], [1989.72, 1502.93], [1994.1, 1507.04], [2020.52, 1478.93], [2046.23, 1451.37], [2070.25, 1425.62], [2089.89, 1407.81], [2090.5, 1407.24], [2093.05, 1411.32], [2113.94, 1441.75], [2112.46, 1442.69], [2131.07, 1471.92], [2129.03, 1473.98], [2053.03, 1550.67], [2057.29, 1554.89], [2133.29, 1478.21], [2134.25, 1477.24], [2136.58, 1481.25], [2168.33, 1535.78], [2170.37, 1539.3], [2168.54, 1541.41], [2149.05, 1563.8], [2153.0, 1567.23], [2128.99, 1588.41], [2121.69, 1594.86], [2117.93, 1598.17], [2113.78, 1602.34], [2110.94, 1605.2], [2103.56, 1616.85], [2102.32, 1615.65], [2093.68, 1624.59], [2080.15, 1638.57], [2076.18, 1642.77], [2058.07, 1661.95], [2053.82, 1666.46], [2050.01, 1662.13], [1873.62, 1500.05], [1877.42, 1496.64], [1914.56, 1466.51], [1910.78, 1461.85], [1873.53, 1492.08]], [[1876.7, 1099.63], [1853.54, 1072.02], [1848.66, 1066.19], [1835.66, 1052.08], [1831.09, 1047.12], [1832.29, 1045.79], [1834.32, 1043.55], [1850.89, 1025.21], [1887.65, 984.53], [1891.19, 980.6], [1895.14, 984.2], [1911.7, 1000.24], [1982.46, 1064.62], [1991.79, 1073.13], [2021.47, 1100.2], [2034.69, 1112.27], [2031.7, 1115.44], [1994.36, 1155.11], [1978.43, 1174.93], [1972.53, 1181.57], [1958.53, 1197.31], [1957.74, 1198.2], [1954.27, 1194.02], [1932.33, 1167.63], [1904.84, 1133.17], [1876.7, 1099.63]], [[1959.28, 905.8], [1962.56, 908.75], [2084.02, 1017.89], [2099.1, 1031.44], [2106.44, 1038.04], [2114.08, 1045.03], [2195.29, 1119.37], [2197.25, 1121.17], [2189.54, 1128.68], [2134.34, 1178.79], [2128.75, 1183.86], [2126.79, 1182.13], [2093.84, 1151.59], [2090.73, 1154.95], [2093.74, 1151.5], [2050.22, 1113.57], [2043.06, 1107.52], [2027.63, 1093.45], [1997.95, 1066.37], [1988.62, 1057.87], [1917.96, 993.57], [1901.4, 977.53], [1897.32, 973.82], [1899.75, 971.15], [1920.82, 948.14], [1955.24, 910.24], [1959.28, 905.8]], [[1815.88, 765.3], [1820.09, 760.67], [1874.14, 701.16], [1879.07, 695.73], [1882.69, 699.02], [2016.56, 820.35], [2019.29, 822.82], [2022.31, 825.56], [2017.65, 830.83], [1963.28, 892.3], [1959.55, 896.52], [1956.13, 893.27], [1910.25, 849.69], [1819.61, 768.63], [1815.88, 765.3]], [[1932.24, 635.69], [1933.4, 636.74], [1938.8, 630.71], [1941.63, 628.74], [1944.65, 627.8], [1948.1, 627.66], [1950.53, 628.67], [1954.32, 631.65], [2084.32, 749.95], [2089.39, 754.56], [2086.52, 757.59], [2029.87, 817.42], [2026.36, 821.14], [2023.32, 818.38], [2020.59, 815.91], [1886.73, 694.57], [1882.76, 690.98], [1885.73, 687.79], [1905.46, 666.59], [1924.34, 645.52], [1932.24, 635.69]], [[1607.92, 1885.77], [1556.86, 1844.4], [1489.4, 1782.93], [1493.44, 1786.06], [1529.79, 1815.09], [1604.01, 1875.64], [1611.23, 1881.66], [1612.57, 1882.77], [1612.88, 1884.63], [1614.25, 1892.89], [1613.71, 1892.29], [1607.92, 1885.77]], [[1318.35, 1628.44], [1406.74, 1708.54], [1429.96, 1729.88], [1447.36, 1745.55], [1429.98, 1731.59], [1317.28, 1629.24], [1309.16, 1622.09], [1309.96, 1621.22], [1318.35, 1628.44]], [[1663.12, 770.28], [1733.64, 836.24], [1735.59, 838.06], [1731.23, 842.99], [1679.69, 901.31], [1676.63, 904.43], [1673.36, 907.78], [1670.73, 905.4], [1633.92, 871.54], [1626.54, 864.89], [1618.14, 857.37], [1609.16, 849.27], [1576.82, 820.35], [1573.52, 817.4], [1572.08, 816.1], [1559.94, 805.24], [1558.61, 804.04], [1556.85, 802.47], [1534.33, 782.93], [1530.42, 779.47], [1533.9, 775.59], [1589.21, 714.06], [1592.91, 709.54], [1597.65, 713.98], [1663.12, 770.28]], [[1814.94, 773.85], [1905.51, 854.84], [1951.31, 898.35], [1954.87, 901.73], [1950.8, 906.21], [1916.39, 944.09], [1895.32, 967.11], [1892.88, 969.79], [1888.98, 966.25], [1752.73, 842.82], [1747.92, 838.45], [1751.29, 834.74], [1805.08, 776.51], [1806.15, 775.42], [1811.08, 770.39], [1814.94, 773.85]], [[1873.9, 691.01], [1868.95, 696.46], [1814.9, 755.96], [1810.34, 760.99], [1806.15, 757.2], [1670.25, 634.15], [1665.88, 630.19], [1669.95, 625.41], [1726.13, 564.78], [1729.38, 561.46], [1732.76, 564.45], [1815.78, 637.75], [1869.25, 686.76], [1873.9, 691.01]], [[1721.79, 560.64], [1665.46, 621.42], [1661.44, 626.16], [1656.88, 622.01], [1522.16, 499.34], [1516.11, 493.83], [1520.65, 489.05], [1577.93, 429.24], [1581.32, 425.48], [1584.74, 428.6], [1651.81, 489.73], [1719.83, 552.57], [1724.95, 557.41], [1721.79, 560.64]], [[1801.15, 770.51], [1800.01, 771.68], [1746.12, 830.01], [1742.04, 834.51], [1738.42, 831.13], [1667.79, 765.07], [1602.33, 708.77], [1597.49, 704.24], [1602.58, 698.68], [1632.57, 665.06], [1657.07, 639.61], [1661.85, 634.64], [1666.22, 638.59], [1802.13, 761.65], [1806.22, 765.35], [1801.15, 770.51]], [[1716.47, 1164.03], [1711.89, 1159.86], [1688.47, 1138.43], [1666.28, 1118.21], [1658.86, 1111.44], [1630.41, 1085.38], [1629.04, 1083.74], [1628.54, 1082.6], [1628.63, 1081.32], [1629.42, 1079.82], [1658.72, 1048.7], [1663.08, 1044.08], [1724.7, 1099.54], [1745.85, 1118.58], [1748.11, 1120.61], [1751.64, 1123.78], [1748.23, 1127.68], [1747.3, 1129.02], [1716.47, 1164.03]], [[1883.2, 980.5], [1846.44, 1021.18], [1829.87, 1039.52], [1827.84, 1041.77], [1826.81, 1042.91], [1822.31, 1038.81], [1800.75, 1019.17], [1771.12, 991.87], [1747.08, 969.83], [1737.11, 960.68], [1715.98, 941.61], [1688.1, 916.44], [1684.62, 913.27], [1685.13, 912.74], [1688.39, 909.41], [1740.14, 850.86], [1743.63, 846.91], [1746.6, 849.6], [1882.84, 973.03], [1886.75, 976.57], [1883.2, 980.5]], [[1761.65, 1002.18], [1791.29, 1029.49], [1812.88, 1049.16], [1817.34, 1053.22], [1815.33, 1055.37], [1813.51, 1057.32], [1792.22, 1080.15], [1790.7, 1081.78], [1759.84, 1114.84], [1755.66, 1119.33], [1752.12, 1116.15], [1749.86, 1114.12], [1728.71, 1095.08], [1664.94, 1037.68], [1617.11, 992.46], [1613.21, 988.78], [1616.64, 984.92], [1637.43, 961.48], [1643.09, 955.08], [1653.16, 943.74], [1669.27, 925.57], [1669.98, 924.84], [1673.05, 921.67], [1678.7, 926.81], [1706.59, 952.0], [1727.69, 971.04], [1737.62, 980.14], [1761.65, 1002.18]], [[1751.68, 1328.66], [1750.51, 1333.12], [1738.83, 1346.92], [1729.8, 1357.05], [1726.34, 1360.91], [1724.29, 1363.22], [1717.6, 1357.14], [1688.9, 1331.12], [1657.74, 1302.86], [1631.86, 1279.39], [1629.81, 1277.53], [1625.33, 1273.46], [1628.7, 1269.75], [1642.18, 1254.92], [1662.61, 1232.44], [1666.77, 1236.28], [1693.72, 1261.19], [1716.18, 1281.94], [1722.3, 1287.63], [1743.13, 1307.01], [1748.94, 1313.06], [1751.91, 1318.27], [1752.83, 1324.3], [1751.68, 1328.66]], [[1841.11, 1884.97], [1846.9, 1876.49], [1859.28, 1862.52], [1863.67, 1857.56], [1867.2, 1860.61], [1862.32, 1865.46], [1849.24, 1878.49], [1841.11, 1884.97]], [[1698.61, 1956.57], [1723.35, 1976.04], [1726.06, 1978.4], [1719.94, 1985.41], [1717.05, 1982.77], [1708.05, 1974.5], [1700.85, 1967.98], [1684.31, 1952.95], [1671.86, 1942.03], [1663.41, 1934.68], [1660.89, 1932.57], [1640.05, 1915.26], [1638.93, 1916.61], [1632.2, 1910.66], [1627.16, 1906.32], [1624.16, 1903.58], [1622.91, 1902.4], [1622.52, 1895.47], [1624.56, 1895.6], [1630.14, 1897.58], [1632.29, 1899.62], [1633.2, 1898.66], [1633.44, 1898.75], [1632.6, 1899.87], [1636.89, 1903.1], [1657.79, 1920.94], [1659.98, 1922.78], [1663.29, 1925.78], [1685.97, 1946.27], [1698.61, 1956.57]], [[1627.45, 1915.8], [1625.77, 1915.72], [1622.99, 1917.49], [1622.91, 1914.57], [1622.92, 1911.91], [1627.45, 1915.8]], [[1622.12, 1891.45], [1621.86, 1889.86], [1622.75, 1890.6], [1623.75, 1891.54], [1622.46, 1891.45], [1622.12, 1891.45]], [[1614.95, 1905.81], [1614.91, 1914.62], [1614.49, 1909.74], [1614.5, 1907.82], [1614.95, 1905.81]], [[1746.71, 1973.49], [1742.16, 1978.5], [1738.89, 1975.65], [1743.97, 1971.06], [1753.08, 1962.81], [1746.71, 1973.49]], [[1480.77, 2741.29], [1462.61, 2707.6], [1425.74, 2636.83], [1412.06, 2610.57], [1396.6, 2580.9], [1363.77, 2517.89], [1361.53, 2513.66], [1342.68, 2478.13], [1335.6, 2464.77], [1340.85, 2461.41], [1346.32, 2457.9], [1356.05, 2453.03], [1394.9, 2433.86], [1399.97, 2431.81], [1404.79, 2430.43], [1408.86, 2430.97], [1411.22, 2432.77], [1413.59, 2436.33], [1423.89, 2456.38], [1433.5, 2474.54], [1436.7, 2479.79], [1440.22, 2482.49], [1444.29, 2483.92], [1448.51, 2483.61], [1472.63, 2472.82], [1487.49, 2467.13], [1513.25, 2459.2], [1567.52, 2440.19], [1578.01, 2436.24], [1582.47, 2435.16], [1586.65, 2434.3], [1586.69, 2435.41], [1588.04, 2455.22], [1589.94, 2483.11], [1584.68, 2483.67], [1575.73, 2484.63], [1543.12, 2493.73], [1520.68, 2499.98], [1516.58, 2501.04], [1501.95, 2504.85], [1459.73, 2518.13], [1459.37, 2518.1], [1458.52, 2517.25], [1455.82, 2513.19], [1452.6, 2506.64], [1448.6, 2499.11], [1443.3, 2501.92], [1447.26, 2509.37], [1450.61, 2516.19], [1453.86, 2521.08], [1456.69, 2523.91], [1460.42, 2524.21], [1503.61, 2510.62], [1518.09, 2506.85], [1522.24, 2505.77], [1544.73, 2499.51], [1576.86, 2490.55], [1585.32, 2489.64], [1590.27, 2489.11], [1591.07, 2508.3], [1591.97, 2530.16], [1592.07, 2532.45], [1593.27, 2562.24], [1594.58, 2594.36], [1595.79, 2624.13], [1595.9, 2626.66], [1596.91, 2651.53], [1597.47, 2662.9], [1599.4, 2701.67], [1600.71, 2728.58], [1600.86, 2731.73], [1598.62, 2731.88], [1595.06, 2732.51], [1591.97, 2733.91], [1585.71, 2736.76], [1547.22, 2756.11], [1543.76, 2757.85], [1517.82, 2771.42], [1507.94, 2776.59], [1502.01, 2779.69], [1491.37, 2760.97], [1488.71, 2756.03], [1484.26, 2747.76], [1480.77, 2741.29]], [[1565.47, 2434.55], [1511.38, 2453.5], [1485.53, 2461.46], [1470.33, 2467.28], [1447.02, 2477.7], [1445.1, 2477.84], [1443.11, 2477.15], [1441.25, 2475.71], [1438.72, 2471.57], [1429.21, 2453.61], [1418.77, 2433.29], [1415.66, 2428.61], [1411.23, 2425.24], [1404.34, 2424.32], [1398.01, 2426.13], [1392.45, 2428.39], [1353.38, 2447.66], [1343.35, 2452.68], [1337.61, 2456.36], [1332.79, 2459.45], [1323.67, 2442.13], [1305.59, 2407.41], [1302.48, 2409.03], [1305.55, 2407.34], [1288.63, 2376.56], [1293.08, 2373.85], [1350.55, 2341.94], [1363.36, 2334.53], [1371.28, 2331.03], [1379.71, 2328.89], [1385.88, 2328.25], [1567.53, 2323.07], [1579.37, 2322.79], [1587.48, 2323.24], [1594.19, 2324.14], [1596.56, 2324.74], [1592.58, 2343.02], [1588.92, 2342.83], [1584.64, 2342.93], [1580.53, 2344.99], [1578.82, 2349.85], [1576.68, 2379.23], [1575.85, 2406.65], [1577.4, 2412.94], [1582.17, 2415.2], [1586.34, 2415.28], [1586.49, 2428.25], [1586.21, 2428.26], [1581.16, 2429.3], [1576.23, 2430.5], [1565.47, 2434.55]], [[1066.24, 2008.53], [1071.0, 2013.16], [1078.62, 2021.23], [1081.99, 2024.99], [1078.12, 2021.16], [1069.9, 2013.62], [1066.24, 2008.53]], [[1379.27, 2188.2], [1384.14, 2166.47], [1390.78, 2167.9], [1385.98, 2189.68], [1381.88, 2188.79], [1379.27, 2188.2]], [[1328.15, 2465.65], [1336.5, 2481.41], [1355.34, 2516.94], [1357.57, 2521.15], [1390.39, 2584.14], [1405.85, 2613.8], [1419.53, 2640.07], [1454.21, 2706.62], [1452.1, 2706.77], [1405.62, 2710.16], [1398.3, 2704.77], [1385.32, 2696.28], [1374.59, 2685.19], [1352.81, 2661.43], [1343.89, 2650.91], [1339.44, 2644.98], [1327.7, 2626.37], [1305.63, 2586.24], [1279.41, 2532.54], [1264.91, 2498.86], [1258.67, 2481.97], [1255.44, 2466.89], [1257.02, 2454.74], [1262.57, 2446.81], [1278.9, 2429.82], [1296.63, 2417.41], [1301.09, 2413.93], [1317.47, 2445.37], [1328.14, 2465.64], [1331.24, 2464.01], [1328.15, 2465.65]], [[1300.3, 2589.01], [1322.53, 2629.42], [1334.5, 2648.38], [1339.19, 2654.65], [1348.3, 2665.4], [1370.22, 2689.31], [1381.47, 2700.94], [1394.88, 2709.7], [1396.36, 2710.8], [1382.49, 2711.75], [1325.64, 2713.02], [1289.91, 2714.36], [1275.65, 2714.11], [1266.84, 2712.96], [1256.52, 2710.91], [1247.82, 2706.6], [1243.15, 2702.92], [1240.72, 2701.01], [1225.2, 2685.34], [1210.38, 2663.54], [1205.72, 2656.68], [1196.45, 2639.5], [1189.58, 2620.35], [1182.4, 2593.8], [1176.15, 2575.1], [1173.4, 2566.89], [1171.39, 2560.3], [1169.0, 2552.4], [1167.62, 2541.86], [1168.61, 2534.49], [1170.92, 2527.37], [1174.8, 2520.09], [1174.89, 2519.91], [1176.12, 2518.76], [1174.06, 2516.58], [1176.19, 2518.7], [1184.9, 2509.97], [1199.68, 2502.04], [1219.89, 2489.51], [1233.62, 2480.36], [1242.35, 2473.45], [1249.13, 2466.05], [1249.59, 2465.4], [1249.36, 2467.14], [1252.89, 2483.65], [1259.34, 2501.09], [1273.96, 2535.05], [1300.3, 2589.01]], [[1903.63, 2250.37], [1907.21, 2252.37], [1908.64, 2310.52], [1910.36, 2328.42], [1914.88, 2350.5], [1920.19, 2376.03], [1918.15, 2377.0], [1915.9, 2378.07], [1909.76, 2350.76], [1908.66, 2345.82], [1883.66, 2230.27], [1878.84, 2208.67], [1878.41, 2206.47], [1887.64, 2230.8], [1892.55, 2238.85], [1899.86, 2247.13], [1903.63, 2250.37]], [[2238.26, 888.29], [2234.99, 891.91], [2179.74, 953.04], [2176.31, 956.84], [2172.0, 952.95], [2037.33, 831.06], [2034.92, 828.88], [2030.81, 825.17], [2034.23, 821.55], [2090.88, 761.72], [2093.85, 758.57], [2096.68, 761.08], [2206.3, 858.28], [2233.49, 883.81], [2238.26, 888.29]], [[2030.89, 833.33], [2033.3, 835.51], [2167.98, 957.4], [2172.27, 961.28], [2167.6, 966.41], [2113.76, 1025.53], [2108.92, 1030.85], [2103.78, 1026.24], [2088.69, 1012.68], [1967.24, 903.54], [1963.95, 900.59], [1967.77, 896.28], [2022.14, 834.81], [2026.76, 829.59], [2030.89, 833.33]], [[2313.82, 989.75], [2313.54, 990.72], [2313.01, 991.6], [2272.74, 1034.54], [2271.04, 1036.34], [2268.19, 1039.38], [2266.93, 1038.17], [2186.32, 965.24], [2181.09, 960.5], [2184.19, 957.07], [2239.44, 895.93], [2242.61, 892.42], [2246.85, 896.51], [2250.95, 900.45], [2307.01, 976.85], [2313.39, 987.43], [2313.82, 989.75]], [[2230.47, 1084.3], [2205.98, 1112.11], [2202.17, 1116.18], [2200.02, 1114.21], [2118.81, 1039.86], [2113.36, 1034.88], [2118.2, 1029.57], [2172.04, 970.46], [2176.38, 965.68], [2181.62, 970.43], [2262.15, 1043.29], [2264.1, 1045.16], [2259.82, 1051.08], [2258.97, 1052.25], [2230.47, 1084.3]], [[2085.25, 1156.23], [2081.71, 1160.13], [2055.23, 1190.7], [2051.44, 1194.94], [2047.89, 1198.15], [2042.25, 1202.83], [2026.96, 1215.31], [2011.67, 1227.84], [1997.59, 1238.94], [1995.06, 1241.09], [1994.0, 1241.9], [1965.17, 1207.13], [1961.62, 1202.87], [1963.02, 1201.3], [1977.01, 1185.55], [1983.01, 1178.81], [1998.89, 1159.05], [2036.07, 1119.56], [2039.2, 1116.23], [2044.27, 1120.51], [2085.25, 1156.23]], [[2060.03, 1194.92], [2086.5, 1164.38], [2090.01, 1160.51], [2120.65, 1188.91], [2122.02, 1190.11], [2118.45, 1193.48], [2059.68, 1249.12], [2056.85, 1251.68], [2028.39, 1277.36], [2027.23, 1278.44], [2025.83, 1279.74], [2023.7, 1277.15], [2007.88, 1257.98], [2003.19, 1252.53], [2000.95, 1249.97], [1998.16, 1246.78], [1999.08, 1246.08], [2001.65, 1243.89], [2015.68, 1232.83], [2031.01, 1220.27], [2046.32, 1207.77], [2052.08, 1202.99], [2055.99, 1199.46], [2060.03, 1194.92]], [[2097.48, 1401.23], [2116.1, 1418.55], [2123.08, 1425.48], [2130.41, 1432.03], [2139.99, 1439.65], [2150.28, 1447.48], [2156.77, 1451.96], [2172.14, 1462.53], [2173.1, 1461.13], [2181.31, 1470.01], [2209.91, 1490.17], [2207.0, 1493.61], [2204.76, 1496.43], [2179.2, 1528.61], [2177.51, 1530.69], [2177.4, 1530.5], [2145.65, 1475.96], [2141.05, 1468.06], [2136.51, 1470.7], [2140.94, 1467.88], [2121.32, 1437.06], [2116.89, 1439.87], [2119.78, 1437.89], [2098.91, 1407.48], [2095.83, 1402.57], [2097.48, 1401.23]], [[2091.05, 1394.25], [2093.32, 1396.88], [2092.76, 1397.33], [2091.51, 1395.09], [2091.05, 1394.25]], [[2216.79, 1492.88], [2217.79, 1491.45], [2187.56, 1470.13], [2226.15, 1494.44], [2234.95, 1499.72], [2253.75, 1513.53], [2254.87, 1514.43], [2250.68, 1512.65], [2224.62, 1496.44], [2217.82, 1491.47], [2216.79, 1492.88]], [[2121.04, 1600.1], [2122.97, 1602.14], [2122.06, 1603.18], [2118.35, 1606.28], [2113.32, 1610.48], [2110.62, 1612.24], [2113.69, 1607.4], [2116.26, 1604.81], [2120.33, 1600.72], [2121.04, 1600.1]], [[2127.05, 1594.8], [2131.31, 1591.04], [2137.7, 1585.4], [2137.63, 1585.48], [2132.35, 1591.48], [2128.28, 1596.1], [2127.05, 1594.8]], [[1979.87, 1786.89], [1973.43, 1781.44], [1970.87, 1779.31], [1967.11, 1776.33], [1971.98, 1771.53], [1976.1, 1775.39], [2146.46, 1934.87], [2154.47, 1942.32], [2148.51, 1948.36], [2140.74, 1941.07], [2094.95, 1895.63], [1979.87, 1786.89]], [[2223.65, 1871.41], [2221.2, 1873.93], [2164.16, 1932.44], [2161.83, 1934.82], [2153.63, 1927.19], [1983.27, 1767.72], [1976.96, 1761.81], [1982.13, 1756.37], [1984.21, 1754.01], [2035.74, 1699.03], [2036.98, 1696.73], [2039.64, 1691.82], [2043.5, 1695.59], [2219.03, 1866.9], [2223.65, 1871.41]], [[1974.39, 1759.43], [1970.14, 1755.54], [1975.89, 1750.65], [2030.72, 1695.43], [2032.2, 1694.53], [2035.19, 1692.7], [2033.91, 1695.06], [2032.88, 1696.96], [1981.62, 1751.66], [1979.54, 1754.0], [1974.39, 1759.43]], [[1964.63, 1764.73], [1959.12, 1770.17], [1958.47, 1769.69], [1964.48, 1764.6], [1964.63, 1764.73]], [[2061.79, 2043.53], [2059.71, 2045.69], [2065.54, 2051.28], [2152.39, 2134.47], [2156.82, 2138.62], [2153.02, 2142.51], [2095.1, 2202.07], [2090.75, 2206.5], [2086.23, 2202.29], [1955.83, 2073.86], [1951.93, 2070.04], [1956.37, 2065.5], [2013.11, 2007.43], [2016.43, 2004.03], [2019.9, 2007.37], [2027.16, 2014.36], [2051.98, 2038.25], [2059.7, 2045.69], [2061.79, 2043.53]], [[2156.51, 2130.11], [2069.69, 2046.94], [2066.0, 2043.41], [2070.36, 2038.75], [2084.75, 2023.23], [2104.83, 2003.36], [2108.65, 2006.97], [2200.67, 2094.03], [2165.26, 2130.28], [2161.06, 2134.38], [2156.51, 2130.11]], [[2217.68, 2076.92], [2204.88, 2089.76], [2112.78, 2002.62], [2109.0, 1999.04], [2127.98, 1978.52], [2141.44, 1964.47], [2145.6, 1960.03], [2153.31, 1967.27], [2225.26, 2037.35], [2237.22, 2048.48], [2241.79, 2052.73], [2238.4, 2056.13], [2217.68, 2076.92]], [[1586.12, 2348.9], [1588.84, 2348.84], [1591.49, 2348.98], [1588.4, 2368.43], [1586.35, 2396.54], [1586.31, 2409.28], [1583.57, 2409.23], [1582.54, 2408.74], [1581.87, 2406.01], [1582.67, 2379.54], [1584.74, 2351.09], [1585.38, 2349.27], [1586.12, 2348.9]], [[2294.87, 2553.36], [2299.3, 2557.82], [2409.48, 2664.83], [2414.47, 2668.47], [2410.45, 2673.28], [2408.57, 2675.25], [2353.44, 2732.95], [2349.12, 2737.33], [2344.78, 2733.32], [2233.68, 2625.2], [2229.46, 2621.32], [2233.71, 2616.83], [2257.23, 2592.77], [2291.14, 2557.14], [2294.87, 2553.36]], [[2362.15, 2486.0], [2367.0, 2481.69], [2371.05, 2485.64], [2442.56, 2554.71], [2479.08, 2591.31], [2483.6, 2595.65], [2479.45, 2600.17], [2424.35, 2657.93], [2422.34, 2660.05], [2419.18, 2663.24], [2414.0, 2659.46], [2304.22, 2552.85], [2299.79, 2548.38], [2303.71, 2544.41], [2314.9, 2533.39], [2356.71, 2490.61], [2362.15, 2486.0]], [[2562.76, 2532.81], [2595.06, 2562.71], [2626.65, 2592.8], [2659.5, 2625.23], [2681.61, 2645.97], [2684.1, 2648.31], [2679.55, 2653.54], [2679.11, 2653.96], [2657.25, 2676.07], [2650.01, 2683.38], [2621.63, 2713.7], [2618.81, 2716.71], [2617.48, 2717.81], [2619.39, 2720.12], [2617.25, 2718.03], [2608.57, 2726.93], [2591.78, 2744.13], [2554.66, 2782.52], [2552.19, 2785.09], [2548.76, 2788.64], [2543.06, 2784.02], [2457.48, 2699.81], [2427.25, 2672.02], [2423.52, 2667.39], [2426.64, 2664.23], [2428.7, 2662.07], [2483.84, 2604.27], [2487.93, 2599.8], [2492.2, 2603.92], [2521.82, 2632.67], [2527.31, 2638.05], [2536.24, 2646.63], [2539.57, 2649.93], [2544.91, 2656.37], [2549.53, 2652.55], [2544.0, 2645.87], [2540.43, 2642.34], [2531.49, 2633.75], [2526.01, 2628.37], [2496.37, 2599.61], [2492.13, 2595.52], [2496.43, 2591.4], [2554.57, 2532.76], [2558.56, 2528.52], [2562.76, 2532.81]], [[2647.81, 2447.44], [2656.94, 2456.18], [2687.61, 2484.56], [2691.1, 2487.88], [2710.38, 2506.25], [2720.85, 2515.53], [2763.7, 2555.86], [2768.54, 2560.41], [2763.21, 2565.95], [2746.21, 2583.59], [2731.39, 2598.98], [2691.62, 2640.3], [2688.16, 2643.89], [2685.71, 2641.6], [2663.66, 2620.9], [2630.83, 2588.49], [2599.17, 2558.33], [2566.94, 2528.51], [2562.71, 2524.19], [2566.89, 2519.93], [2639.47, 2446.52], [2642.82, 2442.7], [2647.81, 2447.44]], [[2533.36, 2321.78], [2525.98, 2314.78], [2527.7, 2312.21], [2527.89, 2309.99], [2527.37, 2308.07], [2526.34, 2306.88], [2521.25, 2301.06], [2517.06, 2296.29], [2536.96, 2315.18], [2540.26, 2318.3], [2577.39, 2353.52], [2583.32, 2359.14], [2586.93, 2355.33], [2583.32, 2359.15], [2590.75, 2366.19], [2605.42, 2380.24], [2645.19, 2417.77], [2646.83, 2419.31], [2651.29, 2423.54], [2644.91, 2430.11], [2640.52, 2425.79], [2585.49, 2371.61], [2572.15, 2358.88], [2533.36, 2321.78]], [[2597.99, 2358.58], [2592.87, 2353.73], [2595.65, 2351.03], [2620.72, 2326.85], [2637.88, 2310.29], [2640.95, 2307.33], [2645.8, 2302.65], [2648.84, 2307.27], [2665.34, 2326.77], [2678.17, 2340.86], [2677.8, 2341.1], [2682.36, 2348.27], [2687.06, 2354.92], [2688.42, 2356.34], [2692.03, 2359.86], [2694.54, 2363.78], [2694.17, 2366.94], [2694.79, 2370.48], [2693.59, 2373.98], [2692.47, 2375.98], [2689.56, 2380.47], [2679.71, 2395.69], [2661.68, 2413.22], [2658.71, 2416.11], [2654.03, 2411.68], [2652.39, 2410.13], [2612.66, 2372.63], [2597.99, 2358.58]], [[2591.47, 2346.73], [2588.52, 2349.6], [2584.61, 2345.9], [2547.48, 2310.68], [2544.19, 2307.56], [2515.65, 2280.48], [2423.35, 2188.21], [2417.37, 2182.33], [2410.68, 2175.75], [2413.71, 2172.64], [2437.99, 2147.72], [2449.9, 2135.51], [2463.3, 2122.96], [2464.96, 2121.04], [2485.43, 2098.28], [2504.06, 2082.13], [2507.29, 2079.33], [2510.89, 2085.23], [2555.11, 2157.7], [2563.14, 2170.87], [2567.78, 2178.03], [2569.39, 2180.59], [2571.27, 2179.4], [2572.78, 2183.21], [2603.3, 2239.15], [2610.97, 2249.13], [2612.44, 2251.34], [2613.17, 2252.59], [2612.57, 2254.3], [2614.55, 2254.99], [2619.03, 2262.73], [2621.39, 2266.81], [2627.35, 2277.12], [2636.09, 2288.56], [2640.27, 2293.17], [2643.4, 2296.62], [2636.78, 2303.01], [2633.71, 2305.97], [2616.55, 2322.53], [2591.47, 2346.73]], [[2624.24, 2257.68], [2625.05, 2257.73], [2625.13, 2257.85], [2640.13, 2282.95], [2643.44, 2289.32], [2643.58, 2290.11], [2643.9, 2291.97], [2642.86, 2290.82], [2638.78, 2286.32], [2630.27, 2275.17], [2624.42, 2265.06], [2622.06, 2260.98], [2619.46, 2256.48], [2623.38, 2257.55], [2623.84, 2255.85], [2624.3, 2256.57], [2624.24, 2257.68]], [[2581.74, 2184.88], [2577.47, 2180.45], [2574.31, 2177.49], [2576.16, 2176.33], [2576.16, 2176.33], [2579.44, 2174.31], [2581.44, 2173.11], [2614.28, 2153.06], [2612.71, 2150.5], [2614.35, 2153.01], [2652.87, 2127.98], [2669.34, 2118.1], [2670.7, 2117.29], [2678.44, 2255.92], [2678.6, 2258.79], [2678.65, 2261.09], [2675.23, 2261.28], [2659.75, 2260.54], [2645.11, 2251.9], [2636.38, 2250.09], [2631.72, 2249.83], [2625.11, 2249.49], [2623.67, 2249.1], [2611.96, 2230.76], [2586.98, 2192.83], [2581.74, 2184.88]], [[2538.79, 2024.04], [2503.51, 1966.38], [2500.91, 1962.12], [2502.22, 1961.3], [2527.04, 1945.74], [2531.74, 1942.44], [2534.7, 1940.36], [2537.71, 1945.32], [2643.18, 2117.55], [2644.86, 2120.29], [2647.27, 2124.47], [2613.7, 2146.28], [2602.84, 2127.92], [2575.26, 2083.09], [2564.8, 2064.8], [2538.79, 2024.04]], [[2539.69, 1937.01], [2541.21, 1936.03], [2544.11, 1934.0], [2549.8, 1932.77], [2654.8, 1929.62], [2657.44, 1929.54], [2660.22, 1929.47], [2660.4, 1932.74], [2663.43, 1987.05], [2666.33, 2039.01], [2668.0, 2068.93], [2668.34, 2075.03], [2668.9, 2084.94], [2670.32, 2110.52], [2666.25, 2112.96], [2652.36, 2121.29], [2650.02, 2117.23], [2648.3, 2114.42], [2542.83, 1942.19], [2539.69, 1937.01]], [[2546.13, 1927.42], [2547.55, 1921.67], [2552.67, 1900.99], [2555.89, 1887.99], [2558.69, 1876.68], [2567.7, 1840.27], [2574.53, 1812.73], [2574.92, 1811.15], [2577.41, 1811.76], [2586.26, 1813.93], [2587.09, 1810.54], [2593.78, 1812.62], [2594.71, 1809.62], [2594.71, 1809.62], [2593.78, 1812.62], [2594.83, 1812.94], [2594.83, 1813.27], [2595.88, 1813.27], [2615.25, 1819.29], [2617.8, 1819.98], [2625.35, 1822.03], [2628.82, 1822.97], [2653.42, 1829.62], [2654.66, 1829.96], [2654.72, 1831.04], [2656.36, 1860.42], [2656.79, 1868.04], [2658.16, 1892.56], [2659.57, 1917.94], [2659.88, 1923.48], [2657.27, 1923.55], [2654.62, 1923.62], [2549.08, 1926.79], [2546.13, 1927.42]], [[2619.63, 1813.23], [2617.21, 1812.57], [2613.06, 1811.28], [2614.11, 1810.92], [2615.58, 1810.01], [2617.54, 1808.79], [2620.34, 1806.43], [2622.88, 1803.47], [2630.09, 1792.76], [2635.68, 1784.22], [2636.72, 1782.32], [2638.49, 1783.57], [2683.81, 1812.83], [2718.26, 1831.76], [2740.71, 1842.4], [2723.53, 1838.94], [2699.65, 1833.41], [2667.78, 1825.96], [2658.37, 1823.71], [2655.25, 1822.86], [2630.64, 1816.21], [2627.18, 1815.27], [2619.63, 1813.23]], [[2629.96, 1777.55], [2630.15, 1777.68], [2628.82, 1780.1], [2627.47, 1782.16], [2629.0, 1779.34], [2629.96, 1777.55]], [[2427.32, 1628.62], [2347.4, 1573.26], [2344.24, 1571.07], [2349.23, 1563.1], [2352.39, 1558.6], [2357.47, 1551.5], [2377.86, 1520.95], [2380.16, 1516.92], [2390.2, 1523.5], [2397.44, 1528.25], [2435.13, 1554.95], [2436.87, 1552.5], [2435.14, 1554.95], [2452.46, 1567.16], [2497.79, 1597.34], [2559.92, 1640.61], [2621.63, 1682.04], [2624.38, 1683.5], [2626.93, 1684.64], [2627.88, 1685.07], [2631.34, 1686.11], [2634.9, 1686.19], [2635.96, 1694.56], [2634.97, 1698.23], [2634.74, 1705.09], [2635.07, 1713.81], [2635.12, 1721.5], [2635.08, 1729.89], [2634.99, 1742.23], [2634.15, 1748.47], [2633.06, 1753.66], [2629.78, 1763.47], [2627.81, 1767.5], [2621.64, 1763.22], [2617.47, 1760.34], [2434.03, 1633.27], [2427.32, 1628.62]], [[2627.01, 1678.11], [2624.71, 1676.89], [2563.31, 1635.66], [2501.16, 1592.38], [2455.85, 1562.21], [2441.08, 1551.8], [2442.75, 1549.48], [2487.8, 1487.33], [2488.58, 1486.25], [2492.63, 1480.67], [2495.33, 1482.83], [2504.52, 1490.17], [2539.76, 1513.62], [2561.23, 1525.39], [2564.18, 1527.02], [2570.85, 1529.81], [2577.84, 1532.74], [2585.54, 1533.72], [2586.62, 1533.86], [2595.14, 1534.93], [2619.4, 1535.3], [2626.08, 1535.55], [2626.35, 1539.96], [2627.2, 1554.27], [2627.8, 1564.42], [2630.27, 1605.85], [2632.17, 1637.9], [2634.39, 1680.18], [2632.29, 1680.13], [2630.0, 1679.44], [2629.39, 1679.17], [2627.01, 1678.11]], [[2633.21, 1452.09], [2635.68, 1452.13], [2716.26, 1455.08], [2719.9, 1455.22], [2719.63, 1460.09], [2719.56, 1461.37], [2715.88, 1527.02], [2715.63, 1531.6], [2651.34, 1529.17], [2637.62, 1528.78], [2631.72, 1528.62], [2631.52, 1523.62], [2630.06, 1488.31], [2627.47, 1451.88], [2633.21, 1452.09]], [[2584.12, 1382.79], [2580.27, 1385.54], [2584.0, 1382.63], [2535.15, 1319.96], [2538.36, 1317.31], [2591.22, 1273.72], [2641.38, 1332.97], [2658.84, 1353.94], [2718.69, 1374.93], [2724.69, 1377.03], [2724.3, 1383.33], [2720.46, 1445.86], [2720.42, 1446.63], [2720.26, 1449.22], [2716.48, 1449.09], [2635.84, 1446.13], [2633.36, 1446.09], [2628.25, 1445.91], [2626.78, 1441.66], [2626.21, 1440.05], [2615.83, 1427.24], [2584.12, 1382.79]], [[2175.87, 2415.59], [2221.25, 2371.06], [2222.06, 2370.22], [2232.62, 2359.17], [2237.97, 2353.57], [2245.18, 2346.05], [2257.68, 2333.02], [2271.59, 2318.51], [2303.44, 2286.05], [2308.39, 2281.05], [2306.26, 2278.94], [2308.4, 2281.03], [2315.88, 2273.37], [2345.78, 2243.01], [2368.04, 2219.6], [2385.59, 2200.71], [2390.43, 2196.18], [2397.31, 2202.95], [2516.46, 2320.16], [2512.99, 2325.54], [2441.28, 2397.61], [2435.77, 2403.42], [2428.67, 2410.21], [2413.69, 2425.33], [2370.69, 2469.14], [2366.89, 2473.36], [2362.11, 2469.03], [2334.1, 2441.17], [2329.87, 2445.42], [2357.98, 2473.38], [2362.61, 2477.57], [2358.21, 2481.47], [2352.61, 2486.22], [2310.65, 2529.16], [2299.48, 2540.17], [2295.51, 2544.17], [2291.42, 2540.22], [2174.38, 2426.68], [2169.99, 2422.43], [2173.54, 2417.87], [2175.87, 2415.59]], [[2217.72, 2366.07], [2216.98, 2366.85], [2171.67, 2411.3], [2169.05, 2413.87], [2165.67, 2418.21], [2161.46, 2414.08], [2111.74, 2365.23], [2052.62, 2307.01], [2029.97, 2285.69], [2025.96, 2281.85], [2029.44, 2278.24], [2086.45, 2219.08], [2090.84, 2214.86], [2095.21, 2219.11], [2226.49, 2346.59], [2231.59, 2351.57], [2228.28, 2355.03], [2217.72, 2366.07]], [[2398.59, 1701.47], [2399.22, 1699.15], [2403.1, 1684.99], [2407.44, 1669.12], [2409.79, 1661.62], [2413.25, 1653.87], [2416.79, 1647.64], [2420.72, 1641.94], [2422.69, 1639.09], [2425.49, 1635.87], [2430.05, 1639.02], [2613.48, 1766.09], [2617.65, 1768.98], [2624.19, 1773.5], [2622.84, 1776.02], [2616.37, 1787.89], [2613.24, 1792.69], [2610.71, 1795.8], [2608.55, 1797.98], [2605.95, 1799.37], [2601.55, 1801.0], [2595.65, 1802.39], [2588.83, 1803.45], [2589.6, 1800.34], [2580.73, 1798.16], [2576.12, 1797.03], [2572.32, 1796.05], [2550.69, 1790.47], [2526.23, 1784.15], [2523.74, 1783.51], [2509.7, 1779.89], [2483.78, 1772.94], [2477.97, 1771.38], [2472.37, 1769.82], [2407.79, 1751.91], [2387.42, 1746.27], [2387.63, 1745.39], [2392.12, 1726.31], [2393.98, 1717.32], [2396.09, 1710.55], [2398.59, 1701.47]], [[2383.59, 1163.08], [2387.78, 1158.21], [2426.52, 1196.64], [2427.12, 1197.24], [2423.33, 1200.93], [2421.79, 1202.42], [2413.36, 1210.61], [2408.98, 1217.07], [2405.46, 1224.71], [2390.79, 1263.37], [2377.65, 1280.38], [2374.56, 1284.38], [2369.03, 1290.32], [2319.43, 1343.51], [2317.26, 1345.83], [2314.05, 1349.27], [2311.85, 1347.81], [2302.73, 1341.78], [2288.96, 1331.75], [2273.72, 1318.8], [2260.1, 1305.91], [2256.85, 1302.83], [2259.16, 1300.43], [2260.96, 1298.56], [2263.26, 1296.19], [2369.68, 1179.21], [2381.73, 1165.24], [2383.59, 1163.08]], [[2574.46, 1385.76], [2571.11, 1387.96], [2568.37, 1389.76], [2563.47, 1392.98], [2532.16, 1418.16], [2528.47, 1421.83], [2525.2, 1418.78], [2473.68, 1370.7], [2399.91, 1304.32], [2383.54, 1288.59], [2380.87, 1286.03], [2382.4, 1284.05], [2396.08, 1266.33], [2410.99, 1227.03], [2414.23, 1220.03], [2417.98, 1214.48], [2425.97, 1206.72], [2427.51, 1205.24], [2431.15, 1201.7], [2432.17, 1202.94], [2435.22, 1206.79], [2446.98, 1221.58], [2476.74, 1260.63], [2525.93, 1323.51], [2574.46, 1385.76]], [[2587.37, 1269.12], [2534.54, 1312.68], [2531.45, 1315.23], [2484.22, 1254.85], [2454.44, 1215.77], [2442.62, 1200.91], [2440.97, 1198.83], [2444.08, 1195.43], [2445.72, 1193.65], [2485.97, 1149.71], [2488.21, 1151.81], [2495.24, 1158.41], [2587.37, 1269.12]], [[2371.82, 1046.02], [2373.29, 1047.39], [2404.01, 1075.8], [2478.79, 1143.23], [2481.51, 1145.69], [2441.3, 1189.6], [2439.66, 1191.38], [2437.15, 1194.11], [2436.3, 1193.07], [2432.64, 1196.07], [2435.97, 1192.71], [2433.17, 1189.93], [2392.06, 1149.15], [2388.73, 1152.51], [2391.86, 1148.97], [2388.3, 1145.81], [2352.33, 1113.96], [2330.7, 1094.79], [2327.86, 1092.28], [2330.21, 1089.8], [2332.11, 1087.81], [2371.82, 1046.02]], [[2446.4, 1449.43], [2484.72, 1475.07], [2487.79, 1477.13], [2483.71, 1482.74], [2482.94, 1483.81], [2437.9, 1545.96], [2436.18, 1548.33], [2400.82, 1523.29], [2393.49, 1518.49], [2380.81, 1510.17], [2321.1, 1468.85], [2265.78, 1431.05], [2267.11, 1429.13], [2299.72, 1381.8], [2309.95, 1365.63], [2311.28, 1363.52], [2314.03, 1359.18], [2318.35, 1362.12], [2446.4, 1449.43]], [[2373.41, 1294.41], [2376.97, 1290.6], [2379.39, 1292.92], [2395.82, 1308.72], [2469.63, 1375.12], [2521.11, 1423.16], [2524.25, 1426.1], [2518.52, 1431.98], [2495.76, 1465.61], [2494.38, 1467.64], [2492.52, 1470.39], [2489.29, 1468.23], [2451.01, 1442.61], [2322.98, 1355.32], [2319.09, 1352.67], [2321.65, 1349.92], [2323.82, 1347.61], [2373.41, 1294.41]], [[2617.84, 1444.72], [2617.86, 1444.77], [2619.78, 1450.31], [2621.31, 1449.78], [2624.07, 1488.64], [2625.52, 1523.87], [2625.66, 1527.3], [2619.62, 1527.08], [2595.72, 1526.71], [2587.65, 1525.69], [2586.58, 1525.56], [2579.99, 1524.72], [2574.03, 1522.22], [2567.76, 1519.6], [2565.19, 1518.18], [2544.03, 1506.57], [2509.38, 1483.52], [2500.47, 1476.4], [2497.37, 1473.92], [2499.35, 1471.01], [2500.72, 1468.98], [2523.19, 1435.79], [2530.67, 1428.11], [2536.17, 1422.63], [2567.0, 1397.83], [2571.66, 1394.78], [2574.4, 1392.98], [2578.06, 1390.57], [2608.31, 1432.96], [2617.84, 1444.72]], [[2495.79, 1965.25], [2498.39, 1969.51], [2533.7, 2027.22], [2559.66, 2067.91], [2570.1, 2086.15], [2597.7, 2131.02], [2608.62, 2149.48], [2578.33, 2167.98], [2576.33, 2169.18], [2572.93, 2171.27], [2569.92, 2166.61], [2561.94, 2153.53], [2517.72, 2081.06], [2512.19, 2071.99], [2508.77, 2074.08], [2512.18, 2071.98], [2507.53, 2064.44], [2462.74, 1991.76], [2459.6, 1986.65], [2463.69, 1984.23], [2495.79, 1965.25]], [[2330.56, 1780.41], [2328.81, 1777.54], [2325.39, 1779.62], [2328.36, 1777.77], [2320.35, 1764.9], [2307.1, 1743.64], [2305.86, 1741.66], [2311.1, 1741.85], [2328.05, 1746.01], [2360.58, 1754.0], [2381.14, 1759.06], [2404.05, 1765.41], [2468.62, 1783.31], [2471.61, 1784.14], [2470.93, 1786.97], [2469.33, 1793.7], [2466.53, 1805.39], [2464.79, 1810.88], [2464.03, 1814.07], [2463.19, 1817.56], [2462.6, 1822.6], [2463.59, 1827.19], [2465.72, 1832.47], [2468.94, 1838.0], [2481.35, 1855.9], [2497.27, 1882.09], [2500.42, 1887.26], [2505.31, 1895.3], [2526.35, 1928.5], [2528.17, 1930.98], [2531.38, 1935.36], [2528.29, 1937.53], [2523.72, 1940.74], [2499.04, 1956.22], [2495.24, 1958.6], [2460.63, 1979.07], [2456.43, 1981.55], [2453.26, 1976.52], [2443.62, 1961.2], [2429.41, 1939.09], [2404.35, 1898.79], [2383.54, 1866.34], [2380.55, 1861.7], [2376.62, 1855.26], [2374.51, 1851.79], [2355.57, 1821.57], [2353.2, 1817.67], [2342.54, 1800.13], [2331.51, 1781.98], [2330.56, 1780.41]], [[2474.01, 1834.78], [2471.13, 1829.83], [2469.34, 1825.42], [2468.68, 1822.31], [2469.11, 1818.61], [2469.87, 1815.46], [2470.58, 1812.49], [2472.31, 1806.99], [2475.17, 1795.09], [2476.77, 1788.36], [2477.4, 1785.72], [2480.14, 1786.46], [2506.14, 1793.43], [2520.24, 1797.07], [2522.74, 1797.71], [2547.19, 1804.02], [2568.82, 1809.61], [2570.55, 1810.06], [2570.16, 1811.64], [2563.33, 1839.19], [2554.33, 1875.59], [2551.52, 1886.91], [2548.3, 1899.9], [2543.18, 1920.59], [2541.17, 1928.75], [2541.16, 1928.73], [2537.86, 1931.05], [2536.36, 1932.01], [2533.01, 1927.44], [2531.31, 1925.11], [2510.41, 1892.13], [2505.55, 1884.14], [2502.4, 1878.97], [2486.38, 1852.63], [2474.01, 1834.78]], [[2510.2, 2286.03], [2510.21, 2286.12], [2508.38, 2288.05], [2510.71, 2290.26], [2511.4, 2295.9], [2518.24, 2303.7], [2523.32, 2309.51], [2523.75, 2310.0], [2523.84, 2310.35], [2523.8, 2310.84], [2523.07, 2311.94], [2404.67, 2195.46], [2397.93, 2188.83], [2403.36, 2183.27], [2410.0, 2189.81], [2415.95, 2195.66], [2508.28, 2287.95], [2510.2, 2286.03]], [[2614.65, 2248.34], [2613.82, 2247.09], [2606.24, 2237.23], [2578.71, 2186.78], [2579.0, 2187.08], [2584.06, 2194.76], [2609.02, 2232.67], [2618.63, 2247.7], [2615.29, 2246.53], [2614.65, 2248.34]], [[2549.89, 2519.86], [2554.33, 2524.26], [2550.26, 2528.59], [2492.23, 2587.12], [2487.79, 2591.36], [2483.28, 2587.03], [2446.77, 2550.44], [2375.23, 2481.33], [2371.26, 2477.46], [2375.06, 2473.26], [2417.97, 2429.54], [2432.88, 2414.49], [2437.9, 2409.69], [2442.21, 2413.82], [2477.27, 2447.5], [2509.16, 2478.92], [2549.89, 2519.86]], [[2638.5, 2438.53], [2635.08, 2442.43], [2562.62, 2515.72], [2558.48, 2519.93], [2554.13, 2515.62], [2513.4, 2474.67], [2481.46, 2443.2], [2446.36, 2409.49], [2442.13, 2405.43], [2445.58, 2401.79], [2517.7, 2329.33], [2520.87, 2324.4], [2526.12, 2329.39], [2564.9, 2366.47], [2578.18, 2379.15], [2633.16, 2433.28], [2638.5, 2438.53]], [[2750.37, 1922.8], [2755.52, 2010.99], [2757.94, 2063.78], [2758.1, 2068.59], [2753.21, 2068.77], [2678.01, 2071.51], [2674.16, 2071.71], [2673.99, 2068.59], [2672.32, 2038.67], [2669.42, 1986.72], [2666.39, 1932.41], [2666.21, 1929.07], [2670.74, 1928.58], [2672.93, 1928.37], [2692.05, 1926.45], [2745.82, 1923.08], [2750.37, 1922.8]], [[2756.7, 1865.33], [2759.54, 1858.93], [2761.6, 1854.29], [2764.28, 1854.9], [2763.51, 1857.8], [2771.69, 1859.95], [2809.36, 1870.07], [2835.67, 1877.15], [2841.61, 1878.91], [2841.33, 1881.24], [2841.32, 1888.24], [2841.72, 1894.27], [2842.32, 1899.12], [2842.33, 1905.37], [2842.58, 1916.58], [2838.24, 1913.49], [2797.91, 1881.5], [2794.18, 1886.21], [2834.63, 1918.29], [2841.41, 1923.12], [2843.53, 1939.06], [2849.0, 2059.29], [2849.21, 2063.07], [2843.82, 2063.17], [2769.39, 2067.95], [2764.09, 2068.28], [2763.93, 2063.54], [2761.52, 2010.68], [2756.19, 1919.5], [2756.08, 1914.38], [2754.48, 1886.42], [2754.34, 1882.58], [2754.86, 1873.08], [2756.7, 1865.33]], [[2798.72, 1683.26], [2797.76, 1688.08], [2792.71, 1713.2], [2783.44, 1755.51], [2782.91, 1757.94], [2782.19, 1761.23], [2778.44, 1760.25], [2708.88, 1742.06], [2681.84, 1733.79], [2652.43, 1728.03], [2650.54, 1727.66], [2647.83, 1727.44], [2646.57, 1717.52], [2644.79, 1705.05], [2643.33, 1697.53], [2641.94, 1694.02], [2640.54, 1682.98], [2638.38, 1641.74], [2642.91, 1642.99], [2645.92, 1643.74], [2706.51, 1658.84], [2728.17, 1664.9], [2791.71, 1681.43], [2794.13, 1682.06], [2798.72, 1683.26]], [[2819.11, 1549.66], [2819.23, 1547.81], [2819.61, 1542.06], [2822.97, 1542.19], [2866.36, 1543.89], [2907.71, 1547.65], [2913.3, 1548.16], [2912.54, 1551.71], [2899.42, 1612.75], [2898.32, 1617.89], [2881.54, 1696.03], [2881.17, 1697.74], [2876.43, 1696.56], [2812.74, 1680.61], [2809.63, 1679.83], [2805.83, 1678.88], [2806.57, 1675.8], [2813.5, 1647.0], [2816.17, 1621.37], [2816.48, 1600.37], [2817.75, 1570.29], [2819.11, 1549.66]], [[2812.93, 1399.63], [2820.14, 1400.73], [2818.24, 1447.82], [2818.12, 1450.88], [2817.99, 1454.0], [2811.51, 1453.68], [2730.67, 1449.7], [2726.25, 1449.48], [2726.41, 1446.98], [2726.45, 1446.22], [2730.29, 1383.7], [2730.59, 1378.86], [2732.94, 1379.54], [2790.64, 1396.0], [2812.93, 1399.63]], [[2811.76, 1569.97], [2810.48, 1600.2], [2810.17, 1621.01], [2807.57, 1645.98], [2800.73, 1674.4], [2800.02, 1677.39], [2795.64, 1676.26], [2793.22, 1675.63], [2729.73, 1659.11], [2708.04, 1653.04], [2647.37, 1637.92], [2644.44, 1637.19], [2638.03, 1635.42], [2636.26, 1605.49], [2633.79, 1564.06], [2633.19, 1553.92], [2632.34, 1539.6], [2632.04, 1534.63], [2637.45, 1534.78], [2651.14, 1535.16], [2718.33, 1537.7], [2808.2, 1541.59], [2813.62, 1541.82], [2813.25, 1547.42], [2813.13, 1549.27], [2811.76, 1569.97]], [[2817.5, 1464.49], [2817.35, 1467.46], [2814.13, 1532.52], [2814.03, 1534.46], [2813.96, 1535.83], [2808.46, 1535.59], [2721.62, 1531.84], [2721.87, 1527.36], [2725.55, 1461.7], [2725.62, 1460.42], [2725.9, 1455.47], [2730.38, 1455.69], [2811.21, 1459.68], [2817.73, 1460.0], [2817.5, 1464.49]], [[2648.67, 1741.17], [2648.57, 1738.87], [2648.32, 1733.5], [2649.71, 1733.61], [2651.27, 1733.92], [2680.38, 1739.61], [2707.24, 1747.83], [2776.92, 1766.06], [2780.9, 1767.1], [2780.15, 1770.47], [2779.54, 1773.22], [2772.69, 1804.15], [2771.23, 1810.48], [2765.14, 1836.57], [2759.89, 1843.26], [2759.7, 1843.64], [2752.34, 1840.16], [2721.45, 1825.52], [2687.4, 1806.81], [2642.41, 1777.76], [2639.12, 1775.44], [2641.37, 1770.55], [2644.14, 1764.7], [2646.26, 1760.27], [2648.0, 1754.16], [2648.79, 1749.85], [2648.82, 1746.45], [2648.67, 1741.17]], [[2811.29, 1686.43], [2874.98, 1702.38], [2879.91, 1703.61], [2878.92, 1708.19], [2863.55, 1779.77], [2863.09, 1781.91], [2858.56, 1780.73], [2791.82, 1763.71], [2788.0, 1762.73], [2788.77, 1759.23], [2789.3, 1756.8], [2798.58, 1714.43], [2803.64, 1689.26], [2804.55, 1684.74], [2808.17, 1685.65], [2811.29, 1686.43]], [[2641.74, 1727.07], [2641.1, 1727.04], [2641.12, 1722.2], [2641.74, 1727.07]], [[2635.94, 1768.01], [2634.13, 1771.92], [2632.78, 1770.97], [2635.34, 1765.76], [2638.86, 1755.24], [2640.07, 1749.49], [2640.99, 1742.66], [2641.06, 1733.04], [2642.29, 1733.1], [2642.57, 1739.15], [2642.68, 1741.39], [2642.82, 1746.51], [2642.79, 1749.27], [2642.15, 1752.8], [2640.63, 1758.14], [2638.72, 1762.12], [2635.94, 1768.01]], [[2748.89, 1872.21], [2748.34, 1882.53], [2748.49, 1886.7], [2750.08, 1914.62], [2750.13, 1916.81], [2745.45, 1917.1], [2691.56, 1920.46], [2672.34, 1922.4], [2670.13, 1922.62], [2665.87, 1923.07], [2665.56, 1917.61], [2664.15, 1892.23], [2662.78, 1867.7], [2662.35, 1860.09], [2660.76, 1831.48], [2666.17, 1832.77], [2698.06, 1840.23], [2722.05, 1845.78], [2748.93, 1851.19], [2755.81, 1852.57], [2754.06, 1856.5], [2750.99, 1863.4], [2748.89, 1872.21]], [[2790.34, 1769.52], [2857.07, 1786.55], [2861.83, 1787.78], [2860.95, 1791.88], [2846.34, 1859.9], [2845.85, 1862.2], [2844.71, 1865.22], [2839.48, 1863.67], [2813.0, 1856.55], [2775.29, 1846.43], [2767.08, 1844.26], [2766.37, 1846.94], [2765.23, 1846.18], [2770.68, 1839.23], [2777.07, 1811.84], [2778.54, 1805.48], [2785.4, 1774.52], [2786.01, 1771.77], [2786.71, 1768.6], [2790.34, 1769.52]], [[2767.45, 2252.74], [2767.62, 2256.15], [2762.69, 2256.43], [2687.64, 2260.75], [2684.64, 2260.84], [2684.6, 2258.56], [2684.43, 2255.59], [2676.41, 2111.99], [2674.89, 2084.61], [2674.5, 2077.7], [2678.28, 2077.5], [2753.43, 2074.76], [2758.37, 2074.58], [2758.66, 2079.65], [2767.45, 2252.74]], [[2853.98, 2251.69], [2778.38, 2255.57], [2773.61, 2255.82], [2773.44, 2252.44], [2764.65, 2079.33], [2764.36, 2074.28], [2769.77, 2073.93], [2844.07, 2069.17], [2849.55, 2069.06], [2849.91, 2075.37], [2859.99, 2248.69], [2860.13, 2251.42], [2853.98, 2251.69]], [[2944.41, 2247.95], [2870.06, 2251.0], [2866.12, 2251.16], [2865.98, 2248.37], [2855.9, 2075.02], [2855.54, 2068.69], [2860.14, 2068.21], [2936.46, 2064.3], [2941.19, 2064.06], [2941.54, 2070.4], [2950.88, 2243.89], [2951.05, 2247.5], [2944.41, 2247.95]], [[2938.03, 2005.22], [2938.18, 2008.15], [2940.66, 2054.19], [2940.87, 2058.06], [2936.16, 2058.3], [2859.67, 2062.23], [2855.2, 2062.7], [2854.99, 2058.99], [2849.51, 1938.52], [2848.2, 1928.7], [2851.34, 1931.33], [2854.21, 1933.53], [2929.85, 1989.63], [2937.49, 1995.3], [2938.03, 2005.22]], [[2796.06, 2562.14], [2819.12, 2586.32], [2834.16, 2610.44], [2842.33, 2624.4], [2846.96, 2631.9], [2840.54, 2635.68], [2835.75, 2628.11], [2818.34, 2599.8], [2805.72, 2584.43], [2796.94, 2574.79], [2785.01, 2562.25], [2778.17, 2555.06], [2774.37, 2558.68], [2777.96, 2554.86], [2770.9, 2548.21], [2727.93, 2507.77], [2717.49, 2498.52], [2698.34, 2480.28], [2694.8, 2476.91], [2664.13, 2448.53], [2655.05, 2439.84], [2650.67, 2435.67], [2657.09, 2429.05], [2661.85, 2433.6], [2769.18, 2536.08], [2771.57, 2538.37], [2776.19, 2542.78], [2790.45, 2556.68], [2796.06, 2562.14]], [[2718.37, 2383.28], [2723.06, 2380.71], [2726.81, 2376.85], [2729.25, 2372.04], [2730.12, 2366.83], [2729.84, 2363.49], [2729.68, 2363.5], [2730.51, 2362.27], [2731.77, 2361.53], [2737.89, 2358.95], [2743.22, 2357.5], [2752.8, 2355.61], [2761.83, 2354.37], [2767.15, 2356.0], [2772.79, 2358.2], [2779.95, 2361.95], [2785.01, 2365.14], [2789.09, 2368.38], [2792.06, 2371.11], [2801.07, 2379.89], [2863.47, 2440.73], [2866.37, 2443.56], [2867.18, 2444.37], [2867.92, 2445.12], [2890.29, 2467.68], [2910.1, 2484.39], [2921.53, 2494.76], [2929.32, 2503.16], [2932.03, 2507.05], [2932.47, 2507.69], [2934.98, 2514.64], [2936.61, 2520.8], [2937.8, 2532.52], [2938.07, 2535.81], [2939.55, 2554.69], [2940.12, 2562.36], [2942.39, 2592.43], [2942.55, 2595.57], [2942.85, 2601.23], [2940.17, 2600.31], [2932.75, 2598.95], [2929.09, 2599.05], [2918.74, 2599.32], [2909.86, 2600.25], [2900.84, 2602.77], [2888.13, 2609.08], [2878.82, 2614.63], [2861.45, 2624.5], [2856.39, 2627.18], [2851.33, 2618.99], [2843.15, 2605.01], [2827.46, 2579.85], [2803.53, 2554.76], [2797.78, 2549.16], [2783.48, 2535.22], [2778.82, 2530.78], [2776.43, 2528.49], [2669.1, 2426.0], [2664.51, 2421.62], [2667.26, 2418.96], [2685.37, 2401.35], [2700.45, 2390.92], [2703.53, 2388.79], [2710.77, 2384.17], [2713.71, 2384.3], [2718.37, 2383.28]], [[2720.78, 2361.62], [2721.91, 2364.71], [2722.06, 2366.5], [2721.56, 2369.52], [2720.22, 2372.15], [2718.16, 2374.27], [2715.53, 2375.71], [2713.01, 2376.27], [2710.4, 2376.15], [2707.87, 2375.33], [2705.65, 2373.89], [2703.9, 2371.9], [2702.75, 2369.55], [2702.25, 2366.72], [2702.58, 2363.91], [2703.85, 2361.1], [2705.9, 2358.82], [2708.57, 2357.27], [2711.75, 2356.57], [2712.83, 2356.59], [2716.1, 2357.42], [2718.79, 2359.14], [2720.78, 2361.62]], [[2727.43, 2357.12], [2724.37, 2353.32], [2733.94, 2351.27], [2738.81, 2350.23], [2744.41, 2349.87], [2748.73, 2350.3], [2741.86, 2351.66], [2735.93, 2353.26], [2729.08, 2356.16], [2727.43, 2357.12]], [[2698.48, 2355.1], [2698.27, 2354.77], [2694.25, 2350.85], [2694.67, 2351.0], [2696.06, 2351.46], [2700.39, 2352.98], [2698.48, 2355.1]], [[2699.1, 2382.13], [2697.14, 2383.48], [2699.33, 2380.11], [2699.77, 2379.32], [2700.37, 2380.0], [2701.39, 2380.66], [2699.1, 2382.13]], [[2797.78, 2591.3], [2809.77, 2605.91], [2826.85, 2633.67], [2832.29, 2642.27], [2828.23, 2645.89], [2824.99, 2649.72], [2820.47, 2655.06], [2818.0, 2659.95], [2816.14, 2668.24], [2815.49, 2678.57], [2815.15, 2679.64], [2812.58, 2687.59], [2800.68, 2724.51], [2796.27, 2738.17], [2793.91, 2745.48], [2790.04, 2742.77], [2789.06, 2741.85], [2744.05, 2699.35], [2694.87, 2650.44], [2692.47, 2648.06], [2695.94, 2644.46], [2735.71, 2603.14], [2750.53, 2587.76], [2767.53, 2570.11], [2772.79, 2564.64], [2777.4, 2569.49], [2789.25, 2581.94], [2797.78, 2591.3]], [[2844.61, 2642.57], [2851.0, 2638.8], [2853.74, 2643.73], [2847.72, 2648.26], [2844.61, 2642.57]], [[2859.92, 2633.23], [2864.82, 2630.64], [2882.34, 2620.68], [2891.48, 2615.23], [2903.36, 2609.33], [2911.18, 2607.15], [2919.2, 2606.31], [2926.27, 2606.12], [2922.01, 2607.09], [2906.57, 2612.2], [2883.22, 2622.74], [2867.02, 2633.22], [2861.79, 2636.61], [2859.92, 2633.23]], [[2839.1, 2654.38], [2831.81, 2659.21], [2827.45, 2662.08], [2823.86, 2665.81], [2824.64, 2662.33], [2826.35, 2658.95], [2830.33, 2654.25], [2833.25, 2650.79], [2835.86, 2648.47], [2839.1, 2654.38]]]}}]} \ No newline at end of file diff --git a/public/routing_graph.json b/public/routing_graph.json index 27d4662..81da878 100644 --- a/public/routing_graph.json +++ b/public/routing_graph.json @@ -1 +1 @@ -{"nodes": {"37923758": {"x": -1986.67, "y": 64.8}, "37924361": {"x": -2017.41, "y": -44.36}, "53288573": {"x": -214.91, "y": -3054.2}, "53288575": {"x": -181.66, "y": -3091.01}, "53290647": {"x": 1337.72, "y": 2486.43}, "53311057": {"x": -3098.43, "y": -652.64}, "53311058": {"x": -3099.4, "y": -632.38}, "53326149": {"x": -132.43, "y": -56.42}, "53332729": {"x": -140.7, "y": -230.7}, "53332734": {"x": -314.69, "y": -222.37}, "53370932": {"x": -3053.93, "y": -22.09}, "53370937": {"x": -3056.42, "y": -94.55}, "53385421": {"x": -306.42, "y": -48.08}, "53407742": {"x": 1931.59, "y": 1673.72}, "53407747": {"x": 2119.67, "y": 1857.27}, "53407767": {"x": 2339.57, "y": 2119.27}, "53407902": {"x": -22.83, "y": -149.27}, "53407911": {"x": 34.14, "y": -78.25}, "53407922": {"x": 109.42, "y": -12.7}, "53407926": {"x": 185.07, "y": 54.59}, "53407932": {"x": 244.27, "y": 108.9}, "53407941": {"x": 318.52, "y": 177.71}, "53407975": {"x": 766.33, "y": 584.47}, "53408000": {"x": 1065.77, "y": 853.79}, "53408480": {"x": 1487.11, "y": 1235.54}, "53408487": {"x": 1512.87, "y": 1259.58}, "53408490": {"x": 1616.29, "y": 1353.38}, "53408525": {"x": 1760.93, "y": 1485.94}, "53408558": {"x": -57.19, "y": -147.0}, "53413603": {"x": -2541.25, "y": 119.72}, "53413619": {"x": -2803.66, "y": 130.44}, "53414098": {"x": 16.36, "y": 89.92}, "53416322": {"x": 452.1, "y": 1058.95}, "53416782": {"x": -1174.76, "y": -2068.64}, "53416784": {"x": -1180.92, "y": -2178.83}, "53416786": {"x": -1186.31, "y": -2293.38}, "53416788": {"x": -1189.44, "y": -2408.46}, "53417779": {"x": -929.65, "y": 236.12}, "53417781": {"x": -976.75, "y": 195.45}, "53421608": {"x": -2909.04, "y": -981.75}, "53421612": {"x": -2909.59, "y": -1018.28}, "53421621": {"x": -2908.79, "y": -1086.64}, "53421750": {"x": -1152.89, "y": -969.9}, "53423466": {"x": 387.05, "y": 402.61}, "53423470": {"x": 524.4, "y": 551.26}, "53423501": {"x": 1121.99, "y": 1092.6}, "53423508": {"x": 1268.75, "y": 1229.5}, "53423520": {"x": 1420.01, "y": 1362.11}, "53423529": {"x": 1566.36, "y": 1496.22}, "53423552": {"x": 2038.77, "y": 1940.06}, "53423556": {"x": 2139.46, "y": 2036.96}, "53423565": {"x": 2535.88, "y": 2422.6}, "53423568": {"x": 2666.14, "y": 2544.59}, "53423575": {"x": 2737.19, "y": 2640.91}, "53425693": {"x": 142.33, "y": 369.18}, "53425702": {"x": 8.36, "y": 519.46}, "53426174": {"x": 30.04, "y": -223.62}, "53426175": {"x": 95.25, "y": -295.22}, "53426575": {"x": -264.31, "y": -2215.95}, "53426577": {"x": -272.05, "y": -2410.68}, "53428594": {"x": -2813.21, "y": -951.45}, "53428597": {"x": -2814.76, "y": -983.18}, "53429624": {"x": 1112.13, "y": 1520.79}, "53430018": {"x": 930.57, "y": 1003.77}, "53430027": {"x": 1079.11, "y": 1137.93}, "53430437": {"x": -1739.88, "y": -1016.5}, "53430443": {"x": -1869.52, "y": -1014.21}, "53430446": {"x": -1952.89, "y": -1012.49}, "53430836": {"x": 2760.46, "y": 2318.35}, "53430839": {"x": 2755.1, "y": 2241.3}, "53430844": {"x": 2744.15, "y": 2051.92}, "53430857": {"x": 2736.89, "y": 1858.56}, "53432331": {"x": 820.62, "y": 223.16}, "53432339": {"x": 1268.58, "y": 629.32}, "53432346": {"x": 1567.1, "y": 900.19}, "53432349": {"x": 1716.1, "y": 1036.03}, "53432353": {"x": 1846.75, "y": 1191.74}, "53432356": {"x": 1882.25, "y": 1234.53}, "53433643": {"x": 712.02, "y": 1402.45}, "53433662": {"x": 716.43, "y": 1539.07}, "53434711": {"x": -1202.76, "y": 104.04}, "53434862": {"x": -940.65, "y": -2420.37}, "53434863": {"x": -945.32, "y": -2537.0}, "53434865": {"x": -951.6, "y": -2651.21}, "53434867": {"x": -956.24, "y": -2768.43}, "53434870": {"x": -895.98, "y": -2098.71}, "53434871": {"x": -899.4, "y": -2191.44}, "53436855": {"x": -3240.72, "y": -548.39}, "53437415": {"x": 2030.21, "y": 1372.86}, "53437417": {"x": 2061.6, "y": 1355.41}, "53437418": {"x": 2143.58, "y": 1289.64}, "53437425": {"x": 2280.5, "y": 1138.42}, "53437707": {"x": 634.91, "y": 1329.98}, "53437708": {"x": 681.67, "y": 1373.93}, "53437716": {"x": 805.44, "y": 1440.41}, "53437718": {"x": 892.56, "y": 1519.31}, "53437720": {"x": 950.06, "y": 1573.7}, "53438623": {"x": -647.04, "y": -2199.36}, "53438624": {"x": -653.7, "y": -2294.68}, "53438915": {"x": -2800.75, "y": 41.17}, "53441253": {"x": -747.15, "y": 241.66}, "53441256": {"x": -896.45, "y": 106.26}, "53441258": {"x": -994.03, "y": 18.28}, "53441265": {"x": -1130.2, "y": 7.19}, "53444038": {"x": -231.37, "y": -305.98}, "53444048": {"x": -245.67, "y": -604.97}, "53444545": {"x": -1389.02, "y": -2042.07}, "53444600": {"x": -2269.99, "y": -975.03}, "53444613": {"x": -2436.63, "y": -1102.7}, "53444622": {"x": -2578.84, "y": -1223.17}, "53444627": {"x": -2685.57, "y": -1314.39}, "53444632": {"x": -2784.89, "y": -1398.7}, "53444642": {"x": -2884.02, "y": -1482.91}, "53444645": {"x": -2981.6, "y": -1567.3}, "53445464": {"x": 969.31, "y": 361.18}, "53445467": {"x": 1038.69, "y": 284.86}, "53447046": {"x": 2538.45, "y": 2283.54}, "53447075": {"x": -22.69, "y": -2070.88}, "53447076": {"x": -28.2, "y": -2227.55}, "53447618": {"x": -1686.79, "y": -1973.96}, "53447620": {"x": -1770.22, "y": -2019.82}, "53453124": {"x": 1038.22, "y": 1182.83}, "53453137": {"x": 971.3, "y": 1256.68}, "53453147": {"x": 904.36, "y": 1332.69}, "53453152": {"x": 836.17, "y": 1406.13}, "53453164": {"x": 781.03, "y": 1467.33}, "53453173": {"x": 640.26, "y": 1616.59}, "53454630": {"x": -2640.7, "y": -1148.95}, "53454656": {"x": -2558.65, "y": -1334.23}, "53454658": {"x": -2559.09, "y": -1358.71}, "53455651": {"x": 192.92, "y": 967.06}, "53455653": {"x": 237.95, "y": 1007.79}, "53455657": {"x": 316.62, "y": 1078.94}, "53456047": {"x": -2298.61, "y": -227.44}, "53456049": {"x": -2299.57, "y": -268.95}, "53456081": {"x": 354.09, "y": -130.97}, "53461150": {"x": 306.65, "y": 789.98}, "53461154": {"x": 239.03, "y": 864.11}, "53461430": {"x": 2205.52, "y": 1339.92}, "53461432": {"x": 2384.47, "y": 1461.37}, "53461443": {"x": 2520.61, "y": 1517.45}, "53461447": {"x": 730.51, "y": 113.06}, "53461450": {"x": 885.7, "y": 153.52}, "53461456": {"x": 911.52, "y": 169.01}, "53461463": {"x": 1187.9, "y": 420.81}, "53461467": {"x": 1335.0, "y": 555.73}, "53461474": {"x": 1484.71, "y": 690.68}, "53461478": {"x": 1634.02, "y": 825.4}, "53461491": {"x": 1783.8, "y": 961.1}, "53461499": {"x": 1931.82, "y": 1096.87}, "53461500": {"x": 1982.5, "y": 1140.86}, "53461503": {"x": 2020.45, "y": 1175.8}, "53461749": {"x": -2010.6, "y": -238.86}, "53461758": {"x": -2249.34, "y": -229.03}, "53461764": {"x": -2368.48, "y": -219.21}, "53461796": {"x": -2479.05, "y": -226.28}, "53461816": {"x": -3049.58, "y": -232.97}, "53461818": {"x": -3113.32, "y": -242.85}, "53461820": {"x": -3178.55, "y": -252.94}, "53462362": {"x": -2664.76, "y": -911.6}, "53462374": {"x": -2878.44, "y": -1095.8}, "53462383": {"x": -2972.52, "y": -1177.01}, "53462390": {"x": -3071.18, "y": -1260.56}, "53462393": {"x": -3089.75, "y": -1276.01}, "53462402": {"x": -3170.93, "y": -1344.26}, "53463508": {"x": -782.89, "y": -2424.66}, "53463513": {"x": -792.73, "y": -2545.57}, "53463519": {"x": -842.23, "y": -2657.98}, "53463523": {"x": -895.27, "y": -2771.49}, "53463532": {"x": -1001.27, "y": -2884.18}, "53463567": {"x": -747.87, "y": -2426.38}, "53465696": {"x": -5.78, "y": -2247.52}, "53467195": {"x": 2710.73, "y": 2665.14}, "53467197": {"x": 2687.72, "y": 2736.47}, "53467413": {"x": -1024.15, "y": 112.1}, "53467500": {"x": -381.38, "y": -461.89}, "53467506": {"x": -315.09, "y": -534.12}, "53470168": {"x": -1065.56, "y": -2086.21}, "53470169": {"x": -1069.73, "y": -2184.33}, "53470170": {"x": -1074.59, "y": -2298.69}, "53470173": {"x": -1079.48, "y": -2413.81}, "53472268": {"x": -1996.01, "y": -753.86}, "53472269": {"x": -2068.7, "y": -750.09}, "53472270": {"x": -2130.25, "y": -746.89}, "53472460": {"x": -612.22, "y": 93.01}, "53472467": {"x": -760.87, "y": -41.41}, "53472474": {"x": -911.53, "y": -177.67}, "53473010": {"x": -1375.16, "y": -2390.42}, "53473027": {"x": -1422.31, "y": -2887.72}, "53473264": {"x": -2304.76, "y": -848.97}, "53473273": {"x": -2499.02, "y": -1028.02}, "53473289": {"x": -2749.66, "y": -1238.71}, "53473302": {"x": -2847.46, "y": -1322.25}, "53473312": {"x": -2947.51, "y": -1407.65}, "53473321": {"x": -3045.66, "y": -1491.48}, "53475092": {"x": 2850.99, "y": 2329.1}, "53475094": {"x": 2846.01, "y": 2237.32}, "53475096": {"x": 2835.8, "y": 2046.82}, "53475099": {"x": 2832.18, "y": 1979.64}, "53475305": {"x": -3126.4, "y": -160.42}, "53475312": {"x": -3100.07, "y": -328.26}, "53475324": {"x": -3143.07, "y": -400.71}, "53478277": {"x": -2122.77, "y": -1731.3}, "53479821": {"x": -680.03, "y": 167.47}, "53480554": {"x": 2268.93, "y": 1849.73}, "53481435": {"x": -2940.3, "y": -398.79}, "53481441": {"x": -2955.12, "y": -305.54}, "53481638": {"x": -1101.86, "y": -2996.82}, "53481665": {"x": -1638.46, "y": -2903.77}, "53482952": {"x": -530.88, "y": -597.44}, "53482954": {"x": -464.63, "y": -671.1}, "53482965": {"x": -396.17, "y": -742.63}, "53483330": {"x": -1867.46, "y": -940.23}, "53483354": {"x": -2268.5, "y": -928.82}, "53483529": {"x": 239.4, "y": -159.54}, "53483907": {"x": -2266.82, "y": -850.58}, "53483912": {"x": -2270.36, "y": -1003.41}, "53483915": {"x": -2271.95, "y": -1063.2}, "53485100": {"x": -2735.15, "y": -301.54}, "53485102": {"x": -2844.86, "y": -296.97}, "53486800": {"x": -2291.15, "y": -32.96}, "53486805": {"x": -2337.55, "y": -31.01}, "53486808": {"x": -2360.01, "y": -30.07}, "53486814": {"x": -2548.17, "y": -22.19}, "53486858": {"x": -2901.62, "y": 27.83}, "53486863": {"x": -3051.58, "y": 35.62}, "53487523": {"x": 2757.14, "y": 1771.51}, "53487528": {"x": 2775.23, "y": 1687.31}, "53487531": {"x": 2793.02, "y": 1604.43}, "53487538": {"x": 2808.71, "y": 1531.39}, "53488193": {"x": -1716.91, "y": -320.27}, "53488195": {"x": -1852.21, "y": -314.14}, "53489932": {"x": -3057.82, "y": -186.74}, "53489934": {"x": -3062.39, "y": -153.12}, "53489947": {"x": -2997.99, "y": -177.39}, "53490476": {"x": 2274.69, "y": 1738.19}, "53490480": {"x": 2367.9, "y": 1764.04}, "53490485": {"x": 2466.18, "y": 1789.73}, "53490487": {"x": 2479.7, "y": 1793.04}, "53490491": {"x": 2549.28, "y": 1813.01}, "53490496": {"x": 2652.05, "y": 1835.8}, "53493114": {"x": -307.52, "y": -392.82}, "53493128": {"x": -679.7, "y": -731.45}, "53493129": {"x": -830.25, "y": -867.46}, "53493140": {"x": -1001.78, "y": -1025.29}, "53494572": {"x": 2000.57, "y": 1021.36}, "53494580": {"x": 2068.29, "y": 946.99}, "53494585": {"x": 2135.29, "y": 872.86}, "53496307": {"x": 2526.93, "y": 1623.65}, "53496315": {"x": 2693.99, "y": 1666.98}, "53498225": {"x": 1982.62, "y": 2196.6}, "53498229": {"x": 1913.14, "y": 2268.21}, "53498398": {"x": 2573.5, "y": 2250.96}, "53498412": {"x": 2565.19, "y": 2098.07}, "53498415": {"x": 2563.11, "y": 2060.77}, "53498417": {"x": 2554.82, "y": 1912.31}, "53498437": {"x": 2529.85, "y": 1715.82}, "53498440": {"x": 2529.32, "y": 1669.16}, "53498447": {"x": 2516.01, "y": 1434.68}, "53499266": {"x": 1496.77, "y": 2720.39}, "53499287": {"x": -1123.52, "y": 155.76}, "53499299": {"x": -1197.79, "y": -708.18}, "53503712": {"x": 2217.16, "y": 1765.53}, "53503834": {"x": -1999.73, "y": -1071.03}, "53503843": {"x": -2004.51, "y": -1252.19}, "53503849": {"x": -2007.64, "y": -1373.72}, "53503855": {"x": -2008.5, "y": -1429.37}, "53503864": {"x": -1998.43, "y": -863.9}, "53504312": {"x": -2659.19, "y": -559.08}, "53504327": {"x": -2742.82, "y": -555.62}, "53504329": {"x": -2888.08, "y": -550.0}, "53508174": {"x": -917.63, "y": -771.08}, "53508176": {"x": -1005.72, "y": -673.79}, "53509875": {"x": -1794.2, "y": -689.28}, "53509878": {"x": -1860.95, "y": -686.43}, "53509962": {"x": -1860.57, "y": -661.91}, "53510000": {"x": -2263.26, "y": -641.64}, "53510799": {"x": 1145.91, "y": 2439.54}, "53510828": {"x": 1296.51, "y": 2699.14}, "53511571": {"x": -1529.74, "y": -1505.17}, "53511582": {"x": -1751.71, "y": -1499.93}, "53511589": {"x": -1881.91, "y": -1497.77}, "53511593": {"x": -2117.41, "y": -1491.44}, "53511598": {"x": -2138.21, "y": -1490.73}, "53511603": {"x": -2223.39, "y": -1488.9}, "53511694": {"x": -1011.27, "y": -3097.41}, "53511712": {"x": -1054.77, "y": -2765.17}, "53511723": {"x": -1142.53, "y": -2651.69}, "53514806": {"x": -2891.49, "y": -640.88}, "53514812": {"x": -2886.26, "y": -478.36}, "53514818": {"x": -2885.69, "y": -384.9}, "53515071": {"x": 1351.07, "y": 840.15}, "53515077": {"x": 1500.44, "y": 974.53}, "53515080": {"x": 1554.67, "y": 1025.8}, "53515081": {"x": 1647.61, "y": 1109.44}, "53515084": {"x": -1.84, "y": -383.81}, "53515093": {"x": 376.58, "y": -37.94}, "53516186": {"x": -2654.93, "y": -414.0}, "53521155": {"x": -3065.97, "y": -909.83}, "53521446": {"x": -956.16, "y": 172.57}, "53521450": {"x": -993.44, "y": 139.42}, "53522245": {"x": 2434.65, "y": 1917.1}, "53523650": {"x": -2251.01, "y": -359.49}, "53525132": {"x": -51.74, "y": 16.15}, "53529499": {"x": 2427.37, "y": 1921.97}, "53529508": {"x": 2543.06, "y": 2111.35}, "53529532": {"x": 2580.03, "y": 2634.01}, "53529537": {"x": 2511.16, "y": 2706.03}, "53529540": {"x": 2440.43, "y": 2778.97}, "53529686": {"x": -1754.14, "y": -1621.95}, "53529689": {"x": -1884.17, "y": -1619.2}, "53529692": {"x": -2119.86, "y": -1610.29}, "53534017": {"x": -2563.2, "y": -954.85}, "53536993": {"x": 1188.17, "y": 1319.59}, "53536994": {"x": 1147.99, "y": 1362.56}, "53536997": {"x": 1095.49, "y": 1419.95}, "53536998": {"x": 1052.84, "y": 1467.96}, "53537015": {"x": 746.16, "y": 1753.57}, "53537030": {"x": 2153.37, "y": 1417.74}, "53537035": {"x": 2270.9, "y": 1498.57}, "53537040": {"x": 2328.64, "y": 1538.41}, "53538723": {"x": 1763.76, "y": 1846.69}, "53538727": {"x": 1908.14, "y": 1985.71}, "53538730": {"x": 1953.56, "y": 2029.44}, "53538734": {"x": 2052.88, "y": 2124.44}, "53538736": {"x": -214.03, "y": 60.96}, "53538741": {"x": -138.07, "y": 111.55}, "53538743": {"x": 8.99, "y": 248.4}, "53538776": {"x": 1335.34, "y": 1453.59}, "53538791": {"x": 2450.28, "y": 2510.09}, "53538820": {"x": -214.97, "y": 26.59}, "53539161": {"x": -68.04, "y": -310.94}, "53539171": {"x": 92.78, "y": -155.26}, "53539549": {"x": 1883.68, "y": 1490.9}, "53539556": {"x": 1959.67, "y": 1344.99}, "53540659": {"x": -163.9, "y": -398.38}, "53540665": {"x": -98.0, "y": -472.02}, "53540837": {"x": 2687.81, "y": 1869.77}, "53540839": {"x": 2735.98, "y": 1907.34}, "53541408": {"x": -66.57, "y": 451.36}, "53543498": {"x": -399.45, "y": -2307.91}, "53544863": {"x": -351.33, "y": -2212.18}, "53544865": {"x": -359.15, "y": -2406.87}, "53545466": {"x": -1733.1, "y": -755.89}, "53545473": {"x": -1862.01, "y": -750.03}, "53545894": {"x": -2071.01, "y": -860.54}, "53549773": {"x": -2980.67, "y": -527.99}, "53549801": {"x": -3067.96, "y": -468.16}, "53549949": {"x": -3086.87, "y": -1034.32}, "53549957": {"x": -3207.21, "y": -1136.49}, "53551340": {"x": -298.51, "y": -2134.62}, "53551342": {"x": -301.6, "y": -2214.33}, "53552967": {"x": -394.47, "y": -2210.31}, "53552968": {"x": -403.27, "y": -2404.84}, "53555070": {"x": 1065.83, "y": 2502.49}, "53556263": {"x": -3082.15, "y": -3050.03}, "53556383": {"x": -2447.26, "y": -842.82}, "53556400": {"x": -2910.31, "y": -1249.96}, "53556402": {"x": -3010.37, "y": -1333.39}, "53556407": {"x": -3108.81, "y": -1416.77}, "53558103": {"x": 1426.01, "y": 364.79}, "53558110": {"x": 1709.56, "y": 621.43}, "53558116": {"x": 1770.27, "y": 677.07}, "53558125": {"x": 1918.29, "y": 811.24}, "53558139": {"x": 2161.17, "y": 1031.29}, "53558145": {"x": 2324.41, "y": 1181.98}, "53558147": {"x": 2327.62, "y": 1185.89}, "53558151": {"x": 2421.43, "y": 1306.51}, "53558152": {"x": 2472.04, "y": 1371.45}, "53558155": {"x": 1305.34, "y": 289.45}, "53558157": {"x": 1310.62, "y": 283.85}, "53558159": {"x": 1353.17, "y": 324.21}, "53560253": {"x": -1607.45, "y": -1381.89}, "53560766": {"x": 1430.72, "y": 1349.83}, "53560776": {"x": 1554.2, "y": 1214.09}, "53560780": {"x": 1608.47, "y": 1154.21}, "53560789": {"x": 1851.17, "y": 887.12}, "53560795": {"x": 1986.52, "y": 739.17}, "53560796": {"x": 2012.27, "y": 710.49}, "53562507": {"x": -517.9, "y": -2400.02}, "53562563": {"x": 2047.06, "y": 2679.71}, "53568332": {"x": 2614.84, "y": 1438.24}, "53568810": {"x": 1101.85, "y": 2375.35}, "53570522": {"x": 1996.55, "y": 1985.09}, "53570527": {"x": 2096.72, "y": 2079.86}, "53571775": {"x": 1702.69, "y": 751.47}, "53571781": {"x": 1821.77, "y": 619.6}, "53572019": {"x": 2346.35, "y": 1972.04}, "53572020": {"x": 2388.57, "y": 1947.07}, "53572027": {"x": 2644.96, "y": 1905.53}, "53572824": {"x": -3127.51, "y": -631.02}, "53572846": {"x": -3123.87, "y": -514.75}, "53573840": {"x": 139.95, "y": -2276.22}, "53573861": {"x": -162.46, "y": -2219.92}, "53575900": {"x": -2225.36, "y": -1571.87}, "53575901": {"x": -2226.75, "y": -1632.5}, "53576821": {"x": -1865.57, "y": -870.04}, "53576823": {"x": -1870.61, "y": -1073.76}, "53576826": {"x": -1872.53, "y": -1134.82}, "53576829": {"x": -1875.3, "y": -1255.67}, "53576831": {"x": -1878.26, "y": -1377.19}, "53578330": {"x": 502.77, "y": 1177.57}, "53578339": {"x": 569.63, "y": 1393.88}, "53578351": {"x": 928.19, "y": 1959.92}, "53578355": {"x": 995.43, "y": 2036.82}, "53578357": {"x": 1016.38, "y": 2059.89}, "53578366": {"x": 1139.36, "y": 2288.34}, "53578383": {"x": 1351.29, "y": 2695.15}, "53578394": {"x": 1392.16, "y": 2769.83}, "53578514": {"x": -611.74, "y": -805.49}, "53578519": {"x": -761.66, "y": -942.28}, "53578682": {"x": -2745.02, "y": -647.33}, "53578687": {"x": -3094.59, "y": -632.48}, "53580606": {"x": -2535.89, "y": 234.11}, "53580611": {"x": -2526.85, "y": 272.8}, "53580632": {"x": 638.01, "y": 1420.74}, "53582203": {"x": -1323.42, "y": -529.84}, "53582205": {"x": -1315.42, "y": -403.15}, "53582923": {"x": -2747.79, "y": -738.58}, "53589708": {"x": -2363.61, "y": -124.29}, "53589713": {"x": -2341.74, "y": -125.08}, "53589715": {"x": -2339.25, "y": -69.97}, "53589716": {"x": -2345.3, "y": -222.65}, "53589760": {"x": 2420.31, "y": 1411.91}, "53589769": {"x": 2231.68, "y": 1558.25}, "53589794": {"x": 2162.01, "y": 1675.79}, "53589799": {"x": 2227.18, "y": 1582.49}, "53589977": {"x": -3250.74, "y": -2926.98}, "53590668": {"x": -904.29, "y": -3102.65}, "53590699": {"x": -2420.18, "y": -1119.55}, "53590707": {"x": -2425.87, "y": -1240.98}, "53590715": {"x": -2429.84, "y": -1405.75}, "53591793": {"x": -558.47, "y": -265.86}, "53591794": {"x": -627.23, "y": -193.98}, "53591804": {"x": -983.91, "y": 203.4}, "53596324": {"x": 2610.22, "y": 1520.62}, "53596328": {"x": 2708.58, "y": 1524.86}, "53596618": {"x": 1662.33, "y": 495.27}, "53596818": {"x": -2251.76, "y": -292.26}, "53599217": {"x": 2789.57, "y": 2692.04}, "53601429": {"x": 2504.48, "y": 2136.41}, "53602671": {"x": -2132.6, "y": -857.7}, "53604256": {"x": -447.05, "y": -166.48}, "53604257": {"x": -482.83, "y": -197.6}, "53604259": {"x": -708.33, "y": -401.54}, "53604263": {"x": -856.48, "y": -537.93}, "53604267": {"x": -1053.75, "y": -717.65}, "53604822": {"x": 2462.92, "y": 2161.79}, "53604832": {"x": 2652.97, "y": 2057.39}, "53607068": {"x": -1990.15, "y": -496.07}, "53607075": {"x": -1986.96, "y": -369.87}, "53608986": {"x": -843.06, "y": -253.11}, "53610868": {"x": -3029.4, "y": -1105.42}, "53610896": {"x": -3188.18, "y": -904.28}, "53610898": {"x": -3170.46, "y": -927.05}, "53611257": {"x": 2666.26, "y": 2290.61}, "53611260": {"x": 2662.6, "y": 2245.99}, "53611268": {"x": 2676.22, "y": 1750.83}, "53611281": {"x": 2712.64, "y": 1443.06}, "53612039": {"x": -1622.97, "y": -2271.34}, "53612042": {"x": -1711.08, "y": -2302.72}, "53615252": {"x": -395.58, "y": -295.99}, "53615260": {"x": -767.5, "y": -634.98}, "53616146": {"x": 386.48, "y": 102.93}, "53616166": {"x": -1736.11, "y": -876.25}, "53616173": {"x": -1731.02, "y": -691.98}, "53616175": {"x": -1726.74, "y": -607.82}, "53616182": {"x": -1726.56, "y": -509.05}, "53616188": {"x": -1720.63, "y": -383.66}, "53616189": {"x": -1713.32, "y": -252.05}, "53620227": {"x": -209.83, "y": -2137.72}, "53621162": {"x": -2587.08, "y": -1357.89}, "53621164": {"x": -2623.28, "y": -1387.9}, "53621168": {"x": -2722.5, "y": -1472.52}, "53621256": {"x": -1748.09, "y": -1379.25}, "53621269": {"x": -2135.99, "y": -1370.55}, "53621277": {"x": -2376.16, "y": -1363.84}, "53621652": {"x": 1803.53, "y": 601.31}, "53624470": {"x": -181.61, "y": -3106.24}, "53625770": {"x": -3149.19, "y": -1204.95}, "53626974": {"x": 2258.87, "y": 2463.51}, "53626978": {"x": 2186.98, "y": 2534.65}, "53626983": {"x": 2022.51, "y": 2703.86}, "53628825": {"x": 2268.62, "y": 1272.24}, "53628954": {"x": -1734.6, "y": -813.49}, "53628956": {"x": -1864.02, "y": -806.8}, "53629591": {"x": -890.78, "y": -1317.29}, "53631422": {"x": 308.0, "y": 927.65}, "53636372": {"x": 2028.28, "y": 1456.61}, "53636377": {"x": 2400.54, "y": 2059.99}, "53637455": {"x": -485.88, "y": 343.58}, "53639872": {"x": -1486.74, "y": -2130.19}, "53639885": {"x": -1604.77, "y": -2847.45}, "53640713": {"x": 1906.54, "y": 2262.53}, "53640720": {"x": 1796.16, "y": 2167.07}, "53640725": {"x": 1776.35, "y": 2119.62}, "53640736": {"x": 1634.5, "y": 1974.19}, "53640824": {"x": 605.92, "y": 1060.6}, "53640831": {"x": 157.79, "y": 654.91}, "53640838": {"x": -350.69, "y": 194.3}, "53640863": {"x": 1804.19, "y": 2236.6}, "53642012": {"x": -969.1, "y": -102.17}, "53642768": {"x": -481.45, "y": -1969.59}, "53642775": {"x": -492.0, "y": -2206.08}, "53642782": {"x": -525.71, "y": -2399.69}, "53643765": {"x": -2128.56, "y": -1067.35}, "53643768": {"x": -2129.3, "y": -1128.67}, "53643772": {"x": -2132.55, "y": -1249.08}, "53644201": {"x": 184.84, "y": -2268.27}, "53644706": {"x": 1754.48, "y": 2139.75}, "53645079": {"x": 1207.54, "y": 302.0}, "53645778": {"x": -3002.12, "y": -424.12}, "53646359": {"x": -1024.15, "y": 174.24}, "53646449": {"x": -1790.6, "y": -614.49}, "53647040": {"x": -2174.15, "y": -1633.94}, "53649099": {"x": 2065.89, "y": 1445.56}, "53649103": {"x": 2157.53, "y": 1506.88}, "53649105": {"x": 2317.1, "y": 1617.41}, "53652463": {"x": -1849.72, "y": -245.5}, "53655118": {"x": -283.35, "y": 120.16}, "53655130": {"x": -560.14, "y": 425.94}, "53659829": {"x": -3192.28, "y": -162.4}, "53663953": {"x": -694.31, "y": -1017.59}, "53663960": {"x": -786.26, "y": -1107.46}, "53663978": {"x": -577.36, "y": -844.77}, "53667246": {"x": 962.89, "y": 161.95}, "53667261": {"x": 1253.49, "y": 344.42}, "53667521": {"x": 226.24, "y": 579.84}, "53668846": {"x": 1122.38, "y": 1395.27}, "53668858": {"x": 1268.23, "y": 1528.32}, "53668862": {"x": 1416.18, "y": 1664.56}, "53668890": {"x": 2379.56, "y": 2581.42}, "53668892": {"x": 2438.99, "y": 2640.37}, "53668897": {"x": 1691.01, "y": 1911.5}, "53668900": {"x": 1839.46, "y": 2056.0}, "53668988": {"x": -1857.69, "y": -502.16}, "53668996": {"x": -1853.45, "y": -376.96}, "53670180": {"x": 1760.76, "y": 565.91}, "53672055": {"x": 1273.0, "y": 2177.63}, "53672772": {"x": -3140.88, "y": -906.6}, "53672943": {"x": 696.0, "y": 1693.11}, "53672961": {"x": 283.12, "y": 1116.06}, "53676376": {"x": -1743.31, "y": -1137.41}, "53677752": {"x": -2911.11, "y": -17.11}, "53679791": {"x": -554.26, "y": -1959.62}, "53679815": {"x": -1676.28, "y": -2396.94}, "53679819": {"x": -1655.38, "y": -2498.26}, "53680486": {"x": -2890.32, "y": -2851.29}, "53680499": {"x": -3020.39, "y": -2985.79}, "53680515": {"x": -1954.54, "y": -1072.14}, "53684762": {"x": -2750.77, "y": -831.04}, "53684770": {"x": -2738.47, "y": -411.69}, "53692030": {"x": -2276.94, "y": -1245.39}, "53692040": {"x": -2556.51, "y": -1237.89}, "53695962": {"x": -2175.58, "y": -1572.85}, "53699396": {"x": -775.43, "y": -328.74}, "53700390": {"x": -3095.36, "y": -2915.35}, "53700870": {"x": -543.05, "y": -884.55}, "53700872": {"x": -491.73, "y": -937.9}, "53703066": {"x": -2294.49, "y": -98.22}, "53709531": {"x": -2001.65, "y": -1132.03}, "53709543": {"x": -2274.3, "y": -1124.7}, "53711224": {"x": 1317.65, "y": 276.4}, "53713371": {"x": 1449.1, "y": 1646.1}, "53713378": {"x": 1373.33, "y": 1695.4}, "53714922": {"x": 2092.89, "y": 2584.03}, "53714925": {"x": 2116.96, "y": 2607.38}, "53719166": {"x": 1856.57, "y": 1743.69}, "53720172": {"x": -544.44, "y": 18.59}, "53723920": {"x": 1946.93, "y": 1538.69}, "53725877": {"x": -2436.62, "y": 233.64}, "53727021": {"x": 2310.92, "y": 2653.46}, "53727030": {"x": 2240.99, "y": 2727.41}, "53727087": {"x": 258.35, "y": -3090.89}, "258725731": {"x": -2779.84, "y": -1911.14}, "270405510": {"x": -1896.29, "y": -2025.43}, "316165989": {"x": 146.89, "y": -2293.91}, "316292003": {"x": -268.29, "y": 403.54}, "316292008": {"x": 89.46, "y": 729.32}, "316302550": {"x": 376.04, "y": 713.9}, "316302556": {"x": 524.02, "y": 850.63}, "316302558": {"x": 591.57, "y": 776.48}, "316303180": {"x": 673.19, "y": 686.92}, "316305090": {"x": 1472.87, "y": 407.14}, "316305093": {"x": 1621.0, "y": 543.23}, "316305099": {"x": 1403.59, "y": 479.89}, "316306590": {"x": 1405.36, "y": 2793.76}, "316334513": {"x": 224.66, "y": 278.41}, "316334514": {"x": 257.88, "y": 286.19}, "316342869": {"x": 2188.95, "y": 1720.25}, "316349604": {"x": 236.8, "y": 266.25}, "316357138": {"x": -1606.89, "y": -1371.39}, "316357429": {"x": -1576.3, "y": -1375.83}, "316357431": {"x": -1138.66, "y": -976.94}, "316562664": {"x": -280.44, "y": -2536.91}, "316562665": {"x": -415.65, "y": -2483.71}, "316562667": {"x": -527.73, "y": -2451.27}, "349368476": {"x": 2057.44, "y": 2409.02}, "349378518": {"x": 890.13, "y": 1048.3}, "362566885": {"x": -321.24, "y": -882.29}, "362597488": {"x": -1486.96, "y": -1293.61}, "366215894": {"x": 536.1, "y": 537.01}, "366215899": {"x": 683.41, "y": 675.68}, "366215907": {"x": 833.08, "y": 810.72}, "366215913": {"x": 982.26, "y": 946.75}, "366215925": {"x": 1280.82, "y": 1215.64}, "366220625": {"x": 131.1, "y": -332.7}, "366229504": {"x": -109.12, "y": -2221.99}, "366229507": {"x": -87.74, "y": -2222.62}, "387001668": {"x": -389.28, "y": -140.41}, "387096443": {"x": -388.34, "y": -121.11}, "387186790": {"x": -1125.76, "y": -966.2}, "387186883": {"x": -365.62, "y": -996.54}, "387186935": {"x": -413.1, "y": -975.72}, "387187387": {"x": -611.61, "y": -1108.51}, "387187392": {"x": -833.1, "y": -1261.19}, "445963180": {"x": -1556.72, "y": 72.17}, "446196405": {"x": 1803.49, "y": 2369.31}, "446196406": {"x": 1817.46, "y": 2362.63}, "446198895": {"x": 1621.62, "y": 1987.47}, "447178131": {"x": 2605.13, "y": 2338.51}, "447178140": {"x": 2653.85, "y": 2337.22}, "449907112": {"x": 374.19, "y": 417.58}, "449917758": {"x": 800.82, "y": 782.71}, "449920083": {"x": 856.14, "y": 851.04}, "449934218": {"x": 1522.76, "y": 1534.76}, "449952494": {"x": 2052.13, "y": 1926.54}, "449952498": {"x": 2296.65, "y": 2163.31}, "449956571": {"x": 2478.7, "y": 2341.25}, "449957352": {"x": 2549.62, "y": 2408.43}, "449959902": {"x": 2403.76, "y": 2270.15}, "449967724": {"x": 2751.7, "y": 2629.98}, "450505541": {"x": -2610.57, "y": 280.59}, "450714559": {"x": -1178.03, "y": -277.6}, "450714993": {"x": -1566.88, "y": -259.08}, "450716051": {"x": -1558.07, "y": 28.77}, "452816427": {"x": 216.8, "y": -2768.14}, "452816429": {"x": 198.76, "y": -2771.22}, "452817475": {"x": -1140.68, "y": -960.17}, "452866506": {"x": -2573.91, "y": -197.66}, "456681760": {"x": 1510.73, "y": 1889.4}, "456681765": {"x": 1508.17, "y": 1867.32}, "469603287": {"x": -1565.69, "y": -154.49}, "469603304": {"x": -1893.52, "y": -152.0}, "482811372": {"x": -2188.71, "y": -564.94}, "496686159": {"x": 1485.9, "y": 2471.6}, "496686170": {"x": 1487.75, "y": 2332.11}, "496686196": {"x": 1223.01, "y": 2449.92}, "496686202": {"x": 1194.25, "y": 2394.94}, "845773140": {"x": 150.91, "y": 212.36}, "845773190": {"x": 90.47, "y": 158.67}, "845773212": {"x": 28.78, "y": 76.81}, "845773213": {"x": 104.07, "y": 144.42}, "845773215": {"x": 162.28, "y": 199.23}, "847061279": {"x": -179.79, "y": -3033.6}, "917593109": {"x": -474.45, "y": -360.47}, "917593526": {"x": -618.78, "y": -499.57}, "917880340": {"x": -1038.07, "y": -1057.94}, "1142902939": {"x": 2520.51, "y": 1758.31}, "1142903012": {"x": 1983.26, "y": 1388.13}, "1142903104": {"x": 1526.47, "y": 1882.99}, "1142903570": {"x": 1528.46, "y": 1905.21}, "1142903857": {"x": 616.35, "y": 448.53}, "1142903904": {"x": 1989.78, "y": 1382.86}, "1142904042": {"x": 1852.96, "y": 1297.36}, "1142904218": {"x": 535.72, "y": 241.33}, "1153239288": {"x": -1873.7, "y": -2075.39}, "1157073442": {"x": -251.92, "y": -738.71}, "1160692039": {"x": -385.51, "y": 26.53}, "1160692043": {"x": -476.32, "y": -56.21}, "1178694147": {"x": -2428.47, "y": -1319.08}, "1179459672": {"x": -1603.08, "y": -761.37}, "1179459686": {"x": -1589.57, "y": -389.88}, "1179459693": {"x": -1575.51, "y": -390.3}, "1179459694": {"x": -1601.53, "y": -1261.49}, "1179459701": {"x": -1599.98, "y": -515.28}, "1179459703": {"x": -1616.83, "y": -760.69}, "1179459707": {"x": -1613.96, "y": -696.96}, "1179459709": {"x": -1619.04, "y": -818.76}, "1179459724": {"x": -1586.24, "y": -516.55}, "1179459735": {"x": -1550.44, "y": -1030.67}, "1179459737": {"x": -1616.3, "y": -1261.22}, "1179459754": {"x": -1599.56, "y": -697.58}, "1179459768": {"x": -1616.03, "y": -1098.73}, "1179459773": {"x": -1621.93, "y": -881.43}, "1179795897": {"x": -1552.44, "y": -1381.34}, "1179795931": {"x": -1611.39, "y": -1625.34}, "1179795960": {"x": -1614.41, "y": -1745.48}, "1179795984": {"x": -1620.08, "y": -1381.54}, "1179796012": {"x": -1568.92, "y": -1345.35}, "1179796036": {"x": -1576.5, "y": -1913.92}, "1179796039": {"x": -1607.73, "y": -1413.43}, "1179796054": {"x": -1605.03, "y": -1325.83}, "1179796056": {"x": -1626.61, "y": -1625.14}, "1179796074": {"x": -1474.66, "y": -2094.62}, "1179796096": {"x": -1623.84, "y": -1503.15}, "1179796106": {"x": -1608.9, "y": -1503.3}, "1179956582": {"x": -1467.65, "y": -796.65}, "1179956625": {"x": -1203.39, "y": -947.22}, "1179967125": {"x": -933.23, "y": -1103.58}, "1180005819": {"x": -2668.24, "y": -834.66}, "1180005830": {"x": -2968.0, "y": -220.34}, "1180005831": {"x": -2128.17, "y": -648.45}, "1180005834": {"x": -2124.74, "y": -489.42}, "1180005838": {"x": -2258.98, "y": -482.24}, "1180079551": {"x": -1473.89, "y": -1259.4}, "1180102573": {"x": -1175.72, "y": -989.63}, "1180120602": {"x": -1097.76, "y": -940.61}, "1180120617": {"x": -1093.1, "y": -981.12}, "1180120831": {"x": -1088.48, "y": -913.41}, "1180187456": {"x": -1282.34, "y": -2405.25}, "1180187478": {"x": -1101.36, "y": -2947.26}, "1180187483": {"x": -1417.71, "y": -2166.34}, "1180187485": {"x": -1490.22, "y": -2114.39}, "1180187507": {"x": -1348.65, "y": -2288.28}, "1180187532": {"x": -1115.37, "y": -2945.47}, "1180187547": {"x": -1215.22, "y": -2524.69}, "1180187568": {"x": -1432.82, "y": -2174.53}, "1180187578": {"x": -1169.05, "y": -2661.87}, "1180187579": {"x": -1491.14, "y": -2070.06}, "1180187588": {"x": -1365.19, "y": -2296.4}, "1180187595": {"x": -1298.63, "y": -2410.41}, "1180187596": {"x": -1153.81, "y": -2657.67}, "1180187620": {"x": -993.81, "y": -2960.76}, "1180187658": {"x": -1319.34, "y": -2342.23}, "1180187677": {"x": -1333.79, "y": -2350.42}, "1180187697": {"x": -1116.8, "y": -2996.13}, "1180187704": {"x": -1464.01, "y": -2084.68}, "1180876933": {"x": -374.98, "y": 36.63}, "1181085486": {"x": -964.03, "y": 45.34}, "1181184017": {"x": -1077.25, "y": 100.76}, "1181324562": {"x": -1058.1, "y": 149.8}, "1181378741": {"x": -955.74, "y": -217.63}, "1182091234": {"x": -1171.93, "y": -138.79}, "1182471954": {"x": -426.54, "y": -771.54}, "1182471991": {"x": -376.21, "y": -762.37}, "1185580621": {"x": -621.12, "y": -1098.49}, "1186826669": {"x": -233.23, "y": -339.97}, "1186826687": {"x": -239.64, "y": -457.04}, "1188388070": {"x": -313.93, "y": -870.08}, "1188388071": {"x": -252.4, "y": -813.67}, "1188388110": {"x": -294.13, "y": -841.69}, "1188388114": {"x": -271.7, "y": -812.69}, "1188388115": {"x": -309.42, "y": -895.5}, "1188394181": {"x": -328.07, "y": -820.93}, "1188394186": {"x": -335.05, "y": -807.05}, "1191535148": {"x": -842.2, "y": -1272.14}, "1192150160": {"x": 466.02, "y": 4.44}, "1192150246": {"x": 457.9, "y": -13.67}, "1192150256": {"x": 477.08, "y": -7.96}, "1192150405": {"x": 663.97, "y": 97.22}, "1192150406": {"x": 706.43, "y": 120.38}, "1192150409": {"x": 720.51, "y": 35.33}, "1192150413": {"x": 672.66, "y": 88.45}, "1192211510": {"x": 278.71, "y": 223.36}, "1192248462": {"x": 1146.89, "y": 658.43}, "1192282519": {"x": 2657.07, "y": 1836.94}, "1246389199": {"x": -800.12, "y": -3107.75}, "1345392073": {"x": -208.52, "y": 180.39}, "1345420597": {"x": -2258.58, "y": -418.23}, "1345424861": {"x": -2250.5, "y": -355.84}, "1345424866": {"x": -2118.94, "y": -353.63}, "1345424868": {"x": -2206.03, "y": -314.96}, "1345424871": {"x": -2115.77, "y": -234.58}, "1423974459": {"x": -322.51, "y": -31.43}, "1424945190": {"x": -246.73, "y": -627.85}, "1425249983": {"x": 317.36, "y": -91.05}, "1425249997": {"x": 384.1, "y": -46.15}, "1425250001": {"x": 324.26, "y": -98.55}, "1425304284": {"x": -189.44, "y": -672.08}, "1426438819": {"x": -2550.48, "y": -815.12}, "1426438835": {"x": -2262.29, "y": -616.09}, "1426438850": {"x": -2635.4, "y": -838.04}, "1612121520": {"x": -509.01, "y": -2205.34}, "1699123250": {"x": 823.16, "y": 1122.02}, "1699123263": {"x": 754.34, "y": 1197.78}, "1699123264": {"x": 1040.87, "y": 1479.73}, "1699123266": {"x": 386.67, "y": 1001.36}, "1699123271": {"x": 455.68, "y": 925.61}, "1699123277": {"x": 687.09, "y": 1272.6}, "1699123283": {"x": 1102.78, "y": 1531.03}, "1699123288": {"x": 674.03, "y": 985.87}, "1701854143": {"x": -515.03, "y": 180.9}, "1706427633": {"x": 2745.35, "y": 2618.54}, "1706427636": {"x": 2574.59, "y": 2384.16}, "1706427646": {"x": 2617.62, "y": 2349.74}, "1706427647": {"x": 2729.93, "y": 2627.64}, "1706427648": {"x": 2127.58, "y": 2337.4}, "1706427652": {"x": 2603.12, "y": 2338.48}, "1706427657": {"x": 2601.45, "y": 2366.03}, "1706427666": {"x": 2413.31, "y": 2303.71}, "1706427669": {"x": 2202.79, "y": 1890.38}, "1706427672": {"x": 2283.9, "y": 2176.4}, "1706427684": {"x": 2590.45, "y": 2348.74}, "1710317933": {"x": -1628.33, "y": -1745.2}, "1777291055": {"x": 1201.83, "y": 1602.6}, "1777291057": {"x": 1196.31, "y": 1608.58}, "1850006055": {"x": -3013.6, "y": 357.77}, "1850006061": {"x": -3010.34, "y": 139.03}, "1857601486": {"x": -2732.49, "y": -212.49}, "1857601633": {"x": -2260.44, "y": -352.68}, "1944740975": {"x": -2894.01, "y": -732.41}, "2298789012": {"x": -3062.12, "y": -817.76}, "2298789025": {"x": -3058.4, "y": -724.82}, "2298789030": {"x": -2900.74, "y": -824.46}, "2384881527": {"x": 2108.56, "y": 1478.79}, "2384881533": {"x": 2046.1, "y": 1554.3}, "2384881547": {"x": 1996.61, "y": 1604.0}, "2384881587": {"x": 1819.64, "y": 1737.36}, "2384881594": {"x": 1863.83, "y": 1750.33}, "2384881598": {"x": 1842.0, "y": 1756.03}, "2384881601": {"x": 1851.17, "y": 1762.83}, "2384881629": {"x": 1784.45, "y": 1806.25}, "2384881635": {"x": 1754.78, "y": 1838.94}, "2384881652": {"x": 1510.16, "y": 1879.36}, "2384881654": {"x": 1504.69, "y": 1882.58}, "2384881666": {"x": 1511.21, "y": 1921.03}, "2384881679": {"x": 1509.19, "y": 1930.47}, "2573847767": {"x": -1723.38, "y": -1907.01}, "2573847770": {"x": -1896.1, "y": -2001.38}, "2573847776": {"x": -1807.47, "y": -1951.97}, "2573847782": {"x": -1888.6, "y": -1739.78}, "2573847784": {"x": -1757.1, "y": -1742.46}, "2573847790": {"x": -1746.84, "y": -1257.69}, "2627868774": {"x": 2516.23, "y": 2239.49}, "2627868777": {"x": 2464.54, "y": 2164.37}, "2634682652": {"x": -363.77, "y": -2503.76}, "2634682653": {"x": -405.05, "y": -2487.8}, "2634682669": {"x": -527.45, "y": -2444.18}, "2634693264": {"x": -34.46, "y": -2070.35}, "2634693266": {"x": -12.51, "y": -2071.32}, "2634693274": {"x": -579.67, "y": -2202.28}, "2634693276": {"x": -513.85, "y": -2301.96}, "2634693278": {"x": -1533.1, "y": -1626.72}, "2634693299": {"x": -730.26, "y": -2107.34}, "2634708186": {"x": -723.21, "y": -2196.88}, "2635256558": {"x": -3018.67, "y": -1724.71}, "2635256569": {"x": -2919.67, "y": -1640.57}, "2635256574": {"x": -2821.08, "y": -1555.95}, "2637056004": {"x": -3081.15, "y": -1649.92}, "2637157420": {"x": -2491.41, "y": -1360.58}, "2637707069": {"x": 332.27, "y": -3087.52}, "2637710726": {"x": 191.58, "y": -3102.78}, "2637766380": {"x": 215.61, "y": -2830.57}, "2637766387": {"x": 115.47, "y": -2742.89}, "2637766399": {"x": 160.65, "y": -2649.06}, "2638675157": {"x": -1584.58, "y": -2812.28}, "2638675190": {"x": -1501.25, "y": -2504.23}, "2638675236": {"x": -1230.41, "y": -2529.65}, "2638675244": {"x": -1496.21, "y": -2377.01}, "2638675253": {"x": -1381.66, "y": -2378.12}, "2638675264": {"x": -1312.82, "y": -2502.97}, "2705148498": {"x": 461.32, "y": 1066.33}, "2705148499": {"x": 528.91, "y": 993.43}, "2705148524": {"x": 171.7, "y": 937.93}, "2705151904": {"x": 351.71, "y": 1124.65}, "2707919647": {"x": 906.35, "y": 124.15}, "2707919868": {"x": 2094.8, "y": 1107.63}, "2712062758": {"x": 1482.3, "y": 2416.96}, "2712062759": {"x": 1482.07, "y": 2398.27}, "2712062761": {"x": 1492.85, "y": 2308.71}, "2713279290": {"x": -395.79, "y": 48.97}, "2713279291": {"x": -447.52, "y": 105.69}, "2713292536": {"x": 468.6, "y": 313.24}, "2713311875": {"x": 1804.44, "y": 1450.09}, "2713311958": {"x": 634.23, "y": 650.52}, "2713311960": {"x": 442.61, "y": 640.93}, "2713311962": {"x": 293.17, "y": 506.43}, "2713353784": {"x": 1553.48, "y": 616.38}, "2713365262": {"x": 1716.85, "y": 1888.12}, "2713365265": {"x": 1076.92, "y": 2132.23}, "2713391900": {"x": 1175.96, "y": 2361.67}, "2713391937": {"x": 806.85, "y": 1822.01}, "2714912985": {"x": 2198.03, "y": 2264.85}, "2714912986": {"x": 2329.67, "y": 2391.44}, "2714977035": {"x": -828.55, "y": 32.38}, "2726180832": {"x": -2953.83, "y": -1762.69}, "2771341200": {"x": -1491.08, "y": -2273.31}, "2816310343": {"x": -2552.75, "y": -1473.24}, "2816310345": {"x": -2129.26, "y": -1007.33}, "2816310353": {"x": -2131.15, "y": -933.25}, "2848493171": {"x": -2879.5, "y": -205.98}, "2848493172": {"x": -2841.59, "y": -203.9}, "2848493173": {"x": -2732.29, "y": -206.32}, "2848493174": {"x": -2649.14, "y": -217.69}, "2856773811": {"x": 1171.89, "y": 2786.62}, "2857394107": {"x": 1395.91, "y": 2799.36}, "2858999189": {"x": -127.7, "y": 395.09}, "2859093884": {"x": 2069.5, "y": 1527.42}, "2859245506": {"x": -1048.74, "y": -543.72}, "2859245549": {"x": -65.63, "y": 180.78}, "2859245565": {"x": -1096.1, "y": -541.37}, "2859245573": {"x": -1190.92, "y": -536.6}, "2859245574": {"x": -1184.74, "y": -410.47}, "2859245582": {"x": -1308.58, "y": -271.13}, "2859245583": {"x": -1292.15, "y": 15.51}, "2859302267": {"x": -1605.99, "y": -882.2}, "2859302272": {"x": -1471.8, "y": -888.55}, "2859304393": {"x": -2259.49, "y": -562.31}, "2859304395": {"x": -2267.98, "y": -593.27}, "2859304803": {"x": -2497.58, "y": -773.83}, "2925569869": {"x": 2652.59, "y": 1833.95}, "2925570317": {"x": 1417.61, "y": 765.99}, "2938172405": {"x": -381.83, "y": -995.14}, "2938172406": {"x": -378.9, "y": -988.33}, "2948594974": {"x": 971.98, "y": 958.19}, "2948595023": {"x": 2505.7, "y": 2236.32}, "2948595043": {"x": 2590.68, "y": 2356.71}, "2948595076": {"x": 1200.99, "y": 704.13}, "2948601585": {"x": 916.76, "y": 718.93}, "2948601586": {"x": 1915.29, "y": 1273.87}, "2955373055": {"x": 2837.88, "y": 2591.95}, "2985254834": {"x": -2123.47, "y": -459.19}, "2987035532": {"x": -2575.63, "y": -836.65}, "2987035535": {"x": -2602.82, "y": -828.26}, "2988375113": {"x": -2902.03, "y": -0.74}, "2988748407": {"x": -2361.39, "y": -69.27}, "3031362525": {"x": -2534.82, "y": 267.55}, "3035654115": {"x": -2562.79, "y": -837.44}, "3088209646": {"x": -195.84, "y": 468.94}, "3088209647": {"x": -133.83, "y": 525.49}, "3088209649": {"x": -58.77, "y": 593.96}, "3088209661": {"x": 59.76, "y": 762.29}, "3157337335": {"x": -417.86, "y": 268.59}, "3208339050": {"x": 2483.37, "y": 1255.43}, "3208339051": {"x": 2076.35, "y": 1227.32}, "3208339054": {"x": 1949.26, "y": 1328.22}, "3208342164": {"x": 2214.09, "y": 1079.6}, "3208342165": {"x": 2377.57, "y": 1131.36}, "3227608153": {"x": -201.09, "y": 330.91}, "3227608154": {"x": -813.51, "y": 315.24}, "3235649725": {"x": 1120.29, "y": 494.67}, "3235650820": {"x": 1107.8, "y": 208.83}, "3241106071": {"x": -924.15, "y": -464.14}, "3241106091": {"x": -994.7, "y": -387.31}, "3264677727": {"x": 439.39, "y": 1246.18}, "3269827284": {"x": -834.91, "y": -1011.41}, "3270240364": {"x": 823.03, "y": 822.38}, "3270240367": {"x": 740.93, "y": 912.46}, "3271744858": {"x": -946.71, "y": -138.87}, "3306923767": {"x": -1601.13, "y": -1030.79}, "3306923798": {"x": -1620.88, "y": -981.68}, "3358764343": {"x": -316.71, "y": -817.83}, "3455711385": {"x": 174.55, "y": 398.68}, "3607816606": {"x": -2951.82, "y": -217.84}, "3607816648": {"x": -2648.67, "y": -207.9}, "3637918464": {"x": -3257.13, "y": -1417.94}, "3755083604": {"x": -557.58, "y": -1991.27}, "3755083605": {"x": -525.19, "y": -1993.04}, "3786903332": {"x": 1945.84, "y": 1657.2}, "3786906785": {"x": 2530.78, "y": 1680.68}, "3786906803": {"x": 2536.93, "y": 1716.14}, "3786906811": {"x": 2526.9, "y": 1762.82}, "3786906822": {"x": 2486.59, "y": 1795.19}, "3786910293": {"x": 2018.6, "y": 1586.31}, "3786910294": {"x": 2014.61, "y": 1582.09}, "3786926320": {"x": 2619.59, "y": 1360.86}, "3811323394": {"x": -2001.56, "y": -1011.07}, "3811323395": {"x": -2000.08, "y": -936.7}, "3812685575": {"x": -2766.81, "y": -1001.86}, "3812685579": {"x": -2805.18, "y": -1033.27}, "3812685605": {"x": -3194.77, "y": -1489.46}, "3812685612": {"x": -2285.02, "y": -1487.18}, "3812685620": {"x": -2432.09, "y": -1483.8}, "3812685626": {"x": -2572.8, "y": -1448.51}, "3812685629": {"x": -3131.01, "y": -1564.34}, "3859915626": {"x": 1117.22, "y": 1390.49}, "3886439879": {"x": 465.22, "y": -60.91}, "3894523242": {"x": -2815.15, "y": -204.54}, "3937040986": {"x": -71.3, "y": -2249.1}, "3937040992": {"x": -60.46, "y": -2223.9}, "3951970461": {"x": 272.61, "y": -2929.86}, "4055610627": {"x": -2817.48, "y": 324.11}, "4089413144": {"x": -1612.07, "y": -1846.9}, "4089413153": {"x": -1592.33, "y": -1850.98}, "4091376211": {"x": -441.02, "y": -997.65}, "4091376224": {"x": -401.23, "y": -1035.35}, "4095606995": {"x": -2134.0, "y": -1906.29}, "4095618185": {"x": -2301.0, "y": -1713.47}, "4095648221": {"x": -2281.31, "y": -1373.06}, "4095648223": {"x": -2287.07, "y": -1366.43}, "4095648225": {"x": -2280.94, "y": -1360.58}, "4095648227": {"x": -2274.54, "y": -1366.8}, "4095666564": {"x": -1891.29, "y": -1816.52}, "4095684894": {"x": -1895.23, "y": -1965.13}, "4139816155": {"x": -1993.57, "y": -655.14}, "4172253594": {"x": 537.1, "y": 1135.95}, "4173748917": {"x": -695.05, "y": -117.05}, "4173789198": {"x": -1088.88, "y": -415.15}, "4173796882": {"x": -491.34, "y": -381.32}, "4173797761": {"x": -373.24, "y": -721.6}, "4194510097": {"x": -2493.38, "y": -1482.02}, "4214349299": {"x": -2665.19, "y": -741.88}, "4248707700": {"x": -1562.21, "y": -1905.85}, "4248941674": {"x": -1557.44, "y": -2833.02}, "4687823320": {"x": 297.08, "y": -3020.89}, "4874980024": {"x": -2703.37, "y": -1075.61}, "4874980027": {"x": -2811.27, "y": -1166.51}, "5112004105": {"x": -595.96, "y": 379.62}, "5446595705": {"x": -1556.25, "y": 145.63}, "5463552488": {"x": -649.63, "y": 330.28}, "5468393309": {"x": -582.58, "y": 256.11}, "5497859257": {"x": -1488.69, "y": -2173.17}, "5730487258": {"x": 65.37, "y": 299.56}, "5730487259": {"x": 72.15, "y": 304.94}, "5730487260": {"x": 71.13, "y": 300.51}, "5730487261": {"x": 64.79, "y": 307.33}, "5890633223": {"x": -783.11, "y": -2431.81}, "5890633230": {"x": -822.78, "y": -2426.06}, "6233229328": {"x": -748.23, "y": -2433.7}, "6275800735": {"x": -1222.58, "y": -924.38}, "6291669589": {"x": -53.22, "y": -2626.67}, "6401044369": {"x": 240.91, "y": -2678.39}, "6401044370": {"x": 125.18, "y": -2468.62}, "6404917413": {"x": -604.45, "y": -2831.57}, "6577170380": {"x": 2008.66, "y": 1425.79}, "6577823481": {"x": -2416.0, "y": -213.81}, "6610389586": {"x": -1029.88, "y": -280.62}, "6915301805": {"x": 2223.76, "y": 2429.21}, "7189398145": {"x": -857.38, "y": -1180.35}, "7189398161": {"x": -918.74, "y": -1189.2}, "8174660902": {"x": -538.13, "y": -862.23}, "8316813421": {"x": -3144.59, "y": 144.18}, "8729846828": {"x": 75.45, "y": 444.71}, "8868957845": {"x": -1373.72, "y": -1040.32}, "9146885459": {"x": -1405.98, "y": -2626.93}, "10829398901": {"x": -1508.17, "y": -2621.6}, "11205598924": {"x": 2572.94, "y": 2324.86}, "11390496552": {"x": 1498.01, "y": 376.76}, "11603196290": {"x": -1345.79, "y": -1143.5}, "11793715342": {"x": 1657.93, "y": 1940.47}, "12849307402": {"x": -444.64, "y": -90.15}, "12911858844": {"x": -1098.93, "y": -1224.2}, "12911858894": {"x": -1536.18, "y": -1747.0}, "13009756501": {"x": -2906.79, "y": -884.13}, "13018504178": {"x": 496.94, "y": -2.79}, "13030502563": {"x": -2605.68, "y": -861.8}, "13030502564": {"x": -2625.0, "y": -883.43}, "13030502567": {"x": -2661.81, "y": -909.08}, "13056348945": {"x": -884.92, "y": -1205.43}, "13056348946": {"x": -889.59, "y": -1200.21}, "13056348947": {"x": -958.92, "y": -1126.0}, "13056348949": {"x": -1028.11, "y": -1049.17}, "13069954941": {"x": -874.57, "y": -216.72}, "13091071866": {"x": 78.5, "y": -278.09}, "13132340420": {"x": 437.77, "y": 448.55}, "13146093508": {"x": -1468.06, "y": -888.64}, "13151160466": {"x": -1027.74, "y": -867.87}, "13191853166": {"x": -1132.12, "y": -40.5}, "13202666793": {"x": 1622.77, "y": 1963.97}, "13206778050": {"x": 1610.84, "y": 1977.64}, "13324853243": {"x": -419.35, "y": -316.52}, "13324853247": {"x": -467.96, "y": -367.54}, "13334632578": {"x": -428.42, "y": 84.41}, "13334632600": {"x": -533.62, "y": 201.94}, "13334818837": {"x": -367.77, "y": -771.12}}, "edges": [{"u": 37923758, "v": 445963180, "oneway": false, "points": [[-1986.67, 64.8], [-1977.74, 60.92], [-1964.87, 56.81], [-1953.95, 53.43], [-1943.3, 51.01], [-1929.64, 49.24], [-1915.86, 48.38], [-1892.81, 48.29], [-1878.86, 46.88], [-1861.25, 44.14], [-1838.69, 40.85], [-1822.06, 39.38], [-1811.95, 38.93], [-1801.96, 38.94], [-1792.81, 40.33], [-1783.93, 43.46], [-1763.8, 53.76], [-1755.23, 58.25], [-1745.84, 62.41], [-1737.17, 66.52], [-1729.83, 69.75], [-1723.71, 74.7], [-1716.19, 81.9], [-1706.62, 93.2], [-1698.08, 104.62], [-1693.67, 112.78], [-1689.15, 121.16], [-1686.72, 125.47], [-1683.97, 129.17], [-1680.15, 131.7], [-1676.56, 132.57], [-1674.36, 132.24], [-1671.51, 130.81], [-1669.45, 128.85], [-1667.73, 124.98], [-1666.4, 119.43], [-1666.23, 112.18], [-1666.29, 105.11], [-1666.54, 95.31], [-1666.56, 89.98], [-1666.01, 85.58], [-1664.65, 82.12], [-1662.99, 80.38], [-1660.66, 78.95], [-1657.31, 77.61], [-1653.28, 77.11], [-1647.8, 76.76], [-1624.39, 75.66], [-1595.99, 74.23], [-1582.79, 73.61], [-1566.89, 72.55], [-1564.24, 72.48], [-1556.72, 72.17]], "length": 515.8}, {"u": 37923758, "v": 37924361, "oneway": false, "points": [[-1986.67, 64.8], [-1990.61, 53.72], [-1999.63, 24.93], [-2009.15, -3.22], [-2012.39, -11.65], [-2015.54, -22.52], [-2017.05, -31.11], [-2017.41, -44.36]], "length": 113.98}, {"u": 37923758, "v": 53413603, "oneway": false, "points": [[-1986.67, 64.8], [-1995.75, 70.89], [-2005.23, 78.05], [-2017.9, 87.5], [-2030.91, 97.28], [-2037.78, 102.45], [-2044.26, 106.66], [-2052.26, 110.95], [-2062.64, 115.03], [-2069.84, 117.0], [-2077.61, 118.58], [-2085.55, 119.63], [-2100.2, 121.24], [-2119.69, 122.8], [-2130.72, 123.61], [-2141.19, 124.16], [-2151.72, 124.26], [-2163.75, 124.46], [-2177.7, 124.21], [-2206.3, 122.26], [-2228.2, 120.52], [-2245.05, 119.91], [-2265.74, 120.04], [-2276.17, 120.65], [-2287.22, 121.79], [-2302.86, 124.39], [-2317.52, 127.16], [-2341.57, 133.95], [-2364.12, 140.51], [-2382.55, 144.92], [-2392.98, 146.16], [-2411.87, 146.93], [-2423.84, 145.53], [-2431.52, 143.9], [-2442.15, 141.22], [-2449.3, 138.72], [-2458.69, 134.96], [-2477.29, 125.47], [-2484.08, 122.73], [-2497.36, 119.35], [-2504.41, 118.8], [-2531.75, 119.45], [-2541.25, 119.72]], "length": 578.93}, {"u": 37924361, "v": 37923758, "oneway": false, "points": [[-2017.41, -44.36], [-2017.05, -31.11], [-2015.54, -22.52], [-2012.39, -11.65], [-2009.15, -3.22], [-1999.63, 24.93], [-1990.61, 53.72], [-1986.67, 64.8]], "length": 113.98}, {"u": 37924361, "v": 53486800, "oneway": false, "points": [[-2017.41, -44.36], [-2027.98, -43.99], [-2110.23, -40.52], [-2114.09, -40.37], [-2134.58, -39.51], [-2207.12, -36.47], [-2217.6, -36.04], [-2291.15, -32.96]], "length": 273.98}, {"u": 37924361, "v": 53461749, "oneway": false, "points": [[-2017.41, -44.36], [-2017.89, -60.94], [-2017.98, -63.68], [-2018.88, -94.44], [-2019.93, -130.11], [-2020.19, -139.52], [-2020.25, -140.9], [-2021.92, -197.54], [-2021.66, -202.74], [-2021.07, -207.95], [-2020.27, -213.31], [-2017.27, -222.24], [-2017.0, -222.98], [-2016.47, -225.05], [-2012.31, -234.71], [-2010.6, -238.86]], "length": 196.46}, {"u": 53288573, "v": 53288575, "oneway": false, "points": [[-214.91, -3054.2], [-181.66, -3091.01]], "length": 49.6}, {"u": 53288573, "v": 847061279, "oneway": false, "points": [[-214.91, -3054.2], [-179.79, -3033.6]], "length": 40.72}, {"u": 53288575, "v": 53288573, "oneway": false, "points": [[-181.66, -3091.01], [-214.91, -3054.2]], "length": 49.6}, {"u": 53288575, "v": 847061279, "oneway": false, "points": [[-181.66, -3091.01], [-179.79, -3033.6]], "length": 57.44}, {"u": 53288575, "v": 53624470, "oneway": false, "points": [[-181.66, -3091.01], [-181.61, -3106.24]], "length": 15.23}, {"u": 53290647, "v": 496686159, "oneway": false, "points": [[1337.72, 2486.43], [1341.7, 2493.92], [1344.98, 2500.6], [1347.96, 2505.08], [1349.8, 2506.91], [1351.84, 2507.08], [1394.55, 2493.65], [1409.1, 2489.86], [1413.23, 2488.79], [1435.69, 2482.53], [1468.07, 2473.5], [1476.77, 2472.57], [1485.9, 2471.6]], "length": 164.88}, {"u": 53311057, "v": 53311058, "oneway": false, "points": [[-3098.43, -652.64], [-3099.04, -639.85], [-3099.4, -632.38]], "length": 20.28}, {"u": 53311057, "v": 53572824, "oneway": false, "points": [[-3098.43, -652.64], [-3111.52, -643.04], [-3117.16, -639.61], [-3121.13, -637.2], [-3127.51, -631.02]], "length": 36.36}, {"u": 53311057, "v": 2298789025, "oneway": false, "points": [[-3098.43, -652.64], [-3086.8, -659.2], [-3078.2, -666.01], [-3072.12, -672.63], [-3066.33, -680.91], [-3061.42, -691.83], [-3057.98, -708.16], [-3058.23, -716.58], [-3058.4, -724.82]], "length": 88.74}, {"u": 53311058, "v": 53578687, "oneway": false, "points": [[-3099.4, -632.38], [-3094.59, -632.48]], "length": 4.81}, {"u": 53311058, "v": 53311057, "oneway": false, "points": [[-3099.4, -632.38], [-3099.04, -639.85], [-3098.43, -652.64]], "length": 20.28}, {"u": 53311058, "v": 53572824, "oneway": false, "points": [[-3099.4, -632.38], [-3103.96, -632.47], [-3127.51, -631.02]], "length": 28.16}, {"u": 53326149, "v": 53525132, "oneway": false, "points": [[-132.43, -56.42], [-120.13, -45.86], [-91.49, -19.59], [-79.27, -8.35], [-59.49, 9.48], [-51.74, 16.15]], "length": 108.53}, {"u": 53326149, "v": 53538820, "oneway": true, "points": [[-132.43, -56.42], [-141.53, -46.94], [-206.11, 23.89], [-207.4, 24.39], [-210.39, 25.77], [-214.97, 26.59]], "length": 118.33}, {"u": 53332729, "v": 53539161, "oneway": false, "points": [[-140.7, -230.7], [-130.65, -241.78], [-100.32, -275.29], [-74.06, -304.29], [-68.04, -310.94]], "length": 108.25}, {"u": 53332729, "v": 53408558, "oneway": true, "points": [[-140.7, -230.7], [-132.38, -222.65], [-60.1, -158.27], [-58.56, -154.37], [-57.61, -150.38], [-57.19, -147.0]], "length": 120.07}, {"u": 53332734, "v": 53444038, "oneway": true, "points": [[-314.69, -222.37], [-306.56, -230.85], [-267.19, -274.84], [-253.28, -289.76], [-241.95, -301.9], [-236.97, -304.74], [-231.37, -305.98]], "length": 119.26}, {"u": 53332734, "v": 53615252, "oneway": false, "points": [[-314.69, -222.37], [-327.56, -234.06], [-344.83, -249.75], [-369.67, -272.32], [-388.72, -289.72], [-395.58, -295.99]], "length": 109.38}, {"u": 53370932, "v": 53370937, "oneway": false, "points": [[-3053.93, -22.09], [-3054.68, -37.14], [-3055.99, -70.57], [-3056.32, -89.01], [-3056.39, -92.58], [-3056.42, -94.55]], "length": 72.51}, {"u": 53370932, "v": 53486863, "oneway": false, "points": [[-3053.93, -22.09], [-3053.6, -15.97], [-3053.18, -7.89], [-3052.99, -2.92], [-3052.18, 18.56], [-3051.8, 28.39], [-3051.58, 35.62]], "length": 57.76}, {"u": 53370932, "v": 53677752, "oneway": false, "points": [[-3053.93, -22.09], [-3020.38, -23.7], [-2996.69, -25.0], [-2973.6, -24.68], [-2923.47, -25.6], [-2918.5, -23.16], [-2916.8, -21.66], [-2911.11, -17.11]], "length": 145.63}, {"u": 53370937, "v": 53370932, "oneway": false, "points": [[-3056.42, -94.55], [-3056.39, -92.58], [-3056.32, -89.01], [-3055.99, -70.57], [-3054.68, -37.14], [-3053.93, -22.09]], "length": 72.51}, {"u": 53385421, "v": 387096443, "oneway": true, "points": [[-306.42, -48.08], [-316.1, -57.24], [-388.34, -121.11]], "length": 109.74}, {"u": 53385421, "v": 1423974459, "oneway": false, "points": [[-306.42, -48.08], [-318.31, -35.84], [-322.51, -31.43]], "length": 23.16}, {"u": 53407742, "v": 53407747, "oneway": false, "points": [[1931.59, 1673.72], [1937.37, 1679.35], [2112.89, 1850.66], [2119.67, 1857.27]], "length": 262.8}, {"u": 53407742, "v": 3786903332, "oneway": false, "points": [[1931.59, 1673.72], [1935.5, 1669.46], [1940.56, 1663.56], [1944.13, 1659.33], [1945.84, 1657.2]], "length": 21.82}, {"u": 53407742, "v": 2384881594, "oneway": true, "points": [[1931.59, 1673.72], [1927.21, 1681.81], [1926.08, 1683.91], [1874.68, 1738.75], [1872.61, 1741.1], [1863.83, 1750.33]], "length": 102.62}, {"u": 53407747, "v": 53407767, "oneway": false, "points": [[2119.67, 1857.27], [2126.37, 1863.74], [2170.92, 1917.48], [2195.96, 1945.03], [2229.61, 1985.77], [2253.87, 2014.43], [2333.94, 2112.38], [2339.57, 2119.27]], "length": 342.15}, {"u": 53407747, "v": 53407742, "oneway": false, "points": [[2119.67, 1857.27], [2112.89, 1850.66], [1937.37, 1679.35], [1931.59, 1673.72]], "length": 262.8}, {"u": 53407747, "v": 53503712, "oneway": false, "points": [[2119.67, 1857.27], [2125.63, 1850.98], [2137.09, 1838.91], [2141.17, 1834.68], [2170.33, 1803.71], [2179.56, 1794.67], [2192.75, 1781.75], [2198.09, 1776.52], [2199.42, 1775.22], [2201.19, 1773.76], [2209.8, 1769.41], [2217.16, 1765.53]], "length": 134.71}, {"u": 53407747, "v": 449952494, "oneway": false, "points": [[2119.67, 1857.27], [2115.11, 1861.93], [2058.08, 1920.44], [2052.13, 1926.54]], "length": 96.74}, {"u": 53407767, "v": 53407747, "oneway": false, "points": [[2339.57, 2119.27], [2333.94, 2112.38], [2253.87, 2014.43], [2229.61, 1985.77], [2195.96, 1945.03], [2170.92, 1917.48], [2126.37, 1863.74], [2119.67, 1857.27]], "length": 342.15}, {"u": 53407767, "v": 53636377, "oneway": false, "points": [[2339.57, 2119.27], [2352.9, 2106.78], [2354.48, 2104.96], [2375.1, 2082.04], [2393.86, 2065.78], [2400.54, 2059.99]], "length": 85.18}, {"u": 53407767, "v": 449952498, "oneway": false, "points": [[2339.57, 2119.27], [2327.61, 2131.53], [2303.33, 2156.46], [2296.65, 2163.31]], "length": 61.49}, {"u": 53407902, "v": 53426174, "oneway": true, "points": [[-22.83, -149.27], [-23.47, -155.76], [-23.88, -167.27], [-23.65, -169.13], [-22.44, -170.89], [19.18, -216.51], [20.98, -218.47], [30.04, -223.62]], "length": 96.88}, {"u": 53407902, "v": 53539171, "oneway": false, "points": [[-22.83, -149.27], [-14.09, -149.79], [55.5, -153.39], [79.47, -154.59], [92.78, -155.26]], "length": 115.76}, {"u": 53407902, "v": 53408558, "oneway": false, "points": [[-22.83, -149.27], [-33.38, -148.63], [-39.72, -148.23], [-57.19, -147.0]], "length": 34.44}, {"u": 53407911, "v": 53525132, "oneway": true, "points": [[34.14, -78.25], [29.56, -73.25], [2.39, -43.61], [-39.9, 2.45], [-51.74, 16.15]], "length": 127.63}, {"u": 53407911, "v": 53407902, "oneway": true, "points": [[34.14, -78.25], [26.6, -84.94], [3.63, -105.22], [-12.17, -119.38], [-16.82, -124.0], [-20.49, -127.71], [-21.55, -129.83], [-22.34, -141.53], [-22.83, -149.27]], "length": 95.57}, {"u": 53407911, "v": 53407922, "oneway": false, "points": [[34.14, -78.25], [41.79, -71.58], [101.64, -19.47], [109.42, -12.7]], "length": 99.81}, {"u": 53407922, "v": 53483529, "oneway": false, "points": [[109.42, -12.7], [116.13, -19.97], [158.12, -65.46], [160.01, -67.5], [173.06, -81.61], [187.37, -97.09], [192.77, -102.95], [205.6, -116.6], [212.33, -124.23], [217.24, -129.61], [231.47, -144.98], [234.08, -148.91], [236.01, -151.83], [239.4, -159.54]], "length": 196.63}, {"u": 53407922, "v": 845773212, "oneway": false, "points": [[109.42, -12.7], [103.71, -6.41], [69.53, 31.94], [57.21, 45.37], [53.95, 48.93], [36.65, 68.45], [34.99, 70.24], [28.78, 76.81]], "length": 120.47}, {"u": 53407922, "v": 53407926, "oneway": false, "points": [[109.42, -12.7], [116.3, -6.57], [137.3, 12.1], [154.98, 27.83], [156.87, 29.51], [178.02, 48.32], [185.07, 54.59]], "length": 101.25}, {"u": 53407922, "v": 53407911, "oneway": false, "points": [[109.42, -12.7], [101.64, -19.47], [41.79, -71.58], [34.14, -78.25]], "length": 99.81}, {"u": 53407926, "v": 1425249983, "oneway": true, "points": [[185.07, 54.59], [190.33, 48.78], [205.53, 32.17], [211.45, 25.54], [213.27, 23.52], [225.88, 9.53], [232.33, 2.37], [239.23, -5.59], [259.98, -28.33], [260.87, -29.31], [296.86, -68.74], [297.8, -69.77], [299.95, -71.89], [300.67, -72.7], [313.04, -86.33], [317.36, -91.05]], "length": 196.76}, {"u": 53407926, "v": 53407932, "oneway": false, "points": [[185.07, 54.59], [191.17, 60.37], [237.26, 102.61], [244.27, 108.9]], "length": 80.35}, {"u": 53407926, "v": 53407922, "oneway": false, "points": [[185.07, 54.59], [178.02, 48.32], [156.87, 29.51], [154.98, 27.83], [137.3, 12.1], [116.3, -6.57], [109.42, -12.7]], "length": 101.25}, {"u": 53407932, "v": 845773215, "oneway": true, "points": [[244.27, 108.9], [237.72, 115.57], [228.73, 125.23], [218.74, 136.34], [208.52, 147.73], [201.94, 155.03], [171.22, 189.19], [169.27, 191.35], [162.28, 199.23]], "length": 122.0}, {"u": 53407932, "v": 53407941, "oneway": false, "points": [[244.27, 108.9], [251.06, 115.25], [281.29, 142.72], [287.73, 148.62], [291.64, 152.19], [295.54, 155.68], [309.98, 168.88], [311.8, 170.91], [318.52, 177.71]], "length": 101.25}, {"u": 53407932, "v": 53407926, "oneway": false, "points": [[244.27, 108.9], [237.26, 102.61], [191.17, 60.37], [185.07, 54.59]], "length": 80.35}, {"u": 53407941, "v": 53616146, "oneway": false, "points": [[318.52, 177.71], [325.66, 169.42], [349.71, 143.28], [373.96, 116.51], [380.6, 109.3], [386.48, 102.93]], "length": 101.05}, {"u": 53407941, "v": 1192211510, "oneway": false, "points": [[318.52, 177.71], [313.49, 184.09], [292.22, 207.55], [286.73, 213.79], [285.62, 214.98], [278.71, 223.36]], "length": 60.59}, {"u": 53407941, "v": 2713292536, "oneway": false, "points": [[318.52, 177.71], [325.03, 184.07], [327.34, 186.25], [347.53, 204.37], [349.71, 206.26], [356.79, 212.67], [359.39, 214.95], [392.98, 244.89], [426.4, 275.6], [461.34, 306.51], [468.6, 313.24]], "length": 202.24}, {"u": 53407941, "v": 53407932, "oneway": false, "points": [[318.52, 177.71], [311.8, 170.91], [309.98, 168.88], [295.54, 155.68], [291.64, 152.19], [287.73, 148.62], [281.29, 142.72], [251.06, 115.25], [244.27, 108.9]], "length": 101.25}, {"u": 53407975, "v": 2948601585, "oneway": false, "points": [[766.33, 584.47], [772.64, 590.11], [820.56, 633.62], [847.61, 657.61], [850.31, 660.0], [909.47, 712.47], [916.76, 718.93]], "length": 201.77}, {"u": 53407975, "v": 1142903857, "oneway": false, "points": [[766.33, 584.47], [759.38, 578.16], [732.18, 553.51], [721.02, 543.39], [692.43, 517.89], [678.28, 504.59], [675.41, 502.05], [623.4, 454.91], [616.35, 448.53]], "length": 202.41}, {"u": 53407975, "v": 53445464, "oneway": false, "points": [[766.33, 584.47], [774.02, 576.01], [798.75, 548.8], [827.19, 517.51], [828.42, 516.12], [837.68, 505.98], [840.96, 502.36], [865.93, 474.89], [886.26, 452.54], [889.79, 448.64], [901.64, 435.62], [929.49, 404.97], [940.8, 392.54], [963.5, 367.55], [969.31, 361.18]], "length": 301.76}, {"u": 53407975, "v": 366215899, "oneway": false, "points": [[766.33, 584.47], [761.56, 589.7], [734.17, 619.83], [730.1, 624.32], [694.58, 663.39], [692.49, 665.69], [683.41, 675.68]], "length": 123.28}, {"u": 53408000, "v": 2948595076, "oneway": false, "points": [[1065.77, 853.79], [1070.02, 849.1], [1095.59, 820.8], [1108.86, 806.1], [1128.16, 784.74], [1131.14, 781.44], [1133.64, 778.68], [1142.04, 769.4], [1177.27, 730.39], [1179.97, 727.39], [1188.33, 718.14], [1192.05, 714.03], [1194.54, 711.27], [1200.99, 704.13]], "length": 201.7}, {"u": 53408000, "v": 366215913, "oneway": false, "points": [[1065.77, 853.79], [1059.33, 860.92], [1044.63, 877.2], [1035.4, 886.74], [1025.54, 897.88], [991.34, 936.49], [982.26, 946.75]], "length": 124.97}, {"u": 53408000, "v": 2948601585, "oneway": false, "points": [[1065.77, 853.79], [1059.56, 848.16], [1057.22, 846.03], [1013.14, 806.16], [997.48, 791.98], [986.13, 781.71], [922.53, 724.16], [916.76, 718.93]], "length": 200.98}, {"u": 53408480, "v": 53408487, "oneway": false, "points": [[1487.11, 1235.54], [1489.61, 1237.81], [1504.32, 1251.57], [1506.3, 1253.43], [1512.87, 1259.58]], "length": 35.23}, {"u": 53408487, "v": 53408490, "oneway": false, "points": [[1512.87, 1259.58], [1519.56, 1265.66], [1521.62, 1267.53], [1547.49, 1290.99], [1578.65, 1319.26], [1607.35, 1345.28], [1616.29, 1353.38]], "length": 139.62}, {"u": 53408487, "v": 53408480, "oneway": false, "points": [[1512.87, 1259.58], [1506.3, 1253.43], [1504.32, 1251.57], [1489.61, 1237.81], [1487.11, 1235.54]], "length": 35.23}, {"u": 53408487, "v": 53560776, "oneway": false, "points": [[1512.87, 1259.58], [1518.25, 1253.65], [1531.73, 1238.81], [1554.2, 1214.09]], "length": 61.46}, {"u": 53408487, "v": 53560766, "oneway": false, "points": [[1512.87, 1259.58], [1506.1, 1267.08], [1500.22, 1273.6], [1498.85, 1275.12], [1470.12, 1306.96], [1465.15, 1312.46], [1461.95, 1315.93], [1456.97, 1321.34], [1440.16, 1339.6], [1438.26, 1341.58], [1430.72, 1349.83]], "length": 122.04}, {"u": 53408490, "v": 53408525, "oneway": false, "points": [[1616.29, 1353.38], [1664.58, 1398.25], [1691.24, 1423.03], [1692.52, 1424.21], [1694.01, 1425.83], [1698.63, 1429.74], [1712.53, 1442.54], [1736.14, 1464.54], [1745.47, 1472.27], [1760.93, 1485.94]], "length": 196.23}, {"u": 53408490, "v": 53408487, "oneway": false, "points": [[1616.29, 1353.38], [1607.35, 1345.28], [1578.65, 1319.26], [1547.49, 1290.99], [1521.62, 1267.53], [1519.56, 1265.66], [1512.87, 1259.58]], "length": 139.62}, {"u": 53408490, "v": 53560776, "oneway": false, "points": [[1616.29, 1353.38], [1620.35, 1348.82], [1623.8, 1344.96], [1632.87, 1334.8], [1645.01, 1320.45], [1646.36, 1315.34], [1647.66, 1310.38], [1646.56, 1303.18], [1643.13, 1297.17], [1637.01, 1290.78], [1616.12, 1271.34], [1609.98, 1265.65], [1587.53, 1244.89], [1560.58, 1219.99], [1554.2, 1214.09]], "length": 190.04}, {"u": 53408525, "v": 3786903332, "oneway": false, "points": [[1760.93, 1485.94], [1939.63, 1650.14], [1945.84, 1657.2]], "length": 252.09}, {"u": 53408525, "v": 53408490, "oneway": false, "points": [[1760.93, 1485.94], [1745.47, 1472.27], [1736.14, 1464.54], [1712.53, 1442.54], [1698.63, 1429.74], [1694.01, 1425.83], [1692.52, 1424.21], [1691.24, 1423.03], [1664.58, 1398.25], [1616.29, 1353.38]], "length": 196.23}, {"u": 53408525, "v": 2713311875, "oneway": false, "points": [[1760.93, 1485.94], [1767.25, 1480.27], [1804.44, 1450.09]], "length": 56.38}, {"u": 53408558, "v": 53326149, "oneway": true, "points": [[-57.19, -147.0], [-57.42, -142.77], [-58.28, -139.49], [-60.02, -137.0], [-124.25, -65.83], [-132.43, -56.42]], "length": 118.99}, {"u": 53408558, "v": 53407902, "oneway": false, "points": [[-57.19, -147.0], [-39.72, -148.23], [-33.38, -148.63], [-22.83, -149.27]], "length": 34.44}, {"u": 53413603, "v": 53486814, "oneway": false, "points": [[-2541.25, 119.72], [-2541.51, 111.56], [-2541.71, 105.2], [-2541.85, 101.03], [-2547.71, -13.31], [-2548.17, -22.19]], "length": 142.08}, {"u": 53413603, "v": 53580606, "oneway": false, "points": [[-2541.25, 119.72], [-2540.73, 128.29], [-2540.23, 136.7], [-2539.51, 154.72], [-2539.03, 168.55], [-2537.45, 196.9], [-2536.58, 217.79], [-2535.89, 234.11]], "length": 114.53}, {"u": 53413603, "v": 53413619, "oneway": false, "points": [[-2541.25, 119.72], [-2551.55, 120.4], [-2570.65, 121.2], [-2682.02, 125.8], [-2689.06, 126.0], [-2793.2, 130.24], [-2803.66, 130.44]], "length": 262.64}, {"u": 53413603, "v": 37923758, "oneway": false, "points": [[-2541.25, 119.72], [-2531.75, 119.45], [-2504.41, 118.8], [-2497.36, 119.35], [-2484.08, 122.73], [-2477.29, 125.47], [-2458.69, 134.96], [-2449.3, 138.72], [-2442.15, 141.22], [-2431.52, 143.9], [-2423.84, 145.53], [-2411.87, 146.93], [-2392.98, 146.16], [-2382.55, 144.92], [-2364.12, 140.51], [-2341.57, 133.95], [-2317.52, 127.16], [-2302.86, 124.39], [-2287.22, 121.79], [-2276.17, 120.65], [-2265.74, 120.04], [-2245.05, 119.91], [-2228.2, 120.52], [-2206.3, 122.26], [-2177.7, 124.21], [-2163.75, 124.46], [-2151.72, 124.26], [-2141.19, 124.16], [-2130.72, 123.61], [-2119.69, 122.8], [-2100.2, 121.24], [-2085.55, 119.63], [-2077.61, 118.58], [-2069.84, 117.0], [-2062.64, 115.03], [-2052.26, 110.95], [-2044.26, 106.66], [-2037.78, 102.45], [-2030.91, 97.28], [-2017.9, 87.5], [-2005.23, 78.05], [-1995.75, 70.89], [-1986.67, 64.8]], "length": 578.93}, {"u": 53413619, "v": 53438915, "oneway": false, "points": [[-2803.66, 130.44], [-2803.91, 121.07], [-2806.2, 69.24], [-2805.81, 62.06], [-2804.79, 53.98], [-2803.53, 48.89], [-2800.75, 41.17]], "length": 90.04}, {"u": 53413619, "v": 1850006061, "oneway": false, "points": [[-2803.66, 130.44], [-2813.85, 130.81], [-2851.69, 132.39], [-3002.88, 138.72], [-3005.24, 138.82], [-3010.34, 139.03]], "length": 206.86}, {"u": 53413619, "v": 53413603, "oneway": false, "points": [[-2803.66, 130.44], [-2793.2, 130.24], [-2689.06, 126.0], [-2682.02, 125.8], [-2570.65, 121.2], [-2551.55, 120.4], [-2541.25, 119.72]], "length": 262.64}, {"u": 53413619, "v": 4055610627, "oneway": false, "points": [[-2803.66, 130.44], [-2803.46, 138.68], [-2799.56, 233.35], [-2799.15, 242.46], [-2798.47, 268.87], [-2798.49, 275.91], [-2798.52, 289.79], [-2803.69, 301.59], [-2806.01, 305.91], [-2817.48, 324.11]], "length": 198.74}, {"u": 53414098, "v": 845773212, "oneway": false, "points": [[16.36, 89.92], [28.78, 76.81]], "length": 18.07}, {"u": 53414098, "v": 2859245549, "oneway": false, "points": [[16.36, 89.92], [9.03, 98.1], [7.34, 99.91], [0.34, 107.67], [-11.21, 120.47], [-18.12, 128.12], [-36.88, 148.92], [-42.69, 155.36], [-46.69, 159.79], [-58.84, 173.26], [-60.52, 175.12], [-65.63, 180.78]], "length": 122.38}, {"u": 53414098, "v": 53525132, "oneway": true, "points": [[16.36, 89.92], [9.8, 84.09], [-50.66, 27.49], [-51.7, 22.93], [-51.74, 16.15]], "length": 103.05}, {"u": 53416322, "v": 2705151904, "oneway": false, "points": [[452.1, 1058.95], [446.53, 1065.15], [443.72, 1068.27], [430.68, 1082.78], [387.2, 1131.15], [377.98, 1141.39], [376.42, 1142.57], [374.52, 1143.05], [372.59, 1142.78], [370.84, 1141.72], [351.71, 1124.65]], "length": 144.4}, {"u": 53416322, "v": 1699123266, "oneway": true, "points": [[452.1, 1058.95], [446.92, 1054.43], [433.07, 1041.55], [418.58, 1028.99], [403.12, 1015.59], [393.62, 1007.36], [386.67, 1001.36]], "length": 87.18}, {"u": 53416782, "v": 53416784, "oneway": false, "points": [[-1174.76, -2068.64], [-1175.11, -2075.35], [-1180.38, -2169.19], [-1180.92, -2178.83]], "length": 110.36}, {"u": 53416782, "v": 53444545, "oneway": false, "points": [[-1174.76, -2068.64], [-1204.99, -2071.11], [-1268.67, -2080.63], [-1308.29, -2083.83], [-1315.95, -2083.83], [-1333.62, -2080.44], [-1348.72, -2075.45], [-1357.62, -2070.42], [-1367.13, -2063.59], [-1376.69, -2055.87], [-1389.02, -2042.07]], "length": 228.75}, {"u": 53416782, "v": 53470168, "oneway": false, "points": [[-1174.76, -2068.64], [-1155.24, -2067.31], [-1136.37, -2068.51], [-1109.33, -2075.18], [-1089.54, -2081.3], [-1065.56, -2086.21]], "length": 111.52}, {"u": 53416784, "v": 53416786, "oneway": false, "points": [[-1180.92, -2178.83], [-1181.32, -2187.26], [-1183.57, -2235.77], [-1185.9, -2284.55], [-1186.31, -2293.38]], "length": 114.68}, {"u": 53416784, "v": 53416782, "oneway": false, "points": [[-1180.92, -2178.83], [-1180.38, -2169.19], [-1175.11, -2075.35], [-1174.76, -2068.64]], "length": 110.36}, {"u": 53416784, "v": 1180187483, "oneway": false, "points": [[-1180.92, -2178.83], [-1189.71, -2178.31], [-1351.79, -2168.73], [-1361.31, -2168.39], [-1391.1, -2167.3], [-1394.32, -2167.19], [-1400.26, -2166.97], [-1406.15, -2166.76], [-1409.16, -2166.65], [-1417.71, -2166.34]], "length": 237.13}, {"u": 53416784, "v": 53470169, "oneway": false, "points": [[-1180.92, -2178.83], [-1171.78, -2179.17], [-1131.01, -2180.7], [-1078.27, -2183.82], [-1069.73, -2184.33]], "length": 111.34}, {"u": 53416786, "v": 53470170, "oneway": false, "points": [[-1186.31, -2293.38], [-1074.59, -2298.69]], "length": 111.85}, {"u": 53416786, "v": 53416788, "oneway": false, "points": [[-1186.31, -2293.38], [-1187.74, -2348.96], [-1189.11, -2396.96], [-1189.19, -2399.59], [-1189.44, -2408.46]], "length": 115.12}, {"u": 53416786, "v": 53416784, "oneway": false, "points": [[-1186.31, -2293.38], [-1185.9, -2284.55], [-1183.57, -2235.77], [-1181.32, -2187.26], [-1180.92, -2178.83]], "length": 114.68}, {"u": 53416786, "v": 1180187507, "oneway": false, "points": [[-1186.31, -2293.38], [-1292.86, -2288.34], [-1331.59, -2286.75], [-1339.5, -2287.46], [-1341.58, -2287.65], [-1348.65, -2288.28]], "length": 162.56}, {"u": 53416788, "v": 53416786, "oneway": false, "points": [[-1189.44, -2408.46], [-1189.19, -2399.59], [-1189.11, -2396.96], [-1187.74, -2348.96], [-1186.31, -2293.38]], "length": 115.12}, {"u": 53416788, "v": 1180187456, "oneway": false, "points": [[-1189.44, -2408.46], [-1200.78, -2407.5], [-1234.0, -2404.69], [-1239.06, -2404.26], [-1249.74, -2403.83], [-1262.33, -2404.38], [-1266.77, -2404.58], [-1275.73, -2404.96], [-1282.34, -2405.25]], "length": 93.12}, {"u": 53416788, "v": 53470173, "oneway": false, "points": [[-1189.44, -2408.46], [-1182.89, -2408.78], [-1079.48, -2413.81]], "length": 110.09}, {"u": 53417779, "v": 53417781, "oneway": false, "points": [[-929.65, 236.12], [-972.48, 199.14], [-976.75, 195.45]], "length": 62.23}, {"u": 53417781, "v": 53521446, "oneway": false, "points": [[-976.75, 195.45], [-956.16, 172.57]], "length": 30.78}, {"u": 53417781, "v": 53417779, "oneway": false, "points": [[-976.75, 195.45], [-972.48, 199.14], [-929.65, 236.12]], "length": 62.23}, {"u": 53417781, "v": 53591804, "oneway": false, "points": [[-976.75, 195.45], [-981.18, 200.38], [-983.91, 203.4]], "length": 10.7}, {"u": 53421608, "v": 53421612, "oneway": false, "points": [[-2909.04, -981.75], [-2909.59, -1018.28]], "length": 36.53}, {"u": 53421608, "v": 53428597, "oneway": false, "points": [[-2909.04, -981.75], [-2903.6, -981.83], [-2901.96, -981.86], [-2822.19, -983.07], [-2814.76, -983.18]], "length": 94.3}, {"u": 53421608, "v": 13009756501, "oneway": false, "points": [[-2909.04, -981.75], [-2908.37, -960.24], [-2907.69, -935.28], [-2907.2, -917.01], [-2906.79, -884.13]], "length": 97.65}, {"u": 53421612, "v": 53421608, "oneway": false, "points": [[-2909.59, -1018.28], [-2909.04, -981.75]], "length": 36.53}, {"u": 53421612, "v": 53549949, "oneway": false, "points": [[-2909.59, -1018.28], [-2917.37, -1018.05], [-2920.67, -1017.95], [-2975.11, -1016.32], [-2993.63, -1017.01], [-3014.14, -1018.86], [-3063.11, -1024.34], [-3074.08, -1026.42], [-3078.53, -1028.2], [-3086.87, -1034.32]], "length": 180.26}, {"u": 53421612, "v": 53421621, "oneway": false, "points": [[-2909.59, -1018.28], [-2909.66, -1026.47], [-2909.87, -1042.31], [-2909.83, -1047.33], [-2910.83, -1078.05], [-2910.25, -1081.51], [-2908.79, -1086.64]], "length": 68.63}, {"u": 53421621, "v": 53610868, "oneway": false, "points": [[-2908.79, -1086.64], [-2916.34, -1087.76], [-2919.7, -1088.46], [-2924.55, -1089.63], [-2929.52, -1090.56], [-2932.28, -1090.79], [-2935.41, -1090.74], [-2947.07, -1090.57], [-2954.2, -1090.4], [-2973.54, -1089.9], [-2977.1, -1089.83], [-2996.11, -1089.55], [-2998.9, -1089.69], [-3001.35, -1089.93], [-3003.9, -1090.32], [-3006.47, -1090.86], [-3008.84, -1091.57], [-3011.6, -1092.64], [-3017.26, -1095.44], [-3022.68, -1099.42], [-3029.4, -1105.42]], "length": 125.66}, {"u": 53421621, "v": 53462374, "oneway": false, "points": [[-2908.79, -1086.64], [-2905.48, -1086.63], [-2902.58, -1087.11], [-2887.17, -1090.97], [-2878.44, -1095.8]], "length": 32.11}, {"u": 53421621, "v": 53421612, "oneway": false, "points": [[-2908.79, -1086.64], [-2910.25, -1081.51], [-2910.83, -1078.05], [-2909.83, -1047.33], [-2909.87, -1042.31], [-2909.66, -1026.47], [-2909.59, -1018.28]], "length": 68.63}, {"u": 53421750, "v": 316357431, "oneway": true, "points": [[-1152.89, -969.9], [-1138.66, -976.94]], "length": 15.88}, {"u": 53421750, "v": 1180102573, "oneway": true, "points": [[-1152.89, -969.9], [-1162.15, -977.16], [-1175.72, -989.63]], "length": 30.2}, {"u": 53423466, "v": 449907112, "oneway": false, "points": [[387.05, 402.61], [374.19, 417.58]], "length": 19.74}, {"u": 53423466, "v": 2713292536, "oneway": false, "points": [[387.05, 402.61], [392.68, 395.89], [395.08, 393.35], [424.36, 362.86], [426.72, 360.39], [427.88, 358.97], [431.33, 354.99], [460.39, 321.4], [462.0, 319.54], [468.6, 313.24]], "length": 121.05}, {"u": 53423466, "v": 13132340420, "oneway": true, "points": [[387.05, 402.61], [395.51, 409.48], [437.77, 448.55]], "length": 68.44}, {"u": 53423470, "v": 2713311960, "oneway": false, "points": [[524.4, 551.26], [517.35, 558.98], [461.41, 620.31], [447.31, 635.37], [442.61, 640.93]], "length": 121.37}, {"u": 53423470, "v": 449907112, "oneway": true, "points": [[524.4, 551.26], [460.01, 494.03], [426.88, 464.46], [381.58, 424.15], [374.19, 417.58]], "length": 201.08}, {"u": 53423501, "v": 2948594974, "oneway": true, "points": [[1121.99, 1092.6], [1114.62, 1086.02], [1078.05, 1053.23], [1061.69, 1038.58], [1047.62, 1025.96], [1016.15, 997.76], [1000.82, 984.02], [997.87, 981.39], [979.49, 964.92], [971.98, 958.19]], "length": 201.42}, {"u": 53423501, "v": 53430027, "oneway": false, "points": [[1121.99, 1092.6], [1115.0, 1099.99], [1112.23, 1102.93], [1092.42, 1123.86], [1090.27, 1126.14], [1079.11, 1137.93]], "length": 62.39}, {"u": 53423508, "v": 366215925, "oneway": false, "points": [[1268.75, 1229.5], [1280.82, 1215.64]], "length": 18.38}, {"u": 53423508, "v": 53536993, "oneway": false, "points": [[1268.75, 1229.5], [1263.35, 1235.51], [1260.38, 1238.83], [1244.53, 1256.5], [1195.24, 1311.68], [1188.17, 1319.59]], "length": 120.87}, {"u": 53423508, "v": 53423501, "oneway": true, "points": [[1268.75, 1229.5], [1259.98, 1220.88], [1232.27, 1195.15], [1174.79, 1141.54], [1128.54, 1098.41], [1121.99, 1092.6]], "length": 200.71}, {"u": 53423520, "v": 53560766, "oneway": false, "points": [[1420.01, 1362.11], [1430.72, 1349.83]], "length": 16.29}, {"u": 53423520, "v": 53538776, "oneway": false, "points": [[1420.01, 1362.11], [1412.15, 1370.6], [1408.55, 1374.49], [1390.97, 1393.48], [1342.9, 1445.81], [1335.34, 1453.59]], "length": 124.66}, {"u": 53423520, "v": 53423508, "oneway": true, "points": [[1420.01, 1362.11], [1411.13, 1354.32], [1368.66, 1317.1], [1360.89, 1310.33], [1314.32, 1269.47], [1288.67, 1246.97], [1280.02, 1239.4], [1277.46, 1237.15], [1268.75, 1229.5]], "length": 201.16}, {"u": 53423529, "v": 449934218, "oneway": false, "points": [[1566.36, 1496.22], [1558.47, 1503.66], [1544.37, 1516.97], [1534.52, 1526.25], [1528.94, 1530.29], [1522.76, 1534.76]], "length": 58.28}, {"u": 53423529, "v": 53423520, "oneway": true, "points": [[1566.36, 1496.22], [1525.14, 1458.85], [1500.84, 1436.81], [1480.09, 1418.0], [1476.33, 1414.59], [1472.05, 1410.61], [1430.3, 1371.7], [1420.01, 1362.11]], "length": 198.51}, {"u": 53423552, "v": 449952494, "oneway": false, "points": [[2038.77, 1940.06], [2052.13, 1926.54]], "length": 19.0}, {"u": 53423552, "v": 53570522, "oneway": false, "points": [[2038.77, 1940.06], [2031.03, 1948.31], [2017.56, 1962.37], [1996.55, 1985.09]], "length": 61.73}, {"u": 53423552, "v": 2384881601, "oneway": true, "points": [[2038.77, 1940.06], [2028.87, 1930.76], [1983.07, 1885.31], [1868.14, 1776.72], [1861.82, 1771.37], [1859.32, 1769.29], [1851.17, 1762.83]], "length": 258.16}, {"u": 53423556, "v": 53570527, "oneway": false, "points": [[2139.46, 2036.96], [2132.29, 2044.16], [2111.58, 2064.95], [2096.72, 2079.86]], "length": 60.56}, {"u": 53423556, "v": 53423552, "oneway": true, "points": [[2139.46, 2036.96], [2132.57, 2030.55], [2120.65, 2019.46], [2048.7, 1949.38], [2038.77, 1940.06]], "length": 139.75}, {"u": 53423565, "v": 449957352, "oneway": false, "points": [[2535.88, 2422.6], [2549.62, 2408.43]], "length": 19.74}, {"u": 53423565, "v": 1706427666, "oneway": true, "points": [[2535.88, 2422.6], [2528.61, 2415.45], [2473.6, 2361.29], [2460.3, 2348.59], [2421.51, 2311.5], [2413.31, 2303.71]], "length": 170.76}, {"u": 53423565, "v": 53538791, "oneway": false, "points": [[2535.88, 2422.6], [2529.04, 2430.38], [2456.52, 2503.74], [2450.28, 2510.09]], "length": 122.42}, {"u": 53423568, "v": 53529532, "oneway": false, "points": [[2666.14, 2544.59], [2657.14, 2553.94], [2640.14, 2571.59], [2625.32, 2586.97], [2585.55, 2628.29], [2580.03, 2634.01]], "length": 124.14}, {"u": 53423568, "v": 53423565, "oneway": true, "points": [[2666.14, 2544.59], [2659.07, 2537.95], [2616.16, 2497.56], [2605.71, 2488.29], [2586.49, 2469.99], [2582.98, 2466.65], [2552.31, 2438.27], [2543.2, 2429.55], [2535.88, 2422.6]], "length": 178.47}, {"u": 53423575, "v": 1706427647, "oneway": true, "points": [[2737.19, 2640.91], [2729.93, 2627.64]], "length": 15.12}, {"u": 53423575, "v": 53467195, "oneway": true, "points": [[2737.19, 2640.91], [2725.78, 2648.45], [2721.79, 2651.09], [2718.4, 2654.61], [2710.73, 2665.14]], "length": 36.38}, {"u": 53425693, "v": 5730487259, "oneway": false, "points": [[142.33, 369.18], [136.71, 364.01], [134.76, 362.22], [115.83, 344.83], [75.96, 308.22], [72.15, 304.94]], "length": 95.14}, {"u": 53425693, "v": 316334513, "oneway": true, "points": [[142.33, 369.18], [148.61, 362.46], [163.98, 346.06], [177.99, 330.44], [191.15, 315.78], [195.43, 311.0], [199.98, 305.94], [217.7, 285.81], [224.66, 278.41]], "length": 122.55}, {"u": 53425702, "v": 8729846828, "oneway": true, "points": [[8.36, 519.46], [13.94, 513.15], [42.26, 481.69], [61.17, 460.61], [69.44, 451.41], [75.45, 444.71]], "length": 100.44}, {"u": 53425702, "v": 53640831, "oneway": true, "points": [[8.36, 519.46], [15.24, 525.7], [42.65, 550.54], [113.32, 614.6], [150.54, 648.33], [157.79, 654.91]], "length": 201.68}, {"u": 53425702, "v": 3088209649, "oneway": false, "points": [[8.36, 519.46], [3.21, 525.2], [2.03, 526.52], [-51.68, 586.37], [-53.3, 588.17], [-58.77, 593.96]], "length": 100.29}, {"u": 53426174, "v": 53539171, "oneway": true, "points": [[30.04, -223.62], [36.45, -217.83], [85.89, -173.06], [89.07, -168.87], [90.69, -165.3], [92.19, -159.94], [92.78, -155.26]], "length": 94.8}, {"u": 53426174, "v": 13091071866, "oneway": true, "points": [[30.04, -223.62], [31.7, -232.06], [45.55, -248.76], [58.67, -262.59], [67.63, -272.27], [78.5, -278.09]], "length": 74.88}, {"u": 53426175, "v": 53515084, "oneway": true, "points": [[95.25, -295.22], [87.39, -301.86], [65.26, -322.07], [59.9, -327.19], [52.1, -334.33], [42.48, -343.13], [32.93, -352.33], [13.54, -370.89], [12.42, -371.89], [8.63, -374.78], [-1.84, -383.81]], "length": 131.48}, {"u": 53426175, "v": 366220625, "oneway": false, "points": [[95.25, -295.22], [100.93, -300.22], [103.41, -302.89], [104.79, -304.38], [118.53, -319.16], [131.1, -332.7]], "length": 51.9}, {"u": 53426175, "v": 13091071866, "oneway": false, "points": [[95.25, -295.22], [89.85, -290.58], [78.5, -278.09]], "length": 23.99}, {"u": 53426575, "v": 53426577, "oneway": false, "points": [[-264.31, -2215.95], [-264.66, -2224.8], [-271.7, -2401.93], [-272.05, -2410.68]], "length": 194.88}, {"u": 53426575, "v": 53573861, "oneway": false, "points": [[-264.31, -2215.95], [-225.44, -2217.47], [-220.68, -2217.65], [-195.86, -2218.62], [-162.46, -2219.92]], "length": 101.93}, {"u": 53426575, "v": 53551342, "oneway": false, "points": [[-264.31, -2215.95], [-295.13, -2214.62], [-301.6, -2214.33]], "length": 37.32}, {"u": 53426577, "v": 316562664, "oneway": false, "points": [[-272.05, -2410.68], [-276.66, -2521.47], [-278.17, -2527.63], [-280.44, -2536.91]], "length": 126.79}, {"u": 53426577, "v": 53426575, "oneway": false, "points": [[-272.05, -2410.68], [-271.7, -2401.93], [-264.66, -2224.8], [-264.31, -2215.95]], "length": 194.88}, {"u": 53426577, "v": 53544865, "oneway": false, "points": [[-272.05, -2410.68], [-281.55, -2410.26], [-359.15, -2406.87]], "length": 87.19}, {"u": 53426577, "v": 53573861, "oneway": false, "points": [[-272.05, -2410.68], [-262.95, -2410.99], [-221.83, -2412.38], [-109.11, -2416.2], [-85.31, -2416.21], [-72.67, -2413.23], [-69.13, -2409.0], [-66.54, -2405.99], [-63.76, -2400.81], [-63.2, -2396.65], [-63.2, -2386.71], [-64.85, -2381.67], [-76.63, -2362.76], [-106.17, -2315.39], [-117.25, -2297.64], [-123.63, -2287.41], [-128.96, -2277.91], [-155.81, -2231.23], [-162.46, -2219.92]], "length": 423.57}, {"u": 53428594, "v": 53428597, "oneway": false, "points": [[-2813.21, -951.45], [-2814.06, -961.72], [-2814.34, -969.55], [-2814.76, -983.18]], "length": 31.78}, {"u": 53428597, "v": 3812685579, "oneway": false, "points": [[-2814.76, -983.18], [-2815.0, -997.37], [-2815.76, -1017.08], [-2815.54, -1021.31], [-2814.61, -1023.19], [-2813.22, -1024.64], [-2811.03, -1026.86], [-2805.18, -1033.27]], "length": 54.06}, {"u": 53428597, "v": 53428594, "oneway": false, "points": [[-2814.76, -983.18], [-2814.34, -969.55], [-2814.06, -961.72], [-2813.21, -951.45]], "length": 31.78}, {"u": 53428597, "v": 53421608, "oneway": false, "points": [[-2814.76, -983.18], [-2822.19, -983.07], [-2901.96, -981.86], [-2903.6, -981.83], [-2909.04, -981.75]], "length": 94.3}, {"u": 53429624, "v": 1699123283, "oneway": false, "points": [[1112.13, 1520.79], [1102.78, 1531.03]], "length": 13.87}, {"u": 53429624, "v": 1777291055, "oneway": true, "points": [[1112.13, 1520.79], [1121.84, 1528.97], [1201.83, 1602.6]], "length": 121.42}, {"u": 53430018, "v": 53430027, "oneway": false, "points": [[930.57, 1003.77], [937.55, 1009.98], [956.74, 1027.03], [960.43, 1030.31], [974.79, 1043.07], [981.07, 1048.66], [1020.02, 1083.84], [1025.22, 1088.53], [1033.37, 1096.07], [1063.43, 1123.87], [1067.21, 1127.36], [1073.11, 1132.59], [1079.11, 1137.93]], "length": 200.17}, {"u": 53430018, "v": 349378518, "oneway": false, "points": [[930.57, 1003.77], [896.66, 1041.1], [890.13, 1048.3]], "length": 60.15}, {"u": 53430018, "v": 2948594974, "oneway": false, "points": [[930.57, 1003.77], [941.37, 991.89], [954.25, 977.71], [965.47, 965.35], [971.98, 958.19]], "length": 61.58}, {"u": 53430027, "v": 53430018, "oneway": false, "points": [[1079.11, 1137.93], [1073.11, 1132.59], [1067.21, 1127.36], [1063.43, 1123.87], [1033.37, 1096.07], [1025.22, 1088.53], [1020.02, 1083.84], [981.07, 1048.66], [974.79, 1043.07], [960.43, 1030.31], [956.74, 1027.03], [937.55, 1009.98], [930.57, 1003.77]], "length": 200.17}, {"u": 53430027, "v": 53453124, "oneway": false, "points": [[1079.11, 1137.93], [1067.86, 1150.29], [1046.01, 1174.27], [1043.92, 1176.59], [1038.22, 1182.83]], "length": 60.74}, {"u": 53430027, "v": 53423501, "oneway": false, "points": [[1079.11, 1137.93], [1090.27, 1126.14], [1092.42, 1123.86], [1112.23, 1102.93], [1115.0, 1099.99], [1121.99, 1092.6]], "length": 62.39}, {"u": 53430437, "v": 53616166, "oneway": false, "points": [[-1739.88, -1016.5], [-1739.62, -1005.75], [-1738.48, -957.91], [-1737.88, -936.65], [-1737.49, -922.62], [-1736.43, -887.31], [-1736.38, -885.72], [-1736.11, -876.25]], "length": 140.3}, {"u": 53430437, "v": 53676376, "oneway": false, "points": [[-1739.88, -1016.5], [-1740.34, -1028.04], [-1741.67, -1076.62], [-1742.39, -1101.14], [-1742.98, -1126.89], [-1743.31, -1137.41]], "length": 120.97}, {"u": 53430437, "v": 53430443, "oneway": false, "points": [[-1739.88, -1016.5], [-1748.72, -1016.4], [-1752.03, -1016.35], [-1784.69, -1015.81], [-1800.98, -1015.29], [-1805.06, -1015.27], [-1811.58, -1015.32], [-1824.36, -1015.17], [-1859.08, -1014.44], [-1860.69, -1014.4], [-1869.52, -1014.21]], "length": 129.66}, {"u": 53430443, "v": 53430446, "oneway": false, "points": [[-1869.52, -1014.21], [-1878.66, -1014.13], [-1881.79, -1014.07], [-1910.0, -1013.6], [-1952.89, -1012.49]], "length": 83.39}, {"u": 53430443, "v": 53576823, "oneway": false, "points": [[-1869.52, -1014.21], [-1869.7, -1023.95], [-1870.61, -1073.76]], "length": 59.55}, {"u": 53430443, "v": 53483330, "oneway": false, "points": [[-1869.52, -1014.21], [-1869.25, -1004.5], [-1867.53, -942.79], [-1867.46, -940.23]], "length": 74.02}, {"u": 53430443, "v": 53430437, "oneway": false, "points": [[-1869.52, -1014.21], [-1860.69, -1014.4], [-1859.08, -1014.44], [-1824.36, -1015.17], [-1811.58, -1015.32], [-1805.06, -1015.27], [-1800.98, -1015.29], [-1784.69, -1015.81], [-1752.03, -1016.35], [-1748.72, -1016.4], [-1739.88, -1016.5]], "length": 129.66}, {"u": 53430446, "v": 3811323394, "oneway": false, "points": [[-1952.89, -1012.49], [-2001.56, -1011.07]], "length": 48.69}, {"u": 53430446, "v": 53430443, "oneway": false, "points": [[-1952.89, -1012.49], [-1910.0, -1013.6], [-1881.79, -1014.07], [-1878.66, -1014.13], [-1869.52, -1014.21]], "length": 83.39}, {"u": 53430446, "v": 53680515, "oneway": false, "points": [[-1952.89, -1012.49], [-1953.08, -1019.49], [-1954.41, -1067.24], [-1954.42, -1067.68], [-1954.54, -1072.14]], "length": 59.67}, {"u": 53430836, "v": 53430839, "oneway": false, "points": [[2760.46, 2318.35], [2755.26, 2250.31], [2755.1, 2241.3]], "length": 77.25}, {"u": 53430839, "v": 53430844, "oneway": false, "points": [[2755.1, 2241.3], [2754.76, 2234.44], [2744.68, 2061.11], [2744.15, 2051.92]], "length": 189.7}, {"u": 53430839, "v": 53430836, "oneway": false, "points": [[2755.1, 2241.3], [2755.26, 2250.31], [2760.46, 2318.35]], "length": 77.25}, {"u": 53430839, "v": 53475094, "oneway": false, "points": [[2755.1, 2241.3], [2761.99, 2241.02], [2836.4, 2237.97], [2846.01, 2237.32]], "length": 91.0}, {"u": 53430839, "v": 53611260, "oneway": false, "points": [[2755.1, 2241.3], [2745.94, 2241.71], [2670.36, 2245.59], [2662.6, 2245.99]], "length": 92.63}, {"u": 53430844, "v": 53540839, "oneway": false, "points": [[2744.15, 2051.92], [2743.76, 2045.05], [2738.29, 1924.7], [2735.98, 1907.34]], "length": 144.87}, {"u": 53430844, "v": 53430839, "oneway": false, "points": [[2744.15, 2051.92], [2744.68, 2061.11], [2754.76, 2234.44], [2755.1, 2241.3]], "length": 189.7}, {"u": 53430844, "v": 53475096, "oneway": false, "points": [[2744.15, 2051.92], [2751.67, 2051.13], [2828.08, 2047.21], [2835.8, 2046.82]], "length": 91.8}, {"u": 53430844, "v": 53604832, "oneway": false, "points": [[2744.15, 2051.92], [2735.72, 2052.08], [2661.35, 2056.85], [2652.97, 2057.39]], "length": 91.36}, {"u": 53430857, "v": 53487523, "oneway": false, "points": [[2736.89, 1858.56], [2740.5, 1848.96], [2741.04, 1846.44], [2755.66, 1778.42], [2757.14, 1771.51]], "length": 89.47}, {"u": 53430857, "v": 1192282519, "oneway": false, "points": [[2736.89, 1858.56], [2729.35, 1856.32], [2702.95, 1849.23], [2665.26, 1839.1], [2657.07, 1836.94]], "length": 82.7}, {"u": 53432331, "v": 1142903857, "oneway": false, "points": [[820.62, 223.16], [813.5, 230.8], [811.07, 233.34], [783.29, 262.98], [775.22, 271.57], [749.91, 301.18], [741.76, 310.33], [738.33, 314.25], [692.74, 363.3], [683.12, 373.57], [623.67, 440.12], [616.35, 448.53]], "length": 304.2}, {"u": 53432331, "v": 1192150406, "oneway": false, "points": [[820.62, 223.16], [813.31, 216.58], [801.86, 206.02], [770.6, 177.97], [746.77, 156.59], [720.5, 133.01], [715.69, 128.69], [708.04, 121.84], [706.43, 120.38]], "length": 153.63}, {"u": 53432331, "v": 53461450, "oneway": false, "points": [[820.62, 223.16], [826.83, 216.52], [828.07, 215.21], [844.01, 198.15], [878.83, 160.88], [885.7, 153.52]], "length": 95.32}, {"u": 53432331, "v": 53445464, "oneway": false, "points": [[820.62, 223.16], [827.13, 229.67], [881.2, 279.4], [883.13, 281.19], [889.5, 287.1], [915.43, 311.17], [930.95, 325.58], [938.83, 332.91], [947.21, 340.68], [961.15, 353.71], [969.31, 361.18]], "length": 202.88}, {"u": 53432339, "v": 2925570317, "oneway": false, "points": [[1268.58, 629.32], [1276.58, 636.63], [1282.96, 642.47], [1284.51, 643.94], [1285.03, 644.42], [1299.98, 658.23], [1302.75, 660.79], [1314.24, 671.13], [1314.8, 671.65], [1320.45, 677.02], [1328.15, 683.58], [1386.98, 737.76], [1411.13, 760.34], [1417.61, 765.99]], "length": 202.22}, {"u": 53432339, "v": 3235649725, "oneway": false, "points": [[1268.58, 629.32], [1261.67, 623.06], [1253.84, 616.1], [1245.73, 608.66], [1209.18, 576.32], [1193.58, 562.53], [1185.84, 555.65], [1181.31, 551.54], [1179.1, 549.51], [1171.96, 542.77], [1171.73, 542.56], [1156.96, 528.31], [1147.07, 519.33], [1127.34, 501.14], [1120.29, 494.67]], "length": 200.32}, {"u": 53432339, "v": 53461467, "oneway": false, "points": [[1268.58, 629.32], [1274.72, 622.53], [1293.96, 601.23], [1294.19, 600.98], [1301.6, 592.77], [1302.49, 591.79], [1328.61, 562.82], [1335.0, 555.73]], "length": 99.14}, {"u": 53432339, "v": 2948595076, "oneway": false, "points": [[1268.58, 629.32], [1262.1, 636.49], [1245.7, 654.64], [1244.64, 655.82], [1206.4, 698.89], [1200.99, 704.13]], "length": 100.84}, {"u": 53432346, "v": 53515077, "oneway": false, "points": [[1567.1, 900.19], [1559.24, 908.31], [1558.47, 909.1], [1542.31, 927.33], [1532.24, 938.67], [1526.58, 945.07], [1505.79, 968.5], [1500.44, 974.53]], "length": 99.87}, {"u": 53432346, "v": 53461478, "oneway": false, "points": [[1567.1, 900.19], [1572.65, 894.5], [1575.81, 891.27], [1627.46, 832.83], [1634.02, 825.4]], "length": 100.37}, {"u": 53432346, "v": 53432349, "oneway": false, "points": [[1567.1, 900.19], [1575.17, 907.54], [1603.06, 932.72], [1624.17, 951.77], [1634.12, 960.9], [1658.16, 982.94], [1687.79, 1010.24], [1709.37, 1029.9], [1716.1, 1036.03]], "length": 201.63}, {"u": 53432346, "v": 2925570317, "oneway": false, "points": [[1567.1, 900.19], [1560.14, 893.89], [1523.33, 860.04], [1515.97, 853.4], [1507.57, 845.88], [1498.59, 837.79], [1466.25, 808.87], [1462.95, 805.92], [1461.51, 804.61], [1449.37, 793.75], [1448.04, 792.56], [1446.3, 791.0], [1423.8, 771.48], [1417.61, 765.99]], "length": 200.9}, {"u": 53432349, "v": 53461491, "oneway": false, "points": [[1716.1, 1036.03], [1721.83, 1029.69], [1723.86, 1027.44], [1740.43, 1009.11], [1777.19, 968.43], [1783.8, 961.1]], "length": 100.99}, {"u": 53432349, "v": 53515081, "oneway": false, "points": [[1716.1, 1036.03], [1709.3, 1043.33], [1707.48, 1045.28], [1686.18, 1068.11], [1684.66, 1069.74], [1653.8, 1102.8], [1647.61, 1109.44]], "length": 100.39}, {"u": 53432349, "v": 53432353, "oneway": false, "points": [[1716.1, 1036.03], [1722.28, 1042.74], [1735.17, 1056.72], [1739.94, 1062.42], [1763.11, 1090.04], [1791.19, 1123.51], [1818.67, 1157.96], [1840.65, 1184.41], [1846.75, 1191.74]], "length": 203.3}, {"u": 53432349, "v": 53432346, "oneway": false, "points": [[1716.1, 1036.03], [1709.37, 1029.9], [1687.79, 1010.24], [1658.16, 982.94], [1634.12, 960.9], [1624.17, 951.77], [1603.06, 932.72], [1575.17, 907.54], [1567.1, 900.19]], "length": 201.63}, {"u": 53432353, "v": 53461499, "oneway": false, "points": [[1846.75, 1191.74], [1852.55, 1185.22], [1866.54, 1169.47], [1872.49, 1162.78], [1888.39, 1142.99], [1925.65, 1103.41], [1931.82, 1096.87]], "length": 127.48}, {"u": 53432353, "v": 53432356, "oneway": false, "points": [[1846.75, 1191.74], [1851.55, 1197.51], [1882.25, 1234.53]], "length": 55.6}, {"u": 53432353, "v": 53432349, "oneway": false, "points": [[1846.75, 1191.74], [1840.65, 1184.41], [1818.67, 1157.96], [1791.19, 1123.51], [1763.11, 1090.04], [1739.94, 1062.42], [1735.17, 1056.72], [1722.28, 1042.74], [1716.1, 1036.03]], "length": 203.3}, {"u": 53432356, "v": 2948601586, "oneway": false, "points": [[1882.25, 1234.53], [1887.44, 1240.48], [1889.67, 1243.03], [1894.3, 1248.4], [1910.07, 1267.51], [1915.29, 1273.87]], "length": 51.38}, {"u": 53432356, "v": 53432353, "oneway": false, "points": [[1882.25, 1234.53], [1851.55, 1197.51], [1846.75, 1191.74]], "length": 55.6}, {"u": 53433643, "v": 53437708, "oneway": false, "points": [[712.02, 1402.45], [681.67, 1373.93]], "length": 41.65}, {"u": 53433643, "v": 53433662, "oneway": false, "points": [[712.02, 1402.45], [677.46, 1440.19], [676.68, 1441.33], [676.24, 1442.65], [676.18, 1444.03], [676.5, 1445.36], [708.87, 1528.06], [710.6, 1531.4], [711.74, 1533.59], [716.43, 1539.07]], "length": 158.95}, {"u": 53433643, "v": 53453164, "oneway": false, "points": [[712.02, 1402.45], [774.67, 1461.36], [781.03, 1467.33]], "length": 94.72}, {"u": 53433662, "v": 53453164, "oneway": false, "points": [[716.43, 1539.07], [781.03, 1467.33]], "length": 96.54}, {"u": 53433662, "v": 53433643, "oneway": false, "points": [[716.43, 1539.07], [711.74, 1533.59], [710.6, 1531.4], [708.87, 1528.06], [676.5, 1445.36], [676.18, 1444.03], [676.24, 1442.65], [676.68, 1441.33], [677.46, 1440.19], [712.02, 1402.45]], "length": 158.95}, {"u": 53433662, "v": 53453173, "oneway": false, "points": [[716.43, 1539.07], [710.5, 1545.54], [684.51, 1573.88], [653.59, 1608.99], [649.61, 1612.28], [646.75, 1613.81], [645.15, 1614.67], [640.26, 1616.59]], "length": 109.49}, {"u": 53434711, "v": 2859245583, "oneway": false, "points": [[-1202.76, 104.04], [-1216.22, 104.75], [-1252.69, 106.63], [-1277.89, 107.94], [-1282.21, 108.17], [-1284.27, 107.08], [-1285.81, 105.09], [-1286.77, 102.55], [-1287.26, 99.65], [-1288.02, 85.1], [-1289.5, 59.39], [-1290.3, 45.54], [-1291.49, 24.78], [-1292.15, 15.51]], "length": 174.34}, {"u": 53434862, "v": 53434863, "oneway": false, "points": [[-940.65, -2420.37], [-940.98, -2429.68], [-941.1, -2432.47], [-944.82, -2524.67], [-944.95, -2527.93], [-945.32, -2537.0]], "length": 116.72}, {"u": 53434862, "v": 53470170, "oneway": false, "points": [[-940.65, -2420.37], [-940.31, -2411.69], [-940.24, -2408.95], [-939.17, -2366.0], [-937.65, -2305.48], [-987.31, -2303.28], [-1074.59, -2298.69]], "length": 252.04}, {"u": 53434862, "v": 53470173, "oneway": false, "points": [[-940.65, -2420.37], [-948.26, -2420.05], [-1001.19, -2417.39], [-1079.48, -2413.81]], "length": 138.98}, {"u": 53434862, "v": 5890633230, "oneway": false, "points": [[-940.65, -2420.37], [-932.17, -2420.83], [-822.78, -2426.06]], "length": 118.01}, {"u": 53434863, "v": 53434865, "oneway": false, "points": [[-945.32, -2537.0], [-945.81, -2545.95], [-946.0, -2549.45], [-948.55, -2595.65], [-950.96, -2639.56], [-951.19, -2643.9], [-951.6, -2651.21]], "length": 114.39}, {"u": 53434863, "v": 53434862, "oneway": false, "points": [[-945.32, -2537.0], [-944.95, -2527.93], [-944.82, -2524.67], [-941.1, -2432.47], [-940.98, -2429.68], [-940.65, -2420.37]], "length": 116.72}, {"u": 53434863, "v": 1180187547, "oneway": false, "points": [[-945.32, -2537.0], [-954.35, -2536.55], [-1068.55, -2530.93], [-1096.62, -2529.13], [-1170.79, -2525.5], [-1188.12, -2524.65], [-1198.39, -2524.67], [-1204.39, -2524.67], [-1206.51, -2524.68], [-1215.22, -2524.69]], "length": 270.22}, {"u": 53434863, "v": 53463513, "oneway": false, "points": [[-945.32, -2537.0], [-936.12, -2537.46], [-865.72, -2541.05], [-807.04, -2544.69], [-803.23, -2544.92], [-792.73, -2545.57]], "length": 152.83}, {"u": 53434865, "v": 53434867, "oneway": false, "points": [[-951.6, -2651.21], [-952.02, -2661.56], [-952.21, -2666.23], [-954.05, -2710.52], [-955.79, -2756.46], [-955.93, -2760.14], [-956.24, -2768.43]], "length": 117.31}, {"u": 53434865, "v": 53434863, "oneway": false, "points": [[-951.6, -2651.21], [-951.19, -2643.9], [-950.96, -2639.56], [-948.55, -2595.65], [-946.0, -2549.45], [-945.81, -2545.95], [-945.32, -2537.0]], "length": 114.39}, {"u": 53434865, "v": 53511723, "oneway": false, "points": [[-951.6, -2651.21], [-959.67, -2650.88], [-1038.64, -2647.62], [-1081.66, -2646.33], [-1123.78, -2646.46], [-1127.87, -2646.54], [-1130.11, -2646.6], [-1132.82, -2646.59], [-1142.53, -2651.69]], "length": 192.29}, {"u": 53434865, "v": 53463519, "oneway": false, "points": [[-951.6, -2651.21], [-860.54, -2656.79], [-856.53, -2657.05], [-851.89, -2657.35], [-842.23, -2657.98]], "length": 109.57}, {"u": 53434867, "v": 53434865, "oneway": false, "points": [[-956.24, -2768.43], [-955.93, -2760.14], [-955.79, -2756.46], [-954.05, -2710.52], [-952.21, -2666.23], [-952.02, -2661.56], [-951.6, -2651.21]], "length": 117.31}, {"u": 53434867, "v": 53511712, "oneway": false, "points": [[-956.24, -2768.43], [-965.78, -2767.97], [-1033.4, -2764.67], [-1040.27, -2764.83], [-1044.1, -2764.92], [-1054.77, -2765.17]], "length": 98.63}, {"u": 53434867, "v": 53463523, "oneway": false, "points": [[-956.24, -2768.43], [-947.44, -2768.87], [-906.74, -2770.92], [-901.06, -2771.2], [-895.27, -2771.49]], "length": 61.04}, {"u": 53434870, "v": 53434871, "oneway": false, "points": [[-895.98, -2098.71], [-896.33, -2106.42], [-898.81, -2182.55], [-899.4, -2191.44]], "length": 92.8}, {"u": 53434870, "v": 53470168, "oneway": false, "points": [[-895.98, -2098.71], [-947.26, -2099.05], [-962.85, -2096.86], [-978.29, -2094.91], [-991.42, -2093.21], [-1065.56, -2086.21]], "length": 170.3}, {"u": 53434870, "v": 2634693299, "oneway": false, "points": [[-895.98, -2098.71], [-886.73, -2098.11], [-771.44, -2104.93], [-739.7, -2106.28], [-733.53, -2106.79], [-730.26, -2107.34]], "length": 166.04}, {"u": 53434871, "v": 53434870, "oneway": false, "points": [[-899.4, -2191.44], [-898.81, -2182.55], [-896.33, -2106.42], [-895.98, -2098.71]], "length": 92.8}, {"u": 53434871, "v": 53470169, "oneway": false, "points": [[-899.4, -2191.44], [-905.24, -2191.29], [-969.37, -2188.54], [-1060.4, -2184.74], [-1069.73, -2184.33]], "length": 170.47}, {"u": 53434871, "v": 2634708186, "oneway": false, "points": [[-899.4, -2191.44], [-892.53, -2191.79], [-777.51, -2195.46], [-729.97, -2196.64], [-723.21, -2196.88]], "length": 176.28}, {"u": 53436855, "v": 53572846, "oneway": false, "points": [[-3240.72, -548.39], [-3234.09, -541.8], [-3227.72, -538.54], [-3216.6, -534.52], [-3213.41, -533.84], [-3207.28, -533.46], [-3198.42, -534.05], [-3184.4, -534.12], [-3177.63, -533.76], [-3160.27, -530.7], [-3150.99, -528.3], [-3139.36, -523.53], [-3132.33, -519.84], [-3123.87, -514.75]], "length": 125.0}, {"u": 53437415, "v": 53437417, "oneway": false, "points": [[2030.21, 1372.86], [2055.14, 1359.0], [2061.6, 1355.41]], "length": 35.92}, {"u": 53437417, "v": 53437418, "oneway": false, "points": [[2061.6, 1355.41], [2133.51, 1297.72], [2135.5, 1296.12], [2143.58, 1289.64]], "length": 105.1}, {"u": 53437417, "v": 53437415, "oneway": false, "points": [[2061.6, 1355.41], [2055.14, 1359.0], [2030.21, 1372.86]], "length": 35.92}, {"u": 53437417, "v": 53537030, "oneway": false, "points": [[2061.6, 1355.41], [2068.45, 1360.06], [2148.3, 1414.29], [2153.37, 1417.74]], "length": 110.93}, {"u": 53437418, "v": 53437425, "oneway": false, "points": [[2143.58, 1289.64], [2148.77, 1284.26], [2150.58, 1282.39], [2152.84, 1280.05], [2259.2, 1163.14], [2271.23, 1149.19], [2273.09, 1147.03], [2280.5, 1138.42]], "length": 204.02}, {"u": 53437418, "v": 53437417, "oneway": false, "points": [[2143.58, 1289.64], [2135.5, 1296.12], [2133.51, 1297.72], [2061.6, 1355.41]], "length": 105.1}, {"u": 53437418, "v": 53461430, "oneway": false, "points": [[2143.58, 1289.64], [2149.04, 1294.81], [2162.74, 1307.78], [2178.18, 1320.9], [2192.15, 1331.07], [2201.35, 1337.16], [2205.52, 1339.92]], "length": 79.95}, {"u": 53437418, "v": 3208339051, "oneway": false, "points": [[2143.58, 1289.64], [2136.93, 1283.59], [2115.39, 1264.99], [2107.25, 1257.88], [2083.09, 1233.98], [2081.54, 1232.45], [2076.35, 1227.32]], "length": 91.72}, {"u": 53437425, "v": 53437418, "oneway": false, "points": [[2280.5, 1138.42], [2273.09, 1147.03], [2271.23, 1149.19], [2259.2, 1163.14], [2152.84, 1280.05], [2150.58, 1282.39], [2148.77, 1284.26], [2143.58, 1289.64]], "length": 204.02}, {"u": 53437425, "v": 53558145, "oneway": false, "points": [[2280.5, 1138.42], [2321.61, 1179.2], [2324.41, 1181.98]], "length": 61.85}, {"u": 53437425, "v": 3208342164, "oneway": false, "points": [[2280.5, 1138.42], [2276.94, 1135.26], [2240.97, 1103.41], [2219.34, 1084.24], [2214.09, 1079.6]], "length": 88.72}, {"u": 53437707, "v": 53437708, "oneway": false, "points": [[634.91, 1329.98], [640.24, 1334.98], [681.67, 1373.93]], "length": 64.17}, {"u": 53437707, "v": 53578339, "oneway": true, "points": [[634.91, 1329.98], [630.55, 1334.84], [585.48, 1384.95], [576.3, 1391.04], [569.63, 1393.88]], "length": 92.19}, {"u": 53437708, "v": 53433643, "oneway": false, "points": [[681.67, 1373.93], [712.02, 1402.45]], "length": 41.65}, {"u": 53437708, "v": 53580632, "oneway": false, "points": [[681.67, 1373.93], [638.01, 1420.74]], "length": 64.02}, {"u": 53437708, "v": 53437707, "oneway": false, "points": [[681.67, 1373.93], [640.24, 1334.98], [634.91, 1329.98]], "length": 64.17}, {"u": 53437716, "v": 53453164, "oneway": false, "points": [[805.44, 1440.41], [781.03, 1467.33]], "length": 36.34}, {"u": 53437716, "v": 53437718, "oneway": false, "points": [[805.44, 1440.41], [812.0, 1446.34], [892.56, 1519.31]], "length": 117.53}, {"u": 53437716, "v": 53453152, "oneway": false, "points": [[805.44, 1440.41], [811.51, 1433.39], [828.33, 1414.85], [831.12, 1411.65], [836.17, 1406.13]], "length": 46.04}, {"u": 53437718, "v": 53437720, "oneway": false, "points": [[892.56, 1519.31], [910.87, 1535.9], [944.8, 1568.62], [950.06, 1573.7]], "length": 79.16}, {"u": 53437718, "v": 53437716, "oneway": false, "points": [[892.56, 1519.31], [812.0, 1446.34], [805.44, 1440.41]], "length": 117.53}, {"u": 53437718, "v": 53672943, "oneway": false, "points": [[892.56, 1519.31], [886.45, 1524.7], [701.25, 1688.47], [696.0, 1693.11]], "length": 262.38}, {"u": 53437720, "v": 53437718, "oneway": false, "points": [[950.06, 1573.7], [944.8, 1568.62], [910.87, 1535.9], [892.56, 1519.31]], "length": 79.16}, {"u": 53437720, "v": 53537015, "oneway": false, "points": [[950.06, 1573.7], [909.07, 1610.53], [772.37, 1731.1], [752.33, 1748.44], [746.16, 1753.57]], "length": 271.91}, {"u": 53437720, "v": 1699123264, "oneway": false, "points": [[950.06, 1573.7], [968.57, 1557.06], [980.81, 1545.68], [994.28, 1530.9], [1034.08, 1487.1], [1035.22, 1485.74], [1040.87, 1479.73]], "length": 130.81}, {"u": 53438623, "v": 53438624, "oneway": false, "points": [[-647.04, -2199.36], [-647.54, -2208.19], [-650.52, -2247.31], [-653.7, -2294.68]], "length": 95.55}, {"u": 53438623, "v": 2634708186, "oneway": false, "points": [[-647.04, -2199.36], [-655.93, -2198.97], [-658.88, -2198.84], [-668.65, -2198.42], [-693.85, -2197.68], [-714.8, -2197.12], [-723.21, -2196.88]], "length": 76.21}, {"u": 53438623, "v": 2634693274, "oneway": false, "points": [[-647.04, -2199.36], [-644.36, -2199.48], [-640.11, -2199.66], [-623.84, -2200.36], [-579.67, -2202.28]], "length": 67.43}, {"u": 53438624, "v": 53642782, "oneway": false, "points": [[-653.7, -2294.68], [-656.46, -2345.55], [-657.0, -2387.96], [-657.03, -2390.11], [-655.83, -2392.12], [-654.0, -2393.81], [-649.23, -2394.46], [-645.09, -2394.4], [-624.69, -2394.98], [-578.03, -2396.53], [-525.71, -2399.69]], "length": 228.81}, {"u": 53438624, "v": 53438623, "oneway": false, "points": [[-653.7, -2294.68], [-650.52, -2247.31], [-647.54, -2208.19], [-647.04, -2199.36]], "length": 95.55}, {"u": 53438624, "v": 2634693276, "oneway": false, "points": [[-653.7, -2294.68], [-645.18, -2295.12], [-625.85, -2296.13], [-580.04, -2298.51], [-530.91, -2301.07], [-513.85, -2301.96]], "length": 140.04}, {"u": 53438915, "v": 53413619, "oneway": false, "points": [[-2800.75, 41.17], [-2803.53, 48.89], [-2804.79, 53.98], [-2805.81, 62.06], [-2806.2, 69.24], [-2803.91, 121.07], [-2803.66, 130.44]], "length": 90.04}, {"u": 53438915, "v": 53486858, "oneway": false, "points": [[-2800.75, 41.17], [-2809.85, 38.02], [-2819.26, 34.97], [-2828.93, 31.48], [-2838.76, 28.57], [-2846.53, 26.92], [-2856.29, 25.98], [-2869.92, 26.1], [-2901.62, 27.83]], "length": 103.18}, {"u": 53438915, "v": 53486814, "oneway": false, "points": [[-2800.75, 41.17], [-2794.3, 27.07], [-2788.41, 16.1], [-2788.05, 15.43], [-2785.05, 9.89], [-2779.86, 2.2], [-2773.18, -4.07], [-2766.16, -8.13], [-2761.6, -9.93], [-2754.15, -11.66], [-2731.74, -12.9], [-2701.63, -15.2], [-2667.37, -17.79], [-2559.13, -21.77], [-2553.15, -21.97], [-2548.17, -22.19]], "length": 280.4}, {"u": 53441253, "v": 3227608154, "oneway": false, "points": [[-747.15, 241.66], [-752.61, 247.67], [-755.0, 250.31], [-767.95, 264.68], [-781.57, 279.78], [-794.24, 293.85], [-800.11, 300.36], [-813.51, 315.24]], "length": 99.08}, {"u": 53441253, "v": 53479821, "oneway": false, "points": [[-747.15, 241.66], [-741.49, 235.33], [-739.76, 233.4], [-709.45, 199.77], [-686.29, 174.34], [-680.03, 167.47]], "length": 100.05}, {"u": 53441253, "v": 5463552488, "oneway": false, "points": [[-747.15, 241.66], [-740.07, 248.23], [-721.67, 264.88], [-701.44, 283.18], [-693.88, 290.3], [-663.18, 318.66], [-661.8, 319.85], [-656.22, 324.62], [-649.63, 330.28]], "length": 131.79}, {"u": 53441253, "v": 53441256, "oneway": false, "points": [[-747.15, 241.66], [-753.15, 235.46], [-774.39, 216.32], [-789.89, 202.34], [-808.33, 185.42], [-815.44, 179.3], [-828.55, 167.51], [-845.62, 152.09], [-890.1, 111.98], [-896.45, 106.26]], "length": 201.57}, {"u": 53441256, "v": 53521446, "oneway": false, "points": [[-896.45, 106.26], [-902.71, 113.21], [-906.77, 117.71], [-956.16, 172.57]], "length": 89.23}, {"u": 53441256, "v": 2714977035, "oneway": false, "points": [[-896.45, 106.26], [-891.28, 100.63], [-889.19, 98.36], [-868.92, 76.31], [-866.85, 74.07], [-855.53, 61.73], [-853.15, 59.09], [-833.98, 38.3], [-828.55, 32.38]], "length": 100.35}, {"u": 53441256, "v": 53441253, "oneway": false, "points": [[-896.45, 106.26], [-890.1, 111.98], [-845.62, 152.09], [-828.55, 167.51], [-815.44, 179.3], [-808.33, 185.42], [-789.89, 202.34], [-774.39, 216.32], [-753.15, 235.46], [-747.15, 241.66]], "length": 201.57}, {"u": 53441256, "v": 1181085486, "oneway": false, "points": [[-896.45, 106.26], [-903.17, 100.2], [-927.65, 78.13], [-964.03, 45.34]], "length": 90.98}, {"u": 53441258, "v": 1181184017, "oneway": false, "points": [[-994.03, 18.28], [-1001.12, 26.06], [-1001.92, 27.13], [-1058.9, 91.03], [-1061.56, 93.28], [-1065.11, 95.67], [-1070.49, 98.85], [-1077.25, 100.76]], "length": 118.51}, {"u": 53441258, "v": 1181085486, "oneway": false, "points": [[-994.03, 18.28], [-990.54, 21.43], [-977.61, 33.09], [-964.03, 45.34]], "length": 40.4}, {"u": 53441258, "v": 53441265, "oneway": false, "points": [[-994.03, 18.28], [-1002.46, 10.69], [-1004.49, 9.27], [-1007.57, 7.12], [-1013.18, 4.39], [-1018.35, 2.82], [-1018.97, 2.62], [-1024.95, 1.76], [-1060.29, 2.84], [-1061.25, 2.88], [-1076.69, 3.87], [-1094.88, 4.9], [-1122.29, 7.06], [-1130.2, 7.19]], "length": 141.33}, {"u": 53441265, "v": 53499287, "oneway": false, "points": [[-1130.2, 7.19], [-1129.6, 16.38], [-1129.54, 17.8], [-1128.52, 41.22], [-1127.24, 70.45], [-1126.56, 86.09], [-1126.02, 98.51], [-1125.98, 99.33], [-1124.52, 132.9], [-1124.25, 139.06], [-1123.68, 152.22], [-1123.52, 155.76]], "length": 148.72}, {"u": 53441265, "v": 13191853166, "oneway": false, "points": [[-1130.2, 7.19], [-1130.55, -1.48], [-1130.69, -4.97], [-1131.95, -36.4], [-1132.09, -39.96], [-1132.12, -40.5]], "length": 47.73}, {"u": 53441265, "v": 53441258, "oneway": false, "points": [[-1130.2, 7.19], [-1122.29, 7.06], [-1094.88, 4.9], [-1076.69, 3.87], [-1061.25, 2.88], [-1060.29, 2.84], [-1024.95, 1.76], [-1018.97, 2.62], [-1018.35, 2.82], [-1013.18, 4.39], [-1007.57, 7.12], [-1004.49, 9.27], [-1002.46, 10.69], [-994.03, 18.28]], "length": 141.33}, {"u": 53441265, "v": 2859245583, "oneway": false, "points": [[-1130.2, 7.19], [-1139.36, 7.38], [-1165.88, 8.51], [-1201.61, 10.23], [-1241.59, 12.33], [-1248.8, 12.61], [-1283.2, 14.31], [-1292.15, 15.51]], "length": 162.2}, {"u": 53444038, "v": 53332729, "oneway": true, "points": [[-231.37, -305.98], [-226.25, -305.62], [-221.62, -302.95], [-149.87, -238.89], [-140.7, -230.7]], "length": 118.96}, {"u": 53444038, "v": 1186826669, "oneway": false, "points": [[-231.37, -305.98], [-232.18, -320.78], [-233.23, -339.97]], "length": 34.04}, {"u": 53444048, "v": 4173797761, "oneway": false, "points": [[-245.67, -604.97], [-259.24, -617.29], [-296.05, -650.8], [-327.35, -679.26], [-336.82, -687.89], [-351.99, -701.67], [-362.72, -711.44], [-373.24, -721.6]], "length": 172.85}, {"u": 53444048, "v": 1424945190, "oneway": false, "points": [[-245.67, -604.97], [-246.09, -613.95], [-246.34, -619.45], [-246.73, -627.85]], "length": 22.9}, {"u": 53444048, "v": 1186826687, "oneway": true, "points": [[-245.67, -604.97], [-244.91, -585.47], [-242.42, -544.83], [-238.36, -476.85], [-238.65, -470.08], [-238.83, -467.16], [-239.64, -457.04]], "length": 148.19}, {"u": 53444048, "v": 53467506, "oneway": false, "points": [[-245.67, -604.97], [-256.99, -597.2], [-269.96, -583.11], [-293.76, -557.28], [-308.25, -541.54], [-315.09, -534.12]], "length": 99.49}, {"u": 53444545, "v": 1180187704, "oneway": false, "points": [[-1389.02, -2042.07], [-1395.39, -2045.59], [-1430.2, -2065.82], [-1436.01, -2069.03], [-1457.28, -2081.01], [-1464.01, -2084.68]], "length": 86.26}, {"u": 53444545, "v": 12911858894, "oneway": false, "points": [[-1389.02, -2042.07], [-1405.88, -2022.13], [-1425.8, -1991.78], [-1451.21, -1937.25], [-1487.22, -1870.98], [-1491.98, -1862.18], [-1524.99, -1801.78], [-1528.02, -1795.71], [-1533.32, -1781.75], [-1535.47, -1771.35], [-1536.09, -1761.88], [-1536.18, -1747.0]], "length": 333.54}, {"u": 53444545, "v": 53416782, "oneway": false, "points": [[-1389.02, -2042.07], [-1376.69, -2055.87], [-1367.13, -2063.59], [-1357.62, -2070.42], [-1348.72, -2075.45], [-1333.62, -2080.44], [-1315.95, -2083.83], [-1308.29, -2083.83], [-1268.67, -2080.63], [-1204.99, -2071.11], [-1174.76, -2068.64]], "length": 228.75}, {"u": 53444600, "v": 53483354, "oneway": false, "points": [[-2269.99, -975.03], [-2268.5, -928.82]], "length": 46.24}, {"u": 53444600, "v": 53444613, "oneway": false, "points": [[-2269.99, -975.03], [-2276.14, -974.65], [-2279.82, -974.62], [-2282.57, -974.97], [-2285.03, -975.32], [-2286.56, -975.86], [-2288.24, -976.53], [-2290.52, -977.9], [-2427.15, -1094.6], [-2429.5, -1096.6], [-2436.63, -1102.7]], "length": 213.35}, {"u": 53444600, "v": 53483912, "oneway": false, "points": [[-2269.99, -975.03], [-2270.25, -995.3], [-2270.36, -1003.41]], "length": 28.38}, {"u": 53444613, "v": 53444622, "oneway": false, "points": [[-2436.63, -1102.7], [-2443.04, -1108.13], [-2445.09, -1109.86], [-2571.9, -1217.29], [-2578.84, -1223.17]], "length": 186.38}, {"u": 53444613, "v": 53444600, "oneway": false, "points": [[-2436.63, -1102.7], [-2429.5, -1096.6], [-2427.15, -1094.6], [-2290.52, -977.9], [-2288.24, -976.53], [-2286.56, -975.86], [-2285.03, -975.32], [-2282.57, -974.97], [-2279.82, -974.62], [-2276.14, -974.65], [-2269.99, -975.03]], "length": 213.35}, {"u": 53444613, "v": 53590699, "oneway": false, "points": [[-2436.63, -1102.7], [-2430.95, -1109.02], [-2426.29, -1113.93], [-2422.83, -1118.36], [-2420.18, -1119.55]], "length": 23.8}, {"u": 53444613, "v": 53473273, "oneway": false, "points": [[-2436.63, -1102.7], [-2442.73, -1095.38], [-2467.99, -1065.05], [-2493.27, -1034.88], [-2499.02, -1028.02]], "length": 97.31}, {"u": 53444622, "v": 53444627, "oneway": false, "points": [[-2578.84, -1223.17], [-2585.45, -1228.82], [-2676.31, -1306.46], [-2678.72, -1308.53], [-2685.57, -1314.39]], "length": 140.4}, {"u": 53444622, "v": 53444613, "oneway": false, "points": [[-2578.84, -1223.17], [-2571.9, -1217.29], [-2445.09, -1109.86], [-2443.04, -1108.13], [-2436.63, -1102.7]], "length": 186.38}, {"u": 53444622, "v": 53692040, "oneway": false, "points": [[-2578.84, -1223.17], [-2572.67, -1230.25], [-2567.52, -1235.63], [-2565.92, -1236.76], [-2564.34, -1237.31], [-2563.13, -1237.56], [-2556.51, -1237.89]], "length": 28.34}, {"u": 53444622, "v": 53454630, "oneway": false, "points": [[-2578.84, -1223.17], [-2584.31, -1216.48], [-2609.02, -1186.15], [-2633.98, -1156.83], [-2640.7, -1148.95]], "length": 96.63}, {"u": 53444627, "v": 53444632, "oneway": false, "points": [[-2685.57, -1314.39], [-2692.48, -1320.26], [-2694.54, -1322.0], [-2778.24, -1393.06], [-2784.89, -1398.7]], "length": 130.28}, {"u": 53444627, "v": 53444622, "oneway": false, "points": [[-2685.57, -1314.39], [-2678.72, -1308.53], [-2676.31, -1306.46], [-2585.45, -1228.82], [-2578.84, -1223.17]], "length": 140.4}, {"u": 53444627, "v": 53621164, "oneway": false, "points": [[-2685.57, -1314.39], [-2679.6, -1321.58], [-2654.34, -1351.36], [-2628.79, -1381.47], [-2623.28, -1387.9]], "length": 96.35}, {"u": 53444627, "v": 53473289, "oneway": false, "points": [[-2685.57, -1314.39], [-2691.29, -1307.63], [-2717.04, -1277.22], [-2741.53, -1248.3], [-2749.66, -1238.71]], "length": 99.17}, {"u": 53444632, "v": 53444642, "oneway": false, "points": [[-2784.89, -1398.7], [-2791.56, -1404.37], [-2877.71, -1477.56], [-2884.02, -1482.91]], "length": 130.06}, {"u": 53444632, "v": 53444627, "oneway": false, "points": [[-2784.89, -1398.7], [-2778.24, -1393.06], [-2694.54, -1322.0], [-2692.48, -1320.26], [-2685.57, -1314.39]], "length": 130.28}, {"u": 53444632, "v": 53621168, "oneway": false, "points": [[-2784.89, -1398.7], [-2779.01, -1405.85], [-2752.74, -1436.15], [-2728.16, -1465.72], [-2722.5, -1472.52]], "length": 96.66}, {"u": 53444632, "v": 53473302, "oneway": false, "points": [[-2784.89, -1398.7], [-2790.45, -1391.79], [-2815.61, -1360.55], [-2840.22, -1330.95], [-2847.46, -1322.25]], "length": 98.79}, {"u": 53444642, "v": 53444645, "oneway": false, "points": [[-2884.02, -1482.91], [-2889.65, -1488.32], [-2961.87, -1550.91], [-2974.68, -1561.56], [-2981.6, -1567.3]], "length": 129.02}, {"u": 53444642, "v": 53444632, "oneway": false, "points": [[-2884.02, -1482.91], [-2877.71, -1477.56], [-2791.56, -1404.37], [-2784.89, -1398.7]], "length": 130.06}, {"u": 53444642, "v": 2635256574, "oneway": false, "points": [[-2884.02, -1482.91], [-2878.36, -1489.05], [-2852.08, -1519.51], [-2826.47, -1549.05], [-2821.08, -1555.95]], "length": 96.42}, {"u": 53444642, "v": 53473312, "oneway": false, "points": [[-2884.02, -1482.91], [-2890.19, -1475.82], [-2916.41, -1445.71], [-2940.7, -1415.98], [-2947.51, -1407.65]], "length": 98.48}, {"u": 53444645, "v": 2637056004, "oneway": false, "points": [[-2981.6, -1567.3], [-2989.05, -1573.47], [-2992.35, -1576.21], [-3014.06, -1594.24], [-3036.0, -1612.44], [-3059.89, -1632.27], [-3074.92, -1644.75], [-3081.15, -1649.92]], "length": 129.38}, {"u": 53444645, "v": 53444642, "oneway": false, "points": [[-2981.6, -1567.3], [-2974.68, -1561.56], [-2961.87, -1550.91], [-2889.65, -1488.32], [-2884.02, -1482.91]], "length": 129.02}, {"u": 53444645, "v": 2635256569, "oneway": false, "points": [[-2981.6, -1567.3], [-2976.5, -1573.33], [-2951.18, -1603.29], [-2925.69, -1633.46], [-2919.67, -1640.57]], "length": 95.94}, {"u": 53444645, "v": 53473321, "oneway": false, "points": [[-2981.6, -1567.3], [-2988.27, -1559.39], [-3014.34, -1528.54], [-3039.38, -1498.91], [-3045.66, -1491.48]], "length": 99.26}, {"u": 53445464, "v": 53445467, "oneway": false, "points": [[969.31, 361.18], [976.68, 353.06], [1012.66, 313.49], [1030.02, 294.39], [1031.78, 292.43], [1038.69, 284.86]], "length": 103.14}, {"u": 53445464, "v": 3235649725, "oneway": false, "points": [[969.31, 361.18], [976.03, 367.11], [998.25, 386.85], [1036.38, 420.68], [1049.27, 432.13], [1082.14, 461.29], [1088.48, 466.92], [1104.87, 481.47], [1112.47, 487.98], [1120.29, 494.67]], "length": 201.53}, {"u": 53445464, "v": 53432331, "oneway": false, "points": [[969.31, 361.18], [961.15, 353.71], [947.21, 340.68], [938.83, 332.91], [930.95, 325.58], [915.43, 311.17], [889.5, 287.1], [883.13, 281.19], [881.2, 279.4], [827.13, 229.67], [820.62, 223.16]], "length": 202.88}, {"u": 53445464, "v": 53407975, "oneway": false, "points": [[969.31, 361.18], [963.5, 367.55], [940.8, 392.54], [929.49, 404.97], [901.64, 435.62], [889.79, 448.64], [886.26, 452.54], [865.93, 474.89], [840.96, 502.36], [837.68, 505.98], [828.42, 516.12], [827.19, 517.51], [798.75, 548.8], [774.02, 576.01], [766.33, 584.47]], "length": 301.76}, {"u": 53445467, "v": 3235650820, "oneway": false, "points": [[1038.69, 284.86], [1045.06, 277.85], [1045.73, 277.11], [1097.81, 219.83], [1099.46, 218.02], [1107.8, 208.83]], "length": 102.75}, {"u": 53445467, "v": 53445464, "oneway": false, "points": [[1038.69, 284.86], [1031.78, 292.43], [1030.02, 294.39], [1012.66, 313.49], [976.68, 353.06], [969.31, 361.18]], "length": 103.14}, {"u": 53445467, "v": 53461456, "oneway": false, "points": [[1038.69, 284.86], [1031.69, 278.49], [911.52, 169.01]], "length": 172.03}, {"u": 53445467, "v": 53461463, "oneway": false, "points": [[1038.69, 284.86], [1044.55, 290.21], [1180.42, 413.98], [1187.9, 420.81]], "length": 201.86}, {"u": 53447046, "v": 449956571, "oneway": false, "points": [[2538.45, 2283.54], [2530.63, 2291.09], [2527.57, 2294.04], [2510.4, 2310.6], [2485.33, 2334.79], [2478.7, 2341.25]], "length": 83.06}, {"u": 53447046, "v": 2948595023, "oneway": true, "points": [[2538.45, 2283.54], [2533.34, 2277.91], [2529.21, 2273.35], [2520.58, 2262.06], [2514.68, 2251.84], [2512.31, 2247.76], [2505.7, 2236.32]], "length": 57.69}, {"u": 53447046, "v": 11205598924, "oneway": false, "points": [[2538.45, 2283.54], [2543.42, 2291.08], [2559.74, 2310.38], [2572.94, 2324.86]], "length": 53.9}, {"u": 53447075, "v": 2634693266, "oneway": false, "points": [[-22.69, -2070.88], [-12.51, -2071.32]], "length": 10.18}, {"u": 53447075, "v": 53447076, "oneway": false, "points": [[-22.69, -2070.88], [-22.91, -2078.02], [-27.8, -2216.37], [-28.2, -2227.55]], "length": 156.77}, {"u": 53447075, "v": 2634693264, "oneway": false, "points": [[-22.69, -2070.88], [-25.79, -2070.73], [-34.46, -2070.35]], "length": 11.78}, {"u": 53447076, "v": 53447075, "oneway": false, "points": [[-28.2, -2227.55], [-27.8, -2216.37], [-22.91, -2078.02], [-22.69, -2070.88]], "length": 156.77}, {"u": 53447076, "v": 53465696, "oneway": false, "points": [[-28.2, -2227.55], [-13.77, -2234.97], [-8.64, -2242.22], [-5.78, -2247.52]], "length": 31.13}, {"u": 53447076, "v": 3937040992, "oneway": false, "points": [[-28.2, -2227.55], [-37.57, -2225.58], [-45.07, -2224.73], [-60.46, -2223.9]], "length": 32.54}, {"u": 53447618, "v": 1179796036, "oneway": false, "points": [[-1686.79, -1973.96], [-1679.43, -1970.01], [-1624.13, -1940.35], [-1620.64, -1938.46], [-1607.85, -1931.53], [-1584.98, -1918.69], [-1582.69, -1917.4], [-1576.5, -1913.92]], "length": 125.58}, {"u": 53447618, "v": 5497859257, "oneway": false, "points": [[-1686.79, -1973.96], [-1682.14, -1982.49], [-1681.05, -1984.48], [-1607.38, -2119.63], [-1585.68, -2156.04], [-1576.92, -2163.18], [-1567.5, -2167.45], [-1556.3, -2168.84], [-1538.26, -2171.06], [-1523.45, -2171.95], [-1503.59, -2172.64], [-1498.93, -2172.81], [-1488.69, -2173.17]], "length": 309.02}, {"u": 53447618, "v": 53447620, "oneway": false, "points": [[-1686.79, -1973.96], [-1695.27, -1978.51], [-1730.21, -1997.21], [-1763.48, -2016.01], [-1770.22, -2019.82]], "length": 95.21}, {"u": 53447618, "v": 2573847767, "oneway": false, "points": [[-1686.79, -1973.96], [-1690.47, -1967.22], [-1691.26, -1965.76], [-1721.38, -1910.66], [-1723.38, -1907.01]], "length": 76.3}, {"u": 53447620, "v": 53612039, "oneway": false, "points": [[-1770.22, -2019.82], [-1765.63, -2028.15], [-1726.21, -2099.77], [-1698.5, -2151.03], [-1666.05, -2207.42], [-1643.58, -2248.19], [-1635.55, -2259.45], [-1622.97, -2271.34]], "length": 292.29}, {"u": 53447620, "v": 2573847776, "oneway": false, "points": [[-1770.22, -2019.82], [-1774.32, -2012.19], [-1775.44, -2010.18], [-1803.41, -1959.64], [-1804.67, -1957.37], [-1807.47, -1951.97]], "length": 77.41}, {"u": 53447620, "v": 1153239288, "oneway": false, "points": [[-1770.22, -2019.82], [-1777.01, -2023.52], [-1862.91, -2070.22], [-1866.53, -2071.95], [-1873.7, -2075.39]], "length": 117.47}, {"u": 53447620, "v": 53447618, "oneway": false, "points": [[-1770.22, -2019.82], [-1763.48, -2016.01], [-1730.21, -1997.21], [-1695.27, -1978.51], [-1686.79, -1973.96]], "length": 95.21}, {"u": 53453124, "v": 53536993, "oneway": false, "points": [[1038.22, 1182.83], [1045.44, 1189.44], [1180.86, 1312.93], [1188.17, 1319.59]], "length": 202.95}, {"u": 53453124, "v": 349378518, "oneway": false, "points": [[1038.22, 1182.83], [1032.31, 1177.45], [896.73, 1054.21], [890.13, 1048.3]], "length": 200.08}, {"u": 53453124, "v": 53453137, "oneway": false, "points": [[1038.22, 1182.83], [1031.63, 1190.12], [1030.22, 1191.66], [977.52, 1249.81], [971.3, 1256.68]], "length": 99.66}, {"u": 53453124, "v": 53430027, "oneway": false, "points": [[1038.22, 1182.83], [1043.92, 1176.59], [1046.01, 1174.27], [1067.86, 1150.29], [1079.11, 1137.93]], "length": 60.74}, {"u": 53453137, "v": 3859915626, "oneway": false, "points": [[971.3, 1256.68], [978.68, 1263.49], [980.57, 1265.24], [1026.98, 1308.07], [1040.7, 1320.59], [1045.58, 1325.04], [1056.03, 1334.58], [1071.24, 1348.48], [1095.03, 1370.19], [1111.28, 1385.02], [1113.32, 1386.88], [1117.22, 1390.49]], "length": 197.99}, {"u": 53453137, "v": 1699123250, "oneway": false, "points": [[971.3, 1256.68], [965.19, 1251.12], [963.17, 1249.28], [833.0, 1130.96], [829.99, 1128.31], [823.16, 1122.02]], "length": 200.19}, {"u": 53453137, "v": 53453147, "oneway": false, "points": [[971.3, 1256.68], [965.82, 1262.93], [912.18, 1324.2], [910.2, 1326.4], [904.36, 1332.69]], "length": 101.29}, {"u": 53453137, "v": 53453124, "oneway": false, "points": [[971.3, 1256.68], [977.52, 1249.81], [1030.22, 1191.66], [1031.63, 1190.12], [1038.22, 1182.83]], "length": 99.66}, {"u": 53453147, "v": 53453152, "oneway": false, "points": [[904.36, 1332.69], [900.74, 1336.74], [898.13, 1339.57], [896.2, 1341.67], [861.67, 1377.91], [844.12, 1397.35], [842.46, 1399.17], [836.17, 1406.13]], "length": 100.23}, {"u": 53453147, "v": 53536998, "oneway": true, "points": [[904.36, 1332.69], [910.36, 1338.2], [951.65, 1376.11], [1043.14, 1460.09], [1045.38, 1462.0], [1052.84, 1467.96]], "length": 200.88}, {"u": 53453147, "v": 53453137, "oneway": false, "points": [[904.36, 1332.69], [910.2, 1326.4], [912.18, 1324.2], [965.82, 1262.93], [971.3, 1256.68]], "length": 101.29}, {"u": 53453152, "v": 53437716, "oneway": false, "points": [[836.17, 1406.13], [831.12, 1411.65], [828.33, 1414.85], [811.51, 1433.39], [805.44, 1440.41]], "length": 46.04}, {"u": 53453152, "v": 53453147, "oneway": false, "points": [[836.17, 1406.13], [842.46, 1399.17], [844.12, 1397.35], [861.67, 1377.91], [896.2, 1341.67], [898.13, 1339.57], [900.74, 1336.74], [904.36, 1332.69]], "length": 100.23}, {"u": 53453152, "v": 1699123277, "oneway": true, "points": [[836.17, 1406.13], [829.72, 1400.35], [693.01, 1277.9], [687.09, 1272.6]], "length": 200.14}, {"u": 53453164, "v": 53433662, "oneway": false, "points": [[781.03, 1467.33], [716.43, 1539.07]], "length": 96.54}, {"u": 53453164, "v": 53437716, "oneway": false, "points": [[781.03, 1467.33], [805.44, 1440.41]], "length": 36.34}, {"u": 53453164, "v": 53433643, "oneway": false, "points": [[781.03, 1467.33], [774.67, 1461.36], [712.02, 1402.45]], "length": 94.72}, {"u": 53453173, "v": 53433662, "oneway": false, "points": [[640.26, 1616.59], [645.15, 1614.67], [646.75, 1613.81], [649.61, 1612.28], [653.59, 1608.99], [684.51, 1573.88], [710.5, 1545.54], [716.43, 1539.07]], "length": 109.49}, {"u": 53453173, "v": 53578339, "oneway": false, "points": [[640.26, 1616.59], [637.72, 1608.43], [617.24, 1542.88], [585.86, 1444.41], [569.63, 1393.88]], "length": 233.64}, {"u": 53453173, "v": 53672943, "oneway": false, "points": [[640.26, 1616.59], [642.28, 1623.2], [643.71, 1627.88], [645.65, 1633.07], [648.06, 1638.71], [650.68, 1642.19], [690.1, 1686.47], [696.0, 1693.11]], "length": 96.0}, {"u": 53454630, "v": 53444622, "oneway": false, "points": [[-2640.7, -1148.95], [-2633.98, -1156.83], [-2609.02, -1186.15], [-2584.31, -1216.48], [-2578.84, -1223.17]], "length": 96.63}, {"u": 53454630, "v": 4874980024, "oneway": false, "points": [[-2640.7, -1148.95], [-2646.4, -1142.39], [-2672.13, -1112.5], [-2695.56, -1084.98], [-2698.06, -1082.03], [-2703.37, -1075.61]], "length": 96.47}, {"u": 53454630, "v": 53473289, "oneway": false, "points": [[-2640.7, -1148.95], [-2648.42, -1155.18], [-2740.56, -1231.21], [-2743.21, -1233.39], [-2749.66, -1238.71]], "length": 141.17}, {"u": 53454630, "v": 53473273, "oneway": false, "points": [[-2640.7, -1148.95], [-2633.82, -1142.89], [-2511.24, -1038.43], [-2506.6, -1034.48], [-2499.02, -1028.02]], "length": 186.27}, {"u": 53454656, "v": 53621162, "oneway": false, "points": [[-2558.65, -1334.23], [-2587.08, -1357.89]], "length": 36.99}, {"u": 53454656, "v": 53454658, "oneway": false, "points": [[-2558.65, -1334.23], [-2558.97, -1352.27], [-2559.09, -1358.71]], "length": 24.49}, {"u": 53454656, "v": 53692040, "oneway": false, "points": [[-2558.65, -1334.23], [-2557.27, -1298.6], [-2556.55, -1270.9], [-2556.52, -1250.97], [-2556.51, -1237.89]], "length": 96.37}, {"u": 53454658, "v": 53621162, "oneway": false, "points": [[-2559.09, -1358.71], [-2587.08, -1357.89]], "length": 28.0}, {"u": 53454658, "v": 3812685626, "oneway": false, "points": [[-2559.09, -1358.71], [-2559.13, -1369.09], [-2559.26, -1372.58], [-2560.91, -1418.94], [-2562.04, -1437.43], [-2564.28, -1439.73], [-2566.52, -1442.05], [-2572.8, -1448.51]], "length": 94.23}, {"u": 53454658, "v": 53454656, "oneway": false, "points": [[-2559.09, -1358.71], [-2558.97, -1352.27], [-2558.65, -1334.23]], "length": 24.49}, {"u": 53454658, "v": 2637157420, "oneway": false, "points": [[-2559.09, -1358.71], [-2549.91, -1359.0], [-2491.41, -1360.58]], "length": 67.71}, {"u": 53455651, "v": 53455653, "oneway": false, "points": [[192.92, 967.06], [237.95, 1007.79]], "length": 60.72}, {"u": 53455653, "v": 53455651, "oneway": false, "points": [[237.95, 1007.79], [192.92, 967.06]], "length": 60.72}, {"u": 53455653, "v": 53455657, "oneway": false, "points": [[237.95, 1007.79], [279.02, 1044.92], [310.52, 1073.42], [316.62, 1078.94]], "length": 106.08}, {"u": 53455653, "v": 53631422, "oneway": true, "points": [[237.95, 1007.79], [240.29, 1005.12], [299.35, 937.55], [301.69, 934.87], [308.0, 927.65]], "length": 106.43}, {"u": 53455657, "v": 53672961, "oneway": false, "points": [[316.62, 1078.94], [283.12, 1116.06]], "length": 50.0}, {"u": 53455657, "v": 53455653, "oneway": false, "points": [[316.62, 1078.94], [310.52, 1073.42], [279.02, 1044.92], [237.95, 1007.79]], "length": 106.08}, {"u": 53455657, "v": 1699123266, "oneway": false, "points": [[316.62, 1078.94], [381.88, 1006.66], [386.67, 1001.36]], "length": 104.53}, {"u": 53456047, "v": 53456049, "oneway": true, "points": [[-2298.61, -227.44], [-2298.91, -236.95], [-2299.0, -241.08], [-2299.3, -255.49], [-2299.33, -259.08], [-2299.57, -268.95]], "length": 41.52}, {"u": 53456047, "v": 53589716, "oneway": true, "points": [[-2298.61, -227.44], [-2319.41, -226.13], [-2334.73, -224.54], [-2345.3, -222.65]], "length": 46.97}, {"u": 53456049, "v": 53596818, "oneway": true, "points": [[-2299.57, -268.95], [-2266.39, -285.01], [-2263.01, -286.65], [-2251.76, -292.26]], "length": 53.19}, {"u": 53456081, "v": 1425250001, "oneway": false, "points": [[354.09, -130.97], [329.86, -104.64], [328.93, -103.63], [324.26, -98.55]], "length": 44.06}, {"u": 53461150, "v": 316302550, "oneway": false, "points": [[306.65, 789.98], [312.62, 783.43], [313.75, 782.2], [368.17, 722.54], [376.04, 713.9]], "length": 102.97}, {"u": 53461150, "v": 1699123271, "oneway": true, "points": [[306.65, 789.98], [313.28, 796.34], [362.2, 842.54], [365.25, 845.43], [379.79, 858.93], [380.59, 859.66], [387.59, 865.97], [417.25, 891.71], [426.22, 899.5], [448.66, 919.36], [455.68, 925.61]], "length": 201.54}, {"u": 53461150, "v": 53461154, "oneway": false, "points": [[306.65, 789.98], [301.67, 795.45], [300.54, 796.68], [297.64, 799.86], [258.14, 843.16], [245.45, 857.08], [244.66, 857.95], [239.03, 864.11]], "length": 100.34}, {"u": 53461154, "v": 316292008, "oneway": true, "points": [[239.03, 864.11], [232.71, 858.23], [96.09, 735.58], [89.46, 729.32]], "length": 201.35}, {"u": 53461154, "v": 2705148524, "oneway": false, "points": [[239.03, 864.11], [232.64, 871.12], [230.33, 873.66], [171.7, 937.93]], "length": 99.92}, {"u": 53461154, "v": 53461150, "oneway": false, "points": [[239.03, 864.11], [244.66, 857.95], [245.45, 857.08], [258.14, 843.16], [297.64, 799.86], [300.54, 796.68], [301.67, 795.45], [306.65, 789.98]], "length": 100.34}, {"u": 53461430, "v": 53461432, "oneway": false, "points": [[2205.52, 1339.92], [2212.43, 1344.64], [2340.47, 1431.93], [2378.78, 1457.57], [2384.47, 1461.37]], "length": 216.28}, {"u": 53461430, "v": 53437418, "oneway": false, "points": [[2205.52, 1339.92], [2201.35, 1337.16], [2192.15, 1331.07], [2178.18, 1320.9], [2162.74, 1307.78], [2149.04, 1294.81], [2143.58, 1289.64]], "length": 79.95}, {"u": 53461430, "v": 53628825, "oneway": false, "points": [[2205.52, 1339.92], [2211.23, 1333.79], [2213.39, 1331.47], [2262.99, 1278.27], [2268.62, 1272.24]], "length": 92.54}, {"u": 53461430, "v": 53537030, "oneway": false, "points": [[2205.52, 1339.92], [2200.52, 1347.83], [2199.18, 1349.93], [2188.98, 1366.06], [2156.41, 1413.34], [2153.37, 1417.74]], "length": 93.69}, {"u": 53461432, "v": 53461443, "oneway": false, "points": [[2384.47, 1461.37], [2389.67, 1465.53], [2398.72, 1472.76], [2433.67, 1496.0], [2454.98, 1507.7], [2457.74, 1509.22], [2464.21, 1511.93], [2470.68, 1514.64], [2477.83, 1515.55], [2478.91, 1515.69], [2487.2, 1516.73], [2511.28, 1517.1], [2520.61, 1517.45]], "length": 151.78}, {"u": 53461432, "v": 53461430, "oneway": false, "points": [[2384.47, 1461.37], [2378.78, 1457.57], [2340.47, 1431.93], [2212.43, 1344.64], [2205.52, 1339.92]], "length": 216.28}, {"u": 53461432, "v": 53589760, "oneway": false, "points": [[2384.47, 1461.37], [2388.63, 1455.23], [2390.01, 1453.21], [2412.63, 1419.79], [2420.31, 1411.91]], "length": 61.22}, {"u": 53461432, "v": 53537040, "oneway": false, "points": [[2384.47, 1461.37], [2377.92, 1470.41], [2377.14, 1471.48], [2332.09, 1533.63], [2328.64, 1538.41]], "length": 95.14}, {"u": 53461443, "v": 53461432, "oneway": false, "points": [[2520.61, 1517.45], [2511.28, 1517.1], [2487.2, 1516.73], [2478.91, 1515.69], [2477.83, 1515.55], [2470.68, 1514.64], [2464.21, 1511.93], [2457.74, 1509.22], [2454.98, 1507.7], [2433.67, 1496.0], [2398.72, 1472.76], [2389.67, 1465.53], [2384.47, 1461.37]], "length": 151.78}, {"u": 53461443, "v": 53596324, "oneway": false, "points": [[2520.61, 1517.45], [2529.3, 1517.69], [2543.01, 1518.08], [2610.22, 1520.62]], "length": 89.67}, {"u": 53461443, "v": 53496307, "oneway": false, "points": [[2520.61, 1517.45], [2521.11, 1525.69], [2521.96, 1540.01], [2522.57, 1550.15], [2525.03, 1591.58], [2526.93, 1623.65]], "length": 106.39}, {"u": 53461443, "v": 53498447, "oneway": false, "points": [[2520.61, 1517.45], [2520.29, 1509.66], [2518.84, 1474.39], [2516.01, 1434.68]], "length": 82.91}, {"u": 53461447, "v": 53461450, "oneway": false, "points": [[730.51, 113.06], [768.1, 122.21], [786.75, 127.17], [804.27, 131.82], [828.2, 138.21], [848.97, 143.75], [874.74, 150.61], [885.7, 153.52]], "length": 160.39}, {"u": 53461450, "v": 53461447, "oneway": false, "points": [[885.7, 153.52], [874.74, 150.61], [848.97, 143.75], [828.2, 138.21], [804.27, 131.82], [786.75, 127.17], [768.1, 122.21], [730.51, 113.06]], "length": 160.39}, {"u": 53461450, "v": 53461456, "oneway": false, "points": [[885.7, 153.52], [894.1, 155.65], [897.9, 158.55], [905.32, 163.94], [911.52, 169.01]], "length": 30.62}, {"u": 53461450, "v": 2707919647, "oneway": false, "points": [[885.7, 153.52], [893.53, 146.32], [902.13, 131.95], [902.81, 130.69], [906.35, 124.15]], "length": 36.25}, {"u": 53461450, "v": 53432331, "oneway": false, "points": [[885.7, 153.52], [878.83, 160.88], [844.01, 198.15], [828.07, 215.21], [826.83, 216.52], [820.62, 223.16]], "length": 95.32}, {"u": 53461456, "v": 53461450, "oneway": false, "points": [[911.52, 169.01], [905.32, 163.94], [897.9, 158.55], [894.1, 155.65], [885.7, 153.52]], "length": 30.62}, {"u": 53461456, "v": 53445467, "oneway": false, "points": [[911.52, 169.01], [1031.69, 278.49], [1038.69, 284.86]], "length": 172.03}, {"u": 53461463, "v": 53461467, "oneway": false, "points": [[1187.9, 420.81], [1194.02, 426.65], [1224.86, 454.07], [1311.36, 533.98], [1328.64, 550.38], [1335.0, 555.73]], "length": 199.62}, {"u": 53461463, "v": 53445467, "oneway": false, "points": [[1187.9, 420.81], [1180.42, 413.98], [1044.55, 290.21], [1038.69, 284.86]], "length": 201.86}, {"u": 53461463, "v": 53667261, "oneway": true, "points": [[1187.9, 420.81], [1194.28, 414.19], [1207.34, 401.88], [1219.15, 388.06], [1232.74, 368.59], [1245.57, 353.66], [1247.4, 351.53], [1253.49, 344.42]], "length": 100.92}, {"u": 53461463, "v": 3235649725, "oneway": false, "points": [[1187.9, 420.81], [1180.73, 428.65], [1179.23, 430.3], [1145.53, 467.09], [1127.7, 486.58], [1125.97, 488.46], [1120.29, 494.67]], "length": 100.13}, {"u": 53461467, "v": 53461463, "oneway": false, "points": [[1335.0, 555.73], [1328.64, 550.38], [1311.36, 533.98], [1224.86, 454.07], [1194.02, 426.65], [1187.9, 420.81]], "length": 199.62}, {"u": 53461467, "v": 53461474, "oneway": false, "points": [[1335.0, 555.73], [1341.9, 561.86], [1365.5, 582.79], [1379.99, 595.64], [1396.66, 610.44], [1478.53, 685.22], [1484.71, 690.68]], "length": 201.56}, {"u": 53461467, "v": 316305099, "oneway": false, "points": [[1335.0, 555.73], [1342.38, 547.64], [1397.31, 486.85], [1403.59, 479.89]], "length": 102.25}, {"u": 53461467, "v": 53432339, "oneway": false, "points": [[1335.0, 555.73], [1328.61, 562.82], [1302.49, 591.79], [1301.6, 592.77], [1294.19, 600.98], [1293.96, 601.23], [1274.72, 622.53], [1268.58, 629.32]], "length": 99.14}, {"u": 53461474, "v": 2713353784, "oneway": false, "points": [[1484.71, 690.68], [1492.13, 682.58], [1522.14, 648.93], [1546.68, 623.44], [1553.48, 616.38]], "length": 101.26}, {"u": 53461474, "v": 2925570317, "oneway": false, "points": [[1484.71, 690.68], [1478.7, 698.02], [1423.44, 759.49], [1417.61, 765.99]], "length": 100.88}, {"u": 53461474, "v": 53461467, "oneway": false, "points": [[1484.71, 690.68], [1478.53, 685.22], [1396.66, 610.44], [1379.99, 595.64], [1365.5, 582.79], [1341.9, 561.86], [1335.0, 555.73]], "length": 201.56}, {"u": 53461474, "v": 53461478, "oneway": false, "points": [[1484.71, 690.68], [1491.76, 697.28], [1557.23, 753.59], [1627.8, 819.6], [1634.02, 825.4]], "length": 201.15}, {"u": 53461478, "v": 53432346, "oneway": false, "points": [[1634.02, 825.4], [1627.46, 832.83], [1575.81, 891.27], [1572.65, 894.5], [1567.1, 900.19]], "length": 100.37}, {"u": 53461478, "v": 53571775, "oneway": false, "points": [[1634.02, 825.4], [1640.48, 818.29], [1694.31, 760.01], [1695.42, 758.88], [1702.69, 751.47]], "length": 100.91}, {"u": 53461478, "v": 53461474, "oneway": false, "points": [[1634.02, 825.4], [1627.8, 819.6], [1557.23, 753.59], [1491.76, 697.28], [1484.71, 690.68]], "length": 201.15}, {"u": 53461478, "v": 53461491, "oneway": false, "points": [[1634.02, 825.4], [1641.44, 832.12], [1777.68, 955.55], [1783.8, 961.1]], "length": 202.11}, {"u": 53461491, "v": 53560789, "oneway": false, "points": [[1783.8, 961.1], [1789.3, 955.04], [1810.37, 932.03], [1844.79, 894.14], [1851.17, 887.12]], "length": 100.06}, {"u": 53461491, "v": 53432349, "oneway": false, "points": [[1783.8, 961.1], [1777.19, 968.43], [1740.43, 1009.11], [1723.86, 1027.44], [1721.83, 1029.69], [1716.1, 1036.03]], "length": 100.99}, {"u": 53461491, "v": 53461499, "oneway": false, "points": [[1783.8, 961.1], [1790.04, 966.78], [1806.6, 982.81], [1877.31, 1047.15], [1886.64, 1055.66], [1916.32, 1082.73], [1931.82, 1096.87]], "length": 200.86}, {"u": 53461491, "v": 53461478, "oneway": false, "points": [[1783.8, 961.1], [1777.68, 955.55], [1641.44, 832.12], [1634.02, 825.4]], "length": 202.11}, {"u": 53461499, "v": 53432353, "oneway": false, "points": [[1931.82, 1096.87], [1925.65, 1103.41], [1888.39, 1142.99], [1872.49, 1162.78], [1866.54, 1169.47], [1852.55, 1185.22], [1846.75, 1191.74]], "length": 127.48}, {"u": 53461499, "v": 53461491, "oneway": false, "points": [[1931.82, 1096.87], [1916.32, 1082.73], [1886.64, 1055.66], [1877.31, 1047.15], [1806.6, 982.81], [1790.04, 966.78], [1783.8, 961.1]], "length": 200.86}, {"u": 53461499, "v": 53461500, "oneway": false, "points": [[1931.82, 1096.87], [1939.02, 1102.95], [1982.5, 1140.86]], "length": 67.11}, {"u": 53461500, "v": 53432356, "oneway": true, "points": [[1982.5, 1140.86], [1975.87, 1148.17], [1949.4, 1178.72], [1945.48, 1183.11], [1941.76, 1186.48], [1936.06, 1191.21], [1920.75, 1203.7], [1905.45, 1216.25], [1891.39, 1227.32], [1888.84, 1229.5], [1882.25, 1234.53]], "length": 137.69}, {"u": 53461500, "v": 53461499, "oneway": false, "points": [[1982.5, 1140.86], [1939.02, 1102.95], [1931.82, 1096.87]], "length": 67.11}, {"u": 53461500, "v": 53461503, "oneway": false, "points": [[1982.5, 1140.86], [2015.49, 1171.43], [2020.45, 1175.8]], "length": 51.59}, {"u": 53461503, "v": 2707919868, "oneway": false, "points": [[2020.45, 1175.8], [2029.08, 1167.98], [2084.33, 1117.81], [2094.8, 1107.63]], "length": 100.88}, {"u": 53461503, "v": 2948601586, "oneway": false, "points": [[2020.45, 1175.8], [2013.26, 1182.61], [1954.45, 1238.28], [1951.58, 1240.87], [1923.15, 1266.53], [1922.01, 1267.59], [1915.29, 1273.87]], "length": 143.8}, {"u": 53461503, "v": 53461500, "oneway": false, "points": [[2020.45, 1175.8], [2015.49, 1171.43], [1982.5, 1140.86]], "length": 51.59}, {"u": 53461749, "v": 53607075, "oneway": false, "points": [[-2010.6, -238.86], [-2007.66, -244.21], [-2003.41, -249.59], [-2000.59, -252.66], [-1997.06, -256.99], [-1994.7, -260.21], [-1992.74, -263.57], [-1990.22, -268.99], [-1987.74, -276.26], [-1986.19, -283.42], [-1985.34, -296.27], [-1985.5, -311.43], [-1986.55, -356.54], [-1986.64, -360.32], [-1986.96, -369.87]], "length": 138.08}, {"u": 53461749, "v": 1345424871, "oneway": true, "points": [[-2010.6, -238.86], [-2029.45, -238.13], [-2072.94, -236.29], [-2075.52, -236.18], [-2108.72, -234.82], [-2111.9, -234.69], [-2115.77, -234.58]], "length": 105.27}, {"u": 53461749, "v": 37924361, "oneway": false, "points": [[-2010.6, -238.86], [-2012.31, -234.71], [-2016.47, -225.05], [-2017.0, -222.98], [-2017.27, -222.24], [-2020.27, -213.31], [-2021.07, -207.95], [-2021.66, -202.74], [-2021.92, -197.54], [-2020.25, -140.9], [-2020.19, -139.52], [-2019.93, -130.11], [-2018.88, -94.44], [-2017.98, -63.68], [-2017.89, -60.94], [-2017.41, -44.36]], "length": 196.46}, {"u": 53461758, "v": 53456047, "oneway": true, "points": [[-2249.34, -229.03], [-2298.61, -227.44]], "length": 49.3}, {"u": 53461758, "v": 53596818, "oneway": false, "points": [[-2249.34, -229.03], [-2249.71, -238.51], [-2249.87, -242.74], [-2251.25, -278.77], [-2251.41, -283.14], [-2251.76, -292.26]], "length": 63.28}, {"u": 53461764, "v": 452866506, "oneway": true, "points": [[-2368.48, -219.21], [-2408.26, -219.65], [-2413.67, -219.71], [-2428.43, -218.72], [-2441.7, -217.81], [-2461.78, -215.63], [-2476.95, -213.83], [-2487.8, -212.51], [-2497.96, -210.87], [-2510.34, -208.33], [-2518.73, -205.72], [-2527.72, -202.68], [-2539.57, -197.93], [-2544.94, -195.91], [-2552.18, -194.32], [-2558.02, -194.11], [-2565.47, -195.05], [-2573.91, -197.66]], "length": 209.01}, {"u": 53461764, "v": 6577823481, "oneway": true, "points": [[-2368.48, -219.21], [-2407.98, -214.64], [-2413.4, -214.04], [-2416.0, -213.81]], "length": 47.83}, {"u": 53461796, "v": 53456049, "oneway": true, "points": [[-2479.05, -226.28], [-2432.78, -229.99], [-2414.25, -231.46], [-2380.4, -234.73], [-2365.32, -237.61], [-2360.32, -239.46], [-2353.31, -242.06], [-2341.24, -248.3], [-2299.57, -268.95]], "length": 187.27}, {"u": 53461816, "v": 53489932, "oneway": false, "points": [[-3049.58, -232.97], [-3051.11, -224.39], [-3051.5, -222.21], [-3057.82, -186.74]], "length": 46.96}, {"u": 53461816, "v": 1180005830, "oneway": false, "points": [[-3049.58, -232.97], [-2984.85, -222.95], [-2976.41, -221.64], [-2968.0, -220.34]], "length": 82.55}, {"u": 53461816, "v": 53461818, "oneway": false, "points": [[-3049.58, -232.97], [-3077.67, -237.32], [-3085.76, -238.57], [-3105.46, -241.63], [-3113.32, -242.85]], "length": 64.5}, {"u": 53461818, "v": 53475312, "oneway": false, "points": [[-3113.32, -242.85], [-3111.89, -251.94], [-3111.38, -254.83], [-3106.4, -286.77], [-3101.84, -316.58], [-3101.42, -319.36], [-3100.07, -328.26]], "length": 86.43}, {"u": 53461818, "v": 53475305, "oneway": false, "points": [[-3113.32, -242.85], [-3114.73, -234.09], [-3115.15, -231.36], [-3126.4, -160.42]], "length": 83.46}, {"u": 53461818, "v": 53461816, "oneway": false, "points": [[-3113.32, -242.85], [-3105.46, -241.63], [-3085.76, -238.57], [-3077.67, -237.32], [-3049.58, -232.97]], "length": 64.5}, {"u": 53461818, "v": 53461820, "oneway": false, "points": [[-3113.32, -242.85], [-3121.14, -244.06], [-3178.55, -252.94]], "length": 66.01}, {"u": 53461820, "v": 53659829, "oneway": false, "points": [[-3178.55, -252.94], [-3179.85, -244.76], [-3180.46, -240.88], [-3192.28, -162.4]], "length": 91.57}, {"u": 53461820, "v": 53461818, "oneway": false, "points": [[-3178.55, -252.94], [-3121.14, -244.06], [-3113.32, -242.85]], "length": 66.01}, {"u": 53462362, "v": 13030502567, "oneway": false, "points": [[-2664.76, -911.6], [-2661.81, -909.08]], "length": 3.88}, {"u": 53462362, "v": 1180005819, "oneway": false, "points": [[-2664.76, -911.6], [-2670.63, -904.46], [-2670.59, -900.63], [-2670.24, -872.0], [-2669.79, -862.37], [-2669.63, -843.24], [-2668.24, -834.66]], "length": 79.17}, {"u": 53462362, "v": 3812685575, "oneway": false, "points": [[-2664.76, -911.6], [-2675.62, -922.77], [-2682.89, -928.78], [-2692.75, -937.15], [-2697.84, -941.67], [-2750.4, -986.57], [-2760.16, -995.4], [-2766.81, -1001.86]], "length": 136.31}, {"u": 53462374, "v": 4874980027, "oneway": false, "points": [[-2878.44, -1095.8], [-2868.82, -1101.56], [-2842.4, -1130.29], [-2817.1, -1160.07], [-2811.27, -1166.51]], "length": 98.01}, {"u": 53462374, "v": 53421621, "oneway": false, "points": [[-2878.44, -1095.8], [-2887.17, -1090.97], [-2902.58, -1087.11], [-2905.48, -1086.63], [-2908.79, -1086.64]], "length": 32.11}, {"u": 53462374, "v": 53462383, "oneway": false, "points": [[-2878.44, -1095.8], [-2893.34, -1109.47], [-2953.4, -1160.61], [-2965.61, -1171.1], [-2972.52, -1177.01]], "length": 124.29}, {"u": 53462374, "v": 3812685579, "oneway": false, "points": [[-2878.44, -1095.8], [-2868.07, -1087.69], [-2824.54, -1050.27], [-2811.15, -1038.9], [-2805.18, -1033.27]], "length": 96.34}, {"u": 53462383, "v": 53556400, "oneway": false, "points": [[-2972.52, -1177.01], [-2966.99, -1183.95], [-2964.9, -1186.45], [-2942.91, -1213.63], [-2915.87, -1244.0], [-2910.31, -1249.96]], "length": 95.91}, {"u": 53462383, "v": 53610868, "oneway": false, "points": [[-2972.52, -1177.01], [-2978.77, -1169.39], [-2980.09, -1167.97], [-2990.24, -1154.94], [-3003.24, -1138.76], [-3024.18, -1112.23], [-3029.4, -1105.42]], "length": 91.45}, {"u": 53462383, "v": 53462390, "oneway": false, "points": [[-2972.52, -1177.01], [-2979.45, -1183.08], [-3043.22, -1237.19], [-3062.67, -1253.65], [-3071.18, -1260.56]], "length": 129.29}, {"u": 53462383, "v": 53462374, "oneway": false, "points": [[-2972.52, -1177.01], [-2965.61, -1171.1], [-2953.4, -1160.61], [-2893.34, -1109.47], [-2878.44, -1095.8]], "length": 124.29}, {"u": 53462390, "v": 53556402, "oneway": false, "points": [[-3071.18, -1260.56], [-3064.86, -1268.33], [-3040.84, -1297.27], [-3014.43, -1328.17], [-3010.37, -1333.39]], "length": 94.88}, {"u": 53462390, "v": 53462393, "oneway": false, "points": [[-3071.18, -1260.56], [-3080.34, -1268.04], [-3089.75, -1276.01]], "length": 24.16}, {"u": 53462390, "v": 53462383, "oneway": false, "points": [[-3071.18, -1260.56], [-3062.67, -1253.65], [-3043.22, -1237.19], [-2979.45, -1183.08], [-2972.52, -1177.01]], "length": 129.29}, {"u": 53462393, "v": 53625770, "oneway": false, "points": [[-3089.75, -1276.01], [-3094.28, -1271.04], [-3096.71, -1268.29], [-3113.57, -1248.44], [-3119.94, -1240.8], [-3142.45, -1213.33], [-3149.19, -1204.95]], "length": 92.65}, {"u": 53462393, "v": 53462402, "oneway": false, "points": [[-3089.75, -1276.01], [-3095.7, -1281.59], [-3170.93, -1344.26]], "length": 106.07}, {"u": 53462393, "v": 53462390, "oneway": false, "points": [[-3089.75, -1276.01], [-3080.34, -1268.04], [-3071.18, -1260.56]], "length": 24.16}, {"u": 53462402, "v": 53556407, "oneway": false, "points": [[-3170.93, -1344.26], [-3164.73, -1351.61], [-3139.21, -1380.78], [-3113.35, -1411.38], [-3108.81, -1416.77]], "length": 95.48}, {"u": 53462402, "v": 3637918464, "oneway": false, "points": [[-3170.93, -1344.26], [-3177.71, -1350.07], [-3257.13, -1417.94]], "length": 113.4}, {"u": 53462402, "v": 53462393, "oneway": false, "points": [[-3170.93, -1344.26], [-3095.7, -1281.59], [-3089.75, -1276.01]], "length": 106.07}, {"u": 53463508, "v": 5890633223, "oneway": false, "points": [[-782.89, -2424.66], [-783.11, -2431.81]], "length": 7.15}, {"u": 53463508, "v": 5890633230, "oneway": true, "points": [[-782.89, -2424.66], [-790.01, -2424.24], [-816.62, -2423.01], [-822.78, -2426.06]], "length": 40.65}, {"u": 53463513, "v": 5890633223, "oneway": false, "points": [[-792.73, -2545.57], [-789.3, -2535.58], [-788.12, -2531.35], [-783.42, -2439.96], [-783.29, -2437.42], [-783.11, -2431.81]], "length": 114.62}, {"u": 53463513, "v": 53463519, "oneway": false, "points": [[-792.73, -2545.57], [-793.93, -2548.14], [-802.0, -2565.41], [-811.13, -2584.95], [-819.57, -2604.76], [-822.1, -2610.7], [-834.75, -2640.41], [-842.23, -2657.98]], "length": 122.84}, {"u": 53463513, "v": 53434863, "oneway": false, "points": [[-792.73, -2545.57], [-803.23, -2544.92], [-807.04, -2544.69], [-865.72, -2541.05], [-936.12, -2537.46], [-945.32, -2537.0]], "length": 152.83}, {"u": 53463519, "v": 53463513, "oneway": false, "points": [[-842.23, -2657.98], [-834.75, -2640.41], [-822.1, -2610.7], [-819.57, -2604.76], [-811.13, -2584.95], [-802.0, -2565.41], [-793.93, -2548.14], [-792.73, -2545.57]], "length": 122.84}, {"u": 53463519, "v": 53463523, "oneway": false, "points": [[-842.23, -2657.98], [-865.26, -2706.39], [-869.12, -2714.9], [-895.27, -2771.49]], "length": 125.3}, {"u": 53463519, "v": 53434865, "oneway": false, "points": [[-842.23, -2657.98], [-851.89, -2657.35], [-856.53, -2657.05], [-860.54, -2656.79], [-951.6, -2651.21]], "length": 109.57}, {"u": 53463523, "v": 53463519, "oneway": false, "points": [[-895.27, -2771.49], [-869.12, -2714.9], [-865.26, -2706.39], [-842.23, -2657.98]], "length": 125.3}, {"u": 53463523, "v": 53463532, "oneway": false, "points": [[-895.27, -2771.49], [-918.66, -2830.24], [-923.67, -2842.84], [-936.54, -2875.14], [-945.37, -2884.55], [-977.52, -2883.19], [-989.15, -2883.67], [-991.65, -2883.78], [-1001.27, -2884.18]], "length": 180.42}, {"u": 53463523, "v": 53434867, "oneway": false, "points": [[-895.27, -2771.49], [-901.06, -2771.2], [-906.74, -2770.92], [-947.44, -2768.87], [-956.24, -2768.43]], "length": 61.04}, {"u": 53463532, "v": 53463523, "oneway": false, "points": [[-1001.27, -2884.18], [-991.65, -2883.78], [-989.15, -2883.67], [-977.52, -2883.19], [-945.37, -2884.55], [-936.54, -2875.14], [-923.67, -2842.84], [-918.66, -2830.24], [-895.27, -2771.49]], "length": 180.42}, {"u": 53463532, "v": 53511712, "oneway": false, "points": [[-1001.27, -2884.18], [-1009.28, -2866.38], [-1019.31, -2844.07], [-1028.11, -2824.5], [-1032.65, -2814.41], [-1037.14, -2804.39], [-1052.22, -2770.86], [-1054.77, -2765.17]], "length": 130.48}, {"u": 53463532, "v": 1180187620, "oneway": false, "points": [[-1001.27, -2884.18], [-997.08, -2898.32], [-995.73, -2905.77], [-994.09, -2917.12], [-993.25, -2928.85], [-992.79, -2940.16], [-993.09, -2950.69], [-993.81, -2960.76]], "length": 77.5}, {"u": 53463567, "v": 6233229328, "oneway": false, "points": [[-747.87, -2426.38], [-748.23, -2433.7]], "length": 7.32}, {"u": 53463567, "v": 2634708186, "oneway": false, "points": [[-747.87, -2426.38], [-747.57, -2421.07], [-747.36, -2418.73], [-734.44, -2307.07], [-730.6, -2276.63], [-725.13, -2231.67], [-723.66, -2205.08], [-723.21, -2196.88]], "length": 230.89}, {"u": 53463567, "v": 53463508, "oneway": true, "points": [[-747.87, -2426.38], [-753.81, -2426.09], [-773.97, -2425.13], [-782.89, -2424.66]], "length": 35.06}, {"u": 53465696, "v": 6401044370, "oneway": false, "points": [[-5.78, -2247.52], [-2.68, -2253.28], [-0.16, -2265.02], [-0.81, -2282.23], [-1.79, -2293.65], [-1.61, -2304.44], [-0.27, -2311.92], [2.01, -2317.77], [33.59, -2362.34], [44.65, -2377.94], [64.05, -2398.72], [78.6, -2414.63], [89.78, -2427.4], [111.63, -2451.89], [116.88, -2457.62], [120.91, -2462.07], [125.18, -2468.62]], "length": 267.02}, {"u": 53465696, "v": 53573840, "oneway": false, "points": [[-5.78, -2247.52], [0.36, -2243.52], [3.02, -2241.77], [18.65, -2234.1], [31.8, -2230.14], [47.34, -2228.13], [52.16, -2227.83], [68.43, -2227.98], [75.71, -2228.05], [89.67, -2230.0], [103.29, -2235.89], [109.63, -2240.29], [116.07, -2244.76], [122.56, -2252.9], [126.77, -2258.17], [139.95, -2276.22]], "length": 169.7}, {"u": 53465696, "v": 53447076, "oneway": false, "points": [[-5.78, -2247.52], [-8.64, -2242.22], [-13.77, -2234.97], [-28.2, -2227.55]], "length": 31.13}, {"u": 53467195, "v": 53467197, "oneway": false, "points": [[2710.73, 2665.14], [2710.25, 2666.63], [2707.68, 2674.58], [2695.78, 2711.49], [2691.37, 2725.15], [2687.72, 2736.47]], "length": 74.95}, {"u": 53467195, "v": 1706427647, "oneway": true, "points": [[2710.73, 2665.14], [2711.39, 2654.65], [2713.09, 2647.05], [2715.18, 2642.92], [2719.43, 2637.9], [2722.51, 2634.25], [2729.93, 2627.64]], "length": 44.21}, {"u": 53467197, "v": 53529532, "oneway": false, "points": [[2687.72, 2736.47], [2679.91, 2731.02], [2678.77, 2729.94], [2633.74, 2687.41], [2584.52, 2638.48], [2580.03, 2634.01]], "length": 148.77}, {"u": 53467197, "v": 53467195, "oneway": false, "points": [[2687.72, 2736.47], [2691.37, 2725.15], [2695.78, 2711.49], [2707.68, 2674.58], [2710.25, 2666.63], [2710.73, 2665.14]], "length": 74.95}, {"u": 53467413, "v": 1181324562, "oneway": false, "points": [[-1024.15, 112.1], [-1038.48, 128.0], [-1050.09, 140.89], [-1058.1, 149.8]], "length": 50.74}, {"u": 53467413, "v": 53521450, "oneway": false, "points": [[-1024.15, 112.1], [-1022.41, 113.65], [-1019.72, 116.05], [-1003.37, 130.59], [-995.75, 137.36], [-993.44, 139.42]], "length": 41.1}, {"u": 53467413, "v": 1181085486, "oneway": false, "points": [[-1024.15, 112.1], [-971.23, 53.33], [-969.56, 51.48], [-964.03, 45.34]], "length": 89.84}, {"u": 53467500, "v": 53482952, "oneway": false, "points": [[-381.38, -461.89], [-387.41, -467.1], [-440.33, -514.87], [-452.34, -525.82], [-485.96, -556.46], [-491.46, -561.5], [-512.8, -581.09], [-521.13, -588.73], [-523.06, -590.5], [-530.88, -597.44]], "length": 201.81}, {"u": 53467500, "v": 53493114, "oneway": false, "points": [[-381.38, -461.89], [-373.86, -454.82], [-335.77, -419.33], [-314.0, -399.32], [-307.52, -392.82]], "length": 101.13}, {"u": 53467500, "v": 13324853247, "oneway": false, "points": [[-381.38, -461.89], [-388.02, -454.66], [-459.23, -377.04], [-467.96, -367.54]], "length": 128.05}, {"u": 53467500, "v": 53467506, "oneway": false, "points": [[-381.38, -461.89], [-375.89, -467.87], [-341.26, -505.61], [-322.58, -525.96], [-321.19, -527.48], [-315.09, -534.12]], "length": 98.04}, {"u": 53467506, "v": 53444048, "oneway": false, "points": [[-315.09, -534.12], [-308.25, -541.54], [-293.76, -557.28], [-269.96, -583.11], [-256.99, -597.2], [-245.67, -604.97]], "length": 99.49}, {"u": 53467506, "v": 53467500, "oneway": false, "points": [[-315.09, -534.12], [-321.19, -527.48], [-322.58, -525.96], [-341.26, -505.61], [-375.89, -467.87], [-381.38, -461.89]], "length": 98.04}, {"u": 53467506, "v": 53482954, "oneway": false, "points": [[-315.09, -534.12], [-321.68, -540.16], [-323.82, -542.12], [-354.57, -570.33], [-374.59, -588.69], [-380.72, -594.32], [-388.56, -601.5], [-389.13, -602.03], [-398.09, -610.31], [-413.88, -624.9], [-431.13, -640.54], [-456.62, -663.93], [-459.3, -666.36], [-464.63, -671.1]], "length": 202.79}, {"u": 53470168, "v": 53470169, "oneway": false, "points": [[-1065.56, -2086.21], [-1065.86, -2093.47], [-1069.32, -2174.69], [-1069.73, -2184.33]], "length": 98.21}, {"u": 53470168, "v": 53416782, "oneway": false, "points": [[-1065.56, -2086.21], [-1089.54, -2081.3], [-1109.33, -2075.18], [-1136.37, -2068.51], [-1155.24, -2067.31], [-1174.76, -2068.64]], "length": 111.52}, {"u": 53470168, "v": 53434870, "oneway": false, "points": [[-1065.56, -2086.21], [-991.42, -2093.21], [-978.29, -2094.91], [-962.85, -2096.86], [-947.26, -2099.05], [-895.98, -2098.71]], "length": 170.3}, {"u": 53470169, "v": 53470170, "oneway": false, "points": [[-1069.73, -2184.33], [-1070.08, -2192.66], [-1074.22, -2290.07], [-1074.59, -2298.69]], "length": 114.47}, {"u": 53470169, "v": 53470168, "oneway": false, "points": [[-1069.73, -2184.33], [-1069.32, -2174.69], [-1065.86, -2093.47], [-1065.56, -2086.21]], "length": 98.21}, {"u": 53470169, "v": 53416784, "oneway": false, "points": [[-1069.73, -2184.33], [-1078.27, -2183.82], [-1131.01, -2180.7], [-1171.78, -2179.17], [-1180.92, -2178.83]], "length": 111.34}, {"u": 53470169, "v": 53434871, "oneway": false, "points": [[-1069.73, -2184.33], [-1060.4, -2184.74], [-969.37, -2188.54], [-905.24, -2191.29], [-899.4, -2191.44]], "length": 170.47}, {"u": 53470170, "v": 53416786, "oneway": false, "points": [[-1074.59, -2298.69], [-1186.31, -2293.38]], "length": 111.85}, {"u": 53470170, "v": 53470173, "oneway": false, "points": [[-1074.59, -2298.69], [-1078.98, -2401.99], [-1079.08, -2404.34], [-1079.48, -2413.81]], "length": 115.22}, {"u": 53470170, "v": 53470169, "oneway": false, "points": [[-1074.59, -2298.69], [-1074.22, -2290.07], [-1070.08, -2192.66], [-1069.73, -2184.33]], "length": 114.47}, {"u": 53470170, "v": 53434862, "oneway": false, "points": [[-1074.59, -2298.69], [-987.31, -2303.28], [-937.65, -2305.48], [-939.17, -2366.0], [-940.24, -2408.95], [-940.31, -2411.69], [-940.65, -2420.37]], "length": 252.04}, {"u": 53470173, "v": 53470170, "oneway": false, "points": [[-1079.48, -2413.81], [-1079.08, -2404.34], [-1078.98, -2401.99], [-1074.59, -2298.69]], "length": 115.22}, {"u": 53470173, "v": 53416788, "oneway": false, "points": [[-1079.48, -2413.81], [-1182.89, -2408.78], [-1189.44, -2408.46]], "length": 110.09}, {"u": 53470173, "v": 53434862, "oneway": false, "points": [[-1079.48, -2413.81], [-1001.19, -2417.39], [-948.26, -2420.05], [-940.65, -2420.37]], "length": 138.98}, {"u": 53472268, "v": 53472269, "oneway": false, "points": [[-1996.01, -753.86], [-2005.99, -753.35], [-2031.95, -751.99], [-2068.7, -750.09]], "length": 72.78}, {"u": 53472268, "v": 4139816155, "oneway": true, "points": [[-1996.01, -753.86], [-1994.34, -704.29], [-1994.61, -677.22], [-1994.47, -665.84], [-1993.57, -655.14]], "length": 98.79}, {"u": 53472269, "v": 53472270, "oneway": false, "points": [[-2068.7, -750.09], [-2092.72, -748.84], [-2121.47, -747.34], [-2130.25, -746.89]], "length": 61.64}, {"u": 53472269, "v": 53472268, "oneway": false, "points": [[-2068.7, -750.09], [-2031.95, -751.99], [-2005.99, -753.35], [-1996.01, -753.86]], "length": 72.78}, {"u": 53472269, "v": 53545894, "oneway": false, "points": [[-2068.7, -750.09], [-2068.79, -754.39], [-2069.3, -779.2], [-2069.55, -791.44], [-2069.81, -804.19], [-2070.23, -824.02], [-2070.79, -851.23], [-2071.01, -860.54]], "length": 110.47}, {"u": 53472270, "v": 53472269, "oneway": false, "points": [[-2130.25, -746.89], [-2121.47, -747.34], [-2092.72, -748.84], [-2068.7, -750.09]], "length": 61.64}, {"u": 53472270, "v": 53602671, "oneway": true, "points": [[-2130.25, -746.89], [-2130.89, -776.63], [-2131.4, -800.91], [-2131.65, -812.8], [-2131.82, -820.82], [-2132.08, -832.9], [-2132.36, -846.03], [-2132.41, -848.68], [-2132.6, -857.7]], "length": 110.83}, {"u": 53472460, "v": 53479821, "oneway": false, "points": [[-612.22, 93.01], [-618.71, 100.14], [-620.07, 101.63], [-648.74, 133.12], [-658.75, 144.1], [-659.55, 144.98], [-661.46, 147.07], [-674.47, 161.36], [-680.03, 167.47]], "length": 100.71}, {"u": 53472460, "v": 53720172, "oneway": false, "points": [[-612.22, 93.01], [-606.78, 87.04], [-604.81, 84.86], [-595.47, 74.62], [-565.93, 42.19], [-563.37, 39.38], [-550.93, 25.71], [-544.44, 18.59]], "length": 100.66}, {"u": 53472460, "v": 53472467, "oneway": true, "points": [[-612.22, 93.01], [-619.1, 86.79], [-652.93, 56.2], [-663.7, 46.46], [-685.96, 26.32], [-710.99, 3.7], [-722.9, -7.07], [-723.6, -7.7], [-726.78, -10.58], [-730.94, -14.34], [-754.93, -36.04], [-760.87, -41.41]], "length": 200.41}, {"u": 53472467, "v": 2714977035, "oneway": false, "points": [[-760.87, -41.41], [-767.04, -34.67], [-769.32, -32.06], [-785.87, -14.04], [-786.88, -12.96], [-806.02, 7.87], [-806.65, 8.56], [-822.9, 26.25], [-828.55, 32.38]], "length": 100.12}, {"u": 53472467, "v": 53472474, "oneway": true, "points": [[-760.87, -41.41], [-768.69, -48.48], [-799.63, -76.45], [-807.13, -83.24], [-826.47, -100.72], [-834.69, -108.16], [-843.53, -116.18], [-887.06, -155.92], [-905.3, -172.09], [-911.53, -177.67]], "length": 203.14}, {"u": 53472474, "v": 3271744858, "oneway": true, "points": [[-911.53, -177.67], [-918.05, -170.42], [-923.8, -164.1], [-946.71, -138.87]], "length": 52.37}, {"u": 53472474, "v": 1181378741, "oneway": true, "points": [[-911.53, -177.67], [-919.0, -183.88], [-933.63, -197.3], [-955.74, -217.63]], "length": 59.61}, {"u": 53473010, "v": 2638675253, "oneway": false, "points": [[-1375.16, -2390.42], [-1381.66, -2378.12]], "length": 13.91}, {"u": 53473010, "v": 9146885459, "oneway": false, "points": [[-1375.16, -2390.42], [-1376.2, -2405.91], [-1378.42, -2438.5], [-1378.83, -2448.97], [-1379.62, -2468.81], [-1380.77, -2497.64], [-1381.9, -2526.31], [-1382.83, -2533.97], [-1383.11, -2536.22], [-1384.1, -2544.46], [-1384.25, -2545.7], [-1393.27, -2574.33], [-1402.71, -2604.29], [-1403.79, -2607.71], [-1405.98, -2626.93]], "length": 239.96}, {"u": 53473010, "v": 2638675264, "oneway": false, "points": [[-1375.16, -2390.42], [-1364.08, -2407.8], [-1358.31, -2416.85], [-1355.35, -2421.48], [-1312.82, -2502.97]], "length": 128.76}, {"u": 53473027, "v": 9146885459, "oneway": false, "points": [[-1422.31, -2887.72], [-1420.97, -2877.61], [-1420.65, -2875.21], [-1418.95, -2852.88], [-1416.47, -2820.31], [-1414.74, -2781.76], [-1413.69, -2758.25], [-1411.5, -2709.52], [-1408.83, -2649.92], [-1408.67, -2647.14], [-1407.62, -2638.67], [-1405.98, -2626.93]], "length": 261.42}, {"u": 53473027, "v": 4248941674, "oneway": false, "points": [[-1422.31, -2887.72], [-1435.63, -2885.17], [-1438.69, -2884.58], [-1473.08, -2876.51], [-1508.67, -2865.76], [-1523.61, -2858.26], [-1557.44, -2833.02]], "length": 148.1}, {"u": 53473027, "v": 1180187532, "oneway": false, "points": [[-1422.31, -2887.72], [-1413.41, -2889.44], [-1370.49, -2897.73], [-1353.79, -2900.96], [-1295.99, -2912.11], [-1265.61, -2917.98], [-1210.91, -2928.22], [-1124.23, -2944.13], [-1115.37, -2945.47]], "length": 312.33}, {"u": 53473264, "v": 53473273, "oneway": false, "points": [[-2304.76, -848.97], [-2305.02, -858.24], [-2305.14, -860.34], [-2324.2, -878.09], [-2353.89, -903.1], [-2488.02, -1018.55], [-2492.96, -1022.8], [-2499.02, -1028.02]], "length": 267.73}, {"u": 53473264, "v": 53556383, "oneway": false, "points": [[-2304.76, -848.97], [-2372.72, -846.15], [-2406.56, -844.76], [-2432.72, -843.44], [-2439.28, -843.15], [-2447.26, -842.82]], "length": 142.64}, {"u": 53473264, "v": 53483907, "oneway": false, "points": [[-2304.76, -848.97], [-2276.68, -850.02], [-2266.82, -850.58]], "length": 37.97}, {"u": 53473273, "v": 53454630, "oneway": false, "points": [[-2499.02, -1028.02], [-2506.6, -1034.48], [-2511.24, -1038.43], [-2633.82, -1142.89], [-2640.7, -1148.95]], "length": 186.27}, {"u": 53473273, "v": 53473264, "oneway": false, "points": [[-2499.02, -1028.02], [-2492.96, -1022.8], [-2488.02, -1018.55], [-2353.89, -903.1], [-2324.2, -878.09], [-2305.14, -860.34], [-2305.02, -858.24], [-2304.76, -848.97]], "length": 267.73}, {"u": 53473273, "v": 53444613, "oneway": false, "points": [[-2499.02, -1028.02], [-2493.27, -1034.88], [-2467.99, -1065.05], [-2442.73, -1095.38], [-2436.63, -1102.7]], "length": 97.31}, {"u": 53473273, "v": 53534017, "oneway": false, "points": [[-2499.02, -1028.02], [-2505.02, -1021.12], [-2531.12, -991.11], [-2556.71, -962.18], [-2563.2, -954.85]], "length": 97.33}, {"u": 53473289, "v": 53473302, "oneway": false, "points": [[-2749.66, -1238.71], [-2756.61, -1244.7], [-2759.09, -1246.81], [-2842.13, -1317.42], [-2847.46, -1322.25]], "length": 128.63}, {"u": 53473289, "v": 53454630, "oneway": false, "points": [[-2749.66, -1238.71], [-2743.21, -1233.39], [-2740.56, -1231.21], [-2648.42, -1155.18], [-2640.7, -1148.95]], "length": 141.17}, {"u": 53473289, "v": 53444627, "oneway": false, "points": [[-2749.66, -1238.71], [-2741.53, -1248.3], [-2717.04, -1277.22], [-2691.29, -1307.63], [-2685.57, -1314.39]], "length": 99.17}, {"u": 53473289, "v": 4874980027, "oneway": false, "points": [[-2749.66, -1238.71], [-2753.72, -1233.91], [-2780.74, -1202.02], [-2805.34, -1173.56], [-2811.27, -1166.51]], "length": 94.91}, {"u": 53473302, "v": 53473312, "oneway": false, "points": [[-2847.46, -1322.25], [-2855.17, -1329.15], [-2940.99, -1402.12], [-2947.51, -1407.65]], "length": 131.54}, {"u": 53473302, "v": 53473289, "oneway": false, "points": [[-2847.46, -1322.25], [-2842.13, -1317.42], [-2759.09, -1246.81], [-2756.61, -1244.7], [-2749.66, -1238.71]], "length": 128.63}, {"u": 53473302, "v": 53444632, "oneway": false, "points": [[-2847.46, -1322.25], [-2840.22, -1330.95], [-2815.61, -1360.55], [-2790.45, -1391.79], [-2784.89, -1398.7]], "length": 98.79}, {"u": 53473302, "v": 53556400, "oneway": false, "points": [[-2847.46, -1322.25], [-2852.11, -1317.12], [-2879.65, -1286.69], [-2904.09, -1257.42], [-2910.31, -1249.96]], "length": 95.81}, {"u": 53473312, "v": 53473321, "oneway": false, "points": [[-2947.51, -1407.65], [-2953.99, -1413.17], [-3038.42, -1485.29], [-3045.66, -1491.48]], "length": 129.08}, {"u": 53473312, "v": 53473302, "oneway": false, "points": [[-2947.51, -1407.65], [-2940.99, -1402.12], [-2855.17, -1329.15], [-2847.46, -1322.25]], "length": 131.54}, {"u": 53473312, "v": 53444642, "oneway": false, "points": [[-2947.51, -1407.65], [-2940.7, -1415.98], [-2916.41, -1445.71], [-2890.19, -1475.82], [-2884.02, -1482.91]], "length": 98.48}, {"u": 53473312, "v": 53556402, "oneway": false, "points": [[-2947.51, -1407.65], [-2952.19, -1401.92], [-2977.97, -1370.38], [-3003.24, -1341.53], [-3010.37, -1333.39]], "length": 97.31}, {"u": 53473321, "v": 3812685629, "oneway": false, "points": [[-3045.66, -1491.48], [-3052.02, -1496.91], [-3123.68, -1558.09], [-3131.01, -1564.34]], "length": 112.22}, {"u": 53473321, "v": 53473312, "oneway": false, "points": [[-3045.66, -1491.48], [-3038.42, -1485.29], [-2953.99, -1413.17], [-2947.51, -1407.65]], "length": 129.08}, {"u": 53473321, "v": 53444645, "oneway": false, "points": [[-3045.66, -1491.48], [-3039.38, -1498.91], [-3014.34, -1528.54], [-2988.27, -1559.39], [-2981.6, -1567.3]], "length": 99.26}, {"u": 53473321, "v": 53556407, "oneway": false, "points": [[-3045.66, -1491.48], [-3050.6, -1485.65], [-3076.75, -1454.69], [-3102.04, -1424.78], [-3108.81, -1416.77]], "length": 97.82}, {"u": 53475092, "v": 53475094, "oneway": false, "points": [[2850.99, 2329.1], [2846.51, 2245.73], [2846.01, 2237.32]], "length": 91.91}, {"u": 53475094, "v": 53475096, "oneway": false, "points": [[2846.01, 2237.32], [2845.64, 2229.65], [2836.3, 2056.15], [2835.8, 2046.82]], "length": 190.78}, {"u": 53475094, "v": 53475092, "oneway": false, "points": [[2846.01, 2237.32], [2846.51, 2245.73], [2850.99, 2329.1]], "length": 91.91}, {"u": 53475094, "v": 53430839, "oneway": false, "points": [[2846.01, 2237.32], [2836.4, 2237.97], [2761.99, 2241.02], [2755.1, 2241.3]], "length": 91.0}, {"u": 53475096, "v": 53475099, "oneway": false, "points": [[2835.8, 2046.82], [2835.42, 2039.94], [2832.95, 1993.9], [2832.79, 1990.97], [2832.18, 1979.64]], "length": 67.27}, {"u": 53475096, "v": 53475094, "oneway": false, "points": [[2835.8, 2046.82], [2836.3, 2056.15], [2845.64, 2229.65], [2846.01, 2237.32]], "length": 190.78}, {"u": 53475096, "v": 53430844, "oneway": false, "points": [[2835.8, 2046.82], [2828.08, 2047.21], [2751.67, 2051.13], [2744.15, 2051.92]], "length": 91.8}, {"u": 53475099, "v": 53475096, "oneway": false, "points": [[2832.18, 1979.64], [2832.79, 1990.97], [2832.95, 1993.9], [2835.42, 2039.94], [2835.8, 2046.82]], "length": 67.27}, {"u": 53475099, "v": 53540839, "oneway": false, "points": [[2832.18, 1979.64], [2823.4, 1973.13], [2747.79, 1917.04], [2744.99, 1914.9], [2735.98, 1907.34]], "length": 120.36}, {"u": 53475305, "v": 53461818, "oneway": false, "points": [[-3126.4, -160.42], [-3115.15, -231.36], [-3114.73, -234.09], [-3113.32, -242.85]], "length": 83.46}, {"u": 53475312, "v": 53475324, "oneway": false, "points": [[-3100.07, -328.26], [-3099.56, -334.71], [-3099.32, -337.61], [-3100.44, -340.92], [-3104.98, -348.57], [-3112.94, -356.12], [-3126.64, -370.62], [-3137.56, -387.53], [-3138.98, -390.95], [-3143.07, -400.71]], "length": 87.1}, {"u": 53475312, "v": 53461818, "oneway": false, "points": [[-3100.07, -328.26], [-3101.42, -319.36], [-3101.84, -316.58], [-3106.4, -286.77], [-3111.38, -254.83], [-3111.89, -251.94], [-3113.32, -242.85]], "length": 86.43}, {"u": 53475312, "v": 53481441, "oneway": false, "points": [[-3100.07, -328.26], [-3092.68, -327.05], [-2962.82, -306.67], [-2955.12, -305.54]], "length": 146.73}, {"u": 53475324, "v": 53475312, "oneway": false, "points": [[-3143.07, -400.71], [-3138.98, -390.95], [-3137.56, -387.53], [-3126.64, -370.62], [-3112.94, -356.12], [-3104.98, -348.57], [-3100.44, -340.92], [-3099.32, -337.61], [-3099.56, -334.71], [-3100.07, -328.26]], "length": 87.1}, {"u": 53475324, "v": 53645778, "oneway": false, "points": [[-3143.07, -400.71], [-3107.5, -396.62], [-3098.53, -396.22], [-3080.29, -396.74], [-3068.44, -398.2], [-3058.39, -400.26], [-3046.18, -403.51], [-3029.31, -408.88], [-3017.79, -413.77], [-3012.58, -416.7], [-3011.23, -417.65], [-3002.12, -424.12]], "length": 146.88}, {"u": 53478277, "v": 4095606995, "oneway": false, "points": [[-2122.77, -1731.3], [-2122.99, -1738.31], [-2124.71, -1804.26], [-2125.29, -1824.35], [-2125.42, -1828.73], [-2125.45, -1837.6], [-2125.65, -1869.97], [-2127.05, -1880.34], [-2131.98, -1898.59], [-2134.0, -1906.29]], "length": 176.04}, {"u": 53478277, "v": 53529692, "oneway": false, "points": [[-2122.77, -1731.3], [-2122.58, -1722.41], [-2120.73, -1634.98], [-2120.15, -1618.43], [-2119.86, -1610.29]], "length": 121.05}, {"u": 53478277, "v": 53575901, "oneway": false, "points": [[-2122.77, -1731.3], [-2129.27, -1731.15], [-2169.54, -1730.22], [-2222.86, -1729.46], [-2226.45, -1729.27], [-2227.71, -1728.99], [-2228.53, -1728.24], [-2229.22, -1726.45], [-2229.34, -1724.12], [-2229.22, -1719.95], [-2227.31, -1666.98], [-2226.75, -1632.5]], "length": 202.02}, {"u": 53478277, "v": 2573847782, "oneway": false, "points": [[-2122.77, -1731.3], [-2116.9, -1731.52], [-2004.73, -1735.85], [-1922.0, -1739.05], [-1896.53, -1739.61], [-1888.6, -1739.78]], "length": 234.32}, {"u": 53479821, "v": 53441253, "oneway": false, "points": [[-680.03, 167.47], [-686.29, 174.34], [-709.45, 199.77], [-739.76, 233.4], [-741.49, 235.33], [-747.15, 241.66]], "length": 100.05}, {"u": 53479821, "v": 53472460, "oneway": false, "points": [[-680.03, 167.47], [-674.47, 161.36], [-661.46, 147.07], [-659.55, 144.98], [-658.75, 144.1], [-648.74, 133.12], [-620.07, 101.63], [-618.71, 100.14], [-612.22, 93.01]], "length": 100.71}, {"u": 53479821, "v": 2714977035, "oneway": false, "points": [[-680.03, 167.47], [-686.67, 161.43], [-717.88, 133.04], [-724.12, 127.36], [-735.96, 116.6], [-747.81, 105.81], [-748.78, 104.94], [-764.25, 90.86], [-766.77, 88.57], [-775.1, 81.0], [-775.81, 80.36], [-777.4, 78.9], [-784.89, 72.09], [-796.36, 61.66], [-796.98, 61.09], [-822.52, 37.86], [-828.55, 32.38]], "length": 200.76}, {"u": 53479821, "v": 5468393309, "oneway": false, "points": [[-680.03, 167.47], [-673.75, 173.19], [-660.21, 185.51], [-648.29, 196.35], [-638.66, 205.1], [-619.4, 222.62], [-599.43, 240.79], [-597.15, 242.86], [-582.58, 256.11]], "length": 131.73}, {"u": 53480554, "v": 1706427669, "oneway": false, "points": [[2268.93, 1849.73], [2263.25, 1853.23], [2258.97, 1855.86], [2220.25, 1879.65], [2206.22, 1888.27], [2202.79, 1890.38]], "length": 77.63}, {"u": 53480554, "v": 53572019, "oneway": false, "points": [[2268.93, 1849.73], [2271.94, 1854.42], [2292.74, 1886.84], [2317.79, 1927.14], [2332.02, 1949.26], [2341.64, 1964.56], [2346.35, 1972.04]], "length": 144.75}, {"u": 53480554, "v": 53503712, "oneway": false, "points": [[2268.93, 1849.73], [2264.98, 1843.25], [2262.88, 1839.8], [2243.94, 1809.58], [2241.55, 1805.65], [2230.89, 1788.12], [2219.86, 1769.96], [2218.91, 1768.4], [2217.16, 1765.53]], "length": 98.85}, {"u": 53481435, "v": 53481441, "oneway": false, "points": [[-2940.3, -398.79], [-2941.42, -392.57], [-2943.79, -376.45], [-2954.03, -312.79], [-2955.12, -305.54]], "length": 94.42}, {"u": 53481435, "v": 53514818, "oneway": false, "points": [[-2940.3, -398.79], [-2929.78, -396.24], [-2900.89, -389.36], [-2887.5, -385.74], [-2885.69, -384.9]], "length": 56.39}, {"u": 53481435, "v": 53645778, "oneway": false, "points": [[-2940.3, -398.79], [-2965.56, -408.17], [-2995.09, -420.43], [-3002.12, -424.12]], "length": 66.86}, {"u": 53481441, "v": 1180005830, "oneway": false, "points": [[-2955.12, -305.54], [-2956.46, -296.75], [-2965.18, -239.45], [-2966.4, -231.19], [-2966.68, -229.28], [-2968.0, -220.34]], "length": 86.17}, {"u": 53481441, "v": 53481435, "oneway": false, "points": [[-2955.12, -305.54], [-2954.03, -312.79], [-2943.79, -376.45], [-2941.42, -392.57], [-2940.3, -398.79]], "length": 94.42}, {"u": 53481441, "v": 53475312, "oneway": false, "points": [[-2955.12, -305.54], [-2962.82, -306.67], [-3092.68, -327.05], [-3100.07, -328.26]], "length": 146.73}, {"u": 53481441, "v": 53485102, "oneway": false, "points": [[-2955.12, -305.54], [-2946.81, -304.23], [-2897.77, -296.41], [-2889.88, -295.31], [-2882.89, -295.4], [-2856.65, -296.37], [-2853.26, -296.5], [-2844.86, -296.97]], "length": 111.09}, {"u": 53481638, "v": 1180187697, "oneway": false, "points": [[-1101.86, -2996.82], [-1116.8, -2996.13]], "length": 14.95}, {"u": 53481638, "v": 1180187478, "oneway": true, "points": [[-1101.86, -2996.82], [-1101.61, -2986.16], [-1101.21, -2973.89], [-1101.26, -2965.78], [-1101.31, -2961.6], [-1101.27, -2958.87], [-1101.36, -2947.26]], "length": 49.57}, {"u": 53481665, "v": 53639885, "oneway": false, "points": [[-1638.46, -2903.77], [-1614.95, -2864.64], [-1604.77, -2847.45]], "length": 65.63}, {"u": 53481665, "v": 1180187697, "oneway": false, "points": [[-1638.46, -2903.77], [-1624.6, -2907.46], [-1621.71, -2908.31], [-1612.5, -2910.8], [-1597.48, -2912.98], [-1579.75, -2911.67], [-1568.82, -2912.48], [-1560.56, -2913.44], [-1552.8, -2915.07], [-1536.7, -2918.03], [-1496.57, -2926.24], [-1444.05, -2936.25], [-1413.53, -2942.56], [-1397.6, -2945.19], [-1389.08, -2946.6], [-1385.21, -2947.24], [-1246.76, -2972.51], [-1206.81, -2979.79], [-1128.33, -2994.93], [-1124.7, -2995.35], [-1116.8, -2996.13]], "length": 530.58}, {"u": 53482952, "v": 917593526, "oneway": true, "points": [[-530.88, -597.44], [-536.52, -589.8], [-550.98, -573.95], [-570.32, -552.73], [-586.98, -534.44], [-606.11, -513.47], [-618.78, -499.57]], "length": 131.59}, {"u": 53482952, "v": 53493128, "oneway": false, "points": [[-530.88, -597.44], [-536.52, -602.66], [-539.03, -604.9], [-545.26, -610.45], [-555.0, -619.2], [-569.4, -632.15], [-579.46, -641.19], [-586.65, -647.65], [-619.79, -677.41], [-626.91, -683.84], [-637.48, -693.38], [-641.94, -697.41], [-649.98, -704.67], [-656.36, -710.43], [-673.18, -725.61], [-679.7, -731.45]], "length": 200.27}, {"u": 53482952, "v": 53467500, "oneway": false, "points": [[-530.88, -597.44], [-523.06, -590.5], [-521.13, -588.73], [-512.8, -581.09], [-491.46, -561.5], [-485.96, -556.46], [-452.34, -525.82], [-440.33, -514.87], [-387.41, -467.1], [-381.38, -461.89]], "length": 201.81}, {"u": 53482954, "v": 53482952, "oneway": true, "points": [[-464.63, -671.1], [-470.74, -664.35], [-526.9, -603.69], [-530.88, -597.44]], "length": 99.18}, {"u": 53482954, "v": 53578514, "oneway": false, "points": [[-464.63, -671.1], [-470.29, -676.42], [-529.36, -730.33], [-537.42, -737.68], [-544.25, -743.91], [-551.73, -750.74], [-570.11, -767.52], [-581.72, -778.1], [-605.49, -799.8], [-611.74, -805.49]], "length": 199.25}, {"u": 53482954, "v": 53467506, "oneway": false, "points": [[-464.63, -671.1], [-459.3, -666.36], [-456.62, -663.93], [-431.13, -640.54], [-413.88, -624.9], [-398.09, -610.31], [-389.13, -602.03], [-388.56, -601.5], [-380.72, -594.32], [-374.59, -588.69], [-354.57, -570.33], [-323.82, -542.12], [-321.68, -540.16], [-315.09, -534.12]], "length": 202.79}, {"u": 53482954, "v": 53482965, "oneway": false, "points": [[-464.63, -671.1], [-457.0, -679.65], [-402.84, -736.06], [-396.17, -742.63]], "length": 99.02}, {"u": 53482965, "v": 1182471991, "oneway": false, "points": [[-396.17, -742.63], [-391.98, -746.63], [-376.21, -762.37]], "length": 28.08}, {"u": 53482965, "v": 53482954, "oneway": false, "points": [[-396.17, -742.63], [-402.84, -736.06], [-457.0, -679.65], [-464.63, -671.1]], "length": 99.02}, {"u": 53483330, "v": 3811323395, "oneway": true, "points": [[-1867.46, -940.23], [-1876.31, -939.99], [-1990.76, -936.88], [-1992.0, -936.84], [-2000.08, -936.7]], "length": 132.66}, {"u": 53483330, "v": 53576821, "oneway": false, "points": [[-1867.46, -940.23], [-1867.22, -931.41], [-1866.23, -894.88], [-1866.19, -893.47], [-1865.84, -879.24], [-1865.57, -870.04]], "length": 70.22}, {"u": 53483330, "v": 53430443, "oneway": false, "points": [[-1867.46, -940.23], [-1867.53, -942.79], [-1869.25, -1004.5], [-1869.52, -1014.21]], "length": 74.02}, {"u": 53483354, "v": 53444600, "oneway": false, "points": [[-2268.5, -928.82], [-2269.99, -975.03]], "length": 46.24}, {"u": 53483354, "v": 53483907, "oneway": false, "points": [[-2268.5, -928.82], [-2267.82, -894.9], [-2267.52, -887.94], [-2267.39, -881.32], [-2267.37, -880.32], [-2266.94, -859.52], [-2266.82, -850.58]], "length": 78.25}, {"u": 53483529, "v": 53426175, "oneway": true, "points": [[239.4, -159.54], [237.71, -164.55], [236.64, -167.01], [234.85, -170.15], [229.44, -177.06], [219.32, -186.96], [167.45, -233.16], [133.79, -262.1], [102.3, -289.61], [95.25, -295.22]], "length": 199.19}, {"u": 53483529, "v": 1425250001, "oneway": true, "points": [[239.4, -159.54], [243.69, -159.7], [247.1, -159.17], [250.46, -158.4], [252.92, -156.52], [260.46, -149.87], [277.05, -134.9], [300.26, -114.26], [308.51, -107.96], [316.24, -103.32], [324.26, -98.55]], "length": 106.48}, {"u": 53483529, "v": 53539171, "oneway": false, "points": [[239.4, -159.54], [224.61, -161.86], [190.96, -160.08], [141.47, -157.81], [132.05, -157.34], [108.29, -156.29], [92.78, -155.26]], "length": 146.96}, {"u": 53483529, "v": 53407922, "oneway": false, "points": [[239.4, -159.54], [236.01, -151.83], [234.08, -148.91], [231.47, -144.98], [217.24, -129.61], [212.33, -124.23], [205.6, -116.6], [192.77, -102.95], [187.37, -97.09], [173.06, -81.61], [160.01, -67.5], [158.12, -65.46], [116.13, -19.97], [109.42, -12.7]], "length": 196.63}, {"u": 53483907, "v": 53483354, "oneway": false, "points": [[-2266.82, -850.58], [-2266.94, -859.52], [-2267.37, -880.32], [-2267.39, -881.32], [-2267.52, -887.94], [-2267.82, -894.9], [-2268.5, -928.82]], "length": 78.25}, {"u": 53483907, "v": 53510000, "oneway": false, "points": [[-2266.82, -850.58], [-2266.93, -841.09], [-2265.93, -807.01], [-2265.85, -803.1], [-2265.75, -798.46], [-2266.31, -790.49], [-2266.5, -784.26], [-2266.62, -776.88], [-2266.31, -765.6], [-2265.14, -746.19], [-2264.92, -740.67], [-2265.51, -724.04], [-2264.33, -678.69], [-2263.72, -654.13], [-2263.56, -649.63], [-2263.26, -641.64]], "length": 209.07}, {"u": 53483907, "v": 53602671, "oneway": false, "points": [[-2266.82, -850.58], [-2258.6, -850.85], [-2225.19, -853.42], [-2219.99, -853.66], [-2200.11, -854.58], [-2177.69, -855.61], [-2172.11, -855.87], [-2141.69, -857.28], [-2132.6, -857.7]], "length": 134.42}, {"u": 53483907, "v": 53473264, "oneway": false, "points": [[-2266.82, -850.58], [-2276.68, -850.02], [-2304.76, -848.97]], "length": 37.97}, {"u": 53483912, "v": 2816310345, "oneway": false, "points": [[-2270.36, -1003.41], [-2262.39, -1003.61], [-2138.52, -1007.09], [-2129.26, -1007.33]], "length": 141.15}, {"u": 53483912, "v": 53483915, "oneway": false, "points": [[-2270.36, -1003.41], [-2270.58, -1011.72], [-2271.57, -1048.89], [-2271.81, -1058.0], [-2271.95, -1063.2]], "length": 59.81}, {"u": 53483912, "v": 53444600, "oneway": false, "points": [[-2270.36, -1003.41], [-2270.25, -995.3], [-2269.99, -975.03]], "length": 28.38}, {"u": 53483915, "v": 53709543, "oneway": false, "points": [[-2271.95, -1063.2], [-2274.15, -1113.89], [-2274.3, -1124.7]], "length": 61.56}, {"u": 53483915, "v": 53483912, "oneway": false, "points": [[-2271.95, -1063.2], [-2271.81, -1058.0], [-2271.57, -1048.89], [-2270.58, -1011.72], [-2270.36, -1003.41]], "length": 59.81}, {"u": 53483915, "v": 53643765, "oneway": false, "points": [[-2271.95, -1063.2], [-2264.27, -1063.38], [-2174.06, -1065.63], [-2136.7, -1067.04], [-2128.56, -1067.35]], "length": 143.45}, {"u": 53485100, "v": 53485102, "oneway": false, "points": [[-2735.15, -301.54], [-2743.61, -301.19], [-2746.21, -301.08], [-2835.0, -297.4], [-2837.19, -297.3], [-2844.86, -296.97]], "length": 109.81}, {"u": 53485100, "v": 1857601486, "oneway": false, "points": [[-2735.15, -301.54], [-2735.04, -298.0], [-2734.88, -293.27], [-2733.95, -264.11], [-2733.56, -251.63], [-2732.98, -231.78], [-2732.67, -220.88], [-2732.6, -218.38], [-2732.49, -212.49]], "length": 89.09}, {"u": 53485100, "v": 53684770, "oneway": false, "points": [[-2735.15, -301.54], [-2735.41, -309.75], [-2737.7, -381.61], [-2738.25, -403.17], [-2738.47, -411.69]], "length": 110.19}, {"u": 53485102, "v": 53485100, "oneway": false, "points": [[-2844.86, -296.97], [-2837.19, -297.3], [-2835.0, -297.4], [-2746.21, -301.08], [-2743.61, -301.19], [-2735.15, -301.54]], "length": 109.81}, {"u": 53485102, "v": 2848493172, "oneway": false, "points": [[-2844.86, -296.97], [-2844.61, -289.29], [-2844.13, -272.11], [-2843.91, -267.16], [-2843.61, -261.16], [-2843.01, -245.23], [-2841.89, -215.12], [-2841.86, -214.08], [-2841.59, -203.9]], "length": 93.13}, {"u": 53485102, "v": 53514818, "oneway": false, "points": [[-2844.86, -296.97], [-2845.38, -305.52], [-2847.62, -342.1], [-2849.71, -352.48], [-2854.07, -362.14], [-2859.38, -368.32], [-2867.7, -374.31], [-2885.69, -384.9]], "length": 105.67}, {"u": 53485102, "v": 53481441, "oneway": false, "points": [[-2844.86, -296.97], [-2853.26, -296.5], [-2856.65, -296.37], [-2882.89, -295.4], [-2889.88, -295.31], [-2897.77, -296.41], [-2946.81, -304.23], [-2955.12, -305.54]], "length": 111.09}, {"u": 53486800, "v": 37924361, "oneway": false, "points": [[-2291.15, -32.96], [-2217.6, -36.04], [-2207.12, -36.47], [-2134.58, -39.51], [-2114.09, -40.37], [-2110.23, -40.52], [-2027.98, -43.99], [-2017.41, -44.36]], "length": 273.98}, {"u": 53486800, "v": 53486805, "oneway": false, "points": [[-2291.15, -32.96], [-2298.56, -32.64], [-2314.54, -31.97], [-2328.6, -31.39], [-2331.89, -31.25], [-2337.55, -31.01]], "length": 46.44}, {"u": 53486800, "v": 53703066, "oneway": false, "points": [[-2291.15, -32.96], [-2291.28, -40.22], [-2293.61, -82.01], [-2294.16, -89.47], [-2294.49, -98.22]], "length": 65.35}, {"u": 53486805, "v": 53486808, "oneway": false, "points": [[-2337.55, -31.01], [-2360.01, -30.07]], "length": 22.48}, {"u": 53486805, "v": 53486800, "oneway": false, "points": [[-2337.55, -31.01], [-2331.89, -31.25], [-2328.6, -31.39], [-2314.54, -31.97], [-2298.56, -32.64], [-2291.15, -32.96]], "length": 46.44}, {"u": 53486808, "v": 53486805, "oneway": false, "points": [[-2360.01, -30.07], [-2337.55, -31.01]], "length": 22.48}, {"u": 53486808, "v": 53486814, "oneway": false, "points": [[-2360.01, -30.07], [-2365.38, -29.85], [-2367.79, -29.74], [-2437.52, -26.83], [-2440.43, -26.7], [-2512.79, -23.67], [-2538.07, -22.61], [-2548.17, -22.19]], "length": 188.32}, {"u": 53486808, "v": 2988748407, "oneway": true, "points": [[-2360.01, -30.07], [-2360.15, -39.1], [-2361.39, -69.27]], "length": 39.23}, {"u": 53486814, "v": 53486808, "oneway": false, "points": [[-2548.17, -22.19], [-2538.07, -22.61], [-2512.79, -23.67], [-2440.43, -26.7], [-2437.52, -26.83], [-2367.79, -29.74], [-2365.38, -29.85], [-2360.01, -30.07]], "length": 188.32}, {"u": 53486814, "v": 53413603, "oneway": false, "points": [[-2548.17, -22.19], [-2547.71, -13.31], [-2541.85, 101.03], [-2541.71, 105.2], [-2541.51, 111.56], [-2541.25, 119.72]], "length": 142.08}, {"u": 53486814, "v": 53438915, "oneway": false, "points": [[-2548.17, -22.19], [-2553.15, -21.97], [-2559.13, -21.77], [-2667.37, -17.79], [-2701.63, -15.2], [-2731.74, -12.9], [-2754.15, -11.66], [-2761.6, -9.93], [-2766.16, -8.13], [-2773.18, -4.07], [-2779.86, 2.2], [-2785.05, 9.89], [-2788.05, 15.43], [-2788.41, 16.1], [-2794.3, 27.07], [-2800.75, 41.17]], "length": 280.4}, {"u": 53486858, "v": 53486863, "oneway": false, "points": [[-2901.62, 27.83], [-2936.95, 29.87], [-2968.14, 31.59], [-3006.0, 33.73], [-3051.58, 35.62]], "length": 150.17}, {"u": 53486858, "v": 53438915, "oneway": false, "points": [[-2901.62, 27.83], [-2869.92, 26.1], [-2856.29, 25.98], [-2846.53, 26.92], [-2838.76, 28.57], [-2828.93, 31.48], [-2819.26, 34.97], [-2809.85, 38.02], [-2800.75, 41.17]], "length": 103.18}, {"u": 53486858, "v": 2988375113, "oneway": false, "points": [[-2901.62, 27.83], [-2901.87, 19.71], [-2902.19, 12.88], [-2902.03, -0.74]], "length": 28.58}, {"u": 53486863, "v": 8316813421, "oneway": false, "points": [[-3051.58, 35.62], [-3069.74, 35.9], [-3094.07, 37.08], [-3145.9, 39.01], [-3147.13, 39.35], [-3148.17, 40.7], [-3148.12, 42.61], [-3147.99, 43.86], [-3147.61, 49.33], [-3147.53, 51.83], [-3144.88, 135.24], [-3144.59, 144.18]], "length": 200.92}, {"u": 53486863, "v": 53486858, "oneway": false, "points": [[-3051.58, 35.62], [-3006.0, 33.73], [-2968.14, 31.59], [-2936.95, 29.87], [-2901.62, 27.83]], "length": 150.17}, {"u": 53486863, "v": 53370932, "oneway": false, "points": [[-3051.58, 35.62], [-3051.8, 28.39], [-3052.18, 18.56], [-3052.99, -2.92], [-3053.18, -7.89], [-3053.6, -15.97], [-3053.93, -22.09]], "length": 57.76}, {"u": 53487523, "v": 53487528, "oneway": false, "points": [[2757.14, 1771.51], [2758.26, 1766.31], [2773.63, 1694.73], [2775.23, 1687.31]], "length": 86.12}, {"u": 53487523, "v": 53430857, "oneway": false, "points": [[2757.14, 1771.51], [2755.66, 1778.42], [2741.04, 1846.44], [2740.5, 1848.96], [2736.89, 1858.56]], "length": 89.47}, {"u": 53487523, "v": 53611268, "oneway": false, "points": [[2757.14, 1771.51], [2749.58, 1769.55], [2682.85, 1752.53], [2676.22, 1750.83]], "length": 83.52}, {"u": 53487528, "v": 53487531, "oneway": false, "points": [[2775.23, 1687.31], [2776.24, 1682.57], [2793.02, 1604.43]], "length": 84.77}, {"u": 53487528, "v": 53487523, "oneway": false, "points": [[2775.23, 1687.31], [2773.63, 1694.73], [2758.26, 1766.31], [2757.14, 1771.51]], "length": 86.12}, {"u": 53487528, "v": 53496315, "oneway": false, "points": [[2775.23, 1687.31], [2767.47, 1685.38], [2703.79, 1669.43], [2700.67, 1668.65], [2693.99, 1666.98]], "length": 83.74}, {"u": 53487531, "v": 53487538, "oneway": false, "points": [[2793.02, 1604.43], [2794.13, 1599.29], [2807.24, 1538.25], [2808.71, 1531.39]], "length": 74.7}, {"u": 53487531, "v": 53487528, "oneway": false, "points": [[2793.02, 1604.43], [2776.24, 1682.57], [2775.23, 1687.31]], "length": 84.77}, {"u": 53487538, "v": 53487531, "oneway": false, "points": [[2808.71, 1531.39], [2807.24, 1538.25], [2794.13, 1599.29], [2793.02, 1604.43]], "length": 74.7}, {"u": 53487538, "v": 53596328, "oneway": false, "points": [[2808.71, 1531.39], [2799.75, 1530.58], [2758.32, 1526.8], [2714.86, 1525.11], [2708.58, 1524.86]], "length": 100.38}, {"u": 53488193, "v": 53616189, "oneway": false, "points": [[-1716.91, -320.27], [-1715.62, -296.25], [-1713.97, -265.46], [-1713.81, -261.51], [-1713.32, -252.05]], "length": 68.31}, {"u": 53488193, "v": 53616188, "oneway": false, "points": [[-1716.91, -320.27], [-1719.47, -363.84], [-1719.98, -372.62], [-1720.63, -383.66]], "length": 63.5}, {"u": 53488195, "v": 53488193, "oneway": true, "points": [[-1852.21, -314.14], [-1843.24, -314.59], [-1790.69, -316.77], [-1725.69, -319.85], [-1716.91, -320.27]], "length": 135.44}, {"u": 53488195, "v": 53652463, "oneway": false, "points": [[-1852.21, -314.14], [-1850.9, -281.94], [-1850.38, -259.01], [-1850.3, -255.45], [-1849.72, -245.5]], "length": 68.69}, {"u": 53488195, "v": 53668996, "oneway": false, "points": [[-1852.21, -314.14], [-1853.23, -366.4], [-1853.45, -376.96]], "length": 62.84}, {"u": 53489932, "v": 53489934, "oneway": false, "points": [[-3057.82, -186.74], [-3058.57, -181.25], [-3062.39, -153.12]], "length": 33.93}, {"u": 53489932, "v": 53461816, "oneway": false, "points": [[-3057.82, -186.74], [-3051.5, -222.21], [-3051.11, -224.39], [-3049.58, -232.97]], "length": 46.96}, {"u": 53489932, "v": 53489947, "oneway": false, "points": [[-3057.82, -186.74], [-3011.04, -179.38], [-2997.99, -177.39]], "length": 60.56}, {"u": 53489934, "v": 53489932, "oneway": false, "points": [[-3062.39, -153.12], [-3058.57, -181.25], [-3057.82, -186.74]], "length": 33.93}, {"u": 53489947, "v": 53489932, "oneway": false, "points": [[-2997.99, -177.39], [-3011.04, -179.38], [-3057.82, -186.74]], "length": 60.56}, {"u": 53490476, "v": 53649105, "oneway": false, "points": [[2274.69, 1738.19], [2276.48, 1730.61], [2280.96, 1711.58], [2282.85, 1702.48], [2284.98, 1695.61], [2287.47, 1686.59], [2288.1, 1684.27], [2291.97, 1670.11], [2296.33, 1654.18], [2298.75, 1646.47], [2302.34, 1638.43], [2306.01, 1631.96], [2310.02, 1626.15], [2312.08, 1623.15], [2317.1, 1617.41]], "length": 129.43}, {"u": 53490476, "v": 316342869, "oneway": false, "points": [[2274.69, 1738.19], [2254.02, 1733.12], [2221.49, 1725.13], [2203.84, 1720.79], [2188.95, 1720.25]], "length": 87.86}, {"u": 53490476, "v": 53490480, "oneway": false, "points": [[2274.69, 1738.19], [2297.69, 1744.57], [2362.26, 1762.48], [2367.9, 1764.04]], "length": 96.73}, {"u": 53490480, "v": 53529499, "oneway": false, "points": [[2367.9, 1764.04], [2366.45, 1770.09], [2365.62, 1773.57], [2364.02, 1780.31], [2361.19, 1792.1], [2359.45, 1797.6], [2358.72, 1800.67], [2357.92, 1804.0], [2357.41, 1808.37], [2358.23, 1812.21], [2360.2, 1817.06], [2363.24, 1822.3], [2375.64, 1840.18], [2391.61, 1866.44], [2394.76, 1871.61], [2399.63, 1879.63], [2420.6, 1912.72], [2422.36, 1915.12], [2427.37, 1921.97]], "length": 179.39}, {"u": 53490480, "v": 53490476, "oneway": false, "points": [[2367.9, 1764.04], [2362.26, 1762.48], [2297.69, 1744.57], [2274.69, 1738.19]], "length": 96.73}, {"u": 53490480, "v": 53490485, "oneway": false, "points": [[2367.9, 1764.04], [2373.73, 1765.61], [2399.69, 1772.57], [2413.76, 1776.2], [2416.26, 1776.84], [2440.71, 1783.16], [2462.34, 1788.74], [2466.18, 1789.73]], "length": 101.59}, {"u": 53490485, "v": 53522245, "oneway": false, "points": [[2466.18, 1789.73], [2464.97, 1794.65], [2464.11, 1798.09], [2457.29, 1825.64], [2448.28, 1862.05], [2445.48, 1873.36], [2442.26, 1886.36], [2437.14, 1907.04], [2434.65, 1917.1]], "length": 131.21}, {"u": 53490485, "v": 53490480, "oneway": false, "points": [[2466.18, 1789.73], [2462.34, 1788.74], [2440.71, 1783.16], [2416.26, 1776.84], [2413.76, 1776.2], [2399.69, 1772.57], [2373.73, 1765.61], [2367.9, 1764.04]], "length": 101.59}, {"u": 53490485, "v": 53490487, "oneway": false, "points": [[2466.18, 1789.73], [2470.84, 1790.87], [2479.7, 1793.04]], "length": 13.92}, {"u": 53490487, "v": 1142902939, "oneway": true, "points": [[2479.7, 1793.04], [2488.09, 1791.74], [2494.34, 1790.27], [2499.16, 1788.48], [2502.44, 1786.73], [2505.09, 1784.05], [2507.84, 1780.66], [2511.15, 1775.6], [2517.69, 1763.59], [2520.51, 1758.31]], "length": 57.61}, {"u": 53490487, "v": 53490485, "oneway": false, "points": [[2479.7, 1793.04], [2470.84, 1790.87], [2466.18, 1789.73]], "length": 13.92}, {"u": 53490491, "v": 53498417, "oneway": false, "points": [[2549.28, 1813.01], [2549.49, 1816.78], [2551.13, 1846.17], [2551.55, 1853.78], [2552.92, 1878.31], [2554.34, 1903.68], [2554.82, 1912.31]], "length": 99.45}, {"u": 53490491, "v": 3786906822, "oneway": true, "points": [[2549.28, 1813.01], [2546.11, 1812.15], [2521.5, 1805.5], [2518.04, 1804.56], [2510.49, 1802.52], [2508.0, 1801.84], [2486.59, 1795.19]], "length": 65.19}, {"u": 53490496, "v": 2925569869, "oneway": false, "points": [[2652.05, 1835.8], [2652.59, 1833.95]], "length": 1.93}, {"u": 53490496, "v": 53572027, "oneway": false, "points": [[2652.05, 1835.8], [2648.57, 1843.63], [2645.61, 1850.28], [2643.65, 1858.56], [2643.11, 1868.46], [2643.25, 1872.47], [2644.85, 1900.41], [2644.96, 1905.53]], "length": 71.39}, {"u": 53490496, "v": 53490491, "oneway": true, "points": [[2652.05, 1835.8], [2641.39, 1833.67], [2614.56, 1828.27], [2590.63, 1822.73], [2558.75, 1815.28], [2549.28, 1813.01]], "length": 105.28}, {"u": 53493114, "v": 1186826687, "oneway": true, "points": [[-307.52, -392.82], [-301.9, -399.0], [-279.07, -424.74], [-254.34, -451.29], [-250.31, -454.04], [-246.24, -455.87], [-242.62, -456.78], [-239.64, -457.04]], "length": 95.11}, {"u": 53493114, "v": 53467500, "oneway": false, "points": [[-307.52, -392.82], [-314.0, -399.32], [-335.77, -419.33], [-373.86, -454.82], [-381.38, -461.89]], "length": 101.13}, {"u": 53493128, "v": 53578514, "oneway": true, "points": [[-679.7, -731.45], [-673.51, -738.14], [-654.0, -759.4], [-651.92, -761.68], [-644.68, -769.56], [-633.58, -781.68], [-632.59, -782.76], [-617.86, -798.82], [-611.74, -805.49]], "length": 100.5}, {"u": 53493128, "v": 53493129, "oneway": false, "points": [[-679.7, -731.45], [-684.2, -735.49], [-687.08, -738.09], [-701.99, -751.49], [-709.65, -758.57], [-717.06, -765.27], [-733.5, -780.09], [-738.78, -784.88], [-751.52, -796.37], [-766.95, -810.3], [-795.21, -835.83], [-799.68, -839.86], [-802.54, -842.44], [-814.87, -853.58], [-823.17, -861.08], [-830.25, -867.46]], "length": 202.89}, {"u": 53493128, "v": 53482952, "oneway": false, "points": [[-679.7, -731.45], [-673.18, -725.61], [-656.36, -710.43], [-649.98, -704.67], [-641.94, -697.41], [-637.48, -693.38], [-626.91, -683.84], [-619.79, -677.41], [-586.65, -647.65], [-579.46, -641.19], [-569.4, -632.15], [-555.0, -619.2], [-545.26, -610.45], [-539.03, -604.9], [-536.52, -602.66], [-530.88, -597.44]], "length": 200.27}, {"u": 53493129, "v": 53578519, "oneway": false, "points": [[-830.25, -867.46], [-824.01, -873.91], [-801.42, -898.97], [-798.66, -901.91], [-795.26, -905.6], [-767.83, -935.51], [-761.66, -942.28]], "length": 101.5}, {"u": 53493129, "v": 53508174, "oneway": false, "points": [[-830.25, -867.46], [-835.19, -862.09], [-869.82, -824.3], [-878.33, -814.95], [-904.95, -784.86], [-906.88, -782.73], [-917.63, -771.08]], "length": 130.1}, {"u": 53493129, "v": 53493140, "oneway": false, "points": [[-830.25, -867.46], [-835.99, -873.01], [-862.45, -896.54], [-895.56, -926.45], [-902.97, -933.39], [-908.61, -938.74], [-918.28, -948.12], [-928.89, -957.84], [-934.96, -963.26], [-942.76, -970.42], [-953.16, -980.0], [-961.17, -987.52], [-1001.78, -1025.29]], "length": 233.11}, {"u": 53493129, "v": 53493128, "oneway": false, "points": [[-830.25, -867.46], [-823.17, -861.08], [-814.87, -853.58], [-802.54, -842.44], [-799.68, -839.86], [-795.21, -835.83], [-766.95, -810.3], [-751.52, -796.37], [-738.78, -784.88], [-733.5, -780.09], [-717.06, -765.27], [-709.65, -758.57], [-701.99, -751.49], [-687.08, -738.09], [-684.2, -735.49], [-679.7, -731.45]], "length": 202.89}, {"u": 53493140, "v": 1179967125, "oneway": true, "points": [[-1001.78, -1025.29], [-995.82, -1032.46], [-933.23, -1103.58]], "length": 104.06}, {"u": 53493140, "v": 53493129, "oneway": false, "points": [[-1001.78, -1025.29], [-961.17, -987.52], [-953.16, -980.0], [-942.76, -970.42], [-934.96, -963.26], [-928.89, -957.84], [-918.28, -948.12], [-908.61, -938.74], [-902.97, -933.39], [-895.56, -926.45], [-862.45, -896.54], [-835.99, -873.01], [-830.25, -867.46]], "length": 233.11}, {"u": 53493140, "v": 13056348949, "oneway": false, "points": [[-1001.78, -1025.29], [-1019.32, -1041.36], [-1021.67, -1043.45], [-1028.11, -1049.17]], "length": 35.54}, {"u": 53494572, "v": 53494580, "oneway": false, "points": [[2000.57, 1021.36], [2007.75, 1013.47], [2061.59, 954.35], [2068.29, 946.99]], "length": 100.59}, {"u": 53494572, "v": 53560789, "oneway": false, "points": [[2000.57, 1021.36], [1993.21, 1014.75], [1978.13, 1001.2], [1856.67, 892.06], [1851.17, 887.12]], "length": 200.85}, {"u": 53494572, "v": 2707919868, "oneway": false, "points": [[2000.57, 1021.36], [2008.22, 1028.36], [2089.42, 1102.7], [2094.8, 1107.63]], "length": 127.76}, {"u": 53494580, "v": 53494572, "oneway": false, "points": [[2068.29, 946.99], [2061.59, 954.35], [2007.75, 1013.47], [2000.57, 1021.36]], "length": 100.59}, {"u": 53494580, "v": 53558125, "oneway": false, "points": [[2068.29, 946.99], [2061.76, 941.08], [1927.08, 819.2], [1924.68, 817.02], [1918.29, 811.24]], "length": 202.3}, {"u": 53494580, "v": 53558139, "oneway": false, "points": [[2068.29, 946.99], [2075.74, 953.75], [2156.31, 1026.64], [2161.17, 1031.29]], "length": 125.43}, {"u": 53494580, "v": 53494585, "oneway": false, "points": [[2068.29, 946.99], [2073.73, 940.97], [2128.98, 879.83], [2135.29, 872.86]], "length": 99.92}, {"u": 53494585, "v": 53558139, "oneway": false, "points": [[2135.29, 872.86], [2141.79, 879.13], [2146.17, 883.34], [2202.59, 960.22], [2209.51, 971.7], [2210.28, 975.9], [2209.54, 978.48], [2208.45, 980.28], [2167.84, 1023.58], [2166.14, 1025.39], [2162.73, 1029.03], [2161.17, 1031.29]], "length": 202.52}, {"u": 53494585, "v": 53560795, "oneway": false, "points": [[2135.29, 872.86], [2128.39, 866.39], [2101.15, 840.81], [1991.48, 743.58], [1986.52, 739.17]], "length": 200.03}, {"u": 53494585, "v": 53494580, "oneway": false, "points": [[2135.29, 872.86], [2128.98, 879.83], [2073.73, 940.97], [2068.29, 946.99]], "length": 99.92}, {"u": 53496307, "v": 53498440, "oneway": false, "points": [[2526.93, 1623.65], [2529.32, 1669.16]], "length": 45.58}, {"u": 53496307, "v": 53496315, "oneway": false, "points": [[2526.93, 1623.65], [2535.44, 1626.0], [2538.41, 1626.74], [2599.04, 1641.85], [2620.72, 1647.92], [2684.23, 1664.44], [2686.66, 1665.07], [2693.99, 1666.98]], "length": 172.6}, {"u": 53496307, "v": 53461443, "oneway": false, "points": [[2526.93, 1623.65], [2525.03, 1591.58], [2522.57, 1550.15], [2521.96, 1540.01], [2521.11, 1525.69], [2520.61, 1517.45]], "length": 106.39}, {"u": 53496315, "v": 53487528, "oneway": false, "points": [[2693.99, 1666.98], [2700.67, 1668.65], [2703.79, 1669.43], [2767.47, 1685.38], [2775.23, 1687.31]], "length": 83.74}, {"u": 53496315, "v": 53496307, "oneway": false, "points": [[2693.99, 1666.98], [2686.66, 1665.07], [2684.23, 1664.44], [2620.72, 1647.92], [2599.04, 1641.85], [2538.41, 1626.74], [2535.44, 1626.0], [2526.93, 1623.65]], "length": 172.6}, {"u": 53496315, "v": 53596328, "oneway": false, "points": [[2693.99, 1666.98], [2695.42, 1661.01], [2702.31, 1632.4], [2704.94, 1607.1], [2705.25, 1586.2], [2706.52, 1556.04], [2707.89, 1535.37], [2708.01, 1533.52], [2708.58, 1524.86]], "length": 143.34}, {"u": 53496315, "v": 53611268, "oneway": false, "points": [[2693.99, 1666.98], [2692.47, 1674.58], [2687.42, 1699.73], [2678.14, 1742.07], [2677.61, 1744.49], [2676.22, 1750.83]], "length": 85.72}, {"u": 53498225, "v": 53498229, "oneway": false, "points": [[1982.62, 2196.6], [1976.1, 2202.87], [1919.05, 2262.07], [1913.14, 2268.21]], "length": 99.78}, {"u": 53498225, "v": 53538734, "oneway": false, "points": [[1982.62, 2196.6], [1989.02, 2190.08], [2046.94, 2130.52], [2052.88, 2124.44]], "length": 100.72}, {"u": 53498225, "v": 53668900, "oneway": false, "points": [[1982.62, 2196.6], [1975.92, 2190.37], [1845.49, 2061.91], [1839.46, 2056.0]], "length": 200.67}, {"u": 53498225, "v": 1706427648, "oneway": false, "points": [[1982.62, 2196.6], [1989.07, 2202.87], [2120.35, 2330.35], [2127.58, 2337.4]], "length": 202.08}, {"u": 53498229, "v": 53640713, "oneway": false, "points": [[1913.14, 2268.21], [1906.54, 2262.53]], "length": 8.71}, {"u": 53498229, "v": 446196406, "oneway": false, "points": [[1913.14, 2268.21], [1907.89, 2274.0], [1873.32, 2309.26], [1870.78, 2311.85], [1869.14, 2313.51], [1856.39, 2326.52], [1850.04, 2332.99], [1825.41, 2355.54], [1817.46, 2362.63]], "length": 134.48}, {"u": 53498229, "v": 53498225, "oneway": false, "points": [[1913.14, 2268.21], [1919.05, 2262.07], [1976.1, 2202.87], [1982.62, 2196.6]], "length": 99.78}, {"u": 53498229, "v": 349368476, "oneway": false, "points": [[1913.14, 2268.21], [1919.33, 2274.14], [1941.96, 2295.44], [2001.06, 2353.63], [2050.78, 2402.49], [2057.44, 2409.02]], "length": 201.62}, {"u": 53498398, "v": 53498412, "oneway": false, "points": [[2573.5, 2250.96], [2573.37, 2244.58], [2573.21, 2241.67], [2565.19, 2098.07]], "length": 153.12}, {"u": 53498398, "v": 53611260, "oneway": false, "points": [[2573.5, 2250.96], [2579.59, 2250.77], [2654.7, 2246.45], [2662.6, 2245.99]], "length": 89.24}, {"u": 53498398, "v": 2627868774, "oneway": false, "points": [[2573.5, 2250.96], [2567.01, 2251.31], [2550.31, 2250.51], [2535.37, 2241.7], [2527.62, 2240.09], [2523.28, 2239.85], [2516.23, 2239.49]], "length": 59.89}, {"u": 53498412, "v": 53498415, "oneway": false, "points": [[2565.19, 2098.07], [2563.66, 2070.68], [2563.11, 2060.77]], "length": 37.36}, {"u": 53498412, "v": 53498398, "oneway": false, "points": [[2565.19, 2098.07], [2573.21, 2241.67], [2573.37, 2244.58], [2573.5, 2250.96]], "length": 153.12}, {"u": 53498412, "v": 53529508, "oneway": false, "points": [[2565.19, 2098.07], [2559.56, 2101.44], [2543.06, 2111.35]], "length": 25.81}, {"u": 53498415, "v": 53498417, "oneway": false, "points": [[2563.11, 2060.77], [2562.76, 2054.67], [2561.09, 2024.75], [2558.2, 1972.8], [2555.17, 1918.49], [2554.82, 1912.31]], "length": 148.7}, {"u": 53498415, "v": 53498412, "oneway": false, "points": [[2563.11, 2060.77], [2563.66, 2070.68], [2565.19, 2098.07]], "length": 37.36}, {"u": 53498415, "v": 53604832, "oneway": false, "points": [[2563.11, 2060.77], [2569.91, 2060.42], [2645.09, 2057.67], [2652.97, 2057.39]], "length": 89.92}, {"u": 53498417, "v": 53490491, "oneway": false, "points": [[2554.82, 1912.31], [2554.34, 1903.68], [2552.92, 1878.31], [2551.55, 1853.78], [2551.13, 1846.17], [2549.49, 1816.78], [2549.28, 1813.01]], "length": 99.45}, {"u": 53498417, "v": 53498415, "oneway": false, "points": [[2554.82, 1912.31], [2555.17, 1918.49], [2558.2, 1972.8], [2561.09, 2024.75], [2562.76, 2054.67], [2563.11, 2060.77]], "length": 148.7}, {"u": 53498417, "v": 53572027, "oneway": false, "points": [[2554.82, 1912.31], [2562.2, 1911.51], [2564.4, 1911.29], [2583.57, 1909.37], [2637.4, 1906.0], [2644.96, 1905.53]], "length": 90.41}, {"u": 53498417, "v": 53522245, "oneway": false, "points": [[2554.82, 1912.31], [2549.12, 1912.46], [2546.48, 1912.53], [2441.21, 1915.69], [2434.65, 1917.1]], "length": 120.37}, {"u": 53498437, "v": 3786906803, "oneway": false, "points": [[2529.85, 1715.82], [2536.93, 1716.14]], "length": 7.09}, {"u": 53498437, "v": 3786906785, "oneway": true, "points": [[2529.85, 1715.82], [2529.89, 1707.41], [2529.84, 1699.66], [2529.51, 1691.0], [2529.72, 1684.59], [2530.78, 1680.68]], "length": 35.29}, {"u": 53498440, "v": 53496307, "oneway": false, "points": [[2529.32, 1669.16], [2526.93, 1623.65]], "length": 45.58}, {"u": 53498440, "v": 3786906785, "oneway": false, "points": [[2529.32, 1669.16], [2530.78, 1680.68]], "length": 11.61}, {"u": 53498440, "v": 53537040, "oneway": false, "points": [[2529.32, 1669.16], [2523.59, 1669.03], [2520.71, 1668.17], [2519.93, 1667.81], [2517.47, 1666.72], [2514.94, 1665.37], [2453.39, 1624.04], [2391.24, 1580.77], [2345.92, 1550.59], [2328.64, 1538.41]], "length": 240.62}, {"u": 53498447, "v": 53568332, "oneway": false, "points": [[2516.01, 1434.68], [2525.05, 1435.0], [2527.53, 1435.04], [2608.14, 1437.99], [2614.84, 1438.24]], "length": 98.89}, {"u": 53498447, "v": 53558152, "oneway": false, "points": [[2516.01, 1434.68], [2514.09, 1429.13], [2513.8, 1428.29], [2503.84, 1416.01], [2472.04, 1371.45]], "length": 77.31}, {"u": 53498447, "v": 53461443, "oneway": false, "points": [[2516.01, 1434.68], [2518.84, 1474.39], [2520.29, 1509.66], [2520.61, 1517.45]], "length": 82.91}, {"u": 53499266, "v": 53578394, "oneway": false, "points": [[1496.77, 2720.39], [1490.75, 2720.77], [1487.73, 2721.31], [1484.98, 2722.56], [1478.78, 2725.38], [1440.34, 2744.7], [1436.9, 2746.43], [1410.99, 2759.99], [1401.1, 2765.16], [1392.16, 2769.83]], "length": 116.3}, {"u": 53499266, "v": 496686159, "oneway": false, "points": [[1496.77, 2720.39], [1496.47, 2714.3], [1495.17, 2687.38], [1493.24, 2648.61], [1492.67, 2637.26], [1491.66, 2612.41], [1491.56, 2609.88], [1490.34, 2580.11], [1489.04, 2547.99], [1487.83, 2518.19], [1487.73, 2515.9], [1486.84, 2494.04], [1485.9, 2471.6]], "length": 249.03}, {"u": 53499287, "v": 53441265, "oneway": false, "points": [[-1123.52, 155.76], [-1123.68, 152.22], [-1124.25, 139.06], [-1124.52, 132.9], [-1125.98, 99.33], [-1126.02, 98.51], [-1126.56, 86.09], [-1127.24, 70.45], [-1128.52, 41.22], [-1129.54, 17.8], [-1129.6, 16.38], [-1130.2, 7.19]], "length": 148.72}, {"u": 53499299, "v": 2859245573, "oneway": false, "points": [[-1197.79, -708.18], [-1199.14, -699.93], [-1198.11, -677.74], [-1193.95, -596.92], [-1193.65, -592.17], [-1191.47, -547.76], [-1191.32, -545.08], [-1190.92, -536.6]], "length": 171.9}, {"u": 53503712, "v": 53407747, "oneway": false, "points": [[2217.16, 1765.53], [2209.8, 1769.41], [2201.19, 1773.76], [2199.42, 1775.22], [2198.09, 1776.52], [2192.75, 1781.75], [2179.56, 1794.67], [2170.33, 1803.71], [2141.17, 1834.68], [2137.09, 1838.91], [2125.63, 1850.98], [2119.67, 1857.27]], "length": 134.71}, {"u": 53503712, "v": 53480554, "oneway": false, "points": [[2217.16, 1765.53], [2218.91, 1768.4], [2219.86, 1769.96], [2230.89, 1788.12], [2241.55, 1805.65], [2243.94, 1809.58], [2262.88, 1839.8], [2264.98, 1843.25], [2268.93, 1849.73]], "length": 98.85}, {"u": 53503712, "v": 316342869, "oneway": false, "points": [[2217.16, 1765.53], [2209.15, 1752.66], [2195.9, 1731.4], [2188.95, 1720.25]], "length": 53.35}, {"u": 53503834, "v": 53709531, "oneway": false, "points": [[-1999.73, -1071.03], [-1999.89, -1076.16], [-2001.21, -1118.24], [-2001.29, -1120.92], [-2001.65, -1132.03]], "length": 61.03}, {"u": 53503834, "v": 53643765, "oneway": false, "points": [[-1999.73, -1071.03], [-2007.82, -1070.93], [-2036.27, -1070.36], [-2054.48, -1069.83], [-2060.32, -1069.69], [-2109.19, -1068.04], [-2120.56, -1067.65], [-2128.56, -1067.35]], "length": 128.89}, {"u": 53503834, "v": 53680515, "oneway": false, "points": [[-1999.73, -1071.03], [-1991.83, -1071.28], [-1954.54, -1072.14]], "length": 45.19}, {"u": 53503843, "v": 53503849, "oneway": false, "points": [[-2004.51, -1252.19], [-2004.78, -1263.83], [-2005.87, -1312.38], [-2006.63, -1339.12], [-2007.14, -1362.24], [-2007.2, -1364.96], [-2007.64, -1373.72]], "length": 121.57}, {"u": 53503843, "v": 53709531, "oneway": false, "points": [[-2004.51, -1252.19], [-2004.28, -1241.38], [-2003.22, -1192.21], [-2001.94, -1143.29], [-2001.65, -1132.03]], "length": 120.19}, {"u": 53503843, "v": 53643772, "oneway": false, "points": [[-2004.51, -1252.19], [-2012.33, -1251.95], [-2124.75, -1249.29], [-2132.55, -1249.08]], "length": 128.08}, {"u": 53503843, "v": 53576829, "oneway": false, "points": [[-2004.51, -1252.19], [-1996.23, -1252.47], [-1884.6, -1255.28], [-1883.83, -1255.31], [-1875.3, -1255.67]], "length": 129.27}, {"u": 53503849, "v": 53503855, "oneway": false, "points": [[-2007.64, -1373.72], [-2007.74, -1384.91], [-2008.5, -1429.37]], "length": 55.66}, {"u": 53503849, "v": 53503843, "oneway": false, "points": [[-2007.64, -1373.72], [-2007.2, -1364.96], [-2007.14, -1362.24], [-2006.63, -1339.12], [-2005.87, -1312.38], [-2004.78, -1263.83], [-2004.51, -1252.19]], "length": 121.57}, {"u": 53503849, "v": 53621269, "oneway": false, "points": [[-2007.64, -1373.72], [-2015.63, -1373.58], [-2127.68, -1370.75], [-2135.99, -1370.55]], "length": 128.39}, {"u": 53503849, "v": 53576831, "oneway": false, "points": [[-2007.64, -1373.72], [-2000.34, -1373.92], [-1971.87, -1374.61], [-1940.08, -1375.58], [-1888.02, -1377.0], [-1885.88, -1377.06], [-1878.26, -1377.19]], "length": 129.43}, {"u": 53503855, "v": 53503849, "oneway": false, "points": [[-2008.5, -1429.37], [-2007.74, -1384.91], [-2007.64, -1373.72]], "length": 55.66}, {"u": 53503864, "v": 3811323395, "oneway": false, "points": [[-1998.43, -863.9], [-1998.45, -873.09], [-1998.48, -874.56], [-1998.65, -881.69], [-1998.69, -883.26], [-1999.01, -896.55], [-1999.34, -908.31], [-2000.08, -936.7]], "length": 72.82}, {"u": 53503864, "v": 53472268, "oneway": true, "points": [[-1998.43, -863.9], [-1998.27, -854.56], [-1998.13, -846.8], [-1997.47, -807.59], [-1997.1, -794.27], [-1996.68, -782.64], [-1996.2, -759.02], [-1996.01, -753.86]], "length": 110.07}, {"u": 53503864, "v": 53545894, "oneway": false, "points": [[-1998.43, -863.9], [-2006.79, -863.52], [-2022.76, -862.77], [-2024.45, -862.7], [-2071.01, -860.54]], "length": 72.65}, {"u": 53503864, "v": 53576821, "oneway": false, "points": [[-1998.43, -863.9], [-1990.12, -864.28], [-1980.49, -864.73], [-1948.12, -866.22], [-1944.54, -866.39], [-1924.22, -867.33], [-1917.22, -867.65], [-1907.51, -868.1], [-1874.57, -869.62], [-1865.57, -870.04]], "length": 133.0}, {"u": 53504312, "v": 53504327, "oneway": false, "points": [[-2659.19, -559.08], [-2669.68, -557.82], [-2734.85, -555.96], [-2742.82, -555.62]], "length": 83.74}, {"u": 53504312, "v": 53516186, "oneway": false, "points": [[-2659.19, -559.08], [-2658.98, -550.25], [-2656.65, -470.93], [-2655.19, -422.86], [-2654.93, -414.0]], "length": 145.14}, {"u": 53504312, "v": 4214349299, "oneway": false, "points": [[-2659.19, -559.08], [-2659.58, -566.02], [-2664.89, -732.79], [-2665.19, -741.88]], "length": 182.9}, {"u": 53504327, "v": 53504329, "oneway": false, "points": [[-2742.82, -555.62], [-2750.44, -555.32], [-2881.24, -550.27], [-2888.08, -550.0]], "length": 145.37}, {"u": 53504327, "v": 53504312, "oneway": false, "points": [[-2742.82, -555.62], [-2734.85, -555.96], [-2669.68, -557.82], [-2659.19, -559.08]], "length": 83.74}, {"u": 53504327, "v": 53684770, "oneway": false, "points": [[-2742.82, -555.62], [-2742.58, -547.69], [-2738.71, -419.85], [-2738.47, -411.69]], "length": 144.0}, {"u": 53504327, "v": 53578682, "oneway": false, "points": [[-2742.82, -555.62], [-2743.01, -564.01], [-2744.78, -639.09], [-2745.02, -647.33]], "length": 91.74}, {"u": 53504329, "v": 53504327, "oneway": false, "points": [[-2888.08, -550.0], [-2881.24, -550.27], [-2750.44, -555.32], [-2742.82, -555.62]], "length": 145.37}, {"u": 53504329, "v": 53514812, "oneway": false, "points": [[-2888.08, -550.0], [-2887.34, -490.22], [-2886.26, -478.36]], "length": 71.69}, {"u": 53504329, "v": 53514806, "oneway": false, "points": [[-2888.08, -550.0], [-2889.13, -591.99], [-2891.27, -632.88], [-2891.49, -640.88]], "length": 90.95}, {"u": 53508174, "v": 53493129, "oneway": false, "points": [[-917.63, -771.08], [-906.88, -782.73], [-904.95, -784.86], [-878.33, -814.95], [-869.82, -824.3], [-835.19, -862.09], [-830.25, -867.46]], "length": 130.1}, {"u": 53508174, "v": 13151160466, "oneway": false, "points": [[-917.63, -771.08], [-925.21, -777.75], [-942.4, -792.85], [-951.99, -801.28], [-963.6, -811.48], [-974.4, -820.98], [-1009.5, -851.84], [-1011.29, -853.42], [-1023.25, -863.93], [-1026.54, -866.82], [-1027.74, -867.87]], "length": 146.6}, {"u": 53508174, "v": 53615260, "oneway": false, "points": [[-917.63, -771.08], [-910.56, -765.22], [-891.72, -748.08], [-886.93, -743.74], [-882.9, -740.04], [-854.44, -714.13], [-846.32, -706.74], [-830.53, -692.36], [-822.82, -685.23], [-813.42, -676.79], [-804.74, -668.86], [-790.86, -656.19], [-778.91, -645.32], [-776.56, -643.21], [-772.72, -639.69], [-767.5, -634.98]], "length": 202.66}, {"u": 53508174, "v": 53508176, "oneway": false, "points": [[-917.63, -771.08], [-928.86, -758.74], [-930.07, -757.4], [-972.19, -710.85], [-974.95, -707.77], [-999.89, -680.24], [-1005.72, -673.79]], "length": 131.24}, {"u": 53508176, "v": 2859245506, "oneway": false, "points": [[-1005.72, -673.79], [-1012.15, -666.7], [-1044.95, -630.17], [-1047.26, -626.86], [-1048.82, -623.73], [-1049.98, -619.58], [-1050.28, -614.24], [-1050.03, -605.53], [-1050.03, -603.48], [-1049.61, -583.88], [-1049.03, -554.58], [-1048.98, -552.05], [-1048.74, -543.72]], "length": 146.4}, {"u": 53508176, "v": 53604267, "oneway": false, "points": [[-1005.72, -673.79], [-1012.45, -679.93], [-1014.53, -681.82], [-1053.75, -717.65]], "length": 65.04}, {"u": 53508176, "v": 53604263, "oneway": false, "points": [[-1005.72, -673.79], [-999.26, -667.92], [-997.32, -666.14], [-948.99, -622.15], [-945.75, -619.2], [-933.88, -608.4], [-916.87, -592.91], [-912.69, -589.11], [-897.86, -575.61], [-887.5, -566.18], [-865.43, -546.07], [-863.36, -544.19], [-861.17, -542.19], [-856.48, -537.93]], "length": 201.82}, {"u": 53508176, "v": 53508174, "oneway": false, "points": [[-1005.72, -673.79], [-999.89, -680.24], [-974.95, -707.77], [-972.19, -710.85], [-930.07, -757.4], [-928.86, -758.74], [-917.63, -771.08]], "length": 131.24}, {"u": 53509875, "v": 53616173, "oneway": false, "points": [[-1794.2, -689.28], [-1731.02, -691.98]], "length": 63.23}, {"u": 53509875, "v": 53509878, "oneway": false, "points": [[-1794.2, -689.28], [-1818.51, -688.24], [-1823.59, -688.02], [-1850.74, -686.87], [-1852.49, -686.79], [-1860.95, -686.43]], "length": 66.82}, {"u": 53509875, "v": 53646449, "oneway": false, "points": [[-1794.2, -689.28], [-1793.86, -680.66], [-1792.08, -644.59], [-1790.6, -614.49]], "length": 74.87}, {"u": 53509878, "v": 53545473, "oneway": false, "points": [[-1860.95, -686.43], [-1862.01, -750.03]], "length": 63.61}, {"u": 53509878, "v": 53509875, "oneway": false, "points": [[-1860.95, -686.43], [-1852.49, -686.79], [-1850.74, -686.87], [-1823.59, -688.02], [-1818.51, -688.24], [-1794.2, -689.28]], "length": 66.82}, {"u": 53509878, "v": 53509962, "oneway": false, "points": [[-1860.95, -686.43], [-1860.73, -675.62], [-1860.67, -670.72], [-1860.57, -661.91]], "length": 24.52}, {"u": 53509962, "v": 4139816155, "oneway": false, "points": [[-1860.57, -661.91], [-1869.33, -661.46], [-1873.02, -661.28], [-1893.06, -660.26], [-1907.91, -659.5], [-1916.9, -659.04], [-1936.05, -658.06], [-1937.8, -657.96], [-1966.42, -656.51], [-1983.93, -655.62], [-1993.57, -655.14]], "length": 133.17}, {"u": 53509962, "v": 53509878, "oneway": false, "points": [[-1860.57, -661.91], [-1860.67, -670.72], [-1860.73, -675.62], [-1860.95, -686.43]], "length": 24.52}, {"u": 53509962, "v": 53668988, "oneway": false, "points": [[-1860.57, -661.91], [-1860.2, -623.45], [-1859.4, -609.94], [-1859.11, -600.21], [-1858.45, -578.47], [-1858.35, -548.33], [-1858.03, -513.69], [-1857.86, -508.45], [-1857.69, -502.16]], "length": 159.79}, {"u": 53510000, "v": 1426438835, "oneway": false, "points": [[-2263.26, -641.64], [-2263.05, -631.61], [-2262.29, -616.09]], "length": 25.57}, {"u": 53510000, "v": 53483907, "oneway": false, "points": [[-2263.26, -641.64], [-2263.56, -649.63], [-2263.72, -654.13], [-2264.33, -678.69], [-2265.51, -724.04], [-2264.92, -740.67], [-2265.14, -746.19], [-2266.31, -765.6], [-2266.62, -776.88], [-2266.5, -784.26], [-2266.31, -790.49], [-2265.75, -798.46], [-2265.85, -803.1], [-2265.93, -807.01], [-2266.93, -841.09], [-2266.82, -850.58]], "length": 209.07}, {"u": 53510000, "v": 1180005831, "oneway": false, "points": [[-2263.26, -641.64], [-2253.14, -642.24], [-2249.89, -642.4], [-2221.89, -643.79], [-2201.94, -644.78], [-2187.29, -645.51], [-2185.94, -645.58], [-2166.19, -646.56], [-2163.53, -646.69], [-2137.68, -647.98], [-2128.17, -648.45]], "length": 135.26}, {"u": 53510799, "v": 53510828, "oneway": false, "points": [[1145.91, 2439.54], [1144.17, 2452.93], [1147.55, 2468.72], [1153.9, 2485.88], [1168.46, 2519.7], [1194.74, 2573.53], [1216.89, 2613.81], [1228.74, 2632.59], [1233.31, 2638.69], [1242.32, 2649.33], [1264.17, 2673.16], [1275.16, 2684.52], [1288.36, 2693.15], [1296.51, 2699.14]], "length": 308.43}, {"u": 53510799, "v": 53555070, "oneway": false, "points": [[1145.91, 2439.54], [1138.55, 2450.08], [1132.07, 2457.16], [1123.63, 2463.84], [1110.04, 2472.9], [1089.95, 2485.36], [1074.86, 2493.45], [1065.83, 2502.49]], "length": 103.08}, {"u": 53510799, "v": 496686202, "oneway": false, "points": [[1145.91, 2439.54], [1152.02, 2430.81], [1168.71, 2413.44], [1186.62, 2400.91], [1194.25, 2394.94]], "length": 66.29}, {"u": 53510828, "v": 53510799, "oneway": false, "points": [[1296.51, 2699.14], [1288.36, 2693.15], [1275.16, 2684.52], [1264.17, 2673.16], [1242.32, 2649.33], [1233.31, 2638.69], [1228.74, 2632.59], [1216.89, 2613.81], [1194.74, 2573.53], [1168.46, 2519.7], [1153.9, 2485.88], [1147.55, 2468.72], [1144.17, 2452.93], [1145.91, 2439.54]], "length": 308.43}, {"u": 53510828, "v": 53578383, "oneway": false, "points": [[1296.51, 2699.14], [1344.09, 2695.68], [1351.29, 2695.15]], "length": 54.93}, {"u": 53510828, "v": 53555070, "oneway": false, "points": [[1296.51, 2699.14], [1274.4, 2700.66], [1217.5, 2701.93], [1181.71, 2703.28], [1167.2, 2703.02], [1158.13, 2701.83], [1147.32, 2699.69], [1137.98, 2695.06], [1133.06, 2691.19], [1130.49, 2689.16], [1114.64, 2673.16], [1099.67, 2651.13], [1094.92, 2644.15], [1085.47, 2626.64], [1078.49, 2607.16], [1071.3, 2580.58], [1065.07, 2561.96], [1062.31, 2553.71], [1060.29, 2547.08], [1057.82, 2538.95], [1056.37, 2527.76], [1057.44, 2519.73], [1059.92, 2512.1], [1063.92, 2504.59], [1064.25, 2503.98], [1065.83, 2502.49]], "length": 377.8}, {"u": 53511571, "v": 2634693278, "oneway": false, "points": [[-1529.74, -1505.17], [-1533.1, -1626.72]], "length": 121.6}, {"u": 53511571, "v": 1179795897, "oneway": false, "points": [[-1529.74, -1505.17], [-1528.99, -1430.84], [-1528.45, -1398.57], [-1529.55, -1391.14], [-1531.57, -1385.41], [-1535.86, -1382.68], [-1544.68, -1381.51], [-1552.44, -1381.34]], "length": 141.94}, {"u": 53511571, "v": 1179796106, "oneway": false, "points": [[-1529.74, -1505.17], [-1537.98, -1505.1], [-1550.58, -1504.94], [-1576.25, -1504.21], [-1586.98, -1503.9], [-1589.81, -1503.82], [-1591.4, -1503.77], [-1598.7, -1503.58], [-1600.85, -1503.52], [-1608.9, -1503.3]], "length": 79.18}, {"u": 53511582, "v": 53511589, "oneway": false, "points": [[-1751.71, -1499.93], [-1760.7, -1499.85], [-1760.91, -1499.84], [-1872.75, -1497.92], [-1881.91, -1497.77]], "length": 130.22}, {"u": 53511582, "v": 1179796096, "oneway": false, "points": [[-1751.71, -1499.93], [-1743.04, -1500.07], [-1711.25, -1500.64], [-1667.38, -1501.96], [-1663.68, -1502.07], [-1638.49, -1502.75], [-1633.06, -1502.89], [-1631.02, -1502.95], [-1623.84, -1503.15]], "length": 127.91}, {"u": 53511582, "v": 53621256, "oneway": false, "points": [[-1751.71, -1499.93], [-1751.38, -1489.63], [-1751.23, -1485.01], [-1749.83, -1440.88], [-1748.42, -1390.94], [-1748.36, -1388.86], [-1748.09, -1379.25]], "length": 120.73}, {"u": 53511582, "v": 53529686, "oneway": false, "points": [[-1751.71, -1499.93], [-1751.9, -1511.7], [-1751.95, -1514.9], [-1752.7, -1561.51], [-1753.89, -1611.57], [-1754.14, -1621.95]], "length": 122.05}, {"u": 53511589, "v": 53511582, "oneway": false, "points": [[-1881.91, -1497.77], [-1872.75, -1497.92], [-1760.91, -1499.84], [-1760.7, -1499.85], [-1751.71, -1499.93]], "length": 130.22}, {"u": 53511589, "v": 53576831, "oneway": false, "points": [[-1881.91, -1497.77], [-1881.52, -1486.61], [-1879.75, -1436.99], [-1878.52, -1387.76], [-1878.26, -1377.19]], "length": 120.64}, {"u": 53511589, "v": 53529689, "oneway": false, "points": [[-1881.91, -1497.77], [-1882.15, -1509.04], [-1883.14, -1557.77], [-1884.01, -1609.28], [-1884.17, -1619.2]], "length": 121.45}, {"u": 53511589, "v": 53511593, "oneway": false, "points": [[-1881.91, -1497.77], [-1889.88, -1497.58], [-2117.41, -1491.44]], "length": 235.59}, {"u": 53511593, "v": 53529692, "oneway": false, "points": [[-2117.41, -1491.44], [-2117.63, -1502.69], [-2119.56, -1602.7], [-2119.86, -1610.29]], "length": 118.87}, {"u": 53511593, "v": 53511598, "oneway": false, "points": [[-2117.41, -1491.44], [-2123.06, -1491.22], [-2138.21, -1490.73]], "length": 20.81}, {"u": 53511593, "v": 53511589, "oneway": false, "points": [[-2117.41, -1491.44], [-1889.88, -1497.58], [-1881.91, -1497.77]], "length": 235.59}, {"u": 53511598, "v": 53511603, "oneway": false, "points": [[-2138.21, -1490.73], [-2223.39, -1488.9]], "length": 85.2}, {"u": 53511598, "v": 53621269, "oneway": false, "points": [[-2138.21, -1490.73], [-2138.18, -1480.2], [-2136.2, -1381.89], [-2136.19, -1381.28], [-2135.99, -1370.55]], "length": 120.21}, {"u": 53511598, "v": 53511593, "oneway": false, "points": [[-2138.21, -1490.73], [-2123.06, -1491.22], [-2117.41, -1491.44]], "length": 20.81}, {"u": 53511603, "v": 53511598, "oneway": false, "points": [[-2223.39, -1488.9], [-2138.21, -1490.73]], "length": 85.2}, {"u": 53511603, "v": 53575900, "oneway": false, "points": [[-2223.39, -1488.9], [-2223.69, -1500.18], [-2225.36, -1571.87]], "length": 82.99}, {"u": 53511603, "v": 3812685612, "oneway": false, "points": [[-2223.39, -1488.9], [-2257.51, -1487.95], [-2275.77, -1487.44], [-2285.02, -1487.18]], "length": 61.65}, {"u": 53511694, "v": 1180187620, "oneway": false, "points": [[-1011.27, -3097.41], [-1008.32, -3074.82], [-1005.35, -3052.02], [-1003.92, -3041.02], [-1000.91, -3017.57], [-997.47, -2990.74], [-995.04, -2971.45], [-994.82, -2969.88], [-993.81, -2960.76]], "length": 137.76}, {"u": 53511694, "v": 53590668, "oneway": false, "points": [[-1011.27, -3097.41], [-1001.78, -3097.87], [-999.74, -3097.97], [-960.67, -3099.89], [-956.26, -3100.1], [-904.29, -3102.65]], "length": 107.11}, {"u": 53511712, "v": 53434867, "oneway": false, "points": [[-1054.77, -2765.17], [-1044.1, -2764.92], [-1040.27, -2764.83], [-1033.4, -2764.67], [-965.78, -2767.97], [-956.24, -2768.43]], "length": 98.63}, {"u": 53511712, "v": 53511723, "oneway": false, "points": [[-1054.77, -2765.17], [-1064.67, -2746.33], [-1087.79, -2716.28], [-1092.94, -2709.6], [-1115.03, -2682.98], [-1133.17, -2662.49], [-1142.53, -2651.69]], "length": 143.89}, {"u": 53511712, "v": 53463532, "oneway": false, "points": [[-1054.77, -2765.17], [-1052.22, -2770.86], [-1037.14, -2804.39], [-1032.65, -2814.41], [-1028.11, -2824.5], [-1019.31, -2844.07], [-1009.28, -2866.38], [-1001.27, -2884.18]], "length": 130.48}, {"u": 53511723, "v": 1180187596, "oneway": false, "points": [[-1142.53, -2651.69], [-1153.81, -2657.67]], "length": 12.76}, {"u": 53511723, "v": 53434865, "oneway": false, "points": [[-1142.53, -2651.69], [-1132.82, -2646.59], [-1130.11, -2646.6], [-1127.87, -2646.54], [-1123.78, -2646.46], [-1081.66, -2646.33], [-1038.64, -2647.62], [-959.67, -2650.88], [-951.6, -2651.21]], "length": 192.29}, {"u": 53511723, "v": 53511712, "oneway": false, "points": [[-1142.53, -2651.69], [-1133.17, -2662.49], [-1115.03, -2682.98], [-1092.94, -2709.6], [-1087.79, -2716.28], [-1064.67, -2746.33], [-1054.77, -2765.17]], "length": 143.89}, {"u": 53514806, "v": 53504329, "oneway": false, "points": [[-2891.49, -640.88], [-2891.27, -632.88], [-2889.13, -591.99], [-2888.08, -550.0]], "length": 90.95}, {"u": 53514806, "v": 1944740975, "oneway": false, "points": [[-2891.49, -640.88], [-2891.75, -649.37], [-2893.55, -724.33], [-2894.01, -732.41]], "length": 91.57}, {"u": 53514806, "v": 53578687, "oneway": false, "points": [[-2891.49, -640.88], [-2899.58, -640.56], [-3067.17, -633.98], [-3094.59, -632.48]], "length": 203.27}, {"u": 53514806, "v": 53578682, "oneway": false, "points": [[-2891.49, -640.88], [-2883.81, -641.22], [-2753.27, -646.97], [-2745.02, -647.33]], "length": 146.61}, {"u": 53514812, "v": 53514818, "oneway": false, "points": [[-2886.26, -478.36], [-2885.43, -469.05], [-2885.3, -467.5], [-2885.1, -415.38], [-2885.54, -392.64], [-2885.69, -384.9]], "length": 93.51}, {"u": 53514812, "v": 53504329, "oneway": false, "points": [[-2886.26, -478.36], [-2887.34, -490.22], [-2888.08, -550.0]], "length": 71.69}, {"u": 53514812, "v": 53549773, "oneway": false, "points": [[-2886.26, -478.36], [-2894.61, -478.22], [-2902.51, -479.34], [-2909.41, -481.47], [-2919.57, -486.18], [-2954.24, -509.97], [-2962.66, -516.62], [-2980.67, -527.99]], "length": 108.82}, {"u": 53514812, "v": 53684770, "oneway": false, "points": [[-2886.26, -478.36], [-2878.72, -478.1], [-2872.07, -477.88], [-2860.77, -475.99], [-2843.35, -470.82], [-2828.64, -463.68], [-2816.07, -454.49], [-2806.91, -445.08], [-2793.12, -433.03], [-2786.7, -428.1], [-2779.89, -423.63], [-2768.59, -418.62], [-2751.03, -411.79], [-2746.35, -411.08], [-2738.47, -411.69]], "length": 167.27}, {"u": 53514818, "v": 53514812, "oneway": false, "points": [[-2885.69, -384.9], [-2885.54, -392.64], [-2885.1, -415.38], [-2885.3, -467.5], [-2885.43, -469.05], [-2886.26, -478.36]], "length": 93.51}, {"u": 53514818, "v": 53485102, "oneway": false, "points": [[-2885.69, -384.9], [-2867.7, -374.31], [-2859.38, -368.32], [-2854.07, -362.14], [-2849.71, -352.48], [-2847.62, -342.1], [-2845.38, -305.52], [-2844.86, -296.97]], "length": 105.67}, {"u": 53514818, "v": 53481435, "oneway": false, "points": [[-2885.69, -384.9], [-2887.5, -385.74], [-2900.89, -389.36], [-2929.78, -396.24], [-2940.3, -398.79]], "length": 56.39}, {"u": 53515071, "v": 2925570317, "oneway": false, "points": [[1351.07, 840.15], [1356.52, 834.3], [1368.55, 820.45], [1371.12, 817.61], [1377.11, 810.95], [1378.66, 809.23], [1388.31, 798.51], [1392.38, 794.0], [1411.6, 772.59], [1417.61, 765.99]], "length": 99.63}, {"u": 53515071, "v": 53515077, "oneway": false, "points": [[1351.07, 840.15], [1357.76, 846.13], [1379.36, 865.58], [1398.42, 882.75], [1419.2, 901.45], [1439.27, 919.5], [1462.76, 940.63], [1475.2, 951.82], [1493.32, 968.12], [1500.44, 974.53]], "length": 200.92}, {"u": 53515071, "v": 2948595076, "oneway": false, "points": [[1351.07, 840.15], [1346.06, 835.39], [1333.49, 824.2], [1329.41, 820.56], [1301.2, 794.95], [1288.22, 783.19], [1285.44, 780.67], [1277.88, 773.83], [1210.54, 712.79], [1207.82, 710.32], [1200.99, 704.13]], "length": 202.55}, {"u": 53515077, "v": 53515080, "oneway": false, "points": [[1500.44, 974.53], [1506.82, 980.56], [1554.67, 1025.8]], "length": 74.63}, {"u": 53515077, "v": 53515071, "oneway": false, "points": [[1500.44, 974.53], [1493.32, 968.12], [1475.2, 951.82], [1462.76, 940.63], [1439.27, 919.5], [1419.2, 901.45], [1398.42, 882.75], [1379.36, 865.58], [1357.76, 846.13], [1351.07, 840.15]], "length": 200.92}, {"u": 53515077, "v": 53432346, "oneway": false, "points": [[1500.44, 974.53], [1505.79, 968.5], [1526.58, 945.07], [1532.24, 938.67], [1542.31, 927.33], [1558.47, 909.1], [1559.24, 908.31], [1567.1, 900.19]], "length": 99.87}, {"u": 53515077, "v": 366215925, "oneway": false, "points": [[1500.44, 974.53], [1493.93, 981.63], [1490.72, 985.14], [1478.81, 998.39], [1461.55, 1017.6], [1447.1, 1033.68], [1436.14, 1045.87], [1432.78, 1049.73], [1428.14, 1054.61], [1422.07, 1061.05], [1417.41, 1066.04], [1415.8, 1067.66], [1408.26, 1075.55], [1401.65, 1083.16], [1393.18, 1092.44], [1363.86, 1124.6], [1354.18, 1135.22], [1327.53, 1164.43], [1303.17, 1191.14], [1292.09, 1203.29], [1289.75, 1205.86], [1280.82, 1215.64]], "length": 326.15}, {"u": 53515080, "v": 53560780, "oneway": false, "points": [[1554.67, 1025.8], [1548.31, 1032.56], [1518.73, 1063.97], [1517.46, 1066.38], [1517.26, 1069.03], [1518.23, 1071.25], [1520.01, 1073.37], [1548.61, 1099.57], [1556.03, 1106.34], [1578.22, 1126.55], [1601.64, 1147.99], [1608.47, 1154.21]], "length": 182.84}, {"u": 53515080, "v": 53515081, "oneway": false, "points": [[1554.67, 1025.8], [1618.47, 1083.22], [1639.63, 1102.26], [1641.88, 1104.29], [1647.61, 1109.44]], "length": 125.03}, {"u": 53515080, "v": 53515077, "oneway": false, "points": [[1554.67, 1025.8], [1506.82, 980.56], [1500.44, 974.53]], "length": 74.63}, {"u": 53515081, "v": 53432349, "oneway": false, "points": [[1647.61, 1109.44], [1653.8, 1102.8], [1684.66, 1069.74], [1686.18, 1068.11], [1707.48, 1045.28], [1709.3, 1043.33], [1716.1, 1036.03]], "length": 100.39}, {"u": 53515081, "v": 53560780, "oneway": false, "points": [[1647.61, 1109.44], [1642.37, 1115.43], [1641.44, 1116.78], [1608.47, 1154.21]], "length": 59.48}, {"u": 53515081, "v": 53515080, "oneway": false, "points": [[1647.61, 1109.44], [1641.88, 1104.29], [1639.63, 1102.26], [1618.47, 1083.22], [1554.67, 1025.8]], "length": 125.03}, {"u": 53515084, "v": 53539161, "oneway": false, "points": [[-1.84, -383.81], [-6.21, -378.56], [-7.39, -377.18], [-34.46, -347.29], [-62.14, -317.45], [-68.04, -310.94]], "length": 98.46}, {"u": 53515084, "v": 53540665, "oneway": true, "points": [[-1.84, -383.81], [-11.91, -392.63], [-18.44, -398.33], [-80.25, -456.08], [-91.83, -466.54], [-98.0, -472.02]], "length": 130.5}, {"u": 53515093, "v": 53407932, "oneway": true, "points": [[376.58, -37.94], [372.46, -33.52], [347.93, -6.33], [346.73, -5.01], [252.63, 100.05], [250.55, 102.38], [244.27, 108.9]], "length": 197.66}, {"u": 53515093, "v": 1425249983, "oneway": true, "points": [[376.58, -37.94], [326.31, -85.25], [324.37, -86.59], [317.36, -91.05]], "length": 79.71}, {"u": 53516186, "v": 53684770, "oneway": false, "points": [[-2654.93, -414.0], [-2664.49, -413.68], [-2729.8, -411.92], [-2738.47, -411.69]], "length": 83.58}, {"u": 53516186, "v": 2848493174, "oneway": false, "points": [[-2654.93, -414.0], [-2654.7, -406.17], [-2650.4, -259.89], [-2649.37, -225.05], [-2649.14, -217.69]], "length": 196.4}, {"u": 53516186, "v": 53504312, "oneway": false, "points": [[-2654.93, -414.0], [-2655.19, -422.86], [-2656.65, -470.93], [-2658.98, -550.25], [-2659.19, -559.08]], "length": 145.14}, {"u": 53521155, "v": 53672772, "oneway": false, "points": [[-3065.97, -909.83], [-3140.88, -906.6]], "length": 74.98}, {"u": 53521155, "v": 2298789012, "oneway": false, "points": [[-3065.97, -909.83], [-3065.64, -901.96], [-3065.49, -898.23], [-3064.1, -864.41], [-3062.58, -827.25], [-3062.12, -817.76]], "length": 92.15}, {"u": 53521155, "v": 13009756501, "oneway": false, "points": [[-3065.97, -909.83], [-3058.08, -910.07], [-2997.64, -912.87], [-2983.28, -912.27], [-2970.84, -910.74], [-2958.38, -907.87], [-2944.53, -902.38], [-2921.19, -890.26], [-2916.77, -887.12], [-2913.87, -885.05], [-2906.79, -884.13]], "length": 165.41}, {"u": 53521446, "v": 53417781, "oneway": false, "points": [[-956.16, 172.57], [-976.75, 195.45]], "length": 30.78}, {"u": 53521446, "v": 53521450, "oneway": false, "points": [[-956.16, 172.57], [-960.63, 168.58], [-983.63, 148.15], [-991.37, 141.26], [-993.44, 139.42]], "length": 49.9}, {"u": 53521446, "v": 53441256, "oneway": false, "points": [[-956.16, 172.57], [-906.77, 117.71], [-902.71, 113.21], [-896.45, 106.26]], "length": 89.23}, {"u": 53521450, "v": 53467413, "oneway": false, "points": [[-993.44, 139.42], [-995.75, 137.36], [-1003.37, 130.59], [-1019.72, 116.05], [-1022.41, 113.65], [-1024.15, 112.1]], "length": 41.1}, {"u": 53521450, "v": 53521446, "oneway": false, "points": [[-993.44, 139.42], [-991.37, 141.26], [-983.63, 148.15], [-960.63, 168.58], [-956.16, 172.57]], "length": 49.9}, {"u": 53521450, "v": 53646359, "oneway": false, "points": [[-993.44, 139.42], [-1021.78, 171.55], [-1024.15, 174.24]], "length": 46.43}, {"u": 53522245, "v": 53490485, "oneway": false, "points": [[2434.65, 1917.1], [2437.14, 1907.04], [2442.26, 1886.36], [2445.48, 1873.36], [2448.28, 1862.05], [2457.29, 1825.64], [2464.11, 1798.09], [2464.97, 1794.65], [2466.18, 1789.73]], "length": 131.21}, {"u": 53522245, "v": 53498417, "oneway": false, "points": [[2434.65, 1917.1], [2441.21, 1915.69], [2546.48, 1912.53], [2549.12, 1912.46], [2554.82, 1912.31]], "length": 120.37}, {"u": 53522245, "v": 53529499, "oneway": false, "points": [[2434.65, 1917.1], [2431.3, 1919.45], [2427.37, 1921.97]], "length": 8.76}, {"u": 53523650, "v": 1345424861, "oneway": true, "points": [[-2251.01, -359.49], [-2250.5, -355.84]], "length": 3.68}, {"u": 53523650, "v": 1857601633, "oneway": true, "points": [[-2251.01, -359.49], [-2252.8, -357.22], [-2255.58, -354.56], [-2260.44, -352.68]], "length": 11.95}, {"u": 53525132, "v": 53538741, "oneway": true, "points": [[-51.74, 16.15], [-65.23, 30.25], [-92.14, 59.94], [-96.16, 64.35], [-111.1, 80.87], [-134.23, 106.74], [-138.07, 111.55]], "length": 128.68}, {"u": 53525132, "v": 845773212, "oneway": true, "points": [[-51.74, 16.15], [-45.53, 15.36], [-40.06, 15.53], [21.91, 70.72], [28.78, 76.81]], "length": 103.9}, {"u": 53525132, "v": 53326149, "oneway": false, "points": [[-51.74, 16.15], [-59.49, 9.48], [-79.27, -8.35], [-91.49, -19.59], [-120.13, -45.86], [-132.43, -56.42]], "length": 108.53}, {"u": 53529499, "v": 53529508, "oneway": false, "points": [[2427.37, 1921.97], [2432.04, 1929.67], [2537.51, 2101.89], [2539.21, 2104.67], [2543.06, 2111.35]], "length": 221.92}, {"u": 53529499, "v": 53490480, "oneway": false, "points": [[2427.37, 1921.97], [2422.36, 1915.12], [2420.6, 1912.72], [2399.63, 1879.63], [2394.76, 1871.61], [2391.61, 1866.44], [2375.64, 1840.18], [2363.24, 1822.3], [2360.2, 1817.06], [2358.23, 1812.21], [2357.41, 1808.37], [2357.92, 1804.0], [2358.72, 1800.67], [2359.45, 1797.6], [2361.19, 1792.1], [2364.02, 1780.31], [2365.62, 1773.57], [2366.45, 1770.09], [2367.9, 1764.04]], "length": 179.39}, {"u": 53529499, "v": 53522245, "oneway": false, "points": [[2427.37, 1921.97], [2431.3, 1919.45], [2434.65, 1917.1]], "length": 8.76}, {"u": 53529499, "v": 53572020, "oneway": false, "points": [[2427.37, 1921.97], [2421.78, 1925.9], [2417.15, 1929.15], [2392.4, 1944.67], [2388.57, 1947.07]], "length": 46.22}, {"u": 53529508, "v": 53601429, "oneway": false, "points": [[2543.06, 2111.35], [2504.48, 2136.41]], "length": 46.0}, {"u": 53529508, "v": 53529499, "oneway": false, "points": [[2543.06, 2111.35], [2539.21, 2104.67], [2537.51, 2101.89], [2432.04, 1929.67], [2427.37, 1921.97]], "length": 221.92}, {"u": 53529508, "v": 53498412, "oneway": false, "points": [[2543.06, 2111.35], [2559.56, 2101.44], [2565.19, 2098.07]], "length": 25.81}, {"u": 53529532, "v": 53529537, "oneway": false, "points": [[2580.03, 2634.01], [2573.48, 2641.53], [2572.98, 2642.01], [2551.16, 2664.09], [2543.94, 2671.37], [2515.59, 2701.66], [2512.64, 2704.81], [2511.16, 2706.03]], "length": 99.68}, {"u": 53529532, "v": 53423568, "oneway": false, "points": [[2580.03, 2634.01], [2585.55, 2628.29], [2625.32, 2586.97], [2640.14, 2571.59], [2657.14, 2553.94], [2666.14, 2544.59]], "length": 124.14}, {"u": 53529532, "v": 53467197, "oneway": false, "points": [[2580.03, 2634.01], [2584.52, 2638.48], [2633.74, 2687.41], [2678.77, 2729.94], [2679.91, 2731.02], [2687.72, 2736.47]], "length": 148.77}, {"u": 53529532, "v": 53538791, "oneway": false, "points": [[2580.03, 2634.01], [2575.43, 2629.7], [2553.35, 2608.98], [2520.51, 2576.55], [2488.88, 2546.43], [2456.62, 2516.57], [2450.28, 2510.09]], "length": 179.44}, {"u": 53529537, "v": 53529540, "oneway": false, "points": [[2511.16, 2706.03], [2502.49, 2714.93], [2485.7, 2732.13], [2448.59, 2770.52], [2446.12, 2773.09], [2440.43, 2778.97]], "length": 101.6}, {"u": 53529537, "v": 53529532, "oneway": false, "points": [[2511.16, 2706.03], [2512.64, 2704.81], [2515.59, 2701.66], [2543.94, 2671.37], [2551.16, 2664.09], [2572.98, 2642.01], [2573.48, 2641.53], [2580.03, 2634.01]], "length": 99.68}, {"u": 53529540, "v": 53529537, "oneway": false, "points": [[2440.43, 2778.97], [2446.12, 2773.09], [2448.59, 2770.52], [2485.7, 2732.13], [2502.49, 2714.93], [2511.16, 2706.03]], "length": 101.6}, {"u": 53529540, "v": 53727021, "oneway": false, "points": [[2440.43, 2778.97], [2432.5, 2772.55], [2346.83, 2688.26], [2316.46, 2660.33], [2310.92, 2653.46]], "length": 180.48}, {"u": 53529686, "v": 53529689, "oneway": false, "points": [[-1754.14, -1621.95], [-1763.52, -1621.95], [-1766.42, -1621.89], [-1809.0, -1621.02], [-1873.28, -1619.62], [-1876.06, -1619.56], [-1884.17, -1619.2]], "length": 130.06}, {"u": 53529686, "v": 1179796056, "oneway": false, "points": [[-1754.14, -1621.95], [-1745.43, -1622.26], [-1743.16, -1622.33], [-1702.96, -1623.73], [-1635.89, -1624.9], [-1633.32, -1624.94], [-1626.61, -1625.14]], "length": 127.58}, {"u": 53529686, "v": 53511582, "oneway": false, "points": [[-1754.14, -1621.95], [-1753.89, -1611.57], [-1752.7, -1561.51], [-1751.95, -1514.9], [-1751.9, -1511.7], [-1751.71, -1499.93]], "length": 122.05}, {"u": 53529686, "v": 2573847784, "oneway": false, "points": [[-1754.14, -1621.95], [-1754.51, -1633.11], [-1756.15, -1682.34], [-1756.28, -1691.74], [-1756.79, -1728.8], [-1756.83, -1732.33], [-1757.1, -1742.46]], "length": 120.55}, {"u": 53529689, "v": 53529692, "oneway": false, "points": [[-1884.17, -1619.2], [-1893.24, -1619.03], [-1895.85, -1618.94], [-2113.81, -1610.45], [-2119.86, -1610.29]], "length": 235.86}, {"u": 53529689, "v": 53529686, "oneway": false, "points": [[-1884.17, -1619.2], [-1876.06, -1619.56], [-1873.28, -1619.62], [-1809.0, -1621.02], [-1766.42, -1621.89], [-1763.52, -1621.95], [-1754.14, -1621.95]], "length": 130.06}, {"u": 53529689, "v": 2573847782, "oneway": false, "points": [[-1884.17, -1619.2], [-1884.58, -1630.26], [-1886.4, -1679.83], [-1888.19, -1728.46], [-1888.6, -1739.78]], "length": 120.66}, {"u": 53529689, "v": 53511589, "oneway": false, "points": [[-1884.17, -1619.2], [-1884.01, -1609.28], [-1883.14, -1557.77], [-1882.15, -1509.04], [-1881.91, -1497.77]], "length": 121.45}, {"u": 53529692, "v": 53529689, "oneway": false, "points": [[-2119.86, -1610.29], [-2113.81, -1610.45], [-1895.85, -1618.94], [-1893.24, -1619.03], [-1884.17, -1619.2]], "length": 235.86}, {"u": 53529692, "v": 53478277, "oneway": false, "points": [[-2119.86, -1610.29], [-2120.15, -1618.43], [-2120.73, -1634.98], [-2122.58, -1722.41], [-2122.77, -1731.3]], "length": 121.05}, {"u": 53529692, "v": 53511593, "oneway": false, "points": [[-2119.86, -1610.29], [-2119.56, -1602.7], [-2117.63, -1502.69], [-2117.41, -1491.44]], "length": 118.87}, {"u": 53534017, "v": 53556383, "oneway": true, "points": [[-2563.2, -954.85], [-2556.54, -949.2], [-2448.87, -856.44], [-2447.54, -852.5], [-2447.26, -842.82]], "length": 164.7}, {"u": 53534017, "v": 53473273, "oneway": false, "points": [[-2563.2, -954.85], [-2556.71, -962.18], [-2531.12, -991.11], [-2505.02, -1021.12], [-2499.02, -1028.02]], "length": 97.33}, {"u": 53534017, "v": 4874980024, "oneway": false, "points": [[-2563.2, -954.85], [-2570.45, -960.66], [-2573.13, -962.98], [-2696.41, -1069.73], [-2703.37, -1075.61]], "length": 185.02}, {"u": 53536993, "v": 53536994, "oneway": false, "points": [[1188.17, 1319.59], [1183.46, 1324.63], [1147.99, 1362.56]], "length": 58.83}, {"u": 53536993, "v": 53423508, "oneway": false, "points": [[1188.17, 1319.59], [1195.24, 1311.68], [1244.53, 1256.5], [1260.38, 1238.83], [1263.35, 1235.51], [1268.75, 1229.5]], "length": 120.87}, {"u": 53536993, "v": 53538776, "oneway": false, "points": [[1188.17, 1319.59], [1194.49, 1325.35], [1241.85, 1368.47], [1242.62, 1369.17], [1293.9, 1415.53], [1305.29, 1426.0], [1321.9, 1441.24], [1327.38, 1446.29], [1330.04, 1448.73], [1335.34, 1453.59]], "length": 199.03}, {"u": 53536993, "v": 53453124, "oneway": false, "points": [[1188.17, 1319.59], [1180.86, 1312.93], [1045.44, 1189.44], [1038.22, 1182.83]], "length": 202.95}, {"u": 53536994, "v": 53536993, "oneway": false, "points": [[1147.99, 1362.56], [1183.46, 1324.63], [1188.17, 1319.59]], "length": 58.83}, {"u": 53536994, "v": 53668846, "oneway": true, "points": [[1147.99, 1362.56], [1140.1, 1374.41], [1129.22, 1388.33], [1122.38, 1395.27]], "length": 41.65}, {"u": 53536997, "v": 53536998, "oneway": false, "points": [[1095.49, 1419.95], [1058.11, 1461.93], [1052.84, 1467.96]], "length": 64.22}, {"u": 53536997, "v": 3859915626, "oneway": true, "points": [[1095.49, 1419.95], [1105.79, 1404.2], [1110.14, 1398.39], [1112.03, 1396.28], [1117.22, 1390.49]], "length": 36.68}, {"u": 53536998, "v": 1699123264, "oneway": false, "points": [[1052.84, 1467.96], [1040.87, 1479.73]], "length": 16.79}, {"u": 53536998, "v": 53536997, "oneway": false, "points": [[1052.84, 1467.96], [1058.11, 1461.93], [1095.49, 1419.95]], "length": 64.22}, {"u": 53536998, "v": 53429624, "oneway": true, "points": [[1052.84, 1467.96], [1059.73, 1474.17], [1105.34, 1515.57], [1112.13, 1520.79]], "length": 79.44}, {"u": 53537015, "v": 53437720, "oneway": false, "points": [[746.16, 1753.57], [752.33, 1748.44], [772.37, 1731.1], [909.07, 1610.53], [950.06, 1573.7]], "length": 271.91}, {"u": 53537015, "v": 2713391937, "oneway": false, "points": [[746.16, 1753.57], [751.12, 1759.43], [801.74, 1816.49], [806.85, 1822.01]], "length": 91.48}, {"u": 53537015, "v": 53672943, "oneway": false, "points": [[746.16, 1753.57], [740.72, 1747.85], [701.08, 1698.94], [696.0, 1693.11]], "length": 78.59}, {"u": 53537030, "v": 53537035, "oneway": false, "points": [[2153.37, 1417.74], [2211.17, 1457.24], [2270.9, 1498.57]], "length": 142.65}, {"u": 53537030, "v": 53437417, "oneway": false, "points": [[2153.37, 1417.74], [2148.3, 1414.29], [2068.45, 1360.06], [2061.6, 1355.41]], "length": 110.93}, {"u": 53537030, "v": 53461430, "oneway": false, "points": [[2153.37, 1417.74], [2156.41, 1413.34], [2188.98, 1366.06], [2199.18, 1349.93], [2200.52, 1347.83], [2205.52, 1339.92]], "length": 93.69}, {"u": 53537035, "v": 53537040, "oneway": false, "points": [[2270.9, 1498.57], [2283.62, 1506.91], [2290.9, 1511.68], [2328.64, 1538.41]], "length": 70.15}, {"u": 53537035, "v": 53537030, "oneway": false, "points": [[2270.9, 1498.57], [2211.17, 1457.24], [2153.37, 1417.74]], "length": 142.65}, {"u": 53537035, "v": 53589769, "oneway": false, "points": [[2270.9, 1498.57], [2267.08, 1505.28], [2246.78, 1535.71], [2241.71, 1542.77], [2238.5, 1547.35], [2231.68, 1558.25]], "length": 71.44}, {"u": 53537040, "v": 53498440, "oneway": false, "points": [[2328.64, 1538.41], [2345.92, 1550.59], [2391.24, 1580.77], [2453.39, 1624.04], [2514.94, 1665.37], [2517.47, 1666.72], [2519.93, 1667.81], [2520.71, 1668.17], [2523.59, 1669.03], [2529.32, 1669.16]], "length": 240.62}, {"u": 53537040, "v": 53537035, "oneway": false, "points": [[2328.64, 1538.41], [2290.9, 1511.68], [2283.62, 1506.91], [2270.9, 1498.57]], "length": 70.15}, {"u": 53537040, "v": 53461432, "oneway": false, "points": [[2328.64, 1538.41], [2332.09, 1533.63], [2377.14, 1471.48], [2377.92, 1470.41], [2384.47, 1461.37]], "length": 95.14}, {"u": 53538723, "v": 2384881635, "oneway": false, "points": [[1763.76, 1846.69], [1754.78, 1838.94]], "length": 11.86}, {"u": 53538723, "v": 53538727, "oneway": false, "points": [[1763.76, 1846.69], [1769.66, 1852.38], [1900.88, 1978.73], [1908.14, 1985.71]], "length": 200.43}, {"u": 53538723, "v": 2713365262, "oneway": true, "points": [[1763.76, 1846.69], [1756.56, 1853.85], [1743.34, 1867.02], [1716.85, 1888.12]], "length": 62.68}, {"u": 53538727, "v": 53538730, "oneway": false, "points": [[1908.14, 1985.71], [1913.75, 1991.12], [1921.01, 1998.11], [1945.83, 2022.0], [1953.56, 2029.44]], "length": 63.04}, {"u": 53538727, "v": 53538723, "oneway": false, "points": [[1908.14, 1985.71], [1900.88, 1978.73], [1769.66, 1852.38], [1763.76, 1846.69]], "length": 200.43}, {"u": 53538727, "v": 53668900, "oneway": false, "points": [[1908.14, 1985.71], [1902.73, 1991.24], [1846.0, 2049.31], [1839.46, 2056.0]], "length": 98.27}, {"u": 53538730, "v": 53538734, "oneway": false, "points": [[1953.56, 2029.44], [1959.38, 2035.02], [2046.22, 2118.2], [2052.88, 2124.44]], "length": 137.44}, {"u": 53538730, "v": 53538727, "oneway": false, "points": [[1953.56, 2029.44], [1945.83, 2022.0], [1921.01, 1998.11], [1913.75, 1991.12], [1908.14, 1985.71]], "length": 63.04}, {"u": 53538730, "v": 53570522, "oneway": false, "points": [[1953.56, 2029.44], [1959.94, 2022.61], [1974.36, 2007.06], [1996.55, 1985.09]], "length": 61.78}, {"u": 53538734, "v": 53498225, "oneway": false, "points": [[2052.88, 2124.44], [2046.94, 2130.52], [1989.02, 2190.08], [1982.62, 2196.6]], "length": 100.72}, {"u": 53538734, "v": 53570527, "oneway": false, "points": [[2052.88, 2124.44], [2059.15, 2118.32], [2096.72, 2079.86]], "length": 62.52}, {"u": 53538734, "v": 2714912985, "oneway": false, "points": [[2052.88, 2124.44], [2059.29, 2130.65], [2190.55, 2257.65], [2198.03, 2264.85]], "length": 201.95}, {"u": 53538734, "v": 53538730, "oneway": false, "points": [[2052.88, 2124.44], [2046.22, 2118.2], [1959.38, 2035.02], [1953.56, 2029.44]], "length": 137.44}, {"u": 53538736, "v": 53538741, "oneway": true, "points": [[-214.03, 60.96], [-207.15, 60.98], [-197.89, 60.73], [-195.66, 60.75], [-193.56, 60.92], [-191.91, 61.27], [-190.5, 61.79], [-189.37, 62.35], [-188.39, 63.04], [-176.82, 73.92], [-145.14, 104.66], [-138.07, 111.55]], "length": 96.02}, {"u": 53538736, "v": 53538820, "oneway": false, "points": [[-214.03, 60.96], [-214.79, 42.4], [-214.97, 26.59]], "length": 34.39}, {"u": 53538736, "v": 1345392073, "oneway": false, "points": [[-214.03, 60.96], [-213.63, 69.56], [-210.3, 141.79], [-209.24, 164.79], [-208.52, 180.39]], "length": 119.56}, {"u": 53538741, "v": 1345392073, "oneway": true, "points": [[-138.07, 111.55], [-146.06, 120.87], [-160.47, 134.91], [-193.15, 171.64], [-196.54, 175.27], [-200.36, 178.2], [-203.76, 179.41], [-208.52, 180.39]], "length": 99.81}, {"u": 53538741, "v": 2859245549, "oneway": false, "points": [[-138.07, 111.55], [-132.55, 117.06], [-120.48, 129.44], [-81.21, 166.17], [-71.65, 175.1], [-65.63, 180.78]], "length": 100.22}, {"u": 53538743, "v": 845773190, "oneway": true, "points": [[8.99, 248.4], [15.08, 242.01], [54.03, 198.15], [56.32, 195.68], [82.15, 167.69], [83.97, 165.73], [90.47, 158.67]], "length": 121.21}, {"u": 53538743, "v": 5730487258, "oneway": false, "points": [[8.99, 248.4], [15.79, 254.48], [62.28, 296.63], [65.37, 299.56]], "length": 76.13}, {"u": 53538743, "v": 2859245549, "oneway": false, "points": [[8.99, 248.4], [2.47, 242.55], [-29.16, 213.83], [-59.09, 186.94], [-65.63, 180.78]], "length": 100.71}, {"u": 53538776, "v": 53423520, "oneway": false, "points": [[1335.34, 1453.59], [1342.9, 1445.81], [1390.97, 1393.48], [1408.55, 1374.49], [1412.15, 1370.6], [1420.01, 1362.11]], "length": 124.66}, {"u": 53538776, "v": 53536993, "oneway": false, "points": [[1335.34, 1453.59], [1330.04, 1448.73], [1327.38, 1446.29], [1321.9, 1441.24], [1305.29, 1426.0], [1293.9, 1415.53], [1242.62, 1369.17], [1241.85, 1368.47], [1194.49, 1325.35], [1188.17, 1319.59]], "length": 199.03}, {"u": 53538776, "v": 53668858, "oneway": false, "points": [[1335.34, 1453.59], [1330.95, 1458.47], [1274.86, 1520.94], [1268.23, 1528.32]], "length": 100.44}, {"u": 53538791, "v": 53529532, "oneway": false, "points": [[2450.28, 2510.09], [2456.62, 2516.57], [2488.88, 2546.43], [2520.51, 2576.55], [2553.35, 2608.98], [2575.43, 2629.7], [2580.03, 2634.01]], "length": 179.44}, {"u": 53538791, "v": 2714912986, "oneway": false, "points": [[2450.28, 2510.09], [2443.78, 2503.65], [2403.05, 2462.7], [2371.14, 2431.26], [2336.05, 2397.57], [2329.67, 2391.44]], "length": 169.2}, {"u": 53538791, "v": 53423565, "oneway": false, "points": [[2450.28, 2510.09], [2456.52, 2503.74], [2529.04, 2430.38], [2535.88, 2422.6]], "length": 122.42}, {"u": 53538791, "v": 53668890, "oneway": false, "points": [[2450.28, 2510.09], [2444.19, 2516.59], [2386.1, 2575.17], [2379.56, 2581.42]], "length": 100.45}, {"u": 53538820, "v": 53385421, "oneway": true, "points": [[-214.97, 26.59], [-219.83, 26.31], [-223.66, 25.29], [-226.45, 24.09], [-297.54, -40.22], [-306.42, -48.08]], "length": 119.59}, {"u": 53538820, "v": 53538736, "oneway": false, "points": [[-214.97, 26.59], [-214.79, 42.4], [-214.03, 60.96]], "length": 34.39}, {"u": 53539161, "v": 53426174, "oneway": true, "points": [[-68.04, -310.94], [-57.99, -302.05], [-14.27, -263.49], [-2.74, -253.09], [22.85, -229.86], [30.04, -223.62]], "length": 131.32}, {"u": 53539161, "v": 53515084, "oneway": false, "points": [[-68.04, -310.94], [-62.14, -317.45], [-34.46, -347.29], [-7.39, -377.18], [-6.21, -378.56], [-1.84, -383.81]], "length": 98.46}, {"u": 53539161, "v": 53332729, "oneway": false, "points": [[-68.04, -310.94], [-74.06, -304.29], [-100.32, -275.29], [-130.65, -241.78], [-140.7, -230.7]], "length": 108.25}, {"u": 53539171, "v": 53483529, "oneway": false, "points": [[92.78, -155.26], [108.29, -156.29], [132.05, -157.34], [141.47, -157.81], [190.96, -160.08], [224.61, -161.86], [239.4, -159.54]], "length": 146.96}, {"u": 53539171, "v": 53407902, "oneway": false, "points": [[92.78, -155.26], [79.47, -154.59], [55.5, -153.39], [-14.09, -149.79], [-22.83, -149.27]], "length": 115.76}, {"u": 53539171, "v": 53407911, "oneway": true, "points": [[92.78, -155.26], [92.81, -150.96], [92.19, -146.63], [92.13, -146.08], [89.7, -139.22], [87.23, -135.15], [84.03, -131.11], [69.29, -115.49], [58.85, -104.43], [43.57, -88.25], [42.94, -87.58], [34.14, -78.25]], "length": 99.1}, {"u": 53539549, "v": 1142903012, "oneway": false, "points": [[1883.68, 1490.9], [1910.1, 1462.79], [1935.8, 1435.24], [1959.91, 1409.4], [1979.63, 1391.51], [1983.26, 1388.13]], "length": 143.17}, {"u": 53539556, "v": 3208339054, "oneway": false, "points": [[1959.67, 1344.99], [1957.45, 1341.74], [1952.96, 1334.06], [1949.26, 1328.22]], "length": 19.75}, {"u": 53539556, "v": 1142903904, "oneway": true, "points": [[1959.67, 1344.99], [1984.3, 1376.51], [1989.78, 1382.86]], "length": 48.38}, {"u": 53540659, "v": 1186826669, "oneway": true, "points": [[-163.9, -398.38], [-169.47, -389.36], [-211.6, -343.35], [-213.88, -341.66], [-216.75, -340.86], [-223.66, -340.47], [-226.79, -340.33], [-233.23, -339.97]], "length": 95.3}, {"u": 53540659, "v": 53539161, "oneway": true, "points": [[-163.9, -398.38], [-158.37, -393.22], [-78.15, -319.96], [-68.04, -310.94]], "length": 129.75}, {"u": 53540659, "v": 53540665, "oneway": false, "points": [[-163.9, -398.38], [-159.22, -405.84], [-156.74, -408.46], [-130.96, -436.08], [-104.52, -464.91], [-103.08, -466.46], [-98.0, -472.02]], "length": 98.96}, {"u": 53540665, "v": 53444048, "oneway": true, "points": [[-98.0, -472.02], [-104.5, -477.81], [-108.15, -481.08], [-115.79, -487.87], [-120.43, -490.92], [-127.63, -497.34], [-136.92, -506.71], [-141.01, -510.35], [-150.21, -518.55], [-198.14, -561.27], [-209.73, -571.61], [-235.91, -594.93], [-245.67, -604.97]], "length": 198.83}, {"u": 53540665, "v": 53540659, "oneway": false, "points": [[-98.0, -472.02], [-103.08, -466.46], [-104.52, -464.91], [-130.96, -436.08], [-156.74, -408.46], [-159.22, -405.84], [-163.9, -398.38]], "length": 98.96}, {"u": 53540837, "v": 53540839, "oneway": false, "points": [[2687.81, 1869.77], [2728.21, 1901.8], [2735.98, 1907.34]], "length": 61.1}, {"u": 53540839, "v": 53430844, "oneway": false, "points": [[2735.98, 1907.34], [2738.29, 1924.7], [2743.76, 2045.05], [2744.15, 2051.92]], "length": 144.87}, {"u": 53540839, "v": 53475099, "oneway": false, "points": [[2735.98, 1907.34], [2744.99, 1914.9], [2747.79, 1917.04], [2823.4, 1973.13], [2832.18, 1979.64]], "length": 120.36}, {"u": 53540839, "v": 53540837, "oneway": false, "points": [[2735.98, 1907.34], [2728.21, 1901.8], [2687.81, 1869.77]], "length": 61.1}, {"u": 53540839, "v": 53430857, "oneway": true, "points": [[2735.98, 1907.34], [2735.63, 1891.27], [2735.61, 1884.93], [2735.01, 1880.04], [2734.62, 1874.1], [2734.62, 1867.24], [2734.99, 1864.17], [2736.89, 1858.56]], "length": 49.17}, {"u": 53541408, "v": 3088209647, "oneway": true, "points": [[-66.57, 451.36], [-72.63, 458.04], [-97.04, 484.93], [-128.72, 519.83], [-133.83, 525.49]], "length": 100.1}, {"u": 53541408, "v": 53425702, "oneway": true, "points": [[-66.57, 451.36], [-59.71, 457.59], [1.74, 513.45], [8.36, 519.46]], "length": 101.25}, {"u": 53543498, "v": 2634693276, "oneway": false, "points": [[-399.45, -2307.91], [-403.75, -2307.69], [-513.85, -2301.96]], "length": 114.55}, {"u": 53543498, "v": 53552967, "oneway": true, "points": [[-399.45, -2307.91], [-397.04, -2260.59], [-395.04, -2221.39], [-394.93, -2219.23], [-394.47, -2210.31]], "length": 97.73}, {"u": 53544863, "v": 53544865, "oneway": false, "points": [[-351.33, -2212.18], [-351.76, -2221.03], [-356.06, -2309.7], [-358.89, -2398.7], [-359.15, -2406.87]], "length": 194.86}, {"u": 53544863, "v": 53552967, "oneway": false, "points": [[-351.33, -2212.18], [-388.69, -2210.57], [-394.47, -2210.31]], "length": 43.18}, {"u": 53544863, "v": 53551342, "oneway": false, "points": [[-351.33, -2212.18], [-307.62, -2214.07], [-301.6, -2214.33]], "length": 49.79}, {"u": 53544865, "v": 2634682652, "oneway": false, "points": [[-359.15, -2406.87], [-359.46, -2413.35], [-362.89, -2486.79], [-363.77, -2503.76]], "length": 97.0}, {"u": 53544865, "v": 53544863, "oneway": false, "points": [[-359.15, -2406.87], [-358.89, -2398.7], [-356.06, -2309.7], [-351.76, -2221.03], [-351.33, -2212.18]], "length": 194.86}, {"u": 53544865, "v": 53552968, "oneway": false, "points": [[-359.15, -2406.87], [-363.41, -2406.67], [-403.27, -2404.84]], "length": 44.17}, {"u": 53544865, "v": 53426577, "oneway": false, "points": [[-359.15, -2406.87], [-281.55, -2410.26], [-272.05, -2410.68]], "length": 87.19}, {"u": 53545466, "v": 53545473, "oneway": true, "points": [[-1733.1, -755.89], [-1742.24, -755.45], [-1783.94, -753.42], [-1825.5, -751.7], [-1852.14, -750.48], [-1853.95, -750.4], [-1862.01, -750.03]], "length": 129.04}, {"u": 53545466, "v": 53616173, "oneway": false, "points": [[-1733.1, -755.89], [-1733.04, -750.55], [-1732.61, -713.59], [-1732.3, -702.88], [-1732.25, -701.42], [-1731.02, -691.98]], "length": 64.01}, {"u": 53545466, "v": 53628954, "oneway": false, "points": [[-1733.1, -755.89], [-1733.41, -760.41], [-1733.89, -784.72], [-1734.43, -806.78], [-1734.6, -813.49]], "length": 57.62}, {"u": 53545473, "v": 53628956, "oneway": false, "points": [[-1862.01, -750.03], [-1864.02, -806.8]], "length": 56.81}, {"u": 53545473, "v": 53509878, "oneway": false, "points": [[-1862.01, -750.03], [-1860.95, -686.43]], "length": 63.61}, {"u": 53545894, "v": 53472269, "oneway": false, "points": [[-2071.01, -860.54], [-2070.79, -851.23], [-2070.23, -824.02], [-2069.81, -804.19], [-2069.55, -791.44], [-2069.3, -779.2], [-2068.79, -754.39], [-2068.7, -750.09]], "length": 110.47}, {"u": 53545894, "v": 53602671, "oneway": false, "points": [[-2071.01, -860.54], [-2104.71, -858.98], [-2123.95, -858.1], [-2132.6, -857.7]], "length": 61.66}, {"u": 53545894, "v": 53503864, "oneway": false, "points": [[-2071.01, -860.54], [-2024.45, -862.7], [-2022.76, -862.77], [-2006.79, -863.52], [-1998.43, -863.9]], "length": 72.65}, {"u": 53549773, "v": 53549801, "oneway": false, "points": [[-2980.67, -527.99], [-2977.16, -519.31], [-2976.67, -517.43], [-2976.07, -515.19], [-2975.53, -510.96], [-2975.57, -506.69], [-2976.15, -502.61], [-2977.23, -498.66], [-2978.83, -494.87], [-2981.37, -490.63], [-2984.34, -486.68], [-2988.54, -482.31], [-2993.28, -478.51], [-2998.47, -475.35], [-3005.95, -471.97], [-3013.76, -469.37], [-3021.79, -467.61], [-3027.95, -466.83], [-3034.15, -466.54], [-3042.11, -466.83], [-3056.18, -467.79], [-3067.96, -468.16]], "length": 133.52}, {"u": 53549773, "v": 53578687, "oneway": false, "points": [[-2980.67, -527.99], [-2990.64, -540.15], [-3028.76, -576.29], [-3041.53, -589.81], [-3053.08, -603.26], [-3068.3, -619.5], [-3071.93, -622.14], [-3076.54, -625.48], [-3084.65, -629.58], [-3094.59, -632.48]], "length": 156.46}, {"u": 53549773, "v": 53514812, "oneway": false, "points": [[-2980.67, -527.99], [-2962.66, -516.62], [-2954.24, -509.97], [-2919.57, -486.18], [-2909.41, -481.47], [-2902.51, -479.34], [-2894.61, -478.22], [-2886.26, -478.36]], "length": 108.82}, {"u": 53549801, "v": 53549773, "oneway": false, "points": [[-3067.96, -468.16], [-3056.18, -467.79], [-3042.11, -466.83], [-3034.15, -466.54], [-3027.95, -466.83], [-3021.79, -467.61], [-3013.76, -469.37], [-3005.95, -471.97], [-2998.47, -475.35], [-2993.28, -478.51], [-2988.54, -482.31], [-2984.34, -486.68], [-2981.37, -490.63], [-2978.83, -494.87], [-2977.23, -498.66], [-2976.15, -502.61], [-2975.57, -506.69], [-2975.53, -510.96], [-2976.07, -515.19], [-2976.67, -517.43], [-2977.16, -519.31], [-2980.67, -527.99]], "length": 133.52}, {"u": 53549801, "v": 53645778, "oneway": false, "points": [[-3067.96, -468.16], [-3051.21, -453.71], [-3028.63, -439.14], [-3014.29, -430.66], [-3002.12, -424.12]], "length": 79.47}, {"u": 53549801, "v": 53572846, "oneway": false, "points": [[-3067.96, -468.16], [-3111.71, -505.54], [-3119.21, -511.55], [-3123.87, -514.75]], "length": 72.81}, {"u": 53549949, "v": 53549957, "oneway": false, "points": [[-3086.87, -1034.32], [-3093.07, -1039.71], [-3200.73, -1130.97], [-3207.21, -1136.49]], "length": 157.86}, {"u": 53549949, "v": 53421612, "oneway": false, "points": [[-3086.87, -1034.32], [-3078.53, -1028.2], [-3074.08, -1026.42], [-3063.11, -1024.34], [-3014.14, -1018.86], [-2993.63, -1017.01], [-2975.11, -1016.32], [-2920.67, -1017.95], [-2917.37, -1018.05], [-2909.59, -1018.28]], "length": 180.26}, {"u": 53549949, "v": 53610868, "oneway": false, "points": [[-3086.87, -1034.32], [-3082.23, -1040.06], [-3034.75, -1098.59], [-3029.4, -1105.42]], "length": 91.42}, {"u": 53549957, "v": 53549949, "oneway": false, "points": [[-3207.21, -1136.49], [-3200.73, -1130.97], [-3093.07, -1039.71], [-3086.87, -1034.32]], "length": 157.86}, {"u": 53549957, "v": 53625770, "oneway": false, "points": [[-3207.21, -1136.49], [-3202.23, -1142.49], [-3154.96, -1198.38], [-3149.19, -1204.95]], "length": 89.74}, {"u": 53551340, "v": 53551342, "oneway": false, "points": [[-298.51, -2134.62], [-301.2, -2202.49], [-301.32, -2205.38], [-301.6, -2214.33]], "length": 79.77}, {"u": 53551340, "v": 53552967, "oneway": false, "points": [[-298.51, -2134.62], [-298.27, -2128.96], [-297.49, -2110.34], [-296.26, -2081.04], [-295.96, -2073.91], [-294.51, -2053.03], [-294.32, -2050.33], [-293.56, -2027.1], [-293.37, -2021.26], [-293.66, -2016.64], [-294.02, -2010.93], [-294.84, -2005.88], [-295.91, -2001.5], [-298.62, -1995.02], [-304.53, -1986.48], [-310.25, -1979.99], [-314.5, -1975.96], [-317.71, -1973.47], [-323.42, -1970.29], [-328.15, -1968.57], [-333.03, -1967.51], [-341.13, -1966.7], [-347.53, -1966.73], [-370.93, -1966.84], [-379.89, -1967.4], [-384.02, -1970.11], [-385.65, -1972.68], [-387.33, -2017.86], [-387.76, -2029.35], [-392.42, -2154.78], [-394.16, -2201.83], [-394.47, -2210.31]], "length": 478.7}, {"u": 53551340, "v": 53620227, "oneway": false, "points": [[-298.51, -2134.62], [-291.33, -2134.87], [-256.98, -2136.07], [-251.44, -2136.27], [-236.59, -2136.78], [-220.86, -2137.34], [-209.83, -2137.72]], "length": 88.74}, {"u": 53551342, "v": 53551340, "oneway": false, "points": [[-301.6, -2214.33], [-301.32, -2205.38], [-301.2, -2202.49], [-298.51, -2134.62]], "length": 79.77}, {"u": 53551342, "v": 53544863, "oneway": false, "points": [[-301.6, -2214.33], [-307.62, -2214.07], [-351.33, -2212.18]], "length": 49.79}, {"u": 53551342, "v": 53426575, "oneway": false, "points": [[-301.6, -2214.33], [-295.13, -2214.62], [-264.31, -2215.95]], "length": 37.32}, {"u": 53552967, "v": 53551340, "oneway": false, "points": [[-394.47, -2210.31], [-394.16, -2201.83], [-392.42, -2154.78], [-387.76, -2029.35], [-387.33, -2017.86], [-385.65, -1972.68], [-384.02, -1970.11], [-379.89, -1967.4], [-370.93, -1966.84], [-347.53, -1966.73], [-341.13, -1966.7], [-333.03, -1967.51], [-328.15, -1968.57], [-323.42, -1970.29], [-317.71, -1973.47], [-314.5, -1975.96], [-310.25, -1979.99], [-304.53, -1986.48], [-298.62, -1995.02], [-295.91, -2001.5], [-294.84, -2005.88], [-294.02, -2010.93], [-293.66, -2016.64], [-293.37, -2021.26], [-293.56, -2027.1], [-294.32, -2050.33], [-294.51, -2053.03], [-295.96, -2073.91], [-296.26, -2081.04], [-297.49, -2110.34], [-298.27, -2128.96], [-298.51, -2134.62]], "length": 478.7}, {"u": 53552967, "v": 53642775, "oneway": false, "points": [[-394.47, -2210.31], [-401.48, -2210.02], [-492.0, -2206.08]], "length": 97.62}, {"u": 53552967, "v": 53544863, "oneway": false, "points": [[-394.47, -2210.31], [-388.69, -2210.57], [-351.33, -2212.18]], "length": 43.18}, {"u": 53552968, "v": 53562507, "oneway": false, "points": [[-403.27, -2404.84], [-455.0, -2402.33], [-458.95, -2402.14], [-517.9, -2400.02]], "length": 114.73}, {"u": 53552968, "v": 53544865, "oneway": false, "points": [[-403.27, -2404.84], [-363.41, -2406.67], [-359.15, -2406.87]], "length": 44.17}, {"u": 53552968, "v": 2634682653, "oneway": false, "points": [[-403.27, -2404.84], [-403.47, -2413.99], [-405.05, -2487.8]], "length": 82.98}, {"u": 53552968, "v": 53543498, "oneway": true, "points": [[-403.27, -2404.84], [-402.96, -2396.94], [-399.45, -2307.91]], "length": 97.0}, {"u": 53555070, "v": 53510828, "oneway": false, "points": [[1065.83, 2502.49], [1064.25, 2503.98], [1063.92, 2504.59], [1059.92, 2512.1], [1057.44, 2519.73], [1056.37, 2527.76], [1057.82, 2538.95], [1060.29, 2547.08], [1062.31, 2553.71], [1065.07, 2561.96], [1071.3, 2580.58], [1078.49, 2607.16], [1085.47, 2626.64], [1094.92, 2644.15], [1099.67, 2651.13], [1114.64, 2673.16], [1130.49, 2689.16], [1133.06, 2691.19], [1137.98, 2695.06], [1147.32, 2699.69], [1158.13, 2701.83], [1167.2, 2703.02], [1181.71, 2703.28], [1217.5, 2701.93], [1274.4, 2700.66], [1296.51, 2699.14]], "length": 377.8}, {"u": 53555070, "v": 53510799, "oneway": false, "points": [[1065.83, 2502.49], [1074.86, 2493.45], [1089.95, 2485.36], [1110.04, 2472.9], [1123.63, 2463.84], [1132.07, 2457.16], [1138.55, 2450.08], [1145.91, 2439.54]], "length": 103.08}, {"u": 53555070, "v": 53568810, "oneway": false, "points": [[1065.83, 2502.49], [1058.01, 2487.82], [1054.92, 2470.68], [1052.0, 2459.53], [1050.78, 2451.12], [1050.78, 2445.34], [1052.31, 2439.07], [1054.14, 2437.47], [1056.59, 2431.84], [1064.69, 2421.72], [1078.57, 2408.43], [1082.73, 2404.1], [1092.97, 2393.47], [1099.24, 2384.73], [1101.85, 2375.35]], "length": 148.3}, {"u": 53556263, "v": 53589977, "oneway": false, "points": [[-3082.15, -3050.03], [-3087.49, -3042.87], [-3096.35, -3033.5], [-3104.91, -3027.92], [-3116.77, -3023.58], [-3134.73, -3027.4], [-3158.41, -3034.27], [-3173.16, -3037.37], [-3178.88, -3034.91], [-3184.86, -3030.48], [-3192.69, -3013.05], [-3200.09, -3001.39], [-3212.15, -2984.04], [-3224.7, -2967.23], [-3235.74, -2948.35], [-3243.91, -2932.33], [-3250.74, -2926.98]], "length": 239.98}, {"u": 53556263, "v": 53680499, "oneway": false, "points": [[-3082.15, -3050.03], [-3056.07, -3024.55], [-3037.19, -3002.98], [-3020.39, -2985.79]], "length": 89.17}, {"u": 53556383, "v": 3035654115, "oneway": false, "points": [[-2447.26, -842.82], [-2495.21, -840.68], [-2504.3, -840.25], [-2518.05, -839.52], [-2562.79, -837.44]], "length": 115.66}, {"u": 53556383, "v": 53473264, "oneway": false, "points": [[-2447.26, -842.82], [-2439.28, -843.15], [-2432.72, -843.44], [-2406.56, -844.76], [-2372.72, -846.15], [-2304.76, -848.97]], "length": 142.64}, {"u": 53556400, "v": 53473302, "oneway": false, "points": [[-2910.31, -1249.96], [-2904.09, -1257.42], [-2879.65, -1286.69], [-2852.11, -1317.12], [-2847.46, -1322.25]], "length": 95.81}, {"u": 53556400, "v": 53462383, "oneway": false, "points": [[-2910.31, -1249.96], [-2915.87, -1244.0], [-2942.91, -1213.63], [-2964.9, -1186.45], [-2966.99, -1183.95], [-2972.52, -1177.01]], "length": 95.91}, {"u": 53556400, "v": 4874980027, "oneway": false, "points": [[-2910.31, -1249.96], [-2903.81, -1244.41], [-2901.71, -1242.68], [-2820.78, -1174.66], [-2817.92, -1172.23], [-2811.27, -1166.51]], "length": 129.51}, {"u": 53556400, "v": 53556402, "oneway": false, "points": [[-2910.31, -1249.96], [-2917.2, -1255.82], [-2920.08, -1258.26], [-3003.38, -1328.19], [-3010.37, -1333.39]], "length": 130.29}, {"u": 53556402, "v": 53473312, "oneway": false, "points": [[-3010.37, -1333.39], [-3003.24, -1341.53], [-2977.97, -1370.38], [-2952.19, -1401.92], [-2947.51, -1407.65]], "length": 97.31}, {"u": 53556402, "v": 53462390, "oneway": false, "points": [[-3010.37, -1333.39], [-3014.43, -1328.17], [-3040.84, -1297.27], [-3064.86, -1268.33], [-3071.18, -1260.56]], "length": 94.88}, {"u": 53556402, "v": 53556400, "oneway": false, "points": [[-3010.37, -1333.39], [-3003.38, -1328.19], [-2920.08, -1258.26], [-2917.2, -1255.82], [-2910.31, -1249.96]], "length": 130.29}, {"u": 53556402, "v": 53556407, "oneway": false, "points": [[-3010.37, -1333.39], [-3017.3, -1339.62], [-3102.93, -1411.81], [-3108.81, -1416.77]], "length": 129.01}, {"u": 53556407, "v": 53473321, "oneway": false, "points": [[-3108.81, -1416.77], [-3102.04, -1424.78], [-3076.75, -1454.69], [-3050.6, -1485.65], [-3045.66, -1491.48]], "length": 97.82}, {"u": 53556407, "v": 53462402, "oneway": false, "points": [[-3108.81, -1416.77], [-3113.35, -1411.38], [-3139.21, -1380.78], [-3164.73, -1351.61], [-3170.93, -1344.26]], "length": 95.48}, {"u": 53556407, "v": 53556402, "oneway": false, "points": [[-3108.81, -1416.77], [-3102.93, -1411.81], [-3017.3, -1339.62], [-3010.37, -1333.39]], "length": 129.01}, {"u": 53556407, "v": 3812685605, "oneway": false, "points": [[-3108.81, -1416.77], [-3113.73, -1420.93], [-3185.55, -1481.71], [-3187.84, -1483.64], [-3194.77, -1489.46]], "length": 112.58}, {"u": 53558103, "v": 316305090, "oneway": false, "points": [[1426.01, 364.79], [1464.83, 399.86], [1472.87, 407.14]], "length": 63.17}, {"u": 53558110, "v": 53670180, "oneway": false, "points": [[1709.56, 621.43], [1714.49, 616.07], [1760.76, 565.91]], "length": 75.52}, {"u": 53558110, "v": 53558116, "oneway": false, "points": [[1709.56, 621.43], [1763.05, 670.46], [1770.27, 677.07]], "length": 82.35}, {"u": 53558110, "v": 316305093, "oneway": false, "points": [[1709.56, 621.43], [1626.52, 548.11], [1621.0, 543.23]], "length": 118.14}, {"u": 53558116, "v": 53558125, "oneway": false, "points": [[1770.27, 677.07], [1776.48, 682.71], [1910.35, 804.04], [1913.07, 806.51], [1918.29, 811.24]], "length": 199.78}, {"u": 53558116, "v": 53558110, "oneway": false, "points": [[1770.27, 677.07], [1763.05, 670.46], [1709.56, 621.43]], "length": 82.35}, {"u": 53558116, "v": 53571781, "oneway": false, "points": [[1770.27, 677.07], [1775.31, 671.66], [1795.02, 650.47], [1813.82, 629.49], [1821.77, 619.6]], "length": 77.19}, {"u": 53558116, "v": 53571775, "oneway": false, "points": [[1770.27, 677.07], [1763.31, 684.72], [1709.27, 744.23], [1702.69, 751.47]], "length": 100.51}, {"u": 53558125, "v": 53560795, "oneway": false, "points": [[1918.29, 811.24], [1923.82, 805.4], [1980.47, 745.56], [1986.52, 739.17]], "length": 99.25}, {"u": 53558125, "v": 53560789, "oneway": false, "points": [[1918.29, 811.24], [1911.67, 818.73], [1857.3, 880.2], [1851.17, 887.12]], "length": 101.3}, {"u": 53558125, "v": 53494580, "oneway": false, "points": [[1918.29, 811.24], [1924.68, 817.02], [1927.08, 819.2], [2061.76, 941.08], [2068.29, 946.99]], "length": 202.3}, {"u": 53558125, "v": 53558116, "oneway": false, "points": [[1918.29, 811.24], [1913.07, 806.51], [1910.35, 804.04], [1776.48, 682.71], [1770.27, 677.07]], "length": 199.78}, {"u": 53558139, "v": 3208342164, "oneway": false, "points": [[2161.17, 1031.29], [2172.2, 1041.18], [2173.7, 1042.52], [2207.59, 1073.15], [2214.09, 1079.6]], "length": 71.66}, {"u": 53558139, "v": 53494585, "oneway": false, "points": [[2161.17, 1031.29], [2162.73, 1029.03], [2166.14, 1025.39], [2167.84, 1023.58], [2208.45, 980.28], [2209.54, 978.48], [2210.28, 975.9], [2209.51, 971.7], [2202.59, 960.22], [2146.17, 883.34], [2141.79, 879.13], [2135.29, 872.86]], "length": 202.52}, {"u": 53558139, "v": 53494580, "oneway": false, "points": [[2161.17, 1031.29], [2156.31, 1026.64], [2075.74, 953.75], [2068.29, 946.99]], "length": 125.43}, {"u": 53558139, "v": 2707919868, "oneway": false, "points": [[2161.17, 1031.29], [2155.17, 1039.59], [2154.19, 1040.94], [2125.55, 1073.14], [2101.02, 1100.99], [2094.8, 1107.63]], "length": 101.21}, {"u": 53558145, "v": 53558147, "oneway": false, "points": [[2324.41, 1181.98], [2327.62, 1185.89]], "length": 5.06}, {"u": 53558145, "v": 53628825, "oneway": false, "points": [[2324.41, 1181.98], [2317.19, 1188.99], [2315.65, 1190.48], [2307.44, 1198.46], [2303.38, 1204.46], [2300.0, 1211.78], [2285.21, 1250.76], [2271.8, 1268.12], [2268.62, 1272.24]], "length": 107.8}, {"u": 53558145, "v": 53437425, "oneway": false, "points": [[2324.41, 1181.98], [2321.61, 1179.2], [2280.5, 1138.42]], "length": 61.85}, {"u": 53558147, "v": 53558145, "oneway": false, "points": [[2327.62, 1185.89], [2324.41, 1181.98]], "length": 5.06}, {"u": 53558147, "v": 3208342165, "oneway": false, "points": [[2327.62, 1185.89], [2333.64, 1179.32], [2335.28, 1177.54], [2377.57, 1131.36]], "length": 73.95}, {"u": 53558147, "v": 53558151, "oneway": false, "points": [[2327.62, 1185.89], [2330.69, 1189.76], [2342.48, 1204.59], [2372.25, 1243.65], [2421.43, 1306.51]], "length": 152.81}, {"u": 53558151, "v": 53558152, "oneway": false, "points": [[2421.43, 1306.51], [2472.04, 1371.45]], "length": 82.33}, {"u": 53558151, "v": 3208339050, "oneway": false, "points": [[2421.43, 1306.51], [2428.22, 1300.91], [2483.37, 1255.43]], "length": 80.29}, {"u": 53558151, "v": 53558147, "oneway": false, "points": [[2421.43, 1306.51], [2372.25, 1243.65], [2342.48, 1204.59], [2330.69, 1189.76], [2327.62, 1185.89]], "length": 152.81}, {"u": 53558152, "v": 53558151, "oneway": false, "points": [[2472.04, 1371.45], [2421.43, 1306.51]], "length": 82.33}, {"u": 53558152, "v": 53589760, "oneway": false, "points": [[2472.04, 1371.45], [2464.52, 1376.38], [2461.79, 1378.18], [2457.0, 1381.32], [2425.94, 1406.31], [2420.31, 1411.91]], "length": 65.8}, {"u": 53558152, "v": 53498447, "oneway": false, "points": [[2472.04, 1371.45], [2503.84, 1416.01], [2513.8, 1428.29], [2514.09, 1429.13], [2516.01, 1434.68]], "length": 77.31}, {"u": 53558155, "v": 53558157, "oneway": false, "points": [[1305.34, 289.45], [1310.62, 283.85]], "length": 7.69}, {"u": 53558155, "v": 53667261, "oneway": false, "points": [[1305.34, 289.45], [1281.02, 315.23], [1261.54, 335.89], [1259.92, 337.6], [1253.49, 344.42]], "length": 75.56}, {"u": 53558155, "v": 53645079, "oneway": false, "points": [[1305.34, 289.45], [1301.22, 286.14], [1297.93, 283.46], [1259.52, 252.11], [1257.71, 251.27], [1253.95, 251.98], [1215.24, 293.72], [1213.9, 295.15], [1207.54, 302.0]], "length": 133.17}, {"u": 53558157, "v": 53711224, "oneway": false, "points": [[1310.62, 283.85], [1317.65, 276.4]], "length": 10.25}, {"u": 53558157, "v": 53558155, "oneway": false, "points": [[1310.62, 283.85], [1305.34, 289.45]], "length": 7.69}, {"u": 53558157, "v": 53558159, "oneway": false, "points": [[1310.62, 283.85], [1318.06, 290.45], [1353.17, 324.21]], "length": 58.65}, {"u": 53558159, "v": 53558157, "oneway": false, "points": [[1353.17, 324.21], [1318.06, 290.45], [1310.62, 283.85]], "length": 58.65}, {"u": 53560253, "v": 316357138, "oneway": true, "points": [[-1607.45, -1381.89], [-1606.89, -1371.39]], "length": 10.52}, {"u": 53560253, "v": 316357429, "oneway": true, "points": [[-1607.45, -1381.89], [-1594.02, -1380.69], [-1584.45, -1378.06], [-1576.3, -1375.83]], "length": 31.86}, {"u": 53560766, "v": 53423520, "oneway": false, "points": [[1430.72, 1349.83], [1420.01, 1362.11]], "length": 16.29}, {"u": 53560766, "v": 53408487, "oneway": false, "points": [[1430.72, 1349.83], [1438.26, 1341.58], [1440.16, 1339.6], [1456.97, 1321.34], [1461.95, 1315.93], [1465.15, 1312.46], [1470.12, 1306.96], [1498.85, 1275.12], [1500.22, 1273.6], [1506.1, 1267.08], [1512.87, 1259.58]], "length": 122.04}, {"u": 53560766, "v": 53719166, "oneway": true, "points": [[1430.72, 1349.83], [1441.34, 1359.71], [1473.79, 1389.89], [1477.99, 1393.95], [1515.28, 1429.9], [1559.18, 1469.65], [1569.77, 1479.1], [1570.97, 1480.17], [1577.8, 1486.52], [1593.98, 1501.17], [1596.17, 1503.17], [1596.9, 1503.81], [1615.0, 1520.95], [1639.47, 1543.68], [1648.53, 1552.14], [1657.83, 1560.49], [1700.12, 1600.33], [1731.08, 1629.27], [1731.71, 1629.83], [1743.12, 1640.5], [1758.05, 1654.38], [1765.37, 1661.28], [1770.81, 1666.19], [1846.06, 1734.2], [1847.4, 1735.51], [1856.57, 1743.69]], "length": 580.1}, {"u": 53560776, "v": 53560780, "oneway": false, "points": [[1554.2, 1214.09], [1563.64, 1203.4], [1576.18, 1189.2], [1578.68, 1186.37], [1586.52, 1178.07], [1591.31, 1172.99], [1604.2, 1158.89], [1608.47, 1154.21]], "length": 80.83}, {"u": 53560776, "v": 53408487, "oneway": false, "points": [[1554.2, 1214.09], [1531.73, 1238.81], [1518.25, 1253.65], [1512.87, 1259.58]], "length": 61.46}, {"u": 53560776, "v": 53408490, "oneway": false, "points": [[1554.2, 1214.09], [1560.58, 1219.99], [1587.53, 1244.89], [1609.98, 1265.65], [1616.12, 1271.34], [1637.01, 1290.78], [1643.13, 1297.17], [1646.56, 1303.18], [1647.66, 1310.38], [1646.36, 1315.34], [1645.01, 1320.45], [1632.87, 1334.8], [1623.8, 1344.96], [1620.35, 1348.82], [1616.29, 1353.38]], "length": 190.04}, {"u": 53560780, "v": 53515081, "oneway": false, "points": [[1608.47, 1154.21], [1641.44, 1116.78], [1642.37, 1115.43], [1647.61, 1109.44]], "length": 59.48}, {"u": 53560780, "v": 53560776, "oneway": false, "points": [[1608.47, 1154.21], [1604.2, 1158.89], [1591.31, 1172.99], [1586.52, 1178.07], [1578.68, 1186.37], [1576.18, 1189.2], [1563.64, 1203.4], [1554.2, 1214.09]], "length": 80.83}, {"u": 53560780, "v": 53515080, "oneway": false, "points": [[1608.47, 1154.21], [1601.64, 1147.99], [1578.22, 1126.55], [1556.03, 1106.34], [1548.61, 1099.57], [1520.01, 1073.37], [1518.23, 1071.25], [1517.26, 1069.03], [1517.46, 1066.38], [1518.73, 1063.97], [1548.31, 1032.56], [1554.67, 1025.8]], "length": 182.84}, {"u": 53560789, "v": 53558125, "oneway": false, "points": [[1851.17, 887.12], [1857.3, 880.2], [1911.67, 818.73], [1918.29, 811.24]], "length": 101.3}, {"u": 53560789, "v": 53461491, "oneway": false, "points": [[1851.17, 887.12], [1844.79, 894.14], [1810.37, 932.03], [1789.3, 955.04], [1783.8, 961.1]], "length": 100.06}, {"u": 53560789, "v": 53494572, "oneway": false, "points": [[1851.17, 887.12], [1856.67, 892.06], [1978.13, 1001.2], [1993.21, 1014.75], [2000.57, 1021.36]], "length": 200.85}, {"u": 53560789, "v": 53571775, "oneway": false, "points": [[1851.17, 887.12], [1845.49, 881.72], [1799.65, 838.18], [1709.04, 757.15], [1702.69, 751.47]], "length": 201.14}, {"u": 53560795, "v": 53560796, "oneway": false, "points": [[1986.52, 739.17], [1994.34, 730.46], [2012.27, 710.49]], "length": 38.54}, {"u": 53560795, "v": 53558125, "oneway": false, "points": [[1986.52, 739.17], [1980.47, 745.56], [1923.82, 805.4], [1918.29, 811.24]], "length": 99.25}, {"u": 53560795, "v": 53494585, "oneway": false, "points": [[1986.52, 739.17], [1991.48, 743.58], [2101.15, 840.81], [2128.39, 866.39], [2135.29, 872.86]], "length": 200.03}, {"u": 53560795, "v": 53571781, "oneway": false, "points": [[1986.52, 739.17], [1979.16, 732.47], [1849.04, 614.07], [1844.64, 610.6], [1840.7, 608.97], [1835.64, 609.16], [1831.36, 610.49], [1827.52, 613.18], [1821.77, 619.6]], "length": 218.6}, {"u": 53560796, "v": 53560795, "oneway": false, "points": [[2012.27, 710.49], [1994.34, 730.46], [1986.52, 739.17]], "length": 38.54}, {"u": 53562507, "v": 53642782, "oneway": false, "points": [[-517.9, -2400.02], [-525.71, -2399.69]], "length": 7.82}, {"u": 53562507, "v": 53552968, "oneway": false, "points": [[-517.9, -2400.02], [-458.95, -2402.14], [-455.0, -2402.33], [-403.27, -2404.84]], "length": 114.73}, {"u": 53562563, "v": 53626983, "oneway": false, "points": [[2047.06, 2679.71], [2022.51, 2703.86]], "length": 34.43}, {"u": 53562563, "v": 53714925, "oneway": false, "points": [[2047.06, 2679.71], [2053.54, 2673.15], [2110.95, 2613.67], [2116.96, 2607.38]], "length": 100.59}, {"u": 53568332, "v": 53611281, "oneway": false, "points": [[2614.84, 1438.24], [2622.29, 1438.61], [2703.13, 1442.59], [2712.64, 1443.06]], "length": 97.92}, {"u": 53568332, "v": 53498447, "oneway": false, "points": [[2614.84, 1438.24], [2608.14, 1437.99], [2527.53, 1435.04], [2525.05, 1435.0], [2516.01, 1434.68]], "length": 98.89}, {"u": 53568332, "v": 3786926320, "oneway": false, "points": [[2614.84, 1438.24], [2615.18, 1432.72], [2615.22, 1431.95], [2619.07, 1369.42], [2619.59, 1360.86]], "length": 77.52}, {"u": 53568332, "v": 53596324, "oneway": false, "points": [[2614.84, 1438.24], [2614.39, 1446.17], [2614.32, 1447.45], [2610.65, 1513.1], [2610.22, 1520.62]], "length": 82.5}, {"u": 53568810, "v": 53555070, "oneway": false, "points": [[1101.85, 2375.35], [1099.24, 2384.73], [1092.97, 2393.47], [1082.73, 2404.1], [1078.57, 2408.43], [1064.69, 2421.72], [1056.59, 2431.84], [1054.14, 2437.47], [1052.31, 2439.07], [1050.78, 2445.34], [1050.78, 2451.12], [1052.0, 2459.53], [1054.92, 2470.68], [1058.01, 2487.82], [1065.83, 2502.49]], "length": 148.3}, {"u": 53570522, "v": 53538730, "oneway": false, "points": [[1996.55, 1985.09], [1974.36, 2007.06], [1959.94, 2022.61], [1953.56, 2029.44]], "length": 61.78}, {"u": 53570522, "v": 53423552, "oneway": false, "points": [[1996.55, 1985.09], [2017.56, 1962.37], [2031.03, 1948.31], [2038.77, 1940.06]], "length": 61.73}, {"u": 53570527, "v": 53538734, "oneway": false, "points": [[2096.72, 2079.86], [2059.15, 2118.32], [2052.88, 2124.44]], "length": 62.52}, {"u": 53570527, "v": 53423556, "oneway": false, "points": [[2096.72, 2079.86], [2111.58, 2064.95], [2132.29, 2044.16], [2139.46, 2036.96]], "length": 60.56}, {"u": 53570527, "v": 53570522, "oneway": true, "points": [[2096.72, 2079.86], [2002.49, 1990.71], [1996.55, 1985.09]], "length": 137.89}, {"u": 53571775, "v": 53461478, "oneway": false, "points": [[1702.69, 751.47], [1695.42, 758.88], [1694.31, 760.01], [1640.48, 818.29], [1634.02, 825.4]], "length": 100.91}, {"u": 53571775, "v": 2713353784, "oneway": false, "points": [[1702.69, 751.47], [1695.91, 745.34], [1560.0, 622.28], [1553.48, 616.38]], "length": 201.28}, {"u": 53571775, "v": 53558116, "oneway": false, "points": [[1702.69, 751.47], [1709.27, 744.23], [1763.31, 684.72], [1770.27, 677.07]], "length": 100.51}, {"u": 53571775, "v": 53560789, "oneway": false, "points": [[1702.69, 751.47], [1709.04, 757.15], [1799.65, 838.18], [1845.49, 881.72], [1851.17, 887.12]], "length": 201.14}, {"u": 53571781, "v": 53621652, "oneway": false, "points": [[1821.77, 619.6], [1816.64, 613.25], [1815.1, 611.34], [1803.53, 601.31]], "length": 25.93}, {"u": 53571781, "v": 53560795, "oneway": false, "points": [[1821.77, 619.6], [1827.52, 613.18], [1831.36, 610.49], [1835.64, 609.16], [1840.7, 608.97], [1844.64, 610.6], [1849.04, 614.07], [1979.16, 732.47], [1986.52, 739.17]], "length": 218.6}, {"u": 53571781, "v": 53558116, "oneway": false, "points": [[1821.77, 619.6], [1813.82, 629.49], [1795.02, 650.47], [1775.31, 671.66], [1770.27, 677.07]], "length": 77.19}, {"u": 53572019, "v": 53572020, "oneway": false, "points": [[2346.35, 1972.04], [2353.93, 1967.56], [2388.57, 1947.07]], "length": 49.06}, {"u": 53572019, "v": 53636377, "oneway": false, "points": [[2346.35, 1972.04], [2351.1, 1979.76], [2395.9, 2052.45], [2400.54, 2059.99]], "length": 103.3}, {"u": 53572019, "v": 53480554, "oneway": false, "points": [[2346.35, 1972.04], [2341.64, 1964.56], [2332.02, 1949.26], [2317.79, 1927.14], [2292.74, 1886.84], [2271.94, 1854.42], [2268.93, 1849.73]], "length": 144.75}, {"u": 53572020, "v": 53529499, "oneway": false, "points": [[2388.57, 1947.07], [2392.4, 1944.67], [2417.15, 1929.15], [2421.78, 1925.9], [2427.37, 1921.97]], "length": 46.22}, {"u": 53572020, "v": 53572019, "oneway": false, "points": [[2388.57, 1947.07], [2353.93, 1967.56], [2346.35, 1972.04]], "length": 49.06}, {"u": 53572020, "v": 53601429, "oneway": false, "points": [[2388.57, 1947.07], [2392.72, 1953.85], [2428.01, 2011.54], [2454.0, 2052.26], [2464.45, 2070.53], [2492.04, 2115.38], [2504.48, 2136.41]], "length": 222.02}, {"u": 53572027, "v": 53498417, "oneway": false, "points": [[2644.96, 1905.53], [2637.4, 1906.0], [2583.57, 1909.37], [2564.4, 1911.29], [2562.2, 1911.51], [2554.82, 1912.31]], "length": 90.41}, {"u": 53572027, "v": 53490496, "oneway": false, "points": [[2644.96, 1905.53], [2644.85, 1900.41], [2643.25, 1872.47], [2643.11, 1868.46], [2643.65, 1858.56], [2645.61, 1850.28], [2648.57, 1843.63], [2652.05, 1835.8]], "length": 71.39}, {"u": 53572027, "v": 53604832, "oneway": false, "points": [[2644.96, 1905.53], [2650.29, 1996.74], [2652.71, 2049.57], [2652.97, 2057.39]], "length": 152.07}, {"u": 53572824, "v": 53311057, "oneway": false, "points": [[-3127.51, -631.02], [-3121.13, -637.2], [-3117.16, -639.61], [-3111.52, -643.04], [-3098.43, -652.64]], "length": 36.36}, {"u": 53572824, "v": 53572846, "oneway": false, "points": [[-3127.51, -631.02], [-3136.64, -620.2], [-3141.59, -612.16], [-3146.8, -603.34], [-3150.81, -590.0], [-3152.47, -579.61], [-3152.44, -567.39], [-3150.57, -556.1], [-3146.37, -543.33], [-3141.61, -534.22], [-3140.25, -531.61], [-3131.64, -521.41], [-3123.87, -514.75]], "length": 132.2}, {"u": 53572824, "v": 53311058, "oneway": false, "points": [[-3127.51, -631.02], [-3103.96, -632.47], [-3099.4, -632.38]], "length": 28.16}, {"u": 53572846, "v": 53549801, "oneway": false, "points": [[-3123.87, -514.75], [-3119.21, -511.55], [-3111.71, -505.54], [-3067.96, -468.16]], "length": 72.81}, {"u": 53572846, "v": 53436855, "oneway": false, "points": [[-3123.87, -514.75], [-3132.33, -519.84], [-3139.36, -523.53], [-3150.99, -528.3], [-3160.27, -530.7], [-3177.63, -533.76], [-3184.4, -534.12], [-3198.42, -534.05], [-3207.28, -533.46], [-3213.41, -533.84], [-3216.6, -534.52], [-3227.72, -538.54], [-3234.09, -541.8], [-3240.72, -548.39]], "length": 125.0}, {"u": 53572846, "v": 53572824, "oneway": false, "points": [[-3123.87, -514.75], [-3131.64, -521.41], [-3140.25, -531.61], [-3141.61, -534.22], [-3146.37, -543.33], [-3150.57, -556.1], [-3152.44, -567.39], [-3152.47, -579.61], [-3150.81, -590.0], [-3146.8, -603.34], [-3141.59, -612.16], [-3136.64, -620.2], [-3127.51, -631.02]], "length": 132.2}, {"u": 53573840, "v": 316165989, "oneway": false, "points": [[139.95, -2276.22], [146.89, -2293.91]], "length": 19.0}, {"u": 53573840, "v": 53465696, "oneway": false, "points": [[139.95, -2276.22], [126.77, -2258.17], [122.56, -2252.9], [116.07, -2244.76], [109.63, -2240.29], [103.29, -2235.89], [89.67, -2230.0], [75.71, -2228.05], [68.43, -2227.98], [52.16, -2227.83], [47.34, -2228.13], [31.8, -2230.14], [18.65, -2234.1], [3.02, -2241.77], [0.36, -2243.52], [-5.78, -2247.52]], "length": 169.7}, {"u": 53573840, "v": 53644201, "oneway": false, "points": [[139.95, -2276.22], [146.67, -2272.34], [155.22, -2264.86], [162.34, -2259.25], [168.7, -2254.25], [170.98, -2254.2], [182.13, -2265.51], [184.84, -2268.27]], "length": 58.3}, {"u": 53573861, "v": 366229504, "oneway": false, "points": [[-162.46, -2219.92], [-153.48, -2220.27], [-135.36, -2220.97], [-109.12, -2221.99]], "length": 53.38}, {"u": 53573861, "v": 53426575, "oneway": false, "points": [[-162.46, -2219.92], [-195.86, -2218.62], [-220.68, -2217.65], [-225.44, -2217.47], [-264.31, -2215.95]], "length": 101.93}, {"u": 53573861, "v": 53426577, "oneway": false, "points": [[-162.46, -2219.92], [-155.81, -2231.23], [-128.96, -2277.91], [-123.63, -2287.41], [-117.25, -2297.64], [-106.17, -2315.39], [-76.63, -2362.76], [-64.85, -2381.67], [-63.2, -2386.71], [-63.2, -2396.65], [-63.76, -2400.81], [-66.54, -2405.99], [-69.13, -2409.0], [-72.67, -2413.23], [-85.31, -2416.21], [-109.11, -2416.2], [-221.83, -2412.38], [-262.95, -2410.99], [-272.05, -2410.68]], "length": 423.57}, {"u": 53575900, "v": 53575901, "oneway": false, "points": [[-2225.36, -1571.87], [-2226.75, -1632.5]], "length": 60.65}, {"u": 53575900, "v": 53511603, "oneway": false, "points": [[-2225.36, -1571.87], [-2223.69, -1500.18], [-2223.39, -1488.9]], "length": 82.99}, {"u": 53575900, "v": 53695962, "oneway": false, "points": [[-2225.36, -1571.87], [-2218.88, -1572.0], [-2175.58, -1572.85]], "length": 49.79}, {"u": 53575901, "v": 53575900, "oneway": false, "points": [[-2226.75, -1632.5], [-2225.36, -1571.87]], "length": 60.65}, {"u": 53575901, "v": 53478277, "oneway": false, "points": [[-2226.75, -1632.5], [-2227.31, -1666.98], [-2229.22, -1719.95], [-2229.34, -1724.12], [-2229.22, -1726.45], [-2228.53, -1728.24], [-2227.71, -1728.99], [-2226.45, -1729.27], [-2222.86, -1729.46], [-2169.54, -1730.22], [-2129.27, -1731.15], [-2122.77, -1731.3]], "length": 202.02}, {"u": 53575901, "v": 53647040, "oneway": false, "points": [[-2226.75, -1632.5], [-2220.59, -1632.67], [-2174.15, -1633.94]], "length": 52.62}, {"u": 53576821, "v": 53503864, "oneway": false, "points": [[-1865.57, -870.04], [-1874.57, -869.62], [-1907.51, -868.1], [-1917.22, -867.65], [-1924.22, -867.33], [-1944.54, -866.39], [-1948.12, -866.22], [-1980.49, -864.73], [-1990.12, -864.28], [-1998.43, -863.9]], "length": 133.0}, {"u": 53576821, "v": 53483330, "oneway": false, "points": [[-1865.57, -870.04], [-1865.84, -879.24], [-1866.19, -893.47], [-1866.23, -894.88], [-1867.22, -931.41], [-1867.46, -940.23]], "length": 70.22}, {"u": 53576821, "v": 53628956, "oneway": false, "points": [[-1865.57, -870.04], [-1865.31, -861.1], [-1864.88, -834.47], [-1864.72, -824.57], [-1864.61, -819.05], [-1864.24, -811.57], [-1864.02, -806.8]], "length": 63.26}, {"u": 53576821, "v": 53616166, "oneway": false, "points": [[-1865.57, -870.04], [-1856.94, -870.45], [-1828.94, -871.8], [-1802.92, -873.01], [-1766.62, -874.77], [-1745.27, -875.81], [-1736.11, -876.25]], "length": 129.61}, {"u": 53576823, "v": 53430443, "oneway": false, "points": [[-1870.61, -1073.76], [-1869.7, -1023.95], [-1869.52, -1014.21]], "length": 59.55}, {"u": 53576823, "v": 53576826, "oneway": false, "points": [[-1870.61, -1073.76], [-1872.2, -1124.28], [-1872.53, -1134.82]], "length": 61.1}, {"u": 53576823, "v": 53680515, "oneway": false, "points": [[-1870.61, -1073.76], [-1879.08, -1073.55], [-1882.67, -1073.48], [-1954.54, -1072.14]], "length": 83.95}, {"u": 53576826, "v": 53576823, "oneway": false, "points": [[-1872.53, -1134.82], [-1872.2, -1124.28], [-1870.61, -1073.76]], "length": 61.1}, {"u": 53576826, "v": 53676376, "oneway": false, "points": [[-1872.53, -1134.82], [-1864.88, -1134.98], [-1818.96, -1135.9], [-1811.99, -1136.04], [-1754.31, -1137.2], [-1752.09, -1137.24], [-1743.31, -1137.41]], "length": 129.25}, {"u": 53576826, "v": 53576829, "oneway": false, "points": [[-1872.53, -1134.82], [-1872.76, -1146.0], [-1873.76, -1196.36], [-1875.02, -1244.88], [-1875.3, -1255.67]], "length": 120.88}, {"u": 53576826, "v": 53709531, "oneway": false, "points": [[-1872.53, -1134.82], [-1881.54, -1134.63], [-1993.27, -1132.22], [-2001.65, -1132.03]], "length": 129.14}, {"u": 53576829, "v": 53503843, "oneway": false, "points": [[-1875.3, -1255.67], [-1883.83, -1255.31], [-1884.6, -1255.28], [-1996.23, -1252.47], [-2004.51, -1252.19]], "length": 129.27}, {"u": 53576829, "v": 2573847790, "oneway": false, "points": [[-1875.3, -1255.67], [-1867.4, -1255.88], [-1839.95, -1256.57], [-1816.01, -1256.86], [-1754.89, -1257.59], [-1746.84, -1257.69]], "length": 128.48}, {"u": 53576829, "v": 53576831, "oneway": false, "points": [[-1875.3, -1255.67], [-1875.57, -1267.32], [-1876.71, -1316.11], [-1877.98, -1366.21], [-1878.26, -1377.19]], "length": 121.56}, {"u": 53576829, "v": 53576826, "oneway": false, "points": [[-1875.3, -1255.67], [-1875.02, -1244.88], [-1873.76, -1196.36], [-1872.76, -1146.0], [-1872.53, -1134.82]], "length": 120.88}, {"u": 53576831, "v": 53503849, "oneway": false, "points": [[-1878.26, -1377.19], [-1885.88, -1377.06], [-1888.02, -1377.0], [-1940.08, -1375.58], [-1971.87, -1374.61], [-2000.34, -1373.92], [-2007.64, -1373.72]], "length": 129.43}, {"u": 53576831, "v": 53621256, "oneway": false, "points": [[-1878.26, -1377.19], [-1869.7, -1377.43], [-1867.26, -1377.46], [-1757.84, -1379.11], [-1755.9, -1379.13], [-1748.09, -1379.25]], "length": 130.18}, {"u": 53576831, "v": 53511589, "oneway": false, "points": [[-1878.26, -1377.19], [-1878.52, -1387.76], [-1879.75, -1436.99], [-1881.52, -1486.61], [-1881.91, -1497.77]], "length": 120.64}, {"u": 53576831, "v": 53576829, "oneway": false, "points": [[-1878.26, -1377.19], [-1877.98, -1366.21], [-1876.71, -1316.11], [-1875.57, -1267.32], [-1875.3, -1255.67]], "length": 121.56}, {"u": 53578330, "v": 53578339, "oneway": false, "points": [[502.77, 1177.57], [502.8, 1182.6], [502.94, 1184.46], [503.32, 1186.48], [508.3, 1202.48], [566.83, 1384.93], [569.63, 1393.88]], "length": 226.7}, {"u": 53578330, "v": 3264677727, "oneway": false, "points": [[502.77, 1177.57], [500.04, 1179.47], [497.64, 1181.6], [492.85, 1186.47], [489.73, 1189.99], [476.35, 1205.1], [469.09, 1213.26], [451.8, 1232.69], [439.39, 1246.18]], "length": 93.52}, {"u": 53578330, "v": 4172253594, "oneway": false, "points": [[502.77, 1177.57], [504.13, 1173.59], [510.17, 1164.81], [513.71, 1160.92], [528.51, 1145.2], [531.44, 1142.1], [537.1, 1135.95]], "length": 54.34}, {"u": 53578339, "v": 53453173, "oneway": false, "points": [[569.63, 1393.88], [585.86, 1444.41], [617.24, 1542.88], [637.72, 1608.43], [640.26, 1616.59]], "length": 233.64}, {"u": 53578339, "v": 53578330, "oneway": false, "points": [[569.63, 1393.88], [566.83, 1384.93], [508.3, 1202.48], [503.32, 1186.48], [502.94, 1184.46], [502.8, 1182.6], [502.77, 1177.57]], "length": 226.7}, {"u": 53578351, "v": 53578355, "oneway": true, "points": [[928.19, 1959.92], [965.62, 1996.26], [973.34, 2004.44], [981.62, 2013.7], [995.43, 2036.82]], "length": 102.78}, {"u": 53578351, "v": 2713391937, "oneway": false, "points": [[928.19, 1959.92], [813.5, 1829.48], [806.85, 1822.01]], "length": 183.69}, {"u": 53578355, "v": 53578357, "oneway": false, "points": [[995.43, 2036.82], [1016.38, 2059.89]], "length": 31.16}, {"u": 53578355, "v": 53578351, "oneway": true, "points": [[995.43, 2036.82], [982.39, 2024.81], [975.82, 2018.57], [967.13, 2009.97], [958.66, 2002.2], [928.19, 1959.92]], "length": 102.63}, {"u": 53578357, "v": 53578355, "oneway": false, "points": [[1016.38, 2059.89], [995.43, 2036.82]], "length": 31.16}, {"u": 53578357, "v": 2713365265, "oneway": true, "points": [[1016.38, 2059.89], [1025.95, 2067.74], [1031.95, 2073.29], [1041.98, 2083.67], [1070.31, 2118.24], [1076.92, 2132.23]], "length": 95.15}, {"u": 53578366, "v": 53672055, "oneway": false, "points": [[1139.36, 2288.34], [1146.73, 2285.08], [1167.84, 2276.09], [1186.7, 2269.0], [1223.53, 2254.96], [1237.36, 2249.51], [1245.55, 2244.33], [1251.28, 2239.61], [1256.43, 2234.47], [1258.86, 2231.06], [1262.98, 2224.17], [1265.73, 2215.09], [1266.7, 2208.72], [1273.0, 2177.63]], "length": 189.7}, {"u": 53578366, "v": 2713391900, "oneway": false, "points": [[1139.36, 2288.34], [1144.17, 2300.23], [1146.43, 2305.88], [1148.36, 2309.99], [1159.52, 2330.85], [1171.14, 2352.57], [1175.96, 2361.67]], "length": 82.04}, {"u": 53578366, "v": 2713365265, "oneway": false, "points": [[1139.36, 2288.34], [1137.6, 2283.82], [1120.82, 2240.41], [1111.65, 2217.63], [1096.41, 2174.97], [1094.4, 2169.88], [1093.0, 2166.34], [1087.59, 2154.59], [1076.92, 2132.23]], "length": 168.24}, {"u": 53578383, "v": 53510828, "oneway": false, "points": [[1351.29, 2695.15], [1344.09, 2695.68], [1296.51, 2699.14]], "length": 54.93}, {"u": 53578383, "v": 53578394, "oneway": false, "points": [[1351.29, 2695.15], [1369.46, 2728.86], [1372.95, 2735.33], [1377.4, 2743.6], [1380.08, 2748.58], [1392.16, 2769.83]], "length": 85.14}, {"u": 53578383, "v": 496686196, "oneway": false, "points": [[1351.29, 2695.15], [1314.41, 2624.36], [1300.72, 2598.09], [1285.27, 2568.43], [1252.44, 2505.43], [1250.2, 2501.21], [1231.36, 2465.68], [1223.01, 2449.92]], "length": 276.76}, {"u": 53578394, "v": 316306590, "oneway": false, "points": [[1392.16, 2769.83], [1405.36, 2793.76]], "length": 27.32}, {"u": 53578394, "v": 53499266, "oneway": false, "points": [[1392.16, 2769.83], [1401.1, 2765.16], [1410.99, 2759.99], [1436.9, 2746.43], [1440.34, 2744.7], [1478.78, 2725.38], [1484.98, 2722.56], [1487.73, 2721.31], [1490.75, 2720.77], [1496.77, 2720.39]], "length": 116.3}, {"u": 53578394, "v": 53578383, "oneway": false, "points": [[1392.16, 2769.83], [1380.08, 2748.58], [1377.4, 2743.6], [1372.95, 2735.33], [1369.46, 2728.86], [1351.29, 2695.15]], "length": 85.14}, {"u": 53578514, "v": 53578519, "oneway": false, "points": [[-611.74, -805.49], [-616.57, -809.91], [-619.11, -812.22], [-679.85, -867.64], [-718.06, -902.5], [-730.86, -914.18], [-755.32, -936.5], [-761.66, -942.28]], "length": 202.96}, {"u": 53578514, "v": 53482954, "oneway": false, "points": [[-611.74, -805.49], [-605.49, -799.8], [-581.72, -778.1], [-570.11, -767.52], [-551.73, -750.74], [-544.25, -743.91], [-537.42, -737.68], [-529.36, -730.33], [-470.29, -676.42], [-464.63, -671.1]], "length": 199.25}, {"u": 53578514, "v": 53663978, "oneway": true, "points": [[-611.74, -805.49], [-605.86, -812.29], [-578.8, -843.14], [-577.36, -844.77]], "length": 52.2}, {"u": 53578519, "v": 53663953, "oneway": false, "points": [[-761.66, -942.28], [-755.92, -948.82], [-733.98, -973.87], [-700.22, -1009.92], [-694.31, -1017.59]], "length": 101.07}, {"u": 53578519, "v": 53493129, "oneway": false, "points": [[-761.66, -942.28], [-767.83, -935.51], [-795.26, -905.6], [-798.66, -901.91], [-801.42, -898.97], [-824.01, -873.91], [-830.25, -867.46]], "length": 101.5}, {"u": 53578519, "v": 3269827284, "oneway": false, "points": [[-761.66, -942.28], [-768.28, -948.53], [-819.8, -997.15], [-821.85, -999.08], [-834.91, -1011.41]], "length": 100.72}, {"u": 53578519, "v": 53578514, "oneway": false, "points": [[-761.66, -942.28], [-755.32, -936.5], [-730.86, -914.18], [-718.06, -902.5], [-679.85, -867.64], [-619.11, -812.22], [-616.57, -809.91], [-611.74, -805.49]], "length": 202.96}, {"u": 53578682, "v": 53514806, "oneway": false, "points": [[-2745.02, -647.33], [-2753.27, -646.97], [-2883.81, -641.22], [-2891.49, -640.88]], "length": 146.61}, {"u": 53578682, "v": 53504327, "oneway": false, "points": [[-2745.02, -647.33], [-2744.78, -639.09], [-2743.01, -564.01], [-2742.82, -555.62]], "length": 91.74}, {"u": 53578682, "v": 53582923, "oneway": false, "points": [[-2745.02, -647.33], [-2745.2, -655.32], [-2747.38, -730.29], [-2747.79, -738.58]], "length": 91.29}, {"u": 53578687, "v": 53311058, "oneway": false, "points": [[-3094.59, -632.48], [-3099.4, -632.38]], "length": 4.81}, {"u": 53578687, "v": 53514806, "oneway": false, "points": [[-3094.59, -632.48], [-3067.17, -633.98], [-2899.58, -640.56], [-2891.49, -640.88]], "length": 203.27}, {"u": 53578687, "v": 53549773, "oneway": false, "points": [[-3094.59, -632.48], [-3084.65, -629.58], [-3076.54, -625.48], [-3071.93, -622.14], [-3068.3, -619.5], [-3053.08, -603.26], [-3041.53, -589.81], [-3028.76, -576.29], [-2990.64, -540.15], [-2980.67, -527.99]], "length": 156.46}, {"u": 53580606, "v": 3031362525, "oneway": false, "points": [[-2535.89, 234.11], [-2535.74, 240.19], [-2534.52, 255.86], [-2534.82, 267.55]], "length": 33.49}, {"u": 53580606, "v": 53413603, "oneway": false, "points": [[-2535.89, 234.11], [-2536.58, 217.79], [-2537.45, 196.9], [-2539.03, 168.55], [-2539.51, 154.72], [-2540.23, 136.7], [-2540.73, 128.29], [-2541.25, 119.72]], "length": 114.53}, {"u": 53580606, "v": 53725877, "oneway": false, "points": [[-2535.89, 234.11], [-2528.51, 233.8], [-2525.27, 233.64], [-2518.98, 233.49], [-2474.2, 231.96], [-2452.35, 231.36], [-2444.8, 231.57], [-2440.31, 232.62], [-2436.62, 233.64]], "length": 99.58}, {"u": 53580611, "v": 3031362525, "oneway": false, "points": [[-2526.85, 272.8], [-2534.82, 267.55]], "length": 9.54}, {"u": 53580632, "v": 53437708, "oneway": false, "points": [[638.01, 1420.74], [681.67, 1373.93]], "length": 64.02}, {"u": 53582203, "v": 53582205, "oneway": false, "points": [[-1323.42, -529.84], [-1322.82, -519.74], [-1322.62, -516.47], [-1316.94, -413.78], [-1315.42, -403.15]], "length": 126.98}, {"u": 53582203, "v": 2859245573, "oneway": false, "points": [[-1323.42, -529.84], [-1318.0, -530.12], [-1313.19, -530.37], [-1200.84, -535.78], [-1190.92, -536.6]], "length": 132.68}, {"u": 53582203, "v": 1179459724, "oneway": false, "points": [[-1323.42, -529.84], [-1333.91, -529.31], [-1443.51, -523.73], [-1453.23, -523.23], [-1461.08, -522.86], [-1520.05, -519.95], [-1574.27, -517.26], [-1574.91, -517.23], [-1586.24, -516.55]], "length": 263.16}, {"u": 53582205, "v": 53582203, "oneway": false, "points": [[-1315.42, -403.15], [-1316.94, -413.78], [-1322.62, -516.47], [-1322.82, -519.74], [-1323.42, -529.84]], "length": 126.98}, {"u": 53582205, "v": 2859245574, "oneway": true, "points": [[-1315.42, -403.15], [-1303.64, -404.52], [-1195.12, -409.26], [-1184.74, -410.47]], "length": 130.93}, {"u": 53582205, "v": 2859245582, "oneway": false, "points": [[-1315.42, -403.15], [-1314.45, -392.88], [-1312.6, -365.2], [-1312.18, -355.85], [-1311.78, -350.63], [-1311.6, -346.5], [-1311.54, -345.03], [-1308.63, -285.83], [-1308.6, -281.67], [-1308.58, -271.13]], "length": 132.23}, {"u": 53582923, "v": 1944740975, "oneway": false, "points": [[-2747.79, -738.58], [-2756.15, -738.41], [-2886.47, -732.78], [-2894.01, -732.41]], "length": 146.35}, {"u": 53582923, "v": 4214349299, "oneway": false, "points": [[-2747.79, -738.58], [-2739.76, -738.94], [-2675.21, -741.82], [-2665.19, -741.88]], "length": 82.67}, {"u": 53582923, "v": 53578682, "oneway": false, "points": [[-2747.79, -738.58], [-2747.38, -730.29], [-2745.2, -655.32], [-2745.02, -647.33]], "length": 91.29}, {"u": 53582923, "v": 53684762, "oneway": false, "points": [[-2747.79, -738.58], [-2747.91, -746.67], [-2750.68, -820.71], [-2750.77, -831.04]], "length": 92.51}, {"u": 53589708, "v": 53589713, "oneway": false, "points": [[-2363.61, -124.29], [-2341.74, -125.08]], "length": 21.88}, {"u": 53589708, "v": 53461764, "oneway": true, "points": [[-2363.61, -124.29], [-2364.71, -148.95], [-2364.73, -150.78], [-2365.43, -167.91], [-2366.81, -194.93], [-2367.54, -209.08], [-2368.48, -219.21]], "length": 95.05}, {"u": 53589713, "v": 53589708, "oneway": false, "points": [[-2341.74, -125.08], [-2363.61, -124.29]], "length": 21.88}, {"u": 53589713, "v": 53589715, "oneway": true, "points": [[-2341.74, -125.08], [-2341.04, -111.53], [-2340.66, -102.06], [-2340.41, -96.5], [-2339.25, -69.97]], "length": 55.17}, {"u": 53589715, "v": 2988748407, "oneway": false, "points": [[-2339.25, -69.97], [-2361.39, -69.27]], "length": 22.15}, {"u": 53589715, "v": 53486805, "oneway": true, "points": [[-2339.25, -69.97], [-2338.07, -42.85], [-2337.95, -40.09], [-2337.55, -31.01]], "length": 38.99}, {"u": 53589716, "v": 53461764, "oneway": true, "points": [[-2345.3, -222.65], [-2368.48, -219.21]], "length": 23.44}, {"u": 53589716, "v": 53589713, "oneway": true, "points": [[-2345.3, -222.65], [-2344.98, -211.75], [-2343.33, -168.83], [-2342.83, -151.45], [-2342.25, -138.25], [-2341.74, -125.08]], "length": 97.64}, {"u": 53589760, "v": 53558152, "oneway": false, "points": [[2420.31, 1411.91], [2425.94, 1406.31], [2457.0, 1381.32], [2461.79, 1378.18], [2464.52, 1376.38], [2472.04, 1371.45]], "length": 65.8}, {"u": 53589760, "v": 53461432, "oneway": false, "points": [[2420.31, 1411.91], [2412.63, 1419.79], [2390.01, 1453.21], [2388.63, 1455.23], [2384.47, 1461.37]], "length": 61.22}, {"u": 53589760, "v": 53628825, "oneway": false, "points": [[2420.31, 1411.91], [2414.92, 1406.88], [2363.43, 1358.82], [2289.63, 1292.43], [2273.23, 1276.66], [2268.62, 1272.24]], "length": 206.21}, {"u": 53589769, "v": 53537035, "oneway": false, "points": [[2231.68, 1558.25], [2238.5, 1547.35], [2241.71, 1542.77], [2246.78, 1535.71], [2267.08, 1505.28], [2270.9, 1498.57]], "length": 71.44}, {"u": 53589769, "v": 53649105, "oneway": true, "points": [[2231.68, 1558.25], [2237.18, 1562.05], [2317.1, 1617.41]], "length": 103.9}, {"u": 53589794, "v": 53589799, "oneway": false, "points": [[2162.01, 1675.79], [2169.59, 1671.25], [2173.36, 1669.03], [2192.09, 1658.01], [2193.71, 1657.07], [2211.0, 1647.0], [2213.96, 1635.17], [2226.07, 1587.76], [2227.18, 1582.49]], "length": 123.34}, {"u": 53589794, "v": 2859093884, "oneway": false, "points": [[2162.01, 1675.79], [2143.16, 1645.13], [2134.7, 1631.36], [2126.49, 1618.0], [2106.2, 1584.98], [2084.93, 1550.37], [2075.43, 1536.52], [2069.5, 1527.42]], "length": 174.87}, {"u": 53589794, "v": 316342869, "oneway": false, "points": [[2162.01, 1675.79], [2178.65, 1703.26], [2188.95, 1720.25]], "length": 51.98}, {"u": 53589799, "v": 53589794, "oneway": false, "points": [[2227.18, 1582.49], [2226.07, 1587.76], [2213.96, 1635.17], [2211.0, 1647.0], [2193.71, 1657.07], [2192.09, 1658.01], [2173.36, 1669.03], [2169.59, 1671.25], [2162.01, 1675.79]], "length": 123.34}, {"u": 53589977, "v": 53556263, "oneway": false, "points": [[-3250.74, -2926.98], [-3243.91, -2932.33], [-3235.74, -2948.35], [-3224.7, -2967.23], [-3212.15, -2984.04], [-3200.09, -3001.39], [-3192.69, -3013.05], [-3184.86, -3030.48], [-3178.88, -3034.91], [-3173.16, -3037.37], [-3158.41, -3034.27], [-3134.73, -3027.4], [-3116.77, -3023.58], [-3104.91, -3027.92], [-3096.35, -3033.5], [-3087.49, -3042.87], [-3082.15, -3050.03]], "length": 239.98}, {"u": 53589977, "v": 53700390, "oneway": false, "points": [[-3250.74, -2926.98], [-3244.73, -2925.04], [-3226.3, -2921.91], [-3206.1, -2922.38], [-3183.99, -2924.69], [-3164.71, -2926.13], [-3147.17, -2925.52], [-3129.68, -2923.92], [-3108.19, -2919.2], [-3095.36, -2915.35]], "length": 157.29}, {"u": 53590668, "v": 1246389199, "oneway": false, "points": [[-904.29, -3102.65], [-800.12, -3107.75]], "length": 104.3}, {"u": 53590668, "v": 1246389199, "oneway": false, "points": [[-904.29, -3102.65], [-903.16, -3093.22], [-889.64, -2993.24], [-886.03, -2987.29], [-879.64, -2984.13], [-794.35, -2970.44], [-787.53, -2972.16], [-784.17, -2976.57], [-783.47, -2985.08], [-800.12, -3107.75]], "length": 355.77}, {"u": 53590668, "v": 53511694, "oneway": false, "points": [[-904.29, -3102.65], [-956.26, -3100.1], [-960.67, -3099.89], [-999.74, -3097.97], [-1001.78, -3097.87], [-1011.27, -3097.41]], "length": 107.11}, {"u": 53590699, "v": 53444613, "oneway": false, "points": [[-2420.18, -1119.55], [-2422.83, -1118.36], [-2426.29, -1113.93], [-2430.95, -1109.02], [-2436.63, -1102.7]], "length": 23.8}, {"u": 53590699, "v": 53590707, "oneway": false, "points": [[-2420.18, -1119.55], [-2422.77, -1132.0], [-2423.67, -1139.12], [-2424.42, -1150.88], [-2425.22, -1200.52], [-2425.67, -1229.2], [-2425.71, -1231.12], [-2425.87, -1240.98]], "length": 121.79}, {"u": 53590699, "v": 53709543, "oneway": false, "points": [[-2420.18, -1119.55], [-2417.03, -1120.53], [-2413.44, -1120.63], [-2406.31, -1120.84], [-2349.68, -1122.55], [-2283.65, -1124.55], [-2274.3, -1124.7]], "length": 146.08}, {"u": 53590707, "v": 1178694147, "oneway": false, "points": [[-2425.87, -1240.98], [-2426.14, -1248.46], [-2426.27, -1252.14], [-2428.0, -1301.34], [-2428.34, -1314.35], [-2428.47, -1319.08]], "length": 78.15}, {"u": 53590707, "v": 53590699, "oneway": false, "points": [[-2425.87, -1240.98], [-2425.71, -1231.12], [-2425.67, -1229.2], [-2425.22, -1200.52], [-2424.42, -1150.88], [-2423.67, -1139.12], [-2422.77, -1132.0], [-2420.18, -1119.55]], "length": 121.79}, {"u": 53590707, "v": 53692040, "oneway": false, "points": [[-2425.87, -1240.98], [-2434.74, -1240.77], [-2546.68, -1238.12], [-2556.51, -1237.89]], "length": 130.67}, {"u": 53590707, "v": 53692030, "oneway": false, "points": [[-2425.87, -1240.98], [-2416.93, -1241.25], [-2290.26, -1245.0], [-2286.15, -1245.12], [-2276.94, -1245.39]], "length": 148.99}, {"u": 53590715, "v": 3812685620, "oneway": false, "points": [[-2429.84, -1405.75], [-2431.67, -1469.29], [-2431.78, -1473.2], [-2432.09, -1483.8]], "length": 78.08}, {"u": 53590715, "v": 53621277, "oneway": true, "points": [[-2429.84, -1405.75], [-2424.82, -1405.3], [-2416.42, -1404.2], [-2408.14, -1402.03], [-2400.79, -1398.91], [-2394.86, -1395.7], [-2388.05, -1390.16], [-2381.77, -1382.51], [-2378.3, -1375.17], [-2376.66, -1369.93], [-2376.16, -1363.84]], "length": 75.2}, {"u": 53591793, "v": 53591794, "oneway": false, "points": [[-558.47, -265.86], [-564.57, -259.26], [-621.84, -199.85], [-627.23, -193.98]], "length": 99.48}, {"u": 53591793, "v": 917593109, "oneway": false, "points": [[-558.47, -265.86], [-551.91, -272.1], [-547.4, -277.12], [-529.91, -296.5], [-524.43, -302.59], [-518.04, -309.67], [-505.76, -323.29], [-494.85, -335.38], [-482.65, -348.91], [-474.45, -360.47]], "length": 126.66}, {"u": 53591793, "v": 53604259, "oneway": false, "points": [[-558.47, -265.86], [-565.31, -272.29], [-587.86, -292.61], [-596.93, -300.77], [-602.35, -305.66], [-611.43, -313.85], [-619.93, -321.52], [-622.34, -323.69], [-671.18, -367.72], [-699.28, -393.05], [-701.69, -395.22], [-708.33, -401.54]], "length": 202.16}, {"u": 53591793, "v": 53604257, "oneway": false, "points": [[-558.47, -265.86], [-551.4, -259.43], [-490.52, -204.53], [-482.83, -197.6]], "length": 101.89}, {"u": 53591794, "v": 53699396, "oneway": false, "points": [[-627.23, -193.98], [-632.09, -198.39], [-633.19, -199.39], [-663.23, -226.72], [-681.58, -243.4], [-709.16, -268.48], [-729.5, -286.97], [-741.04, -297.47], [-766.12, -320.27], [-767.33, -321.38], [-775.43, -328.74]], "length": 200.31}, {"u": 53591794, "v": 53591793, "oneway": false, "points": [[-627.23, -193.98], [-621.84, -199.85], [-564.57, -259.26], [-558.47, -265.86]], "length": 99.48}, {"u": 53591804, "v": 53417781, "oneway": false, "points": [[-983.91, 203.4], [-981.18, 200.38], [-976.75, 195.45]], "length": 10.7}, {"u": 53596324, "v": 53596328, "oneway": false, "points": [[2610.22, 1520.62], [2700.1, 1524.5], [2708.58, 1524.86]], "length": 98.45}, {"u": 53596324, "v": 53461443, "oneway": false, "points": [[2610.22, 1520.62], [2543.01, 1518.08], [2529.3, 1517.69], [2520.61, 1517.45]], "length": 89.67}, {"u": 53596324, "v": 53568332, "oneway": false, "points": [[2610.22, 1520.62], [2610.65, 1513.1], [2614.32, 1447.45], [2614.39, 1446.17], [2614.84, 1438.24]], "length": 82.5}, {"u": 53596328, "v": 53487538, "oneway": false, "points": [[2708.58, 1524.86], [2714.86, 1525.11], [2758.32, 1526.8], [2799.75, 1530.58], [2808.71, 1531.39]], "length": 100.38}, {"u": 53596328, "v": 53596324, "oneway": false, "points": [[2708.58, 1524.86], [2700.1, 1524.5], [2610.22, 1520.62]], "length": 98.45}, {"u": 53596328, "v": 53611281, "oneway": false, "points": [[2708.58, 1524.86], [2708.79, 1520.52], [2708.89, 1518.58], [2712.12, 1453.52], [2712.27, 1450.55], [2712.64, 1443.06]], "length": 81.91}, {"u": 53596328, "v": 53496315, "oneway": false, "points": [[2708.58, 1524.86], [2708.01, 1533.52], [2707.89, 1535.37], [2706.52, 1556.04], [2705.25, 1586.2], [2704.94, 1607.1], [2702.31, 1632.4], [2695.42, 1661.01], [2693.99, 1666.98]], "length": 143.34}, {"u": 53596618, "v": 316305093, "oneway": false, "points": [[1662.33, 495.27], [1647.79, 512.94], [1645.07, 516.25], [1628.22, 535.5], [1621.0, 543.23]], "length": 63.33}, {"u": 53596818, "v": 1857601633, "oneway": true, "points": [[-2251.76, -292.26], [-2252.85, -293.39], [-2254.12, -294.37], [-2255.39, -295.46], [-2256.52, -297.36], [-2257.21, -300.7], [-2257.65, -308.82], [-2257.98, -317.37], [-2259.72, -344.9], [-2260.44, -352.68]], "length": 62.55}, {"u": 53596818, "v": 53461758, "oneway": false, "points": [[-2251.76, -292.26], [-2251.41, -283.14], [-2251.25, -278.77], [-2249.87, -242.74], [-2249.71, -238.51], [-2249.34, -229.03]], "length": 63.28}, {"u": 53596818, "v": 1345424868, "oneway": true, "points": [[-2251.76, -292.26], [-2239.6, -297.94], [-2206.03, -314.96]], "length": 51.07}, {"u": 53601429, "v": 53529508, "oneway": false, "points": [[2504.48, 2136.41], [2543.06, 2111.35]], "length": 46.0}, {"u": 53601429, "v": 53572020, "oneway": false, "points": [[2504.48, 2136.41], [2492.04, 2115.38], [2464.45, 2070.53], [2454.0, 2052.26], [2428.01, 2011.54], [2392.72, 1953.85], [2388.57, 1947.07]], "length": 222.02}, {"u": 53601429, "v": 53604822, "oneway": false, "points": [[2504.48, 2136.41], [2471.65, 2156.46], [2469.66, 2157.66], [2462.92, 2161.79]], "length": 48.7}, {"u": 53602671, "v": 2816310353, "oneway": false, "points": [[-2132.6, -857.7], [-2132.89, -867.11], [-2132.8, -870.02], [-2132.57, -877.41], [-2131.9, -899.11], [-2131.84, -903.33], [-2131.15, -933.25]], "length": 75.58}, {"u": 53602671, "v": 53483907, "oneway": false, "points": [[-2132.6, -857.7], [-2141.69, -857.28], [-2172.11, -855.87], [-2177.69, -855.61], [-2200.11, -854.58], [-2219.99, -853.66], [-2225.19, -853.42], [-2258.6, -850.85], [-2266.82, -850.58]], "length": 134.42}, {"u": 53602671, "v": 53545894, "oneway": false, "points": [[-2132.6, -857.7], [-2123.95, -858.1], [-2104.71, -858.98], [-2071.01, -860.54]], "length": 61.66}, {"u": 53604256, "v": 53604257, "oneway": false, "points": [[-447.05, -166.48], [-477.24, -192.79], [-482.83, -197.6]], "length": 47.42}, {"u": 53604257, "v": 53615252, "oneway": true, "points": [[-482.83, -197.6], [-476.88, -203.93], [-456.55, -226.51], [-449.01, -234.82], [-443.16, -241.55], [-435.07, -250.89], [-408.24, -281.52], [-395.58, -295.99]], "length": 131.51}, {"u": 53604257, "v": 53591793, "oneway": false, "points": [[-482.83, -197.6], [-490.52, -204.53], [-551.4, -259.43], [-558.47, -265.86]], "length": 101.89}, {"u": 53604257, "v": 53604256, "oneway": false, "points": [[-482.83, -197.6], [-477.24, -192.79], [-447.05, -166.48]], "length": 47.42}, {"u": 53604259, "v": 53591793, "oneway": false, "points": [[-708.33, -401.54], [-701.69, -395.22], [-699.28, -393.05], [-671.18, -367.72], [-622.34, -323.69], [-619.93, -321.52], [-611.43, -313.85], [-602.35, -305.66], [-596.93, -300.77], [-587.86, -292.61], [-565.31, -272.29], [-558.47, -265.86]], "length": 202.16}, {"u": 53604259, "v": 53604263, "oneway": false, "points": [[-708.33, -401.54], [-714.65, -407.94], [-716.78, -410.24], [-745.02, -436.44], [-768.15, -457.5], [-782.21, -470.3], [-796.83, -483.61], [-811.44, -496.92], [-826.85, -510.96], [-827.81, -511.83], [-848.13, -530.32], [-850.53, -532.51], [-856.48, -537.93]], "length": 201.4}, {"u": 53604259, "v": 53699396, "oneway": true, "points": [[-708.33, -401.54], [-713.73, -395.69], [-718.92, -390.37], [-737.65, -369.94], [-769.76, -334.94], [-775.43, -328.74]], "length": 99.01}, {"u": 53604263, "v": 53508176, "oneway": false, "points": [[-856.48, -537.93], [-861.17, -542.19], [-863.36, -544.19], [-865.43, -546.07], [-887.5, -566.18], [-897.86, -575.61], [-912.69, -589.11], [-916.87, -592.91], [-933.88, -608.4], [-945.75, -619.2], [-948.99, -622.15], [-997.32, -666.14], [-999.26, -667.92], [-1005.72, -673.79]], "length": 201.82}, {"u": 53604263, "v": 53604259, "oneway": false, "points": [[-856.48, -537.93], [-850.53, -532.51], [-848.13, -530.32], [-827.81, -511.83], [-826.85, -510.96], [-811.44, -496.92], [-796.83, -483.61], [-782.21, -470.3], [-768.15, -457.5], [-745.02, -436.44], [-716.78, -410.24], [-714.65, -407.94], [-708.33, -401.54]], "length": 201.4}, {"u": 53604263, "v": 53615260, "oneway": true, "points": [[-856.48, -537.93], [-850.78, -544.16], [-827.52, -567.71], [-813.81, -582.11], [-780.4, -617.95], [-778.98, -619.6], [-767.5, -634.98]], "length": 131.79}, {"u": 53604267, "v": 53508176, "oneway": false, "points": [[-1053.75, -717.65], [-1014.53, -681.82], [-1012.45, -679.93], [-1005.72, -673.79]], "length": 65.04}, {"u": 53604822, "v": 2627868777, "oneway": false, "points": [[2462.92, 2161.79], [2464.54, 2164.37]], "length": 3.04}, {"u": 53604822, "v": 53601429, "oneway": false, "points": [[2462.92, 2161.79], [2469.66, 2157.66], [2471.65, 2156.46], [2504.48, 2136.41]], "length": 48.7}, {"u": 53604822, "v": 53636377, "oneway": false, "points": [[2462.92, 2161.79], [2458.3, 2154.65], [2450.29, 2141.53], [2406.07, 2069.06], [2400.54, 2059.99]], "length": 119.4}, {"u": 53604832, "v": 53430844, "oneway": false, "points": [[2652.97, 2057.39], [2661.35, 2056.85], [2735.72, 2052.08], [2744.15, 2051.92]], "length": 91.36}, {"u": 53604832, "v": 53498415, "oneway": false, "points": [[2652.97, 2057.39], [2645.09, 2057.67], [2569.91, 2060.42], [2563.11, 2060.77]], "length": 89.92}, {"u": 53604832, "v": 53572027, "oneway": false, "points": [[2652.97, 2057.39], [2652.71, 2049.57], [2650.29, 1996.74], [2644.96, 1905.53]], "length": 152.07}, {"u": 53604832, "v": 53611260, "oneway": false, "points": [[2652.97, 2057.39], [2653.43, 2065.4], [2662.21, 2238.5], [2662.6, 2245.99]], "length": 188.85}, {"u": 53607068, "v": 53607075, "oneway": false, "points": [[-1990.15, -496.07], [-1989.94, -487.21], [-1989.84, -483.55], [-1989.36, -464.59], [-1989.51, -442.73], [-1987.88, -405.91], [-1987.79, -402.32], [-1987.37, -385.92], [-1987.24, -381.16], [-1986.96, -369.87]], "length": 126.26}, {"u": 53607068, "v": 53668988, "oneway": false, "points": [[-1990.15, -496.07], [-1981.08, -496.52], [-1872.25, -501.3], [-1867.17, -501.77], [-1857.69, -502.16]], "length": 132.61}, {"u": 53607068, "v": 1180005834, "oneway": false, "points": [[-1990.15, -496.07], [-1999.05, -495.64], [-2115.49, -489.92], [-2124.74, -489.42]], "length": 134.75}, {"u": 53607075, "v": 53461749, "oneway": false, "points": [[-1986.96, -369.87], [-1986.64, -360.32], [-1986.55, -356.54], [-1985.5, -311.43], [-1985.34, -296.27], [-1986.19, -283.42], [-1987.74, -276.26], [-1990.22, -268.99], [-1992.74, -263.57], [-1994.7, -260.21], [-1997.06, -256.99], [-2000.59, -252.66], [-2003.41, -249.59], [-2007.66, -244.21], [-2010.6, -238.86]], "length": 138.08}, {"u": 53607075, "v": 53607068, "oneway": false, "points": [[-1986.96, -369.87], [-1987.24, -381.16], [-1987.37, -385.92], [-1987.79, -402.32], [-1987.88, -405.91], [-1989.51, -442.73], [-1989.36, -464.59], [-1989.84, -483.55], [-1989.94, -487.21], [-1990.15, -496.07]], "length": 126.26}, {"u": 53607075, "v": 53668996, "oneway": true, "points": [[-1986.96, -369.87], [-1977.6, -370.71], [-1866.16, -376.33], [-1853.45, -376.96]], "length": 133.71}, {"u": 53608986, "v": 4173748917, "oneway": true, "points": [[-843.06, -253.11], [-836.47, -247.22], [-816.19, -229.18], [-812.24, -225.51], [-776.09, -193.17], [-754.61, -172.17], [-704.69, -125.34], [-695.05, -117.05]], "length": 201.08}, {"u": 53608986, "v": 13069954941, "oneway": true, "points": [[-843.06, -253.11], [-850.24, -245.06], [-871.28, -220.2], [-874.57, -216.72]], "length": 48.14}, {"u": 53610868, "v": 53462383, "oneway": false, "points": [[-3029.4, -1105.42], [-3024.18, -1112.23], [-3003.24, -1138.76], [-2990.24, -1154.94], [-2980.09, -1167.97], [-2978.77, -1169.39], [-2972.52, -1177.01]], "length": 91.45}, {"u": 53610868, "v": 53549949, "oneway": false, "points": [[-3029.4, -1105.42], [-3034.75, -1098.59], [-3082.23, -1040.06], [-3086.87, -1034.32]], "length": 91.42}, {"u": 53610868, "v": 53625770, "oneway": false, "points": [[-3029.4, -1105.42], [-3036.65, -1110.88], [-3038.82, -1112.31], [-3143.3, -1199.82], [-3149.19, -1204.95]], "length": 155.78}, {"u": 53610868, "v": 53421621, "oneway": false, "points": [[-3029.4, -1105.42], [-3022.68, -1099.42], [-3017.26, -1095.44], [-3011.6, -1092.64], [-3008.84, -1091.57], [-3006.47, -1090.86], [-3003.9, -1090.32], [-3001.35, -1089.93], [-2998.9, -1089.69], [-2996.11, -1089.55], [-2977.1, -1089.83], [-2973.54, -1089.9], [-2954.2, -1090.4], [-2947.07, -1090.57], [-2935.41, -1090.74], [-2932.28, -1090.79], [-2929.52, -1090.56], [-2924.55, -1089.63], [-2919.7, -1088.46], [-2916.34, -1087.76], [-2908.79, -1086.64]], "length": 125.66}, {"u": 53610896, "v": 53610898, "oneway": false, "points": [[-3188.18, -904.28], [-3181.21, -913.24], [-3175.32, -920.81], [-3170.46, -927.05]], "length": 28.86}, {"u": 53610896, "v": 53672772, "oneway": false, "points": [[-3188.18, -904.28], [-3159.33, -905.69], [-3140.88, -906.6]], "length": 47.35}, {"u": 53610898, "v": 53610896, "oneway": false, "points": [[-3170.46, -927.05], [-3175.32, -920.81], [-3181.21, -913.24], [-3188.18, -904.28]], "length": 28.86}, {"u": 53610898, "v": 53672772, "oneway": false, "points": [[-3170.46, -927.05], [-3160.32, -919.5], [-3140.88, -906.6]], "length": 35.97}, {"u": 53611257, "v": 53611260, "oneway": false, "points": [[2666.26, 2290.61], [2663.07, 2255.15], [2662.6, 2245.99]], "length": 44.77}, {"u": 53611260, "v": 53604832, "oneway": false, "points": [[2662.6, 2245.99], [2662.21, 2238.5], [2653.43, 2065.4], [2652.97, 2057.39]], "length": 188.85}, {"u": 53611260, "v": 53611257, "oneway": false, "points": [[2662.6, 2245.99], [2663.07, 2255.15], [2666.26, 2290.61]], "length": 44.77}, {"u": 53611260, "v": 53430839, "oneway": false, "points": [[2662.6, 2245.99], [2670.36, 2245.59], [2745.94, 2241.71], [2755.1, 2241.3]], "length": 92.63}, {"u": 53611260, "v": 53498398, "oneway": false, "points": [[2662.6, 2245.99], [2654.7, 2246.45], [2579.59, 2250.77], [2573.5, 2250.96]], "length": 89.24}, {"u": 53611268, "v": 53487523, "oneway": false, "points": [[2676.22, 1750.83], [2682.85, 1752.53], [2749.58, 1769.55], [2757.14, 1771.51]], "length": 83.52}, {"u": 53611268, "v": 3786906803, "oneway": false, "points": [[2676.22, 1750.83], [2669.45, 1749.07], [2599.83, 1730.86], [2572.88, 1722.61], [2543.62, 1716.89], [2541.89, 1716.54], [2536.93, 1716.14]], "length": 143.7}, {"u": 53611268, "v": 53496315, "oneway": false, "points": [[2676.22, 1750.83], [2677.61, 1744.49], [2678.14, 1742.07], [2687.42, 1699.73], [2692.47, 1674.58], [2693.99, 1666.98]], "length": 85.72}, {"u": 53611268, "v": 2925569869, "oneway": false, "points": [[2676.22, 1750.83], [2674.85, 1757.03], [2674.24, 1759.78], [2667.39, 1790.73], [2665.92, 1797.07], [2659.68, 1823.81], [2654.2, 1830.8], [2652.59, 1833.95]], "length": 87.25}, {"u": 53611281, "v": 53568332, "oneway": false, "points": [[2712.64, 1443.06], [2703.13, 1442.59], [2622.29, 1438.61], [2614.84, 1438.24]], "length": 97.92}, {"u": 53611281, "v": 3786926320, "oneway": false, "points": [[2712.64, 1443.06], [2712.89, 1436.92], [2713.01, 1433.86], [2715.01, 1384.07], [2705.16, 1382.58], [2683.07, 1378.98], [2625.54, 1362.56], [2619.59, 1360.86]], "length": 157.39}, {"u": 53611281, "v": 53596328, "oneway": false, "points": [[2712.64, 1443.06], [2712.27, 1450.55], [2712.12, 1453.52], [2708.89, 1518.58], [2708.79, 1520.52], [2708.58, 1524.86]], "length": 81.91}, {"u": 53612039, "v": 53612042, "oneway": false, "points": [[-1622.97, -2271.34], [-1640.06, -2276.92], [-1679.33, -2289.73], [-1701.89, -2299.02], [-1711.08, -2302.72]], "length": 93.59}, {"u": 53612039, "v": 2771341200, "oneway": false, "points": [[-1622.97, -2271.34], [-1587.45, -2272.13], [-1541.89, -2274.73], [-1524.63, -2275.71], [-1507.83, -2276.18], [-1504.05, -2276.29], [-1491.08, -2273.31]], "length": 132.34}, {"u": 53612039, "v": 53447620, "oneway": false, "points": [[-1622.97, -2271.34], [-1635.55, -2259.45], [-1643.58, -2248.19], [-1666.05, -2207.42], [-1698.5, -2151.03], [-1726.21, -2099.77], [-1765.63, -2028.15], [-1770.22, -2019.82]], "length": 292.29}, {"u": 53612042, "v": 53612039, "oneway": false, "points": [[-1711.08, -2302.72], [-1701.89, -2299.02], [-1679.33, -2289.73], [-1640.06, -2276.92], [-1622.97, -2271.34]], "length": 93.59}, {"u": 53612042, "v": 53679815, "oneway": false, "points": [[-1711.08, -2302.72], [-1708.54, -2308.7], [-1700.07, -2328.04], [-1689.97, -2354.23], [-1678.25, -2390.04], [-1676.28, -2396.94]], "length": 100.54}, {"u": 53612042, "v": 1153239288, "oneway": false, "points": [[-1711.08, -2302.72], [-1715.74, -2292.88], [-1734.73, -2254.69], [-1759.54, -2213.19], [-1773.96, -2192.99], [-1802.72, -2155.82], [-1847.74, -2105.52], [-1865.93, -2084.41], [-1873.7, -2075.39]], "length": 280.98}, {"u": 53615252, "v": 53493114, "oneway": true, "points": [[-395.58, -295.99], [-383.13, -309.68], [-349.08, -347.12], [-340.44, -356.62], [-313.88, -385.83], [-307.52, -392.82]], "length": 130.88}, {"u": 53615252, "v": 13324853243, "oneway": false, "points": [[-395.58, -295.99], [-403.36, -302.83], [-406.66, -305.69], [-419.35, -316.52]], "length": 31.41}, {"u": 53615252, "v": 53332734, "oneway": false, "points": [[-395.58, -295.99], [-388.72, -289.72], [-369.67, -272.32], [-344.83, -249.75], [-327.56, -234.06], [-314.69, -222.37]], "length": 109.38}, {"u": 53615260, "v": 53493128, "oneway": true, "points": [[-767.5, -634.98], [-755.39, -648.84], [-704.95, -703.85], [-703.34, -705.36], [-685.81, -724.71], [-679.7, -731.45]], "length": 130.46}, {"u": 53615260, "v": 53508174, "oneway": false, "points": [[-767.5, -634.98], [-772.72, -639.69], [-776.56, -643.21], [-778.91, -645.32], [-790.86, -656.19], [-804.74, -668.86], [-813.42, -676.79], [-822.82, -685.23], [-830.53, -692.36], [-846.32, -706.74], [-854.44, -714.13], [-882.9, -740.04], [-886.93, -743.74], [-891.72, -748.08], [-910.56, -765.22], [-917.63, -771.08]], "length": 202.66}, {"u": 53615260, "v": 917593526, "oneway": false, "points": [[-767.5, -634.98], [-761.32, -629.35], [-745.19, -614.66], [-744.62, -614.14], [-735.83, -606.15], [-722.41, -593.93], [-708.66, -581.41], [-707.81, -580.64], [-693.04, -567.2], [-677.64, -553.17], [-663.89, -540.64], [-662.42, -539.32], [-647.98, -526.16], [-625.15, -505.37], [-618.78, -499.57]], "length": 201.13}, {"u": 53616146, "v": 1142904218, "oneway": false, "points": [[386.48, 102.93], [392.6, 108.29], [395.09, 110.6], [416.24, 130.24], [439.6, 151.93], [452.19, 163.61], [470.18, 179.46], [525.94, 232.05], [528.44, 234.41], [535.72, 241.33]], "length": 203.56}, {"u": 53616146, "v": 1192150160, "oneway": false, "points": [[386.48, 102.93], [423.9, 60.51], [445.68, 36.92], [461.2, 16.15], [462.82, 13.49], [466.02, 4.44]], "length": 127.31}, {"u": 53616146, "v": 53407941, "oneway": false, "points": [[386.48, 102.93], [380.6, 109.3], [373.96, 116.51], [349.71, 143.28], [325.66, 169.42], [318.52, 177.71]], "length": 101.05}, {"u": 53616166, "v": 53628954, "oneway": false, "points": [[-1736.11, -876.25], [-1735.92, -864.49], [-1735.81, -863.0], [-1735.54, -851.18], [-1734.74, -819.12], [-1734.6, -813.49]], "length": 62.78}, {"u": 53616166, "v": 53430437, "oneway": false, "points": [[-1736.11, -876.25], [-1736.38, -885.72], [-1736.43, -887.31], [-1737.49, -922.62], [-1737.88, -936.65], [-1738.48, -957.91], [-1739.62, -1005.75], [-1739.88, -1016.5]], "length": 140.3}, {"u": 53616166, "v": 1179459773, "oneway": false, "points": [[-1736.11, -876.25], [-1727.89, -876.64], [-1695.21, -878.11], [-1633.9, -880.89], [-1621.93, -881.43]], "length": 114.29}, {"u": 53616166, "v": 53576821, "oneway": false, "points": [[-1736.11, -876.25], [-1745.27, -875.81], [-1766.62, -874.77], [-1802.92, -873.01], [-1828.94, -871.8], [-1856.94, -870.45], [-1865.57, -870.04]], "length": 129.61}, {"u": 53616173, "v": 53509875, "oneway": false, "points": [[-1731.02, -691.98], [-1794.2, -689.28]], "length": 63.23}, {"u": 53616173, "v": 1179459707, "oneway": false, "points": [[-1731.02, -691.98], [-1691.21, -693.67], [-1688.25, -693.8], [-1623.86, -696.55], [-1613.96, -696.96]], "length": 117.17}, {"u": 53616173, "v": 53616175, "oneway": false, "points": [[-1731.02, -691.98], [-1729.52, -683.66], [-1729.42, -680.8], [-1728.7, -660.53], [-1727.78, -634.27], [-1727.06, -613.66], [-1726.74, -607.82]], "length": 84.35}, {"u": 53616173, "v": 53545466, "oneway": false, "points": [[-1731.02, -691.98], [-1732.25, -701.42], [-1732.3, -702.88], [-1732.61, -713.59], [-1733.04, -750.55], [-1733.1, -755.89]], "length": 64.01}, {"u": 53616175, "v": 53616173, "oneway": false, "points": [[-1726.74, -607.82], [-1727.06, -613.66], [-1727.78, -634.27], [-1728.7, -660.53], [-1729.42, -680.8], [-1729.52, -683.66], [-1731.02, -691.98]], "length": 84.35}, {"u": 53616182, "v": 1179459701, "oneway": false, "points": [[-1726.56, -509.05], [-1717.94, -509.48], [-1695.67, -510.57], [-1655.57, -512.54], [-1612.38, -514.67], [-1609.49, -514.81], [-1599.98, -515.28]], "length": 126.73}, {"u": 53616182, "v": 53668988, "oneway": false, "points": [[-1726.56, -509.05], [-1735.79, -508.6], [-1848.24, -502.44], [-1857.69, -502.16]], "length": 131.31}, {"u": 53616182, "v": 53616188, "oneway": false, "points": [[-1726.56, -509.05], [-1726.19, -500.7], [-1726.03, -497.12], [-1724.32, -458.2], [-1723.85, -447.51], [-1721.09, -393.63], [-1720.63, -383.66]], "length": 125.53}, {"u": 53616188, "v": 53488193, "oneway": false, "points": [[-1720.63, -383.66], [-1719.98, -372.62], [-1719.47, -363.84], [-1716.91, -320.27]], "length": 63.5}, {"u": 53616188, "v": 53616182, "oneway": false, "points": [[-1720.63, -383.66], [-1721.09, -393.63], [-1723.85, -447.51], [-1724.32, -458.2], [-1726.03, -497.12], [-1726.19, -500.7], [-1726.56, -509.05]], "length": 125.53}, {"u": 53616188, "v": 1179459686, "oneway": true, "points": [[-1720.63, -383.66], [-1710.17, -384.18], [-1600.24, -389.54], [-1589.57, -389.88]], "length": 131.21}, {"u": 53616189, "v": 53488193, "oneway": false, "points": [[-1713.32, -252.05], [-1713.81, -261.51], [-1713.97, -265.46], [-1715.62, -296.25], [-1716.91, -320.27]], "length": 68.31}, {"u": 53616189, "v": 53652463, "oneway": true, "points": [[-1713.32, -252.05], [-1805.18, -247.64], [-1841.58, -245.88], [-1849.72, -245.5]], "length": 136.55}, {"u": 53620227, "v": 53551340, "oneway": false, "points": [[-209.83, -2137.72], [-220.86, -2137.34], [-236.59, -2136.78], [-251.44, -2136.27], [-256.98, -2136.07], [-291.33, -2134.87], [-298.51, -2134.62]], "length": 88.74}, {"u": 53621162, "v": 53454656, "oneway": false, "points": [[-2587.08, -1357.89], [-2558.65, -1334.23]], "length": 36.99}, {"u": 53621162, "v": 53454658, "oneway": false, "points": [[-2587.08, -1357.89], [-2559.09, -1358.71]], "length": 28.0}, {"u": 53621162, "v": 53621164, "oneway": false, "points": [[-2587.08, -1357.89], [-2614.16, -1380.44], [-2616.32, -1382.25], [-2623.28, -1387.9]], "length": 47.02}, {"u": 53621164, "v": 53621168, "oneway": false, "points": [[-2623.28, -1387.9], [-2629.74, -1393.87], [-2632.37, -1396.13], [-2665.79, -1424.92], [-2682.99, -1439.21], [-2715.95, -1467.0], [-2722.5, -1472.52]], "length": 130.42}, {"u": 53621164, "v": 53621162, "oneway": false, "points": [[-2623.28, -1387.9], [-2616.32, -1382.25], [-2614.16, -1380.44], [-2587.08, -1357.89]], "length": 47.02}, {"u": 53621164, "v": 3812685626, "oneway": false, "points": [[-2623.28, -1387.9], [-2617.34, -1395.16], [-2585.8, -1432.9], [-2572.8, -1448.51]], "length": 78.88}, {"u": 53621164, "v": 53444627, "oneway": false, "points": [[-2623.28, -1387.9], [-2628.79, -1381.47], [-2654.34, -1351.36], [-2679.6, -1321.58], [-2685.57, -1314.39]], "length": 96.35}, {"u": 53621168, "v": 53444632, "oneway": false, "points": [[-2722.5, -1472.52], [-2728.16, -1465.72], [-2752.74, -1436.15], [-2779.01, -1405.85], [-2784.89, -1398.7]], "length": 96.66}, {"u": 53621168, "v": 2635256574, "oneway": false, "points": [[-2722.5, -1472.52], [-2768.8, -1512.65], [-2801.18, -1539.62], [-2814.75, -1550.95], [-2821.08, -1555.95]], "length": 129.16}, {"u": 53621168, "v": 53621164, "oneway": false, "points": [[-2722.5, -1472.52], [-2715.95, -1467.0], [-2682.99, -1439.21], [-2665.79, -1424.92], [-2632.37, -1396.13], [-2629.74, -1393.87], [-2623.28, -1387.9]], "length": 130.42}, {"u": 53621256, "v": 53576831, "oneway": false, "points": [[-1748.09, -1379.25], [-1755.9, -1379.13], [-1757.84, -1379.11], [-1867.26, -1377.46], [-1869.7, -1377.43], [-1878.26, -1377.19]], "length": 130.18}, {"u": 53621256, "v": 1179795984, "oneway": false, "points": [[-1748.09, -1379.25], [-1739.58, -1379.4], [-1658.26, -1380.8], [-1638.52, -1381.22], [-1628.02, -1381.41], [-1620.08, -1381.54]], "length": 128.03}, {"u": 53621256, "v": 2573847790, "oneway": false, "points": [[-1748.09, -1379.25], [-1747.8, -1367.64], [-1746.54, -1319.44], [-1746.76, -1272.18], [-1746.76, -1269.84], [-1746.84, -1257.69]], "length": 121.58}, {"u": 53621256, "v": 53511582, "oneway": false, "points": [[-1748.09, -1379.25], [-1748.36, -1388.86], [-1748.42, -1390.94], [-1749.83, -1440.88], [-1751.23, -1485.01], [-1751.38, -1489.63], [-1751.71, -1499.93]], "length": 120.73}, {"u": 53621269, "v": 53511598, "oneway": false, "points": [[-2135.99, -1370.55], [-2136.19, -1381.28], [-2136.2, -1381.89], [-2138.18, -1480.2], [-2138.21, -1490.73]], "length": 120.21}, {"u": 53621269, "v": 53643772, "oneway": false, "points": [[-2135.99, -1370.55], [-2135.7, -1359.28], [-2134.4, -1309.22], [-2132.91, -1260.75], [-2132.55, -1249.08]], "length": 121.51}, {"u": 53621269, "v": 4095648227, "oneway": false, "points": [[-2135.99, -1370.55], [-2144.06, -1370.32], [-2270.33, -1366.92], [-2271.93, -1366.88], [-2274.54, -1366.8]], "length": 138.6}, {"u": 53621269, "v": 53503849, "oneway": false, "points": [[-2135.99, -1370.55], [-2127.68, -1370.75], [-2015.63, -1373.58], [-2007.64, -1373.72]], "length": 128.39}, {"u": 53621277, "v": 1178694147, "oneway": true, "points": [[-2376.16, -1363.84], [-2376.79, -1355.89], [-2377.51, -1353.53], [-2378.66, -1349.77], [-2381.32, -1343.56], [-2384.19, -1338.99], [-2387.37, -1335.36], [-2391.0, -1332.01], [-2394.92, -1328.89], [-2401.27, -1325.81], [-2406.25, -1324.12], [-2413.89, -1321.75], [-2419.6, -1320.5], [-2423.18, -1319.71], [-2428.47, -1319.08]], "length": 76.45}, {"u": 53621277, "v": 4095648223, "oneway": false, "points": [[-2376.16, -1363.84], [-2371.5, -1363.87], [-2293.56, -1366.29], [-2290.35, -1366.34], [-2287.07, -1366.43]], "length": 89.12}, {"u": 53621652, "v": 53571781, "oneway": false, "points": [[1803.53, 601.31], [1815.1, 611.34], [1816.64, 613.25], [1821.77, 619.6]], "length": 25.93}, {"u": 53624470, "v": 53288575, "oneway": false, "points": [[-181.61, -3106.24], [-181.66, -3091.01]], "length": 15.23}, {"u": 53624470, "v": 2637710726, "oneway": false, "points": [[-181.61, -3106.24], [-86.81, -3110.27], [-39.53, -3112.28], [22.74, -3115.79], [28.1, -3116.08], [69.31, -3115.78], [128.24, -3111.33], [145.34, -3109.63], [158.0, -3107.8], [180.73, -3104.4], [191.58, -3102.78]], "length": 374.18}, {"u": 53625770, "v": 53610868, "oneway": false, "points": [[-3149.19, -1204.95], [-3143.3, -1199.82], [-3038.82, -1112.31], [-3036.65, -1110.88], [-3029.4, -1105.42]], "length": 155.78}, {"u": 53625770, "v": 53462393, "oneway": false, "points": [[-3149.19, -1204.95], [-3142.45, -1213.33], [-3119.94, -1240.8], [-3113.57, -1248.44], [-3096.71, -1268.29], [-3094.28, -1271.04], [-3089.75, -1276.01]], "length": 92.65}, {"u": 53625770, "v": 53549957, "oneway": false, "points": [[-3149.19, -1204.95], [-3154.96, -1198.38], [-3202.23, -1142.49], [-3207.21, -1136.49]], "length": 89.74}, {"u": 53626974, "v": 53626978, "oneway": false, "points": [[2258.87, 2463.51], [2251.95, 2469.65], [2246.43, 2474.33], [2204.55, 2517.18], [2193.37, 2528.2], [2186.98, 2534.65]], "length": 101.18}, {"u": 53626974, "v": 2714912986, "oneway": false, "points": [[2258.87, 2463.51], [2264.65, 2457.11], [2307.6, 2413.35], [2322.55, 2398.26], [2329.67, 2391.44]], "length": 101.04}, {"u": 53626974, "v": 53668890, "oneway": false, "points": [[2258.87, 2463.51], [2264.91, 2469.4], [2336.44, 2538.49], [2372.95, 2575.08], [2379.56, 2581.42]], "length": 168.74}, {"u": 53626974, "v": 6915301805, "oneway": false, "points": [[2258.87, 2463.51], [2251.82, 2457.12], [2223.76, 2429.21]], "length": 49.1}, {"u": 53626978, "v": 53714925, "oneway": false, "points": [[2186.98, 2534.65], [2180.76, 2540.96], [2146.84, 2576.6], [2123.32, 2600.66], [2116.96, 2607.38]], "length": 100.97}, {"u": 53626978, "v": 53626974, "oneway": false, "points": [[2186.98, 2534.65], [2193.37, 2528.2], [2204.55, 2517.18], [2246.43, 2474.33], [2251.95, 2469.65], [2258.87, 2463.51]], "length": 101.18}, {"u": 53626978, "v": 53727021, "oneway": false, "points": [[2186.98, 2534.65], [2193.53, 2541.24], [2303.51, 2648.05], [2310.92, 2653.46]], "length": 171.77}, {"u": 53626978, "v": 349368476, "oneway": false, "points": [[2186.98, 2534.65], [2180.75, 2528.64], [2063.72, 2415.1], [2057.44, 2409.02]], "length": 180.46}, {"u": 53626983, "v": 53562563, "oneway": false, "points": [[2022.51, 2703.86], [2047.06, 2679.71]], "length": 34.43}, {"u": 53628825, "v": 53558145, "oneway": false, "points": [[2268.62, 1272.24], [2271.8, 1268.12], [2285.21, 1250.76], [2300.0, 1211.78], [2303.38, 1204.46], [2307.44, 1198.46], [2315.65, 1190.48], [2317.19, 1188.99], [2324.41, 1181.98]], "length": 107.8}, {"u": 53628825, "v": 53461430, "oneway": false, "points": [[2268.62, 1272.24], [2262.99, 1278.27], [2213.39, 1331.47], [2211.23, 1333.79], [2205.52, 1339.92]], "length": 92.54}, {"u": 53628825, "v": 53589760, "oneway": false, "points": [[2268.62, 1272.24], [2273.23, 1276.66], [2289.63, 1292.43], [2363.43, 1358.82], [2414.92, 1406.88], [2420.31, 1411.91]], "length": 206.21}, {"u": 53628954, "v": 53545466, "oneway": false, "points": [[-1734.6, -813.49], [-1734.43, -806.78], [-1733.89, -784.72], [-1733.41, -760.41], [-1733.1, -755.89]], "length": 57.62}, {"u": 53628954, "v": 53616166, "oneway": false, "points": [[-1734.6, -813.49], [-1734.74, -819.12], [-1735.54, -851.18], [-1735.81, -863.0], [-1735.92, -864.49], [-1736.11, -876.25]], "length": 62.78}, {"u": 53628954, "v": 1179459709, "oneway": true, "points": [[-1734.6, -813.49], [-1725.6, -813.68], [-1632.9, -818.14], [-1629.49, -818.31], [-1619.04, -818.76]], "length": 115.68}, {"u": 53628956, "v": 53545473, "oneway": false, "points": [[-1864.02, -806.8], [-1862.01, -750.03]], "length": 56.81}, {"u": 53628956, "v": 53628954, "oneway": true, "points": [[-1864.02, -806.8], [-1855.52, -807.19], [-1817.88, -809.17], [-1800.48, -810.07], [-1780.8, -811.09], [-1764.35, -811.94], [-1746.35, -812.88], [-1743.48, -813.03], [-1734.6, -813.49]], "length": 129.59}, {"u": 53628956, "v": 53576821, "oneway": false, "points": [[-1864.02, -806.8], [-1864.24, -811.57], [-1864.61, -819.05], [-1864.72, -824.57], [-1864.88, -834.47], [-1865.31, -861.1], [-1865.57, -870.04]], "length": 63.26}, {"u": 53629591, "v": 12911858844, "oneway": false, "points": [[-890.78, -1317.29], [-901.33, -1326.54], [-928.06, -1350.93], [-930.29, -1352.83], [-931.5, -1353.34], [-933.25, -1353.18], [-935.74, -1352.56], [-937.61, -1351.74], [-938.59, -1351.05], [-941.1, -1349.24], [-1098.93, -1224.2]], "length": 266.47}, {"u": 53629591, "v": 12911858844, "oneway": false, "points": [[-890.78, -1317.29], [-895.72, -1311.84], [-1014.07, -1181.11], [-1028.52, -1164.15], [-1030.65, -1163.52], [-1033.5, -1165.11], [-1043.54, -1174.04], [-1052.73, -1182.16], [-1076.56, -1204.21], [-1091.74, -1217.36], [-1092.58, -1218.09], [-1098.93, -1224.2]], "length": 299.64}, {"u": 53629591, "v": 1191535148, "oneway": false, "points": [[-890.78, -1317.29], [-866.44, -1295.94], [-860.55, -1290.68], [-850.63, -1281.45], [-842.2, -1272.14]], "length": 66.38}, {"u": 53631422, "v": 53461154, "oneway": true, "points": [[308.0, 927.65], [245.68, 870.22], [239.03, 864.11]], "length": 93.77}, {"u": 53636372, "v": 6577170380, "oneway": false, "points": [[2028.28, 1456.61], [2008.66, 1425.79]], "length": 36.54}, {"u": 53636372, "v": 53723920, "oneway": false, "points": [[2028.28, 1456.61], [2022.93, 1462.01], [1946.93, 1538.69]], "length": 115.56}, {"u": 53636372, "v": 2859093884, "oneway": false, "points": [[2028.28, 1456.61], [2032.89, 1464.52], [2064.63, 1519.05], [2069.5, 1527.42]], "length": 81.93}, {"u": 53636377, "v": 53604822, "oneway": false, "points": [[2400.54, 2059.99], [2406.07, 2069.06], [2450.29, 2141.53], [2458.3, 2154.65], [2462.92, 2161.79]], "length": 119.4}, {"u": 53636377, "v": 53572019, "oneway": false, "points": [[2400.54, 2059.99], [2395.9, 2052.45], [2351.1, 1979.76], [2346.35, 1972.04]], "length": 103.3}, {"u": 53636377, "v": 53407767, "oneway": false, "points": [[2400.54, 2059.99], [2393.86, 2065.78], [2375.1, 2082.04], [2354.48, 2104.96], [2352.9, 2106.78], [2339.57, 2119.27]], "length": 85.18}, {"u": 53637455, "v": 5468393309, "oneway": false, "points": [[-485.88, 343.58], [-493.88, 336.35], [-511.16, 320.72], [-513.15, 318.92], [-514.23, 317.94], [-515.05, 317.19], [-536.52, 297.77], [-566.96, 270.24], [-568.97, 268.42], [-582.58, 256.11]], "length": 130.4}, {"u": 53637455, "v": 316292003, "oneway": false, "points": [[-485.88, 343.58], [-480.23, 348.69], [-458.03, 368.76], [-457.16, 369.56], [-436.19, 388.53], [-429.38, 394.68], [-425.6, 398.1], [-418.32, 404.69], [-405.72, 416.09], [-390.28, 430.04], [-389.4, 430.84], [-387.18, 432.86], [-372.43, 446.2], [-366.13, 451.9], [-363.81, 453.99], [-353.74, 463.1], [-343.83, 472.07], [-339.56, 474.46], [-337.33, 474.67], [-334.74, 474.25], [-332.41, 472.88], [-332.07, 472.44], [-302.08, 440.08], [-298.99, 436.75], [-277.37, 413.37], [-276.12, 412.02], [-274.74, 410.53], [-268.29, 403.54]], "length": 298.44}, {"u": 53637455, "v": 53655130, "oneway": false, "points": [[-485.88, 343.58], [-492.51, 351.15], [-517.61, 378.91], [-527.5, 389.85], [-529.38, 391.92], [-548.33, 412.88], [-555.16, 420.44], [-560.14, 425.94]], "length": 110.9}, {"u": 53637455, "v": 3157337335, "oneway": false, "points": [[-485.88, 343.58], [-480.71, 338.1], [-460.92, 316.52], [-440.7, 293.85], [-438.32, 291.21], [-425.89, 277.46], [-424.4, 275.82], [-417.86, 268.59]], "length": 101.25}, {"u": 53639872, "v": 1179796074, "oneway": true, "points": [[-1486.74, -2130.19], [-1482.1, -2123.84], [-1480.4, -2112.73], [-1478.48, -2103.05], [-1474.66, -2094.62]], "length": 38.23}, {"u": 53639872, "v": 5497859257, "oneway": false, "points": [[-1486.74, -2130.19], [-1488.32, -2165.02], [-1488.69, -2173.17]], "length": 43.02}, {"u": 53639885, "v": 53481665, "oneway": false, "points": [[-1604.77, -2847.45], [-1614.95, -2864.64], [-1638.46, -2903.77]], "length": 65.63}, {"u": 53639885, "v": 4248941674, "oneway": true, "points": [[-1604.77, -2847.45], [-1589.63, -2838.09], [-1582.87, -2834.08], [-1577.02, -2831.51], [-1573.84, -2830.85], [-1569.47, -2830.97], [-1557.44, -2833.02]], "length": 51.87}, {"u": 53639885, "v": 2638675157, "oneway": false, "points": [[-1604.77, -2847.45], [-1589.28, -2820.17], [-1584.58, -2812.28]], "length": 40.55}, {"u": 53640713, "v": 53498229, "oneway": false, "points": [[1906.54, 2262.53], [1913.14, 2268.21]], "length": 8.71}, {"u": 53640713, "v": 53640863, "oneway": true, "points": [[1906.54, 2262.53], [1877.92, 2238.38], [1868.17, 2235.96], [1857.93, 2237.06], [1846.81, 2239.64], [1830.34, 2242.48], [1815.9, 2241.84], [1804.19, 2236.6]], "length": 113.21}, {"u": 53640720, "v": 53640713, "oneway": true, "points": [[1796.16, 2167.07], [1807.23, 2175.11], [1824.26, 2182.31], [1830.94, 2185.9], [1867.22, 2220.14], [1906.54, 2262.53]], "length": 147.46}, {"u": 53640720, "v": 53640863, "oneway": true, "points": [[1796.16, 2167.07], [1801.59, 2192.5], [1803.92, 2217.08], [1804.19, 2236.6]], "length": 70.21}, {"u": 53640725, "v": 53668900, "oneway": false, "points": [[1776.35, 2119.62], [1783.03, 2112.45], [1832.82, 2062.63], [1839.46, 2056.0]], "length": 89.62}, {"u": 53640725, "v": 53640720, "oneway": true, "points": [[1776.35, 2119.62], [1787.86, 2143.2], [1796.16, 2167.07]], "length": 51.52}, {"u": 53640736, "v": 446198895, "oneway": true, "points": [[1634.5, 1974.19], [1621.62, 1987.47]], "length": 18.5}, {"u": 53640736, "v": 53640725, "oneway": true, "points": [[1634.5, 1974.19], [1647.16, 1985.3], [1667.1, 2002.9], [1747.52, 2080.4], [1764.16, 2100.64], [1776.35, 2119.62]], "length": 203.88}, {"u": 53640824, "v": 1699123288, "oneway": false, "points": [[605.92, 1060.6], [611.61, 1054.36], [612.89, 1052.96], [667.51, 993.01], [674.03, 985.87]], "length": 101.11}, {"u": 53640824, "v": 1699123263, "oneway": true, "points": [[605.92, 1060.6], [612.51, 1066.82], [747.42, 1191.38], [754.34, 1197.78]], "length": 202.11}, {"u": 53640824, "v": 4172253594, "oneway": false, "points": [[605.92, 1060.6], [601.07, 1065.92], [599.48, 1067.67], [596.95, 1070.44], [544.34, 1128.16], [543.48, 1129.12], [537.1, 1135.95]], "length": 102.05}, {"u": 53640831, "v": 53667521, "oneway": false, "points": [[157.79, 654.91], [163.8, 648.32], [181.13, 629.31], [182.23, 628.1], [205.4, 602.69], [219.56, 587.17], [226.24, 579.84]], "length": 101.59}, {"u": 53640831, "v": 53461150, "oneway": true, "points": [[157.79, 654.91], [164.08, 660.6], [300.12, 784.06], [306.65, 789.98]], "length": 201.01}, {"u": 53640831, "v": 316292008, "oneway": false, "points": [[157.79, 654.91], [152.74, 660.44], [151.47, 661.83], [97.37, 721.33], [95.86, 722.95], [89.46, 729.32]], "length": 101.04}, {"u": 53640838, "v": 3157337335, "oneway": false, "points": [[-350.69, 194.3], [-356.26, 200.47], [-358.87, 203.36], [-384.34, 231.52], [-391.08, 238.97], [-395.32, 243.65], [-410.06, 259.95], [-412.28, 262.42], [-417.86, 268.59]], "length": 100.16}, {"u": 53640838, "v": 53655118, "oneway": false, "points": [[-350.69, 194.3], [-345.46, 188.51], [-343.77, 186.64], [-333.29, 175.06], [-316.03, 155.97], [-291.59, 128.94], [-289.42, 126.52], [-283.35, 120.16]], "length": 100.16}, {"u": 53640838, "v": 3227608153, "oneway": true, "points": [[-350.69, 194.3], [-343.84, 200.56], [-328.18, 214.86], [-326.09, 216.77], [-315.09, 226.81], [-314.37, 227.47], [-300.34, 240.28], [-299.13, 241.38], [-282.25, 256.79], [-269.88, 268.1], [-259.88, 277.23], [-245.67, 290.2], [-238.62, 295.58], [-224.99, 307.33], [-221.6, 310.19], [-212.22, 319.0], [-201.09, 330.91]], "length": 202.69}, {"u": 53640863, "v": 446196406, "oneway": true, "points": [[1804.19, 2236.6], [1805.65, 2296.11], [1807.33, 2313.55], [1811.79, 2335.35], [1817.46, 2362.63]], "length": 127.17}, {"u": 53640863, "v": 53644706, "oneway": true, "points": [[1804.19, 2236.6], [1797.7, 2232.98], [1794.45, 2230.19], [1787.55, 2222.38], [1783.02, 2214.95], [1754.48, 2139.75]], "length": 111.27}, {"u": 53642012, "v": 2714977035, "oneway": false, "points": [[-969.1, -102.17], [-967.91, -97.55], [-966.61, -93.76], [-964.77, -90.21], [-963.07, -87.81], [-961.09, -85.42], [-958.9, -83.35], [-958.23, -82.73], [-939.76, -66.34], [-919.23, -48.11], [-912.21, -41.88], [-906.08, -36.44], [-905.46, -35.88], [-898.5, -29.71], [-883.43, -16.34], [-882.76, -15.74], [-876.2, -9.92], [-874.09, -8.05], [-867.44, -2.15], [-845.52, 17.31], [-836.28, 25.52], [-828.55, 32.38]], "length": 196.14}, {"u": 53642012, "v": 3271744858, "oneway": false, "points": [[-969.1, -102.17], [-969.05, -107.3], [-967.98, -112.62], [-966.26, -116.03], [-963.84, -119.53], [-961.02, -123.05], [-946.71, -138.87]], "length": 44.48}, {"u": 53642768, "v": 53642775, "oneway": false, "points": [[-481.45, -1969.59], [-481.63, -1973.65], [-482.23, -1987.13], [-482.27, -1987.99], [-482.75, -1998.76], [-483.32, -2011.61], [-491.59, -2196.82], [-492.0, -2206.08]], "length": 236.73}, {"u": 53642775, "v": 53642768, "oneway": false, "points": [[-492.0, -2206.08], [-491.59, -2196.82], [-483.32, -2011.61], [-482.75, -1998.76], [-482.27, -1987.99], [-482.23, -1987.13], [-481.63, -1973.65], [-481.45, -1969.59]], "length": 236.73}, {"u": 53642775, "v": 1612121520, "oneway": false, "points": [[-492.0, -2206.08], [-497.77, -2205.83], [-509.01, -2205.34]], "length": 17.03}, {"u": 53642775, "v": 53552967, "oneway": false, "points": [[-492.0, -2206.08], [-401.48, -2210.02], [-394.47, -2210.31]], "length": 97.62}, {"u": 53642782, "v": 53562507, "oneway": false, "points": [[-525.71, -2399.69], [-517.9, -2400.02]], "length": 7.82}, {"u": 53642782, "v": 53438624, "oneway": false, "points": [[-525.71, -2399.69], [-578.03, -2396.53], [-624.69, -2394.98], [-645.09, -2394.4], [-649.23, -2394.46], [-654.0, -2393.81], [-655.83, -2392.12], [-657.03, -2390.11], [-657.0, -2387.96], [-656.46, -2345.55], [-653.7, -2294.68]], "length": 228.81}, {"u": 53642782, "v": 2634682669, "oneway": false, "points": [[-525.71, -2399.69], [-525.99, -2406.81], [-527.25, -2439.03], [-527.45, -2444.18]], "length": 44.53}, {"u": 53643765, "v": 53643768, "oneway": false, "points": [[-2128.56, -1067.35], [-2128.86, -1092.05], [-2129.17, -1117.56], [-2129.3, -1128.67]], "length": 61.33}, {"u": 53643765, "v": 2816310345, "oneway": false, "points": [[-2128.56, -1067.35], [-2128.8, -1050.09], [-2129.17, -1015.46], [-2129.26, -1007.33]], "length": 60.02}, {"u": 53643765, "v": 53483915, "oneway": false, "points": [[-2128.56, -1067.35], [-2136.7, -1067.04], [-2174.06, -1065.63], [-2264.27, -1063.38], [-2271.95, -1063.2]], "length": 143.45}, {"u": 53643765, "v": 53503834, "oneway": false, "points": [[-2128.56, -1067.35], [-2120.56, -1067.65], [-2109.19, -1068.04], [-2060.32, -1069.69], [-2054.48, -1069.83], [-2036.27, -1070.36], [-2007.82, -1070.93], [-1999.73, -1071.03]], "length": 128.89}, {"u": 53643768, "v": 53643772, "oneway": false, "points": [[-2129.3, -1128.67], [-2129.68, -1139.92], [-2131.32, -1189.09], [-2132.33, -1238.31], [-2132.55, -1249.08]], "length": 120.46}, {"u": 53643768, "v": 53643765, "oneway": false, "points": [[-2129.3, -1128.67], [-2129.17, -1117.56], [-2128.86, -1092.05], [-2128.56, -1067.35]], "length": 61.33}, {"u": 53643768, "v": 53709543, "oneway": false, "points": [[-2129.3, -1128.67], [-2137.74, -1128.45], [-2265.84, -1124.94], [-2274.3, -1124.7]], "length": 145.06}, {"u": 53643768, "v": 53709531, "oneway": false, "points": [[-2129.3, -1128.67], [-2121.85, -1128.92], [-2041.07, -1131.0], [-2019.22, -1131.47], [-2009.77, -1131.82], [-2001.65, -1132.03]], "length": 127.7}, {"u": 53643772, "v": 53621269, "oneway": false, "points": [[-2132.55, -1249.08], [-2132.91, -1260.75], [-2134.4, -1309.22], [-2135.7, -1359.28], [-2135.99, -1370.55]], "length": 121.51}, {"u": 53643772, "v": 53643768, "oneway": false, "points": [[-2132.55, -1249.08], [-2132.33, -1238.31], [-2131.32, -1189.09], [-2129.68, -1139.92], [-2129.3, -1128.67]], "length": 120.46}, {"u": 53643772, "v": 53692030, "oneway": false, "points": [[-2132.55, -1249.08], [-2140.9, -1248.85], [-2266.07, -1245.66], [-2268.07, -1245.61], [-2276.94, -1245.39]], "length": 144.43}, {"u": 53643772, "v": 53503843, "oneway": false, "points": [[-2132.55, -1249.08], [-2124.75, -1249.29], [-2012.33, -1251.95], [-2004.51, -1252.19]], "length": 128.08}, {"u": 53644201, "v": 53573840, "oneway": false, "points": [[184.84, -2268.27], [182.13, -2265.51], [170.98, -2254.2], [168.7, -2254.25], [162.34, -2259.25], [155.22, -2264.86], [146.67, -2272.34], [139.95, -2276.22]], "length": 58.3}, {"u": 53644706, "v": 446198895, "oneway": true, "points": [[1754.48, 2139.75], [1751.16, 2126.17], [1745.02, 2109.46], [1736.47, 2097.46], [1718.08, 2079.26], [1692.24, 2054.12], [1639.2, 2002.77], [1634.54, 1998.38], [1621.62, 1987.47]], "length": 205.58}, {"u": 53645079, "v": 53558155, "oneway": false, "points": [[1207.54, 302.0], [1213.9, 295.15], [1215.24, 293.72], [1253.95, 251.98], [1257.71, 251.27], [1259.52, 252.11], [1297.93, 283.46], [1301.22, 286.14], [1305.34, 289.45]], "length": 133.17}, {"u": 53645079, "v": 53667261, "oneway": false, "points": [[1207.54, 302.0], [1249.43, 340.66], [1253.49, 344.42]], "length": 62.53}, {"u": 53645079, "v": 3235650820, "oneway": false, "points": [[1207.54, 302.0], [1175.28, 272.27], [1113.84, 214.53], [1107.8, 208.83]], "length": 136.49}, {"u": 53645778, "v": 53475324, "oneway": false, "points": [[-3002.12, -424.12], [-3011.23, -417.65], [-3012.58, -416.7], [-3017.79, -413.77], [-3029.31, -408.88], [-3046.18, -403.51], [-3058.39, -400.26], [-3068.44, -398.2], [-3080.29, -396.74], [-3098.53, -396.22], [-3107.5, -396.62], [-3143.07, -400.71]], "length": 146.88}, {"u": 53645778, "v": 53481435, "oneway": false, "points": [[-3002.12, -424.12], [-2995.09, -420.43], [-2965.56, -408.17], [-2940.3, -398.79]], "length": 66.86}, {"u": 53645778, "v": 53549801, "oneway": false, "points": [[-3002.12, -424.12], [-3014.29, -430.66], [-3028.63, -439.14], [-3051.21, -453.71], [-3067.96, -468.16]], "length": 79.47}, {"u": 53646359, "v": 53521450, "oneway": false, "points": [[-1024.15, 174.24], [-1021.78, 171.55], [-993.44, 139.42]], "length": 46.43}, {"u": 53646449, "v": 53509875, "oneway": false, "points": [[-1790.6, -614.49], [-1792.08, -644.59], [-1793.86, -680.66], [-1794.2, -689.28]], "length": 74.87}, {"u": 53647040, "v": 53575901, "oneway": false, "points": [[-2174.15, -1633.94], [-2220.59, -1632.67], [-2226.75, -1632.5]], "length": 52.62}, {"u": 53649099, "v": 2384881527, "oneway": true, "points": [[2065.89, 1445.56], [2074.24, 1454.59], [2108.56, 1478.79]], "length": 54.29}, {"u": 53649099, "v": 53649103, "oneway": true, "points": [[2065.89, 1445.56], [2076.61, 1452.26], [2118.84, 1478.86], [2127.69, 1484.17], [2146.59, 1498.05], [2157.53, 1506.88]], "length": 110.38}, {"u": 53649103, "v": 53589769, "oneway": true, "points": [[2157.53, 1506.88], [2175.12, 1519.07], [2231.68, 1558.25]], "length": 90.21}, {"u": 53649105, "v": 53490476, "oneway": false, "points": [[2317.1, 1617.41], [2312.08, 1623.15], [2310.02, 1626.15], [2306.01, 1631.96], [2302.34, 1638.43], [2298.75, 1646.47], [2296.33, 1654.18], [2291.97, 1670.11], [2288.1, 1684.27], [2287.47, 1686.59], [2284.98, 1695.61], [2282.85, 1702.48], [2280.96, 1711.58], [2276.48, 1730.61], [2274.69, 1738.19]], "length": 129.43}, {"u": 53649105, "v": 1142902939, "oneway": true, "points": [[2317.1, 1617.41], [2323.81, 1622.06], [2507.24, 1749.13], [2511.41, 1752.01], [2520.51, 1758.31]], "length": 247.45}, {"u": 53652463, "v": 53488195, "oneway": false, "points": [[-1849.72, -245.5], [-1850.3, -255.45], [-1850.38, -259.01], [-1850.9, -281.94], [-1852.21, -314.14]], "length": 68.69}, {"u": 53652463, "v": 53461749, "oneway": true, "points": [[-1849.72, -245.5], [-1859.47, -244.75], [-1992.58, -239.6], [-1996.55, -239.44], [-2010.6, -238.86]], "length": 161.02}, {"u": 53655118, "v": 53538736, "oneway": true, "points": [[-283.35, 120.16], [-278.62, 112.27], [-272.38, 105.21], [-263.85, 95.57], [-260.83, 92.16], [-235.34, 63.39], [-234.35, 62.57], [-233.22, 61.89], [-231.92, 61.58], [-230.48, 61.39], [-222.83, 61.31], [-214.03, 60.96]], "length": 96.33}, {"u": 53655118, "v": 1180876933, "oneway": true, "points": [[-283.35, 120.16], [-289.85, 114.22], [-311.34, 94.57], [-324.64, 82.41], [-328.02, 79.33], [-331.45, 76.2], [-337.49, 70.63], [-340.01, 68.36], [-366.58, 44.08], [-374.98, 36.63]], "length": 124.0}, {"u": 53655118, "v": 53640838, "oneway": false, "points": [[-283.35, 120.16], [-289.42, 126.52], [-291.59, 128.94], [-316.03, 155.97], [-333.29, 175.06], [-343.77, 186.64], [-345.46, 188.51], [-350.69, 194.3]], "length": 100.16}, {"u": 53655130, "v": 53637455, "oneway": false, "points": [[-560.14, 425.94], [-555.16, 420.44], [-548.33, 412.88], [-529.38, 391.92], [-527.5, 389.85], [-517.61, 378.91], [-492.51, 351.15], [-485.88, 343.58]], "length": 110.9}, {"u": 53659829, "v": 53461820, "oneway": false, "points": [[-3192.28, -162.4], [-3180.46, -240.88], [-3179.85, -244.76], [-3178.55, -252.94]], "length": 91.57}, {"u": 53663953, "v": 1185580621, "oneway": false, "points": [[-694.31, -1017.59], [-688.45, -1025.1], [-686.76, -1026.88], [-658.33, -1057.41], [-630.54, -1087.86], [-628.49, -1090.39], [-621.12, -1098.49]], "length": 109.13}, {"u": 53663953, "v": 53578519, "oneway": false, "points": [[-694.31, -1017.59], [-700.22, -1009.92], [-733.98, -973.87], [-755.92, -948.82], [-761.66, -942.28]], "length": 101.07}, {"u": 53663953, "v": 53663960, "oneway": false, "points": [[-694.31, -1017.59], [-701.78, -1024.37], [-703.81, -1026.22], [-707.29, -1029.38], [-761.65, -1078.78], [-783.01, -1098.2], [-786.26, -1107.46]], "length": 129.66}, {"u": 53663953, "v": 53700870, "oneway": false, "points": [[-694.31, -1017.59], [-687.48, -1011.38], [-685.61, -1009.68], [-655.39, -982.2], [-640.67, -968.83], [-611.74, -942.53], [-609.18, -940.21], [-586.78, -919.86], [-549.78, -886.92], [-543.05, -884.55]], "length": 201.98}, {"u": 53663960, "v": 53663953, "oneway": false, "points": [[-786.26, -1107.46], [-783.01, -1098.2], [-761.65, -1078.78], [-707.29, -1029.38], [-703.81, -1026.22], [-701.78, -1024.37], [-694.31, -1017.59]], "length": 129.66}, {"u": 53663978, "v": 8174660902, "oneway": true, "points": [[-577.36, -844.77], [-571.14, -849.97], [-563.43, -855.03], [-559.14, -857.64], [-554.37, -859.81], [-550.0, -861.2], [-546.35, -861.92], [-543.8, -862.15], [-538.13, -862.23]], "length": 44.13}, {"u": 53663978, "v": 53700870, "oneway": true, "points": [[-577.36, -844.77], [-569.93, -857.72], [-552.53, -875.66], [-543.05, -884.55]], "length": 52.91}, {"u": 53667246, "v": 53461456, "oneway": true, "points": [[962.89, 161.95], [936.72, 155.79], [931.11, 155.61], [926.13, 157.05], [920.51, 159.88], [919.02, 161.23], [918.22, 161.95], [915.82, 164.12], [911.52, 169.01]], "length": 56.81}, {"u": 53667246, "v": 3235650820, "oneway": false, "points": [[962.89, 161.95], [967.21, 162.98], [1049.92, 182.72], [1077.58, 189.85], [1088.28, 192.99], [1098.79, 201.37], [1100.07, 202.43], [1107.8, 208.83]], "length": 154.33}, {"u": 53667261, "v": 53558155, "oneway": false, "points": [[1253.49, 344.42], [1259.92, 337.6], [1261.54, 335.89], [1281.02, 315.23], [1305.34, 289.45]], "length": 75.56}, {"u": 53667261, "v": 53645079, "oneway": false, "points": [[1253.49, 344.42], [1249.43, 340.66], [1207.54, 302.0]], "length": 62.53}, {"u": 53667261, "v": 316305099, "oneway": false, "points": [[1253.49, 344.42], [1261.36, 351.65], [1268.83, 358.52], [1288.67, 376.76], [1297.65, 385.01], [1327.33, 412.29], [1340.6, 424.48], [1343.83, 427.45], [1397.53, 474.58], [1403.59, 479.89]], "length": 202.21}, {"u": 53667521, "v": 2713311962, "oneway": false, "points": [[226.24, 579.84], [231.66, 573.9], [244.2, 560.15], [265.34, 536.96], [284.49, 515.96], [287.22, 512.96], [293.17, 506.43]], "length": 99.34}, {"u": 53667521, "v": 53640831, "oneway": false, "points": [[226.24, 579.84], [219.56, 587.17], [205.4, 602.69], [182.23, 628.1], [181.13, 629.31], [163.8, 648.32], [157.79, 654.91]], "length": 101.59}, {"u": 53667521, "v": 316302550, "oneway": false, "points": [[226.24, 579.84], [231.96, 584.98], [234.38, 587.4], [288.09, 635.29], [367.05, 705.72], [368.72, 707.21], [376.04, 713.9]], "length": 201.03}, {"u": 53667521, "v": 8729846828, "oneway": false, "points": [[226.24, 579.84], [218.97, 573.11], [216.35, 570.95], [181.19, 539.27], [174.73, 533.5], [133.01, 496.24], [121.69, 486.12], [84.8, 453.17], [82.17, 450.8], [75.45, 444.71]], "length": 202.49}, {"u": 53668846, "v": 3859915626, "oneway": false, "points": [[1122.38, 1395.27], [1117.22, 1390.49]], "length": 7.03}, {"u": 53668846, "v": 53668858, "oneway": false, "points": [[1122.38, 1395.27], [1127.4, 1399.85], [1128.7, 1401.04], [1250.11, 1511.77], [1260.57, 1521.32], [1262.43, 1523.01], [1268.23, 1528.32]], "length": 197.41}, {"u": 53668846, "v": 53536997, "oneway": true, "points": [[1122.38, 1395.27], [1117.57, 1400.61], [1115.05, 1403.4], [1109.48, 1407.8], [1095.49, 1419.95]], "length": 36.58}, {"u": 53668858, "v": 53668846, "oneway": false, "points": [[1268.23, 1528.32], [1262.43, 1523.01], [1260.57, 1521.32], [1250.11, 1511.77], [1128.7, 1401.04], [1127.4, 1399.85], [1122.38, 1395.27]], "length": 197.41}, {"u": 53668858, "v": 53538776, "oneway": false, "points": [[1268.23, 1528.32], [1274.86, 1520.94], [1330.95, 1458.47], [1335.34, 1453.59]], "length": 100.44}, {"u": 53668858, "v": 53668862, "oneway": false, "points": [[1268.23, 1528.32], [1274.85, 1534.37], [1277.8, 1537.04], [1367.29, 1618.75], [1396.35, 1645.28], [1411.04, 1659.56], [1416.18, 1664.56]], "length": 201.14}, {"u": 53668858, "v": 1777291055, "oneway": false, "points": [[1268.23, 1528.32], [1263.33, 1533.81], [1209.16, 1594.54], [1206.84, 1597.14], [1201.83, 1602.6]], "length": 99.64}, {"u": 53668862, "v": 53713371, "oneway": false, "points": [[1416.18, 1664.56], [1444.91, 1648.45], [1449.1, 1646.1]], "length": 37.74}, {"u": 53668862, "v": 53713378, "oneway": false, "points": [[1416.18, 1664.56], [1406.77, 1669.82], [1379.5, 1690.05], [1373.33, 1695.4]], "length": 52.91}, {"u": 53668862, "v": 53668858, "oneway": false, "points": [[1416.18, 1664.56], [1411.04, 1659.56], [1396.35, 1645.28], [1367.29, 1618.75], [1277.8, 1537.04], [1274.85, 1534.37], [1268.23, 1528.32]], "length": 201.14}, {"u": 53668890, "v": 53668892, "oneway": false, "points": [[2379.56, 2581.42], [2386.06, 2587.67], [2415.69, 2616.43], [2421.17, 2621.81], [2430.11, 2630.4], [2433.56, 2633.81], [2438.99, 2640.37]], "length": 83.75}, {"u": 53668890, "v": 53626974, "oneway": false, "points": [[2379.56, 2581.42], [2372.95, 2575.08], [2336.44, 2538.49], [2264.91, 2469.4], [2258.87, 2463.51]], "length": 168.74}, {"u": 53668890, "v": 53538791, "oneway": false, "points": [[2379.56, 2581.42], [2386.1, 2575.17], [2444.19, 2516.59], [2450.28, 2510.09]], "length": 100.45}, {"u": 53668890, "v": 53727021, "oneway": false, "points": [[2379.56, 2581.42], [2373.41, 2588.13], [2318.29, 2645.92], [2316.26, 2648.05], [2310.92, 2653.46]], "length": 99.51}, {"u": 53668892, "v": 53668890, "oneway": false, "points": [[2438.99, 2640.37], [2433.56, 2633.81], [2430.11, 2630.4], [2421.17, 2621.81], [2415.69, 2616.43], [2386.06, 2587.67], [2379.56, 2581.42]], "length": 83.75}, {"u": 53668897, "v": 53668900, "oneway": false, "points": [[1691.01, 1911.5], [1701.67, 1921.44], [1832.51, 2049.22], [1839.46, 2056.0]], "length": 207.16}, {"u": 53668897, "v": 11793715342, "oneway": false, "points": [[1691.01, 1911.5], [1683.59, 1918.0], [1657.93, 1940.47]], "length": 43.97}, {"u": 53668897, "v": 2713365262, "oneway": false, "points": [[1691.01, 1911.5], [1696.34, 1906.27], [1707.13, 1897.44], [1716.85, 1888.12]], "length": 34.87}, {"u": 53668900, "v": 53498225, "oneway": false, "points": [[1839.46, 2056.0], [1845.49, 2061.91], [1975.92, 2190.37], [1982.62, 2196.6]], "length": 200.67}, {"u": 53668900, "v": 53668897, "oneway": false, "points": [[1839.46, 2056.0], [1832.51, 2049.22], [1701.67, 1921.44], [1691.01, 1911.5]], "length": 207.16}, {"u": 53668900, "v": 53640725, "oneway": false, "points": [[1839.46, 2056.0], [1832.82, 2062.63], [1783.03, 2112.45], [1776.35, 2119.62]], "length": 89.62}, {"u": 53668900, "v": 53538727, "oneway": false, "points": [[1839.46, 2056.0], [1846.0, 2049.31], [1902.73, 1991.24], [1908.14, 1985.71]], "length": 98.27}, {"u": 53668988, "v": 53509962, "oneway": false, "points": [[-1857.69, -502.16], [-1857.86, -508.45], [-1858.03, -513.69], [-1858.35, -548.33], [-1858.45, -578.47], [-1859.11, -600.21], [-1859.4, -609.94], [-1860.2, -623.45], [-1860.57, -661.91]], "length": 159.79}, {"u": 53668988, "v": 53668996, "oneway": false, "points": [[-1857.69, -502.16], [-1857.52, -493.03], [-1857.1, -474.47], [-1855.52, -442.56], [-1854.57, -413.76], [-1854.37, -408.44], [-1853.6, -388.56], [-1853.45, -376.96]], "length": 125.28}, {"u": 53668988, "v": 53616182, "oneway": false, "points": [[-1857.69, -502.16], [-1848.24, -502.44], [-1735.79, -508.6], [-1726.56, -509.05]], "length": 131.31}, {"u": 53668988, "v": 53607068, "oneway": false, "points": [[-1857.69, -502.16], [-1867.17, -501.77], [-1872.25, -501.3], [-1981.08, -496.52], [-1990.15, -496.07]], "length": 132.61}, {"u": 53668996, "v": 53488195, "oneway": false, "points": [[-1853.45, -376.96], [-1853.23, -366.4], [-1852.21, -314.14]], "length": 62.84}, {"u": 53668996, "v": 53616188, "oneway": true, "points": [[-1853.45, -376.96], [-1842.79, -377.5], [-1792.66, -380.02], [-1729.76, -383.2], [-1720.63, -383.66]], "length": 132.98}, {"u": 53668996, "v": 53668988, "oneway": false, "points": [[-1853.45, -376.96], [-1853.6, -388.56], [-1854.37, -408.44], [-1854.57, -413.76], [-1855.52, -442.56], [-1857.1, -474.47], [-1857.52, -493.03], [-1857.69, -502.16]], "length": 125.28}, {"u": 53670180, "v": 53558110, "oneway": false, "points": [[1760.76, 565.91], [1714.49, 616.07], [1709.56, 621.43]], "length": 75.52}, {"u": 53672055, "v": 53672055, "oneway": false, "points": [[1273.0, 2177.63], [1280.03, 2179.16], [1286.13, 2151.51], [1273.63, 2148.82], [1267.46, 2176.38], [1273.0, 2177.63]], "length": 82.21}, {"u": 53672055, "v": 53672055, "oneway": false, "points": [[1273.0, 2177.63], [1267.46, 2176.38], [1273.63, 2148.82], [1286.13, 2151.51], [1280.03, 2179.16], [1273.0, 2177.63]], "length": 82.21}, {"u": 53672055, "v": 53578366, "oneway": false, "points": [[1273.0, 2177.63], [1266.7, 2208.72], [1265.73, 2215.09], [1262.98, 2224.17], [1258.86, 2231.06], [1256.43, 2234.47], [1251.28, 2239.61], [1245.55, 2244.33], [1237.36, 2249.51], [1223.53, 2254.96], [1186.7, 2269.0], [1167.84, 2276.09], [1146.73, 2285.08], [1139.36, 2288.34]], "length": 189.7}, {"u": 53672772, "v": 53521155, "oneway": false, "points": [[-3140.88, -906.6], [-3065.97, -909.83]], "length": 74.98}, {"u": 53672772, "v": 53610898, "oneway": false, "points": [[-3140.88, -906.6], [-3160.32, -919.5], [-3170.46, -927.05]], "length": 35.97}, {"u": 53672772, "v": 53610896, "oneway": false, "points": [[-3140.88, -906.6], [-3159.33, -905.69], [-3188.18, -904.28]], "length": 47.35}, {"u": 53672943, "v": 53437718, "oneway": false, "points": [[696.0, 1693.11], [701.25, 1688.47], [886.45, 1524.7], [892.56, 1519.31]], "length": 262.38}, {"u": 53672943, "v": 53537015, "oneway": false, "points": [[696.0, 1693.11], [701.08, 1698.94], [740.72, 1747.85], [746.16, 1753.57]], "length": 78.59}, {"u": 53672943, "v": 53453173, "oneway": false, "points": [[696.0, 1693.11], [690.1, 1686.47], [650.68, 1642.19], [648.06, 1638.71], [645.65, 1633.07], [643.71, 1627.88], [642.28, 1623.2], [640.26, 1616.59]], "length": 96.0}, {"u": 53672961, "v": 53455657, "oneway": false, "points": [[283.12, 1116.06], [316.62, 1078.94]], "length": 50.0}, {"u": 53676376, "v": 53576826, "oneway": false, "points": [[-1743.31, -1137.41], [-1752.09, -1137.24], [-1754.31, -1137.2], [-1811.99, -1136.04], [-1818.96, -1135.9], [-1864.88, -1134.98], [-1872.53, -1134.82]], "length": 129.25}, {"u": 53676376, "v": 53430437, "oneway": false, "points": [[-1743.31, -1137.41], [-1742.98, -1126.89], [-1742.39, -1101.14], [-1741.67, -1076.62], [-1740.34, -1028.04], [-1739.88, -1016.5]], "length": 120.97}, {"u": 53676376, "v": 2573847790, "oneway": false, "points": [[-1743.31, -1137.41], [-1743.63, -1149.04], [-1743.81, -1154.67], [-1746.45, -1244.3], [-1746.55, -1248.05], [-1746.84, -1257.69]], "length": 120.32}, {"u": 53677752, "v": 2988375113, "oneway": true, "points": [[-2911.11, -17.11], [-2908.61, -19.25], [-2905.56, -20.47], [-2902.27, -20.66], [-2899.1, -19.77], [-2896.39, -17.9], [-2894.43, -15.28], [-2893.42, -12.15], [-2893.37, -9.51], [-2894.03, -6.96], [-2895.33, -4.65], [-2897.19, -2.76], [-2899.48, -1.43], [-2902.03, -0.74]], "length": 38.89}, {"u": 53677752, "v": 53370932, "oneway": false, "points": [[-2911.11, -17.11], [-2916.8, -21.66], [-2918.5, -23.16], [-2923.47, -25.6], [-2973.6, -24.68], [-2996.69, -25.0], [-3020.38, -23.7], [-3053.93, -22.09]], "length": 145.63}, {"u": 53679791, "v": 3755083604, "oneway": false, "points": [[-554.26, -1959.62], [-555.29, -1969.44], [-557.3, -1988.59], [-557.58, -1991.27]], "length": 31.82}, {"u": 53679815, "v": 53679819, "oneway": false, "points": [[-1676.28, -2396.94], [-1674.38, -2404.83], [-1667.35, -2434.8], [-1666.53, -2438.26], [-1663.99, -2448.89], [-1657.04, -2485.1], [-1656.27, -2491.26], [-1655.38, -2498.26]], "length": 103.52}, {"u": 53679815, "v": 53612042, "oneway": false, "points": [[-1676.28, -2396.94], [-1678.25, -2390.04], [-1689.97, -2354.23], [-1700.07, -2328.04], [-1708.54, -2308.7], [-1711.08, -2302.72]], "length": 100.54}, {"u": 53679815, "v": 2638675244, "oneway": false, "points": [[-1676.28, -2396.94], [-1667.71, -2395.03], [-1623.04, -2382.04], [-1586.8, -2374.63], [-1570.2, -2373.54], [-1553.01, -2373.84], [-1512.43, -2376.47], [-1508.8, -2376.71], [-1496.21, -2377.01]], "length": 183.01}, {"u": 53679819, "v": 2638675157, "oneway": false, "points": [[-1655.38, -2498.26], [-1652.4, -2522.13], [-1632.88, -2734.65], [-1629.44, -2759.42], [-1625.25, -2775.33], [-1608.8, -2793.14], [-1593.29, -2805.39], [-1584.58, -2812.28]], "length": 334.03}, {"u": 53679819, "v": 53679815, "oneway": false, "points": [[-1655.38, -2498.26], [-1656.27, -2491.26], [-1657.04, -2485.1], [-1663.99, -2448.89], [-1666.53, -2438.26], [-1667.35, -2434.8], [-1674.38, -2404.83], [-1676.28, -2396.94]], "length": 103.52}, {"u": 53679819, "v": 2638675190, "oneway": false, "points": [[-1655.38, -2498.26], [-1647.28, -2498.45], [-1611.97, -2499.28], [-1518.06, -2504.34], [-1514.79, -2504.51], [-1501.25, -2504.23]], "length": 154.28}, {"u": 53680486, "v": 53680499, "oneway": false, "points": [[-2890.32, -2851.29], [-2902.2, -2864.6], [-2930.79, -2894.78], [-2952.39, -2917.5], [-2970.32, -2937.1], [-2990.87, -2957.61], [-2998.69, -2965.41], [-3020.39, -2985.79]], "length": 187.17}, {"u": 53680486, "v": 1153239288, "oneway": false, "points": [[-2890.32, -2851.29], [-2872.86, -2846.46], [-2853.0, -2843.12], [-2824.13, -2842.72], [-2791.81, -2843.99], [-2725.89, -2847.89], [-2657.08, -2853.09], [-2587.51, -2857.31], [-2560.55, -2858.31], [-2534.12, -2857.51], [-2522.87, -2854.89], [-2513.19, -2849.56], [-2503.03, -2840.46], [-2492.34, -2827.17], [-2482.05, -2808.67], [-2471.4, -2782.51], [-2455.88, -2741.84], [-2446.27, -2722.22], [-2432.16, -2696.28], [-2417.46, -2672.58], [-2398.36, -2640.57], [-2360.84, -2580.29], [-2348.89, -2552.85], [-2341.2, -2526.39], [-2339.08, -2503.56], [-2340.28, -2465.84], [-2349.0, -2352.44], [-2349.93, -2325.07], [-2347.52, -2300.91], [-2340.15, -2274.23], [-2326.94, -2248.38], [-2309.79, -2218.75], [-2284.52, -2167.79], [-2271.94, -2152.37], [-2254.11, -2141.77], [-2230.87, -2135.76], [-2207.96, -2135.42], [-2198.28, -2136.37], [-2184.28, -2136.99], [-2120.43, -2141.49], [-2092.16, -2143.88], [-2083.43, -2144.62], [-1977.16, -2153.6], [-1955.47, -2147.44], [-1940.02, -2137.44], [-1927.96, -2125.57], [-1918.15, -2112.46], [-1914.45, -2107.51], [-1902.29, -2092.08], [-1900.45, -2089.99], [-1892.95, -2083.83], [-1883.79, -2078.69], [-1873.7, -2075.39]], "length": 1575.57}, {"u": 53680486, "v": 53700390, "oneway": false, "points": [[-2890.32, -2851.29], [-2930.81, -2862.63], [-2993.73, -2882.04], [-3077.27, -2909.98], [-3095.36, -2915.35]], "length": 214.85}, {"u": 53680499, "v": 53556263, "oneway": false, "points": [[-3020.39, -2985.79], [-3037.19, -3002.98], [-3056.07, -3024.55], [-3082.15, -3050.03]], "length": 89.17}, {"u": 53680499, "v": 53680486, "oneway": false, "points": [[-3020.39, -2985.79], [-2998.69, -2965.41], [-2990.87, -2957.61], [-2970.32, -2937.1], [-2952.39, -2917.5], [-2930.79, -2894.78], [-2902.2, -2864.6], [-2890.32, -2851.29]], "length": 187.17}, {"u": 53680499, "v": 53700390, "oneway": false, "points": [[-3020.39, -2985.79], [-3028.67, -2976.1], [-3057.03, -2947.61], [-3068.19, -2938.84], [-3081.58, -2929.03], [-3089.71, -2921.95], [-3095.36, -2915.35]], "length": 103.21}, {"u": 53680515, "v": 53430446, "oneway": false, "points": [[-1954.54, -1072.14], [-1954.42, -1067.68], [-1954.41, -1067.24], [-1953.08, -1019.49], [-1952.89, -1012.49]], "length": 59.67}, {"u": 53680515, "v": 53503834, "oneway": false, "points": [[-1954.54, -1072.14], [-1991.83, -1071.28], [-1999.73, -1071.03]], "length": 45.19}, {"u": 53680515, "v": 53576823, "oneway": false, "points": [[-1954.54, -1072.14], [-1882.67, -1073.48], [-1879.08, -1073.55], [-1870.61, -1073.76]], "length": 83.95}, {"u": 53684762, "v": 53582923, "oneway": false, "points": [[-2750.77, -831.04], [-2750.68, -820.71], [-2747.91, -746.67], [-2747.79, -738.58]], "length": 92.51}, {"u": 53684762, "v": 2298789030, "oneway": false, "points": [[-2750.77, -831.04], [-2759.22, -830.66], [-2888.59, -824.98], [-2900.74, -824.46]], "length": 150.12}, {"u": 53684762, "v": 1180005819, "oneway": false, "points": [[-2750.77, -831.04], [-2700.05, -833.27], [-2676.92, -834.28], [-2668.24, -834.66]], "length": 82.61}, {"u": 53684770, "v": 53485100, "oneway": false, "points": [[-2738.47, -411.69], [-2738.25, -403.17], [-2737.7, -381.61], [-2735.41, -309.75], [-2735.15, -301.54]], "length": 110.19}, {"u": 53684770, "v": 53504327, "oneway": false, "points": [[-2738.47, -411.69], [-2738.71, -419.85], [-2742.58, -547.69], [-2742.82, -555.62]], "length": 144.0}, {"u": 53684770, "v": 53514812, "oneway": false, "points": [[-2738.47, -411.69], [-2746.35, -411.08], [-2751.03, -411.79], [-2768.59, -418.62], [-2779.89, -423.63], [-2786.7, -428.1], [-2793.12, -433.03], [-2806.91, -445.08], [-2816.07, -454.49], [-2828.64, -463.68], [-2843.35, -470.82], [-2860.77, -475.99], [-2872.07, -477.88], [-2878.72, -478.1], [-2886.26, -478.36]], "length": 167.27}, {"u": 53684770, "v": 53516186, "oneway": false, "points": [[-2738.47, -411.69], [-2729.8, -411.92], [-2664.49, -413.68], [-2654.93, -414.0]], "length": 83.58}, {"u": 53692030, "v": 4095648225, "oneway": false, "points": [[-2276.94, -1245.39], [-2277.29, -1256.37], [-2278.98, -1306.26], [-2280.77, -1355.66], [-2280.94, -1360.58]], "length": 115.26}, {"u": 53692030, "v": 53709543, "oneway": false, "points": [[-2276.94, -1245.39], [-2276.74, -1234.38], [-2275.85, -1185.01], [-2274.58, -1135.58], [-2274.3, -1124.7]], "length": 120.72}, {"u": 53692030, "v": 53590707, "oneway": false, "points": [[-2276.94, -1245.39], [-2286.15, -1245.12], [-2290.26, -1245.0], [-2416.93, -1241.25], [-2425.87, -1240.98]], "length": 148.99}, {"u": 53692030, "v": 53643772, "oneway": false, "points": [[-2276.94, -1245.39], [-2268.07, -1245.61], [-2266.07, -1245.66], [-2140.9, -1248.85], [-2132.55, -1249.08]], "length": 144.43}, {"u": 53692040, "v": 53444622, "oneway": false, "points": [[-2556.51, -1237.89], [-2563.13, -1237.56], [-2564.34, -1237.31], [-2565.92, -1236.76], [-2567.52, -1235.63], [-2572.67, -1230.25], [-2578.84, -1223.17]], "length": 28.34}, {"u": 53692040, "v": 53454656, "oneway": false, "points": [[-2556.51, -1237.89], [-2556.52, -1250.97], [-2556.55, -1270.9], [-2557.27, -1298.6], [-2558.65, -1334.23]], "length": 96.37}, {"u": 53692040, "v": 53590707, "oneway": false, "points": [[-2556.51, -1237.89], [-2546.68, -1238.12], [-2434.74, -1240.77], [-2425.87, -1240.98]], "length": 130.67}, {"u": 53695962, "v": 53575900, "oneway": false, "points": [[-2175.58, -1572.85], [-2218.88, -1572.0], [-2225.36, -1571.87]], "length": 49.79}, {"u": 53699396, "v": 53591794, "oneway": false, "points": [[-775.43, -328.74], [-767.33, -321.38], [-766.12, -320.27], [-741.04, -297.47], [-729.5, -286.97], [-709.16, -268.48], [-681.58, -243.4], [-663.23, -226.72], [-633.19, -199.39], [-632.09, -198.39], [-627.23, -193.98]], "length": 200.31}, {"u": 53699396, "v": 53608986, "oneway": true, "points": [[-775.43, -328.74], [-781.48, -321.71], [-837.96, -259.11], [-843.06, -253.11]], "length": 101.47}, {"u": 53699396, "v": 3241106071, "oneway": false, "points": [[-775.43, -328.74], [-781.64, -334.4], [-783.02, -335.65], [-835.03, -383.0], [-843.4, -390.62], [-864.51, -409.84], [-879.05, -423.08], [-915.6, -456.35], [-917.92, -458.47], [-924.15, -464.14]], "length": 201.13}, {"u": 53700390, "v": 53680499, "oneway": false, "points": [[-3095.36, -2915.35], [-3089.71, -2921.95], [-3081.58, -2929.03], [-3068.19, -2938.84], [-3057.03, -2947.61], [-3028.67, -2976.1], [-3020.39, -2985.79]], "length": 103.21}, {"u": 53700390, "v": 53680486, "oneway": false, "points": [[-3095.36, -2915.35], [-3077.27, -2909.98], [-2993.73, -2882.04], [-2930.81, -2862.63], [-2890.32, -2851.29]], "length": 214.85}, {"u": 53700390, "v": 53589977, "oneway": false, "points": [[-3095.36, -2915.35], [-3108.19, -2919.2], [-3129.68, -2923.92], [-3147.17, -2925.52], [-3164.71, -2926.13], [-3183.99, -2924.69], [-3206.1, -2922.38], [-3226.3, -2921.91], [-3244.73, -2925.04], [-3250.74, -2926.98]], "length": 157.29}, {"u": 53700870, "v": 8174660902, "oneway": true, "points": [[-543.05, -884.55], [-539.49, -868.46], [-538.13, -862.23]], "length": 22.86}, {"u": 53700870, "v": 53700872, "oneway": false, "points": [[-543.05, -884.55], [-538.46, -887.56], [-501.94, -926.12], [-495.69, -933.35], [-491.73, -937.9]], "length": 74.19}, {"u": 53700870, "v": 53663953, "oneway": false, "points": [[-543.05, -884.55], [-549.78, -886.92], [-586.78, -919.86], [-609.18, -940.21], [-611.74, -942.53], [-640.67, -968.83], [-655.39, -982.2], [-685.61, -1009.68], [-687.48, -1011.38], [-694.31, -1017.59]], "length": 201.98}, {"u": 53700872, "v": 53700870, "oneway": false, "points": [[-491.73, -937.9], [-495.69, -933.35], [-501.94, -926.12], [-538.46, -887.56], [-543.05, -884.55]], "length": 74.19}, {"u": 53703066, "v": 53486800, "oneway": false, "points": [[-2294.49, -98.22], [-2294.16, -89.47], [-2293.61, -82.01], [-2291.28, -40.22], [-2291.15, -32.96]], "length": 65.35}, {"u": 53709531, "v": 53503843, "oneway": false, "points": [[-2001.65, -1132.03], [-2001.94, -1143.29], [-2003.22, -1192.21], [-2004.28, -1241.38], [-2004.51, -1252.19]], "length": 120.19}, {"u": 53709531, "v": 53503834, "oneway": false, "points": [[-2001.65, -1132.03], [-2001.29, -1120.92], [-2001.21, -1118.24], [-1999.89, -1076.16], [-1999.73, -1071.03]], "length": 61.03}, {"u": 53709531, "v": 53643768, "oneway": false, "points": [[-2001.65, -1132.03], [-2009.77, -1131.82], [-2019.22, -1131.47], [-2041.07, -1131.0], [-2121.85, -1128.92], [-2129.3, -1128.67]], "length": 127.7}, {"u": 53709531, "v": 53576826, "oneway": false, "points": [[-2001.65, -1132.03], [-1993.27, -1132.22], [-1881.54, -1134.63], [-1872.53, -1134.82]], "length": 129.14}, {"u": 53709543, "v": 53692030, "oneway": false, "points": [[-2274.3, -1124.7], [-2274.58, -1135.58], [-2275.85, -1185.01], [-2276.74, -1234.38], [-2276.94, -1245.39]], "length": 120.72}, {"u": 53709543, "v": 53483915, "oneway": false, "points": [[-2274.3, -1124.7], [-2274.15, -1113.89], [-2271.95, -1063.2]], "length": 61.56}, {"u": 53709543, "v": 53590699, "oneway": false, "points": [[-2274.3, -1124.7], [-2283.65, -1124.55], [-2349.68, -1122.55], [-2406.31, -1120.84], [-2413.44, -1120.63], [-2417.03, -1120.53], [-2420.18, -1119.55]], "length": 146.08}, {"u": 53709543, "v": 53643768, "oneway": false, "points": [[-2274.3, -1124.7], [-2265.84, -1124.94], [-2137.74, -1128.45], [-2129.3, -1128.67]], "length": 145.06}, {"u": 53711224, "v": 53558157, "oneway": false, "points": [[1317.65, 276.4], [1310.62, 283.85]], "length": 10.25}, {"u": 53713371, "v": 53668862, "oneway": false, "points": [[1449.1, 1646.1], [1444.91, 1648.45], [1416.18, 1664.56]], "length": 37.74}, {"u": 53713378, "v": 53668862, "oneway": false, "points": [[1373.33, 1695.4], [1379.5, 1690.05], [1406.77, 1669.82], [1416.18, 1664.56]], "length": 52.91}, {"u": 53714922, "v": 53714925, "oneway": false, "points": [[2092.89, 2584.03], [2110.41, 2600.92], [2116.96, 2607.38]], "length": 33.53}, {"u": 53714925, "v": 53626978, "oneway": false, "points": [[2116.96, 2607.38], [2123.32, 2600.66], [2146.84, 2576.6], [2180.76, 2540.96], [2186.98, 2534.65]], "length": 100.97}, {"u": 53714925, "v": 53714922, "oneway": false, "points": [[2116.96, 2607.38], [2110.41, 2600.92], [2092.89, 2584.03]], "length": 33.53}, {"u": 53714925, "v": 53727030, "oneway": false, "points": [[2116.96, 2607.38], [2123.38, 2613.29], [2234.48, 2721.4], [2240.99, 2727.41]], "length": 172.61}, {"u": 53714925, "v": 53562563, "oneway": false, "points": [[2116.96, 2607.38], [2110.95, 2613.67], [2053.54, 2673.15], [2047.06, 2679.71]], "length": 100.59}, {"u": 53719166, "v": 2384881594, "oneway": true, "points": [[1856.57, 1743.69], [1863.83, 1750.33]], "length": 9.84}, {"u": 53719166, "v": 53407742, "oneway": true, "points": [[1856.57, 1743.69], [1866.47, 1735.28], [1921.4, 1679.96], [1923.05, 1678.95], [1931.59, 1673.72]], "length": 102.9}, {"u": 53720172, "v": 53472460, "oneway": false, "points": [[-544.44, 18.59], [-550.93, 25.71], [-563.37, 39.38], [-565.93, 42.19], [-595.47, 74.62], [-604.81, 84.86], [-606.78, 87.04], [-612.22, 93.01]], "length": 100.66}, {"u": 53720172, "v": 1160692043, "oneway": false, "points": [[-544.44, 18.59], [-538.87, 12.47], [-517.48, -11.02], [-503.0, -26.91], [-482.98, -48.89], [-476.32, -56.21]], "length": 101.17}, {"u": 53720172, "v": 2713279291, "oneway": true, "points": [[-544.44, 18.59], [-538.08, 24.33], [-461.16, 93.36], [-447.52, 105.69]], "length": 130.31}, {"u": 53723920, "v": 53636372, "oneway": false, "points": [[1946.93, 1538.69], [2022.93, 1462.01], [2028.28, 1456.61]], "length": 115.56}, {"u": 53725877, "v": 53725877, "oneway": true, "points": [[-2436.62, 233.64], [-2426.96, 233.05], [-2417.39, 232.57], [-2412.28, 232.28], [-2406.83, 232.64], [-2405.36, 233.0], [-2404.01, 233.62], [-2403.11, 235.01], [-2402.05, 236.92], [-2401.44, 239.39], [-2401.61, 242.11], [-2402.27, 243.85], [-2402.65, 244.81], [-2404.72, 247.09], [-2407.36, 248.71], [-2410.71, 250.05], [-2413.85, 250.51], [-2417.48, 250.63], [-2421.0, 249.98], [-2424.07, 249.0], [-2426.12, 247.57], [-2427.62, 246.34], [-2429.67, 244.46], [-2431.16, 242.55], [-2432.05, 241.1], [-2432.97, 239.34], [-2434.48, 236.65], [-2436.62, 233.64]], "length": 88.34}, {"u": 53725877, "v": 53580606, "oneway": false, "points": [[-2436.62, 233.64], [-2440.31, 232.62], [-2444.8, 231.57], [-2452.35, 231.36], [-2474.2, 231.96], [-2518.98, 233.49], [-2525.27, 233.64], [-2528.51, 233.8], [-2535.89, 234.11]], "length": 99.58}, {"u": 53727021, "v": 53668890, "oneway": false, "points": [[2310.92, 2653.46], [2316.26, 2648.05], [2318.29, 2645.92], [2373.41, 2588.13], [2379.56, 2581.42]], "length": 99.51}, {"u": 53727021, "v": 53727030, "oneway": false, "points": [[2310.92, 2653.46], [2304.46, 2661.19], [2302.51, 2663.23], [2247.36, 2720.95], [2240.99, 2727.41]], "length": 101.8}, {"u": 53727021, "v": 53529540, "oneway": false, "points": [[2310.92, 2653.46], [2316.46, 2660.33], [2346.83, 2688.26], [2432.5, 2772.55], [2440.43, 2778.97]], "length": 180.48}, {"u": 53727021, "v": 53626978, "oneway": false, "points": [[2310.92, 2653.46], [2303.51, 2648.05], [2193.53, 2541.24], [2186.98, 2534.65]], "length": 171.77}, {"u": 53727030, "v": 53727021, "oneway": false, "points": [[2240.99, 2727.41], [2247.36, 2720.95], [2302.51, 2663.23], [2304.46, 2661.19], [2310.92, 2653.46]], "length": 101.8}, {"u": 53727030, "v": 53714925, "oneway": false, "points": [[2240.99, 2727.41], [2234.48, 2721.4], [2123.38, 2613.29], [2116.96, 2607.38]], "length": 172.61}, {"u": 53727087, "v": 2637710726, "oneway": false, "points": [[258.35, -3090.89], [249.57, -3093.24], [191.58, -3102.78]], "length": 67.86}, {"u": 53727087, "v": 2637707069, "oneway": true, "points": [[258.35, -3090.89], [268.11, -3090.57], [284.75, -3084.68], [292.42, -3079.69], [305.35, -3074.19], [311.83, -3073.59], [316.71, -3074.82], [332.27, -3087.52]], "length": 82.25}, {"u": 258725731, "v": 4095606995, "oneway": false, "points": [[-2779.84, -1911.14], [-2764.04, -1913.48], [-2733.89, -1916.46], [-2720.08, -1916.25], [-2706.68, -1914.13], [-2697.55, -1910.48], [-2677.86, -1903.24], [-2662.93, -1898.1], [-2646.6, -1893.37], [-2635.52, -1891.28], [-2632.21, -1891.05], [-2621.8, -1890.35], [-2598.69, -1888.78], [-2557.85, -1888.29], [-2537.1, -1888.67], [-2531.98, -1888.77], [-2504.65, -1889.26], [-2475.03, -1890.96], [-2457.6, -1892.84], [-2439.32, -1896.32], [-2425.07, -1900.42], [-2402.67, -1907.35], [-2368.64, -1917.52], [-2360.86, -1919.85], [-2343.88, -1923.19], [-2335.14, -1923.92], [-2321.6, -1922.77], [-2307.15, -1919.95], [-2272.36, -1911.83], [-2239.89, -1904.76], [-2209.37, -1900.75], [-2193.2, -1900.09], [-2178.73, -1900.85], [-2167.24, -1901.77], [-2138.97, -1905.27], [-2134.0, -1906.29]], "length": 657.09}, {"u": 270405510, "v": 1153239288, "oneway": false, "points": [[-1896.29, -2025.43], [-1895.62, -2032.79], [-1891.73, -2050.79], [-1885.63, -2059.86], [-1880.63, -2067.34], [-1878.97, -2069.38], [-1873.7, -2075.39]], "length": 56.35}, {"u": 270405510, "v": 2573847770, "oneway": false, "points": [[-1896.29, -2025.43], [-1896.39, -2016.82], [-1896.1, -2001.38]], "length": 24.06}, {"u": 270405510, "v": 4095606995, "oneway": false, "points": [[-1896.29, -2025.43], [-1904.97, -2025.38], [-1915.94, -2025.09], [-1925.32, -2022.71], [-1942.19, -2013.89], [-1960.79, -2002.57], [-1988.65, -1985.96], [-2015.75, -1969.66], [-2020.28, -1966.94], [-2030.32, -1960.9], [-2050.0, -1948.44], [-2053.09, -1946.47], [-2081.21, -1928.66], [-2102.72, -1917.28], [-2124.91, -1909.15], [-2134.0, -1906.29]], "length": 268.95}, {"u": 316165989, "v": 53573840, "oneway": false, "points": [[146.89, -2293.91], [139.95, -2276.22]], "length": 19.0}, {"u": 316292003, "v": 53637455, "oneway": false, "points": [[-268.29, 403.54], [-274.74, 410.53], [-276.12, 412.02], [-277.37, 413.37], [-298.99, 436.75], [-302.08, 440.08], [-332.07, 472.44], [-332.41, 472.88], [-334.74, 474.25], [-337.33, 474.67], [-339.56, 474.46], [-343.83, 472.07], [-353.74, 463.1], [-363.81, 453.99], [-366.13, 451.9], [-372.43, 446.2], [-387.18, 432.86], [-389.4, 430.84], [-390.28, 430.04], [-405.72, 416.09], [-418.32, 404.69], [-425.6, 398.1], [-429.38, 394.68], [-436.19, 388.53], [-457.16, 369.56], [-458.03, 368.76], [-480.23, 348.69], [-485.88, 343.58]], "length": 298.44}, {"u": 316292003, "v": 3227608153, "oneway": false, "points": [[-268.29, 403.54], [-262.84, 397.66], [-260.45, 395.08], [-255.42, 389.64], [-236.37, 369.05], [-210.92, 341.54], [-201.09, 330.91]], "length": 98.95}, {"u": 316292003, "v": 3157337335, "oneway": true, "points": [[-268.29, 403.54], [-274.51, 397.94], [-291.09, 382.97], [-308.57, 367.2], [-320.33, 356.6], [-354.65, 325.62], [-362.6, 318.44], [-411.1, 274.67], [-417.86, 268.59]], "length": 201.45}, {"u": 316292008, "v": 3088209649, "oneway": true, "points": [[89.46, 729.32], [82.5, 722.69], [50.79, 694.12], [-52.73, 599.52], [-58.77, 593.96]], "length": 200.75}, {"u": 316292008, "v": 53640831, "oneway": false, "points": [[89.46, 729.32], [95.86, 722.95], [97.37, 721.33], [151.47, 661.83], [152.74, 660.44], [157.79, 654.91]], "length": 101.04}, {"u": 316292008, "v": 3088209661, "oneway": false, "points": [[89.46, 729.32], [83.16, 736.17], [80.86, 738.63], [59.76, 762.29]], "length": 44.37}, {"u": 316302550, "v": 53461150, "oneway": false, "points": [[376.04, 713.9], [368.17, 722.54], [313.75, 782.2], [312.62, 783.43], [306.65, 789.98]], "length": 102.97}, {"u": 316302550, "v": 2713311960, "oneway": false, "points": [[376.04, 713.9], [380.8, 708.69], [407.23, 679.71], [436.12, 648.03], [442.61, 640.93]], "length": 98.78}, {"u": 316302550, "v": 316302556, "oneway": false, "points": [[376.04, 713.9], [382.13, 719.44], [384.79, 721.91], [515.42, 842.83], [517.5, 844.78], [524.02, 850.63]], "length": 201.47}, {"u": 316302550, "v": 53667521, "oneway": false, "points": [[376.04, 713.9], [368.72, 707.21], [367.05, 705.72], [288.09, 635.29], [234.38, 587.4], [231.96, 584.98], [226.24, 579.84]], "length": 201.03}, {"u": 316302556, "v": 1699123288, "oneway": false, "points": [[524.02, 850.63], [531.32, 856.79], [533.55, 858.68], [664.7, 977.62], [667.43, 980.1], [674.03, 985.87]], "length": 201.98}, {"u": 316302556, "v": 316302550, "oneway": false, "points": [[524.02, 850.63], [517.5, 844.78], [515.42, 842.83], [384.79, 721.91], [382.13, 719.44], [376.04, 713.9]], "length": 201.47}, {"u": 316302556, "v": 1699123271, "oneway": false, "points": [[524.02, 850.63], [517.82, 857.42], [461.63, 919.08], [455.68, 925.61]], "length": 101.45}, {"u": 316302556, "v": 316302558, "oneway": false, "points": [[524.02, 850.63], [530.13, 843.92], [585.49, 783.17], [591.57, 776.48]], "length": 100.31}, {"u": 316302558, "v": 316302556, "oneway": false, "points": [[591.57, 776.48], [585.49, 783.17], [530.13, 843.92], [524.02, 850.63]], "length": 100.31}, {"u": 316302558, "v": 316303180, "oneway": false, "points": [[591.57, 776.48], [596.59, 770.67], [611.14, 755.01], [663.43, 697.65], [666.18, 694.62], [673.19, 686.92]], "length": 121.18}, {"u": 316302558, "v": 3270240367, "oneway": false, "points": [[591.57, 776.48], [598.03, 782.37], [734.02, 906.17], [740.93, 912.46]], "length": 201.99}, {"u": 316302558, "v": 2713311960, "oneway": false, "points": [[591.57, 776.48], [584.53, 770.08], [502.66, 695.57], [448.88, 646.62], [442.61, 640.93]], "length": 201.41}, {"u": 316303180, "v": 366215899, "oneway": false, "points": [[673.19, 686.92], [683.41, 675.68]], "length": 15.19}, {"u": 316303180, "v": 316302558, "oneway": false, "points": [[673.19, 686.92], [666.18, 694.62], [663.43, 697.65], [611.14, 755.01], [596.59, 770.67], [591.57, 776.48]], "length": 121.18}, {"u": 316303180, "v": 2713311958, "oneway": true, "points": [[673.19, 686.92], [662.37, 676.46], [634.23, 650.52]], "length": 53.32}, {"u": 316305090, "v": 53558103, "oneway": false, "points": [[1472.87, 407.14], [1464.83, 399.86], [1426.01, 364.79]], "length": 63.17}, {"u": 316305090, "v": 316305093, "oneway": false, "points": [[1472.87, 407.14], [1478.53, 412.29], [1545.61, 473.43], [1613.65, 536.29], [1621.0, 543.23]], "length": 201.15}, {"u": 316305090, "v": 11390496552, "oneway": false, "points": [[1472.87, 407.14], [1490.62, 387.07], [1498.01, 376.76]], "length": 39.48}, {"u": 316305090, "v": 316305099, "oneway": false, "points": [[1472.87, 407.14], [1467.5, 413.11], [1410.25, 472.89], [1403.59, 479.89]], "length": 100.47}, {"u": 316305093, "v": 53596618, "oneway": false, "points": [[1621.0, 543.23], [1628.22, 535.5], [1645.07, 516.25], [1647.79, 512.94], [1662.33, 495.27]], "length": 63.33}, {"u": 316305093, "v": 2713353784, "oneway": false, "points": [[1621.0, 543.23], [1615.73, 548.62], [1559.47, 609.33], [1553.48, 616.38]], "length": 99.55}, {"u": 316305093, "v": 53558110, "oneway": false, "points": [[1621.0, 543.23], [1626.52, 548.11], [1709.56, 621.43]], "length": 118.14}, {"u": 316305093, "v": 316305090, "oneway": false, "points": [[1621.0, 543.23], [1613.65, 536.29], [1545.61, 473.43], [1478.53, 412.29], [1472.87, 407.14]], "length": 201.15}, {"u": 316305099, "v": 316305090, "oneway": false, "points": [[1403.59, 479.89], [1410.25, 472.89], [1467.5, 413.11], [1472.87, 407.14]], "length": 100.47}, {"u": 316305099, "v": 53667261, "oneway": false, "points": [[1403.59, 479.89], [1397.53, 474.58], [1343.83, 427.45], [1340.6, 424.48], [1327.33, 412.29], [1297.65, 385.01], [1288.67, 376.76], [1268.83, 358.52], [1261.36, 351.65], [1253.49, 344.42]], "length": 202.21}, {"u": 316305099, "v": 2713353784, "oneway": false, "points": [[1403.59, 479.89], [1411.91, 487.47], [1546.63, 610.14], [1553.48, 616.38]], "length": 202.72}, {"u": 316305099, "v": 53461467, "oneway": false, "points": [[1403.59, 479.89], [1397.31, 486.85], [1342.38, 547.64], [1335.0, 555.73]], "length": 102.25}, {"u": 316306590, "v": 53578394, "oneway": false, "points": [[1405.36, 2793.76], [1392.16, 2769.83]], "length": 27.32}, {"u": 316306590, "v": 2857394107, "oneway": false, "points": [[1405.36, 2793.76], [1397.75, 2798.36], [1395.91, 2799.36]], "length": 10.98}, {"u": 316334513, "v": 316349604, "oneway": false, "points": [[224.66, 278.41], [236.8, 266.25]], "length": 17.19}, {"u": 316334513, "v": 845773140, "oneway": true, "points": [[224.66, 278.41], [214.2, 268.9], [203.52, 259.5], [157.27, 218.1], [150.91, 212.36]], "length": 99.0}, {"u": 316334514, "v": 53423466, "oneway": true, "points": [[257.88, 286.19], [290.12, 315.25], [294.72, 319.4], [315.37, 338.0], [317.99, 340.36], [354.79, 373.53], [378.37, 394.79], [387.05, 402.61]], "length": 173.9}, {"u": 316342869, "v": 53589794, "oneway": false, "points": [[2188.95, 1720.25], [2178.65, 1703.26], [2162.01, 1675.79]], "length": 51.98}, {"u": 316342869, "v": 3786910293, "oneway": true, "points": [[2188.95, 1720.25], [2164.23, 1720.32], [2158.43, 1719.16], [2153.89, 1716.45], [2146.54, 1709.38], [2132.01, 1695.4], [2108.49, 1672.76], [2098.82, 1663.47], [2072.33, 1637.98], [2023.29, 1590.8], [2018.6, 1586.31]], "length": 223.64}, {"u": 316342869, "v": 53490476, "oneway": false, "points": [[2188.95, 1720.25], [2203.84, 1720.79], [2221.49, 1725.13], [2254.02, 1733.12], [2274.69, 1738.19]], "length": 87.86}, {"u": 316342869, "v": 53503712, "oneway": false, "points": [[2188.95, 1720.25], [2195.9, 1731.4], [2209.15, 1752.66], [2217.16, 1765.53]], "length": 53.35}, {"u": 316349604, "v": 316334513, "oneway": false, "points": [[236.8, 266.25], [224.66, 278.41]], "length": 17.19}, {"u": 316349604, "v": 316334514, "oneway": true, "points": [[236.8, 266.25], [257.88, 286.19]], "length": 29.01}, {"u": 316349604, "v": 1192211510, "oneway": false, "points": [[236.8, 266.25], [243.8, 258.7], [278.71, 223.36]], "length": 59.97}, {"u": 316357138, "v": 1179795984, "oneway": true, "points": [[-1606.89, -1371.39], [-1620.08, -1381.54]], "length": 16.65}, {"u": 316357138, "v": 1179796054, "oneway": true, "points": [[-1606.89, -1371.39], [-1606.62, -1363.77], [-1606.35, -1355.82], [-1605.03, -1325.83]], "length": 45.59}, {"u": 316357429, "v": 362597488, "oneway": true, "points": [[-1576.3, -1375.83], [-1548.0, -1348.76], [-1519.2, -1322.74], [-1486.96, -1293.61]], "length": 121.42}, {"u": 316357431, "v": 387186790, "oneway": true, "points": [[-1138.66, -976.94], [-1125.76, -966.2]], "length": 16.79}, {"u": 316357431, "v": 917880340, "oneway": true, "points": [[-1138.66, -976.94], [-1125.73, -982.39], [-1110.75, -988.82], [-1103.81, -992.25], [-1097.07, -996.6], [-1085.57, -1007.32], [-1043.73, -1051.78], [-1038.07, -1057.94]], "length": 131.23}, {"u": 316562664, "v": 53426577, "oneway": false, "points": [[-280.44, -2536.91], [-278.17, -2527.63], [-276.66, -2521.47], [-272.05, -2410.68]], "length": 126.79}, {"u": 316562664, "v": 6291669589, "oneway": false, "points": [[-280.44, -2536.91], [-273.7, -2540.09], [-238.46, -2553.57], [-191.67, -2572.01], [-159.75, -2584.27], [-146.62, -2589.45], [-96.82, -2609.3], [-93.19, -2610.74], [-53.22, -2626.67]], "length": 244.33}, {"u": 316562664, "v": 6404917413, "oneway": false, "points": [[-280.44, -2536.91], [-284.1, -2546.15], [-287.7, -2555.25], [-294.55, -2577.59], [-300.78, -2589.15], [-319.69, -2607.49], [-409.2, -2678.81], [-511.59, -2754.54], [-563.02, -2797.2], [-581.4, -2812.45], [-604.45, -2831.57]], "length": 445.01}, {"u": 316562664, "v": 2634682652, "oneway": false, "points": [[-280.44, -2536.91], [-287.44, -2534.14], [-363.77, -2503.76]], "length": 89.68}, {"u": 316562665, "v": 2634682653, "oneway": false, "points": [[-415.65, -2483.71], [-405.05, -2487.8]], "length": 11.36}, {"u": 316562665, "v": 2634682669, "oneway": true, "points": [[-415.65, -2483.71], [-444.94, -2470.47], [-458.2, -2465.45], [-472.82, -2459.92], [-506.05, -2450.41], [-518.0, -2446.93], [-527.45, -2444.18]], "length": 118.8}, {"u": 316562667, "v": 2634682669, "oneway": false, "points": [[-527.73, -2451.27], [-527.45, -2444.18]], "length": 7.09}, {"u": 316562667, "v": 316562665, "oneway": true, "points": [[-527.73, -2451.27], [-518.4, -2453.79], [-511.84, -2455.56], [-486.82, -2462.19], [-461.81, -2469.39], [-415.65, -2483.71]], "length": 116.7}, {"u": 349368476, "v": 1706427648, "oneway": false, "points": [[2057.44, 2409.02], [2063.06, 2401.78], [2065.54, 2399.36], [2110.88, 2354.87], [2111.66, 2354.06], [2122.22, 2343.01], [2127.58, 2337.4]], "length": 100.32}, {"u": 349368476, "v": 53498229, "oneway": false, "points": [[2057.44, 2409.02], [2050.78, 2402.49], [2001.06, 2353.63], [1941.96, 2295.44], [1919.33, 2274.14], [1913.14, 2268.21]], "length": 201.62}, {"u": 349368476, "v": 53626978, "oneway": false, "points": [[2057.44, 2409.02], [2063.72, 2415.1], [2180.75, 2528.64], [2186.98, 2534.65]], "length": 180.46}, {"u": 349378518, "v": 1699123250, "oneway": false, "points": [[890.13, 1048.3], [884.97, 1053.97], [829.74, 1114.77], [823.16, 1122.02]], "length": 99.6}, {"u": 349378518, "v": 53430018, "oneway": false, "points": [[890.13, 1048.3], [896.66, 1041.1], [930.57, 1003.77]], "length": 60.15}, {"u": 349378518, "v": 53453124, "oneway": false, "points": [[890.13, 1048.3], [896.73, 1054.21], [1032.31, 1177.45], [1038.22, 1182.83]], "length": 200.08}, {"u": 349378518, "v": 3270240367, "oneway": false, "points": [[890.13, 1048.3], [882.9, 1041.7], [846.68, 1008.72], [820.6, 984.82], [819.02, 983.36], [789.29, 956.12], [747.58, 918.45], [740.93, 912.46]], "length": 201.77}, {"u": 362566885, "v": 387186935, "oneway": true, "points": [[-321.24, -882.29], [-329.81, -888.41], [-336.55, -895.99], [-345.55, -907.62], [-353.41, -920.38], [-356.82, -926.34], [-371.93, -954.97], [-376.55, -961.73], [-380.87, -964.96], [-387.56, -967.74], [-395.5, -969.72], [-413.1, -975.72]], "length": 137.21}, {"u": 362566885, "v": 2938172406, "oneway": true, "points": [[-321.24, -882.29], [-330.52, -898.17], [-336.86, -909.01], [-342.51, -918.8], [-348.56, -929.36], [-354.7, -940.28], [-360.11, -950.27], [-370.39, -971.16], [-378.9, -988.33]], "length": 120.76}, {"u": 362597488, "v": 316357431, "oneway": true, "points": [[-1486.96, -1293.61], [-1372.1, -1189.85], [-1335.13, -1156.45], [-1326.57, -1148.73], [-1276.32, -1103.32], [-1238.36, -1069.02], [-1229.97, -1061.45], [-1195.73, -1030.52], [-1168.75, -1006.14], [-1145.98, -983.43], [-1138.66, -976.94]], "length": 470.77}, {"u": 366215894, "v": 1142903857, "oneway": false, "points": [[536.1, 537.01], [542.74, 530.84], [562.12, 509.18], [569.45, 500.21], [610.86, 454.58], [616.35, 448.53]], "length": 119.5}, {"u": 366215894, "v": 366215899, "oneway": true, "points": [[536.1, 537.01], [602.43, 599.74], [672.03, 665.29], [683.41, 675.68]], "length": 202.31}, {"u": 366215899, "v": 316303180, "oneway": false, "points": [[683.41, 675.68], [673.19, 686.92]], "length": 15.19}, {"u": 366215899, "v": 53407975, "oneway": false, "points": [[683.41, 675.68], [692.49, 665.69], [694.58, 663.39], [730.1, 624.32], [734.17, 619.83], [761.56, 589.7], [766.33, 584.47]], "length": 123.28}, {"u": 366215899, "v": 449917758, "oneway": true, "points": [[683.41, 675.68], [691.96, 683.48], [728.76, 717.02], [738.14, 725.55], [800.82, 782.71]], "length": 158.87}, {"u": 366215907, "v": 2948601585, "oneway": false, "points": [[833.08, 810.72], [841.21, 801.81], [843.35, 799.46], [866.32, 774.26], [868.07, 772.33], [876.73, 762.84], [878.9, 760.46], [886.92, 751.66], [910.59, 725.71], [916.76, 718.93]], "length": 124.21}, {"u": 366215907, "v": 366215913, "oneway": true, "points": [[833.08, 810.72], [847.53, 823.89], [875.33, 849.24], [907.23, 878.26], [921.23, 891.1], [935.92, 904.5], [946.34, 914.0], [972.84, 938.16], [982.26, 946.75]], "length": 201.88}, {"u": 366215913, "v": 2948594974, "oneway": false, "points": [[982.26, 946.75], [971.98, 958.19]], "length": 15.38}, {"u": 366215913, "v": 53408000, "oneway": false, "points": [[982.26, 946.75], [991.34, 936.49], [1025.54, 897.88], [1035.4, 886.74], [1044.63, 877.2], [1059.33, 860.92], [1065.77, 853.79]], "length": 124.97}, {"u": 366215913, "v": 366215925, "oneway": true, "points": [[982.26, 946.75], [989.97, 953.69], [1123.94, 1074.39], [1138.26, 1087.24], [1269.63, 1205.57], [1272.35, 1208.03], [1280.82, 1215.64]], "length": 401.8}, {"u": 366215925, "v": 53423508, "oneway": false, "points": [[1280.82, 1215.64], [1268.75, 1229.5]], "length": 18.38}, {"u": 366215925, "v": 53560766, "oneway": true, "points": [[1280.82, 1215.64], [1289.83, 1223.72], [1422.3, 1342.29], [1430.72, 1349.83]], "length": 201.19}, {"u": 366215925, "v": 53515077, "oneway": false, "points": [[1280.82, 1215.64], [1289.75, 1205.86], [1292.09, 1203.29], [1303.17, 1191.14], [1327.53, 1164.43], [1354.18, 1135.22], [1363.86, 1124.6], [1393.18, 1092.44], [1401.65, 1083.16], [1408.26, 1075.55], [1415.8, 1067.66], [1417.41, 1066.04], [1422.07, 1061.05], [1428.14, 1054.61], [1432.78, 1049.73], [1436.14, 1045.87], [1447.1, 1033.68], [1461.55, 1017.6], [1478.81, 998.39], [1490.72, 985.14], [1493.93, 981.63], [1500.44, 974.53]], "length": 326.15}, {"u": 366220625, "v": 53426175, "oneway": false, "points": [[131.1, -332.7], [118.53, -319.16], [104.79, -304.38], [103.41, -302.89], [100.93, -300.22], [95.25, -295.22]], "length": 51.9}, {"u": 366229504, "v": 366229507, "oneway": false, "points": [[-109.12, -2221.99], [-87.74, -2222.62]], "length": 21.39}, {"u": 366229504, "v": 53573861, "oneway": false, "points": [[-109.12, -2221.99], [-135.36, -2220.97], [-153.48, -2220.27], [-162.46, -2219.92]], "length": 53.38}, {"u": 366229504, "v": 2637766399, "oneway": true, "points": [[-109.12, -2221.99], [-27.9, -2345.16], [32.18, -2428.07], [43.77, -2444.29], [91.37, -2509.45], [108.31, -2536.21], [124.34, -2563.9], [135.78, -2586.76], [150.49, -2620.04], [160.65, -2649.06]], "length": 506.91}, {"u": 366229507, "v": 366229504, "oneway": false, "points": [[-87.74, -2222.62], [-109.12, -2221.99]], "length": 21.39}, {"u": 366229507, "v": 3937040992, "oneway": false, "points": [[-87.74, -2222.62], [-76.36, -2223.09], [-60.46, -2223.9]], "length": 27.31}, {"u": 366229507, "v": 387186883, "oneway": true, "points": [[-87.74, -2222.62], [-102.57, -2200.1], [-114.69, -2182.27], [-242.63, -1985.58], [-261.56, -1956.97], [-280.19, -1928.45], [-373.66, -1782.29], [-394.64, -1748.49], [-412.89, -1718.56], [-436.25, -1679.84], [-455.45, -1646.48], [-463.26, -1630.12], [-467.65, -1619.95], [-474.33, -1601.46], [-481.31, -1577.97], [-488.2, -1546.87], [-492.73, -1505.17], [-491.25, -1454.36], [-485.42, -1414.37], [-467.48, -1328.76], [-445.68, -1239.0], [-432.31, -1182.85], [-421.93, -1143.77], [-406.87, -1099.92], [-395.35, -1069.7], [-385.13, -1041.81], [-371.08, -1007.81], [-365.62, -996.54]], "length": 1357.7}, {"u": 387001668, "v": 53332734, "oneway": true, "points": [[-389.28, -140.41], [-387.66, -142.27], [-354.74, -178.37], [-323.74, -211.99], [-314.69, -222.37]], "length": 110.83}, {"u": 387096443, "v": 387001668, "oneway": true, "points": [[-388.34, -121.11], [-390.63, -127.57], [-390.79, -134.0], [-389.28, -140.41]], "length": 19.87}, {"u": 387096443, "v": 387001668, "oneway": true, "points": [[-388.34, -121.11], [-397.39, -123.84], [-402.98, -126.31], [-410.3, -129.9], [-403.68, -133.65], [-397.25, -137.11], [-389.28, -140.41]], "length": 47.25}, {"u": 387186790, "v": 452817475, "oneway": true, "points": [[-1125.76, -966.2], [-1140.68, -960.17]], "length": 16.09}, {"u": 387186790, "v": 1180120602, "oneway": true, "points": [[-1125.76, -966.2], [-1118.97, -959.4], [-1097.76, -940.61]], "length": 37.95}, {"u": 387186883, "v": 2938172406, "oneway": true, "points": [[-365.62, -996.54], [-378.9, -988.33]], "length": 15.62}, {"u": 387186883, "v": 1188388115, "oneway": true, "points": [[-365.62, -996.54], [-341.32, -952.85], [-333.22, -938.57], [-309.42, -895.5]], "length": 115.62}, {"u": 387186935, "v": 1185580621, "oneway": true, "points": [[-413.1, -975.72], [-426.64, -977.67], [-441.11, -980.44], [-461.83, -985.16], [-474.06, -988.2], [-484.55, -991.46], [-496.63, -995.97], [-508.64, -1001.16], [-521.45, -1007.38], [-530.63, -1012.22], [-540.7, -1018.39], [-550.84, -1025.22], [-560.64, -1032.45], [-567.53, -1038.11], [-574.03, -1043.66], [-581.09, -1050.34], [-587.81, -1056.85], [-595.9, -1065.66], [-603.82, -1075.05], [-611.38, -1084.81], [-616.01, -1091.3], [-621.12, -1098.49]], "length": 249.99}, {"u": 387187387, "v": 1185580621, "oneway": false, "points": [[-611.61, -1108.51], [-621.12, -1098.49]], "length": 13.81}, {"u": 387187387, "v": 4091376211, "oneway": true, "points": [[-611.61, -1108.51], [-606.4, -1101.31], [-599.8, -1092.9], [-592.42, -1084.08], [-584.66, -1075.91], [-572.25, -1063.38], [-552.9, -1045.87], [-542.61, -1038.68], [-532.93, -1032.36], [-522.26, -1025.86], [-513.43, -1021.26], [-493.22, -1011.83], [-471.39, -1002.93], [-453.38, -998.2], [-441.02, -997.65]], "length": 209.51}, {"u": 387187392, "v": 1191535148, "oneway": false, "points": [[-833.1, -1261.19], [-842.2, -1272.14]], "length": 14.24}, {"u": 387187392, "v": 13056348945, "oneway": true, "points": [[-833.1, -1261.19], [-837.34, -1257.83], [-841.09, -1254.85], [-848.48, -1246.75], [-884.92, -1205.43]], "length": 76.26}, {"u": 445963180, "v": 37923758, "oneway": false, "points": [[-1556.72, 72.17], [-1564.24, 72.48], [-1566.89, 72.55], [-1582.79, 73.61], [-1595.99, 74.23], [-1624.39, 75.66], [-1647.8, 76.76], [-1653.28, 77.11], [-1657.31, 77.61], [-1660.66, 78.95], [-1662.99, 80.38], [-1664.65, 82.12], [-1666.01, 85.58], [-1666.56, 89.98], [-1666.54, 95.31], [-1666.29, 105.11], [-1666.23, 112.18], [-1666.4, 119.43], [-1667.73, 124.98], [-1669.45, 128.85], [-1671.51, 130.81], [-1674.36, 132.24], [-1676.56, 132.57], [-1680.15, 131.7], [-1683.97, 129.17], [-1686.72, 125.47], [-1689.15, 121.16], [-1693.67, 112.78], [-1698.08, 104.62], [-1706.62, 93.2], [-1716.19, 81.9], [-1723.71, 74.7], [-1729.83, 69.75], [-1737.17, 66.52], [-1745.84, 62.41], [-1755.23, 58.25], [-1763.8, 53.76], [-1783.93, 43.46], [-1792.81, 40.33], [-1801.96, 38.94], [-1811.95, 38.93], [-1822.06, 39.38], [-1838.69, 40.85], [-1861.25, 44.14], [-1878.86, 46.88], [-1892.81, 48.29], [-1915.86, 48.38], [-1929.64, 49.24], [-1943.3, 51.01], [-1953.95, 53.43], [-1964.87, 56.81], [-1977.74, 60.92], [-1986.67, 64.8]], "length": 515.8}, {"u": 445963180, "v": 450716051, "oneway": false, "points": [[-1556.72, 72.17], [-1557.78, 40.34], [-1558.07, 28.77]], "length": 43.42}, {"u": 445963180, "v": 5446595705, "oneway": false, "points": [[-1556.72, 72.17], [-1556.08, 85.1], [-1555.12, 108.06], [-1554.92, 112.62], [-1554.81, 115.77], [-1554.19, 126.4], [-1554.07, 131.47], [-1556.25, 145.63]], "length": 73.68}, {"u": 446196405, "v": 446196406, "oneway": false, "points": [[1803.49, 2369.31], [1817.46, 2362.63]], "length": 15.49}, {"u": 446196405, "v": 53644706, "oneway": true, "points": [[1803.49, 2369.31], [1796.41, 2337.82], [1795.3, 2332.86], [1770.3, 2217.31], [1765.47, 2195.66], [1754.48, 2139.75]], "length": 234.74}, {"u": 446196406, "v": 446196405, "oneway": false, "points": [[1817.46, 2362.63], [1803.49, 2369.31]], "length": 15.49}, {"u": 446196406, "v": 53498229, "oneway": false, "points": [[1817.46, 2362.63], [1825.41, 2355.54], [1850.04, 2332.99], [1856.39, 2326.52], [1869.14, 2313.51], [1870.78, 2311.85], [1873.32, 2309.26], [1907.89, 2274.0], [1913.14, 2268.21]], "length": 134.48}, {"u": 446198895, "v": 13206778050, "oneway": true, "points": [[1621.62, 1987.47], [1610.84, 1977.64]], "length": 14.59}, {"u": 447178131, "v": 447178140, "oneway": true, "points": [[2605.13, 2338.51], [2625.08, 2334.25], [2630.16, 2333.16], [2636.23, 2332.77], [2643.44, 2333.49], [2653.85, 2337.22]], "length": 49.98}, {"u": 447178131, "v": 1706427646, "oneway": true, "points": [[2605.13, 2338.51], [2609.48, 2339.61], [2613.27, 2342.04], [2616.08, 2345.54], [2617.62, 2349.74]], "length": 17.95}, {"u": 447178140, "v": 2955373055, "oneway": false, "points": [[2653.85, 2337.22], [2659.9, 2339.08], [2665.81, 2341.38], [2673.21, 2345.26], [2678.52, 2348.6], [2682.81, 2352.0], [2685.89, 2354.84], [2694.94, 2363.66], [2757.34, 2424.49], [2760.25, 2427.33], [2761.08, 2428.17], [2761.83, 2428.92], [2784.1, 2451.38], [2803.84, 2468.05], [2815.42, 2478.54], [2823.44, 2487.18], [2826.26, 2491.25], [2826.93, 2492.21], [2829.62, 2499.66], [2831.34, 2506.18], [2832.56, 2518.16], [2832.83, 2521.48], [2834.31, 2540.37], [2834.88, 2548.05], [2837.15, 2578.15], [2837.32, 2581.32], [2837.88, 2591.95]], "length": 334.75}, {"u": 447178140, "v": 1706427646, "oneway": true, "points": [[2653.85, 2337.22], [2644.07, 2338.56], [2634.31, 2340.49], [2628.68, 2342.02], [2622.2, 2344.76], [2620.18, 2345.94], [2617.62, 2349.74]], "length": 39.61}, {"u": 449907112, "v": 53423466, "oneway": false, "points": [[374.19, 417.58], [387.05, 402.61]], "length": 19.74}, {"u": 449907112, "v": 2713311962, "oneway": false, "points": [[374.19, 417.58], [368.24, 424.11], [366.11, 426.44], [340.67, 454.35], [332.87, 462.89], [325.55, 470.92], [300.23, 498.69], [298.81, 500.25], [293.17, 506.43]], "length": 120.24}, {"u": 449907112, "v": 316334513, "oneway": true, "points": [[374.19, 417.58], [365.83, 409.94], [358.61, 403.34], [284.33, 334.06], [258.73, 310.19], [224.66, 278.41]], "length": 204.28}, {"u": 449917758, "v": 3270240364, "oneway": true, "points": [[800.82, 782.71], [813.58, 802.33], [817.96, 807.64], [820.92, 813.12], [823.03, 822.38]], "length": 46.01}, {"u": 449917758, "v": 366215907, "oneway": true, "points": [[800.82, 782.71], [808.6, 789.47], [811.84, 792.28], [817.77, 797.43], [833.08, 810.72]], "length": 42.73}, {"u": 449920083, "v": 366215907, "oneway": true, "points": [[856.14, 851.04], [841.06, 830.91], [837.26, 826.23], [834.87, 821.01], [833.08, 810.72]], "length": 47.36}, {"u": 449920083, "v": 3270240364, "oneway": true, "points": [[856.14, 851.04], [837.33, 834.76], [823.03, 822.38]], "length": 43.79}, {"u": 449934218, "v": 53423529, "oneway": false, "points": [[1522.76, 1534.76], [1528.94, 1530.29], [1534.52, 1526.25], [1544.37, 1516.97], [1558.47, 1503.66], [1566.36, 1496.22]], "length": 58.28}, {"u": 449952494, "v": 53423552, "oneway": false, "points": [[2052.13, 1926.54], [2038.77, 1940.06]], "length": 19.0}, {"u": 449952494, "v": 53407747, "oneway": false, "points": [[2052.13, 1926.54], [2058.08, 1920.44], [2115.11, 1861.93], [2119.67, 1857.27]], "length": 96.74}, {"u": 449952494, "v": 449952498, "oneway": true, "points": [[2052.13, 1926.54], [2062.07, 1936.17], [2146.97, 2018.37], [2158.29, 2029.33], [2288.94, 2155.85], [2296.65, 2163.31]], "length": 340.38}, {"u": 449952498, "v": 1706427672, "oneway": false, "points": [[2296.65, 2163.31], [2283.9, 2176.4]], "length": 18.27}, {"u": 449952498, "v": 53407767, "oneway": false, "points": [[2296.65, 2163.31], [2303.33, 2156.46], [2327.61, 2131.53], [2339.57, 2119.27]], "length": 61.49}, {"u": 449952498, "v": 449959902, "oneway": true, "points": [[2296.65, 2163.31], [2305.46, 2171.98], [2311.42, 2177.85], [2403.76, 2270.15]], "length": 151.28}, {"u": 449956571, "v": 53447046, "oneway": false, "points": [[2478.7, 2341.25], [2485.33, 2334.79], [2510.4, 2310.6], [2527.57, 2294.04], [2530.63, 2291.09], [2538.45, 2283.54]], "length": 83.06}, {"u": 449956571, "v": 449957352, "oneway": true, "points": [[2478.7, 2341.25], [2486.14, 2348.29], [2500.81, 2362.34], [2540.56, 2399.86], [2542.2, 2401.4], [2549.62, 2408.43]], "length": 97.69}, {"u": 449957352, "v": 53423565, "oneway": false, "points": [[2549.62, 2408.43], [2535.88, 2422.6]], "length": 19.74}, {"u": 449957352, "v": 1706427636, "oneway": false, "points": [[2549.62, 2408.43], [2556.24, 2402.0], [2574.59, 2384.16]], "length": 34.82}, {"u": 449957352, "v": 1706427633, "oneway": true, "points": [[2549.62, 2408.43], [2557.25, 2415.71], [2664.57, 2518.2], [2666.97, 2520.49], [2671.6, 2524.91], [2685.89, 2538.83], [2691.57, 2544.36], [2715.06, 2569.0], [2730.43, 2593.64], [2738.6, 2607.6], [2745.35, 2618.54]], "length": 288.65}, {"u": 449959902, "v": 1706427666, "oneway": true, "points": [[2403.76, 2270.15], [2405.08, 2280.96], [2411.52, 2288.29], [2416.6, 2294.11], [2417.33, 2294.94], [2417.63, 2296.08], [2417.52, 2297.44], [2413.31, 2303.71]], "length": 39.57}, {"u": 449959902, "v": 449956571, "oneway": true, "points": [[2403.76, 2270.15], [2432.35, 2297.28], [2435.64, 2300.4], [2472.77, 2335.62], [2478.7, 2341.25]], "length": 103.3}, {"u": 449967724, "v": 53423575, "oneway": true, "points": [[2751.7, 2629.98], [2737.19, 2640.91]], "length": 18.17}, {"u": 449967724, "v": 53599217, "oneway": true, "points": [[2751.7, 2629.98], [2760.72, 2644.54], [2776.28, 2670.26], [2789.57, 2692.04]], "length": 72.7}, {"u": 450505541, "v": 3031362525, "oneway": false, "points": [[-2610.57, 280.59], [-2568.15, 279.0], [-2545.04, 278.01], [-2534.82, 267.55]], "length": 80.22}, {"u": 450714559, "v": 2859245582, "oneway": true, "points": [[-1178.03, -277.6], [-1187.25, -277.14], [-1244.15, -274.3], [-1300.21, -271.43], [-1308.58, -271.13]], "length": 130.72}, {"u": 450714559, "v": 2859245574, "oneway": false, "points": [[-1178.03, -277.6], [-1178.97, -287.92], [-1179.17, -290.95], [-1181.07, -324.58], [-1181.97, -340.54], [-1182.19, -345.68], [-1182.31, -348.06], [-1183.16, -367.02], [-1183.31, -370.45], [-1184.81, -399.58], [-1184.74, -410.47]], "length": 133.06}, {"u": 450714559, "v": 1182091234, "oneway": false, "points": [[-1178.03, -277.6], [-1177.49, -265.25], [-1176.09, -233.44], [-1175.53, -220.7], [-1175.11, -211.11], [-1174.81, -204.37], [-1174.41, -195.37], [-1173.96, -183.83], [-1173.55, -174.39], [-1171.93, -138.79]], "length": 138.95}, {"u": 450714559, "v": 53642012, "oneway": true, "points": [[-1178.03, -277.6], [-1158.73, -265.81], [-1155.51, -262.96], [-1146.77, -255.09], [-1119.84, -230.82], [-1099.44, -212.44], [-1053.38, -170.92], [-1037.56, -156.66], [-1015.73, -136.99], [-1006.53, -128.71], [-989.47, -113.32], [-986.26, -110.52], [-983.69, -108.59], [-978.79, -105.86], [-973.76, -103.87], [-969.1, -102.17]], "length": 273.89}, {"u": 450714993, "v": 469603287, "oneway": false, "points": [[-1566.88, -259.08], [-1566.66, -255.73], [-1566.73, -246.13], [-1566.71, -241.07], [-1566.87, -218.15], [-1565.69, -154.49]], "length": 104.61}, {"u": 450714993, "v": 53616189, "oneway": true, "points": [[-1566.88, -259.08], [-1581.1, -258.42], [-1611.5, -256.92], [-1640.89, -255.53], [-1665.73, -254.31], [-1700.4, -252.66], [-1705.54, -252.41], [-1713.32, -252.05]], "length": 146.61}, {"u": 450714993, "v": 1179459686, "oneway": true, "points": [[-1566.88, -259.08], [-1570.51, -268.33], [-1572.2, -271.95], [-1574.28, -277.96], [-1576.1, -321.75], [-1577.38, -336.79], [-1579.92, -353.22], [-1586.72, -378.79], [-1589.57, -389.88]], "length": 133.75}, {"u": 450716051, "v": 2859245583, "oneway": false, "points": [[-1558.07, 28.77], [-1549.39, 28.35], [-1457.26, 23.93], [-1412.86, 21.8], [-1301.12, 16.8], [-1292.15, 15.51]], "length": 266.29}, {"u": 450716051, "v": 445963180, "oneway": false, "points": [[-1558.07, 28.77], [-1557.78, 40.34], [-1556.72, 72.17]], "length": 43.42}, {"u": 450716051, "v": 469603287, "oneway": false, "points": [[-1558.07, 28.77], [-1558.38, 20.63], [-1558.89, 8.05], [-1563.15, -71.63], [-1563.91, -94.37], [-1563.98, -98.33], [-1565.69, -154.49]], "length": 183.43}, {"u": 452816427, "v": 452816429, "oneway": false, "points": [[216.8, -2768.14], [198.76, -2771.22]], "length": 18.3}, {"u": 452816427, "v": 6401044369, "oneway": false, "points": [[216.8, -2768.14], [221.91, -2766.94], [229.51, -2765.16], [239.24, -2762.88], [246.52, -2759.11], [250.64, -2755.54], [254.66, -2749.33], [255.83, -2745.23], [257.0, -2740.03], [256.15, -2734.09], [249.25, -2705.27], [247.16, -2698.78], [243.45, -2689.5], [240.91, -2678.39]], "length": 117.53}, {"u": 452816427, "v": 3937040986, "oneway": true, "points": [[216.8, -2768.14], [213.86, -2757.54], [207.56, -2731.55], [191.68, -2677.38], [175.81, -2629.46], [161.21, -2593.55], [145.8, -2561.53], [127.48, -2528.7], [106.62, -2496.65], [57.47, -2432.53], [45.46, -2416.12], [1.76, -2359.12], [-43.16, -2292.91], [-71.3, -2249.1]], "length": 599.84}, {"u": 452816429, "v": 452816427, "oneway": false, "points": [[198.76, -2771.22], [216.8, -2768.14]], "length": 18.3}, {"u": 452816429, "v": 2637766387, "oneway": false, "points": [[198.76, -2771.22], [187.26, -2770.18], [177.81, -2769.33], [152.73, -2765.4], [135.11, -2757.56], [115.47, -2742.89]], "length": 90.22}, {"u": 452816429, "v": 2637766380, "oneway": true, "points": [[198.76, -2771.22], [204.0, -2788.7], [206.48, -2797.01], [215.61, -2830.57]], "length": 61.7}, {"u": 452817475, "v": 53421750, "oneway": true, "points": [[-1140.68, -960.17], [-1152.89, -969.9]], "length": 15.61}, {"u": 452817475, "v": 6275800735, "oneway": true, "points": [[-1140.68, -960.17], [-1151.48, -955.84], [-1222.58, -924.38]], "length": 89.38}, {"u": 452866506, "v": 3607816648, "oneway": true, "points": [[-2573.91, -197.66], [-2578.11, -199.42], [-2584.93, -202.33], [-2594.94, -207.01], [-2599.83, -208.43], [-2605.97, -208.94], [-2621.77, -208.54], [-2636.62, -208.15], [-2639.6, -208.07], [-2648.67, -207.9]], "length": 76.98}, {"u": 452866506, "v": 53461796, "oneway": true, "points": [[-2573.91, -197.66], [-2562.34, -205.61], [-2553.49, -209.23], [-2538.62, -213.78], [-2524.19, -217.61], [-2503.44, -222.23], [-2479.05, -226.28]], "length": 100.06}, {"u": 456681760, "v": 2384881654, "oneway": true, "points": [[1510.73, 1889.4], [1504.69, 1882.58]], "length": 9.11}, {"u": 456681760, "v": 2384881666, "oneway": true, "points": [[1510.73, 1889.4], [1510.68, 1900.53], [1511.21, 1921.03]], "length": 31.64}, {"u": 456681765, "v": 1142903104, "oneway": true, "points": [[1508.17, 1867.32], [1509.46, 1868.28], [1515.44, 1872.74], [1516.84, 1873.88], [1526.47, 1882.99]], "length": 24.12}, {"u": 456681765, "v": 2384881652, "oneway": true, "points": [[1508.17, 1867.32], [1508.59, 1869.89], [1510.16, 1879.36]], "length": 12.2}, {"u": 469603287, "v": 469603304, "oneway": false, "points": [[-1565.69, -154.49], [-1576.17, -153.93], [-1610.99, -152.26], [-1628.95, -154.09], [-1653.23, -151.59], [-1666.87, -151.38], [-1675.02, -151.57], [-1682.58, -152.53], [-1691.31, -154.28], [-1699.84, -157.22], [-1705.37, -159.98], [-1711.04, -164.02], [-1714.3, -166.65], [-1717.86, -170.15], [-1721.85, -174.16], [-1726.49, -177.68], [-1732.14, -180.26], [-1737.05, -181.56], [-1744.56, -182.54], [-1765.62, -182.01], [-1770.04, -180.85], [-1776.12, -179.03], [-1780.35, -177.59], [-1783.96, -176.6], [-1786.17, -176.16], [-1788.39, -175.89], [-1792.15, -175.8], [-1795.55, -176.16], [-1798.92, -177.06], [-1807.92, -181.18], [-1823.84, -184.85], [-1831.32, -186.27], [-1835.11, -186.67], [-1839.16, -186.62], [-1843.12, -186.3], [-1845.95, -185.72], [-1848.53, -184.83], [-1851.45, -183.74], [-1871.73, -171.08], [-1877.35, -167.22], [-1883.47, -162.7], [-1887.67, -159.27], [-1890.95, -155.88], [-1893.52, -152.0]], "length": 350.73}, {"u": 469603287, "v": 450714993, "oneway": false, "points": [[-1565.69, -154.49], [-1566.87, -218.15], [-1566.71, -241.07], [-1566.73, -246.13], [-1566.66, -255.73], [-1566.88, -259.08]], "length": 104.61}, {"u": 469603287, "v": 450716051, "oneway": false, "points": [[-1565.69, -154.49], [-1563.98, -98.33], [-1563.91, -94.37], [-1563.15, -71.63], [-1558.89, 8.05], [-1558.38, 20.63], [-1558.07, 28.77]], "length": 183.43}, {"u": 469603304, "v": 469603287, "oneway": false, "points": [[-1893.52, -152.0], [-1890.95, -155.88], [-1887.67, -159.27], [-1883.47, -162.7], [-1877.35, -167.22], [-1871.73, -171.08], [-1851.45, -183.74], [-1848.53, -184.83], [-1845.95, -185.72], [-1843.12, -186.3], [-1839.16, -186.62], [-1835.11, -186.67], [-1831.32, -186.27], [-1823.84, -184.85], [-1807.92, -181.18], [-1798.92, -177.06], [-1795.55, -176.16], [-1792.15, -175.8], [-1788.39, -175.89], [-1786.17, -176.16], [-1783.96, -176.6], [-1780.35, -177.59], [-1776.12, -179.03], [-1770.04, -180.85], [-1765.62, -182.01], [-1744.56, -182.54], [-1737.05, -181.56], [-1732.14, -180.26], [-1726.49, -177.68], [-1721.85, -174.16], [-1717.86, -170.15], [-1714.3, -166.65], [-1711.04, -164.02], [-1705.37, -159.98], [-1699.84, -157.22], [-1691.31, -154.28], [-1682.58, -152.53], [-1675.02, -151.57], [-1666.87, -151.38], [-1653.23, -151.59], [-1628.95, -154.09], [-1610.99, -152.26], [-1576.17, -153.93], [-1565.69, -154.49]], "length": 350.73}, {"u": 482811372, "v": 2859304393, "oneway": false, "points": [[-2188.71, -564.94], [-2205.51, -564.32], [-2210.41, -564.13], [-2227.75, -563.49], [-2238.73, -563.18], [-2248.73, -562.87], [-2250.86, -562.81], [-2259.49, -562.31]], "length": 70.83}, {"u": 496686159, "v": 53290647, "oneway": false, "points": [[1485.9, 2471.6], [1476.77, 2472.57], [1468.07, 2473.5], [1435.69, 2482.53], [1413.23, 2488.79], [1409.1, 2489.86], [1394.55, 2493.65], [1351.84, 2507.08], [1349.8, 2506.91], [1347.96, 2505.08], [1344.98, 2500.6], [1341.7, 2493.92], [1337.72, 2486.43]], "length": 164.88}, {"u": 496686159, "v": 53499266, "oneway": false, "points": [[1485.9, 2471.6], [1486.84, 2494.04], [1487.73, 2515.9], [1487.83, 2518.19], [1489.04, 2547.99], [1490.34, 2580.11], [1491.56, 2609.88], [1491.66, 2612.41], [1492.67, 2637.26], [1493.24, 2648.61], [1495.17, 2687.38], [1496.47, 2714.3], [1496.77, 2720.39]], "length": 249.03}, {"u": 496686159, "v": 2712062758, "oneway": false, "points": [[1485.9, 2471.6], [1483.8, 2440.86], [1482.45, 2421.11], [1482.3, 2416.96]], "length": 54.76}, {"u": 496686170, "v": 2712062761, "oneway": false, "points": [[1487.75, 2332.11], [1492.85, 2308.71]], "length": 23.96}, {"u": 496686170, "v": 2712062759, "oneway": false, "points": [[1487.75, 2332.11], [1480.65, 2331.75], [1477.15, 2331.82], [1474.72, 2333.04], [1473.55, 2336.38], [1471.45, 2365.3], [1470.63, 2392.24], [1471.74, 2396.75], [1474.64, 2398.13], [1482.07, 2398.27]], "length": 88.1}, {"u": 496686170, "v": 2712062759, "oneway": false, "points": [[1487.75, 2332.11], [1484.14, 2354.8], [1482.12, 2382.6], [1482.07, 2398.27]], "length": 66.52}, {"u": 496686196, "v": 2712062758, "oneway": false, "points": [[1223.01, 2449.92], [1231.0, 2444.79], [1236.61, 2441.2], [1246.49, 2436.25], [1285.45, 2417.04], [1290.76, 2414.89], [1296.34, 2413.28], [1301.81, 2414.02], [1305.21, 2416.6], [1307.95, 2420.72], [1318.32, 2440.91], [1327.88, 2458.96], [1330.75, 2463.66], [1333.43, 2465.73], [1336.46, 2466.79], [1339.53, 2466.57], [1363.25, 2455.96], [1378.28, 2450.2], [1404.09, 2442.26], [1458.27, 2423.28], [1468.89, 2419.28], [1473.58, 2418.14], [1478.36, 2417.16], [1482.3, 2416.96]], "length": 306.71}, {"u": 496686196, "v": 53578383, "oneway": false, "points": [[1223.01, 2449.92], [1231.36, 2465.68], [1250.2, 2501.21], [1252.44, 2505.43], [1285.27, 2568.43], [1300.72, 2598.09], [1314.41, 2624.36], [1351.29, 2695.15]], "length": 276.76}, {"u": 496686196, "v": 496686202, "oneway": false, "points": [[1223.01, 2449.92], [1212.34, 2429.66], [1194.25, 2394.94]], "length": 62.05}, {"u": 496686202, "v": 2713391900, "oneway": false, "points": [[1194.25, 2394.94], [1175.96, 2361.67]], "length": 37.97}, {"u": 496686202, "v": 53510799, "oneway": false, "points": [[1194.25, 2394.94], [1186.62, 2400.91], [1168.71, 2413.44], [1152.02, 2430.81], [1145.91, 2439.54]], "length": 66.29}, {"u": 496686202, "v": 496686196, "oneway": false, "points": [[1194.25, 2394.94], [1212.34, 2429.66], [1223.01, 2449.92]], "length": 62.05}, {"u": 845773140, "v": 845773190, "oneway": true, "points": [[150.91, 212.36], [143.57, 206.02], [97.18, 164.61], [90.47, 158.67]], "length": 80.84}, {"u": 845773140, "v": 5730487260, "oneway": true, "points": [[150.91, 212.36], [143.51, 220.11], [129.14, 235.13], [75.79, 294.82], [74.77, 295.96], [71.13, 300.51]], "length": 118.91}, {"u": 845773190, "v": 845773213, "oneway": true, "points": [[90.47, 158.67], [104.07, 144.42]], "length": 19.7}, {"u": 845773190, "v": 53414098, "oneway": true, "points": [[90.47, 158.67], [83.83, 152.51], [49.54, 120.58], [47.35, 118.54], [23.1, 96.18], [16.36, 89.92]], "length": 101.09}, {"u": 845773212, "v": 53414098, "oneway": false, "points": [[28.78, 76.81], [16.36, 89.92]], "length": 18.07}, {"u": 845773212, "v": 845773213, "oneway": true, "points": [[28.78, 76.81], [35.16, 82.67], [97.03, 138.1], [104.07, 144.42]], "length": 101.19}, {"u": 845773212, "v": 53407922, "oneway": false, "points": [[28.78, 76.81], [34.99, 70.24], [36.65, 68.45], [53.95, 48.93], [57.21, 45.37], [69.53, 31.94], [103.71, -6.41], [109.42, -12.7]], "length": 120.47}, {"u": 845773213, "v": 53407926, "oneway": true, "points": [[104.07, 144.42], [109.33, 138.04], [123.29, 122.61], [137.21, 107.29], [153.51, 89.34], [176.02, 64.55], [178.35, 61.89], [185.07, 54.59]], "length": 120.96}, {"u": 845773213, "v": 845773215, "oneway": true, "points": [[104.07, 144.42], [110.52, 150.46], [127.81, 166.67], [155.74, 192.86], [162.28, 199.23]], "length": 79.95}, {"u": 845773215, "v": 845773140, "oneway": true, "points": [[162.28, 199.23], [155.15, 207.82], [150.91, 212.36]], "length": 17.38}, {"u": 845773215, "v": 316349604, "oneway": true, "points": [[162.28, 199.23], [169.35, 205.27], [198.97, 234.22], [225.23, 256.35], [236.8, 266.25]], "length": 100.29}, {"u": 847061279, "v": 53288575, "oneway": false, "points": [[-179.79, -3033.6], [-181.66, -3091.01]], "length": 57.44}, {"u": 847061279, "v": 53288573, "oneway": false, "points": [[-179.79, -3033.6], [-214.91, -3054.2]], "length": 40.72}, {"u": 847061279, "v": 6291669589, "oneway": false, "points": [[-179.79, -3033.6], [-171.88, -3028.84], [-135.89, -2988.16], [-111.6, -2948.12], [-90.51, -2906.93], [-75.91, -2864.81], [-73.16, -2843.68], [-72.25, -2820.26], [-78.47, -2771.12], [-83.5, -2731.47], [-81.84, -2713.06], [-76.82, -2688.42], [-71.46, -2674.79], [-65.32, -2656.85], [-63.08, -2651.53], [-59.38, -2642.81], [-53.22, -2626.67]], "length": 445.24}, {"u": 917593109, "v": 13324853247, "oneway": false, "points": [[-474.45, -360.47], [-467.96, -367.54]], "length": 9.6}, {"u": 917593109, "v": 4173796882, "oneway": true, "points": [[-474.45, -360.47], [-480.18, -365.74], [-490.11, -374.87], [-490.84, -376.33], [-491.31, -377.96], [-491.44, -379.68], [-491.34, -381.32]], "length": 27.97}, {"u": 917593109, "v": 53591793, "oneway": false, "points": [[-474.45, -360.47], [-482.65, -348.91], [-494.85, -335.38], [-505.76, -323.29], [-518.04, -309.67], [-524.43, -302.59], [-529.91, -296.5], [-547.4, -277.12], [-551.91, -272.1], [-558.47, -265.86]], "length": 126.66}, {"u": 917593526, "v": 53604259, "oneway": true, "points": [[-618.78, -499.57], [-631.89, -484.96], [-679.51, -433.35], [-701.91, -408.56], [-708.33, -401.54]], "length": 132.77}, {"u": 917593526, "v": 4173796882, "oneway": false, "points": [[-618.78, -499.57], [-611.46, -492.91], [-598.93, -481.5], [-594.16, -477.16], [-578.79, -463.16], [-577.99, -462.43], [-557.03, -442.28], [-532.48, -419.5], [-530.48, -417.74], [-526.16, -413.91], [-508.09, -397.66], [-492.29, -382.22], [-491.34, -381.32]], "length": 173.87}, {"u": 917593526, "v": 53615260, "oneway": false, "points": [[-618.78, -499.57], [-625.15, -505.37], [-647.98, -526.16], [-662.42, -539.32], [-663.89, -540.64], [-677.64, -553.17], [-693.04, -567.2], [-707.81, -580.64], [-708.66, -581.41], [-722.41, -593.93], [-735.83, -606.15], [-744.62, -614.14], [-745.19, -614.66], [-761.32, -629.35], [-767.5, -634.98]], "length": 201.13}, {"u": 917880340, "v": 13056348949, "oneway": false, "points": [[-1038.07, -1057.94], [-1028.11, -1049.17]], "length": 13.28}, {"u": 917880340, "v": 12911858844, "oneway": false, "points": [[-1038.07, -1057.94], [-1044.82, -1064.32], [-1047.06, -1066.27], [-1064.52, -1081.56], [-1074.49, -1090.88], [-1082.47, -1098.15], [-1119.91, -1132.32], [-1127.58, -1139.65], [-1138.22, -1148.37], [-1155.56, -1164.8], [-1157.54, -1167.23], [-1158.67, -1169.45], [-1159.14, -1171.73], [-1158.96, -1174.89], [-1156.72, -1178.09], [-1124.3, -1203.85], [-1098.93, -1224.2]], "length": 247.81}, {"u": 917880340, "v": 7189398161, "oneway": true, "points": [[-1038.07, -1057.94], [-1032.04, -1065.46], [-998.75, -1102.45], [-918.74, -1189.2]], "length": 177.42}, {"u": 1142902939, "v": 3786906811, "oneway": true, "points": [[2520.51, 1758.31], [2526.9, 1762.82]], "length": 7.82}, {"u": 1142902939, "v": 53498437, "oneway": true, "points": [[2520.51, 1758.31], [2524.33, 1750.53], [2527.73, 1740.36], [2528.88, 1734.89], [2529.76, 1728.36], [2529.85, 1715.82]], "length": 44.12}, {"u": 1142903012, "v": 1142903904, "oneway": false, "points": [[1983.26, 1388.13], [1989.78, 1382.86]], "length": 8.39}, {"u": 1142903012, "v": 53539549, "oneway": false, "points": [[1983.26, 1388.13], [1979.63, 1391.51], [1959.91, 1409.4], [1935.8, 1435.24], [1910.1, 1462.79], [1883.68, 1490.9]], "length": 143.17}, {"u": 1142903012, "v": 53539556, "oneway": true, "points": [[1983.26, 1388.13], [1980.22, 1382.69], [1959.67, 1344.99]], "length": 49.16}, {"u": 1142903104, "v": 13202666793, "oneway": true, "points": [[1526.47, 1882.99], [1530.85, 1886.27], [1551.82, 1904.18], [1554.06, 1906.06], [1557.41, 1909.1], [1580.02, 1929.52], [1592.57, 1939.75], [1617.35, 1959.26], [1622.77, 1963.97]], "length": 125.88}, {"u": 1142903570, "v": 2384881666, "oneway": true, "points": [[1528.46, 1905.21], [1522.08, 1903.6], [1518.01, 1903.41], [1515.66, 1904.9], [1512.23, 1909.04], [1511.21, 1921.03]], "length": 30.85}, {"u": 1142903570, "v": 456681760, "oneway": true, "points": [[1528.46, 1905.21], [1521.66, 1899.2], [1516.6, 1894.85], [1513.54, 1892.05], [1510.73, 1889.4]], "length": 23.76}, {"u": 1142903857, "v": 53432331, "oneway": false, "points": [[616.35, 448.53], [623.67, 440.12], [683.12, 373.57], [692.74, 363.3], [738.33, 314.25], [741.76, 310.33], [749.91, 301.18], [775.22, 271.57], [783.29, 262.98], [811.07, 233.34], [813.5, 230.8], [820.62, 223.16]], "length": 304.2}, {"u": 1142903857, "v": 366215894, "oneway": false, "points": [[616.35, 448.53], [610.86, 454.58], [569.45, 500.21], [562.12, 509.18], [542.74, 530.84], [536.1, 537.01]], "length": 119.5}, {"u": 1142903857, "v": 53407975, "oneway": false, "points": [[616.35, 448.53], [623.4, 454.91], [675.41, 502.05], [678.28, 504.59], [692.43, 517.89], [721.02, 543.39], [732.18, 553.51], [759.38, 578.16], [766.33, 584.47]], "length": 202.41}, {"u": 1142903857, "v": 2713292536, "oneway": false, "points": [[616.35, 448.53], [609.7, 442.14], [544.52, 379.31], [475.13, 318.49], [468.6, 313.24]], "length": 200.41}, {"u": 1142903904, "v": 1142903012, "oneway": false, "points": [[1989.78, 1382.86], [1983.26, 1388.13]], "length": 8.39}, {"u": 1142903904, "v": 53649099, "oneway": true, "points": [[1989.78, 1382.86], [2010.29, 1401.93], [2017.25, 1408.84], [2024.44, 1415.26], [2033.91, 1422.8], [2044.1, 1430.56], [2050.52, 1434.99], [2065.89, 1445.56]], "length": 98.82}, {"u": 1142904042, "v": 2948601586, "oneway": false, "points": [[1852.96, 1297.36], [1858.61, 1297.81], [1864.17, 1296.82], [1876.9, 1293.0], [1881.28, 1291.26], [1903.55, 1282.78], [1905.37, 1281.44], [1907.19, 1280.1], [1915.29, 1273.87]], "length": 67.89}, {"u": 1142904218, "v": 53616146, "oneway": false, "points": [[535.72, 241.33], [528.44, 234.41], [525.94, 232.05], [470.18, 179.46], [452.19, 163.61], [439.6, 151.93], [416.24, 130.24], [395.09, 110.6], [392.6, 108.29], [386.48, 102.93]], "length": 203.56}, {"u": 1142904218, "v": 1192150405, "oneway": false, "points": [[535.72, 241.33], [556.31, 218.1], [577.06, 194.68], [583.7, 186.94], [593.66, 175.03], [600.01, 167.49], [605.84, 158.58], [607.11, 157.07], [635.74, 125.75], [657.36, 102.5], [663.97, 97.22]], "length": 193.18}, {"u": 1142904218, "v": 2713292536, "oneway": false, "points": [[535.72, 241.33], [477.6, 304.11], [476.33, 305.63], [468.6, 313.24]], "length": 98.38}, {"u": 1153239288, "v": 53612042, "oneway": false, "points": [[-1873.7, -2075.39], [-1865.93, -2084.41], [-1847.74, -2105.52], [-1802.72, -2155.82], [-1773.96, -2192.99], [-1759.54, -2213.19], [-1734.73, -2254.69], [-1715.74, -2292.88], [-1711.08, -2302.72]], "length": 280.98}, {"u": 1153239288, "v": 270405510, "oneway": false, "points": [[-1873.7, -2075.39], [-1878.97, -2069.38], [-1880.63, -2067.34], [-1885.63, -2059.86], [-1891.73, -2050.79], [-1895.62, -2032.79], [-1896.29, -2025.43]], "length": 56.35}, {"u": 1153239288, "v": 53447620, "oneway": false, "points": [[-1873.7, -2075.39], [-1866.53, -2071.95], [-1862.91, -2070.22], [-1777.01, -2023.52], [-1770.22, -2019.82]], "length": 117.47}, {"u": 1153239288, "v": 53680486, "oneway": false, "points": [[-1873.7, -2075.39], [-1883.79, -2078.69], [-1892.95, -2083.83], [-1900.45, -2089.99], [-1902.29, -2092.08], [-1914.45, -2107.51], [-1918.15, -2112.46], [-1927.96, -2125.57], [-1940.02, -2137.44], [-1955.47, -2147.44], [-1977.16, -2153.6], [-2083.43, -2144.62], [-2092.16, -2143.88], [-2120.43, -2141.49], [-2184.28, -2136.99], [-2198.28, -2136.37], [-2207.96, -2135.42], [-2230.87, -2135.76], [-2254.11, -2141.77], [-2271.94, -2152.37], [-2284.52, -2167.79], [-2309.79, -2218.75], [-2326.94, -2248.38], [-2340.15, -2274.23], [-2347.52, -2300.91], [-2349.93, -2325.07], [-2349.0, -2352.44], [-2340.28, -2465.84], [-2339.08, -2503.56], [-2341.2, -2526.39], [-2348.89, -2552.85], [-2360.84, -2580.29], [-2398.36, -2640.57], [-2417.46, -2672.58], [-2432.16, -2696.28], [-2446.27, -2722.22], [-2455.88, -2741.84], [-2471.4, -2782.51], [-2482.05, -2808.67], [-2492.34, -2827.17], [-2503.03, -2840.46], [-2513.19, -2849.56], [-2522.87, -2854.89], [-2534.12, -2857.51], [-2560.55, -2858.31], [-2587.51, -2857.31], [-2657.08, -2853.09], [-2725.89, -2847.89], [-2791.81, -2843.99], [-2824.13, -2842.72], [-2853.0, -2843.12], [-2872.86, -2846.46], [-2890.32, -2851.29]], "length": 1575.57}, {"u": 1157073442, "v": 1424945190, "oneway": false, "points": [[-251.92, -738.71], [-251.46, -729.07], [-250.93, -717.61], [-250.61, -710.82], [-249.15, -679.64], [-248.98, -675.85], [-248.62, -668.18], [-246.92, -631.76], [-246.73, -627.85]], "length": 110.98}, {"u": 1160692039, "v": 1423974459, "oneway": true, "points": [[-385.51, 26.53], [-379.9, 20.4], [-351.56, -10.61], [-348.5, -13.95], [-345.72, -16.99], [-338.38, -25.02], [-334.8, -27.78], [-330.0, -29.84], [-322.51, -31.43]], "length": 87.25}, {"u": 1160692039, "v": 1160692043, "oneway": true, "points": [[-385.51, 26.53], [-393.78, 19.22], [-405.56, 8.46], [-470.16, -50.58], [-476.32, -56.21]], "length": 122.85}, {"u": 1160692043, "v": 53720172, "oneway": false, "points": [[-476.32, -56.21], [-482.98, -48.89], [-503.0, -26.91], [-517.48, -11.02], [-538.87, 12.47], [-544.44, 18.59]], "length": 101.17}, {"u": 1160692043, "v": 53604257, "oneway": true, "points": [[-476.32, -56.21], [-483.28, -62.83], [-508.27, -86.33], [-520.43, -97.33], [-529.82, -105.82], [-532.08, -108.07], [-533.91, -110.25], [-535.51, -112.58], [-536.99, -115.4], [-538.32, -118.51], [-539.18, -124.08], [-539.21, -127.11], [-538.77, -131.78], [-537.14, -136.05], [-535.45, -139.34], [-533.29, -142.71], [-530.18, -146.95], [-524.43, -153.45], [-489.03, -191.21], [-482.83, -197.6]], "length": 188.63}, {"u": 1160692043, "v": 12849307402, "oneway": false, "points": [[-476.32, -56.21], [-469.04, -60.5], [-448.56, -83.42], [-444.64, -90.15]], "length": 46.98}, {"u": 1178694147, "v": 53590707, "oneway": false, "points": [[-2428.47, -1319.08], [-2428.34, -1314.35], [-2428.0, -1301.34], [-2426.27, -1252.14], [-2426.14, -1248.46], [-2425.87, -1240.98]], "length": 78.15}, {"u": 1178694147, "v": 2637157420, "oneway": true, "points": [[-2428.47, -1319.08], [-2437.04, -1318.44], [-2448.34, -1319.69], [-2455.13, -1321.49], [-2463.88, -1324.58], [-2471.65, -1328.14], [-2477.31, -1332.42], [-2480.86, -1336.63], [-2485.98, -1344.73], [-2487.69, -1348.28], [-2488.67, -1350.32], [-2490.53, -1355.6], [-2491.41, -1360.58]], "length": 83.86}, {"u": 1179459672, "v": 1179459703, "oneway": true, "points": [[-1603.08, -761.37], [-1616.83, -760.69]], "length": 13.77}, {"u": 1179459672, "v": 1179459754, "oneway": true, "points": [[-1603.08, -761.37], [-1602.74, -754.96], [-1599.56, -697.58]], "length": 63.89}, {"u": 1179459686, "v": 1179459693, "oneway": true, "points": [[-1589.57, -389.88], [-1575.51, -390.3]], "length": 14.07}, {"u": 1179459686, "v": 1179459701, "oneway": true, "points": [[-1589.57, -389.88], [-1592.14, -400.48], [-1595.06, -418.98], [-1596.01, -426.99], [-1596.71, -435.0], [-1597.48, -453.13], [-1598.1, -472.25], [-1598.16, -473.75], [-1599.7, -506.3], [-1599.98, -515.28]], "length": 126.09}, {"u": 1179459693, "v": 450714993, "oneway": true, "points": [[-1575.51, -390.3], [-1573.28, -379.68], [-1570.1, -366.24], [-1566.06, -345.84], [-1564.1, -326.77], [-1563.26, -308.91], [-1561.81, -278.06], [-1562.74, -272.51], [-1563.81, -268.68], [-1566.88, -259.08]], "length": 133.07}, {"u": 1179459693, "v": 53582205, "oneway": true, "points": [[-1575.51, -390.3], [-1566.96, -390.72], [-1499.36, -394.05], [-1455.9, -396.21], [-1446.94, -396.64], [-1438.91, -397.04], [-1400.4, -398.94], [-1378.95, -400.01], [-1326.39, -402.6], [-1315.42, -403.15]], "length": 260.41}, {"u": 1179459694, "v": 1179459737, "oneway": false, "points": [[-1601.53, -1261.49], [-1616.3, -1261.22]], "length": 14.78}, {"u": 1179459694, "v": 3306923767, "oneway": true, "points": [[-1601.53, -1261.49], [-1601.38, -1248.31], [-1601.32, -1241.4], [-1599.02, -1197.16], [-1596.56, -1136.06], [-1598.43, -1105.66], [-1599.23, -1076.8], [-1601.0, -1040.25], [-1601.13, -1030.79]], "length": 230.92}, {"u": 1179459701, "v": 1179459724, "oneway": false, "points": [[-1599.98, -515.28], [-1586.24, -516.55]], "length": 13.8}, {"u": 1179459701, "v": 53616182, "oneway": false, "points": [[-1599.98, -515.28], [-1609.49, -514.81], [-1612.38, -514.67], [-1655.57, -512.54], [-1695.67, -510.57], [-1717.94, -509.48], [-1726.56, -509.05]], "length": 126.73}, {"u": 1179459701, "v": 1179459707, "oneway": true, "points": [[-1599.98, -515.28], [-1600.67, -525.38], [-1607.75, -629.32], [-1608.59, -639.65], [-1608.81, -642.36], [-1613.41, -688.19], [-1613.96, -696.96]], "length": 182.24}, {"u": 1179459703, "v": 1179459709, "oneway": true, "points": [[-1616.83, -760.69], [-1619.04, -818.76]], "length": 58.11}, {"u": 1179459703, "v": 53545466, "oneway": true, "points": [[-1616.83, -760.69], [-1626.75, -760.35], [-1703.69, -757.6], [-1722.52, -756.53], [-1724.3, -756.43], [-1733.1, -755.89]], "length": 116.37}, {"u": 1179459707, "v": 1179459754, "oneway": false, "points": [[-1613.96, -696.96], [-1599.56, -697.58]], "length": 14.41}, {"u": 1179459707, "v": 53616173, "oneway": false, "points": [[-1613.96, -696.96], [-1623.86, -696.55], [-1688.25, -693.8], [-1691.21, -693.67], [-1731.02, -691.98]], "length": 117.17}, {"u": 1179459707, "v": 1179459703, "oneway": true, "points": [[-1613.96, -696.96], [-1616.58, -755.85], [-1616.83, -760.69]], "length": 63.79}, {"u": 1179459709, "v": 1179459773, "oneway": true, "points": [[-1619.04, -818.76], [-1621.44, -871.36], [-1621.93, -881.43]], "length": 62.74}, {"u": 1179459724, "v": 1179459701, "oneway": false, "points": [[-1586.24, -516.55], [-1599.98, -515.28]], "length": 13.8}, {"u": 1179459724, "v": 1179459693, "oneway": true, "points": [[-1586.24, -516.55], [-1585.57, -506.67], [-1583.98, -483.11], [-1579.41, -414.86], [-1577.39, -401.25], [-1575.51, -390.3]], "length": 126.79}, {"u": 1179459724, "v": 53582203, "oneway": false, "points": [[-1586.24, -516.55], [-1574.91, -517.23], [-1574.27, -517.26], [-1520.05, -519.95], [-1461.08, -522.86], [-1453.23, -523.23], [-1443.51, -523.73], [-1333.91, -529.31], [-1323.42, -529.84]], "length": 263.16}, {"u": 1179459735, "v": 8868957845, "oneway": true, "points": [[-1550.44, -1030.67], [-1525.43, -1033.62], [-1517.84, -1034.93], [-1501.5, -1037.78], [-1490.31, -1039.5], [-1466.15, -1040.79], [-1460.42, -1040.61], [-1406.04, -1039.97], [-1382.44, -1040.33], [-1373.72, -1040.32]], "length": 177.43}, {"u": 1179459735, "v": 3306923767, "oneway": false, "points": [[-1550.44, -1030.67], [-1591.91, -1030.51], [-1601.13, -1030.79]], "length": 50.7}, {"u": 1179459737, "v": 1179459694, "oneway": false, "points": [[-1616.3, -1261.22], [-1601.53, -1261.49]], "length": 14.78}, {"u": 1179459737, "v": 2573847790, "oneway": false, "points": [[-1616.3, -1261.22], [-1626.09, -1261.07], [-1629.55, -1260.97], [-1736.76, -1257.96], [-1746.84, -1257.69]], "length": 130.58}, {"u": 1179459737, "v": 1179795984, "oneway": true, "points": [[-1616.3, -1261.22], [-1617.44, -1321.73], [-1617.91, -1332.35], [-1618.5, -1345.78], [-1618.77, -1351.84], [-1619.24, -1362.33], [-1619.54, -1369.36], [-1620.08, -1381.54]], "length": 120.39}, {"u": 1179459754, "v": 1179459707, "oneway": false, "points": [[-1599.56, -697.58], [-1613.96, -696.96]], "length": 14.41}, {"u": 1179459754, "v": 1179459724, "oneway": true, "points": [[-1599.56, -697.58], [-1599.09, -688.9], [-1595.62, -648.87], [-1595.35, -646.3], [-1594.43, -635.76], [-1591.04, -601.54], [-1588.33, -553.42], [-1586.78, -526.06], [-1586.24, -516.55]], "length": 181.54}, {"u": 1179459768, "v": 1179459737, "oneway": true, "points": [[-1616.03, -1098.73], [-1615.87, -1107.1], [-1614.9, -1155.4], [-1614.6, -1170.89], [-1615.38, -1217.45], [-1615.86, -1245.34], [-1615.95, -1247.69], [-1616.3, -1261.22]], "length": 162.52}, {"u": 1179459773, "v": 3306923798, "oneway": true, "points": [[-1621.93, -881.43], [-1622.16, -894.94], [-1621.75, -948.39], [-1620.88, -981.68]], "length": 100.27}, {"u": 1179459773, "v": 2859302267, "oneway": false, "points": [[-1621.93, -881.43], [-1614.38, -881.8], [-1605.99, -882.2]], "length": 15.96}, {"u": 1179459773, "v": 53616166, "oneway": false, "points": [[-1621.93, -881.43], [-1633.9, -880.89], [-1695.21, -878.11], [-1727.89, -876.64], [-1736.11, -876.25]], "length": 114.29}, {"u": 1179795897, "v": 53511571, "oneway": false, "points": [[-1552.44, -1381.34], [-1544.68, -1381.51], [-1535.86, -1382.68], [-1531.57, -1385.41], [-1529.55, -1391.14], [-1528.45, -1398.57], [-1528.99, -1430.84], [-1529.74, -1505.17]], "length": 141.94}, {"u": 1179795931, "v": 1179796056, "oneway": false, "points": [[-1611.39, -1625.34], [-1626.61, -1625.14]], "length": 15.22}, {"u": 1179795931, "v": 1179796106, "oneway": true, "points": [[-1611.39, -1625.34], [-1611.36, -1614.86], [-1610.91, -1585.61], [-1609.85, -1542.27], [-1609.19, -1515.31], [-1608.9, -1503.3]], "length": 122.06}, {"u": 1179795931, "v": 2634693278, "oneway": false, "points": [[-1611.39, -1625.34], [-1603.19, -1625.55], [-1599.9, -1625.63], [-1594.79, -1625.7], [-1589.9, -1625.79], [-1540.41, -1626.6], [-1533.1, -1626.72]], "length": 78.3}, {"u": 1179795960, "v": 1710317933, "oneway": false, "points": [[-1614.41, -1745.48], [-1628.33, -1745.2]], "length": 13.92}, {"u": 1179795960, "v": 1179795931, "oneway": true, "points": [[-1614.41, -1745.48], [-1613.23, -1737.28], [-1612.79, -1716.95], [-1612.02, -1669.22], [-1611.54, -1636.52], [-1611.39, -1625.34]], "length": 120.24}, {"u": 1179795960, "v": 12911858894, "oneway": false, "points": [[-1614.41, -1745.48], [-1605.84, -1745.64], [-1578.18, -1746.17], [-1574.57, -1746.24], [-1542.17, -1746.87], [-1536.18, -1747.0]], "length": 78.24}, {"u": 1179795984, "v": 53560253, "oneway": true, "points": [[-1620.08, -1381.54], [-1607.45, -1381.89]], "length": 12.63}, {"u": 1179795984, "v": 53621256, "oneway": false, "points": [[-1620.08, -1381.54], [-1628.02, -1381.41], [-1638.52, -1381.22], [-1658.26, -1380.8], [-1739.58, -1379.4], [-1748.09, -1379.25]], "length": 128.03}, {"u": 1179795984, "v": 1179796096, "oneway": true, "points": [[-1620.08, -1381.54], [-1620.45, -1393.35], [-1622.03, -1443.11], [-1623.52, -1492.59], [-1623.84, -1503.15]], "length": 121.67}, {"u": 1179796012, "v": 1179796054, "oneway": true, "points": [[-1568.92, -1345.35], [-1576.7, -1347.23], [-1580.73, -1348.03], [-1584.36, -1348.0], [-1588.05, -1347.42], [-1592.98, -1345.76], [-1595.29, -1344.59], [-1597.69, -1342.55], [-1599.37, -1340.78], [-1601.14, -1338.03], [-1602.74, -1334.79], [-1605.03, -1325.83]], "length": 48.99}, {"u": 1179796012, "v": 316357138, "oneway": true, "points": [[-1568.92, -1345.35], [-1582.11, -1356.5], [-1592.27, -1364.63], [-1594.93, -1365.83], [-1606.89, -1371.39]], "length": 46.39}, {"u": 1179796036, "v": 1180187579, "oneway": true, "points": [[-1576.5, -1913.92], [-1560.06, -1943.9], [-1543.15, -1974.73], [-1525.66, -2006.49], [-1523.23, -2010.85], [-1504.78, -2044.26], [-1495.84, -2061.49], [-1491.14, -2070.06]], "length": 177.95}, {"u": 1179796036, "v": 53447618, "oneway": false, "points": [[-1576.5, -1913.92], [-1582.69, -1917.4], [-1584.98, -1918.69], [-1607.85, -1931.53], [-1620.64, -1938.46], [-1624.13, -1940.35], [-1679.43, -1970.01], [-1686.79, -1973.96]], "length": 125.58}, {"u": 1179796036, "v": 4248707700, "oneway": false, "points": [[-1576.5, -1913.92], [-1569.76, -1910.11], [-1562.21, -1905.85]], "length": 16.41}, {"u": 1179796039, "v": 316357429, "oneway": true, "points": [[-1607.73, -1413.43], [-1593.12, -1397.02], [-1591.39, -1394.84], [-1584.83, -1386.49], [-1576.3, -1375.83]], "length": 49.03}, {"u": 1179796039, "v": 53560253, "oneway": true, "points": [[-1607.73, -1413.43], [-1607.65, -1393.5], [-1607.45, -1381.89]], "length": 31.54}, {"u": 1179796054, "v": 1179459694, "oneway": true, "points": [[-1605.03, -1325.83], [-1603.95, -1306.11], [-1601.53, -1261.49]], "length": 64.44}, {"u": 1179796056, "v": 1179795931, "oneway": false, "points": [[-1626.61, -1625.14], [-1611.39, -1625.34]], "length": 15.22}, {"u": 1179796056, "v": 53529686, "oneway": false, "points": [[-1626.61, -1625.14], [-1633.32, -1624.94], [-1635.89, -1624.9], [-1702.96, -1623.73], [-1743.16, -1622.33], [-1745.43, -1622.26], [-1754.14, -1621.95]], "length": 127.58}, {"u": 1179796056, "v": 1710317933, "oneway": true, "points": [[-1626.61, -1625.14], [-1626.73, -1636.3], [-1627.44, -1675.17], [-1627.13, -1686.19], [-1626.71, -1700.67], [-1627.74, -1736.32], [-1628.33, -1745.2]], "length": 120.12}, {"u": 1179796074, "v": 1180187704, "oneway": false, "points": [[-1474.66, -2094.62], [-1464.01, -2084.68]], "length": 14.57}, {"u": 1179796074, "v": 1180187485, "oneway": true, "points": [[-1474.66, -2094.62], [-1481.69, -2096.97], [-1485.75, -2103.28], [-1488.48, -2108.67], [-1490.22, -2114.39]], "length": 26.94}, {"u": 1179796074, "v": 1180187568, "oneway": true, "points": [[-1474.66, -2094.62], [-1466.96, -2111.87], [-1456.67, -2129.87], [-1432.82, -2174.53]], "length": 90.25}, {"u": 1179796096, "v": 1179796106, "oneway": false, "points": [[-1623.84, -1503.15], [-1608.9, -1503.3]], "length": 14.94}, {"u": 1179796096, "v": 1179796056, "oneway": true, "points": [[-1623.84, -1503.15], [-1624.29, -1515.0], [-1626.16, -1563.95], [-1626.52, -1614.3], [-1626.61, -1625.14]], "length": 122.03}, {"u": 1179796096, "v": 53511582, "oneway": false, "points": [[-1623.84, -1503.15], [-1631.02, -1502.95], [-1633.06, -1502.89], [-1638.49, -1502.75], [-1663.68, -1502.07], [-1667.38, -1501.96], [-1711.25, -1500.64], [-1743.04, -1500.07], [-1751.71, -1499.93]], "length": 127.91}, {"u": 1179796106, "v": 1179796096, "oneway": false, "points": [[-1608.9, -1503.3], [-1623.84, -1503.15]], "length": 14.94}, {"u": 1179796106, "v": 1179796039, "oneway": true, "points": [[-1608.9, -1503.3], [-1610.0, -1491.88], [-1609.12, -1454.97], [-1608.24, -1428.44], [-1607.73, -1413.43]], "length": 89.96}, {"u": 1179796106, "v": 53511571, "oneway": false, "points": [[-1608.9, -1503.3], [-1600.85, -1503.52], [-1598.7, -1503.58], [-1591.4, -1503.77], [-1589.81, -1503.82], [-1586.98, -1503.9], [-1576.25, -1504.21], [-1550.58, -1504.94], [-1537.98, -1505.1], [-1529.74, -1505.17]], "length": 79.18}, {"u": 1179956582, "v": 2859302272, "oneway": false, "points": [[-1467.65, -796.65], [-1468.22, -809.37], [-1468.89, -824.21], [-1469.03, -827.27], [-1470.43, -858.23], [-1471.37, -876.92], [-1471.8, -888.55]], "length": 91.99}, {"u": 1179956625, "v": 1180102573, "oneway": true, "points": [[-1203.39, -947.22], [-1178.6, -966.22], [-1174.59, -971.35], [-1173.24, -976.84], [-1173.1, -980.09], [-1175.72, -989.63]], "length": 56.54}, {"u": 1179956625, "v": 53421750, "oneway": true, "points": [[-1203.39, -947.22], [-1161.88, -965.12], [-1152.89, -969.9]], "length": 55.38}, {"u": 1179967125, "v": 13056348947, "oneway": false, "points": [[-933.23, -1103.58], [-951.22, -1119.0], [-952.34, -1119.96], [-958.92, -1126.0]], "length": 34.1}, {"u": 1179967125, "v": 7189398145, "oneway": false, "points": [[-933.23, -1103.58], [-902.46, -1076.04], [-886.02, -1056.49], [-883.32, -1054.44], [-880.35, -1053.38], [-877.4, -1053.48], [-874.47, -1054.56], [-870.94, -1056.84], [-843.94, -1097.46], [-836.86, -1108.17], [-819.11, -1129.58], [-817.85, -1131.49], [-816.18, -1134.03], [-815.86, -1138.39], [-817.79, -1144.44], [-823.25, -1152.12], [-830.36, -1158.3], [-857.38, -1180.35]], "length": 242.85}, {"u": 1180005819, "v": 4214349299, "oneway": false, "points": [[-2668.24, -834.66], [-2667.92, -825.01], [-2666.3, -775.73], [-2665.45, -748.68], [-2665.19, -741.88]], "length": 92.83}, {"u": 1180005819, "v": 53462362, "oneway": false, "points": [[-2668.24, -834.66], [-2669.63, -843.24], [-2669.79, -862.37], [-2670.24, -872.0], [-2670.59, -900.63], [-2670.63, -904.46], [-2664.76, -911.6]], "length": 79.17}, {"u": 1180005819, "v": 53684762, "oneway": false, "points": [[-2668.24, -834.66], [-2676.92, -834.28], [-2700.05, -833.27], [-2750.77, -831.04]], "length": 82.61}, {"u": 1180005819, "v": 1426438850, "oneway": true, "points": [[-2668.24, -834.66], [-2657.61, -837.66], [-2635.4, -838.04]], "length": 33.26}, {"u": 1180005830, "v": 53481441, "oneway": false, "points": [[-2968.0, -220.34], [-2966.68, -229.28], [-2966.4, -231.19], [-2965.18, -239.45], [-2956.46, -296.75], [-2955.12, -305.54]], "length": 86.17}, {"u": 1180005830, "v": 3607816606, "oneway": false, "points": [[-2968.0, -220.34], [-2965.28, -219.92], [-2951.82, -217.84]], "length": 16.37}, {"u": 1180005830, "v": 53461816, "oneway": false, "points": [[-2968.0, -220.34], [-2976.41, -221.64], [-2984.85, -222.95], [-3049.58, -232.97]], "length": 82.55}, {"u": 1180005831, "v": 53472270, "oneway": true, "points": [[-2128.17, -648.45], [-2128.34, -656.36], [-2128.87, -681.8], [-2128.95, -685.33], [-2129.32, -702.56], [-2129.43, -707.97], [-2130.25, -746.89]], "length": 98.46}, {"u": 1180005831, "v": 53510000, "oneway": false, "points": [[-2128.17, -648.45], [-2137.68, -647.98], [-2163.53, -646.69], [-2166.19, -646.56], [-2185.94, -645.58], [-2187.29, -645.51], [-2201.94, -644.78], [-2221.89, -643.79], [-2249.89, -642.4], [-2253.14, -642.24], [-2263.26, -641.64]], "length": 135.26}, {"u": 1180005831, "v": 4139816155, "oneway": false, "points": [[-2128.17, -648.45], [-2119.42, -648.88], [-2086.28, -650.53], [-2075.4, -651.07], [-2030.84, -653.28], [-2005.11, -654.56], [-1993.57, -655.14]], "length": 134.76}, {"u": 1180005834, "v": 2985254834, "oneway": false, "points": [[-2124.74, -489.42], [-2124.47, -479.95], [-2123.47, -459.19]], "length": 30.26}, {"u": 1180005834, "v": 53607068, "oneway": false, "points": [[-2124.74, -489.42], [-2115.49, -489.92], [-1999.05, -495.64], [-1990.15, -496.07]], "length": 134.75}, {"u": 1180005834, "v": 1180005838, "oneway": false, "points": [[-2124.74, -489.42], [-2133.87, -489.0], [-2163.14, -487.56], [-2179.01, -486.77], [-2183.68, -486.55], [-2249.66, -483.22], [-2258.98, -482.24]], "length": 134.45}, {"u": 1180005834, "v": 1180005831, "oneway": true, "points": [[-2124.74, -489.42], [-2124.92, -497.81], [-2125.86, -541.34], [-2125.93, -544.61], [-2125.99, -547.62], [-2126.51, -571.64], [-2126.93, -590.99], [-2127.43, -614.03], [-2127.97, -639.28], [-2128.17, -648.45]], "length": 159.07}, {"u": 1180005838, "v": 2859304393, "oneway": false, "points": [[-2258.98, -482.24], [-2259.03, -490.84], [-2259.49, -562.31]], "length": 80.07}, {"u": 1180005838, "v": 1345420597, "oneway": false, "points": [[-2258.98, -482.24], [-2258.93, -472.92], [-2258.76, -448.25], [-2258.58, -418.23]], "length": 64.01}, {"u": 1180005838, "v": 1180005834, "oneway": false, "points": [[-2258.98, -482.24], [-2249.66, -483.22], [-2183.68, -486.55], [-2179.01, -486.77], [-2163.14, -487.56], [-2133.87, -489.0], [-2124.74, -489.42]], "length": 134.45}, {"u": 1180079551, "v": 362597488, "oneway": true, "points": [[-1473.89, -1259.4], [-1481.09, -1275.83], [-1483.73, -1281.16], [-1485.75, -1285.75], [-1486.96, -1293.61]], "length": 36.86}, {"u": 1180079551, "v": 1179796012, "oneway": true, "points": [[-1473.89, -1259.4], [-1497.26, -1280.53], [-1505.29, -1287.8], [-1568.92, -1345.35]], "length": 128.13}, {"u": 1180102573, "v": 11603196290, "oneway": true, "points": [[-1175.72, -989.63], [-1216.17, -1026.23], [-1241.53, -1049.17], [-1249.63, -1056.5], [-1345.79, -1143.5]], "length": 229.35}, {"u": 1180120602, "v": 13151160466, "oneway": true, "points": [[-1097.76, -940.61], [-1061.77, -908.25], [-1052.28, -900.17], [-1043.32, -891.58], [-1028.68, -878.03], [-1027.74, -867.87]], "length": 103.42}, {"u": 1180120617, "v": 1180120602, "oneway": true, "points": [[-1093.1, -981.12], [-1103.71, -967.57], [-1104.22, -959.11], [-1103.08, -955.09], [-1101.54, -949.23], [-1097.76, -940.61]], "length": 45.34}, {"u": 1180120617, "v": 387186790, "oneway": true, "points": [[-1093.1, -981.12], [-1105.3, -974.87], [-1117.18, -969.64], [-1125.76, -966.2]], "length": 35.93}, {"u": 1180120831, "v": 6275800735, "oneway": true, "points": [[-1088.48, -913.41], [-1100.2, -917.57], [-1113.15, -926.29], [-1129.05, -939.7], [-1136.23, -942.84], [-1143.24, -944.62], [-1148.9, -944.55], [-1166.04, -942.6], [-1222.58, -924.38]], "length": 146.23}, {"u": 1180120831, "v": 452817475, "oneway": true, "points": [[-1088.48, -913.41], [-1132.27, -954.01], [-1140.68, -960.17]], "length": 70.14}, {"u": 1180187456, "v": 1180187595, "oneway": false, "points": [[-1282.34, -2405.25], [-1298.63, -2410.41]], "length": 17.08}, {"u": 1180187456, "v": 53416788, "oneway": false, "points": [[-1282.34, -2405.25], [-1275.73, -2404.96], [-1266.77, -2404.58], [-1262.33, -2404.38], [-1249.74, -2403.83], [-1239.06, -2404.26], [-1234.0, -2404.69], [-1200.78, -2407.5], [-1189.44, -2408.46]], "length": 93.12}, {"u": 1180187456, "v": 1180187658, "oneway": true, "points": [[-1282.34, -2405.25], [-1314.9, -2349.79], [-1319.34, -2342.23]], "length": 73.08}, {"u": 1180187478, "v": 1180187532, "oneway": false, "points": [[-1101.36, -2947.26], [-1115.37, -2945.47]], "length": 14.12}, {"u": 1180187478, "v": 1180187620, "oneway": false, "points": [[-1101.36, -2947.26], [-1093.08, -2948.41], [-1078.76, -2950.38], [-1051.85, -2954.1], [-1004.16, -2959.79], [-1001.16, -2960.08], [-993.81, -2960.76]], "length": 108.41}, {"u": 1180187478, "v": 1180187596, "oneway": true, "points": [[-1101.36, -2947.26], [-1101.68, -2936.82], [-1102.39, -2914.21], [-1103.63, -2893.92], [-1104.63, -2877.54], [-1109.44, -2836.72], [-1109.91, -2832.73], [-1111.53, -2819.27], [-1113.64, -2801.7], [-1121.57, -2762.32], [-1122.59, -2758.36], [-1128.29, -2736.21], [-1133.11, -2717.5], [-1148.62, -2671.28], [-1153.81, -2657.67]], "length": 295.95}, {"u": 1180187483, "v": 1180187568, "oneway": false, "points": [[-1417.71, -2166.34], [-1432.82, -2174.53]], "length": 17.19}, {"u": 1180187483, "v": 1180187704, "oneway": true, "points": [[-1417.71, -2166.34], [-1439.59, -2127.64], [-1446.39, -2115.59], [-1457.86, -2095.18], [-1464.01, -2084.68]], "length": 93.88}, {"u": 1180187483, "v": 53416784, "oneway": false, "points": [[-1417.71, -2166.34], [-1409.16, -2166.65], [-1406.15, -2166.76], [-1400.26, -2166.97], [-1394.32, -2167.19], [-1391.1, -2167.3], [-1361.31, -2168.39], [-1351.79, -2168.73], [-1189.71, -2178.31], [-1180.92, -2178.83]], "length": 237.13}, {"u": 1180187485, "v": 53639872, "oneway": true, "points": [[-1490.22, -2114.39], [-1490.34, -2123.0], [-1486.74, -2130.19]], "length": 16.66}, {"u": 1180187507, "v": 1180187588, "oneway": false, "points": [[-1348.65, -2288.28], [-1365.19, -2296.4]], "length": 18.43}, {"u": 1180187507, "v": 1180187483, "oneway": true, "points": [[-1348.65, -2288.28], [-1354.33, -2278.24], [-1362.26, -2264.25], [-1403.44, -2191.54], [-1409.58, -2180.69], [-1417.71, -2166.34]], "length": 140.13}, {"u": 1180187507, "v": 53416786, "oneway": false, "points": [[-1348.65, -2288.28], [-1341.58, -2287.65], [-1339.5, -2287.46], [-1331.59, -2286.75], [-1292.86, -2288.34], [-1186.31, -2293.38]], "length": 162.56}, {"u": 1180187532, "v": 1180187478, "oneway": false, "points": [[-1115.37, -2945.47], [-1101.36, -2947.26]], "length": 14.12}, {"u": 1180187532, "v": 1180187697, "oneway": true, "points": [[-1115.37, -2945.47], [-1116.01, -2957.54], [-1116.06, -2963.44], [-1116.09, -2984.11], [-1116.8, -2996.13]], "length": 50.7}, {"u": 1180187532, "v": 53473027, "oneway": false, "points": [[-1115.37, -2945.47], [-1124.23, -2944.13], [-1210.91, -2928.22], [-1265.61, -2917.98], [-1295.99, -2912.11], [-1353.79, -2900.96], [-1370.49, -2897.73], [-1413.41, -2889.44], [-1422.31, -2887.72]], "length": 312.33}, {"u": 1180187547, "v": 2638675236, "oneway": false, "points": [[-1215.22, -2524.69], [-1230.41, -2529.65]], "length": 15.99}, {"u": 1180187547, "v": 53434863, "oneway": false, "points": [[-1215.22, -2524.69], [-1206.51, -2524.68], [-1204.39, -2524.67], [-1198.39, -2524.67], [-1188.12, -2524.65], [-1170.79, -2525.5], [-1096.62, -2529.13], [-1068.55, -2530.93], [-954.35, -2536.55], [-945.32, -2537.0]], "length": 270.22}, {"u": 1180187547, "v": 1180187456, "oneway": true, "points": [[-1215.22, -2524.69], [-1223.18, -2511.67], [-1242.33, -2478.22], [-1251.02, -2462.7], [-1275.51, -2417.8], [-1282.34, -2405.25]], "length": 137.02}, {"u": 1180187568, "v": 1180187483, "oneway": false, "points": [[-1432.82, -2174.53], [-1417.71, -2166.34]], "length": 17.19}, {"u": 1180187568, "v": 1180187588, "oneway": true, "points": [[-1432.82, -2174.53], [-1424.38, -2190.35], [-1397.74, -2240.26], [-1396.19, -2242.93], [-1371.65, -2285.25], [-1365.19, -2296.4]], "length": 139.39}, {"u": 1180187578, "v": 1180187596, "oneway": false, "points": [[-1169.05, -2661.87], [-1153.81, -2657.67]], "length": 15.81}, {"u": 1180187578, "v": 1180187532, "oneway": true, "points": [[-1169.05, -2661.87], [-1163.16, -2676.51], [-1149.83, -2720.05], [-1147.54, -2727.48], [-1139.86, -2757.42], [-1131.96, -2792.17], [-1125.14, -2833.69], [-1122.45, -2853.19], [-1117.29, -2892.55], [-1114.91, -2935.5], [-1115.37, -2945.47]], "length": 290.09}, {"u": 1180187578, "v": 9146885459, "oneway": false, "points": [[-1169.05, -2661.87], [-1176.33, -2664.66], [-1190.97, -2665.43], [-1219.52, -2663.74], [-1258.51, -2660.46], [-1289.55, -2657.04], [-1305.09, -2652.94], [-1325.01, -2639.99], [-1337.68, -2634.39], [-1353.05, -2629.82], [-1397.99, -2627.8], [-1405.98, -2626.93]], "length": 244.16}, {"u": 1180187579, "v": 1180187485, "oneway": true, "points": [[-1491.14, -2070.06], [-1490.04, -2081.08], [-1490.24, -2086.13], [-1491.03, -2098.96], [-1491.09, -2104.85], [-1490.22, -2114.39]], "length": 44.45}, {"u": 1180187579, "v": 1179796074, "oneway": true, "points": [[-1491.14, -2070.06], [-1484.27, -2077.44], [-1474.66, -2094.62]], "length": 29.78}, {"u": 1180187588, "v": 1180187507, "oneway": false, "points": [[-1365.19, -2296.4], [-1348.65, -2288.28]], "length": 18.43}, {"u": 1180187588, "v": 1180187677, "oneway": true, "points": [[-1365.19, -2296.4], [-1347.53, -2326.87], [-1336.41, -2345.93], [-1333.79, -2350.42]], "length": 62.49}, {"u": 1180187595, "v": 1180187456, "oneway": false, "points": [[-1298.63, -2410.41], [-1282.34, -2405.25]], "length": 17.08}, {"u": 1180187595, "v": 2638675236, "oneway": true, "points": [[-1298.63, -2410.41], [-1290.72, -2425.56], [-1257.77, -2482.79], [-1250.36, -2495.1], [-1238.56, -2514.7], [-1230.41, -2529.65]], "length": 137.4}, {"u": 1180187596, "v": 1180187578, "oneway": false, "points": [[-1153.81, -2657.67], [-1169.05, -2661.87]], "length": 15.81}, {"u": 1180187596, "v": 53511723, "oneway": false, "points": [[-1153.81, -2657.67], [-1142.53, -2651.69]], "length": 12.76}, {"u": 1180187596, "v": 1180187547, "oneway": true, "points": [[-1153.81, -2657.67], [-1165.01, -2627.71], [-1172.54, -2610.12], [-1176.9, -2599.96], [-1177.96, -2597.47], [-1183.56, -2585.48], [-1201.24, -2547.58], [-1206.96, -2538.21], [-1215.22, -2524.69]], "length": 146.76}, {"u": 1180187620, "v": 1180187478, "oneway": false, "points": [[-993.81, -2960.76], [-1001.16, -2960.08], [-1004.16, -2959.79], [-1051.85, -2954.1], [-1078.76, -2950.38], [-1093.08, -2948.41], [-1101.36, -2947.26]], "length": 108.41}, {"u": 1180187620, "v": 53511694, "oneway": false, "points": [[-993.81, -2960.76], [-994.82, -2969.88], [-995.04, -2971.45], [-997.47, -2990.74], [-1000.91, -3017.57], [-1003.92, -3041.02], [-1005.35, -3052.02], [-1008.32, -3074.82], [-1011.27, -3097.41]], "length": 137.76}, {"u": 1180187620, "v": 53463532, "oneway": false, "points": [[-993.81, -2960.76], [-993.09, -2950.69], [-992.79, -2940.16], [-993.25, -2928.85], [-994.09, -2917.12], [-995.73, -2905.77], [-997.08, -2898.32], [-1001.27, -2884.18]], "length": 77.5}, {"u": 1180187658, "v": 1180187677, "oneway": false, "points": [[-1319.34, -2342.23], [-1333.79, -2350.42]], "length": 16.61}, {"u": 1180187658, "v": 1180187507, "oneway": true, "points": [[-1319.34, -2342.23], [-1322.07, -2337.22], [-1348.65, -2288.28]], "length": 61.4}, {"u": 1180187677, "v": 1180187658, "oneway": false, "points": [[-1333.79, -2350.42], [-1319.34, -2342.23]], "length": 16.61}, {"u": 1180187677, "v": 2638675253, "oneway": false, "points": [[-1333.79, -2350.42], [-1339.47, -2353.64], [-1342.85, -2355.55], [-1353.0, -2361.29], [-1381.66, -2378.12]], "length": 55.31}, {"u": 1180187677, "v": 1180187595, "oneway": true, "points": [[-1333.79, -2350.42], [-1329.59, -2357.6], [-1312.36, -2387.0], [-1298.63, -2410.41]], "length": 69.53}, {"u": 1180187697, "v": 53481638, "oneway": false, "points": [[-1116.8, -2996.13], [-1101.86, -2996.82]], "length": 14.95}, {"u": 1180187697, "v": 53481665, "oneway": false, "points": [[-1116.8, -2996.13], [-1124.7, -2995.35], [-1128.33, -2994.93], [-1206.81, -2979.79], [-1246.76, -2972.51], [-1385.21, -2947.24], [-1389.08, -2946.6], [-1397.6, -2945.19], [-1413.53, -2942.56], [-1444.05, -2936.25], [-1496.57, -2926.24], [-1536.7, -2918.03], [-1552.8, -2915.07], [-1560.56, -2913.44], [-1568.82, -2912.48], [-1579.75, -2911.67], [-1597.48, -2912.98], [-1612.5, -2910.8], [-1621.71, -2908.31], [-1624.6, -2907.46], [-1638.46, -2903.77]], "length": 530.58}, {"u": 1180187704, "v": 1179796074, "oneway": false, "points": [[-1464.01, -2084.68], [-1474.66, -2094.62]], "length": 14.57}, {"u": 1180187704, "v": 53444545, "oneway": false, "points": [[-1464.01, -2084.68], [-1457.28, -2081.01], [-1436.01, -2069.03], [-1430.2, -2065.82], [-1395.39, -2045.59], [-1389.02, -2042.07]], "length": 86.26}, {"u": 1180187704, "v": 4248707700, "oneway": true, "points": [[-1464.01, -2084.68], [-1476.88, -2060.63], [-1481.33, -2052.5], [-1497.14, -2021.98], [-1498.77, -2018.85], [-1509.74, -1997.67], [-1562.21, -1905.85]], "length": 204.05}, {"u": 1180876933, "v": 1160692039, "oneway": true, "points": [[-374.98, 36.63], [-385.51, 26.53]], "length": 14.58}, {"u": 1180876933, "v": 2713279290, "oneway": true, "points": [[-374.98, 36.63], [-381.47, 43.64], [-385.27, 46.31], [-389.8, 48.29], [-395.79, 48.97]], "length": 25.17}, {"u": 1181085486, "v": 53467413, "oneway": false, "points": [[-964.03, 45.34], [-969.56, 51.48], [-971.23, 53.33], [-1024.15, 112.1]], "length": 89.84}, {"u": 1181085486, "v": 53441256, "oneway": false, "points": [[-964.03, 45.34], [-927.65, 78.13], [-903.17, 100.2], [-896.45, 106.26]], "length": 90.98}, {"u": 1181085486, "v": 53441258, "oneway": false, "points": [[-964.03, 45.34], [-977.61, 33.09], [-990.54, 21.43], [-994.03, 18.28]], "length": 40.4}, {"u": 1181184017, "v": 53441258, "oneway": false, "points": [[-1077.25, 100.76], [-1070.49, 98.85], [-1065.11, 95.67], [-1061.56, 93.28], [-1058.9, 91.03], [-1001.92, 27.13], [-1001.12, 26.06], [-994.03, 18.28]], "length": 118.51}, {"u": 1181324562, "v": 53467413, "oneway": false, "points": [[-1058.1, 149.8], [-1050.09, 140.89], [-1038.48, 128.0], [-1024.15, 112.1]], "length": 50.74}, {"u": 1181378741, "v": 6610389586, "oneway": true, "points": [[-955.74, -217.63], [-965.62, -226.77], [-976.62, -236.43], [-986.6, -245.38], [-1006.91, -264.2], [-1010.88, -268.01], [-1014.56, -271.13], [-1017.97, -273.72], [-1021.6, -276.28], [-1024.54, -277.85], [-1028.69, -279.92], [-1029.88, -280.62]], "length": 97.6}, {"u": 1182091234, "v": 450714559, "oneway": false, "points": [[-1171.93, -138.79], [-1173.55, -174.39], [-1173.96, -183.83], [-1174.41, -195.37], [-1174.81, -204.37], [-1175.11, -211.11], [-1175.53, -220.7], [-1176.09, -233.44], [-1177.49, -265.25], [-1178.03, -277.6]], "length": 138.95}, {"u": 1182471954, "v": 1182471991, "oneway": true, "points": [[-426.54, -771.54], [-419.9, -767.39], [-414.95, -764.82], [-408.19, -761.79], [-401.67, -760.18], [-394.45, -759.24], [-389.45, -759.47], [-383.83, -760.41], [-376.21, -762.37]], "length": 53.39}, {"u": 1182471954, "v": 53482965, "oneway": true, "points": [[-426.54, -771.54], [-422.88, -766.26], [-403.74, -749.33], [-396.17, -742.63]], "length": 42.09}, {"u": 1182471991, "v": 13334818837, "oneway": false, "points": [[-376.21, -762.37], [-367.77, -771.12]], "length": 12.16}, {"u": 1182471991, "v": 53482965, "oneway": false, "points": [[-376.21, -762.37], [-391.98, -746.63], [-396.17, -742.63]], "length": 28.08}, {"u": 1185580621, "v": 387187387, "oneway": false, "points": [[-621.12, -1098.49], [-611.61, -1108.51]], "length": 13.81}, {"u": 1185580621, "v": 53663953, "oneway": false, "points": [[-621.12, -1098.49], [-628.49, -1090.39], [-630.54, -1087.86], [-658.33, -1057.41], [-686.76, -1026.88], [-688.45, -1025.1], [-694.31, -1017.59]], "length": 109.13}, {"u": 1185580621, "v": 387187392, "oneway": true, "points": [[-621.12, -1098.49], [-627.46, -1109.32], [-677.4, -1200.47], [-680.15, -1205.61], [-692.38, -1228.66], [-699.14, -1239.66], [-703.31, -1245.57], [-707.88, -1250.23], [-713.07, -1255.52], [-722.47, -1263.63], [-728.35, -1267.67], [-741.45, -1274.51], [-753.9, -1278.44], [-784.08, -1280.5], [-794.61, -1279.23], [-804.51, -1276.8], [-815.75, -1272.78], [-824.61, -1267.85], [-833.1, -1261.19]], "length": 313.78}, {"u": 1186826669, "v": 1186826687, "oneway": false, "points": [[-233.23, -339.97], [-233.66, -347.89], [-233.91, -352.35], [-236.46, -398.88], [-236.74, -404.11], [-238.89, -443.27], [-239.64, -457.04]], "length": 117.25}, {"u": 1186826669, "v": 53444038, "oneway": false, "points": [[-233.23, -339.97], [-232.18, -320.78], [-231.37, -305.98]], "length": 34.04}, {"u": 1186826669, "v": 53493114, "oneway": true, "points": [[-233.23, -339.97], [-241.23, -339.52], [-244.59, -339.39], [-249.82, -339.06], [-253.89, -339.62], [-256.97, -341.68], [-269.36, -352.62], [-300.69, -381.33], [-302.98, -384.66], [-307.52, -392.82]], "length": 96.83}, {"u": 1186826687, "v": 1186826669, "oneway": false, "points": [[-239.64, -457.04], [-238.89, -443.27], [-236.74, -404.11], [-236.46, -398.88], [-233.91, -352.35], [-233.66, -347.89], [-233.23, -339.97]], "length": 117.25}, {"u": 1186826687, "v": 53467506, "oneway": true, "points": [[-239.64, -457.04], [-245.87, -466.9], [-251.43, -475.75], [-305.9, -525.57], [-308.29, -527.78], [-315.09, -534.12]], "length": 108.49}, {"u": 1186826687, "v": 53540659, "oneway": true, "points": [[-239.64, -457.04], [-235.59, -457.31], [-231.49, -456.35], [-228.34, -455.03], [-199.7, -431.06], [-192.61, -424.56], [-171.72, -405.39], [-163.9, -398.38]], "length": 97.51}, {"u": 1188388070, "v": 362566885, "oneway": true, "points": [[-313.93, -870.08], [-321.24, -882.29]], "length": 14.23}, {"u": 1188388071, "v": 3886439879, "oneway": true, "points": [[-252.4, -813.67], [-234.5, -791.15], [-200.97, -751.16], [-172.64, -719.66], [-142.56, -691.82], [-113.94, -663.3], [-104.57, -653.7], [-85.03, -632.71], [-56.4, -601.87], [-33.59, -577.72], [63.5, -482.32], [176.94, -366.79], [264.64, -288.31], [293.8, -259.98], [320.09, -232.77], [429.81, -103.06], [465.22, -60.91]], "length": 1041.26}, {"u": 1188388110, "v": 3358764343, "oneway": true, "points": [[-294.13, -841.69], [-295.8, -836.76], [-298.21, -833.94], [-304.07, -828.24], [-316.71, -817.83]], "length": 33.47}, {"u": 1188388110, "v": 1188388071, "oneway": true, "points": [[-294.13, -841.69], [-290.26, -841.73], [-287.29, -841.42], [-284.61, -840.76], [-280.87, -839.76], [-267.6, -827.6], [-252.4, -813.67]], "length": 52.1}, {"u": 1188388110, "v": 1188388070, "oneway": true, "points": [[-294.13, -841.69], [-299.68, -848.15], [-313.93, -870.08]], "length": 34.67}, {"u": 1188388114, "v": 3358764343, "oneway": true, "points": [[-271.7, -812.69], [-291.51, -821.46], [-294.02, -822.21], [-297.66, -822.52], [-299.19, -822.29], [-303.49, -821.7], [-308.15, -820.42], [-316.71, -817.83]], "length": 47.6}, {"u": 1188388114, "v": 1188388110, "oneway": true, "points": [[-271.7, -812.69], [-286.73, -832.32], [-289.94, -836.8], [-294.13, -841.69]], "length": 36.68}, {"u": 1188388115, "v": 1188388110, "oneway": true, "points": [[-309.42, -895.5], [-297.27, -867.65], [-293.76, -860.72], [-291.75, -855.54], [-291.41, -850.59], [-292.3, -846.87], [-294.13, -841.69]], "length": 57.99}, {"u": 1188388115, "v": 1188388071, "oneway": true, "points": [[-309.42, -895.5], [-289.9, -871.59], [-278.15, -854.73], [-262.58, -831.4], [-252.4, -813.67]], "length": 99.91}, {"u": 1188394181, "v": 1188388110, "oneway": true, "points": [[-328.07, -820.93], [-310.25, -836.48], [-303.51, -841.32], [-299.84, -842.4], [-294.13, -841.69]], "length": 41.53}, {"u": 1188394181, "v": 1188388070, "oneway": true, "points": [[-328.07, -820.93], [-322.94, -830.22], [-316.07, -843.94], [-313.72, -848.13], [-312.84, -852.15], [-312.1, -858.54], [-312.75, -863.45], [-313.93, -870.08]], "length": 53.0}, {"u": 1188394186, "v": 13334818837, "oneway": false, "points": [[-335.05, -807.05], [-367.77, -771.12]], "length": 48.59}, {"u": 1188394186, "v": 1188394181, "oneway": true, "points": [[-335.05, -807.05], [-333.29, -814.82], [-330.03, -818.71], [-328.07, -820.93]], "length": 16.0}, {"u": 1191535148, "v": 387187392, "oneway": false, "points": [[-842.2, -1272.14], [-833.1, -1261.19]], "length": 14.24}, {"u": 1191535148, "v": 53629591, "oneway": false, "points": [[-842.2, -1272.14], [-850.63, -1281.45], [-860.55, -1290.68], [-866.44, -1295.94], [-890.78, -1317.29]], "length": 66.38}, {"u": 1191535148, "v": 387187387, "oneway": true, "points": [[-842.2, -1272.14], [-829.24, -1282.5], [-817.64, -1287.31], [-801.53, -1292.06], [-787.98, -1293.88], [-779.8, -1294.77], [-771.16, -1294.51], [-760.3, -1293.62], [-750.2, -1291.58], [-741.83, -1289.32], [-732.66, -1285.65], [-723.34, -1280.91], [-717.44, -1277.45], [-715.09, -1276.08], [-704.18, -1268.3], [-694.51, -1258.42], [-686.51, -1247.68], [-660.7, -1201.63], [-649.36, -1179.91], [-637.85, -1154.77], [-619.36, -1120.93], [-611.61, -1108.51]], "length": 335.02}, {"u": 1192150160, "v": 1192150246, "oneway": true, "points": [[466.02, 4.44], [457.9, -13.67]], "length": 19.84}, {"u": 1192150160, "v": 53616146, "oneway": false, "points": [[466.02, 4.44], [462.82, 13.49], [461.2, 16.15], [445.68, 36.92], [423.9, 60.51], [386.48, 102.93]], "length": 127.31}, {"u": 1192150160, "v": 53515093, "oneway": true, "points": [[466.02, 4.44], [453.1, 1.41], [440.76, -0.61], [435.14, -2.17], [428.58, -4.33], [420.93, -7.51], [411.01, -12.45], [405.48, -15.78], [400.24, -19.5], [383.73, -32.24], [376.58, -37.94]], "length": 100.75}, {"u": 1192150246, "v": 1192150256, "oneway": true, "points": [[457.9, -13.67], [469.61, -10.11], [477.08, -7.96]], "length": 20.01}, {"u": 1192150246, "v": 1188388114, "oneway": true, "points": [[457.9, -13.67], [453.35, -24.04], [453.94, -26.24], [455.03, -34.0], [454.1, -40.2], [442.12, -60.99], [377.51, -145.15], [317.59, -211.23], [254.08, -274.88], [167.51, -357.4], [-42.98, -568.59], [-65.98, -591.6], [-106.68, -631.29], [-152.25, -679.84], [-209.72, -740.32], [-260.13, -799.18], [-271.7, -812.69]], "length": 1089.38}, {"u": 1192150256, "v": 13018504178, "oneway": true, "points": [[477.08, -7.96], [484.4, -6.4], [496.94, -2.79]], "length": 20.54}, {"u": 1192150256, "v": 1192150160, "oneway": true, "points": [[477.08, -7.96], [473.76, -0.81], [466.02, 4.44]], "length": 17.24}, {"u": 1192150405, "v": 1192150160, "oneway": true, "points": [[663.97, 97.22], [656.71, 90.44], [641.58, 76.42], [619.45, 56.19], [615.49, 52.99], [610.66, 49.42], [605.49, 46.18], [600.09, 42.98], [594.35, 40.18], [587.12, 37.12], [579.71, 34.55], [533.4, 21.95], [527.14, 20.42], [482.97, 8.82], [480.68, 8.18], [466.02, 4.44]], "length": 223.72}, {"u": 1192150405, "v": 1192150413, "oneway": false, "points": [[663.97, 97.22], [666.14, 95.48], [672.66, 88.45]], "length": 12.37}, {"u": 1192150405, "v": 1142904218, "oneway": false, "points": [[663.97, 97.22], [657.36, 102.5], [635.74, 125.75], [607.11, 157.07], [605.84, 158.58], [600.01, 167.49], [593.66, 175.03], [583.7, 186.94], [577.06, 194.68], [556.31, 218.1], [535.72, 241.33]], "length": 193.18}, {"u": 1192150406, "v": 1192150405, "oneway": true, "points": [[706.43, 120.38], [699.2, 118.7], [691.87, 115.22], [671.53, 102.29], [665.41, 98.57], [663.97, 97.22]], "length": 48.77}, {"u": 1192150406, "v": 53432331, "oneway": false, "points": [[706.43, 120.38], [708.04, 121.84], [715.69, 128.69], [720.5, 133.01], [746.77, 156.59], [770.6, 177.97], [801.86, 206.02], [813.31, 216.58], [820.62, 223.16]], "length": 153.63}, {"u": 1192150409, "v": 1192150413, "oneway": false, "points": [[720.51, 35.33], [704.58, 52.5], [690.72, 67.9], [686.94, 72.1], [679.33, 80.7], [677.81, 82.45], [672.66, 88.45]], "length": 71.51}, {"u": 1192150413, "v": 1192150406, "oneway": true, "points": [[672.66, 88.45], [680.31, 93.61], [697.83, 108.18], [703.7, 113.59], [706.43, 120.38]], "length": 47.32}, {"u": 1192150413, "v": 1192150409, "oneway": false, "points": [[672.66, 88.45], [677.81, 82.45], [679.33, 80.7], [686.94, 72.1], [690.72, 67.9], [704.58, 52.5], [720.51, 35.33]], "length": 71.51}, {"u": 1192150413, "v": 1192150405, "oneway": false, "points": [[672.66, 88.45], [666.14, 95.48], [663.97, 97.22]], "length": 12.37}, {"u": 1192211510, "v": 316334514, "oneway": true, "points": [[278.71, 223.36], [273.8, 232.99], [266.74, 245.28], [260.82, 255.14], [258.46, 260.98], [257.46, 264.0], [255.85, 269.52], [255.49, 275.29], [256.16, 280.52], [257.88, 286.19]], "length": 68.68}, {"u": 1192211510, "v": 53407941, "oneway": false, "points": [[278.71, 223.36], [285.62, 214.98], [286.73, 213.79], [292.22, 207.55], [313.49, 184.09], [318.52, 177.71]], "length": 60.59}, {"u": 1192211510, "v": 316349604, "oneway": false, "points": [[278.71, 223.36], [243.8, 258.7], [236.8, 266.25]], "length": 59.97}, {"u": 1192248462, "v": 2948595076, "oneway": false, "points": [[1146.89, 658.43], [1162.07, 671.26], [1192.18, 696.71], [1194.52, 698.69], [1200.99, 704.13]], "length": 70.82}, {"u": 1192282519, "v": 53490496, "oneway": true, "points": [[2657.07, 1836.94], [2652.05, 1835.8]], "length": 5.14}, {"u": 1192282519, "v": 53430857, "oneway": false, "points": [[2657.07, 1836.94], [2665.26, 1839.1], [2702.95, 1849.23], [2729.35, 1856.32], [2736.89, 1858.56]], "length": 82.7}, {"u": 1246389199, "v": 53590668, "oneway": false, "points": [[-800.12, -3107.75], [-904.29, -3102.65]], "length": 104.3}, {"u": 1246389199, "v": 53590668, "oneway": false, "points": [[-800.12, -3107.75], [-783.47, -2985.08], [-784.17, -2976.57], [-787.53, -2972.16], [-794.35, -2970.44], [-879.64, -2984.13], [-886.03, -2987.29], [-889.64, -2993.24], [-903.16, -3093.22], [-904.29, -3102.65]], "length": 355.77}, {"u": 1345392073, "v": 3227608153, "oneway": false, "points": [[-208.52, 180.39], [-208.08, 191.45], [-207.48, 204.43], [-205.84, 240.2], [-204.71, 259.27], [-204.63, 260.49], [-204.56, 261.85], [-202.1, 307.99], [-201.09, 330.91]], "length": 150.7}, {"u": 1345392073, "v": 53538736, "oneway": false, "points": [[-208.52, 180.39], [-209.24, 164.79], [-210.3, 141.79], [-213.63, 69.56], [-214.03, 60.96]], "length": 119.56}, {"u": 1345392073, "v": 53655118, "oneway": true, "points": [[-208.52, 180.39], [-214.28, 180.11], [-218.33, 178.63], [-222.02, 176.21], [-230.41, 168.55], [-236.74, 162.76], [-261.55, 140.08], [-276.82, 126.13], [-283.35, 120.16]], "length": 97.57}, {"u": 1345420597, "v": 53523650, "oneway": true, "points": [[-2258.58, -418.23], [-2255.49, -411.54], [-2254.89, -409.38], [-2254.01, -396.28], [-2252.92, -384.01], [-2251.78, -369.41], [-2251.01, -359.49]], "length": 59.66}, {"u": 1345420597, "v": 1180005838, "oneway": false, "points": [[-2258.58, -418.23], [-2258.76, -448.25], [-2258.93, -472.92], [-2258.98, -482.24]], "length": 64.01}, {"u": 1345424861, "v": 53596818, "oneway": true, "points": [[-2250.5, -355.84], [-2249.97, -345.64], [-2249.23, -323.99], [-2248.68, -313.53], [-2248.14, -305.41], [-2248.1, -301.56], [-2248.39, -299.42], [-2249.05, -297.25], [-2249.79, -295.86], [-2250.83, -294.53], [-2251.38, -293.45], [-2251.76, -292.26]], "length": 64.49}, {"u": 1345424861, "v": 1345424868, "oneway": true, "points": [[-2250.5, -355.84], [-2245.3, -345.81], [-2244.29, -343.71], [-2243.26, -340.99], [-2241.78, -336.11], [-2241.1, -334.43], [-2239.35, -331.1], [-2235.17, -325.14], [-2231.33, -322.05], [-2227.62, -319.48], [-2222.77, -316.49], [-2214.98, -314.99], [-2206.03, -314.96]], "length": 66.52}, {"u": 1345424866, "v": 53607075, "oneway": true, "points": [[-2118.94, -353.63], [-2110.31, -356.31], [-2099.37, -358.95], [-2087.5, -361.66], [-2070.7, -364.26], [-2058.26, -365.52], [-2050.05, -366.15], [-2016.56, -367.92], [-2001.93, -368.85], [-1998.32, -369.08], [-1986.96, -369.87]], "length": 133.4}, {"u": 1345424868, "v": 1345424866, "oneway": true, "points": [[-2206.03, -314.96], [-2159.86, -338.21], [-2142.25, -345.72], [-2127.09, -351.27], [-2118.94, -353.63]], "length": 95.46}, {"u": 1345424871, "v": 53461758, "oneway": true, "points": [[-2115.77, -234.58], [-2124.05, -234.19], [-2216.23, -230.4], [-2233.04, -229.7], [-2236.94, -229.6], [-2249.34, -229.03]], "length": 133.68}, {"u": 1345424871, "v": 1345424866, "oneway": true, "points": [[-2115.77, -234.58], [-2116.0, -243.47], [-2116.14, -248.3], [-2118.69, -344.1], [-2118.94, -353.63]], "length": 119.09}, {"u": 1423974459, "v": 53385421, "oneway": false, "points": [[-322.51, -31.43], [-318.31, -35.84], [-306.42, -48.08]], "length": 23.16}, {"u": 1423974459, "v": 1180876933, "oneway": true, "points": [[-322.51, -31.43], [-322.88, -24.35], [-324.49, -19.4], [-326.9, -15.3], [-348.02, 7.51], [-350.98, 10.71], [-369.08, 30.25], [-374.98, 36.63]], "length": 87.82}, {"u": 1424945190, "v": 1157073442, "oneway": false, "points": [[-246.73, -627.85], [-246.92, -631.76], [-248.62, -668.18], [-248.98, -675.85], [-249.15, -679.64], [-250.61, -710.82], [-250.93, -717.61], [-251.46, -729.07], [-251.92, -738.71]], "length": 110.98}, {"u": 1424945190, "v": 53444048, "oneway": false, "points": [[-246.73, -627.85], [-246.34, -619.45], [-246.09, -613.95], [-245.67, -604.97]], "length": 22.9}, {"u": 1424945190, "v": 1425304284, "oneway": false, "points": [[-246.73, -627.85], [-235.6, -628.75], [-228.3, -629.33], [-210.42, -649.0], [-189.44, -672.08]], "length": 76.27}, {"u": 1425249983, "v": 1425250001, "oneway": false, "points": [[317.36, -91.05], [324.26, -98.55]], "length": 10.19}, {"u": 1425249983, "v": 53483529, "oneway": true, "points": [[317.36, -91.05], [309.7, -95.76], [301.5, -101.19], [293.63, -106.98], [281.79, -117.32], [280.1, -118.79], [278.58, -120.13], [247.77, -147.22], [245.75, -149.44], [243.64, -151.64], [241.27, -155.23], [239.4, -159.54]], "length": 104.66}, {"u": 1425249997, "v": 53515093, "oneway": true, "points": [[384.1, -46.15], [376.58, -37.94]], "length": 11.13}, {"u": 1425249997, "v": 1192150246, "oneway": true, "points": [[384.1, -46.15], [390.64, -40.31], [394.9, -36.97], [399.46, -33.92], [403.93, -31.33], [409.32, -28.53], [413.09, -26.71], [416.95, -25.04], [421.93, -23.16], [426.91, -21.4], [433.81, -19.25], [440.72, -17.27], [443.0, -16.68], [457.9, -13.67]], "length": 81.88}, {"u": 1425250001, "v": 1425249983, "oneway": false, "points": [[324.26, -98.55], [317.36, -91.05]], "length": 10.19}, {"u": 1425250001, "v": 1425249997, "oneway": true, "points": [[324.26, -98.55], [331.03, -93.95], [384.1, -46.15]], "length": 79.61}, {"u": 1425250001, "v": 53456081, "oneway": false, "points": [[324.26, -98.55], [328.93, -103.63], [329.86, -104.64], [354.09, -130.97]], "length": 44.06}, {"u": 1425304284, "v": 1424945190, "oneway": false, "points": [[-189.44, -672.08], [-210.42, -649.0], [-228.3, -629.33], [-235.6, -628.75], [-246.73, -627.85]], "length": 76.27}, {"u": 1426438819, "v": 2859304803, "oneway": false, "points": [[-2550.48, -815.12], [-2497.58, -773.83]], "length": 67.11}, {"u": 1426438819, "v": 2987035532, "oneway": false, "points": [[-2550.48, -815.12], [-2558.98, -822.28], [-2564.61, -827.26], [-2575.63, -836.65]], "length": 33.11}, {"u": 1426438835, "v": 53510000, "oneway": false, "points": [[-2262.29, -616.09], [-2263.05, -631.61], [-2263.26, -641.64]], "length": 25.57}, {"u": 1426438835, "v": 2859304395, "oneway": true, "points": [[-2262.29, -616.09], [-2260.09, -612.26], [-2259.09, -608.59], [-2258.93, -602.17], [-2259.73, -597.94], [-2260.37, -596.3], [-2267.98, -593.27]], "length": 28.91}, {"u": 1426438850, "v": 2987035535, "oneway": true, "points": [[-2635.4, -838.04], [-2626.68, -834.92], [-2617.63, -833.35], [-2614.56, -833.13], [-2611.4, -832.94], [-2609.14, -832.29], [-2607.2, -831.18], [-2602.82, -828.26]], "length": 34.54}, {"u": 1426438850, "v": 2987035532, "oneway": true, "points": [[-2635.4, -838.04], [-2599.8, -839.43], [-2593.06, -839.65], [-2584.35, -838.14], [-2575.63, -836.65]], "length": 60.06}, {"u": 1612121520, "v": 2634693276, "oneway": true, "points": [[-509.01, -2205.34], [-509.45, -2214.06], [-513.53, -2295.54], [-513.85, -2301.96]], "length": 96.74}, {"u": 1612121520, "v": 2634693274, "oneway": false, "points": [[-509.01, -2205.34], [-538.52, -2204.06], [-576.87, -2202.4], [-579.67, -2202.28]], "length": 70.73}, {"u": 1612121520, "v": 53642775, "oneway": false, "points": [[-509.01, -2205.34], [-497.77, -2205.83], [-492.0, -2206.08]], "length": 17.03}, {"u": 1699123250, "v": 1699123263, "oneway": false, "points": [[823.16, 1122.02], [816.77, 1129.04], [761.82, 1189.48], [754.34, 1197.78]], "length": 102.35}, {"u": 1699123250, "v": 349378518, "oneway": false, "points": [[823.16, 1122.02], [829.74, 1114.77], [884.97, 1053.97], [890.13, 1048.3]], "length": 99.6}, {"u": 1699123250, "v": 53453137, "oneway": false, "points": [[823.16, 1122.02], [829.99, 1128.31], [833.0, 1130.96], [963.17, 1249.28], [965.19, 1251.12], [971.3, 1256.68]], "length": 200.19}, {"u": 1699123250, "v": 1699123288, "oneway": false, "points": [[823.16, 1122.02], [816.19, 1115.64], [813.85, 1113.51], [682.99, 994.07], [680.71, 991.98], [674.03, 985.87]], "length": 201.94}, {"u": 1699123263, "v": 1699123250, "oneway": false, "points": [[754.34, 1197.78], [761.82, 1189.48], [816.77, 1129.04], [823.16, 1122.02]], "length": 102.35}, {"u": 1699123263, "v": 1699123277, "oneway": false, "points": [[754.34, 1197.78], [750.89, 1201.87], [749.79, 1203.17], [747.41, 1205.98], [726.08, 1229.7], [693.96, 1265.03], [687.09, 1272.6]], "length": 100.61}, {"u": 1699123263, "v": 53453147, "oneway": true, "points": [[754.34, 1197.78], [760.99, 1203.73], [821.34, 1257.71], [897.31, 1326.09], [904.36, 1332.69]], "length": 201.76}, {"u": 1699123264, "v": 53536998, "oneway": false, "points": [[1040.87, 1479.73], [1052.84, 1467.96]], "length": 16.79}, {"u": 1699123264, "v": 53437720, "oneway": false, "points": [[1040.87, 1479.73], [1035.22, 1485.74], [1034.08, 1487.1], [994.28, 1530.9], [980.81, 1545.68], [968.57, 1557.06], [950.06, 1573.7]], "length": 130.81}, {"u": 1699123264, "v": 53453152, "oneway": true, "points": [[1040.87, 1479.73], [1033.96, 1474.96], [1016.83, 1463.13], [1007.44, 1458.25], [996.7, 1453.7], [985.88, 1450.47], [966.36, 1448.01], [950.82, 1448.2], [925.68, 1448.95], [913.76, 1447.79], [901.39, 1445.49], [888.8, 1441.47], [876.17, 1434.34], [867.86, 1428.3], [843.73, 1411.42], [836.17, 1406.13]], "length": 224.35}, {"u": 1699123266, "v": 53631422, "oneway": true, "points": [[386.67, 1001.36], [380.38, 995.39], [348.66, 965.23], [308.0, 927.65]], "length": 107.8}, {"u": 1699123266, "v": 53455657, "oneway": false, "points": [[386.67, 1001.36], [381.88, 1006.66], [316.62, 1078.94]], "length": 104.53}, {"u": 1699123266, "v": 1699123271, "oneway": false, "points": [[386.67, 1001.36], [393.53, 993.83], [449.67, 932.2], [451.47, 930.23], [455.68, 925.61]], "length": 102.47}, {"u": 1699123271, "v": 316302556, "oneway": false, "points": [[455.68, 925.61], [461.63, 919.08], [517.82, 857.42], [524.02, 850.63]], "length": 101.45}, {"u": 1699123271, "v": 2705148499, "oneway": true, "points": [[455.68, 925.61], [462.54, 931.53], [472.27, 940.01], [486.86, 953.42], [501.32, 967.19], [520.31, 985.29], [528.91, 993.43]], "length": 99.83}, {"u": 1699123271, "v": 1699123266, "oneway": false, "points": [[455.68, 925.61], [451.47, 930.23], [449.67, 932.2], [393.53, 993.83], [386.67, 1001.36]], "length": 102.47}, {"u": 1699123277, "v": 1699123263, "oneway": false, "points": [[687.09, 1272.6], [693.96, 1265.03], [726.08, 1229.7], [747.41, 1205.98], [749.79, 1203.17], [750.89, 1201.87], [754.34, 1197.78]], "length": 100.61}, {"u": 1699123277, "v": 4172253594, "oneway": true, "points": [[687.09, 1272.6], [679.82, 1265.86], [543.26, 1142.37], [537.1, 1135.95]], "length": 202.92}, {"u": 1699123277, "v": 53437707, "oneway": true, "points": [[687.09, 1272.6], [681.75, 1278.46], [634.91, 1329.98]], "length": 77.56}, {"u": 1699123283, "v": 53429624, "oneway": false, "points": [[1102.78, 1531.03], [1112.13, 1520.79]], "length": 13.87}, {"u": 1699123283, "v": 2713391937, "oneway": false, "points": [[1102.78, 1531.03], [1096.8, 1537.06], [968.03, 1680.43], [812.26, 1816.66], [806.85, 1822.01]], "length": 415.75}, {"u": 1699123283, "v": 1699123264, "oneway": true, "points": [[1102.78, 1531.03], [1096.4, 1525.73], [1048.28, 1485.69], [1040.87, 1479.73]], "length": 80.4}, {"u": 1699123288, "v": 53640824, "oneway": false, "points": [[674.03, 985.87], [667.51, 993.01], [612.89, 1052.96], [611.61, 1054.36], [605.92, 1060.6]], "length": 101.11}, {"u": 1699123288, "v": 3270240367, "oneway": false, "points": [[674.03, 985.87], [679.76, 979.58], [732.51, 921.7], [735.27, 918.67], [740.93, 912.46]], "length": 99.32}, {"u": 1699123288, "v": 1699123250, "oneway": false, "points": [[674.03, 985.87], [680.71, 991.98], [682.99, 994.07], [813.85, 1113.51], [816.19, 1115.64], [823.16, 1122.02]], "length": 201.94}, {"u": 1699123288, "v": 316302556, "oneway": false, "points": [[674.03, 985.87], [667.43, 980.1], [664.7, 977.62], [533.55, 858.68], [531.32, 856.79], [524.02, 850.63]], "length": 201.98}, {"u": 1701854143, "v": 2713279291, "oneway": false, "points": [[-515.03, 180.9], [-509.54, 174.79], [-495.85, 159.54], [-454.11, 113.03], [-447.52, 105.69]], "length": 101.07}, {"u": 1701854143, "v": 53472460, "oneway": true, "points": [[-515.03, 180.9], [-524.1, 172.7], [-529.05, 168.22], [-557.94, 142.09], [-566.44, 134.41], [-570.06, 131.13], [-573.28, 128.22], [-576.88, 124.97], [-605.66, 98.95], [-612.22, 93.01]], "length": 131.04}, {"u": 1701854143, "v": 13334632600, "oneway": true, "points": [[-515.03, 180.9], [-517.02, 191.63], [-521.1, 195.54], [-524.67, 198.63], [-527.13, 200.22], [-529.45, 201.33], [-531.7, 201.93], [-533.62, 201.94]], "length": 31.03}, {"u": 1706427633, "v": 449967724, "oneway": true, "points": [[2745.35, 2618.54], [2751.7, 2629.98]], "length": 13.08}, {"u": 1706427633, "v": 2955373055, "oneway": true, "points": [[2745.35, 2618.54], [2754.9, 2613.48], [2772.35, 2603.57], [2781.58, 2598.06], [2793.87, 2591.96], [2802.29, 2589.62], [2810.74, 2588.72], [2820.95, 2588.46], [2824.25, 2588.37], [2831.05, 2589.62], [2837.88, 2591.95]], "length": 100.23}, {"u": 1706427636, "v": 2948595043, "oneway": true, "points": [[2574.59, 2384.16], [2584.69, 2368.56], [2587.67, 2363.95], [2589.03, 2361.52], [2590.68, 2356.71]], "length": 31.94}, {"u": 1706427636, "v": 449957352, "oneway": false, "points": [[2574.59, 2384.16], [2556.24, 2402.0], [2549.62, 2408.43]], "length": 34.82}, {"u": 1706427646, "v": 1706427657, "oneway": true, "points": [[2617.62, 2349.74], [2617.86, 2352.58], [2617.17, 2356.69], [2615.29, 2360.41], [2612.38, 2363.4], [2608.72, 2365.41], [2605.13, 2366.2], [2601.45, 2366.03]], "length": 26.89}, {"u": 1706427647, "v": 1706427633, "oneway": true, "points": [[2729.93, 2627.64], [2745.35, 2618.54]], "length": 17.91}, {"u": 1706427647, "v": 53423568, "oneway": true, "points": [[2729.93, 2627.64], [2723.07, 2616.8], [2705.82, 2588.76], [2693.52, 2573.78], [2684.87, 2564.28], [2672.98, 2551.78], [2666.14, 2544.59]], "length": 105.16}, {"u": 1706427648, "v": 349368476, "oneway": false, "points": [[2127.58, 2337.4], [2122.22, 2343.01], [2111.66, 2354.06], [2110.88, 2354.87], [2065.54, 2399.36], [2063.06, 2401.78], [2057.44, 2409.02]], "length": 100.32}, {"u": 1706427648, "v": 2714912985, "oneway": false, "points": [[2127.58, 2337.4], [2134.79, 2329.89], [2147.29, 2316.85], [2161.21, 2302.34], [2193.08, 2269.85], [2198.03, 2264.85]], "length": 101.13}, {"u": 1706427648, "v": 53498225, "oneway": false, "points": [[2127.58, 2337.4], [2120.35, 2330.35], [1989.07, 2202.87], [1982.62, 2196.6]], "length": 202.08}, {"u": 1706427652, "v": 447178131, "oneway": true, "points": [[2603.12, 2338.48], [2605.13, 2338.51]], "length": 2.01}, {"u": 1706427657, "v": 1706427636, "oneway": true, "points": [[2601.45, 2366.03], [2593.08, 2371.37], [2589.94, 2373.55], [2574.59, 2384.16]], "length": 32.41}, {"u": 1706427657, "v": 2948595043, "oneway": true, "points": [[2601.45, 2366.03], [2597.9, 2364.89], [2594.78, 2362.85], [2592.31, 2360.05], [2590.68, 2356.71]], "length": 14.91}, {"u": 1706427666, "v": 2714912986, "oneway": false, "points": [[2413.31, 2303.71], [2407.12, 2313.35], [2335.2, 2385.61], [2329.67, 2391.44]], "length": 121.44}, {"u": 1706427666, "v": 1706427672, "oneway": true, "points": [[2413.31, 2303.71], [2292.76, 2185.12], [2283.9, 2176.4]], "length": 181.54}, {"u": 1706427669, "v": 53480554, "oneway": false, "points": [[2202.79, 1890.38], [2206.22, 1888.27], [2220.25, 1879.65], [2258.97, 1855.86], [2263.25, 1853.23], [2268.93, 1849.73]], "length": 77.63}, {"u": 1706427672, "v": 449952498, "oneway": false, "points": [[2283.9, 2176.4], [2296.65, 2163.31]], "length": 18.27}, {"u": 1706427672, "v": 2714912985, "oneway": false, "points": [[2283.9, 2176.4], [2275.23, 2184.5], [2257.62, 2203.45], [2235.39, 2226.83], [2205.51, 2257.18], [2198.03, 2264.85]], "length": 123.3}, {"u": 1706427672, "v": 53423556, "oneway": true, "points": [[2283.9, 2176.4], [2276.51, 2169.26], [2263.55, 2156.75], [2159.17, 2055.99], [2156.44, 2053.35], [2145.14, 2042.43], [2139.46, 2036.96]], "length": 200.76}, {"u": 1706427684, "v": 11205598924, "oneway": true, "points": [[2590.45, 2348.74], [2586.92, 2343.22], [2583.03, 2339.43], [2581.93, 2338.28], [2577.45, 2331.95], [2572.94, 2324.86]], "length": 29.73}, {"u": 1706427684, "v": 1706427652, "oneway": true, "points": [[2590.45, 2348.74], [2592.23, 2344.8], [2595.12, 2341.58], [2598.87, 2339.41], [2603.12, 2338.48]], "length": 17.33}, {"u": 1710317933, "v": 1179795960, "oneway": false, "points": [[-1628.33, -1745.2], [-1614.41, -1745.48]], "length": 13.92}, {"u": 1710317933, "v": 2573847784, "oneway": false, "points": [[-1628.33, -1745.2], [-1636.53, -1745.01], [-1665.29, -1744.44], [-1711.95, -1743.45], [-1720.9, -1743.26], [-1748.57, -1742.49], [-1757.1, -1742.46]], "length": 128.8}, {"u": 1710317933, "v": 4089413144, "oneway": true, "points": [[-1628.33, -1745.2], [-1628.82, -1757.12], [-1627.25, -1795.65], [-1622.33, -1822.37], [-1612.07, -1846.9]], "length": 104.25}, {"u": 1777291055, "v": 1777291057, "oneway": false, "points": [[1201.83, 1602.6], [1196.31, 1608.58]], "length": 8.14}, {"u": 1777291055, "v": 53668858, "oneway": false, "points": [[1201.83, 1602.6], [1206.84, 1597.14], [1209.16, 1594.54], [1263.33, 1533.81], [1268.23, 1528.32]], "length": 99.64}, {"u": 1777291055, "v": 456681765, "oneway": true, "points": [[1201.83, 1602.6], [1212.44, 1611.73], [1300.87, 1691.87], [1324.08, 1713.2], [1346.12, 1733.05], [1378.56, 1762.4], [1387.38, 1769.22], [1423.76, 1798.28], [1498.0, 1858.85], [1505.24, 1864.88], [1508.17, 1867.32]], "length": 405.03}, {"u": 1777291057, "v": 1777291055, "oneway": false, "points": [[1196.31, 1608.58], [1201.83, 1602.6]], "length": 8.14}, {"u": 1777291057, "v": 1699123283, "oneway": true, "points": [[1196.31, 1608.58], [1112.33, 1539.52], [1102.78, 1531.03]], "length": 121.5}, {"u": 1850006055, "v": 1850006061, "oneway": false, "points": [[-3013.6, 357.77], [-3019.43, 346.89], [-3022.57, 339.7], [-3024.9, 328.97], [-3026.44, 314.09], [-3026.62, 308.51], [-3026.99, 296.67], [-3026.44, 284.94], [-3023.81, 274.82], [-3022.03, 269.18], [-3010.88, 242.92], [-3008.75, 233.24], [-3008.51, 225.28], [-3008.6, 214.22], [-3010.25, 146.5], [-3010.34, 139.03]], "length": 224.34}, {"u": 1850006061, "v": 8316813421, "oneway": false, "points": [[-3010.34, 139.03], [-3144.59, 144.18]], "length": 134.35}, {"u": 1850006061, "v": 53413619, "oneway": false, "points": [[-3010.34, 139.03], [-3005.24, 138.82], [-3002.88, 138.72], [-2851.69, 132.39], [-2813.85, 130.81], [-2803.66, 130.44]], "length": 206.86}, {"u": 1850006061, "v": 1850006055, "oneway": false, "points": [[-3010.34, 139.03], [-3010.25, 146.5], [-3008.6, 214.22], [-3008.51, 225.28], [-3008.75, 233.24], [-3010.88, 242.92], [-3022.03, 269.18], [-3023.81, 274.82], [-3026.44, 284.94], [-3026.99, 296.67], [-3026.62, 308.51], [-3026.44, 314.09], [-3024.9, 328.97], [-3022.57, 339.7], [-3019.43, 346.89], [-3013.6, 357.77]], "length": 224.34}, {"u": 1857601486, "v": 2848493173, "oneway": false, "points": [[-2732.49, -212.49], [-2732.29, -206.32]], "length": 6.18}, {"u": 1857601486, "v": 53485100, "oneway": false, "points": [[-2732.49, -212.49], [-2732.6, -218.38], [-2732.67, -220.88], [-2732.98, -231.78], [-2733.56, -251.63], [-2733.95, -264.11], [-2734.88, -293.27], [-2735.04, -298.0], [-2735.15, -301.54]], "length": 89.09}, {"u": 1857601486, "v": 2848493174, "oneway": true, "points": [[-2732.49, -212.49], [-2725.01, -212.72], [-2708.65, -213.44], [-2692.11, -214.05], [-2671.46, -215.53], [-2663.17, -216.2], [-2658.75, -216.56], [-2649.14, -217.69]], "length": 83.54}, {"u": 1857601633, "v": 1345420597, "oneway": true, "points": [[-2260.44, -352.68], [-2260.9, -362.68], [-2261.12, -368.72], [-2261.69, -384.43], [-2261.85, -396.8], [-2261.85, -409.14], [-2261.54, -411.5], [-2258.58, -418.23]], "length": 66.22}, {"u": 1944740975, "v": 53514806, "oneway": false, "points": [[-2894.01, -732.41], [-2893.55, -724.33], [-2891.75, -649.37], [-2891.49, -640.88]], "length": 91.57}, {"u": 1944740975, "v": 2298789030, "oneway": false, "points": [[-2894.01, -732.41], [-2894.35, -740.49], [-2895.64, -775.25], [-2896.42, -815.68], [-2900.74, -824.46]], "length": 93.1}, {"u": 1944740975, "v": 2298789025, "oneway": false, "points": [[-2894.01, -732.41], [-2902.21, -732.08], [-2929.44, -730.95], [-2978.47, -728.63], [-3050.44, -725.2], [-3058.4, -724.82]], "length": 164.57}, {"u": 1944740975, "v": 53582923, "oneway": false, "points": [[-2894.01, -732.41], [-2886.47, -732.78], [-2756.15, -738.41], [-2747.79, -738.58]], "length": 146.35}, {"u": 2298789012, "v": 53521155, "oneway": false, "points": [[-3062.12, -817.76], [-3062.58, -827.25], [-3064.1, -864.41], [-3065.49, -898.23], [-3065.64, -901.96], [-3065.97, -909.83]], "length": 92.15}, {"u": 2298789012, "v": 2298789025, "oneway": false, "points": [[-3062.12, -817.76], [-3061.68, -809.0], [-3058.6, -733.67], [-3058.4, -724.82]], "length": 93.02}, {"u": 2298789012, "v": 2298789030, "oneway": false, "points": [[-3062.12, -817.76], [-3054.17, -818.13], [-3006.08, -820.28], [-2980.53, -821.43], [-2913.07, -824.01], [-2900.74, -824.46]], "length": 161.52}, {"u": 2298789025, "v": 53311057, "oneway": false, "points": [[-3058.4, -724.82], [-3058.23, -716.58], [-3057.98, -708.16], [-3061.42, -691.83], [-3066.33, -680.91], [-3072.12, -672.63], [-3078.2, -666.01], [-3086.8, -659.2], [-3098.43, -652.64]], "length": 88.74}, {"u": 2298789025, "v": 2298789012, "oneway": false, "points": [[-3058.4, -724.82], [-3058.6, -733.67], [-3061.68, -809.0], [-3062.12, -817.76]], "length": 93.02}, {"u": 2298789025, "v": 1944740975, "oneway": false, "points": [[-3058.4, -724.82], [-3050.44, -725.2], [-2978.47, -728.63], [-2929.44, -730.95], [-2902.21, -732.08], [-2894.01, -732.41]], "length": 164.57}, {"u": 2298789030, "v": 1944740975, "oneway": false, "points": [[-2900.74, -824.46], [-2896.42, -815.68], [-2895.64, -775.25], [-2894.35, -740.49], [-2894.01, -732.41]], "length": 93.1}, {"u": 2298789030, "v": 13009756501, "oneway": false, "points": [[-2900.74, -824.46], [-2905.72, -832.68], [-2906.79, -884.13]], "length": 61.07}, {"u": 2298789030, "v": 53684762, "oneway": false, "points": [[-2900.74, -824.46], [-2888.59, -824.98], [-2759.22, -830.66], [-2750.77, -831.04]], "length": 150.12}, {"u": 2298789030, "v": 2298789012, "oneway": false, "points": [[-2900.74, -824.46], [-2913.07, -824.01], [-2980.53, -821.43], [-3006.08, -820.28], [-3054.17, -818.13], [-3062.12, -817.76]], "length": 161.52}, {"u": 2384881527, "v": 2859093884, "oneway": false, "points": [[2108.56, 1478.79], [2104.19, 1483.96], [2102.01, 1486.7], [2076.42, 1518.91], [2069.5, 1527.42]], "length": 62.37}, {"u": 2384881527, "v": 53649103, "oneway": true, "points": [[2108.56, 1478.79], [2115.41, 1483.8], [2141.64, 1500.11], [2157.53, 1506.88]], "length": 56.65}, {"u": 2384881533, "v": 3786910293, "oneway": true, "points": [[2046.1, 1554.3], [2030.73, 1572.53], [2025.43, 1578.55], [2018.6, 1586.31]], "length": 42.2}, {"u": 2384881533, "v": 2859093884, "oneway": false, "points": [[2046.1, 1554.3], [2065.59, 1531.92], [2069.5, 1527.42]], "length": 35.65}, {"u": 2384881547, "v": 3786910294, "oneway": true, "points": [[1996.61, 1604.0], [2004.08, 1592.21], [2006.79, 1589.49], [2010.9, 1585.36], [2014.61, 1582.09]], "length": 28.57}, {"u": 2384881547, "v": 3786903332, "oneway": false, "points": [[1996.61, 1604.0], [1987.97, 1612.93], [1974.45, 1626.9], [1970.5, 1631.09], [1952.39, 1650.27], [1945.84, 1657.2]], "length": 73.54}, {"u": 2384881587, "v": 53423529, "oneway": true, "points": [[1819.64, 1737.36], [1759.64, 1680.7], [1745.05, 1666.92], [1728.19, 1649.03], [1723.48, 1644.52], [1672.76, 1595.97], [1643.49, 1568.03], [1629.34, 1554.65], [1605.09, 1531.88], [1578.35, 1506.71], [1578.09, 1506.46], [1576.61, 1505.07], [1566.36, 1496.22]], "length": 349.77}, {"u": 2384881594, "v": 2384881601, "oneway": true, "points": [[1863.83, 1750.33], [1851.17, 1762.83]], "length": 17.79}, {"u": 2384881594, "v": 449952494, "oneway": true, "points": [[1863.83, 1750.33], [1871.45, 1757.47], [2041.81, 1916.94], [2052.13, 1926.54]], "length": 257.88}, {"u": 2384881598, "v": 53719166, "oneway": true, "points": [[1842.0, 1756.03], [1856.57, 1743.69]], "length": 19.1}, {"u": 2384881598, "v": 2384881587, "oneway": true, "points": [[1842.0, 1756.03], [1834.17, 1749.77], [1819.64, 1737.36]], "length": 29.13}, {"u": 2384881601, "v": 2384881598, "oneway": true, "points": [[1851.17, 1762.83], [1842.0, 1756.03]], "length": 11.41}, {"u": 2384881601, "v": 53538723, "oneway": true, "points": [[1851.17, 1762.83], [1841.96, 1771.16], [1816.9, 1793.26], [1807.53, 1801.82], [1795.95, 1813.7], [1773.05, 1837.16], [1763.76, 1846.69]], "length": 121.21}, {"u": 2384881629, "v": 2384881598, "oneway": true, "points": [[1784.45, 1806.25], [1831.04, 1765.98], [1833.45, 1763.79], [1842.0, 1756.03]], "length": 76.39}, {"u": 2384881629, "v": 2384881587, "oneway": true, "points": [[1784.45, 1806.25], [1797.28, 1789.74], [1802.19, 1783.42], [1809.44, 1774.09], [1820.08, 1756.88], [1821.42, 1753.73], [1822.67, 1748.82], [1821.98, 1743.45], [1819.64, 1737.36]], "length": 81.39}, {"u": 2384881635, "v": 53538723, "oneway": false, "points": [[1754.78, 1838.94], [1763.76, 1846.69]], "length": 11.86}, {"u": 2384881635, "v": 2384881629, "oneway": true, "points": [[1754.78, 1838.94], [1763.88, 1828.92], [1784.45, 1806.25]], "length": 44.14}, {"u": 2384881652, "v": 456681760, "oneway": true, "points": [[1510.16, 1879.36], [1510.73, 1889.4]], "length": 10.06}, {"u": 2384881652, "v": 1142903104, "oneway": true, "points": [[1510.16, 1879.36], [1514.16, 1879.37], [1516.74, 1879.54], [1526.47, 1882.99]], "length": 16.9}, {"u": 2384881654, "v": 2384881652, "oneway": true, "points": [[1504.69, 1882.58], [1510.16, 1879.36]], "length": 6.35}, {"u": 2384881654, "v": 1777291057, "oneway": true, "points": [[1504.69, 1882.58], [1502.87, 1880.53], [1497.26, 1874.22], [1446.35, 1832.96], [1374.09, 1767.13], [1341.63, 1737.95], [1319.47, 1720.16], [1206.71, 1617.76], [1196.31, 1608.58]], "length": 412.72}, {"u": 2384881666, "v": 2384881679, "oneway": true, "points": [[1511.21, 1921.03], [1509.19, 1930.47]], "length": 9.65}, {"u": 2384881679, "v": 2384881654, "oneway": true, "points": [[1509.19, 1930.47], [1503.89, 1914.94], [1502.26, 1895.82], [1502.27, 1893.28], [1504.69, 1882.58]], "length": 49.11}, {"u": 2384881679, "v": 2712062761, "oneway": false, "points": [[1509.19, 1930.47], [1510.4, 1946.78], [1511.36, 1959.75], [1516.26, 2006.37], [1519.96, 2041.5], [1523.53, 2075.45], [1527.05, 2108.9], [1529.39, 2144.22], [1531.55, 2176.78], [1529.55, 2198.28], [1527.13, 2213.05], [1522.28, 2234.62], [1509.16, 2267.75], [1502.93, 2281.86], [1497.65, 2295.94], [1492.85, 2308.71]], "length": 385.77}, {"u": 2573847767, "v": 2573847776, "oneway": false, "points": [[-1723.38, -1907.01], [-1730.7, -1911.03], [-1765.92, -1930.34], [-1803.05, -1949.65], [-1807.47, -1951.97]], "length": 95.35}, {"u": 2573847767, "v": 4089413144, "oneway": false, "points": [[-1723.38, -1907.01], [-1714.38, -1902.17], [-1657.79, -1871.04], [-1622.22, -1850.62], [-1619.46, -1849.04], [-1612.07, -1846.9]], "length": 126.7}, {"u": 2573847767, "v": 53447618, "oneway": false, "points": [[-1723.38, -1907.01], [-1721.38, -1910.66], [-1691.26, -1965.76], [-1690.47, -1967.22], [-1686.79, -1973.96]], "length": 76.3}, {"u": 2573847767, "v": 2573847784, "oneway": false, "points": [[-1723.38, -1907.01], [-1724.31, -1899.43], [-1726.29, -1872.81], [-1726.69, -1867.45], [-1726.82, -1865.74], [-1727.59, -1857.4], [-1727.89, -1854.11], [-1728.79, -1848.02], [-1729.86, -1840.8], [-1731.08, -1835.08], [-1732.61, -1828.96], [-1733.87, -1823.85], [-1734.76, -1820.27], [-1737.4, -1812.04], [-1741.89, -1800.57], [-1743.71, -1795.93], [-1746.22, -1790.32], [-1752.4, -1776.56], [-1755.27, -1765.49], [-1757.12, -1756.12], [-1757.08, -1752.81], [-1757.1, -1742.46]], "length": 169.49}, {"u": 2573847770, "v": 270405510, "oneway": false, "points": [[-1896.1, -2001.38], [-1896.39, -2016.82], [-1896.29, -2025.43]], "length": 24.06}, {"u": 2573847770, "v": 4095684894, "oneway": false, "points": [[-1896.1, -2001.38], [-1895.77, -1987.6], [-1895.23, -1965.13]], "length": 36.25}, {"u": 2573847770, "v": 2573847776, "oneway": false, "points": [[-1896.1, -2001.38], [-1886.15, -1996.43], [-1883.76, -1995.05], [-1853.2, -1977.54], [-1812.43, -1954.6], [-1807.47, -1951.97]], "length": 101.49}, {"u": 2573847776, "v": 53447620, "oneway": false, "points": [[-1807.47, -1951.97], [-1804.67, -1957.37], [-1803.41, -1959.64], [-1775.44, -2010.18], [-1774.32, -2012.19], [-1770.22, -2019.82]], "length": 77.41}, {"u": 2573847776, "v": 2573847767, "oneway": false, "points": [[-1807.47, -1951.97], [-1803.05, -1949.65], [-1765.92, -1930.34], [-1730.7, -1911.03], [-1723.38, -1907.01]], "length": 95.35}, {"u": 2573847776, "v": 2573847770, "oneway": false, "points": [[-1807.47, -1951.97], [-1812.43, -1954.6], [-1853.2, -1977.54], [-1883.76, -1995.05], [-1886.15, -1996.43], [-1896.1, -2001.38]], "length": 101.49}, {"u": 2573847782, "v": 2573847784, "oneway": false, "points": [[-1888.6, -1739.78], [-1879.2, -1740.07], [-1833.97, -1741.46], [-1783.93, -1742.1], [-1766.61, -1742.33], [-1757.1, -1742.46]], "length": 131.54}, {"u": 2573847782, "v": 4095666564, "oneway": false, "points": [[-1888.6, -1739.78], [-1888.93, -1748.82], [-1890.71, -1798.03], [-1891.29, -1816.52]], "length": 76.78}, {"u": 2573847782, "v": 53478277, "oneway": false, "points": [[-1888.6, -1739.78], [-1896.53, -1739.61], [-1922.0, -1739.05], [-2004.73, -1735.85], [-2116.9, -1731.52], [-2122.77, -1731.3]], "length": 234.32}, {"u": 2573847782, "v": 53529689, "oneway": false, "points": [[-1888.6, -1739.78], [-1888.19, -1728.46], [-1886.4, -1679.83], [-1884.58, -1630.26], [-1884.17, -1619.2]], "length": 120.66}, {"u": 2573847784, "v": 2573847782, "oneway": false, "points": [[-1757.1, -1742.46], [-1766.61, -1742.33], [-1783.93, -1742.1], [-1833.97, -1741.46], [-1879.2, -1740.07], [-1888.6, -1739.78]], "length": 131.54}, {"u": 2573847784, "v": 1710317933, "oneway": false, "points": [[-1757.1, -1742.46], [-1748.57, -1742.49], [-1720.9, -1743.26], [-1711.95, -1743.45], [-1665.29, -1744.44], [-1636.53, -1745.01], [-1628.33, -1745.2]], "length": 128.8}, {"u": 2573847784, "v": 53529686, "oneway": false, "points": [[-1757.1, -1742.46], [-1756.83, -1732.33], [-1756.79, -1728.8], [-1756.28, -1691.74], [-1756.15, -1682.34], [-1754.51, -1633.11], [-1754.14, -1621.95]], "length": 120.55}, {"u": 2573847784, "v": 2573847767, "oneway": false, "points": [[-1757.1, -1742.46], [-1757.08, -1752.81], [-1757.12, -1756.12], [-1755.27, -1765.49], [-1752.4, -1776.56], [-1746.22, -1790.32], [-1743.71, -1795.93], [-1741.89, -1800.57], [-1737.4, -1812.04], [-1734.76, -1820.27], [-1733.87, -1823.85], [-1732.61, -1828.96], [-1731.08, -1835.08], [-1729.86, -1840.8], [-1728.79, -1848.02], [-1727.89, -1854.11], [-1727.59, -1857.4], [-1726.82, -1865.74], [-1726.69, -1867.45], [-1726.29, -1872.81], [-1724.31, -1899.43], [-1723.38, -1907.01]], "length": 169.49}, {"u": 2573847790, "v": 53576829, "oneway": false, "points": [[-1746.84, -1257.69], [-1754.89, -1257.59], [-1816.01, -1256.86], [-1839.95, -1256.57], [-1867.4, -1255.88], [-1875.3, -1255.67]], "length": 128.48}, {"u": 2573847790, "v": 1179459737, "oneway": false, "points": [[-1746.84, -1257.69], [-1736.76, -1257.96], [-1629.55, -1260.97], [-1626.09, -1261.07], [-1616.3, -1261.22]], "length": 130.58}, {"u": 2573847790, "v": 53676376, "oneway": false, "points": [[-1746.84, -1257.69], [-1746.55, -1248.05], [-1746.45, -1244.3], [-1743.81, -1154.67], [-1743.63, -1149.04], [-1743.31, -1137.41]], "length": 120.32}, {"u": 2573847790, "v": 53621256, "oneway": false, "points": [[-1746.84, -1257.69], [-1746.76, -1269.84], [-1746.76, -1272.18], [-1746.54, -1319.44], [-1747.8, -1367.64], [-1748.09, -1379.25]], "length": 121.58}, {"u": 2627868774, "v": 53498398, "oneway": false, "points": [[2516.23, 2239.49], [2523.28, 2239.85], [2527.62, 2240.09], [2535.37, 2241.7], [2550.31, 2250.51], [2567.01, 2251.31], [2573.5, 2250.96]], "length": 59.89}, {"u": 2627868774, "v": 2948595023, "oneway": false, "points": [[2516.23, 2239.49], [2509.55, 2237.67], [2505.7, 2236.32]], "length": 11.0}, {"u": 2627868774, "v": 53447046, "oneway": true, "points": [[2516.23, 2239.49], [2518.38, 2242.84], [2533.42, 2268.01], [2536.88, 2274.66], [2537.07, 2275.72], [2538.45, 2283.54]], "length": 49.82}, {"u": 2627868777, "v": 53604822, "oneway": false, "points": [[2464.54, 2164.37], [2462.92, 2161.79]], "length": 3.04}, {"u": 2627868777, "v": 2627868774, "oneway": true, "points": [[2464.54, 2164.37], [2468.01, 2167.61], [2472.14, 2171.89], [2477.29, 2179.7], [2502.26, 2217.63], [2516.23, 2239.49]], "length": 91.4}, {"u": 2634682652, "v": 2634682653, "oneway": false, "points": [[-363.77, -2503.76], [-405.05, -2487.8]], "length": 44.26}, {"u": 2634682652, "v": 53544865, "oneway": false, "points": [[-363.77, -2503.76], [-362.89, -2486.79], [-359.46, -2413.35], [-359.15, -2406.87]], "length": 97.0}, {"u": 2634682652, "v": 316562664, "oneway": false, "points": [[-363.77, -2503.76], [-287.44, -2534.14], [-280.44, -2536.91]], "length": 89.68}, {"u": 2634682653, "v": 316562665, "oneway": false, "points": [[-405.05, -2487.8], [-415.65, -2483.71]], "length": 11.36}, {"u": 2634682653, "v": 2634682652, "oneway": false, "points": [[-405.05, -2487.8], [-363.77, -2503.76]], "length": 44.26}, {"u": 2634682653, "v": 53552968, "oneway": false, "points": [[-405.05, -2487.8], [-403.47, -2413.99], [-403.27, -2404.84]], "length": 82.98}, {"u": 2634682669, "v": 316562667, "oneway": false, "points": [[-527.45, -2444.18], [-527.73, -2451.27]], "length": 7.09}, {"u": 2634682669, "v": 53642782, "oneway": false, "points": [[-527.45, -2444.18], [-527.25, -2439.03], [-525.99, -2406.81], [-525.71, -2399.69]], "length": 44.53}, {"u": 2634682669, "v": 53463567, "oneway": true, "points": [[-527.45, -2444.18], [-536.33, -2442.69], [-561.18, -2438.5], [-612.63, -2433.19], [-651.19, -2430.41], [-697.4, -2428.69], [-741.98, -2426.62], [-747.87, -2426.38]], "length": 221.35}, {"u": 2634693264, "v": 53447075, "oneway": false, "points": [[-34.46, -2070.35], [-25.79, -2070.73], [-22.69, -2070.88]], "length": 11.78}, {"u": 2634693266, "v": 53447075, "oneway": false, "points": [[-12.51, -2071.32], [-22.69, -2070.88]], "length": 10.18}, {"u": 2634693274, "v": 3755083604, "oneway": false, "points": [[-579.67, -2202.28], [-578.69, -2192.9], [-575.48, -2162.17], [-557.58, -1991.27]], "length": 212.16}, {"u": 2634693274, "v": 53438623, "oneway": false, "points": [[-579.67, -2202.28], [-623.84, -2200.36], [-640.11, -2199.66], [-644.36, -2199.48], [-647.04, -2199.36]], "length": 67.43}, {"u": 2634693274, "v": 1612121520, "oneway": false, "points": [[-579.67, -2202.28], [-576.87, -2202.4], [-538.52, -2204.06], [-509.01, -2205.34]], "length": 70.73}, {"u": 2634693276, "v": 53438624, "oneway": false, "points": [[-513.85, -2301.96], [-530.91, -2301.07], [-580.04, -2298.51], [-625.85, -2296.13], [-645.18, -2295.12], [-653.7, -2294.68]], "length": 140.04}, {"u": 2634693276, "v": 53543498, "oneway": false, "points": [[-513.85, -2301.96], [-403.75, -2307.69], [-399.45, -2307.91]], "length": 114.55}, {"u": 2634693276, "v": 53562507, "oneway": true, "points": [[-513.85, -2301.96], [-514.21, -2310.6], [-515.88, -2350.85], [-517.55, -2391.46], [-517.9, -2400.02]], "length": 98.14}, {"u": 2634693278, "v": 12911858894, "oneway": false, "points": [[-1533.1, -1626.72], [-1536.18, -1747.0]], "length": 120.31}, {"u": 2634693278, "v": 53511571, "oneway": false, "points": [[-1533.1, -1626.72], [-1529.74, -1505.17]], "length": 121.6}, {"u": 2634693278, "v": 1179795931, "oneway": false, "points": [[-1533.1, -1626.72], [-1540.41, -1626.6], [-1589.9, -1625.79], [-1594.79, -1625.7], [-1599.9, -1625.63], [-1603.19, -1625.55], [-1611.39, -1625.34]], "length": 78.3}, {"u": 2634693299, "v": 2634708186, "oneway": true, "points": [[-730.26, -2107.34], [-725.81, -2108.71], [-721.91, -2111.08], [-720.23, -2114.03], [-719.46, -2117.5], [-720.3, -2147.0], [-721.18, -2163.0], [-722.06, -2173.7], [-722.98, -2187.37], [-723.21, -2196.88]], "length": 95.65}, {"u": 2634693299, "v": 53434870, "oneway": false, "points": [[-730.26, -2107.34], [-733.53, -2106.79], [-739.7, -2106.28], [-771.44, -2104.93], [-886.73, -2098.11], [-895.98, -2098.71]], "length": 166.04}, {"u": 2634708186, "v": 53463567, "oneway": false, "points": [[-723.21, -2196.88], [-723.66, -2205.08], [-725.13, -2231.67], [-730.6, -2276.63], [-734.44, -2307.07], [-747.36, -2418.73], [-747.57, -2421.07], [-747.87, -2426.38]], "length": 230.89}, {"u": 2634708186, "v": 53434871, "oneway": false, "points": [[-723.21, -2196.88], [-729.97, -2196.64], [-777.51, -2195.46], [-892.53, -2191.79], [-899.4, -2191.44]], "length": 176.28}, {"u": 2634708186, "v": 53438623, "oneway": false, "points": [[-723.21, -2196.88], [-714.8, -2197.12], [-693.85, -2197.68], [-668.65, -2198.42], [-658.88, -2198.84], [-655.93, -2198.97], [-647.04, -2199.36]], "length": 76.21}, {"u": 2635256558, "v": 2726180832, "oneway": false, "points": [[-3018.67, -1724.71], [-3009.13, -1735.75], [-3005.13, -1739.7], [-3000.38, -1744.28], [-2995.54, -1747.64], [-2990.07, -1751.24], [-2984.19, -1754.58], [-2975.53, -1757.88], [-2965.38, -1760.55], [-2959.71, -1762.04], [-2953.83, -1762.69]], "length": 77.55}, {"u": 2635256558, "v": 2637056004, "oneway": false, "points": [[-3018.67, -1724.71], [-3024.67, -1717.72], [-3040.81, -1698.89], [-3067.21, -1667.71], [-3081.15, -1649.92]], "length": 97.47}, {"u": 2635256558, "v": 2635256569, "oneway": false, "points": [[-3018.67, -1724.71], [-2998.94, -1707.2], [-2961.24, -1674.38], [-2919.67, -1640.57]], "length": 129.95}, {"u": 2635256569, "v": 2635256558, "oneway": false, "points": [[-2919.67, -1640.57], [-2961.24, -1674.38], [-2998.94, -1707.2], [-3018.67, -1724.71]], "length": 129.95}, {"u": 2635256569, "v": 2635256574, "oneway": false, "points": [[-2919.67, -1640.57], [-2901.35, -1624.2], [-2832.77, -1566.05], [-2821.08, -1555.95]], "length": 129.93}, {"u": 2635256569, "v": 53444645, "oneway": false, "points": [[-2919.67, -1640.57], [-2925.69, -1633.46], [-2951.18, -1603.29], [-2976.5, -1573.33], [-2981.6, -1567.3]], "length": 95.94}, {"u": 2635256574, "v": 2635256569, "oneway": false, "points": [[-2821.08, -1555.95], [-2832.77, -1566.05], [-2901.35, -1624.2], [-2919.67, -1640.57]], "length": 129.93}, {"u": 2635256574, "v": 53621168, "oneway": false, "points": [[-2821.08, -1555.95], [-2814.75, -1550.95], [-2801.18, -1539.62], [-2768.8, -1512.65], [-2722.5, -1472.52]], "length": 129.16}, {"u": 2635256574, "v": 53444642, "oneway": false, "points": [[-2821.08, -1555.95], [-2826.47, -1549.05], [-2852.08, -1519.51], [-2878.36, -1489.05], [-2884.02, -1482.91]], "length": 96.42}, {"u": 2637056004, "v": 53444645, "oneway": false, "points": [[-3081.15, -1649.92], [-3074.92, -1644.75], [-3059.89, -1632.27], [-3036.0, -1612.44], [-3014.06, -1594.24], [-2992.35, -1576.21], [-2989.05, -1573.47], [-2981.6, -1567.3]], "length": 129.38}, {"u": 2637056004, "v": 2635256558, "oneway": false, "points": [[-3081.15, -1649.92], [-3067.21, -1667.71], [-3040.81, -1698.89], [-3024.67, -1717.72], [-3018.67, -1724.71]], "length": 97.47}, {"u": 2637056004, "v": 3812685629, "oneway": false, "points": [[-3081.15, -1649.92], [-3087.42, -1642.67], [-3098.51, -1629.86], [-3106.51, -1619.29], [-3113.07, -1611.99], [-3137.86, -1582.63], [-3143.48, -1575.76], [-3137.58, -1570.37], [-3131.01, -1564.34]], "length": 113.81}, {"u": 2637157420, "v": 53454658, "oneway": false, "points": [[-2491.41, -1360.58], [-2549.91, -1359.0], [-2559.09, -1358.71]], "length": 67.71}, {"u": 2637157420, "v": 53590715, "oneway": true, "points": [[-2491.41, -1360.58], [-2491.18, -1366.92], [-2490.13, -1370.84], [-2489.46, -1373.35], [-2486.58, -1379.86], [-2482.62, -1385.64], [-2479.21, -1389.49], [-2473.56, -1394.55], [-2467.32, -1397.93], [-2457.77, -1401.11], [-2449.93, -1403.23], [-2436.47, -1405.62], [-2429.84, -1405.75]], "length": 85.44}, {"u": 2637710726, "v": 53727087, "oneway": false, "points": [[191.58, -3102.78], [249.57, -3093.24], [258.35, -3090.89]], "length": 67.86}, {"u": 2637710726, "v": 53624470, "oneway": false, "points": [[191.58, -3102.78], [180.73, -3104.4], [158.0, -3107.8], [145.34, -3109.63], [128.24, -3111.33], [69.31, -3115.78], [28.1, -3116.08], [22.74, -3115.79], [-39.53, -3112.28], [-86.81, -3110.27], [-181.61, -3106.24]], "length": 374.18}, {"u": 2637766380, "v": 4687823320, "oneway": true, "points": [[215.61, -2830.57], [230.26, -2878.65], [240.38, -2908.07], [252.1, -2935.75], [261.21, -2952.99], [297.08, -3020.89]], "length": 207.73}, {"u": 2637766387, "v": 6291669589, "oneway": false, "points": [[115.47, -2742.89], [103.48, -2731.66], [70.33, -2699.04], [58.24, -2688.26], [54.12, -2684.58], [41.76, -2674.78], [38.49, -2672.69], [19.9, -2660.82], [-11.16, -2644.05], [-33.37, -2634.39], [-39.59, -2631.68], [-41.2, -2631.09], [-53.22, -2626.67]], "length": 207.19}, {"u": 2637766387, "v": 2637766380, "oneway": true, "points": [[115.47, -2742.89], [123.99, -2754.33], [135.59, -2763.52], [144.38, -2767.32], [164.94, -2774.4], [180.08, -2784.58], [188.8, -2792.9], [195.09, -2798.9], [205.36, -2813.37], [215.61, -2830.57]], "length": 137.13}, {"u": 2637766387, "v": 452816429, "oneway": false, "points": [[115.47, -2742.89], [135.11, -2757.56], [152.73, -2765.4], [177.81, -2769.33], [187.26, -2770.18], [198.76, -2771.22]], "length": 90.22}, {"u": 2637766399, "v": 452816429, "oneway": true, "points": [[160.65, -2649.06], [171.33, -2679.59], [177.0, -2697.7], [182.49, -2716.87], [198.76, -2771.22]], "length": 128.0}, {"u": 2637766399, "v": 2637766387, "oneway": true, "points": [[160.65, -2649.06], [162.33, -2669.42], [172.57, -2704.48], [178.12, -2722.27], [178.68, -2732.4], [178.06, -2740.79], [176.81, -2744.19], [175.49, -2747.81], [170.26, -2754.16], [161.85, -2757.77], [152.04, -2758.67], [138.79, -2755.33], [115.47, -2742.89]], "length": 168.95}, {"u": 2638675157, "v": 53679819, "oneway": false, "points": [[-1584.58, -2812.28], [-1593.29, -2805.39], [-1608.8, -2793.14], [-1625.25, -2775.33], [-1629.44, -2759.42], [-1632.88, -2734.65], [-1652.4, -2522.13], [-1655.38, -2498.26]], "length": 334.03}, {"u": 2638675157, "v": 53639885, "oneway": false, "points": [[-1584.58, -2812.28], [-1589.28, -2820.17], [-1604.77, -2847.45]], "length": 40.55}, {"u": 2638675157, "v": 4248941674, "oneway": false, "points": [[-1584.58, -2812.28], [-1575.47, -2819.24], [-1557.44, -2833.02]], "length": 34.16}, {"u": 2638675157, "v": 10829398901, "oneway": false, "points": [[-1584.58, -2812.28], [-1580.22, -2805.16], [-1558.25, -2769.95], [-1542.08, -2737.23], [-1535.36, -2721.82], [-1523.32, -2689.99], [-1512.28, -2650.78], [-1510.72, -2643.73], [-1509.31, -2631.5], [-1508.17, -2621.6]], "length": 207.42}, {"u": 2638675190, "v": 53679819, "oneway": false, "points": [[-1501.25, -2504.23], [-1514.79, -2504.51], [-1518.06, -2504.34], [-1611.97, -2499.28], [-1647.28, -2498.45], [-1655.38, -2498.26]], "length": 154.28}, {"u": 2638675190, "v": 2638675244, "oneway": false, "points": [[-1501.25, -2504.23], [-1500.54, -2488.86], [-1496.54, -2384.25], [-1496.21, -2377.01]], "length": 127.32}, {"u": 2638675190, "v": 10829398901, "oneway": false, "points": [[-1501.25, -2504.23], [-1501.72, -2511.73], [-1502.53, -2518.81], [-1506.32, -2585.93], [-1507.53, -2612.52], [-1507.8, -2618.43], [-1508.17, -2621.6]], "length": 117.6}, {"u": 2638675236, "v": 1180187547, "oneway": false, "points": [[-1230.41, -2529.65], [-1215.22, -2524.69]], "length": 15.99}, {"u": 2638675236, "v": 1180187578, "oneway": true, "points": [[-1230.41, -2529.65], [-1220.78, -2547.1], [-1219.24, -2549.9], [-1201.61, -2583.29], [-1187.79, -2615.43], [-1186.44, -2618.58], [-1178.37, -2638.67], [-1175.1, -2646.81], [-1169.05, -2661.87]], "length": 145.95}, {"u": 2638675244, "v": 2638675253, "oneway": false, "points": [[-1496.21, -2377.01], [-1488.87, -2376.1], [-1486.21, -2376.23], [-1484.6, -2376.31], [-1433.54, -2378.86], [-1388.11, -2381.2], [-1381.66, -2378.12]], "length": 115.44}, {"u": 2638675244, "v": 2638675190, "oneway": false, "points": [[-1496.21, -2377.01], [-1496.54, -2384.25], [-1500.54, -2488.86], [-1501.25, -2504.23]], "length": 127.32}, {"u": 2638675244, "v": 2771341200, "oneway": false, "points": [[-1496.21, -2377.01], [-1495.82, -2369.22], [-1491.41, -2279.93], [-1491.08, -2273.31]], "length": 103.82}, {"u": 2638675244, "v": 53679815, "oneway": false, "points": [[-1496.21, -2377.01], [-1508.8, -2376.71], [-1512.43, -2376.47], [-1553.01, -2373.84], [-1570.2, -2373.54], [-1586.8, -2374.63], [-1623.04, -2382.04], [-1667.71, -2395.03], [-1676.28, -2396.94]], "length": 183.01}, {"u": 2638675253, "v": 53473010, "oneway": false, "points": [[-1381.66, -2378.12], [-1375.16, -2390.42]], "length": 13.91}, {"u": 2638675253, "v": 2638675244, "oneway": false, "points": [[-1381.66, -2378.12], [-1388.11, -2381.2], [-1433.54, -2378.86], [-1484.6, -2376.31], [-1486.21, -2376.23], [-1488.87, -2376.1], [-1496.21, -2377.01]], "length": 115.44}, {"u": 2638675253, "v": 1180187677, "oneway": false, "points": [[-1381.66, -2378.12], [-1353.0, -2361.29], [-1342.85, -2355.55], [-1339.47, -2353.64], [-1333.79, -2350.42]], "length": 55.31}, {"u": 2638675264, "v": 53473010, "oneway": false, "points": [[-1312.82, -2502.97], [-1355.35, -2421.48], [-1358.31, -2416.85], [-1364.08, -2407.8], [-1375.16, -2390.42]], "length": 128.76}, {"u": 2705148498, "v": 53416322, "oneway": true, "points": [[461.32, 1066.33], [452.1, 1058.95]], "length": 11.81}, {"u": 2705148498, "v": 2705148499, "oneway": false, "points": [[461.32, 1066.33], [467.24, 1059.95], [496.37, 1028.53], [523.54, 999.22], [528.91, 993.43]], "length": 99.41}, {"u": 2705148499, "v": 53640824, "oneway": true, "points": [[528.91, 993.43], [542.25, 1005.06], [598.88, 1054.45], [605.92, 1060.6]], "length": 102.19}, {"u": 2705148499, "v": 2705148498, "oneway": false, "points": [[528.91, 993.43], [523.54, 999.22], [496.37, 1028.53], [467.24, 1059.95], [461.32, 1066.33]], "length": 99.41}, {"u": 2705148524, "v": 53461154, "oneway": false, "points": [[171.7, 937.93], [230.33, 873.66], [232.64, 871.12], [239.03, 864.11]], "length": 99.92}, {"u": 2705151904, "v": 53416322, "oneway": false, "points": [[351.71, 1124.65], [370.84, 1141.72], [372.59, 1142.78], [374.52, 1143.05], [376.42, 1142.57], [377.98, 1141.39], [387.2, 1131.15], [430.68, 1082.78], [443.72, 1068.27], [446.53, 1065.15], [452.1, 1058.95]], "length": 144.4}, {"u": 2707919647, "v": 53461450, "oneway": false, "points": [[906.35, 124.15], [902.81, 130.69], [902.13, 131.95], [893.53, 146.32], [885.7, 153.52]], "length": 36.25}, {"u": 2707919868, "v": 53558139, "oneway": false, "points": [[2094.8, 1107.63], [2101.02, 1100.99], [2125.55, 1073.14], [2154.19, 1040.94], [2155.17, 1039.59], [2161.17, 1031.29]], "length": 101.21}, {"u": 2707919868, "v": 53461503, "oneway": false, "points": [[2094.8, 1107.63], [2084.33, 1117.81], [2029.08, 1167.98], [2020.45, 1175.8]], "length": 100.88}, {"u": 2707919868, "v": 53494572, "oneway": false, "points": [[2094.8, 1107.63], [2089.42, 1102.7], [2008.22, 1028.36], [2000.57, 1021.36]], "length": 127.76}, {"u": 2712062758, "v": 2712062759, "oneway": false, "points": [[1482.3, 2416.96], [1482.07, 2398.27]], "length": 18.69}, {"u": 2712062758, "v": 496686196, "oneway": false, "points": [[1482.3, 2416.96], [1478.36, 2417.16], [1473.58, 2418.14], [1468.89, 2419.28], [1458.27, 2423.28], [1404.09, 2442.26], [1378.28, 2450.2], [1363.25, 2455.96], [1339.53, 2466.57], [1336.46, 2466.79], [1333.43, 2465.73], [1330.75, 2463.66], [1327.88, 2458.96], [1318.32, 2440.91], [1307.95, 2420.72], [1305.21, 2416.6], [1301.81, 2414.02], [1296.34, 2413.28], [1290.76, 2414.89], [1285.45, 2417.04], [1246.49, 2436.25], [1236.61, 2441.2], [1231.0, 2444.79], [1223.01, 2449.92]], "length": 306.71}, {"u": 2712062758, "v": 496686159, "oneway": false, "points": [[1482.3, 2416.96], [1482.45, 2421.11], [1483.8, 2440.86], [1485.9, 2471.6]], "length": 54.76}, {"u": 2712062759, "v": 2712062758, "oneway": false, "points": [[1482.07, 2398.27], [1482.3, 2416.96]], "length": 18.69}, {"u": 2712062759, "v": 496686170, "oneway": false, "points": [[1482.07, 2398.27], [1474.64, 2398.13], [1471.74, 2396.75], [1470.63, 2392.24], [1471.45, 2365.3], [1473.55, 2336.38], [1474.72, 2333.04], [1477.15, 2331.82], [1480.65, 2331.75], [1487.75, 2332.11]], "length": 88.1}, {"u": 2712062759, "v": 496686170, "oneway": false, "points": [[1482.07, 2398.27], [1482.12, 2382.6], [1484.14, 2354.8], [1487.75, 2332.11]], "length": 66.52}, {"u": 2712062761, "v": 496686170, "oneway": false, "points": [[1492.85, 2308.71], [1487.75, 2332.11]], "length": 23.96}, {"u": 2712062761, "v": 2713391900, "oneway": false, "points": [[1492.85, 2308.71], [1486.53, 2307.1], [1479.53, 2306.16], [1471.18, 2305.7], [1459.22, 2305.98], [1277.46, 2311.16], [1270.95, 2311.84], [1262.06, 2314.1], [1253.77, 2317.77], [1240.84, 2325.25], [1183.34, 2357.17], [1175.96, 2361.67]], "length": 329.87}, {"u": 2712062761, "v": 2384881679, "oneway": false, "points": [[1492.85, 2308.71], [1497.65, 2295.94], [1502.93, 2281.86], [1509.16, 2267.75], [1522.28, 2234.62], [1527.13, 2213.05], [1529.55, 2198.28], [1531.55, 2176.78], [1529.39, 2144.22], [1527.05, 2108.9], [1523.53, 2075.45], [1519.96, 2041.5], [1516.26, 2006.37], [1511.36, 1959.75], [1510.4, 1946.78], [1509.19, 1930.47]], "length": 385.77}, {"u": 2713279290, "v": 13334632578, "oneway": false, "points": [[-395.79, 48.97], [-428.42, 84.41]], "length": 48.17}, {"u": 2713279290, "v": 1160692039, "oneway": true, "points": [[-395.79, 48.97], [-396.03, 43.54], [-394.87, 38.48], [-392.22, 33.87], [-385.51, 26.53]], "length": 25.88}, {"u": 2713279291, "v": 1701854143, "oneway": false, "points": [[-447.52, 105.69], [-454.11, 113.03], [-495.85, 159.54], [-509.54, 174.79], [-515.03, 180.9]], "length": 101.07}, {"u": 2713279291, "v": 53640838, "oneway": true, "points": [[-447.52, 105.69], [-433.63, 118.6], [-391.53, 157.01], [-388.07, 160.17], [-387.68, 160.53], [-380.57, 167.03], [-374.28, 172.76], [-357.11, 188.44], [-350.69, 194.3]], "length": 131.25}, {"u": 2713279291, "v": 13334632578, "oneway": true, "points": [[-447.52, 105.69], [-447.11, 95.59], [-442.22, 90.2], [-439.38, 87.75], [-435.82, 85.66], [-431.9, 84.64], [-428.42, 84.41]], "length": 32.81}, {"u": 2713292536, "v": 1142904218, "oneway": false, "points": [[468.6, 313.24], [476.33, 305.63], [477.6, 304.11], [535.72, 241.33]], "length": 98.38}, {"u": 2713292536, "v": 53423466, "oneway": false, "points": [[468.6, 313.24], [462.0, 319.54], [460.39, 321.4], [431.33, 354.99], [427.88, 358.97], [426.72, 360.39], [424.36, 362.86], [395.08, 393.35], [392.68, 395.89], [387.05, 402.61]], "length": 121.05}, {"u": 2713292536, "v": 1142903857, "oneway": false, "points": [[468.6, 313.24], [475.13, 318.49], [544.52, 379.31], [609.7, 442.14], [616.35, 448.53]], "length": 200.41}, {"u": 2713292536, "v": 53407941, "oneway": false, "points": [[468.6, 313.24], [461.34, 306.51], [426.4, 275.6], [392.98, 244.89], [359.39, 214.95], [356.79, 212.67], [349.71, 206.26], [347.53, 204.37], [327.34, 186.25], [325.03, 184.07], [318.52, 177.71]], "length": 202.24}, {"u": 2713311875, "v": 53408525, "oneway": false, "points": [[1804.44, 1450.09], [1767.25, 1480.27], [1760.93, 1485.94]], "length": 56.38}, {"u": 2713311958, "v": 366215894, "oneway": true, "points": [[634.23, 650.52], [631.34, 642.54], [596.05, 608.3], [577.97, 591.42], [559.58, 575.19], [553.43, 569.65], [547.16, 563.56], [540.36, 556.94], [538.68, 554.49], [537.11, 552.13], [536.47, 550.14], [535.65, 547.12], [535.22, 544.64], [535.28, 542.6], [535.78, 540.62], [536.1, 537.01]], "length": 154.68}, {"u": 2713311958, "v": 53423470, "oneway": true, "points": [[634.23, 650.52], [601.45, 620.29], [566.08, 587.36], [528.62, 554.92], [524.4, 551.26]], "length": 148.06}, {"u": 2713311960, "v": 316302550, "oneway": false, "points": [[442.61, 640.93], [436.12, 648.03], [407.23, 679.71], [380.8, 708.69], [376.04, 713.9]], "length": 98.78}, {"u": 2713311960, "v": 53423470, "oneway": false, "points": [[442.61, 640.93], [447.31, 635.37], [461.41, 620.31], [517.35, 558.98], [524.4, 551.26]], "length": 121.37}, {"u": 2713311960, "v": 316302558, "oneway": false, "points": [[442.61, 640.93], [448.88, 646.62], [502.66, 695.57], [584.53, 770.08], [591.57, 776.48]], "length": 201.41}, {"u": 2713311960, "v": 2713311962, "oneway": false, "points": [[442.61, 640.93], [435.35, 634.81], [377.21, 582.05], [342.32, 550.72], [339.52, 548.13], [324.44, 534.56], [298.63, 511.41], [293.17, 506.43]], "length": 201.05}, {"u": 2713311962, "v": 449907112, "oneway": false, "points": [[293.17, 506.43], [298.81, 500.25], [300.23, 498.69], [325.55, 470.92], [332.87, 462.89], [340.67, 454.35], [366.11, 426.44], [368.24, 424.11], [374.19, 417.58]], "length": 120.24}, {"u": 2713311962, "v": 53667521, "oneway": false, "points": [[293.17, 506.43], [287.22, 512.96], [284.49, 515.96], [265.34, 536.96], [244.2, 560.15], [231.66, 573.9], [226.24, 579.84]], "length": 99.34}, {"u": 2713311962, "v": 2713311960, "oneway": false, "points": [[293.17, 506.43], [298.63, 511.41], [324.44, 534.56], [339.52, 548.13], [342.32, 550.72], [377.21, 582.05], [435.35, 634.81], [442.61, 640.93]], "length": 201.05}, {"u": 2713311962, "v": 3455711385, "oneway": false, "points": [[293.17, 506.43], [285.92, 499.82], [248.42, 465.54], [233.33, 451.96], [223.06, 442.61], [221.97, 441.62], [180.44, 404.02], [174.55, 398.68]], "length": 160.26}, {"u": 2713353784, "v": 316305093, "oneway": false, "points": [[1553.48, 616.38], [1559.47, 609.33], [1615.73, 548.62], [1621.0, 543.23]], "length": 99.55}, {"u": 2713353784, "v": 53461474, "oneway": false, "points": [[1553.48, 616.38], [1546.68, 623.44], [1522.14, 648.93], [1492.13, 682.58], [1484.71, 690.68]], "length": 101.26}, {"u": 2713353784, "v": 53571775, "oneway": false, "points": [[1553.48, 616.38], [1560.0, 622.28], [1695.91, 745.34], [1702.69, 751.47]], "length": 201.28}, {"u": 2713353784, "v": 316305099, "oneway": false, "points": [[1553.48, 616.38], [1546.63, 610.14], [1411.91, 487.47], [1403.59, 479.89]], "length": 202.72}, {"u": 2713365262, "v": 53668897, "oneway": false, "points": [[1716.85, 1888.12], [1707.13, 1897.44], [1696.34, 1906.27], [1691.01, 1911.5]], "length": 34.87}, {"u": 2713365262, "v": 2384881635, "oneway": true, "points": [[1716.85, 1888.12], [1718.62, 1885.53], [1735.91, 1860.25], [1748.43, 1846.11], [1754.78, 1838.94]], "length": 62.23}, {"u": 2713365265, "v": 53578357, "oneway": true, "points": [[1076.92, 2132.23], [1043.7, 2097.53], [1028.97, 2078.54], [1022.63, 2070.54], [1016.38, 2059.89]], "length": 94.62}, {"u": 2713365265, "v": 53578366, "oneway": false, "points": [[1076.92, 2132.23], [1087.59, 2154.59], [1093.0, 2166.34], [1094.4, 2169.88], [1096.41, 2174.97], [1111.65, 2217.63], [1120.82, 2240.41], [1137.6, 2283.82], [1139.36, 2288.34]], "length": 168.24}, {"u": 2713391900, "v": 496686202, "oneway": false, "points": [[1175.96, 2361.67], [1194.25, 2394.94]], "length": 37.97}, {"u": 2713391900, "v": 2712062761, "oneway": false, "points": [[1175.96, 2361.67], [1183.34, 2357.17], [1240.84, 2325.25], [1253.77, 2317.77], [1262.06, 2314.1], [1270.95, 2311.84], [1277.46, 2311.16], [1459.22, 2305.98], [1471.18, 2305.7], [1479.53, 2306.16], [1486.53, 2307.1], [1492.85, 2308.71]], "length": 329.87}, {"u": 2713391900, "v": 53578366, "oneway": false, "points": [[1175.96, 2361.67], [1171.14, 2352.57], [1159.52, 2330.85], [1148.36, 2309.99], [1146.43, 2305.88], [1144.17, 2300.23], [1139.36, 2288.34]], "length": 82.04}, {"u": 2713391937, "v": 1699123283, "oneway": false, "points": [[806.85, 1822.01], [812.26, 1816.66], [968.03, 1680.43], [1096.8, 1537.06], [1102.78, 1531.03]], "length": 415.75}, {"u": 2713391937, "v": 53537015, "oneway": false, "points": [[806.85, 1822.01], [801.74, 1816.49], [751.12, 1759.43], [746.16, 1753.57]], "length": 91.48}, {"u": 2713391937, "v": 53578351, "oneway": false, "points": [[806.85, 1822.01], [813.5, 1829.48], [928.19, 1959.92]], "length": 183.69}, {"u": 2714912985, "v": 53538734, "oneway": false, "points": [[2198.03, 2264.85], [2190.55, 2257.65], [2059.29, 2130.65], [2052.88, 2124.44]], "length": 201.95}, {"u": 2714912985, "v": 1706427648, "oneway": false, "points": [[2198.03, 2264.85], [2193.08, 2269.85], [2161.21, 2302.34], [2147.29, 2316.85], [2134.79, 2329.89], [2127.58, 2337.4]], "length": 101.13}, {"u": 2714912985, "v": 1706427672, "oneway": false, "points": [[2198.03, 2264.85], [2205.51, 2257.18], [2235.39, 2226.83], [2257.62, 2203.45], [2275.23, 2184.5], [2283.9, 2176.4]], "length": 123.3}, {"u": 2714912986, "v": 53538791, "oneway": false, "points": [[2329.67, 2391.44], [2336.05, 2397.57], [2371.14, 2431.26], [2403.05, 2462.7], [2443.78, 2503.65], [2450.28, 2510.09]], "length": 169.2}, {"u": 2714912986, "v": 53626974, "oneway": false, "points": [[2329.67, 2391.44], [2322.55, 2398.26], [2307.6, 2413.35], [2264.65, 2457.11], [2258.87, 2463.51]], "length": 101.04}, {"u": 2714912986, "v": 1706427666, "oneway": false, "points": [[2329.67, 2391.44], [2335.2, 2385.61], [2407.12, 2313.35], [2413.31, 2303.71]], "length": 121.44}, {"u": 2714977035, "v": 53479821, "oneway": false, "points": [[-828.55, 32.38], [-822.52, 37.86], [-796.98, 61.09], [-796.36, 61.66], [-784.89, 72.09], [-777.4, 78.9], [-775.81, 80.36], [-775.1, 81.0], [-766.77, 88.57], [-764.25, 90.86], [-748.78, 104.94], [-747.81, 105.81], [-735.96, 116.6], [-724.12, 127.36], [-717.88, 133.04], [-686.67, 161.43], [-680.03, 167.47]], "length": 200.76}, {"u": 2714977035, "v": 53642012, "oneway": false, "points": [[-828.55, 32.38], [-836.28, 25.52], [-845.52, 17.31], [-867.44, -2.15], [-874.09, -8.05], [-876.2, -9.92], [-882.76, -15.74], [-883.43, -16.34], [-898.5, -29.71], [-905.46, -35.88], [-906.08, -36.44], [-912.21, -41.88], [-919.23, -48.11], [-939.76, -66.34], [-958.23, -82.73], [-958.9, -83.35], [-961.09, -85.42], [-963.07, -87.81], [-964.77, -90.21], [-966.61, -93.76], [-967.91, -97.55], [-969.1, -102.17]], "length": 196.14}, {"u": 2714977035, "v": 53472467, "oneway": false, "points": [[-828.55, 32.38], [-822.9, 26.25], [-806.65, 8.56], [-806.02, 7.87], [-786.88, -12.96], [-785.87, -14.04], [-769.32, -32.06], [-767.04, -34.67], [-760.87, -41.41]], "length": 100.12}, {"u": 2714977035, "v": 53441256, "oneway": false, "points": [[-828.55, 32.38], [-833.98, 38.3], [-853.15, 59.09], [-855.53, 61.73], [-866.85, 74.07], [-868.92, 76.31], [-889.19, 98.36], [-891.28, 100.63], [-896.45, 106.26]], "length": 100.35}, {"u": 2726180832, "v": 2635256558, "oneway": false, "points": [[-2953.83, -1762.69], [-2959.71, -1762.04], [-2965.38, -1760.55], [-2975.53, -1757.88], [-2984.19, -1754.58], [-2990.07, -1751.24], [-2995.54, -1747.64], [-3000.38, -1744.28], [-3005.13, -1739.7], [-3009.13, -1735.75], [-3018.67, -1724.71]], "length": 77.55}, {"u": 2771341200, "v": 53612039, "oneway": false, "points": [[-1491.08, -2273.31], [-1504.05, -2276.29], [-1507.83, -2276.18], [-1524.63, -2275.71], [-1541.89, -2274.73], [-1587.45, -2272.13], [-1622.97, -2271.34]], "length": 132.34}, {"u": 2771341200, "v": 5497859257, "oneway": false, "points": [[-1491.08, -2273.31], [-1490.93, -2267.38], [-1488.93, -2183.58], [-1488.69, -2173.17]], "length": 100.17}, {"u": 2771341200, "v": 2638675244, "oneway": false, "points": [[-1491.08, -2273.31], [-1491.41, -2279.93], [-1495.82, -2369.22], [-1496.21, -2377.01]], "length": 103.82}, {"u": 2816310343, "v": 3812685626, "oneway": false, "points": [[-2552.75, -1473.24], [-2562.18, -1461.51], [-2572.8, -1448.51]], "length": 31.84}, {"u": 2816310343, "v": 4194510097, "oneway": true, "points": [[-2552.75, -1473.24], [-2549.95, -1478.45], [-2548.74, -1479.99], [-2547.7, -1480.89], [-2544.65, -1482.41], [-2542.69, -1483.21], [-2540.46, -1483.8], [-2536.79, -1484.4], [-2532.03, -1484.74], [-2524.87, -1484.35], [-2493.38, -1482.02]], "length": 64.31}, {"u": 2816310345, "v": 53483912, "oneway": false, "points": [[-2129.26, -1007.33], [-2138.52, -1007.09], [-2262.39, -1003.61], [-2270.36, -1003.41]], "length": 141.15}, {"u": 2816310345, "v": 3811323394, "oneway": false, "points": [[-2129.26, -1007.33], [-2120.05, -1007.6], [-2007.75, -1010.89], [-2001.56, -1011.07]], "length": 127.76}, {"u": 2816310345, "v": 53643765, "oneway": false, "points": [[-2129.26, -1007.33], [-2129.17, -1015.46], [-2128.8, -1050.09], [-2128.56, -1067.35]], "length": 60.02}, {"u": 2816310345, "v": 2816310353, "oneway": false, "points": [[-2129.26, -1007.33], [-2129.27, -999.38], [-2131.15, -933.25]], "length": 74.11}, {"u": 2816310353, "v": 53483354, "oneway": true, "points": [[-2131.15, -933.25], [-2140.32, -932.98], [-2176.17, -931.91], [-2226.47, -929.96], [-2260.05, -929.2], [-2268.5, -928.82]], "length": 137.42}, {"u": 2816310353, "v": 2816310345, "oneway": false, "points": [[-2131.15, -933.25], [-2129.27, -999.38], [-2129.26, -1007.33]], "length": 74.11}, {"u": 2816310353, "v": 53602671, "oneway": false, "points": [[-2131.15, -933.25], [-2131.84, -903.33], [-2131.9, -899.11], [-2132.57, -877.41], [-2132.8, -870.02], [-2132.89, -867.11], [-2132.6, -857.7]], "length": 75.58}, {"u": 2848493171, "v": 2848493172, "oneway": false, "points": [[-2879.5, -205.98], [-2874.84, -204.63], [-2866.94, -203.67], [-2854.86, -203.59], [-2850.88, -203.68], [-2845.58, -203.81], [-2841.59, -203.9]], "length": 38.15}, {"u": 2848493171, "v": 3607816606, "oneway": true, "points": [[-2879.5, -205.98], [-2887.3, -204.62], [-2940.89, -213.09], [-2951.82, -217.84]], "length": 74.1}, {"u": 2848493172, "v": 53485102, "oneway": false, "points": [[-2841.59, -203.9], [-2841.86, -214.08], [-2841.89, -215.12], [-2843.01, -245.23], [-2843.61, -261.16], [-2843.91, -267.16], [-2844.13, -272.11], [-2844.61, -289.29], [-2844.86, -296.97]], "length": 93.13}, {"u": 2848493172, "v": 3894523242, "oneway": false, "points": [[-2841.59, -203.9], [-2831.33, -204.15], [-2815.15, -204.54]], "length": 26.46}, {"u": 2848493172, "v": 2848493171, "oneway": false, "points": [[-2841.59, -203.9], [-2845.58, -203.81], [-2850.88, -203.68], [-2854.86, -203.59], [-2866.94, -203.67], [-2874.84, -204.63], [-2879.5, -205.98]], "length": 38.15}, {"u": 2848493173, "v": 1857601486, "oneway": false, "points": [[-2732.29, -206.32], [-2732.49, -212.49]], "length": 6.18}, {"u": 2848493173, "v": 3894523242, "oneway": true, "points": [[-2732.29, -206.32], [-2740.85, -206.06], [-2786.48, -204.06], [-2806.9, -203.22], [-2815.15, -204.54]], "length": 83.03}, {"u": 2848493174, "v": 3607816648, "oneway": false, "points": [[-2649.14, -217.69], [-2648.67, -207.9]], "length": 9.8}, {"u": 2848493174, "v": 53461796, "oneway": true, "points": [[-2649.14, -217.69], [-2640.22, -218.37], [-2620.55, -219.39], [-2602.41, -220.27], [-2573.51, -221.65], [-2566.17, -221.95], [-2561.6, -222.12], [-2532.12, -223.59], [-2479.05, -226.28]], "length": 170.31}, {"u": 2848493174, "v": 53516186, "oneway": false, "points": [[-2649.14, -217.69], [-2649.37, -225.05], [-2650.4, -259.89], [-2654.7, -406.17], [-2654.93, -414.0]], "length": 196.4}, {"u": 2856773811, "v": 2857394107, "oneway": false, "points": [[1171.89, 2786.62], [1182.79, 2790.72], [1212.53, 2796.88], [1228.13, 2800.92], [1233.45, 2802.29], [1252.19, 2805.32], [1265.54, 2805.16], [1303.72, 2804.53], [1386.11, 2800.42], [1389.68, 2800.27], [1393.92, 2799.78], [1395.91, 2799.36]], "length": 226.51}, {"u": 2857394107, "v": 316306590, "oneway": false, "points": [[1395.91, 2799.36], [1397.75, 2798.36], [1405.36, 2793.76]], "length": 10.98}, {"u": 2857394107, "v": 2856773811, "oneway": false, "points": [[1395.91, 2799.36], [1393.92, 2799.78], [1389.68, 2800.27], [1386.11, 2800.42], [1303.72, 2804.53], [1265.54, 2805.16], [1252.19, 2805.32], [1233.45, 2802.29], [1228.13, 2800.92], [1212.53, 2796.88], [1182.79, 2790.72], [1171.89, 2786.62]], "length": 226.51}, {"u": 2858999189, "v": 53538743, "oneway": true, "points": [[-127.7, 395.09], [-122.52, 389.48], [-86.96, 350.95], [-40.93, 301.06], [-0.1, 258.23], [3.1, 254.93], [8.99, 248.4]], "length": 200.51}, {"u": 2858999189, "v": 53541408, "oneway": true, "points": [[-127.7, 395.09], [-119.05, 403.11], [-72.98, 445.54], [-66.57, 451.36]], "length": 83.09}, {"u": 2859093884, "v": 53589794, "oneway": false, "points": [[2069.5, 1527.42], [2075.43, 1536.52], [2084.93, 1550.37], [2106.2, 1584.98], [2126.49, 1618.0], [2134.7, 1631.36], [2143.16, 1645.13], [2162.01, 1675.79]], "length": 174.87}, {"u": 2859093884, "v": 2384881527, "oneway": false, "points": [[2069.5, 1527.42], [2076.42, 1518.91], [2102.01, 1486.7], [2104.19, 1483.96], [2108.56, 1478.79]], "length": 62.37}, {"u": 2859093884, "v": 53636372, "oneway": false, "points": [[2069.5, 1527.42], [2064.63, 1519.05], [2032.89, 1464.52], [2028.28, 1456.61]], "length": 81.93}, {"u": 2859093884, "v": 2384881533, "oneway": false, "points": [[2069.5, 1527.42], [2065.59, 1531.92], [2046.1, 1554.3]], "length": 35.65}, {"u": 2859245506, "v": 53508176, "oneway": false, "points": [[-1048.74, -543.72], [-1048.98, -552.05], [-1049.03, -554.58], [-1049.61, -583.88], [-1050.03, -603.48], [-1050.03, -605.53], [-1050.28, -614.24], [-1049.98, -619.58], [-1048.82, -623.73], [-1047.26, -626.86], [-1044.95, -630.17], [-1012.15, -666.7], [-1005.72, -673.79]], "length": 146.4}, {"u": 2859245506, "v": 3241106071, "oneway": false, "points": [[-1048.74, -543.72], [-1026.44, -544.54], [-1022.56, -544.23], [-1019.33, -543.73], [-1016.87, -543.17], [-1014.31, -542.41], [-1011.31, -541.16], [-1009.14, -539.7], [-1007.97, -538.85], [-992.65, -525.4], [-983.87, -517.56], [-978.04, -512.43], [-969.15, -504.62], [-954.31, -491.57], [-932.71, -472.58], [-930.46, -470.58], [-928.2, -468.32], [-924.15, -464.14]], "length": 154.28}, {"u": 2859245506, "v": 2859245565, "oneway": false, "points": [[-1048.74, -543.72], [-1055.38, -543.42], [-1086.42, -541.86], [-1096.1, -541.37]], "length": 47.42}, {"u": 2859245549, "v": 3227608153, "oneway": false, "points": [[-65.63, 180.78], [-72.15, 188.01], [-74.25, 190.33], [-94.1, 212.34], [-108.45, 228.24], [-120.52, 241.62], [-146.48, 270.38], [-168.18, 294.44], [-182.02, 309.78], [-191.19, 319.95], [-201.09, 330.91]], "length": 202.21}, {"u": 2859245549, "v": 53414098, "oneway": false, "points": [[-65.63, 180.78], [-60.52, 175.12], [-58.84, 173.26], [-46.69, 159.79], [-42.69, 155.36], [-36.88, 148.92], [-18.12, 128.12], [-11.21, 120.47], [0.34, 107.67], [7.34, 99.91], [9.03, 98.1], [16.36, 89.92]], "length": 122.38}, {"u": 2859245549, "v": 53538743, "oneway": false, "points": [[-65.63, 180.78], [-59.09, 186.94], [-29.16, 213.83], [2.47, 242.55], [8.99, 248.4]], "length": 100.71}, {"u": 2859245549, "v": 53538741, "oneway": false, "points": [[-65.63, 180.78], [-71.65, 175.1], [-81.21, 166.17], [-120.48, 129.44], [-132.55, 117.06], [-138.07, 111.55]], "length": 100.22}, {"u": 2859245565, "v": 4173789198, "oneway": false, "points": [[-1096.1, -541.37], [-1095.58, -532.23], [-1095.45, -529.88], [-1093.74, -500.1], [-1093.52, -496.28], [-1090.02, -435.13], [-1089.57, -427.23], [-1089.4, -424.35], [-1088.88, -415.15]], "length": 126.43}, {"u": 2859245565, "v": 2859245573, "oneway": false, "points": [[-1096.1, -541.37], [-1105.87, -540.88], [-1144.38, -538.94], [-1183.64, -536.97], [-1190.92, -536.6]], "length": 94.94}, {"u": 2859245565, "v": 2859245506, "oneway": false, "points": [[-1096.1, -541.37], [-1086.42, -541.86], [-1055.38, -543.42], [-1048.74, -543.72]], "length": 47.42}, {"u": 2859245573, "v": 53499299, "oneway": false, "points": [[-1190.92, -536.6], [-1191.32, -545.08], [-1191.47, -547.76], [-1193.65, -592.17], [-1193.95, -596.92], [-1198.11, -677.74], [-1199.14, -699.93], [-1197.79, -708.18]], "length": 171.9}, {"u": 2859245573, "v": 53582203, "oneway": false, "points": [[-1190.92, -536.6], [-1200.84, -535.78], [-1313.19, -530.37], [-1318.0, -530.12], [-1323.42, -529.84]], "length": 132.68}, {"u": 2859245573, "v": 2859245565, "oneway": false, "points": [[-1190.92, -536.6], [-1183.64, -536.97], [-1144.38, -538.94], [-1105.87, -540.88], [-1096.1, -541.37]], "length": 94.94}, {"u": 2859245573, "v": 2859245574, "oneway": false, "points": [[-1190.92, -536.6], [-1190.53, -526.99], [-1190.31, -524.04], [-1187.56, -466.63], [-1186.58, -448.02], [-1186.34, -443.22], [-1185.28, -420.36], [-1184.74, -410.47]], "length": 126.28}, {"u": 2859245574, "v": 2859245573, "oneway": false, "points": [[-1184.74, -410.47], [-1185.28, -420.36], [-1186.34, -443.22], [-1186.58, -448.02], [-1187.56, -466.63], [-1190.31, -524.04], [-1190.53, -526.99], [-1190.92, -536.6]], "length": 126.28}, {"u": 2859245574, "v": 4173789198, "oneway": true, "points": [[-1184.74, -410.47], [-1177.01, -410.84], [-1137.0, -412.8], [-1134.54, -412.92], [-1098.28, -414.69], [-1088.88, -415.15]], "length": 95.98}, {"u": 2859245574, "v": 450714559, "oneway": false, "points": [[-1184.74, -410.47], [-1184.81, -399.58], [-1183.31, -370.45], [-1183.16, -367.02], [-1182.31, -348.06], [-1182.19, -345.68], [-1181.97, -340.54], [-1181.07, -324.58], [-1179.17, -290.95], [-1178.97, -287.92], [-1178.03, -277.6]], "length": 133.06}, {"u": 2859245582, "v": 450714993, "oneway": true, "points": [[-1308.58, -271.13], [-1320.79, -271.19], [-1389.51, -267.43], [-1432.39, -265.13], [-1440.41, -264.63], [-1449.08, -264.32], [-1488.53, -262.56], [-1550.12, -259.83], [-1555.02, -259.62], [-1566.88, -259.08]], "length": 258.6}, {"u": 2859245582, "v": 53582205, "oneway": false, "points": [[-1308.58, -271.13], [-1308.6, -281.67], [-1308.63, -285.83], [-1311.54, -345.03], [-1311.6, -346.5], [-1311.78, -350.63], [-1312.18, -355.85], [-1312.6, -365.2], [-1314.45, -392.88], [-1315.42, -403.15]], "length": 132.23}, {"u": 2859245582, "v": 2859245583, "oneway": false, "points": [[-1308.58, -271.13], [-1308.42, -258.83], [-1306.59, -218.74], [-1305.21, -188.91], [-1302.34, -139.35], [-1301.91, -128.2], [-1301.58, -120.91], [-1300.07, -93.5], [-1298.0, -84.27], [-1297.05, -76.04], [-1294.4, -26.14], [-1293.12, -2.16], [-1292.63, 7.13], [-1292.15, 15.51]], "length": 287.27}, {"u": 2859245583, "v": 450716051, "oneway": false, "points": [[-1292.15, 15.51], [-1301.12, 16.8], [-1412.86, 21.8], [-1457.26, 23.93], [-1549.39, 28.35], [-1558.07, 28.77]], "length": 266.29}, {"u": 2859245583, "v": 53434711, "oneway": false, "points": [[-1292.15, 15.51], [-1291.49, 24.78], [-1290.3, 45.54], [-1289.5, 59.39], [-1288.02, 85.1], [-1287.26, 99.65], [-1286.77, 102.55], [-1285.81, 105.09], [-1284.27, 107.08], [-1282.21, 108.17], [-1277.89, 107.94], [-1252.69, 106.63], [-1216.22, 104.75], [-1202.76, 104.04]], "length": 174.34}, {"u": 2859245583, "v": 2859245582, "oneway": false, "points": [[-1292.15, 15.51], [-1292.63, 7.13], [-1293.12, -2.16], [-1294.4, -26.14], [-1297.05, -76.04], [-1298.0, -84.27], [-1300.07, -93.5], [-1301.58, -120.91], [-1301.91, -128.2], [-1302.34, -139.35], [-1305.21, -188.91], [-1306.59, -218.74], [-1308.42, -258.83], [-1308.58, -271.13]], "length": 287.27}, {"u": 2859245583, "v": 53441265, "oneway": false, "points": [[-1292.15, 15.51], [-1283.2, 14.31], [-1248.8, 12.61], [-1241.59, 12.33], [-1201.61, 10.23], [-1165.88, 8.51], [-1139.36, 7.38], [-1130.2, 7.19]], "length": 162.2}, {"u": 2859302267, "v": 2859302272, "oneway": false, "points": [[-1605.99, -882.2], [-1597.93, -882.39], [-1471.8, -888.55]], "length": 134.34}, {"u": 2859302267, "v": 1179459773, "oneway": false, "points": [[-1605.99, -882.2], [-1614.38, -881.8], [-1621.93, -881.43]], "length": 15.96}, {"u": 2859302267, "v": 1179459672, "oneway": true, "points": [[-1605.99, -882.2], [-1605.53, -872.27], [-1604.75, -846.96], [-1604.72, -833.61], [-1604.41, -789.36], [-1603.23, -763.07], [-1603.08, -761.37]], "length": 120.88}, {"u": 2859302272, "v": 1179956582, "oneway": false, "points": [[-1471.8, -888.55], [-1471.37, -876.92], [-1470.43, -858.23], [-1469.03, -827.27], [-1468.89, -824.21], [-1468.22, -809.37], [-1467.65, -796.65]], "length": 91.99}, {"u": 2859302272, "v": 13146093508, "oneway": false, "points": [[-1471.8, -888.55], [-1469.86, -888.63], [-1468.06, -888.64]], "length": 3.74}, {"u": 2859302272, "v": 2859302267, "oneway": false, "points": [[-1471.8, -888.55], [-1597.93, -882.39], [-1605.99, -882.2]], "length": 134.34}, {"u": 2859304393, "v": 482811372, "oneway": false, "points": [[-2259.49, -562.31], [-2250.86, -562.81], [-2248.73, -562.87], [-2238.73, -563.18], [-2227.75, -563.49], [-2210.41, -564.13], [-2205.51, -564.32], [-2188.71, -564.94]], "length": 70.83}, {"u": 2859304393, "v": 1180005838, "oneway": false, "points": [[-2259.49, -562.31], [-2259.03, -490.84], [-2258.98, -482.24]], "length": 80.07}, {"u": 2859304393, "v": 2859304395, "oneway": false, "points": [[-2259.49, -562.31], [-2259.59, -564.5], [-2259.77, -567.07], [-2260.0, -569.54], [-2260.41, -572.51], [-2260.89, -575.16], [-2261.39, -577.84], [-2262.15, -581.1], [-2263.14, -584.17], [-2264.23, -586.95], [-2265.09, -588.99], [-2266.42, -591.25], [-2267.98, -593.27]], "length": 32.61}, {"u": 2859304395, "v": 1426438835, "oneway": true, "points": [[-2267.98, -593.27], [-2266.38, -602.91], [-2264.13, -608.8], [-2263.18, -612.28], [-2262.29, -616.09]], "length": 23.6}, {"u": 2859304395, "v": 2859304393, "oneway": false, "points": [[-2267.98, -593.27], [-2266.42, -591.25], [-2265.09, -588.99], [-2264.23, -586.95], [-2263.14, -584.17], [-2262.15, -581.1], [-2261.39, -577.84], [-2260.89, -575.16], [-2260.41, -572.51], [-2260.0, -569.54], [-2259.77, -567.07], [-2259.59, -564.5], [-2259.49, -562.31]], "length": 32.61}, {"u": 2859304395, "v": 2859304803, "oneway": false, "points": [[-2267.98, -593.27], [-2272.1, -596.5], [-2336.93, -648.44], [-2369.87, -674.15], [-2405.23, -701.75], [-2438.16, -727.45], [-2456.67, -741.9], [-2463.26, -747.04], [-2485.95, -764.75], [-2493.58, -770.72], [-2497.58, -773.83]], "length": 292.09}, {"u": 2859304803, "v": 1426438819, "oneway": false, "points": [[-2497.58, -773.83], [-2550.48, -815.12]], "length": 67.11}, {"u": 2859304803, "v": 2859304395, "oneway": false, "points": [[-2497.58, -773.83], [-2493.58, -770.72], [-2485.95, -764.75], [-2463.26, -747.04], [-2456.67, -741.9], [-2438.16, -727.45], [-2405.23, -701.75], [-2369.87, -674.15], [-2336.93, -648.44], [-2272.1, -596.5], [-2267.98, -593.27]], "length": 292.09}, {"u": 2859304803, "v": 1180005819, "oneway": true, "points": [[-2497.58, -773.83], [-2516.25, -781.25], [-2531.23, -793.33], [-2534.14, -795.16], [-2537.04, -796.62], [-2556.1, -803.38], [-2630.56, -825.74], [-2642.6, -828.52], [-2647.35, -829.45], [-2654.25, -829.82], [-2657.39, -829.82], [-2668.24, -834.66]], "length": 183.12}, {"u": 2925569869, "v": 53490496, "oneway": false, "points": [[2652.59, 1833.95], [2652.05, 1835.8]], "length": 1.93}, {"u": 2925569869, "v": 1192282519, "oneway": true, "points": [[2652.59, 1833.95], [2657.07, 1836.94]], "length": 5.38}, {"u": 2925569869, "v": 53611268, "oneway": false, "points": [[2652.59, 1833.95], [2654.2, 1830.8], [2659.68, 1823.81], [2665.92, 1797.07], [2667.39, 1790.73], [2674.24, 1759.78], [2674.85, 1757.03], [2676.22, 1750.83]], "length": 87.25}, {"u": 2925570317, "v": 53461474, "oneway": false, "points": [[1417.61, 765.99], [1423.44, 759.49], [1478.7, 698.02], [1484.71, 690.68]], "length": 100.88}, {"u": 2925570317, "v": 53515071, "oneway": false, "points": [[1417.61, 765.99], [1411.6, 772.59], [1392.38, 794.0], [1388.31, 798.51], [1378.66, 809.23], [1377.11, 810.95], [1371.12, 817.61], [1368.55, 820.45], [1356.52, 834.3], [1351.07, 840.15]], "length": 99.63}, {"u": 2925570317, "v": 53432346, "oneway": false, "points": [[1417.61, 765.99], [1423.8, 771.48], [1446.3, 791.0], [1448.04, 792.56], [1449.37, 793.75], [1461.51, 804.61], [1462.95, 805.92], [1466.25, 808.87], [1498.59, 837.79], [1507.57, 845.88], [1515.97, 853.4], [1523.33, 860.04], [1560.14, 893.89], [1567.1, 900.19]], "length": 200.9}, {"u": 2925570317, "v": 53432339, "oneway": false, "points": [[1417.61, 765.99], [1411.13, 760.34], [1386.98, 737.76], [1328.15, 683.58], [1320.45, 677.02], [1314.8, 671.65], [1314.24, 671.13], [1302.75, 660.79], [1299.98, 658.23], [1285.03, 644.42], [1284.51, 643.94], [1282.96, 642.47], [1276.58, 636.63], [1268.58, 629.32]], "length": 202.22}, {"u": 2938172405, "v": 387186883, "oneway": true, "points": [[-381.83, -995.14], [-365.62, -996.54]], "length": 16.28}, {"u": 2938172405, "v": 4091376224, "oneway": true, "points": [[-381.83, -995.14], [-385.76, -1004.62], [-394.31, -1022.5], [-401.23, -1035.35]], "length": 44.68}, {"u": 2938172406, "v": 2938172405, "oneway": true, "points": [[-378.9, -988.33], [-381.83, -995.14]], "length": 7.41}, {"u": 2938172406, "v": 387186935, "oneway": true, "points": [[-378.9, -988.33], [-383.46, -984.84], [-388.28, -981.55], [-392.93, -979.26], [-399.18, -977.26], [-413.1, -975.72]], "length": 37.32}, {"u": 2948594974, "v": 366215913, "oneway": false, "points": [[971.98, 958.19], [982.26, 946.75]], "length": 15.38}, {"u": 2948594974, "v": 53430018, "oneway": false, "points": [[971.98, 958.19], [965.47, 965.35], [954.25, 977.71], [941.37, 991.89], [930.57, 1003.77]], "length": 61.58}, {"u": 2948594974, "v": 449920083, "oneway": true, "points": [[971.98, 958.19], [962.86, 949.75], [915.7, 906.13], [901.68, 893.15], [856.14, 851.04]], "length": 157.79}, {"u": 2948595023, "v": 2627868774, "oneway": false, "points": [[2505.7, 2236.32], [2509.55, 2237.67], [2516.23, 2239.49]], "length": 11.0}, {"u": 2948595023, "v": 2627868777, "oneway": true, "points": [[2505.7, 2236.32], [2504.17, 2234.02], [2496.54, 2224.1], [2466.14, 2168.38], [2464.54, 2164.37]], "length": 83.07}, {"u": 2948595043, "v": 1706427684, "oneway": true, "points": [[2590.68, 2356.71], [2589.98, 2352.74], [2590.45, 2348.74]], "length": 8.06}, {"u": 2948595076, "v": 53408000, "oneway": false, "points": [[1200.99, 704.13], [1194.54, 711.27], [1192.05, 714.03], [1188.33, 718.14], [1179.97, 727.39], [1177.27, 730.39], [1142.04, 769.4], [1133.64, 778.68], [1131.14, 781.44], [1128.16, 784.74], [1108.86, 806.1], [1095.59, 820.8], [1070.02, 849.1], [1065.77, 853.79]], "length": 201.7}, {"u": 2948595076, "v": 53515071, "oneway": false, "points": [[1200.99, 704.13], [1207.82, 710.32], [1210.54, 712.79], [1277.88, 773.83], [1285.44, 780.67], [1288.22, 783.19], [1301.2, 794.95], [1329.41, 820.56], [1333.49, 824.2], [1346.06, 835.39], [1351.07, 840.15]], "length": 202.55}, {"u": 2948595076, "v": 1192248462, "oneway": false, "points": [[1200.99, 704.13], [1194.52, 698.69], [1192.18, 696.71], [1162.07, 671.26], [1146.89, 658.43]], "length": 70.82}, {"u": 2948595076, "v": 53432339, "oneway": false, "points": [[1200.99, 704.13], [1206.4, 698.89], [1244.64, 655.82], [1245.7, 654.64], [1262.1, 636.49], [1268.58, 629.32]], "length": 100.84}, {"u": 2948601585, "v": 3235649725, "oneway": false, "points": [[916.76, 718.93], [922.77, 712.38], [972.95, 657.63], [981.26, 648.37], [985.73, 643.4], [989.02, 639.91], [1020.44, 604.39], [1027.04, 596.94], [1035.63, 587.21], [1039.32, 582.26], [1049.16, 570.71], [1081.21, 537.41], [1083.12, 535.32], [1088.12, 529.85], [1110.84, 505.0], [1113.83, 501.73], [1120.29, 494.67]], "length": 302.91}, {"u": 2948601585, "v": 366215907, "oneway": false, "points": [[916.76, 718.93], [910.59, 725.71], [886.92, 751.66], [878.9, 760.46], [876.73, 762.84], [868.07, 772.33], [866.32, 774.26], [843.35, 799.46], [841.21, 801.81], [833.08, 810.72]], "length": 124.21}, {"u": 2948601585, "v": 53408000, "oneway": false, "points": [[916.76, 718.93], [922.53, 724.16], [986.13, 781.71], [997.48, 791.98], [1013.14, 806.16], [1057.22, 846.03], [1059.56, 848.16], [1065.77, 853.79]], "length": 200.98}, {"u": 2948601585, "v": 53407975, "oneway": false, "points": [[916.76, 718.93], [909.47, 712.47], [850.31, 660.0], [847.61, 657.61], [820.56, 633.62], [772.64, 590.11], [766.33, 584.47]], "length": 201.77}, {"u": 2948601586, "v": 53461503, "oneway": false, "points": [[1915.29, 1273.87], [1922.01, 1267.59], [1923.15, 1266.53], [1951.58, 1240.87], [1954.45, 1238.28], [2013.26, 1182.61], [2020.45, 1175.8]], "length": 143.8}, {"u": 2948601586, "v": 1142904042, "oneway": false, "points": [[1915.29, 1273.87], [1907.19, 1280.1], [1905.37, 1281.44], [1903.55, 1282.78], [1881.28, 1291.26], [1876.9, 1293.0], [1864.17, 1296.82], [1858.61, 1297.81], [1852.96, 1297.36]], "length": 67.89}, {"u": 2948601586, "v": 3208339054, "oneway": false, "points": [[1915.29, 1273.87], [1923.86, 1285.32], [1941.29, 1313.71], [1949.26, 1328.22]], "length": 64.17}, {"u": 2948601586, "v": 53432356, "oneway": false, "points": [[1915.29, 1273.87], [1910.07, 1267.51], [1894.3, 1248.4], [1889.67, 1243.03], [1887.44, 1240.48], [1882.25, 1234.53]], "length": 51.38}, {"u": 2955373055, "v": 449967724, "oneway": true, "points": [[2837.88, 2591.95], [2833.24, 2593.63], [2827.17, 2595.34], [2821.72, 2596.58], [2815.19, 2598.07], [2800.25, 2603.01], [2777.51, 2613.27], [2761.64, 2623.54], [2751.7, 2629.98]], "length": 94.95}, {"u": 2955373055, "v": 447178140, "oneway": false, "points": [[2837.88, 2591.95], [2837.32, 2581.32], [2837.15, 2578.15], [2834.88, 2548.05], [2834.31, 2540.37], [2832.83, 2521.48], [2832.56, 2518.16], [2831.34, 2506.18], [2829.62, 2499.66], [2826.93, 2492.21], [2826.26, 2491.25], [2823.44, 2487.18], [2815.42, 2478.54], [2803.84, 2468.05], [2784.1, 2451.38], [2761.83, 2428.92], [2761.08, 2428.17], [2760.25, 2427.33], [2757.34, 2424.49], [2694.94, 2363.66], [2685.89, 2354.84], [2682.81, 2352.0], [2678.52, 2348.6], [2673.21, 2345.26], [2665.81, 2341.38], [2659.9, 2339.08], [2653.85, 2337.22]], "length": 334.75}, {"u": 2985254834, "v": 1180005834, "oneway": false, "points": [[-2123.47, -459.19], [-2124.47, -479.95], [-2124.74, -489.42]], "length": 30.26}, {"u": 2987035532, "v": 2987035535, "oneway": true, "points": [[-2575.63, -836.65], [-2582.9, -829.94], [-2588.15, -829.5], [-2602.82, -828.26]], "length": 29.89}, {"u": 2987035532, "v": 13030502563, "oneway": false, "points": [[-2575.63, -836.65], [-2586.69, -846.02], [-2605.68, -861.8]], "length": 39.19}, {"u": 2987035532, "v": 1426438819, "oneway": false, "points": [[-2575.63, -836.65], [-2564.61, -827.26], [-2558.98, -822.28], [-2550.48, -815.12]], "length": 33.11}, {"u": 2987035535, "v": 1426438819, "oneway": true, "points": [[-2602.82, -828.26], [-2597.73, -823.93], [-2594.48, -821.36], [-2591.15, -819.42], [-2585.74, -817.23], [-2577.08, -814.59], [-2568.56, -812.59], [-2565.01, -812.09], [-2561.55, -812.13], [-2550.48, -815.12]], "length": 56.84}, {"u": 2987035535, "v": 1180005819, "oneway": true, "points": [[-2602.82, -828.26], [-2612.48, -828.15], [-2627.0, -829.99], [-2638.63, -832.0], [-2645.57, -832.52], [-2654.27, -832.62], [-2657.48, -832.6], [-2668.24, -834.66]], "length": 65.92}, {"u": 2988375113, "v": 53677752, "oneway": true, "points": [[-2902.03, -0.74], [-2905.05, -0.78], [-2907.91, -1.71], [-2910.37, -3.45], [-2912.19, -5.83], [-2913.24, -8.64], [-2913.4, -11.63], [-2912.67, -14.54], [-2911.11, -17.11]], "length": 24.04}, {"u": 2988375113, "v": 53486858, "oneway": false, "points": [[-2902.03, -0.74], [-2902.19, 12.88], [-2901.87, 19.71], [-2901.62, 27.83]], "length": 28.58}, {"u": 2988748407, "v": 53589715, "oneway": false, "points": [[-2361.39, -69.27], [-2339.25, -69.97]], "length": 22.15}, {"u": 2988748407, "v": 53589708, "oneway": true, "points": [[-2361.39, -69.27], [-2362.68, -101.0], [-2363.06, -110.45], [-2363.61, -124.29]], "length": 55.07}, {"u": 3031362525, "v": 53580611, "oneway": false, "points": [[-2534.82, 267.55], [-2526.85, 272.8]], "length": 9.54}, {"u": 3031362525, "v": 53580606, "oneway": false, "points": [[-2534.82, 267.55], [-2534.52, 255.86], [-2535.74, 240.19], [-2535.89, 234.11]], "length": 33.49}, {"u": 3031362525, "v": 450505541, "oneway": false, "points": [[-2534.82, 267.55], [-2545.04, 278.01], [-2568.15, 279.0], [-2610.57, 280.59]], "length": 80.22}, {"u": 3035654115, "v": 2987035532, "oneway": true, "points": [[-2562.79, -837.44], [-2575.63, -836.65]], "length": 12.86}, {"u": 3035654115, "v": 53556383, "oneway": false, "points": [[-2562.79, -837.44], [-2518.05, -839.52], [-2504.3, -840.25], [-2495.21, -840.68], [-2447.26, -842.82]], "length": 115.66}, {"u": 3088209646, "v": 2858999189, "oneway": true, "points": [[-195.84, 468.94], [-192.0, 464.78], [-187.17, 459.54], [-137.46, 405.68], [-134.19, 402.12], [-133.4, 401.27], [-127.7, 395.09]], "length": 100.48}, {"u": 3088209646, "v": 3227608153, "oneway": false, "points": [[-195.84, 468.94], [-196.02, 460.39], [-196.24, 450.26], [-196.45, 446.62], [-200.02, 351.04], [-201.09, 330.91]], "length": 138.13}, {"u": 3088209646, "v": 316292003, "oneway": true, "points": [[-195.84, 468.94], [-207.49, 458.41], [-231.21, 437.01], [-261.45, 409.73], [-268.29, 403.54]], "length": 97.6}, {"u": 3088209647, "v": 3088209646, "oneway": true, "points": [[-133.83, 525.49], [-140.52, 519.66], [-190.59, 473.86], [-195.84, 468.94]], "length": 83.93}, {"u": 3088209649, "v": 3088209647, "oneway": true, "points": [[-58.77, 593.96], [-66.06, 587.72], [-127.67, 531.54], [-133.83, 525.49]], "length": 101.61}, {"u": 3088209649, "v": 53425702, "oneway": false, "points": [[-58.77, 593.96], [-53.3, 588.17], [-51.68, 586.37], [2.03, 526.52], [3.21, 525.2], [8.36, 519.46]], "length": 100.29}, {"u": 3088209661, "v": 316292008, "oneway": false, "points": [[59.76, 762.29], [80.86, 738.63], [83.16, 736.17], [89.46, 729.32]], "length": 44.37}, {"u": 3157337335, "v": 53637455, "oneway": false, "points": [[-417.86, 268.59], [-424.4, 275.82], [-425.89, 277.46], [-438.32, 291.21], [-440.7, 293.85], [-460.92, 316.52], [-480.71, 338.1], [-485.88, 343.58]], "length": 101.25}, {"u": 3157337335, "v": 53640838, "oneway": false, "points": [[-417.86, 268.59], [-412.28, 262.42], [-410.06, 259.95], [-395.32, 243.65], [-391.08, 238.97], [-384.34, 231.52], [-358.87, 203.36], [-356.26, 200.47], [-350.69, 194.3]], "length": 100.16}, {"u": 3157337335, "v": 1701854143, "oneway": true, "points": [[-417.86, 268.59], [-424.39, 262.69], [-468.7, 222.7], [-470.79, 220.81], [-501.25, 193.33], [-515.03, 180.9]], "length": 130.89}, {"u": 3208339050, "v": 3786926320, "oneway": false, "points": [[2483.37, 1255.43], [2535.44, 1316.95], [2552.38, 1337.29], [2611.45, 1358.01], [2619.59, 1360.86]], "length": 178.3}, {"u": 3208339050, "v": 3208342165, "oneway": false, "points": [[2483.37, 1255.43], [2389.2, 1142.26], [2382.03, 1135.54], [2377.57, 1131.36]], "length": 163.16}, {"u": 3208339050, "v": 53558151, "oneway": false, "points": [[2483.37, 1255.43], [2428.22, 1300.91], [2421.43, 1306.51]], "length": 80.29}, {"u": 3208339051, "v": 53437418, "oneway": false, "points": [[2076.35, 1227.32], [2081.54, 1232.45], [2083.09, 1233.98], [2107.25, 1257.88], [2115.39, 1264.99], [2136.93, 1283.59], [2143.58, 1289.64]], "length": 91.72}, {"u": 3208339051, "v": 3208342164, "oneway": false, "points": [[2076.35, 1227.32], [2083.11, 1221.0], [2114.12, 1189.11], [2149.58, 1149.65], [2205.92, 1088.48], [2207.59, 1086.65], [2214.09, 1079.6]], "length": 202.02}, {"u": 3208339051, "v": 3208339054, "oneway": false, "points": [[2076.35, 1227.32], [2065.5, 1236.29], [2048.77, 1252.52], [1995.55, 1293.74], [1958.21, 1322.04], [1949.26, 1328.22]], "length": 162.42}, {"u": 3208339054, "v": 3208339051, "oneway": false, "points": [[1949.26, 1328.22], [1958.21, 1322.04], [1995.55, 1293.74], [2048.77, 1252.52], [2065.5, 1236.29], [2076.35, 1227.32]], "length": 162.42}, {"u": 3208339054, "v": 2948601586, "oneway": false, "points": [[1949.26, 1328.22], [1941.29, 1313.71], [1923.86, 1285.32], [1915.29, 1273.87]], "length": 64.17}, {"u": 3208339054, "v": 53539556, "oneway": false, "points": [[1949.26, 1328.22], [1952.96, 1334.06], [1957.45, 1341.74], [1959.67, 1344.99]], "length": 19.75}, {"u": 3208342164, "v": 3208339051, "oneway": false, "points": [[2214.09, 1079.6], [2207.59, 1086.65], [2205.92, 1088.48], [2149.58, 1149.65], [2114.12, 1189.11], [2083.11, 1221.0], [2076.35, 1227.32]], "length": 202.02}, {"u": 3208342164, "v": 53558139, "oneway": false, "points": [[2214.09, 1079.6], [2207.59, 1073.15], [2173.7, 1042.52], [2172.2, 1041.18], [2161.17, 1031.29]], "length": 71.66}, {"u": 3208342164, "v": 3208342165, "oneway": false, "points": [[2214.09, 1079.6], [2219.77, 1073.62], [2221.67, 1071.62], [2263.46, 1027.64], [2267.14, 1031.06], [2297.84, 1059.46], [2372.6, 1126.88], [2377.57, 1131.36]], "length": 225.88}, {"u": 3208342164, "v": 53437425, "oneway": false, "points": [[2214.09, 1079.6], [2219.34, 1084.24], [2240.97, 1103.41], [2276.94, 1135.26], [2280.5, 1138.42]], "length": 88.72}, {"u": 3208342165, "v": 3208339050, "oneway": false, "points": [[2377.57, 1131.36], [2382.03, 1135.54], [2389.2, 1142.26], [2483.37, 1255.43]], "length": 163.16}, {"u": 3208342165, "v": 3208342164, "oneway": false, "points": [[2377.57, 1131.36], [2372.6, 1126.88], [2297.84, 1059.46], [2267.14, 1031.06], [2263.46, 1027.64], [2221.67, 1071.62], [2219.77, 1073.62], [2214.09, 1079.6]], "length": 225.88}, {"u": 3208342165, "v": 53558147, "oneway": false, "points": [[2377.57, 1131.36], [2335.28, 1177.54], [2333.64, 1179.32], [2327.62, 1185.89]], "length": 73.95}, {"u": 3227608153, "v": 2859245549, "oneway": false, "points": [[-201.09, 330.91], [-191.19, 319.95], [-182.02, 309.78], [-168.18, 294.44], [-146.48, 270.38], [-120.52, 241.62], [-108.45, 228.24], [-94.1, 212.34], [-74.25, 190.33], [-72.15, 188.01], [-65.63, 180.78]], "length": 202.21}, {"u": 3227608153, "v": 1345392073, "oneway": false, "points": [[-201.09, 330.91], [-202.1, 307.99], [-204.56, 261.85], [-204.63, 260.49], [-204.71, 259.27], [-205.84, 240.2], [-207.48, 204.43], [-208.08, 191.45], [-208.52, 180.39]], "length": 150.7}, {"u": 3227608153, "v": 3088209646, "oneway": false, "points": [[-201.09, 330.91], [-200.02, 351.04], [-196.45, 446.62], [-196.24, 450.26], [-196.02, 460.39], [-195.84, 468.94]], "length": 138.13}, {"u": 3227608153, "v": 316292003, "oneway": false, "points": [[-201.09, 330.91], [-210.92, 341.54], [-236.37, 369.05], [-255.42, 389.64], [-260.45, 395.08], [-262.84, 397.66], [-268.29, 403.54]], "length": 98.95}, {"u": 3227608153, "v": 2858999189, "oneway": true, "points": [[-201.09, 330.91], [-189.61, 341.72], [-180.95, 349.64], [-160.64, 367.03], [-132.2, 391.36], [-127.7, 395.09]], "length": 97.51}, {"u": 3227608154, "v": 53441253, "oneway": false, "points": [[-813.51, 315.24], [-800.11, 300.36], [-794.24, 293.85], [-781.57, 279.78], [-767.95, 264.68], [-755.0, 250.31], [-752.61, 247.67], [-747.15, 241.66]], "length": 99.08}, {"u": 3235649725, "v": 2948601585, "oneway": false, "points": [[1120.29, 494.67], [1113.83, 501.73], [1110.84, 505.0], [1088.12, 529.85], [1083.12, 535.32], [1081.21, 537.41], [1049.16, 570.71], [1039.32, 582.26], [1035.63, 587.21], [1027.04, 596.94], [1020.44, 604.39], [989.02, 639.91], [985.73, 643.4], [981.26, 648.37], [972.95, 657.63], [922.77, 712.38], [916.76, 718.93]], "length": 302.91}, {"u": 3235649725, "v": 53432339, "oneway": false, "points": [[1120.29, 494.67], [1127.34, 501.14], [1147.07, 519.33], [1156.96, 528.31], [1171.73, 542.56], [1171.96, 542.77], [1179.1, 549.51], [1181.31, 551.54], [1185.84, 555.65], [1193.58, 562.53], [1209.18, 576.32], [1245.73, 608.66], [1253.84, 616.1], [1261.67, 623.06], [1268.58, 629.32]], "length": 200.32}, {"u": 3235649725, "v": 53445464, "oneway": false, "points": [[1120.29, 494.67], [1112.47, 487.98], [1104.87, 481.47], [1088.48, 466.92], [1082.14, 461.29], [1049.27, 432.13], [1036.38, 420.68], [998.25, 386.85], [976.03, 367.11], [969.31, 361.18]], "length": 201.53}, {"u": 3235649725, "v": 53461463, "oneway": false, "points": [[1120.29, 494.67], [1125.97, 488.46], [1127.7, 486.58], [1145.53, 467.09], [1179.23, 430.3], [1180.73, 428.65], [1187.9, 420.81]], "length": 100.13}, {"u": 3235650820, "v": 53645079, "oneway": false, "points": [[1107.8, 208.83], [1113.84, 214.53], [1175.28, 272.27], [1207.54, 302.0]], "length": 136.49}, {"u": 3235650820, "v": 53667246, "oneway": false, "points": [[1107.8, 208.83], [1100.07, 202.43], [1098.79, 201.37], [1088.28, 192.99], [1077.58, 189.85], [1049.92, 182.72], [967.21, 162.98], [962.89, 161.95]], "length": 154.33}, {"u": 3235650820, "v": 53445467, "oneway": false, "points": [[1107.8, 208.83], [1099.46, 218.02], [1097.81, 219.83], [1045.73, 277.11], [1045.06, 277.85], [1038.69, 284.86]], "length": 102.75}, {"u": 3241106071, "v": 2859245506, "oneway": false, "points": [[-924.15, -464.14], [-928.2, -468.32], [-930.46, -470.58], [-932.71, -472.58], [-954.31, -491.57], [-969.15, -504.62], [-978.04, -512.43], [-983.87, -517.56], [-992.65, -525.4], [-1007.97, -538.85], [-1009.14, -539.7], [-1011.31, -541.16], [-1014.31, -542.41], [-1016.87, -543.17], [-1019.33, -543.73], [-1022.56, -544.23], [-1026.44, -544.54], [-1048.74, -543.72]], "length": 154.28}, {"u": 3241106071, "v": 53699396, "oneway": false, "points": [[-924.15, -464.14], [-917.92, -458.47], [-915.6, -456.35], [-879.05, -423.08], [-864.51, -409.84], [-843.4, -390.62], [-835.03, -383.0], [-783.02, -335.65], [-781.64, -334.4], [-775.43, -328.74]], "length": 201.13}, {"u": 3241106071, "v": 53604263, "oneway": true, "points": [[-924.15, -464.14], [-918.66, -470.14], [-897.67, -493.02], [-862.92, -530.92], [-856.48, -537.93]], "length": 100.12}, {"u": 3241106091, "v": 53608986, "oneway": true, "points": [[-994.7, -387.31], [-989.41, -383.32], [-987.05, -381.09], [-969.29, -365.3], [-954.72, -352.47], [-940.89, -340.29], [-930.93, -331.51], [-850.06, -259.76], [-843.06, -253.11]], "length": 202.52}, {"u": 3241106091, "v": 3241106071, "oneway": true, "points": [[-994.7, -387.31], [-987.47, -395.28], [-970.55, -413.54], [-966.34, -418.14], [-961.04, -423.91], [-955.28, -430.19], [-931.39, -456.23], [-924.15, -464.14]], "length": 104.31}, {"u": 3264677727, "v": 53578330, "oneway": false, "points": [[439.39, 1246.18], [451.8, 1232.69], [469.09, 1213.26], [476.35, 1205.1], [489.73, 1189.99], [492.85, 1186.47], [497.64, 1181.6], [500.04, 1179.47], [502.77, 1177.57]], "length": 93.52}, {"u": 3269827284, "v": 53578519, "oneway": false, "points": [[-834.91, -1011.41], [-821.85, -999.08], [-819.8, -997.15], [-768.28, -948.53], [-761.66, -942.28]], "length": 100.72}, {"u": 3270240364, "v": 3270240367, "oneway": false, "points": [[823.03, 822.38], [816.83, 829.19], [813.92, 832.38], [748.92, 903.7], [747.61, 905.14], [740.93, 912.46]], "length": 121.89}, {"u": 3270240364, "v": 316303180, "oneway": true, "points": [[823.03, 822.38], [807.87, 808.34], [684.27, 696.93], [681.8, 694.7], [673.19, 686.92]], "length": 202.0}, {"u": 3270240367, "v": 1699123288, "oneway": false, "points": [[740.93, 912.46], [735.27, 918.67], [732.51, 921.7], [679.76, 979.58], [674.03, 985.87]], "length": 99.32}, {"u": 3270240367, "v": 3270240364, "oneway": false, "points": [[740.93, 912.46], [747.61, 905.14], [748.92, 903.7], [813.92, 832.38], [816.83, 829.19], [823.03, 822.38]], "length": 121.89}, {"u": 3270240367, "v": 349378518, "oneway": false, "points": [[740.93, 912.46], [747.58, 918.45], [789.29, 956.12], [819.02, 983.36], [820.6, 984.82], [846.68, 1008.72], [882.9, 1041.7], [890.13, 1048.3]], "length": 201.77}, {"u": 3270240367, "v": 316302558, "oneway": false, "points": [[740.93, 912.46], [734.02, 906.17], [598.03, 782.37], [591.57, 776.48]], "length": 201.99}, {"u": 3271744858, "v": 53642012, "oneway": false, "points": [[-946.71, -138.87], [-961.02, -123.05], [-963.84, -119.53], [-966.26, -116.03], [-967.98, -112.62], [-969.05, -107.3], [-969.1, -102.17]], "length": 44.48}, {"u": 3306923767, "v": 1179459768, "oneway": true, "points": [[-1601.13, -1030.79], [-1608.96, -1037.88], [-1610.03, -1041.9], [-1610.49, -1045.69], [-1610.93, -1055.96], [-1610.88, -1064.07], [-1611.02, -1081.33], [-1611.72, -1087.68], [-1613.1, -1092.57], [-1616.03, -1098.73]], "length": 72.48}, {"u": 3306923767, "v": 1179459735, "oneway": false, "points": [[-1601.13, -1030.79], [-1591.91, -1030.51], [-1550.44, -1030.67]], "length": 50.7}, {"u": 3306923767, "v": 2859302267, "oneway": true, "points": [[-1601.13, -1030.79], [-1601.38, -1026.03], [-1602.03, -1011.62], [-1602.23, -1006.94], [-1602.95, -986.02], [-1605.63, -953.11], [-1606.38, -940.84], [-1607.15, -929.2], [-1607.53, -917.14], [-1606.65, -896.15], [-1605.99, -882.2]], "length": 148.83}, {"u": 3306923798, "v": 3306923767, "oneway": true, "points": [[-1620.88, -981.68], [-1617.41, -988.07], [-1614.87, -999.58], [-1614.49, -1006.96], [-1614.24, -1011.66], [-1613.67, -1023.1], [-1611.63, -1027.36], [-1610.76, -1028.6], [-1609.52, -1029.31], [-1606.2, -1030.06], [-1601.13, -1030.79]], "length": 58.8}, {"u": 3306923798, "v": 1179459768, "oneway": true, "points": [[-1620.88, -981.68], [-1620.21, -995.46], [-1619.84, -1006.96], [-1619.56, -1011.67], [-1619.07, -1027.02], [-1619.08, -1032.4], [-1619.09, -1037.79], [-1617.31, -1064.01], [-1616.03, -1098.73]], "length": 117.18}, {"u": 3358764343, "v": 1188394186, "oneway": true, "points": [[-316.71, -817.83], [-323.1, -812.48], [-326.53, -808.9], [-335.05, -807.05]], "length": 22.02}, {"u": 3455711385, "v": 53425693, "oneway": true, "points": [[174.55, 398.68], [152.52, 378.51], [150.78, 376.92], [142.33, 369.18]], "length": 43.69}, {"u": 3455711385, "v": 2713311962, "oneway": false, "points": [[174.55, 398.68], [180.44, 404.02], [221.97, 441.62], [223.06, 442.61], [233.33, 451.96], [248.42, 465.54], [285.92, 499.82], [293.17, 506.43]], "length": 160.26}, {"u": 3607816606, "v": 1180005830, "oneway": false, "points": [[-2951.82, -217.84], [-2965.28, -219.92], [-2968.0, -220.34]], "length": 16.37}, {"u": 3607816606, "v": 2848493171, "oneway": true, "points": [[-2951.82, -217.84], [-2945.63, -218.48], [-2940.02, -219.06], [-2885.72, -210.21], [-2879.5, -205.98]], "length": 74.41}, {"u": 3607816648, "v": 2848493174, "oneway": false, "points": [[-2648.67, -207.9], [-2649.14, -217.69]], "length": 9.8}, {"u": 3607816648, "v": 2848493173, "oneway": true, "points": [[-2648.67, -207.9], [-2658.55, -207.73], [-2673.23, -207.3], [-2682.85, -207.51], [-2691.85, -207.58], [-2705.43, -207.27], [-2725.01, -206.54], [-2732.29, -206.32]], "length": 83.65}, {"u": 3637918464, "v": 3812685605, "oneway": false, "points": [[-3257.13, -1417.94], [-3251.62, -1424.46], [-3249.97, -1426.39], [-3225.28, -1454.57], [-3200.03, -1483.61], [-3194.77, -1489.46]], "length": 94.88}, {"u": 3637918464, "v": 53462402, "oneway": false, "points": [[-3257.13, -1417.94], [-3177.71, -1350.07], [-3170.93, -1344.26]], "length": 113.4}, {"u": 3755083604, "v": 2634693274, "oneway": false, "points": [[-557.58, -1991.27], [-575.48, -2162.17], [-578.69, -2192.9], [-579.67, -2202.28]], "length": 212.16}, {"u": 3755083604, "v": 53679791, "oneway": false, "points": [[-557.58, -1991.27], [-557.3, -1988.59], [-555.29, -1969.44], [-554.26, -1959.62]], "length": 31.82}, {"u": 3755083604, "v": 3755083605, "oneway": false, "points": [[-557.58, -1991.27], [-543.24, -1992.06], [-535.4, -1992.48], [-525.19, -1993.04]], "length": 32.44}, {"u": 3755083605, "v": 3755083604, "oneway": false, "points": [[-525.19, -1993.04], [-535.4, -1992.48], [-543.24, -1992.06], [-557.58, -1991.27]], "length": 32.44}, {"u": 3786903332, "v": 53408525, "oneway": false, "points": [[1945.84, 1657.2], [1939.63, 1650.14], [1760.93, 1485.94]], "length": 252.09}, {"u": 3786903332, "v": 2384881547, "oneway": false, "points": [[1945.84, 1657.2], [1952.39, 1650.27], [1970.5, 1631.09], [1974.45, 1626.9], [1987.97, 1612.93], [1996.61, 1604.0]], "length": 73.54}, {"u": 3786903332, "v": 53407742, "oneway": false, "points": [[1945.84, 1657.2], [1944.13, 1659.33], [1940.56, 1663.56], [1935.5, 1669.46], [1931.59, 1673.72]], "length": 21.82}, {"u": 3786906785, "v": 53498440, "oneway": false, "points": [[2530.78, 1680.68], [2529.32, 1669.16]], "length": 11.61}, {"u": 3786906785, "v": 3786906803, "oneway": true, "points": [[2530.78, 1680.68], [2532.21, 1684.28], [2533.6, 1691.46], [2535.37, 1703.84], [2536.93, 1716.14]], "length": 36.09}, {"u": 3786906803, "v": 53498437, "oneway": false, "points": [[2536.93, 1716.14], [2529.85, 1715.82]], "length": 7.09}, {"u": 3786906803, "v": 53611268, "oneway": false, "points": [[2536.93, 1716.14], [2541.89, 1716.54], [2543.62, 1716.89], [2572.88, 1722.61], [2599.83, 1730.86], [2669.45, 1749.07], [2676.22, 1750.83]], "length": 143.7}, {"u": 3786906803, "v": 3786906811, "oneway": true, "points": [[2536.93, 1716.14], [2537.34, 1724.92], [2537.44, 1727.19], [2537.59, 1732.39], [2537.56, 1735.47], [2536.84, 1739.39], [2535.22, 1745.12], [2533.2, 1749.32], [2530.43, 1755.19], [2526.9, 1762.82]], "length": 48.85}, {"u": 3786906811, "v": 2925569869, "oneway": true, "points": [[2526.9, 1762.82], [2532.22, 1766.58], [2577.37, 1795.73], [2611.62, 1814.55], [2642.61, 1829.23], [2652.59, 1833.95]], "length": 144.67}, {"u": 3786906811, "v": 3786906822, "oneway": true, "points": [[2526.9, 1762.82], [2524.02, 1768.07], [2518.53, 1776.46], [2511.47, 1786.95], [2509.28, 1789.49], [2506.96, 1791.46], [2505.24, 1792.52], [2504.16, 1793.19], [2500.04, 1794.61], [2496.26, 1795.07], [2492.82, 1795.17], [2486.59, 1795.19]], "length": 56.19}, {"u": 3786906822, "v": 53490487, "oneway": true, "points": [[2486.59, 1795.19], [2479.7, 1793.04]], "length": 7.21}, {"u": 3786910293, "v": 3786910294, "oneway": true, "points": [[2018.6, 1586.31], [2014.61, 1582.09]], "length": 5.81}, {"u": 3786910293, "v": 2384881547, "oneway": true, "points": [[2018.6, 1586.31], [2015.05, 1590.34], [2011.24, 1593.53], [2006.14, 1597.8], [1996.61, 1604.0]], "length": 28.36}, {"u": 3786910294, "v": 2384881533, "oneway": true, "points": [[2014.61, 1582.09], [2021.92, 1575.64], [2046.1, 1554.3]], "length": 41.99}, {"u": 3786926320, "v": 53611281, "oneway": false, "points": [[2619.59, 1360.86], [2625.54, 1362.56], [2683.07, 1378.98], [2705.16, 1382.58], [2715.01, 1384.07], [2713.01, 1433.86], [2712.89, 1436.92], [2712.64, 1443.06]], "length": 157.39}, {"u": 3786926320, "v": 3208339050, "oneway": false, "points": [[2619.59, 1360.86], [2611.45, 1358.01], [2552.38, 1337.29], [2535.44, 1316.95], [2483.37, 1255.43]], "length": 178.3}, {"u": 3786926320, "v": 53568332, "oneway": false, "points": [[2619.59, 1360.86], [2619.07, 1369.42], [2615.22, 1431.95], [2615.18, 1432.72], [2614.84, 1438.24]], "length": 77.52}, {"u": 3811323394, "v": 53430446, "oneway": false, "points": [[-2001.56, -1011.07], [-1952.89, -1012.49]], "length": 48.69}, {"u": 3811323394, "v": 2816310345, "oneway": false, "points": [[-2001.56, -1011.07], [-2007.75, -1010.89], [-2120.05, -1007.6], [-2129.26, -1007.33]], "length": 127.76}, {"u": 3811323394, "v": 3811323395, "oneway": false, "points": [[-2001.56, -1011.07], [-2001.42, -1004.25], [-2000.08, -936.7]], "length": 74.39}, {"u": 3811323395, "v": 2816310353, "oneway": true, "points": [[-2000.08, -936.7], [-2008.05, -936.33], [-2032.65, -935.84], [-2122.47, -933.31], [-2131.15, -933.25]], "length": 131.13}, {"u": 3811323395, "v": 3811323394, "oneway": false, "points": [[-2000.08, -936.7], [-2001.42, -1004.25], [-2001.56, -1011.07]], "length": 74.39}, {"u": 3811323395, "v": 53503864, "oneway": false, "points": [[-2000.08, -936.7], [-1999.34, -908.31], [-1999.01, -896.55], [-1998.69, -883.26], [-1998.65, -881.69], [-1998.48, -874.56], [-1998.45, -873.09], [-1998.43, -863.9]], "length": 72.82}, {"u": 3812685575, "v": 4874980024, "oneway": false, "points": [[-2766.81, -1001.86], [-2760.17, -1008.76], [-2759.15, -1009.95], [-2741.74, -1030.16], [-2734.28, -1038.75], [-2711.05, -1066.47], [-2709.61, -1068.12], [-2703.37, -1075.61]], "length": 97.31}, {"u": 3812685575, "v": 3812685579, "oneway": false, "points": [[-2766.81, -1001.86], [-2773.83, -1007.06], [-2781.8, -1013.79], [-2805.18, -1033.27]], "length": 49.6}, {"u": 3812685575, "v": 53462362, "oneway": false, "points": [[-2766.81, -1001.86], [-2760.16, -995.4], [-2750.4, -986.57], [-2697.84, -941.67], [-2692.75, -937.15], [-2682.89, -928.78], [-2675.62, -922.77], [-2664.76, -911.6]], "length": 136.31}, {"u": 3812685579, "v": 53428597, "oneway": false, "points": [[-2805.18, -1033.27], [-2811.03, -1026.86], [-2813.22, -1024.64], [-2814.61, -1023.19], [-2815.54, -1021.31], [-2815.76, -1017.08], [-2815.0, -997.37], [-2814.76, -983.18]], "length": 54.06}, {"u": 3812685579, "v": 53462374, "oneway": false, "points": [[-2805.18, -1033.27], [-2811.15, -1038.9], [-2824.54, -1050.27], [-2868.07, -1087.69], [-2878.44, -1095.8]], "length": 96.34}, {"u": 3812685579, "v": 3812685575, "oneway": false, "points": [[-2805.18, -1033.27], [-2781.8, -1013.79], [-2773.83, -1007.06], [-2766.81, -1001.86]], "length": 49.6}, {"u": 3812685605, "v": 3812685629, "oneway": false, "points": [[-3194.77, -1489.46], [-3187.92, -1497.18], [-3161.87, -1527.44], [-3136.65, -1557.43], [-3131.01, -1564.34]], "length": 98.36}, {"u": 3812685605, "v": 3637918464, "oneway": false, "points": [[-3194.77, -1489.46], [-3200.03, -1483.61], [-3225.28, -1454.57], [-3249.97, -1426.39], [-3251.62, -1424.46], [-3257.13, -1417.94]], "length": 94.88}, {"u": 3812685605, "v": 53556407, "oneway": false, "points": [[-3194.77, -1489.46], [-3187.84, -1483.64], [-3185.55, -1481.71], [-3113.73, -1420.93], [-3108.81, -1416.77]], "length": 112.58}, {"u": 3812685612, "v": 4095618185, "oneway": false, "points": [[-2285.02, -1487.18], [-2285.53, -1497.35], [-2285.74, -1501.59], [-2290.91, -1685.85], [-2291.41, -1694.6], [-2292.34, -1701.63], [-2293.7, -1706.7], [-2296.31, -1709.91], [-2301.0, -1713.47]], "length": 229.89}, {"u": 3812685612, "v": 3812685620, "oneway": false, "points": [[-2285.02, -1487.18], [-2294.47, -1486.77], [-2432.09, -1483.8]], "length": 147.11}, {"u": 3812685612, "v": 4095648221, "oneway": false, "points": [[-2285.02, -1487.18], [-2284.56, -1476.25], [-2283.11, -1441.71], [-2282.64, -1426.94], [-2281.43, -1377.66], [-2281.31, -1373.06]], "length": 114.18}, {"u": 3812685612, "v": 53511603, "oneway": false, "points": [[-2285.02, -1487.18], [-2275.77, -1487.44], [-2257.51, -1487.95], [-2223.39, -1488.9]], "length": 61.65}, {"u": 3812685620, "v": 4194510097, "oneway": false, "points": [[-2432.09, -1483.8], [-2493.38, -1482.02]], "length": 61.32}, {"u": 3812685620, "v": 53590715, "oneway": false, "points": [[-2432.09, -1483.8], [-2431.78, -1473.2], [-2431.67, -1469.29], [-2429.84, -1405.75]], "length": 78.08}, {"u": 3812685620, "v": 3812685612, "oneway": false, "points": [[-2432.09, -1483.8], [-2294.47, -1486.77], [-2285.02, -1487.18]], "length": 147.11}, {"u": 3812685626, "v": 53454658, "oneway": false, "points": [[-2572.8, -1448.51], [-2566.52, -1442.05], [-2564.28, -1439.73], [-2562.04, -1437.43], [-2560.91, -1418.94], [-2559.26, -1372.58], [-2559.13, -1369.09], [-2559.09, -1358.71]], "length": 94.23}, {"u": 3812685626, "v": 2816310343, "oneway": false, "points": [[-2572.8, -1448.51], [-2562.18, -1461.51], [-2552.75, -1473.24]], "length": 31.84}, {"u": 3812685626, "v": 53621164, "oneway": false, "points": [[-2572.8, -1448.51], [-2585.8, -1432.9], [-2617.34, -1395.16], [-2623.28, -1387.9]], "length": 78.88}, {"u": 3812685629, "v": 53473321, "oneway": false, "points": [[-3131.01, -1564.34], [-3123.68, -1558.09], [-3052.02, -1496.91], [-3045.66, -1491.48]], "length": 112.22}, {"u": 3812685629, "v": 3812685605, "oneway": false, "points": [[-3131.01, -1564.34], [-3136.65, -1557.43], [-3161.87, -1527.44], [-3187.92, -1497.18], [-3194.77, -1489.46]], "length": 98.36}, {"u": 3812685629, "v": 2637056004, "oneway": false, "points": [[-3131.01, -1564.34], [-3137.58, -1570.37], [-3143.48, -1575.76], [-3137.86, -1582.63], [-3113.07, -1611.99], [-3106.51, -1619.29], [-3098.51, -1629.86], [-3087.42, -1642.67], [-3081.15, -1649.92]], "length": 113.81}, {"u": 3859915626, "v": 53668846, "oneway": false, "points": [[1117.22, 1390.49], [1122.38, 1395.27]], "length": 7.03}, {"u": 3859915626, "v": 53453137, "oneway": false, "points": [[1117.22, 1390.49], [1113.32, 1386.88], [1111.28, 1385.02], [1095.03, 1370.19], [1071.24, 1348.48], [1056.03, 1334.58], [1045.58, 1325.04], [1040.7, 1320.59], [1026.98, 1308.07], [980.57, 1265.24], [978.68, 1263.49], [971.3, 1256.68]], "length": 197.99}, {"u": 3859915626, "v": 53536994, "oneway": true, "points": [[1117.22, 1390.49], [1124.08, 1383.42], [1135.75, 1370.83], [1141.08, 1366.59], [1147.99, 1362.56]], "length": 41.83}, {"u": 3886439879, "v": 1192150256, "oneway": true, "points": [[465.22, -60.91], [472.49, -48.43], [475.72, -40.89], [477.1, -36.53], [477.47, -35.36], [478.36, -32.55], [479.65, -27.06], [479.67, -24.79], [479.7, -21.79], [479.25, -18.66], [479.06, -17.62], [478.63, -15.58], [477.08, -7.96]], "length": 56.38}, {"u": 3886439879, "v": 13018504178, "oneway": true, "points": [[465.22, -60.91], [476.59, -50.96], [482.81, -38.55], [484.05, -34.35], [487.03, -23.96], [489.76, -17.86], [490.97, -16.43], [496.94, -2.79]], "length": 67.62}, {"u": 3894523242, "v": 1857601486, "oneway": true, "points": [[-2815.15, -204.54], [-2807.07, -209.96], [-2777.69, -210.94], [-2740.89, -212.18], [-2732.49, -212.49]], "length": 84.35}, {"u": 3894523242, "v": 2848493172, "oneway": false, "points": [[-2815.15, -204.54], [-2831.33, -204.15], [-2841.59, -203.9]], "length": 26.46}, {"u": 3937040986, "v": 3937040992, "oneway": true, "points": [[-71.3, -2249.1], [-70.39, -2241.38], [-69.9, -2236.78], [-68.81, -2231.72], [-66.7, -2228.47], [-64.85, -2226.15], [-60.46, -2223.9]], "length": 29.35}, {"u": 3937040986, "v": 366229507, "oneway": true, "points": [[-71.3, -2249.1], [-81.79, -2232.2], [-87.74, -2222.62]], "length": 31.16}, {"u": 3937040992, "v": 53447076, "oneway": false, "points": [[-60.46, -2223.9], [-45.07, -2224.73], [-37.57, -2225.58], [-28.2, -2227.55]], "length": 32.54}, {"u": 3937040992, "v": 366229507, "oneway": false, "points": [[-60.46, -2223.9], [-76.36, -2223.09], [-87.74, -2222.62]], "length": 27.31}, {"u": 3951970461, "v": 452816429, "oneway": true, "points": [[272.61, -2929.86], [258.35, -2919.32], [249.47, -2905.14], [246.29, -2898.09], [237.7, -2873.82], [231.88, -2855.59], [220.68, -2815.7], [214.27, -2791.91], [213.27, -2788.93], [211.54, -2783.78], [207.81, -2776.94], [204.09, -2773.36], [198.76, -2771.22]], "length": 180.43}, {"u": 3951970461, "v": 452816427, "oneway": true, "points": [[272.61, -2929.86], [255.0, -2890.85], [242.63, -2853.33], [232.79, -2818.32], [222.48, -2786.06], [216.8, -2768.14]], "length": 171.34}, {"u": 4055610627, "v": 53413619, "oneway": false, "points": [[-2817.48, 324.11], [-2806.01, 305.91], [-2803.69, 301.59], [-2798.52, 289.79], [-2798.49, 275.91], [-2798.47, 268.87], [-2799.15, 242.46], [-2799.56, 233.35], [-2803.46, 138.68], [-2803.66, 130.44]], "length": 198.74}, {"u": 4089413144, "v": 1179796036, "oneway": true, "points": [[-1612.07, -1846.9], [-1590.97, -1886.7], [-1579.97, -1907.4], [-1576.5, -1913.92]], "length": 75.87}, {"u": 4089413144, "v": 2573847767, "oneway": false, "points": [[-1612.07, -1846.9], [-1619.46, -1849.04], [-1622.22, -1850.62], [-1657.79, -1871.04], [-1714.38, -1902.17], [-1723.38, -1907.01]], "length": 126.7}, {"u": 4089413153, "v": 4089413144, "oneway": true, "points": [[-1592.33, -1850.98], [-1606.0, -1846.97], [-1610.69, -1846.75], [-1612.07, -1846.9]], "length": 20.34}, {"u": 4089413153, "v": 1179795960, "oneway": true, "points": [[-1592.33, -1850.98], [-1597.9, -1839.62], [-1606.43, -1816.72], [-1606.97, -1814.76], [-1609.45, -1805.75], [-1611.98, -1796.52], [-1614.42, -1775.1], [-1615.26, -1756.34], [-1614.41, -1745.48]], "length": 109.27}, {"u": 4091376211, "v": 4091376224, "oneway": true, "points": [[-441.02, -997.65], [-427.46, -999.31], [-418.66, -1000.09], [-415.09, -1000.73], [-413.12, -1001.33], [-410.12, -1002.37], [-406.38, -1004.74], [-403.74, -1006.8], [-401.83, -1009.36], [-400.01, -1012.01], [-398.95, -1015.9], [-398.55, -1020.75], [-401.23, -1035.35]], "length": 69.29}, {"u": 4091376211, "v": 2938172405, "oneway": true, "points": [[-441.02, -997.65], [-427.79, -994.62], [-418.63, -993.65], [-407.2, -993.59], [-393.38, -993.8], [-381.83, -995.14]], "length": 59.66}, {"u": 4091376224, "v": 366229504, "oneway": true, "points": [[-401.23, -1035.35], [-422.38, -1093.59], [-438.4, -1141.46], [-448.57, -1179.87], [-461.1, -1236.09], [-469.42, -1270.5], [-485.64, -1356.36], [-495.49, -1412.61], [-501.45, -1455.89], [-503.38, -1498.94], [-498.06, -1549.96], [-487.17, -1594.85], [-472.9, -1633.83], [-451.12, -1676.06], [-402.64, -1753.31], [-381.77, -1787.19], [-223.85, -2036.13], [-169.28, -2126.09], [-149.28, -2156.22], [-119.27, -2204.67], [-117.65, -2207.25], [-109.12, -2221.99]], "length": 1307.2}, {"u": 4095606995, "v": 53478277, "oneway": false, "points": [[-2134.0, -1906.29], [-2131.98, -1898.59], [-2127.05, -1880.34], [-2125.65, -1869.97], [-2125.45, -1837.6], [-2125.42, -1828.73], [-2125.29, -1824.35], [-2124.71, -1804.26], [-2122.99, -1738.31], [-2122.77, -1731.3]], "length": 176.04}, {"u": 4095606995, "v": 270405510, "oneway": false, "points": [[-2134.0, -1906.29], [-2124.91, -1909.15], [-2102.72, -1917.28], [-2081.21, -1928.66], [-2053.09, -1946.47], [-2050.0, -1948.44], [-2030.32, -1960.9], [-2020.28, -1966.94], [-2015.75, -1969.66], [-1988.65, -1985.96], [-1960.79, -2002.57], [-1942.19, -2013.89], [-1925.32, -2022.71], [-1915.94, -2025.09], [-1904.97, -2025.38], [-1896.29, -2025.43]], "length": 268.95}, {"u": 4095606995, "v": 258725731, "oneway": false, "points": [[-2134.0, -1906.29], [-2138.97, -1905.27], [-2167.24, -1901.77], [-2178.73, -1900.85], [-2193.2, -1900.09], [-2209.37, -1900.75], [-2239.89, -1904.76], [-2272.36, -1911.83], [-2307.15, -1919.95], [-2321.6, -1922.77], [-2335.14, -1923.92], [-2343.88, -1923.19], [-2360.86, -1919.85], [-2368.64, -1917.52], [-2402.67, -1907.35], [-2425.07, -1900.42], [-2439.32, -1896.32], [-2457.6, -1892.84], [-2475.03, -1890.96], [-2504.65, -1889.26], [-2531.98, -1888.77], [-2537.1, -1888.67], [-2557.85, -1888.29], [-2598.69, -1888.78], [-2621.8, -1890.35], [-2632.21, -1891.05], [-2635.52, -1891.28], [-2646.6, -1893.37], [-2662.93, -1898.1], [-2677.86, -1903.24], [-2697.55, -1910.48], [-2706.68, -1914.13], [-2720.08, -1916.25], [-2733.89, -1916.46], [-2764.04, -1913.48], [-2779.84, -1911.14]], "length": 657.09}, {"u": 4095618185, "v": 2816310343, "oneway": true, "points": [[-2301.0, -1713.47], [-2304.48, -1704.75], [-2308.48, -1685.96], [-2310.39, -1678.46], [-2319.98, -1659.83], [-2327.08, -1647.15], [-2335.1, -1635.06], [-2343.97, -1623.0], [-2354.57, -1610.96], [-2355.46, -1609.79], [-2366.44, -1598.02], [-2376.57, -1587.4], [-2381.07, -1583.61], [-2390.01, -1576.09], [-2403.45, -1563.64], [-2406.69, -1560.64], [-2432.77, -1543.55], [-2466.19, -1523.8], [-2480.62, -1519.6], [-2510.12, -1512.3], [-2528.96, -1506.79], [-2547.03, -1501.09], [-2553.94, -1498.05], [-2557.8, -1494.25], [-2559.36, -1491.11], [-2560.05, -1486.71], [-2559.7, -1484.1], [-2557.99, -1480.17], [-2552.75, -1473.24]], "length": 380.42}, {"u": 4095618185, "v": 3812685612, "oneway": false, "points": [[-2301.0, -1713.47], [-2296.31, -1709.91], [-2293.7, -1706.7], [-2292.34, -1701.63], [-2291.41, -1694.6], [-2290.91, -1685.85], [-2285.74, -1501.59], [-2285.53, -1497.35], [-2285.02, -1487.18]], "length": 229.89}, {"u": 4095648221, "v": 4095648227, "oneway": true, "points": [[-2281.31, -1373.06], [-2279.26, -1372.89], [-2277.37, -1372.05], [-2275.85, -1370.65], [-2274.87, -1368.84], [-2274.54, -1366.8]], "length": 10.32}, {"u": 4095648221, "v": 3812685612, "oneway": false, "points": [[-2281.31, -1373.06], [-2281.43, -1377.66], [-2282.64, -1426.94], [-2283.11, -1441.71], [-2284.56, -1476.25], [-2285.02, -1487.18]], "length": 114.18}, {"u": 4095648223, "v": 53621277, "oneway": false, "points": [[-2287.07, -1366.43], [-2290.35, -1366.34], [-2293.56, -1366.29], [-2371.5, -1363.87], [-2376.16, -1363.84]], "length": 89.12}, {"u": 4095648223, "v": 4095648221, "oneway": true, "points": [[-2287.07, -1366.43], [-2286.9, -1368.36], [-2286.14, -1370.15], [-2284.87, -1371.61], [-2283.2, -1372.61], [-2281.31, -1373.06]], "length": 9.7}, {"u": 4095648225, "v": 53692030, "oneway": false, "points": [[-2280.94, -1360.58], [-2280.77, -1355.66], [-2278.98, -1306.26], [-2277.29, -1256.37], [-2276.94, -1245.39]], "length": 115.26}, {"u": 4095648225, "v": 4095648223, "oneway": true, "points": [[-2280.94, -1360.58], [-2282.77, -1360.9], [-2284.43, -1361.73], [-2285.78, -1363.01], [-2286.68, -1364.62], [-2287.07, -1366.43]], "length": 9.27}, {"u": 4095648227, "v": 53621269, "oneway": false, "points": [[-2274.54, -1366.8], [-2271.93, -1366.88], [-2270.33, -1366.92], [-2144.06, -1370.32], [-2135.99, -1370.55]], "length": 138.6}, {"u": 4095648227, "v": 4095648225, "oneway": true, "points": [[-2274.54, -1366.8], [-2274.87, -1364.86], [-2275.78, -1363.11], [-2277.2, -1361.72], [-2278.98, -1360.86], [-2280.94, -1360.58]], "length": 9.88}, {"u": 4095666564, "v": 4095684894, "oneway": true, "points": [[-1891.29, -1816.52], [-1894.38, -1826.02], [-1895.57, -1835.34], [-1896.07, -1839.26], [-1900.06, -1886.84], [-1900.86, -1907.52], [-1900.68, -1931.7], [-1899.7, -1943.05], [-1895.23, -1965.13]], "length": 149.88}, {"u": 4095666564, "v": 2573847782, "oneway": false, "points": [[-1891.29, -1816.52], [-1890.71, -1798.03], [-1888.93, -1748.82], [-1888.6, -1739.78]], "length": 76.78}, {"u": 4095684894, "v": 2573847770, "oneway": false, "points": [[-1895.23, -1965.13], [-1895.77, -1987.6], [-1896.1, -2001.38]], "length": 36.25}, {"u": 4095684894, "v": 4095666564, "oneway": true, "points": [[-1895.23, -1965.13], [-1894.0, -1956.95], [-1893.83, -1955.83], [-1892.53, -1946.23], [-1892.06, -1938.38], [-1890.61, -1887.18], [-1889.8, -1835.51], [-1889.73, -1830.35], [-1889.99, -1823.18], [-1891.29, -1816.52]], "length": 148.98}, {"u": 4139816155, "v": 53607068, "oneway": true, "points": [[-1993.57, -655.14], [-1993.22, -645.78], [-1992.96, -639.32], [-1992.55, -622.59], [-1992.53, -621.78], [-1992.33, -611.83], [-1991.99, -594.96], [-1991.15, -552.9], [-1991.1, -550.48], [-1990.44, -517.85], [-1990.31, -507.25], [-1990.28, -505.32], [-1990.15, -496.07]], "length": 159.11}, {"u": 4139816155, "v": 1180005831, "oneway": false, "points": [[-1993.57, -655.14], [-2005.11, -654.56], [-2030.84, -653.28], [-2075.4, -651.07], [-2086.28, -650.53], [-2119.42, -648.88], [-2128.17, -648.45]], "length": 134.76}, {"u": 4139816155, "v": 53509962, "oneway": false, "points": [[-1993.57, -655.14], [-1983.93, -655.62], [-1966.42, -656.51], [-1937.8, -657.96], [-1936.05, -658.06], [-1916.9, -659.04], [-1907.91, -659.5], [-1893.06, -660.26], [-1873.02, -661.28], [-1869.33, -661.46], [-1860.57, -661.91]], "length": 133.17}, {"u": 4172253594, "v": 2705148498, "oneway": true, "points": [[537.1, 1135.95], [530.85, 1129.19], [510.9, 1110.91], [475.31, 1078.01], [464.07, 1068.83], [461.32, 1066.33]], "length": 102.97}, {"u": 4172253594, "v": 53578330, "oneway": false, "points": [[537.1, 1135.95], [531.44, 1142.1], [528.51, 1145.2], [513.71, 1160.92], [510.17, 1164.81], [504.13, 1173.59], [502.77, 1177.57]], "length": 54.34}, {"u": 4172253594, "v": 53640824, "oneway": false, "points": [[537.1, 1135.95], [543.48, 1129.12], [544.34, 1128.16], [596.95, 1070.44], [599.48, 1067.67], [601.07, 1065.92], [605.92, 1060.6]], "length": 102.05}, {"u": 4173748917, "v": 53720172, "oneway": true, "points": [[-695.05, -117.05], [-682.95, -106.15], [-664.12, -89.19], [-656.51, -82.34], [-655.18, -81.14], [-636.49, -64.32], [-635.02, -62.99], [-630.82, -59.21], [-612.34, -42.55], [-567.99, -2.37], [-551.56, 12.18], [-544.44, 18.59]], "length": 202.69}, {"u": 4173748917, "v": 53591794, "oneway": true, "points": [[-695.05, -117.05], [-685.63, -127.74], [-635.86, -184.19], [-634.19, -186.1], [-627.23, -193.98]], "length": 102.55}, {"u": 4173748917, "v": 53472467, "oneway": true, "points": [[-695.05, -117.05], [-699.45, -114.08], [-700.94, -112.57], [-701.88, -110.85], [-702.28, -109.69], [-702.55, -108.5], [-702.78, -106.2], [-703.05, -104.2], [-703.36, -103.33], [-703.86, -102.7], [-737.28, -65.67], [-751.92, -48.47], [-754.02, -46.71], [-760.87, -41.41]], "length": 101.77}, {"u": 4173789198, "v": 3241106091, "oneway": true, "points": [[-1088.88, -415.15], [-1080.08, -415.5], [-1064.48, -416.02], [-1058.9, -416.18], [-1053.31, -416.25], [-1044.61, -415.23], [-1042.13, -414.45], [-1033.89, -411.86], [-1028.46, -409.19], [-1018.27, -403.58], [-1002.71, -392.61], [-1000.25, -391.13], [-994.7, -387.31]], "length": 101.92}, {"u": 4173789198, "v": 2859245565, "oneway": false, "points": [[-1088.88, -415.15], [-1089.4, -424.35], [-1089.57, -427.23], [-1090.02, -435.13], [-1093.52, -496.28], [-1093.74, -500.1], [-1095.45, -529.88], [-1095.58, -532.23], [-1096.1, -541.37]], "length": 126.43}, {"u": 4173796882, "v": 917593526, "oneway": false, "points": [[-491.34, -381.32], [-492.29, -382.22], [-508.09, -397.66], [-526.16, -413.91], [-530.48, -417.74], [-532.48, -419.5], [-557.03, -442.28], [-577.99, -462.43], [-578.79, -463.16], [-594.16, -477.16], [-598.93, -481.5], [-611.46, -492.91], [-618.78, -499.57]], "length": 173.87}, {"u": 4173796882, "v": 13324853247, "oneway": true, "points": [[-491.34, -381.32], [-489.36, -381.88], [-487.27, -382.0], [-485.04, -381.81], [-483.04, -381.05], [-473.74, -372.74], [-467.96, -367.54]], "length": 28.78}, {"u": 4173797761, "v": 53482965, "oneway": true, "points": [[-373.24, -721.6], [-389.31, -736.13], [-396.17, -742.63]], "length": 31.11}, {"u": 4173797761, "v": 53444048, "oneway": false, "points": [[-373.24, -721.6], [-362.72, -711.44], [-351.99, -701.67], [-336.82, -687.89], [-327.35, -679.26], [-296.05, -650.8], [-259.24, -617.29], [-245.67, -604.97]], "length": 172.85}, {"u": 4194510097, "v": 3812685620, "oneway": false, "points": [[-2493.38, -1482.02], [-2432.09, -1483.8]], "length": 61.32}, {"u": 4194510097, "v": 2816310343, "oneway": true, "points": [[-2493.38, -1482.02], [-2531.51, -1477.48], [-2535.7, -1477.19], [-2543.82, -1477.25], [-2545.45, -1477.0], [-2547.99, -1476.03], [-2552.75, -1473.24]], "length": 60.6}, {"u": 4214349299, "v": 53504312, "oneway": false, "points": [[-2665.19, -741.88], [-2664.89, -732.79], [-2659.58, -566.02], [-2659.19, -559.08]], "length": 182.9}, {"u": 4214349299, "v": 1180005819, "oneway": false, "points": [[-2665.19, -741.88], [-2665.45, -748.68], [-2666.3, -775.73], [-2667.92, -825.01], [-2668.24, -834.66]], "length": 92.83}, {"u": 4214349299, "v": 53582923, "oneway": false, "points": [[-2665.19, -741.88], [-2675.21, -741.82], [-2739.76, -738.94], [-2747.79, -738.58]], "length": 82.67}, {"u": 4248707700, "v": 1179796036, "oneway": false, "points": [[-1562.21, -1905.85], [-1569.76, -1910.11], [-1576.5, -1913.92]], "length": 16.41}, {"u": 4248707700, "v": 4089413153, "oneway": true, "points": [[-1562.21, -1905.85], [-1565.63, -1900.08], [-1566.21, -1899.23], [-1573.28, -1886.53], [-1589.67, -1856.4], [-1592.33, -1850.98]], "length": 62.61}, {"u": 4248941674, "v": 2638675157, "oneway": false, "points": [[-1557.44, -2833.02], [-1575.47, -2819.24], [-1584.58, -2812.28]], "length": 34.16}, {"u": 4248941674, "v": 53473027, "oneway": false, "points": [[-1557.44, -2833.02], [-1523.61, -2858.26], [-1508.67, -2865.76], [-1473.08, -2876.51], [-1438.69, -2884.58], [-1435.63, -2885.17], [-1422.31, -2887.72]], "length": 148.1}, {"u": 4687823320, "v": 2637707069, "oneway": true, "points": [[297.08, -3020.89], [332.27, -3087.52]], "length": 75.35}, {"u": 4687823320, "v": 53727087, "oneway": true, "points": [[297.08, -3020.89], [291.29, -3047.25], [289.03, -3060.4], [285.72, -3065.98], [281.37, -3071.02], [276.4, -3076.32], [267.71, -3083.64], [258.35, -3090.89]], "length": 83.95}, {"u": 4874980024, "v": 53454630, "oneway": false, "points": [[-2703.37, -1075.61], [-2698.06, -1082.03], [-2695.56, -1084.98], [-2672.13, -1112.5], [-2646.4, -1142.39], [-2640.7, -1148.95]], "length": 96.47}, {"u": 4874980024, "v": 3812685575, "oneway": false, "points": [[-2703.37, -1075.61], [-2709.61, -1068.12], [-2711.05, -1066.47], [-2734.28, -1038.75], [-2741.74, -1030.16], [-2759.15, -1009.95], [-2760.17, -1008.76], [-2766.81, -1001.86]], "length": 97.31}, {"u": 4874980024, "v": 53534017, "oneway": false, "points": [[-2703.37, -1075.61], [-2696.41, -1069.73], [-2573.13, -962.98], [-2570.45, -960.66], [-2563.2, -954.85]], "length": 185.02}, {"u": 4874980024, "v": 4874980027, "oneway": false, "points": [[-2703.37, -1075.61], [-2710.29, -1081.22], [-2801.11, -1158.09], [-2803.97, -1160.39], [-2811.27, -1166.51]], "length": 141.09}, {"u": 4874980027, "v": 53473289, "oneway": false, "points": [[-2811.27, -1166.51], [-2805.34, -1173.56], [-2780.74, -1202.02], [-2753.72, -1233.91], [-2749.66, -1238.71]], "length": 94.91}, {"u": 4874980027, "v": 53462374, "oneway": false, "points": [[-2811.27, -1166.51], [-2817.1, -1160.07], [-2842.4, -1130.29], [-2868.82, -1101.56], [-2878.44, -1095.8]], "length": 98.01}, {"u": 4874980027, "v": 4874980024, "oneway": false, "points": [[-2811.27, -1166.51], [-2803.97, -1160.39], [-2801.11, -1158.09], [-2710.29, -1081.22], [-2703.37, -1075.61]], "length": 141.09}, {"u": 4874980027, "v": 53556400, "oneway": false, "points": [[-2811.27, -1166.51], [-2817.92, -1172.23], [-2820.78, -1174.66], [-2901.71, -1242.68], [-2903.81, -1244.41], [-2910.31, -1249.96]], "length": 129.51}, {"u": 5112004105, "v": 5463552488, "oneway": false, "points": [[-595.96, 379.62], [-605.3, 371.04], [-636.4, 342.43], [-644.7, 334.81], [-649.63, 330.28]], "length": 72.9}, {"u": 5446595705, "v": 445963180, "oneway": false, "points": [[-1556.25, 145.63], [-1554.07, 131.47], [-1554.19, 126.4], [-1554.81, 115.77], [-1554.92, 112.62], [-1555.12, 108.06], [-1556.08, 85.1], [-1556.72, 72.17]], "length": 73.68}, {"u": 5463552488, "v": 5468393309, "oneway": false, "points": [[-649.63, 330.28], [-644.63, 324.75], [-641.14, 320.9], [-631.12, 309.82], [-627.66, 305.98], [-604.39, 280.25], [-601.41, 276.95], [-588.51, 262.67], [-582.58, 256.11]], "length": 99.99}, {"u": 5463552488, "v": 53441253, "oneway": false, "points": [[-649.63, 330.28], [-656.22, 324.62], [-661.8, 319.85], [-663.18, 318.66], [-693.88, 290.3], [-701.44, 283.18], [-721.67, 264.88], [-740.07, 248.23], [-747.15, 241.66]], "length": 131.79}, {"u": 5463552488, "v": 5112004105, "oneway": false, "points": [[-649.63, 330.28], [-644.7, 334.81], [-636.4, 342.43], [-605.3, 371.04], [-595.96, 379.62]], "length": 72.9}, {"u": 5468393309, "v": 53637455, "oneway": false, "points": [[-582.58, 256.11], [-568.97, 268.42], [-566.96, 270.24], [-536.52, 297.77], [-515.05, 317.19], [-514.23, 317.94], [-513.15, 318.92], [-511.16, 320.72], [-493.88, 336.35], [-485.88, 343.58]], "length": 130.4}, {"u": 5468393309, "v": 53479821, "oneway": false, "points": [[-582.58, 256.11], [-597.15, 242.86], [-599.43, 240.79], [-619.4, 222.62], [-638.66, 205.1], [-648.29, 196.35], [-660.21, 185.51], [-673.75, 173.19], [-680.03, 167.47]], "length": 131.73}, {"u": 5468393309, "v": 13334632600, "oneway": false, "points": [[-582.58, 256.11], [-576.55, 249.43], [-564.28, 235.86], [-561.04, 232.27], [-555.0, 225.6], [-550.52, 220.64], [-540.72, 209.8], [-533.62, 201.94]], "length": 73.02}, {"u": 5468393309, "v": 5463552488, "oneway": false, "points": [[-582.58, 256.11], [-588.51, 262.67], [-601.41, 276.95], [-604.39, 280.25], [-627.66, 305.98], [-631.12, 309.82], [-641.14, 320.9], [-644.63, 324.75], [-649.63, 330.28]], "length": 99.99}, {"u": 5497859257, "v": 2771341200, "oneway": false, "points": [[-1488.69, -2173.17], [-1488.93, -2183.58], [-1490.93, -2267.38], [-1491.08, -2273.31]], "length": 100.17}, {"u": 5497859257, "v": 53639872, "oneway": false, "points": [[-1488.69, -2173.17], [-1488.32, -2165.02], [-1486.74, -2130.19]], "length": 43.02}, {"u": 5497859257, "v": 53447618, "oneway": false, "points": [[-1488.69, -2173.17], [-1498.93, -2172.81], [-1503.59, -2172.64], [-1523.45, -2171.95], [-1538.26, -2171.06], [-1556.3, -2168.84], [-1567.5, -2167.45], [-1576.92, -2163.18], [-1585.68, -2156.04], [-1607.38, -2119.63], [-1681.05, -1984.48], [-1682.14, -1982.49], [-1686.79, -1973.96]], "length": 309.02}, {"u": 5730487258, "v": 53538743, "oneway": false, "points": [[65.37, 299.56], [62.28, 296.63], [15.79, 254.48], [8.99, 248.4]], "length": 76.13}, {"u": 5730487258, "v": 5730487260, "oneway": false, "points": [[65.37, 299.56], [66.54, 299.11], [67.79, 298.97], [69.03, 299.17], [70.17, 299.7], [71.13, 300.51]], "length": 6.28}, {"u": 5730487258, "v": 5730487261, "oneway": false, "points": [[65.37, 299.56], [64.32, 300.36], [63.54, 301.42], [63.08, 302.64], [62.99, 303.95], [63.26, 305.24], [63.88, 306.38], [64.79, 307.33]], "length": 9.19}, {"u": 5730487259, "v": 5730487261, "oneway": false, "points": [[72.15, 304.94], [71.63, 306.11], [70.79, 307.1], [69.71, 307.83], [68.48, 308.23], [67.18, 308.28], [65.92, 307.97], [64.79, 307.33]], "length": 9.08}, {"u": 5730487259, "v": 5730487260, "oneway": false, "points": [[72.15, 304.94], [72.34, 303.77], [72.22, 302.59], [71.81, 301.48], [71.13, 300.51]], "length": 4.74}, {"u": 5730487259, "v": 53425693, "oneway": false, "points": [[72.15, 304.94], [75.96, 308.22], [115.83, 344.83], [134.76, 362.22], [136.71, 364.01], [142.33, 369.18]], "length": 95.14}, {"u": 5730487260, "v": 5730487259, "oneway": false, "points": [[71.13, 300.51], [71.81, 301.48], [72.22, 302.59], [72.34, 303.77], [72.15, 304.94]], "length": 4.74}, {"u": 5730487260, "v": 5730487258, "oneway": false, "points": [[71.13, 300.51], [70.17, 299.7], [69.03, 299.17], [67.79, 298.97], [66.54, 299.11], [65.37, 299.56]], "length": 6.28}, {"u": 5730487261, "v": 5730487258, "oneway": false, "points": [[64.79, 307.33], [63.88, 306.38], [63.26, 305.24], [62.99, 303.95], [63.08, 302.64], [63.54, 301.42], [64.32, 300.36], [65.37, 299.56]], "length": 9.19}, {"u": 5730487261, "v": 5730487259, "oneway": false, "points": [[64.79, 307.33], [65.92, 307.97], [67.18, 308.28], [68.48, 308.23], [69.71, 307.83], [70.79, 307.1], [71.63, 306.11], [72.15, 304.94]], "length": 9.08}, {"u": 5730487261, "v": 53541408, "oneway": true, "points": [[64.79, 307.33], [62.59, 309.13], [42.99, 330.72], [28.99, 346.14], [-41.27, 423.51], [-60.07, 444.2], [-60.86, 445.07], [-66.57, 451.36]], "length": 194.97}, {"u": 5890633223, "v": 53463508, "oneway": false, "points": [[-783.11, -2431.81], [-782.89, -2424.66]], "length": 7.15}, {"u": 5890633223, "v": 53463513, "oneway": false, "points": [[-783.11, -2431.81], [-783.29, -2437.42], [-783.42, -2439.96], [-788.12, -2531.35], [-789.3, -2535.58], [-792.73, -2545.57]], "length": 114.62}, {"u": 5890633223, "v": 6233229328, "oneway": true, "points": [[-783.11, -2431.81], [-774.44, -2432.27], [-754.64, -2433.42], [-748.23, -2433.7]], "length": 34.92}, {"u": 5890633230, "v": 53434862, "oneway": false, "points": [[-822.78, -2426.06], [-932.17, -2420.83], [-940.65, -2420.37]], "length": 118.01}, {"u": 5890633230, "v": 5890633223, "oneway": true, "points": [[-822.78, -2426.06], [-816.83, -2430.08], [-790.11, -2431.49], [-783.11, -2431.81]], "length": 40.95}, {"u": 6233229328, "v": 53463567, "oneway": false, "points": [[-748.23, -2433.7], [-747.87, -2426.38]], "length": 7.32}, {"u": 6233229328, "v": 316562667, "oneway": true, "points": [[-748.23, -2433.7], [-742.97, -2433.91], [-698.5, -2436.09], [-651.83, -2438.69], [-605.75, -2441.37], [-570.27, -2445.31], [-544.55, -2448.13], [-536.68, -2449.6], [-527.73, -2451.27]], "length": 221.37}, {"u": 6275800735, "v": 13146093508, "oneway": true, "points": [[-1222.58, -924.38], [-1259.5, -908.59], [-1273.06, -902.32], [-1290.83, -894.51], [-1317.24, -885.49], [-1330.93, -882.47], [-1346.61, -880.36], [-1365.55, -879.24], [-1381.54, -878.67], [-1456.75, -883.76], [-1462.59, -885.51], [-1468.06, -888.64]], "length": 255.02}, {"u": 6291669589, "v": 2637766387, "oneway": false, "points": [[-53.22, -2626.67], [-41.2, -2631.09], [-39.59, -2631.68], [-33.37, -2634.39], [-11.16, -2644.05], [19.9, -2660.82], [38.49, -2672.69], [41.76, -2674.78], [54.12, -2684.58], [58.24, -2688.26], [70.33, -2699.04], [103.48, -2731.66], [115.47, -2742.89]], "length": 207.19}, {"u": 6291669589, "v": 316562664, "oneway": false, "points": [[-53.22, -2626.67], [-93.19, -2610.74], [-96.82, -2609.3], [-146.62, -2589.45], [-159.75, -2584.27], [-191.67, -2572.01], [-238.46, -2553.57], [-273.7, -2540.09], [-280.44, -2536.91]], "length": 244.33}, {"u": 6291669589, "v": 847061279, "oneway": false, "points": [[-53.22, -2626.67], [-59.38, -2642.81], [-63.08, -2651.53], [-65.32, -2656.85], [-71.46, -2674.79], [-76.82, -2688.42], [-81.84, -2713.06], [-83.5, -2731.47], [-78.47, -2771.12], [-72.25, -2820.26], [-73.16, -2843.68], [-75.91, -2864.81], [-90.51, -2906.93], [-111.6, -2948.12], [-135.89, -2988.16], [-171.88, -3028.84], [-179.79, -3033.6]], "length": 445.24}, {"u": 6401044369, "v": 452816427, "oneway": false, "points": [[240.91, -2678.39], [243.45, -2689.5], [247.16, -2698.78], [249.25, -2705.27], [256.15, -2734.09], [257.0, -2740.03], [255.83, -2745.23], [254.66, -2749.33], [250.64, -2755.54], [246.52, -2759.11], [239.24, -2762.88], [229.51, -2765.16], [221.91, -2766.94], [216.8, -2768.14]], "length": 117.53}, {"u": 6401044370, "v": 53465696, "oneway": false, "points": [[125.18, -2468.62], [120.91, -2462.07], [116.88, -2457.62], [111.63, -2451.89], [89.78, -2427.4], [78.6, -2414.63], [64.05, -2398.72], [44.65, -2377.94], [33.59, -2362.34], [2.01, -2317.77], [-0.27, -2311.92], [-1.61, -2304.44], [-1.79, -2293.65], [-0.81, -2282.23], [-0.16, -2265.02], [-2.68, -2253.28], [-5.78, -2247.52]], "length": 267.02}, {"u": 6404917413, "v": 316562664, "oneway": false, "points": [[-604.45, -2831.57], [-581.4, -2812.45], [-563.02, -2797.2], [-511.59, -2754.54], [-409.2, -2678.81], [-319.69, -2607.49], [-300.78, -2589.15], [-294.55, -2577.59], [-287.7, -2555.25], [-284.1, -2546.15], [-280.44, -2536.91]], "length": 445.01}, {"u": 6577170380, "v": 53636372, "oneway": false, "points": [[2008.66, 1425.79], [2028.28, 1456.61]], "length": 36.54}, {"u": 6577170380, "v": 1142903012, "oneway": true, "points": [[2008.66, 1425.79], [1987.75, 1395.31], [1983.26, 1388.13]], "length": 45.43}, {"u": 6577823481, "v": 53486814, "oneway": true, "points": [[-2416.0, -213.81], [-2429.16, -205.84], [-2452.23, -192.73], [-2511.87, -165.37], [-2526.05, -158.62], [-2536.57, -153.65], [-2541.33, -149.96], [-2546.4, -144.7], [-2548.35, -141.98], [-2550.66, -137.13], [-2551.87, -131.82], [-2551.86, -117.38], [-2551.43, -100.33], [-2551.31, -95.3], [-2550.75, -82.29], [-2550.11, -67.24], [-2549.86, -60.0], [-2548.96, -33.58], [-2548.17, -22.19]], "length": 272.09}, {"u": 6610389586, "v": 450714559, "oneway": true, "points": [[-1029.88, -280.62], [-1033.53, -281.73], [-1037.51, -282.72], [-1041.69, -283.28], [-1045.56, -283.52], [-1053.71, -283.41], [-1065.43, -283.0], [-1078.18, -282.39], [-1089.73, -281.84], [-1135.97, -279.62], [-1159.9, -278.48], [-1178.03, -277.6]], "length": 148.61}, {"u": 6610389586, "v": 3241106091, "oneway": true, "points": [[-1029.88, -280.62], [-1029.82, -293.9], [-1029.69, -311.52], [-1029.57, -332.16], [-1029.36, -337.48], [-1028.62, -342.77], [-1027.61, -346.7], [-1026.48, -350.26], [-1024.76, -354.01], [-1022.81, -357.03], [-1020.72, -359.78], [-1017.98, -362.99], [-1003.37, -378.07], [-994.7, -387.31]], "length": 119.06}, {"u": 6915301805, "v": 53626974, "oneway": false, "points": [[2223.76, 2429.21], [2251.82, 2457.12], [2258.87, 2463.51]], "length": 49.1}, {"u": 7189398145, "v": 1179967125, "oneway": false, "points": [[-857.38, -1180.35], [-830.36, -1158.3], [-823.25, -1152.12], [-817.79, -1144.44], [-815.86, -1138.39], [-816.18, -1134.03], [-817.85, -1131.49], [-819.11, -1129.58], [-836.86, -1108.17], [-843.94, -1097.46], [-870.94, -1056.84], [-874.47, -1054.56], [-877.4, -1053.48], [-880.35, -1053.38], [-883.32, -1054.44], [-886.02, -1056.49], [-902.46, -1076.04], [-933.23, -1103.58]], "length": 242.85}, {"u": 7189398145, "v": 13056348946, "oneway": true, "points": [[-857.38, -1180.35], [-862.79, -1180.92], [-867.27, -1182.31], [-869.98, -1183.87], [-877.94, -1191.62], [-881.7, -1195.03], [-883.47, -1196.63], [-886.13, -1198.58], [-889.59, -1200.21]], "length": 38.95}, {"u": 7189398161, "v": 13056348945, "oneway": true, "points": [[-918.74, -1189.2], [-905.19, -1199.55], [-897.84, -1204.06], [-894.83, -1205.42], [-891.8, -1206.0], [-888.5, -1206.1], [-884.92, -1205.43]], "length": 39.01}, {"u": 7189398161, "v": 1191535148, "oneway": true, "points": [[-918.74, -1189.2], [-856.78, -1256.36], [-849.34, -1264.4], [-847.17, -1266.75], [-842.2, -1272.14]], "length": 112.86}, {"u": 8174660902, "v": 1182471954, "oneway": true, "points": [[-538.13, -862.23], [-534.36, -861.62], [-529.54, -860.34], [-525.09, -858.51], [-517.29, -853.59], [-507.59, -845.2], [-491.1, -830.22], [-485.99, -825.59], [-470.91, -811.89], [-461.74, -803.55], [-432.84, -777.31], [-429.4, -774.18], [-426.54, -771.54]], "length": 145.18}, {"u": 8316813421, "v": 1850006061, "oneway": false, "points": [[-3144.59, 144.18], [-3010.34, 139.03]], "length": 134.35}, {"u": 8316813421, "v": 53486863, "oneway": false, "points": [[-3144.59, 144.18], [-3144.88, 135.24], [-3147.53, 51.83], [-3147.61, 49.33], [-3147.99, 43.86], [-3148.12, 42.61], [-3148.17, 40.7], [-3147.13, 39.35], [-3145.9, 39.01], [-3094.07, 37.08], [-3069.74, 35.9], [-3051.58, 35.62]], "length": 200.92}, {"u": 8729846828, "v": 53667521, "oneway": false, "points": [[75.45, 444.71], [82.17, 450.8], [84.8, 453.17], [121.69, 486.12], [133.01, 496.24], [174.73, 533.5], [181.19, 539.27], [216.35, 570.95], [218.97, 573.11], [226.24, 579.84]], "length": 202.49}, {"u": 8729846828, "v": 53425693, "oneway": true, "points": [[75.45, 444.71], [76.45, 443.59], [87.24, 431.43], [136.62, 375.79], [142.33, 369.18]], "length": 100.89}, {"u": 8868957845, "v": 1179459735, "oneway": true, "points": [[-1373.72, -1040.32], [-1372.83, -1035.72], [-1372.79, -1025.67], [-1375.24, -1019.71], [-1382.48, -1019.48], [-1405.58, -1019.43], [-1416.25, -1020.2], [-1465.66, -1019.96], [-1471.62, -1019.6], [-1491.73, -1019.93], [-1508.13, -1022.89], [-1550.44, -1030.67]], "length": 197.41}, {"u": 8868957845, "v": 11603196290, "oneway": false, "points": [[-1373.72, -1040.32], [-1373.72, -1047.22], [-1374.09, -1095.51], [-1373.79, -1098.96], [-1373.25, -1102.44], [-1372.59, -1105.59], [-1371.78, -1108.7], [-1370.79, -1111.7], [-1369.71, -1114.43], [-1368.55, -1116.86], [-1367.3, -1119.19], [-1365.85, -1121.4], [-1364.45, -1123.21], [-1362.81, -1125.05], [-1352.96, -1135.8], [-1345.79, -1143.5]], "length": 112.54}, {"u": 9146885459, "v": 53473027, "oneway": false, "points": [[-1405.98, -2626.93], [-1407.62, -2638.67], [-1408.67, -2647.14], [-1408.83, -2649.92], [-1411.5, -2709.52], [-1413.69, -2758.25], [-1414.74, -2781.76], [-1416.47, -2820.31], [-1418.95, -2852.88], [-1420.65, -2875.21], [-1420.97, -2877.61], [-1422.31, -2887.72]], "length": 261.42}, {"u": 9146885459, "v": 53473010, "oneway": false, "points": [[-1405.98, -2626.93], [-1403.79, -2607.71], [-1402.71, -2604.29], [-1393.27, -2574.33], [-1384.25, -2545.7], [-1384.1, -2544.46], [-1383.11, -2536.22], [-1382.83, -2533.97], [-1381.9, -2526.31], [-1380.77, -2497.64], [-1379.62, -2468.81], [-1378.83, -2448.97], [-1378.42, -2438.5], [-1376.2, -2405.91], [-1375.16, -2390.42]], "length": 239.96}, {"u": 9146885459, "v": 1180187578, "oneway": false, "points": [[-1405.98, -2626.93], [-1397.99, -2627.8], [-1353.05, -2629.82], [-1337.68, -2634.39], [-1325.01, -2639.99], [-1305.09, -2652.94], [-1289.55, -2657.04], [-1258.51, -2660.46], [-1219.52, -2663.74], [-1190.97, -2665.43], [-1176.33, -2664.66], [-1169.05, -2661.87]], "length": 244.16}, {"u": 9146885459, "v": 10829398901, "oneway": false, "points": [[-1405.98, -2626.93], [-1415.17, -2626.6], [-1448.61, -2625.11], [-1456.85, -2624.89], [-1498.45, -2623.07], [-1508.17, -2621.6]], "length": 102.38}, {"u": 10829398901, "v": 9146885459, "oneway": false, "points": [[-1508.17, -2621.6], [-1498.45, -2623.07], [-1456.85, -2624.89], [-1448.61, -2625.11], [-1415.17, -2626.6], [-1405.98, -2626.93]], "length": 102.38}, {"u": 10829398901, "v": 2638675157, "oneway": false, "points": [[-1508.17, -2621.6], [-1509.31, -2631.5], [-1510.72, -2643.73], [-1512.28, -2650.78], [-1523.32, -2689.99], [-1535.36, -2721.82], [-1542.08, -2737.23], [-1558.25, -2769.95], [-1580.22, -2805.16], [-1584.58, -2812.28]], "length": 207.42}, {"u": 10829398901, "v": 2638675190, "oneway": false, "points": [[-1508.17, -2621.6], [-1507.8, -2618.43], [-1507.53, -2612.52], [-1506.32, -2585.93], [-1502.53, -2518.81], [-1501.72, -2511.73], [-1501.25, -2504.23]], "length": 117.6}, {"u": 11205598924, "v": 1706427652, "oneway": true, "points": [[2572.94, 2324.86], [2583.97, 2331.84], [2587.73, 2333.12], [2589.13, 2333.59], [2603.12, 2338.48]], "length": 33.31}, {"u": 11205598924, "v": 53447046, "oneway": false, "points": [[2572.94, 2324.86], [2559.74, 2310.38], [2543.42, 2291.08], [2538.45, 2283.54]], "length": 53.9}, {"u": 11390496552, "v": 316305090, "oneway": false, "points": [[1498.01, 376.76], [1490.62, 387.07], [1472.87, 407.14]], "length": 39.48}, {"u": 11603196290, "v": 1180079551, "oneway": true, "points": [[-1345.79, -1143.5], [-1384.09, -1178.15], [-1473.89, -1259.4]], "length": 172.75}, {"u": 11603196290, "v": 8868957845, "oneway": false, "points": [[-1345.79, -1143.5], [-1352.96, -1135.8], [-1362.81, -1125.05], [-1364.45, -1123.21], [-1365.85, -1121.4], [-1367.3, -1119.19], [-1368.55, -1116.86], [-1369.71, -1114.43], [-1370.79, -1111.7], [-1371.78, -1108.7], [-1372.59, -1105.59], [-1373.25, -1102.44], [-1373.79, -1098.96], [-1374.09, -1095.51], [-1373.72, -1047.22], [-1373.72, -1040.32]], "length": 112.54}, {"u": 11793715342, "v": 53640736, "oneway": true, "points": [[1657.93, 1940.47], [1644.13, 1963.59], [1634.5, 1974.19]], "length": 41.25}, {"u": 11793715342, "v": 53668897, "oneway": false, "points": [[1657.93, 1940.47], [1683.59, 1918.0], [1691.01, 1911.5]], "length": 43.97}, {"u": 12849307402, "v": 1160692043, "oneway": false, "points": [[-444.64, -90.15], [-448.56, -83.42], [-469.04, -60.5], [-476.32, -56.21]], "length": 46.98}, {"u": 12911858844, "v": 53629591, "oneway": false, "points": [[-1098.93, -1224.2], [-941.1, -1349.24], [-938.59, -1351.05], [-937.61, -1351.74], [-935.74, -1352.56], [-933.25, -1353.18], [-931.5, -1353.34], [-930.29, -1352.83], [-928.06, -1350.93], [-901.33, -1326.54], [-890.78, -1317.29]], "length": 266.47}, {"u": 12911858844, "v": 53629591, "oneway": false, "points": [[-1098.93, -1224.2], [-1092.58, -1218.09], [-1091.74, -1217.36], [-1076.56, -1204.21], [-1052.73, -1182.16], [-1043.54, -1174.04], [-1033.5, -1165.11], [-1030.65, -1163.52], [-1028.52, -1164.15], [-1014.07, -1181.11], [-895.72, -1311.84], [-890.78, -1317.29]], "length": 299.64}, {"u": 12911858844, "v": 917880340, "oneway": false, "points": [[-1098.93, -1224.2], [-1124.3, -1203.85], [-1156.72, -1178.09], [-1158.96, -1174.89], [-1159.14, -1171.73], [-1158.67, -1169.45], [-1157.54, -1167.23], [-1155.56, -1164.8], [-1138.22, -1148.37], [-1127.58, -1139.65], [-1119.91, -1132.32], [-1082.47, -1098.15], [-1074.49, -1090.88], [-1064.52, -1081.56], [-1047.06, -1066.27], [-1044.82, -1064.32], [-1038.07, -1057.94]], "length": 247.81}, {"u": 12911858894, "v": 2634693278, "oneway": false, "points": [[-1536.18, -1747.0], [-1533.1, -1626.72]], "length": 120.31}, {"u": 12911858894, "v": 53444545, "oneway": false, "points": [[-1536.18, -1747.0], [-1536.09, -1761.88], [-1535.47, -1771.35], [-1533.32, -1781.75], [-1528.02, -1795.71], [-1524.99, -1801.78], [-1491.98, -1862.18], [-1487.22, -1870.98], [-1451.21, -1937.25], [-1425.8, -1991.78], [-1405.88, -2022.13], [-1389.02, -2042.07]], "length": 333.54}, {"u": 12911858894, "v": 1179795960, "oneway": false, "points": [[-1536.18, -1747.0], [-1542.17, -1746.87], [-1574.57, -1746.24], [-1578.18, -1746.17], [-1605.84, -1745.64], [-1614.41, -1745.48]], "length": 78.24}, {"u": 13009756501, "v": 53521155, "oneway": false, "points": [[-2906.79, -884.13], [-2913.87, -885.05], [-2916.77, -887.12], [-2921.19, -890.26], [-2944.53, -902.38], [-2958.38, -907.87], [-2970.84, -910.74], [-2983.28, -912.27], [-2997.64, -912.87], [-3058.08, -910.07], [-3065.97, -909.83]], "length": 165.41}, {"u": 13009756501, "v": 53421608, "oneway": false, "points": [[-2906.79, -884.13], [-2907.2, -917.01], [-2907.69, -935.28], [-2908.37, -960.24], [-2909.04, -981.75]], "length": 97.65}, {"u": 13009756501, "v": 2298789030, "oneway": false, "points": [[-2906.79, -884.13], [-2905.72, -832.68], [-2900.74, -824.46]], "length": 61.07}, {"u": 13018504178, "v": 1192150413, "oneway": true, "points": [[496.94, -2.79], [498.93, -2.3], [528.06, 4.9], [559.93, 13.42], [587.69, 22.33], [594.99, 24.87], [608.6, 32.23], [620.97, 42.18], [632.55, 54.68], [664.29, 81.64], [668.53, 85.29], [672.66, 88.45]], "length": 202.75}, {"u": 13030502563, "v": 2987035532, "oneway": false, "points": [[-2605.68, -861.8], [-2586.69, -846.02], [-2575.63, -836.65]], "length": 39.19}, {"u": 13030502563, "v": 13030502567, "oneway": false, "points": [[-2605.68, -861.8], [-2615.95, -866.04], [-2623.05, -871.74], [-2628.02, -875.85], [-2636.89, -883.21], [-2655.86, -899.39], [-2658.96, -902.08], [-2661.81, -909.08]], "length": 74.79}, {"u": 13030502563, "v": 13030502564, "oneway": false, "points": [[-2605.68, -861.8], [-2611.17, -871.49], [-2618.22, -877.55], [-2623.59, -882.24], [-2625.0, -883.43]], "length": 29.41}, {"u": 13030502564, "v": 53534017, "oneway": true, "points": [[-2625.0, -883.43], [-2621.12, -887.85], [-2619.28, -889.94], [-2601.78, -909.8], [-2594.24, -918.36], [-2568.97, -948.49], [-2563.2, -954.85]], "length": 94.45}, {"u": 13030502564, "v": 13030502563, "oneway": false, "points": [[-2625.0, -883.43], [-2623.59, -882.24], [-2618.22, -877.55], [-2611.17, -871.49], [-2605.68, -861.8]], "length": 29.41}, {"u": 13030502564, "v": 13030502567, "oneway": false, "points": [[-2625.0, -883.43], [-2631.75, -888.97], [-2650.62, -905.53], [-2653.56, -907.95], [-2661.81, -909.08]], "length": 45.97}, {"u": 13030502567, "v": 53462362, "oneway": false, "points": [[-2661.81, -909.08], [-2664.76, -911.6]], "length": 3.88}, {"u": 13030502567, "v": 13030502563, "oneway": false, "points": [[-2661.81, -909.08], [-2658.96, -902.08], [-2655.86, -899.39], [-2636.89, -883.21], [-2628.02, -875.85], [-2623.05, -871.74], [-2615.95, -866.04], [-2605.68, -861.8]], "length": 74.79}, {"u": 13030502567, "v": 13030502564, "oneway": false, "points": [[-2661.81, -909.08], [-2653.56, -907.95], [-2650.62, -905.53], [-2631.75, -888.97], [-2625.0, -883.43]], "length": 45.97}, {"u": 13056348945, "v": 13056348946, "oneway": true, "points": [[-884.92, -1205.43], [-889.59, -1200.21]], "length": 7.0}, {"u": 13056348945, "v": 7189398145, "oneway": true, "points": [[-884.92, -1205.43], [-881.62, -1204.39], [-878.02, -1202.57], [-861.82, -1186.97], [-859.61, -1184.05], [-857.38, -1180.35]], "length": 37.97}, {"u": 13056348946, "v": 13056348947, "oneway": true, "points": [[-889.59, -1200.21], [-958.92, -1126.0]], "length": 101.56}, {"u": 13056348947, "v": 1179967125, "oneway": false, "points": [[-958.92, -1126.0], [-952.34, -1119.96], [-951.22, -1119.0], [-933.23, -1103.58]], "length": 34.1}, {"u": 13056348947, "v": 13056348949, "oneway": true, "points": [[-958.92, -1126.0], [-1022.8, -1055.21], [-1028.11, -1049.17]], "length": 103.39}, {"u": 13056348949, "v": 917880340, "oneway": false, "points": [[-1028.11, -1049.17], [-1038.07, -1057.94]], "length": 13.28}, {"u": 13056348949, "v": 1180120617, "oneway": true, "points": [[-1028.11, -1049.17], [-1033.59, -1042.25], [-1051.17, -1022.89], [-1077.67, -995.32], [-1084.67, -988.48], [-1093.1, -981.12]], "length": 94.2}, {"u": 13056348949, "v": 53493140, "oneway": false, "points": [[-1028.11, -1049.17], [-1021.67, -1043.45], [-1019.32, -1041.36], [-1001.78, -1025.29]], "length": 35.54}, {"u": 13069954941, "v": 53472474, "oneway": true, "points": [[-874.57, -216.72], [-904.59, -182.92], [-911.53, -177.67]], "length": 53.91}, {"u": 13069954941, "v": 1181378741, "oneway": true, "points": [[-874.57, -216.72], [-887.61, -210.06], [-891.24, -206.39], [-894.91, -203.49], [-899.01, -201.13], [-902.55, -199.9], [-905.74, -199.08], [-909.18, -198.61], [-912.9, -198.4], [-916.67, -198.57], [-920.01, -199.19], [-923.46, -200.09], [-926.86, -201.62], [-942.42, -212.03], [-955.74, -217.63]], "length": 91.09}, {"u": 13091071866, "v": 53426174, "oneway": true, "points": [[78.5, -278.09], [74.9, -267.53], [65.01, -257.01], [38.14, -226.52], [30.04, -223.62]], "length": 74.85}, {"u": 13091071866, "v": 53426175, "oneway": false, "points": [[78.5, -278.09], [89.85, -290.58], [95.25, -295.22]], "length": 23.99}, {"u": 13132340420, "v": 366215894, "oneway": true, "points": [[437.77, 448.55], [468.0, 476.49], [499.09, 504.47], [515.93, 519.09], [531.03, 532.43], [536.1, 537.01]], "length": 132.28}, {"u": 13132340420, "v": 53423470, "oneway": true, "points": [[437.77, 448.55], [443.74, 461.35], [455.64, 475.04], [486.55, 504.94], [511.3, 528.33], [515.05, 531.7], [517.76, 534.01], [519.33, 535.53], [520.97, 537.63], [522.78, 540.51], [523.83, 542.81], [524.32, 545.13], [524.51, 546.44], [524.66, 548.04], [524.66, 549.57], [524.4, 551.26]], "length": 137.25}, {"u": 13146093508, "v": 2859302272, "oneway": false, "points": [[-1468.06, -888.64], [-1469.86, -888.63], [-1471.8, -888.55]], "length": 3.74}, {"u": 13146093508, "v": 1179956625, "oneway": true, "points": [[-1468.06, -888.64], [-1463.38, -890.89], [-1462.6, -891.23], [-1457.09, -892.58], [-1424.2, -893.73], [-1366.28, -896.81], [-1346.0, -898.25], [-1331.14, -900.04], [-1316.23, -903.15], [-1301.15, -908.19], [-1279.55, -917.11], [-1203.39, -947.22]], "length": 274.33}, {"u": 13151160466, "v": 53508174, "oneway": false, "points": [[-1027.74, -867.87], [-1026.54, -866.82], [-1023.25, -863.93], [-1011.29, -853.42], [-1009.5, -851.84], [-974.4, -820.98], [-963.6, -811.48], [-951.99, -801.28], [-942.4, -792.85], [-925.21, -777.75], [-917.63, -771.08]], "length": 146.6}, {"u": 13151160466, "v": 1180120831, "oneway": true, "points": [[-1027.74, -867.87], [-1036.86, -868.53], [-1055.77, -884.75], [-1064.7, -892.55], [-1072.47, -899.43], [-1088.48, -913.41]], "length": 77.54}, {"u": 13191853166, "v": 53441265, "oneway": false, "points": [[-1132.12, -40.5], [-1132.09, -39.96], [-1131.95, -36.4], [-1130.69, -4.97], [-1130.55, -1.48], [-1130.2, 7.19]], "length": 47.73}, {"u": 13202666793, "v": 53640736, "oneway": true, "points": [[1622.77, 1963.97], [1634.5, 1974.19]], "length": 15.55}, {"u": 13202666793, "v": 11793715342, "oneway": true, "points": [[1622.77, 1963.97], [1633.39, 1954.37], [1645.32, 1943.58], [1657.93, 1940.47]], "length": 43.39}, {"u": 13206778050, "v": 13202666793, "oneway": true, "points": [[1610.84, 1977.64], [1622.77, 1963.97]], "length": 18.14}, {"u": 13206778050, "v": 1142903570, "oneway": true, "points": [[1610.84, 1977.64], [1605.27, 1972.55], [1596.29, 1964.29], [1589.09, 1957.78], [1572.59, 1942.78], [1560.18, 1931.9], [1551.78, 1924.59], [1549.3, 1922.52], [1528.46, 1905.21]], "length": 109.71}, {"u": 13324853243, "v": 53615252, "oneway": false, "points": [[-419.35, -316.52], [-406.66, -305.69], [-403.36, -302.83], [-395.58, -295.99]], "length": 31.41}, {"u": 13324853243, "v": 917593109, "oneway": true, "points": [[-419.35, -316.52], [-421.67, -316.44], [-424.0, -316.46], [-426.21, -316.99], [-428.34, -318.08], [-466.84, -353.47], [-474.45, -360.47]], "length": 71.95}, {"u": 13324853247, "v": 917593109, "oneway": false, "points": [[-467.96, -367.54], [-474.45, -360.47]], "length": 9.6}, {"u": 13324853247, "v": 53467500, "oneway": false, "points": [[-467.96, -367.54], [-459.23, -377.04], [-388.02, -454.66], [-381.38, -461.89]], "length": 128.05}, {"u": 13324853247, "v": 13324853243, "oneway": true, "points": [[-467.96, -367.54], [-460.24, -360.64], [-444.66, -346.7], [-432.8, -336.09], [-420.83, -325.37], [-419.52, -323.4], [-418.82, -321.31], [-418.85, -318.86], [-419.35, -316.52]], "length": 72.65}, {"u": 13334632578, "v": 2713279290, "oneway": false, "points": [[-428.42, 84.41], [-395.79, 48.97]], "length": 48.17}, {"u": 13334632578, "v": 2713279291, "oneway": true, "points": [[-428.42, 84.41], [-428.12, 87.86], [-428.63, 91.55], [-429.72, 95.16], [-431.99, 98.84], [-437.16, 104.64], [-447.52, 105.69]], "length": 33.47}, {"u": 13334632600, "v": 5468393309, "oneway": false, "points": [[-533.62, 201.94], [-540.72, 209.8], [-550.52, 220.64], [-555.0, 225.6], [-561.04, 232.27], [-564.28, 235.86], [-576.55, 249.43], [-582.58, 256.11]], "length": 73.02}, {"u": 13334632600, "v": 1701854143, "oneway": true, "points": [[-533.62, 201.94], [-533.75, 199.9], [-533.41, 197.97], [-532.62, 195.75], [-531.29, 193.39], [-529.26, 190.39], [-524.63, 184.76], [-515.03, 180.9]], "length": 30.32}, {"u": 13334818837, "v": 1188394186, "oneway": false, "points": [[-367.77, -771.12], [-335.05, -807.05]], "length": 48.59}, {"u": 13334818837, "v": 1182471991, "oneway": false, "points": [[-367.77, -771.12], [-376.21, -762.37]], "length": 12.16}, {"u": 13334818837, "v": 4173797761, "oneway": true, "points": [[-367.77, -771.12], [-375.84, -756.55], [-377.97, -751.53], [-378.95, -747.85], [-379.38, -744.68], [-379.39, -742.44], [-379.31, -739.62], [-378.76, -736.15], [-377.96, -733.22], [-376.98, -730.26], [-373.24, -721.6]], "length": 53.28}]} \ No newline at end of file +{"nodes": {"37923758": {"x": -1878.44, "y": 78.89, "pop": 0, "jobs": 29487}, "37924361": {"x": -1909.18, "y": -30.28, "pop": 27, "jobs": 25907}, "53288573": {"x": -106.68, "y": -3040.11, "pop": 0, "jobs": 0}, "53288575": {"x": -73.43, "y": -3076.92, "pop": 0, "jobs": 0}, "53290647": {"x": 1445.95, "y": 2500.52, "pop": 2318, "jobs": 703}, "53311057": {"x": -2990.2, "y": -638.55, "pop": 1681, "jobs": 0}, "53311058": {"x": -2991.17, "y": -618.29, "pop": 1747, "jobs": 0}, "53326149": {"x": -24.2, "y": -42.33, "pop": 0, "jobs": 16826}, "53332729": {"x": -32.47, "y": -216.61, "pop": 0, "jobs": 14032}, "53332734": {"x": -206.46, "y": -208.28, "pop": 1123, "jobs": 4839}, "53370932": {"x": -2945.7, "y": -8.0, "pop": 0, "jobs": 3456}, "53370937": {"x": -2948.19, "y": -80.46, "pop": 452, "jobs": 1275}, "53385421": {"x": -198.19, "y": -33.99, "pop": 3449, "jobs": 4243}, "53407742": {"x": 2039.82, "y": 1687.8, "pop": 1848, "jobs": 252}, "53407747": {"x": 2227.9, "y": 1871.36, "pop": 2115, "jobs": 706}, "53407767": {"x": 2447.8, "y": 2133.36, "pop": 1591, "jobs": 46}, "53407902": {"x": 85.4, "y": -135.19, "pop": 551, "jobs": 32351}, "53407911": {"x": 142.37, "y": -64.16, "pop": 551, "jobs": 36733}, "53407922": {"x": 217.65, "y": 1.39, "pop": 344, "jobs": 16860}, "53407926": {"x": 293.3, "y": 68.68, "pop": 2131, "jobs": 1670}, "53407932": {"x": 352.5, "y": 122.99, "pop": 2646, "jobs": 1502}, "53407941": {"x": 426.75, "y": 191.8, "pop": 1272, "jobs": 2331}, "53407975": {"x": 874.56, "y": 598.55, "pop": 1521, "jobs": 7585}, "53408000": {"x": 1174.0, "y": 867.88, "pop": 8, "jobs": 968}, "53408480": {"x": 1595.34, "y": 1249.63, "pop": 0, "jobs": 3311}, "53408487": {"x": 1621.1, "y": 1273.67, "pop": 97, "jobs": 3455}, "53408490": {"x": 1724.52, "y": 1367.47, "pop": 1223, "jobs": 5393}, "53408525": {"x": 1869.16, "y": 1500.03, "pop": 5837, "jobs": 0}, "53408558": {"x": 51.04, "y": -132.91, "pop": 276, "jobs": 33955}, "53413603": {"x": -2433.02, "y": 133.81, "pop": 546, "jobs": 10618}, "53413619": {"x": -2695.43, "y": 144.53, "pop": 0, "jobs": 3487}, "53414098": {"x": 124.59, "y": 104.01, "pop": 3425, "jobs": 11397}, "53416322": {"x": 560.33, "y": 1073.04, "pop": 3150, "jobs": 1130}, "53416782": {"x": -1066.53, "y": -2054.55, "pop": 1159, "jobs": 0}, "53416784": {"x": -1072.69, "y": -2164.74, "pop": 2373, "jobs": 0}, "53416786": {"x": -1078.08, "y": -2279.29, "pop": 1828, "jobs": 0}, "53416788": {"x": -1081.21, "y": -2394.37, "pop": 1712, "jobs": 394}, "53417779": {"x": -821.42, "y": 250.21, "pop": 3694, "jobs": 0}, "53417781": {"x": -868.52, "y": 209.54, "pop": 5183, "jobs": 0}, "53421608": {"x": -2800.81, "y": -967.67, "pop": 3535, "jobs": 0}, "53421612": {"x": -2801.36, "y": -1004.2, "pop": 3491, "jobs": 0}, "53421621": {"x": -2800.56, "y": -1072.55, "pop": 5897, "jobs": 1540}, "53421750": {"x": -1044.66, "y": -955.81, "pop": 987, "jobs": 2543}, "53423466": {"x": 495.28, "y": 416.7, "pop": 655, "jobs": 2232}, "53423470": {"x": 632.63, "y": 565.35, "pop": 11641, "jobs": 2606}, "53423501": {"x": 1230.22, "y": 1106.69, "pop": 1603, "jobs": 6371}, "53423508": {"x": 1376.98, "y": 1243.59, "pop": 1811, "jobs": 2358}, "53423520": {"x": 1528.24, "y": 1376.2, "pop": 0, "jobs": 5708}, "53423529": {"x": 1674.59, "y": 1510.31, "pop": 0, "jobs": 1799}, "53423552": {"x": 2147.0, "y": 1954.15, "pop": 1757, "jobs": 638}, "53423556": {"x": 2247.69, "y": 2051.05, "pop": 2622, "jobs": 150}, "53423565": {"x": 2644.11, "y": 2436.69, "pop": 1977, "jobs": 2172}, "53423568": {"x": 2774.37, "y": 2558.68, "pop": 1518, "jobs": 1815}, "53423575": {"x": 2845.42, "y": 2655.0, "pop": 1644, "jobs": 2258}, "53425693": {"x": 250.56, "y": 383.27, "pop": 3977, "jobs": 0}, "53425702": {"x": 116.59, "y": 533.55, "pop": 3761, "jobs": 0}, "53426174": {"x": 138.27, "y": -209.53, "pop": 2767, "jobs": 16624}, "53426175": {"x": 203.48, "y": -281.13, "pop": 2893, "jobs": 15227}, "53426575": {"x": -156.08, "y": -2201.86, "pop": 1564, "jobs": 761}, "53426577": {"x": -163.82, "y": -2396.59, "pop": 1204, "jobs": 0}, "53428594": {"x": -2704.98, "y": -937.36, "pop": 1725, "jobs": 238}, "53428597": {"x": -2706.53, "y": -969.09, "pop": 3469, "jobs": 545}, "53429624": {"x": 1220.36, "y": 1534.88, "pop": 1782, "jobs": 0}, "53430018": {"x": 1038.8, "y": 1017.86, "pop": 14484, "jobs": 2139}, "53430027": {"x": 1187.34, "y": 1152.02, "pop": 2728, "jobs": 244}, "53430437": {"x": -1631.65, "y": -1002.41, "pop": 565, "jobs": 7739}, "53430443": {"x": -1761.29, "y": -1000.13, "pop": 2468, "jobs": 585}, "53430446": {"x": -1844.66, "y": -998.4, "pop": 2321, "jobs": 1904}, "53430836": {"x": 2868.69, "y": 2332.44, "pop": 1648, "jobs": 0}, "53430839": {"x": 2863.33, "y": 2255.39, "pop": 2242, "jobs": 0}, "53430844": {"x": 2852.38, "y": 2066.01, "pop": 2647, "jobs": 0}, "53430857": {"x": 2845.12, "y": 1872.64, "pop": 1503, "jobs": 1551}, "53432331": {"x": 928.85, "y": 237.25, "pop": 3004, "jobs": 1705}, "53432339": {"x": 1376.81, "y": 643.41, "pop": 2607, "jobs": 1004}, "53432346": {"x": 1675.33, "y": 914.28, "pop": 2001, "jobs": 2831}, "53432349": {"x": 1824.33, "y": 1050.12, "pop": 2149, "jobs": 1145}, "53432353": {"x": 1954.98, "y": 1205.82, "pop": 1931, "jobs": 742}, "53432356": {"x": 1990.48, "y": 1248.62, "pop": 1407, "jobs": 742}, "53433643": {"x": 820.25, "y": 1416.54, "pop": 2678, "jobs": 0}, "53433662": {"x": 824.66, "y": 1553.16, "pop": 3097, "jobs": 0}, "53434711": {"x": -1094.53, "y": 118.13, "pop": 9297, "jobs": 597}, "53434862": {"x": -832.42, "y": -2406.29, "pop": 1183, "jobs": 0}, "53434863": {"x": -837.09, "y": -2522.91, "pop": 1425, "jobs": 417}, "53434865": {"x": -843.37, "y": -2637.12, "pop": 1485, "jobs": 417}, "53434867": {"x": -848.01, "y": -2754.34, "pop": 1852, "jobs": 0}, "53434870": {"x": -787.75, "y": -2084.62, "pop": 1315, "jobs": 0}, "53434871": {"x": -791.17, "y": -2177.36, "pop": 1471, "jobs": 0}, "53436855": {"x": -3132.49, "y": -534.3, "pop": 743, "jobs": 0}, "53437415": {"x": 2138.44, "y": 1386.95, "pop": 1668, "jobs": 549}, "53437417": {"x": 2169.83, "y": 1369.5, "pop": 1870, "jobs": 549}, "53437418": {"x": 2251.81, "y": 1303.73, "pop": 2721, "jobs": 0}, "53437425": {"x": 2388.73, "y": 1152.51, "pop": 2360, "jobs": 0}, "53437707": {"x": 743.14, "y": 1344.07, "pop": 2071, "jobs": 0}, "53437708": {"x": 789.9, "y": 1388.02, "pop": 2537, "jobs": 0}, "53437716": {"x": 913.67, "y": 1454.5, "pop": 2601, "jobs": 0}, "53437718": {"x": 1000.79, "y": 1533.39, "pop": 2396, "jobs": 0}, "53437720": {"x": 1058.29, "y": 1587.79, "pop": 3075, "jobs": 0}, "53438623": {"x": -538.81, "y": -2185.27, "pop": 833, "jobs": 865}, "53438624": {"x": -545.47, "y": -2280.59, "pop": 1376, "jobs": 111}, "53438915": {"x": -2692.52, "y": 55.26, "pop": 220, "jobs": 5559}, "53441253": {"x": -638.92, "y": 255.75, "pop": 4065, "jobs": 0}, "53441256": {"x": -788.22, "y": 120.35, "pop": 4838, "jobs": 0}, "53441258": {"x": -885.8, "y": 32.37, "pop": 4968, "jobs": 2607}, "53441265": {"x": -1021.97, "y": 21.28, "pop": 15399, "jobs": 931}, "53444038": {"x": -123.14, "y": -291.89, "pop": 6372, "jobs": 14860}, "53444048": {"x": -137.44, "y": -590.89, "pop": 3795, "jobs": 6466}, "53444545": {"x": -1280.79, "y": -2027.98, "pop": 1284, "jobs": 0}, "53444600": {"x": -2161.76, "y": -960.95, "pop": 2278, "jobs": 212}, "53444613": {"x": -2328.4, "y": -1088.61, "pop": 2263, "jobs": 0}, "53444622": {"x": -2470.61, "y": -1209.09, "pop": 2445, "jobs": 0}, "53444627": {"x": -2577.34, "y": -1300.3, "pop": 2221, "jobs": 0}, "53444632": {"x": -2676.66, "y": -1384.62, "pop": 2573, "jobs": 0}, "53444642": {"x": -2775.79, "y": -1468.82, "pop": 2620, "jobs": 0}, "53444645": {"x": -2873.37, "y": -1553.21, "pop": 2156, "jobs": 0}, "53445464": {"x": 1077.54, "y": 375.27, "pop": 5546, "jobs": 1867}, "53445467": {"x": 1146.92, "y": 298.95, "pop": 2971, "jobs": 248}, "53447046": {"x": 2646.68, "y": 2297.63, "pop": 1890, "jobs": 231}, "53447075": {"x": 85.54, "y": -2056.79, "pop": 0, "jobs": 1150}, "53447076": {"x": 80.03, "y": -2213.46, "pop": 0, "jobs": 0}, "53447618": {"x": -1578.56, "y": -1959.87, "pop": 4144, "jobs": 0}, "53447620": {"x": -1661.99, "y": -2005.73, "pop": 2016, "jobs": 0}, "53453124": {"x": 1146.45, "y": 1196.92, "pop": 3552, "jobs": 318}, "53453137": {"x": 1079.53, "y": 1270.77, "pop": 2571, "jobs": 123}, "53453147": {"x": 1012.59, "y": 1346.78, "pop": 2441, "jobs": 0}, "53453152": {"x": 944.4, "y": 1420.22, "pop": 2372, "jobs": 0}, "53453164": {"x": 889.26, "y": 1481.42, "pop": 2733, "jobs": 0}, "53453173": {"x": 748.49, "y": 1630.67, "pop": 2266, "jobs": 0}, "53454630": {"x": -2532.47, "y": -1134.86, "pop": 2233, "jobs": 0}, "53454656": {"x": -2450.42, "y": -1320.14, "pop": 1834, "jobs": 0}, "53454658": {"x": -2450.86, "y": -1344.62, "pop": 1841, "jobs": 0}, "53455651": {"x": 301.15, "y": 981.15, "pop": 2027, "jobs": 0}, "53455653": {"x": 346.18, "y": 1021.88, "pop": 2719, "jobs": 0}, "53455657": {"x": 424.85, "y": 1093.03, "pop": 2721, "jobs": 0}, "53456047": {"x": -2190.38, "y": -213.35, "pop": 0, "jobs": 4762}, "53456049": {"x": -2191.34, "y": -254.86, "pop": 0, "jobs": 4762}, "53456081": {"x": 462.32, "y": -116.88, "pop": 2476, "jobs": 1381}, "53461150": {"x": 414.88, "y": 804.07, "pop": 3009, "jobs": 652}, "53461154": {"x": 347.26, "y": 878.2, "pop": 2528, "jobs": 0}, "53461430": {"x": 2313.75, "y": 1354.01, "pop": 2840, "jobs": 0}, "53461432": {"x": 2492.7, "y": 1475.46, "pop": 3021, "jobs": 0}, "53461443": {"x": 2628.84, "y": 1531.54, "pop": 2027, "jobs": 4234}, "53461447": {"x": 838.74, "y": 127.14, "pop": 3512, "jobs": 1229}, "53461450": {"x": 993.93, "y": 167.61, "pop": 2083, "jobs": 209}, "53461456": {"x": 1019.75, "y": 183.1, "pop": 2143, "jobs": 209}, "53461463": {"x": 1296.13, "y": 434.9, "pop": 2331, "jobs": 299}, "53461467": {"x": 1443.23, "y": 569.82, "pop": 2911, "jobs": 607}, "53461474": {"x": 1592.94, "y": 704.77, "pop": 2632, "jobs": 642}, "53461478": {"x": 1742.25, "y": 839.49, "pop": 2558, "jobs": 2115}, "53461491": {"x": 1892.03, "y": 975.19, "pop": 2274, "jobs": 163}, "53461499": {"x": 2040.05, "y": 1110.96, "pop": 1531, "jobs": 6087}, "53461500": {"x": 2090.73, "y": 1154.95, "pop": 1340, "jobs": 6102}, "53461503": {"x": 2128.68, "y": 1189.89, "pop": 1004, "jobs": 6087}, "53461749": {"x": -1902.37, "y": -224.77, "pop": 0, "jobs": 20470}, "53461758": {"x": -2141.11, "y": -214.95, "pop": 0, "jobs": 14010}, "53461764": {"x": -2260.25, "y": -205.12, "pop": 0, "jobs": 7979}, "53461796": {"x": -2370.82, "y": -212.19, "pop": 0, "jobs": 18892}, "53461816": {"x": -2941.35, "y": -218.88, "pop": 2467, "jobs": 110}, "53461818": {"x": -3005.09, "y": -228.76, "pop": 2705, "jobs": 0}, "53461820": {"x": -3070.32, "y": -238.85, "pop": 3285, "jobs": 0}, "53462362": {"x": -2556.53, "y": -897.51, "pop": 2523, "jobs": 560}, "53462374": {"x": -2770.21, "y": -1081.71, "pop": 5890, "jobs": 1453}, "53462383": {"x": -2864.29, "y": -1162.93, "pop": 4599, "jobs": 1595}, "53462390": {"x": -2962.95, "y": -1246.48, "pop": 2574, "jobs": 1258}, "53462393": {"x": -2981.52, "y": -1261.92, "pop": 2256, "jobs": 1258}, "53462402": {"x": -3062.7, "y": -1330.17, "pop": 2465, "jobs": 0}, "53463508": {"x": -674.66, "y": -2410.57, "pop": 1023, "jobs": 350}, "53463513": {"x": -684.5, "y": -2531.49, "pop": 1176, "jobs": 1032}, "53463519": {"x": -734.0, "y": -2643.89, "pop": 1207, "jobs": 682}, "53463523": {"x": -787.04, "y": -2757.4, "pop": 1405, "jobs": 2509}, "53463532": {"x": -893.04, "y": -2870.09, "pop": 1087, "jobs": 2375}, "53463567": {"x": -639.64, "y": -2412.29, "pop": 984, "jobs": 350}, "53465696": {"x": 102.45, "y": -2233.43, "pop": 0, "jobs": 0}, "53467195": {"x": 2818.96, "y": 2679.22, "pop": 1145, "jobs": 2166}, "53467197": {"x": 2795.95, "y": 2750.56, "pop": 1579, "jobs": 641}, "53467413": {"x": -915.92, "y": 126.18, "pop": 6387, "jobs": 0}, "53467500": {"x": -273.15, "y": -447.8, "pop": 4774, "jobs": 7744}, "53467506": {"x": -206.86, "y": -520.03, "pop": 1689, "jobs": 7744}, "53470168": {"x": -957.33, "y": -2072.12, "pop": 1416, "jobs": 0}, "53470169": {"x": -961.5, "y": -2170.24, "pop": 2374, "jobs": 0}, "53470170": {"x": -966.36, "y": -2284.61, "pop": 2001, "jobs": 0}, "53470173": {"x": -971.25, "y": -2399.72, "pop": 1787, "jobs": 0}, "53472268": {"x": -1887.78, "y": -739.77, "pop": 79, "jobs": 7833}, "53472269": {"x": -1960.47, "y": -736.0, "pop": 616, "jobs": 5406}, "53472270": {"x": -2022.02, "y": -732.8, "pop": 2157, "jobs": 3788}, "53472460": {"x": -503.99, "y": 107.1, "pop": 2762, "jobs": 2959}, "53472467": {"x": -652.64, "y": -27.32, "pop": 4100, "jobs": 2275}, "53472474": {"x": -803.3, "y": -163.58, "pop": 16254, "jobs": 1759}, "53473010": {"x": -1266.93, "y": -2376.33, "pop": 1142, "jobs": 5279}, "53473027": {"x": -1314.08, "y": -2873.63, "pop": 136, "jobs": 3795}, "53473264": {"x": -2196.53, "y": -834.88, "pop": 5318, "jobs": 859}, "53473273": {"x": -2390.79, "y": -1013.93, "pop": 2337, "jobs": 59}, "53473289": {"x": -2641.43, "y": -1224.62, "pop": 2555, "jobs": 0}, "53473302": {"x": -2739.23, "y": -1308.17, "pop": 2889, "jobs": 0}, "53473312": {"x": -2839.28, "y": -1393.56, "pop": 2665, "jobs": 0}, "53473321": {"x": -2937.43, "y": -1477.39, "pop": 2478, "jobs": 0}, "53475092": {"x": 2959.22, "y": 2343.19, "pop": 667, "jobs": 0}, "53475094": {"x": 2954.24, "y": 2251.41, "pop": 1213, "jobs": 0}, "53475096": {"x": 2944.03, "y": 2060.91, "pop": 1300, "jobs": 0}, "53475099": {"x": 2940.41, "y": 1993.73, "pop": 1004, "jobs": 310}, "53475305": {"x": -3018.17, "y": -146.33, "pop": 1516, "jobs": 0}, "53475312": {"x": -2991.84, "y": -314.17, "pop": 2254, "jobs": 0}, "53475324": {"x": -3034.84, "y": -386.62, "pop": 1896, "jobs": 0}, "53478277": {"x": -2014.54, "y": -1717.21, "pop": 2219, "jobs": 600}, "53479821": {"x": -571.8, "y": 181.55, "pop": 3244, "jobs": 203}, "53480554": {"x": 2377.16, "y": 1863.82, "pop": 2154, "jobs": 2878}, "53481435": {"x": -2832.07, "y": -384.7, "pop": 1950, "jobs": 0}, "53481441": {"x": -2846.89, "y": -291.45, "pop": 2981, "jobs": 0}, "53481638": {"x": -993.63, "y": -2982.73, "pop": 85, "jobs": 1665}, "53481665": {"x": -1530.23, "y": -2889.68, "pop": 0, "jobs": 2141}, "53482952": {"x": -422.65, "y": -583.35, "pop": 1557, "jobs": 4400}, "53482954": {"x": -356.4, "y": -657.01, "pop": 2881, "jobs": 833}, "53482965": {"x": -287.94, "y": -728.54, "pop": 3576, "jobs": 0}, "53483330": {"x": -1759.23, "y": -926.14, "pop": 1171, "jobs": 2044}, "53483354": {"x": -2160.27, "y": -914.73, "pop": 2740, "jobs": 268}, "53483529": {"x": 347.63, "y": -145.45, "pop": 12966, "jobs": 1493}, "53483907": {"x": -2158.59, "y": -836.5, "pop": 6672, "jobs": 566}, "53483912": {"x": -2162.13, "y": -989.32, "pop": 2376, "jobs": 875}, "53483915": {"x": -2163.72, "y": -1049.11, "pop": 2108, "jobs": 875}, "53485100": {"x": -2626.92, "y": -287.46, "pop": 1884, "jobs": 1313}, "53485102": {"x": -2736.63, "y": -282.88, "pop": 2805, "jobs": 163}, "53486800": {"x": -2182.92, "y": -18.87, "pop": 0, "jobs": 10844}, "53486805": {"x": -2229.32, "y": -16.92, "pop": 0, "jobs": 4757}, "53486808": {"x": -2251.78, "y": -15.98, "pop": 0, "jobs": 4172}, "53486814": {"x": -2439.94, "y": -8.1, "pop": 79, "jobs": 19711}, "53486858": {"x": -2793.39, "y": 41.92, "pop": 252, "jobs": 8066}, "53486863": {"x": -2943.35, "y": 49.71, "pop": 0, "jobs": 6964}, "53487523": {"x": 2865.37, "y": 1785.6, "pop": 1748, "jobs": 1205}, "53487528": {"x": 2883.46, "y": 1701.4, "pop": 2009, "jobs": 0}, "53487531": {"x": 2901.25, "y": 1618.52, "pop": 2019, "jobs": 0}, "53487538": {"x": 2916.94, "y": 1545.48, "pop": 1952, "jobs": 0}, "53488193": {"x": -1608.68, "y": -306.18, "pop": 1754, "jobs": 16895}, "53488195": {"x": -1743.98, "y": -300.05, "pop": 4323, "jobs": 6045}, "53489932": {"x": -2949.59, "y": -172.65, "pop": 1956, "jobs": 110}, "53489934": {"x": -2954.16, "y": -139.03, "pop": 1386, "jobs": 1385}, "53489947": {"x": -2889.76, "y": -163.3, "pop": 1703, "jobs": 2926}, "53490476": {"x": 2382.92, "y": 1752.28, "pop": 2463, "jobs": 2521}, "53490480": {"x": 2476.13, "y": 1778.13, "pop": 3022, "jobs": 2356}, "53490485": {"x": 2574.41, "y": 1803.82, "pop": 1344, "jobs": 2677}, "53490487": {"x": 2587.93, "y": 1807.13, "pop": 1355, "jobs": 2851}, "53490491": {"x": 2657.51, "y": 1827.1, "pop": 2406, "jobs": 908}, "53490496": {"x": 2760.28, "y": 1849.89, "pop": 2406, "jobs": 912}, "53493114": {"x": -199.29, "y": -378.73, "pop": 5203, "jobs": 15013}, "53493128": {"x": -571.47, "y": -717.36, "pop": 4541, "jobs": 0}, "53493129": {"x": -722.02, "y": -853.37, "pop": 4922, "jobs": 2303}, "53493140": {"x": -893.55, "y": -1011.2, "pop": 1340, "jobs": 961}, "53494572": {"x": 2108.8, "y": 1035.45, "pop": 1504, "jobs": 6087}, "53494580": {"x": 2176.52, "y": 961.08, "pop": 3046, "jobs": 0}, "53494585": {"x": 2243.52, "y": 886.95, "pop": 1880, "jobs": 0}, "53496307": {"x": 2635.16, "y": 1637.74, "pop": 1835, "jobs": 5504}, "53496315": {"x": 2802.22, "y": 1681.07, "pop": 2651, "jobs": 0}, "53498225": {"x": 2090.85, "y": 2210.69, "pop": 2518, "jobs": 0}, "53498229": {"x": 2021.37, "y": 2282.3, "pop": 1498, "jobs": 322}, "53498398": {"x": 2681.73, "y": 2265.05, "pop": 1482, "jobs": 231}, "53498412": {"x": 2673.42, "y": 2112.16, "pop": 2414, "jobs": 68}, "53498415": {"x": 2671.34, "y": 2074.86, "pop": 2170, "jobs": 0}, "53498417": {"x": 2663.05, "y": 1926.4, "pop": 3240, "jobs": 342}, "53498437": {"x": 2638.08, "y": 1729.9, "pop": 1385, "jobs": 188}, "53498440": {"x": 2637.55, "y": 1683.25, "pop": 1717, "jobs": 4910}, "53498447": {"x": 2624.24, "y": 1448.77, "pop": 2618, "jobs": 0}, "53499266": {"x": 1605.0, "y": 2734.48, "pop": 207, "jobs": 20058}, "53499287": {"x": -1015.29, "y": 169.85, "pop": 3566, "jobs": 597}, "53499299": {"x": -1089.56, "y": -694.09, "pop": 0, "jobs": 19825}, "53503712": {"x": 2325.39, "y": 1779.62, "pop": 1087, "jobs": 4225}, "53503834": {"x": -1891.5, "y": -1056.94, "pop": 1681, "jobs": 1904}, "53503843": {"x": -1896.28, "y": -1238.1, "pop": 2380, "jobs": 0}, "53503849": {"x": -1899.41, "y": -1359.63, "pop": 2499, "jobs": 439}, "53503855": {"x": -1900.27, "y": -1415.28, "pop": 2025, "jobs": 439}, "53503864": {"x": -1890.2, "y": -849.81, "pop": 847, "jobs": 2761}, "53504312": {"x": -2550.96, "y": -545.0, "pop": 1589, "jobs": 0}, "53504327": {"x": -2634.59, "y": -541.53, "pop": 2696, "jobs": 0}, "53504329": {"x": -2779.85, "y": -535.91, "pop": 2347, "jobs": 0}, "53508174": {"x": -809.4, "y": -756.99, "pop": 6325, "jobs": 1231}, "53508176": {"x": -897.49, "y": -659.71, "pop": 7730, "jobs": 561}, "53509875": {"x": -1685.97, "y": -675.19, "pop": 3548, "jobs": 810}, "53509878": {"x": -1752.72, "y": -672.34, "pop": 2390, "jobs": 1942}, "53509962": {"x": -1752.34, "y": -647.82, "pop": 2350, "jobs": 74}, "53510000": {"x": -2155.03, "y": -627.55, "pop": 3984, "jobs": 1163}, "53510799": {"x": 1254.14, "y": 2453.63, "pop": 1567, "jobs": 0}, "53510828": {"x": 1404.74, "y": 2713.23, "pop": 1898, "jobs": 17}, "53511571": {"x": -1421.51, "y": -1491.08, "pop": 821, "jobs": 607}, "53511582": {"x": -1643.48, "y": -1485.84, "pop": 2711, "jobs": 0}, "53511589": {"x": -1773.68, "y": -1483.68, "pop": 2097, "jobs": 0}, "53511593": {"x": -2009.18, "y": -1477.35, "pop": 2461, "jobs": 0}, "53511598": {"x": -2029.98, "y": -1476.64, "pop": 2498, "jobs": 0}, "53511603": {"x": -2115.16, "y": -1474.81, "pop": 2396, "jobs": 117}, "53511694": {"x": -903.04, "y": -3083.32, "pop": 485, "jobs": 1302}, "53511712": {"x": -946.54, "y": -2751.09, "pop": 1404, "jobs": 903}, "53511723": {"x": -1034.3, "y": -2637.6, "pop": 727, "jobs": 118}, "53514806": {"x": -2783.26, "y": -626.79, "pop": 2544, "jobs": 0}, "53514812": {"x": -2778.03, "y": -464.27, "pop": 2029, "jobs": 0}, "53514818": {"x": -2777.46, "y": -370.81, "pop": 1861, "jobs": 0}, "53515071": {"x": 1459.3, "y": 854.24, "pop": 777, "jobs": 1284}, "53515077": {"x": 1608.67, "y": 988.62, "pop": 2199, "jobs": 1446}, "53515080": {"x": 1662.9, "y": 1039.89, "pop": 2231, "jobs": 590}, "53515081": {"x": 1755.84, "y": 1123.53, "pop": 1134, "jobs": 1831}, "53515084": {"x": 106.39, "y": -369.72, "pop": 0, "jobs": 39284}, "53515093": {"x": 484.81, "y": -23.85, "pop": 1972, "jobs": 332}, "53516186": {"x": -2546.7, "y": -399.91, "pop": 1289, "jobs": 0}, "53521155": {"x": -2957.74, "y": -895.74, "pop": 1918, "jobs": 354}, "53521446": {"x": -847.93, "y": 186.66, "pop": 5602, "jobs": 0}, "53521450": {"x": -885.21, "y": 153.51, "pop": 6796, "jobs": 0}, "53522245": {"x": 2542.88, "y": 1931.19, "pop": 2384, "jobs": 0}, "53523650": {"x": -2142.78, "y": -345.4, "pop": 0, "jobs": 8944}, "53525132": {"x": 56.49, "y": 30.24, "pop": 2850, "jobs": 26303}, "53529499": {"x": 2535.6, "y": 1936.06, "pop": 2412, "jobs": 0}, "53529508": {"x": 2651.29, "y": 2125.44, "pop": 2445, "jobs": 68}, "53529532": {"x": 2688.26, "y": 2648.1, "pop": 2135, "jobs": 849}, "53529537": {"x": 2619.39, "y": 2720.12, "pop": 1540, "jobs": 1655}, "53529540": {"x": 2548.66, "y": 2793.06, "pop": 653, "jobs": 1655}, "53529686": {"x": -1645.91, "y": -1607.86, "pop": 1952, "jobs": 0}, "53529689": {"x": -1775.94, "y": -1605.11, "pop": 2180, "jobs": 0}, "53529692": {"x": -2011.63, "y": -1596.2, "pop": 2727, "jobs": 0}, "53534017": {"x": -2454.97, "y": -940.76, "pop": 3747, "jobs": 277}, "53536993": {"x": 1296.4, "y": 1333.68, "pop": 2391, "jobs": 0}, "53536994": {"x": 1256.22, "y": 1376.65, "pop": 2726, "jobs": 0}, "53536997": {"x": 1203.72, "y": 1434.04, "pop": 2090, "jobs": 199}, "53536998": {"x": 1161.07, "y": 1482.05, "pop": 1893, "jobs": 199}, "53537015": {"x": 854.39, "y": 1767.66, "pop": 2056, "jobs": 0}, "53537030": {"x": 2261.6, "y": 1431.83, "pop": 2351, "jobs": 0}, "53537035": {"x": 2379.13, "y": 1512.66, "pop": 2677, "jobs": 118}, "53537040": {"x": 2436.87, "y": 1552.5, "pop": 2466, "jobs": 118}, "53538723": {"x": 1871.99, "y": 1860.78, "pop": 11794, "jobs": 220}, "53538727": {"x": 2016.37, "y": 1999.8, "pop": 2222, "jobs": 638}, "53538730": {"x": 2061.79, "y": 2043.53, "pop": 2196, "jobs": 638}, "53538734": {"x": 2161.11, "y": 2138.53, "pop": 2408, "jobs": 0}, "53538736": {"x": -105.8, "y": 75.05, "pop": 5101, "jobs": 8598}, "53538741": {"x": -29.84, "y": 125.64, "pop": 7693, "jobs": 8013}, "53538743": {"x": 117.22, "y": 262.49, "pop": 4439, "jobs": 864}, "53538776": {"x": 1443.57, "y": 1467.68, "pop": 608, "jobs": 8918}, "53538791": {"x": 2558.51, "y": 2524.18, "pop": 2428, "jobs": 220}, "53538820": {"x": -106.74, "y": 40.67, "pop": 1408, "jobs": 10032}, "53539161": {"x": 40.19, "y": -296.85, "pop": 0, "jobs": 34433}, "53539171": {"x": 201.01, "y": -141.17, "pop": 4770, "jobs": 14798}, "53539549": {"x": 1991.91, "y": 1504.99, "pop": 1647, "jobs": 0}, "53539556": {"x": 2067.9, "y": 1359.08, "pop": 1015, "jobs": 549}, "53540659": {"x": -55.67, "y": -384.29, "pop": 2710, "jobs": 29143}, "53540665": {"x": 10.23, "y": -457.93, "pop": 87, "jobs": 36240}, "53540837": {"x": 2796.04, "y": 1883.86, "pop": 2509, "jobs": 888}, "53540839": {"x": 2844.21, "y": 1921.43, "pop": 1440, "jobs": 1326}, "53541408": {"x": 41.66, "y": 465.45, "pop": 4039, "jobs": 0}, "53543498": {"x": -291.22, "y": -2293.83, "pop": 2489, "jobs": 0}, "53544863": {"x": -243.1, "y": -2198.09, "pop": 2055, "jobs": 0}, "53544865": {"x": -250.92, "y": -2392.78, "pop": 2051, "jobs": 0}, "53545466": {"x": -1624.87, "y": -741.8, "pop": 2877, "jobs": 1308}, "53545473": {"x": -1753.78, "y": -735.94, "pop": 2038, "jobs": 2131}, "53545894": {"x": -1962.78, "y": -846.45, "pop": 911, "jobs": 3644}, "53549773": {"x": -2872.44, "y": -513.9, "pop": 1958, "jobs": 0}, "53549801": {"x": -2959.73, "y": -454.07, "pop": 2029, "jobs": 0}, "53549949": {"x": -2978.64, "y": -1020.24, "pop": 2027, "jobs": 0}, "53549957": {"x": -3098.98, "y": -1122.4, "pop": 2345, "jobs": 0}, "53551340": {"x": -190.28, "y": -2120.53, "pop": 1956, "jobs": 0}, "53551342": {"x": -193.37, "y": -2200.25, "pop": 1925, "jobs": 109}, "53552967": {"x": -286.24, "y": -2196.23, "pop": 2080, "jobs": 0}, "53552968": {"x": -295.04, "y": -2390.75, "pop": 2073, "jobs": 0}, "53555070": {"x": 1174.06, "y": 2516.58, "pop": 2080, "jobs": 0}, "53556263": {"x": -2973.92, "y": -3035.94, "pop": 573, "jobs": 0}, "53556383": {"x": -2339.03, "y": -828.73, "pop": 4920, "jobs": 800}, "53556400": {"x": -2802.08, "y": -1235.88, "pop": 2521, "jobs": 887}, "53556402": {"x": -2902.14, "y": -1319.3, "pop": 2685, "jobs": 153}, "53556407": {"x": -3000.58, "y": -1402.68, "pop": 2658, "jobs": 0}, "53558103": {"x": 1534.24, "y": 378.88, "pop": 1708, "jobs": 673}, "53558110": {"x": 1817.79, "y": 635.51, "pop": 2775, "jobs": 0}, "53558116": {"x": 1878.5, "y": 691.16, "pop": 2834, "jobs": 0}, "53558125": {"x": 2026.52, "y": 825.33, "pop": 2936, "jobs": 0}, "53558139": {"x": 2269.4, "y": 1045.38, "pop": 1649, "jobs": 0}, "53558145": {"x": 2432.64, "y": 1196.07, "pop": 2435, "jobs": 0}, "53558147": {"x": 2435.85, "y": 1199.98, "pop": 2376, "jobs": 0}, "53558151": {"x": 2529.66, "y": 1320.6, "pop": 2916, "jobs": 0}, "53558152": {"x": 2580.27, "y": 1385.54, "pop": 2839, "jobs": 0}, "53558155": {"x": 1413.57, "y": 303.54, "pop": 1291, "jobs": 673}, "53558157": {"x": 1418.85, "y": 297.94, "pop": 1209, "jobs": 673}, "53558159": {"x": 1461.4, "y": 338.3, "pop": 1631, "jobs": 673}, "53560253": {"x": -1499.22, "y": -1367.81, "pop": 1183, "jobs": 1494}, "53560766": {"x": 1538.95, "y": 1363.92, "pop": 0, "jobs": 371}, "53560776": {"x": 1662.43, "y": 1228.18, "pop": 154, "jobs": 5197}, "53560780": {"x": 1716.7, "y": 1168.3, "pop": 591, "jobs": 3341}, "53560789": {"x": 1959.4, "y": 901.21, "pop": 2358, "jobs": 0}, "53560795": {"x": 2094.75, "y": 753.26, "pop": 2268, "jobs": 0}, "53560796": {"x": 2120.5, "y": 724.58, "pop": 1610, "jobs": 0}, "53562507": {"x": -409.67, "y": -2385.93, "pop": 1580, "jobs": 0}, "53562563": {"x": 2155.29, "y": 2693.8, "pop": 751, "jobs": 0}, "53568332": {"x": 2723.07, "y": 1452.33, "pop": 2343, "jobs": 0}, "53568810": {"x": 1210.08, "y": 2389.44, "pop": 1687, "jobs": 0}, "53570522": {"x": 2104.78, "y": 1999.18, "pop": 1958, "jobs": 638}, "53570527": {"x": 2204.95, "y": 2093.95, "pop": 2270, "jobs": 150}, "53571775": {"x": 1810.92, "y": 765.56, "pop": 3197, "jobs": 0}, "53571781": {"x": 1930.0, "y": 633.69, "pop": 1978, "jobs": 0}, "53572019": {"x": 2454.58, "y": 1986.13, "pop": 1838, "jobs": 871}, "53572020": {"x": 2496.8, "y": 1961.16, "pop": 2409, "jobs": 419}, "53572027": {"x": 2753.19, "y": 1919.62, "pop": 2885, "jobs": 472}, "53572824": {"x": -3019.28, "y": -616.93, "pop": 1751, "jobs": 0}, "53572846": {"x": -3015.64, "y": -500.66, "pop": 2084, "jobs": 0}, "53573840": {"x": 248.18, "y": -2262.13, "pop": 890, "jobs": 0}, "53573861": {"x": -54.23, "y": -2205.83, "pop": 283, "jobs": 2906}, "53575900": {"x": -2117.13, "y": -1557.78, "pop": 2482, "jobs": 0}, "53575901": {"x": -2118.52, "y": -1618.42, "pop": 2633, "jobs": 0}, "53576821": {"x": -1757.34, "y": -855.95, "pop": 1167, "jobs": 1648}, "53576823": {"x": -1762.38, "y": -1059.67, "pop": 2695, "jobs": 1048}, "53576826": {"x": -1764.3, "y": -1120.73, "pop": 3262, "jobs": 1048}, "53576829": {"x": -1767.07, "y": -1241.58, "pop": 3200, "jobs": 0}, "53576831": {"x": -1770.03, "y": -1363.1, "pop": 2196, "jobs": 439}, "53578330": {"x": 611.0, "y": 1191.65, "pop": 1436, "jobs": 1016}, "53578339": {"x": 677.86, "y": 1407.97, "pop": 1970, "jobs": 0}, "53578351": {"x": 1036.42, "y": 1974.01, "pop": 0, "jobs": 0}, "53578355": {"x": 1103.66, "y": 2050.91, "pop": 133, "jobs": 0}, "53578357": {"x": 1124.61, "y": 2073.98, "pop": 133, "jobs": 0}, "53578366": {"x": 1247.59, "y": 2302.43, "pop": 2032, "jobs": 0}, "53578383": {"x": 1459.52, "y": 2709.24, "pop": 1818, "jobs": 17}, "53578394": {"x": 1500.39, "y": 2783.92, "pop": 788, "jobs": 455}, "53578514": {"x": -503.51, "y": -791.4, "pop": 3973, "jobs": 0}, "53578519": {"x": -653.43, "y": -928.2, "pop": 4944, "jobs": 540}, "53578682": {"x": -2636.79, "y": -633.24, "pop": 2975, "jobs": 0}, "53578687": {"x": -2986.36, "y": -618.39, "pop": 1755, "jobs": 0}, "53580606": {"x": -2427.66, "y": 248.2, "pop": 2783, "jobs": 0}, "53580611": {"x": -2418.62, "y": 286.89, "pop": 2899, "jobs": 0}, "53580632": {"x": 746.24, "y": 1434.83, "pop": 2668, "jobs": 0}, "53582203": {"x": -1215.19, "y": -515.75, "pop": 4384, "jobs": 11540}, "53582205": {"x": -1207.19, "y": -389.06, "pop": 31378, "jobs": 2401}, "53582923": {"x": -2639.56, "y": -724.49, "pop": 2406, "jobs": 0}, "53589708": {"x": -2255.38, "y": -110.21, "pop": 0, "jobs": 6232}, "53589713": {"x": -2233.51, "y": -110.99, "pop": 0, "jobs": 10527}, "53589715": {"x": -2231.02, "y": -55.88, "pop": 0, "jobs": 4813}, "53589716": {"x": -2237.07, "y": -208.56, "pop": 0, "jobs": 6766}, "53589760": {"x": 2528.54, "y": 1426.0, "pop": 3132, "jobs": 0}, "53589769": {"x": 2339.91, "y": 1572.34, "pop": 1956, "jobs": 466}, "53589794": {"x": 2270.24, "y": 1689.88, "pop": 2824, "jobs": 3312}, "53589799": {"x": 2335.41, "y": 1596.58, "pop": 1879, "jobs": 647}, "53589977": {"x": -3142.51, "y": -2912.89, "pop": 337, "jobs": 0}, "53590668": {"x": -796.06, "y": -3088.56, "pop": 1088, "jobs": 0}, "53590699": {"x": -2311.95, "y": -1105.46, "pop": 2166, "jobs": 0}, "53590707": {"x": -2317.64, "y": -1226.89, "pop": 2149, "jobs": 0}, "53590715": {"x": -2321.61, "y": -1391.66, "pop": 1267, "jobs": 0}, "53591793": {"x": -450.24, "y": -251.77, "pop": 0, "jobs": 24258}, "53591794": {"x": -519.0, "y": -179.89, "pop": 10568, "jobs": 14221}, "53591804": {"x": -875.68, "y": 217.49, "pop": 4671, "jobs": 0}, "53596324": {"x": 2718.45, "y": 1534.71, "pop": 2476, "jobs": 0}, "53596328": {"x": 2816.81, "y": 1538.95, "pop": 2894, "jobs": 0}, "53596618": {"x": 1770.56, "y": 509.36, "pop": 1385, "jobs": 0}, "53596818": {"x": -2143.53, "y": -278.18, "pop": 0, "jobs": 7892}, "53599217": {"x": 2897.8, "y": 2706.12, "pop": 780, "jobs": 1436}, "53601429": {"x": 2612.71, "y": 2150.5, "pop": 2074, "jobs": 131}, "53602671": {"x": -2024.37, "y": -843.61, "pop": 2253, "jobs": 2109}, "53604256": {"x": -338.82, "y": -152.39, "pop": 1324, "jobs": 10420}, "53604257": {"x": -374.6, "y": -183.51, "pop": 920, "jobs": 20253}, "53604259": {"x": -600.1, "y": -387.45, "pop": 8237, "jobs": 413}, "53604263": {"x": -748.25, "y": -523.84, "pop": 5856, "jobs": 124}, "53604267": {"x": -945.52, "y": -703.56, "pop": 7701, "jobs": 561}, "53604822": {"x": 2571.15, "y": 2175.88, "pop": 1677, "jobs": 131}, "53604832": {"x": 2761.2, "y": 2071.48, "pop": 2515, "jobs": 0}, "53607068": {"x": -1881.92, "y": -481.98, "pop": 328, "jobs": 15958}, "53607075": {"x": -1878.73, "y": -355.78, "pop": 341, "jobs": 7141}, "53608986": {"x": -734.83, "y": -239.02, "pop": 27281, "jobs": 188}, "53610868": {"x": -2921.17, "y": -1091.33, "pop": 4946, "jobs": 251}, "53610896": {"x": -3079.95, "y": -890.19, "pop": 1770, "jobs": 0}, "53610898": {"x": -3062.23, "y": -912.97, "pop": 1953, "jobs": 0}, "53611257": {"x": 2774.49, "y": 2304.69, "pop": 1135, "jobs": 0}, "53611260": {"x": 2770.83, "y": 2260.08, "pop": 1745, "jobs": 0}, "53611268": {"x": 2784.45, "y": 1764.92, "pop": 1864, "jobs": 570}, "53611281": {"x": 2820.87, "y": 1457.15, "pop": 2305, "jobs": 0}, "53612039": {"x": -1514.74, "y": -2257.25, "pop": 2121, "jobs": 0}, "53612042": {"x": -1602.85, "y": -2288.63, "pop": 937, "jobs": 0}, "53615252": {"x": -287.35, "y": -281.9, "pop": 1123, "jobs": 11104}, "53615260": {"x": -659.27, "y": -620.89, "pop": 3604, "jobs": 767}, "53616146": {"x": 494.71, "y": 117.02, "pop": 1595, "jobs": 5130}, "53616166": {"x": -1627.88, "y": -862.16, "pop": 2437, "jobs": 3103}, "53616173": {"x": -1622.79, "y": -677.89, "pop": 3627, "jobs": 736}, "53616175": {"x": -1618.51, "y": -593.73, "pop": 3315, "jobs": 0}, "53616182": {"x": -1618.33, "y": -494.97, "pop": 1664, "jobs": 2597}, "53616188": {"x": -1612.4, "y": -369.57, "pop": 2152, "jobs": 18039}, "53616189": {"x": -1605.09, "y": -237.96, "pop": 2763, "jobs": 18745}, "53620227": {"x": -101.6, "y": -2123.63, "pop": 799, "jobs": 652}, "53621162": {"x": -2478.85, "y": -1343.8, "pop": 1808, "jobs": 0}, "53621164": {"x": -2515.05, "y": -1373.81, "pop": 1825, "jobs": 0}, "53621168": {"x": -2614.27, "y": -1458.44, "pop": 1989, "jobs": 0}, "53621256": {"x": -1639.87, "y": -1365.16, "pop": 2069, "jobs": 0}, "53621269": {"x": -2027.76, "y": -1356.46, "pop": 2683, "jobs": 0}, "53621277": {"x": -2267.93, "y": -1349.75, "pop": 1782, "jobs": 0}, "53621652": {"x": 1911.76, "y": 615.4, "pop": 1898, "jobs": 0}, "53624470": {"x": -73.38, "y": -3092.15, "pop": 0, "jobs": 0}, "53625770": {"x": -3040.96, "y": -1190.86, "pop": 2369, "jobs": 973}, "53626974": {"x": 2367.1, "y": 2477.6, "pop": 2038, "jobs": 0}, "53626978": {"x": 2295.21, "y": 2548.74, "pop": 2143, "jobs": 0}, "53626983": {"x": 2130.74, "y": 2717.95, "pop": 533, "jobs": 0}, "53628825": {"x": 2376.85, "y": 1286.33, "pop": 2968, "jobs": 0}, "53628954": {"x": -1626.37, "y": -799.4, "pop": 3892, "jobs": 1737}, "53628956": {"x": -1755.79, "y": -792.71, "pop": 1312, "jobs": 2443}, "53629591": {"x": -782.55, "y": -1303.2, "pop": 1320, "jobs": 125}, "53631422": {"x": 416.23, "y": 941.74, "pop": 3585, "jobs": 62}, "53636372": {"x": 2136.51, "y": 1470.7, "pop": 1763, "jobs": 0}, "53636377": {"x": 2508.77, "y": 2074.08, "pop": 2327, "jobs": 0}, "53637455": {"x": -377.65, "y": 357.67, "pop": 3034, "jobs": 2477}, "53639872": {"x": -1378.51, "y": -2116.1, "pop": 3278, "jobs": 664}, "53639885": {"x": -1496.54, "y": -2833.36, "pop": 142, "jobs": 0}, "53640713": {"x": 2014.77, "y": 2276.62, "pop": 1539, "jobs": 322}, "53640720": {"x": 1904.39, "y": 2181.16, "pop": 941, "jobs": 3665}, "53640725": {"x": 1884.58, "y": 2133.71, "pop": 994, "jobs": 5610}, "53640736": {"x": 1742.73, "y": 1988.28, "pop": 375, "jobs": 2274}, "53640824": {"x": 714.15, "y": 1074.69, "pop": 3013, "jobs": 0}, "53640831": {"x": 266.02, "y": 669.0, "pop": 2724, "jobs": 654}, "53640838": {"x": -242.46, "y": 208.39, "pop": 3516, "jobs": 2418}, "53640863": {"x": 1912.42, "y": 2250.69, "pop": 491, "jobs": 4294}, "53642012": {"x": -860.87, "y": -88.08, "pop": 3876, "jobs": 3586}, "53642768": {"x": -373.22, "y": -1955.5, "pop": 1564, "jobs": 0}, "53642775": {"x": -383.77, "y": -2192.0, "pop": 1765, "jobs": 1422}, "53642782": {"x": -417.48, "y": -2385.6, "pop": 1557, "jobs": 0}, "53643765": {"x": -2020.33, "y": -1053.26, "pop": 2170, "jobs": 1407}, "53643768": {"x": -2021.07, "y": -1114.58, "pop": 2480, "jobs": 0}, "53643772": {"x": -2024.32, "y": -1234.99, "pop": 2811, "jobs": 0}, "53644201": {"x": 293.07, "y": -2254.18, "pop": 806, "jobs": 0}, "53644706": {"x": 1862.71, "y": 2153.84, "pop": 617, "jobs": 5610}, "53645079": {"x": 1315.77, "y": 316.09, "pop": 2714, "jobs": 299}, "53645778": {"x": -2893.89, "y": -410.03, "pop": 2037, "jobs": 0}, "53646359": {"x": -915.92, "y": 188.33, "pop": 5534, "jobs": 0}, "53646449": {"x": -1682.37, "y": -600.4, "pop": 3201, "jobs": 0}, "53647040": {"x": -2065.92, "y": -1619.85, "pop": 2861, "jobs": 0}, "53649099": {"x": 2174.12, "y": 1459.65, "pop": 2137, "jobs": 0}, "53649103": {"x": 2265.76, "y": 1520.97, "pop": 2084, "jobs": 446}, "53649105": {"x": 2425.33, "y": 1631.5, "pop": 1850, "jobs": 415}, "53652463": {"x": -1741.49, "y": -231.41, "pop": 0, "jobs": 7625}, "53655118": {"x": -175.12, "y": 134.25, "pop": 3088, "jobs": 7036}, "53655130": {"x": -451.91, "y": 440.03, "pop": 1507, "jobs": 410}, "53659829": {"x": -3084.05, "y": -148.31, "pop": 1951, "jobs": 0}, "53663953": {"x": -586.08, "y": -1003.51, "pop": 3363, "jobs": 1951}, "53663960": {"x": -678.03, "y": -1093.37, "pop": 6504, "jobs": 3381}, "53663978": {"x": -469.13, "y": -830.68, "pop": 4296, "jobs": 0}, "53667246": {"x": 1071.12, "y": 176.03, "pop": 1606, "jobs": 0}, "53667261": {"x": 1361.72, "y": 358.51, "pop": 2200, "jobs": 972}, "53667521": {"x": 334.47, "y": 593.93, "pop": 2457, "jobs": 2268}, "53668846": {"x": 1230.61, "y": 1409.36, "pop": 2369, "jobs": 199}, "53668858": {"x": 1376.46, "y": 1542.41, "pop": 1641, "jobs": 2958}, "53668862": {"x": 1524.41, "y": 1678.65, "pop": 740, "jobs": 1929}, "53668890": {"x": 2487.79, "y": 2595.51, "pop": 2468, "jobs": 0}, "53668892": {"x": 2547.22, "y": 2654.46, "pop": 1212, "jobs": 1655}, "53668897": {"x": 1799.24, "y": 1925.59, "pop": 1186, "jobs": 2274}, "53668900": {"x": 1947.69, "y": 2070.09, "pop": 2181, "jobs": 0}, "53668988": {"x": -1749.46, "y": -488.07, "pop": 26, "jobs": 6951}, "53668996": {"x": -1745.22, "y": -362.88, "pop": 4323, "jobs": 8658}, "53670180": {"x": 1868.99, "y": 580.0, "pop": 1543, "jobs": 0}, "53672055": {"x": 1381.23, "y": 2191.71, "pop": 1374, "jobs": 0}, "53672772": {"x": -3032.65, "y": -892.51, "pop": 1875, "jobs": 0}, "53672943": {"x": 804.23, "y": 1707.2, "pop": 2299, "jobs": 0}, "53672961": {"x": 391.35, "y": 1130.15, "pop": 1662, "jobs": 0}, "53676376": {"x": -1635.08, "y": -1123.33, "pop": 1683, "jobs": 12071}, "53677752": {"x": -2802.88, "y": -3.02, "pop": 278, "jobs": 5525}, "53679791": {"x": -446.03, "y": -1945.54, "pop": 1027, "jobs": 0}, "53679815": {"x": -1568.05, "y": -2382.85, "pop": 968, "jobs": 0}, "53679819": {"x": -1547.15, "y": -2484.17, "pop": 1110, "jobs": 0}, "53680486": {"x": -2782.09, "y": -2837.2, "pop": 0, "jobs": 0}, "53680499": {"x": -2912.16, "y": -2971.7, "pop": 1164, "jobs": 0}, "53680515": {"x": -1846.31, "y": -1058.05, "pop": 1921, "jobs": 1904}, "53684762": {"x": -2642.54, "y": -816.95, "pop": 2104, "jobs": 90}, "53684770": {"x": -2630.24, "y": -397.6, "pop": 2367, "jobs": 0}, "53692030": {"x": -2168.71, "y": -1231.3, "pop": 2177, "jobs": 0}, "53692040": {"x": -2448.28, "y": -1223.8, "pop": 2275, "jobs": 0}, "53695962": {"x": -2067.35, "y": -1558.76, "pop": 2833, "jobs": 0}, "53699396": {"x": -667.2, "y": -314.65, "pop": 15176, "jobs": 413}, "53700390": {"x": -2987.13, "y": -2901.26, "pop": 676, "jobs": 0}, "53700870": {"x": -434.82, "y": -870.46, "pop": 4316, "jobs": 0}, "53700872": {"x": -383.5, "y": -923.81, "pop": 2053, "jobs": 0}, "53703066": {"x": -2186.26, "y": -84.13, "pop": 0, "jobs": 9986}, "53709531": {"x": -1893.42, "y": -1117.94, "pop": 1928, "jobs": 1904}, "53709543": {"x": -2166.07, "y": -1110.62, "pop": 2055, "jobs": 875}, "53711224": {"x": 1425.88, "y": 290.49, "pop": 1140, "jobs": 673}, "53713371": {"x": 1557.33, "y": 1660.18, "pop": 311, "jobs": 1929}, "53713378": {"x": 1481.56, "y": 1709.49, "pop": 1017, "jobs": 181}, "53714922": {"x": 2201.12, "y": 2598.12, "pop": 1087, "jobs": 0}, "53714925": {"x": 2225.19, "y": 2621.47, "pop": 1457, "jobs": 0}, "53719166": {"x": 1964.8, "y": 1757.78, "pop": 1162, "jobs": 272}, "53720172": {"x": -436.21, "y": 32.68, "pop": 1083, "jobs": 14399}, "53723920": {"x": 2055.16, "y": 1552.78, "pop": 1917, "jobs": 0}, "53725877": {"x": -2328.39, "y": 247.72, "pop": 2555, "jobs": 0}, "53727021": {"x": 2419.15, "y": 2667.55, "pop": 2293, "jobs": 0}, "53727030": {"x": 2349.22, "y": 2741.5, "pop": 2076, "jobs": 0}, "53727087": {"x": 366.58, "y": -3076.8, "pop": 0, "jobs": 0}, "258725731": {"x": -2671.61, "y": -1897.05, "pop": 0, "jobs": 0}, "270405510": {"x": -1788.06, "y": -2011.34, "pop": 670, "jobs": 0}, "316165989": {"x": 255.12, "y": -2279.82, "pop": 738, "jobs": 0}, "316292003": {"x": -160.06, "y": 417.63, "pop": 2315, "jobs": 75}, "316292008": {"x": 197.69, "y": 743.41, "pop": 2219, "jobs": 0}, "316302550": {"x": 484.27, "y": 727.99, "pop": 6024, "jobs": 1903}, "316302556": {"x": 632.25, "y": 864.72, "pop": 2305, "jobs": 125}, "316302558": {"x": 699.8, "y": 790.57, "pop": 987, "jobs": 1665}, "316303180": {"x": 781.42, "y": 701.01, "pop": 1704, "jobs": 2124}, "316305090": {"x": 1581.1, "y": 421.23, "pop": 1731, "jobs": 33}, "316305093": {"x": 1729.23, "y": 557.32, "pop": 1998, "jobs": 0}, "316305099": {"x": 1511.82, "y": 493.98, "pop": 2178, "jobs": 33}, "316306590": {"x": 1513.59, "y": 2807.85, "pop": 1533, "jobs": 455}, "316334513": {"x": 332.89, "y": 292.5, "pop": 1535, "jobs": 2234}, "316334514": {"x": 366.11, "y": 300.27, "pop": 689, "jobs": 1708}, "316342869": {"x": 2297.18, "y": 1734.34, "pop": 2828, "jobs": 3108}, "316349604": {"x": 345.03, "y": 280.34, "pop": 1413, "jobs": 2234}, "316357138": {"x": -1498.66, "y": -1357.3, "pop": 836, "jobs": 1494}, "316357429": {"x": -1468.07, "y": -1361.74, "pop": 721, "jobs": 1494}, "316357431": {"x": -1030.43, "y": -962.85, "pop": 987, "jobs": 656}, "316562664": {"x": -172.21, "y": -2522.82, "pop": 386, "jobs": 0}, "316562665": {"x": -307.42, "y": -2469.62, "pop": 777, "jobs": 0}, "316562667": {"x": -419.5, "y": -2437.18, "pop": 1087, "jobs": 0}, "349368476": {"x": 2165.67, "y": 2423.11, "pop": 1102, "jobs": 566}, "349378518": {"x": 998.36, "y": 1062.38, "pop": 15090, "jobs": 2112}, "362566885": {"x": -213.01, "y": -868.2, "pop": 409, "jobs": 0}, "362597488": {"x": -1378.73, "y": -1279.52, "pop": 1559, "jobs": 440}, "366215894": {"x": 644.33, "y": 551.1, "pop": 11641, "jobs": 7493}, "366215899": {"x": 791.64, "y": 689.77, "pop": 1704, "jobs": 2124}, "366215907": {"x": 941.31, "y": 824.81, "pop": 15796, "jobs": 193}, "366215913": {"x": 1090.49, "y": 960.84, "pop": 13825, "jobs": 3107}, "366215925": {"x": 1389.05, "y": 1229.73, "pop": 6462, "jobs": 1858}, "366220625": {"x": 239.33, "y": -318.61, "pop": 2135, "jobs": 12757}, "366229504": {"x": -0.89, "y": -2207.9, "pop": 0, "jobs": 2797}, "366229507": {"x": 20.49, "y": -2208.53, "pop": 0, "jobs": 2145}, "387001668": {"x": -281.05, "y": -126.32, "pop": 3561, "jobs": 8208}, "387096443": {"x": -280.11, "y": -107.02, "pop": 11871, "jobs": 6542}, "387186790": {"x": -1017.53, "y": -952.11, "pop": 987, "jobs": 656}, "387186883": {"x": -257.39, "y": -982.45, "pop": 0, "jobs": 0}, "387186935": {"x": -304.87, "y": -961.63, "pop": 15, "jobs": 0}, "387187387": {"x": -503.38, "y": -1094.42, "pop": 0, "jobs": 2934}, "387187392": {"x": -724.87, "y": -1247.11, "pop": 3708, "jobs": 125}, "445963180": {"x": -1448.49, "y": 86.26, "pop": 0, "jobs": 16971}, "446196405": {"x": 1911.72, "y": 2383.4, "pop": 0, "jobs": 2144}, "446196406": {"x": 1925.69, "y": 2376.72, "pop": 101, "jobs": 2159}, "446198895": {"x": 1729.85, "y": 2001.56, "pop": 248, "jobs": 0}, "447178131": {"x": 2713.36, "y": 2352.6, "pop": 1086, "jobs": 1952}, "447178140": {"x": 2762.08, "y": 2351.31, "pop": 1788, "jobs": 1952}, "449907112": {"x": 482.42, "y": 431.67, "pop": 596, "jobs": 3180}, "449917758": {"x": 909.05, "y": 796.8, "pop": 595, "jobs": 2186}, "449920083": {"x": 964.37, "y": 865.13, "pop": 15779, "jobs": 5343}, "449934218": {"x": 1630.99, "y": 1548.85, "pop": 0, "jobs": 2575}, "449952494": {"x": 2160.36, "y": 1940.62, "pop": 1777, "jobs": 638}, "449952498": {"x": 2404.88, "y": 2177.4, "pop": 1520, "jobs": 152}, "449956571": {"x": 2586.93, "y": 2355.33, "pop": 2208, "jobs": 451}, "449957352": {"x": 2657.85, "y": 2422.52, "pop": 1587, "jobs": 2172}, "449959902": {"x": 2511.99, "y": 2284.24, "pop": 1205, "jobs": 231}, "449967724": {"x": 2859.93, "y": 2644.07, "pop": 1430, "jobs": 2025}, "450505541": {"x": -2502.34, "y": 294.68, "pop": 2844, "jobs": 0}, "450714559": {"x": -1069.8, "y": -263.51, "pop": 2591, "jobs": 4022}, "450714993": {"x": -1458.65, "y": -244.99, "pop": 2322, "jobs": 28483}, "450716051": {"x": -1449.84, "y": 42.86, "pop": 0, "jobs": 12144}, "452816427": {"x": 325.03, "y": -2754.05, "pop": 0, "jobs": 0}, "452816429": {"x": 306.99, "y": -2757.13, "pop": 0, "jobs": 0}, "452817475": {"x": -1032.45, "y": -946.08, "pop": 987, "jobs": 2543}, "452866506": {"x": -2465.68, "y": -183.57, "pop": 29, "jobs": 11408}, "456681760": {"x": 1618.96, "y": 1903.49, "pop": 1343, "jobs": 0}, "456681765": {"x": 1616.4, "y": 1881.41, "pop": 714, "jobs": 0}, "469603287": {"x": -1457.46, "y": -140.4, "pop": 2322, "jobs": 11694}, "469603304": {"x": -1785.29, "y": -137.91, "pop": 18, "jobs": 17234}, "482811372": {"x": -2080.48, "y": -550.85, "pop": 4050, "jobs": 510}, "496686159": {"x": 1594.13, "y": 2485.69, "pop": 433, "jobs": 177}, "496686170": {"x": 1595.98, "y": 2346.2, "pop": 2211, "jobs": 0}, "496686196": {"x": 1331.24, "y": 2464.01, "pop": 1912, "jobs": 0}, "496686202": {"x": 1302.48, "y": 2409.03, "pop": 1832, "jobs": 0}, "845773140": {"x": 259.14, "y": 226.45, "pop": 5363, "jobs": 967}, "845773190": {"x": 198.7, "y": 172.76, "pop": 4155, "jobs": 1485}, "845773212": {"x": 137.01, "y": 90.9, "pop": 3181, "jobs": 11397}, "845773213": {"x": 212.3, "y": 158.5, "pop": 3953, "jobs": 1996}, "845773215": {"x": 270.51, "y": 213.31, "pop": 4434, "jobs": 967}, "847061279": {"x": -71.56, "y": -3019.52, "pop": 0, "jobs": 0}, "917593109": {"x": -366.22, "y": -346.38, "pop": 4027, "jobs": 13351}, "917593526": {"x": -510.55, "y": -485.48, "pop": 7907, "jobs": 2269}, "917880340": {"x": -929.84, "y": -1043.85, "pop": 720, "jobs": 305}, "1142902939": {"x": 2628.74, "y": 1772.4, "pop": 1950, "jobs": 1096}, "1142903012": {"x": 2091.49, "y": 1402.22, "pop": 1504, "jobs": 549}, "1142903104": {"x": 1634.7, "y": 1897.07, "pop": 651, "jobs": 0}, "1142903570": {"x": 1636.69, "y": 1919.3, "pop": 63, "jobs": 0}, "1142903857": {"x": 724.58, "y": 462.62, "pop": 142, "jobs": 16151}, "1142903904": {"x": 2098.01, "y": 1396.95, "pop": 1526, "jobs": 549}, "1142904042": {"x": 1961.19, "y": 1311.45, "pop": 761, "jobs": 589}, "1142904218": {"x": 643.95, "y": 255.42, "pop": 35, "jobs": 7481}, "1153239288": {"x": -1765.47, "y": -2061.3, "pop": 913, "jobs": 0}, "1157073442": {"x": -143.69, "y": -724.62, "pop": 4329, "jobs": 0}, "1160692039": {"x": -277.28, "y": 40.62, "pop": 11946, "jobs": 8997}, "1160692043": {"x": -368.09, "y": -42.12, "pop": 9808, "jobs": 18194}, "1178694147": {"x": -2320.24, "y": -1305.0, "pop": 1708, "jobs": 0}, "1179459672": {"x": -1494.85, "y": -747.28, "pop": 6444, "jobs": 4955}, "1179459686": {"x": -1481.34, "y": -375.79, "pop": 6048, "jobs": 14919}, "1179459693": {"x": -1467.28, "y": -376.21, "pop": 6048, "jobs": 13521}, "1179459694": {"x": -1493.3, "y": -1247.4, "pop": 1574, "jobs": 5386}, "1179459701": {"x": -1491.75, "y": -501.19, "pop": 4072, "jobs": 0}, "1179459703": {"x": -1508.6, "y": -746.6, "pop": 6514, "jobs": 0}, "1179459707": {"x": -1505.73, "y": -682.87, "pop": 5006, "jobs": 0}, "1179459709": {"x": -1510.81, "y": -804.67, "pop": 2952, "jobs": 5359}, "1179459724": {"x": -1478.01, "y": -502.46, "pop": 9920, "jobs": 0}, "1179459735": {"x": -1442.21, "y": -1016.58, "pop": 0, "jobs": 5186}, "1179459737": {"x": -1508.07, "y": -1247.14, "pop": 1522, "jobs": 5386}, "1179459754": {"x": -1491.33, "y": -683.49, "pop": 4998, "jobs": 0}, "1179459768": {"x": -1507.8, "y": -1084.65, "pop": 300, "jobs": 6378}, "1179459773": {"x": -1513.7, "y": -867.34, "pop": 1816, "jobs": 3027}, "1179795897": {"x": -1444.21, "y": -1367.25, "pop": 627, "jobs": 1356}, "1179795931": {"x": -1503.16, "y": -1611.25, "pop": 1269, "jobs": 2004}, "1179795960": {"x": -1506.18, "y": -1731.39, "pop": 1237, "jobs": 3982}, "1179795984": {"x": -1511.85, "y": -1367.46, "pop": 1332, "jobs": 1494}, "1179796012": {"x": -1460.69, "y": -1331.26, "pop": 557, "jobs": 1051}, "1179796036": {"x": -1468.27, "y": -1899.83, "pop": 3186, "jobs": 1367}, "1179796039": {"x": -1499.5, "y": -1399.34, "pop": 1369, "jobs": 1054}, "1179796054": {"x": -1496.8, "y": -1311.75, "pop": 519, "jobs": 971}, "1179796056": {"x": -1518.38, "y": -1611.05, "pop": 1344, "jobs": 2004}, "1179796074": {"x": -1366.43, "y": -2080.54, "pop": 1071, "jobs": 939}, "1179796096": {"x": -1515.61, "y": -1489.07, "pop": 2198, "jobs": 1432}, "1179796106": {"x": -1500.67, "y": -1489.22, "pop": 2276, "jobs": 1364}, "1179956582": {"x": -1359.42, "y": -782.56, "pop": 0, "jobs": 9116}, "1179956625": {"x": -1095.16, "y": -933.13, "pop": 1344, "jobs": 1887}, "1179967125": {"x": -825.0, "y": -1089.49, "pop": 1685, "jobs": 1946}, "1180005819": {"x": -2560.01, "y": -820.57, "pop": 1977, "jobs": 308}, "1180005830": {"x": -2859.77, "y": -206.25, "pop": 2190, "jobs": 2926}, "1180005831": {"x": -2019.94, "y": -634.36, "pop": 2568, "jobs": 2526}, "1180005834": {"x": -2016.51, "y": -475.33, "pop": 2471, "jobs": 15449}, "1180005838": {"x": -2150.75, "y": -468.15, "pop": 2422, "jobs": 1827}, "1180079551": {"x": -1365.66, "y": -1245.31, "pop": 2425, "jobs": 0}, "1180102573": {"x": -1067.49, "y": -975.54, "pop": 1425, "jobs": 0}, "1180120602": {"x": -989.53, "y": -926.52, "pop": 0, "jobs": 3554}, "1180120617": {"x": -984.87, "y": -967.03, "pop": 0, "jobs": 961}, "1180120831": {"x": -980.25, "y": -899.32, "pop": 0, "jobs": 3554}, "1180187456": {"x": -1174.11, "y": -2391.16, "pop": 2654, "jobs": 394}, "1180187478": {"x": -993.13, "y": -2933.17, "pop": 203, "jobs": 2212}, "1180187483": {"x": -1309.48, "y": -2152.25, "pop": 2922, "jobs": 71}, "1180187485": {"x": -1381.99, "y": -2100.3, "pop": 886, "jobs": 939}, "1180187507": {"x": -1240.42, "y": -2274.19, "pop": 2053, "jobs": 1228}, "1180187532": {"x": -1007.14, "y": -2931.38, "pop": 203, "jobs": 2090}, "1180187547": {"x": -1106.99, "y": -2510.6, "pop": 1663, "jobs": 1666}, "1180187568": {"x": -1324.59, "y": -2160.45, "pop": 3372, "jobs": 411}, "1180187578": {"x": -1060.82, "y": -2647.78, "pop": 3333, "jobs": 2634}, "1180187579": {"x": -1382.91, "y": -2055.97, "pop": 1280, "jobs": 939}, "1180187588": {"x": -1256.96, "y": -2282.31, "pop": 1665, "jobs": 3616}, "1180187595": {"x": -1190.4, "y": -2396.32, "pop": 2334, "jobs": 394}, "1180187596": {"x": -1045.58, "y": -2643.58, "pop": 578, "jobs": 118}, "1180187620": {"x": -885.58, "y": -2946.68, "pop": 271, "jobs": 1821}, "1180187658": {"x": -1211.11, "y": -2328.14, "pop": 1688, "jobs": 248}, "1180187677": {"x": -1225.56, "y": -2336.33, "pop": 1550, "jobs": 248}, "1180187697": {"x": -1008.57, "y": -2982.04, "pop": 0, "jobs": 1665}, "1180187704": {"x": -1355.78, "y": -2070.59, "pop": 1161, "jobs": 939}, "1180876933": {"x": -266.75, "y": 50.72, "pop": 11946, "jobs": 5918}, "1181085486": {"x": -855.8, "y": 59.42, "pop": 4721, "jobs": 1104}, "1181184017": {"x": -969.02, "y": 114.85, "pop": 8438, "jobs": 597}, "1181324562": {"x": -949.87, "y": 163.89, "pop": 5547, "jobs": 0}, "1181378741": {"x": -847.51, "y": -203.54, "pop": 13884, "jobs": 1191}, "1182091234": {"x": -1063.7, "y": -124.7, "pop": 8872, "jobs": 4915}, "1182471954": {"x": -318.31, "y": -757.45, "pop": 3691, "jobs": 0}, "1182471991": {"x": -267.98, "y": -748.28, "pop": 6033, "jobs": 0}, "1185580621": {"x": -512.89, "y": -1084.4, "pop": 0, "jobs": 2934}, "1186826669": {"x": -125.0, "y": -325.88, "pop": 6586, "jobs": 13556}, "1186826687": {"x": -131.41, "y": -442.96, "pop": 3025, "jobs": 19806}, "1188388070": {"x": -205.7, "y": -856.0, "pop": 498, "jobs": 0}, "1188388071": {"x": -144.17, "y": -799.58, "pop": 3041, "jobs": 0}, "1188388110": {"x": -185.9, "y": -827.6, "pop": 636, "jobs": 0}, "1188388114": {"x": -163.47, "y": -798.6, "pop": 3454, "jobs": 0}, "1188388115": {"x": -201.19, "y": -881.41, "pop": 94, "jobs": 0}, "1188394181": {"x": -219.84, "y": -806.84, "pop": 4108, "jobs": 0}, "1188394186": {"x": -226.82, "y": -792.96, "pop": 4312, "jobs": 0}, "1191535148": {"x": -733.97, "y": -1258.05, "pop": 3803, "jobs": 125}, "1192150160": {"x": 574.25, "y": 18.53, "pop": 465, "jobs": 4803}, "1192150246": {"x": 566.13, "y": 0.42, "pop": 495, "jobs": 2004}, "1192150256": {"x": 585.31, "y": 6.13, "pop": 495, "jobs": 2004}, "1192150405": {"x": 772.2, "y": 111.31, "pop": 3984, "jobs": 632}, "1192150406": {"x": 814.66, "y": 134.47, "pop": 3194, "jobs": 1229}, "1192150409": {"x": 828.74, "y": 49.41, "pop": 1348, "jobs": 597}, "1192150413": {"x": 780.89, "y": 102.54, "pop": 3984, "jobs": 1229}, "1192211510": {"x": 386.94, "y": 237.45, "pop": 439, "jobs": 4877}, "1192248462": {"x": 1255.12, "y": 672.52, "pop": 692, "jobs": 2217}, "1192282519": {"x": 2765.3, "y": 1851.03, "pop": 2370, "jobs": 942}, "1246389199": {"x": -691.89, "y": -3093.66, "pop": 920, "jobs": 0}, "1345392073": {"x": -100.29, "y": 194.48, "pop": 7495, "jobs": 4751}, "1345420597": {"x": -2150.35, "y": -404.14, "pop": 105, "jobs": 8944}, "1345424861": {"x": -2142.27, "y": -341.75, "pop": 0, "jobs": 8944}, "1345424866": {"x": -2010.71, "y": -339.54, "pop": 27, "jobs": 27226}, "1345424868": {"x": -2097.8, "y": -300.87, "pop": 0, "jobs": 15009}, "1345424871": {"x": -2007.54, "y": -220.49, "pop": 0, "jobs": 26785}, "1423974459": {"x": -214.28, "y": -17.34, "pop": 11811, "jobs": 4243}, "1424945190": {"x": -138.5, "y": -613.76, "pop": 3669, "jobs": 0}, "1425249983": {"x": 425.59, "y": -76.96, "pop": 1984, "jobs": 1591}, "1425249997": {"x": 492.33, "y": -32.06, "pop": 1840, "jobs": 332}, "1425250001": {"x": 432.49, "y": -84.46, "pop": 1700, "jobs": 1591}, "1425304284": {"x": -81.21, "y": -657.99, "pop": 2191, "jobs": 0}, "1426438819": {"x": -2442.25, "y": -801.03, "pop": 1131, "jobs": 6528}, "1426438835": {"x": -2154.06, "y": -602.0, "pop": 3930, "jobs": 0}, "1426438850": {"x": -2527.17, "y": -823.95, "pop": 2336, "jobs": 308}, "1612121520": {"x": -400.78, "y": -2191.26, "pop": 1573, "jobs": 1671}, "1699123250": {"x": 931.39, "y": 1136.11, "pop": 2221, "jobs": 2112}, "1699123263": {"x": 862.57, "y": 1211.87, "pop": 3065, "jobs": 0}, "1699123264": {"x": 1149.1, "y": 1493.82, "pop": 2064, "jobs": 199}, "1699123266": {"x": 494.9, "y": 1015.45, "pop": 3694, "jobs": 549}, "1699123271": {"x": 563.91, "y": 939.7, "pop": 3520, "jobs": 788}, "1699123277": {"x": 795.32, "y": 1286.69, "pop": 2830, "jobs": 0}, "1699123283": {"x": 1211.01, "y": 1545.12, "pop": 1733, "jobs": 0}, "1699123288": {"x": 782.26, "y": 999.96, "pop": 2188, "jobs": 0}, "1701854143": {"x": -406.8, "y": 194.99, "pop": 2368, "jobs": 4478}, "1706427633": {"x": 2853.58, "y": 2632.63, "pop": 1309, "jobs": 2493}, "1706427636": {"x": 2682.82, "y": 2398.25, "pop": 1223, "jobs": 2172}, "1706427646": {"x": 2725.85, "y": 2363.83, "pop": 1090, "jobs": 1952}, "1706427647": {"x": 2838.16, "y": 2641.73, "pop": 1576, "jobs": 2258}, "1706427648": {"x": 2235.81, "y": 2351.49, "pop": 1220, "jobs": 0}, "1706427652": {"x": 2711.35, "y": 2352.57, "pop": 1086, "jobs": 1952}, "1706427657": {"x": 2709.68, "y": 2380.12, "pop": 940, "jobs": 1952}, "1706427666": {"x": 2521.54, "y": 2317.8, "pop": 1414, "jobs": 231}, "1706427669": {"x": 2311.02, "y": 1904.47, "pop": 1679, "jobs": 1387}, "1706427672": {"x": 2392.13, "y": 2190.49, "pop": 1523, "jobs": 152}, "1706427684": {"x": 2698.68, "y": 2362.83, "pop": 1045, "jobs": 1952}, "1710317933": {"x": -1520.1, "y": -1731.12, "pop": 1331, "jobs": 3982}, "1777291055": {"x": 1310.06, "y": 1616.69, "pop": 981, "jobs": 0}, "1777291057": {"x": 1304.54, "y": 1622.67, "pop": 937, "jobs": 0}, "1850006055": {"x": -2905.37, "y": 371.86, "pop": 601, "jobs": 631}, "1850006061": {"x": -2902.11, "y": 153.12, "pop": 0, "jobs": 4261}, "1857601486": {"x": -2624.26, "y": -198.4, "pop": 538, "jobs": 4792}, "1857601633": {"x": -2152.21, "y": -338.59, "pop": 0, "jobs": 9411}, "1944740975": {"x": -2785.78, "y": -718.33, "pop": 1733, "jobs": 1989}, "2298789012": {"x": -2953.89, "y": -803.68, "pop": 1396, "jobs": 354}, "2298789025": {"x": -2950.17, "y": -710.73, "pop": 1387, "jobs": 0}, "2298789030": {"x": -2792.51, "y": -810.37, "pop": 1303, "jobs": 1989}, "2384881527": {"x": 2216.79, "y": 1492.88, "pop": 1964, "jobs": 0}, "2384881533": {"x": 2154.33, "y": 1568.39, "pop": 2348, "jobs": 1049}, "2384881547": {"x": 2104.84, "y": 1618.09, "pop": 1649, "jobs": 951}, "2384881587": {"x": 1927.87, "y": 1751.45, "pop": 11204, "jobs": 272}, "2384881594": {"x": 1972.06, "y": 1764.42, "pop": 1266, "jobs": 272}, "2384881598": {"x": 1950.23, "y": 1770.12, "pop": 11554, "jobs": 272}, "2384881601": {"x": 1959.4, "y": 1776.92, "pop": 1194, "jobs": 272}, "2384881629": {"x": 1892.68, "y": 1820.34, "pop": 11518, "jobs": 272}, "2384881635": {"x": 1863.01, "y": 1853.03, "pop": 11615, "jobs": 220}, "2384881652": {"x": 1618.39, "y": 1893.44, "pop": 714, "jobs": 0}, "2384881654": {"x": 1612.92, "y": 1896.67, "pop": 1343, "jobs": 0}, "2384881666": {"x": 1619.44, "y": 1935.12, "pop": 1343, "jobs": 0}, "2384881679": {"x": 1617.42, "y": 1944.55, "pop": 1343, "jobs": 1045}, "2573847767": {"x": -1615.15, "y": -1892.92, "pop": 2861, "jobs": 5856}, "2573847770": {"x": -1787.87, "y": -1987.29, "pop": 655, "jobs": 1788}, "2573847776": {"x": -1699.24, "y": -1937.88, "pop": 1021, "jobs": 4137}, "2573847782": {"x": -1780.37, "y": -1725.69, "pop": 1428, "jobs": 2432}, "2573847784": {"x": -1648.87, "y": -1728.37, "pop": 1126, "jobs": 7158}, "2573847790": {"x": -1638.61, "y": -1243.6, "pop": 2590, "jobs": 4699}, "2627868774": {"x": 2624.46, "y": 2253.57, "pop": 1614, "jobs": 299}, "2627868777": {"x": 2572.77, "y": 2178.46, "pop": 1638, "jobs": 362}, "2634682652": {"x": -255.54, "y": -2489.67, "pop": 777, "jobs": 0}, "2634682653": {"x": -296.82, "y": -2473.71, "pop": 736, "jobs": 0}, "2634682669": {"x": -419.22, "y": -2430.09, "pop": 1087, "jobs": 0}, "2634693264": {"x": 73.77, "y": -2056.26, "pop": 0, "jobs": 1150}, "2634693266": {"x": 95.72, "y": -2057.23, "pop": 0, "jobs": 1150}, "2634693274": {"x": -471.44, "y": -2188.19, "pop": 954, "jobs": 2139}, "2634693276": {"x": -405.62, "y": -2287.87, "pop": 1831, "jobs": 1281}, "2634693278": {"x": -1424.87, "y": -1612.63, "pop": 785, "jobs": 678}, "2634693299": {"x": -622.03, "y": -2093.25, "pop": 801, "jobs": 197}, "2634708186": {"x": -614.98, "y": -2182.79, "pop": 1479, "jobs": 493}, "2635256558": {"x": -2910.44, "y": -1710.62, "pop": 632, "jobs": 0}, "2635256569": {"x": -2811.44, "y": -1626.48, "pop": 1053, "jobs": 0}, "2635256574": {"x": -2712.85, "y": -1541.86, "pop": 1358, "jobs": 0}, "2637056004": {"x": -2972.92, "y": -1635.83, "pop": 1201, "jobs": 0}, "2637157420": {"x": -2383.18, "y": -1346.49, "pop": 1660, "jobs": 0}, "2637707069": {"x": 440.5, "y": -3073.43, "pop": 0, "jobs": 1589}, "2637710726": {"x": 299.81, "y": -3088.69, "pop": 455, "jobs": 402}, "2637766380": {"x": 323.84, "y": -2816.48, "pop": 0, "jobs": 0}, "2637766387": {"x": 223.7, "y": -2728.8, "pop": 243, "jobs": 0}, "2637766399": {"x": 268.88, "y": -2634.97, "pop": 320, "jobs": 0}, "2638675157": {"x": -1476.35, "y": -2798.19, "pop": 522, "jobs": 0}, "2638675190": {"x": -1393.02, "y": -2490.14, "pop": 908, "jobs": 0}, "2638675236": {"x": -1122.18, "y": -2515.56, "pop": 1472, "jobs": 1666}, "2638675244": {"x": -1387.98, "y": -2362.92, "pop": 1032, "jobs": 5181}, "2638675253": {"x": -1273.43, "y": -2364.03, "pop": 1142, "jobs": 6409}, "2638675264": {"x": -1204.59, "y": -2488.88, "pop": 1242, "jobs": 146}, "2705148498": {"x": 569.55, "y": 1080.42, "pop": 3013, "jobs": 1130}, "2705148499": {"x": 637.14, "y": 1007.52, "pop": 3853, "jobs": 333}, "2705148524": {"x": 279.93, "y": 952.02, "pop": 1633, "jobs": 0}, "2705151904": {"x": 459.94, "y": 1138.74, "pop": 1913, "jobs": 1016}, "2707919647": {"x": 1014.58, "y": 138.24, "pop": 1233, "jobs": 83}, "2707919868": {"x": 2203.03, "y": 1121.71, "pop": 1212, "jobs": 0}, "2712062758": {"x": 1590.53, "y": 2431.05, "pop": 1368, "jobs": 177}, "2712062759": {"x": 1590.3, "y": 2412.36, "pop": 1785, "jobs": 0}, "2712062761": {"x": 1601.08, "y": 2322.8, "pop": 1838, "jobs": 0}, "2713279290": {"x": -287.56, "y": 63.06, "pop": 9103, "jobs": 7021}, "2713279291": {"x": -339.29, "y": 119.78, "pop": 267, "jobs": 5601}, "2713292536": {"x": 576.83, "y": 327.33, "pop": 112, "jobs": 2142}, "2713311875": {"x": 1912.67, "y": 1464.18, "pop": 797, "jobs": 0}, "2713311958": {"x": 742.46, "y": 664.61, "pop": 31781, "jobs": 1034}, "2713311960": {"x": 550.84, "y": 655.01, "pop": 16345, "jobs": 1903}, "2713311962": {"x": 401.4, "y": 520.52, "pop": 1173, "jobs": 6142}, "2713353784": {"x": 1661.71, "y": 630.46, "pop": 2176, "jobs": 0}, "2713365262": {"x": 1825.08, "y": 1902.21, "pop": 1286, "jobs": 2274}, "2713365265": {"x": 1185.15, "y": 2146.32, "pop": 751, "jobs": 1298}, "2713391900": {"x": 1284.19, "y": 2375.76, "pop": 1925, "jobs": 0}, "2713391937": {"x": 915.08, "y": 1836.1, "pop": 990, "jobs": 151}, "2714912985": {"x": 2306.26, "y": 2278.94, "pop": 1242, "jobs": 12452}, "2714912986": {"x": 2437.9, "y": 2405.53, "pop": 1621, "jobs": 12424}, "2714977035": {"x": -720.32, "y": 46.47, "pop": 5179, "jobs": 1096}, "2726180832": {"x": -2845.6, "y": -1748.61, "pop": 148, "jobs": 0}, "2771341200": {"x": -1382.85, "y": -2259.22, "pop": 3322, "jobs": 3616}, "2816310343": {"x": -2444.52, "y": -1459.15, "pop": 804, "jobs": 0}, "2816310345": {"x": -2021.03, "y": -993.24, "pop": 1863, "jobs": 1407}, "2816310353": {"x": -2022.92, "y": -919.16, "pop": 2387, "jobs": 148}, "2848493171": {"x": -2771.27, "y": -191.89, "pop": 1490, "jobs": 3109}, "2848493172": {"x": -2733.36, "y": -189.81, "pop": 1397, "jobs": 4007}, "2848493173": {"x": -2624.06, "y": -192.23, "pop": 403, "jobs": 4792}, "2848493174": {"x": -2540.91, "y": -203.6, "pop": 320, "jobs": 7983}, "2856773811": {"x": 1280.12, "y": 2800.71, "pop": 1033, "jobs": 0}, "2857394107": {"x": 1504.14, "y": 2813.45, "pop": 1516, "jobs": 455}, "2858999189": {"x": -19.47, "y": 409.18, "pop": 4254, "jobs": 0}, "2859093884": {"x": 2177.73, "y": 1541.51, "pop": 1659, "jobs": 1049}, "2859245506": {"x": -940.51, "y": -529.64, "pop": 3162, "jobs": 2449}, "2859245549": {"x": 42.6, "y": 194.87, "pop": 4715, "jobs": 4202}, "2859245565": {"x": -987.87, "y": -527.28, "pop": 2483, "jobs": 2449}, "2859245573": {"x": -1082.69, "y": -522.51, "pop": 760, "jobs": 2449}, "2859245574": {"x": -1076.51, "y": -396.38, "pop": 9859, "jobs": 2753}, "2859245582": {"x": -1200.35, "y": -257.04, "pop": 27711, "jobs": 4533}, "2859245583": {"x": -1183.92, "y": 29.6, "pop": 7507, "jobs": 14532}, "2859302267": {"x": -1497.76, "y": -868.11, "pop": 1802, "jobs": 7714}, "2859302272": {"x": -1363.57, "y": -874.46, "pop": 499, "jobs": 10563}, "2859304393": {"x": -2151.26, "y": -548.22, "pop": 4985, "jobs": 0}, "2859304395": {"x": -2159.75, "y": -579.18, "pop": 5289, "jobs": 0}, "2859304803": {"x": -2389.35, "y": -759.74, "pop": 93, "jobs": 8249}, "2925569869": {"x": 2760.82, "y": 1848.04, "pop": 2406, "jobs": 912}, "2925570317": {"x": 1525.84, "y": 780.08, "pop": 1783, "jobs": 2944}, "2938172405": {"x": -273.6, "y": -981.05, "pop": 0, "jobs": 0}, "2938172406": {"x": -270.67, "y": -974.24, "pop": 0, "jobs": 0}, "2948594974": {"x": 1080.21, "y": 972.28, "pop": 13886, "jobs": 3107}, "2948595023": {"x": 2613.93, "y": 2250.41, "pop": 1541, "jobs": 362}, "2948595043": {"x": 2698.91, "y": 2370.8, "pop": 958, "jobs": 1952}, "2948595076": {"x": 1309.22, "y": 718.22, "pop": 1555, "jobs": 2217}, "2948601585": {"x": 1024.99, "y": 733.02, "pop": 387, "jobs": 16125}, "2948601586": {"x": 2023.52, "y": 1287.95, "pop": 700, "jobs": 742}, "2955373055": {"x": 2946.11, "y": 2606.04, "pop": 1514, "jobs": 580}, "2985254834": {"x": -2015.24, "y": -445.1, "pop": 801, "jobs": 22097}, "2987035532": {"x": -2467.4, "y": -822.56, "pop": 1222, "jobs": 6528}, "2987035535": {"x": -2494.59, "y": -814.17, "pop": 2059, "jobs": 6528}, "2988375113": {"x": -2793.8, "y": 13.35, "pop": 278, "jobs": 5525}, "2988748407": {"x": -2253.16, "y": -55.18, "pop": 0, "jobs": 4889}, "3031362525": {"x": -2426.59, "y": 281.64, "pop": 2899, "jobs": 0}, "3035654115": {"x": -2454.56, "y": -823.35, "pop": 1222, "jobs": 6528}, "3088209646": {"x": -87.61, "y": 483.03, "pop": 2390, "jobs": 75}, "3088209647": {"x": -25.6, "y": 539.58, "pop": 2307, "jobs": 0}, "3088209649": {"x": 49.46, "y": 608.05, "pop": 2225, "jobs": 304}, "3088209661": {"x": 167.99, "y": 776.38, "pop": 1147, "jobs": 0}, "3157337335": {"x": -309.63, "y": 282.68, "pop": 3414, "jobs": 570}, "3208339050": {"x": 2591.6, "y": 1269.52, "pop": 1361, "jobs": 0}, "3208339051": {"x": 2184.58, "y": 1241.41, "pop": 1620, "jobs": 0}, "3208339054": {"x": 2057.49, "y": 1342.3, "pop": 740, "jobs": 939}, "3208342164": {"x": 2322.32, "y": 1093.69, "pop": 1442, "jobs": 0}, "3208342165": {"x": 2485.8, "y": 1145.45, "pop": 1158, "jobs": 0}, "3227608153": {"x": -92.86, "y": 345.0, "pop": 4040, "jobs": 0}, "3227608154": {"x": -705.28, "y": 329.33, "pop": 2823, "jobs": 0}, "3235649725": {"x": 1228.52, "y": 508.76, "pop": 1633, "jobs": 878}, "3235650820": {"x": 1216.03, "y": 222.92, "pop": 1947, "jobs": 149}, "3241106071": {"x": -815.92, "y": -450.05, "pop": 4068, "jobs": 48}, "3241106091": {"x": -886.47, "y": -373.22, "pop": 17366, "jobs": 48}, "3264677727": {"x": 547.62, "y": 1260.27, "pop": 544, "jobs": 0}, "3269827284": {"x": -726.68, "y": -997.32, "pop": 4628, "jobs": 1437}, "3270240364": {"x": 931.26, "y": 836.47, "pop": 15796, "jobs": 193}, "3270240367": {"x": 849.16, "y": 926.55, "pop": 16525, "jobs": 0}, "3271744858": {"x": -838.48, "y": -124.78, "pop": 3857, "jobs": 3072}, "3306923767": {"x": -1492.9, "y": -1016.71, "pop": 197, "jobs": 7040}, "3306923798": {"x": -1512.65, "y": -967.59, "pop": 211, "jobs": 6527}, "3358764343": {"x": -208.48, "y": -803.74, "pop": 3916, "jobs": 0}, "3455711385": {"x": 282.78, "y": 412.77, "pop": 3814, "jobs": 628}, "3607816606": {"x": -2843.59, "y": -203.75, "pop": 2380, "jobs": 2926}, "3607816648": {"x": -2540.44, "y": -193.81, "pop": 253, "jobs": 7872}, "3637918464": {"x": -3148.9, "y": -1403.85, "pop": 1122, "jobs": 0}, "3755083604": {"x": -449.35, "y": -1977.18, "pop": 1446, "jobs": 0}, "3755083605": {"x": -416.96, "y": -1978.95, "pop": 1643, "jobs": 0}, "3786903332": {"x": 2054.07, "y": 1671.29, "pop": 1676, "jobs": 252}, "3786906785": {"x": 2639.01, "y": 1694.77, "pop": 1665, "jobs": 4910}, "3786906803": {"x": 2645.16, "y": 1730.23, "pop": 1424, "jobs": 188}, "3786906811": {"x": 2635.13, "y": 1776.91, "pop": 1985, "jobs": 1096}, "3786906822": {"x": 2594.82, "y": 1809.27, "pop": 1325, "jobs": 1909}, "3786910293": {"x": 2126.83, "y": 1600.4, "pop": 1608, "jobs": 951}, "3786910294": {"x": 2122.84, "y": 1596.18, "pop": 1786, "jobs": 951}, "3786926320": {"x": 2727.82, "y": 1374.95, "pop": 1342, "jobs": 0}, "3811323394": {"x": -1893.33, "y": -996.98, "pop": 1509, "jobs": 1904}, "3811323395": {"x": -1891.85, "y": -922.61, "pop": 1403, "jobs": 474}, "3812685575": {"x": -2658.58, "y": -987.77, "pop": 1997, "jobs": 560}, "3812685579": {"x": -2696.95, "y": -1019.19, "pop": 3753, "jobs": 841}, "3812685605": {"x": -3086.54, "y": -1475.37, "pop": 1184, "jobs": 0}, "3812685612": {"x": -2176.79, "y": -1473.09, "pop": 1784, "jobs": 117}, "3812685620": {"x": -2323.86, "y": -1469.71, "pop": 786, "jobs": 0}, "3812685626": {"x": -2464.57, "y": -1434.42, "pop": 871, "jobs": 0}, "3812685629": {"x": -3022.78, "y": -1550.25, "pop": 1343, "jobs": 0}, "3859915626": {"x": 1225.45, "y": 1404.58, "pop": 2421, "jobs": 199}, "3886439879": {"x": 573.45, "y": -46.82, "pop": 495, "jobs": 2004}, "3894523242": {"x": -2706.92, "y": -190.45, "pop": 776, "jobs": 1191}, "3937040986": {"x": 36.93, "y": -2235.01, "pop": 0, "jobs": 0}, "3937040992": {"x": 47.77, "y": -2209.81, "pop": 0, "jobs": 0}, "3951970461": {"x": 380.84, "y": -2915.77, "pop": 45, "jobs": 0}, "4055610627": {"x": -2709.25, "y": 338.19, "pop": 1199, "jobs": 0}, "4089413144": {"x": -1503.84, "y": -1832.81, "pop": 3058, "jobs": 5775}, "4089413153": {"x": -1484.1, "y": -1836.89, "pop": 3126, "jobs": 2748}, "4091376211": {"x": -332.79, "y": -983.57, "pop": 15, "jobs": 0}, "4091376224": {"x": -293.0, "y": -1021.26, "pop": 0, "jobs": 0}, "4095606995": {"x": -2025.77, "y": -1892.2, "pop": 186, "jobs": 752}, "4095618185": {"x": -2192.77, "y": -1699.38, "pop": 936, "jobs": 1180}, "4095648221": {"x": -2173.08, "y": -1358.97, "pop": 2315, "jobs": 117}, "4095648223": {"x": -2178.84, "y": -1352.34, "pop": 2267, "jobs": 117}, "4095648225": {"x": -2172.71, "y": -1346.49, "pop": 2205, "jobs": 117}, "4095648227": {"x": -2166.31, "y": -1352.71, "pop": 2152, "jobs": 117}, "4095666564": {"x": -1783.06, "y": -1802.43, "pop": 449, "jobs": 6177}, "4095684894": {"x": -1787.0, "y": -1951.04, "pop": 522, "jobs": 5067}, "4139816155": {"x": -1885.34, "y": -641.05, "pop": 888, "jobs": 4007}, "4172253594": {"x": 645.33, "y": 1150.04, "pop": 2023, "jobs": 1016}, "4173748917": {"x": -586.82, "y": -102.96, "pop": 12051, "jobs": 3115}, "4173789198": {"x": -980.65, "y": -401.06, "pop": 13336, "jobs": 400}, "4173796882": {"x": -383.11, "y": -367.23, "pop": 9691, "jobs": 12316}, "4173797761": {"x": -265.01, "y": -707.51, "pop": 6194, "jobs": 549}, "4194510097": {"x": -2385.15, "y": -1467.93, "pop": 709, "jobs": 0}, "4214349299": {"x": -2556.96, "y": -727.8, "pop": 1345, "jobs": 271}, "4248707700": {"x": -1453.98, "y": -1891.76, "pop": 3292, "jobs": 1367}, "4248941674": {"x": -1449.21, "y": -2818.93, "pop": 371, "jobs": 3078}, "4687823320": {"x": 405.31, "y": -3006.8, "pop": 45, "jobs": 941}, "4874980024": {"x": -2595.14, "y": -1061.52, "pop": 1992, "jobs": 475}, "4874980027": {"x": -2703.04, "y": -1152.42, "pop": 2056, "jobs": 1040}, "5112004105": {"x": -487.73, "y": 393.7, "pop": 1167, "jobs": 16457}, "5446595705": {"x": -1448.02, "y": 159.72, "pop": 0, "jobs": 15615}, "5463552488": {"x": -541.4, "y": 344.37, "pop": 2282, "jobs": 16457}, "5468393309": {"x": -474.35, "y": 270.2, "pop": 3142, "jobs": 2467}, "5497859257": {"x": -1380.46, "y": -2159.08, "pop": 2949, "jobs": 664}, "5730487258": {"x": 173.6, "y": 313.65, "pop": 6874, "jobs": 198}, "5730487259": {"x": 180.38, "y": 319.03, "pop": 3818, "jobs": 198}, "5730487260": {"x": 179.36, "y": 314.6, "pop": 6725, "jobs": 198}, "5730487261": {"x": 173.02, "y": 321.41, "pop": 3919, "jobs": 198}, "5890633223": {"x": -674.88, "y": -2417.72, "pop": 978, "jobs": 350}, "5890633230": {"x": -714.55, "y": -2411.97, "pop": 990, "jobs": 350}, "6233229328": {"x": -640.0, "y": -2419.61, "pop": 927, "jobs": 350}, "6275800735": {"x": -1114.35, "y": -910.29, "pop": 1595, "jobs": 2839}, "6291669589": {"x": 55.01, "y": -2612.58, "pop": 0, "jobs": 1787}, "6401044369": {"x": 349.14, "y": -2664.31, "pop": 0, "jobs": 0}, "6401044370": {"x": 233.41, "y": -2454.53, "pop": 0, "jobs": 0}, "6404917413": {"x": -496.22, "y": -2817.48, "pop": 247, "jobs": 2434}, "6577170380": {"x": 2116.89, "y": 1439.87, "pop": 1547, "jobs": 549}, "6577823481": {"x": -2307.77, "y": -199.72, "pop": 0, "jobs": 5216}, "6610389586": {"x": -921.65, "y": -266.53, "pop": 19844, "jobs": 524}, "6915301805": {"x": 2331.99, "y": 2443.3, "pop": 1174, "jobs": 0}, "7189398145": {"x": -749.15, "y": -1166.27, "pop": 3617, "jobs": 1946}, "7189398161": {"x": -810.51, "y": -1175.11, "pop": 1655, "jobs": 1160}, "8174660902": {"x": -429.9, "y": -848.14, "pop": 4696, "jobs": 0}, "8316813421": {"x": -3036.36, "y": 158.26, "pop": 42, "jobs": 14383}, "8729846828": {"x": 183.68, "y": 458.8, "pop": 3622, "jobs": 0}, "8868957845": {"x": -1265.49, "y": -1026.24, "pop": 1408, "jobs": 1107}, "9146885459": {"x": -1297.75, "y": -2612.84, "pop": 0, "jobs": 711}, "10829398901": {"x": -1399.94, "y": -2607.51, "pop": 550, "jobs": 0}, "11205598924": {"x": 2681.17, "y": 2338.95, "pop": 1353, "jobs": 1952}, "11390496552": {"x": 1606.24, "y": 390.84, "pop": 1073, "jobs": 0}, "11603196290": {"x": -1237.56, "y": -1129.41, "pop": 2082, "jobs": 0}, "11793715342": {"x": 1766.16, "y": 1954.55, "pop": 623, "jobs": 2274}, "12849307402": {"x": -336.41, "y": -76.06, "pop": 12529, "jobs": 5961}, "12911858844": {"x": -990.7, "y": -1210.11, "pop": 1195, "jobs": 0}, "12911858894": {"x": -1427.95, "y": -1732.91, "pop": 1071, "jobs": 518}, "13009756501": {"x": -2798.56, "y": -870.04, "pop": 1507, "jobs": 0}, "13018504178": {"x": 605.17, "y": 11.3, "pop": 371, "jobs": 1770}, "13030502563": {"x": -2497.45, "y": -847.71, "pop": 2554, "jobs": 308}, "13030502564": {"x": -2516.77, "y": -869.34, "pop": 2611, "jobs": 445}, "13030502567": {"x": -2553.58, "y": -894.99, "pop": 2366, "jobs": 560}, "13056348945": {"x": -776.69, "y": -1191.34, "pop": 4362, "jobs": 1160}, "13056348946": {"x": -781.36, "y": -1186.12, "pop": 4357, "jobs": 1160}, "13056348947": {"x": -850.69, "y": -1111.91, "pop": 2268, "jobs": 1160}, "13056348949": {"x": -919.88, "y": -1035.08, "pop": 1567, "jobs": 305}, "13069954941": {"x": -766.34, "y": -202.63, "pop": 14694, "jobs": 1183}, "13091071866": {"x": 186.73, "y": -264.0, "pop": 2942, "jobs": 8660}, "13132340420": {"x": 546.0, "y": 462.64, "pop": 192, "jobs": 1250}, "13146093508": {"x": -1359.83, "y": -874.56, "pop": 499, "jobs": 10981}, "13151160466": {"x": -919.51, "y": -853.78, "pop": 987, "jobs": 2680}, "13191853166": {"x": -1023.89, "y": -26.42, "pop": 10031, "jobs": 748}, "13202666793": {"x": 1731.0, "y": 1978.06, "pop": 248, "jobs": 2274}, "13206778050": {"x": 1719.07, "y": 1991.73, "pop": 173, "jobs": 0}, "13324853243": {"x": -311.12, "y": -302.43, "pop": 881, "jobs": 10690}, "13324853247": {"x": -359.73, "y": -353.46, "pop": 4032, "jobs": 13351}, "13334632578": {"x": -320.19, "y": 98.5, "pop": 768, "jobs": 8846}, "13334632600": {"x": -425.39, "y": 216.03, "pop": 2683, "jobs": 3316}, "13334818837": {"x": -259.54, "y": -757.03, "pop": 5818, "jobs": 0}}, "edges": [{"u": 37923758, "v": 445963180, "oneway": false, "points": [[-1878.44, 78.89], [-1869.51, 75.01], [-1856.64, 70.9], [-1845.72, 67.51], [-1835.07, 65.1], [-1821.41, 63.33], [-1807.63, 62.46], [-1784.58, 62.38], [-1770.63, 60.97], [-1753.02, 58.23], [-1730.46, 54.94], [-1713.83, 53.47], [-1703.72, 53.02], [-1693.73, 53.03], [-1684.58, 54.42], [-1675.7, 57.55], [-1655.57, 67.85], [-1647.0, 72.34], [-1637.61, 76.5], [-1628.94, 80.6], [-1621.6, 83.84], [-1615.48, 88.79], [-1607.96, 95.99], [-1598.39, 107.29], [-1589.85, 118.71], [-1585.44, 126.87], [-1580.92, 135.25], [-1578.49, 139.56], [-1575.74, 143.26], [-1571.92, 145.79], [-1568.33, 146.66], [-1566.13, 146.33], [-1563.28, 144.9], [-1561.22, 142.94], [-1559.5, 139.07], [-1558.17, 133.52], [-1558.0, 126.27], [-1558.06, 119.2], [-1558.31, 109.4], [-1558.33, 104.07], [-1557.78, 99.67], [-1556.42, 96.21], [-1554.76, 94.47], [-1552.43, 93.04], [-1549.08, 91.7], [-1545.05, 91.19], [-1539.57, 90.85], [-1516.16, 89.74], [-1487.76, 88.32], [-1474.56, 87.7], [-1458.66, 86.64], [-1456.01, 86.57], [-1448.49, 86.26]], "length": 515.8}, {"u": 37923758, "v": 37924361, "oneway": false, "points": [[-1878.44, 78.89], [-1882.38, 67.81], [-1891.4, 39.02], [-1900.92, 10.87], [-1904.16, 2.44], [-1907.31, -8.43], [-1908.82, -17.03], [-1909.18, -30.28]], "length": 113.98}, {"u": 37923758, "v": 53413603, "oneway": false, "points": [[-1878.44, 78.89], [-1887.52, 84.97], [-1897.0, 92.14], [-1909.67, 101.59], [-1922.68, 111.37], [-1929.55, 116.54], [-1936.03, 120.75], [-1944.03, 125.04], [-1954.41, 129.12], [-1961.61, 131.09], [-1969.38, 132.67], [-1977.32, 133.72], [-1991.97, 135.33], [-2011.46, 136.89], [-2022.49, 137.7], [-2032.96, 138.24], [-2043.49, 138.35], [-2055.52, 138.55], [-2069.47, 138.3], [-2098.07, 136.35], [-2119.97, 134.61], [-2136.82, 134.0], [-2157.51, 134.13], [-2167.94, 134.74], [-2178.99, 135.88], [-2194.63, 138.48], [-2209.29, 141.25], [-2233.34, 148.04], [-2255.89, 154.6], [-2274.32, 159.01], [-2284.75, 160.25], [-2303.64, 161.02], [-2315.61, 159.62], [-2323.29, 157.99], [-2333.92, 155.31], [-2341.07, 152.81], [-2350.46, 149.05], [-2369.06, 139.56], [-2375.85, 136.82], [-2389.13, 133.44], [-2396.18, 132.89], [-2423.52, 133.54], [-2433.02, 133.81]], "length": 578.93}, {"u": 37924361, "v": 37923758, "oneway": false, "points": [[-1909.18, -30.28], [-1908.82, -17.03], [-1907.31, -8.43], [-1904.16, 2.44], [-1900.92, 10.87], [-1891.4, 39.02], [-1882.38, 67.81], [-1878.44, 78.89]], "length": 113.98}, {"u": 37924361, "v": 53486800, "oneway": false, "points": [[-1909.18, -30.28], [-1919.75, -29.91], [-2002.0, -26.43], [-2005.86, -26.28], [-2026.35, -25.42], [-2098.89, -22.38], [-2109.37, -21.95], [-2182.92, -18.87]], "length": 273.98}, {"u": 37924361, "v": 53461749, "oneway": false, "points": [[-1909.18, -30.28], [-1909.66, -46.86], [-1909.75, -49.59], [-1910.65, -80.35], [-1911.7, -116.02], [-1911.96, -125.43], [-1912.02, -126.81], [-1913.69, -183.45], [-1913.43, -188.65], [-1912.84, -193.86], [-1912.04, -199.22], [-1909.04, -208.15], [-1908.77, -208.89], [-1908.24, -210.96], [-1904.08, -220.62], [-1902.37, -224.77]], "length": 196.46}, {"u": 53288573, "v": 53288575, "oneway": false, "points": [[-106.68, -3040.11], [-73.43, -3076.92]], "length": 49.6}, {"u": 53288573, "v": 847061279, "oneway": false, "points": [[-106.68, -3040.11], [-71.56, -3019.52]], "length": 40.72}, {"u": 53288575, "v": 53288573, "oneway": false, "points": [[-73.43, -3076.92], [-106.68, -3040.11]], "length": 49.6}, {"u": 53288575, "v": 847061279, "oneway": false, "points": [[-73.43, -3076.92], [-71.56, -3019.52]], "length": 57.44}, {"u": 53288575, "v": 53624470, "oneway": false, "points": [[-73.43, -3076.92], [-73.38, -3092.15]], "length": 15.23}, {"u": 53290647, "v": 496686159, "oneway": false, "points": [[1445.95, 2500.52], [1449.93, 2508.01], [1453.21, 2514.69], [1456.19, 2519.17], [1458.03, 2521.0], [1460.07, 2521.17], [1502.78, 2507.74], [1517.33, 2503.95], [1521.46, 2502.87], [1543.92, 2496.62], [1576.3, 2487.59], [1585.0, 2486.66], [1594.13, 2485.69]], "length": 164.88}, {"u": 53311057, "v": 53311058, "oneway": false, "points": [[-2990.2, -638.55], [-2990.81, -625.76], [-2991.17, -618.29]], "length": 20.28}, {"u": 53311057, "v": 53572824, "oneway": false, "points": [[-2990.2, -638.55], [-3003.29, -628.95], [-3008.93, -625.52], [-3012.9, -623.11], [-3019.28, -616.93]], "length": 36.36}, {"u": 53311057, "v": 2298789025, "oneway": false, "points": [[-2990.2, -638.55], [-2978.57, -645.11], [-2969.97, -651.92], [-2963.89, -658.54], [-2958.1, -666.82], [-2953.19, -677.74], [-2949.75, -694.07], [-2950.0, -702.49], [-2950.17, -710.73]], "length": 88.74}, {"u": 53311058, "v": 53578687, "oneway": false, "points": [[-2991.17, -618.29], [-2986.36, -618.39]], "length": 4.81}, {"u": 53311058, "v": 53311057, "oneway": false, "points": [[-2991.17, -618.29], [-2990.81, -625.76], [-2990.2, -638.55]], "length": 20.28}, {"u": 53311058, "v": 53572824, "oneway": false, "points": [[-2991.17, -618.29], [-2995.73, -618.38], [-3019.28, -616.93]], "length": 28.16}, {"u": 53326149, "v": 53525132, "oneway": false, "points": [[-24.2, -42.33], [-11.9, -31.77], [16.74, -5.51], [28.96, 5.74], [48.74, 23.57], [56.49, 30.24]], "length": 108.53}, {"u": 53326149, "v": 53538820, "oneway": true, "points": [[-24.2, -42.33], [-33.3, -32.85], [-97.88, 37.98], [-99.17, 38.48], [-102.16, 39.85], [-106.74, 40.67]], "length": 118.33}, {"u": 53332729, "v": 53539161, "oneway": false, "points": [[-32.47, -216.61], [-22.42, -227.7], [7.91, -261.2], [34.17, -290.2], [40.19, -296.85]], "length": 108.25}, {"u": 53332729, "v": 53408558, "oneway": true, "points": [[-32.47, -216.61], [-24.15, -208.56], [48.13, -144.19], [49.67, -140.28], [50.62, -136.29], [51.04, -132.91]], "length": 120.07}, {"u": 53332734, "v": 53444038, "oneway": true, "points": [[-206.46, -208.28], [-198.33, -216.76], [-158.96, -260.75], [-145.05, -275.67], [-133.72, -287.81], [-128.74, -290.65], [-123.14, -291.89]], "length": 119.26}, {"u": 53332734, "v": 53615252, "oneway": false, "points": [[-206.46, -208.28], [-219.33, -219.97], [-236.6, -235.67], [-261.44, -258.23], [-280.49, -275.63], [-287.35, -281.9]], "length": 109.38}, {"u": 53370932, "v": 53370937, "oneway": false, "points": [[-2945.7, -8.0], [-2946.45, -23.05], [-2947.76, -56.48], [-2948.09, -74.92], [-2948.16, -78.49], [-2948.19, -80.46]], "length": 72.51}, {"u": 53370932, "v": 53486863, "oneway": false, "points": [[-2945.7, -8.0], [-2945.37, -1.88], [-2944.95, 6.2], [-2944.76, 11.17], [-2943.95, 32.64], [-2943.57, 42.48], [-2943.35, 49.71]], "length": 57.76}, {"u": 53370932, "v": 53677752, "oneway": false, "points": [[-2945.7, -8.0], [-2912.15, -9.61], [-2888.46, -10.92], [-2865.37, -10.59], [-2815.24, -11.52], [-2810.27, -9.07], [-2808.57, -7.57], [-2802.88, -3.02]], "length": 145.63}, {"u": 53370937, "v": 53370932, "oneway": false, "points": [[-2948.19, -80.46], [-2948.16, -78.49], [-2948.09, -74.92], [-2947.76, -56.48], [-2946.45, -23.05], [-2945.7, -8.0]], "length": 72.51}, {"u": 53385421, "v": 387096443, "oneway": true, "points": [[-198.19, -33.99], [-207.87, -43.15], [-280.11, -107.02]], "length": 109.74}, {"u": 53385421, "v": 1423974459, "oneway": false, "points": [[-198.19, -33.99], [-210.08, -21.75], [-214.28, -17.34]], "length": 23.16}, {"u": 53407742, "v": 53407747, "oneway": false, "points": [[2039.82, 1687.8], [2045.6, 1693.44], [2221.12, 1864.75], [2227.9, 1871.36]], "length": 262.8}, {"u": 53407742, "v": 3786903332, "oneway": false, "points": [[2039.82, 1687.8], [2043.73, 1683.55], [2048.79, 1677.65], [2052.36, 1673.41], [2054.07, 1671.29]], "length": 21.82}, {"u": 53407742, "v": 2384881594, "oneway": true, "points": [[2039.82, 1687.8], [2035.44, 1695.9], [2034.31, 1698.0], [1982.91, 1752.84], [1980.84, 1755.18], [1972.06, 1764.42]], "length": 102.62}, {"u": 53407747, "v": 53407767, "oneway": false, "points": [[2227.9, 1871.36], [2234.6, 1877.83], [2279.15, 1931.57], [2304.19, 1959.12], [2337.84, 1999.85], [2362.1, 2028.52], [2442.17, 2126.47], [2447.8, 2133.36]], "length": 342.15}, {"u": 53407747, "v": 53407742, "oneway": false, "points": [[2227.9, 1871.36], [2221.12, 1864.75], [2045.6, 1693.44], [2039.82, 1687.8]], "length": 262.8}, {"u": 53407747, "v": 53503712, "oneway": false, "points": [[2227.9, 1871.36], [2233.86, 1865.07], [2245.32, 1853.0], [2249.4, 1848.77], [2278.56, 1817.8], [2287.79, 1808.76], [2300.98, 1795.84], [2306.32, 1790.61], [2307.65, 1789.31], [2309.42, 1787.85], [2318.03, 1783.5], [2325.39, 1779.62]], "length": 134.71}, {"u": 53407747, "v": 449952494, "oneway": false, "points": [[2227.9, 1871.36], [2223.34, 1876.02], [2166.31, 1934.53], [2160.36, 1940.62]], "length": 96.74}, {"u": 53407767, "v": 53407747, "oneway": false, "points": [[2447.8, 2133.36], [2442.17, 2126.47], [2362.1, 2028.52], [2337.84, 1999.85], [2304.19, 1959.12], [2279.15, 1931.57], [2234.6, 1877.83], [2227.9, 1871.36]], "length": 342.15}, {"u": 53407767, "v": 53636377, "oneway": false, "points": [[2447.8, 2133.36], [2461.13, 2120.87], [2462.71, 2119.05], [2483.33, 2096.13], [2502.09, 2079.87], [2508.77, 2074.08]], "length": 85.18}, {"u": 53407767, "v": 449952498, "oneway": false, "points": [[2447.8, 2133.36], [2435.84, 2145.62], [2411.56, 2170.55], [2404.88, 2177.4]], "length": 61.49}, {"u": 53407902, "v": 53426174, "oneway": true, "points": [[85.4, -135.19], [84.76, -141.67], [84.35, -153.18], [84.58, -155.05], [85.79, -156.8], [127.41, -202.42], [129.21, -204.38], [138.27, -209.53]], "length": 96.88}, {"u": 53407902, "v": 53539171, "oneway": false, "points": [[85.4, -135.19], [94.14, -135.7], [163.73, -139.3], [187.7, -140.5], [201.01, -141.17]], "length": 115.76}, {"u": 53407902, "v": 53408558, "oneway": false, "points": [[85.4, -135.19], [74.85, -134.54], [68.51, -134.14], [51.04, -132.91]], "length": 34.44}, {"u": 53407911, "v": 53525132, "oneway": true, "points": [[142.37, -64.16], [137.79, -59.16], [110.62, -29.52], [68.33, 16.54], [56.49, 30.24]], "length": 127.63}, {"u": 53407911, "v": 53407902, "oneway": true, "points": [[142.37, -64.16], [134.83, -70.85], [111.86, -91.13], [96.06, -105.29], [91.41, -109.91], [87.74, -113.62], [86.68, -115.74], [85.89, -127.44], [85.4, -135.19]], "length": 95.57}, {"u": 53407911, "v": 53407922, "oneway": false, "points": [[142.37, -64.16], [150.02, -57.5], [209.87, -5.38], [217.65, 1.39]], "length": 99.81}, {"u": 53407922, "v": 53483529, "oneway": false, "points": [[217.65, 1.39], [224.36, -5.88], [266.35, -51.37], [268.24, -53.42], [281.29, -67.52], [295.6, -83.0], [301.0, -88.86], [313.83, -102.51], [320.56, -110.14], [325.47, -115.53], [339.7, -130.89], [342.31, -134.82], [344.24, -137.74], [347.63, -145.45]], "length": 196.63}, {"u": 53407922, "v": 845773212, "oneway": false, "points": [[217.65, 1.39], [211.94, 7.68], [177.76, 46.03], [165.44, 59.46], [162.18, 63.02], [144.88, 82.54], [143.22, 84.33], [137.01, 90.9]], "length": 120.47}, {"u": 53407922, "v": 53407926, "oneway": false, "points": [[217.65, 1.39], [224.53, 7.52], [245.53, 26.19], [263.21, 41.92], [265.1, 43.6], [286.25, 62.41], [293.3, 68.68]], "length": 101.25}, {"u": 53407922, "v": 53407911, "oneway": false, "points": [[217.65, 1.39], [209.87, -5.38], [150.02, -57.5], [142.37, -64.16]], "length": 99.81}, {"u": 53407926, "v": 1425249983, "oneway": true, "points": [[293.3, 68.68], [298.56, 62.87], [313.76, 46.26], [319.68, 39.63], [321.5, 37.61], [334.11, 23.62], [340.56, 16.45], [347.46, 8.5], [368.21, -14.24], [369.1, -15.22], [405.09, -54.65], [406.03, -55.68], [408.18, -57.8], [408.9, -58.61], [421.27, -72.24], [425.59, -76.96]], "length": 196.76}, {"u": 53407926, "v": 53407932, "oneway": false, "points": [[293.3, 68.68], [299.4, 74.46], [345.49, 116.7], [352.5, 122.99]], "length": 80.35}, {"u": 53407926, "v": 53407922, "oneway": false, "points": [[293.3, 68.68], [286.25, 62.41], [265.1, 43.6], [263.21, 41.92], [245.53, 26.19], [224.53, 7.52], [217.65, 1.39]], "length": 101.25}, {"u": 53407932, "v": 845773215, "oneway": true, "points": [[352.5, 122.99], [345.95, 129.66], [336.96, 139.32], [326.97, 150.43], [316.75, 161.82], [310.17, 169.12], [279.45, 203.28], [277.5, 205.44], [270.51, 213.31]], "length": 122.0}, {"u": 53407932, "v": 53407941, "oneway": false, "points": [[352.5, 122.99], [359.29, 129.34], [389.52, 156.81], [395.96, 162.71], [399.87, 166.27], [403.77, 169.77], [418.21, 182.97], [420.03, 185.0], [426.75, 191.8]], "length": 101.25}, {"u": 53407932, "v": 53407926, "oneway": false, "points": [[352.5, 122.99], [345.49, 116.7], [299.4, 74.46], [293.3, 68.68]], "length": 80.35}, {"u": 53407941, "v": 53616146, "oneway": false, "points": [[426.75, 191.8], [433.89, 183.5], [457.94, 157.37], [482.19, 130.6], [488.83, 123.38], [494.71, 117.02]], "length": 101.05}, {"u": 53407941, "v": 1192211510, "oneway": false, "points": [[426.75, 191.8], [421.72, 198.18], [400.45, 221.64], [394.96, 227.88], [393.85, 229.07], [386.94, 237.45]], "length": 60.59}, {"u": 53407941, "v": 2713292536, "oneway": false, "points": [[426.75, 191.8], [433.26, 198.16], [435.57, 200.34], [455.76, 218.46], [457.94, 220.35], [465.02, 226.76], [467.62, 229.04], [501.21, 258.98], [534.63, 289.69], [569.57, 320.6], [576.83, 327.33]], "length": 202.24}, {"u": 53407941, "v": 53407932, "oneway": false, "points": [[426.75, 191.8], [420.03, 185.0], [418.21, 182.97], [403.77, 169.77], [399.87, 166.27], [395.96, 162.71], [389.52, 156.81], [359.29, 129.34], [352.5, 122.99]], "length": 101.25}, {"u": 53407975, "v": 2948601585, "oneway": false, "points": [[874.56, 598.55], [880.87, 604.2], [928.79, 647.71], [955.84, 671.7], [958.54, 674.09], [1017.7, 726.56], [1024.99, 733.02]], "length": 201.77}, {"u": 53407975, "v": 1142903857, "oneway": false, "points": [[874.56, 598.55], [867.61, 592.25], [840.41, 567.6], [829.25, 557.48], [800.66, 531.98], [786.51, 518.68], [783.64, 516.13], [731.63, 469.0], [724.58, 462.62]], "length": 202.41}, {"u": 53407975, "v": 53445464, "oneway": false, "points": [[874.56, 598.55], [882.25, 590.1], [906.98, 562.89], [935.42, 531.6], [936.65, 530.21], [945.91, 520.07], [949.19, 516.45], [974.16, 488.98], [994.49, 466.63], [998.02, 462.73], [1009.87, 449.7], [1037.72, 419.06], [1049.03, 406.63], [1071.73, 381.64], [1077.54, 375.27]], "length": 301.76}, {"u": 53407975, "v": 366215899, "oneway": false, "points": [[874.56, 598.55], [869.79, 603.79], [842.4, 633.92], [838.33, 638.41], [802.81, 677.48], [800.72, 679.78], [791.64, 689.77]], "length": 123.28}, {"u": 53408000, "v": 2948595076, "oneway": false, "points": [[1174.0, 867.88], [1178.25, 863.18], [1203.82, 834.89], [1217.09, 820.19], [1236.39, 798.83], [1239.37, 795.53], [1241.87, 792.77], [1250.27, 783.49], [1285.5, 744.47], [1288.2, 741.48], [1296.56, 732.23], [1300.28, 728.12], [1302.77, 725.36], [1309.22, 718.22]], "length": 201.7}, {"u": 53408000, "v": 366215913, "oneway": false, "points": [[1174.0, 867.88], [1167.56, 875.01], [1152.86, 891.29], [1143.63, 900.83], [1133.77, 911.97], [1099.57, 950.58], [1090.49, 960.84]], "length": 124.97}, {"u": 53408000, "v": 2948601585, "oneway": false, "points": [[1174.0, 867.88], [1167.79, 862.25], [1165.45, 860.12], [1121.37, 820.24], [1105.71, 806.07], [1094.36, 795.8], [1030.76, 738.25], [1024.99, 733.02]], "length": 200.98}, {"u": 53408480, "v": 53408487, "oneway": false, "points": [[1595.34, 1249.63], [1597.84, 1251.9], [1612.55, 1265.66], [1614.53, 1267.52], [1621.1, 1273.67]], "length": 35.23}, {"u": 53408487, "v": 53408490, "oneway": false, "points": [[1621.1, 1273.67], [1627.79, 1279.75], [1629.85, 1281.61], [1655.72, 1305.08], [1686.88, 1333.34], [1715.58, 1359.37], [1724.52, 1367.47]], "length": 139.62}, {"u": 53408487, "v": 53408480, "oneway": false, "points": [[1621.1, 1273.67], [1614.53, 1267.52], [1612.55, 1265.66], [1597.84, 1251.9], [1595.34, 1249.63]], "length": 35.23}, {"u": 53408487, "v": 53560776, "oneway": false, "points": [[1621.1, 1273.67], [1626.48, 1267.74], [1639.96, 1252.9], [1662.43, 1228.18]], "length": 61.46}, {"u": 53408487, "v": 53560766, "oneway": false, "points": [[1621.1, 1273.67], [1614.33, 1281.17], [1608.45, 1287.69], [1607.08, 1289.21], [1578.35, 1321.04], [1573.38, 1326.55], [1570.18, 1330.02], [1565.2, 1335.43], [1548.39, 1353.69], [1546.49, 1355.66], [1538.95, 1363.92]], "length": 122.04}, {"u": 53408490, "v": 53408525, "oneway": false, "points": [[1724.52, 1367.47], [1772.81, 1412.34], [1799.47, 1437.12], [1800.75, 1438.3], [1802.24, 1439.92], [1806.86, 1443.83], [1820.76, 1456.63], [1844.37, 1478.63], [1853.7, 1486.36], [1869.16, 1500.03]], "length": 196.23}, {"u": 53408490, "v": 53408487, "oneway": false, "points": [[1724.52, 1367.47], [1715.58, 1359.37], [1686.88, 1333.34], [1655.72, 1305.08], [1629.85, 1281.61], [1627.79, 1279.75], [1621.1, 1273.67]], "length": 139.62}, {"u": 53408490, "v": 53560776, "oneway": false, "points": [[1724.52, 1367.47], [1728.58, 1362.91], [1732.03, 1359.05], [1741.1, 1348.89], [1753.24, 1334.54], [1754.59, 1329.43], [1755.89, 1324.46], [1754.79, 1317.27], [1751.36, 1311.25], [1745.24, 1304.87], [1724.35, 1285.43], [1718.21, 1279.73], [1695.76, 1258.98], [1668.81, 1234.08], [1662.43, 1228.18]], "length": 190.04}, {"u": 53408525, "v": 3786903332, "oneway": false, "points": [[1869.16, 1500.03], [2047.86, 1664.23], [2054.07, 1671.29]], "length": 252.09}, {"u": 53408525, "v": 53408490, "oneway": false, "points": [[1869.16, 1500.03], [1853.7, 1486.36], [1844.37, 1478.63], [1820.76, 1456.63], [1806.86, 1443.83], [1802.24, 1439.92], [1800.75, 1438.3], [1799.47, 1437.12], [1772.81, 1412.34], [1724.52, 1367.47]], "length": 196.23}, {"u": 53408525, "v": 2713311875, "oneway": false, "points": [[1869.16, 1500.03], [1875.48, 1494.36], [1912.67, 1464.18]], "length": 56.38}, {"u": 53408558, "v": 53326149, "oneway": true, "points": [[51.04, -132.91], [50.81, -128.68], [49.95, -125.4], [48.21, -122.91], [-16.02, -51.74], [-24.2, -42.33]], "length": 118.99}, {"u": 53408558, "v": 53407902, "oneway": false, "points": [[51.04, -132.91], [68.51, -134.14], [74.85, -134.54], [85.4, -135.19]], "length": 34.44}, {"u": 53413603, "v": 53486814, "oneway": false, "points": [[-2433.02, 133.81], [-2433.28, 125.64], [-2433.48, 119.29], [-2433.62, 115.12], [-2439.48, 0.78], [-2439.94, -8.1]], "length": 142.08}, {"u": 53413603, "v": 53580606, "oneway": false, "points": [[-2433.02, 133.81], [-2432.5, 142.38], [-2432.0, 150.79], [-2431.28, 168.81], [-2430.8, 182.64], [-2429.22, 210.99], [-2428.35, 231.88], [-2427.66, 248.2]], "length": 114.53}, {"u": 53413603, "v": 53413619, "oneway": false, "points": [[-2433.02, 133.81], [-2443.32, 134.49], [-2462.42, 135.29], [-2573.79, 139.89], [-2580.83, 140.08], [-2684.97, 144.33], [-2695.43, 144.53]], "length": 262.64}, {"u": 53413603, "v": 37923758, "oneway": false, "points": [[-2433.02, 133.81], [-2423.52, 133.54], [-2396.18, 132.89], [-2389.13, 133.44], [-2375.85, 136.82], [-2369.06, 139.56], [-2350.46, 149.05], [-2341.07, 152.81], [-2333.92, 155.31], [-2323.29, 157.99], [-2315.61, 159.62], [-2303.64, 161.02], [-2284.75, 160.25], [-2274.32, 159.01], [-2255.89, 154.6], [-2233.34, 148.04], [-2209.29, 141.25], [-2194.63, 138.48], [-2178.99, 135.88], [-2167.94, 134.74], [-2157.51, 134.13], [-2136.82, 134.0], [-2119.97, 134.61], [-2098.07, 136.35], [-2069.47, 138.3], [-2055.52, 138.55], [-2043.49, 138.35], [-2032.96, 138.24], [-2022.49, 137.7], [-2011.46, 136.89], [-1991.97, 135.33], [-1977.32, 133.72], [-1969.38, 132.67], [-1961.61, 131.09], [-1954.41, 129.12], [-1944.03, 125.04], [-1936.03, 120.75], [-1929.55, 116.54], [-1922.68, 111.37], [-1909.67, 101.59], [-1897.0, 92.14], [-1887.52, 84.97], [-1878.44, 78.89]], "length": 578.93}, {"u": 53413619, "v": 53438915, "oneway": false, "points": [[-2695.43, 144.53], [-2695.68, 135.16], [-2697.97, 83.33], [-2697.58, 76.15], [-2696.56, 68.07], [-2695.3, 62.98], [-2692.52, 55.26]], "length": 90.04}, {"u": 53413619, "v": 1850006061, "oneway": false, "points": [[-2695.43, 144.53], [-2705.62, 144.9], [-2743.46, 146.48], [-2894.65, 152.81], [-2897.01, 152.91], [-2902.11, 153.12]], "length": 206.86}, {"u": 53413619, "v": 53413603, "oneway": false, "points": [[-2695.43, 144.53], [-2684.97, 144.33], [-2580.83, 140.08], [-2573.79, 139.89], [-2462.42, 135.29], [-2443.32, 134.49], [-2433.02, 133.81]], "length": 262.64}, {"u": 53413619, "v": 4055610627, "oneway": false, "points": [[-2695.43, 144.53], [-2695.23, 152.77], [-2691.33, 247.44], [-2690.92, 256.55], [-2690.24, 282.96], [-2690.26, 290.0], [-2690.29, 303.88], [-2695.46, 315.68], [-2697.78, 320.0], [-2709.25, 338.19]], "length": 198.74}, {"u": 53414098, "v": 845773212, "oneway": false, "points": [[124.59, 104.01], [137.01, 90.9]], "length": 18.07}, {"u": 53414098, "v": 2859245549, "oneway": false, "points": [[124.59, 104.01], [117.26, 112.19], [115.57, 114.0], [108.57, 121.76], [97.02, 134.56], [90.11, 142.21], [71.35, 163.01], [65.54, 169.45], [61.54, 173.88], [49.39, 187.35], [47.71, 189.21], [42.6, 194.87]], "length": 122.38}, {"u": 53414098, "v": 53525132, "oneway": true, "points": [[124.59, 104.01], [118.03, 98.18], [57.57, 41.58], [56.53, 37.02], [56.49, 30.24]], "length": 103.05}, {"u": 53416322, "v": 2705151904, "oneway": false, "points": [[560.33, 1073.04], [554.76, 1079.24], [551.95, 1082.36], [538.91, 1096.87], [495.43, 1145.24], [486.21, 1155.48], [484.65, 1156.66], [482.75, 1157.13], [480.82, 1156.87], [479.07, 1155.8], [459.94, 1138.74]], "length": 144.4}, {"u": 53416322, "v": 1699123266, "oneway": true, "points": [[560.33, 1073.04], [555.15, 1068.52], [541.3, 1055.64], [526.81, 1043.08], [511.35, 1029.68], [501.85, 1021.45], [494.9, 1015.45]], "length": 87.18}, {"u": 53416782, "v": 53416784, "oneway": false, "points": [[-1066.53, -2054.55], [-1066.88, -2061.26], [-1072.15, -2155.1], [-1072.69, -2164.74]], "length": 110.36}, {"u": 53416782, "v": 53444545, "oneway": false, "points": [[-1066.53, -2054.55], [-1096.76, -2057.02], [-1160.44, -2066.54], [-1200.06, -2069.74], [-1207.72, -2069.75], [-1225.39, -2066.35], [-1240.49, -2061.36], [-1249.39, -2056.33], [-1258.9, -2049.5], [-1268.46, -2041.78], [-1280.79, -2027.98]], "length": 228.75}, {"u": 53416782, "v": 53470168, "oneway": false, "points": [[-1066.53, -2054.55], [-1047.01, -2053.22], [-1028.14, -2054.42], [-1001.11, -2061.09], [-981.31, -2067.21], [-957.33, -2072.12]], "length": 111.52}, {"u": 53416784, "v": 53416786, "oneway": false, "points": [[-1072.69, -2164.74], [-1073.09, -2173.17], [-1075.34, -2221.69], [-1077.67, -2270.46], [-1078.08, -2279.29]], "length": 114.68}, {"u": 53416784, "v": 53416782, "oneway": false, "points": [[-1072.69, -2164.74], [-1072.15, -2155.1], [-1066.88, -2061.26], [-1066.53, -2054.55]], "length": 110.36}, {"u": 53416784, "v": 1180187483, "oneway": false, "points": [[-1072.69, -2164.74], [-1081.48, -2164.23], [-1243.56, -2154.64], [-1253.08, -2154.3], [-1282.87, -2153.21], [-1286.09, -2153.1], [-1292.03, -2152.89], [-1297.92, -2152.67], [-1300.93, -2152.56], [-1309.48, -2152.25]], "length": 237.13}, {"u": 53416784, "v": 53470169, "oneway": false, "points": [[-1072.69, -2164.74], [-1063.55, -2165.08], [-1022.78, -2166.61], [-970.04, -2169.73], [-961.5, -2170.24]], "length": 111.34}, {"u": 53416786, "v": 53470170, "oneway": false, "points": [[-1078.08, -2279.29], [-966.36, -2284.61]], "length": 111.85}, {"u": 53416786, "v": 53416788, "oneway": false, "points": [[-1078.08, -2279.29], [-1079.51, -2334.87], [-1080.88, -2382.87], [-1080.96, -2385.5], [-1081.21, -2394.37]], "length": 115.12}, {"u": 53416786, "v": 53416784, "oneway": false, "points": [[-1078.08, -2279.29], [-1077.67, -2270.46], [-1075.34, -2221.69], [-1073.09, -2173.17], [-1072.69, -2164.74]], "length": 114.68}, {"u": 53416786, "v": 1180187507, "oneway": false, "points": [[-1078.08, -2279.29], [-1184.63, -2274.25], [-1223.36, -2272.66], [-1231.27, -2273.37], [-1233.35, -2273.56], [-1240.42, -2274.19]], "length": 162.56}, {"u": 53416788, "v": 53416786, "oneway": false, "points": [[-1081.21, -2394.37], [-1080.96, -2385.5], [-1080.88, -2382.87], [-1079.51, -2334.87], [-1078.08, -2279.29]], "length": 115.12}, {"u": 53416788, "v": 1180187456, "oneway": false, "points": [[-1081.21, -2394.37], [-1092.55, -2393.42], [-1125.77, -2390.6], [-1130.83, -2390.17], [-1141.51, -2389.74], [-1154.1, -2390.29], [-1158.54, -2390.49], [-1167.5, -2390.88], [-1174.11, -2391.16]], "length": 93.12}, {"u": 53416788, "v": 53470173, "oneway": false, "points": [[-1081.21, -2394.37], [-1074.66, -2394.69], [-971.25, -2399.72]], "length": 110.09}, {"u": 53417779, "v": 53417781, "oneway": false, "points": [[-821.42, 250.21], [-864.25, 213.23], [-868.52, 209.54]], "length": 62.23}, {"u": 53417781, "v": 53521446, "oneway": false, "points": [[-868.52, 209.54], [-847.93, 186.66]], "length": 30.78}, {"u": 53417781, "v": 53417779, "oneway": false, "points": [[-868.52, 209.54], [-864.25, 213.23], [-821.42, 250.21]], "length": 62.23}, {"u": 53417781, "v": 53591804, "oneway": false, "points": [[-868.52, 209.54], [-872.95, 214.46], [-875.68, 217.49]], "length": 10.7}, {"u": 53421608, "v": 53421612, "oneway": false, "points": [[-2800.81, -967.67], [-2801.36, -1004.2]], "length": 36.53}, {"u": 53421608, "v": 53428597, "oneway": false, "points": [[-2800.81, -967.67], [-2795.37, -967.74], [-2793.73, -967.77], [-2713.96, -968.98], [-2706.53, -969.09]], "length": 94.3}, {"u": 53421608, "v": 13009756501, "oneway": false, "points": [[-2800.81, -967.67], [-2800.14, -946.16], [-2799.46, -921.19], [-2798.97, -902.92], [-2798.56, -870.04]], "length": 97.65}, {"u": 53421612, "v": 53421608, "oneway": false, "points": [[-2801.36, -1004.2], [-2800.81, -967.67]], "length": 36.53}, {"u": 53421612, "v": 53549949, "oneway": false, "points": [[-2801.36, -1004.2], [-2809.14, -1003.96], [-2812.44, -1003.87], [-2866.88, -1002.23], [-2885.4, -1002.92], [-2905.91, -1004.77], [-2954.88, -1010.25], [-2965.85, -1012.34], [-2970.3, -1014.11], [-2978.64, -1020.24]], "length": 180.26}, {"u": 53421612, "v": 53421621, "oneway": false, "points": [[-2801.36, -1004.2], [-2801.43, -1012.39], [-2801.64, -1028.22], [-2801.6, -1033.24], [-2802.6, -1063.96], [-2802.02, -1067.42], [-2800.56, -1072.55]], "length": 68.63}, {"u": 53421621, "v": 53610868, "oneway": false, "points": [[-2800.56, -1072.55], [-2808.11, -1073.67], [-2811.47, -1074.37], [-2816.32, -1075.54], [-2821.29, -1076.47], [-2824.05, -1076.7], [-2827.18, -1076.65], [-2838.84, -1076.48], [-2845.97, -1076.31], [-2865.31, -1075.81], [-2868.87, -1075.74], [-2887.88, -1075.46], [-2890.67, -1075.6], [-2893.12, -1075.84], [-2895.67, -1076.24], [-2898.24, -1076.77], [-2900.61, -1077.48], [-2903.37, -1078.55], [-2909.03, -1081.35], [-2914.45, -1085.33], [-2921.17, -1091.33]], "length": 125.66}, {"u": 53421621, "v": 53462374, "oneway": false, "points": [[-2800.56, -1072.55], [-2797.25, -1072.54], [-2794.35, -1073.02], [-2778.94, -1076.88], [-2770.21, -1081.71]], "length": 32.11}, {"u": 53421621, "v": 53421612, "oneway": false, "points": [[-2800.56, -1072.55], [-2802.02, -1067.42], [-2802.6, -1063.96], [-2801.6, -1033.24], [-2801.64, -1028.22], [-2801.43, -1012.39], [-2801.36, -1004.2]], "length": 68.63}, {"u": 53421750, "v": 316357431, "oneway": true, "points": [[-1044.66, -955.81], [-1030.43, -962.85]], "length": 15.88}, {"u": 53421750, "v": 1180102573, "oneway": true, "points": [[-1044.66, -955.81], [-1053.92, -963.07], [-1067.49, -975.54]], "length": 30.2}, {"u": 53423466, "v": 449907112, "oneway": false, "points": [[495.28, 416.7], [482.42, 431.67]], "length": 19.74}, {"u": 53423466, "v": 2713292536, "oneway": false, "points": [[495.28, 416.7], [500.91, 409.98], [503.31, 407.44], [532.59, 376.95], [534.95, 374.48], [536.11, 373.06], [539.56, 369.08], [568.62, 335.49], [570.23, 333.63], [576.83, 327.33]], "length": 121.05}, {"u": 53423466, "v": 13132340420, "oneway": true, "points": [[495.28, 416.7], [503.74, 423.57], [546.0, 462.64]], "length": 68.44}, {"u": 53423470, "v": 2713311960, "oneway": false, "points": [[632.63, 565.35], [625.58, 573.07], [569.64, 634.4], [555.54, 649.46], [550.84, 655.01]], "length": 121.37}, {"u": 53423470, "v": 449907112, "oneway": true, "points": [[632.63, 565.35], [568.24, 508.12], [535.11, 478.55], [489.81, 438.24], [482.42, 431.67]], "length": 201.08}, {"u": 53423501, "v": 2948594974, "oneway": true, "points": [[1230.22, 1106.69], [1222.85, 1100.11], [1186.28, 1067.32], [1169.92, 1052.67], [1155.85, 1040.05], [1124.38, 1011.85], [1109.05, 998.11], [1106.1, 995.47], [1087.72, 979.01], [1080.21, 972.28]], "length": 201.42}, {"u": 53423501, "v": 53430027, "oneway": false, "points": [[1230.22, 1106.69], [1223.23, 1114.08], [1220.46, 1117.01], [1200.65, 1137.95], [1198.5, 1140.23], [1187.34, 1152.02]], "length": 62.39}, {"u": 53423508, "v": 366215925, "oneway": false, "points": [[1376.98, 1243.59], [1389.05, 1229.73]], "length": 18.38}, {"u": 53423508, "v": 53536993, "oneway": false, "points": [[1376.98, 1243.59], [1371.58, 1249.6], [1368.61, 1252.92], [1352.76, 1270.59], [1303.47, 1325.77], [1296.4, 1333.68]], "length": 120.87}, {"u": 53423508, "v": 53423501, "oneway": true, "points": [[1376.98, 1243.59], [1368.21, 1234.97], [1340.5, 1209.24], [1283.02, 1155.63], [1236.77, 1112.5], [1230.22, 1106.69]], "length": 200.71}, {"u": 53423520, "v": 53560766, "oneway": false, "points": [[1528.24, 1376.2], [1538.95, 1363.92]], "length": 16.29}, {"u": 53423520, "v": 53538776, "oneway": false, "points": [[1528.24, 1376.2], [1520.38, 1384.69], [1516.78, 1388.58], [1499.2, 1407.57], [1451.13, 1459.9], [1443.57, 1467.68]], "length": 124.66}, {"u": 53423520, "v": 53423508, "oneway": true, "points": [[1528.24, 1376.2], [1519.36, 1368.41], [1476.89, 1331.19], [1469.12, 1324.41], [1422.55, 1283.56], [1396.9, 1261.05], [1388.25, 1253.49], [1385.69, 1251.23], [1376.98, 1243.59]], "length": 201.16}, {"u": 53423529, "v": 449934218, "oneway": false, "points": [[1674.59, 1510.31], [1666.7, 1517.75], [1652.6, 1531.06], [1642.75, 1540.34], [1637.17, 1544.38], [1630.99, 1548.85]], "length": 58.28}, {"u": 53423529, "v": 53423520, "oneway": true, "points": [[1674.59, 1510.31], [1633.37, 1472.94], [1609.07, 1450.9], [1588.32, 1432.09], [1584.56, 1428.68], [1580.28, 1424.7], [1538.53, 1385.79], [1528.24, 1376.2]], "length": 198.51}, {"u": 53423552, "v": 449952494, "oneway": false, "points": [[2147.0, 1954.15], [2160.36, 1940.62]], "length": 19.0}, {"u": 53423552, "v": 53570522, "oneway": false, "points": [[2147.0, 1954.15], [2139.26, 1962.4], [2125.79, 1976.46], [2104.78, 1999.18]], "length": 61.73}, {"u": 53423552, "v": 2384881601, "oneway": true, "points": [[2147.0, 1954.15], [2137.1, 1944.85], [2091.3, 1899.4], [1976.37, 1790.81], [1970.05, 1785.46], [1967.55, 1783.38], [1959.4, 1776.92]], "length": 258.16}, {"u": 53423556, "v": 53570527, "oneway": false, "points": [[2247.69, 2051.05], [2240.52, 2058.25], [2219.81, 2079.04], [2204.95, 2093.95]], "length": 60.56}, {"u": 53423556, "v": 53423552, "oneway": true, "points": [[2247.69, 2051.05], [2240.8, 2044.64], [2228.88, 2033.55], [2156.93, 1963.47], [2147.0, 1954.15]], "length": 139.75}, {"u": 53423565, "v": 449957352, "oneway": false, "points": [[2644.11, 2436.69], [2657.85, 2422.52]], "length": 19.74}, {"u": 53423565, "v": 1706427666, "oneway": true, "points": [[2644.11, 2436.69], [2636.84, 2429.53], [2581.83, 2375.38], [2568.53, 2362.68], [2529.74, 2325.59], [2521.54, 2317.8]], "length": 170.76}, {"u": 53423565, "v": 53538791, "oneway": false, "points": [[2644.11, 2436.69], [2637.27, 2444.47], [2564.75, 2517.83], [2558.51, 2524.18]], "length": 122.42}, {"u": 53423568, "v": 53529532, "oneway": false, "points": [[2774.37, 2558.68], [2765.37, 2568.03], [2748.37, 2585.68], [2733.55, 2601.06], [2693.78, 2642.38], [2688.26, 2648.1]], "length": 124.14}, {"u": 53423568, "v": 53423565, "oneway": true, "points": [[2774.37, 2558.68], [2767.3, 2552.04], [2724.39, 2511.65], [2713.94, 2502.38], [2694.72, 2484.08], [2691.21, 2480.74], [2660.54, 2452.35], [2651.43, 2443.64], [2644.11, 2436.69]], "length": 178.47}, {"u": 53423575, "v": 1706427647, "oneway": true, "points": [[2845.42, 2655.0], [2838.16, 2641.73]], "length": 15.12}, {"u": 53423575, "v": 53467195, "oneway": true, "points": [[2845.42, 2655.0], [2834.01, 2662.54], [2830.02, 2665.18], [2826.63, 2668.7], [2818.96, 2679.22]], "length": 36.38}, {"u": 53425693, "v": 5730487259, "oneway": false, "points": [[250.56, 383.27], [244.94, 378.1], [242.99, 376.31], [224.06, 358.92], [184.19, 322.31], [180.38, 319.03]], "length": 95.14}, {"u": 53425693, "v": 316334513, "oneway": true, "points": [[250.56, 383.27], [256.84, 376.55], [272.21, 360.15], [286.22, 344.53], [299.38, 329.86], [303.66, 325.09], [308.21, 320.03], [325.93, 299.9], [332.89, 292.5]], "length": 122.55}, {"u": 53425702, "v": 8729846828, "oneway": true, "points": [[116.59, 533.55], [122.17, 527.23], [150.49, 495.78], [169.4, 474.7], [177.67, 465.49], [183.68, 458.8]], "length": 100.44}, {"u": 53425702, "v": 53640831, "oneway": true, "points": [[116.59, 533.55], [123.47, 539.79], [150.88, 564.63], [221.55, 628.69], [258.77, 662.42], [266.02, 669.0]], "length": 201.68}, {"u": 53425702, "v": 3088209649, "oneway": false, "points": [[116.59, 533.55], [111.44, 539.29], [110.26, 540.61], [56.55, 600.45], [54.93, 602.26], [49.46, 608.05]], "length": 100.29}, {"u": 53426174, "v": 53539171, "oneway": true, "points": [[138.27, -209.53], [144.68, -203.75], [194.12, -158.97], [197.3, -154.78], [198.92, -151.21], [200.42, -145.85], [201.01, -141.17]], "length": 94.8}, {"u": 53426174, "v": 13091071866, "oneway": true, "points": [[138.27, -209.53], [139.93, -217.97], [153.78, -234.67], [166.9, -248.5], [175.86, -258.18], [186.73, -264.0]], "length": 74.88}, {"u": 53426175, "v": 53515084, "oneway": true, "points": [[203.48, -281.13], [195.62, -287.77], [173.49, -307.98], [168.13, -313.1], [160.33, -320.24], [150.71, -329.04], [141.16, -338.24], [121.77, -356.8], [120.65, -357.8], [116.86, -360.69], [106.39, -369.72]], "length": 131.48}, {"u": 53426175, "v": 366220625, "oneway": false, "points": [[203.48, -281.13], [209.16, -286.13], [211.64, -288.81], [213.02, -290.29], [226.76, -305.07], [239.33, -318.61]], "length": 51.9}, {"u": 53426175, "v": 13091071866, "oneway": false, "points": [[203.48, -281.13], [198.08, -276.49], [186.73, -264.0]], "length": 23.99}, {"u": 53426575, "v": 53426577, "oneway": false, "points": [[-156.08, -2201.86], [-156.43, -2210.71], [-163.47, -2387.84], [-163.82, -2396.59]], "length": 194.88}, {"u": 53426575, "v": 53573861, "oneway": false, "points": [[-156.08, -2201.86], [-117.21, -2203.38], [-112.45, -2203.56], [-87.63, -2204.53], [-54.23, -2205.83]], "length": 101.93}, {"u": 53426575, "v": 53551342, "oneway": false, "points": [[-156.08, -2201.86], [-186.9, -2200.53], [-193.37, -2200.25]], "length": 37.32}, {"u": 53426577, "v": 316562664, "oneway": false, "points": [[-163.82, -2396.59], [-168.43, -2507.38], [-169.94, -2513.54], [-172.21, -2522.82]], "length": 126.79}, {"u": 53426577, "v": 53426575, "oneway": false, "points": [[-163.82, -2396.59], [-163.47, -2387.84], [-156.43, -2210.71], [-156.08, -2201.86]], "length": 194.88}, {"u": 53426577, "v": 53544865, "oneway": false, "points": [[-163.82, -2396.59], [-173.32, -2396.18], [-250.92, -2392.78]], "length": 87.19}, {"u": 53426577, "v": 53573861, "oneway": false, "points": [[-163.82, -2396.59], [-154.72, -2396.9], [-113.6, -2398.3], [-0.88, -2402.11], [22.92, -2402.12], [35.56, -2399.14], [39.1, -2394.91], [41.69, -2391.9], [44.47, -2386.72], [45.03, -2382.56], [45.03, -2372.63], [43.38, -2367.58], [31.6, -2348.67], [2.06, -2301.31], [-9.02, -2283.55], [-15.4, -2273.32], [-20.73, -2263.82], [-47.58, -2217.14], [-54.23, -2205.83]], "length": 423.57}, {"u": 53428594, "v": 53428597, "oneway": false, "points": [[-2704.98, -937.36], [-2705.83, -947.63], [-2706.11, -955.46], [-2706.53, -969.09]], "length": 31.78}, {"u": 53428597, "v": 3812685579, "oneway": false, "points": [[-2706.53, -969.09], [-2706.77, -983.28], [-2707.53, -1002.99], [-2707.31, -1007.22], [-2706.38, -1009.1], [-2704.99, -1010.55], [-2702.8, -1012.77], [-2696.95, -1019.19]], "length": 54.06}, {"u": 53428597, "v": 53428594, "oneway": false, "points": [[-2706.53, -969.09], [-2706.11, -955.46], [-2705.83, -947.63], [-2704.98, -937.36]], "length": 31.78}, {"u": 53428597, "v": 53421608, "oneway": false, "points": [[-2706.53, -969.09], [-2713.96, -968.98], [-2793.73, -967.77], [-2795.37, -967.74], [-2800.81, -967.67]], "length": 94.3}, {"u": 53429624, "v": 1699123283, "oneway": false, "points": [[1220.36, 1534.88], [1211.01, 1545.12]], "length": 13.87}, {"u": 53429624, "v": 1777291055, "oneway": true, "points": [[1220.36, 1534.88], [1230.07, 1543.06], [1310.06, 1616.69]], "length": 121.42}, {"u": 53430018, "v": 53430027, "oneway": false, "points": [[1038.8, 1017.86], [1045.78, 1024.07], [1064.97, 1041.12], [1068.66, 1044.4], [1083.02, 1057.16], [1089.3, 1062.75], [1128.25, 1097.92], [1133.45, 1102.62], [1141.6, 1110.16], [1171.66, 1137.95], [1175.44, 1141.45], [1181.34, 1146.68], [1187.34, 1152.02]], "length": 200.17}, {"u": 53430018, "v": 349378518, "oneway": false, "points": [[1038.8, 1017.86], [1004.89, 1055.19], [998.36, 1062.38]], "length": 60.15}, {"u": 53430018, "v": 2948594974, "oneway": false, "points": [[1038.8, 1017.86], [1049.6, 1005.97], [1062.48, 991.79], [1073.7, 979.44], [1080.21, 972.28]], "length": 61.58}, {"u": 53430027, "v": 53430018, "oneway": false, "points": [[1187.34, 1152.02], [1181.34, 1146.68], [1175.44, 1141.45], [1171.66, 1137.95], [1141.6, 1110.16], [1133.45, 1102.62], [1128.25, 1097.92], [1089.3, 1062.75], [1083.02, 1057.16], [1068.66, 1044.4], [1064.97, 1041.12], [1045.78, 1024.07], [1038.8, 1017.86]], "length": 200.17}, {"u": 53430027, "v": 53453124, "oneway": false, "points": [[1187.34, 1152.02], [1176.09, 1164.38], [1154.24, 1188.36], [1152.15, 1190.68], [1146.45, 1196.92]], "length": 60.74}, {"u": 53430027, "v": 53423501, "oneway": false, "points": [[1187.34, 1152.02], [1198.5, 1140.23], [1200.65, 1137.95], [1220.46, 1117.01], [1223.23, 1114.08], [1230.22, 1106.69]], "length": 62.39}, {"u": 53430437, "v": 53616166, "oneway": false, "points": [[-1631.65, -1002.41], [-1631.39, -991.67], [-1630.25, -943.82], [-1629.65, -922.56], [-1629.26, -908.53], [-1628.2, -873.22], [-1628.15, -871.63], [-1627.88, -862.16]], "length": 140.3}, {"u": 53430437, "v": 53676376, "oneway": false, "points": [[-1631.65, -1002.41], [-1632.11, -1013.95], [-1633.44, -1062.53], [-1634.16, -1087.05], [-1634.75, -1112.8], [-1635.08, -1123.33]], "length": 120.97}, {"u": 53430437, "v": 53430443, "oneway": false, "points": [[-1631.65, -1002.41], [-1640.49, -1002.31], [-1643.8, -1002.26], [-1676.46, -1001.72], [-1692.75, -1001.2], [-1696.83, -1001.18], [-1703.35, -1001.23], [-1716.13, -1001.09], [-1750.85, -1000.35], [-1752.46, -1000.31], [-1761.29, -1000.13]], "length": 129.66}, {"u": 53430443, "v": 53430446, "oneway": false, "points": [[-1761.29, -1000.13], [-1770.43, -1000.04], [-1773.56, -999.98], [-1801.77, -999.51], [-1844.66, -998.4]], "length": 83.39}, {"u": 53430443, "v": 53576823, "oneway": false, "points": [[-1761.29, -1000.13], [-1761.47, -1009.86], [-1762.38, -1059.67]], "length": 59.55}, {"u": 53430443, "v": 53483330, "oneway": false, "points": [[-1761.29, -1000.13], [-1761.02, -990.41], [-1759.3, -928.7], [-1759.23, -926.14]], "length": 74.02}, {"u": 53430443, "v": 53430437, "oneway": false, "points": [[-1761.29, -1000.13], [-1752.46, -1000.31], [-1750.85, -1000.35], [-1716.13, -1001.09], [-1703.35, -1001.23], [-1696.83, -1001.18], [-1692.75, -1001.2], [-1676.46, -1001.72], [-1643.8, -1002.26], [-1640.49, -1002.31], [-1631.65, -1002.41]], "length": 129.66}, {"u": 53430446, "v": 3811323394, "oneway": false, "points": [[-1844.66, -998.4], [-1893.33, -996.98]], "length": 48.69}, {"u": 53430446, "v": 53430443, "oneway": false, "points": [[-1844.66, -998.4], [-1801.77, -999.51], [-1773.56, -999.98], [-1770.43, -1000.04], [-1761.29, -1000.13]], "length": 83.39}, {"u": 53430446, "v": 53680515, "oneway": false, "points": [[-1844.66, -998.4], [-1844.85, -1005.4], [-1846.18, -1053.15], [-1846.19, -1053.59], [-1846.31, -1058.05]], "length": 59.67}, {"u": 53430836, "v": 53430839, "oneway": false, "points": [[2868.69, 2332.44], [2863.49, 2264.4], [2863.33, 2255.39]], "length": 77.25}, {"u": 53430839, "v": 53430844, "oneway": false, "points": [[2863.33, 2255.39], [2862.99, 2248.53], [2852.91, 2075.2], [2852.38, 2066.01]], "length": 189.7}, {"u": 53430839, "v": 53430836, "oneway": false, "points": [[2863.33, 2255.39], [2863.49, 2264.4], [2868.69, 2332.44]], "length": 77.25}, {"u": 53430839, "v": 53475094, "oneway": false, "points": [[2863.33, 2255.39], [2870.22, 2255.11], [2944.63, 2252.06], [2954.24, 2251.41]], "length": 91.0}, {"u": 53430839, "v": 53611260, "oneway": false, "points": [[2863.33, 2255.39], [2854.17, 2255.8], [2778.59, 2259.68], [2770.83, 2260.08]], "length": 92.63}, {"u": 53430844, "v": 53540839, "oneway": false, "points": [[2852.38, 2066.01], [2851.99, 2059.14], [2846.52, 1938.79], [2844.21, 1921.43]], "length": 144.87}, {"u": 53430844, "v": 53430839, "oneway": false, "points": [[2852.38, 2066.01], [2852.91, 2075.2], [2862.99, 2248.53], [2863.33, 2255.39]], "length": 189.7}, {"u": 53430844, "v": 53475096, "oneway": false, "points": [[2852.38, 2066.01], [2859.9, 2065.22], [2936.31, 2061.3], [2944.03, 2060.91]], "length": 91.8}, {"u": 53430844, "v": 53604832, "oneway": false, "points": [[2852.38, 2066.01], [2843.95, 2066.17], [2769.58, 2070.94], [2761.2, 2071.48]], "length": 91.36}, {"u": 53430857, "v": 53487523, "oneway": false, "points": [[2845.12, 1872.64], [2848.73, 1863.05], [2849.27, 1860.52], [2863.89, 1792.51], [2865.37, 1785.6]], "length": 89.47}, {"u": 53430857, "v": 1192282519, "oneway": false, "points": [[2845.12, 1872.64], [2837.58, 1870.41], [2811.18, 1863.31], [2773.49, 1853.19], [2765.3, 1851.03]], "length": 82.7}, {"u": 53432331, "v": 1142903857, "oneway": false, "points": [[928.85, 237.25], [921.73, 244.89], [919.3, 247.43], [891.52, 277.06], [883.45, 285.66], [858.14, 315.26], [849.99, 324.42], [846.56, 328.34], [800.97, 377.39], [791.35, 387.65], [731.9, 454.21], [724.58, 462.62]], "length": 304.2}, {"u": 53432331, "v": 1192150406, "oneway": false, "points": [[928.85, 237.25], [921.54, 230.67], [910.09, 220.11], [878.83, 192.06], [855.0, 170.68], [828.73, 147.1], [823.92, 142.78], [816.27, 135.93], [814.66, 134.47]], "length": 153.63}, {"u": 53432331, "v": 53461450, "oneway": false, "points": [[928.85, 237.25], [935.06, 230.61], [936.3, 229.29], [952.24, 212.24], [987.06, 174.96], [993.93, 167.61]], "length": 95.32}, {"u": 53432331, "v": 53445464, "oneway": false, "points": [[928.85, 237.25], [935.36, 243.76], [989.43, 293.49], [991.36, 295.28], [997.73, 301.19], [1023.66, 325.25], [1039.18, 339.66], [1047.06, 347.0], [1055.44, 354.77], [1069.38, 367.8], [1077.54, 375.27]], "length": 202.88}, {"u": 53432339, "v": 2925570317, "oneway": false, "points": [[1376.81, 643.41], [1384.81, 650.72], [1391.19, 656.55], [1392.74, 658.03], [1393.26, 658.51], [1408.21, 672.32], [1410.98, 674.88], [1422.47, 685.21], [1423.03, 685.74], [1428.68, 691.11], [1436.38, 697.67], [1495.21, 751.85], [1519.36, 774.43], [1525.84, 780.08]], "length": 202.22}, {"u": 53432339, "v": 3235649725, "oneway": false, "points": [[1376.81, 643.41], [1369.9, 637.15], [1362.07, 630.19], [1353.96, 622.75], [1317.41, 590.41], [1301.81, 576.62], [1294.07, 569.74], [1289.54, 565.63], [1287.33, 563.6], [1280.19, 556.86], [1279.96, 556.65], [1265.19, 542.4], [1255.3, 533.42], [1235.57, 515.23], [1228.52, 508.76]], "length": 200.32}, {"u": 53432339, "v": 53461467, "oneway": false, "points": [[1376.81, 643.41], [1382.95, 636.61], [1402.19, 615.32], [1402.42, 615.07], [1409.83, 606.86], [1410.72, 605.88], [1436.84, 576.91], [1443.23, 569.82]], "length": 99.14}, {"u": 53432339, "v": 2948595076, "oneway": false, "points": [[1376.81, 643.41], [1370.33, 650.57], [1353.93, 668.73], [1352.87, 669.91], [1314.63, 712.98], [1309.22, 718.22]], "length": 100.84}, {"u": 53432346, "v": 53515077, "oneway": false, "points": [[1675.33, 914.28], [1667.47, 922.4], [1666.7, 923.19], [1650.54, 941.42], [1640.47, 952.76], [1634.81, 959.15], [1614.02, 982.59], [1608.67, 988.62]], "length": 99.87}, {"u": 53432346, "v": 53461478, "oneway": false, "points": [[1675.33, 914.28], [1680.88, 908.59], [1684.04, 905.36], [1735.69, 846.92], [1742.25, 839.49]], "length": 100.37}, {"u": 53432346, "v": 53432349, "oneway": false, "points": [[1675.33, 914.28], [1683.4, 921.63], [1711.29, 946.81], [1732.4, 965.86], [1742.35, 974.99], [1766.39, 997.03], [1796.02, 1024.33], [1817.6, 1043.99], [1824.33, 1050.12]], "length": 201.63}, {"u": 53432346, "v": 2925570317, "oneway": false, "points": [[1675.33, 914.28], [1668.37, 907.98], [1631.56, 874.13], [1624.2, 867.49], [1615.8, 859.97], [1606.82, 851.88], [1574.48, 822.96], [1571.18, 820.01], [1569.74, 818.7], [1557.6, 807.84], [1556.27, 806.64], [1554.53, 805.09], [1532.03, 785.57], [1525.84, 780.08]], "length": 200.9}, {"u": 53432349, "v": 53461491, "oneway": false, "points": [[1824.33, 1050.12], [1830.06, 1043.78], [1832.09, 1041.53], [1848.66, 1023.2], [1885.42, 982.52], [1892.03, 975.19]], "length": 100.99}, {"u": 53432349, "v": 53515081, "oneway": false, "points": [[1824.33, 1050.12], [1817.53, 1057.42], [1815.71, 1059.37], [1794.41, 1082.2], [1792.89, 1083.83], [1762.03, 1116.88], [1755.84, 1123.53]], "length": 100.39}, {"u": 53432349, "v": 53432353, "oneway": false, "points": [[1824.33, 1050.12], [1830.51, 1056.83], [1843.4, 1070.81], [1848.17, 1076.51], [1871.34, 1104.13], [1899.42, 1137.6], [1926.9, 1172.05], [1948.88, 1198.49], [1954.98, 1205.82]], "length": 203.3}, {"u": 53432349, "v": 53432346, "oneway": false, "points": [[1824.33, 1050.12], [1817.6, 1043.99], [1796.02, 1024.33], [1766.39, 997.03], [1742.35, 974.99], [1732.4, 965.86], [1711.29, 946.81], [1683.4, 921.63], [1675.33, 914.28]], "length": 201.63}, {"u": 53432353, "v": 53461499, "oneway": false, "points": [[1954.98, 1205.82], [1960.78, 1199.3], [1974.77, 1183.56], [1980.72, 1176.87], [1996.62, 1157.08], [2033.88, 1117.5], [2040.05, 1110.96]], "length": 127.48}, {"u": 53432353, "v": 53432356, "oneway": false, "points": [[1954.98, 1205.82], [1959.78, 1211.6], [1990.48, 1248.62]], "length": 55.6}, {"u": 53432353, "v": 53432349, "oneway": false, "points": [[1954.98, 1205.82], [1948.88, 1198.49], [1926.9, 1172.05], [1899.42, 1137.6], [1871.34, 1104.13], [1848.17, 1076.51], [1843.4, 1070.81], [1830.51, 1056.83], [1824.33, 1050.12]], "length": 203.3}, {"u": 53432356, "v": 2948601586, "oneway": false, "points": [[1990.48, 1248.62], [1995.67, 1254.57], [1997.9, 1257.12], [2002.53, 1262.49], [2018.3, 1281.6], [2023.52, 1287.95]], "length": 51.38}, {"u": 53432356, "v": 53432353, "oneway": false, "points": [[1990.48, 1248.62], [1959.78, 1211.6], [1954.98, 1205.82]], "length": 55.6}, {"u": 53433643, "v": 53437708, "oneway": false, "points": [[820.25, 1416.54], [789.9, 1388.02]], "length": 41.65}, {"u": 53433643, "v": 53433662, "oneway": false, "points": [[820.25, 1416.54], [785.69, 1454.28], [784.91, 1455.42], [784.47, 1456.74], [784.41, 1458.12], [784.73, 1459.45], [817.1, 1542.15], [818.83, 1545.49], [819.97, 1547.68], [824.66, 1553.16]], "length": 158.95}, {"u": 53433643, "v": 53453164, "oneway": false, "points": [[820.25, 1416.54], [882.9, 1475.44], [889.26, 1481.42]], "length": 94.72}, {"u": 53433662, "v": 53453164, "oneway": false, "points": [[824.66, 1553.16], [889.26, 1481.42]], "length": 96.54}, {"u": 53433662, "v": 53433643, "oneway": false, "points": [[824.66, 1553.16], [819.97, 1547.68], [818.83, 1545.49], [817.1, 1542.15], [784.73, 1459.45], [784.41, 1458.12], [784.47, 1456.74], [784.91, 1455.42], [785.69, 1454.28], [820.25, 1416.54]], "length": 158.95}, {"u": 53433662, "v": 53453173, "oneway": false, "points": [[824.66, 1553.16], [818.73, 1559.63], [792.74, 1587.96], [761.82, 1623.08], [757.84, 1626.36], [754.98, 1627.9], [753.38, 1628.76], [748.49, 1630.67]], "length": 109.49}, {"u": 53434711, "v": 2859245583, "oneway": false, "points": [[-1094.53, 118.13], [-1108.0, 118.83], [-1144.46, 120.72], [-1169.66, 122.03], [-1173.98, 122.25], [-1176.04, 121.17], [-1177.58, 119.18], [-1178.54, 116.64], [-1179.03, 113.74], [-1179.79, 99.19], [-1181.27, 73.48], [-1182.07, 59.63], [-1183.26, 38.87], [-1183.92, 29.6]], "length": 174.34}, {"u": 53434862, "v": 53434863, "oneway": false, "points": [[-832.42, -2406.29], [-832.75, -2415.59], [-832.87, -2418.38], [-836.59, -2510.58], [-836.72, -2513.84], [-837.09, -2522.91]], "length": 116.72}, {"u": 53434862, "v": 53470170, "oneway": false, "points": [[-832.42, -2406.29], [-832.08, -2397.6], [-832.01, -2394.86], [-830.94, -2351.91], [-829.42, -2291.39], [-879.08, -2289.2], [-966.36, -2284.61]], "length": 252.04}, {"u": 53434862, "v": 53470173, "oneway": false, "points": [[-832.42, -2406.29], [-840.03, -2405.96], [-892.96, -2403.3], [-971.25, -2399.72]], "length": 138.98}, {"u": 53434862, "v": 5890633230, "oneway": false, "points": [[-832.42, -2406.29], [-823.94, -2406.74], [-714.55, -2411.97]], "length": 118.01}, {"u": 53434863, "v": 53434865, "oneway": false, "points": [[-837.09, -2522.91], [-837.58, -2531.86], [-837.77, -2535.36], [-840.32, -2581.56], [-842.73, -2625.47], [-842.96, -2629.81], [-843.37, -2637.12]], "length": 114.39}, {"u": 53434863, "v": 53434862, "oneway": false, "points": [[-837.09, -2522.91], [-836.72, -2513.84], [-836.59, -2510.58], [-832.87, -2418.38], [-832.75, -2415.59], [-832.42, -2406.29]], "length": 116.72}, {"u": 53434863, "v": 1180187547, "oneway": false, "points": [[-837.09, -2522.91], [-846.12, -2522.47], [-960.32, -2516.84], [-988.39, -2515.04], [-1062.56, -2511.41], [-1079.89, -2510.56], [-1090.16, -2510.58], [-1096.16, -2510.58], [-1098.28, -2510.59], [-1106.99, -2510.6]], "length": 270.22}, {"u": 53434863, "v": 53463513, "oneway": false, "points": [[-837.09, -2522.91], [-827.89, -2523.37], [-757.49, -2526.96], [-698.81, -2530.6], [-695.0, -2530.83], [-684.5, -2531.49]], "length": 152.83}, {"u": 53434865, "v": 53434867, "oneway": false, "points": [[-843.37, -2637.12], [-843.79, -2647.47], [-843.98, -2652.15], [-845.82, -2696.43], [-847.56, -2742.37], [-847.7, -2746.05], [-848.01, -2754.34]], "length": 117.31}, {"u": 53434865, "v": 53434863, "oneway": false, "points": [[-843.37, -2637.12], [-842.96, -2629.81], [-842.73, -2625.47], [-840.32, -2581.56], [-837.77, -2535.36], [-837.58, -2531.86], [-837.09, -2522.91]], "length": 114.39}, {"u": 53434865, "v": 53511723, "oneway": false, "points": [[-843.37, -2637.12], [-851.44, -2636.79], [-930.41, -2633.53], [-973.43, -2632.24], [-1015.55, -2632.37], [-1019.64, -2632.45], [-1021.88, -2632.51], [-1024.59, -2632.5], [-1034.3, -2637.6]], "length": 192.29}, {"u": 53434865, "v": 53463519, "oneway": false, "points": [[-843.37, -2637.12], [-752.31, -2642.7], [-748.3, -2642.96], [-743.66, -2643.26], [-734.0, -2643.89]], "length": 109.57}, {"u": 53434867, "v": 53434865, "oneway": false, "points": [[-848.01, -2754.34], [-847.7, -2746.05], [-847.56, -2742.37], [-845.82, -2696.43], [-843.98, -2652.15], [-843.79, -2647.47], [-843.37, -2637.12]], "length": 117.31}, {"u": 53434867, "v": 53511712, "oneway": false, "points": [[-848.01, -2754.34], [-857.55, -2753.88], [-925.17, -2750.58], [-932.04, -2750.74], [-935.87, -2750.83], [-946.54, -2751.09]], "length": 98.63}, {"u": 53434867, "v": 53463523, "oneway": false, "points": [[-848.01, -2754.34], [-839.21, -2754.78], [-798.51, -2756.83], [-792.83, -2757.11], [-787.04, -2757.4]], "length": 61.04}, {"u": 53434870, "v": 53434871, "oneway": false, "points": [[-787.75, -2084.62], [-788.1, -2092.33], [-790.58, -2168.46], [-791.17, -2177.36]], "length": 92.8}, {"u": 53434870, "v": 53470168, "oneway": false, "points": [[-787.75, -2084.62], [-839.03, -2084.96], [-854.62, -2082.77], [-870.06, -2080.82], [-883.19, -2079.12], [-957.33, -2072.12]], "length": 170.3}, {"u": 53434870, "v": 2634693299, "oneway": false, "points": [[-787.75, -2084.62], [-778.5, -2084.02], [-663.21, -2090.84], [-631.47, -2092.19], [-625.3, -2092.7], [-622.03, -2093.25]], "length": 166.04}, {"u": 53434871, "v": 53434870, "oneway": false, "points": [[-791.17, -2177.36], [-790.58, -2168.46], [-788.1, -2092.33], [-787.75, -2084.62]], "length": 92.8}, {"u": 53434871, "v": 53470169, "oneway": false, "points": [[-791.17, -2177.36], [-797.01, -2177.2], [-861.14, -2174.45], [-952.17, -2170.65], [-961.5, -2170.24]], "length": 170.47}, {"u": 53434871, "v": 2634708186, "oneway": false, "points": [[-791.17, -2177.36], [-784.3, -2177.7], [-669.28, -2181.38], [-621.74, -2182.55], [-614.98, -2182.79]], "length": 176.28}, {"u": 53436855, "v": 53572846, "oneway": false, "points": [[-3132.49, -534.3], [-3125.86, -527.71], [-3119.49, -524.45], [-3108.37, -520.43], [-3105.18, -519.75], [-3099.05, -519.37], [-3090.19, -519.96], [-3076.17, -520.03], [-3069.4, -519.67], [-3052.04, -516.61], [-3042.76, -514.21], [-3031.13, -509.44], [-3024.1, -505.75], [-3015.64, -500.66]], "length": 125.0}, {"u": 53437415, "v": 53437417, "oneway": false, "points": [[2138.44, 1386.95], [2163.37, 1373.09], [2169.83, 1369.5]], "length": 35.92}, {"u": 53437417, "v": 53437418, "oneway": false, "points": [[2169.83, 1369.5], [2241.74, 1311.81], [2243.73, 1310.2], [2251.81, 1303.73]], "length": 105.1}, {"u": 53437417, "v": 53437415, "oneway": false, "points": [[2169.83, 1369.5], [2163.37, 1373.09], [2138.44, 1386.95]], "length": 35.92}, {"u": 53437417, "v": 53537030, "oneway": false, "points": [[2169.83, 1369.5], [2176.68, 1374.15], [2256.53, 1428.38], [2261.6, 1431.83]], "length": 110.93}, {"u": 53437418, "v": 53437425, "oneway": false, "points": [[2251.81, 1303.73], [2257.0, 1298.35], [2258.81, 1296.48], [2261.07, 1294.13], [2367.43, 1177.22], [2379.46, 1163.28], [2381.32, 1161.12], [2388.73, 1152.51]], "length": 204.02}, {"u": 53437418, "v": 53437417, "oneway": false, "points": [[2251.81, 1303.73], [2243.73, 1310.2], [2241.74, 1311.81], [2169.83, 1369.5]], "length": 105.1}, {"u": 53437418, "v": 53461430, "oneway": false, "points": [[2251.81, 1303.73], [2257.27, 1308.9], [2270.97, 1321.86], [2286.41, 1334.99], [2300.38, 1345.16], [2309.58, 1351.24], [2313.75, 1354.01]], "length": 79.95}, {"u": 53437418, "v": 3208339051, "oneway": false, "points": [[2251.81, 1303.73], [2245.16, 1297.68], [2223.62, 1279.08], [2215.48, 1271.96], [2191.32, 1248.07], [2189.77, 1246.53], [2184.58, 1241.41]], "length": 91.72}, {"u": 53437425, "v": 53437418, "oneway": false, "points": [[2388.73, 1152.51], [2381.32, 1161.12], [2379.46, 1163.28], [2367.43, 1177.22], [2261.07, 1294.13], [2258.81, 1296.48], [2257.0, 1298.35], [2251.81, 1303.73]], "length": 204.02}, {"u": 53437425, "v": 53558145, "oneway": false, "points": [[2388.73, 1152.51], [2429.84, 1193.29], [2432.64, 1196.07]], "length": 61.85}, {"u": 53437425, "v": 3208342164, "oneway": false, "points": [[2388.73, 1152.51], [2385.17, 1149.35], [2349.2, 1117.5], [2327.57, 1098.33], [2322.32, 1093.69]], "length": 88.72}, {"u": 53437707, "v": 53437708, "oneway": false, "points": [[743.14, 1344.07], [748.47, 1349.07], [789.9, 1388.02]], "length": 64.17}, {"u": 53437707, "v": 53578339, "oneway": true, "points": [[743.14, 1344.07], [738.78, 1348.93], [693.71, 1399.04], [684.53, 1405.13], [677.86, 1407.97]], "length": 92.19}, {"u": 53437708, "v": 53433643, "oneway": false, "points": [[789.9, 1388.02], [820.25, 1416.54]], "length": 41.65}, {"u": 53437708, "v": 53580632, "oneway": false, "points": [[789.9, 1388.02], [746.24, 1434.83]], "length": 64.02}, {"u": 53437708, "v": 53437707, "oneway": false, "points": [[789.9, 1388.02], [748.47, 1349.07], [743.14, 1344.07]], "length": 64.17}, {"u": 53437716, "v": 53453164, "oneway": false, "points": [[913.67, 1454.5], [889.26, 1481.42]], "length": 36.34}, {"u": 53437716, "v": 53437718, "oneway": false, "points": [[913.67, 1454.5], [920.23, 1460.43], [1000.79, 1533.39]], "length": 117.53}, {"u": 53437716, "v": 53453152, "oneway": false, "points": [[913.67, 1454.5], [919.74, 1447.48], [936.56, 1428.93], [939.35, 1425.74], [944.4, 1420.22]], "length": 46.04}, {"u": 53437718, "v": 53437720, "oneway": false, "points": [[1000.79, 1533.39], [1019.1, 1549.99], [1053.03, 1582.71], [1058.29, 1587.79]], "length": 79.16}, {"u": 53437718, "v": 53437716, "oneway": false, "points": [[1000.79, 1533.39], [920.23, 1460.43], [913.67, 1454.5]], "length": 117.53}, {"u": 53437718, "v": 53672943, "oneway": false, "points": [[1000.79, 1533.39], [994.68, 1538.79], [809.48, 1702.56], [804.23, 1707.2]], "length": 262.38}, {"u": 53437720, "v": 53437718, "oneway": false, "points": [[1058.29, 1587.79], [1053.03, 1582.71], [1019.1, 1549.99], [1000.79, 1533.39]], "length": 79.16}, {"u": 53437720, "v": 53537015, "oneway": false, "points": [[1058.29, 1587.79], [1017.3, 1624.62], [880.6, 1745.19], [860.56, 1762.53], [854.39, 1767.66]], "length": 271.91}, {"u": 53437720, "v": 1699123264, "oneway": false, "points": [[1058.29, 1587.79], [1076.8, 1571.15], [1089.04, 1559.77], [1102.51, 1544.99], [1142.31, 1501.18], [1143.45, 1499.83], [1149.1, 1493.82]], "length": 130.81}, {"u": 53438623, "v": 53438624, "oneway": false, "points": [[-538.81, -2185.27], [-539.31, -2194.1], [-542.29, -2233.22], [-545.47, -2280.59]], "length": 95.55}, {"u": 53438623, "v": 2634708186, "oneway": false, "points": [[-538.81, -2185.27], [-547.7, -2184.88], [-550.65, -2184.75], [-560.42, -2184.33], [-585.62, -2183.59], [-606.57, -2183.03], [-614.98, -2182.79]], "length": 76.21}, {"u": 53438623, "v": 2634693274, "oneway": false, "points": [[-538.81, -2185.27], [-536.13, -2185.39], [-531.88, -2185.57], [-515.61, -2186.28], [-471.44, -2188.19]], "length": 67.43}, {"u": 53438624, "v": 53642782, "oneway": false, "points": [[-545.47, -2280.59], [-548.23, -2331.46], [-548.77, -2373.87], [-548.8, -2376.02], [-547.6, -2378.04], [-545.77, -2379.72], [-541.0, -2380.37], [-536.86, -2380.31], [-516.46, -2380.89], [-469.8, -2382.44], [-417.48, -2385.6]], "length": 228.81}, {"u": 53438624, "v": 53438623, "oneway": false, "points": [[-545.47, -2280.59], [-542.29, -2233.22], [-539.31, -2194.1], [-538.81, -2185.27]], "length": 95.55}, {"u": 53438624, "v": 2634693276, "oneway": false, "points": [[-545.47, -2280.59], [-536.95, -2281.03], [-517.62, -2282.04], [-471.81, -2284.42], [-422.68, -2286.98], [-405.62, -2287.87]], "length": 140.04}, {"u": 53438915, "v": 53413619, "oneway": false, "points": [[-2692.52, 55.26], [-2695.3, 62.98], [-2696.56, 68.07], [-2697.58, 76.15], [-2697.97, 83.33], [-2695.68, 135.16], [-2695.43, 144.53]], "length": 90.04}, {"u": 53438915, "v": 53486858, "oneway": false, "points": [[-2692.52, 55.26], [-2701.62, 52.11], [-2711.03, 49.06], [-2720.7, 45.57], [-2730.53, 42.66], [-2738.3, 41.01], [-2748.06, 40.07], [-2761.69, 40.19], [-2793.39, 41.92]], "length": 103.18}, {"u": 53438915, "v": 53486814, "oneway": false, "points": [[-2692.52, 55.26], [-2686.07, 41.16], [-2680.18, 30.19], [-2679.82, 29.52], [-2676.82, 23.98], [-2671.63, 16.29], [-2664.95, 10.02], [-2657.93, 5.96], [-2653.37, 4.16], [-2645.92, 2.43], [-2623.51, 1.19], [-2593.4, -1.11], [-2559.14, -3.7], [-2450.9, -7.68], [-2444.92, -7.88], [-2439.94, -8.1]], "length": 280.4}, {"u": 53441253, "v": 3227608154, "oneway": false, "points": [[-638.92, 255.75], [-644.38, 261.76], [-646.77, 264.4], [-659.72, 278.77], [-673.34, 293.87], [-686.01, 307.94], [-691.88, 314.45], [-705.28, 329.33]], "length": 99.08}, {"u": 53441253, "v": 53479821, "oneway": false, "points": [[-638.92, 255.75], [-633.26, 249.42], [-631.53, 247.49], [-601.22, 213.86], [-578.06, 188.42], [-571.8, 181.55]], "length": 100.05}, {"u": 53441253, "v": 5463552488, "oneway": false, "points": [[-638.92, 255.75], [-631.84, 262.31], [-613.44, 278.97], [-593.21, 297.27], [-585.65, 304.39], [-554.95, 332.75], [-553.57, 333.94], [-547.99, 338.7], [-541.4, 344.37]], "length": 131.79}, {"u": 53441253, "v": 53441256, "oneway": false, "points": [[-638.92, 255.75], [-644.92, 249.55], [-666.16, 230.4], [-681.66, 216.43], [-700.1, 199.51], [-707.21, 193.39], [-720.32, 181.6], [-737.39, 166.18], [-781.87, 126.07], [-788.22, 120.35]], "length": 201.57}, {"u": 53441256, "v": 53521446, "oneway": false, "points": [[-788.22, 120.35], [-794.48, 127.3], [-798.54, 131.8], [-847.93, 186.66]], "length": 89.23}, {"u": 53441256, "v": 2714977035, "oneway": false, "points": [[-788.22, 120.35], [-783.05, 114.72], [-780.96, 112.45], [-760.69, 90.4], [-758.62, 88.16], [-747.3, 75.82], [-744.92, 73.18], [-725.75, 52.39], [-720.32, 46.47]], "length": 100.35}, {"u": 53441256, "v": 53441253, "oneway": false, "points": [[-788.22, 120.35], [-781.87, 126.07], [-737.39, 166.18], [-720.32, 181.6], [-707.21, 193.39], [-700.1, 199.51], [-681.66, 216.43], [-666.16, 230.4], [-644.92, 249.55], [-638.92, 255.75]], "length": 201.57}, {"u": 53441256, "v": 1181085486, "oneway": false, "points": [[-788.22, 120.35], [-794.94, 114.28], [-819.42, 92.22], [-855.8, 59.42]], "length": 90.98}, {"u": 53441258, "v": 1181184017, "oneway": false, "points": [[-885.8, 32.37], [-892.89, 40.14], [-893.69, 41.22], [-950.67, 105.11], [-953.33, 107.37], [-956.88, 109.76], [-962.26, 112.94], [-969.02, 114.85]], "length": 118.51}, {"u": 53441258, "v": 1181085486, "oneway": false, "points": [[-885.8, 32.37], [-882.31, 35.52], [-869.38, 47.18], [-855.8, 59.42]], "length": 40.4}, {"u": 53441258, "v": 53441265, "oneway": false, "points": [[-885.8, 32.37], [-894.23, 24.78], [-896.26, 23.36], [-899.34, 21.21], [-904.95, 18.48], [-910.12, 16.91], [-910.74, 16.71], [-916.72, 15.85], [-952.06, 16.93], [-953.02, 16.96], [-968.46, 17.96], [-986.65, 18.99], [-1014.06, 21.15], [-1021.97, 21.28]], "length": 141.33}, {"u": 53441265, "v": 53499287, "oneway": false, "points": [[-1021.97, 21.28], [-1021.37, 30.46], [-1021.31, 31.89], [-1020.29, 55.31], [-1019.01, 84.54], [-1018.33, 100.18], [-1017.79, 112.6], [-1017.75, 113.42], [-1016.29, 146.99], [-1016.02, 153.15], [-1015.45, 166.31], [-1015.29, 169.85]], "length": 148.72}, {"u": 53441265, "v": 13191853166, "oneway": false, "points": [[-1021.97, 21.28], [-1022.32, 12.61], [-1022.46, 9.12], [-1023.72, -22.31], [-1023.86, -25.87], [-1023.89, -26.42]], "length": 47.73}, {"u": 53441265, "v": 53441258, "oneway": false, "points": [[-1021.97, 21.28], [-1014.06, 21.15], [-986.65, 18.99], [-968.46, 17.96], [-953.02, 16.96], [-952.06, 16.93], [-916.72, 15.85], [-910.74, 16.71], [-910.12, 16.91], [-904.95, 18.48], [-899.34, 21.21], [-896.26, 23.36], [-894.23, 24.78], [-885.8, 32.37]], "length": 141.33}, {"u": 53441265, "v": 2859245583, "oneway": false, "points": [[-1021.97, 21.28], [-1031.13, 21.47], [-1057.65, 22.6], [-1093.38, 24.32], [-1133.36, 26.42], [-1140.57, 26.7], [-1174.97, 28.4], [-1183.92, 29.6]], "length": 162.2}, {"u": 53444038, "v": 53332729, "oneway": true, "points": [[-123.14, -291.89], [-118.02, -291.53], [-113.39, -288.86], [-41.64, -224.8], [-32.47, -216.61]], "length": 118.96}, {"u": 53444038, "v": 1186826669, "oneway": false, "points": [[-123.14, -291.89], [-123.95, -306.69], [-125.0, -325.88]], "length": 34.04}, {"u": 53444048, "v": 4173797761, "oneway": false, "points": [[-137.44, -590.89], [-151.01, -603.2], [-187.82, -636.71], [-219.12, -665.18], [-228.59, -673.8], [-243.76, -687.58], [-254.49, -697.35], [-265.01, -707.51]], "length": 172.85}, {"u": 53444048, "v": 1424945190, "oneway": false, "points": [[-137.44, -590.89], [-137.86, -599.87], [-138.11, -605.36], [-138.5, -613.76]], "length": 22.9}, {"u": 53444048, "v": 1186826687, "oneway": true, "points": [[-137.44, -590.89], [-136.68, -571.38], [-134.19, -530.74], [-130.13, -462.76], [-130.42, -455.99], [-130.6, -453.07], [-131.41, -442.96]], "length": 148.19}, {"u": 53444048, "v": 53467506, "oneway": false, "points": [[-137.44, -590.89], [-148.76, -583.11], [-161.73, -569.02], [-185.53, -543.19], [-200.02, -527.45], [-206.86, -520.03]], "length": 99.49}, {"u": 53444545, "v": 1180187704, "oneway": false, "points": [[-1280.79, -2027.98], [-1287.16, -2031.5], [-1321.97, -2051.73], [-1327.78, -2054.94], [-1349.05, -2066.92], [-1355.78, -2070.59]], "length": 86.26}, {"u": 53444545, "v": 12911858894, "oneway": false, "points": [[-1280.79, -2027.98], [-1297.65, -2008.04], [-1317.57, -1977.69], [-1342.98, -1923.17], [-1378.99, -1856.89], [-1383.75, -1848.09], [-1416.76, -1787.69], [-1419.79, -1781.62], [-1425.09, -1767.66], [-1427.24, -1757.26], [-1427.86, -1747.79], [-1427.95, -1732.91]], "length": 333.54}, {"u": 53444545, "v": 53416782, "oneway": false, "points": [[-1280.79, -2027.98], [-1268.46, -2041.78], [-1258.9, -2049.5], [-1249.39, -2056.33], [-1240.49, -2061.36], [-1225.39, -2066.35], [-1207.72, -2069.75], [-1200.06, -2069.74], [-1160.44, -2066.54], [-1096.76, -2057.02], [-1066.53, -2054.55]], "length": 228.75}, {"u": 53444600, "v": 53483354, "oneway": false, "points": [[-2161.76, -960.95], [-2160.27, -914.73]], "length": 46.24}, {"u": 53444600, "v": 53444613, "oneway": false, "points": [[-2161.76, -960.95], [-2167.91, -960.56], [-2171.59, -960.53], [-2174.34, -960.88], [-2176.8, -961.24], [-2178.33, -961.77], [-2180.01, -962.44], [-2182.29, -963.81], [-2318.92, -1080.51], [-2321.27, -1082.51], [-2328.4, -1088.61]], "length": 213.35}, {"u": 53444600, "v": 53483912, "oneway": false, "points": [[-2161.76, -960.95], [-2162.02, -981.21], [-2162.13, -989.32]], "length": 28.38}, {"u": 53444613, "v": 53444622, "oneway": false, "points": [[-2328.4, -1088.61], [-2334.81, -1094.04], [-2336.86, -1095.77], [-2463.67, -1203.21], [-2470.61, -1209.09]], "length": 186.38}, {"u": 53444613, "v": 53444600, "oneway": false, "points": [[-2328.4, -1088.61], [-2321.27, -1082.51], [-2318.92, -1080.51], [-2182.29, -963.81], [-2180.01, -962.44], [-2178.33, -961.77], [-2176.8, -961.24], [-2174.34, -960.88], [-2171.59, -960.53], [-2167.91, -960.56], [-2161.76, -960.95]], "length": 213.35}, {"u": 53444613, "v": 53590699, "oneway": false, "points": [[-2328.4, -1088.61], [-2322.72, -1094.93], [-2318.06, -1099.85], [-2314.6, -1104.27], [-2311.95, -1105.46]], "length": 23.8}, {"u": 53444613, "v": 53473273, "oneway": false, "points": [[-2328.4, -1088.61], [-2334.5, -1081.29], [-2359.76, -1050.96], [-2385.04, -1020.79], [-2390.79, -1013.93]], "length": 97.31}, {"u": 53444622, "v": 53444627, "oneway": false, "points": [[-2470.61, -1209.09], [-2477.22, -1214.73], [-2568.08, -1292.38], [-2570.49, -1294.44], [-2577.34, -1300.3]], "length": 140.4}, {"u": 53444622, "v": 53444613, "oneway": false, "points": [[-2470.61, -1209.09], [-2463.67, -1203.21], [-2336.86, -1095.77], [-2334.81, -1094.04], [-2328.4, -1088.61]], "length": 186.38}, {"u": 53444622, "v": 53692040, "oneway": false, "points": [[-2470.61, -1209.09], [-2464.44, -1216.17], [-2459.29, -1221.54], [-2457.69, -1222.67], [-2456.11, -1223.22], [-2454.9, -1223.48], [-2448.28, -1223.8]], "length": 28.34}, {"u": 53444622, "v": 53454630, "oneway": false, "points": [[-2470.61, -1209.09], [-2476.08, -1202.39], [-2500.79, -1172.06], [-2525.75, -1142.74], [-2532.47, -1134.86]], "length": 96.63}, {"u": 53444627, "v": 53444632, "oneway": false, "points": [[-2577.34, -1300.3], [-2584.25, -1306.17], [-2586.31, -1307.91], [-2670.01, -1378.97], [-2676.66, -1384.62]], "length": 130.28}, {"u": 53444627, "v": 53444622, "oneway": false, "points": [[-2577.34, -1300.3], [-2570.49, -1294.44], [-2568.08, -1292.38], [-2477.22, -1214.73], [-2470.61, -1209.09]], "length": 140.4}, {"u": 53444627, "v": 53621164, "oneway": false, "points": [[-2577.34, -1300.3], [-2571.37, -1307.49], [-2546.11, -1337.27], [-2520.56, -1367.38], [-2515.05, -1373.81]], "length": 96.35}, {"u": 53444627, "v": 53473289, "oneway": false, "points": [[-2577.34, -1300.3], [-2583.06, -1293.55], [-2608.81, -1263.13], [-2633.3, -1234.21], [-2641.43, -1224.62]], "length": 99.17}, {"u": 53444632, "v": 53444642, "oneway": false, "points": [[-2676.66, -1384.62], [-2683.33, -1390.28], [-2769.48, -1463.47], [-2775.79, -1468.82]], "length": 130.06}, {"u": 53444632, "v": 53444627, "oneway": false, "points": [[-2676.66, -1384.62], [-2670.01, -1378.97], [-2586.31, -1307.91], [-2584.25, -1306.17], [-2577.34, -1300.3]], "length": 130.28}, {"u": 53444632, "v": 53621168, "oneway": false, "points": [[-2676.66, -1384.62], [-2670.78, -1391.76], [-2644.51, -1422.06], [-2619.93, -1451.63], [-2614.27, -1458.44]], "length": 96.66}, {"u": 53444632, "v": 53473302, "oneway": false, "points": [[-2676.66, -1384.62], [-2682.22, -1377.7], [-2707.38, -1346.46], [-2731.99, -1316.87], [-2739.23, -1308.17]], "length": 98.79}, {"u": 53444642, "v": 53444645, "oneway": false, "points": [[-2775.79, -1468.82], [-2781.42, -1474.23], [-2853.64, -1536.82], [-2866.45, -1547.47], [-2873.37, -1553.21]], "length": 129.02}, {"u": 53444642, "v": 53444632, "oneway": false, "points": [[-2775.79, -1468.82], [-2769.48, -1463.47], [-2683.33, -1390.28], [-2676.66, -1384.62]], "length": 130.06}, {"u": 53444642, "v": 2635256574, "oneway": false, "points": [[-2775.79, -1468.82], [-2770.13, -1474.97], [-2743.85, -1505.42], [-2718.24, -1534.96], [-2712.85, -1541.86]], "length": 96.42}, {"u": 53444642, "v": 53473312, "oneway": false, "points": [[-2775.79, -1468.82], [-2781.96, -1461.73], [-2808.18, -1431.62], [-2832.47, -1401.89], [-2839.28, -1393.56]], "length": 98.48}, {"u": 53444645, "v": 2637056004, "oneway": false, "points": [[-2873.37, -1553.21], [-2880.82, -1559.38], [-2884.12, -1562.12], [-2905.83, -1580.15], [-2927.77, -1598.35], [-2951.66, -1618.18], [-2966.69, -1630.66], [-2972.92, -1635.83]], "length": 129.38}, {"u": 53444645, "v": 53444642, "oneway": false, "points": [[-2873.37, -1553.21], [-2866.45, -1547.47], [-2853.64, -1536.82], [-2781.42, -1474.23], [-2775.79, -1468.82]], "length": 129.02}, {"u": 53444645, "v": 2635256569, "oneway": false, "points": [[-2873.37, -1553.21], [-2868.27, -1559.24], [-2842.95, -1589.21], [-2817.46, -1619.37], [-2811.44, -1626.48]], "length": 95.94}, {"u": 53444645, "v": 53473321, "oneway": false, "points": [[-2873.37, -1553.21], [-2880.04, -1545.3], [-2906.11, -1514.45], [-2931.15, -1484.82], [-2937.43, -1477.39]], "length": 99.26}, {"u": 53445464, "v": 53445467, "oneway": false, "points": [[1077.54, 375.27], [1084.91, 367.15], [1120.89, 327.57], [1138.25, 308.48], [1140.01, 306.52], [1146.92, 298.95]], "length": 103.14}, {"u": 53445464, "v": 3235649725, "oneway": false, "points": [[1077.54, 375.27], [1084.26, 381.2], [1106.48, 400.94], [1144.61, 434.77], [1157.5, 446.22], [1190.37, 475.38], [1196.71, 481.01], [1213.1, 495.55], [1220.7, 502.06], [1228.52, 508.76]], "length": 201.53}, {"u": 53445464, "v": 53432331, "oneway": false, "points": [[1077.54, 375.27], [1069.38, 367.8], [1055.44, 354.77], [1047.06, 347.0], [1039.18, 339.66], [1023.66, 325.25], [997.73, 301.19], [991.36, 295.28], [989.43, 293.49], [935.36, 243.76], [928.85, 237.25]], "length": 202.88}, {"u": 53445464, "v": 53407975, "oneway": false, "points": [[1077.54, 375.27], [1071.73, 381.64], [1049.03, 406.63], [1037.72, 419.06], [1009.87, 449.7], [998.02, 462.73], [994.49, 466.63], [974.16, 488.98], [949.19, 516.45], [945.91, 520.07], [936.65, 530.21], [935.42, 531.6], [906.98, 562.89], [882.25, 590.1], [874.56, 598.55]], "length": 301.76}, {"u": 53445467, "v": 3235650820, "oneway": false, "points": [[1146.92, 298.95], [1153.29, 291.94], [1153.96, 291.2], [1206.04, 233.92], [1207.69, 232.1], [1216.03, 222.92]], "length": 102.75}, {"u": 53445467, "v": 53445464, "oneway": false, "points": [[1146.92, 298.95], [1140.01, 306.52], [1138.25, 308.48], [1120.89, 327.57], [1084.91, 367.15], [1077.54, 375.27]], "length": 103.14}, {"u": 53445467, "v": 53461456, "oneway": false, "points": [[1146.92, 298.95], [1139.92, 292.58], [1019.75, 183.1]], "length": 172.03}, {"u": 53445467, "v": 53461463, "oneway": false, "points": [[1146.92, 298.95], [1152.78, 304.3], [1288.65, 428.07], [1296.13, 434.9]], "length": 201.86}, {"u": 53447046, "v": 449956571, "oneway": false, "points": [[2646.68, 2297.63], [2638.86, 2305.17], [2635.8, 2308.13], [2618.63, 2324.69], [2593.56, 2348.88], [2586.93, 2355.33]], "length": 83.06}, {"u": 53447046, "v": 2948595023, "oneway": true, "points": [[2646.68, 2297.63], [2641.57, 2291.99], [2637.44, 2287.44], [2628.81, 2276.15], [2622.91, 2265.93], [2620.54, 2261.85], [2613.93, 2250.41]], "length": 57.69}, {"u": 53447046, "v": 11205598924, "oneway": false, "points": [[2646.68, 2297.63], [2651.65, 2305.17], [2667.97, 2324.46], [2681.17, 2338.95]], "length": 53.9}, {"u": 53447075, "v": 2634693266, "oneway": false, "points": [[85.54, -2056.79], [95.72, -2057.23]], "length": 10.18}, {"u": 53447075, "v": 53447076, "oneway": false, "points": [[85.54, -2056.79], [85.32, -2063.93], [80.43, -2202.28], [80.03, -2213.46]], "length": 156.77}, {"u": 53447075, "v": 2634693264, "oneway": false, "points": [[85.54, -2056.79], [82.44, -2056.64], [73.77, -2056.26]], "length": 11.78}, {"u": 53447076, "v": 53447075, "oneway": false, "points": [[80.03, -2213.46], [80.43, -2202.28], [85.32, -2063.93], [85.54, -2056.79]], "length": 156.77}, {"u": 53447076, "v": 53465696, "oneway": false, "points": [[80.03, -2213.46], [94.46, -2220.88], [99.59, -2228.13], [102.45, -2233.43]], "length": 31.13}, {"u": 53447076, "v": 3937040992, "oneway": false, "points": [[80.03, -2213.46], [70.66, -2211.49], [63.16, -2210.64], [47.77, -2209.81]], "length": 32.54}, {"u": 53447618, "v": 1179796036, "oneway": false, "points": [[-1578.56, -1959.87], [-1571.2, -1955.93], [-1515.9, -1926.27], [-1512.41, -1924.38], [-1499.62, -1917.44], [-1476.75, -1904.6], [-1474.46, -1903.31], [-1468.27, -1899.83]], "length": 125.58}, {"u": 53447618, "v": 5497859257, "oneway": false, "points": [[-1578.56, -1959.87], [-1573.91, -1968.4], [-1572.82, -1970.4], [-1499.15, -2105.54], [-1477.45, -2141.95], [-1468.69, -2149.09], [-1459.27, -2153.36], [-1448.07, -2154.75], [-1430.03, -2156.97], [-1415.22, -2157.87], [-1395.36, -2158.56], [-1390.7, -2158.72], [-1380.46, -2159.08]], "length": 309.02}, {"u": 53447618, "v": 53447620, "oneway": false, "points": [[-1578.56, -1959.87], [-1587.04, -1964.42], [-1621.98, -1983.13], [-1655.25, -2001.92], [-1661.99, -2005.73]], "length": 95.21}, {"u": 53447618, "v": 2573847767, "oneway": false, "points": [[-1578.56, -1959.87], [-1582.24, -1953.13], [-1583.03, -1951.67], [-1613.15, -1896.57], [-1615.15, -1892.92]], "length": 76.3}, {"u": 53447620, "v": 53612039, "oneway": false, "points": [[-1661.99, -2005.73], [-1657.4, -2014.07], [-1617.98, -2085.68], [-1590.27, -2136.94], [-1557.82, -2193.33], [-1535.35, -2234.1], [-1527.32, -2245.36], [-1514.74, -2257.25]], "length": 292.29}, {"u": 53447620, "v": 2573847776, "oneway": false, "points": [[-1661.99, -2005.73], [-1666.09, -1998.1], [-1667.21, -1996.09], [-1695.18, -1945.55], [-1696.44, -1943.28], [-1699.24, -1937.88]], "length": 77.41}, {"u": 53447620, "v": 1153239288, "oneway": false, "points": [[-1661.99, -2005.73], [-1668.78, -2009.43], [-1754.68, -2056.13], [-1758.3, -2057.86], [-1765.47, -2061.3]], "length": 117.47}, {"u": 53447620, "v": 53447618, "oneway": false, "points": [[-1661.99, -2005.73], [-1655.25, -2001.92], [-1621.98, -1983.13], [-1587.04, -1964.42], [-1578.56, -1959.87]], "length": 95.21}, {"u": 53453124, "v": 53536993, "oneway": false, "points": [[1146.45, 1196.92], [1153.67, 1203.53], [1289.09, 1327.02], [1296.4, 1333.68]], "length": 202.95}, {"u": 53453124, "v": 349378518, "oneway": false, "points": [[1146.45, 1196.92], [1140.54, 1191.54], [1004.96, 1068.3], [998.36, 1062.38]], "length": 200.08}, {"u": 53453124, "v": 53453137, "oneway": false, "points": [[1146.45, 1196.92], [1139.86, 1204.21], [1138.45, 1205.75], [1085.75, 1263.9], [1079.53, 1270.77]], "length": 99.66}, {"u": 53453124, "v": 53430027, "oneway": false, "points": [[1146.45, 1196.92], [1152.15, 1190.68], [1154.24, 1188.36], [1176.09, 1164.38], [1187.34, 1152.02]], "length": 60.74}, {"u": 53453137, "v": 3859915626, "oneway": false, "points": [[1079.53, 1270.77], [1086.91, 1277.58], [1088.8, 1279.33], [1135.21, 1322.16], [1148.93, 1334.68], [1153.81, 1339.13], [1164.26, 1348.67], [1179.47, 1362.57], [1203.26, 1384.28], [1219.51, 1399.11], [1221.55, 1400.97], [1225.45, 1404.58]], "length": 197.99}, {"u": 53453137, "v": 1699123250, "oneway": false, "points": [[1079.53, 1270.77], [1073.42, 1265.21], [1071.4, 1263.37], [941.23, 1145.05], [938.22, 1142.4], [931.39, 1136.11]], "length": 200.19}, {"u": 53453137, "v": 53453147, "oneway": false, "points": [[1079.53, 1270.77], [1074.05, 1277.02], [1020.41, 1338.29], [1018.43, 1340.49], [1012.59, 1346.78]], "length": 101.29}, {"u": 53453137, "v": 53453124, "oneway": false, "points": [[1079.53, 1270.77], [1085.75, 1263.9], [1138.45, 1205.75], [1139.86, 1204.21], [1146.45, 1196.92]], "length": 99.66}, {"u": 53453147, "v": 53453152, "oneway": false, "points": [[1012.59, 1346.78], [1008.97, 1350.83], [1006.36, 1353.66], [1004.43, 1355.76], [969.9, 1392.0], [952.35, 1411.44], [950.69, 1413.26], [944.4, 1420.22]], "length": 100.23}, {"u": 53453147, "v": 53536998, "oneway": true, "points": [[1012.59, 1346.78], [1018.59, 1352.29], [1059.88, 1390.2], [1151.37, 1474.18], [1153.61, 1476.09], [1161.07, 1482.05]], "length": 200.88}, {"u": 53453147, "v": 53453137, "oneway": false, "points": [[1012.59, 1346.78], [1018.43, 1340.49], [1020.41, 1338.29], [1074.05, 1277.02], [1079.53, 1270.77]], "length": 101.29}, {"u": 53453152, "v": 53437716, "oneway": false, "points": [[944.4, 1420.22], [939.35, 1425.74], [936.56, 1428.93], [919.74, 1447.48], [913.67, 1454.5]], "length": 46.04}, {"u": 53453152, "v": 53453147, "oneway": false, "points": [[944.4, 1420.22], [950.69, 1413.26], [952.35, 1411.44], [969.9, 1392.0], [1004.43, 1355.76], [1006.36, 1353.66], [1008.97, 1350.83], [1012.59, 1346.78]], "length": 100.23}, {"u": 53453152, "v": 1699123277, "oneway": true, "points": [[944.4, 1420.22], [937.95, 1414.43], [801.24, 1291.99], [795.32, 1286.69]], "length": 200.14}, {"u": 53453164, "v": 53433662, "oneway": false, "points": [[889.26, 1481.42], [824.66, 1553.16]], "length": 96.54}, {"u": 53453164, "v": 53437716, "oneway": false, "points": [[889.26, 1481.42], [913.67, 1454.5]], "length": 36.34}, {"u": 53453164, "v": 53433643, "oneway": false, "points": [[889.26, 1481.42], [882.9, 1475.44], [820.25, 1416.54]], "length": 94.72}, {"u": 53453173, "v": 53433662, "oneway": false, "points": [[748.49, 1630.67], [753.38, 1628.76], [754.98, 1627.9], [757.84, 1626.36], [761.82, 1623.08], [792.74, 1587.96], [818.73, 1559.63], [824.66, 1553.16]], "length": 109.49}, {"u": 53453173, "v": 53578339, "oneway": false, "points": [[748.49, 1630.67], [745.95, 1622.52], [725.47, 1556.97], [694.09, 1458.5], [677.86, 1407.97]], "length": 233.64}, {"u": 53453173, "v": 53672943, "oneway": false, "points": [[748.49, 1630.67], [750.51, 1637.29], [751.94, 1641.97], [753.88, 1647.16], [756.29, 1652.79], [758.91, 1656.28], [798.33, 1700.56], [804.23, 1707.2]], "length": 96.0}, {"u": 53454630, "v": 53444622, "oneway": false, "points": [[-2532.47, -1134.86], [-2525.75, -1142.74], [-2500.79, -1172.06], [-2476.08, -1202.39], [-2470.61, -1209.09]], "length": 96.63}, {"u": 53454630, "v": 4874980024, "oneway": false, "points": [[-2532.47, -1134.86], [-2538.17, -1128.3], [-2563.9, -1098.41], [-2587.33, -1070.89], [-2589.83, -1067.94], [-2595.14, -1061.52]], "length": 96.47}, {"u": 53454630, "v": 53473289, "oneway": false, "points": [[-2532.47, -1134.86], [-2540.19, -1141.09], [-2632.33, -1217.12], [-2634.98, -1219.3], [-2641.43, -1224.62]], "length": 141.17}, {"u": 53454630, "v": 53473273, "oneway": false, "points": [[-2532.47, -1134.86], [-2525.59, -1128.8], [-2403.01, -1024.35], [-2398.37, -1020.39], [-2390.79, -1013.93]], "length": 186.27}, {"u": 53454656, "v": 53621162, "oneway": false, "points": [[-2450.42, -1320.14], [-2478.85, -1343.8]], "length": 36.99}, {"u": 53454656, "v": 53454658, "oneway": false, "points": [[-2450.42, -1320.14], [-2450.74, -1338.18], [-2450.86, -1344.62]], "length": 24.49}, {"u": 53454656, "v": 53692040, "oneway": false, "points": [[-2450.42, -1320.14], [-2449.04, -1284.51], [-2448.32, -1256.81], [-2448.29, -1236.88], [-2448.28, -1223.8]], "length": 96.37}, {"u": 53454658, "v": 53621162, "oneway": false, "points": [[-2450.86, -1344.62], [-2478.85, -1343.8]], "length": 28.0}, {"u": 53454658, "v": 3812685626, "oneway": false, "points": [[-2450.86, -1344.62], [-2450.9, -1355.0], [-2451.03, -1358.49], [-2452.68, -1404.86], [-2453.81, -1423.34], [-2456.05, -1425.64], [-2458.29, -1427.96], [-2464.57, -1434.42]], "length": 94.23}, {"u": 53454658, "v": 53454656, "oneway": false, "points": [[-2450.86, -1344.62], [-2450.74, -1338.18], [-2450.42, -1320.14]], "length": 24.49}, {"u": 53454658, "v": 2637157420, "oneway": false, "points": [[-2450.86, -1344.62], [-2441.68, -1344.91], [-2383.18, -1346.49]], "length": 67.71}, {"u": 53455651, "v": 53455653, "oneway": false, "points": [[301.15, 981.15], [346.18, 1021.88]], "length": 60.72}, {"u": 53455653, "v": 53455651, "oneway": false, "points": [[346.18, 1021.88], [301.15, 981.15]], "length": 60.72}, {"u": 53455653, "v": 53455657, "oneway": false, "points": [[346.18, 1021.88], [387.25, 1059.01], [418.75, 1087.5], [424.85, 1093.03]], "length": 106.08}, {"u": 53455653, "v": 53631422, "oneway": true, "points": [[346.18, 1021.88], [348.52, 1019.21], [407.58, 951.63], [409.92, 948.96], [416.23, 941.74]], "length": 106.43}, {"u": 53455657, "v": 53672961, "oneway": false, "points": [[424.85, 1093.03], [391.35, 1130.15]], "length": 50.0}, {"u": 53455657, "v": 53455653, "oneway": false, "points": [[424.85, 1093.03], [418.75, 1087.5], [387.25, 1059.01], [346.18, 1021.88]], "length": 106.08}, {"u": 53455657, "v": 1699123266, "oneway": false, "points": [[424.85, 1093.03], [490.11, 1020.75], [494.9, 1015.45]], "length": 104.53}, {"u": 53456047, "v": 53456049, "oneway": true, "points": [[-2190.38, -213.35], [-2190.68, -222.86], [-2190.77, -226.99], [-2191.07, -241.4], [-2191.1, -244.99], [-2191.34, -254.86]], "length": 41.52}, {"u": 53456047, "v": 53589716, "oneway": true, "points": [[-2190.38, -213.35], [-2211.18, -212.04], [-2226.5, -210.45], [-2237.07, -208.56]], "length": 46.97}, {"u": 53456049, "v": 53596818, "oneway": true, "points": [[-2191.34, -254.86], [-2158.16, -270.92], [-2154.78, -272.56], [-2143.53, -278.18]], "length": 53.19}, {"u": 53456081, "v": 1425250001, "oneway": false, "points": [[462.32, -116.88], [438.09, -90.56], [437.16, -89.54], [432.49, -84.46]], "length": 44.06}, {"u": 53461150, "v": 316302550, "oneway": false, "points": [[414.88, 804.07], [420.85, 797.52], [421.98, 796.29], [476.4, 736.63], [484.27, 727.99]], "length": 102.97}, {"u": 53461150, "v": 1699123271, "oneway": true, "points": [[414.88, 804.07], [421.51, 810.43], [470.43, 856.63], [473.48, 859.51], [488.02, 873.02], [488.82, 873.75], [495.82, 880.05], [525.48, 905.8], [534.45, 913.59], [556.89, 933.45], [563.91, 939.7]], "length": 201.54}, {"u": 53461150, "v": 53461154, "oneway": false, "points": [[414.88, 804.07], [409.9, 809.54], [408.77, 810.77], [405.87, 813.95], [366.37, 857.25], [353.68, 871.17], [352.89, 872.04], [347.26, 878.2]], "length": 100.34}, {"u": 53461154, "v": 316292008, "oneway": true, "points": [[347.26, 878.2], [340.94, 872.32], [204.32, 749.67], [197.69, 743.41]], "length": 201.35}, {"u": 53461154, "v": 2705148524, "oneway": false, "points": [[347.26, 878.2], [340.87, 885.21], [338.56, 887.75], [279.93, 952.02]], "length": 99.92}, {"u": 53461154, "v": 53461150, "oneway": false, "points": [[347.26, 878.2], [352.89, 872.04], [353.68, 871.17], [366.37, 857.25], [405.87, 813.95], [408.77, 810.77], [409.9, 809.54], [414.88, 804.07]], "length": 100.34}, {"u": 53461430, "v": 53461432, "oneway": false, "points": [[2313.75, 1354.01], [2320.66, 1358.72], [2448.7, 1446.02], [2487.01, 1471.65], [2492.7, 1475.46]], "length": 216.28}, {"u": 53461430, "v": 53437418, "oneway": false, "points": [[2313.75, 1354.01], [2309.58, 1351.24], [2300.38, 1345.16], [2286.41, 1334.99], [2270.97, 1321.86], [2257.27, 1308.9], [2251.81, 1303.73]], "length": 79.95}, {"u": 53461430, "v": 53628825, "oneway": false, "points": [[2313.75, 1354.01], [2319.46, 1347.88], [2321.62, 1345.56], [2371.22, 1292.36], [2376.85, 1286.33]], "length": 92.54}, {"u": 53461430, "v": 53537030, "oneway": false, "points": [[2313.75, 1354.01], [2308.75, 1361.92], [2307.41, 1364.02], [2297.21, 1380.14], [2264.64, 1427.43], [2261.6, 1431.83]], "length": 93.69}, {"u": 53461432, "v": 53461443, "oneway": false, "points": [[2492.7, 1475.46], [2497.9, 1479.62], [2506.95, 1486.84], [2541.9, 1510.09], [2563.21, 1521.79], [2565.97, 1523.31], [2572.44, 1526.02], [2578.91, 1528.73], [2586.06, 1529.64], [2587.14, 1529.77], [2595.43, 1530.82], [2619.51, 1531.19], [2628.84, 1531.54]], "length": 151.78}, {"u": 53461432, "v": 53461430, "oneway": false, "points": [[2492.7, 1475.46], [2487.01, 1471.65], [2448.7, 1446.02], [2320.66, 1358.72], [2313.75, 1354.01]], "length": 216.28}, {"u": 53461432, "v": 53589760, "oneway": false, "points": [[2492.7, 1475.46], [2496.86, 1469.32], [2498.24, 1467.29], [2520.86, 1433.88], [2528.54, 1426.0]], "length": 61.22}, {"u": 53461432, "v": 53537040, "oneway": false, "points": [[2492.7, 1475.46], [2486.15, 1484.49], [2485.37, 1485.57], [2440.32, 1547.72], [2436.87, 1552.5]], "length": 95.14}, {"u": 53461443, "v": 53461432, "oneway": false, "points": [[2628.84, 1531.54], [2619.51, 1531.19], [2595.43, 1530.82], [2587.14, 1529.77], [2586.06, 1529.64], [2578.91, 1528.73], [2572.44, 1526.02], [2565.97, 1523.31], [2563.21, 1521.79], [2541.9, 1510.09], [2506.95, 1486.84], [2497.9, 1479.62], [2492.7, 1475.46]], "length": 151.78}, {"u": 53461443, "v": 53596324, "oneway": false, "points": [[2628.84, 1531.54], [2637.53, 1531.78], [2651.24, 1532.17], [2718.45, 1534.71]], "length": 89.67}, {"u": 53461443, "v": 53496307, "oneway": false, "points": [[2628.84, 1531.54], [2629.34, 1539.78], [2630.19, 1554.1], [2630.8, 1564.24], [2633.26, 1605.67], [2635.16, 1637.74]], "length": 106.39}, {"u": 53461443, "v": 53498447, "oneway": false, "points": [[2628.84, 1531.54], [2628.52, 1523.75], [2627.07, 1488.48], [2624.24, 1448.77]], "length": 82.91}, {"u": 53461447, "v": 53461450, "oneway": false, "points": [[838.74, 127.14], [876.33, 136.3], [894.98, 141.26], [912.5, 145.91], [936.43, 152.3], [957.2, 157.84], [982.97, 164.7], [993.93, 167.61]], "length": 160.39}, {"u": 53461450, "v": 53461447, "oneway": false, "points": [[993.93, 167.61], [982.97, 164.7], [957.2, 157.84], [936.43, 152.3], [912.5, 145.91], [894.98, 141.26], [876.33, 136.3], [838.74, 127.14]], "length": 160.39}, {"u": 53461450, "v": 53461456, "oneway": false, "points": [[993.93, 167.61], [1002.33, 169.74], [1006.13, 172.64], [1013.55, 178.03], [1019.75, 183.1]], "length": 30.62}, {"u": 53461450, "v": 2707919647, "oneway": false, "points": [[993.93, 167.61], [1001.76, 160.41], [1010.36, 146.04], [1011.04, 144.78], [1014.58, 138.24]], "length": 36.25}, {"u": 53461450, "v": 53432331, "oneway": false, "points": [[993.93, 167.61], [987.06, 174.96], [952.24, 212.24], [936.3, 229.29], [935.06, 230.61], [928.85, 237.25]], "length": 95.32}, {"u": 53461456, "v": 53461450, "oneway": false, "points": [[1019.75, 183.1], [1013.55, 178.03], [1006.13, 172.64], [1002.33, 169.74], [993.93, 167.61]], "length": 30.62}, {"u": 53461456, "v": 53445467, "oneway": false, "points": [[1019.75, 183.1], [1139.92, 292.58], [1146.92, 298.95]], "length": 172.03}, {"u": 53461463, "v": 53461467, "oneway": false, "points": [[1296.13, 434.9], [1302.25, 440.74], [1333.09, 468.16], [1419.59, 548.06], [1436.87, 564.47], [1443.23, 569.82]], "length": 199.62}, {"u": 53461463, "v": 53445467, "oneway": false, "points": [[1296.13, 434.9], [1288.65, 428.07], [1152.78, 304.3], [1146.92, 298.95]], "length": 201.86}, {"u": 53461463, "v": 53667261, "oneway": true, "points": [[1296.13, 434.9], [1302.51, 428.28], [1315.57, 415.97], [1327.38, 402.14], [1340.97, 382.68], [1353.8, 367.74], [1355.63, 365.61], [1361.72, 358.51]], "length": 100.92}, {"u": 53461463, "v": 3235649725, "oneway": false, "points": [[1296.13, 434.9], [1288.96, 442.74], [1287.46, 444.38], [1253.76, 481.18], [1235.93, 500.67], [1234.2, 502.55], [1228.52, 508.76]], "length": 100.13}, {"u": 53461467, "v": 53461463, "oneway": false, "points": [[1443.23, 569.82], [1436.87, 564.47], [1419.59, 548.06], [1333.09, 468.16], [1302.25, 440.74], [1296.13, 434.9]], "length": 199.62}, {"u": 53461467, "v": 53461474, "oneway": false, "points": [[1443.23, 569.82], [1450.13, 575.95], [1473.73, 596.88], [1488.22, 609.73], [1504.89, 624.53], [1586.76, 699.31], [1592.94, 704.77]], "length": 201.56}, {"u": 53461467, "v": 316305099, "oneway": false, "points": [[1443.23, 569.82], [1450.61, 561.73], [1505.54, 500.94], [1511.82, 493.98]], "length": 102.25}, {"u": 53461467, "v": 53432339, "oneway": false, "points": [[1443.23, 569.82], [1436.84, 576.91], [1410.72, 605.88], [1409.83, 606.86], [1402.42, 615.07], [1402.19, 615.32], [1382.95, 636.61], [1376.81, 643.41]], "length": 99.14}, {"u": 53461474, "v": 2713353784, "oneway": false, "points": [[1592.94, 704.77], [1600.36, 696.67], [1630.37, 663.02], [1654.91, 637.52], [1661.71, 630.46]], "length": 101.26}, {"u": 53461474, "v": 2925570317, "oneway": false, "points": [[1592.94, 704.77], [1586.93, 712.11], [1531.67, 773.58], [1525.84, 780.08]], "length": 100.88}, {"u": 53461474, "v": 53461467, "oneway": false, "points": [[1592.94, 704.77], [1586.76, 699.31], [1504.89, 624.53], [1488.22, 609.73], [1473.73, 596.88], [1450.13, 575.95], [1443.23, 569.82]], "length": 201.56}, {"u": 53461474, "v": 53461478, "oneway": false, "points": [[1592.94, 704.77], [1599.99, 711.37], [1665.46, 767.68], [1736.03, 833.69], [1742.25, 839.49]], "length": 201.15}, {"u": 53461478, "v": 53432346, "oneway": false, "points": [[1742.25, 839.49], [1735.69, 846.92], [1684.04, 905.36], [1680.88, 908.59], [1675.33, 914.28]], "length": 100.37}, {"u": 53461478, "v": 53571775, "oneway": false, "points": [[1742.25, 839.49], [1748.71, 832.37], [1802.54, 774.1], [1803.65, 772.97], [1810.92, 765.56]], "length": 100.91}, {"u": 53461478, "v": 53461474, "oneway": false, "points": [[1742.25, 839.49], [1736.03, 833.69], [1665.46, 767.68], [1599.99, 711.37], [1592.94, 704.77]], "length": 201.15}, {"u": 53461478, "v": 53461491, "oneway": false, "points": [[1742.25, 839.49], [1749.67, 846.21], [1885.91, 969.64], [1892.03, 975.19]], "length": 202.11}, {"u": 53461491, "v": 53560789, "oneway": false, "points": [[1892.03, 975.19], [1897.53, 969.13], [1918.6, 946.11], [1953.02, 908.22], [1959.4, 901.21]], "length": 100.06}, {"u": 53461491, "v": 53432349, "oneway": false, "points": [[1892.03, 975.19], [1885.42, 982.52], [1848.66, 1023.2], [1832.09, 1041.53], [1830.06, 1043.78], [1824.33, 1050.12]], "length": 100.99}, {"u": 53461491, "v": 53461499, "oneway": false, "points": [[1892.03, 975.19], [1898.27, 980.86], [1914.83, 996.9], [1985.54, 1061.24], [1994.87, 1069.75], [2024.55, 1096.82], [2040.05, 1110.96]], "length": 200.86}, {"u": 53461491, "v": 53461478, "oneway": false, "points": [[1892.03, 975.19], [1885.91, 969.64], [1749.67, 846.21], [1742.25, 839.49]], "length": 202.11}, {"u": 53461499, "v": 53432353, "oneway": false, "points": [[2040.05, 1110.96], [2033.88, 1117.5], [1996.62, 1157.08], [1980.72, 1176.87], [1974.77, 1183.56], [1960.78, 1199.3], [1954.98, 1205.82]], "length": 127.48}, {"u": 53461499, "v": 53461491, "oneway": false, "points": [[2040.05, 1110.96], [2024.55, 1096.82], [1994.87, 1069.75], [1985.54, 1061.24], [1914.83, 996.9], [1898.27, 980.86], [1892.03, 975.19]], "length": 200.86}, {"u": 53461499, "v": 53461500, "oneway": false, "points": [[2040.05, 1110.96], [2047.25, 1117.04], [2090.73, 1154.95]], "length": 67.11}, {"u": 53461500, "v": 53432356, "oneway": true, "points": [[2090.73, 1154.95], [2084.1, 1162.26], [2057.63, 1192.81], [2053.71, 1197.2], [2049.99, 1200.57], [2044.29, 1205.3], [2028.98, 1217.79], [2013.68, 1230.34], [1999.62, 1241.41], [1997.07, 1243.59], [1990.48, 1248.62]], "length": 137.69}, {"u": 53461500, "v": 53461499, "oneway": false, "points": [[2090.73, 1154.95], [2047.25, 1117.04], [2040.05, 1110.96]], "length": 67.11}, {"u": 53461500, "v": 53461503, "oneway": false, "points": [[2090.73, 1154.95], [2123.72, 1185.52], [2128.68, 1189.89]], "length": 51.59}, {"u": 53461503, "v": 2707919868, "oneway": false, "points": [[2128.68, 1189.89], [2137.31, 1182.07], [2192.56, 1131.9], [2203.03, 1121.71]], "length": 100.88}, {"u": 53461503, "v": 2948601586, "oneway": false, "points": [[2128.68, 1189.89], [2121.49, 1196.69], [2062.68, 1252.36], [2059.81, 1254.96], [2031.38, 1280.62], [2030.24, 1281.67], [2023.52, 1287.95]], "length": 143.8}, {"u": 53461503, "v": 53461500, "oneway": false, "points": [[2128.68, 1189.89], [2123.72, 1185.52], [2090.73, 1154.95]], "length": 51.59}, {"u": 53461749, "v": 53607075, "oneway": false, "points": [[-1902.37, -224.77], [-1899.43, -230.12], [-1895.18, -235.5], [-1892.36, -238.57], [-1888.83, -242.9], [-1886.47, -246.12], [-1884.51, -249.48], [-1881.99, -254.9], [-1879.51, -262.17], [-1877.96, -269.33], [-1877.11, -282.18], [-1877.27, -297.35], [-1878.32, -342.45], [-1878.41, -346.23], [-1878.73, -355.78]], "length": 138.08}, {"u": 53461749, "v": 1345424871, "oneway": true, "points": [[-1902.37, -224.77], [-1921.22, -224.04], [-1964.71, -222.2], [-1967.29, -222.09], [-2000.49, -220.73], [-2003.67, -220.61], [-2007.54, -220.49]], "length": 105.27}, {"u": 53461749, "v": 37924361, "oneway": false, "points": [[-1902.37, -224.77], [-1904.08, -220.62], [-1908.24, -210.96], [-1908.77, -208.89], [-1909.04, -208.15], [-1912.04, -199.22], [-1912.84, -193.86], [-1913.43, -188.65], [-1913.69, -183.45], [-1912.02, -126.81], [-1911.96, -125.43], [-1911.7, -116.02], [-1910.65, -80.35], [-1909.75, -49.59], [-1909.66, -46.86], [-1909.18, -30.28]], "length": 196.46}, {"u": 53461758, "v": 53456047, "oneway": true, "points": [[-2141.11, -214.95], [-2190.38, -213.35]], "length": 49.3}, {"u": 53461758, "v": 53596818, "oneway": false, "points": [[-2141.11, -214.95], [-2141.48, -224.42], [-2141.64, -228.65], [-2143.02, -264.69], [-2143.18, -269.05], [-2143.53, -278.18]], "length": 63.28}, {"u": 53461764, "v": 452866506, "oneway": true, "points": [[-2260.25, -205.12], [-2300.03, -205.57], [-2305.44, -205.62], [-2320.2, -204.63], [-2333.47, -203.73], [-2353.55, -201.54], [-2368.72, -199.74], [-2379.57, -198.42], [-2389.73, -196.78], [-2402.11, -194.24], [-2410.5, -191.63], [-2419.49, -188.59], [-2431.34, -183.84], [-2436.71, -181.82], [-2443.95, -180.23], [-2449.79, -180.02], [-2457.24, -180.96], [-2465.68, -183.57]], "length": 209.01}, {"u": 53461764, "v": 6577823481, "oneway": true, "points": [[-2260.25, -205.12], [-2299.75, -200.55], [-2305.17, -199.95], [-2307.77, -199.72]], "length": 47.83}, {"u": 53461796, "v": 53456049, "oneway": true, "points": [[-2370.82, -212.19], [-2324.55, -215.9], [-2306.02, -217.38], [-2272.17, -220.64], [-2257.09, -223.52], [-2252.09, -225.37], [-2245.08, -227.97], [-2233.01, -234.21], [-2191.34, -254.86]], "length": 187.27}, {"u": 53461816, "v": 53489932, "oneway": false, "points": [[-2941.35, -218.88], [-2942.88, -210.3], [-2943.27, -208.12], [-2949.59, -172.65]], "length": 46.96}, {"u": 53461816, "v": 1180005830, "oneway": false, "points": [[-2941.35, -218.88], [-2876.62, -208.86], [-2868.18, -207.56], [-2859.77, -206.25]], "length": 82.55}, {"u": 53461816, "v": 53461818, "oneway": false, "points": [[-2941.35, -218.88], [-2969.44, -223.23], [-2977.53, -224.49], [-2997.23, -227.54], [-3005.09, -228.76]], "length": 64.5}, {"u": 53461818, "v": 53475312, "oneway": false, "points": [[-3005.09, -228.76], [-3003.66, -237.85], [-3003.15, -240.74], [-2998.17, -272.68], [-2993.61, -302.49], [-2993.19, -305.27], [-2991.84, -314.17]], "length": 86.43}, {"u": 53461818, "v": 53475305, "oneway": false, "points": [[-3005.09, -228.76], [-3006.5, -220.0], [-3006.92, -217.27], [-3018.17, -146.33]], "length": 83.46}, {"u": 53461818, "v": 53461816, "oneway": false, "points": [[-3005.09, -228.76], [-2997.23, -227.54], [-2977.53, -224.49], [-2969.44, -223.23], [-2941.35, -218.88]], "length": 64.5}, {"u": 53461818, "v": 53461820, "oneway": false, "points": [[-3005.09, -228.76], [-3012.91, -229.97], [-3070.32, -238.85]], "length": 66.01}, {"u": 53461820, "v": 53659829, "oneway": false, "points": [[-3070.32, -238.85], [-3071.62, -230.67], [-3072.23, -226.79], [-3084.05, -148.31]], "length": 91.57}, {"u": 53461820, "v": 53461818, "oneway": false, "points": [[-3070.32, -238.85], [-3012.91, -229.97], [-3005.09, -228.76]], "length": 66.01}, {"u": 53462362, "v": 13030502567, "oneway": false, "points": [[-2556.53, -897.51], [-2553.58, -894.99]], "length": 3.88}, {"u": 53462362, "v": 1180005819, "oneway": false, "points": [[-2556.53, -897.51], [-2562.4, -890.37], [-2562.36, -886.54], [-2562.01, -857.92], [-2561.56, -848.28], [-2561.4, -829.15], [-2560.01, -820.57]], "length": 79.17}, {"u": 53462362, "v": 3812685575, "oneway": false, "points": [[-2556.53, -897.51], [-2567.39, -908.68], [-2574.66, -914.69], [-2584.53, -923.06], [-2589.61, -927.58], [-2642.17, -972.48], [-2651.93, -981.31], [-2658.58, -987.77]], "length": 136.31}, {"u": 53462374, "v": 4874980027, "oneway": false, "points": [[-2770.21, -1081.71], [-2760.59, -1087.48], [-2734.17, -1116.2], [-2708.87, -1145.99], [-2703.04, -1152.42]], "length": 98.01}, {"u": 53462374, "v": 53421621, "oneway": false, "points": [[-2770.21, -1081.71], [-2778.94, -1076.88], [-2794.35, -1073.02], [-2797.25, -1072.54], [-2800.56, -1072.55]], "length": 32.11}, {"u": 53462374, "v": 53462383, "oneway": false, "points": [[-2770.21, -1081.71], [-2785.11, -1095.38], [-2845.17, -1146.53], [-2857.38, -1157.01], [-2864.29, -1162.93]], "length": 124.29}, {"u": 53462374, "v": 3812685579, "oneway": false, "points": [[-2770.21, -1081.71], [-2759.84, -1073.6], [-2716.31, -1036.18], [-2702.92, -1024.82], [-2696.95, -1019.19]], "length": 96.34}, {"u": 53462383, "v": 53556400, "oneway": false, "points": [[-2864.29, -1162.93], [-2858.76, -1169.86], [-2856.67, -1172.36], [-2834.68, -1199.55], [-2807.64, -1229.91], [-2802.08, -1235.88]], "length": 95.91}, {"u": 53462383, "v": 53610868, "oneway": false, "points": [[-2864.29, -1162.93], [-2870.54, -1155.3], [-2871.86, -1153.88], [-2882.01, -1140.85], [-2895.01, -1124.67], [-2915.95, -1098.14], [-2921.17, -1091.33]], "length": 91.45}, {"u": 53462383, "v": 53462390, "oneway": false, "points": [[-2864.29, -1162.93], [-2871.22, -1168.99], [-2934.99, -1223.1], [-2954.44, -1239.56], [-2962.95, -1246.48]], "length": 129.29}, {"u": 53462383, "v": 53462374, "oneway": false, "points": [[-2864.29, -1162.93], [-2857.38, -1157.01], [-2845.17, -1146.53], [-2785.11, -1095.38], [-2770.21, -1081.71]], "length": 124.29}, {"u": 53462390, "v": 53556402, "oneway": false, "points": [[-2962.95, -1246.48], [-2956.63, -1254.24], [-2932.61, -1283.19], [-2906.2, -1314.08], [-2902.14, -1319.3]], "length": 94.88}, {"u": 53462390, "v": 53462393, "oneway": false, "points": [[-2962.95, -1246.48], [-2972.11, -1253.95], [-2981.52, -1261.92]], "length": 24.16}, {"u": 53462390, "v": 53462383, "oneway": false, "points": [[-2962.95, -1246.48], [-2954.44, -1239.56], [-2934.99, -1223.1], [-2871.22, -1168.99], [-2864.29, -1162.93]], "length": 129.29}, {"u": 53462393, "v": 53625770, "oneway": false, "points": [[-2981.52, -1261.92], [-2986.05, -1256.95], [-2988.48, -1254.2], [-3005.34, -1234.35], [-3011.71, -1226.71], [-3034.22, -1199.24], [-3040.96, -1190.86]], "length": 92.65}, {"u": 53462393, "v": 53462402, "oneway": false, "points": [[-2981.52, -1261.92], [-2987.47, -1267.5], [-3062.7, -1330.17]], "length": 106.07}, {"u": 53462393, "v": 53462390, "oneway": false, "points": [[-2981.52, -1261.92], [-2972.11, -1253.95], [-2962.95, -1246.48]], "length": 24.16}, {"u": 53462402, "v": 53556407, "oneway": false, "points": [[-3062.7, -1330.17], [-3056.5, -1337.52], [-3030.98, -1366.69], [-3005.12, -1397.29], [-3000.58, -1402.68]], "length": 95.48}, {"u": 53462402, "v": 3637918464, "oneway": false, "points": [[-3062.7, -1330.17], [-3069.48, -1335.98], [-3148.9, -1403.85]], "length": 113.4}, {"u": 53462402, "v": 53462393, "oneway": false, "points": [[-3062.7, -1330.17], [-2987.47, -1267.5], [-2981.52, -1261.92]], "length": 106.07}, {"u": 53463508, "v": 5890633223, "oneway": false, "points": [[-674.66, -2410.57], [-674.88, -2417.72]], "length": 7.15}, {"u": 53463508, "v": 5890633230, "oneway": true, "points": [[-674.66, -2410.57], [-681.78, -2410.15], [-708.39, -2408.92], [-714.55, -2411.97]], "length": 40.65}, {"u": 53463513, "v": 5890633223, "oneway": false, "points": [[-684.5, -2531.49], [-681.07, -2521.49], [-679.89, -2517.26], [-675.19, -2425.87], [-675.06, -2423.33], [-674.88, -2417.72]], "length": 114.62}, {"u": 53463513, "v": 53463519, "oneway": false, "points": [[-684.5, -2531.49], [-685.7, -2534.05], [-693.77, -2551.32], [-702.9, -2570.86], [-711.34, -2590.67], [-713.87, -2596.61], [-726.52, -2626.32], [-734.0, -2643.89]], "length": 122.84}, {"u": 53463513, "v": 53434863, "oneway": false, "points": [[-684.5, -2531.49], [-695.0, -2530.83], [-698.81, -2530.6], [-757.49, -2526.96], [-827.89, -2523.37], [-837.09, -2522.91]], "length": 152.83}, {"u": 53463519, "v": 53463513, "oneway": false, "points": [[-734.0, -2643.89], [-726.52, -2626.32], [-713.87, -2596.61], [-711.34, -2590.67], [-702.9, -2570.86], [-693.77, -2551.32], [-685.7, -2534.05], [-684.5, -2531.49]], "length": 122.84}, {"u": 53463519, "v": 53463523, "oneway": false, "points": [[-734.0, -2643.89], [-757.03, -2692.3], [-760.89, -2700.81], [-787.04, -2757.4]], "length": 125.3}, {"u": 53463519, "v": 53434865, "oneway": false, "points": [[-734.0, -2643.89], [-743.66, -2643.26], [-748.3, -2642.96], [-752.31, -2642.7], [-843.37, -2637.12]], "length": 109.57}, {"u": 53463523, "v": 53463519, "oneway": false, "points": [[-787.04, -2757.4], [-760.89, -2700.81], [-757.03, -2692.3], [-734.0, -2643.89]], "length": 125.3}, {"u": 53463523, "v": 53463532, "oneway": false, "points": [[-787.04, -2757.4], [-810.43, -2816.15], [-815.44, -2828.75], [-828.31, -2861.05], [-837.14, -2870.47], [-869.29, -2869.1], [-880.92, -2869.58], [-883.42, -2869.69], [-893.04, -2870.09]], "length": 180.42}, {"u": 53463523, "v": 53434867, "oneway": false, "points": [[-787.04, -2757.4], [-792.83, -2757.11], [-798.51, -2756.83], [-839.21, -2754.78], [-848.01, -2754.34]], "length": 61.04}, {"u": 53463532, "v": 53463523, "oneway": false, "points": [[-893.04, -2870.09], [-883.42, -2869.69], [-880.92, -2869.58], [-869.29, -2869.1], [-837.14, -2870.47], [-828.31, -2861.05], [-815.44, -2828.75], [-810.43, -2816.15], [-787.04, -2757.4]], "length": 180.42}, {"u": 53463532, "v": 53511712, "oneway": false, "points": [[-893.04, -2870.09], [-901.05, -2852.29], [-911.08, -2829.98], [-919.88, -2810.41], [-924.42, -2800.32], [-928.91, -2790.3], [-943.99, -2756.77], [-946.54, -2751.09]], "length": 130.48}, {"u": 53463532, "v": 1180187620, "oneway": false, "points": [[-893.04, -2870.09], [-888.85, -2884.23], [-887.5, -2891.68], [-885.86, -2903.03], [-885.02, -2914.76], [-884.56, -2926.08], [-884.86, -2936.6], [-885.58, -2946.68]], "length": 77.5}, {"u": 53463567, "v": 6233229328, "oneway": false, "points": [[-639.64, -2412.29], [-640.0, -2419.61]], "length": 7.32}, {"u": 53463567, "v": 2634708186, "oneway": false, "points": [[-639.64, -2412.29], [-639.34, -2406.98], [-639.13, -2404.64], [-626.21, -2292.98], [-622.37, -2262.54], [-616.9, -2217.58], [-615.43, -2190.99], [-614.98, -2182.79]], "length": 230.89}, {"u": 53463567, "v": 53463508, "oneway": true, "points": [[-639.64, -2412.29], [-645.58, -2412.0], [-665.74, -2411.04], [-674.66, -2410.57]], "length": 35.06}, {"u": 53465696, "v": 6401044370, "oneway": false, "points": [[102.45, -2233.43], [105.55, -2239.19], [108.07, -2250.93], [107.42, -2268.14], [106.44, -2279.56], [106.62, -2290.35], [107.96, -2297.83], [110.24, -2303.68], [141.82, -2348.25], [152.88, -2363.85], [172.28, -2384.63], [186.83, -2400.55], [198.01, -2413.31], [219.86, -2437.8], [225.11, -2443.53], [229.14, -2447.98], [233.41, -2454.53]], "length": 267.02}, {"u": 53465696, "v": 53573840, "oneway": false, "points": [[102.45, -2233.43], [108.59, -2229.43], [111.25, -2227.68], [126.88, -2220.01], [140.03, -2216.05], [155.57, -2214.05], [160.39, -2213.74], [176.66, -2213.89], [183.94, -2213.96], [197.9, -2215.91], [211.52, -2221.8], [217.86, -2226.21], [224.3, -2230.67], [230.79, -2238.81], [235.0, -2244.09], [248.18, -2262.13]], "length": 169.7}, {"u": 53465696, "v": 53447076, "oneway": false, "points": [[102.45, -2233.43], [99.59, -2228.13], [94.46, -2220.88], [80.03, -2213.46]], "length": 31.13}, {"u": 53467195, "v": 53467197, "oneway": false, "points": [[2818.96, 2679.22], [2818.48, 2680.72], [2815.91, 2688.67], [2804.01, 2725.58], [2799.6, 2739.24], [2795.95, 2750.56]], "length": 74.95}, {"u": 53467195, "v": 1706427647, "oneway": true, "points": [[2818.96, 2679.22], [2819.62, 2668.74], [2821.32, 2661.14], [2823.41, 2657.0], [2827.66, 2651.98], [2830.74, 2648.34], [2838.16, 2641.73]], "length": 44.21}, {"u": 53467197, "v": 53529532, "oneway": false, "points": [[2795.95, 2750.56], [2788.14, 2745.11], [2787.0, 2744.03], [2741.97, 2701.5], [2692.75, 2652.57], [2688.26, 2648.1]], "length": 148.77}, {"u": 53467197, "v": 53467195, "oneway": false, "points": [[2795.95, 2750.56], [2799.6, 2739.24], [2804.01, 2725.58], [2815.91, 2688.67], [2818.48, 2680.72], [2818.96, 2679.22]], "length": 74.95}, {"u": 53467413, "v": 1181324562, "oneway": false, "points": [[-915.92, 126.18], [-930.25, 142.09], [-941.86, 154.98], [-949.87, 163.89]], "length": 50.74}, {"u": 53467413, "v": 53521450, "oneway": false, "points": [[-915.92, 126.18], [-914.18, 127.74], [-911.49, 130.14], [-895.14, 144.68], [-887.52, 151.45], [-885.21, 153.51]], "length": 41.1}, {"u": 53467413, "v": 1181085486, "oneway": false, "points": [[-915.92, 126.18], [-863.0, 67.42], [-861.33, 65.57], [-855.8, 59.42]], "length": 89.84}, {"u": 53467500, "v": 53482952, "oneway": false, "points": [[-273.15, -447.8], [-279.18, -453.01], [-332.1, -500.78], [-344.11, -511.73], [-377.73, -542.37], [-383.23, -547.41], [-404.57, -567.0], [-412.9, -574.65], [-414.83, -576.41], [-422.65, -583.35]], "length": 201.81}, {"u": 53467500, "v": 53493114, "oneway": false, "points": [[-273.15, -447.8], [-265.63, -440.73], [-227.54, -405.24], [-205.77, -385.23], [-199.29, -378.73]], "length": 101.13}, {"u": 53467500, "v": 13324853247, "oneway": false, "points": [[-273.15, -447.8], [-279.79, -440.57], [-351.0, -362.95], [-359.73, -353.46]], "length": 128.05}, {"u": 53467500, "v": 53467506, "oneway": false, "points": [[-273.15, -447.8], [-267.66, -453.78], [-233.03, -491.53], [-214.35, -511.87], [-212.96, -513.39], [-206.86, -520.03]], "length": 98.04}, {"u": 53467506, "v": 53444048, "oneway": false, "points": [[-206.86, -520.03], [-200.02, -527.45], [-185.53, -543.19], [-161.73, -569.02], [-148.76, -583.11], [-137.44, -590.89]], "length": 99.49}, {"u": 53467506, "v": 53467500, "oneway": false, "points": [[-206.86, -520.03], [-212.96, -513.39], [-214.35, -511.87], [-233.03, -491.53], [-267.66, -453.78], [-273.15, -447.8]], "length": 98.04}, {"u": 53467506, "v": 53482954, "oneway": false, "points": [[-206.86, -520.03], [-213.45, -526.07], [-215.59, -528.03], [-246.34, -556.25], [-266.36, -574.6], [-272.49, -580.23], [-280.33, -587.41], [-280.9, -587.94], [-289.86, -596.22], [-305.65, -610.81], [-322.9, -626.46], [-348.39, -649.84], [-351.07, -652.27], [-356.4, -657.01]], "length": 202.79}, {"u": 53470168, "v": 53470169, "oneway": false, "points": [[-957.33, -2072.12], [-957.63, -2079.38], [-961.09, -2160.6], [-961.5, -2170.24]], "length": 98.21}, {"u": 53470168, "v": 53416782, "oneway": false, "points": [[-957.33, -2072.12], [-981.31, -2067.21], [-1001.11, -2061.09], [-1028.14, -2054.42], [-1047.01, -2053.22], [-1066.53, -2054.55]], "length": 111.52}, {"u": 53470168, "v": 53434870, "oneway": false, "points": [[-957.33, -2072.12], [-883.19, -2079.12], [-870.06, -2080.82], [-854.62, -2082.77], [-839.03, -2084.96], [-787.75, -2084.62]], "length": 170.3}, {"u": 53470169, "v": 53470170, "oneway": false, "points": [[-961.5, -2170.24], [-961.85, -2178.57], [-965.99, -2275.98], [-966.36, -2284.61]], "length": 114.47}, {"u": 53470169, "v": 53470168, "oneway": false, "points": [[-961.5, -2170.24], [-961.09, -2160.6], [-957.63, -2079.38], [-957.33, -2072.12]], "length": 98.21}, {"u": 53470169, "v": 53416784, "oneway": false, "points": [[-961.5, -2170.24], [-970.04, -2169.73], [-1022.78, -2166.61], [-1063.55, -2165.08], [-1072.69, -2164.74]], "length": 111.34}, {"u": 53470169, "v": 53434871, "oneway": false, "points": [[-961.5, -2170.24], [-952.17, -2170.65], [-861.14, -2174.45], [-797.01, -2177.2], [-791.17, -2177.36]], "length": 170.47}, {"u": 53470170, "v": 53416786, "oneway": false, "points": [[-966.36, -2284.61], [-1078.08, -2279.29]], "length": 111.85}, {"u": 53470170, "v": 53470173, "oneway": false, "points": [[-966.36, -2284.61], [-970.75, -2387.9], [-970.85, -2390.26], [-971.25, -2399.72]], "length": 115.22}, {"u": 53470170, "v": 53470169, "oneway": false, "points": [[-966.36, -2284.61], [-965.99, -2275.98], [-961.85, -2178.57], [-961.5, -2170.24]], "length": 114.47}, {"u": 53470170, "v": 53434862, "oneway": false, "points": [[-966.36, -2284.61], [-879.08, -2289.2], [-829.42, -2291.39], [-830.94, -2351.91], [-832.01, -2394.86], [-832.08, -2397.6], [-832.42, -2406.29]], "length": 252.04}, {"u": 53470173, "v": 53470170, "oneway": false, "points": [[-971.25, -2399.72], [-970.85, -2390.26], [-970.75, -2387.9], [-966.36, -2284.61]], "length": 115.22}, {"u": 53470173, "v": 53416788, "oneway": false, "points": [[-971.25, -2399.72], [-1074.66, -2394.69], [-1081.21, -2394.37]], "length": 110.09}, {"u": 53470173, "v": 53434862, "oneway": false, "points": [[-971.25, -2399.72], [-892.96, -2403.3], [-840.03, -2405.96], [-832.42, -2406.29]], "length": 138.98}, {"u": 53472268, "v": 53472269, "oneway": false, "points": [[-1887.78, -739.77], [-1897.76, -739.26], [-1923.72, -737.9], [-1960.47, -736.0]], "length": 72.78}, {"u": 53472268, "v": 4139816155, "oneway": true, "points": [[-1887.78, -739.77], [-1886.11, -690.2], [-1886.38, -663.13], [-1886.24, -651.75], [-1885.34, -641.05]], "length": 98.79}, {"u": 53472269, "v": 53472270, "oneway": false, "points": [[-1960.47, -736.0], [-1984.49, -734.75], [-2013.24, -733.26], [-2022.02, -732.8]], "length": 61.64}, {"u": 53472269, "v": 53472268, "oneway": false, "points": [[-1960.47, -736.0], [-1923.72, -737.9], [-1897.76, -739.26], [-1887.78, -739.77]], "length": 72.78}, {"u": 53472269, "v": 53545894, "oneway": false, "points": [[-1960.47, -736.0], [-1960.56, -740.3], [-1961.07, -765.11], [-1961.32, -777.35], [-1961.58, -790.1], [-1962.0, -809.93], [-1962.56, -837.14], [-1962.78, -846.45]], "length": 110.47}, {"u": 53472270, "v": 53472269, "oneway": false, "points": [[-2022.02, -732.8], [-2013.24, -733.26], [-1984.49, -734.75], [-1960.47, -736.0]], "length": 61.64}, {"u": 53472270, "v": 53602671, "oneway": true, "points": [[-2022.02, -732.8], [-2022.66, -762.54], [-2023.17, -786.82], [-2023.42, -798.71], [-2023.59, -806.73], [-2023.85, -818.81], [-2024.13, -831.94], [-2024.18, -834.59], [-2024.37, -843.61]], "length": 110.83}, {"u": 53472460, "v": 53479821, "oneway": false, "points": [[-503.99, 107.1], [-510.48, 114.23], [-511.84, 115.71], [-540.51, 147.21], [-550.52, 158.19], [-551.32, 159.06], [-553.23, 161.16], [-566.24, 175.45], [-571.8, 181.55]], "length": 100.71}, {"u": 53472460, "v": 53720172, "oneway": false, "points": [[-503.99, 107.1], [-498.55, 101.13], [-496.58, 98.95], [-487.24, 88.7], [-457.7, 56.28], [-455.14, 53.47], [-442.7, 39.8], [-436.21, 32.68]], "length": 100.66}, {"u": 53472460, "v": 53472467, "oneway": true, "points": [[-503.99, 107.1], [-510.87, 100.88], [-544.7, 70.29], [-555.47, 60.55], [-577.73, 40.41], [-602.76, 17.78], [-614.67, 7.02], [-615.37, 6.38], [-618.55, 3.51], [-622.71, -0.25], [-646.7, -21.95], [-652.64, -27.32]], "length": 200.41}, {"u": 53472467, "v": 2714977035, "oneway": false, "points": [[-652.64, -27.32], [-658.81, -20.59], [-661.09, -17.98], [-677.64, 0.05], [-678.65, 1.13], [-697.79, 21.96], [-698.42, 22.65], [-714.67, 40.34], [-720.32, 46.47]], "length": 100.12}, {"u": 53472467, "v": 53472474, "oneway": true, "points": [[-652.64, -27.32], [-660.46, -34.39], [-691.4, -62.36], [-698.9, -69.15], [-718.24, -86.63], [-726.46, -94.07], [-735.3, -102.09], [-778.83, -141.84], [-797.07, -158.0], [-803.3, -163.58]], "length": 203.14}, {"u": 53472474, "v": 3271744858, "oneway": true, "points": [[-803.3, -163.58], [-809.82, -156.33], [-815.57, -150.01], [-838.48, -124.78]], "length": 52.37}, {"u": 53472474, "v": 1181378741, "oneway": true, "points": [[-803.3, -163.58], [-810.77, -169.79], [-825.4, -183.21], [-847.51, -203.54]], "length": 59.61}, {"u": 53473010, "v": 2638675253, "oneway": false, "points": [[-1266.93, -2376.33], [-1273.43, -2364.03]], "length": 13.91}, {"u": 53473010, "v": 9146885459, "oneway": false, "points": [[-1266.93, -2376.33], [-1267.97, -2391.82], [-1270.19, -2424.41], [-1270.6, -2434.88], [-1271.39, -2454.72], [-1272.54, -2483.55], [-1273.67, -2512.23], [-1274.6, -2519.88], [-1274.88, -2522.13], [-1275.87, -2530.37], [-1276.02, -2531.61], [-1285.04, -2560.24], [-1294.48, -2590.2], [-1295.56, -2593.63], [-1297.75, -2612.84]], "length": 239.96}, {"u": 53473010, "v": 2638675264, "oneway": false, "points": [[-1266.93, -2376.33], [-1255.85, -2393.71], [-1250.08, -2402.76], [-1247.12, -2407.39], [-1204.59, -2488.88]], "length": 128.76}, {"u": 53473027, "v": 9146885459, "oneway": false, "points": [[-1314.08, -2873.63], [-1312.74, -2863.52], [-1312.42, -2861.12], [-1310.72, -2838.79], [-1308.24, -2806.22], [-1306.51, -2767.67], [-1305.46, -2744.16], [-1303.27, -2695.43], [-1300.6, -2635.83], [-1300.44, -2633.05], [-1299.39, -2624.58], [-1297.75, -2612.84]], "length": 261.42}, {"u": 53473027, "v": 4248941674, "oneway": false, "points": [[-1314.08, -2873.63], [-1327.4, -2871.08], [-1330.46, -2870.5], [-1364.85, -2862.42], [-1400.44, -2851.67], [-1415.38, -2844.17], [-1449.21, -2818.93]], "length": 148.1}, {"u": 53473027, "v": 1180187532, "oneway": false, "points": [[-1314.08, -2873.63], [-1305.18, -2875.35], [-1262.26, -2883.64], [-1245.56, -2886.87], [-1187.76, -2898.03], [-1157.38, -2903.89], [-1102.68, -2914.13], [-1016.0, -2930.04], [-1007.14, -2931.38]], "length": 312.33}, {"u": 53473264, "v": 53473273, "oneway": false, "points": [[-2196.53, -834.88], [-2196.79, -844.16], [-2196.91, -846.25], [-2215.97, -864.0], [-2245.66, -889.01], [-2379.79, -1004.46], [-2384.73, -1008.71], [-2390.79, -1013.93]], "length": 267.73}, {"u": 53473264, "v": 53556383, "oneway": false, "points": [[-2196.53, -834.88], [-2264.49, -832.06], [-2298.33, -830.67], [-2324.49, -829.35], [-2331.05, -829.06], [-2339.03, -828.73]], "length": 142.64}, {"u": 53473264, "v": 53483907, "oneway": false, "points": [[-2196.53, -834.88], [-2168.45, -835.93], [-2158.59, -836.5]], "length": 37.97}, {"u": 53473273, "v": 53454630, "oneway": false, "points": [[-2390.79, -1013.93], [-2398.37, -1020.39], [-2403.01, -1024.35], [-2525.59, -1128.8], [-2532.47, -1134.86]], "length": 186.27}, {"u": 53473273, "v": 53473264, "oneway": false, "points": [[-2390.79, -1013.93], [-2384.73, -1008.71], [-2379.79, -1004.46], [-2245.66, -889.01], [-2215.97, -864.0], [-2196.91, -846.25], [-2196.79, -844.16], [-2196.53, -834.88]], "length": 267.73}, {"u": 53473273, "v": 53444613, "oneway": false, "points": [[-2390.79, -1013.93], [-2385.04, -1020.79], [-2359.76, -1050.96], [-2334.5, -1081.29], [-2328.4, -1088.61]], "length": 97.31}, {"u": 53473273, "v": 53534017, "oneway": false, "points": [[-2390.79, -1013.93], [-2396.79, -1007.03], [-2422.89, -977.02], [-2448.48, -948.09], [-2454.97, -940.76]], "length": 97.33}, {"u": 53473289, "v": 53473302, "oneway": false, "points": [[-2641.43, -1224.62], [-2648.38, -1230.61], [-2650.86, -1232.72], [-2733.9, -1303.33], [-2739.23, -1308.17]], "length": 128.63}, {"u": 53473289, "v": 53454630, "oneway": false, "points": [[-2641.43, -1224.62], [-2634.98, -1219.3], [-2632.33, -1217.12], [-2540.19, -1141.09], [-2532.47, -1134.86]], "length": 141.17}, {"u": 53473289, "v": 53444627, "oneway": false, "points": [[-2641.43, -1224.62], [-2633.3, -1234.21], [-2608.81, -1263.13], [-2583.06, -1293.55], [-2577.34, -1300.3]], "length": 99.17}, {"u": 53473289, "v": 4874980027, "oneway": false, "points": [[-2641.43, -1224.62], [-2645.49, -1219.82], [-2672.51, -1187.94], [-2697.11, -1159.47], [-2703.04, -1152.42]], "length": 94.91}, {"u": 53473302, "v": 53473312, "oneway": false, "points": [[-2739.23, -1308.17], [-2746.94, -1315.06], [-2832.76, -1388.03], [-2839.28, -1393.56]], "length": 131.54}, {"u": 53473302, "v": 53473289, "oneway": false, "points": [[-2739.23, -1308.17], [-2733.9, -1303.33], [-2650.86, -1232.72], [-2648.38, -1230.61], [-2641.43, -1224.62]], "length": 128.63}, {"u": 53473302, "v": 53444632, "oneway": false, "points": [[-2739.23, -1308.17], [-2731.99, -1316.87], [-2707.38, -1346.46], [-2682.22, -1377.7], [-2676.66, -1384.62]], "length": 98.79}, {"u": 53473302, "v": 53556400, "oneway": false, "points": [[-2739.23, -1308.17], [-2743.88, -1303.03], [-2771.42, -1272.6], [-2795.86, -1243.33], [-2802.08, -1235.88]], "length": 95.81}, {"u": 53473312, "v": 53473321, "oneway": false, "points": [[-2839.28, -1393.56], [-2845.76, -1399.08], [-2930.19, -1471.2], [-2937.43, -1477.39]], "length": 129.08}, {"u": 53473312, "v": 53473302, "oneway": false, "points": [[-2839.28, -1393.56], [-2832.76, -1388.03], [-2746.94, -1315.06], [-2739.23, -1308.17]], "length": 131.54}, {"u": 53473312, "v": 53444642, "oneway": false, "points": [[-2839.28, -1393.56], [-2832.47, -1401.89], [-2808.18, -1431.62], [-2781.96, -1461.73], [-2775.79, -1468.82]], "length": 98.48}, {"u": 53473312, "v": 53556402, "oneway": false, "points": [[-2839.28, -1393.56], [-2843.96, -1387.83], [-2869.74, -1356.29], [-2895.01, -1327.44], [-2902.14, -1319.3]], "length": 97.31}, {"u": 53473321, "v": 3812685629, "oneway": false, "points": [[-2937.43, -1477.39], [-2943.79, -1482.82], [-3015.45, -1544.0], [-3022.78, -1550.25]], "length": 112.22}, {"u": 53473321, "v": 53473312, "oneway": false, "points": [[-2937.43, -1477.39], [-2930.19, -1471.2], [-2845.76, -1399.08], [-2839.28, -1393.56]], "length": 129.08}, {"u": 53473321, "v": 53444645, "oneway": false, "points": [[-2937.43, -1477.39], [-2931.15, -1484.82], [-2906.11, -1514.45], [-2880.04, -1545.3], [-2873.37, -1553.21]], "length": 99.26}, {"u": 53473321, "v": 53556407, "oneway": false, "points": [[-2937.43, -1477.39], [-2942.37, -1471.56], [-2968.52, -1440.6], [-2993.81, -1410.69], [-3000.58, -1402.68]], "length": 97.82}, {"u": 53475092, "v": 53475094, "oneway": false, "points": [[2959.22, 2343.19], [2954.74, 2259.82], [2954.24, 2251.41]], "length": 91.91}, {"u": 53475094, "v": 53475096, "oneway": false, "points": [[2954.24, 2251.41], [2953.87, 2243.74], [2944.53, 2070.24], [2944.03, 2060.91]], "length": 190.78}, {"u": 53475094, "v": 53475092, "oneway": false, "points": [[2954.24, 2251.41], [2954.74, 2259.82], [2959.22, 2343.19]], "length": 91.91}, {"u": 53475094, "v": 53430839, "oneway": false, "points": [[2954.24, 2251.41], [2944.63, 2252.06], [2870.22, 2255.11], [2863.33, 2255.39]], "length": 91.0}, {"u": 53475096, "v": 53475099, "oneway": false, "points": [[2944.03, 2060.91], [2943.65, 2054.03], [2941.18, 2007.99], [2941.02, 2005.06], [2940.41, 1993.73]], "length": 67.27}, {"u": 53475096, "v": 53475094, "oneway": false, "points": [[2944.03, 2060.91], [2944.53, 2070.24], [2953.87, 2243.74], [2954.24, 2251.41]], "length": 190.78}, {"u": 53475096, "v": 53430844, "oneway": false, "points": [[2944.03, 2060.91], [2936.31, 2061.3], [2859.9, 2065.22], [2852.38, 2066.01]], "length": 91.8}, {"u": 53475099, "v": 53475096, "oneway": false, "points": [[2940.41, 1993.73], [2941.02, 2005.06], [2941.18, 2007.99], [2943.65, 2054.03], [2944.03, 2060.91]], "length": 67.27}, {"u": 53475099, "v": 53540839, "oneway": false, "points": [[2940.41, 1993.73], [2931.63, 1987.22], [2856.02, 1931.13], [2853.22, 1928.99], [2844.21, 1921.43]], "length": 120.36}, {"u": 53475305, "v": 53461818, "oneway": false, "points": [[-3018.17, -146.33], [-3006.92, -217.27], [-3006.5, -220.0], [-3005.09, -228.76]], "length": 83.46}, {"u": 53475312, "v": 53475324, "oneway": false, "points": [[-2991.84, -314.17], [-2991.33, -320.62], [-2991.09, -323.52], [-2992.21, -326.83], [-2996.75, -334.48], [-3004.71, -342.03], [-3018.41, -356.53], [-3029.33, -373.44], [-3030.75, -376.86], [-3034.84, -386.62]], "length": 87.1}, {"u": 53475312, "v": 53461818, "oneway": false, "points": [[-2991.84, -314.17], [-2993.19, -305.27], [-2993.61, -302.49], [-2998.17, -272.68], [-3003.15, -240.74], [-3003.66, -237.85], [-3005.09, -228.76]], "length": 86.43}, {"u": 53475312, "v": 53481441, "oneway": false, "points": [[-2991.84, -314.17], [-2984.45, -312.96], [-2854.59, -292.58], [-2846.89, -291.45]], "length": 146.73}, {"u": 53475324, "v": 53475312, "oneway": false, "points": [[-3034.84, -386.62], [-3030.75, -376.86], [-3029.33, -373.44], [-3018.41, -356.53], [-3004.71, -342.03], [-2996.75, -334.48], [-2992.21, -326.83], [-2991.09, -323.52], [-2991.33, -320.62], [-2991.84, -314.17]], "length": 87.1}, {"u": 53475324, "v": 53645778, "oneway": false, "points": [[-3034.84, -386.62], [-2999.27, -382.53], [-2990.3, -382.13], [-2972.06, -382.65], [-2960.21, -384.11], [-2950.16, -386.17], [-2937.95, -389.42], [-2921.08, -394.79], [-2909.56, -399.68], [-2904.35, -402.61], [-2903.0, -403.56], [-2893.89, -410.03]], "length": 146.88}, {"u": 53478277, "v": 4095606995, "oneway": false, "points": [[-2014.54, -1717.21], [-2014.76, -1724.22], [-2016.48, -1790.17], [-2017.06, -1810.26], [-2017.19, -1814.64], [-2017.22, -1823.51], [-2017.42, -1855.88], [-2018.82, -1866.25], [-2023.75, -1884.5], [-2025.77, -1892.2]], "length": 176.04}, {"u": 53478277, "v": 53529692, "oneway": false, "points": [[-2014.54, -1717.21], [-2014.35, -1708.32], [-2012.5, -1620.89], [-2011.92, -1604.34], [-2011.63, -1596.2]], "length": 121.05}, {"u": 53478277, "v": 53575901, "oneway": false, "points": [[-2014.54, -1717.21], [-2021.04, -1717.06], [-2061.31, -1716.13], [-2114.63, -1715.37], [-2118.22, -1715.18], [-2119.48, -1714.9], [-2120.3, -1714.15], [-2120.99, -1712.36], [-2121.11, -1710.03], [-2120.99, -1705.86], [-2119.08, -1652.89], [-2118.52, -1618.42]], "length": 202.02}, {"u": 53478277, "v": 2573847782, "oneway": false, "points": [[-2014.54, -1717.21], [-2008.67, -1717.43], [-1896.5, -1721.76], [-1813.77, -1724.96], [-1788.3, -1725.52], [-1780.37, -1725.69]], "length": 234.32}, {"u": 53479821, "v": 53441253, "oneway": false, "points": [[-571.8, 181.55], [-578.06, 188.42], [-601.22, 213.86], [-631.53, 247.49], [-633.26, 249.42], [-638.92, 255.75]], "length": 100.05}, {"u": 53479821, "v": 53472460, "oneway": false, "points": [[-571.8, 181.55], [-566.24, 175.45], [-553.23, 161.16], [-551.32, 159.06], [-550.52, 158.19], [-540.51, 147.21], [-511.84, 115.71], [-510.48, 114.23], [-503.99, 107.1]], "length": 100.71}, {"u": 53479821, "v": 2714977035, "oneway": false, "points": [[-571.8, 181.55], [-578.44, 175.52], [-609.65, 147.13], [-615.89, 141.45], [-627.73, 130.69], [-639.58, 119.9], [-640.55, 119.03], [-656.02, 104.95], [-658.54, 102.66], [-666.87, 95.09], [-667.58, 94.45], [-669.17, 92.99], [-676.66, 86.18], [-688.13, 75.75], [-688.75, 75.18], [-714.29, 51.95], [-720.32, 46.47]], "length": 200.76}, {"u": 53479821, "v": 5468393309, "oneway": false, "points": [[-571.8, 181.55], [-565.52, 187.28], [-551.98, 199.6], [-540.06, 210.44], [-530.43, 219.19], [-511.17, 236.71], [-491.2, 254.88], [-488.92, 256.95], [-474.35, 270.2]], "length": 131.73}, {"u": 53480554, "v": 1706427669, "oneway": false, "points": [[2377.16, 1863.82], [2371.48, 1867.31], [2367.2, 1869.95], [2328.48, 1893.74], [2314.45, 1902.36], [2311.02, 1904.47]], "length": 77.63}, {"u": 53480554, "v": 53572019, "oneway": false, "points": [[2377.16, 1863.82], [2380.17, 1868.5], [2400.97, 1900.93], [2426.02, 1941.23], [2440.25, 1963.35], [2449.87, 1978.65], [2454.58, 1986.13]], "length": 144.75}, {"u": 53480554, "v": 53503712, "oneway": false, "points": [[2377.16, 1863.82], [2373.21, 1857.34], [2371.11, 1853.89], [2352.17, 1823.67], [2349.78, 1819.74], [2339.12, 1802.2], [2328.09, 1784.05], [2327.14, 1782.49], [2325.39, 1779.62]], "length": 98.85}, {"u": 53481435, "v": 53481441, "oneway": false, "points": [[-2832.07, -384.7], [-2833.19, -378.48], [-2835.56, -362.36], [-2845.8, -298.7], [-2846.89, -291.45]], "length": 94.42}, {"u": 53481435, "v": 53514818, "oneway": false, "points": [[-2832.07, -384.7], [-2821.55, -382.15], [-2792.66, -375.27], [-2779.27, -371.65], [-2777.46, -370.81]], "length": 56.39}, {"u": 53481435, "v": 53645778, "oneway": false, "points": [[-2832.07, -384.7], [-2857.33, -394.08], [-2886.86, -406.34], [-2893.89, -410.03]], "length": 66.86}, {"u": 53481441, "v": 1180005830, "oneway": false, "points": [[-2846.89, -291.45], [-2848.23, -282.66], [-2856.95, -225.36], [-2858.17, -217.1], [-2858.45, -215.19], [-2859.77, -206.25]], "length": 86.17}, {"u": 53481441, "v": 53481435, "oneway": false, "points": [[-2846.89, -291.45], [-2845.8, -298.7], [-2835.56, -362.36], [-2833.19, -378.48], [-2832.07, -384.7]], "length": 94.42}, {"u": 53481441, "v": 53475312, "oneway": false, "points": [[-2846.89, -291.45], [-2854.59, -292.58], [-2984.45, -312.96], [-2991.84, -314.17]], "length": 146.73}, {"u": 53481441, "v": 53485102, "oneway": false, "points": [[-2846.89, -291.45], [-2838.58, -290.14], [-2789.54, -282.33], [-2781.65, -281.22], [-2774.66, -281.31], [-2748.42, -282.28], [-2745.03, -282.41], [-2736.63, -282.88]], "length": 111.09}, {"u": 53481638, "v": 1180187697, "oneway": false, "points": [[-993.63, -2982.73], [-1008.57, -2982.04]], "length": 14.95}, {"u": 53481638, "v": 1180187478, "oneway": true, "points": [[-993.63, -2982.73], [-993.38, -2972.08], [-992.98, -2959.8], [-993.03, -2951.69], [-993.09, -2947.51], [-993.04, -2944.78], [-993.13, -2933.17]], "length": 49.57}, {"u": 53481665, "v": 53639885, "oneway": false, "points": [[-1530.23, -2889.68], [-1506.72, -2850.55], [-1496.54, -2833.36]], "length": 65.63}, {"u": 53481665, "v": 1180187697, "oneway": false, "points": [[-1530.23, -2889.68], [-1516.37, -2893.38], [-1513.48, -2894.23], [-1504.27, -2896.71], [-1489.25, -2898.89], [-1471.52, -2897.58], [-1460.59, -2898.4], [-1452.33, -2899.35], [-1444.57, -2900.98], [-1428.47, -2903.94], [-1388.34, -2912.15], [-1335.82, -2922.16], [-1305.3, -2928.47], [-1289.37, -2931.1], [-1280.85, -2932.51], [-1276.98, -2933.15], [-1138.53, -2958.42], [-1098.58, -2965.7], [-1020.1, -2980.84], [-1016.47, -2981.26], [-1008.57, -2982.04]], "length": 530.58}, {"u": 53482952, "v": 917593526, "oneway": true, "points": [[-422.65, -583.35], [-428.29, -575.71], [-442.75, -559.86], [-462.09, -538.64], [-478.75, -520.35], [-497.88, -499.38], [-510.55, -485.48]], "length": 131.59}, {"u": 53482952, "v": 53493128, "oneway": false, "points": [[-422.65, -583.35], [-428.29, -588.57], [-430.8, -590.81], [-437.03, -596.37], [-446.77, -605.11], [-461.17, -618.06], [-471.23, -627.1], [-478.42, -633.57], [-511.56, -663.32], [-518.68, -669.75], [-529.25, -679.29], [-533.71, -683.32], [-541.75, -690.58], [-548.13, -696.34], [-564.95, -711.53], [-571.47, -717.36]], "length": 200.27}, {"u": 53482952, "v": 53467500, "oneway": false, "points": [[-422.65, -583.35], [-414.83, -576.41], [-412.9, -574.65], [-404.57, -567.0], [-383.23, -547.41], [-377.73, -542.37], [-344.11, -511.73], [-332.1, -500.78], [-279.18, -453.01], [-273.15, -447.8]], "length": 201.81}, {"u": 53482954, "v": 53482952, "oneway": true, "points": [[-356.4, -657.01], [-362.51, -650.26], [-418.67, -589.6], [-422.65, -583.35]], "length": 99.18}, {"u": 53482954, "v": 53578514, "oneway": false, "points": [[-356.4, -657.01], [-362.06, -662.33], [-421.13, -716.24], [-429.19, -723.6], [-436.02, -729.83], [-443.5, -736.65], [-461.88, -753.43], [-473.49, -764.01], [-497.26, -785.71], [-503.51, -791.4]], "length": 199.25}, {"u": 53482954, "v": 53467506, "oneway": false, "points": [[-356.4, -657.01], [-351.07, -652.27], [-348.39, -649.84], [-322.9, -626.46], [-305.65, -610.81], [-289.86, -596.22], [-280.9, -587.94], [-280.33, -587.41], [-272.49, -580.23], [-266.36, -574.6], [-246.34, -556.25], [-215.59, -528.03], [-213.45, -526.07], [-206.86, -520.03]], "length": 202.79}, {"u": 53482954, "v": 53482965, "oneway": false, "points": [[-356.4, -657.01], [-348.77, -665.57], [-294.61, -721.97], [-287.94, -728.54]], "length": 99.02}, {"u": 53482965, "v": 1182471991, "oneway": false, "points": [[-287.94, -728.54], [-283.75, -732.54], [-267.98, -748.28]], "length": 28.08}, {"u": 53482965, "v": 53482954, "oneway": false, "points": [[-287.94, -728.54], [-294.61, -721.97], [-348.77, -665.57], [-356.4, -657.01]], "length": 99.02}, {"u": 53483330, "v": 3811323395, "oneway": true, "points": [[-1759.23, -926.14], [-1768.08, -925.91], [-1882.53, -922.79], [-1883.77, -922.75], [-1891.85, -922.61]], "length": 132.66}, {"u": 53483330, "v": 53576821, "oneway": false, "points": [[-1759.23, -926.14], [-1758.99, -917.32], [-1758.0, -880.79], [-1757.96, -879.38], [-1757.61, -865.15], [-1757.34, -855.95]], "length": 70.22}, {"u": 53483330, "v": 53430443, "oneway": false, "points": [[-1759.23, -926.14], [-1759.3, -928.7], [-1761.02, -990.41], [-1761.29, -1000.13]], "length": 74.02}, {"u": 53483354, "v": 53444600, "oneway": false, "points": [[-2160.27, -914.73], [-2161.76, -960.95]], "length": 46.24}, {"u": 53483354, "v": 53483907, "oneway": false, "points": [[-2160.27, -914.73], [-2159.59, -880.81], [-2159.29, -873.85], [-2159.16, -867.23], [-2159.14, -866.23], [-2158.71, -845.43], [-2158.59, -836.5]], "length": 78.25}, {"u": 53483529, "v": 53426175, "oneway": true, "points": [[347.63, -145.45], [345.94, -150.46], [344.87, -152.92], [343.08, -156.06], [337.67, -162.97], [327.55, -172.87], [275.68, -219.07], [242.02, -248.01], [210.53, -275.53], [203.48, -281.13]], "length": 199.19}, {"u": 53483529, "v": 1425250001, "oneway": true, "points": [[347.63, -145.45], [351.92, -145.61], [355.33, -145.08], [358.69, -144.31], [361.15, -142.43], [368.69, -135.78], [385.28, -120.81], [408.49, -100.17], [416.74, -93.87], [424.47, -89.24], [432.49, -84.46]], "length": 106.48}, {"u": 53483529, "v": 53539171, "oneway": false, "points": [[347.63, -145.45], [332.84, -147.77], [299.19, -145.99], [249.7, -143.72], [240.28, -143.25], [216.52, -142.2], [201.01, -141.17]], "length": 146.96}, {"u": 53483529, "v": 53407922, "oneway": false, "points": [[347.63, -145.45], [344.24, -137.74], [342.31, -134.82], [339.7, -130.89], [325.47, -115.53], [320.56, -110.14], [313.83, -102.51], [301.0, -88.86], [295.6, -83.0], [281.29, -67.52], [268.24, -53.42], [266.35, -51.37], [224.36, -5.88], [217.65, 1.39]], "length": 196.63}, {"u": 53483907, "v": 53483354, "oneway": false, "points": [[-2158.59, -836.5], [-2158.71, -845.43], [-2159.14, -866.23], [-2159.16, -867.23], [-2159.29, -873.85], [-2159.59, -880.81], [-2160.27, -914.73]], "length": 78.25}, {"u": 53483907, "v": 53510000, "oneway": false, "points": [[-2158.59, -836.5], [-2158.7, -827.0], [-2157.7, -792.92], [-2157.62, -789.01], [-2157.52, -784.38], [-2158.08, -776.4], [-2158.27, -770.17], [-2158.39, -762.79], [-2158.08, -751.51], [-2156.91, -732.1], [-2156.69, -726.58], [-2157.28, -709.95], [-2156.1, -664.6], [-2155.49, -640.04], [-2155.33, -635.54], [-2155.03, -627.55]], "length": 209.07}, {"u": 53483907, "v": 53602671, "oneway": false, "points": [[-2158.59, -836.5], [-2150.37, -836.76], [-2116.96, -839.34], [-2111.76, -839.57], [-2091.88, -840.49], [-2069.46, -841.52], [-2063.88, -841.78], [-2033.46, -843.19], [-2024.37, -843.61]], "length": 134.42}, {"u": 53483907, "v": 53473264, "oneway": false, "points": [[-2158.59, -836.5], [-2168.45, -835.93], [-2196.53, -834.88]], "length": 37.97}, {"u": 53483912, "v": 2816310345, "oneway": false, "points": [[-2162.13, -989.32], [-2154.16, -989.52], [-2030.29, -993.0], [-2021.03, -993.24]], "length": 141.15}, {"u": 53483912, "v": 53483915, "oneway": false, "points": [[-2162.13, -989.32], [-2162.35, -997.63], [-2163.34, -1034.8], [-2163.58, -1043.91], [-2163.72, -1049.11]], "length": 59.81}, {"u": 53483912, "v": 53444600, "oneway": false, "points": [[-2162.13, -989.32], [-2162.02, -981.21], [-2161.76, -960.95]], "length": 28.38}, {"u": 53483915, "v": 53709543, "oneway": false, "points": [[-2163.72, -1049.11], [-2165.92, -1099.81], [-2166.07, -1110.62]], "length": 61.56}, {"u": 53483915, "v": 53483912, "oneway": false, "points": [[-2163.72, -1049.11], [-2163.58, -1043.91], [-2163.34, -1034.8], [-2162.35, -997.63], [-2162.13, -989.32]], "length": 59.81}, {"u": 53483915, "v": 53643765, "oneway": false, "points": [[-2163.72, -1049.11], [-2156.04, -1049.29], [-2065.83, -1051.54], [-2028.47, -1052.95], [-2020.33, -1053.26]], "length": 143.45}, {"u": 53485100, "v": 53485102, "oneway": false, "points": [[-2626.92, -287.46], [-2635.38, -287.1], [-2637.98, -286.99], [-2726.77, -283.31], [-2728.96, -283.22], [-2736.63, -282.88]], "length": 109.81}, {"u": 53485100, "v": 1857601486, "oneway": false, "points": [[-2626.92, -287.46], [-2626.81, -283.91], [-2626.65, -279.18], [-2625.72, -250.02], [-2625.33, -237.54], [-2624.75, -217.69], [-2624.44, -206.79], [-2624.37, -204.29], [-2624.26, -198.4]], "length": 89.09}, {"u": 53485100, "v": 53684770, "oneway": false, "points": [[-2626.92, -287.46], [-2627.18, -295.66], [-2629.47, -367.52], [-2630.02, -389.08], [-2630.24, -397.6]], "length": 110.19}, {"u": 53485102, "v": 53485100, "oneway": false, "points": [[-2736.63, -282.88], [-2728.96, -283.22], [-2726.77, -283.31], [-2637.98, -286.99], [-2635.38, -287.1], [-2626.92, -287.46]], "length": 109.81}, {"u": 53485102, "v": 2848493172, "oneway": false, "points": [[-2736.63, -282.88], [-2736.38, -275.2], [-2735.9, -258.02], [-2735.68, -253.07], [-2735.38, -247.07], [-2734.78, -231.14], [-2733.66, -201.03], [-2733.63, -199.99], [-2733.36, -189.81]], "length": 93.13}, {"u": 53485102, "v": 53514818, "oneway": false, "points": [[-2736.63, -282.88], [-2737.15, -291.43], [-2739.39, -328.01], [-2741.48, -338.4], [-2745.84, -348.05], [-2751.15, -354.23], [-2759.47, -360.22], [-2777.46, -370.81]], "length": 105.67}, {"u": 53485102, "v": 53481441, "oneway": false, "points": [[-2736.63, -282.88], [-2745.03, -282.41], [-2748.42, -282.28], [-2774.66, -281.31], [-2781.65, -281.22], [-2789.54, -282.33], [-2838.58, -290.14], [-2846.89, -291.45]], "length": 111.09}, {"u": 53486800, "v": 37924361, "oneway": false, "points": [[-2182.92, -18.87], [-2109.37, -21.95], [-2098.89, -22.38], [-2026.35, -25.42], [-2005.86, -26.28], [-2002.0, -26.43], [-1919.75, -29.91], [-1909.18, -30.28]], "length": 273.98}, {"u": 53486800, "v": 53486805, "oneway": false, "points": [[-2182.92, -18.87], [-2190.33, -18.56], [-2206.31, -17.89], [-2220.37, -17.3], [-2223.66, -17.16], [-2229.32, -16.92]], "length": 46.44}, {"u": 53486800, "v": 53703066, "oneway": false, "points": [[-2182.92, -18.87], [-2183.05, -26.13], [-2185.38, -67.93], [-2185.93, -75.38], [-2186.26, -84.13]], "length": 65.35}, {"u": 53486805, "v": 53486808, "oneway": false, "points": [[-2229.32, -16.92], [-2251.78, -15.98]], "length": 22.48}, {"u": 53486805, "v": 53486800, "oneway": false, "points": [[-2229.32, -16.92], [-2223.66, -17.16], [-2220.37, -17.3], [-2206.31, -17.89], [-2190.33, -18.56], [-2182.92, -18.87]], "length": 46.44}, {"u": 53486808, "v": 53486805, "oneway": false, "points": [[-2251.78, -15.98], [-2229.32, -16.92]], "length": 22.48}, {"u": 53486808, "v": 53486814, "oneway": false, "points": [[-2251.78, -15.98], [-2257.15, -15.76], [-2259.56, -15.65], [-2329.29, -12.74], [-2332.2, -12.61], [-2404.56, -9.58], [-2429.84, -8.52], [-2439.94, -8.1]], "length": 188.32}, {"u": 53486808, "v": 2988748407, "oneway": true, "points": [[-2251.78, -15.98], [-2251.92, -25.01], [-2253.16, -55.18]], "length": 39.23}, {"u": 53486814, "v": 53486808, "oneway": false, "points": [[-2439.94, -8.1], [-2429.84, -8.52], [-2404.56, -9.58], [-2332.2, -12.61], [-2329.29, -12.74], [-2259.56, -15.65], [-2257.15, -15.76], [-2251.78, -15.98]], "length": 188.32}, {"u": 53486814, "v": 53413603, "oneway": false, "points": [[-2439.94, -8.1], [-2439.48, 0.78], [-2433.62, 115.12], [-2433.48, 119.29], [-2433.28, 125.64], [-2433.02, 133.81]], "length": 142.08}, {"u": 53486814, "v": 53438915, "oneway": false, "points": [[-2439.94, -8.1], [-2444.92, -7.88], [-2450.9, -7.68], [-2559.14, -3.7], [-2593.4, -1.11], [-2623.51, 1.19], [-2645.92, 2.43], [-2653.37, 4.16], [-2657.93, 5.96], [-2664.95, 10.02], [-2671.63, 16.29], [-2676.82, 23.98], [-2679.82, 29.52], [-2680.18, 30.19], [-2686.07, 41.16], [-2692.52, 55.26]], "length": 280.4}, {"u": 53486858, "v": 53486863, "oneway": false, "points": [[-2793.39, 41.92], [-2828.72, 43.96], [-2859.91, 45.68], [-2897.77, 47.82], [-2943.35, 49.71]], "length": 150.17}, {"u": 53486858, "v": 53438915, "oneway": false, "points": [[-2793.39, 41.92], [-2761.69, 40.19], [-2748.06, 40.07], [-2738.3, 41.01], [-2730.53, 42.66], [-2720.7, 45.57], [-2711.03, 49.06], [-2701.62, 52.11], [-2692.52, 55.26]], "length": 103.18}, {"u": 53486858, "v": 2988375113, "oneway": false, "points": [[-2793.39, 41.92], [-2793.64, 33.8], [-2793.96, 26.97], [-2793.8, 13.35]], "length": 28.58}, {"u": 53486863, "v": 8316813421, "oneway": false, "points": [[-2943.35, 49.71], [-2961.51, 49.99], [-2985.84, 51.17], [-3037.67, 53.1], [-3038.9, 53.43], [-3039.94, 54.79], [-3039.89, 56.7], [-3039.76, 57.95], [-3039.38, 63.42], [-3039.3, 65.92], [-3036.65, 149.32], [-3036.36, 158.26]], "length": 200.92}, {"u": 53486863, "v": 53486858, "oneway": false, "points": [[-2943.35, 49.71], [-2897.77, 47.82], [-2859.91, 45.68], [-2828.72, 43.96], [-2793.39, 41.92]], "length": 150.17}, {"u": 53486863, "v": 53370932, "oneway": false, "points": [[-2943.35, 49.71], [-2943.57, 42.48], [-2943.95, 32.64], [-2944.76, 11.17], [-2944.95, 6.2], [-2945.37, -1.88], [-2945.7, -8.0]], "length": 57.76}, {"u": 53487523, "v": 53487528, "oneway": false, "points": [[2865.37, 1785.6], [2866.49, 1780.4], [2881.86, 1708.82], [2883.46, 1701.4]], "length": 86.12}, {"u": 53487523, "v": 53430857, "oneway": false, "points": [[2865.37, 1785.6], [2863.89, 1792.51], [2849.27, 1860.52], [2848.73, 1863.05], [2845.12, 1872.64]], "length": 89.47}, {"u": 53487523, "v": 53611268, "oneway": false, "points": [[2865.37, 1785.6], [2857.81, 1783.64], [2791.08, 1766.62], [2784.45, 1764.92]], "length": 83.52}, {"u": 53487528, "v": 53487531, "oneway": false, "points": [[2883.46, 1701.4], [2884.47, 1696.66], [2901.25, 1618.52]], "length": 84.77}, {"u": 53487528, "v": 53487523, "oneway": false, "points": [[2883.46, 1701.4], [2881.86, 1708.82], [2866.49, 1780.4], [2865.37, 1785.6]], "length": 86.12}, {"u": 53487528, "v": 53496315, "oneway": false, "points": [[2883.46, 1701.4], [2875.7, 1699.47], [2812.02, 1683.52], [2808.9, 1682.74], [2802.22, 1681.07]], "length": 83.74}, {"u": 53487531, "v": 53487538, "oneway": false, "points": [[2901.25, 1618.52], [2902.36, 1613.38], [2915.47, 1552.34], [2916.94, 1545.48]], "length": 74.7}, {"u": 53487531, "v": 53487528, "oneway": false, "points": [[2901.25, 1618.52], [2884.47, 1696.66], [2883.46, 1701.4]], "length": 84.77}, {"u": 53487538, "v": 53487531, "oneway": false, "points": [[2916.94, 1545.48], [2915.47, 1552.34], [2902.36, 1613.38], [2901.25, 1618.52]], "length": 74.7}, {"u": 53487538, "v": 53596328, "oneway": false, "points": [[2916.94, 1545.48], [2907.98, 1544.67], [2866.55, 1540.89], [2823.09, 1539.2], [2816.81, 1538.95]], "length": 100.38}, {"u": 53488193, "v": 53616189, "oneway": false, "points": [[-1608.68, -306.18], [-1607.39, -282.17], [-1605.74, -251.37], [-1605.58, -247.42], [-1605.09, -237.96]], "length": 68.31}, {"u": 53488193, "v": 53616188, "oneway": false, "points": [[-1608.68, -306.18], [-1611.24, -349.76], [-1611.75, -358.53], [-1612.4, -369.57]], "length": 63.5}, {"u": 53488195, "v": 53488193, "oneway": true, "points": [[-1743.98, -300.05], [-1735.01, -300.5], [-1682.46, -302.68], [-1617.46, -305.76], [-1608.68, -306.18]], "length": 135.44}, {"u": 53488195, "v": 53652463, "oneway": false, "points": [[-1743.98, -300.05], [-1742.67, -267.85], [-1742.15, -244.93], [-1742.07, -241.36], [-1741.49, -231.41]], "length": 68.69}, {"u": 53488195, "v": 53668996, "oneway": false, "points": [[-1743.98, -300.05], [-1745.0, -352.31], [-1745.22, -362.88]], "length": 62.84}, {"u": 53489932, "v": 53489934, "oneway": false, "points": [[-2949.59, -172.65], [-2950.34, -167.16], [-2954.16, -139.03]], "length": 33.93}, {"u": 53489932, "v": 53461816, "oneway": false, "points": [[-2949.59, -172.65], [-2943.27, -208.12], [-2942.88, -210.3], [-2941.35, -218.88]], "length": 46.96}, {"u": 53489932, "v": 53489947, "oneway": false, "points": [[-2949.59, -172.65], [-2902.81, -165.29], [-2889.76, -163.3]], "length": 60.56}, {"u": 53489934, "v": 53489932, "oneway": false, "points": [[-2954.16, -139.03], [-2950.34, -167.16], [-2949.59, -172.65]], "length": 33.93}, {"u": 53489947, "v": 53489932, "oneway": false, "points": [[-2889.76, -163.3], [-2902.81, -165.29], [-2949.59, -172.65]], "length": 60.56}, {"u": 53490476, "v": 53649105, "oneway": false, "points": [[2382.92, 1752.28], [2384.71, 1744.7], [2389.19, 1725.66], [2391.08, 1716.56], [2393.21, 1709.7], [2395.7, 1700.67], [2396.33, 1698.36], [2400.2, 1684.2], [2404.56, 1668.27], [2406.98, 1660.56], [2410.57, 1652.52], [2414.24, 1646.05], [2418.25, 1640.23], [2420.31, 1637.24], [2425.33, 1631.5]], "length": 129.43}, {"u": 53490476, "v": 316342869, "oneway": false, "points": [[2382.92, 1752.28], [2362.25, 1747.21], [2329.72, 1739.22], [2312.07, 1734.88], [2297.18, 1734.34]], "length": 87.86}, {"u": 53490476, "v": 53490480, "oneway": false, "points": [[2382.92, 1752.28], [2405.92, 1758.66], [2470.49, 1776.56], [2476.13, 1778.13]], "length": 96.73}, {"u": 53490480, "v": 53529499, "oneway": false, "points": [[2476.13, 1778.13], [2474.68, 1784.18], [2473.85, 1787.66], [2472.25, 1794.4], [2469.42, 1806.19], [2467.68, 1811.69], [2466.95, 1814.76], [2466.15, 1818.09], [2465.64, 1822.46], [2466.46, 1826.3], [2468.43, 1831.15], [2471.47, 1836.39], [2483.87, 1854.27], [2499.84, 1880.53], [2502.99, 1885.7], [2507.86, 1893.72], [2528.83, 1926.8], [2530.59, 1929.21], [2535.6, 1936.06]], "length": 179.39}, {"u": 53490480, "v": 53490476, "oneway": false, "points": [[2476.13, 1778.13], [2470.49, 1776.56], [2405.92, 1758.66], [2382.92, 1752.28]], "length": 96.73}, {"u": 53490480, "v": 53490485, "oneway": false, "points": [[2476.13, 1778.13], [2481.96, 1779.7], [2507.92, 1786.66], [2521.99, 1790.29], [2524.49, 1790.93], [2548.94, 1797.25], [2570.57, 1802.83], [2574.41, 1803.82]], "length": 101.59}, {"u": 53490485, "v": 53522245, "oneway": false, "points": [[2574.41, 1803.82], [2573.2, 1808.74], [2572.34, 1812.18], [2565.52, 1839.73], [2556.51, 1876.14], [2553.71, 1887.45], [2550.49, 1900.44], [2545.37, 1921.13], [2542.88, 1931.19]], "length": 131.21}, {"u": 53490485, "v": 53490480, "oneway": false, "points": [[2574.41, 1803.82], [2570.57, 1802.83], [2548.94, 1797.25], [2524.49, 1790.93], [2521.99, 1790.29], [2507.92, 1786.66], [2481.96, 1779.7], [2476.13, 1778.13]], "length": 101.59}, {"u": 53490485, "v": 53490487, "oneway": false, "points": [[2574.41, 1803.82], [2579.07, 1804.96], [2587.93, 1807.13]], "length": 13.92}, {"u": 53490487, "v": 1142902939, "oneway": true, "points": [[2587.93, 1807.13], [2596.32, 1805.83], [2602.57, 1804.36], [2607.39, 1802.56], [2610.67, 1800.82], [2613.32, 1798.14], [2616.07, 1794.75], [2619.38, 1789.69], [2625.92, 1777.68], [2628.74, 1772.4]], "length": 57.61}, {"u": 53490487, "v": 53490485, "oneway": false, "points": [[2587.93, 1807.13], [2579.07, 1804.96], [2574.41, 1803.82]], "length": 13.92}, {"u": 53490491, "v": 53498417, "oneway": false, "points": [[2657.51, 1827.1], [2657.72, 1830.87], [2659.36, 1860.26], [2659.78, 1867.87], [2661.15, 1892.39], [2662.57, 1917.77], [2663.05, 1926.4]], "length": 99.45}, {"u": 53490491, "v": 3786906822, "oneway": true, "points": [[2657.51, 1827.1], [2654.34, 1826.24], [2629.73, 1819.59], [2626.27, 1818.65], [2618.72, 1816.61], [2616.23, 1815.93], [2594.82, 1809.27]], "length": 65.19}, {"u": 53490496, "v": 2925569869, "oneway": false, "points": [[2760.28, 1849.89], [2760.82, 1848.04]], "length": 1.93}, {"u": 53490496, "v": 53572027, "oneway": false, "points": [[2760.28, 1849.89], [2756.8, 1857.71], [2753.84, 1864.37], [2751.88, 1872.65], [2751.34, 1882.55], [2751.48, 1886.56], [2753.08, 1914.5], [2753.19, 1919.62]], "length": 71.39}, {"u": 53490496, "v": 53490491, "oneway": true, "points": [[2760.28, 1849.89], [2749.62, 1847.76], [2722.79, 1842.36], [2698.86, 1836.82], [2666.98, 1829.37], [2657.51, 1827.1]], "length": 105.28}, {"u": 53493114, "v": 1186826687, "oneway": true, "points": [[-199.29, -378.73], [-193.67, -384.91], [-170.84, -410.65], [-146.11, -437.2], [-142.08, -439.95], [-138.01, -441.78], [-134.39, -442.69], [-131.41, -442.96]], "length": 95.11}, {"u": 53493114, "v": 53467500, "oneway": false, "points": [[-199.29, -378.73], [-205.77, -385.23], [-227.54, -405.24], [-265.63, -440.73], [-273.15, -447.8]], "length": 101.13}, {"u": 53493128, "v": 53578514, "oneway": true, "points": [[-571.47, -717.36], [-565.28, -724.05], [-545.77, -745.32], [-543.69, -747.59], [-536.45, -755.47], [-525.35, -767.59], [-524.36, -768.67], [-509.63, -784.74], [-503.51, -791.4]], "length": 100.5}, {"u": 53493128, "v": 53493129, "oneway": false, "points": [[-571.47, -717.36], [-575.97, -721.4], [-578.85, -724.0], [-593.76, -737.4], [-601.42, -744.49], [-608.83, -751.18], [-625.27, -766.0], [-630.55, -770.79], [-643.29, -782.28], [-658.72, -796.21], [-686.98, -821.74], [-691.45, -825.77], [-694.31, -828.35], [-706.64, -839.5], [-714.94, -846.99], [-722.02, -853.37]], "length": 202.89}, {"u": 53493128, "v": 53482952, "oneway": false, "points": [[-571.47, -717.36], [-564.95, -711.53], [-548.13, -696.34], [-541.75, -690.58], [-533.71, -683.32], [-529.25, -679.29], [-518.68, -669.75], [-511.56, -663.32], [-478.42, -633.57], [-471.23, -627.1], [-461.17, -618.06], [-446.77, -605.11], [-437.03, -596.37], [-430.8, -590.81], [-428.29, -588.57], [-422.65, -583.35]], "length": 200.27}, {"u": 53493129, "v": 53578519, "oneway": false, "points": [[-722.02, -853.37], [-715.78, -859.82], [-693.19, -884.88], [-690.43, -887.82], [-687.03, -891.52], [-659.6, -921.42], [-653.43, -928.2]], "length": 101.5}, {"u": 53493129, "v": 53508174, "oneway": false, "points": [[-722.02, -853.37], [-726.96, -848.0], [-761.59, -810.21], [-770.1, -800.86], [-796.72, -770.77], [-798.65, -768.64], [-809.4, -756.99]], "length": 130.1}, {"u": 53493129, "v": 53493140, "oneway": false, "points": [[-722.02, -853.37], [-727.76, -858.92], [-754.22, -882.45], [-787.33, -912.36], [-794.74, -919.3], [-800.38, -924.65], [-810.05, -934.03], [-820.66, -943.76], [-826.73, -949.17], [-834.53, -956.33], [-844.93, -965.91], [-852.94, -973.43], [-893.55, -1011.2]], "length": 233.11}, {"u": 53493129, "v": 53493128, "oneway": false, "points": [[-722.02, -853.37], [-714.94, -846.99], [-706.64, -839.5], [-694.31, -828.35], [-691.45, -825.77], [-686.98, -821.74], [-658.72, -796.21], [-643.29, -782.28], [-630.55, -770.79], [-625.27, -766.0], [-608.83, -751.18], [-601.42, -744.49], [-593.76, -737.4], [-578.85, -724.0], [-575.97, -721.4], [-571.47, -717.36]], "length": 202.89}, {"u": 53493140, "v": 1179967125, "oneway": true, "points": [[-893.55, -1011.2], [-887.59, -1018.37], [-825.0, -1089.49]], "length": 104.06}, {"u": 53493140, "v": 53493129, "oneway": false, "points": [[-893.55, -1011.2], [-852.94, -973.43], [-844.93, -965.91], [-834.53, -956.33], [-826.73, -949.17], [-820.66, -943.76], [-810.05, -934.03], [-800.38, -924.65], [-794.74, -919.3], [-787.33, -912.36], [-754.22, -882.45], [-727.76, -858.92], [-722.02, -853.37]], "length": 233.11}, {"u": 53493140, "v": 13056348949, "oneway": false, "points": [[-893.55, -1011.2], [-911.09, -1027.27], [-913.44, -1029.36], [-919.88, -1035.08]], "length": 35.54}, {"u": 53494572, "v": 53494580, "oneway": false, "points": [[2108.8, 1035.45], [2115.98, 1027.55], [2169.82, 968.44], [2176.52, 961.08]], "length": 100.59}, {"u": 53494572, "v": 53560789, "oneway": false, "points": [[2108.8, 1035.45], [2101.44, 1028.84], [2086.36, 1015.28], [1964.9, 906.14], [1959.4, 901.21]], "length": 200.85}, {"u": 53494572, "v": 2707919868, "oneway": false, "points": [[2108.8, 1035.45], [2116.45, 1042.45], [2197.65, 1116.79], [2203.03, 1121.71]], "length": 127.76}, {"u": 53494580, "v": 53494572, "oneway": false, "points": [[2176.52, 961.08], [2169.82, 968.44], [2115.98, 1027.55], [2108.8, 1035.45]], "length": 100.59}, {"u": 53494580, "v": 53558125, "oneway": false, "points": [[2176.52, 961.08], [2169.99, 955.17], [2035.31, 833.29], [2032.91, 831.11], [2026.52, 825.33]], "length": 202.3}, {"u": 53494580, "v": 53558139, "oneway": false, "points": [[2176.52, 961.08], [2183.97, 967.84], [2264.54, 1040.73], [2269.4, 1045.38]], "length": 125.43}, {"u": 53494580, "v": 53494585, "oneway": false, "points": [[2176.52, 961.08], [2181.96, 955.06], [2237.21, 893.92], [2243.52, 886.95]], "length": 99.92}, {"u": 53494585, "v": 53558139, "oneway": false, "points": [[2243.52, 886.95], [2250.02, 893.21], [2254.4, 897.43], [2310.82, 974.31], [2317.74, 985.78], [2318.51, 989.99], [2317.77, 992.56], [2316.68, 994.37], [2276.07, 1037.67], [2274.37, 1039.47], [2270.96, 1043.12], [2269.4, 1045.38]], "length": 202.52}, {"u": 53494585, "v": 53560795, "oneway": false, "points": [[2243.52, 886.95], [2236.62, 880.48], [2209.38, 854.9], [2099.71, 757.66], [2094.75, 753.26]], "length": 200.03}, {"u": 53494585, "v": 53494580, "oneway": false, "points": [[2243.52, 886.95], [2237.21, 893.92], [2181.96, 955.06], [2176.52, 961.08]], "length": 99.92}, {"u": 53496307, "v": 53498440, "oneway": false, "points": [[2635.16, 1637.74], [2637.55, 1683.25]], "length": 45.58}, {"u": 53496307, "v": 53496315, "oneway": false, "points": [[2635.16, 1637.74], [2643.67, 1640.09], [2646.64, 1640.83], [2707.27, 1655.94], [2728.95, 1662.0], [2792.46, 1678.53], [2794.89, 1679.16], [2802.22, 1681.07]], "length": 172.6}, {"u": 53496307, "v": 53461443, "oneway": false, "points": [[2635.16, 1637.74], [2633.26, 1605.67], [2630.8, 1564.24], [2630.19, 1554.1], [2629.34, 1539.78], [2628.84, 1531.54]], "length": 106.39}, {"u": 53496315, "v": 53487528, "oneway": false, "points": [[2802.22, 1681.07], [2808.9, 1682.74], [2812.02, 1683.52], [2875.7, 1699.47], [2883.46, 1701.4]], "length": 83.74}, {"u": 53496315, "v": 53496307, "oneway": false, "points": [[2802.22, 1681.07], [2794.89, 1679.16], [2792.46, 1678.53], [2728.95, 1662.0], [2707.27, 1655.94], [2646.64, 1640.83], [2643.67, 1640.09], [2635.16, 1637.74]], "length": 172.6}, {"u": 53496315, "v": 53596328, "oneway": false, "points": [[2802.22, 1681.07], [2803.65, 1675.1], [2810.54, 1646.49], [2813.17, 1621.19], [2813.48, 1600.28], [2814.75, 1570.13], [2816.12, 1549.46], [2816.24, 1547.61], [2816.81, 1538.95]], "length": 143.34}, {"u": 53496315, "v": 53611268, "oneway": false, "points": [[2802.22, 1681.07], [2800.7, 1688.67], [2795.65, 1713.82], [2786.37, 1756.16], [2785.84, 1758.58], [2784.45, 1764.92]], "length": 85.72}, {"u": 53498225, "v": 53498229, "oneway": false, "points": [[2090.85, 2210.69], [2084.33, 2216.96], [2027.28, 2276.16], [2021.37, 2282.3]], "length": 99.78}, {"u": 53498225, "v": 53538734, "oneway": false, "points": [[2090.85, 2210.69], [2097.25, 2204.17], [2155.17, 2144.61], [2161.11, 2138.53]], "length": 100.72}, {"u": 53498225, "v": 53668900, "oneway": false, "points": [[2090.85, 2210.69], [2084.15, 2204.46], [1953.72, 2076.0], [1947.69, 2070.09]], "length": 200.67}, {"u": 53498225, "v": 1706427648, "oneway": false, "points": [[2090.85, 2210.69], [2097.3, 2216.96], [2228.58, 2344.44], [2235.81, 2351.49]], "length": 202.08}, {"u": 53498229, "v": 53640713, "oneway": false, "points": [[2021.37, 2282.3], [2014.77, 2276.62]], "length": 8.71}, {"u": 53498229, "v": 446196406, "oneway": false, "points": [[2021.37, 2282.3], [2016.12, 2288.08], [1981.55, 2323.35], [1979.01, 2325.94], [1977.37, 2327.6], [1964.62, 2340.61], [1958.27, 2347.07], [1933.64, 2369.63], [1925.69, 2376.72]], "length": 134.48}, {"u": 53498229, "v": 53498225, "oneway": false, "points": [[2021.37, 2282.3], [2027.28, 2276.16], [2084.33, 2216.96], [2090.85, 2210.69]], "length": 99.78}, {"u": 53498229, "v": 349368476, "oneway": false, "points": [[2021.37, 2282.3], [2027.56, 2288.23], [2050.19, 2309.53], [2109.29, 2367.72], [2159.01, 2416.58], [2165.67, 2423.11]], "length": 201.62}, {"u": 53498398, "v": 53498412, "oneway": false, "points": [[2681.73, 2265.05], [2681.6, 2258.67], [2681.44, 2255.75], [2673.42, 2112.16]], "length": 153.12}, {"u": 53498398, "v": 53611260, "oneway": false, "points": [[2681.73, 2265.05], [2687.82, 2264.86], [2762.93, 2260.54], [2770.83, 2260.08]], "length": 89.24}, {"u": 53498398, "v": 2627868774, "oneway": false, "points": [[2681.73, 2265.05], [2675.24, 2265.4], [2658.54, 2264.6], [2643.6, 2255.79], [2635.85, 2254.18], [2631.51, 2253.94], [2624.46, 2253.57]], "length": 59.89}, {"u": 53498412, "v": 53498415, "oneway": false, "points": [[2673.42, 2112.16], [2671.89, 2084.77], [2671.34, 2074.86]], "length": 37.36}, {"u": 53498412, "v": 53498398, "oneway": false, "points": [[2673.42, 2112.16], [2681.44, 2255.75], [2681.6, 2258.67], [2681.73, 2265.05]], "length": 153.12}, {"u": 53498412, "v": 53529508, "oneway": false, "points": [[2673.42, 2112.16], [2667.79, 2115.53], [2651.29, 2125.44]], "length": 25.81}, {"u": 53498415, "v": 53498417, "oneway": false, "points": [[2671.34, 2074.86], [2670.99, 2068.76], [2669.32, 2038.84], [2666.43, 1986.89], [2663.4, 1932.58], [2663.05, 1926.4]], "length": 148.7}, {"u": 53498415, "v": 53498412, "oneway": false, "points": [[2671.34, 2074.86], [2671.89, 2084.77], [2673.42, 2112.16]], "length": 37.36}, {"u": 53498415, "v": 53604832, "oneway": false, "points": [[2671.34, 2074.86], [2678.14, 2074.5], [2753.32, 2071.76], [2761.2, 2071.48]], "length": 89.92}, {"u": 53498417, "v": 53490491, "oneway": false, "points": [[2663.05, 1926.4], [2662.57, 1917.77], [2661.15, 1892.39], [2659.78, 1867.87], [2659.36, 1860.26], [2657.72, 1830.87], [2657.51, 1827.1]], "length": 99.45}, {"u": 53498417, "v": 53498415, "oneway": false, "points": [[2663.05, 1926.4], [2663.4, 1932.58], [2666.43, 1986.89], [2669.32, 2038.84], [2670.99, 2068.76], [2671.34, 2074.86]], "length": 148.7}, {"u": 53498417, "v": 53572027, "oneway": false, "points": [[2663.05, 1926.4], [2670.43, 1925.6], [2672.63, 1925.38], [2691.8, 1923.46], [2745.63, 1920.09], [2753.19, 1919.62]], "length": 90.41}, {"u": 53498417, "v": 53522245, "oneway": false, "points": [[2663.05, 1926.4], [2657.35, 1926.54], [2654.71, 1926.62], [2549.44, 1929.78], [2542.88, 1931.19]], "length": 120.37}, {"u": 53498437, "v": 3786906803, "oneway": false, "points": [[2638.08, 1729.9], [2645.16, 1730.23]], "length": 7.09}, {"u": 53498437, "v": 3786906785, "oneway": true, "points": [[2638.08, 1729.9], [2638.12, 1721.5], [2638.07, 1713.74], [2637.74, 1705.08], [2637.95, 1698.68], [2639.01, 1694.77]], "length": 35.29}, {"u": 53498440, "v": 53496307, "oneway": false, "points": [[2637.55, 1683.25], [2635.16, 1637.74]], "length": 45.58}, {"u": 53498440, "v": 3786906785, "oneway": false, "points": [[2637.55, 1683.25], [2639.01, 1694.77]], "length": 11.61}, {"u": 53498440, "v": 53537040, "oneway": false, "points": [[2637.55, 1683.25], [2631.82, 1683.12], [2628.94, 1682.26], [2628.16, 1681.9], [2625.7, 1680.8], [2623.17, 1679.46], [2561.62, 1638.13], [2499.47, 1594.86], [2454.15, 1564.68], [2436.87, 1552.5]], "length": 240.62}, {"u": 53498447, "v": 53568332, "oneway": false, "points": [[2624.24, 1448.77], [2633.28, 1449.09], [2635.76, 1449.13], [2716.37, 1452.08], [2723.07, 1452.33]], "length": 98.89}, {"u": 53498447, "v": 53558152, "oneway": false, "points": [[2624.24, 1448.77], [2622.32, 1443.22], [2622.03, 1442.38], [2612.07, 1430.1], [2580.27, 1385.54]], "length": 77.31}, {"u": 53498447, "v": 53461443, "oneway": false, "points": [[2624.24, 1448.77], [2627.07, 1488.48], [2628.52, 1523.75], [2628.84, 1531.54]], "length": 82.91}, {"u": 53499266, "v": 53578394, "oneway": false, "points": [[1605.0, 2734.48], [1598.98, 2734.86], [1595.96, 2735.4], [1593.21, 2736.64], [1587.01, 2739.46], [1548.57, 2758.79], [1545.13, 2760.52], [1519.22, 2774.08], [1509.33, 2779.25], [1500.39, 2783.92]], "length": 116.3}, {"u": 53499266, "v": 496686159, "oneway": false, "points": [[1605.0, 2734.48], [1604.7, 2728.38], [1603.4, 2701.47], [1601.47, 2662.7], [1600.9, 2651.35], [1599.89, 2626.5], [1599.79, 2623.97], [1598.57, 2594.19], [1597.27, 2562.08], [1596.06, 2532.28], [1595.96, 2529.99], [1595.07, 2508.13], [1594.13, 2485.69]], "length": 249.03}, {"u": 53499287, "v": 53441265, "oneway": false, "points": [[-1015.29, 169.85], [-1015.45, 166.31], [-1016.02, 153.15], [-1016.29, 146.99], [-1017.75, 113.42], [-1017.79, 112.6], [-1018.33, 100.18], [-1019.01, 84.54], [-1020.29, 55.31], [-1021.31, 31.89], [-1021.37, 30.46], [-1021.97, 21.28]], "length": 148.72}, {"u": 53499299, "v": 2859245573, "oneway": false, "points": [[-1089.56, -694.09], [-1090.91, -685.84], [-1089.88, -663.65], [-1085.72, -582.83], [-1085.42, -578.08], [-1083.24, -533.67], [-1083.09, -530.99], [-1082.69, -522.51]], "length": 171.9}, {"u": 53503712, "v": 53407747, "oneway": false, "points": [[2325.39, 1779.62], [2318.03, 1783.5], [2309.42, 1787.85], [2307.65, 1789.31], [2306.32, 1790.61], [2300.98, 1795.84], [2287.79, 1808.76], [2278.56, 1817.8], [2249.4, 1848.77], [2245.32, 1853.0], [2233.86, 1865.07], [2227.9, 1871.36]], "length": 134.71}, {"u": 53503712, "v": 53480554, "oneway": false, "points": [[2325.39, 1779.62], [2327.14, 1782.49], [2328.09, 1784.05], [2339.12, 1802.2], [2349.78, 1819.74], [2352.17, 1823.67], [2371.11, 1853.89], [2373.21, 1857.34], [2377.16, 1863.82]], "length": 98.85}, {"u": 53503712, "v": 316342869, "oneway": false, "points": [[2325.39, 1779.62], [2317.38, 1766.75], [2304.13, 1745.49], [2297.18, 1734.34]], "length": 53.35}, {"u": 53503834, "v": 53709531, "oneway": false, "points": [[-1891.5, -1056.94], [-1891.66, -1062.07], [-1892.98, -1104.15], [-1893.06, -1106.83], [-1893.42, -1117.94]], "length": 61.03}, {"u": 53503834, "v": 53643765, "oneway": false, "points": [[-1891.5, -1056.94], [-1899.59, -1056.85], [-1928.04, -1056.27], [-1946.25, -1055.74], [-1952.09, -1055.61], [-2000.96, -1053.95], [-2012.33, -1053.57], [-2020.33, -1053.26]], "length": 128.89}, {"u": 53503834, "v": 53680515, "oneway": false, "points": [[-1891.5, -1056.94], [-1883.6, -1057.19], [-1846.31, -1058.05]], "length": 45.19}, {"u": 53503843, "v": 53503849, "oneway": false, "points": [[-1896.28, -1238.1], [-1896.55, -1249.74], [-1897.64, -1298.29], [-1898.4, -1325.03], [-1898.91, -1348.15], [-1898.97, -1350.87], [-1899.41, -1359.63]], "length": 121.57}, {"u": 53503843, "v": 53709531, "oneway": false, "points": [[-1896.28, -1238.1], [-1896.05, -1227.29], [-1894.99, -1178.12], [-1893.71, -1129.2], [-1893.42, -1117.94]], "length": 120.19}, {"u": 53503843, "v": 53643772, "oneway": false, "points": [[-1896.28, -1238.1], [-1904.1, -1237.86], [-2016.52, -1235.21], [-2024.32, -1234.99]], "length": 128.08}, {"u": 53503843, "v": 53576829, "oneway": false, "points": [[-1896.28, -1238.1], [-1888.0, -1238.38], [-1776.37, -1241.19], [-1775.6, -1241.22], [-1767.07, -1241.58]], "length": 129.27}, {"u": 53503849, "v": 53503855, "oneway": false, "points": [[-1899.41, -1359.63], [-1899.51, -1370.82], [-1900.27, -1415.28]], "length": 55.66}, {"u": 53503849, "v": 53503843, "oneway": false, "points": [[-1899.41, -1359.63], [-1898.97, -1350.87], [-1898.91, -1348.15], [-1898.4, -1325.03], [-1897.64, -1298.29], [-1896.55, -1249.74], [-1896.28, -1238.1]], "length": 121.57}, {"u": 53503849, "v": 53621269, "oneway": false, "points": [[-1899.41, -1359.63], [-1907.4, -1359.49], [-2019.45, -1356.66], [-2027.76, -1356.46]], "length": 128.39}, {"u": 53503849, "v": 53576831, "oneway": false, "points": [[-1899.41, -1359.63], [-1892.11, -1359.83], [-1863.64, -1360.52], [-1831.85, -1361.49], [-1779.79, -1362.91], [-1777.65, -1362.98], [-1770.03, -1363.1]], "length": 129.43}, {"u": 53503855, "v": 53503849, "oneway": false, "points": [[-1900.27, -1415.28], [-1899.51, -1370.82], [-1899.41, -1359.63]], "length": 55.66}, {"u": 53503864, "v": 3811323395, "oneway": false, "points": [[-1890.2, -849.81], [-1890.22, -859.0], [-1890.25, -860.47], [-1890.42, -867.6], [-1890.46, -869.17], [-1890.78, -882.46], [-1891.11, -894.22], [-1891.85, -922.61]], "length": 72.82}, {"u": 53503864, "v": 53472268, "oneway": true, "points": [[-1890.2, -849.81], [-1890.04, -840.47], [-1889.9, -832.72], [-1889.24, -793.5], [-1888.87, -780.18], [-1888.45, -768.55], [-1887.97, -744.93], [-1887.78, -739.77]], "length": 110.07}, {"u": 53503864, "v": 53545894, "oneway": false, "points": [[-1890.2, -849.81], [-1898.56, -849.43], [-1914.53, -848.68], [-1916.22, -848.61], [-1962.78, -846.45]], "length": 72.65}, {"u": 53503864, "v": 53576821, "oneway": false, "points": [[-1890.2, -849.81], [-1881.89, -850.2], [-1872.26, -850.64], [-1839.89, -852.13], [-1836.31, -852.3], [-1815.99, -853.24], [-1808.99, -853.57], [-1799.28, -854.01], [-1766.34, -855.53], [-1757.34, -855.95]], "length": 133.0}, {"u": 53504312, "v": 53504327, "oneway": false, "points": [[-2550.96, -545.0], [-2561.45, -543.73], [-2626.62, -541.87], [-2634.59, -541.53]], "length": 83.74}, {"u": 53504312, "v": 53516186, "oneway": false, "points": [[-2550.96, -545.0], [-2550.75, -536.17], [-2548.42, -456.84], [-2546.96, -408.78], [-2546.7, -399.91]], "length": 145.14}, {"u": 53504312, "v": 4214349299, "oneway": false, "points": [[-2550.96, -545.0], [-2551.35, -551.93], [-2556.66, -718.7], [-2556.96, -727.8]], "length": 182.9}, {"u": 53504327, "v": 53504329, "oneway": false, "points": [[-2634.59, -541.53], [-2642.21, -541.23], [-2773.01, -536.18], [-2779.85, -535.91]], "length": 145.37}, {"u": 53504327, "v": 53504312, "oneway": false, "points": [[-2634.59, -541.53], [-2626.62, -541.87], [-2561.45, -543.73], [-2550.96, -545.0]], "length": 83.74}, {"u": 53504327, "v": 53684770, "oneway": false, "points": [[-2634.59, -541.53], [-2634.35, -533.6], [-2630.48, -405.76], [-2630.24, -397.6]], "length": 144.0}, {"u": 53504327, "v": 53578682, "oneway": false, "points": [[-2634.59, -541.53], [-2634.78, -549.92], [-2636.55, -625.0], [-2636.79, -633.24]], "length": 91.74}, {"u": 53504329, "v": 53504327, "oneway": false, "points": [[-2779.85, -535.91], [-2773.01, -536.18], [-2642.21, -541.23], [-2634.59, -541.53]], "length": 145.37}, {"u": 53504329, "v": 53514812, "oneway": false, "points": [[-2779.85, -535.91], [-2779.11, -476.14], [-2778.03, -464.27]], "length": 71.69}, {"u": 53504329, "v": 53514806, "oneway": false, "points": [[-2779.85, -535.91], [-2780.9, -577.9], [-2783.04, -618.79], [-2783.26, -626.79]], "length": 90.95}, {"u": 53508174, "v": 53493129, "oneway": false, "points": [[-809.4, -756.99], [-798.65, -768.64], [-796.72, -770.77], [-770.1, -800.86], [-761.59, -810.21], [-726.96, -848.0], [-722.02, -853.37]], "length": 130.1}, {"u": 53508174, "v": 13151160466, "oneway": false, "points": [[-809.4, -756.99], [-816.98, -763.66], [-834.17, -778.76], [-843.76, -787.19], [-855.37, -797.4], [-866.17, -806.89], [-901.27, -837.75], [-903.06, -839.33], [-915.02, -849.84], [-918.31, -852.73], [-919.51, -853.78]], "length": 146.6}, {"u": 53508174, "v": 53615260, "oneway": false, "points": [[-809.4, -756.99], [-802.33, -751.13], [-783.49, -733.99], [-778.7, -729.65], [-774.67, -725.95], [-746.21, -700.04], [-738.09, -692.65], [-722.3, -678.28], [-714.59, -671.14], [-705.19, -662.7], [-696.51, -654.77], [-682.63, -642.11], [-670.68, -631.23], [-668.33, -629.12], [-664.49, -625.61], [-659.27, -620.89]], "length": 202.66}, {"u": 53508174, "v": 53508176, "oneway": false, "points": [[-809.4, -756.99], [-820.63, -744.65], [-821.84, -743.31], [-863.96, -696.76], [-866.72, -693.68], [-891.66, -666.15], [-897.49, -659.71]], "length": 131.24}, {"u": 53508176, "v": 2859245506, "oneway": false, "points": [[-897.49, -659.71], [-903.92, -652.61], [-936.72, -616.08], [-939.03, -612.77], [-940.59, -609.64], [-941.75, -605.49], [-942.05, -600.15], [-941.8, -591.44], [-941.8, -589.4], [-941.38, -569.79], [-940.8, -540.49], [-940.75, -537.97], [-940.51, -529.64]], "length": 146.4}, {"u": 53508176, "v": 53604267, "oneway": false, "points": [[-897.49, -659.71], [-904.22, -665.84], [-906.3, -667.73], [-945.52, -703.56]], "length": 65.04}, {"u": 53508176, "v": 53604263, "oneway": false, "points": [[-897.49, -659.71], [-891.04, -653.83], [-889.09, -652.05], [-840.76, -608.06], [-837.52, -605.11], [-825.65, -594.31], [-808.64, -578.83], [-804.46, -575.02], [-789.63, -561.52], [-779.27, -552.09], [-757.2, -531.98], [-755.13, -530.1], [-752.94, -528.1], [-748.25, -523.84]], "length": 201.82}, {"u": 53508176, "v": 53508174, "oneway": false, "points": [[-897.49, -659.71], [-891.66, -666.15], [-866.72, -693.68], [-863.96, -696.76], [-821.84, -743.31], [-820.63, -744.65], [-809.4, -756.99]], "length": 131.24}, {"u": 53509875, "v": 53616173, "oneway": false, "points": [[-1685.97, -675.19], [-1622.79, -677.89]], "length": 63.23}, {"u": 53509875, "v": 53509878, "oneway": false, "points": [[-1685.97, -675.19], [-1710.28, -674.15], [-1715.36, -673.93], [-1742.51, -672.78], [-1744.26, -672.71], [-1752.72, -672.34]], "length": 66.82}, {"u": 53509875, "v": 53646449, "oneway": false, "points": [[-1685.97, -675.19], [-1685.63, -666.57], [-1683.85, -630.5], [-1682.37, -600.4]], "length": 74.87}, {"u": 53509878, "v": 53545473, "oneway": false, "points": [[-1752.72, -672.34], [-1753.78, -735.94]], "length": 63.61}, {"u": 53509878, "v": 53509875, "oneway": false, "points": [[-1752.72, -672.34], [-1744.26, -672.71], [-1742.51, -672.78], [-1715.36, -673.93], [-1710.28, -674.15], [-1685.97, -675.19]], "length": 66.82}, {"u": 53509878, "v": 53509962, "oneway": false, "points": [[-1752.72, -672.34], [-1752.5, -661.53], [-1752.44, -656.63], [-1752.34, -647.82]], "length": 24.52}, {"u": 53509962, "v": 4139816155, "oneway": false, "points": [[-1752.34, -647.82], [-1761.1, -647.37], [-1764.79, -647.19], [-1784.83, -646.17], [-1799.68, -645.41], [-1808.67, -644.95], [-1827.82, -643.97], [-1829.57, -643.87], [-1858.19, -642.42], [-1875.7, -641.53], [-1885.34, -641.05]], "length": 133.17}, {"u": 53509962, "v": 53509878, "oneway": false, "points": [[-1752.34, -647.82], [-1752.44, -656.63], [-1752.5, -661.53], [-1752.72, -672.34]], "length": 24.52}, {"u": 53509962, "v": 53668988, "oneway": false, "points": [[-1752.34, -647.82], [-1751.97, -609.36], [-1751.17, -595.85], [-1750.88, -586.12], [-1750.22, -564.38], [-1750.12, -534.24], [-1749.8, -499.6], [-1749.63, -494.36], [-1749.46, -488.07]], "length": 159.79}, {"u": 53510000, "v": 1426438835, "oneway": false, "points": [[-2155.03, -627.55], [-2154.82, -617.52], [-2154.06, -602.0]], "length": 25.57}, {"u": 53510000, "v": 53483907, "oneway": false, "points": [[-2155.03, -627.55], [-2155.33, -635.54], [-2155.49, -640.04], [-2156.1, -664.6], [-2157.28, -709.95], [-2156.69, -726.58], [-2156.91, -732.1], [-2158.08, -751.51], [-2158.39, -762.79], [-2158.27, -770.17], [-2158.08, -776.4], [-2157.52, -784.38], [-2157.62, -789.01], [-2157.7, -792.92], [-2158.7, -827.0], [-2158.59, -836.5]], "length": 209.07}, {"u": 53510000, "v": 1180005831, "oneway": false, "points": [[-2155.03, -627.55], [-2144.91, -628.15], [-2141.66, -628.31], [-2113.66, -629.71], [-2093.71, -630.69], [-2079.06, -631.42], [-2077.71, -631.49], [-2057.96, -632.47], [-2055.3, -632.6], [-2029.45, -633.89], [-2019.94, -634.36]], "length": 135.26}, {"u": 53510799, "v": 53510828, "oneway": false, "points": [[1254.14, 2453.63], [1252.4, 2467.01], [1255.78, 2482.81], [1262.13, 2499.97], [1276.69, 2533.79], [1302.97, 2587.62], [1325.12, 2627.9], [1336.97, 2646.68], [1341.54, 2652.78], [1350.55, 2663.41], [1372.4, 2687.25], [1383.39, 2698.61], [1396.59, 2707.24], [1404.74, 2713.23]], "length": 308.43}, {"u": 53510799, "v": 53555070, "oneway": false, "points": [[1254.14, 2453.63], [1246.78, 2464.17], [1240.3, 2471.25], [1231.86, 2477.93], [1218.27, 2486.99], [1198.18, 2499.45], [1183.09, 2507.54], [1174.06, 2516.58]], "length": 103.08}, {"u": 53510799, "v": 496686202, "oneway": false, "points": [[1254.14, 2453.63], [1260.25, 2444.9], [1276.94, 2427.53], [1294.85, 2415.0], [1302.48, 2409.03]], "length": 66.29}, {"u": 53510828, "v": 53510799, "oneway": false, "points": [[1404.74, 2713.23], [1396.59, 2707.24], [1383.39, 2698.61], [1372.4, 2687.25], [1350.55, 2663.41], [1341.54, 2652.78], [1336.97, 2646.68], [1325.12, 2627.9], [1302.97, 2587.62], [1276.69, 2533.79], [1262.13, 2499.97], [1255.78, 2482.81], [1252.4, 2467.01], [1254.14, 2453.63]], "length": 308.43}, {"u": 53510828, "v": 53578383, "oneway": false, "points": [[1404.74, 2713.23], [1452.32, 2709.77], [1459.52, 2709.24]], "length": 54.93}, {"u": 53510828, "v": 53555070, "oneway": false, "points": [[1404.74, 2713.23], [1382.63, 2714.75], [1325.73, 2716.02], [1289.94, 2717.36], [1275.43, 2717.11], [1266.36, 2715.92], [1255.55, 2713.78], [1246.21, 2709.15], [1241.29, 2705.28], [1238.72, 2703.25], [1222.87, 2687.25], [1207.9, 2665.22], [1203.15, 2658.24], [1193.7, 2640.73], [1186.72, 2621.25], [1179.53, 2594.67], [1173.3, 2576.05], [1170.54, 2567.8], [1168.52, 2561.17], [1166.05, 2553.04], [1164.6, 2541.85], [1165.67, 2533.82], [1168.15, 2526.19], [1172.15, 2518.68], [1172.48, 2518.07], [1174.06, 2516.58]], "length": 377.8}, {"u": 53511571, "v": 2634693278, "oneway": false, "points": [[-1421.51, -1491.08], [-1424.87, -1612.63]], "length": 121.6}, {"u": 53511571, "v": 1179795897, "oneway": false, "points": [[-1421.51, -1491.08], [-1420.76, -1416.76], [-1420.22, -1384.48], [-1421.32, -1377.05], [-1423.34, -1371.32], [-1427.63, -1368.59], [-1436.45, -1367.42], [-1444.21, -1367.25]], "length": 141.94}, {"u": 53511571, "v": 1179796106, "oneway": false, "points": [[-1421.51, -1491.08], [-1429.75, -1491.01], [-1442.35, -1490.85], [-1468.02, -1490.12], [-1478.75, -1489.81], [-1481.58, -1489.73], [-1483.17, -1489.68], [-1490.47, -1489.5], [-1492.62, -1489.43], [-1500.67, -1489.22]], "length": 79.18}, {"u": 53511582, "v": 53511589, "oneway": false, "points": [[-1643.48, -1485.84], [-1652.47, -1485.76], [-1652.68, -1485.75], [-1764.52, -1483.84], [-1773.68, -1483.68]], "length": 130.22}, {"u": 53511582, "v": 1179796096, "oneway": false, "points": [[-1643.48, -1485.84], [-1634.81, -1485.99], [-1603.02, -1486.55], [-1559.15, -1487.87], [-1555.45, -1487.98], [-1530.26, -1488.66], [-1524.83, -1488.8], [-1522.79, -1488.86], [-1515.61, -1489.07]], "length": 127.91}, {"u": 53511582, "v": 53621256, "oneway": false, "points": [[-1643.48, -1485.84], [-1643.15, -1475.54], [-1643.0, -1470.92], [-1641.6, -1426.79], [-1640.19, -1376.85], [-1640.13, -1374.77], [-1639.87, -1365.16]], "length": 120.73}, {"u": 53511582, "v": 53529686, "oneway": false, "points": [[-1643.48, -1485.84], [-1643.67, -1497.61], [-1643.72, -1500.81], [-1644.47, -1547.42], [-1645.66, -1597.48], [-1645.91, -1607.86]], "length": 122.05}, {"u": 53511589, "v": 53511582, "oneway": false, "points": [[-1773.68, -1483.68], [-1764.52, -1483.84], [-1652.68, -1485.75], [-1652.47, -1485.76], [-1643.48, -1485.84]], "length": 130.22}, {"u": 53511589, "v": 53576831, "oneway": false, "points": [[-1773.68, -1483.68], [-1773.29, -1472.52], [-1771.52, -1422.9], [-1770.29, -1373.67], [-1770.03, -1363.1]], "length": 120.64}, {"u": 53511589, "v": 53529689, "oneway": false, "points": [[-1773.68, -1483.68], [-1773.92, -1494.95], [-1774.91, -1543.68], [-1775.78, -1595.19], [-1775.94, -1605.11]], "length": 121.45}, {"u": 53511589, "v": 53511593, "oneway": false, "points": [[-1773.68, -1483.68], [-1781.65, -1483.49], [-2009.18, -1477.35]], "length": 235.59}, {"u": 53511593, "v": 53529692, "oneway": false, "points": [[-2009.18, -1477.35], [-2009.4, -1488.6], [-2011.33, -1588.62], [-2011.63, -1596.2]], "length": 118.87}, {"u": 53511593, "v": 53511598, "oneway": false, "points": [[-2009.18, -1477.35], [-2014.83, -1477.13], [-2029.98, -1476.64]], "length": 20.81}, {"u": 53511593, "v": 53511589, "oneway": false, "points": [[-2009.18, -1477.35], [-1781.65, -1483.49], [-1773.68, -1483.68]], "length": 235.59}, {"u": 53511598, "v": 53511603, "oneway": false, "points": [[-2029.98, -1476.64], [-2115.16, -1474.81]], "length": 85.2}, {"u": 53511598, "v": 53621269, "oneway": false, "points": [[-2029.98, -1476.64], [-2029.95, -1466.11], [-2027.97, -1367.8], [-2027.96, -1367.19], [-2027.76, -1356.46]], "length": 120.21}, {"u": 53511598, "v": 53511593, "oneway": false, "points": [[-2029.98, -1476.64], [-2014.83, -1477.13], [-2009.18, -1477.35]], "length": 20.81}, {"u": 53511603, "v": 53511598, "oneway": false, "points": [[-2115.16, -1474.81], [-2029.98, -1476.64]], "length": 85.2}, {"u": 53511603, "v": 53575900, "oneway": false, "points": [[-2115.16, -1474.81], [-2115.46, -1486.09], [-2117.13, -1557.78]], "length": 82.99}, {"u": 53511603, "v": 3812685612, "oneway": false, "points": [[-2115.16, -1474.81], [-2149.28, -1473.86], [-2167.54, -1473.35], [-2176.79, -1473.09]], "length": 61.65}, {"u": 53511694, "v": 1180187620, "oneway": false, "points": [[-903.04, -3083.32], [-900.09, -3060.73], [-897.12, -3037.93], [-895.69, -3026.93], [-892.68, -3003.48], [-889.24, -2976.65], [-886.81, -2957.37], [-886.59, -2955.79], [-885.58, -2946.68]], "length": 137.76}, {"u": 53511694, "v": 53590668, "oneway": false, "points": [[-903.04, -3083.32], [-893.55, -3083.78], [-891.51, -3083.88], [-852.44, -3085.8], [-848.03, -3086.01], [-796.06, -3088.56]], "length": 107.11}, {"u": 53511712, "v": 53434867, "oneway": false, "points": [[-946.54, -2751.09], [-935.87, -2750.83], [-932.04, -2750.74], [-925.17, -2750.58], [-857.55, -2753.88], [-848.01, -2754.34]], "length": 98.63}, {"u": 53511712, "v": 53511723, "oneway": false, "points": [[-946.54, -2751.09], [-956.44, -2732.24], [-979.56, -2702.19], [-984.71, -2695.51], [-1006.8, -2668.9], [-1024.94, -2648.41], [-1034.3, -2637.6]], "length": 143.89}, {"u": 53511712, "v": 53463532, "oneway": false, "points": [[-946.54, -2751.09], [-943.99, -2756.77], [-928.91, -2790.3], [-924.42, -2800.32], [-919.88, -2810.41], [-911.08, -2829.98], [-901.05, -2852.29], [-893.04, -2870.09]], "length": 130.48}, {"u": 53511723, "v": 1180187596, "oneway": false, "points": [[-1034.3, -2637.6], [-1045.58, -2643.58]], "length": 12.76}, {"u": 53511723, "v": 53434865, "oneway": false, "points": [[-1034.3, -2637.6], [-1024.59, -2632.5], [-1021.88, -2632.51], [-1019.64, -2632.45], [-1015.55, -2632.37], [-973.43, -2632.24], [-930.41, -2633.53], [-851.44, -2636.79], [-843.37, -2637.12]], "length": 192.29}, {"u": 53511723, "v": 53511712, "oneway": false, "points": [[-1034.3, -2637.6], [-1024.94, -2648.41], [-1006.8, -2668.9], [-984.71, -2695.51], [-979.56, -2702.19], [-956.44, -2732.24], [-946.54, -2751.09]], "length": 143.89}, {"u": 53514806, "v": 53504329, "oneway": false, "points": [[-2783.26, -626.79], [-2783.04, -618.79], [-2780.9, -577.9], [-2779.85, -535.91]], "length": 90.95}, {"u": 53514806, "v": 1944740975, "oneway": false, "points": [[-2783.26, -626.79], [-2783.52, -635.28], [-2785.32, -710.24], [-2785.78, -718.33]], "length": 91.57}, {"u": 53514806, "v": 53578687, "oneway": false, "points": [[-2783.26, -626.79], [-2791.35, -626.47], [-2958.94, -619.89], [-2986.36, -618.39]], "length": 203.27}, {"u": 53514806, "v": 53578682, "oneway": false, "points": [[-2783.26, -626.79], [-2775.58, -627.13], [-2645.04, -632.88], [-2636.79, -633.24]], "length": 146.61}, {"u": 53514812, "v": 53514818, "oneway": false, "points": [[-2778.03, -464.27], [-2777.2, -454.96], [-2777.07, -453.41], [-2776.87, -401.29], [-2777.31, -378.55], [-2777.46, -370.81]], "length": 93.51}, {"u": 53514812, "v": 53504329, "oneway": false, "points": [[-2778.03, -464.27], [-2779.11, -476.14], [-2779.85, -535.91]], "length": 71.69}, {"u": 53514812, "v": 53549773, "oneway": false, "points": [[-2778.03, -464.27], [-2786.38, -464.13], [-2794.28, -465.25], [-2801.18, -467.39], [-2811.34, -472.09], [-2846.01, -495.88], [-2854.43, -502.53], [-2872.44, -513.9]], "length": 108.82}, {"u": 53514812, "v": 53684770, "oneway": false, "points": [[-2778.03, -464.27], [-2770.49, -464.01], [-2763.84, -463.79], [-2752.54, -461.9], [-2735.12, -456.73], [-2720.41, -449.6], [-2707.84, -440.4], [-2698.68, -430.99], [-2684.89, -418.94], [-2678.47, -414.01], [-2671.66, -409.54], [-2660.36, -404.53], [-2642.8, -397.7], [-2638.12, -396.99], [-2630.24, -397.6]], "length": 167.27}, {"u": 53514818, "v": 53514812, "oneway": false, "points": [[-2777.46, -370.81], [-2777.31, -378.55], [-2776.87, -401.29], [-2777.07, -453.41], [-2777.2, -454.96], [-2778.03, -464.27]], "length": 93.51}, {"u": 53514818, "v": 53485102, "oneway": false, "points": [[-2777.46, -370.81], [-2759.47, -360.22], [-2751.15, -354.23], [-2745.84, -348.05], [-2741.48, -338.4], [-2739.39, -328.01], [-2737.15, -291.43], [-2736.63, -282.88]], "length": 105.67}, {"u": 53514818, "v": 53481435, "oneway": false, "points": [[-2777.46, -370.81], [-2779.27, -371.65], [-2792.66, -375.27], [-2821.55, -382.15], [-2832.07, -384.7]], "length": 56.39}, {"u": 53515071, "v": 2925570317, "oneway": false, "points": [[1459.3, 854.24], [1464.75, 848.39], [1476.78, 834.54], [1479.35, 831.7], [1485.34, 825.04], [1486.89, 823.32], [1496.54, 812.6], [1500.61, 808.09], [1519.83, 786.68], [1525.84, 780.08]], "length": 99.63}, {"u": 53515071, "v": 53515077, "oneway": false, "points": [[1459.3, 854.24], [1465.99, 860.22], [1487.59, 879.67], [1506.65, 896.84], [1527.43, 915.53], [1547.5, 933.59], [1570.99, 954.72], [1583.43, 965.9], [1601.55, 982.21], [1608.67, 988.62]], "length": 200.92}, {"u": 53515071, "v": 2948595076, "oneway": false, "points": [[1459.3, 854.24], [1454.29, 849.48], [1441.72, 838.28], [1437.64, 834.65], [1409.43, 809.04], [1396.45, 797.28], [1393.67, 794.76], [1386.11, 787.92], [1318.77, 726.87], [1316.05, 724.41], [1309.22, 718.22]], "length": 202.55}, {"u": 53515077, "v": 53515080, "oneway": false, "points": [[1608.67, 988.62], [1615.05, 994.64], [1662.9, 1039.89]], "length": 74.63}, {"u": 53515077, "v": 53515071, "oneway": false, "points": [[1608.67, 988.62], [1601.55, 982.21], [1583.43, 965.9], [1570.99, 954.72], [1547.5, 933.59], [1527.43, 915.53], [1506.65, 896.84], [1487.59, 879.67], [1465.99, 860.22], [1459.3, 854.24]], "length": 200.92}, {"u": 53515077, "v": 53432346, "oneway": false, "points": [[1608.67, 988.62], [1614.02, 982.59], [1634.81, 959.15], [1640.47, 952.76], [1650.54, 941.42], [1666.7, 923.19], [1667.47, 922.4], [1675.33, 914.28]], "length": 99.87}, {"u": 53515077, "v": 366215925, "oneway": false, "points": [[1608.67, 988.62], [1602.16, 995.72], [1598.95, 999.23], [1587.04, 1012.48], [1569.78, 1031.69], [1555.33, 1047.77], [1544.37, 1059.96], [1541.01, 1063.82], [1536.37, 1068.7], [1530.3, 1075.14], [1525.64, 1080.12], [1524.03, 1081.75], [1516.49, 1089.64], [1509.88, 1097.25], [1501.41, 1106.53], [1472.09, 1138.69], [1462.41, 1149.31], [1435.76, 1178.52], [1411.4, 1205.23], [1400.32, 1217.38], [1397.98, 1219.95], [1389.05, 1229.73]], "length": 326.15}, {"u": 53515080, "v": 53560780, "oneway": false, "points": [[1662.9, 1039.89], [1656.54, 1046.65], [1626.96, 1078.06], [1625.69, 1080.47], [1625.49, 1083.12], [1626.46, 1085.34], [1628.24, 1087.46], [1656.84, 1113.66], [1664.26, 1120.43], [1686.45, 1140.64], [1709.87, 1162.08], [1716.7, 1168.3]], "length": 182.84}, {"u": 53515080, "v": 53515081, "oneway": false, "points": [[1662.9, 1039.89], [1726.7, 1097.31], [1747.86, 1116.35], [1750.11, 1118.38], [1755.84, 1123.53]], "length": 125.03}, {"u": 53515080, "v": 53515077, "oneway": false, "points": [[1662.9, 1039.89], [1615.05, 994.64], [1608.67, 988.62]], "length": 74.63}, {"u": 53515081, "v": 53432349, "oneway": false, "points": [[1755.84, 1123.53], [1762.03, 1116.88], [1792.89, 1083.83], [1794.41, 1082.2], [1815.71, 1059.37], [1817.53, 1057.42], [1824.33, 1050.12]], "length": 100.39}, {"u": 53515081, "v": 53560780, "oneway": false, "points": [[1755.84, 1123.53], [1750.6, 1129.52], [1749.67, 1130.87], [1716.7, 1168.3]], "length": 59.48}, {"u": 53515081, "v": 53515080, "oneway": false, "points": [[1755.84, 1123.53], [1750.11, 1118.38], [1747.86, 1116.35], [1726.7, 1097.31], [1662.9, 1039.89]], "length": 125.03}, {"u": 53515084, "v": 53539161, "oneway": false, "points": [[106.39, -369.72], [102.02, -364.47], [100.84, -363.09], [73.77, -333.21], [46.09, -303.37], [40.19, -296.85]], "length": 98.46}, {"u": 53515084, "v": 53540665, "oneway": true, "points": [[106.39, -369.72], [96.32, -378.54], [89.79, -384.24], [27.98, -441.99], [16.4, -452.45], [10.23, -457.93]], "length": 130.5}, {"u": 53515093, "v": 53407932, "oneway": true, "points": [[484.81, -23.85], [480.69, -19.43], [456.16, 7.76], [454.96, 9.08], [360.86, 114.14], [358.78, 116.47], [352.5, 122.99]], "length": 197.66}, {"u": 53515093, "v": 1425249983, "oneway": true, "points": [[484.81, -23.85], [434.54, -71.16], [432.6, -72.5], [425.59, -76.96]], "length": 79.71}, {"u": 53516186, "v": 53684770, "oneway": false, "points": [[-2546.7, -399.91], [-2556.26, -399.59], [-2621.57, -397.84], [-2630.24, -397.6]], "length": 83.58}, {"u": 53516186, "v": 2848493174, "oneway": false, "points": [[-2546.7, -399.91], [-2546.47, -392.08], [-2542.17, -245.8], [-2541.14, -210.97], [-2540.91, -203.6]], "length": 196.4}, {"u": 53516186, "v": 53504312, "oneway": false, "points": [[-2546.7, -399.91], [-2546.96, -408.78], [-2548.42, -456.84], [-2550.75, -536.17], [-2550.96, -545.0]], "length": 145.14}, {"u": 53521155, "v": 53672772, "oneway": false, "points": [[-2957.74, -895.74], [-3032.65, -892.51]], "length": 74.98}, {"u": 53521155, "v": 2298789012, "oneway": false, "points": [[-2957.74, -895.74], [-2957.41, -887.87], [-2957.26, -884.14], [-2955.87, -850.32], [-2954.35, -813.17], [-2953.89, -803.68]], "length": 92.15}, {"u": 53521155, "v": 13009756501, "oneway": false, "points": [[-2957.74, -895.74], [-2949.85, -895.98], [-2889.41, -898.78], [-2875.05, -898.18], [-2862.61, -896.65], [-2850.15, -893.79], [-2836.3, -888.29], [-2812.96, -876.17], [-2808.54, -873.03], [-2805.64, -870.96], [-2798.56, -870.04]], "length": 165.41}, {"u": 53521446, "v": 53417781, "oneway": false, "points": [[-847.93, 186.66], [-868.52, 209.54]], "length": 30.78}, {"u": 53521446, "v": 53521450, "oneway": false, "points": [[-847.93, 186.66], [-852.4, 182.67], [-875.4, 162.24], [-883.14, 155.35], [-885.21, 153.51]], "length": 49.9}, {"u": 53521446, "v": 53441256, "oneway": false, "points": [[-847.93, 186.66], [-798.54, 131.8], [-794.48, 127.3], [-788.22, 120.35]], "length": 89.23}, {"u": 53521450, "v": 53467413, "oneway": false, "points": [[-885.21, 153.51], [-887.52, 151.45], [-895.14, 144.68], [-911.49, 130.14], [-914.18, 127.74], [-915.92, 126.18]], "length": 41.1}, {"u": 53521450, "v": 53521446, "oneway": false, "points": [[-885.21, 153.51], [-883.14, 155.35], [-875.4, 162.24], [-852.4, 182.67], [-847.93, 186.66]], "length": 49.9}, {"u": 53521450, "v": 53646359, "oneway": false, "points": [[-885.21, 153.51], [-913.55, 185.64], [-915.92, 188.33]], "length": 46.43}, {"u": 53522245, "v": 53490485, "oneway": false, "points": [[2542.88, 1931.19], [2545.37, 1921.13], [2550.49, 1900.44], [2553.71, 1887.45], [2556.51, 1876.14], [2565.52, 1839.73], [2572.34, 1812.18], [2573.2, 1808.74], [2574.41, 1803.82]], "length": 131.21}, {"u": 53522245, "v": 53498417, "oneway": false, "points": [[2542.88, 1931.19], [2549.44, 1929.78], [2654.71, 1926.62], [2657.35, 1926.54], [2663.05, 1926.4]], "length": 120.37}, {"u": 53522245, "v": 53529499, "oneway": false, "points": [[2542.88, 1931.19], [2539.53, 1933.54], [2535.6, 1936.06]], "length": 8.76}, {"u": 53523650, "v": 1345424861, "oneway": true, "points": [[-2142.78, -345.4], [-2142.27, -341.75]], "length": 3.68}, {"u": 53523650, "v": 1857601633, "oneway": true, "points": [[-2142.78, -345.4], [-2144.57, -343.13], [-2147.35, -340.48], [-2152.21, -338.59]], "length": 11.95}, {"u": 53525132, "v": 53538741, "oneway": true, "points": [[56.49, 30.24], [43.0, 44.34], [16.09, 74.03], [12.07, 78.44], [-2.87, 94.96], [-26.0, 120.83], [-29.84, 125.64]], "length": 128.68}, {"u": 53525132, "v": 845773212, "oneway": true, "points": [[56.49, 30.24], [62.7, 29.44], [68.17, 29.62], [130.14, 84.81], [137.01, 90.9]], "length": 103.9}, {"u": 53525132, "v": 53326149, "oneway": false, "points": [[56.49, 30.24], [48.74, 23.57], [28.96, 5.74], [16.74, -5.51], [-11.9, -31.77], [-24.2, -42.33]], "length": 108.53}, {"u": 53529499, "v": 53529508, "oneway": false, "points": [[2535.6, 1936.06], [2540.27, 1943.76], [2645.74, 2115.98], [2647.44, 2118.76], [2651.29, 2125.44]], "length": 221.92}, {"u": 53529499, "v": 53490480, "oneway": false, "points": [[2535.6, 1936.06], [2530.59, 1929.21], [2528.83, 1926.8], [2507.86, 1893.72], [2502.99, 1885.7], [2499.84, 1880.53], [2483.87, 1854.27], [2471.47, 1836.39], [2468.43, 1831.15], [2466.46, 1826.3], [2465.64, 1822.46], [2466.15, 1818.09], [2466.95, 1814.76], [2467.68, 1811.69], [2469.42, 1806.19], [2472.25, 1794.4], [2473.85, 1787.66], [2474.68, 1784.18], [2476.13, 1778.13]], "length": 179.39}, {"u": 53529499, "v": 53522245, "oneway": false, "points": [[2535.6, 1936.06], [2539.53, 1933.54], [2542.88, 1931.19]], "length": 8.76}, {"u": 53529499, "v": 53572020, "oneway": false, "points": [[2535.6, 1936.06], [2530.01, 1939.99], [2525.38, 1943.24], [2500.63, 1958.76], [2496.8, 1961.16]], "length": 46.22}, {"u": 53529508, "v": 53601429, "oneway": false, "points": [[2651.29, 2125.44], [2612.71, 2150.5]], "length": 46.0}, {"u": 53529508, "v": 53529499, "oneway": false, "points": [[2651.29, 2125.44], [2647.44, 2118.76], [2645.74, 2115.98], [2540.27, 1943.76], [2535.6, 1936.06]], "length": 221.92}, {"u": 53529508, "v": 53498412, "oneway": false, "points": [[2651.29, 2125.44], [2667.79, 2115.53], [2673.42, 2112.16]], "length": 25.81}, {"u": 53529532, "v": 53529537, "oneway": false, "points": [[2688.26, 2648.1], [2681.71, 2655.62], [2681.21, 2656.1], [2659.39, 2678.18], [2652.17, 2685.46], [2623.82, 2715.75], [2620.87, 2718.9], [2619.39, 2720.12]], "length": 99.68}, {"u": 53529532, "v": 53423568, "oneway": false, "points": [[2688.26, 2648.1], [2693.78, 2642.38], [2733.55, 2601.06], [2748.37, 2585.68], [2765.37, 2568.03], [2774.37, 2558.68]], "length": 124.14}, {"u": 53529532, "v": 53467197, "oneway": false, "points": [[2688.26, 2648.1], [2692.75, 2652.57], [2741.97, 2701.5], [2787.0, 2744.03], [2788.14, 2745.11], [2795.95, 2750.56]], "length": 148.77}, {"u": 53529532, "v": 53538791, "oneway": false, "points": [[2688.26, 2648.1], [2683.66, 2643.78], [2661.58, 2623.06], [2628.74, 2590.64], [2597.11, 2560.52], [2564.85, 2530.66], [2558.51, 2524.18]], "length": 179.44}, {"u": 53529537, "v": 53529540, "oneway": false, "points": [[2619.39, 2720.12], [2610.72, 2729.02], [2593.93, 2746.22], [2556.82, 2784.61], [2554.35, 2787.18], [2548.66, 2793.06]], "length": 101.6}, {"u": 53529537, "v": 53529532, "oneway": false, "points": [[2619.39, 2720.12], [2620.87, 2718.9], [2623.82, 2715.75], [2652.17, 2685.46], [2659.39, 2678.18], [2681.21, 2656.1], [2681.71, 2655.62], [2688.26, 2648.1]], "length": 99.68}, {"u": 53529540, "v": 53529537, "oneway": false, "points": [[2548.66, 2793.06], [2554.35, 2787.18], [2556.82, 2784.61], [2593.93, 2746.22], [2610.72, 2729.02], [2619.39, 2720.12]], "length": 101.6}, {"u": 53529540, "v": 53727021, "oneway": false, "points": [[2548.66, 2793.06], [2540.73, 2786.64], [2455.06, 2702.35], [2424.69, 2674.42], [2419.15, 2667.55]], "length": 180.48}, {"u": 53529686, "v": 53529689, "oneway": false, "points": [[-1645.91, -1607.86], [-1655.29, -1607.86], [-1658.19, -1607.8], [-1700.77, -1606.94], [-1765.05, -1605.53], [-1767.83, -1605.47], [-1775.94, -1605.11]], "length": 130.06}, {"u": 53529686, "v": 1179796056, "oneway": false, "points": [[-1645.91, -1607.86], [-1637.2, -1608.17], [-1634.93, -1608.24], [-1594.73, -1609.64], [-1527.66, -1610.82], [-1525.09, -1610.86], [-1518.38, -1611.05]], "length": 127.58}, {"u": 53529686, "v": 53511582, "oneway": false, "points": [[-1645.91, -1607.86], [-1645.66, -1597.48], [-1644.47, -1547.42], [-1643.72, -1500.81], [-1643.67, -1497.61], [-1643.48, -1485.84]], "length": 122.05}, {"u": 53529686, "v": 2573847784, "oneway": false, "points": [[-1645.91, -1607.86], [-1646.28, -1619.02], [-1647.92, -1668.25], [-1648.05, -1677.65], [-1648.56, -1714.71], [-1648.6, -1718.24], [-1648.87, -1728.37]], "length": 120.55}, {"u": 53529689, "v": 53529692, "oneway": false, "points": [[-1775.94, -1605.11], [-1785.01, -1604.94], [-1787.62, -1604.85], [-2005.58, -1596.36], [-2011.63, -1596.2]], "length": 235.86}, {"u": 53529689, "v": 53529686, "oneway": false, "points": [[-1775.94, -1605.11], [-1767.83, -1605.47], [-1765.05, -1605.53], [-1700.77, -1606.94], [-1658.19, -1607.8], [-1655.29, -1607.86], [-1645.91, -1607.86]], "length": 130.06}, {"u": 53529689, "v": 2573847782, "oneway": false, "points": [[-1775.94, -1605.11], [-1776.35, -1616.17], [-1778.17, -1665.74], [-1779.96, -1714.37], [-1780.37, -1725.69]], "length": 120.66}, {"u": 53529689, "v": 53511589, "oneway": false, "points": [[-1775.94, -1605.11], [-1775.78, -1595.19], [-1774.91, -1543.68], [-1773.92, -1494.95], [-1773.68, -1483.68]], "length": 121.45}, {"u": 53529692, "v": 53529689, "oneway": false, "points": [[-2011.63, -1596.2], [-2005.58, -1596.36], [-1787.62, -1604.85], [-1785.01, -1604.94], [-1775.94, -1605.11]], "length": 235.86}, {"u": 53529692, "v": 53478277, "oneway": false, "points": [[-2011.63, -1596.2], [-2011.92, -1604.34], [-2012.5, -1620.89], [-2014.35, -1708.32], [-2014.54, -1717.21]], "length": 121.05}, {"u": 53529692, "v": 53511593, "oneway": false, "points": [[-2011.63, -1596.2], [-2011.33, -1588.62], [-2009.4, -1488.6], [-2009.18, -1477.35]], "length": 118.87}, {"u": 53534017, "v": 53556383, "oneway": true, "points": [[-2454.97, -940.76], [-2448.31, -935.11], [-2340.64, -842.36], [-2339.31, -838.41], [-2339.03, -828.73]], "length": 164.7}, {"u": 53534017, "v": 53473273, "oneway": false, "points": [[-2454.97, -940.76], [-2448.48, -948.09], [-2422.89, -977.02], [-2396.79, -1007.03], [-2390.79, -1013.93]], "length": 97.33}, {"u": 53534017, "v": 4874980024, "oneway": false, "points": [[-2454.97, -940.76], [-2462.22, -946.57], [-2464.9, -948.9], [-2588.18, -1055.64], [-2595.14, -1061.52]], "length": 185.02}, {"u": 53536993, "v": 53536994, "oneway": false, "points": [[1296.4, 1333.68], [1291.69, 1338.71], [1256.22, 1376.65]], "length": 58.83}, {"u": 53536993, "v": 53423508, "oneway": false, "points": [[1296.4, 1333.68], [1303.47, 1325.77], [1352.76, 1270.59], [1368.61, 1252.92], [1371.58, 1249.6], [1376.98, 1243.59]], "length": 120.87}, {"u": 53536993, "v": 53538776, "oneway": false, "points": [[1296.4, 1333.68], [1302.72, 1339.44], [1350.08, 1382.56], [1350.85, 1383.26], [1402.13, 1429.61], [1413.52, 1440.08], [1430.13, 1455.33], [1435.61, 1460.38], [1438.27, 1462.82], [1443.57, 1467.68]], "length": 199.03}, {"u": 53536993, "v": 53453124, "oneway": false, "points": [[1296.4, 1333.68], [1289.09, 1327.02], [1153.67, 1203.53], [1146.45, 1196.92]], "length": 202.95}, {"u": 53536994, "v": 53536993, "oneway": false, "points": [[1256.22, 1376.65], [1291.69, 1338.71], [1296.4, 1333.68]], "length": 58.83}, {"u": 53536994, "v": 53668846, "oneway": true, "points": [[1256.22, 1376.65], [1248.33, 1388.5], [1237.45, 1402.42], [1230.61, 1409.36]], "length": 41.65}, {"u": 53536997, "v": 53536998, "oneway": false, "points": [[1203.72, 1434.04], [1166.34, 1476.02], [1161.07, 1482.05]], "length": 64.22}, {"u": 53536997, "v": 3859915626, "oneway": true, "points": [[1203.72, 1434.04], [1214.02, 1418.29], [1218.37, 1412.47], [1220.26, 1410.36], [1225.45, 1404.58]], "length": 36.68}, {"u": 53536998, "v": 1699123264, "oneway": false, "points": [[1161.07, 1482.05], [1149.1, 1493.82]], "length": 16.79}, {"u": 53536998, "v": 53536997, "oneway": false, "points": [[1161.07, 1482.05], [1166.34, 1476.02], [1203.72, 1434.04]], "length": 64.22}, {"u": 53536998, "v": 53429624, "oneway": true, "points": [[1161.07, 1482.05], [1167.96, 1488.26], [1213.57, 1529.66], [1220.36, 1534.88]], "length": 79.44}, {"u": 53537015, "v": 53437720, "oneway": false, "points": [[854.39, 1767.66], [860.56, 1762.53], [880.6, 1745.19], [1017.3, 1624.62], [1058.29, 1587.79]], "length": 271.91}, {"u": 53537015, "v": 2713391937, "oneway": false, "points": [[854.39, 1767.66], [859.35, 1773.51], [909.97, 1830.58], [915.08, 1836.1]], "length": 91.48}, {"u": 53537015, "v": 53672943, "oneway": false, "points": [[854.39, 1767.66], [848.95, 1761.94], [809.31, 1713.03], [804.23, 1707.2]], "length": 78.59}, {"u": 53537030, "v": 53537035, "oneway": false, "points": [[2261.6, 1431.83], [2319.4, 1471.33], [2379.13, 1512.66]], "length": 142.65}, {"u": 53537030, "v": 53437417, "oneway": false, "points": [[2261.6, 1431.83], [2256.53, 1428.38], [2176.68, 1374.15], [2169.83, 1369.5]], "length": 110.93}, {"u": 53537030, "v": 53461430, "oneway": false, "points": [[2261.6, 1431.83], [2264.64, 1427.43], [2297.21, 1380.14], [2307.41, 1364.02], [2308.75, 1361.92], [2313.75, 1354.01]], "length": 93.69}, {"u": 53537035, "v": 53537040, "oneway": false, "points": [[2379.13, 1512.66], [2391.85, 1521.0], [2399.13, 1525.77], [2436.87, 1552.5]], "length": 70.15}, {"u": 53537035, "v": 53537030, "oneway": false, "points": [[2379.13, 1512.66], [2319.4, 1471.33], [2261.6, 1431.83]], "length": 142.65}, {"u": 53537035, "v": 53589769, "oneway": false, "points": [[2379.13, 1512.66], [2375.31, 1519.37], [2355.01, 1549.79], [2349.94, 1556.86], [2346.73, 1561.44], [2339.91, 1572.34]], "length": 71.44}, {"u": 53537040, "v": 53498440, "oneway": false, "points": [[2436.87, 1552.5], [2454.15, 1564.68], [2499.47, 1594.86], [2561.62, 1638.13], [2623.17, 1679.46], [2625.7, 1680.8], [2628.16, 1681.9], [2628.94, 1682.26], [2631.82, 1683.12], [2637.55, 1683.25]], "length": 240.62}, {"u": 53537040, "v": 53537035, "oneway": false, "points": [[2436.87, 1552.5], [2399.13, 1525.77], [2391.85, 1521.0], [2379.13, 1512.66]], "length": 70.15}, {"u": 53537040, "v": 53461432, "oneway": false, "points": [[2436.87, 1552.5], [2440.32, 1547.72], [2485.37, 1485.57], [2486.15, 1484.49], [2492.7, 1475.46]], "length": 95.14}, {"u": 53538723, "v": 2384881635, "oneway": false, "points": [[1871.99, 1860.78], [1863.01, 1853.03]], "length": 11.86}, {"u": 53538723, "v": 53538727, "oneway": false, "points": [[1871.99, 1860.78], [1877.89, 1866.47], [2009.11, 1992.82], [2016.37, 1999.8]], "length": 200.43}, {"u": 53538723, "v": 2713365262, "oneway": true, "points": [[1871.99, 1860.78], [1864.79, 1867.94], [1851.57, 1881.1], [1825.08, 1902.21]], "length": 62.68}, {"u": 53538727, "v": 53538730, "oneway": false, "points": [[2016.37, 1999.8], [2021.98, 2005.21], [2029.24, 2012.2], [2054.06, 2036.09], [2061.79, 2043.53]], "length": 63.04}, {"u": 53538727, "v": 53538723, "oneway": false, "points": [[2016.37, 1999.8], [2009.11, 1992.82], [1877.89, 1866.47], [1871.99, 1860.78]], "length": 200.43}, {"u": 53538727, "v": 53668900, "oneway": false, "points": [[2016.37, 1999.8], [2010.96, 2005.33], [1954.23, 2063.4], [1947.69, 2070.09]], "length": 98.27}, {"u": 53538730, "v": 53538734, "oneway": false, "points": [[2061.79, 2043.53], [2067.61, 2049.11], [2154.45, 2132.29], [2161.11, 2138.53]], "length": 137.44}, {"u": 53538730, "v": 53538727, "oneway": false, "points": [[2061.79, 2043.53], [2054.06, 2036.09], [2029.24, 2012.2], [2021.98, 2005.21], [2016.37, 1999.8]], "length": 63.04}, {"u": 53538730, "v": 53570522, "oneway": false, "points": [[2061.79, 2043.53], [2068.17, 2036.7], [2082.59, 2021.15], [2104.78, 1999.18]], "length": 61.78}, {"u": 53538734, "v": 53498225, "oneway": false, "points": [[2161.11, 2138.53], [2155.17, 2144.61], [2097.25, 2204.17], [2090.85, 2210.69]], "length": 100.72}, {"u": 53538734, "v": 53570527, "oneway": false, "points": [[2161.11, 2138.53], [2167.38, 2132.41], [2204.95, 2093.95]], "length": 62.52}, {"u": 53538734, "v": 2714912985, "oneway": false, "points": [[2161.11, 2138.53], [2167.52, 2144.74], [2298.78, 2271.74], [2306.26, 2278.94]], "length": 201.95}, {"u": 53538734, "v": 53538730, "oneway": false, "points": [[2161.11, 2138.53], [2154.45, 2132.29], [2067.61, 2049.11], [2061.79, 2043.53]], "length": 137.44}, {"u": 53538736, "v": 53538741, "oneway": true, "points": [[-105.8, 75.05], [-98.92, 75.07], [-89.66, 74.82], [-87.43, 74.84], [-85.33, 75.01], [-83.68, 75.36], [-82.27, 75.88], [-81.14, 76.44], [-80.16, 77.13], [-68.59, 88.0], [-36.91, 118.75], [-29.84, 125.64]], "length": 96.02}, {"u": 53538736, "v": 53538820, "oneway": false, "points": [[-105.8, 75.05], [-106.56, 56.48], [-106.74, 40.67]], "length": 34.39}, {"u": 53538736, "v": 1345392073, "oneway": false, "points": [[-105.8, 75.05], [-105.4, 83.65], [-102.07, 155.88], [-101.01, 178.88], [-100.29, 194.48]], "length": 119.56}, {"u": 53538741, "v": 1345392073, "oneway": true, "points": [[-29.84, 125.64], [-37.83, 134.96], [-52.24, 149.0], [-84.92, 185.73], [-88.31, 189.36], [-92.13, 192.28], [-95.53, 193.5], [-100.29, 194.48]], "length": 99.81}, {"u": 53538741, "v": 2859245549, "oneway": false, "points": [[-29.84, 125.64], [-24.32, 131.15], [-12.25, 143.53], [27.02, 180.26], [36.58, 189.19], [42.6, 194.87]], "length": 100.22}, {"u": 53538743, "v": 845773190, "oneway": true, "points": [[117.22, 262.49], [123.31, 256.09], [162.26, 212.24], [164.55, 209.76], [190.38, 181.78], [192.2, 179.81], [198.7, 172.76]], "length": 121.21}, {"u": 53538743, "v": 5730487258, "oneway": false, "points": [[117.22, 262.49], [124.02, 268.57], [170.51, 310.72], [173.6, 313.65]], "length": 76.13}, {"u": 53538743, "v": 2859245549, "oneway": false, "points": [[117.22, 262.49], [110.7, 256.64], [79.07, 227.92], [49.14, 201.03], [42.6, 194.87]], "length": 100.71}, {"u": 53538776, "v": 53423520, "oneway": false, "points": [[1443.57, 1467.68], [1451.13, 1459.9], [1499.2, 1407.57], [1516.78, 1388.58], [1520.38, 1384.69], [1528.24, 1376.2]], "length": 124.66}, {"u": 53538776, "v": 53536993, "oneway": false, "points": [[1443.57, 1467.68], [1438.27, 1462.82], [1435.61, 1460.38], [1430.13, 1455.33], [1413.52, 1440.08], [1402.13, 1429.61], [1350.85, 1383.26], [1350.08, 1382.56], [1302.72, 1339.44], [1296.4, 1333.68]], "length": 199.03}, {"u": 53538776, "v": 53668858, "oneway": false, "points": [[1443.57, 1467.68], [1439.18, 1472.56], [1383.09, 1535.03], [1376.46, 1542.41]], "length": 100.44}, {"u": 53538791, "v": 53529532, "oneway": false, "points": [[2558.51, 2524.18], [2564.85, 2530.66], [2597.11, 2560.52], [2628.74, 2590.64], [2661.58, 2623.06], [2683.66, 2643.78], [2688.26, 2648.1]], "length": 179.44}, {"u": 53538791, "v": 2714912986, "oneway": false, "points": [[2558.51, 2524.18], [2552.01, 2517.74], [2511.28, 2476.79], [2479.37, 2445.35], [2444.28, 2411.65], [2437.9, 2405.53]], "length": 169.2}, {"u": 53538791, "v": 53423565, "oneway": false, "points": [[2558.51, 2524.18], [2564.75, 2517.83], [2637.27, 2444.47], [2644.11, 2436.69]], "length": 122.42}, {"u": 53538791, "v": 53668890, "oneway": false, "points": [[2558.51, 2524.18], [2552.42, 2530.68], [2494.33, 2589.26], [2487.79, 2595.51]], "length": 100.45}, {"u": 53538820, "v": 53385421, "oneway": true, "points": [[-106.74, 40.67], [-111.6, 40.4], [-115.43, 39.38], [-118.22, 38.18], [-189.31, -26.13], [-198.19, -33.99]], "length": 119.59}, {"u": 53538820, "v": 53538736, "oneway": false, "points": [[-106.74, 40.67], [-106.56, 56.48], [-105.8, 75.05]], "length": 34.39}, {"u": 53539161, "v": 53426174, "oneway": true, "points": [[40.19, -296.85], [50.24, -287.96], [93.96, -249.4], [105.49, -239.0], [131.08, -215.77], [138.27, -209.53]], "length": 131.32}, {"u": 53539161, "v": 53515084, "oneway": false, "points": [[40.19, -296.85], [46.09, -303.37], [73.77, -333.21], [100.84, -363.09], [102.02, -364.47], [106.39, -369.72]], "length": 98.46}, {"u": 53539161, "v": 53332729, "oneway": false, "points": [[40.19, -296.85], [34.17, -290.2], [7.91, -261.2], [-22.42, -227.7], [-32.47, -216.61]], "length": 108.25}, {"u": 53539171, "v": 53483529, "oneway": false, "points": [[201.01, -141.17], [216.52, -142.2], [240.28, -143.25], [249.7, -143.72], [299.19, -145.99], [332.84, -147.77], [347.63, -145.45]], "length": 146.96}, {"u": 53539171, "v": 53407902, "oneway": false, "points": [[201.01, -141.17], [187.7, -140.5], [163.73, -139.3], [94.14, -135.7], [85.4, -135.19]], "length": 115.76}, {"u": 53539171, "v": 53407911, "oneway": true, "points": [[201.01, -141.17], [201.04, -136.87], [200.42, -132.54], [200.36, -131.99], [197.93, -125.13], [195.46, -121.06], [192.26, -117.02], [177.52, -101.4], [167.08, -90.35], [151.8, -74.16], [151.17, -73.49], [142.37, -64.16]], "length": 99.1}, {"u": 53539549, "v": 1142903012, "oneway": false, "points": [[1991.91, 1504.99], [2018.33, 1476.88], [2044.03, 1449.33], [2068.14, 1423.48], [2087.86, 1405.6], [2091.49, 1402.22]], "length": 143.17}, {"u": 53539556, "v": 3208339054, "oneway": false, "points": [[2067.9, 1359.08], [2065.68, 1355.83], [2061.19, 1348.15], [2057.49, 1342.3]], "length": 19.75}, {"u": 53539556, "v": 1142903904, "oneway": true, "points": [[2067.9, 1359.08], [2092.53, 1390.6], [2098.01, 1396.95]], "length": 48.38}, {"u": 53540659, "v": 1186826669, "oneway": true, "points": [[-55.67, -384.29], [-61.24, -375.27], [-103.37, -329.26], [-105.65, -327.57], [-108.52, -326.77], [-115.43, -326.38], [-118.56, -326.24], [-125.0, -325.88]], "length": 95.3}, {"u": 53540659, "v": 53539161, "oneway": true, "points": [[-55.67, -384.29], [-50.14, -379.13], [30.08, -305.87], [40.19, -296.85]], "length": 129.75}, {"u": 53540659, "v": 53540665, "oneway": false, "points": [[-55.67, -384.29], [-50.99, -391.75], [-48.51, -394.37], [-22.73, -421.99], [3.71, -450.82], [5.15, -452.37], [10.23, -457.93]], "length": 98.96}, {"u": 53540665, "v": 53444048, "oneway": true, "points": [[10.23, -457.93], [3.73, -463.72], [0.08, -466.99], [-7.56, -473.78], [-12.2, -476.83], [-19.4, -483.25], [-28.69, -492.62], [-32.78, -496.26], [-41.98, -504.46], [-89.91, -547.18], [-101.5, -557.52], [-127.68, -580.84], [-137.44, -590.89]], "length": 198.83}, {"u": 53540665, "v": 53540659, "oneway": false, "points": [[10.23, -457.93], [5.15, -452.37], [3.71, -450.82], [-22.73, -421.99], [-48.51, -394.37], [-50.99, -391.75], [-55.67, -384.29]], "length": 98.96}, {"u": 53540837, "v": 53540839, "oneway": false, "points": [[2796.04, 1883.86], [2836.44, 1915.89], [2844.21, 1921.43]], "length": 61.1}, {"u": 53540839, "v": 53430844, "oneway": false, "points": [[2844.21, 1921.43], [2846.52, 1938.79], [2851.99, 2059.14], [2852.38, 2066.01]], "length": 144.87}, {"u": 53540839, "v": 53475099, "oneway": false, "points": [[2844.21, 1921.43], [2853.22, 1928.99], [2856.02, 1931.13], [2931.63, 1987.22], [2940.41, 1993.73]], "length": 120.36}, {"u": 53540839, "v": 53540837, "oneway": false, "points": [[2844.21, 1921.43], [2836.44, 1915.89], [2796.04, 1883.86]], "length": 61.1}, {"u": 53540839, "v": 53430857, "oneway": true, "points": [[2844.21, 1921.43], [2843.86, 1905.36], [2843.84, 1899.02], [2843.24, 1894.13], [2842.85, 1888.19], [2842.85, 1881.33], [2843.22, 1878.25], [2845.12, 1872.64]], "length": 49.17}, {"u": 53541408, "v": 3088209647, "oneway": true, "points": [[41.66, 465.45], [35.6, 472.13], [11.19, 499.02], [-20.49, 533.92], [-25.6, 539.58]], "length": 100.1}, {"u": 53541408, "v": 53425702, "oneway": true, "points": [[41.66, 465.45], [48.52, 471.68], [109.97, 527.54], [116.59, 533.55]], "length": 101.25}, {"u": 53543498, "v": 2634693276, "oneway": false, "points": [[-291.22, -2293.83], [-295.52, -2293.6], [-405.62, -2287.87]], "length": 114.55}, {"u": 53543498, "v": 53552967, "oneway": true, "points": [[-291.22, -2293.83], [-288.81, -2246.5], [-286.81, -2207.3], [-286.7, -2205.14], [-286.24, -2196.23]], "length": 97.73}, {"u": 53544863, "v": 53544865, "oneway": false, "points": [[-243.1, -2198.09], [-243.53, -2206.94], [-247.83, -2295.62], [-250.66, -2384.61], [-250.92, -2392.78]], "length": 194.86}, {"u": 53544863, "v": 53552967, "oneway": false, "points": [[-243.1, -2198.09], [-280.46, -2196.48], [-286.24, -2196.23]], "length": 43.18}, {"u": 53544863, "v": 53551342, "oneway": false, "points": [[-243.1, -2198.09], [-199.39, -2199.98], [-193.37, -2200.25]], "length": 49.79}, {"u": 53544865, "v": 2634682652, "oneway": false, "points": [[-250.92, -2392.78], [-251.23, -2399.26], [-254.66, -2472.7], [-255.54, -2489.67]], "length": 97.0}, {"u": 53544865, "v": 53544863, "oneway": false, "points": [[-250.92, -2392.78], [-250.66, -2384.61], [-247.83, -2295.62], [-243.53, -2206.94], [-243.1, -2198.09]], "length": 194.86}, {"u": 53544865, "v": 53552968, "oneway": false, "points": [[-250.92, -2392.78], [-255.18, -2392.58], [-295.04, -2390.75]], "length": 44.17}, {"u": 53544865, "v": 53426577, "oneway": false, "points": [[-250.92, -2392.78], [-173.32, -2396.18], [-163.82, -2396.59]], "length": 87.19}, {"u": 53545466, "v": 53545473, "oneway": true, "points": [[-1624.87, -741.8], [-1634.01, -741.36], [-1675.71, -739.34], [-1717.27, -737.61], [-1743.91, -736.39], [-1745.72, -736.31], [-1753.78, -735.94]], "length": 129.04}, {"u": 53545466, "v": 53616173, "oneway": false, "points": [[-1624.87, -741.8], [-1624.81, -736.46], [-1624.38, -699.5], [-1624.07, -688.79], [-1624.02, -687.33], [-1622.79, -677.89]], "length": 64.01}, {"u": 53545466, "v": 53628954, "oneway": false, "points": [[-1624.87, -741.8], [-1625.18, -746.32], [-1625.66, -770.64], [-1626.2, -792.69], [-1626.37, -799.4]], "length": 57.62}, {"u": 53545473, "v": 53628956, "oneway": false, "points": [[-1753.78, -735.94], [-1755.79, -792.71]], "length": 56.81}, {"u": 53545473, "v": 53509878, "oneway": false, "points": [[-1753.78, -735.94], [-1752.72, -672.34]], "length": 63.61}, {"u": 53545894, "v": 53472269, "oneway": false, "points": [[-1962.78, -846.45], [-1962.56, -837.14], [-1962.0, -809.93], [-1961.58, -790.1], [-1961.32, -777.35], [-1961.07, -765.11], [-1960.56, -740.3], [-1960.47, -736.0]], "length": 110.47}, {"u": 53545894, "v": 53602671, "oneway": false, "points": [[-1962.78, -846.45], [-1996.48, -844.9], [-2015.72, -844.01], [-2024.37, -843.61]], "length": 61.66}, {"u": 53545894, "v": 53503864, "oneway": false, "points": [[-1962.78, -846.45], [-1916.22, -848.61], [-1914.53, -848.68], [-1898.56, -849.43], [-1890.2, -849.81]], "length": 72.65}, {"u": 53549773, "v": 53549801, "oneway": false, "points": [[-2872.44, -513.9], [-2868.93, -505.22], [-2868.44, -503.34], [-2867.84, -501.1], [-2867.3, -496.87], [-2867.34, -492.6], [-2867.92, -488.53], [-2869.0, -484.57], [-2870.6, -480.78], [-2873.14, -476.54], [-2876.11, -472.59], [-2880.31, -468.22], [-2885.05, -464.42], [-2890.24, -461.26], [-2897.72, -457.88], [-2905.53, -455.29], [-2913.56, -453.52], [-2919.72, -452.74], [-2925.92, -452.45], [-2933.88, -452.74], [-2947.95, -453.71], [-2959.73, -454.07]], "length": 133.52}, {"u": 53549773, "v": 53578687, "oneway": false, "points": [[-2872.44, -513.9], [-2882.41, -526.06], [-2920.53, -562.2], [-2933.3, -575.73], [-2944.85, -589.17], [-2960.07, -605.41], [-2963.7, -608.05], [-2968.31, -611.39], [-2976.42, -615.5], [-2986.36, -618.39]], "length": 156.46}, {"u": 53549773, "v": 53514812, "oneway": false, "points": [[-2872.44, -513.9], [-2854.43, -502.53], [-2846.01, -495.88], [-2811.34, -472.09], [-2801.18, -467.39], [-2794.28, -465.25], [-2786.38, -464.13], [-2778.03, -464.27]], "length": 108.82}, {"u": 53549801, "v": 53549773, "oneway": false, "points": [[-2959.73, -454.07], [-2947.95, -453.71], [-2933.88, -452.74], [-2925.92, -452.45], [-2919.72, -452.74], [-2913.56, -453.52], [-2905.53, -455.29], [-2897.72, -457.88], [-2890.24, -461.26], [-2885.05, -464.42], [-2880.31, -468.22], [-2876.11, -472.59], [-2873.14, -476.54], [-2870.6, -480.78], [-2869.0, -484.57], [-2867.92, -488.53], [-2867.34, -492.6], [-2867.3, -496.87], [-2867.84, -501.1], [-2868.44, -503.34], [-2868.93, -505.22], [-2872.44, -513.9]], "length": 133.52}, {"u": 53549801, "v": 53645778, "oneway": false, "points": [[-2959.73, -454.07], [-2942.98, -439.62], [-2920.4, -425.05], [-2906.06, -416.57], [-2893.89, -410.03]], "length": 79.47}, {"u": 53549801, "v": 53572846, "oneway": false, "points": [[-2959.73, -454.07], [-3003.48, -491.45], [-3010.98, -497.46], [-3015.64, -500.66]], "length": 72.81}, {"u": 53549949, "v": 53549957, "oneway": false, "points": [[-2978.64, -1020.24], [-2984.84, -1025.63], [-3092.5, -1116.88], [-3098.98, -1122.4]], "length": 157.86}, {"u": 53549949, "v": 53421612, "oneway": false, "points": [[-2978.64, -1020.24], [-2970.3, -1014.11], [-2965.85, -1012.34], [-2954.88, -1010.25], [-2905.91, -1004.77], [-2885.4, -1002.92], [-2866.88, -1002.23], [-2812.44, -1003.87], [-2809.14, -1003.96], [-2801.36, -1004.2]], "length": 180.26}, {"u": 53549949, "v": 53610868, "oneway": false, "points": [[-2978.64, -1020.24], [-2974.0, -1025.97], [-2926.52, -1084.5], [-2921.17, -1091.33]], "length": 91.42}, {"u": 53549957, "v": 53549949, "oneway": false, "points": [[-3098.98, -1122.4], [-3092.5, -1116.88], [-2984.84, -1025.63], [-2978.64, -1020.24]], "length": 157.86}, {"u": 53549957, "v": 53625770, "oneway": false, "points": [[-3098.98, -1122.4], [-3094.0, -1128.4], [-3046.73, -1184.29], [-3040.96, -1190.86]], "length": 89.74}, {"u": 53551340, "v": 53551342, "oneway": false, "points": [[-190.28, -2120.53], [-192.97, -2188.4], [-193.09, -2191.29], [-193.37, -2200.25]], "length": 79.77}, {"u": 53551340, "v": 53552967, "oneway": false, "points": [[-190.28, -2120.53], [-190.04, -2114.87], [-189.26, -2096.25], [-188.03, -2066.96], [-187.73, -2059.82], [-186.28, -2038.94], [-186.09, -2036.25], [-185.33, -2013.02], [-185.14, -2007.17], [-185.43, -2002.55], [-185.79, -1996.84], [-186.61, -1991.79], [-187.68, -1987.41], [-190.39, -1980.93], [-196.3, -1972.39], [-202.02, -1965.9], [-206.27, -1961.87], [-209.48, -1959.38], [-215.19, -1956.2], [-219.92, -1954.48], [-224.8, -1953.42], [-232.9, -1952.61], [-239.3, -1952.64], [-262.7, -1952.75], [-271.66, -1953.31], [-275.79, -1956.03], [-277.42, -1958.59], [-279.1, -2003.77], [-279.53, -2015.26], [-284.19, -2140.69], [-285.93, -2187.74], [-286.24, -2196.23]], "length": 478.7}, {"u": 53551340, "v": 53620227, "oneway": false, "points": [[-190.28, -2120.53], [-183.1, -2120.78], [-148.75, -2121.98], [-143.21, -2122.18], [-128.36, -2122.69], [-112.63, -2123.25], [-101.6, -2123.63]], "length": 88.74}, {"u": 53551342, "v": 53551340, "oneway": false, "points": [[-193.37, -2200.25], [-193.09, -2191.29], [-192.97, -2188.4], [-190.28, -2120.53]], "length": 79.77}, {"u": 53551342, "v": 53544863, "oneway": false, "points": [[-193.37, -2200.25], [-199.39, -2199.98], [-243.1, -2198.09]], "length": 49.79}, {"u": 53551342, "v": 53426575, "oneway": false, "points": [[-193.37, -2200.25], [-186.9, -2200.53], [-156.08, -2201.86]], "length": 37.32}, {"u": 53552967, "v": 53551340, "oneway": false, "points": [[-286.24, -2196.23], [-285.93, -2187.74], [-284.19, -2140.69], [-279.53, -2015.26], [-279.1, -2003.77], [-277.42, -1958.59], [-275.79, -1956.03], [-271.66, -1953.31], [-262.7, -1952.75], [-239.3, -1952.64], [-232.9, -1952.61], [-224.8, -1953.42], [-219.92, -1954.48], [-215.19, -1956.2], [-209.48, -1959.38], [-206.27, -1961.87], [-202.02, -1965.9], [-196.3, -1972.39], [-190.39, -1980.93], [-187.68, -1987.41], [-186.61, -1991.79], [-185.79, -1996.84], [-185.43, -2002.55], [-185.14, -2007.17], [-185.33, -2013.02], [-186.09, -2036.25], [-186.28, -2038.94], [-187.73, -2059.82], [-188.03, -2066.96], [-189.26, -2096.25], [-190.04, -2114.87], [-190.28, -2120.53]], "length": 478.7}, {"u": 53552967, "v": 53642775, "oneway": false, "points": [[-286.24, -2196.23], [-293.25, -2195.93], [-383.77, -2192.0]], "length": 97.62}, {"u": 53552967, "v": 53544863, "oneway": false, "points": [[-286.24, -2196.23], [-280.46, -2196.48], [-243.1, -2198.09]], "length": 43.18}, {"u": 53552968, "v": 53562507, "oneway": false, "points": [[-295.04, -2390.75], [-346.77, -2388.24], [-350.72, -2388.05], [-409.67, -2385.93]], "length": 114.73}, {"u": 53552968, "v": 53544865, "oneway": false, "points": [[-295.04, -2390.75], [-255.18, -2392.58], [-250.92, -2392.78]], "length": 44.17}, {"u": 53552968, "v": 2634682653, "oneway": false, "points": [[-295.04, -2390.75], [-295.24, -2399.9], [-296.82, -2473.71]], "length": 82.98}, {"u": 53552968, "v": 53543498, "oneway": true, "points": [[-295.04, -2390.75], [-294.73, -2382.85], [-291.22, -2293.83]], "length": 97.0}, {"u": 53555070, "v": 53510828, "oneway": false, "points": [[1174.06, 2516.58], [1172.48, 2518.07], [1172.15, 2518.68], [1168.15, 2526.19], [1165.67, 2533.82], [1164.6, 2541.85], [1166.05, 2553.04], [1168.52, 2561.17], [1170.54, 2567.8], [1173.3, 2576.05], [1179.53, 2594.67], [1186.72, 2621.25], [1193.7, 2640.73], [1203.15, 2658.24], [1207.9, 2665.22], [1222.87, 2687.25], [1238.72, 2703.25], [1241.29, 2705.28], [1246.21, 2709.15], [1255.55, 2713.78], [1266.36, 2715.92], [1275.43, 2717.11], [1289.94, 2717.36], [1325.73, 2716.02], [1382.63, 2714.75], [1404.74, 2713.23]], "length": 377.8}, {"u": 53555070, "v": 53510799, "oneway": false, "points": [[1174.06, 2516.58], [1183.09, 2507.54], [1198.18, 2499.45], [1218.27, 2486.99], [1231.86, 2477.93], [1240.3, 2471.25], [1246.78, 2464.17], [1254.14, 2453.63]], "length": 103.08}, {"u": 53555070, "v": 53568810, "oneway": false, "points": [[1174.06, 2516.58], [1166.24, 2501.9], [1163.15, 2484.76], [1160.23, 2473.62], [1159.01, 2465.21], [1159.01, 2459.43], [1160.54, 2453.16], [1162.37, 2451.55], [1164.82, 2445.93], [1172.92, 2435.81], [1186.8, 2422.52], [1190.96, 2418.19], [1201.2, 2407.55], [1207.47, 2398.82], [1210.08, 2389.44]], "length": 148.3}, {"u": 53556263, "v": 53589977, "oneway": false, "points": [[-2973.92, -3035.94], [-2979.26, -3028.78], [-2988.12, -3019.41], [-2996.68, -3013.83], [-3008.54, -3009.49], [-3026.5, -3013.31], [-3050.18, -3020.18], [-3064.93, -3023.28], [-3070.65, -3020.83], [-3076.63, -3016.4], [-3084.46, -2998.96], [-3091.86, -2987.3], [-3103.92, -2969.95], [-3116.47, -2953.14], [-3127.51, -2934.26], [-3135.68, -2918.24], [-3142.51, -2912.89]], "length": 239.98}, {"u": 53556263, "v": 53680499, "oneway": false, "points": [[-2973.92, -3035.94], [-2947.84, -3010.46], [-2928.96, -2988.89], [-2912.16, -2971.7]], "length": 89.17}, {"u": 53556383, "v": 3035654115, "oneway": false, "points": [[-2339.03, -828.73], [-2386.98, -826.6], [-2396.07, -826.16], [-2409.82, -825.43], [-2454.56, -823.35]], "length": 115.66}, {"u": 53556383, "v": 53473264, "oneway": false, "points": [[-2339.03, -828.73], [-2331.05, -829.06], [-2324.49, -829.35], [-2298.33, -830.67], [-2264.49, -832.06], [-2196.53, -834.88]], "length": 142.64}, {"u": 53556400, "v": 53473302, "oneway": false, "points": [[-2802.08, -1235.88], [-2795.86, -1243.33], [-2771.42, -1272.6], [-2743.88, -1303.03], [-2739.23, -1308.17]], "length": 95.81}, {"u": 53556400, "v": 53462383, "oneway": false, "points": [[-2802.08, -1235.88], [-2807.64, -1229.91], [-2834.68, -1199.55], [-2856.67, -1172.36], [-2858.76, -1169.86], [-2864.29, -1162.93]], "length": 95.91}, {"u": 53556400, "v": 4874980027, "oneway": false, "points": [[-2802.08, -1235.88], [-2795.58, -1230.32], [-2793.48, -1228.59], [-2712.55, -1160.57], [-2709.69, -1158.14], [-2703.04, -1152.42]], "length": 129.51}, {"u": 53556400, "v": 53556402, "oneway": false, "points": [[-2802.08, -1235.88], [-2808.97, -1241.73], [-2811.85, -1244.17], [-2895.15, -1314.1], [-2902.14, -1319.3]], "length": 130.29}, {"u": 53556402, "v": 53473312, "oneway": false, "points": [[-2902.14, -1319.3], [-2895.01, -1327.44], [-2869.74, -1356.29], [-2843.96, -1387.83], [-2839.28, -1393.56]], "length": 97.31}, {"u": 53556402, "v": 53462390, "oneway": false, "points": [[-2902.14, -1319.3], [-2906.2, -1314.08], [-2932.61, -1283.19], [-2956.63, -1254.24], [-2962.95, -1246.48]], "length": 94.88}, {"u": 53556402, "v": 53556400, "oneway": false, "points": [[-2902.14, -1319.3], [-2895.15, -1314.1], [-2811.85, -1244.17], [-2808.97, -1241.73], [-2802.08, -1235.88]], "length": 130.29}, {"u": 53556402, "v": 53556407, "oneway": false, "points": [[-2902.14, -1319.3], [-2909.07, -1325.53], [-2994.7, -1397.72], [-3000.58, -1402.68]], "length": 129.01}, {"u": 53556407, "v": 53473321, "oneway": false, "points": [[-3000.58, -1402.68], [-2993.81, -1410.69], [-2968.52, -1440.6], [-2942.37, -1471.56], [-2937.43, -1477.39]], "length": 97.82}, {"u": 53556407, "v": 53462402, "oneway": false, "points": [[-3000.58, -1402.68], [-3005.12, -1397.29], [-3030.98, -1366.69], [-3056.5, -1337.52], [-3062.7, -1330.17]], "length": 95.48}, {"u": 53556407, "v": 53556402, "oneway": false, "points": [[-3000.58, -1402.68], [-2994.7, -1397.72], [-2909.07, -1325.53], [-2902.14, -1319.3]], "length": 129.01}, {"u": 53556407, "v": 3812685605, "oneway": false, "points": [[-3000.58, -1402.68], [-3005.5, -1406.84], [-3077.32, -1467.62], [-3079.61, -1469.55], [-3086.54, -1475.37]], "length": 112.58}, {"u": 53558103, "v": 316305090, "oneway": false, "points": [[1534.24, 378.88], [1573.06, 413.95], [1581.1, 421.23]], "length": 63.17}, {"u": 53558110, "v": 53670180, "oneway": false, "points": [[1817.79, 635.51], [1822.72, 630.16], [1868.99, 580.0]], "length": 75.52}, {"u": 53558110, "v": 53558116, "oneway": false, "points": [[1817.79, 635.51], [1871.28, 684.55], [1878.5, 691.16]], "length": 82.35}, {"u": 53558110, "v": 316305093, "oneway": false, "points": [[1817.79, 635.51], [1734.75, 562.2], [1729.23, 557.32]], "length": 118.14}, {"u": 53558116, "v": 53558125, "oneway": false, "points": [[1878.5, 691.16], [1884.71, 696.79], [2018.58, 818.13], [2021.3, 820.6], [2026.52, 825.33]], "length": 199.78}, {"u": 53558116, "v": 53558110, "oneway": false, "points": [[1878.5, 691.16], [1871.28, 684.55], [1817.79, 635.51]], "length": 82.35}, {"u": 53558116, "v": 53571781, "oneway": false, "points": [[1878.5, 691.16], [1883.54, 685.75], [1903.25, 664.56], [1922.05, 643.58], [1930.0, 633.69]], "length": 77.19}, {"u": 53558116, "v": 53571775, "oneway": false, "points": [[1878.5, 691.16], [1871.54, 698.81], [1817.5, 758.32], [1810.92, 765.56]], "length": 100.51}, {"u": 53558125, "v": 53560795, "oneway": false, "points": [[2026.52, 825.33], [2032.05, 819.49], [2088.7, 759.65], [2094.75, 753.26]], "length": 99.25}, {"u": 53558125, "v": 53560789, "oneway": false, "points": [[2026.52, 825.33], [2019.9, 832.82], [1965.53, 894.29], [1959.4, 901.21]], "length": 101.3}, {"u": 53558125, "v": 53494580, "oneway": false, "points": [[2026.52, 825.33], [2032.91, 831.11], [2035.31, 833.29], [2169.99, 955.17], [2176.52, 961.08]], "length": 202.3}, {"u": 53558125, "v": 53558116, "oneway": false, "points": [[2026.52, 825.33], [2021.3, 820.6], [2018.58, 818.13], [1884.71, 696.79], [1878.5, 691.16]], "length": 199.78}, {"u": 53558139, "v": 3208342164, "oneway": false, "points": [[2269.4, 1045.38], [2280.43, 1055.26], [2281.93, 1056.61], [2315.82, 1087.24], [2322.32, 1093.69]], "length": 71.66}, {"u": 53558139, "v": 53494585, "oneway": false, "points": [[2269.4, 1045.38], [2270.96, 1043.12], [2274.37, 1039.47], [2276.07, 1037.67], [2316.68, 994.37], [2317.77, 992.56], [2318.51, 989.99], [2317.74, 985.78], [2310.82, 974.31], [2254.4, 897.43], [2250.02, 893.21], [2243.52, 886.95]], "length": 202.52}, {"u": 53558139, "v": 53494580, "oneway": false, "points": [[2269.4, 1045.38], [2264.54, 1040.73], [2183.97, 967.84], [2176.52, 961.08]], "length": 125.43}, {"u": 53558139, "v": 2707919868, "oneway": false, "points": [[2269.4, 1045.38], [2263.4, 1053.68], [2262.42, 1055.03], [2233.78, 1087.23], [2209.25, 1115.08], [2203.03, 1121.71]], "length": 101.21}, {"u": 53558145, "v": 53558147, "oneway": false, "points": [[2432.64, 1196.07], [2435.85, 1199.98]], "length": 5.06}, {"u": 53558145, "v": 53628825, "oneway": false, "points": [[2432.64, 1196.07], [2425.42, 1203.08], [2423.88, 1204.57], [2415.67, 1212.55], [2411.61, 1218.55], [2408.23, 1225.87], [2393.44, 1264.85], [2380.03, 1282.21], [2376.85, 1286.33]], "length": 107.8}, {"u": 53558145, "v": 53437425, "oneway": false, "points": [[2432.64, 1196.07], [2429.84, 1193.29], [2388.73, 1152.51]], "length": 61.85}, {"u": 53558147, "v": 53558145, "oneway": false, "points": [[2435.85, 1199.98], [2432.64, 1196.07]], "length": 5.06}, {"u": 53558147, "v": 3208342165, "oneway": false, "points": [[2435.85, 1199.98], [2441.87, 1193.41], [2443.51, 1191.63], [2485.8, 1145.45]], "length": 73.95}, {"u": 53558147, "v": 53558151, "oneway": false, "points": [[2435.85, 1199.98], [2438.92, 1203.85], [2450.71, 1218.68], [2480.48, 1257.74], [2529.66, 1320.6]], "length": 152.81}, {"u": 53558151, "v": 53558152, "oneway": false, "points": [[2529.66, 1320.6], [2580.27, 1385.54]], "length": 82.33}, {"u": 53558151, "v": 3208339050, "oneway": false, "points": [[2529.66, 1320.6], [2536.45, 1315.0], [2591.6, 1269.52]], "length": 80.29}, {"u": 53558151, "v": 53558147, "oneway": false, "points": [[2529.66, 1320.6], [2480.48, 1257.74], [2450.71, 1218.68], [2438.92, 1203.85], [2435.85, 1199.98]], "length": 152.81}, {"u": 53558152, "v": 53558151, "oneway": false, "points": [[2580.27, 1385.54], [2529.66, 1320.6]], "length": 82.33}, {"u": 53558152, "v": 53589760, "oneway": false, "points": [[2580.27, 1385.54], [2572.75, 1390.47], [2570.02, 1392.27], [2565.23, 1395.4], [2534.17, 1420.39], [2528.54, 1426.0]], "length": 65.8}, {"u": 53558152, "v": 53498447, "oneway": false, "points": [[2580.27, 1385.54], [2612.07, 1430.1], [2622.03, 1442.38], [2622.32, 1443.22], [2624.24, 1448.77]], "length": 77.31}, {"u": 53558155, "v": 53558157, "oneway": false, "points": [[1413.57, 303.54], [1418.85, 297.94]], "length": 7.69}, {"u": 53558155, "v": 53667261, "oneway": false, "points": [[1413.57, 303.54], [1389.25, 329.32], [1369.77, 349.98], [1368.15, 351.69], [1361.72, 358.51]], "length": 75.56}, {"u": 53558155, "v": 53645079, "oneway": false, "points": [[1413.57, 303.54], [1409.45, 300.23], [1406.16, 297.55], [1367.75, 266.2], [1365.94, 265.36], [1362.18, 266.07], [1323.47, 307.8], [1322.13, 309.24], [1315.77, 316.09]], "length": 133.17}, {"u": 53558157, "v": 53711224, "oneway": false, "points": [[1418.85, 297.94], [1425.88, 290.49]], "length": 10.25}, {"u": 53558157, "v": 53558155, "oneway": false, "points": [[1418.85, 297.94], [1413.57, 303.54]], "length": 7.69}, {"u": 53558157, "v": 53558159, "oneway": false, "points": [[1418.85, 297.94], [1426.29, 304.54], [1461.4, 338.3]], "length": 58.65}, {"u": 53558159, "v": 53558157, "oneway": false, "points": [[1461.4, 338.3], [1426.29, 304.54], [1418.85, 297.94]], "length": 58.65}, {"u": 53560253, "v": 316357138, "oneway": true, "points": [[-1499.22, -1367.81], [-1498.66, -1357.3]], "length": 10.52}, {"u": 53560253, "v": 316357429, "oneway": true, "points": [[-1499.22, -1367.81], [-1485.79, -1366.6], [-1476.22, -1363.97], [-1468.07, -1361.74]], "length": 31.86}, {"u": 53560766, "v": 53423520, "oneway": false, "points": [[1538.95, 1363.92], [1528.24, 1376.2]], "length": 16.29}, {"u": 53560766, "v": 53408487, "oneway": false, "points": [[1538.95, 1363.92], [1546.49, 1355.66], [1548.39, 1353.69], [1565.2, 1335.43], [1570.18, 1330.02], [1573.38, 1326.55], [1578.35, 1321.04], [1607.08, 1289.21], [1608.45, 1287.69], [1614.33, 1281.17], [1621.1, 1273.67]], "length": 122.04}, {"u": 53560766, "v": 53719166, "oneway": true, "points": [[1538.95, 1363.92], [1549.57, 1373.79], [1582.02, 1403.98], [1586.22, 1408.04], [1623.51, 1443.99], [1667.41, 1483.74], [1678.0, 1493.19], [1679.2, 1494.25], [1686.03, 1500.61], [1702.21, 1515.26], [1704.4, 1517.26], [1705.13, 1517.9], [1723.23, 1535.04], [1747.7, 1557.77], [1756.76, 1566.22], [1766.06, 1574.58], [1808.35, 1614.42], [1839.31, 1643.36], [1839.94, 1643.92], [1851.35, 1654.59], [1866.28, 1668.47], [1873.6, 1675.37], [1879.04, 1680.28], [1954.29, 1748.28], [1955.63, 1749.6], [1964.8, 1757.78]], "length": 580.1}, {"u": 53560776, "v": 53560780, "oneway": false, "points": [[1662.43, 1228.18], [1671.87, 1217.49], [1684.41, 1203.29], [1686.91, 1200.46], [1694.75, 1192.16], [1699.54, 1187.08], [1712.43, 1172.98], [1716.7, 1168.3]], "length": 80.83}, {"u": 53560776, "v": 53408487, "oneway": false, "points": [[1662.43, 1228.18], [1639.96, 1252.9], [1626.48, 1267.74], [1621.1, 1273.67]], "length": 61.46}, {"u": 53560776, "v": 53408490, "oneway": false, "points": [[1662.43, 1228.18], [1668.81, 1234.08], [1695.76, 1258.98], [1718.21, 1279.73], [1724.35, 1285.43], [1745.24, 1304.87], [1751.36, 1311.25], [1754.79, 1317.27], [1755.89, 1324.46], [1754.59, 1329.43], [1753.24, 1334.54], [1741.1, 1348.89], [1732.03, 1359.05], [1728.58, 1362.91], [1724.52, 1367.47]], "length": 190.04}, {"u": 53560780, "v": 53515081, "oneway": false, "points": [[1716.7, 1168.3], [1749.67, 1130.87], [1750.6, 1129.52], [1755.84, 1123.53]], "length": 59.48}, {"u": 53560780, "v": 53560776, "oneway": false, "points": [[1716.7, 1168.3], [1712.43, 1172.98], [1699.54, 1187.08], [1694.75, 1192.16], [1686.91, 1200.46], [1684.41, 1203.29], [1671.87, 1217.49], [1662.43, 1228.18]], "length": 80.83}, {"u": 53560780, "v": 53515080, "oneway": false, "points": [[1716.7, 1168.3], [1709.87, 1162.08], [1686.45, 1140.64], [1664.26, 1120.43], [1656.84, 1113.66], [1628.24, 1087.46], [1626.46, 1085.34], [1625.49, 1083.12], [1625.69, 1080.47], [1626.96, 1078.06], [1656.54, 1046.65], [1662.9, 1039.89]], "length": 182.84}, {"u": 53560789, "v": 53558125, "oneway": false, "points": [[1959.4, 901.21], [1965.53, 894.29], [2019.9, 832.82], [2026.52, 825.33]], "length": 101.3}, {"u": 53560789, "v": 53461491, "oneway": false, "points": [[1959.4, 901.21], [1953.02, 908.22], [1918.6, 946.11], [1897.53, 969.13], [1892.03, 975.19]], "length": 100.06}, {"u": 53560789, "v": 53494572, "oneway": false, "points": [[1959.4, 901.21], [1964.9, 906.14], [2086.36, 1015.28], [2101.44, 1028.84], [2108.8, 1035.45]], "length": 200.85}, {"u": 53560789, "v": 53571775, "oneway": false, "points": [[1959.4, 901.21], [1953.72, 895.81], [1907.88, 852.27], [1817.27, 771.24], [1810.92, 765.56]], "length": 201.14}, {"u": 53560795, "v": 53560796, "oneway": false, "points": [[2094.75, 753.26], [2102.57, 744.55], [2120.5, 724.58]], "length": 38.54}, {"u": 53560795, "v": 53558125, "oneway": false, "points": [[2094.75, 753.26], [2088.7, 759.65], [2032.05, 819.49], [2026.52, 825.33]], "length": 99.25}, {"u": 53560795, "v": 53494585, "oneway": false, "points": [[2094.75, 753.26], [2099.71, 757.66], [2209.38, 854.9], [2236.62, 880.48], [2243.52, 886.95]], "length": 200.03}, {"u": 53560795, "v": 53571781, "oneway": false, "points": [[2094.75, 753.26], [2087.39, 746.56], [1957.27, 628.15], [1952.87, 624.69], [1948.93, 623.05], [1943.87, 623.25], [1939.59, 624.58], [1935.75, 627.27], [1930.0, 633.69]], "length": 218.6}, {"u": 53560796, "v": 53560795, "oneway": false, "points": [[2120.5, 724.58], [2102.57, 744.55], [2094.75, 753.26]], "length": 38.54}, {"u": 53562507, "v": 53642782, "oneway": false, "points": [[-409.67, -2385.93], [-417.48, -2385.6]], "length": 7.82}, {"u": 53562507, "v": 53552968, "oneway": false, "points": [[-409.67, -2385.93], [-350.72, -2388.05], [-346.77, -2388.24], [-295.04, -2390.75]], "length": 114.73}, {"u": 53562563, "v": 53626983, "oneway": false, "points": [[2155.29, 2693.8], [2130.74, 2717.95]], "length": 34.43}, {"u": 53562563, "v": 53714925, "oneway": false, "points": [[2155.29, 2693.8], [2161.77, 2687.24], [2219.18, 2627.75], [2225.19, 2621.47]], "length": 100.59}, {"u": 53568332, "v": 53611281, "oneway": false, "points": [[2723.07, 1452.33], [2730.52, 1452.7], [2811.36, 1456.68], [2820.87, 1457.15]], "length": 97.92}, {"u": 53568332, "v": 53498447, "oneway": false, "points": [[2723.07, 1452.33], [2716.37, 1452.08], [2635.76, 1449.13], [2633.28, 1449.09], [2624.24, 1448.77]], "length": 98.89}, {"u": 53568332, "v": 3786926320, "oneway": false, "points": [[2723.07, 1452.33], [2723.41, 1446.81], [2723.45, 1446.04], [2727.3, 1383.51], [2727.82, 1374.95]], "length": 77.52}, {"u": 53568332, "v": 53596324, "oneway": false, "points": [[2723.07, 1452.33], [2722.62, 1460.26], [2722.55, 1461.54], [2718.88, 1527.19], [2718.45, 1534.71]], "length": 82.5}, {"u": 53568810, "v": 53555070, "oneway": false, "points": [[1210.08, 2389.44], [1207.47, 2398.82], [1201.2, 2407.55], [1190.96, 2418.19], [1186.8, 2422.52], [1172.92, 2435.81], [1164.82, 2445.93], [1162.37, 2451.55], [1160.54, 2453.16], [1159.01, 2459.43], [1159.01, 2465.21], [1160.23, 2473.62], [1163.15, 2484.76], [1166.24, 2501.9], [1174.06, 2516.58]], "length": 148.3}, {"u": 53570522, "v": 53538730, "oneway": false, "points": [[2104.78, 1999.18], [2082.59, 2021.15], [2068.17, 2036.7], [2061.79, 2043.53]], "length": 61.78}, {"u": 53570522, "v": 53423552, "oneway": false, "points": [[2104.78, 1999.18], [2125.79, 1976.46], [2139.26, 1962.4], [2147.0, 1954.15]], "length": 61.73}, {"u": 53570527, "v": 53538734, "oneway": false, "points": [[2204.95, 2093.95], [2167.38, 2132.41], [2161.11, 2138.53]], "length": 62.52}, {"u": 53570527, "v": 53423556, "oneway": false, "points": [[2204.95, 2093.95], [2219.81, 2079.04], [2240.52, 2058.25], [2247.69, 2051.05]], "length": 60.56}, {"u": 53570527, "v": 53570522, "oneway": true, "points": [[2204.95, 2093.95], [2110.72, 2004.79], [2104.78, 1999.18]], "length": 137.89}, {"u": 53571775, "v": 53461478, "oneway": false, "points": [[1810.92, 765.56], [1803.65, 772.97], [1802.54, 774.1], [1748.71, 832.37], [1742.25, 839.49]], "length": 100.91}, {"u": 53571775, "v": 2713353784, "oneway": false, "points": [[1810.92, 765.56], [1804.14, 759.42], [1668.23, 636.37], [1661.71, 630.46]], "length": 201.28}, {"u": 53571775, "v": 53558116, "oneway": false, "points": [[1810.92, 765.56], [1817.5, 758.32], [1871.54, 698.81], [1878.5, 691.16]], "length": 100.51}, {"u": 53571775, "v": 53560789, "oneway": false, "points": [[1810.92, 765.56], [1817.27, 771.24], [1907.88, 852.27], [1953.72, 895.81], [1959.4, 901.21]], "length": 201.14}, {"u": 53571781, "v": 53621652, "oneway": false, "points": [[1930.0, 633.69], [1924.87, 627.34], [1923.33, 625.43], [1911.76, 615.4]], "length": 25.93}, {"u": 53571781, "v": 53560795, "oneway": false, "points": [[1930.0, 633.69], [1935.75, 627.27], [1939.59, 624.58], [1943.87, 623.25], [1948.93, 623.05], [1952.87, 624.69], [1957.27, 628.15], [2087.39, 746.56], [2094.75, 753.26]], "length": 218.6}, {"u": 53571781, "v": 53558116, "oneway": false, "points": [[1930.0, 633.69], [1922.05, 643.58], [1903.25, 664.56], [1883.54, 685.75], [1878.5, 691.16]], "length": 77.19}, {"u": 53572019, "v": 53572020, "oneway": false, "points": [[2454.58, 1986.13], [2462.16, 1981.65], [2496.8, 1961.16]], "length": 49.06}, {"u": 53572019, "v": 53636377, "oneway": false, "points": [[2454.58, 1986.13], [2459.33, 1993.85], [2504.13, 2066.54], [2508.77, 2074.08]], "length": 103.3}, {"u": 53572019, "v": 53480554, "oneway": false, "points": [[2454.58, 1986.13], [2449.87, 1978.65], [2440.25, 1963.35], [2426.02, 1941.23], [2400.97, 1900.93], [2380.17, 1868.5], [2377.16, 1863.82]], "length": 144.75}, {"u": 53572020, "v": 53529499, "oneway": false, "points": [[2496.8, 1961.16], [2500.63, 1958.76], [2525.38, 1943.24], [2530.01, 1939.99], [2535.6, 1936.06]], "length": 46.22}, {"u": 53572020, "v": 53572019, "oneway": false, "points": [[2496.8, 1961.16], [2462.16, 1981.65], [2454.58, 1986.13]], "length": 49.06}, {"u": 53572020, "v": 53601429, "oneway": false, "points": [[2496.8, 1961.16], [2500.95, 1967.94], [2536.24, 2025.63], [2562.23, 2066.35], [2572.68, 2084.62], [2600.27, 2129.47], [2612.71, 2150.5]], "length": 222.02}, {"u": 53572027, "v": 53498417, "oneway": false, "points": [[2753.19, 1919.62], [2745.63, 1920.09], [2691.8, 1923.46], [2672.63, 1925.38], [2670.43, 1925.6], [2663.05, 1926.4]], "length": 90.41}, {"u": 53572027, "v": 53490496, "oneway": false, "points": [[2753.19, 1919.62], [2753.08, 1914.5], [2751.48, 1886.56], [2751.34, 1882.55], [2751.88, 1872.65], [2753.84, 1864.37], [2756.8, 1857.71], [2760.28, 1849.89]], "length": 71.39}, {"u": 53572027, "v": 53604832, "oneway": false, "points": [[2753.19, 1919.62], [2758.52, 2010.83], [2760.94, 2063.66], [2761.2, 2071.48]], "length": 152.07}, {"u": 53572824, "v": 53311057, "oneway": false, "points": [[-3019.28, -616.93], [-3012.9, -623.11], [-3008.93, -625.52], [-3003.29, -628.95], [-2990.2, -638.55]], "length": 36.36}, {"u": 53572824, "v": 53572846, "oneway": false, "points": [[-3019.28, -616.93], [-3028.41, -606.11], [-3033.36, -598.07], [-3038.57, -589.25], [-3042.58, -575.91], [-3044.24, -565.52], [-3044.21, -553.3], [-3042.34, -542.01], [-3038.14, -529.24], [-3033.38, -520.13], [-3032.02, -517.53], [-3023.41, -507.33], [-3015.64, -500.66]], "length": 132.2}, {"u": 53572824, "v": 53311058, "oneway": false, "points": [[-3019.28, -616.93], [-2995.73, -618.38], [-2991.17, -618.29]], "length": 28.16}, {"u": 53572846, "v": 53549801, "oneway": false, "points": [[-3015.64, -500.66], [-3010.98, -497.46], [-3003.48, -491.45], [-2959.73, -454.07]], "length": 72.81}, {"u": 53572846, "v": 53436855, "oneway": false, "points": [[-3015.64, -500.66], [-3024.1, -505.75], [-3031.13, -509.44], [-3042.76, -514.21], [-3052.04, -516.61], [-3069.4, -519.67], [-3076.17, -520.03], [-3090.19, -519.96], [-3099.05, -519.37], [-3105.18, -519.75], [-3108.37, -520.43], [-3119.49, -524.45], [-3125.86, -527.71], [-3132.49, -534.3]], "length": 125.0}, {"u": 53572846, "v": 53572824, "oneway": false, "points": [[-3015.64, -500.66], [-3023.41, -507.33], [-3032.02, -517.53], [-3033.38, -520.13], [-3038.14, -529.24], [-3042.34, -542.01], [-3044.21, -553.3], [-3044.24, -565.52], [-3042.58, -575.91], [-3038.57, -589.25], [-3033.36, -598.07], [-3028.41, -606.11], [-3019.28, -616.93]], "length": 132.2}, {"u": 53573840, "v": 316165989, "oneway": false, "points": [[248.18, -2262.13], [255.12, -2279.82]], "length": 19.0}, {"u": 53573840, "v": 53465696, "oneway": false, "points": [[248.18, -2262.13], [235.0, -2244.09], [230.79, -2238.81], [224.3, -2230.67], [217.86, -2226.21], [211.52, -2221.8], [197.9, -2215.91], [183.94, -2213.96], [176.66, -2213.89], [160.39, -2213.74], [155.57, -2214.05], [140.03, -2216.05], [126.88, -2220.01], [111.25, -2227.68], [108.59, -2229.43], [102.45, -2233.43]], "length": 169.7}, {"u": 53573840, "v": 53644201, "oneway": false, "points": [[248.18, -2262.13], [254.9, -2258.25], [263.45, -2250.77], [270.57, -2245.16], [276.93, -2240.16], [279.21, -2240.12], [290.36, -2251.42], [293.07, -2254.18]], "length": 58.3}, {"u": 53573861, "v": 366229504, "oneway": false, "points": [[-54.23, -2205.83], [-45.25, -2206.18], [-27.13, -2206.88], [-0.89, -2207.9]], "length": 53.38}, {"u": 53573861, "v": 53426575, "oneway": false, "points": [[-54.23, -2205.83], [-87.63, -2204.53], [-112.45, -2203.56], [-117.21, -2203.38], [-156.08, -2201.86]], "length": 101.93}, {"u": 53573861, "v": 53426577, "oneway": false, "points": [[-54.23, -2205.83], [-47.58, -2217.14], [-20.73, -2263.82], [-15.4, -2273.32], [-9.02, -2283.55], [2.06, -2301.31], [31.6, -2348.67], [43.38, -2367.58], [45.03, -2372.63], [45.03, -2382.56], [44.47, -2386.72], [41.69, -2391.9], [39.1, -2394.91], [35.56, -2399.14], [22.92, -2402.12], [-0.88, -2402.11], [-113.6, -2398.3], [-154.72, -2396.9], [-163.82, -2396.59]], "length": 423.57}, {"u": 53575900, "v": 53575901, "oneway": false, "points": [[-2117.13, -1557.78], [-2118.52, -1618.42]], "length": 60.65}, {"u": 53575900, "v": 53511603, "oneway": false, "points": [[-2117.13, -1557.78], [-2115.46, -1486.09], [-2115.16, -1474.81]], "length": 82.99}, {"u": 53575900, "v": 53695962, "oneway": false, "points": [[-2117.13, -1557.78], [-2110.65, -1557.91], [-2067.35, -1558.76]], "length": 49.79}, {"u": 53575901, "v": 53575900, "oneway": false, "points": [[-2118.52, -1618.42], [-2117.13, -1557.78]], "length": 60.65}, {"u": 53575901, "v": 53478277, "oneway": false, "points": [[-2118.52, -1618.42], [-2119.08, -1652.89], [-2120.99, -1705.86], [-2121.11, -1710.03], [-2120.99, -1712.36], [-2120.3, -1714.15], [-2119.48, -1714.9], [-2118.22, -1715.18], [-2114.63, -1715.37], [-2061.31, -1716.13], [-2021.04, -1717.06], [-2014.54, -1717.21]], "length": 202.02}, {"u": 53575901, "v": 53647040, "oneway": false, "points": [[-2118.52, -1618.42], [-2112.36, -1618.58], [-2065.92, -1619.85]], "length": 52.62}, {"u": 53576821, "v": 53503864, "oneway": false, "points": [[-1757.34, -855.95], [-1766.34, -855.53], [-1799.28, -854.01], [-1808.99, -853.57], [-1815.99, -853.24], [-1836.31, -852.3], [-1839.89, -852.13], [-1872.26, -850.64], [-1881.89, -850.2], [-1890.2, -849.81]], "length": 133.0}, {"u": 53576821, "v": 53483330, "oneway": false, "points": [[-1757.34, -855.95], [-1757.61, -865.15], [-1757.96, -879.38], [-1758.0, -880.79], [-1758.99, -917.32], [-1759.23, -926.14]], "length": 70.22}, {"u": 53576821, "v": 53628956, "oneway": false, "points": [[-1757.34, -855.95], [-1757.08, -847.01], [-1756.65, -820.38], [-1756.49, -810.48], [-1756.38, -804.96], [-1756.01, -797.48], [-1755.79, -792.71]], "length": 63.26}, {"u": 53576821, "v": 53616166, "oneway": false, "points": [[-1757.34, -855.95], [-1748.71, -856.36], [-1720.71, -857.71], [-1694.69, -858.92], [-1658.39, -860.68], [-1637.04, -861.72], [-1627.88, -862.16]], "length": 129.61}, {"u": 53576823, "v": 53430443, "oneway": false, "points": [[-1762.38, -1059.67], [-1761.47, -1009.86], [-1761.29, -1000.13]], "length": 59.55}, {"u": 53576823, "v": 53576826, "oneway": false, "points": [[-1762.38, -1059.67], [-1763.97, -1110.2], [-1764.3, -1120.73]], "length": 61.1}, {"u": 53576823, "v": 53680515, "oneway": false, "points": [[-1762.38, -1059.67], [-1770.85, -1059.46], [-1774.44, -1059.39], [-1846.31, -1058.05]], "length": 83.95}, {"u": 53576826, "v": 53576823, "oneway": false, "points": [[-1764.3, -1120.73], [-1763.97, -1110.2], [-1762.38, -1059.67]], "length": 61.1}, {"u": 53576826, "v": 53676376, "oneway": false, "points": [[-1764.3, -1120.73], [-1756.65, -1120.89], [-1710.73, -1121.81], [-1703.76, -1121.95], [-1646.08, -1123.11], [-1643.86, -1123.15], [-1635.08, -1123.33]], "length": 129.25}, {"u": 53576826, "v": 53576829, "oneway": false, "points": [[-1764.3, -1120.73], [-1764.53, -1131.91], [-1765.53, -1182.27], [-1766.79, -1230.79], [-1767.07, -1241.58]], "length": 120.88}, {"u": 53576826, "v": 53709531, "oneway": false, "points": [[-1764.3, -1120.73], [-1773.31, -1120.54], [-1885.04, -1118.13], [-1893.42, -1117.94]], "length": 129.14}, {"u": 53576829, "v": 53503843, "oneway": false, "points": [[-1767.07, -1241.58], [-1775.6, -1241.22], [-1776.37, -1241.19], [-1888.0, -1238.38], [-1896.28, -1238.1]], "length": 129.27}, {"u": 53576829, "v": 2573847790, "oneway": false, "points": [[-1767.07, -1241.58], [-1759.17, -1241.79], [-1731.72, -1242.49], [-1707.78, -1242.77], [-1646.66, -1243.5], [-1638.61, -1243.6]], "length": 128.48}, {"u": 53576829, "v": 53576831, "oneway": false, "points": [[-1767.07, -1241.58], [-1767.34, -1253.23], [-1768.48, -1302.02], [-1769.75, -1352.12], [-1770.03, -1363.1]], "length": 121.56}, {"u": 53576829, "v": 53576826, "oneway": false, "points": [[-1767.07, -1241.58], [-1766.79, -1230.79], [-1765.53, -1182.27], [-1764.53, -1131.91], [-1764.3, -1120.73]], "length": 120.88}, {"u": 53576831, "v": 53503849, "oneway": false, "points": [[-1770.03, -1363.1], [-1777.65, -1362.98], [-1779.79, -1362.91], [-1831.85, -1361.49], [-1863.64, -1360.52], [-1892.11, -1359.83], [-1899.41, -1359.63]], "length": 129.43}, {"u": 53576831, "v": 53621256, "oneway": false, "points": [[-1770.03, -1363.1], [-1761.47, -1363.34], [-1759.03, -1363.38], [-1649.61, -1365.02], [-1647.67, -1365.04], [-1639.87, -1365.16]], "length": 130.18}, {"u": 53576831, "v": 53511589, "oneway": false, "points": [[-1770.03, -1363.1], [-1770.29, -1373.67], [-1771.52, -1422.9], [-1773.29, -1472.52], [-1773.68, -1483.68]], "length": 120.64}, {"u": 53576831, "v": 53576829, "oneway": false, "points": [[-1770.03, -1363.1], [-1769.75, -1352.12], [-1768.48, -1302.02], [-1767.34, -1253.23], [-1767.07, -1241.58]], "length": 121.56}, {"u": 53578330, "v": 53578339, "oneway": false, "points": [[611.0, 1191.65], [611.03, 1196.69], [611.17, 1198.55], [611.55, 1200.56], [616.53, 1216.57], [675.06, 1399.02], [677.86, 1407.97]], "length": 226.7}, {"u": 53578330, "v": 3264677727, "oneway": false, "points": [[611.0, 1191.65], [608.27, 1193.55], [605.87, 1195.69], [601.08, 1200.56], [597.96, 1204.08], [584.58, 1219.19], [577.32, 1227.35], [560.03, 1246.78], [547.62, 1260.27]], "length": 93.52}, {"u": 53578330, "v": 4172253594, "oneway": false, "points": [[611.0, 1191.65], [612.36, 1187.68], [618.4, 1178.9], [621.94, 1175.01], [636.74, 1159.29], [639.67, 1156.19], [645.33, 1150.04]], "length": 54.34}, {"u": 53578339, "v": 53453173, "oneway": false, "points": [[677.86, 1407.97], [694.09, 1458.5], [725.47, 1556.97], [745.95, 1622.52], [748.49, 1630.67]], "length": 233.64}, {"u": 53578339, "v": 53578330, "oneway": false, "points": [[677.86, 1407.97], [675.06, 1399.02], [616.53, 1216.57], [611.55, 1200.56], [611.17, 1198.55], [611.03, 1196.69], [611.0, 1191.65]], "length": 226.7}, {"u": 53578351, "v": 53578355, "oneway": true, "points": [[1036.42, 1974.01], [1073.85, 2010.35], [1081.57, 2018.53], [1089.85, 2027.78], [1103.66, 2050.91]], "length": 102.78}, {"u": 53578351, "v": 2713391937, "oneway": false, "points": [[1036.42, 1974.01], [921.73, 1843.57], [915.08, 1836.1]], "length": 183.69}, {"u": 53578355, "v": 53578357, "oneway": false, "points": [[1103.66, 2050.91], [1124.61, 2073.98]], "length": 31.16}, {"u": 53578355, "v": 53578351, "oneway": true, "points": [[1103.66, 2050.91], [1090.62, 2038.9], [1084.05, 2032.66], [1075.36, 2024.06], [1066.89, 2016.29], [1036.42, 1974.01]], "length": 102.63}, {"u": 53578357, "v": 53578355, "oneway": false, "points": [[1124.61, 2073.98], [1103.66, 2050.91]], "length": 31.16}, {"u": 53578357, "v": 2713365265, "oneway": true, "points": [[1124.61, 2073.98], [1134.18, 2081.83], [1140.18, 2087.38], [1150.21, 2097.76], [1178.54, 2132.33], [1185.15, 2146.32]], "length": 95.15}, {"u": 53578366, "v": 53672055, "oneway": false, "points": [[1247.59, 2302.43], [1254.96, 2299.17], [1276.07, 2290.18], [1294.93, 2283.09], [1331.76, 2269.05], [1345.59, 2263.6], [1353.78, 2258.42], [1359.51, 2253.7], [1364.66, 2248.56], [1367.09, 2245.15], [1371.21, 2238.26], [1373.96, 2229.18], [1374.93, 2222.81], [1381.23, 2191.71]], "length": 189.7}, {"u": 53578366, "v": 2713391900, "oneway": false, "points": [[1247.59, 2302.43], [1252.4, 2314.32], [1254.66, 2319.97], [1256.59, 2324.07], [1267.75, 2344.94], [1279.37, 2366.66], [1284.19, 2375.76]], "length": 82.04}, {"u": 53578366, "v": 2713365265, "oneway": false, "points": [[1247.59, 2302.43], [1245.83, 2297.9], [1229.05, 2254.5], [1219.88, 2231.72], [1204.64, 2189.06], [1202.63, 2183.97], [1201.23, 2180.43], [1195.82, 2168.68], [1185.15, 2146.32]], "length": 168.24}, {"u": 53578383, "v": 53510828, "oneway": false, "points": [[1459.52, 2709.24], [1452.32, 2709.77], [1404.74, 2713.23]], "length": 54.93}, {"u": 53578383, "v": 53578394, "oneway": false, "points": [[1459.52, 2709.24], [1477.69, 2742.95], [1481.18, 2749.42], [1485.63, 2757.69], [1488.31, 2762.67], [1500.39, 2783.92]], "length": 85.14}, {"u": 53578383, "v": 496686196, "oneway": false, "points": [[1459.52, 2709.24], [1422.64, 2638.45], [1408.95, 2612.18], [1393.5, 2582.52], [1360.67, 2519.52], [1358.43, 2515.3], [1339.59, 2479.77], [1331.24, 2464.01]], "length": 276.76}, {"u": 53578394, "v": 316306590, "oneway": false, "points": [[1500.39, 2783.92], [1513.59, 2807.85]], "length": 27.32}, {"u": 53578394, "v": 53499266, "oneway": false, "points": [[1500.39, 2783.92], [1509.33, 2779.25], [1519.22, 2774.08], [1545.13, 2760.52], [1548.57, 2758.79], [1587.01, 2739.46], [1593.21, 2736.64], [1595.96, 2735.4], [1598.98, 2734.86], [1605.0, 2734.48]], "length": 116.3}, {"u": 53578394, "v": 53578383, "oneway": false, "points": [[1500.39, 2783.92], [1488.31, 2762.67], [1485.63, 2757.69], [1481.18, 2749.42], [1477.69, 2742.95], [1459.52, 2709.24]], "length": 85.14}, {"u": 53578514, "v": 53578519, "oneway": false, "points": [[-503.51, -791.4], [-508.34, -795.82], [-510.88, -798.13], [-571.62, -853.55], [-609.83, -888.41], [-622.63, -900.09], [-647.09, -922.41], [-653.43, -928.2]], "length": 202.96}, {"u": 53578514, "v": 53482954, "oneway": false, "points": [[-503.51, -791.4], [-497.26, -785.71], [-473.49, -764.01], [-461.88, -753.43], [-443.5, -736.65], [-436.02, -729.83], [-429.19, -723.6], [-421.13, -716.24], [-362.06, -662.33], [-356.4, -657.01]], "length": 199.25}, {"u": 53578514, "v": 53663978, "oneway": true, "points": [[-503.51, -791.4], [-497.63, -798.2], [-470.57, -829.05], [-469.13, -830.68]], "length": 52.2}, {"u": 53578519, "v": 53663953, "oneway": false, "points": [[-653.43, -928.2], [-647.69, -934.73], [-625.75, -959.78], [-591.99, -995.83], [-586.08, -1003.51]], "length": 101.07}, {"u": 53578519, "v": 53493129, "oneway": false, "points": [[-653.43, -928.2], [-659.6, -921.42], [-687.03, -891.52], [-690.43, -887.82], [-693.19, -884.88], [-715.78, -859.82], [-722.02, -853.37]], "length": 101.5}, {"u": 53578519, "v": 3269827284, "oneway": false, "points": [[-653.43, -928.2], [-660.05, -934.44], [-711.57, -983.06], [-713.62, -984.99], [-726.68, -997.32]], "length": 100.72}, {"u": 53578519, "v": 53578514, "oneway": false, "points": [[-653.43, -928.2], [-647.09, -922.41], [-622.63, -900.09], [-609.83, -888.41], [-571.62, -853.55], [-510.88, -798.13], [-508.34, -795.82], [-503.51, -791.4]], "length": 202.96}, {"u": 53578682, "v": 53514806, "oneway": false, "points": [[-2636.79, -633.24], [-2645.04, -632.88], [-2775.58, -627.13], [-2783.26, -626.79]], "length": 146.61}, {"u": 53578682, "v": 53504327, "oneway": false, "points": [[-2636.79, -633.24], [-2636.55, -625.0], [-2634.78, -549.92], [-2634.59, -541.53]], "length": 91.74}, {"u": 53578682, "v": 53582923, "oneway": false, "points": [[-2636.79, -633.24], [-2636.97, -641.23], [-2639.15, -716.2], [-2639.56, -724.49]], "length": 91.29}, {"u": 53578687, "v": 53311058, "oneway": false, "points": [[-2986.36, -618.39], [-2991.17, -618.29]], "length": 4.81}, {"u": 53578687, "v": 53514806, "oneway": false, "points": [[-2986.36, -618.39], [-2958.94, -619.89], [-2791.35, -626.47], [-2783.26, -626.79]], "length": 203.27}, {"u": 53578687, "v": 53549773, "oneway": false, "points": [[-2986.36, -618.39], [-2976.42, -615.5], [-2968.31, -611.39], [-2963.7, -608.05], [-2960.07, -605.41], [-2944.85, -589.17], [-2933.3, -575.73], [-2920.53, -562.2], [-2882.41, -526.06], [-2872.44, -513.9]], "length": 156.46}, {"u": 53580606, "v": 3031362525, "oneway": false, "points": [[-2427.66, 248.2], [-2427.51, 254.28], [-2426.29, 269.95], [-2426.59, 281.64]], "length": 33.49}, {"u": 53580606, "v": 53413603, "oneway": false, "points": [[-2427.66, 248.2], [-2428.35, 231.88], [-2429.22, 210.99], [-2430.8, 182.64], [-2431.28, 168.81], [-2432.0, 150.79], [-2432.5, 142.38], [-2433.02, 133.81]], "length": 114.53}, {"u": 53580606, "v": 53725877, "oneway": false, "points": [[-2427.66, 248.2], [-2420.28, 247.89], [-2417.04, 247.73], [-2410.75, 247.58], [-2365.97, 246.05], [-2344.12, 245.45], [-2336.57, 245.66], [-2332.08, 246.71], [-2328.39, 247.72]], "length": 99.58}, {"u": 53580611, "v": 3031362525, "oneway": false, "points": [[-2418.62, 286.89], [-2426.59, 281.64]], "length": 9.54}, {"u": 53580632, "v": 53437708, "oneway": false, "points": [[746.24, 1434.83], [789.9, 1388.02]], "length": 64.02}, {"u": 53582203, "v": 53582205, "oneway": false, "points": [[-1215.19, -515.75], [-1214.59, -505.66], [-1214.39, -502.38], [-1208.71, -399.69], [-1207.19, -389.06]], "length": 126.98}, {"u": 53582203, "v": 2859245573, "oneway": false, "points": [[-1215.19, -515.75], [-1209.77, -516.03], [-1204.96, -516.28], [-1092.61, -521.69], [-1082.69, -522.51]], "length": 132.68}, {"u": 53582203, "v": 1179459724, "oneway": false, "points": [[-1215.19, -515.75], [-1225.68, -515.22], [-1335.28, -509.64], [-1345.0, -509.14], [-1352.85, -508.77], [-1411.82, -505.86], [-1466.04, -503.17], [-1466.68, -503.14], [-1478.01, -502.46]], "length": 263.16}, {"u": 53582205, "v": 53582203, "oneway": false, "points": [[-1207.19, -389.06], [-1208.71, -399.69], [-1214.39, -502.38], [-1214.59, -505.66], [-1215.19, -515.75]], "length": 126.98}, {"u": 53582205, "v": 2859245574, "oneway": true, "points": [[-1207.19, -389.06], [-1195.41, -390.43], [-1086.89, -395.17], [-1076.51, -396.38]], "length": 130.93}, {"u": 53582205, "v": 2859245582, "oneway": false, "points": [[-1207.19, -389.06], [-1206.22, -378.79], [-1204.37, -351.11], [-1203.95, -341.76], [-1203.55, -336.54], [-1203.37, -332.41], [-1203.31, -330.94], [-1200.4, -271.74], [-1200.37, -267.58], [-1200.35, -257.04]], "length": 132.23}, {"u": 53582923, "v": 1944740975, "oneway": false, "points": [[-2639.56, -724.49], [-2647.92, -724.32], [-2778.24, -718.69], [-2785.78, -718.33]], "length": 146.35}, {"u": 53582923, "v": 4214349299, "oneway": false, "points": [[-2639.56, -724.49], [-2631.53, -724.85], [-2566.98, -727.73], [-2556.96, -727.8]], "length": 82.67}, {"u": 53582923, "v": 53578682, "oneway": false, "points": [[-2639.56, -724.49], [-2639.15, -716.2], [-2636.97, -641.23], [-2636.79, -633.24]], "length": 91.29}, {"u": 53582923, "v": 53684762, "oneway": false, "points": [[-2639.56, -724.49], [-2639.68, -732.58], [-2642.45, -806.62], [-2642.54, -816.95]], "length": 92.51}, {"u": 53589708, "v": 53589713, "oneway": false, "points": [[-2255.38, -110.21], [-2233.51, -110.99]], "length": 21.88}, {"u": 53589708, "v": 53461764, "oneway": true, "points": [[-2255.38, -110.21], [-2256.48, -134.86], [-2256.5, -136.69], [-2257.2, -153.82], [-2258.58, -180.84], [-2259.31, -194.99], [-2260.25, -205.12]], "length": 95.05}, {"u": 53589713, "v": 53589708, "oneway": false, "points": [[-2233.51, -110.99], [-2255.38, -110.21]], "length": 21.88}, {"u": 53589713, "v": 53589715, "oneway": true, "points": [[-2233.51, -110.99], [-2232.81, -97.44], [-2232.43, -87.97], [-2232.18, -82.41], [-2231.02, -55.88]], "length": 55.17}, {"u": 53589715, "v": 2988748407, "oneway": false, "points": [[-2231.02, -55.88], [-2253.16, -55.18]], "length": 22.15}, {"u": 53589715, "v": 53486805, "oneway": true, "points": [[-2231.02, -55.88], [-2229.84, -28.76], [-2229.72, -26.0], [-2229.32, -16.92]], "length": 38.99}, {"u": 53589716, "v": 53461764, "oneway": true, "points": [[-2237.07, -208.56], [-2260.25, -205.12]], "length": 23.44}, {"u": 53589716, "v": 53589713, "oneway": true, "points": [[-2237.07, -208.56], [-2236.75, -197.66], [-2235.1, -154.74], [-2234.6, -137.36], [-2234.02, -124.16], [-2233.51, -110.99]], "length": 97.64}, {"u": 53589760, "v": 53558152, "oneway": false, "points": [[2528.54, 1426.0], [2534.17, 1420.39], [2565.23, 1395.4], [2570.02, 1392.27], [2572.75, 1390.47], [2580.27, 1385.54]], "length": 65.8}, {"u": 53589760, "v": 53461432, "oneway": false, "points": [[2528.54, 1426.0], [2520.86, 1433.88], [2498.24, 1467.29], [2496.86, 1469.32], [2492.7, 1475.46]], "length": 61.22}, {"u": 53589760, "v": 53628825, "oneway": false, "points": [[2528.54, 1426.0], [2523.15, 1420.97], [2471.66, 1372.91], [2397.86, 1306.52], [2381.46, 1290.75], [2376.85, 1286.33]], "length": 206.21}, {"u": 53589769, "v": 53537035, "oneway": false, "points": [[2339.91, 1572.34], [2346.73, 1561.44], [2349.94, 1556.86], [2355.01, 1549.79], [2375.31, 1519.37], [2379.13, 1512.66]], "length": 71.44}, {"u": 53589769, "v": 53649105, "oneway": true, "points": [[2339.91, 1572.34], [2345.41, 1576.14], [2425.33, 1631.5]], "length": 103.9}, {"u": 53589794, "v": 53589799, "oneway": false, "points": [[2270.24, 1689.88], [2277.82, 1685.34], [2281.59, 1683.12], [2300.32, 1672.1], [2301.94, 1671.15], [2319.23, 1661.09], [2322.19, 1649.26], [2334.3, 1601.85], [2335.41, 1596.58]], "length": 123.34}, {"u": 53589794, "v": 2859093884, "oneway": false, "points": [[2270.24, 1689.88], [2251.39, 1659.22], [2242.93, 1645.45], [2234.72, 1632.09], [2214.43, 1599.07], [2193.16, 1564.46], [2183.66, 1550.61], [2177.73, 1541.51]], "length": 174.87}, {"u": 53589794, "v": 316342869, "oneway": false, "points": [[2270.24, 1689.88], [2286.88, 1717.35], [2297.18, 1734.34]], "length": 51.98}, {"u": 53589799, "v": 53589794, "oneway": false, "points": [[2335.41, 1596.58], [2334.3, 1601.85], [2322.19, 1649.26], [2319.23, 1661.09], [2301.94, 1671.15], [2300.32, 1672.1], [2281.59, 1683.12], [2277.82, 1685.34], [2270.24, 1689.88]], "length": 123.34}, {"u": 53589977, "v": 53556263, "oneway": false, "points": [[-3142.51, -2912.89], [-3135.68, -2918.24], [-3127.51, -2934.26], [-3116.47, -2953.14], [-3103.92, -2969.95], [-3091.86, -2987.3], [-3084.46, -2998.96], [-3076.63, -3016.4], [-3070.65, -3020.83], [-3064.93, -3023.28], [-3050.18, -3020.18], [-3026.5, -3013.31], [-3008.54, -3009.49], [-2996.68, -3013.83], [-2988.12, -3019.41], [-2979.26, -3028.78], [-2973.92, -3035.94]], "length": 239.98}, {"u": 53589977, "v": 53700390, "oneway": false, "points": [[-3142.51, -2912.89], [-3136.5, -2910.96], [-3118.07, -2907.82], [-3097.87, -2908.29], [-3075.76, -2910.6], [-3056.48, -2912.04], [-3038.94, -2911.44], [-3021.45, -2909.83], [-2999.96, -2905.11], [-2987.13, -2901.26]], "length": 157.29}, {"u": 53590668, "v": 1246389199, "oneway": false, "points": [[-796.06, -3088.56], [-691.89, -3093.66]], "length": 104.3}, {"u": 53590668, "v": 1246389199, "oneway": false, "points": [[-796.06, -3088.56], [-794.93, -3079.13], [-781.41, -2979.15], [-777.8, -2973.2], [-771.41, -2970.04], [-686.12, -2956.35], [-679.3, -2958.07], [-675.94, -2962.48], [-675.24, -2970.99], [-691.89, -3093.66]], "length": 355.77}, {"u": 53590668, "v": 53511694, "oneway": false, "points": [[-796.06, -3088.56], [-848.03, -3086.01], [-852.44, -3085.8], [-891.51, -3083.88], [-893.55, -3083.78], [-903.04, -3083.32]], "length": 107.11}, {"u": 53590699, "v": 53444613, "oneway": false, "points": [[-2311.95, -1105.46], [-2314.6, -1104.27], [-2318.06, -1099.85], [-2322.72, -1094.93], [-2328.4, -1088.61]], "length": 23.8}, {"u": 53590699, "v": 53590707, "oneway": false, "points": [[-2311.95, -1105.46], [-2314.54, -1117.91], [-2315.44, -1125.03], [-2316.19, -1136.79], [-2316.99, -1186.43], [-2317.44, -1215.11], [-2317.48, -1217.03], [-2317.64, -1226.89]], "length": 121.79}, {"u": 53590699, "v": 53709543, "oneway": false, "points": [[-2311.95, -1105.46], [-2308.8, -1106.44], [-2305.21, -1106.54], [-2298.08, -1106.76], [-2241.45, -1108.46], [-2175.42, -1110.46], [-2166.07, -1110.62]], "length": 146.08}, {"u": 53590707, "v": 1178694147, "oneway": false, "points": [[-2317.64, -1226.89], [-2317.91, -1234.37], [-2318.04, -1238.05], [-2319.77, -1287.25], [-2320.11, -1300.26], [-2320.24, -1305.0]], "length": 78.15}, {"u": 53590707, "v": 53590699, "oneway": false, "points": [[-2317.64, -1226.89], [-2317.48, -1217.03], [-2317.44, -1215.11], [-2316.99, -1186.43], [-2316.19, -1136.79], [-2315.44, -1125.03], [-2314.54, -1117.91], [-2311.95, -1105.46]], "length": 121.79}, {"u": 53590707, "v": 53692040, "oneway": false, "points": [[-2317.64, -1226.89], [-2326.51, -1226.68], [-2438.45, -1224.03], [-2448.28, -1223.8]], "length": 130.67}, {"u": 53590707, "v": 53692030, "oneway": false, "points": [[-2317.64, -1226.89], [-2308.7, -1227.16], [-2182.03, -1230.91], [-2177.92, -1231.03], [-2168.71, -1231.3]], "length": 148.99}, {"u": 53590715, "v": 3812685620, "oneway": false, "points": [[-2321.61, -1391.66], [-2323.44, -1455.2], [-2323.55, -1459.11], [-2323.86, -1469.71]], "length": 78.08}, {"u": 53590715, "v": 53621277, "oneway": true, "points": [[-2321.61, -1391.66], [-2316.59, -1391.21], [-2308.19, -1390.12], [-2299.91, -1387.94], [-2292.56, -1384.82], [-2286.63, -1381.61], [-2279.82, -1376.07], [-2273.54, -1368.43], [-2270.07, -1361.08], [-2268.43, -1355.85], [-2267.93, -1349.75]], "length": 75.2}, {"u": 53591793, "v": 53591794, "oneway": false, "points": [[-450.24, -251.77], [-456.34, -245.17], [-513.61, -185.77], [-519.0, -179.89]], "length": 99.48}, {"u": 53591793, "v": 917593109, "oneway": false, "points": [[-450.24, -251.77], [-443.68, -258.01], [-439.17, -263.03], [-421.68, -282.41], [-416.2, -288.5], [-409.81, -295.58], [-397.53, -309.2], [-386.62, -321.29], [-374.42, -334.82], [-366.22, -346.38]], "length": 126.66}, {"u": 53591793, "v": 53604259, "oneway": false, "points": [[-450.24, -251.77], [-457.08, -258.2], [-479.63, -278.52], [-488.7, -286.68], [-494.12, -291.58], [-503.2, -299.76], [-511.7, -307.44], [-514.11, -309.6], [-562.95, -353.64], [-591.05, -378.96], [-593.46, -381.13], [-600.1, -387.45]], "length": 202.16}, {"u": 53591793, "v": 53604257, "oneway": false, "points": [[-450.24, -251.77], [-443.17, -245.35], [-382.29, -190.44], [-374.6, -183.51]], "length": 101.89}, {"u": 53591794, "v": 53699396, "oneway": false, "points": [[-519.0, -179.89], [-523.86, -184.31], [-524.96, -185.3], [-555.0, -212.63], [-573.35, -229.31], [-600.93, -254.39], [-621.27, -272.88], [-632.81, -283.38], [-657.89, -306.18], [-659.1, -307.29], [-667.2, -314.65]], "length": 200.31}, {"u": 53591794, "v": 53591793, "oneway": false, "points": [[-519.0, -179.89], [-513.61, -185.77], [-456.34, -245.17], [-450.24, -251.77]], "length": 99.48}, {"u": 53591804, "v": 53417781, "oneway": false, "points": [[-875.68, 217.49], [-872.95, 214.46], [-868.52, 209.54]], "length": 10.7}, {"u": 53596324, "v": 53596328, "oneway": false, "points": [[2718.45, 1534.71], [2808.33, 1538.59], [2816.81, 1538.95]], "length": 98.45}, {"u": 53596324, "v": 53461443, "oneway": false, "points": [[2718.45, 1534.71], [2651.24, 1532.17], [2637.53, 1531.78], [2628.84, 1531.54]], "length": 89.67}, {"u": 53596324, "v": 53568332, "oneway": false, "points": [[2718.45, 1534.71], [2718.88, 1527.19], [2722.55, 1461.54], [2722.62, 1460.26], [2723.07, 1452.33]], "length": 82.5}, {"u": 53596328, "v": 53487538, "oneway": false, "points": [[2816.81, 1538.95], [2823.09, 1539.2], [2866.55, 1540.89], [2907.98, 1544.67], [2916.94, 1545.48]], "length": 100.38}, {"u": 53596328, "v": 53596324, "oneway": false, "points": [[2816.81, 1538.95], [2808.33, 1538.59], [2718.45, 1534.71]], "length": 98.45}, {"u": 53596328, "v": 53611281, "oneway": false, "points": [[2816.81, 1538.95], [2817.02, 1534.61], [2817.12, 1532.67], [2820.35, 1467.61], [2820.5, 1464.64], [2820.87, 1457.15]], "length": 81.91}, {"u": 53596328, "v": 53496315, "oneway": false, "points": [[2816.81, 1538.95], [2816.24, 1547.61], [2816.12, 1549.46], [2814.75, 1570.13], [2813.48, 1600.28], [2813.17, 1621.19], [2810.54, 1646.49], [2803.65, 1675.1], [2802.22, 1681.07]], "length": 143.34}, {"u": 53596618, "v": 316305093, "oneway": false, "points": [[1770.56, 509.36], [1756.02, 527.03], [1753.3, 530.34], [1736.45, 549.59], [1729.23, 557.32]], "length": 63.33}, {"u": 53596818, "v": 1857601633, "oneway": true, "points": [[-2143.53, -278.18], [-2144.62, -279.3], [-2145.89, -280.29], [-2147.16, -281.37], [-2148.29, -283.27], [-2148.98, -286.61], [-2149.42, -294.73], [-2149.75, -303.28], [-2151.49, -330.81], [-2152.21, -338.59]], "length": 62.55}, {"u": 53596818, "v": 53461758, "oneway": false, "points": [[-2143.53, -278.18], [-2143.18, -269.05], [-2143.02, -264.69], [-2141.64, -228.65], [-2141.48, -224.42], [-2141.11, -214.95]], "length": 63.28}, {"u": 53596818, "v": 1345424868, "oneway": true, "points": [[-2143.53, -278.18], [-2131.37, -283.85], [-2097.8, -300.87]], "length": 51.07}, {"u": 53601429, "v": 53529508, "oneway": false, "points": [[2612.71, 2150.5], [2651.29, 2125.44]], "length": 46.0}, {"u": 53601429, "v": 53572020, "oneway": false, "points": [[2612.71, 2150.5], [2600.27, 2129.47], [2572.68, 2084.62], [2562.23, 2066.35], [2536.24, 2025.63], [2500.95, 1967.94], [2496.8, 1961.16]], "length": 222.02}, {"u": 53601429, "v": 53604822, "oneway": false, "points": [[2612.71, 2150.5], [2579.88, 2170.54], [2577.89, 2171.75], [2571.15, 2175.88]], "length": 48.7}, {"u": 53602671, "v": 2816310353, "oneway": false, "points": [[-2024.37, -843.61], [-2024.66, -853.02], [-2024.57, -855.93], [-2024.34, -863.32], [-2023.67, -885.02], [-2023.61, -889.24], [-2022.92, -919.16]], "length": 75.58}, {"u": 53602671, "v": 53483907, "oneway": false, "points": [[-2024.37, -843.61], [-2033.46, -843.19], [-2063.88, -841.78], [-2069.46, -841.52], [-2091.88, -840.49], [-2111.76, -839.57], [-2116.96, -839.34], [-2150.37, -836.76], [-2158.59, -836.5]], "length": 134.42}, {"u": 53602671, "v": 53545894, "oneway": false, "points": [[-2024.37, -843.61], [-2015.72, -844.01], [-1996.48, -844.9], [-1962.78, -846.45]], "length": 61.66}, {"u": 53604256, "v": 53604257, "oneway": false, "points": [[-338.82, -152.39], [-369.01, -178.7], [-374.6, -183.51]], "length": 47.42}, {"u": 53604257, "v": 53615252, "oneway": true, "points": [[-374.6, -183.51], [-368.65, -189.84], [-348.32, -212.42], [-340.78, -220.73], [-334.93, -227.47], [-326.84, -236.8], [-300.01, -267.43], [-287.35, -281.9]], "length": 131.51}, {"u": 53604257, "v": 53591793, "oneway": false, "points": [[-374.6, -183.51], [-382.29, -190.44], [-443.17, -245.35], [-450.24, -251.77]], "length": 101.89}, {"u": 53604257, "v": 53604256, "oneway": false, "points": [[-374.6, -183.51], [-369.01, -178.7], [-338.82, -152.39]], "length": 47.42}, {"u": 53604259, "v": 53591793, "oneway": false, "points": [[-600.1, -387.45], [-593.46, -381.13], [-591.05, -378.96], [-562.95, -353.64], [-514.11, -309.6], [-511.7, -307.44], [-503.2, -299.76], [-494.12, -291.58], [-488.7, -286.68], [-479.63, -278.52], [-457.08, -258.2], [-450.24, -251.77]], "length": 202.16}, {"u": 53604259, "v": 53604263, "oneway": false, "points": [[-600.1, -387.45], [-606.42, -393.85], [-608.55, -396.15], [-636.79, -422.35], [-659.92, -443.41], [-673.98, -456.21], [-688.6, -469.52], [-703.21, -482.83], [-718.62, -496.87], [-719.58, -497.74], [-739.9, -516.23], [-742.3, -518.42], [-748.25, -523.84]], "length": 201.4}, {"u": 53604259, "v": 53699396, "oneway": true, "points": [[-600.1, -387.45], [-605.5, -381.6], [-610.69, -376.28], [-629.42, -355.85], [-661.53, -320.85], [-667.2, -314.65]], "length": 99.01}, {"u": 53604263, "v": 53508176, "oneway": false, "points": [[-748.25, -523.84], [-752.94, -528.1], [-755.13, -530.1], [-757.2, -531.98], [-779.27, -552.09], [-789.63, -561.52], [-804.46, -575.02], [-808.64, -578.83], [-825.65, -594.31], [-837.52, -605.11], [-840.76, -608.06], [-889.09, -652.05], [-891.04, -653.83], [-897.49, -659.71]], "length": 201.82}, {"u": 53604263, "v": 53604259, "oneway": false, "points": [[-748.25, -523.84], [-742.3, -518.42], [-739.9, -516.23], [-719.58, -497.74], [-718.62, -496.87], [-703.21, -482.83], [-688.6, -469.52], [-673.98, -456.21], [-659.92, -443.41], [-636.79, -422.35], [-608.55, -396.15], [-606.42, -393.85], [-600.1, -387.45]], "length": 201.4}, {"u": 53604263, "v": 53615260, "oneway": true, "points": [[-748.25, -523.84], [-742.55, -530.07], [-719.29, -553.62], [-705.58, -568.02], [-672.17, -603.86], [-670.75, -605.51], [-659.27, -620.89]], "length": 131.79}, {"u": 53604267, "v": 53508176, "oneway": false, "points": [[-945.52, -703.56], [-906.3, -667.73], [-904.22, -665.84], [-897.49, -659.71]], "length": 65.04}, {"u": 53604822, "v": 2627868777, "oneway": false, "points": [[2571.15, 2175.88], [2572.77, 2178.46]], "length": 3.04}, {"u": 53604822, "v": 53601429, "oneway": false, "points": [[2571.15, 2175.88], [2577.89, 2171.75], [2579.88, 2170.54], [2612.71, 2150.5]], "length": 48.7}, {"u": 53604822, "v": 53636377, "oneway": false, "points": [[2571.15, 2175.88], [2566.53, 2168.74], [2558.52, 2155.62], [2514.3, 2083.15], [2508.77, 2074.08]], "length": 119.4}, {"u": 53604832, "v": 53430844, "oneway": false, "points": [[2761.2, 2071.48], [2769.58, 2070.94], [2843.95, 2066.17], [2852.38, 2066.01]], "length": 91.36}, {"u": 53604832, "v": 53498415, "oneway": false, "points": [[2761.2, 2071.48], [2753.32, 2071.76], [2678.14, 2074.5], [2671.34, 2074.86]], "length": 89.92}, {"u": 53604832, "v": 53572027, "oneway": false, "points": [[2761.2, 2071.48], [2760.94, 2063.66], [2758.52, 2010.83], [2753.19, 1919.62]], "length": 152.07}, {"u": 53604832, "v": 53611260, "oneway": false, "points": [[2761.2, 2071.48], [2761.66, 2079.49], [2770.44, 2252.59], [2770.83, 2260.08]], "length": 188.85}, {"u": 53607068, "v": 53607075, "oneway": false, "points": [[-1881.92, -481.98], [-1881.71, -473.12], [-1881.61, -469.46], [-1881.13, -450.5], [-1881.28, -428.64], [-1879.65, -391.82], [-1879.56, -388.23], [-1879.14, -371.83], [-1879.01, -367.07], [-1878.73, -355.78]], "length": 126.26}, {"u": 53607068, "v": 53668988, "oneway": false, "points": [[-1881.92, -481.98], [-1872.85, -482.43], [-1764.02, -487.21], [-1758.94, -487.68], [-1749.46, -488.07]], "length": 132.61}, {"u": 53607068, "v": 1180005834, "oneway": false, "points": [[-1881.92, -481.98], [-1890.82, -481.55], [-2007.26, -475.83], [-2016.51, -475.33]], "length": 134.75}, {"u": 53607075, "v": 53461749, "oneway": false, "points": [[-1878.73, -355.78], [-1878.41, -346.23], [-1878.32, -342.45], [-1877.27, -297.35], [-1877.11, -282.18], [-1877.96, -269.33], [-1879.51, -262.17], [-1881.99, -254.9], [-1884.51, -249.48], [-1886.47, -246.12], [-1888.83, -242.9], [-1892.36, -238.57], [-1895.18, -235.5], [-1899.43, -230.12], [-1902.37, -224.77]], "length": 138.08}, {"u": 53607075, "v": 53607068, "oneway": false, "points": [[-1878.73, -355.78], [-1879.01, -367.07], [-1879.14, -371.83], [-1879.56, -388.23], [-1879.65, -391.82], [-1881.28, -428.64], [-1881.13, -450.5], [-1881.61, -469.46], [-1881.71, -473.12], [-1881.92, -481.98]], "length": 126.26}, {"u": 53607075, "v": 53668996, "oneway": true, "points": [[-1878.73, -355.78], [-1869.37, -356.63], [-1757.93, -362.24], [-1745.22, -362.88]], "length": 133.71}, {"u": 53608986, "v": 4173748917, "oneway": true, "points": [[-734.83, -239.02], [-728.24, -233.13], [-707.96, -215.09], [-704.01, -211.42], [-667.86, -179.08], [-646.38, -158.08], [-596.46, -111.25], [-586.82, -102.96]], "length": 201.08}, {"u": 53608986, "v": 13069954941, "oneway": true, "points": [[-734.83, -239.02], [-742.01, -230.97], [-763.05, -206.11], [-766.34, -202.63]], "length": 48.14}, {"u": 53610868, "v": 53462383, "oneway": false, "points": [[-2921.17, -1091.33], [-2915.95, -1098.14], [-2895.01, -1124.67], [-2882.01, -1140.85], [-2871.86, -1153.88], [-2870.54, -1155.3], [-2864.29, -1162.93]], "length": 91.45}, {"u": 53610868, "v": 53549949, "oneway": false, "points": [[-2921.17, -1091.33], [-2926.52, -1084.5], [-2974.0, -1025.97], [-2978.64, -1020.24]], "length": 91.42}, {"u": 53610868, "v": 53625770, "oneway": false, "points": [[-2921.17, -1091.33], [-2928.42, -1096.79], [-2930.59, -1098.23], [-3035.07, -1185.73], [-3040.96, -1190.86]], "length": 155.78}, {"u": 53610868, "v": 53421621, "oneway": false, "points": [[-2921.17, -1091.33], [-2914.45, -1085.33], [-2909.03, -1081.35], [-2903.37, -1078.55], [-2900.61, -1077.48], [-2898.24, -1076.77], [-2895.67, -1076.24], [-2893.12, -1075.84], [-2890.67, -1075.6], [-2887.88, -1075.46], [-2868.87, -1075.74], [-2865.31, -1075.81], [-2845.97, -1076.31], [-2838.84, -1076.48], [-2827.18, -1076.65], [-2824.05, -1076.7], [-2821.29, -1076.47], [-2816.32, -1075.54], [-2811.47, -1074.37], [-2808.11, -1073.67], [-2800.56, -1072.55]], "length": 125.66}, {"u": 53610896, "v": 53610898, "oneway": false, "points": [[-3079.95, -890.19], [-3072.98, -899.15], [-3067.09, -906.72], [-3062.23, -912.97]], "length": 28.86}, {"u": 53610896, "v": 53672772, "oneway": false, "points": [[-3079.95, -890.19], [-3051.1, -891.6], [-3032.65, -892.51]], "length": 47.35}, {"u": 53610898, "v": 53610896, "oneway": false, "points": [[-3062.23, -912.97], [-3067.09, -906.72], [-3072.98, -899.15], [-3079.95, -890.19]], "length": 28.86}, {"u": 53610898, "v": 53672772, "oneway": false, "points": [[-3062.23, -912.97], [-3052.09, -905.41], [-3032.65, -892.51]], "length": 35.97}, {"u": 53611257, "v": 53611260, "oneway": false, "points": [[2774.49, 2304.69], [2771.3, 2269.24], [2770.83, 2260.08]], "length": 44.77}, {"u": 53611260, "v": 53604832, "oneway": false, "points": [[2770.83, 2260.08], [2770.44, 2252.59], [2761.66, 2079.49], [2761.2, 2071.48]], "length": 188.85}, {"u": 53611260, "v": 53611257, "oneway": false, "points": [[2770.83, 2260.08], [2771.3, 2269.24], [2774.49, 2304.69]], "length": 44.77}, {"u": 53611260, "v": 53430839, "oneway": false, "points": [[2770.83, 2260.08], [2778.59, 2259.68], [2854.17, 2255.8], [2863.33, 2255.39]], "length": 92.63}, {"u": 53611260, "v": 53498398, "oneway": false, "points": [[2770.83, 2260.08], [2762.93, 2260.54], [2687.82, 2264.86], [2681.73, 2265.05]], "length": 89.24}, {"u": 53611268, "v": 53487523, "oneway": false, "points": [[2784.45, 1764.92], [2791.08, 1766.62], [2857.81, 1783.64], [2865.37, 1785.6]], "length": 83.52}, {"u": 53611268, "v": 3786906803, "oneway": false, "points": [[2784.45, 1764.92], [2777.68, 1763.16], [2708.06, 1744.95], [2681.11, 1736.7], [2651.85, 1730.97], [2650.12, 1730.63], [2645.16, 1730.23]], "length": 143.7}, {"u": 53611268, "v": 53496315, "oneway": false, "points": [[2784.45, 1764.92], [2785.84, 1758.58], [2786.37, 1756.16], [2795.65, 1713.82], [2800.7, 1688.67], [2802.22, 1681.07]], "length": 85.72}, {"u": 53611268, "v": 2925569869, "oneway": false, "points": [[2784.45, 1764.92], [2783.08, 1771.12], [2782.47, 1773.87], [2775.62, 1804.82], [2774.15, 1811.16], [2767.91, 1837.9], [2762.43, 1844.89], [2760.82, 1848.04]], "length": 87.25}, {"u": 53611281, "v": 53568332, "oneway": false, "points": [[2820.87, 1457.15], [2811.36, 1456.68], [2730.52, 1452.7], [2723.07, 1452.33]], "length": 97.92}, {"u": 53611281, "v": 3786926320, "oneway": false, "points": [[2820.87, 1457.15], [2821.12, 1451.0], [2821.24, 1447.94], [2823.24, 1398.16], [2813.39, 1396.67], [2791.3, 1393.07], [2733.77, 1376.65], [2727.82, 1374.95]], "length": 157.39}, {"u": 53611281, "v": 53596328, "oneway": false, "points": [[2820.87, 1457.15], [2820.5, 1464.64], [2820.35, 1467.61], [2817.12, 1532.67], [2817.02, 1534.61], [2816.81, 1538.95]], "length": 81.91}, {"u": 53612039, "v": 53612042, "oneway": false, "points": [[-1514.74, -2257.25], [-1531.83, -2262.83], [-1571.1, -2275.64], [-1593.66, -2284.93], [-1602.85, -2288.63]], "length": 93.59}, {"u": 53612039, "v": 2771341200, "oneway": false, "points": [[-1514.74, -2257.25], [-1479.22, -2258.04], [-1433.66, -2260.64], [-1416.4, -2261.62], [-1399.6, -2262.09], [-1395.82, -2262.2], [-1382.85, -2259.22]], "length": 132.34}, {"u": 53612039, "v": 53447620, "oneway": false, "points": [[-1514.74, -2257.25], [-1527.32, -2245.36], [-1535.35, -2234.1], [-1557.82, -2193.33], [-1590.27, -2136.94], [-1617.98, -2085.68], [-1657.4, -2014.07], [-1661.99, -2005.73]], "length": 292.29}, {"u": 53612042, "v": 53612039, "oneway": false, "points": [[-1602.85, -2288.63], [-1593.66, -2284.93], [-1571.1, -2275.64], [-1531.83, -2262.83], [-1514.74, -2257.25]], "length": 93.59}, {"u": 53612042, "v": 53679815, "oneway": false, "points": [[-1602.85, -2288.63], [-1600.31, -2294.61], [-1591.84, -2313.95], [-1581.75, -2340.14], [-1570.02, -2375.95], [-1568.05, -2382.85]], "length": 100.54}, {"u": 53612042, "v": 1153239288, "oneway": false, "points": [[-1602.85, -2288.63], [-1607.51, -2278.79], [-1626.5, -2240.6], [-1651.31, -2199.1], [-1665.73, -2178.9], [-1694.49, -2141.73], [-1739.51, -2091.43], [-1757.7, -2070.32], [-1765.47, -2061.3]], "length": 280.98}, {"u": 53615252, "v": 53493114, "oneway": true, "points": [[-287.35, -281.9], [-274.9, -295.6], [-240.85, -333.03], [-232.21, -342.54], [-205.65, -371.74], [-199.29, -378.73]], "length": 130.88}, {"u": 53615252, "v": 13324853243, "oneway": false, "points": [[-287.35, -281.9], [-295.13, -288.74], [-298.43, -291.6], [-311.12, -302.43]], "length": 31.41}, {"u": 53615252, "v": 53332734, "oneway": false, "points": [[-287.35, -281.9], [-280.49, -275.63], [-261.44, -258.23], [-236.6, -235.67], [-219.33, -219.97], [-206.46, -208.28]], "length": 109.38}, {"u": 53615260, "v": 53493128, "oneway": true, "points": [[-659.27, -620.89], [-647.16, -634.75], [-596.72, -689.76], [-595.11, -691.27], [-577.58, -710.62], [-571.47, -717.36]], "length": 130.46}, {"u": 53615260, "v": 53508174, "oneway": false, "points": [[-659.27, -620.89], [-664.49, -625.61], [-668.33, -629.12], [-670.68, -631.23], [-682.63, -642.11], [-696.51, -654.77], [-705.19, -662.7], [-714.59, -671.14], [-722.3, -678.28], [-738.09, -692.65], [-746.21, -700.04], [-774.67, -725.95], [-778.7, -729.65], [-783.49, -733.99], [-802.33, -751.13], [-809.4, -756.99]], "length": 202.66}, {"u": 53615260, "v": 917593526, "oneway": false, "points": [[-659.27, -620.89], [-653.09, -615.26], [-636.96, -600.57], [-636.39, -600.05], [-627.6, -592.06], [-614.18, -579.84], [-600.43, -567.32], [-599.58, -566.55], [-584.81, -553.11], [-569.41, -539.08], [-555.66, -526.55], [-554.19, -525.23], [-539.75, -512.07], [-516.92, -491.28], [-510.55, -485.48]], "length": 201.13}, {"u": 53616146, "v": 1142904218, "oneway": false, "points": [[494.71, 117.02], [500.83, 122.38], [503.32, 124.69], [524.47, 144.33], [547.83, 166.01], [560.42, 177.69], [578.41, 193.55], [634.17, 246.14], [636.67, 248.5], [643.95, 255.42]], "length": 203.56}, {"u": 53616146, "v": 1192150160, "oneway": false, "points": [[494.71, 117.02], [532.13, 74.6], [553.91, 51.01], [569.43, 30.24], [571.05, 27.58], [574.25, 18.53]], "length": 127.31}, {"u": 53616146, "v": 53407941, "oneway": false, "points": [[494.71, 117.02], [488.83, 123.38], [482.19, 130.6], [457.94, 157.37], [433.89, 183.5], [426.75, 191.8]], "length": 101.05}, {"u": 53616166, "v": 53628954, "oneway": false, "points": [[-1627.88, -862.16], [-1627.69, -850.4], [-1627.58, -848.91], [-1627.31, -837.09], [-1626.51, -805.03], [-1626.37, -799.4]], "length": 62.78}, {"u": 53616166, "v": 53430437, "oneway": false, "points": [[-1627.88, -862.16], [-1628.15, -871.63], [-1628.2, -873.22], [-1629.26, -908.53], [-1629.65, -922.56], [-1630.25, -943.82], [-1631.39, -991.67], [-1631.65, -1002.41]], "length": 140.3}, {"u": 53616166, "v": 1179459773, "oneway": false, "points": [[-1627.88, -862.16], [-1619.66, -862.55], [-1586.98, -864.02], [-1525.67, -866.8], [-1513.7, -867.34]], "length": 114.29}, {"u": 53616166, "v": 53576821, "oneway": false, "points": [[-1627.88, -862.16], [-1637.04, -861.72], [-1658.39, -860.68], [-1694.69, -858.92], [-1720.71, -857.71], [-1748.71, -856.36], [-1757.34, -855.95]], "length": 129.61}, {"u": 53616173, "v": 53509875, "oneway": false, "points": [[-1622.79, -677.89], [-1685.97, -675.19]], "length": 63.23}, {"u": 53616173, "v": 1179459707, "oneway": false, "points": [[-1622.79, -677.89], [-1582.98, -679.58], [-1580.02, -679.71], [-1515.63, -682.46], [-1505.73, -682.87]], "length": 117.17}, {"u": 53616173, "v": 53616175, "oneway": false, "points": [[-1622.79, -677.89], [-1621.29, -669.57], [-1621.19, -666.71], [-1620.47, -646.44], [-1619.55, -620.18], [-1618.83, -599.58], [-1618.51, -593.73]], "length": 84.35}, {"u": 53616173, "v": 53545466, "oneway": false, "points": [[-1622.79, -677.89], [-1624.02, -687.33], [-1624.07, -688.79], [-1624.38, -699.5], [-1624.81, -736.46], [-1624.87, -741.8]], "length": 64.01}, {"u": 53616175, "v": 53616173, "oneway": false, "points": [[-1618.51, -593.73], [-1618.83, -599.58], [-1619.55, -620.18], [-1620.47, -646.44], [-1621.19, -666.71], [-1621.29, -669.57], [-1622.79, -677.89]], "length": 84.35}, {"u": 53616182, "v": 1179459701, "oneway": false, "points": [[-1618.33, -494.97], [-1609.71, -495.39], [-1587.44, -496.48], [-1547.34, -498.46], [-1504.15, -500.58], [-1501.26, -500.72], [-1491.75, -501.19]], "length": 126.73}, {"u": 53616182, "v": 53668988, "oneway": false, "points": [[-1618.33, -494.97], [-1627.56, -494.51], [-1740.01, -488.36], [-1749.46, -488.07]], "length": 131.31}, {"u": 53616182, "v": 53616188, "oneway": false, "points": [[-1618.33, -494.97], [-1617.96, -486.61], [-1617.8, -483.03], [-1616.09, -444.11], [-1615.62, -433.42], [-1612.86, -379.54], [-1612.4, -369.57]], "length": 125.53}, {"u": 53616188, "v": 53488193, "oneway": false, "points": [[-1612.4, -369.57], [-1611.75, -358.53], [-1611.24, -349.76], [-1608.68, -306.18]], "length": 63.5}, {"u": 53616188, "v": 53616182, "oneway": false, "points": [[-1612.4, -369.57], [-1612.86, -379.54], [-1615.62, -433.42], [-1616.09, -444.11], [-1617.8, -483.03], [-1617.96, -486.61], [-1618.33, -494.97]], "length": 125.53}, {"u": 53616188, "v": 1179459686, "oneway": true, "points": [[-1612.4, -369.57], [-1601.94, -370.09], [-1492.01, -375.46], [-1481.34, -375.79]], "length": 131.21}, {"u": 53616189, "v": 53488193, "oneway": false, "points": [[-1605.09, -237.96], [-1605.58, -247.42], [-1605.74, -251.37], [-1607.39, -282.17], [-1608.68, -306.18]], "length": 68.31}, {"u": 53616189, "v": 53652463, "oneway": true, "points": [[-1605.09, -237.96], [-1696.95, -233.55], [-1733.35, -231.8], [-1741.49, -231.41]], "length": 136.55}, {"u": 53620227, "v": 53551340, "oneway": false, "points": [[-101.6, -2123.63], [-112.63, -2123.25], [-128.36, -2122.69], [-143.21, -2122.18], [-148.75, -2121.98], [-183.1, -2120.78], [-190.28, -2120.53]], "length": 88.74}, {"u": 53621162, "v": 53454656, "oneway": false, "points": [[-2478.85, -1343.8], [-2450.42, -1320.14]], "length": 36.99}, {"u": 53621162, "v": 53454658, "oneway": false, "points": [[-2478.85, -1343.8], [-2450.86, -1344.62]], "length": 28.0}, {"u": 53621162, "v": 53621164, "oneway": false, "points": [[-2478.85, -1343.8], [-2505.93, -1366.36], [-2508.09, -1368.16], [-2515.05, -1373.81]], "length": 47.02}, {"u": 53621164, "v": 53621168, "oneway": false, "points": [[-2515.05, -1373.81], [-2521.51, -1379.78], [-2524.14, -1382.04], [-2557.56, -1410.83], [-2574.76, -1425.12], [-2607.72, -1452.91], [-2614.27, -1458.44]], "length": 130.42}, {"u": 53621164, "v": 53621162, "oneway": false, "points": [[-2515.05, -1373.81], [-2508.09, -1368.16], [-2505.93, -1366.36], [-2478.85, -1343.8]], "length": 47.02}, {"u": 53621164, "v": 3812685626, "oneway": false, "points": [[-2515.05, -1373.81], [-2509.11, -1381.07], [-2477.57, -1418.81], [-2464.57, -1434.42]], "length": 78.88}, {"u": 53621164, "v": 53444627, "oneway": false, "points": [[-2515.05, -1373.81], [-2520.56, -1367.38], [-2546.11, -1337.27], [-2571.37, -1307.49], [-2577.34, -1300.3]], "length": 96.35}, {"u": 53621168, "v": 53444632, "oneway": false, "points": [[-2614.27, -1458.44], [-2619.93, -1451.63], [-2644.51, -1422.06], [-2670.78, -1391.76], [-2676.66, -1384.62]], "length": 96.66}, {"u": 53621168, "v": 2635256574, "oneway": false, "points": [[-2614.27, -1458.44], [-2660.57, -1498.56], [-2692.95, -1525.53], [-2706.52, -1536.86], [-2712.85, -1541.86]], "length": 129.16}, {"u": 53621168, "v": 53621164, "oneway": false, "points": [[-2614.27, -1458.44], [-2607.72, -1452.91], [-2574.76, -1425.12], [-2557.56, -1410.83], [-2524.14, -1382.04], [-2521.51, -1379.78], [-2515.05, -1373.81]], "length": 130.42}, {"u": 53621256, "v": 53576831, "oneway": false, "points": [[-1639.87, -1365.16], [-1647.67, -1365.04], [-1649.61, -1365.02], [-1759.03, -1363.38], [-1761.47, -1363.34], [-1770.03, -1363.1]], "length": 130.18}, {"u": 53621256, "v": 1179795984, "oneway": false, "points": [[-1639.87, -1365.16], [-1631.35, -1365.31], [-1550.03, -1366.71], [-1530.29, -1367.13], [-1519.79, -1367.32], [-1511.85, -1367.46]], "length": 128.03}, {"u": 53621256, "v": 2573847790, "oneway": false, "points": [[-1639.87, -1365.16], [-1639.57, -1353.55], [-1638.31, -1305.35], [-1638.53, -1258.09], [-1638.53, -1255.75], [-1638.61, -1243.6]], "length": 121.58}, {"u": 53621256, "v": 53511582, "oneway": false, "points": [[-1639.87, -1365.16], [-1640.13, -1374.77], [-1640.19, -1376.85], [-1641.6, -1426.79], [-1643.0, -1470.92], [-1643.15, -1475.54], [-1643.48, -1485.84]], "length": 120.73}, {"u": 53621269, "v": 53511598, "oneway": false, "points": [[-2027.76, -1356.46], [-2027.96, -1367.19], [-2027.97, -1367.8], [-2029.95, -1466.11], [-2029.98, -1476.64]], "length": 120.21}, {"u": 53621269, "v": 53643772, "oneway": false, "points": [[-2027.76, -1356.46], [-2027.47, -1345.19], [-2026.17, -1295.13], [-2024.68, -1246.66], [-2024.32, -1234.99]], "length": 121.51}, {"u": 53621269, "v": 4095648227, "oneway": false, "points": [[-2027.76, -1356.46], [-2035.83, -1356.24], [-2162.1, -1352.83], [-2163.7, -1352.79], [-2166.31, -1352.71]], "length": 138.6}, {"u": 53621269, "v": 53503849, "oneway": false, "points": [[-2027.76, -1356.46], [-2019.45, -1356.66], [-1907.4, -1359.49], [-1899.41, -1359.63]], "length": 128.39}, {"u": 53621277, "v": 1178694147, "oneway": true, "points": [[-2267.93, -1349.75], [-2268.56, -1341.8], [-2269.28, -1339.44], [-2270.43, -1335.68], [-2273.09, -1329.47], [-2275.96, -1324.9], [-2279.14, -1321.27], [-2282.77, -1317.92], [-2286.69, -1314.8], [-2293.04, -1311.72], [-2298.02, -1310.04], [-2305.66, -1307.66], [-2311.37, -1306.41], [-2314.95, -1305.63], [-2320.24, -1305.0]], "length": 76.45}, {"u": 53621277, "v": 4095648223, "oneway": false, "points": [[-2267.93, -1349.75], [-2263.27, -1349.78], [-2185.33, -1352.2], [-2182.12, -1352.25], [-2178.84, -1352.34]], "length": 89.12}, {"u": 53621652, "v": 53571781, "oneway": false, "points": [[1911.76, 615.4], [1923.33, 625.43], [1924.87, 627.34], [1930.0, 633.69]], "length": 25.93}, {"u": 53624470, "v": 53288575, "oneway": false, "points": [[-73.38, -3092.15], [-73.43, -3076.92]], "length": 15.23}, {"u": 53624470, "v": 2637710726, "oneway": false, "points": [[-73.38, -3092.15], [21.42, -3096.18], [68.7, -3098.19], [130.97, -3101.7], [136.33, -3102.0], [177.54, -3101.69], [236.47, -3097.25], [253.57, -3095.54], [266.23, -3093.71], [288.96, -3090.31], [299.81, -3088.69]], "length": 374.18}, {"u": 53625770, "v": 53610868, "oneway": false, "points": [[-3040.96, -1190.86], [-3035.07, -1185.73], [-2930.59, -1098.23], [-2928.42, -1096.79], [-2921.17, -1091.33]], "length": 155.78}, {"u": 53625770, "v": 53462393, "oneway": false, "points": [[-3040.96, -1190.86], [-3034.22, -1199.24], [-3011.71, -1226.71], [-3005.34, -1234.35], [-2988.48, -1254.2], [-2986.05, -1256.95], [-2981.52, -1261.92]], "length": 92.65}, {"u": 53625770, "v": 53549957, "oneway": false, "points": [[-3040.96, -1190.86], [-3046.73, -1184.29], [-3094.0, -1128.4], [-3098.98, -1122.4]], "length": 89.74}, {"u": 53626974, "v": 53626978, "oneway": false, "points": [[2367.1, 2477.6], [2360.18, 2483.74], [2354.66, 2488.42], [2312.78, 2531.27], [2301.6, 2542.29], [2295.21, 2548.74]], "length": 101.18}, {"u": 53626974, "v": 2714912986, "oneway": false, "points": [[2367.1, 2477.6], [2372.88, 2471.2], [2415.83, 2427.44], [2430.78, 2412.35], [2437.9, 2405.53]], "length": 101.04}, {"u": 53626974, "v": 53668890, "oneway": false, "points": [[2367.1, 2477.6], [2373.14, 2483.48], [2444.67, 2552.57], [2481.18, 2589.17], [2487.79, 2595.51]], "length": 168.74}, {"u": 53626974, "v": 6915301805, "oneway": false, "points": [[2367.1, 2477.6], [2360.05, 2471.2], [2331.99, 2443.3]], "length": 49.1}, {"u": 53626978, "v": 53714925, "oneway": false, "points": [[2295.21, 2548.74], [2288.99, 2555.05], [2255.07, 2590.69], [2231.55, 2614.75], [2225.19, 2621.47]], "length": 100.97}, {"u": 53626978, "v": 53626974, "oneway": false, "points": [[2295.21, 2548.74], [2301.6, 2542.29], [2312.78, 2531.27], [2354.66, 2488.42], [2360.18, 2483.74], [2367.1, 2477.6]], "length": 101.18}, {"u": 53626978, "v": 53727021, "oneway": false, "points": [[2295.21, 2548.74], [2301.76, 2555.33], [2411.74, 2662.14], [2419.15, 2667.55]], "length": 171.77}, {"u": 53626978, "v": 349368476, "oneway": false, "points": [[2295.21, 2548.74], [2288.98, 2542.73], [2171.95, 2429.19], [2165.67, 2423.11]], "length": 180.46}, {"u": 53626983, "v": 53562563, "oneway": false, "points": [[2130.74, 2717.95], [2155.29, 2693.8]], "length": 34.43}, {"u": 53628825, "v": 53558145, "oneway": false, "points": [[2376.85, 1286.33], [2380.03, 1282.21], [2393.44, 1264.85], [2408.23, 1225.87], [2411.61, 1218.55], [2415.67, 1212.55], [2423.88, 1204.57], [2425.42, 1203.08], [2432.64, 1196.07]], "length": 107.8}, {"u": 53628825, "v": 53461430, "oneway": false, "points": [[2376.85, 1286.33], [2371.22, 1292.36], [2321.62, 1345.56], [2319.46, 1347.88], [2313.75, 1354.01]], "length": 92.54}, {"u": 53628825, "v": 53589760, "oneway": false, "points": [[2376.85, 1286.33], [2381.46, 1290.75], [2397.86, 1306.52], [2471.66, 1372.91], [2523.15, 1420.97], [2528.54, 1426.0]], "length": 206.21}, {"u": 53628954, "v": 53545466, "oneway": false, "points": [[-1626.37, -799.4], [-1626.2, -792.69], [-1625.66, -770.64], [-1625.18, -746.32], [-1624.87, -741.8]], "length": 57.62}, {"u": 53628954, "v": 53616166, "oneway": false, "points": [[-1626.37, -799.4], [-1626.51, -805.03], [-1627.31, -837.09], [-1627.58, -848.91], [-1627.69, -850.4], [-1627.88, -862.16]], "length": 62.78}, {"u": 53628954, "v": 1179459709, "oneway": true, "points": [[-1626.37, -799.4], [-1617.37, -799.59], [-1524.67, -804.05], [-1521.26, -804.22], [-1510.81, -804.67]], "length": 115.68}, {"u": 53628956, "v": 53545473, "oneway": false, "points": [[-1755.79, -792.71], [-1753.78, -735.94]], "length": 56.81}, {"u": 53628956, "v": 53628954, "oneway": true, "points": [[-1755.79, -792.71], [-1747.29, -793.1], [-1709.65, -795.08], [-1692.25, -795.98], [-1672.57, -797.0], [-1656.12, -797.85], [-1638.12, -798.79], [-1635.25, -798.94], [-1626.37, -799.4]], "length": 129.59}, {"u": 53628956, "v": 53576821, "oneway": false, "points": [[-1755.79, -792.71], [-1756.01, -797.48], [-1756.38, -804.96], [-1756.49, -810.48], [-1756.65, -820.38], [-1757.08, -847.01], [-1757.34, -855.95]], "length": 63.26}, {"u": 53629591, "v": 12911858844, "oneway": false, "points": [[-782.55, -1303.2], [-793.1, -1312.45], [-819.83, -1336.84], [-822.06, -1338.74], [-823.27, -1339.25], [-825.02, -1339.09], [-827.51, -1338.48], [-829.38, -1337.65], [-830.36, -1336.96], [-832.87, -1335.15], [-990.7, -1210.11]], "length": 266.47}, {"u": 53629591, "v": 12911858844, "oneway": false, "points": [[-782.55, -1303.2], [-787.49, -1297.75], [-905.84, -1167.02], [-920.29, -1150.06], [-922.42, -1149.43], [-925.27, -1151.03], [-935.31, -1159.95], [-944.5, -1168.07], [-968.33, -1190.12], [-983.51, -1203.27], [-984.35, -1204.0], [-990.7, -1210.11]], "length": 299.64}, {"u": 53629591, "v": 1191535148, "oneway": false, "points": [[-782.55, -1303.2], [-758.21, -1281.86], [-752.32, -1276.59], [-742.4, -1267.36], [-733.97, -1258.05]], "length": 66.38}, {"u": 53631422, "v": 53461154, "oneway": true, "points": [[416.23, 941.74], [353.91, 884.31], [347.26, 878.2]], "length": 93.77}, {"u": 53636372, "v": 6577170380, "oneway": false, "points": [[2136.51, 1470.7], [2116.89, 1439.87]], "length": 36.54}, {"u": 53636372, "v": 53723920, "oneway": false, "points": [[2136.51, 1470.7], [2131.16, 1476.1], [2055.16, 1552.78]], "length": 115.56}, {"u": 53636372, "v": 2859093884, "oneway": false, "points": [[2136.51, 1470.7], [2141.12, 1478.6], [2172.86, 1533.14], [2177.73, 1541.51]], "length": 81.93}, {"u": 53636377, "v": 53604822, "oneway": false, "points": [[2508.77, 2074.08], [2514.3, 2083.15], [2558.52, 2155.62], [2566.53, 2168.74], [2571.15, 2175.88]], "length": 119.4}, {"u": 53636377, "v": 53572019, "oneway": false, "points": [[2508.77, 2074.08], [2504.13, 2066.54], [2459.33, 1993.85], [2454.58, 1986.13]], "length": 103.3}, {"u": 53636377, "v": 53407767, "oneway": false, "points": [[2508.77, 2074.08], [2502.09, 2079.87], [2483.33, 2096.13], [2462.71, 2119.05], [2461.13, 2120.87], [2447.8, 2133.36]], "length": 85.18}, {"u": 53637455, "v": 5468393309, "oneway": false, "points": [[-377.65, 357.67], [-385.65, 350.44], [-402.93, 334.8], [-404.92, 333.0], [-406.0, 332.02], [-406.82, 331.28], [-428.29, 311.86], [-458.73, 284.33], [-460.74, 282.51], [-474.35, 270.2]], "length": 130.4}, {"u": 53637455, "v": 316292003, "oneway": false, "points": [[-377.65, 357.67], [-372.0, 362.78], [-349.8, 382.85], [-348.93, 383.65], [-327.96, 402.61], [-321.15, 408.77], [-317.37, 412.19], [-310.09, 418.78], [-297.49, 430.18], [-282.05, 444.13], [-281.17, 444.93], [-278.95, 446.94], [-264.2, 460.28], [-257.9, 465.98], [-255.58, 468.08], [-245.51, 477.19], [-235.6, 486.16], [-231.33, 488.55], [-229.1, 488.76], [-226.51, 488.34], [-224.18, 486.97], [-223.84, 486.53], [-193.85, 454.17], [-190.76, 450.84], [-169.14, 427.46], [-167.89, 426.11], [-166.51, 424.62], [-160.06, 417.63]], "length": 298.44}, {"u": 53637455, "v": 53655130, "oneway": false, "points": [[-377.65, 357.67], [-384.28, 365.24], [-409.38, 393.0], [-419.27, 403.94], [-421.15, 406.01], [-440.1, 426.97], [-446.93, 434.53], [-451.91, 440.03]], "length": 110.9}, {"u": 53637455, "v": 3157337335, "oneway": false, "points": [[-377.65, 357.67], [-372.48, 352.19], [-352.69, 330.61], [-332.47, 307.93], [-330.09, 305.3], [-317.66, 291.55], [-316.17, 289.91], [-309.63, 282.68]], "length": 101.25}, {"u": 53639872, "v": 1179796074, "oneway": true, "points": [[-1378.51, -2116.1], [-1373.87, -2109.75], [-1372.17, -2098.64], [-1370.25, -2088.96], [-1366.43, -2080.54]], "length": 38.23}, {"u": 53639872, "v": 5497859257, "oneway": false, "points": [[-1378.51, -2116.1], [-1380.09, -2150.93], [-1380.46, -2159.08]], "length": 43.02}, {"u": 53639885, "v": 53481665, "oneway": false, "points": [[-1496.54, -2833.36], [-1506.72, -2850.55], [-1530.23, -2889.68]], "length": 65.63}, {"u": 53639885, "v": 4248941674, "oneway": true, "points": [[-1496.54, -2833.36], [-1481.4, -2824.0], [-1474.64, -2819.99], [-1468.79, -2817.42], [-1465.61, -2816.76], [-1461.24, -2816.88], [-1449.21, -2818.93]], "length": 51.87}, {"u": 53639885, "v": 2638675157, "oneway": false, "points": [[-1496.54, -2833.36], [-1481.05, -2806.08], [-1476.35, -2798.19]], "length": 40.55}, {"u": 53640713, "v": 53498229, "oneway": false, "points": [[2014.77, 2276.62], [2021.37, 2282.3]], "length": 8.71}, {"u": 53640713, "v": 53640863, "oneway": true, "points": [[2014.77, 2276.62], [1986.15, 2252.47], [1976.4, 2250.05], [1966.16, 2251.15], [1955.04, 2253.73], [1938.57, 2256.57], [1924.13, 2255.93], [1912.42, 2250.69]], "length": 113.21}, {"u": 53640720, "v": 53640713, "oneway": true, "points": [[1904.39, 2181.16], [1915.46, 2189.2], [1932.49, 2196.4], [1939.17, 2199.99], [1975.45, 2234.22], [2014.77, 2276.62]], "length": 147.46}, {"u": 53640720, "v": 53640863, "oneway": true, "points": [[1904.39, 2181.16], [1909.82, 2206.59], [1912.15, 2231.17], [1912.42, 2250.69]], "length": 70.21}, {"u": 53640725, "v": 53668900, "oneway": false, "points": [[1884.58, 2133.71], [1891.26, 2126.54], [1941.05, 2076.72], [1947.69, 2070.09]], "length": 89.62}, {"u": 53640725, "v": 53640720, "oneway": true, "points": [[1884.58, 2133.71], [1896.09, 2157.29], [1904.39, 2181.16]], "length": 51.52}, {"u": 53640736, "v": 446198895, "oneway": true, "points": [[1742.73, 1988.28], [1729.85, 2001.56]], "length": 18.5}, {"u": 53640736, "v": 53640725, "oneway": true, "points": [[1742.73, 1988.28], [1755.39, 1999.39], [1775.33, 2016.99], [1855.75, 2094.48], [1872.39, 2114.73], [1884.58, 2133.71]], "length": 203.88}, {"u": 53640824, "v": 1699123288, "oneway": false, "points": [[714.15, 1074.69], [719.84, 1068.44], [721.12, 1067.05], [775.74, 1007.1], [782.26, 999.96]], "length": 101.11}, {"u": 53640824, "v": 1699123263, "oneway": true, "points": [[714.15, 1074.69], [720.74, 1080.91], [855.65, 1205.47], [862.57, 1211.87]], "length": 202.11}, {"u": 53640824, "v": 4172253594, "oneway": false, "points": [[714.15, 1074.69], [709.3, 1080.01], [707.71, 1081.76], [705.18, 1084.53], [652.57, 1142.25], [651.71, 1143.21], [645.33, 1150.04]], "length": 102.05}, {"u": 53640831, "v": 53667521, "oneway": false, "points": [[266.02, 669.0], [272.03, 662.41], [289.36, 643.4], [290.46, 642.19], [313.63, 616.78], [327.79, 601.25], [334.47, 593.93]], "length": 101.59}, {"u": 53640831, "v": 53461150, "oneway": true, "points": [[266.02, 669.0], [272.31, 674.69], [408.35, 798.15], [414.88, 804.07]], "length": 201.01}, {"u": 53640831, "v": 316292008, "oneway": false, "points": [[266.02, 669.0], [260.97, 674.53], [259.7, 675.92], [205.6, 735.42], [204.09, 737.04], [197.69, 743.41]], "length": 101.04}, {"u": 53640838, "v": 3157337335, "oneway": false, "points": [[-242.46, 208.39], [-248.03, 214.56], [-250.64, 217.44], [-276.11, 245.61], [-282.85, 253.06], [-287.09, 257.74], [-301.83, 274.04], [-304.05, 276.5], [-309.63, 282.68]], "length": 100.16}, {"u": 53640838, "v": 53655118, "oneway": false, "points": [[-242.46, 208.39], [-237.23, 202.6], [-235.54, 200.73], [-225.06, 189.15], [-207.8, 170.05], [-183.36, 143.03], [-181.19, 140.61], [-175.12, 134.25]], "length": 100.16}, {"u": 53640838, "v": 3227608153, "oneway": true, "points": [[-242.46, 208.39], [-235.61, 214.65], [-219.95, 228.95], [-217.86, 230.86], [-206.86, 240.9], [-206.14, 241.56], [-192.11, 254.37], [-190.9, 255.47], [-174.02, 270.88], [-161.65, 282.19], [-151.65, 291.32], [-137.44, 304.29], [-130.39, 309.66], [-116.76, 321.41], [-113.37, 324.27], [-103.99, 333.09], [-92.86, 345.0]], "length": 202.69}, {"u": 53640863, "v": 446196406, "oneway": true, "points": [[1912.42, 2250.69], [1913.88, 2310.2], [1915.56, 2327.64], [1920.02, 2349.44], [1925.69, 2376.72]], "length": 127.17}, {"u": 53640863, "v": 53644706, "oneway": true, "points": [[1912.42, 2250.69], [1905.93, 2247.07], [1902.68, 2244.28], [1895.78, 2236.47], [1891.25, 2229.04], [1862.71, 2153.84]], "length": 111.27}, {"u": 53642012, "v": 2714977035, "oneway": false, "points": [[-860.87, -88.08], [-859.68, -83.47], [-858.38, -79.67], [-856.54, -76.12], [-854.84, -73.72], [-852.86, -71.33], [-850.67, -69.26], [-850.0, -68.64], [-831.53, -52.25], [-811.0, -34.02], [-803.98, -27.79], [-797.85, -22.35], [-797.23, -21.79], [-790.27, -15.62], [-775.2, -2.25], [-774.53, -1.65], [-767.97, 4.17], [-765.86, 6.04], [-759.21, 11.94], [-737.29, 31.4], [-728.05, 39.61], [-720.32, 46.47]], "length": 196.14}, {"u": 53642012, "v": 3271744858, "oneway": false, "points": [[-860.87, -88.08], [-860.82, -93.21], [-859.75, -98.54], [-858.03, -101.94], [-855.61, -105.44], [-852.79, -108.96], [-838.48, -124.78]], "length": 44.48}, {"u": 53642768, "v": 53642775, "oneway": false, "points": [[-373.22, -1955.5], [-373.4, -1959.56], [-374.0, -1973.04], [-374.04, -1973.9], [-374.52, -1984.67], [-375.09, -1997.53], [-383.36, -2182.73], [-383.77, -2192.0]], "length": 236.73}, {"u": 53642775, "v": 53642768, "oneway": false, "points": [[-383.77, -2192.0], [-383.36, -2182.73], [-375.09, -1997.53], [-374.52, -1984.67], [-374.04, -1973.9], [-374.0, -1973.04], [-373.4, -1959.56], [-373.22, -1955.5]], "length": 236.73}, {"u": 53642775, "v": 1612121520, "oneway": false, "points": [[-383.77, -2192.0], [-389.54, -2191.74], [-400.78, -2191.26]], "length": 17.03}, {"u": 53642775, "v": 53552967, "oneway": false, "points": [[-383.77, -2192.0], [-293.25, -2195.93], [-286.24, -2196.23]], "length": 97.62}, {"u": 53642782, "v": 53562507, "oneway": false, "points": [[-417.48, -2385.6], [-409.67, -2385.93]], "length": 7.82}, {"u": 53642782, "v": 53438624, "oneway": false, "points": [[-417.48, -2385.6], [-469.8, -2382.44], [-516.46, -2380.89], [-536.86, -2380.31], [-541.0, -2380.37], [-545.77, -2379.72], [-547.6, -2378.04], [-548.8, -2376.02], [-548.77, -2373.87], [-548.23, -2331.46], [-545.47, -2280.59]], "length": 228.81}, {"u": 53642782, "v": 2634682669, "oneway": false, "points": [[-417.48, -2385.6], [-417.76, -2392.72], [-419.02, -2424.94], [-419.22, -2430.09]], "length": 44.53}, {"u": 53643765, "v": 53643768, "oneway": false, "points": [[-2020.33, -1053.26], [-2020.63, -1077.96], [-2020.94, -1103.47], [-2021.07, -1114.58]], "length": 61.33}, {"u": 53643765, "v": 2816310345, "oneway": false, "points": [[-2020.33, -1053.26], [-2020.57, -1036.0], [-2020.94, -1001.37], [-2021.03, -993.24]], "length": 60.02}, {"u": 53643765, "v": 53483915, "oneway": false, "points": [[-2020.33, -1053.26], [-2028.47, -1052.95], [-2065.83, -1051.54], [-2156.04, -1049.29], [-2163.72, -1049.11]], "length": 143.45}, {"u": 53643765, "v": 53503834, "oneway": false, "points": [[-2020.33, -1053.26], [-2012.33, -1053.57], [-2000.96, -1053.95], [-1952.09, -1055.61], [-1946.25, -1055.74], [-1928.04, -1056.27], [-1899.59, -1056.85], [-1891.5, -1056.94]], "length": 128.89}, {"u": 53643768, "v": 53643772, "oneway": false, "points": [[-2021.07, -1114.58], [-2021.45, -1125.83], [-2023.09, -1175.0], [-2024.1, -1224.22], [-2024.32, -1234.99]], "length": 120.46}, {"u": 53643768, "v": 53643765, "oneway": false, "points": [[-2021.07, -1114.58], [-2020.94, -1103.47], [-2020.63, -1077.96], [-2020.33, -1053.26]], "length": 61.33}, {"u": 53643768, "v": 53709543, "oneway": false, "points": [[-2021.07, -1114.58], [-2029.51, -1114.36], [-2157.61, -1110.85], [-2166.07, -1110.62]], "length": 145.06}, {"u": 53643768, "v": 53709531, "oneway": false, "points": [[-2021.07, -1114.58], [-2013.62, -1114.83], [-1932.84, -1116.91], [-1910.99, -1117.38], [-1901.54, -1117.73], [-1893.42, -1117.94]], "length": 127.7}, {"u": 53643772, "v": 53621269, "oneway": false, "points": [[-2024.32, -1234.99], [-2024.68, -1246.66], [-2026.17, -1295.13], [-2027.47, -1345.19], [-2027.76, -1356.46]], "length": 121.51}, {"u": 53643772, "v": 53643768, "oneway": false, "points": [[-2024.32, -1234.99], [-2024.1, -1224.22], [-2023.09, -1175.0], [-2021.45, -1125.83], [-2021.07, -1114.58]], "length": 120.46}, {"u": 53643772, "v": 53692030, "oneway": false, "points": [[-2024.32, -1234.99], [-2032.67, -1234.76], [-2157.84, -1231.57], [-2159.84, -1231.52], [-2168.71, -1231.3]], "length": 144.43}, {"u": 53643772, "v": 53503843, "oneway": false, "points": [[-2024.32, -1234.99], [-2016.52, -1235.21], [-1904.1, -1237.86], [-1896.28, -1238.1]], "length": 128.08}, {"u": 53644201, "v": 53573840, "oneway": false, "points": [[293.07, -2254.18], [290.36, -2251.42], [279.21, -2240.12], [276.93, -2240.16], [270.57, -2245.16], [263.45, -2250.77], [254.9, -2258.25], [248.18, -2262.13]], "length": 58.3}, {"u": 53644706, "v": 446198895, "oneway": true, "points": [[1862.71, 2153.84], [1859.39, 2140.26], [1853.25, 2123.55], [1844.7, 2111.55], [1826.31, 2093.35], [1800.47, 2068.21], [1747.43, 2016.86], [1742.77, 2012.46], [1729.85, 2001.56]], "length": 205.58}, {"u": 53645079, "v": 53558155, "oneway": false, "points": [[1315.77, 316.09], [1322.13, 309.24], [1323.47, 307.8], [1362.18, 266.07], [1365.94, 265.36], [1367.75, 266.2], [1406.16, 297.55], [1409.45, 300.23], [1413.57, 303.54]], "length": 133.17}, {"u": 53645079, "v": 53667261, "oneway": false, "points": [[1315.77, 316.09], [1357.66, 354.75], [1361.72, 358.51]], "length": 62.53}, {"u": 53645079, "v": 3235650820, "oneway": false, "points": [[1315.77, 316.09], [1283.51, 286.36], [1222.07, 228.62], [1216.03, 222.92]], "length": 136.49}, {"u": 53645778, "v": 53475324, "oneway": false, "points": [[-2893.89, -410.03], [-2903.0, -403.56], [-2904.35, -402.61], [-2909.56, -399.68], [-2921.08, -394.79], [-2937.95, -389.42], [-2950.16, -386.17], [-2960.21, -384.11], [-2972.06, -382.65], [-2990.3, -382.13], [-2999.27, -382.53], [-3034.84, -386.62]], "length": 146.88}, {"u": 53645778, "v": 53481435, "oneway": false, "points": [[-2893.89, -410.03], [-2886.86, -406.34], [-2857.33, -394.08], [-2832.07, -384.7]], "length": 66.86}, {"u": 53645778, "v": 53549801, "oneway": false, "points": [[-2893.89, -410.03], [-2906.06, -416.57], [-2920.4, -425.05], [-2942.98, -439.62], [-2959.73, -454.07]], "length": 79.47}, {"u": 53646359, "v": 53521450, "oneway": false, "points": [[-915.92, 188.33], [-913.55, 185.64], [-885.21, 153.51]], "length": 46.43}, {"u": 53646449, "v": 53509875, "oneway": false, "points": [[-1682.37, -600.4], [-1683.85, -630.5], [-1685.63, -666.57], [-1685.97, -675.19]], "length": 74.87}, {"u": 53647040, "v": 53575901, "oneway": false, "points": [[-2065.92, -1619.85], [-2112.36, -1618.58], [-2118.52, -1618.42]], "length": 52.62}, {"u": 53649099, "v": 2384881527, "oneway": true, "points": [[2174.12, 1459.65], [2182.47, 1468.68], [2216.79, 1492.88]], "length": 54.29}, {"u": 53649099, "v": 53649103, "oneway": true, "points": [[2174.12, 1459.65], [2184.84, 1466.35], [2227.07, 1492.95], [2235.92, 1498.26], [2254.82, 1512.14], [2265.76, 1520.97]], "length": 110.38}, {"u": 53649103, "v": 53589769, "oneway": true, "points": [[2265.76, 1520.97], [2283.35, 1533.16], [2339.91, 1572.34]], "length": 90.21}, {"u": 53649105, "v": 53490476, "oneway": false, "points": [[2425.33, 1631.5], [2420.31, 1637.24], [2418.25, 1640.23], [2414.24, 1646.05], [2410.57, 1652.52], [2406.98, 1660.56], [2404.56, 1668.27], [2400.2, 1684.2], [2396.33, 1698.36], [2395.7, 1700.67], [2393.21, 1709.7], [2391.08, 1716.56], [2389.19, 1725.66], [2384.71, 1744.7], [2382.92, 1752.28]], "length": 129.43}, {"u": 53649105, "v": 1142902939, "oneway": true, "points": [[2425.33, 1631.5], [2432.04, 1636.15], [2615.47, 1763.21], [2619.64, 1766.1], [2628.74, 1772.4]], "length": 247.45}, {"u": 53652463, "v": 53488195, "oneway": false, "points": [[-1741.49, -231.41], [-1742.07, -241.36], [-1742.15, -244.93], [-1742.67, -267.85], [-1743.98, -300.05]], "length": 68.69}, {"u": 53652463, "v": 53461749, "oneway": true, "points": [[-1741.49, -231.41], [-1751.24, -230.66], [-1884.35, -225.51], [-1888.32, -225.35], [-1902.37, -224.77]], "length": 161.02}, {"u": 53655118, "v": 53538736, "oneway": true, "points": [[-175.12, 134.25], [-170.39, 126.35], [-164.15, 119.3], [-155.62, 109.66], [-152.6, 106.25], [-127.11, 77.48], [-126.12, 76.66], [-124.99, 75.98], [-123.69, 75.67], [-122.25, 75.48], [-114.6, 75.4], [-105.8, 75.05]], "length": 96.33}, {"u": 53655118, "v": 1180876933, "oneway": true, "points": [[-175.12, 134.25], [-181.62, 128.31], [-203.11, 108.66], [-216.41, 96.5], [-219.79, 93.42], [-223.22, 90.29], [-229.26, 84.72], [-231.78, 82.45], [-258.35, 58.17], [-266.75, 50.72]], "length": 124.0}, {"u": 53655118, "v": 53640838, "oneway": false, "points": [[-175.12, 134.25], [-181.19, 140.61], [-183.36, 143.03], [-207.8, 170.05], [-225.06, 189.15], [-235.54, 200.73], [-237.23, 202.6], [-242.46, 208.39]], "length": 100.16}, {"u": 53655130, "v": 53637455, "oneway": false, "points": [[-451.91, 440.03], [-446.93, 434.53], [-440.1, 426.97], [-421.15, 406.01], [-419.27, 403.94], [-409.38, 393.0], [-384.28, 365.24], [-377.65, 357.67]], "length": 110.9}, {"u": 53659829, "v": 53461820, "oneway": false, "points": [[-3084.05, -148.31], [-3072.23, -226.79], [-3071.62, -230.67], [-3070.32, -238.85]], "length": 91.57}, {"u": 53663953, "v": 1185580621, "oneway": false, "points": [[-586.08, -1003.51], [-580.22, -1011.01], [-578.53, -1012.79], [-550.1, -1043.32], [-522.31, -1073.77], [-520.26, -1076.3], [-512.89, -1084.4]], "length": 109.13}, {"u": 53663953, "v": 53578519, "oneway": false, "points": [[-586.08, -1003.51], [-591.99, -995.83], [-625.75, -959.78], [-647.69, -934.73], [-653.43, -928.2]], "length": 101.07}, {"u": 53663953, "v": 53663960, "oneway": false, "points": [[-586.08, -1003.51], [-593.55, -1010.28], [-595.58, -1012.13], [-599.06, -1015.29], [-653.42, -1064.7], [-674.78, -1084.11], [-678.03, -1093.37]], "length": 129.66}, {"u": 53663953, "v": 53700870, "oneway": false, "points": [[-586.08, -1003.51], [-579.25, -997.29], [-577.38, -995.59], [-547.16, -968.11], [-532.44, -954.74], [-503.51, -928.44], [-500.95, -926.12], [-478.55, -905.77], [-441.55, -872.84], [-434.82, -870.46]], "length": 201.98}, {"u": 53663960, "v": 53663953, "oneway": false, "points": [[-678.03, -1093.37], [-674.78, -1084.11], [-653.42, -1064.7], [-599.06, -1015.29], [-595.58, -1012.13], [-593.55, -1010.28], [-586.08, -1003.51]], "length": 129.66}, {"u": 53663978, "v": 8174660902, "oneway": true, "points": [[-469.13, -830.68], [-462.91, -835.88], [-455.2, -840.94], [-450.91, -843.55], [-446.14, -845.72], [-441.77, -847.11], [-438.12, -847.84], [-435.57, -848.06], [-429.9, -848.14]], "length": 44.13}, {"u": 53663978, "v": 53700870, "oneway": true, "points": [[-469.13, -830.68], [-461.7, -843.63], [-444.3, -861.58], [-434.82, -870.46]], "length": 52.91}, {"u": 53667246, "v": 53461456, "oneway": true, "points": [[1071.12, 176.03], [1044.95, 169.88], [1039.34, 169.7], [1034.36, 171.14], [1028.74, 173.96], [1027.25, 175.32], [1026.45, 176.04], [1024.05, 178.21], [1019.75, 183.1]], "length": 56.81}, {"u": 53667246, "v": 3235650820, "oneway": false, "points": [[1071.12, 176.03], [1075.44, 177.07], [1158.15, 196.8], [1185.81, 203.94], [1196.51, 207.08], [1207.02, 215.46], [1208.3, 216.52], [1216.03, 222.92]], "length": 154.33}, {"u": 53667261, "v": 53558155, "oneway": false, "points": [[1361.72, 358.51], [1368.15, 351.69], [1369.77, 349.98], [1389.25, 329.32], [1413.57, 303.54]], "length": 75.56}, {"u": 53667261, "v": 53645079, "oneway": false, "points": [[1361.72, 358.51], [1357.66, 354.75], [1315.77, 316.09]], "length": 62.53}, {"u": 53667261, "v": 316305099, "oneway": false, "points": [[1361.72, 358.51], [1369.59, 365.74], [1377.06, 372.61], [1396.9, 390.85], [1405.88, 399.1], [1435.56, 426.38], [1448.83, 438.57], [1452.06, 441.54], [1505.76, 488.67], [1511.82, 493.98]], "length": 202.21}, {"u": 53667521, "v": 2713311962, "oneway": false, "points": [[334.47, 593.93], [339.89, 587.99], [352.43, 574.24], [373.57, 551.05], [392.72, 530.05], [395.45, 527.05], [401.4, 520.52]], "length": 99.34}, {"u": 53667521, "v": 53640831, "oneway": false, "points": [[334.47, 593.93], [327.79, 601.25], [313.63, 616.78], [290.46, 642.19], [289.36, 643.4], [272.03, 662.41], [266.02, 669.0]], "length": 101.59}, {"u": 53667521, "v": 316302550, "oneway": false, "points": [[334.47, 593.93], [340.19, 599.07], [342.61, 601.49], [396.32, 649.38], [475.28, 719.81], [476.95, 721.3], [484.27, 727.99]], "length": 201.03}, {"u": 53667521, "v": 8729846828, "oneway": false, "points": [[334.47, 593.93], [327.2, 587.2], [324.58, 585.04], [289.42, 553.36], [282.96, 547.59], [241.24, 510.33], [229.92, 500.21], [193.03, 467.26], [190.4, 464.89], [183.68, 458.8]], "length": 202.49}, {"u": 53668846, "v": 3859915626, "oneway": false, "points": [[1230.61, 1409.36], [1225.45, 1404.58]], "length": 7.03}, {"u": 53668846, "v": 53668858, "oneway": false, "points": [[1230.61, 1409.36], [1235.63, 1413.94], [1236.93, 1415.13], [1358.34, 1525.86], [1368.8, 1535.41], [1370.66, 1537.1], [1376.46, 1542.41]], "length": 197.41}, {"u": 53668846, "v": 53536997, "oneway": true, "points": [[1230.61, 1409.36], [1225.8, 1414.7], [1223.28, 1417.49], [1217.71, 1421.89], [1203.72, 1434.04]], "length": 36.58}, {"u": 53668858, "v": 53668846, "oneway": false, "points": [[1376.46, 1542.41], [1370.66, 1537.1], [1368.8, 1535.41], [1358.34, 1525.86], [1236.93, 1415.13], [1235.63, 1413.94], [1230.61, 1409.36]], "length": 197.41}, {"u": 53668858, "v": 53538776, "oneway": false, "points": [[1376.46, 1542.41], [1383.09, 1535.03], [1439.18, 1472.56], [1443.57, 1467.68]], "length": 100.44}, {"u": 53668858, "v": 53668862, "oneway": false, "points": [[1376.46, 1542.41], [1383.08, 1548.45], [1386.03, 1551.13], [1475.52, 1632.84], [1504.58, 1659.37], [1519.27, 1673.65], [1524.41, 1678.65]], "length": 201.14}, {"u": 53668858, "v": 1777291055, "oneway": false, "points": [[1376.46, 1542.41], [1371.56, 1547.9], [1317.39, 1608.63], [1315.07, 1611.23], [1310.06, 1616.69]], "length": 99.64}, {"u": 53668862, "v": 53713371, "oneway": false, "points": [[1524.41, 1678.65], [1553.14, 1662.54], [1557.33, 1660.18]], "length": 37.74}, {"u": 53668862, "v": 53713378, "oneway": false, "points": [[1524.41, 1678.65], [1515.0, 1683.91], [1487.73, 1704.14], [1481.56, 1709.49]], "length": 52.91}, {"u": 53668862, "v": 53668858, "oneway": false, "points": [[1524.41, 1678.65], [1519.27, 1673.65], [1504.58, 1659.37], [1475.52, 1632.84], [1386.03, 1551.13], [1383.08, 1548.45], [1376.46, 1542.41]], "length": 201.14}, {"u": 53668890, "v": 53668892, "oneway": false, "points": [[2487.79, 2595.51], [2494.29, 2601.76], [2523.92, 2630.52], [2529.4, 2635.9], [2538.34, 2644.48], [2541.79, 2647.9], [2547.22, 2654.46]], "length": 83.75}, {"u": 53668890, "v": 53626974, "oneway": false, "points": [[2487.79, 2595.51], [2481.18, 2589.17], [2444.67, 2552.57], [2373.14, 2483.48], [2367.1, 2477.6]], "length": 168.74}, {"u": 53668890, "v": 53538791, "oneway": false, "points": [[2487.79, 2595.51], [2494.33, 2589.26], [2552.42, 2530.68], [2558.51, 2524.18]], "length": 100.45}, {"u": 53668890, "v": 53727021, "oneway": false, "points": [[2487.79, 2595.51], [2481.64, 2602.22], [2426.52, 2660.0], [2424.49, 2662.14], [2419.15, 2667.55]], "length": 99.51}, {"u": 53668892, "v": 53668890, "oneway": false, "points": [[2547.22, 2654.46], [2541.79, 2647.9], [2538.34, 2644.48], [2529.4, 2635.9], [2523.92, 2630.52], [2494.29, 2601.76], [2487.79, 2595.51]], "length": 83.75}, {"u": 53668897, "v": 53668900, "oneway": false, "points": [[1799.24, 1925.59], [1809.9, 1935.53], [1940.74, 2063.3], [1947.69, 2070.09]], "length": 207.16}, {"u": 53668897, "v": 11793715342, "oneway": false, "points": [[1799.24, 1925.59], [1791.82, 1932.09], [1766.16, 1954.55]], "length": 43.97}, {"u": 53668897, "v": 2713365262, "oneway": false, "points": [[1799.24, 1925.59], [1804.57, 1920.36], [1815.36, 1911.53], [1825.08, 1902.21]], "length": 34.87}, {"u": 53668900, "v": 53498225, "oneway": false, "points": [[1947.69, 2070.09], [1953.72, 2076.0], [2084.15, 2204.46], [2090.85, 2210.69]], "length": 200.67}, {"u": 53668900, "v": 53668897, "oneway": false, "points": [[1947.69, 2070.09], [1940.74, 2063.3], [1809.9, 1935.53], [1799.24, 1925.59]], "length": 207.16}, {"u": 53668900, "v": 53640725, "oneway": false, "points": [[1947.69, 2070.09], [1941.05, 2076.72], [1891.26, 2126.54], [1884.58, 2133.71]], "length": 89.62}, {"u": 53668900, "v": 53538727, "oneway": false, "points": [[1947.69, 2070.09], [1954.23, 2063.4], [2010.96, 2005.33], [2016.37, 1999.8]], "length": 98.27}, {"u": 53668988, "v": 53509962, "oneway": false, "points": [[-1749.46, -488.07], [-1749.63, -494.36], [-1749.8, -499.6], [-1750.12, -534.24], [-1750.22, -564.38], [-1750.88, -586.12], [-1751.17, -595.85], [-1751.97, -609.36], [-1752.34, -647.82]], "length": 159.79}, {"u": 53668988, "v": 53668996, "oneway": false, "points": [[-1749.46, -488.07], [-1749.29, -478.94], [-1748.87, -460.38], [-1747.29, -428.47], [-1746.34, -399.67], [-1746.14, -394.35], [-1745.37, -374.48], [-1745.22, -362.88]], "length": 125.28}, {"u": 53668988, "v": 53616182, "oneway": false, "points": [[-1749.46, -488.07], [-1740.01, -488.36], [-1627.56, -494.51], [-1618.33, -494.97]], "length": 131.31}, {"u": 53668988, "v": 53607068, "oneway": false, "points": [[-1749.46, -488.07], [-1758.94, -487.68], [-1764.02, -487.21], [-1872.85, -482.43], [-1881.92, -481.98]], "length": 132.61}, {"u": 53668996, "v": 53488195, "oneway": false, "points": [[-1745.22, -362.88], [-1745.0, -352.31], [-1743.98, -300.05]], "length": 62.84}, {"u": 53668996, "v": 53616188, "oneway": true, "points": [[-1745.22, -362.88], [-1734.56, -363.42], [-1684.43, -365.93], [-1621.53, -369.11], [-1612.4, -369.57]], "length": 132.98}, {"u": 53668996, "v": 53668988, "oneway": false, "points": [[-1745.22, -362.88], [-1745.37, -374.48], [-1746.14, -394.35], [-1746.34, -399.67], [-1747.29, -428.47], [-1748.87, -460.38], [-1749.29, -478.94], [-1749.46, -488.07]], "length": 125.28}, {"u": 53670180, "v": 53558110, "oneway": false, "points": [[1868.99, 580.0], [1822.72, 630.16], [1817.79, 635.51]], "length": 75.52}, {"u": 53672055, "v": 53672055, "oneway": false, "points": [[1381.23, 2191.71], [1388.26, 2193.25], [1394.36, 2165.6], [1381.86, 2162.91], [1375.69, 2190.47], [1381.23, 2191.71]], "length": 82.21}, {"u": 53672055, "v": 53672055, "oneway": false, "points": [[1381.23, 2191.71], [1375.69, 2190.47], [1381.86, 2162.91], [1394.36, 2165.6], [1388.26, 2193.25], [1381.23, 2191.71]], "length": 82.21}, {"u": 53672055, "v": 53578366, "oneway": false, "points": [[1381.23, 2191.71], [1374.93, 2222.81], [1373.96, 2229.18], [1371.21, 2238.26], [1367.09, 2245.15], [1364.66, 2248.56], [1359.51, 2253.7], [1353.78, 2258.42], [1345.59, 2263.6], [1331.76, 2269.05], [1294.93, 2283.09], [1276.07, 2290.18], [1254.96, 2299.17], [1247.59, 2302.43]], "length": 189.7}, {"u": 53672772, "v": 53521155, "oneway": false, "points": [[-3032.65, -892.51], [-2957.74, -895.74]], "length": 74.98}, {"u": 53672772, "v": 53610898, "oneway": false, "points": [[-3032.65, -892.51], [-3052.09, -905.41], [-3062.23, -912.97]], "length": 35.97}, {"u": 53672772, "v": 53610896, "oneway": false, "points": [[-3032.65, -892.51], [-3051.1, -891.6], [-3079.95, -890.19]], "length": 47.35}, {"u": 53672943, "v": 53437718, "oneway": false, "points": [[804.23, 1707.2], [809.48, 1702.56], [994.68, 1538.79], [1000.79, 1533.39]], "length": 262.38}, {"u": 53672943, "v": 53537015, "oneway": false, "points": [[804.23, 1707.2], [809.31, 1713.03], [848.95, 1761.94], [854.39, 1767.66]], "length": 78.59}, {"u": 53672943, "v": 53453173, "oneway": false, "points": [[804.23, 1707.2], [798.33, 1700.56], [758.91, 1656.28], [756.29, 1652.79], [753.88, 1647.16], [751.94, 1641.97], [750.51, 1637.29], [748.49, 1630.67]], "length": 96.0}, {"u": 53672961, "v": 53455657, "oneway": false, "points": [[391.35, 1130.15], [424.85, 1093.03]], "length": 50.0}, {"u": 53676376, "v": 53576826, "oneway": false, "points": [[-1635.08, -1123.33], [-1643.86, -1123.15], [-1646.08, -1123.11], [-1703.76, -1121.95], [-1710.73, -1121.81], [-1756.65, -1120.89], [-1764.3, -1120.73]], "length": 129.25}, {"u": 53676376, "v": 53430437, "oneway": false, "points": [[-1635.08, -1123.33], [-1634.75, -1112.8], [-1634.16, -1087.05], [-1633.44, -1062.53], [-1632.11, -1013.95], [-1631.65, -1002.41]], "length": 120.97}, {"u": 53676376, "v": 2573847790, "oneway": false, "points": [[-1635.08, -1123.33], [-1635.4, -1134.95], [-1635.58, -1140.58], [-1638.22, -1230.22], [-1638.32, -1233.96], [-1638.61, -1243.6]], "length": 120.32}, {"u": 53677752, "v": 2988375113, "oneway": true, "points": [[-2802.88, -3.02], [-2800.38, -5.16], [-2797.33, -6.39], [-2794.04, -6.57], [-2790.87, -5.68], [-2788.16, -3.82], [-2786.2, -1.19], [-2785.19, 1.93], [-2785.14, 4.58], [-2785.8, 7.13], [-2787.1, 9.44], [-2788.96, 11.32], [-2791.25, 12.66], [-2793.8, 13.35]], "length": 38.89}, {"u": 53677752, "v": 53370932, "oneway": false, "points": [[-2802.88, -3.02], [-2808.57, -7.57], [-2810.27, -9.07], [-2815.24, -11.52], [-2865.37, -10.59], [-2888.46, -10.92], [-2912.15, -9.61], [-2945.7, -8.0]], "length": 145.63}, {"u": 53679791, "v": 3755083604, "oneway": false, "points": [[-446.03, -1945.54], [-447.06, -1955.35], [-449.07, -1974.5], [-449.35, -1977.18]], "length": 31.82}, {"u": 53679815, "v": 53679819, "oneway": false, "points": [[-1568.05, -2382.85], [-1566.15, -2390.74], [-1559.12, -2420.71], [-1558.3, -2424.17], [-1555.76, -2434.8], [-1548.81, -2471.01], [-1548.04, -2477.17], [-1547.15, -2484.17]], "length": 103.52}, {"u": 53679815, "v": 53612042, "oneway": false, "points": [[-1568.05, -2382.85], [-1570.02, -2375.95], [-1581.75, -2340.14], [-1591.84, -2313.95], [-1600.31, -2294.61], [-1602.85, -2288.63]], "length": 100.54}, {"u": 53679815, "v": 2638675244, "oneway": false, "points": [[-1568.05, -2382.85], [-1559.48, -2380.94], [-1514.81, -2367.95], [-1478.57, -2360.54], [-1461.97, -2359.45], [-1444.78, -2359.75], [-1404.2, -2362.38], [-1400.57, -2362.62], [-1387.98, -2362.92]], "length": 183.01}, {"u": 53679819, "v": 2638675157, "oneway": false, "points": [[-1547.15, -2484.17], [-1544.17, -2508.05], [-1524.65, -2720.56], [-1521.21, -2745.33], [-1517.02, -2761.24], [-1500.57, -2779.05], [-1485.06, -2791.31], [-1476.35, -2798.19]], "length": 334.03}, {"u": 53679819, "v": 53679815, "oneway": false, "points": [[-1547.15, -2484.17], [-1548.04, -2477.17], [-1548.81, -2471.01], [-1555.76, -2434.8], [-1558.3, -2424.17], [-1559.12, -2420.71], [-1566.15, -2390.74], [-1568.05, -2382.85]], "length": 103.52}, {"u": 53679819, "v": 2638675190, "oneway": false, "points": [[-1547.15, -2484.17], [-1539.05, -2484.36], [-1503.74, -2485.19], [-1409.83, -2490.25], [-1406.56, -2490.42], [-1393.02, -2490.14]], "length": 154.28}, {"u": 53680486, "v": 53680499, "oneway": false, "points": [[-2782.09, -2837.2], [-2793.97, -2850.51], [-2822.56, -2880.69], [-2844.16, -2903.41], [-2862.09, -2923.01], [-2882.64, -2943.52], [-2890.46, -2951.32], [-2912.16, -2971.7]], "length": 187.17}, {"u": 53680486, "v": 1153239288, "oneway": false, "points": [[-2782.09, -2837.2], [-2764.63, -2832.37], [-2744.77, -2829.03], [-2715.9, -2828.64], [-2683.58, -2829.9], [-2617.66, -2833.8], [-2548.85, -2839.0], [-2479.28, -2843.22], [-2452.32, -2844.22], [-2425.89, -2843.43], [-2414.64, -2840.8], [-2404.96, -2835.47], [-2394.8, -2826.37], [-2384.11, -2813.08], [-2373.82, -2794.58], [-2363.17, -2768.43], [-2347.65, -2727.75], [-2338.04, -2708.13], [-2323.93, -2682.19], [-2309.23, -2658.49], [-2290.13, -2626.48], [-2252.61, -2566.2], [-2240.66, -2538.76], [-2232.97, -2512.3], [-2230.85, -2489.47], [-2232.05, -2451.75], [-2240.77, -2338.35], [-2241.7, -2310.99], [-2239.29, -2286.82], [-2231.92, -2260.14], [-2218.71, -2234.29], [-2201.56, -2204.66], [-2176.29, -2153.7], [-2163.71, -2138.28], [-2145.88, -2127.68], [-2122.64, -2121.67], [-2099.73, -2121.33], [-2090.05, -2122.28], [-2076.05, -2122.9], [-2012.2, -2127.4], [-1983.93, -2129.79], [-1975.2, -2130.53], [-1868.93, -2139.51], [-1847.24, -2133.36], [-1831.79, -2123.35], [-1819.73, -2111.48], [-1809.92, -2098.37], [-1806.22, -2093.42], [-1794.06, -2077.99], [-1792.22, -2075.9], [-1784.72, -2069.74], [-1775.56, -2064.6], [-1765.47, -2061.3]], "length": 1575.57}, {"u": 53680486, "v": 53700390, "oneway": false, "points": [[-2782.09, -2837.2], [-2822.58, -2848.54], [-2885.5, -2867.95], [-2969.04, -2895.89], [-2987.13, -2901.26]], "length": 214.85}, {"u": 53680499, "v": 53556263, "oneway": false, "points": [[-2912.16, -2971.7], [-2928.96, -2988.89], [-2947.84, -3010.46], [-2973.92, -3035.94]], "length": 89.17}, {"u": 53680499, "v": 53680486, "oneway": false, "points": [[-2912.16, -2971.7], [-2890.46, -2951.32], [-2882.64, -2943.52], [-2862.09, -2923.01], [-2844.16, -2903.41], [-2822.56, -2880.69], [-2793.97, -2850.51], [-2782.09, -2837.2]], "length": 187.17}, {"u": 53680499, "v": 53700390, "oneway": false, "points": [[-2912.16, -2971.7], [-2920.44, -2962.01], [-2948.8, -2933.52], [-2959.96, -2924.75], [-2973.35, -2914.94], [-2981.48, -2907.86], [-2987.13, -2901.26]], "length": 103.21}, {"u": 53680515, "v": 53430446, "oneway": false, "points": [[-1846.31, -1058.05], [-1846.19, -1053.59], [-1846.18, -1053.15], [-1844.85, -1005.4], [-1844.66, -998.4]], "length": 59.67}, {"u": 53680515, "v": 53503834, "oneway": false, "points": [[-1846.31, -1058.05], [-1883.6, -1057.19], [-1891.5, -1056.94]], "length": 45.19}, {"u": 53680515, "v": 53576823, "oneway": false, "points": [[-1846.31, -1058.05], [-1774.44, -1059.39], [-1770.85, -1059.46], [-1762.38, -1059.67]], "length": 83.95}, {"u": 53684762, "v": 53582923, "oneway": false, "points": [[-2642.54, -816.95], [-2642.45, -806.62], [-2639.68, -732.58], [-2639.56, -724.49]], "length": 92.51}, {"u": 53684762, "v": 2298789030, "oneway": false, "points": [[-2642.54, -816.95], [-2650.99, -816.57], [-2780.36, -810.89], [-2792.51, -810.37]], "length": 150.12}, {"u": 53684762, "v": 1180005819, "oneway": false, "points": [[-2642.54, -816.95], [-2591.82, -819.18], [-2568.69, -820.19], [-2560.01, -820.57]], "length": 82.61}, {"u": 53684770, "v": 53485100, "oneway": false, "points": [[-2630.24, -397.6], [-2630.02, -389.08], [-2629.47, -367.52], [-2627.18, -295.66], [-2626.92, -287.46]], "length": 110.19}, {"u": 53684770, "v": 53504327, "oneway": false, "points": [[-2630.24, -397.6], [-2630.48, -405.76], [-2634.35, -533.6], [-2634.59, -541.53]], "length": 144.0}, {"u": 53684770, "v": 53514812, "oneway": false, "points": [[-2630.24, -397.6], [-2638.12, -396.99], [-2642.8, -397.7], [-2660.36, -404.53], [-2671.66, -409.54], [-2678.47, -414.01], [-2684.89, -418.94], [-2698.68, -430.99], [-2707.84, -440.4], [-2720.41, -449.6], [-2735.12, -456.73], [-2752.54, -461.9], [-2763.84, -463.79], [-2770.49, -464.01], [-2778.03, -464.27]], "length": 167.27}, {"u": 53684770, "v": 53516186, "oneway": false, "points": [[-2630.24, -397.6], [-2621.57, -397.84], [-2556.26, -399.59], [-2546.7, -399.91]], "length": 83.58}, {"u": 53692030, "v": 4095648225, "oneway": false, "points": [[-2168.71, -1231.3], [-2169.06, -1242.28], [-2170.75, -1292.17], [-2172.54, -1341.57], [-2172.71, -1346.49]], "length": 115.26}, {"u": 53692030, "v": 53709543, "oneway": false, "points": [[-2168.71, -1231.3], [-2168.51, -1220.29], [-2167.62, -1170.92], [-2166.35, -1121.49], [-2166.07, -1110.62]], "length": 120.72}, {"u": 53692030, "v": 53590707, "oneway": false, "points": [[-2168.71, -1231.3], [-2177.92, -1231.03], [-2182.03, -1230.91], [-2308.7, -1227.16], [-2317.64, -1226.89]], "length": 148.99}, {"u": 53692030, "v": 53643772, "oneway": false, "points": [[-2168.71, -1231.3], [-2159.84, -1231.52], [-2157.84, -1231.57], [-2032.67, -1234.76], [-2024.32, -1234.99]], "length": 144.43}, {"u": 53692040, "v": 53444622, "oneway": false, "points": [[-2448.28, -1223.8], [-2454.9, -1223.48], [-2456.11, -1223.22], [-2457.69, -1222.67], [-2459.29, -1221.54], [-2464.44, -1216.17], [-2470.61, -1209.09]], "length": 28.34}, {"u": 53692040, "v": 53454656, "oneway": false, "points": [[-2448.28, -1223.8], [-2448.29, -1236.88], [-2448.32, -1256.81], [-2449.04, -1284.51], [-2450.42, -1320.14]], "length": 96.37}, {"u": 53692040, "v": 53590707, "oneway": false, "points": [[-2448.28, -1223.8], [-2438.45, -1224.03], [-2326.51, -1226.68], [-2317.64, -1226.89]], "length": 130.67}, {"u": 53695962, "v": 53575900, "oneway": false, "points": [[-2067.35, -1558.76], [-2110.65, -1557.91], [-2117.13, -1557.78]], "length": 49.79}, {"u": 53699396, "v": 53591794, "oneway": false, "points": [[-667.2, -314.65], [-659.1, -307.29], [-657.89, -306.18], [-632.81, -283.38], [-621.27, -272.88], [-600.93, -254.39], [-573.35, -229.31], [-555.0, -212.63], [-524.96, -185.3], [-523.86, -184.31], [-519.0, -179.89]], "length": 200.31}, {"u": 53699396, "v": 53608986, "oneway": true, "points": [[-667.2, -314.65], [-673.25, -307.62], [-729.73, -245.02], [-734.83, -239.02]], "length": 101.47}, {"u": 53699396, "v": 3241106071, "oneway": false, "points": [[-667.2, -314.65], [-673.41, -320.31], [-674.79, -321.56], [-726.8, -368.91], [-735.17, -376.53], [-756.28, -395.75], [-770.82, -408.99], [-807.37, -442.26], [-809.69, -444.39], [-815.92, -450.05]], "length": 201.13}, {"u": 53700390, "v": 53680499, "oneway": false, "points": [[-2987.13, -2901.26], [-2981.48, -2907.86], [-2973.35, -2914.94], [-2959.96, -2924.75], [-2948.8, -2933.52], [-2920.44, -2962.01], [-2912.16, -2971.7]], "length": 103.21}, {"u": 53700390, "v": 53680486, "oneway": false, "points": [[-2987.13, -2901.26], [-2969.04, -2895.89], [-2885.5, -2867.95], [-2822.58, -2848.54], [-2782.09, -2837.2]], "length": 214.85}, {"u": 53700390, "v": 53589977, "oneway": false, "points": [[-2987.13, -2901.26], [-2999.96, -2905.11], [-3021.45, -2909.83], [-3038.94, -2911.44], [-3056.48, -2912.04], [-3075.76, -2910.6], [-3097.87, -2908.29], [-3118.07, -2907.82], [-3136.5, -2910.96], [-3142.51, -2912.89]], "length": 157.29}, {"u": 53700870, "v": 8174660902, "oneway": true, "points": [[-434.82, -870.46], [-431.26, -854.37], [-429.9, -848.14]], "length": 22.86}, {"u": 53700870, "v": 53700872, "oneway": false, "points": [[-434.82, -870.46], [-430.23, -873.47], [-393.71, -912.03], [-387.46, -919.26], [-383.5, -923.81]], "length": 74.19}, {"u": 53700870, "v": 53663953, "oneway": false, "points": [[-434.82, -870.46], [-441.55, -872.84], [-478.55, -905.77], [-500.95, -926.12], [-503.51, -928.44], [-532.44, -954.74], [-547.16, -968.11], [-577.38, -995.59], [-579.25, -997.29], [-586.08, -1003.51]], "length": 201.98}, {"u": 53700872, "v": 53700870, "oneway": false, "points": [[-383.5, -923.81], [-387.46, -919.26], [-393.71, -912.03], [-430.23, -873.47], [-434.82, -870.46]], "length": 74.19}, {"u": 53703066, "v": 53486800, "oneway": false, "points": [[-2186.26, -84.13], [-2185.93, -75.38], [-2185.38, -67.93], [-2183.05, -26.13], [-2182.92, -18.87]], "length": 65.35}, {"u": 53709531, "v": 53503843, "oneway": false, "points": [[-1893.42, -1117.94], [-1893.71, -1129.2], [-1894.99, -1178.12], [-1896.05, -1227.29], [-1896.28, -1238.1]], "length": 120.19}, {"u": 53709531, "v": 53503834, "oneway": false, "points": [[-1893.42, -1117.94], [-1893.06, -1106.83], [-1892.98, -1104.15], [-1891.66, -1062.07], [-1891.5, -1056.94]], "length": 61.03}, {"u": 53709531, "v": 53643768, "oneway": false, "points": [[-1893.42, -1117.94], [-1901.54, -1117.73], [-1910.99, -1117.38], [-1932.84, -1116.91], [-2013.62, -1114.83], [-2021.07, -1114.58]], "length": 127.7}, {"u": 53709531, "v": 53576826, "oneway": false, "points": [[-1893.42, -1117.94], [-1885.04, -1118.13], [-1773.31, -1120.54], [-1764.3, -1120.73]], "length": 129.14}, {"u": 53709543, "v": 53692030, "oneway": false, "points": [[-2166.07, -1110.62], [-2166.35, -1121.49], [-2167.62, -1170.92], [-2168.51, -1220.29], [-2168.71, -1231.3]], "length": 120.72}, {"u": 53709543, "v": 53483915, "oneway": false, "points": [[-2166.07, -1110.62], [-2165.92, -1099.81], [-2163.72, -1049.11]], "length": 61.56}, {"u": 53709543, "v": 53590699, "oneway": false, "points": [[-2166.07, -1110.62], [-2175.42, -1110.46], [-2241.45, -1108.46], [-2298.08, -1106.76], [-2305.21, -1106.54], [-2308.8, -1106.44], [-2311.95, -1105.46]], "length": 146.08}, {"u": 53709543, "v": 53643768, "oneway": false, "points": [[-2166.07, -1110.62], [-2157.61, -1110.85], [-2029.51, -1114.36], [-2021.07, -1114.58]], "length": 145.06}, {"u": 53711224, "v": 53558157, "oneway": false, "points": [[1425.88, 290.49], [1418.85, 297.94]], "length": 10.25}, {"u": 53713371, "v": 53668862, "oneway": false, "points": [[1557.33, 1660.18], [1553.14, 1662.54], [1524.41, 1678.65]], "length": 37.74}, {"u": 53713378, "v": 53668862, "oneway": false, "points": [[1481.56, 1709.49], [1487.73, 1704.14], [1515.0, 1683.91], [1524.41, 1678.65]], "length": 52.91}, {"u": 53714922, "v": 53714925, "oneway": false, "points": [[2201.12, 2598.12], [2218.64, 2615.01], [2225.19, 2621.47]], "length": 33.53}, {"u": 53714925, "v": 53626978, "oneway": false, "points": [[2225.19, 2621.47], [2231.55, 2614.75], [2255.07, 2590.69], [2288.99, 2555.05], [2295.21, 2548.74]], "length": 100.97}, {"u": 53714925, "v": 53714922, "oneway": false, "points": [[2225.19, 2621.47], [2218.64, 2615.01], [2201.12, 2598.12]], "length": 33.53}, {"u": 53714925, "v": 53727030, "oneway": false, "points": [[2225.19, 2621.47], [2231.61, 2627.38], [2342.71, 2735.49], [2349.22, 2741.5]], "length": 172.61}, {"u": 53714925, "v": 53562563, "oneway": false, "points": [[2225.19, 2621.47], [2219.18, 2627.75], [2161.77, 2687.24], [2155.29, 2693.8]], "length": 100.59}, {"u": 53719166, "v": 2384881594, "oneway": true, "points": [[1964.8, 1757.78], [1972.06, 1764.42]], "length": 9.84}, {"u": 53719166, "v": 53407742, "oneway": true, "points": [[1964.8, 1757.78], [1974.7, 1749.37], [2029.63, 1694.05], [2031.28, 1693.04], [2039.82, 1687.8]], "length": 102.9}, {"u": 53720172, "v": 53472460, "oneway": false, "points": [[-436.21, 32.68], [-442.7, 39.8], [-455.14, 53.47], [-457.7, 56.28], [-487.24, 88.7], [-496.58, 98.95], [-498.55, 101.13], [-503.99, 107.1]], "length": 100.66}, {"u": 53720172, "v": 1160692043, "oneway": false, "points": [[-436.21, 32.68], [-430.64, 26.56], [-409.25, 3.07], [-394.77, -12.82], [-374.75, -34.8], [-368.09, -42.12]], "length": 101.17}, {"u": 53720172, "v": 2713279291, "oneway": true, "points": [[-436.21, 32.68], [-429.85, 38.42], [-352.93, 107.45], [-339.29, 119.78]], "length": 130.31}, {"u": 53723920, "v": 53636372, "oneway": false, "points": [[2055.16, 1552.78], [2131.16, 1476.1], [2136.51, 1470.7]], "length": 115.56}, {"u": 53725877, "v": 53725877, "oneway": true, "points": [[-2328.39, 247.72], [-2318.73, 247.14], [-2309.16, 246.66], [-2304.05, 246.37], [-2298.6, 246.73], [-2297.13, 247.09], [-2295.78, 247.71], [-2294.88, 249.09], [-2293.82, 251.01], [-2293.21, 253.48], [-2293.38, 256.2], [-2294.04, 257.94], [-2294.42, 258.9], [-2296.49, 261.18], [-2299.13, 262.8], [-2302.48, 264.14], [-2305.62, 264.6], [-2309.25, 264.72], [-2312.77, 264.07], [-2315.84, 263.09], [-2317.89, 261.66], [-2319.39, 260.42], [-2321.44, 258.55], [-2322.93, 256.64], [-2323.82, 255.18], [-2324.74, 253.43], [-2326.25, 250.74], [-2328.39, 247.72]], "length": 88.34}, {"u": 53725877, "v": 53580606, "oneway": false, "points": [[-2328.39, 247.72], [-2332.08, 246.71], [-2336.57, 245.66], [-2344.12, 245.45], [-2365.97, 246.05], [-2410.75, 247.58], [-2417.04, 247.73], [-2420.28, 247.89], [-2427.66, 248.2]], "length": 99.58}, {"u": 53727021, "v": 53668890, "oneway": false, "points": [[2419.15, 2667.55], [2424.49, 2662.14], [2426.52, 2660.0], [2481.64, 2602.22], [2487.79, 2595.51]], "length": 99.51}, {"u": 53727021, "v": 53727030, "oneway": false, "points": [[2419.15, 2667.55], [2412.69, 2675.28], [2410.74, 2677.32], [2355.59, 2735.04], [2349.22, 2741.5]], "length": 101.8}, {"u": 53727021, "v": 53529540, "oneway": false, "points": [[2419.15, 2667.55], [2424.69, 2674.42], [2455.06, 2702.35], [2540.73, 2786.64], [2548.66, 2793.06]], "length": 180.48}, {"u": 53727021, "v": 53626978, "oneway": false, "points": [[2419.15, 2667.55], [2411.74, 2662.14], [2301.76, 2555.33], [2295.21, 2548.74]], "length": 171.77}, {"u": 53727030, "v": 53727021, "oneway": false, "points": [[2349.22, 2741.5], [2355.59, 2735.04], [2410.74, 2677.32], [2412.69, 2675.28], [2419.15, 2667.55]], "length": 101.8}, {"u": 53727030, "v": 53714925, "oneway": false, "points": [[2349.22, 2741.5], [2342.71, 2735.49], [2231.61, 2627.38], [2225.19, 2621.47]], "length": 172.61}, {"u": 53727087, "v": 2637710726, "oneway": false, "points": [[366.58, -3076.8], [357.8, -3079.16], [299.81, -3088.69]], "length": 67.86}, {"u": 53727087, "v": 2637707069, "oneway": true, "points": [[366.58, -3076.8], [376.34, -3076.48], [392.98, -3070.59], [400.65, -3065.6], [413.58, -3060.1], [420.06, -3059.5], [424.94, -3060.73], [440.5, -3073.43]], "length": 82.25}, {"u": 258725731, "v": 4095606995, "oneway": false, "points": [[-2671.61, -1897.05], [-2655.81, -1899.39], [-2625.66, -1902.37], [-2611.85, -1902.16], [-2598.45, -1900.04], [-2589.32, -1896.39], [-2569.63, -1889.15], [-2554.7, -1884.01], [-2538.37, -1879.28], [-2527.29, -1877.19], [-2523.98, -1876.96], [-2513.57, -1876.26], [-2490.46, -1874.69], [-2449.62, -1874.2], [-2428.87, -1874.59], [-2423.75, -1874.68], [-2396.42, -1875.17], [-2366.8, -1876.87], [-2349.37, -1878.75], [-2331.09, -1882.23], [-2316.84, -1886.33], [-2294.44, -1893.27], [-2260.41, -1903.44], [-2252.63, -1905.76], [-2235.65, -1909.1], [-2226.91, -1909.83], [-2213.37, -1908.68], [-2198.92, -1905.86], [-2164.13, -1897.74], [-2131.66, -1890.67], [-2101.14, -1886.66], [-2084.97, -1886.0], [-2070.5, -1886.76], [-2059.01, -1887.68], [-2030.74, -1891.18], [-2025.77, -1892.2]], "length": 657.09}, {"u": 270405510, "v": 1153239288, "oneway": false, "points": [[-1788.06, -2011.34], [-1787.39, -2018.7], [-1783.5, -2036.71], [-1777.4, -2045.77], [-1772.4, -2053.25], [-1770.74, -2055.29], [-1765.47, -2061.3]], "length": 56.35}, {"u": 270405510, "v": 2573847770, "oneway": false, "points": [[-1788.06, -2011.34], [-1788.16, -2002.73], [-1787.87, -1987.29]], "length": 24.06}, {"u": 270405510, "v": 4095606995, "oneway": false, "points": [[-1788.06, -2011.34], [-1796.74, -2011.3], [-1807.71, -2011.0], [-1817.09, -2008.62], [-1833.96, -1999.8], [-1852.56, -1988.48], [-1880.42, -1971.87], [-1907.52, -1955.57], [-1912.05, -1952.85], [-1922.09, -1946.81], [-1941.77, -1934.35], [-1944.86, -1932.38], [-1972.98, -1914.57], [-1994.49, -1903.19], [-2016.68, -1895.06], [-2025.77, -1892.2]], "length": 268.95}, {"u": 316165989, "v": 53573840, "oneway": false, "points": [[255.12, -2279.82], [248.18, -2262.13]], "length": 19.0}, {"u": 316292003, "v": 53637455, "oneway": false, "points": [[-160.06, 417.63], [-166.51, 424.62], [-167.89, 426.11], [-169.14, 427.46], [-190.76, 450.84], [-193.85, 454.17], [-223.84, 486.53], [-224.18, 486.97], [-226.51, 488.34], [-229.1, 488.76], [-231.33, 488.55], [-235.6, 486.16], [-245.51, 477.19], [-255.58, 468.08], [-257.9, 465.98], [-264.2, 460.28], [-278.95, 446.94], [-281.17, 444.93], [-282.05, 444.13], [-297.49, 430.18], [-310.09, 418.78], [-317.37, 412.19], [-321.15, 408.77], [-327.96, 402.61], [-348.93, 383.65], [-349.8, 382.85], [-372.0, 362.78], [-377.65, 357.67]], "length": 298.44}, {"u": 316292003, "v": 3227608153, "oneway": false, "points": [[-160.06, 417.63], [-154.61, 411.75], [-152.22, 409.17], [-147.19, 403.73], [-128.14, 383.13], [-102.69, 355.62], [-92.86, 345.0]], "length": 98.95}, {"u": 316292003, "v": 3157337335, "oneway": true, "points": [[-160.06, 417.63], [-166.28, 412.03], [-182.86, 397.06], [-200.34, 381.29], [-212.1, 370.69], [-246.42, 339.71], [-254.37, 332.53], [-302.87, 288.76], [-309.63, 282.68]], "length": 201.45}, {"u": 316292008, "v": 3088209649, "oneway": true, "points": [[197.69, 743.41], [190.73, 736.78], [159.02, 708.21], [55.5, 613.61], [49.46, 608.05]], "length": 200.75}, {"u": 316292008, "v": 53640831, "oneway": false, "points": [[197.69, 743.41], [204.09, 737.04], [205.6, 735.42], [259.7, 675.92], [260.97, 674.53], [266.02, 669.0]], "length": 101.04}, {"u": 316292008, "v": 3088209661, "oneway": false, "points": [[197.69, 743.41], [191.39, 750.26], [189.09, 752.72], [167.99, 776.38]], "length": 44.37}, {"u": 316302550, "v": 53461150, "oneway": false, "points": [[484.27, 727.99], [476.4, 736.63], [421.98, 796.29], [420.85, 797.52], [414.88, 804.07]], "length": 102.97}, {"u": 316302550, "v": 2713311960, "oneway": false, "points": [[484.27, 727.99], [489.03, 722.78], [515.46, 693.8], [544.35, 662.12], [550.84, 655.01]], "length": 98.78}, {"u": 316302550, "v": 316302556, "oneway": false, "points": [[484.27, 727.99], [490.36, 733.53], [493.02, 736.0], [623.65, 856.91], [625.73, 858.87], [632.25, 864.72]], "length": 201.47}, {"u": 316302550, "v": 53667521, "oneway": false, "points": [[484.27, 727.99], [476.95, 721.3], [475.28, 719.81], [396.32, 649.38], [342.61, 601.49], [340.19, 599.07], [334.47, 593.93]], "length": 201.03}, {"u": 316302556, "v": 1699123288, "oneway": false, "points": [[632.25, 864.72], [639.55, 870.88], [641.78, 872.77], [772.93, 991.71], [775.66, 994.19], [782.26, 999.96]], "length": 201.98}, {"u": 316302556, "v": 316302550, "oneway": false, "points": [[632.25, 864.72], [625.73, 858.87], [623.65, 856.91], [493.02, 736.0], [490.36, 733.53], [484.27, 727.99]], "length": 201.47}, {"u": 316302556, "v": 1699123271, "oneway": false, "points": [[632.25, 864.72], [626.05, 871.51], [569.86, 933.17], [563.91, 939.7]], "length": 101.45}, {"u": 316302556, "v": 316302558, "oneway": false, "points": [[632.25, 864.72], [638.36, 858.01], [693.72, 797.26], [699.8, 790.57]], "length": 100.31}, {"u": 316302558, "v": 316302556, "oneway": false, "points": [[699.8, 790.57], [693.72, 797.26], [638.36, 858.01], [632.25, 864.72]], "length": 100.31}, {"u": 316302558, "v": 316303180, "oneway": false, "points": [[699.8, 790.57], [704.82, 784.76], [719.37, 769.1], [771.66, 711.73], [774.41, 708.71], [781.42, 701.01]], "length": 121.18}, {"u": 316302558, "v": 3270240367, "oneway": false, "points": [[699.8, 790.57], [706.26, 796.46], [842.25, 920.26], [849.16, 926.55]], "length": 201.99}, {"u": 316302558, "v": 2713311960, "oneway": false, "points": [[699.8, 790.57], [692.76, 784.17], [610.89, 709.66], [557.11, 660.71], [550.84, 655.01]], "length": 201.41}, {"u": 316303180, "v": 366215899, "oneway": false, "points": [[781.42, 701.01], [791.64, 689.77]], "length": 15.19}, {"u": 316303180, "v": 316302558, "oneway": false, "points": [[781.42, 701.01], [774.41, 708.71], [771.66, 711.73], [719.37, 769.1], [704.82, 784.76], [699.8, 790.57]], "length": 121.18}, {"u": 316303180, "v": 2713311958, "oneway": true, "points": [[781.42, 701.01], [770.6, 690.55], [742.46, 664.61]], "length": 53.32}, {"u": 316305090, "v": 53558103, "oneway": false, "points": [[1581.1, 421.23], [1573.06, 413.95], [1534.24, 378.88]], "length": 63.17}, {"u": 316305090, "v": 316305093, "oneway": false, "points": [[1581.1, 421.23], [1586.76, 426.38], [1653.84, 487.52], [1721.88, 550.38], [1729.23, 557.32]], "length": 201.15}, {"u": 316305090, "v": 11390496552, "oneway": false, "points": [[1581.1, 421.23], [1598.85, 401.16], [1606.24, 390.84]], "length": 39.48}, {"u": 316305090, "v": 316305099, "oneway": false, "points": [[1581.1, 421.23], [1575.73, 427.2], [1518.48, 486.98], [1511.82, 493.98]], "length": 100.47}, {"u": 316305093, "v": 53596618, "oneway": false, "points": [[1729.23, 557.32], [1736.45, 549.59], [1753.3, 530.34], [1756.02, 527.03], [1770.56, 509.36]], "length": 63.33}, {"u": 316305093, "v": 2713353784, "oneway": false, "points": [[1729.23, 557.32], [1723.96, 562.71], [1667.7, 623.42], [1661.71, 630.46]], "length": 99.55}, {"u": 316305093, "v": 53558110, "oneway": false, "points": [[1729.23, 557.32], [1734.75, 562.2], [1817.79, 635.51]], "length": 118.14}, {"u": 316305093, "v": 316305090, "oneway": false, "points": [[1729.23, 557.32], [1721.88, 550.38], [1653.84, 487.52], [1586.76, 426.38], [1581.1, 421.23]], "length": 201.15}, {"u": 316305099, "v": 316305090, "oneway": false, "points": [[1511.82, 493.98], [1518.48, 486.98], [1575.73, 427.2], [1581.1, 421.23]], "length": 100.47}, {"u": 316305099, "v": 53667261, "oneway": false, "points": [[1511.82, 493.98], [1505.76, 488.67], [1452.06, 441.54], [1448.83, 438.57], [1435.56, 426.38], [1405.88, 399.1], [1396.9, 390.85], [1377.06, 372.61], [1369.59, 365.74], [1361.72, 358.51]], "length": 202.21}, {"u": 316305099, "v": 2713353784, "oneway": false, "points": [[1511.82, 493.98], [1520.14, 501.56], [1654.86, 624.23], [1661.71, 630.46]], "length": 202.72}, {"u": 316305099, "v": 53461467, "oneway": false, "points": [[1511.82, 493.98], [1505.54, 500.94], [1450.61, 561.73], [1443.23, 569.82]], "length": 102.25}, {"u": 316306590, "v": 53578394, "oneway": false, "points": [[1513.59, 2807.85], [1500.39, 2783.92]], "length": 27.32}, {"u": 316306590, "v": 2857394107, "oneway": false, "points": [[1513.59, 2807.85], [1505.98, 2812.45], [1504.14, 2813.45]], "length": 10.98}, {"u": 316334513, "v": 316349604, "oneway": false, "points": [[332.89, 292.5], [345.03, 280.34]], "length": 17.19}, {"u": 316334513, "v": 845773140, "oneway": true, "points": [[332.89, 292.5], [322.43, 282.99], [311.75, 273.59], [265.5, 232.18], [259.14, 226.45]], "length": 99.0}, {"u": 316334514, "v": 53423466, "oneway": true, "points": [[366.11, 300.27], [398.35, 329.34], [402.95, 333.48], [423.6, 352.09], [426.22, 354.45], [463.02, 387.62], [486.6, 408.88], [495.28, 416.7]], "length": 173.9}, {"u": 316342869, "v": 53589794, "oneway": false, "points": [[2297.18, 1734.34], [2286.88, 1717.35], [2270.24, 1689.88]], "length": 51.98}, {"u": 316342869, "v": 3786910293, "oneway": true, "points": [[2297.18, 1734.34], [2272.46, 1734.41], [2266.66, 1733.25], [2262.12, 1730.53], [2254.77, 1723.47], [2240.24, 1709.49], [2216.72, 1686.85], [2207.05, 1677.56], [2180.56, 1652.07], [2131.52, 1604.89], [2126.83, 1600.4]], "length": 223.64}, {"u": 316342869, "v": 53490476, "oneway": false, "points": [[2297.18, 1734.34], [2312.07, 1734.88], [2329.72, 1739.22], [2362.25, 1747.21], [2382.92, 1752.28]], "length": 87.86}, {"u": 316342869, "v": 53503712, "oneway": false, "points": [[2297.18, 1734.34], [2304.13, 1745.49], [2317.38, 1766.75], [2325.39, 1779.62]], "length": 53.35}, {"u": 316349604, "v": 316334513, "oneway": false, "points": [[345.03, 280.34], [332.89, 292.5]], "length": 17.19}, {"u": 316349604, "v": 316334514, "oneway": true, "points": [[345.03, 280.34], [366.11, 300.27]], "length": 29.01}, {"u": 316349604, "v": 1192211510, "oneway": false, "points": [[345.03, 280.34], [352.03, 272.79], [386.94, 237.45]], "length": 59.97}, {"u": 316357138, "v": 1179795984, "oneway": true, "points": [[-1498.66, -1357.3], [-1511.85, -1367.46]], "length": 16.65}, {"u": 316357138, "v": 1179796054, "oneway": true, "points": [[-1498.66, -1357.3], [-1498.39, -1349.68], [-1498.12, -1341.73], [-1496.8, -1311.75]], "length": 45.59}, {"u": 316357429, "v": 362597488, "oneway": true, "points": [[-1468.07, -1361.74], [-1439.77, -1334.67], [-1410.97, -1308.66], [-1378.73, -1279.52]], "length": 121.42}, {"u": 316357431, "v": 387186790, "oneway": true, "points": [[-1030.43, -962.85], [-1017.53, -952.11]], "length": 16.79}, {"u": 316357431, "v": 917880340, "oneway": true, "points": [[-1030.43, -962.85], [-1017.5, -968.3], [-1002.52, -974.73], [-995.58, -978.16], [-988.84, -982.51], [-977.34, -993.23], [-935.5, -1037.69], [-929.84, -1043.85]], "length": 131.23}, {"u": 316562664, "v": 53426577, "oneway": false, "points": [[-172.21, -2522.82], [-169.94, -2513.54], [-168.43, -2507.38], [-163.82, -2396.59]], "length": 126.79}, {"u": 316562664, "v": 6291669589, "oneway": false, "points": [[-172.21, -2522.82], [-165.47, -2526.01], [-130.23, -2539.48], [-83.44, -2557.92], [-51.52, -2570.18], [-38.39, -2575.36], [11.41, -2595.21], [15.04, -2596.65], [55.01, -2612.58]], "length": 244.33}, {"u": 316562664, "v": 6404917413, "oneway": false, "points": [[-172.21, -2522.82], [-175.87, -2532.06], [-179.47, -2541.16], [-186.32, -2563.5], [-192.55, -2575.06], [-211.46, -2593.4], [-300.97, -2664.72], [-403.36, -2740.45], [-454.79, -2783.12], [-473.17, -2798.36], [-496.22, -2817.48]], "length": 445.01}, {"u": 316562664, "v": 2634682652, "oneway": false, "points": [[-172.21, -2522.82], [-179.21, -2520.05], [-255.54, -2489.67]], "length": 89.68}, {"u": 316562665, "v": 2634682653, "oneway": false, "points": [[-307.42, -2469.62], [-296.82, -2473.71]], "length": 11.36}, {"u": 316562665, "v": 2634682669, "oneway": true, "points": [[-307.42, -2469.62], [-336.71, -2456.38], [-349.97, -2451.36], [-364.59, -2445.83], [-397.82, -2436.32], [-409.77, -2432.84], [-419.22, -2430.09]], "length": 118.8}, {"u": 316562667, "v": 2634682669, "oneway": false, "points": [[-419.5, -2437.18], [-419.22, -2430.09]], "length": 7.09}, {"u": 316562667, "v": 316562665, "oneway": true, "points": [[-419.5, -2437.18], [-410.17, -2439.7], [-403.61, -2441.48], [-378.59, -2448.1], [-353.58, -2455.3], [-307.42, -2469.62]], "length": 116.7}, {"u": 349368476, "v": 1706427648, "oneway": false, "points": [[2165.67, 2423.11], [2171.29, 2415.87], [2173.77, 2413.44], [2219.11, 2368.96], [2219.89, 2368.15], [2230.45, 2357.1], [2235.81, 2351.49]], "length": 100.32}, {"u": 349368476, "v": 53498229, "oneway": false, "points": [[2165.67, 2423.11], [2159.01, 2416.58], [2109.29, 2367.72], [2050.19, 2309.53], [2027.56, 2288.23], [2021.37, 2282.3]], "length": 201.62}, {"u": 349368476, "v": 53626978, "oneway": false, "points": [[2165.67, 2423.11], [2171.95, 2429.19], [2288.98, 2542.73], [2295.21, 2548.74]], "length": 180.46}, {"u": 349378518, "v": 1699123250, "oneway": false, "points": [[998.36, 1062.38], [993.2, 1068.05], [937.97, 1128.86], [931.39, 1136.11]], "length": 99.6}, {"u": 349378518, "v": 53430018, "oneway": false, "points": [[998.36, 1062.38], [1004.89, 1055.19], [1038.8, 1017.86]], "length": 60.15}, {"u": 349378518, "v": 53453124, "oneway": false, "points": [[998.36, 1062.38], [1004.96, 1068.3], [1140.54, 1191.54], [1146.45, 1196.92]], "length": 200.08}, {"u": 349378518, "v": 3270240367, "oneway": false, "points": [[998.36, 1062.38], [991.13, 1055.79], [954.91, 1022.81], [928.83, 998.91], [927.25, 997.45], [897.52, 970.21], [855.81, 932.54], [849.16, 926.55]], "length": 201.77}, {"u": 362566885, "v": 387186935, "oneway": true, "points": [[-213.01, -868.2], [-221.58, -874.32], [-228.32, -881.9], [-237.32, -893.53], [-245.18, -906.29], [-248.59, -912.25], [-263.7, -940.88], [-268.32, -947.64], [-272.64, -950.87], [-279.33, -953.65], [-287.27, -955.63], [-304.87, -961.63]], "length": 137.21}, {"u": 362566885, "v": 2938172406, "oneway": true, "points": [[-213.01, -868.2], [-222.29, -884.08], [-228.63, -894.92], [-234.28, -904.71], [-240.33, -915.27], [-246.47, -926.19], [-251.88, -936.19], [-262.16, -957.07], [-270.67, -974.24]], "length": 120.76}, {"u": 362597488, "v": 316357431, "oneway": true, "points": [[-1378.73, -1279.52], [-1263.87, -1175.76], [-1226.9, -1142.37], [-1218.34, -1134.64], [-1168.09, -1089.23], [-1130.13, -1054.94], [-1121.74, -1047.36], [-1087.5, -1016.43], [-1060.52, -992.05], [-1037.75, -969.35], [-1030.43, -962.85]], "length": 470.77}, {"u": 366215894, "v": 1142903857, "oneway": false, "points": [[644.33, 551.1], [650.97, 544.93], [670.35, 523.27], [677.68, 514.3], [719.09, 468.67], [724.58, 462.62]], "length": 119.5}, {"u": 366215894, "v": 366215899, "oneway": true, "points": [[644.33, 551.1], [710.66, 613.83], [780.26, 679.38], [791.64, 689.77]], "length": 202.31}, {"u": 366215899, "v": 316303180, "oneway": false, "points": [[791.64, 689.77], [781.42, 701.01]], "length": 15.19}, {"u": 366215899, "v": 53407975, "oneway": false, "points": [[791.64, 689.77], [800.72, 679.78], [802.81, 677.48], [838.33, 638.41], [842.4, 633.92], [869.79, 603.79], [874.56, 598.55]], "length": 123.28}, {"u": 366215899, "v": 449917758, "oneway": true, "points": [[791.64, 689.77], [800.19, 697.57], [836.99, 731.11], [846.37, 739.64], [909.05, 796.8]], "length": 158.87}, {"u": 366215907, "v": 2948601585, "oneway": false, "points": [[941.31, 824.81], [949.44, 815.9], [951.58, 813.55], [974.55, 788.35], [976.3, 786.42], [984.96, 776.93], [987.13, 774.55], [995.15, 765.75], [1018.82, 739.8], [1024.99, 733.02]], "length": 124.21}, {"u": 366215907, "v": 366215913, "oneway": true, "points": [[941.31, 824.81], [955.76, 837.98], [983.56, 863.33], [1015.46, 892.35], [1029.46, 905.19], [1044.15, 918.59], [1054.57, 928.09], [1081.07, 952.25], [1090.49, 960.84]], "length": 201.88}, {"u": 366215913, "v": 2948594974, "oneway": false, "points": [[1090.49, 960.84], [1080.21, 972.28]], "length": 15.38}, {"u": 366215913, "v": 53408000, "oneway": false, "points": [[1090.49, 960.84], [1099.57, 950.58], [1133.77, 911.97], [1143.63, 900.83], [1152.86, 891.29], [1167.56, 875.01], [1174.0, 867.88]], "length": 124.97}, {"u": 366215913, "v": 366215925, "oneway": true, "points": [[1090.49, 960.84], [1098.2, 967.78], [1232.17, 1088.47], [1246.49, 1101.33], [1377.86, 1219.66], [1380.58, 1222.11], [1389.05, 1229.73]], "length": 401.8}, {"u": 366215925, "v": 53423508, "oneway": false, "points": [[1389.05, 1229.73], [1376.98, 1243.59]], "length": 18.38}, {"u": 366215925, "v": 53560766, "oneway": true, "points": [[1389.05, 1229.73], [1398.06, 1237.8], [1530.53, 1356.38], [1538.95, 1363.92]], "length": 201.19}, {"u": 366215925, "v": 53515077, "oneway": false, "points": [[1389.05, 1229.73], [1397.98, 1219.95], [1400.32, 1217.38], [1411.4, 1205.23], [1435.76, 1178.52], [1462.41, 1149.31], [1472.09, 1138.69], [1501.41, 1106.53], [1509.88, 1097.25], [1516.49, 1089.64], [1524.03, 1081.75], [1525.64, 1080.12], [1530.3, 1075.14], [1536.37, 1068.7], [1541.01, 1063.82], [1544.37, 1059.96], [1555.33, 1047.77], [1569.78, 1031.69], [1587.04, 1012.48], [1598.95, 999.23], [1602.16, 995.72], [1608.67, 988.62]], "length": 326.15}, {"u": 366220625, "v": 53426175, "oneway": false, "points": [[239.33, -318.61], [226.76, -305.07], [213.02, -290.29], [211.64, -288.81], [209.16, -286.13], [203.48, -281.13]], "length": 51.9}, {"u": 366229504, "v": 366229507, "oneway": false, "points": [[-0.89, -2207.9], [20.49, -2208.53]], "length": 21.39}, {"u": 366229504, "v": 53573861, "oneway": false, "points": [[-0.89, -2207.9], [-27.13, -2206.88], [-45.25, -2206.18], [-54.23, -2205.83]], "length": 53.38}, {"u": 366229504, "v": 2637766399, "oneway": true, "points": [[-0.89, -2207.9], [80.33, -2331.07], [140.41, -2413.98], [152.0, -2430.2], [199.6, -2495.36], [216.54, -2522.13], [232.57, -2549.81], [244.01, -2572.68], [258.72, -2605.95], [268.88, -2634.97]], "length": 506.91}, {"u": 366229507, "v": 366229504, "oneway": false, "points": [[20.49, -2208.53], [-0.89, -2207.9]], "length": 21.39}, {"u": 366229507, "v": 3937040992, "oneway": false, "points": [[20.49, -2208.53], [31.87, -2209.0], [47.77, -2209.81]], "length": 27.31}, {"u": 366229507, "v": 387186883, "oneway": true, "points": [[20.49, -2208.53], [5.66, -2186.02], [-6.46, -2168.18], [-134.4, -1971.49], [-153.33, -1942.88], [-171.96, -1914.36], [-265.43, -1768.21], [-286.41, -1734.4], [-304.66, -1704.47], [-328.02, -1665.75], [-347.22, -1632.39], [-355.03, -1616.03], [-359.42, -1605.86], [-366.1, -1587.37], [-373.08, -1563.88], [-379.97, -1532.79], [-384.5, -1491.08], [-383.02, -1440.27], [-377.19, -1400.28], [-359.25, -1314.67], [-337.45, -1224.91], [-324.08, -1168.76], [-313.7, -1129.68], [-298.64, -1085.84], [-287.12, -1055.61], [-276.9, -1027.72], [-262.85, -993.72], [-257.39, -982.45]], "length": 1357.7}, {"u": 387001668, "v": 53332734, "oneway": true, "points": [[-281.05, -126.32], [-279.43, -128.18], [-246.51, -164.28], [-215.51, -197.9], [-206.46, -208.28]], "length": 110.83}, {"u": 387096443, "v": 387001668, "oneway": true, "points": [[-280.11, -107.02], [-282.4, -113.48], [-282.56, -119.91], [-281.05, -126.32]], "length": 19.87}, {"u": 387096443, "v": 387001668, "oneway": true, "points": [[-280.11, -107.02], [-289.16, -109.75], [-294.75, -112.22], [-302.07, -115.81], [-295.45, -119.57], [-289.02, -123.02], [-281.05, -126.32]], "length": 47.25}, {"u": 387186790, "v": 452817475, "oneway": true, "points": [[-1017.53, -952.11], [-1032.45, -946.08]], "length": 16.09}, {"u": 387186790, "v": 1180120602, "oneway": true, "points": [[-1017.53, -952.11], [-1010.74, -945.31], [-989.53, -926.52]], "length": 37.95}, {"u": 387186883, "v": 2938172406, "oneway": true, "points": [[-257.39, -982.45], [-270.67, -974.24]], "length": 15.62}, {"u": 387186883, "v": 1188388115, "oneway": true, "points": [[-257.39, -982.45], [-233.09, -938.76], [-224.99, -924.48], [-201.19, -881.41]], "length": 115.62}, {"u": 387186935, "v": 1185580621, "oneway": true, "points": [[-304.87, -961.63], [-318.41, -963.58], [-332.88, -966.35], [-353.6, -971.07], [-365.83, -974.11], [-376.32, -977.37], [-388.4, -981.88], [-400.41, -987.08], [-413.22, -993.29], [-422.4, -998.13], [-432.47, -1004.3], [-442.61, -1011.13], [-452.41, -1018.36], [-459.3, -1024.02], [-465.8, -1029.57], [-472.86, -1036.25], [-479.58, -1042.76], [-487.67, -1051.57], [-495.59, -1060.96], [-503.15, -1070.72], [-507.78, -1077.21], [-512.89, -1084.4]], "length": 249.99}, {"u": 387187387, "v": 1185580621, "oneway": false, "points": [[-503.38, -1094.42], [-512.89, -1084.4]], "length": 13.81}, {"u": 387187387, "v": 4091376211, "oneway": true, "points": [[-503.38, -1094.42], [-498.17, -1087.22], [-491.57, -1078.81], [-484.19, -1069.99], [-476.43, -1061.82], [-464.02, -1049.3], [-444.67, -1031.79], [-434.38, -1024.59], [-424.7, -1018.27], [-414.03, -1011.77], [-405.2, -1007.17], [-384.99, -997.74], [-363.16, -988.84], [-345.15, -984.11], [-332.79, -983.57]], "length": 209.51}, {"u": 387187392, "v": 1191535148, "oneway": false, "points": [[-724.87, -1247.11], [-733.97, -1258.05]], "length": 14.24}, {"u": 387187392, "v": 13056348945, "oneway": true, "points": [[-724.87, -1247.11], [-729.11, -1243.74], [-732.86, -1240.76], [-740.25, -1232.66], [-776.69, -1191.34]], "length": 76.26}, {"u": 445963180, "v": 37923758, "oneway": false, "points": [[-1448.49, 86.26], [-1456.01, 86.57], [-1458.66, 86.64], [-1474.56, 87.7], [-1487.76, 88.32], [-1516.16, 89.74], [-1539.57, 90.85], [-1545.05, 91.19], [-1549.08, 91.7], [-1552.43, 93.04], [-1554.76, 94.47], [-1556.42, 96.21], [-1557.78, 99.67], [-1558.33, 104.07], [-1558.31, 109.4], [-1558.06, 119.2], [-1558.0, 126.27], [-1558.17, 133.52], [-1559.5, 139.07], [-1561.22, 142.94], [-1563.28, 144.9], [-1566.13, 146.33], [-1568.33, 146.66], [-1571.92, 145.79], [-1575.74, 143.26], [-1578.49, 139.56], [-1580.92, 135.25], [-1585.44, 126.87], [-1589.85, 118.71], [-1598.39, 107.29], [-1607.96, 95.99], [-1615.48, 88.79], [-1621.6, 83.84], [-1628.94, 80.6], [-1637.61, 76.5], [-1647.0, 72.34], [-1655.57, 67.85], [-1675.7, 57.55], [-1684.58, 54.42], [-1693.73, 53.03], [-1703.72, 53.02], [-1713.83, 53.47], [-1730.46, 54.94], [-1753.02, 58.23], [-1770.63, 60.97], [-1784.58, 62.38], [-1807.63, 62.46], [-1821.41, 63.33], [-1835.07, 65.1], [-1845.72, 67.51], [-1856.64, 70.9], [-1869.51, 75.01], [-1878.44, 78.89]], "length": 515.8}, {"u": 445963180, "v": 450716051, "oneway": false, "points": [[-1448.49, 86.26], [-1449.55, 54.43], [-1449.84, 42.86]], "length": 43.42}, {"u": 445963180, "v": 5446595705, "oneway": false, "points": [[-1448.49, 86.26], [-1447.85, 99.19], [-1446.89, 122.15], [-1446.69, 126.71], [-1446.58, 129.85], [-1445.96, 140.48], [-1445.84, 145.56], [-1448.02, 159.72]], "length": 73.68}, {"u": 446196405, "v": 446196406, "oneway": false, "points": [[1911.72, 2383.4], [1925.69, 2376.72]], "length": 15.49}, {"u": 446196405, "v": 53644706, "oneway": true, "points": [[1911.72, 2383.4], [1904.64, 2351.91], [1903.53, 2346.95], [1878.53, 2231.4], [1873.7, 2209.75], [1862.71, 2153.84]], "length": 234.74}, {"u": 446196406, "v": 446196405, "oneway": false, "points": [[1925.69, 2376.72], [1911.72, 2383.4]], "length": 15.49}, {"u": 446196406, "v": 53498229, "oneway": false, "points": [[1925.69, 2376.72], [1933.64, 2369.63], [1958.27, 2347.07], [1964.62, 2340.61], [1977.37, 2327.6], [1979.01, 2325.94], [1981.55, 2323.35], [2016.12, 2288.08], [2021.37, 2282.3]], "length": 134.48}, {"u": 446198895, "v": 13206778050, "oneway": true, "points": [[1729.85, 2001.56], [1719.07, 1991.73]], "length": 14.59}, {"u": 447178131, "v": 447178140, "oneway": true, "points": [[2713.36, 2352.6], [2733.31, 2348.34], [2738.39, 2347.25], [2744.46, 2346.86], [2751.67, 2347.58], [2762.08, 2351.31]], "length": 49.98}, {"u": 447178131, "v": 1706427646, "oneway": true, "points": [[2713.36, 2352.6], [2717.71, 2353.7], [2721.5, 2356.13], [2724.31, 2359.63], [2725.85, 2363.83]], "length": 17.95}, {"u": 447178140, "v": 2955373055, "oneway": false, "points": [[2762.08, 2351.31], [2768.13, 2353.16], [2774.04, 2355.47], [2781.44, 2359.35], [2786.75, 2362.69], [2791.04, 2366.09], [2794.12, 2368.93], [2803.17, 2377.75], [2865.57, 2438.58], [2868.48, 2441.42], [2869.31, 2442.26], [2870.06, 2443.01], [2892.33, 2465.47], [2912.07, 2482.14], [2923.65, 2492.63], [2931.67, 2501.27], [2934.49, 2505.34], [2935.16, 2506.3], [2937.85, 2513.75], [2939.57, 2520.27], [2940.79, 2532.25], [2941.06, 2535.57], [2942.54, 2554.46], [2943.11, 2562.13], [2945.38, 2592.24], [2945.55, 2595.41], [2946.11, 2606.04]], "length": 334.75}, {"u": 447178140, "v": 1706427646, "oneway": true, "points": [[2762.08, 2351.31], [2752.3, 2352.65], [2742.54, 2354.58], [2736.91, 2356.11], [2730.43, 2358.85], [2728.41, 2360.02], [2725.85, 2363.83]], "length": 39.61}, {"u": 449907112, "v": 53423466, "oneway": false, "points": [[482.42, 431.67], [495.28, 416.7]], "length": 19.74}, {"u": 449907112, "v": 2713311962, "oneway": false, "points": [[482.42, 431.67], [476.47, 438.2], [474.34, 440.53], [448.9, 468.43], [441.1, 476.98], [433.78, 485.01], [408.46, 512.78], [407.04, 514.34], [401.4, 520.52]], "length": 120.24}, {"u": 449907112, "v": 316334513, "oneway": true, "points": [[482.42, 431.67], [474.06, 424.03], [466.84, 417.43], [392.56, 348.15], [366.96, 324.28], [332.89, 292.5]], "length": 204.28}, {"u": 449917758, "v": 3270240364, "oneway": true, "points": [[909.05, 796.8], [921.81, 816.42], [926.19, 821.73], [929.15, 827.21], [931.26, 836.47]], "length": 46.01}, {"u": 449917758, "v": 366215907, "oneway": true, "points": [[909.05, 796.8], [916.83, 803.55], [920.07, 806.36], [926.0, 811.52], [941.31, 824.81]], "length": 42.73}, {"u": 449920083, "v": 366215907, "oneway": true, "points": [[964.37, 865.13], [949.29, 844.99], [945.49, 840.32], [943.1, 835.1], [941.31, 824.81]], "length": 47.36}, {"u": 449920083, "v": 3270240364, "oneway": true, "points": [[964.37, 865.13], [945.56, 848.85], [931.26, 836.47]], "length": 43.79}, {"u": 449934218, "v": 53423529, "oneway": false, "points": [[1630.99, 1548.85], [1637.17, 1544.38], [1642.75, 1540.34], [1652.6, 1531.06], [1666.7, 1517.75], [1674.59, 1510.31]], "length": 58.28}, {"u": 449952494, "v": 53423552, "oneway": false, "points": [[2160.36, 1940.62], [2147.0, 1954.15]], "length": 19.0}, {"u": 449952494, "v": 53407747, "oneway": false, "points": [[2160.36, 1940.62], [2166.31, 1934.53], [2223.34, 1876.02], [2227.9, 1871.36]], "length": 96.74}, {"u": 449952494, "v": 449952498, "oneway": true, "points": [[2160.36, 1940.62], [2170.3, 1950.26], [2255.2, 2032.46], [2266.52, 2043.42], [2397.17, 2169.94], [2404.88, 2177.4]], "length": 340.38}, {"u": 449952498, "v": 1706427672, "oneway": false, "points": [[2404.88, 2177.4], [2392.13, 2190.49]], "length": 18.27}, {"u": 449952498, "v": 53407767, "oneway": false, "points": [[2404.88, 2177.4], [2411.56, 2170.55], [2435.84, 2145.62], [2447.8, 2133.36]], "length": 61.49}, {"u": 449952498, "v": 449959902, "oneway": true, "points": [[2404.88, 2177.4], [2413.69, 2186.07], [2419.65, 2191.94], [2511.99, 2284.24]], "length": 151.28}, {"u": 449956571, "v": 53447046, "oneway": false, "points": [[2586.93, 2355.33], [2593.56, 2348.88], [2618.63, 2324.69], [2635.8, 2308.13], [2638.86, 2305.17], [2646.68, 2297.63]], "length": 83.06}, {"u": 449956571, "v": 449957352, "oneway": true, "points": [[2586.93, 2355.33], [2594.37, 2362.38], [2609.04, 2376.43], [2648.79, 2413.95], [2650.43, 2415.49], [2657.85, 2422.52]], "length": 97.69}, {"u": 449957352, "v": 53423565, "oneway": false, "points": [[2657.85, 2422.52], [2644.11, 2436.69]], "length": 19.74}, {"u": 449957352, "v": 1706427636, "oneway": false, "points": [[2657.85, 2422.52], [2664.47, 2416.09], [2682.82, 2398.25]], "length": 34.82}, {"u": 449957352, "v": 1706427633, "oneway": true, "points": [[2657.85, 2422.52], [2665.48, 2429.8], [2772.8, 2532.29], [2775.2, 2534.58], [2779.83, 2539.0], [2794.12, 2552.92], [2799.8, 2558.45], [2823.29, 2583.09], [2838.66, 2607.73], [2846.83, 2621.69], [2853.58, 2632.63]], "length": 288.65}, {"u": 449959902, "v": 1706427666, "oneway": true, "points": [[2511.99, 2284.24], [2513.31, 2295.05], [2519.75, 2302.38], [2524.83, 2308.2], [2525.56, 2309.03], [2525.86, 2310.17], [2525.75, 2311.53], [2521.54, 2317.8]], "length": 39.57}, {"u": 449959902, "v": 449956571, "oneway": true, "points": [[2511.99, 2284.24], [2540.58, 2311.37], [2543.87, 2314.49], [2581.0, 2349.71], [2586.93, 2355.33]], "length": 103.3}, {"u": 449967724, "v": 53423575, "oneway": true, "points": [[2859.93, 2644.07], [2845.42, 2655.0]], "length": 18.17}, {"u": 449967724, "v": 53599217, "oneway": true, "points": [[2859.93, 2644.07], [2868.95, 2658.63], [2884.51, 2684.35], [2897.8, 2706.12]], "length": 72.7}, {"u": 450505541, "v": 3031362525, "oneway": false, "points": [[-2502.34, 294.68], [-2459.92, 293.09], [-2436.81, 292.1], [-2426.59, 281.64]], "length": 80.22}, {"u": 450714559, "v": 2859245582, "oneway": true, "points": [[-1069.8, -263.51], [-1079.02, -263.05], [-1135.92, -260.21], [-1191.98, -257.34], [-1200.35, -257.04]], "length": 130.72}, {"u": 450714559, "v": 2859245574, "oneway": false, "points": [[-1069.8, -263.51], [-1070.74, -273.84], [-1070.94, -276.86], [-1072.84, -310.49], [-1073.74, -326.46], [-1073.96, -331.59], [-1074.08, -333.97], [-1074.93, -352.93], [-1075.08, -356.36], [-1076.58, -385.49], [-1076.51, -396.38]], "length": 133.06}, {"u": 450714559, "v": 1182091234, "oneway": false, "points": [[-1069.8, -263.51], [-1069.26, -251.16], [-1067.86, -219.36], [-1067.3, -206.61], [-1066.88, -197.02], [-1066.58, -190.28], [-1066.18, -181.28], [-1065.73, -169.74], [-1065.32, -160.3], [-1063.7, -124.7]], "length": 138.95}, {"u": 450714559, "v": 53642012, "oneway": true, "points": [[-1069.8, -263.51], [-1050.5, -251.72], [-1047.28, -248.87], [-1038.54, -241.0], [-1011.61, -216.73], [-991.21, -198.35], [-945.15, -156.83], [-929.33, -142.57], [-907.5, -122.9], [-898.3, -114.62], [-881.24, -99.23], [-878.03, -96.44], [-875.46, -94.5], [-870.56, -91.77], [-865.53, -89.78], [-860.87, -88.08]], "length": 273.89}, {"u": 450714993, "v": 469603287, "oneway": false, "points": [[-1458.65, -244.99], [-1458.43, -241.64], [-1458.5, -232.05], [-1458.48, -226.98], [-1458.64, -204.07], [-1457.46, -140.4]], "length": 104.61}, {"u": 450714993, "v": 53616189, "oneway": true, "points": [[-1458.65, -244.99], [-1472.87, -244.33], [-1503.27, -242.83], [-1532.66, -241.44], [-1557.5, -240.22], [-1592.17, -238.58], [-1597.31, -238.32], [-1605.09, -237.96]], "length": 146.61}, {"u": 450714993, "v": 1179459686, "oneway": true, "points": [[-1458.65, -244.99], [-1462.28, -254.24], [-1463.97, -257.86], [-1466.05, -263.87], [-1467.87, -307.66], [-1469.15, -322.7], [-1471.69, -339.14], [-1478.49, -364.71], [-1481.34, -375.79]], "length": 133.75}, {"u": 450716051, "v": 2859245583, "oneway": false, "points": [[-1449.84, 42.86], [-1441.16, 42.44], [-1349.03, 38.02], [-1304.63, 35.88], [-1192.89, 30.89], [-1183.92, 29.6]], "length": 266.29}, {"u": 450716051, "v": 445963180, "oneway": false, "points": [[-1449.84, 42.86], [-1449.55, 54.43], [-1448.49, 86.26]], "length": 43.42}, {"u": 450716051, "v": 469603287, "oneway": false, "points": [[-1449.84, 42.86], [-1450.15, 34.71], [-1450.66, 22.14], [-1454.92, -57.55], [-1455.68, -80.28], [-1455.75, -84.24], [-1457.46, -140.4]], "length": 183.43}, {"u": 452816427, "v": 452816429, "oneway": false, "points": [[325.03, -2754.05], [306.99, -2757.13]], "length": 18.3}, {"u": 452816427, "v": 6401044369, "oneway": false, "points": [[325.03, -2754.05], [330.14, -2752.85], [337.74, -2751.08], [347.47, -2748.8], [354.75, -2745.02], [358.87, -2741.45], [362.89, -2735.24], [364.06, -2731.14], [365.23, -2725.94], [364.38, -2720.0], [357.48, -2691.18], [355.39, -2684.69], [351.68, -2675.41], [349.14, -2664.31]], "length": 117.53}, {"u": 452816427, "v": 3937040986, "oneway": true, "points": [[325.03, -2754.05], [322.09, -2743.45], [315.79, -2717.47], [299.91, -2663.29], [284.04, -2615.37], [269.44, -2579.47], [254.03, -2547.44], [235.71, -2514.61], [214.85, -2482.57], [165.7, -2418.44], [153.69, -2402.03], [109.99, -2345.03], [65.07, -2278.82], [36.93, -2235.01]], "length": 599.84}, {"u": 452816429, "v": 452816427, "oneway": false, "points": [[306.99, -2757.13], [325.03, -2754.05]], "length": 18.3}, {"u": 452816429, "v": 2637766387, "oneway": false, "points": [[306.99, -2757.13], [295.49, -2756.09], [286.04, -2755.25], [260.96, -2751.31], [243.34, -2743.48], [223.7, -2728.8]], "length": 90.22}, {"u": 452816429, "v": 2637766380, "oneway": true, "points": [[306.99, -2757.13], [312.23, -2774.62], [314.71, -2782.92], [323.84, -2816.48]], "length": 61.7}, {"u": 452817475, "v": 53421750, "oneway": true, "points": [[-1032.45, -946.08], [-1044.66, -955.81]], "length": 15.61}, {"u": 452817475, "v": 6275800735, "oneway": true, "points": [[-1032.45, -946.08], [-1043.25, -941.75], [-1114.35, -910.29]], "length": 89.38}, {"u": 452866506, "v": 3607816648, "oneway": true, "points": [[-2465.68, -183.57], [-2469.88, -185.33], [-2476.7, -188.25], [-2486.71, -192.93], [-2491.6, -194.34], [-2497.74, -194.85], [-2513.54, -194.45], [-2528.39, -194.06], [-2531.37, -193.99], [-2540.44, -193.81]], "length": 76.98}, {"u": 452866506, "v": 53461796, "oneway": true, "points": [[-2465.68, -183.57], [-2454.11, -191.52], [-2445.26, -195.14], [-2430.39, -199.69], [-2415.96, -203.52], [-2395.21, -208.14], [-2370.82, -212.19]], "length": 100.06}, {"u": 456681760, "v": 2384881654, "oneway": true, "points": [[1618.96, 1903.49], [1612.92, 1896.67]], "length": 9.11}, {"u": 456681760, "v": 2384881666, "oneway": true, "points": [[1618.96, 1903.49], [1618.91, 1914.61], [1619.44, 1935.12]], "length": 31.64}, {"u": 456681765, "v": 1142903104, "oneway": true, "points": [[1616.4, 1881.41], [1617.69, 1882.37], [1623.67, 1886.83], [1625.07, 1887.97], [1634.7, 1897.07]], "length": 24.12}, {"u": 456681765, "v": 2384881652, "oneway": true, "points": [[1616.4, 1881.41], [1616.82, 1883.97], [1618.39, 1893.44]], "length": 12.2}, {"u": 469603287, "v": 469603304, "oneway": false, "points": [[-1457.46, -140.4], [-1467.94, -139.85], [-1502.76, -138.17], [-1520.72, -140.0], [-1545.0, -137.5], [-1558.64, -137.29], [-1566.79, -137.48], [-1574.35, -138.44], [-1583.08, -140.19], [-1591.61, -143.13], [-1597.14, -145.89], [-1602.81, -149.93], [-1606.07, -152.56], [-1609.63, -156.06], [-1613.62, -160.07], [-1618.26, -163.59], [-1623.91, -166.18], [-1628.82, -167.47], [-1636.33, -168.45], [-1657.39, -167.92], [-1661.81, -166.76], [-1667.89, -164.94], [-1672.12, -163.51], [-1675.73, -162.51], [-1677.94, -162.07], [-1680.16, -161.8], [-1683.92, -161.71], [-1687.32, -162.07], [-1690.69, -162.97], [-1699.69, -167.09], [-1715.61, -170.76], [-1723.09, -172.18], [-1726.88, -172.58], [-1730.93, -172.53], [-1734.89, -172.21], [-1737.72, -171.63], [-1740.3, -170.74], [-1743.22, -169.65], [-1763.5, -157.0], [-1769.12, -153.13], [-1775.24, -148.61], [-1779.44, -145.18], [-1782.72, -141.79], [-1785.29, -137.91]], "length": 350.73}, {"u": 469603287, "v": 450714993, "oneway": false, "points": [[-1457.46, -140.4], [-1458.64, -204.07], [-1458.48, -226.98], [-1458.5, -232.05], [-1458.43, -241.64], [-1458.65, -244.99]], "length": 104.61}, {"u": 469603287, "v": 450716051, "oneway": false, "points": [[-1457.46, -140.4], [-1455.75, -84.24], [-1455.68, -80.28], [-1454.92, -57.55], [-1450.66, 22.14], [-1450.15, 34.71], [-1449.84, 42.86]], "length": 183.43}, {"u": 469603304, "v": 469603287, "oneway": false, "points": [[-1785.29, -137.91], [-1782.72, -141.79], [-1779.44, -145.18], [-1775.24, -148.61], [-1769.12, -153.13], [-1763.5, -157.0], [-1743.22, -169.65], [-1740.3, -170.74], [-1737.72, -171.63], [-1734.89, -172.21], [-1730.93, -172.53], [-1726.88, -172.58], [-1723.09, -172.18], [-1715.61, -170.76], [-1699.69, -167.09], [-1690.69, -162.97], [-1687.32, -162.07], [-1683.92, -161.71], [-1680.16, -161.8], [-1677.94, -162.07], [-1675.73, -162.51], [-1672.12, -163.51], [-1667.89, -164.94], [-1661.81, -166.76], [-1657.39, -167.92], [-1636.33, -168.45], [-1628.82, -167.47], [-1623.91, -166.18], [-1618.26, -163.59], [-1613.62, -160.07], [-1609.63, -156.06], [-1606.07, -152.56], [-1602.81, -149.93], [-1597.14, -145.89], [-1591.61, -143.13], [-1583.08, -140.19], [-1574.35, -138.44], [-1566.79, -137.48], [-1558.64, -137.29], [-1545.0, -137.5], [-1520.72, -140.0], [-1502.76, -138.17], [-1467.94, -139.85], [-1457.46, -140.4]], "length": 350.73}, {"u": 482811372, "v": 2859304393, "oneway": false, "points": [[-2080.48, -550.85], [-2097.28, -550.23], [-2102.18, -550.04], [-2119.52, -549.4], [-2130.5, -549.1], [-2140.5, -548.79], [-2142.63, -548.72], [-2151.26, -548.22]], "length": 70.83}, {"u": 496686159, "v": 53290647, "oneway": false, "points": [[1594.13, 2485.69], [1585.0, 2486.66], [1576.3, 2487.59], [1543.92, 2496.62], [1521.46, 2502.87], [1517.33, 2503.95], [1502.78, 2507.74], [1460.07, 2521.17], [1458.03, 2521.0], [1456.19, 2519.17], [1453.21, 2514.69], [1449.93, 2508.01], [1445.95, 2500.52]], "length": 164.88}, {"u": 496686159, "v": 53499266, "oneway": false, "points": [[1594.13, 2485.69], [1595.07, 2508.13], [1595.96, 2529.99], [1596.06, 2532.28], [1597.27, 2562.08], [1598.57, 2594.19], [1599.79, 2623.97], [1599.89, 2626.5], [1600.9, 2651.35], [1601.47, 2662.7], [1603.4, 2701.47], [1604.7, 2728.38], [1605.0, 2734.48]], "length": 249.03}, {"u": 496686159, "v": 2712062758, "oneway": false, "points": [[1594.13, 2485.69], [1592.03, 2454.95], [1590.68, 2435.2], [1590.53, 2431.05]], "length": 54.76}, {"u": 496686170, "v": 2712062761, "oneway": false, "points": [[1595.98, 2346.2], [1601.08, 2322.8]], "length": 23.96}, {"u": 496686170, "v": 2712062759, "oneway": false, "points": [[1595.98, 2346.2], [1588.88, 2345.84], [1585.38, 2345.91], [1582.95, 2347.13], [1581.78, 2350.47], [1579.68, 2379.38], [1578.86, 2406.33], [1579.97, 2410.84], [1582.87, 2412.22], [1590.3, 2412.36]], "length": 88.1}, {"u": 496686170, "v": 2712062759, "oneway": false, "points": [[1595.98, 2346.2], [1592.37, 2368.89], [1590.35, 2396.69], [1590.3, 2412.36]], "length": 66.52}, {"u": 496686196, "v": 2712062758, "oneway": false, "points": [[1331.24, 2464.01], [1339.23, 2458.88], [1344.84, 2455.29], [1354.72, 2450.34], [1393.68, 2431.13], [1398.99, 2428.97], [1404.57, 2427.37], [1410.04, 2428.11], [1413.44, 2430.69], [1416.18, 2434.81], [1426.55, 2454.99], [1436.11, 2473.05], [1438.98, 2477.75], [1441.66, 2479.82], [1444.69, 2480.88], [1447.76, 2480.66], [1471.48, 2470.05], [1486.51, 2464.29], [1512.32, 2456.35], [1566.5, 2437.37], [1577.12, 2433.37], [1581.81, 2432.23], [1586.59, 2431.25], [1590.53, 2431.05]], "length": 306.71}, {"u": 496686196, "v": 53578383, "oneway": false, "points": [[1331.24, 2464.01], [1339.59, 2479.77], [1358.43, 2515.3], [1360.67, 2519.52], [1393.5, 2582.52], [1408.95, 2612.18], [1422.64, 2638.45], [1459.52, 2709.24]], "length": 276.76}, {"u": 496686196, "v": 496686202, "oneway": false, "points": [[1331.24, 2464.01], [1320.57, 2443.75], [1302.48, 2409.03]], "length": 62.05}, {"u": 496686202, "v": 2713391900, "oneway": false, "points": [[1302.48, 2409.03], [1284.19, 2375.76]], "length": 37.97}, {"u": 496686202, "v": 53510799, "oneway": false, "points": [[1302.48, 2409.03], [1294.85, 2415.0], [1276.94, 2427.53], [1260.25, 2444.9], [1254.14, 2453.63]], "length": 66.29}, {"u": 496686202, "v": 496686196, "oneway": false, "points": [[1302.48, 2409.03], [1320.57, 2443.75], [1331.24, 2464.01]], "length": 62.05}, {"u": 845773140, "v": 845773190, "oneway": true, "points": [[259.14, 226.45], [251.8, 220.11], [205.41, 178.7], [198.7, 172.76]], "length": 80.84}, {"u": 845773140, "v": 5730487260, "oneway": true, "points": [[259.14, 226.45], [251.74, 234.2], [237.37, 249.22], [184.02, 308.91], [183.0, 310.05], [179.36, 314.6]], "length": 118.91}, {"u": 845773190, "v": 845773213, "oneway": true, "points": [[198.7, 172.76], [212.3, 158.5]], "length": 19.7}, {"u": 845773190, "v": 53414098, "oneway": true, "points": [[198.7, 172.76], [192.06, 166.6], [157.77, 134.67], [155.58, 132.63], [131.33, 110.27], [124.59, 104.01]], "length": 101.09}, {"u": 845773212, "v": 53414098, "oneway": false, "points": [[137.01, 90.9], [124.59, 104.01]], "length": 18.07}, {"u": 845773212, "v": 845773213, "oneway": true, "points": [[137.01, 90.9], [143.39, 96.76], [205.26, 152.19], [212.3, 158.5]], "length": 101.19}, {"u": 845773212, "v": 53407922, "oneway": false, "points": [[137.01, 90.9], [143.22, 84.33], [144.88, 82.54], [162.18, 63.02], [165.44, 59.46], [177.76, 46.03], [211.94, 7.68], [217.65, 1.39]], "length": 120.47}, {"u": 845773213, "v": 53407926, "oneway": true, "points": [[212.3, 158.5], [217.56, 152.13], [231.52, 136.7], [245.44, 121.37], [261.74, 103.43], [284.25, 78.64], [286.58, 75.98], [293.3, 68.68]], "length": 120.96}, {"u": 845773213, "v": 845773215, "oneway": true, "points": [[212.3, 158.5], [218.75, 164.55], [236.04, 180.76], [263.97, 206.95], [270.51, 213.31]], "length": 79.95}, {"u": 845773215, "v": 845773140, "oneway": true, "points": [[270.51, 213.31], [263.38, 221.91], [259.14, 226.45]], "length": 17.38}, {"u": 845773215, "v": 316349604, "oneway": true, "points": [[270.51, 213.31], [277.58, 219.36], [307.2, 248.31], [333.46, 270.44], [345.03, 280.34]], "length": 100.29}, {"u": 847061279, "v": 53288575, "oneway": false, "points": [[-71.56, -3019.52], [-73.43, -3076.92]], "length": 57.44}, {"u": 847061279, "v": 53288573, "oneway": false, "points": [[-71.56, -3019.52], [-106.68, -3040.11]], "length": 40.72}, {"u": 847061279, "v": 6291669589, "oneway": false, "points": [[-71.56, -3019.52], [-63.65, -3014.75], [-27.66, -2974.07], [-3.37, -2934.04], [17.72, -2892.84], [32.32, -2850.72], [35.07, -2829.59], [35.98, -2806.17], [29.76, -2757.03], [24.73, -2717.38], [26.39, -2698.97], [31.41, -2674.33], [36.77, -2660.7], [42.91, -2642.76], [45.15, -2637.44], [48.85, -2628.72], [55.01, -2612.58]], "length": 445.24}, {"u": 917593109, "v": 13324853247, "oneway": false, "points": [[-366.22, -346.38], [-359.73, -353.46]], "length": 9.6}, {"u": 917593109, "v": 4173796882, "oneway": true, "points": [[-366.22, -346.38], [-371.95, -351.65], [-381.88, -360.78], [-382.61, -362.24], [-383.08, -363.87], [-383.21, -365.59], [-383.11, -367.23]], "length": 27.97}, {"u": 917593109, "v": 53591793, "oneway": false, "points": [[-366.22, -346.38], [-374.42, -334.82], [-386.62, -321.29], [-397.53, -309.2], [-409.81, -295.58], [-416.2, -288.5], [-421.68, -282.41], [-439.17, -263.03], [-443.68, -258.01], [-450.24, -251.77]], "length": 126.66}, {"u": 917593526, "v": 53604259, "oneway": true, "points": [[-510.55, -485.48], [-523.66, -470.87], [-571.28, -419.26], [-593.68, -394.47], [-600.1, -387.45]], "length": 132.77}, {"u": 917593526, "v": 4173796882, "oneway": false, "points": [[-510.55, -485.48], [-503.23, -478.82], [-490.7, -467.41], [-485.93, -463.07], [-470.56, -449.07], [-469.76, -448.34], [-448.8, -428.19], [-424.25, -405.41], [-422.25, -403.65], [-417.93, -399.82], [-399.86, -383.57], [-384.06, -368.13], [-383.11, -367.23]], "length": 173.87}, {"u": 917593526, "v": 53615260, "oneway": false, "points": [[-510.55, -485.48], [-516.92, -491.28], [-539.75, -512.07], [-554.19, -525.23], [-555.66, -526.55], [-569.41, -539.08], [-584.81, -553.11], [-599.58, -566.55], [-600.43, -567.32], [-614.18, -579.84], [-627.6, -592.06], [-636.39, -600.05], [-636.96, -600.57], [-653.09, -615.26], [-659.27, -620.89]], "length": 201.13}, {"u": 917880340, "v": 13056348949, "oneway": false, "points": [[-929.84, -1043.85], [-919.88, -1035.08]], "length": 13.28}, {"u": 917880340, "v": 12911858844, "oneway": false, "points": [[-929.84, -1043.85], [-936.59, -1050.23], [-938.83, -1052.19], [-956.29, -1067.47], [-966.26, -1076.79], [-974.24, -1084.06], [-1011.68, -1118.23], [-1019.35, -1125.57], [-1029.99, -1134.28], [-1047.33, -1150.71], [-1049.31, -1153.14], [-1050.44, -1155.37], [-1050.91, -1157.64], [-1050.73, -1160.8], [-1048.49, -1164.0], [-1016.07, -1189.76], [-990.7, -1210.11]], "length": 247.81}, {"u": 917880340, "v": 7189398161, "oneway": true, "points": [[-929.84, -1043.85], [-923.81, -1051.37], [-890.52, -1088.36], [-810.51, -1175.11]], "length": 177.42}, {"u": 1142902939, "v": 3786906811, "oneway": true, "points": [[2628.74, 1772.4], [2635.13, 1776.91]], "length": 7.82}, {"u": 1142902939, "v": 53498437, "oneway": true, "points": [[2628.74, 1772.4], [2632.56, 1764.61], [2635.96, 1754.45], [2637.11, 1748.98], [2637.99, 1742.44], [2638.08, 1729.9]], "length": 44.12}, {"u": 1142903012, "v": 1142903904, "oneway": false, "points": [[2091.49, 1402.22], [2098.01, 1396.95]], "length": 8.39}, {"u": 1142903012, "v": 53539549, "oneway": false, "points": [[2091.49, 1402.22], [2087.86, 1405.6], [2068.14, 1423.48], [2044.03, 1449.33], [2018.33, 1476.88], [1991.91, 1504.99]], "length": 143.17}, {"u": 1142903012, "v": 53539556, "oneway": true, "points": [[2091.49, 1402.22], [2088.45, 1396.78], [2067.9, 1359.08]], "length": 49.16}, {"u": 1142903104, "v": 13202666793, "oneway": true, "points": [[1634.7, 1897.07], [1639.08, 1900.36], [1660.05, 1918.27], [1662.29, 1920.15], [1665.64, 1923.19], [1688.25, 1943.61], [1700.8, 1953.84], [1725.58, 1973.35], [1731.0, 1978.06]], "length": 125.88}, {"u": 1142903570, "v": 2384881666, "oneway": true, "points": [[1636.69, 1919.3], [1630.31, 1917.69], [1626.24, 1917.5], [1623.89, 1918.99], [1620.46, 1923.13], [1619.44, 1935.12]], "length": 30.85}, {"u": 1142903570, "v": 456681760, "oneway": true, "points": [[1636.69, 1919.3], [1629.89, 1913.29], [1624.83, 1908.93], [1621.77, 1906.14], [1618.96, 1903.49]], "length": 23.76}, {"u": 1142903857, "v": 53432331, "oneway": false, "points": [[724.58, 462.62], [731.9, 454.21], [791.35, 387.65], [800.97, 377.39], [846.56, 328.34], [849.99, 324.42], [858.14, 315.26], [883.45, 285.66], [891.52, 277.06], [919.3, 247.43], [921.73, 244.89], [928.85, 237.25]], "length": 304.2}, {"u": 1142903857, "v": 366215894, "oneway": false, "points": [[724.58, 462.62], [719.09, 468.67], [677.68, 514.3], [670.35, 523.27], [650.97, 544.93], [644.33, 551.1]], "length": 119.5}, {"u": 1142903857, "v": 53407975, "oneway": false, "points": [[724.58, 462.62], [731.63, 469.0], [783.64, 516.13], [786.51, 518.68], [800.66, 531.98], [829.25, 557.48], [840.41, 567.6], [867.61, 592.25], [874.56, 598.55]], "length": 202.41}, {"u": 1142903857, "v": 2713292536, "oneway": false, "points": [[724.58, 462.62], [717.93, 456.23], [652.75, 393.4], [583.36, 332.58], [576.83, 327.33]], "length": 200.41}, {"u": 1142903904, "v": 1142903012, "oneway": false, "points": [[2098.01, 1396.95], [2091.49, 1402.22]], "length": 8.39}, {"u": 1142903904, "v": 53649099, "oneway": true, "points": [[2098.01, 1396.95], [2118.52, 1416.02], [2125.48, 1422.93], [2132.67, 1429.35], [2142.14, 1436.89], [2152.33, 1444.65], [2158.75, 1449.08], [2174.12, 1459.65]], "length": 98.82}, {"u": 1142904042, "v": 2948601586, "oneway": false, "points": [[1961.19, 1311.45], [1966.84, 1311.9], [1972.4, 1310.91], [1985.13, 1307.08], [1989.51, 1305.35], [2011.78, 1296.87], [2013.6, 1295.52], [2015.42, 1294.18], [2023.52, 1287.95]], "length": 67.89}, {"u": 1142904218, "v": 53616146, "oneway": false, "points": [[643.95, 255.42], [636.67, 248.5], [634.17, 246.14], [578.41, 193.55], [560.42, 177.69], [547.83, 166.01], [524.47, 144.33], [503.32, 124.69], [500.83, 122.38], [494.71, 117.02]], "length": 203.56}, {"u": 1142904218, "v": 1192150405, "oneway": false, "points": [[643.95, 255.42], [664.54, 232.18], [685.29, 208.77], [691.93, 201.03], [701.89, 189.11], [708.24, 181.58], [714.07, 172.66], [715.34, 171.16], [743.97, 139.84], [765.59, 116.59], [772.2, 111.31]], "length": 193.18}, {"u": 1142904218, "v": 2713292536, "oneway": false, "points": [[643.95, 255.42], [585.83, 318.2], [584.56, 319.72], [576.83, 327.33]], "length": 98.38}, {"u": 1153239288, "v": 53612042, "oneway": false, "points": [[-1765.47, -2061.3], [-1757.7, -2070.32], [-1739.51, -2091.43], [-1694.49, -2141.73], [-1665.73, -2178.9], [-1651.31, -2199.1], [-1626.5, -2240.6], [-1607.51, -2278.79], [-1602.85, -2288.63]], "length": 280.98}, {"u": 1153239288, "v": 270405510, "oneway": false, "points": [[-1765.47, -2061.3], [-1770.74, -2055.29], [-1772.4, -2053.25], [-1777.4, -2045.77], [-1783.5, -2036.71], [-1787.39, -2018.7], [-1788.06, -2011.34]], "length": 56.35}, {"u": 1153239288, "v": 53447620, "oneway": false, "points": [[-1765.47, -2061.3], [-1758.3, -2057.86], [-1754.68, -2056.13], [-1668.78, -2009.43], [-1661.99, -2005.73]], "length": 117.47}, {"u": 1153239288, "v": 53680486, "oneway": false, "points": [[-1765.47, -2061.3], [-1775.56, -2064.6], [-1784.72, -2069.74], [-1792.22, -2075.9], [-1794.06, -2077.99], [-1806.22, -2093.42], [-1809.92, -2098.37], [-1819.73, -2111.48], [-1831.79, -2123.35], [-1847.24, -2133.36], [-1868.93, -2139.51], [-1975.2, -2130.53], [-1983.93, -2129.79], [-2012.2, -2127.4], [-2076.05, -2122.9], [-2090.05, -2122.28], [-2099.73, -2121.33], [-2122.64, -2121.67], [-2145.88, -2127.68], [-2163.71, -2138.28], [-2176.29, -2153.7], [-2201.56, -2204.66], [-2218.71, -2234.29], [-2231.92, -2260.14], [-2239.29, -2286.82], [-2241.7, -2310.99], [-2240.77, -2338.35], [-2232.05, -2451.75], [-2230.85, -2489.47], [-2232.97, -2512.3], [-2240.66, -2538.76], [-2252.61, -2566.2], [-2290.13, -2626.48], [-2309.23, -2658.49], [-2323.93, -2682.19], [-2338.04, -2708.13], [-2347.65, -2727.75], [-2363.17, -2768.43], [-2373.82, -2794.58], [-2384.11, -2813.08], [-2394.8, -2826.37], [-2404.96, -2835.47], [-2414.64, -2840.8], [-2425.89, -2843.43], [-2452.32, -2844.22], [-2479.28, -2843.22], [-2548.85, -2839.0], [-2617.66, -2833.8], [-2683.58, -2829.9], [-2715.9, -2828.64], [-2744.77, -2829.03], [-2764.63, -2832.37], [-2782.09, -2837.2]], "length": 1575.57}, {"u": 1157073442, "v": 1424945190, "oneway": false, "points": [[-143.69, -724.62], [-143.23, -714.98], [-142.7, -703.52], [-142.38, -696.73], [-140.92, -665.55], [-140.75, -661.76], [-140.39, -654.09], [-138.69, -617.67], [-138.5, -613.76]], "length": 110.98}, {"u": 1160692039, "v": 1423974459, "oneway": true, "points": [[-277.28, 40.62], [-271.67, 34.48], [-243.33, 3.48], [-240.27, 0.14], [-237.49, -2.9], [-230.15, -10.93], [-226.57, -13.69], [-221.77, -15.75], [-214.28, -17.34]], "length": 87.25}, {"u": 1160692039, "v": 1160692043, "oneway": true, "points": [[-277.28, 40.62], [-285.55, 33.31], [-297.33, 22.54], [-361.93, -36.49], [-368.09, -42.12]], "length": 122.85}, {"u": 1160692043, "v": 53720172, "oneway": false, "points": [[-368.09, -42.12], [-374.75, -34.8], [-394.77, -12.82], [-409.25, 3.07], [-430.64, 26.56], [-436.21, 32.68]], "length": 101.17}, {"u": 1160692043, "v": 53604257, "oneway": true, "points": [[-368.09, -42.12], [-375.05, -48.74], [-400.04, -72.24], [-412.2, -83.24], [-421.59, -91.73], [-423.85, -93.98], [-425.68, -96.16], [-427.28, -98.5], [-428.76, -101.31], [-430.09, -104.42], [-430.95, -109.99], [-430.98, -113.02], [-430.54, -117.69], [-428.91, -121.96], [-427.22, -125.25], [-425.06, -128.62], [-421.95, -132.86], [-416.2, -139.36], [-380.8, -177.12], [-374.6, -183.51]], "length": 188.63}, {"u": 1160692043, "v": 12849307402, "oneway": false, "points": [[-368.09, -42.12], [-360.81, -46.42], [-340.33, -69.33], [-336.41, -76.06]], "length": 46.98}, {"u": 1178694147, "v": 53590707, "oneway": false, "points": [[-2320.24, -1305.0], [-2320.11, -1300.26], [-2319.77, -1287.25], [-2318.04, -1238.05], [-2317.91, -1234.37], [-2317.64, -1226.89]], "length": 78.15}, {"u": 1178694147, "v": 2637157420, "oneway": true, "points": [[-2320.24, -1305.0], [-2328.81, -1304.35], [-2340.11, -1305.6], [-2346.9, -1307.4], [-2355.65, -1310.49], [-2363.42, -1314.05], [-2369.08, -1318.33], [-2372.63, -1322.54], [-2377.75, -1330.64], [-2379.46, -1334.19], [-2380.44, -1336.23], [-2382.3, -1341.51], [-2383.18, -1346.49]], "length": 83.86}, {"u": 1179459672, "v": 1179459703, "oneway": true, "points": [[-1494.85, -747.28], [-1508.6, -746.6]], "length": 13.77}, {"u": 1179459672, "v": 1179459754, "oneway": true, "points": [[-1494.85, -747.28], [-1494.51, -740.87], [-1491.33, -683.49]], "length": 63.89}, {"u": 1179459686, "v": 1179459693, "oneway": true, "points": [[-1481.34, -375.79], [-1467.28, -376.21]], "length": 14.07}, {"u": 1179459686, "v": 1179459701, "oneway": true, "points": [[-1481.34, -375.79], [-1483.91, -386.39], [-1486.83, -404.89], [-1487.78, -412.9], [-1488.48, -420.92], [-1489.25, -439.04], [-1489.87, -458.17], [-1489.93, -459.66], [-1491.47, -492.21], [-1491.75, -501.19]], "length": 126.09}, {"u": 1179459693, "v": 450714993, "oneway": true, "points": [[-1467.28, -376.21], [-1465.05, -365.59], [-1461.87, -352.15], [-1457.83, -331.75], [-1455.87, -312.68], [-1455.03, -294.82], [-1453.58, -263.97], [-1454.51, -258.42], [-1455.58, -254.59], [-1458.65, -244.99]], "length": 133.07}, {"u": 1179459693, "v": 53582205, "oneway": true, "points": [[-1467.28, -376.21], [-1458.73, -376.63], [-1391.13, -379.97], [-1347.67, -382.12], [-1338.71, -382.56], [-1330.68, -382.95], [-1292.17, -384.85], [-1270.72, -385.92], [-1218.16, -388.52], [-1207.19, -389.06]], "length": 260.41}, {"u": 1179459694, "v": 1179459737, "oneway": false, "points": [[-1493.3, -1247.4], [-1508.07, -1247.14]], "length": 14.78}, {"u": 1179459694, "v": 3306923767, "oneway": true, "points": [[-1493.3, -1247.4], [-1493.15, -1234.23], [-1493.09, -1227.31], [-1490.79, -1183.08], [-1488.33, -1121.97], [-1490.2, -1091.57], [-1491.0, -1062.71], [-1492.77, -1026.16], [-1492.9, -1016.71]], "length": 230.92}, {"u": 1179459701, "v": 1179459724, "oneway": false, "points": [[-1491.75, -501.19], [-1478.01, -502.46]], "length": 13.8}, {"u": 1179459701, "v": 53616182, "oneway": false, "points": [[-1491.75, -501.19], [-1501.26, -500.72], [-1504.15, -500.58], [-1547.34, -498.46], [-1587.44, -496.48], [-1609.71, -495.39], [-1618.33, -494.97]], "length": 126.73}, {"u": 1179459701, "v": 1179459707, "oneway": true, "points": [[-1491.75, -501.19], [-1492.44, -511.29], [-1499.52, -615.23], [-1500.36, -625.56], [-1500.58, -628.27], [-1505.18, -674.1], [-1505.73, -682.87]], "length": 182.24}, {"u": 1179459703, "v": 1179459709, "oneway": true, "points": [[-1508.6, -746.6], [-1510.81, -804.67]], "length": 58.11}, {"u": 1179459703, "v": 53545466, "oneway": true, "points": [[-1508.6, -746.6], [-1518.52, -746.26], [-1595.46, -743.51], [-1614.29, -742.44], [-1616.07, -742.35], [-1624.87, -741.8]], "length": 116.37}, {"u": 1179459707, "v": 1179459754, "oneway": false, "points": [[-1505.73, -682.87], [-1491.33, -683.49]], "length": 14.41}, {"u": 1179459707, "v": 53616173, "oneway": false, "points": [[-1505.73, -682.87], [-1515.63, -682.46], [-1580.02, -679.71], [-1582.98, -679.58], [-1622.79, -677.89]], "length": 117.17}, {"u": 1179459707, "v": 1179459703, "oneway": true, "points": [[-1505.73, -682.87], [-1508.35, -741.76], [-1508.6, -746.6]], "length": 63.79}, {"u": 1179459709, "v": 1179459773, "oneway": true, "points": [[-1510.81, -804.67], [-1513.21, -857.27], [-1513.7, -867.34]], "length": 62.74}, {"u": 1179459724, "v": 1179459701, "oneway": false, "points": [[-1478.01, -502.46], [-1491.75, -501.19]], "length": 13.8}, {"u": 1179459724, "v": 1179459693, "oneway": true, "points": [[-1478.01, -502.46], [-1477.34, -492.58], [-1475.75, -469.02], [-1471.18, -400.77], [-1469.16, -387.16], [-1467.28, -376.21]], "length": 126.79}, {"u": 1179459724, "v": 53582203, "oneway": false, "points": [[-1478.01, -502.46], [-1466.68, -503.14], [-1466.04, -503.17], [-1411.82, -505.86], [-1352.85, -508.77], [-1345.0, -509.14], [-1335.28, -509.64], [-1225.68, -515.22], [-1215.19, -515.75]], "length": 263.16}, {"u": 1179459735, "v": 8868957845, "oneway": true, "points": [[-1442.21, -1016.58], [-1417.2, -1019.53], [-1409.61, -1020.85], [-1393.27, -1023.69], [-1382.08, -1025.41], [-1357.92, -1026.7], [-1352.19, -1026.52], [-1297.81, -1025.88], [-1274.21, -1026.24], [-1265.49, -1026.24]], "length": 177.43}, {"u": 1179459735, "v": 3306923767, "oneway": false, "points": [[-1442.21, -1016.58], [-1483.68, -1016.43], [-1492.9, -1016.71]], "length": 50.7}, {"u": 1179459737, "v": 1179459694, "oneway": false, "points": [[-1508.07, -1247.14], [-1493.3, -1247.4]], "length": 14.78}, {"u": 1179459737, "v": 2573847790, "oneway": false, "points": [[-1508.07, -1247.14], [-1517.86, -1246.98], [-1521.32, -1246.88], [-1628.53, -1243.87], [-1638.61, -1243.6]], "length": 130.58}, {"u": 1179459737, "v": 1179795984, "oneway": true, "points": [[-1508.07, -1247.14], [-1509.21, -1307.64], [-1509.68, -1318.26], [-1510.27, -1331.69], [-1510.54, -1337.75], [-1511.01, -1348.24], [-1511.31, -1355.27], [-1511.85, -1367.46]], "length": 120.39}, {"u": 1179459754, "v": 1179459707, "oneway": false, "points": [[-1491.33, -683.49], [-1505.73, -682.87]], "length": 14.41}, {"u": 1179459754, "v": 1179459724, "oneway": true, "points": [[-1491.33, -683.49], [-1490.86, -674.81], [-1487.39, -634.78], [-1487.12, -632.21], [-1486.2, -621.67], [-1482.81, -587.45], [-1480.1, -539.33], [-1478.55, -511.97], [-1478.01, -502.46]], "length": 181.54}, {"u": 1179459768, "v": 1179459737, "oneway": true, "points": [[-1507.8, -1084.65], [-1507.64, -1093.01], [-1506.67, -1141.31], [-1506.37, -1156.8], [-1507.15, -1203.36], [-1507.63, -1231.25], [-1507.72, -1233.6], [-1508.07, -1247.14]], "length": 162.52}, {"u": 1179459773, "v": 3306923798, "oneway": true, "points": [[-1513.7, -867.34], [-1513.93, -880.85], [-1513.52, -934.3], [-1512.65, -967.59]], "length": 100.27}, {"u": 1179459773, "v": 2859302267, "oneway": false, "points": [[-1513.7, -867.34], [-1506.15, -867.71], [-1497.76, -868.11]], "length": 15.96}, {"u": 1179459773, "v": 53616166, "oneway": false, "points": [[-1513.7, -867.34], [-1525.67, -866.8], [-1586.98, -864.02], [-1619.66, -862.55], [-1627.88, -862.16]], "length": 114.29}, {"u": 1179795897, "v": 53511571, "oneway": false, "points": [[-1444.21, -1367.25], [-1436.45, -1367.42], [-1427.63, -1368.59], [-1423.34, -1371.32], [-1421.32, -1377.05], [-1420.22, -1384.48], [-1420.76, -1416.76], [-1421.51, -1491.08]], "length": 141.94}, {"u": 1179795931, "v": 1179796056, "oneway": false, "points": [[-1503.16, -1611.25], [-1518.38, -1611.05]], "length": 15.22}, {"u": 1179795931, "v": 1179796106, "oneway": true, "points": [[-1503.16, -1611.25], [-1503.13, -1600.77], [-1502.68, -1571.52], [-1501.62, -1528.18], [-1500.96, -1501.22], [-1500.67, -1489.22]], "length": 122.06}, {"u": 1179795931, "v": 2634693278, "oneway": false, "points": [[-1503.16, -1611.25], [-1494.96, -1611.46], [-1491.67, -1611.55], [-1486.56, -1611.61], [-1481.67, -1611.7], [-1432.18, -1612.51], [-1424.87, -1612.63]], "length": 78.3}, {"u": 1179795960, "v": 1710317933, "oneway": false, "points": [[-1506.18, -1731.39], [-1520.1, -1731.12]], "length": 13.92}, {"u": 1179795960, "v": 1179795931, "oneway": true, "points": [[-1506.18, -1731.39], [-1505.0, -1723.19], [-1504.56, -1702.86], [-1503.79, -1655.14], [-1503.31, -1622.43], [-1503.16, -1611.25]], "length": 120.24}, {"u": 1179795960, "v": 12911858894, "oneway": false, "points": [[-1506.18, -1731.39], [-1497.61, -1731.55], [-1469.95, -1732.08], [-1466.34, -1732.15], [-1433.94, -1732.78], [-1427.95, -1732.91]], "length": 78.24}, {"u": 1179795984, "v": 53560253, "oneway": true, "points": [[-1511.85, -1367.46], [-1499.22, -1367.81]], "length": 12.63}, {"u": 1179795984, "v": 53621256, "oneway": false, "points": [[-1511.85, -1367.46], [-1519.79, -1367.32], [-1530.29, -1367.13], [-1550.03, -1366.71], [-1631.35, -1365.31], [-1639.87, -1365.16]], "length": 128.03}, {"u": 1179795984, "v": 1179796096, "oneway": true, "points": [[-1511.85, -1367.46], [-1512.22, -1379.26], [-1513.8, -1429.02], [-1515.29, -1478.5], [-1515.61, -1489.07]], "length": 121.67}, {"u": 1179796012, "v": 1179796054, "oneway": true, "points": [[-1460.69, -1331.26], [-1468.47, -1333.14], [-1472.5, -1333.94], [-1476.13, -1333.91], [-1479.82, -1333.33], [-1484.75, -1331.67], [-1487.06, -1330.5], [-1489.46, -1328.46], [-1491.14, -1326.69], [-1492.91, -1323.94], [-1494.51, -1320.7], [-1496.8, -1311.75]], "length": 48.99}, {"u": 1179796012, "v": 316357138, "oneway": true, "points": [[-1460.69, -1331.26], [-1473.88, -1342.41], [-1484.04, -1350.55], [-1486.7, -1351.74], [-1498.66, -1357.3]], "length": 46.39}, {"u": 1179796036, "v": 1180187579, "oneway": true, "points": [[-1468.27, -1899.83], [-1451.83, -1929.81], [-1434.92, -1960.64], [-1417.43, -1992.4], [-1415.0, -1996.76], [-1396.55, -2030.17], [-1387.61, -2047.4], [-1382.91, -2055.97]], "length": 177.95}, {"u": 1179796036, "v": 53447618, "oneway": false, "points": [[-1468.27, -1899.83], [-1474.46, -1903.31], [-1476.75, -1904.6], [-1499.62, -1917.44], [-1512.41, -1924.38], [-1515.9, -1926.27], [-1571.2, -1955.93], [-1578.56, -1959.87]], "length": 125.58}, {"u": 1179796036, "v": 4248707700, "oneway": false, "points": [[-1468.27, -1899.83], [-1461.53, -1896.02], [-1453.98, -1891.76]], "length": 16.41}, {"u": 1179796039, "v": 316357429, "oneway": true, "points": [[-1499.5, -1399.34], [-1484.89, -1382.93], [-1483.16, -1380.75], [-1476.6, -1372.4], [-1468.07, -1361.74]], "length": 49.03}, {"u": 1179796039, "v": 53560253, "oneway": true, "points": [[-1499.5, -1399.34], [-1499.42, -1379.41], [-1499.22, -1367.81]], "length": 31.54}, {"u": 1179796054, "v": 1179459694, "oneway": true, "points": [[-1496.8, -1311.75], [-1495.72, -1292.03], [-1493.3, -1247.4]], "length": 64.44}, {"u": 1179796056, "v": 1179795931, "oneway": false, "points": [[-1518.38, -1611.05], [-1503.16, -1611.25]], "length": 15.22}, {"u": 1179796056, "v": 53529686, "oneway": false, "points": [[-1518.38, -1611.05], [-1525.09, -1610.86], [-1527.66, -1610.82], [-1594.73, -1609.64], [-1634.93, -1608.24], [-1637.2, -1608.17], [-1645.91, -1607.86]], "length": 127.58}, {"u": 1179796056, "v": 1710317933, "oneway": true, "points": [[-1518.38, -1611.05], [-1518.5, -1622.21], [-1519.21, -1661.08], [-1518.9, -1672.1], [-1518.48, -1686.58], [-1519.51, -1722.23], [-1520.1, -1731.12]], "length": 120.12}, {"u": 1179796074, "v": 1180187704, "oneway": false, "points": [[-1366.43, -2080.54], [-1355.78, -2070.59]], "length": 14.57}, {"u": 1179796074, "v": 1180187485, "oneway": true, "points": [[-1366.43, -2080.54], [-1373.46, -2082.88], [-1377.52, -2089.19], [-1380.25, -2094.58], [-1381.99, -2100.3]], "length": 26.94}, {"u": 1179796074, "v": 1180187568, "oneway": true, "points": [[-1366.43, -2080.54], [-1358.73, -2097.78], [-1348.44, -2115.78], [-1324.59, -2160.45]], "length": 90.25}, {"u": 1179796096, "v": 1179796106, "oneway": false, "points": [[-1515.61, -1489.07], [-1500.67, -1489.22]], "length": 14.94}, {"u": 1179796096, "v": 1179796056, "oneway": true, "points": [[-1515.61, -1489.07], [-1516.06, -1500.91], [-1517.93, -1549.86], [-1518.29, -1600.21], [-1518.38, -1611.05]], "length": 122.03}, {"u": 1179796096, "v": 53511582, "oneway": false, "points": [[-1515.61, -1489.07], [-1522.79, -1488.86], [-1524.83, -1488.8], [-1530.26, -1488.66], [-1555.45, -1487.98], [-1559.15, -1487.87], [-1603.02, -1486.55], [-1634.81, -1485.99], [-1643.48, -1485.84]], "length": 127.91}, {"u": 1179796106, "v": 1179796096, "oneway": false, "points": [[-1500.67, -1489.22], [-1515.61, -1489.07]], "length": 14.94}, {"u": 1179796106, "v": 1179796039, "oneway": true, "points": [[-1500.67, -1489.22], [-1501.77, -1477.79], [-1500.89, -1440.88], [-1500.01, -1414.35], [-1499.5, -1399.34]], "length": 89.96}, {"u": 1179796106, "v": 53511571, "oneway": false, "points": [[-1500.67, -1489.22], [-1492.62, -1489.43], [-1490.47, -1489.5], [-1483.17, -1489.68], [-1481.58, -1489.73], [-1478.75, -1489.81], [-1468.02, -1490.12], [-1442.35, -1490.85], [-1429.75, -1491.01], [-1421.51, -1491.08]], "length": 79.18}, {"u": 1179956582, "v": 2859302272, "oneway": false, "points": [[-1359.42, -782.56], [-1359.99, -795.28], [-1360.66, -810.12], [-1360.8, -813.19], [-1362.2, -844.14], [-1363.14, -862.83], [-1363.57, -874.46]], "length": 91.99}, {"u": 1179956625, "v": 1180102573, "oneway": true, "points": [[-1095.16, -933.13], [-1070.37, -952.13], [-1066.36, -957.26], [-1065.01, -962.75], [-1064.87, -966.0], [-1067.49, -975.54]], "length": 56.54}, {"u": 1179956625, "v": 53421750, "oneway": true, "points": [[-1095.16, -933.13], [-1053.65, -951.03], [-1044.66, -955.81]], "length": 55.38}, {"u": 1179967125, "v": 13056348947, "oneway": false, "points": [[-825.0, -1089.49], [-842.99, -1104.91], [-844.11, -1105.87], [-850.69, -1111.91]], "length": 34.1}, {"u": 1179967125, "v": 7189398145, "oneway": false, "points": [[-825.0, -1089.49], [-794.23, -1061.95], [-777.79, -1042.4], [-775.09, -1040.35], [-772.12, -1039.29], [-769.17, -1039.39], [-766.24, -1040.47], [-762.71, -1042.75], [-735.71, -1083.37], [-728.63, -1094.08], [-710.88, -1115.5], [-709.62, -1117.4], [-707.95, -1119.94], [-707.63, -1124.3], [-709.56, -1130.35], [-715.02, -1138.03], [-722.13, -1144.21], [-749.15, -1166.27]], "length": 242.85}, {"u": 1180005819, "v": 4214349299, "oneway": false, "points": [[-2560.01, -820.57], [-2559.69, -810.92], [-2558.07, -761.64], [-2557.22, -734.59], [-2556.96, -727.8]], "length": 92.83}, {"u": 1180005819, "v": 53462362, "oneway": false, "points": [[-2560.01, -820.57], [-2561.4, -829.15], [-2561.56, -848.28], [-2562.01, -857.92], [-2562.36, -886.54], [-2562.4, -890.37], [-2556.53, -897.51]], "length": 79.17}, {"u": 1180005819, "v": 53684762, "oneway": false, "points": [[-2560.01, -820.57], [-2568.69, -820.19], [-2591.82, -819.18], [-2642.54, -816.95]], "length": 82.61}, {"u": 1180005819, "v": 1426438850, "oneway": true, "points": [[-2560.01, -820.57], [-2549.38, -823.57], [-2527.17, -823.95]], "length": 33.26}, {"u": 1180005830, "v": 53481441, "oneway": false, "points": [[-2859.77, -206.25], [-2858.45, -215.19], [-2858.17, -217.1], [-2856.95, -225.36], [-2848.23, -282.66], [-2846.89, -291.45]], "length": 86.17}, {"u": 1180005830, "v": 3607816606, "oneway": false, "points": [[-2859.77, -206.25], [-2857.05, -205.83], [-2843.59, -203.75]], "length": 16.37}, {"u": 1180005830, "v": 53461816, "oneway": false, "points": [[-2859.77, -206.25], [-2868.18, -207.56], [-2876.62, -208.86], [-2941.35, -218.88]], "length": 82.55}, {"u": 1180005831, "v": 53472270, "oneway": true, "points": [[-2019.94, -634.36], [-2020.11, -642.27], [-2020.64, -667.71], [-2020.72, -671.24], [-2021.09, -688.47], [-2021.2, -693.88], [-2022.02, -732.8]], "length": 98.46}, {"u": 1180005831, "v": 53510000, "oneway": false, "points": [[-2019.94, -634.36], [-2029.45, -633.89], [-2055.3, -632.6], [-2057.96, -632.47], [-2077.71, -631.49], [-2079.06, -631.42], [-2093.71, -630.69], [-2113.66, -629.71], [-2141.66, -628.31], [-2144.91, -628.15], [-2155.03, -627.55]], "length": 135.26}, {"u": 1180005831, "v": 4139816155, "oneway": false, "points": [[-2019.94, -634.36], [-2011.19, -634.79], [-1978.05, -636.44], [-1967.17, -636.98], [-1922.61, -639.19], [-1896.88, -640.47], [-1885.34, -641.05]], "length": 134.76}, {"u": 1180005834, "v": 2985254834, "oneway": false, "points": [[-2016.51, -475.33], [-2016.24, -465.86], [-2015.24, -445.1]], "length": 30.26}, {"u": 1180005834, "v": 53607068, "oneway": false, "points": [[-2016.51, -475.33], [-2007.26, -475.83], [-1890.82, -481.55], [-1881.92, -481.98]], "length": 134.75}, {"u": 1180005834, "v": 1180005838, "oneway": false, "points": [[-2016.51, -475.33], [-2025.64, -474.91], [-2054.91, -473.47], [-2070.78, -472.68], [-2075.45, -472.46], [-2141.43, -469.13], [-2150.75, -468.15]], "length": 134.45}, {"u": 1180005834, "v": 1180005831, "oneway": true, "points": [[-2016.51, -475.33], [-2016.69, -483.72], [-2017.63, -527.25], [-2017.7, -530.52], [-2017.76, -533.53], [-2018.28, -557.55], [-2018.7, -576.9], [-2019.2, -599.94], [-2019.74, -625.19], [-2019.94, -634.36]], "length": 159.07}, {"u": 1180005838, "v": 2859304393, "oneway": false, "points": [[-2150.75, -468.15], [-2150.8, -476.75], [-2151.26, -548.22]], "length": 80.07}, {"u": 1180005838, "v": 1345420597, "oneway": false, "points": [[-2150.75, -468.15], [-2150.7, -458.83], [-2150.53, -434.16], [-2150.35, -404.14]], "length": 64.01}, {"u": 1180005838, "v": 1180005834, "oneway": false, "points": [[-2150.75, -468.15], [-2141.43, -469.13], [-2075.45, -472.46], [-2070.78, -472.68], [-2054.91, -473.47], [-2025.64, -474.91], [-2016.51, -475.33]], "length": 134.45}, {"u": 1180079551, "v": 362597488, "oneway": true, "points": [[-1365.66, -1245.31], [-1372.86, -1261.74], [-1375.5, -1267.07], [-1377.52, -1271.66], [-1378.73, -1279.52]], "length": 36.86}, {"u": 1180079551, "v": 1179796012, "oneway": true, "points": [[-1365.66, -1245.31], [-1389.03, -1266.44], [-1397.06, -1273.71], [-1460.69, -1331.26]], "length": 128.13}, {"u": 1180102573, "v": 11603196290, "oneway": true, "points": [[-1067.49, -975.54], [-1107.94, -1012.14], [-1133.3, -1035.08], [-1141.4, -1042.41], [-1237.56, -1129.41]], "length": 229.35}, {"u": 1180120602, "v": 13151160466, "oneway": true, "points": [[-989.53, -926.52], [-953.54, -894.16], [-944.05, -886.08], [-935.09, -877.49], [-920.45, -863.94], [-919.51, -853.78]], "length": 103.42}, {"u": 1180120617, "v": 1180120602, "oneway": true, "points": [[-984.87, -967.03], [-995.48, -953.48], [-995.99, -945.02], [-994.85, -941.01], [-993.31, -935.14], [-989.53, -926.52]], "length": 45.34}, {"u": 1180120617, "v": 387186790, "oneway": true, "points": [[-984.87, -967.03], [-997.07, -960.78], [-1008.95, -955.55], [-1017.53, -952.11]], "length": 35.93}, {"u": 1180120831, "v": 6275800735, "oneway": true, "points": [[-980.25, -899.32], [-991.97, -903.48], [-1004.92, -912.2], [-1020.82, -925.62], [-1028.0, -928.76], [-1035.01, -930.53], [-1040.67, -930.46], [-1057.81, -928.52], [-1114.35, -910.29]], "length": 146.23}, {"u": 1180120831, "v": 452817475, "oneway": true, "points": [[-980.25, -899.32], [-1024.04, -939.92], [-1032.45, -946.08]], "length": 70.14}, {"u": 1180187456, "v": 1180187595, "oneway": false, "points": [[-1174.11, -2391.16], [-1190.4, -2396.32]], "length": 17.08}, {"u": 1180187456, "v": 53416788, "oneway": false, "points": [[-1174.11, -2391.16], [-1167.5, -2390.88], [-1158.54, -2390.49], [-1154.1, -2390.29], [-1141.51, -2389.74], [-1130.83, -2390.17], [-1125.77, -2390.6], [-1092.55, -2393.42], [-1081.21, -2394.37]], "length": 93.12}, {"u": 1180187456, "v": 1180187658, "oneway": true, "points": [[-1174.11, -2391.16], [-1206.67, -2335.71], [-1211.11, -2328.14]], "length": 73.08}, {"u": 1180187478, "v": 1180187532, "oneway": false, "points": [[-993.13, -2933.17], [-1007.14, -2931.38]], "length": 14.12}, {"u": 1180187478, "v": 1180187620, "oneway": false, "points": [[-993.13, -2933.17], [-984.85, -2934.32], [-970.53, -2936.29], [-943.62, -2940.01], [-895.93, -2945.7], [-892.93, -2945.99], [-885.58, -2946.68]], "length": 108.41}, {"u": 1180187478, "v": 1180187596, "oneway": true, "points": [[-993.13, -2933.17], [-993.45, -2922.74], [-994.16, -2900.12], [-995.4, -2879.83], [-996.4, -2863.45], [-1001.21, -2822.63], [-1001.68, -2818.65], [-1003.3, -2805.18], [-1005.41, -2787.61], [-1013.34, -2748.23], [-1014.36, -2744.27], [-1020.06, -2722.12], [-1024.88, -2703.41], [-1040.39, -2657.19], [-1045.58, -2643.58]], "length": 295.95}, {"u": 1180187483, "v": 1180187568, "oneway": false, "points": [[-1309.48, -2152.25], [-1324.59, -2160.45]], "length": 17.19}, {"u": 1180187483, "v": 1180187704, "oneway": true, "points": [[-1309.48, -2152.25], [-1331.36, -2113.55], [-1338.16, -2101.51], [-1349.63, -2081.09], [-1355.78, -2070.59]], "length": 93.88}, {"u": 1180187483, "v": 53416784, "oneway": false, "points": [[-1309.48, -2152.25], [-1300.93, -2152.56], [-1297.92, -2152.67], [-1292.03, -2152.89], [-1286.09, -2153.1], [-1282.87, -2153.21], [-1253.08, -2154.3], [-1243.56, -2154.64], [-1081.48, -2164.23], [-1072.69, -2164.74]], "length": 237.13}, {"u": 1180187485, "v": 53639872, "oneway": true, "points": [[-1381.99, -2100.3], [-1382.11, -2108.91], [-1378.51, -2116.1]], "length": 16.66}, {"u": 1180187507, "v": 1180187588, "oneway": false, "points": [[-1240.42, -2274.19], [-1256.96, -2282.31]], "length": 18.43}, {"u": 1180187507, "v": 1180187483, "oneway": true, "points": [[-1240.42, -2274.19], [-1246.1, -2264.16], [-1254.03, -2250.16], [-1295.21, -2177.45], [-1301.35, -2166.6], [-1309.48, -2152.25]], "length": 140.13}, {"u": 1180187507, "v": 53416786, "oneway": false, "points": [[-1240.42, -2274.19], [-1233.35, -2273.56], [-1231.27, -2273.37], [-1223.36, -2272.66], [-1184.63, -2274.25], [-1078.08, -2279.29]], "length": 162.56}, {"u": 1180187532, "v": 1180187478, "oneway": false, "points": [[-1007.14, -2931.38], [-993.13, -2933.17]], "length": 14.12}, {"u": 1180187532, "v": 1180187697, "oneway": true, "points": [[-1007.14, -2931.38], [-1007.78, -2943.46], [-1007.83, -2949.36], [-1007.86, -2970.02], [-1008.57, -2982.04]], "length": 50.7}, {"u": 1180187532, "v": 53473027, "oneway": false, "points": [[-1007.14, -2931.38], [-1016.0, -2930.04], [-1102.68, -2914.13], [-1157.38, -2903.89], [-1187.76, -2898.03], [-1245.56, -2886.87], [-1262.26, -2883.64], [-1305.18, -2875.35], [-1314.08, -2873.63]], "length": 312.33}, {"u": 1180187547, "v": 2638675236, "oneway": false, "points": [[-1106.99, -2510.6], [-1122.18, -2515.56]], "length": 15.99}, {"u": 1180187547, "v": 53434863, "oneway": false, "points": [[-1106.99, -2510.6], [-1098.28, -2510.59], [-1096.16, -2510.58], [-1090.16, -2510.58], [-1079.89, -2510.56], [-1062.56, -2511.41], [-988.39, -2515.04], [-960.32, -2516.84], [-846.12, -2522.47], [-837.09, -2522.91]], "length": 270.22}, {"u": 1180187547, "v": 1180187456, "oneway": true, "points": [[-1106.99, -2510.6], [-1114.95, -2497.58], [-1134.1, -2464.13], [-1142.79, -2448.61], [-1167.28, -2403.71], [-1174.11, -2391.16]], "length": 137.02}, {"u": 1180187568, "v": 1180187483, "oneway": false, "points": [[-1324.59, -2160.45], [-1309.48, -2152.25]], "length": 17.19}, {"u": 1180187568, "v": 1180187588, "oneway": true, "points": [[-1324.59, -2160.45], [-1316.15, -2176.26], [-1289.51, -2226.17], [-1287.96, -2228.84], [-1263.42, -2271.16], [-1256.96, -2282.31]], "length": 139.39}, {"u": 1180187578, "v": 1180187596, "oneway": false, "points": [[-1060.82, -2647.78], [-1045.58, -2643.58]], "length": 15.81}, {"u": 1180187578, "v": 1180187532, "oneway": true, "points": [[-1060.82, -2647.78], [-1054.93, -2662.42], [-1041.6, -2705.96], [-1039.31, -2713.39], [-1031.63, -2743.33], [-1023.73, -2778.08], [-1016.91, -2819.6], [-1014.22, -2839.11], [-1009.06, -2878.46], [-1006.68, -2921.41], [-1007.14, -2931.38]], "length": 290.09}, {"u": 1180187578, "v": 9146885459, "oneway": false, "points": [[-1060.82, -2647.78], [-1068.1, -2650.57], [-1082.74, -2651.35], [-1111.29, -2649.65], [-1150.28, -2646.37], [-1181.32, -2642.95], [-1196.86, -2638.85], [-1216.78, -2625.9], [-1229.45, -2620.3], [-1244.82, -2615.73], [-1289.76, -2613.71], [-1297.75, -2612.84]], "length": 244.16}, {"u": 1180187579, "v": 1180187485, "oneway": true, "points": [[-1382.91, -2055.97], [-1381.81, -2066.99], [-1382.01, -2072.04], [-1382.8, -2084.87], [-1382.86, -2090.76], [-1381.99, -2100.3]], "length": 44.45}, {"u": 1180187579, "v": 1179796074, "oneway": true, "points": [[-1382.91, -2055.97], [-1376.04, -2063.35], [-1366.43, -2080.54]], "length": 29.78}, {"u": 1180187588, "v": 1180187507, "oneway": false, "points": [[-1256.96, -2282.31], [-1240.42, -2274.19]], "length": 18.43}, {"u": 1180187588, "v": 1180187677, "oneway": true, "points": [[-1256.96, -2282.31], [-1239.3, -2312.78], [-1228.18, -2331.85], [-1225.56, -2336.33]], "length": 62.49}, {"u": 1180187595, "v": 1180187456, "oneway": false, "points": [[-1190.4, -2396.32], [-1174.11, -2391.16]], "length": 17.08}, {"u": 1180187595, "v": 2638675236, "oneway": true, "points": [[-1190.4, -2396.32], [-1182.49, -2411.48], [-1149.54, -2468.7], [-1142.13, -2481.01], [-1130.33, -2500.62], [-1122.18, -2515.56]], "length": 137.4}, {"u": 1180187596, "v": 1180187578, "oneway": false, "points": [[-1045.58, -2643.58], [-1060.82, -2647.78]], "length": 15.81}, {"u": 1180187596, "v": 53511723, "oneway": false, "points": [[-1045.58, -2643.58], [-1034.3, -2637.6]], "length": 12.76}, {"u": 1180187596, "v": 1180187547, "oneway": true, "points": [[-1045.58, -2643.58], [-1056.78, -2613.62], [-1064.31, -2596.03], [-1068.67, -2585.87], [-1069.73, -2583.38], [-1075.33, -2571.39], [-1093.01, -2533.49], [-1098.73, -2524.13], [-1106.99, -2510.6]], "length": 146.76}, {"u": 1180187620, "v": 1180187478, "oneway": false, "points": [[-885.58, -2946.68], [-892.93, -2945.99], [-895.93, -2945.7], [-943.62, -2940.01], [-970.53, -2936.29], [-984.85, -2934.32], [-993.13, -2933.17]], "length": 108.41}, {"u": 1180187620, "v": 53511694, "oneway": false, "points": [[-885.58, -2946.68], [-886.59, -2955.79], [-886.81, -2957.37], [-889.24, -2976.65], [-892.68, -3003.48], [-895.69, -3026.93], [-897.12, -3037.93], [-900.09, -3060.73], [-903.04, -3083.32]], "length": 137.76}, {"u": 1180187620, "v": 53463532, "oneway": false, "points": [[-885.58, -2946.68], [-884.86, -2936.6], [-884.56, -2926.08], [-885.02, -2914.76], [-885.86, -2903.03], [-887.5, -2891.68], [-888.85, -2884.23], [-893.04, -2870.09]], "length": 77.5}, {"u": 1180187658, "v": 1180187677, "oneway": false, "points": [[-1211.11, -2328.14], [-1225.56, -2336.33]], "length": 16.61}, {"u": 1180187658, "v": 1180187507, "oneway": true, "points": [[-1211.11, -2328.14], [-1213.84, -2323.13], [-1240.42, -2274.19]], "length": 61.4}, {"u": 1180187677, "v": 1180187658, "oneway": false, "points": [[-1225.56, -2336.33], [-1211.11, -2328.14]], "length": 16.61}, {"u": 1180187677, "v": 2638675253, "oneway": false, "points": [[-1225.56, -2336.33], [-1231.24, -2339.55], [-1234.62, -2341.46], [-1244.77, -2347.2], [-1273.43, -2364.03]], "length": 55.31}, {"u": 1180187677, "v": 1180187595, "oneway": true, "points": [[-1225.56, -2336.33], [-1221.36, -2343.51], [-1204.13, -2372.91], [-1190.4, -2396.32]], "length": 69.53}, {"u": 1180187697, "v": 53481638, "oneway": false, "points": [[-1008.57, -2982.04], [-993.63, -2982.73]], "length": 14.95}, {"u": 1180187697, "v": 53481665, "oneway": false, "points": [[-1008.57, -2982.04], [-1016.47, -2981.26], [-1020.1, -2980.84], [-1098.58, -2965.7], [-1138.53, -2958.42], [-1276.98, -2933.15], [-1280.85, -2932.51], [-1289.37, -2931.1], [-1305.3, -2928.47], [-1335.82, -2922.16], [-1388.34, -2912.15], [-1428.47, -2903.94], [-1444.57, -2900.98], [-1452.33, -2899.35], [-1460.59, -2898.4], [-1471.52, -2897.58], [-1489.25, -2898.89], [-1504.27, -2896.71], [-1513.48, -2894.23], [-1516.37, -2893.38], [-1530.23, -2889.68]], "length": 530.58}, {"u": 1180187704, "v": 1179796074, "oneway": false, "points": [[-1355.78, -2070.59], [-1366.43, -2080.54]], "length": 14.57}, {"u": 1180187704, "v": 53444545, "oneway": false, "points": [[-1355.78, -2070.59], [-1349.05, -2066.92], [-1327.78, -2054.94], [-1321.97, -2051.73], [-1287.16, -2031.5], [-1280.79, -2027.98]], "length": 86.26}, {"u": 1180187704, "v": 4248707700, "oneway": true, "points": [[-1355.78, -2070.59], [-1368.65, -2046.54], [-1373.1, -2038.41], [-1388.91, -2007.89], [-1390.54, -2004.77], [-1401.51, -1983.58], [-1453.98, -1891.76]], "length": 204.05}, {"u": 1180876933, "v": 1160692039, "oneway": true, "points": [[-266.75, 50.72], [-277.28, 40.62]], "length": 14.58}, {"u": 1180876933, "v": 2713279290, "oneway": true, "points": [[-266.75, 50.72], [-273.24, 57.73], [-277.04, 60.4], [-281.57, 62.37], [-287.56, 63.06]], "length": 25.17}, {"u": 1181085486, "v": 53467413, "oneway": false, "points": [[-855.8, 59.42], [-861.33, 65.57], [-863.0, 67.42], [-915.92, 126.18]], "length": 89.84}, {"u": 1181085486, "v": 53441256, "oneway": false, "points": [[-855.8, 59.42], [-819.42, 92.22], [-794.94, 114.28], [-788.22, 120.35]], "length": 90.98}, {"u": 1181085486, "v": 53441258, "oneway": false, "points": [[-855.8, 59.42], [-869.38, 47.18], [-882.31, 35.52], [-885.8, 32.37]], "length": 40.4}, {"u": 1181184017, "v": 53441258, "oneway": false, "points": [[-969.02, 114.85], [-962.26, 112.94], [-956.88, 109.76], [-953.33, 107.37], [-950.67, 105.11], [-893.69, 41.22], [-892.89, 40.14], [-885.8, 32.37]], "length": 118.51}, {"u": 1181324562, "v": 53467413, "oneway": false, "points": [[-949.87, 163.89], [-941.86, 154.98], [-930.25, 142.09], [-915.92, 126.18]], "length": 50.74}, {"u": 1181378741, "v": 6610389586, "oneway": true, "points": [[-847.51, -203.54], [-857.39, -212.68], [-868.39, -222.34], [-878.37, -231.29], [-898.68, -250.11], [-902.65, -253.92], [-906.33, -257.05], [-909.74, -259.63], [-913.37, -262.19], [-916.31, -263.76], [-920.46, -265.83], [-921.65, -266.53]], "length": 97.6}, {"u": 1182091234, "v": 450714559, "oneway": false, "points": [[-1063.7, -124.7], [-1065.32, -160.3], [-1065.73, -169.74], [-1066.18, -181.28], [-1066.58, -190.28], [-1066.88, -197.02], [-1067.3, -206.61], [-1067.86, -219.36], [-1069.26, -251.16], [-1069.8, -263.51]], "length": 138.95}, {"u": 1182471954, "v": 1182471991, "oneway": true, "points": [[-318.31, -757.45], [-311.67, -753.3], [-306.72, -750.73], [-299.96, -747.7], [-293.44, -746.09], [-286.22, -745.15], [-281.22, -745.38], [-275.6, -746.32], [-267.98, -748.28]], "length": 53.39}, {"u": 1182471954, "v": 53482965, "oneway": true, "points": [[-318.31, -757.45], [-314.65, -752.18], [-295.51, -735.24], [-287.94, -728.54]], "length": 42.09}, {"u": 1182471991, "v": 13334818837, "oneway": false, "points": [[-267.98, -748.28], [-259.54, -757.03]], "length": 12.16}, {"u": 1182471991, "v": 53482965, "oneway": false, "points": [[-267.98, -748.28], [-283.75, -732.54], [-287.94, -728.54]], "length": 28.08}, {"u": 1185580621, "v": 387187387, "oneway": false, "points": [[-512.89, -1084.4], [-503.38, -1094.42]], "length": 13.81}, {"u": 1185580621, "v": 53663953, "oneway": false, "points": [[-512.89, -1084.4], [-520.26, -1076.3], [-522.31, -1073.77], [-550.1, -1043.32], [-578.53, -1012.79], [-580.22, -1011.01], [-586.08, -1003.51]], "length": 109.13}, {"u": 1185580621, "v": 387187392, "oneway": true, "points": [[-512.89, -1084.4], [-519.23, -1095.23], [-569.17, -1186.38], [-571.92, -1191.52], [-584.15, -1214.57], [-590.91, -1225.57], [-595.08, -1231.48], [-599.65, -1236.14], [-604.84, -1241.44], [-614.24, -1249.54], [-620.12, -1253.58], [-633.22, -1260.42], [-645.67, -1264.35], [-675.85, -1266.41], [-686.38, -1265.14], [-696.28, -1262.71], [-707.52, -1258.69], [-716.38, -1253.76], [-724.87, -1247.11]], "length": 313.78}, {"u": 1186826669, "v": 1186826687, "oneway": false, "points": [[-125.0, -325.88], [-125.43, -333.8], [-125.68, -338.26], [-128.23, -384.79], [-128.51, -390.02], [-130.66, -429.18], [-131.41, -442.96]], "length": 117.25}, {"u": 1186826669, "v": 53444038, "oneway": false, "points": [[-125.0, -325.88], [-123.95, -306.69], [-123.14, -291.89]], "length": 34.04}, {"u": 1186826669, "v": 53493114, "oneway": true, "points": [[-125.0, -325.88], [-133.0, -325.43], [-136.36, -325.3], [-141.59, -324.97], [-145.66, -325.54], [-148.74, -327.59], [-161.13, -338.53], [-192.46, -367.24], [-194.75, -370.58], [-199.29, -378.73]], "length": 96.83}, {"u": 1186826687, "v": 1186826669, "oneway": false, "points": [[-131.41, -442.96], [-130.66, -429.18], [-128.51, -390.02], [-128.23, -384.79], [-125.68, -338.26], [-125.43, -333.8], [-125.0, -325.88]], "length": 117.25}, {"u": 1186826687, "v": 53467506, "oneway": true, "points": [[-131.41, -442.96], [-137.64, -452.81], [-143.2, -461.66], [-197.67, -511.48], [-200.06, -513.69], [-206.86, -520.03]], "length": 108.49}, {"u": 1186826687, "v": 53540659, "oneway": true, "points": [[-131.41, -442.96], [-127.36, -443.23], [-123.26, -442.26], [-120.11, -440.94], [-91.47, -416.97], [-84.38, -410.47], [-63.49, -391.3], [-55.67, -384.29]], "length": 97.51}, {"u": 1188388070, "v": 362566885, "oneway": true, "points": [[-205.7, -856.0], [-213.01, -868.2]], "length": 14.23}, {"u": 1188388071, "v": 3886439879, "oneway": true, "points": [[-144.17, -799.58], [-126.27, -777.06], [-92.74, -737.07], [-64.41, -705.58], [-34.33, -677.73], [-5.71, -649.21], [3.66, -639.61], [23.2, -618.63], [51.83, -587.78], [74.64, -563.64], [171.73, -468.23], [285.17, -352.7], [372.87, -274.22], [402.03, -245.89], [428.32, -218.68], [538.04, -88.98], [573.45, -46.82]], "length": 1041.26}, {"u": 1188388110, "v": 3358764343, "oneway": true, "points": [[-185.9, -827.6], [-187.57, -822.67], [-189.98, -819.85], [-195.84, -814.15], [-208.48, -803.74]], "length": 33.47}, {"u": 1188388110, "v": 1188388071, "oneway": true, "points": [[-185.9, -827.6], [-182.03, -827.64], [-179.06, -827.33], [-176.38, -826.68], [-172.64, -825.67], [-159.37, -813.51], [-144.17, -799.58]], "length": 52.1}, {"u": 1188388110, "v": 1188388070, "oneway": true, "points": [[-185.9, -827.6], [-191.45, -834.06], [-205.7, -856.0]], "length": 34.67}, {"u": 1188388114, "v": 3358764343, "oneway": true, "points": [[-163.47, -798.6], [-183.28, -807.37], [-185.79, -808.12], [-189.43, -808.43], [-190.96, -808.2], [-195.26, -807.61], [-199.92, -806.33], [-208.48, -803.74]], "length": 47.6}, {"u": 1188388114, "v": 1188388110, "oneway": true, "points": [[-163.47, -798.6], [-178.5, -818.23], [-181.71, -822.71], [-185.9, -827.6]], "length": 36.68}, {"u": 1188388115, "v": 1188388110, "oneway": true, "points": [[-201.19, -881.41], [-189.04, -853.56], [-185.53, -846.63], [-183.52, -841.45], [-183.18, -836.5], [-184.07, -832.78], [-185.9, -827.6]], "length": 57.99}, {"u": 1188388115, "v": 1188388071, "oneway": true, "points": [[-201.19, -881.41], [-181.67, -857.5], [-169.92, -840.64], [-154.35, -817.31], [-144.17, -799.58]], "length": 99.91}, {"u": 1188394181, "v": 1188388110, "oneway": true, "points": [[-219.84, -806.84], [-202.02, -822.39], [-195.28, -827.23], [-191.61, -828.31], [-185.9, -827.6]], "length": 41.53}, {"u": 1188394181, "v": 1188388070, "oneway": true, "points": [[-219.84, -806.84], [-214.71, -816.13], [-207.84, -829.85], [-205.49, -834.04], [-204.61, -838.07], [-203.87, -844.45], [-204.52, -849.36], [-205.7, -856.0]], "length": 53.0}, {"u": 1188394186, "v": 13334818837, "oneway": false, "points": [[-226.82, -792.96], [-259.54, -757.03]], "length": 48.59}, {"u": 1188394186, "v": 1188394181, "oneway": true, "points": [[-226.82, -792.96], [-225.06, -800.73], [-221.8, -804.62], [-219.84, -806.84]], "length": 16.0}, {"u": 1191535148, "v": 387187392, "oneway": false, "points": [[-733.97, -1258.05], [-724.87, -1247.11]], "length": 14.24}, {"u": 1191535148, "v": 53629591, "oneway": false, "points": [[-733.97, -1258.05], [-742.4, -1267.36], [-752.32, -1276.59], [-758.21, -1281.86], [-782.55, -1303.2]], "length": 66.38}, {"u": 1191535148, "v": 387187387, "oneway": true, "points": [[-733.97, -1258.05], [-721.01, -1268.41], [-709.41, -1273.22], [-693.3, -1277.97], [-679.75, -1279.79], [-671.57, -1280.68], [-662.93, -1280.43], [-652.07, -1279.54], [-641.97, -1277.49], [-633.6, -1275.23], [-624.43, -1271.56], [-615.11, -1266.82], [-609.21, -1263.36], [-606.86, -1262.0], [-595.95, -1254.21], [-586.28, -1244.33], [-578.28, -1233.59], [-552.47, -1187.54], [-541.13, -1165.83], [-529.62, -1140.68], [-511.13, -1106.84], [-503.38, -1094.42]], "length": 335.02}, {"u": 1192150160, "v": 1192150246, "oneway": true, "points": [[574.25, 18.53], [566.13, 0.42]], "length": 19.84}, {"u": 1192150160, "v": 53616146, "oneway": false, "points": [[574.25, 18.53], [571.05, 27.58], [569.43, 30.24], [553.91, 51.01], [532.13, 74.6], [494.71, 117.02]], "length": 127.31}, {"u": 1192150160, "v": 53515093, "oneway": true, "points": [[574.25, 18.53], [561.33, 15.5], [548.99, 13.48], [543.37, 11.92], [536.81, 9.76], [529.16, 6.58], [519.24, 1.64], [513.71, -1.69], [508.47, -5.41], [491.96, -18.15], [484.81, -23.85]], "length": 100.75}, {"u": 1192150246, "v": 1192150256, "oneway": true, "points": [[566.13, 0.42], [577.84, 3.98], [585.31, 6.13]], "length": 20.01}, {"u": 1192150246, "v": 1188388114, "oneway": true, "points": [[566.13, 0.42], [561.58, -9.95], [562.17, -12.15], [563.26, -19.91], [562.33, -26.11], [550.35, -46.9], [485.74, -131.06], [425.82, -197.14], [362.31, -260.79], [275.74, -343.31], [65.25, -554.5], [42.25, -577.51], [1.55, -617.2], [-44.02, -665.75], [-101.49, -726.23], [-151.9, -785.09], [-163.47, -798.6]], "length": 1089.38}, {"u": 1192150256, "v": 13018504178, "oneway": true, "points": [[585.31, 6.13], [592.63, 7.69], [605.17, 11.3]], "length": 20.54}, {"u": 1192150256, "v": 1192150160, "oneway": true, "points": [[585.31, 6.13], [581.99, 13.28], [574.25, 18.53]], "length": 17.24}, {"u": 1192150405, "v": 1192150160, "oneway": true, "points": [[772.2, 111.31], [764.94, 104.53], [749.81, 90.51], [727.68, 70.28], [723.72, 67.08], [718.89, 63.51], [713.72, 60.27], [708.32, 57.07], [702.58, 54.26], [695.35, 51.21], [687.94, 48.64], [641.63, 36.04], [635.37, 34.51], [591.2, 22.91], [588.91, 22.27], [574.25, 18.53]], "length": 223.72}, {"u": 1192150405, "v": 1192150413, "oneway": false, "points": [[772.2, 111.31], [774.37, 109.57], [780.89, 102.54]], "length": 12.37}, {"u": 1192150405, "v": 1142904218, "oneway": false, "points": [[772.2, 111.31], [765.59, 116.59], [743.97, 139.84], [715.34, 171.16], [714.07, 172.66], [708.24, 181.58], [701.89, 189.11], [691.93, 201.03], [685.29, 208.77], [664.54, 232.18], [643.95, 255.42]], "length": 193.18}, {"u": 1192150406, "v": 1192150405, "oneway": true, "points": [[814.66, 134.47], [807.43, 132.79], [800.1, 129.31], [779.76, 116.38], [773.64, 112.66], [772.2, 111.31]], "length": 48.77}, {"u": 1192150406, "v": 53432331, "oneway": false, "points": [[814.66, 134.47], [816.27, 135.93], [823.92, 142.78], [828.73, 147.1], [855.0, 170.68], [878.83, 192.06], [910.09, 220.11], [921.54, 230.67], [928.85, 237.25]], "length": 153.63}, {"u": 1192150409, "v": 1192150413, "oneway": false, "points": [[828.74, 49.41], [812.81, 66.59], [798.95, 81.99], [795.17, 86.19], [787.56, 94.79], [786.04, 96.54], [780.89, 102.54]], "length": 71.51}, {"u": 1192150413, "v": 1192150406, "oneway": true, "points": [[780.89, 102.54], [788.54, 107.7], [806.06, 122.27], [811.93, 127.68], [814.66, 134.47]], "length": 47.32}, {"u": 1192150413, "v": 1192150409, "oneway": false, "points": [[780.89, 102.54], [786.04, 96.54], [787.56, 94.79], [795.17, 86.19], [798.95, 81.99], [812.81, 66.59], [828.74, 49.41]], "length": 71.51}, {"u": 1192150413, "v": 1192150405, "oneway": false, "points": [[780.89, 102.54], [774.37, 109.57], [772.2, 111.31]], "length": 12.37}, {"u": 1192211510, "v": 316334514, "oneway": true, "points": [[386.94, 237.45], [382.03, 247.08], [374.97, 259.37], [369.05, 269.23], [366.69, 275.07], [365.69, 278.09], [364.08, 283.6], [363.72, 289.38], [364.39, 294.61], [366.11, 300.27]], "length": 68.68}, {"u": 1192211510, "v": 53407941, "oneway": false, "points": [[386.94, 237.45], [393.85, 229.07], [394.96, 227.88], [400.45, 221.64], [421.72, 198.18], [426.75, 191.8]], "length": 60.59}, {"u": 1192211510, "v": 316349604, "oneway": false, "points": [[386.94, 237.45], [352.03, 272.79], [345.03, 280.34]], "length": 59.97}, {"u": 1192248462, "v": 2948595076, "oneway": false, "points": [[1255.12, 672.52], [1270.3, 685.35], [1300.41, 710.8], [1302.75, 712.78], [1309.22, 718.22]], "length": 70.82}, {"u": 1192282519, "v": 53490496, "oneway": true, "points": [[2765.3, 1851.03], [2760.28, 1849.89]], "length": 5.14}, {"u": 1192282519, "v": 53430857, "oneway": false, "points": [[2765.3, 1851.03], [2773.49, 1853.19], [2811.18, 1863.31], [2837.58, 1870.41], [2845.12, 1872.64]], "length": 82.7}, {"u": 1246389199, "v": 53590668, "oneway": false, "points": [[-691.89, -3093.66], [-796.06, -3088.56]], "length": 104.3}, {"u": 1246389199, "v": 53590668, "oneway": false, "points": [[-691.89, -3093.66], [-675.24, -2970.99], [-675.94, -2962.48], [-679.3, -2958.07], [-686.12, -2956.35], [-771.41, -2970.04], [-777.8, -2973.2], [-781.41, -2979.15], [-794.93, -3079.13], [-796.06, -3088.56]], "length": 355.77}, {"u": 1345392073, "v": 3227608153, "oneway": false, "points": [[-100.29, 194.48], [-99.85, 205.54], [-99.25, 218.52], [-97.61, 254.29], [-96.48, 273.36], [-96.4, 274.58], [-96.33, 275.94], [-93.87, 322.07], [-92.86, 345.0]], "length": 150.7}, {"u": 1345392073, "v": 53538736, "oneway": false, "points": [[-100.29, 194.48], [-101.01, 178.88], [-102.07, 155.88], [-105.4, 83.65], [-105.8, 75.05]], "length": 119.56}, {"u": 1345392073, "v": 53655118, "oneway": true, "points": [[-100.29, 194.48], [-106.05, 194.2], [-110.1, 192.72], [-113.79, 190.3], [-122.18, 182.64], [-128.51, 176.85], [-153.32, 154.17], [-168.59, 140.22], [-175.12, 134.25]], "length": 97.57}, {"u": 1345420597, "v": 53523650, "oneway": true, "points": [[-2150.35, -404.14], [-2147.26, -397.45], [-2146.66, -395.29], [-2145.78, -382.19], [-2144.69, -369.92], [-2143.55, -355.32], [-2142.78, -345.4]], "length": 59.66}, {"u": 1345420597, "v": 1180005838, "oneway": false, "points": [[-2150.35, -404.14], [-2150.53, -434.16], [-2150.7, -458.83], [-2150.75, -468.15]], "length": 64.01}, {"u": 1345424861, "v": 53596818, "oneway": true, "points": [[-2142.27, -341.75], [-2141.74, -331.56], [-2141.0, -309.9], [-2140.45, -299.44], [-2139.91, -291.32], [-2139.87, -287.47], [-2140.16, -285.33], [-2140.82, -283.17], [-2141.56, -281.77], [-2142.6, -280.44], [-2143.15, -279.36], [-2143.53, -278.18]], "length": 64.49}, {"u": 1345424861, "v": 1345424868, "oneway": true, "points": [[-2142.27, -341.75], [-2137.07, -331.72], [-2136.06, -329.62], [-2135.03, -326.9], [-2133.55, -322.02], [-2132.87, -320.34], [-2131.12, -317.01], [-2126.94, -311.05], [-2123.1, -307.96], [-2119.39, -305.39], [-2114.54, -302.4], [-2106.75, -300.91], [-2097.8, -300.87]], "length": 66.52}, {"u": 1345424866, "v": 53607075, "oneway": true, "points": [[-2010.71, -339.54], [-2002.08, -342.22], [-1991.14, -344.86], [-1979.27, -347.57], [-1962.47, -350.17], [-1950.03, -351.43], [-1941.82, -352.06], [-1908.33, -353.83], [-1893.7, -354.76], [-1890.09, -354.99], [-1878.73, -355.78]], "length": 133.4}, {"u": 1345424868, "v": 1345424866, "oneway": true, "points": [[-2097.8, -300.87], [-2051.63, -324.12], [-2034.02, -331.63], [-2018.86, -337.19], [-2010.71, -339.54]], "length": 95.46}, {"u": 1345424871, "v": 53461758, "oneway": true, "points": [[-2007.54, -220.49], [-2015.82, -220.1], [-2108.0, -216.31], [-2124.81, -215.61], [-2128.71, -215.51], [-2141.11, -214.95]], "length": 133.68}, {"u": 1345424871, "v": 1345424866, "oneway": true, "points": [[-2007.54, -220.49], [-2007.77, -229.38], [-2007.91, -234.21], [-2010.46, -330.01], [-2010.71, -339.54]], "length": 119.09}, {"u": 1423974459, "v": 53385421, "oneway": false, "points": [[-214.28, -17.34], [-210.08, -21.75], [-198.19, -33.99]], "length": 23.16}, {"u": 1423974459, "v": 1180876933, "oneway": true, "points": [[-214.28, -17.34], [-214.65, -10.26], [-216.26, -5.32], [-218.67, -1.21], [-239.79, 21.6], [-242.75, 24.8], [-260.85, 44.34], [-266.75, 50.72]], "length": 87.82}, {"u": 1424945190, "v": 1157073442, "oneway": false, "points": [[-138.5, -613.76], [-138.69, -617.67], [-140.39, -654.09], [-140.75, -661.76], [-140.92, -665.55], [-142.38, -696.73], [-142.7, -703.52], [-143.23, -714.98], [-143.69, -724.62]], "length": 110.98}, {"u": 1424945190, "v": 53444048, "oneway": false, "points": [[-138.5, -613.76], [-138.11, -605.36], [-137.86, -599.87], [-137.44, -590.89]], "length": 22.9}, {"u": 1424945190, "v": 1425304284, "oneway": false, "points": [[-138.5, -613.76], [-127.37, -614.66], [-120.07, -615.24], [-102.19, -634.91], [-81.21, -657.99]], "length": 76.27}, {"u": 1425249983, "v": 1425250001, "oneway": false, "points": [[425.59, -76.96], [432.49, -84.46]], "length": 10.19}, {"u": 1425249983, "v": 53483529, "oneway": true, "points": [[425.59, -76.96], [417.93, -81.67], [409.73, -87.11], [401.86, -92.9], [390.02, -103.23], [388.33, -104.7], [386.81, -106.04], [356.0, -133.13], [353.98, -135.35], [351.87, -137.55], [349.5, -141.14], [347.63, -145.45]], "length": 104.66}, {"u": 1425249997, "v": 53515093, "oneway": true, "points": [[492.33, -32.06], [484.81, -23.85]], "length": 11.13}, {"u": 1425249997, "v": 1192150246, "oneway": true, "points": [[492.33, -32.06], [498.87, -26.22], [503.13, -22.88], [507.69, -19.83], [512.16, -17.24], [517.55, -14.44], [521.32, -12.62], [525.18, -10.95], [530.16, -9.07], [535.14, -7.31], [542.04, -5.16], [548.95, -3.18], [551.23, -2.59], [566.13, 0.42]], "length": 81.88}, {"u": 1425250001, "v": 1425249983, "oneway": false, "points": [[432.49, -84.46], [425.59, -76.96]], "length": 10.19}, {"u": 1425250001, "v": 1425249997, "oneway": true, "points": [[432.49, -84.46], [439.26, -79.86], [492.33, -32.06]], "length": 79.61}, {"u": 1425250001, "v": 53456081, "oneway": false, "points": [[432.49, -84.46], [437.16, -89.54], [438.09, -90.56], [462.32, -116.88]], "length": 44.06}, {"u": 1425304284, "v": 1424945190, "oneway": false, "points": [[-81.21, -657.99], [-102.19, -634.91], [-120.07, -615.24], [-127.37, -614.66], [-138.5, -613.76]], "length": 76.27}, {"u": 1426438819, "v": 2859304803, "oneway": false, "points": [[-2442.25, -801.03], [-2389.35, -759.74]], "length": 67.11}, {"u": 1426438819, "v": 2987035532, "oneway": false, "points": [[-2442.25, -801.03], [-2450.75, -808.19], [-2456.38, -813.17], [-2467.4, -822.56]], "length": 33.11}, {"u": 1426438835, "v": 53510000, "oneway": false, "points": [[-2154.06, -602.0], [-2154.82, -617.52], [-2155.03, -627.55]], "length": 25.57}, {"u": 1426438835, "v": 2859304395, "oneway": true, "points": [[-2154.06, -602.0], [-2151.86, -598.18], [-2150.86, -594.5], [-2150.7, -588.08], [-2151.5, -583.85], [-2152.14, -582.21], [-2159.75, -579.18]], "length": 28.91}, {"u": 1426438850, "v": 2987035535, "oneway": true, "points": [[-2527.17, -823.95], [-2518.45, -820.83], [-2509.4, -819.26], [-2506.33, -819.04], [-2503.17, -818.85], [-2500.91, -818.21], [-2498.97, -817.09], [-2494.59, -814.17]], "length": 34.54}, {"u": 1426438850, "v": 2987035532, "oneway": true, "points": [[-2527.17, -823.95], [-2491.57, -825.34], [-2484.83, -825.56], [-2476.12, -824.05], [-2467.4, -822.56]], "length": 60.06}, {"u": 1612121520, "v": 2634693276, "oneway": true, "points": [[-400.78, -2191.26], [-401.22, -2199.97], [-405.3, -2281.46], [-405.62, -2287.87]], "length": 96.74}, {"u": 1612121520, "v": 2634693274, "oneway": false, "points": [[-400.78, -2191.26], [-430.29, -2189.97], [-468.64, -2188.31], [-471.44, -2188.19]], "length": 70.73}, {"u": 1612121520, "v": 53642775, "oneway": false, "points": [[-400.78, -2191.26], [-389.54, -2191.74], [-383.77, -2192.0]], "length": 17.03}, {"u": 1699123250, "v": 1699123263, "oneway": false, "points": [[931.39, 1136.11], [925.0, 1143.13], [870.05, 1203.57], [862.57, 1211.87]], "length": 102.35}, {"u": 1699123250, "v": 349378518, "oneway": false, "points": [[931.39, 1136.11], [937.97, 1128.86], [993.2, 1068.05], [998.36, 1062.38]], "length": 99.6}, {"u": 1699123250, "v": 53453137, "oneway": false, "points": [[931.39, 1136.11], [938.22, 1142.4], [941.23, 1145.05], [1071.4, 1263.37], [1073.42, 1265.21], [1079.53, 1270.77]], "length": 200.19}, {"u": 1699123250, "v": 1699123288, "oneway": false, "points": [[931.39, 1136.11], [924.42, 1129.73], [922.08, 1127.6], [791.22, 1008.16], [788.94, 1006.07], [782.26, 999.96]], "length": 201.94}, {"u": 1699123263, "v": 1699123250, "oneway": false, "points": [[862.57, 1211.87], [870.05, 1203.57], [925.0, 1143.13], [931.39, 1136.11]], "length": 102.35}, {"u": 1699123263, "v": 1699123277, "oneway": false, "points": [[862.57, 1211.87], [859.12, 1215.96], [858.02, 1217.26], [855.64, 1220.07], [834.31, 1243.79], [802.19, 1279.12], [795.32, 1286.69]], "length": 100.61}, {"u": 1699123263, "v": 53453147, "oneway": true, "points": [[862.57, 1211.87], [869.22, 1217.82], [929.57, 1271.79], [1005.54, 1340.18], [1012.59, 1346.78]], "length": 201.76}, {"u": 1699123264, "v": 53536998, "oneway": false, "points": [[1149.1, 1493.82], [1161.07, 1482.05]], "length": 16.79}, {"u": 1699123264, "v": 53437720, "oneway": false, "points": [[1149.1, 1493.82], [1143.45, 1499.83], [1142.31, 1501.18], [1102.51, 1544.99], [1089.04, 1559.77], [1076.8, 1571.15], [1058.29, 1587.79]], "length": 130.81}, {"u": 1699123264, "v": 53453152, "oneway": true, "points": [[1149.1, 1493.82], [1142.19, 1489.05], [1125.06, 1477.22], [1115.67, 1472.34], [1104.93, 1467.79], [1094.11, 1464.56], [1074.59, 1462.1], [1059.05, 1462.29], [1033.91, 1463.04], [1021.99, 1461.88], [1009.62, 1459.58], [997.03, 1455.55], [984.4, 1448.43], [976.09, 1442.39], [951.96, 1425.51], [944.4, 1420.22]], "length": 224.35}, {"u": 1699123266, "v": 53631422, "oneway": true, "points": [[494.9, 1015.45], [488.61, 1009.48], [456.89, 979.32], [416.23, 941.74]], "length": 107.8}, {"u": 1699123266, "v": 53455657, "oneway": false, "points": [[494.9, 1015.45], [490.11, 1020.75], [424.85, 1093.03]], "length": 104.53}, {"u": 1699123266, "v": 1699123271, "oneway": false, "points": [[494.9, 1015.45], [501.76, 1007.92], [557.9, 946.29], [559.7, 944.32], [563.91, 939.7]], "length": 102.47}, {"u": 1699123271, "v": 316302556, "oneway": false, "points": [[563.91, 939.7], [569.86, 933.17], [626.05, 871.51], [632.25, 864.72]], "length": 101.45}, {"u": 1699123271, "v": 2705148499, "oneway": true, "points": [[563.91, 939.7], [570.77, 945.62], [580.5, 954.1], [595.09, 967.51], [609.55, 981.27], [628.54, 999.38], [637.14, 1007.52]], "length": 99.83}, {"u": 1699123271, "v": 1699123266, "oneway": false, "points": [[563.91, 939.7], [559.7, 944.32], [557.9, 946.29], [501.76, 1007.92], [494.9, 1015.45]], "length": 102.47}, {"u": 1699123277, "v": 1699123263, "oneway": false, "points": [[795.32, 1286.69], [802.19, 1279.12], [834.31, 1243.79], [855.64, 1220.07], [858.02, 1217.26], [859.12, 1215.96], [862.57, 1211.87]], "length": 100.61}, {"u": 1699123277, "v": 4172253594, "oneway": true, "points": [[795.32, 1286.69], [788.05, 1279.95], [651.49, 1156.46], [645.33, 1150.04]], "length": 202.92}, {"u": 1699123277, "v": 53437707, "oneway": true, "points": [[795.32, 1286.69], [789.98, 1292.55], [743.14, 1344.07]], "length": 77.56}, {"u": 1699123283, "v": 53429624, "oneway": false, "points": [[1211.01, 1545.12], [1220.36, 1534.88]], "length": 13.87}, {"u": 1699123283, "v": 2713391937, "oneway": false, "points": [[1211.01, 1545.12], [1205.03, 1551.15], [1076.26, 1694.52], [920.49, 1830.75], [915.08, 1836.1]], "length": 415.75}, {"u": 1699123283, "v": 1699123264, "oneway": true, "points": [[1211.01, 1545.12], [1204.63, 1539.82], [1156.51, 1499.78], [1149.1, 1493.82]], "length": 80.4}, {"u": 1699123288, "v": 53640824, "oneway": false, "points": [[782.26, 999.96], [775.74, 1007.1], [721.12, 1067.05], [719.84, 1068.44], [714.15, 1074.69]], "length": 101.11}, {"u": 1699123288, "v": 3270240367, "oneway": false, "points": [[782.26, 999.96], [787.99, 993.67], [840.74, 935.79], [843.5, 932.76], [849.16, 926.55]], "length": 99.32}, {"u": 1699123288, "v": 1699123250, "oneway": false, "points": [[782.26, 999.96], [788.94, 1006.07], [791.22, 1008.16], [922.08, 1127.6], [924.42, 1129.73], [931.39, 1136.11]], "length": 201.94}, {"u": 1699123288, "v": 316302556, "oneway": false, "points": [[782.26, 999.96], [775.66, 994.19], [772.93, 991.71], [641.78, 872.77], [639.55, 870.88], [632.25, 864.72]], "length": 201.98}, {"u": 1701854143, "v": 2713279291, "oneway": false, "points": [[-406.8, 194.99], [-401.31, 188.88], [-387.62, 173.63], [-345.88, 127.11], [-339.29, 119.78]], "length": 101.07}, {"u": 1701854143, "v": 53472460, "oneway": true, "points": [[-406.8, 194.99], [-415.87, 186.79], [-420.82, 182.31], [-449.71, 156.18], [-458.21, 148.5], [-461.83, 145.22], [-465.05, 142.31], [-468.65, 139.06], [-497.43, 113.04], [-503.99, 107.1]], "length": 131.04}, {"u": 1701854143, "v": 13334632600, "oneway": true, "points": [[-406.8, 194.99], [-408.79, 205.72], [-412.87, 209.63], [-416.44, 212.72], [-418.9, 214.31], [-421.22, 215.42], [-423.47, 216.02], [-425.39, 216.03]], "length": 31.03}, {"u": 1706427633, "v": 449967724, "oneway": true, "points": [[2853.58, 2632.63], [2859.93, 2644.07]], "length": 13.08}, {"u": 1706427633, "v": 2955373055, "oneway": true, "points": [[2853.58, 2632.63], [2863.13, 2627.57], [2880.58, 2617.66], [2889.81, 2612.15], [2902.1, 2606.05], [2910.52, 2603.7], [2918.97, 2602.81], [2929.18, 2602.55], [2932.48, 2602.46], [2939.28, 2603.71], [2946.11, 2606.04]], "length": 100.23}, {"u": 1706427636, "v": 2948595043, "oneway": true, "points": [[2682.82, 2398.25], [2692.92, 2382.65], [2695.9, 2378.04], [2697.26, 2375.61], [2698.91, 2370.8]], "length": 31.94}, {"u": 1706427636, "v": 449957352, "oneway": false, "points": [[2682.82, 2398.25], [2664.47, 2416.09], [2657.85, 2422.52]], "length": 34.82}, {"u": 1706427646, "v": 1706427657, "oneway": true, "points": [[2725.85, 2363.83], [2726.09, 2366.67], [2725.4, 2370.78], [2723.52, 2374.5], [2720.61, 2377.49], [2716.95, 2379.5], [2713.36, 2380.29], [2709.68, 2380.12]], "length": 26.89}, {"u": 1706427647, "v": 1706427633, "oneway": true, "points": [[2838.16, 2641.73], [2853.58, 2632.63]], "length": 17.91}, {"u": 1706427647, "v": 53423568, "oneway": true, "points": [[2838.16, 2641.73], [2831.3, 2630.89], [2814.05, 2602.85], [2801.75, 2587.87], [2793.1, 2578.36], [2781.21, 2565.87], [2774.37, 2558.68]], "length": 105.16}, {"u": 1706427648, "v": 349368476, "oneway": false, "points": [[2235.81, 2351.49], [2230.45, 2357.1], [2219.89, 2368.15], [2219.11, 2368.96], [2173.77, 2413.44], [2171.29, 2415.87], [2165.67, 2423.11]], "length": 100.32}, {"u": 1706427648, "v": 2714912985, "oneway": false, "points": [[2235.81, 2351.49], [2243.02, 2343.98], [2255.52, 2330.94], [2269.44, 2316.43], [2301.31, 2283.94], [2306.26, 2278.94]], "length": 101.13}, {"u": 1706427648, "v": 53498225, "oneway": false, "points": [[2235.81, 2351.49], [2228.58, 2344.44], [2097.3, 2216.96], [2090.85, 2210.69]], "length": 202.08}, {"u": 1706427652, "v": 447178131, "oneway": true, "points": [[2711.35, 2352.57], [2713.36, 2352.6]], "length": 2.01}, {"u": 1706427657, "v": 1706427636, "oneway": true, "points": [[2709.68, 2380.12], [2701.31, 2385.46], [2698.17, 2387.64], [2682.82, 2398.25]], "length": 32.41}, {"u": 1706427657, "v": 2948595043, "oneway": true, "points": [[2709.68, 2380.12], [2706.13, 2378.98], [2703.01, 2376.94], [2700.54, 2374.14], [2698.91, 2370.8]], "length": 14.91}, {"u": 1706427666, "v": 2714912986, "oneway": false, "points": [[2521.54, 2317.8], [2515.35, 2327.44], [2443.43, 2399.7], [2437.9, 2405.53]], "length": 121.44}, {"u": 1706427666, "v": 1706427672, "oneway": true, "points": [[2521.54, 2317.8], [2400.99, 2199.21], [2392.13, 2190.49]], "length": 181.54}, {"u": 1706427669, "v": 53480554, "oneway": false, "points": [[2311.02, 1904.47], [2314.45, 1902.36], [2328.48, 1893.74], [2367.2, 1869.95], [2371.48, 1867.31], [2377.16, 1863.82]], "length": 77.63}, {"u": 1706427672, "v": 449952498, "oneway": false, "points": [[2392.13, 2190.49], [2404.88, 2177.4]], "length": 18.27}, {"u": 1706427672, "v": 2714912985, "oneway": false, "points": [[2392.13, 2190.49], [2383.46, 2198.59], [2365.85, 2217.54], [2343.62, 2240.92], [2313.74, 2271.27], [2306.26, 2278.94]], "length": 123.3}, {"u": 1706427672, "v": 53423556, "oneway": true, "points": [[2392.13, 2190.49], [2384.74, 2183.35], [2371.78, 2170.84], [2267.4, 2070.08], [2264.67, 2067.44], [2253.37, 2056.52], [2247.69, 2051.05]], "length": 200.76}, {"u": 1706427684, "v": 11205598924, "oneway": true, "points": [[2698.68, 2362.83], [2695.15, 2357.31], [2691.26, 2353.52], [2690.16, 2352.37], [2685.68, 2346.04], [2681.17, 2338.95]], "length": 29.73}, {"u": 1706427684, "v": 1706427652, "oneway": true, "points": [[2698.68, 2362.83], [2700.45, 2358.89], [2703.35, 2355.67], [2707.1, 2353.5], [2711.35, 2352.57]], "length": 17.33}, {"u": 1710317933, "v": 1179795960, "oneway": false, "points": [[-1520.1, -1731.12], [-1506.18, -1731.39]], "length": 13.92}, {"u": 1710317933, "v": 2573847784, "oneway": false, "points": [[-1520.1, -1731.12], [-1528.3, -1730.93], [-1557.06, -1730.35], [-1603.72, -1729.37], [-1612.67, -1729.18], [-1640.34, -1728.41], [-1648.87, -1728.37]], "length": 128.8}, {"u": 1710317933, "v": 4089413144, "oneway": true, "points": [[-1520.1, -1731.12], [-1520.59, -1743.03], [-1519.02, -1781.56], [-1514.1, -1808.28], [-1503.84, -1832.81]], "length": 104.25}, {"u": 1777291055, "v": 1777291057, "oneway": false, "points": [[1310.06, 1616.69], [1304.54, 1622.67]], "length": 8.14}, {"u": 1777291055, "v": 53668858, "oneway": false, "points": [[1310.06, 1616.69], [1315.07, 1611.23], [1317.39, 1608.63], [1371.56, 1547.9], [1376.46, 1542.41]], "length": 99.64}, {"u": 1777291055, "v": 456681765, "oneway": true, "points": [[1310.06, 1616.69], [1320.67, 1625.82], [1409.1, 1705.96], [1432.31, 1727.29], [1454.35, 1747.14], [1486.79, 1776.49], [1495.61, 1783.31], [1531.99, 1812.37], [1606.23, 1872.94], [1613.47, 1878.97], [1616.4, 1881.41]], "length": 405.03}, {"u": 1777291057, "v": 1777291055, "oneway": false, "points": [[1304.54, 1622.67], [1310.06, 1616.69]], "length": 8.14}, {"u": 1777291057, "v": 1699123283, "oneway": true, "points": [[1304.54, 1622.67], [1220.56, 1553.61], [1211.01, 1545.12]], "length": 121.5}, {"u": 1850006055, "v": 1850006061, "oneway": false, "points": [[-2905.37, 371.86], [-2911.2, 360.98], [-2914.34, 353.79], [-2916.67, 343.06], [-2918.21, 328.18], [-2918.39, 322.59], [-2918.76, 310.76], [-2918.21, 299.03], [-2915.58, 288.91], [-2913.8, 283.27], [-2902.65, 257.01], [-2900.52, 247.33], [-2900.28, 239.37], [-2900.37, 228.31], [-2902.02, 160.59], [-2902.11, 153.12]], "length": 224.34}, {"u": 1850006061, "v": 8316813421, "oneway": false, "points": [[-2902.11, 153.12], [-3036.36, 158.26]], "length": 134.35}, {"u": 1850006061, "v": 53413619, "oneway": false, "points": [[-2902.11, 153.12], [-2897.01, 152.91], [-2894.65, 152.81], [-2743.46, 146.48], [-2705.62, 144.9], [-2695.43, 144.53]], "length": 206.86}, {"u": 1850006061, "v": 1850006055, "oneway": false, "points": [[-2902.11, 153.12], [-2902.02, 160.59], [-2900.37, 228.31], [-2900.28, 239.37], [-2900.52, 247.33], [-2902.65, 257.01], [-2913.8, 283.27], [-2915.58, 288.91], [-2918.21, 299.03], [-2918.76, 310.76], [-2918.39, 322.59], [-2918.21, 328.18], [-2916.67, 343.06], [-2914.34, 353.79], [-2911.2, 360.98], [-2905.37, 371.86]], "length": 224.34}, {"u": 1857601486, "v": 2848493173, "oneway": false, "points": [[-2624.26, -198.4], [-2624.06, -192.23]], "length": 6.18}, {"u": 1857601486, "v": 53485100, "oneway": false, "points": [[-2624.26, -198.4], [-2624.37, -204.29], [-2624.44, -206.79], [-2624.75, -217.69], [-2625.33, -237.54], [-2625.72, -250.02], [-2626.65, -279.18], [-2626.81, -283.91], [-2626.92, -287.46]], "length": 89.09}, {"u": 1857601486, "v": 2848493174, "oneway": true, "points": [[-2624.26, -198.4], [-2616.78, -198.63], [-2600.42, -199.36], [-2583.88, -199.97], [-2563.23, -201.44], [-2554.94, -202.11], [-2550.52, -202.47], [-2540.91, -203.6]], "length": 83.54}, {"u": 1857601633, "v": 1345420597, "oneway": true, "points": [[-2152.21, -338.59], [-2152.67, -348.59], [-2152.89, -354.63], [-2153.46, -370.34], [-2153.62, -382.71], [-2153.62, -395.05], [-2153.31, -397.41], [-2150.35, -404.14]], "length": 66.22}, {"u": 1944740975, "v": 53514806, "oneway": false, "points": [[-2785.78, -718.33], [-2785.32, -710.24], [-2783.52, -635.28], [-2783.26, -626.79]], "length": 91.57}, {"u": 1944740975, "v": 2298789030, "oneway": false, "points": [[-2785.78, -718.33], [-2786.12, -726.4], [-2787.41, -761.16], [-2788.19, -801.6], [-2792.51, -810.37]], "length": 93.1}, {"u": 1944740975, "v": 2298789025, "oneway": false, "points": [[-2785.78, -718.33], [-2793.98, -717.99], [-2821.21, -716.86], [-2870.24, -714.55], [-2942.21, -711.11], [-2950.17, -710.73]], "length": 164.57}, {"u": 1944740975, "v": 53582923, "oneway": false, "points": [[-2785.78, -718.33], [-2778.24, -718.69], [-2647.92, -724.32], [-2639.56, -724.49]], "length": 146.35}, {"u": 2298789012, "v": 53521155, "oneway": false, "points": [[-2953.89, -803.68], [-2954.35, -813.17], [-2955.87, -850.32], [-2957.26, -884.14], [-2957.41, -887.87], [-2957.74, -895.74]], "length": 92.15}, {"u": 2298789012, "v": 2298789025, "oneway": false, "points": [[-2953.89, -803.68], [-2953.45, -794.91], [-2950.37, -719.58], [-2950.17, -710.73]], "length": 93.02}, {"u": 2298789012, "v": 2298789030, "oneway": false, "points": [[-2953.89, -803.68], [-2945.94, -804.04], [-2897.85, -806.19], [-2872.3, -807.34], [-2804.84, -809.92], [-2792.51, -810.37]], "length": 161.52}, {"u": 2298789025, "v": 53311057, "oneway": false, "points": [[-2950.17, -710.73], [-2950.0, -702.49], [-2949.75, -694.07], [-2953.19, -677.74], [-2958.1, -666.82], [-2963.89, -658.54], [-2969.97, -651.92], [-2978.57, -645.11], [-2990.2, -638.55]], "length": 88.74}, {"u": 2298789025, "v": 2298789012, "oneway": false, "points": [[-2950.17, -710.73], [-2950.37, -719.58], [-2953.45, -794.91], [-2953.89, -803.68]], "length": 93.02}, {"u": 2298789025, "v": 1944740975, "oneway": false, "points": [[-2950.17, -710.73], [-2942.21, -711.11], [-2870.24, -714.55], [-2821.21, -716.86], [-2793.98, -717.99], [-2785.78, -718.33]], "length": 164.57}, {"u": 2298789030, "v": 1944740975, "oneway": false, "points": [[-2792.51, -810.37], [-2788.19, -801.6], [-2787.41, -761.16], [-2786.12, -726.4], [-2785.78, -718.33]], "length": 93.1}, {"u": 2298789030, "v": 13009756501, "oneway": false, "points": [[-2792.51, -810.37], [-2797.49, -818.59], [-2798.56, -870.04]], "length": 61.07}, {"u": 2298789030, "v": 53684762, "oneway": false, "points": [[-2792.51, -810.37], [-2780.36, -810.89], [-2650.99, -816.57], [-2642.54, -816.95]], "length": 150.12}, {"u": 2298789030, "v": 2298789012, "oneway": false, "points": [[-2792.51, -810.37], [-2804.84, -809.92], [-2872.3, -807.34], [-2897.85, -806.19], [-2945.94, -804.04], [-2953.89, -803.68]], "length": 161.52}, {"u": 2384881527, "v": 2859093884, "oneway": false, "points": [[2216.79, 1492.88], [2212.42, 1498.05], [2210.24, 1500.79], [2184.65, 1533.0], [2177.73, 1541.51]], "length": 62.37}, {"u": 2384881527, "v": 53649103, "oneway": true, "points": [[2216.79, 1492.88], [2223.64, 1497.89], [2249.87, 1514.2], [2265.76, 1520.97]], "length": 56.65}, {"u": 2384881533, "v": 3786910293, "oneway": true, "points": [[2154.33, 1568.39], [2138.96, 1586.62], [2133.66, 1592.64], [2126.83, 1600.4]], "length": 42.2}, {"u": 2384881533, "v": 2859093884, "oneway": false, "points": [[2154.33, 1568.39], [2173.82, 1546.01], [2177.73, 1541.51]], "length": 35.65}, {"u": 2384881547, "v": 3786910294, "oneway": true, "points": [[2104.84, 1618.09], [2112.31, 1606.3], [2115.02, 1603.58], [2119.13, 1599.45], [2122.84, 1596.18]], "length": 28.57}, {"u": 2384881547, "v": 3786903332, "oneway": false, "points": [[2104.84, 1618.09], [2096.2, 1627.02], [2082.68, 1640.98], [2078.73, 1645.18], [2060.62, 1664.36], [2054.07, 1671.29]], "length": 73.54}, {"u": 2384881587, "v": 53423529, "oneway": true, "points": [[1927.87, 1751.45], [1867.87, 1694.79], [1853.28, 1681.01], [1836.42, 1663.12], [1831.71, 1658.61], [1780.99, 1610.05], [1751.72, 1582.12], [1737.57, 1568.74], [1713.32, 1545.96], [1686.58, 1520.8], [1686.32, 1520.55], [1684.84, 1519.16], [1674.59, 1510.31]], "length": 349.77}, {"u": 2384881594, "v": 2384881601, "oneway": true, "points": [[1972.06, 1764.42], [1959.4, 1776.92]], "length": 17.79}, {"u": 2384881594, "v": 449952494, "oneway": true, "points": [[1972.06, 1764.42], [1979.68, 1771.55], [2150.04, 1931.03], [2160.36, 1940.62]], "length": 257.88}, {"u": 2384881598, "v": 53719166, "oneway": true, "points": [[1950.23, 1770.12], [1964.8, 1757.78]], "length": 19.1}, {"u": 2384881598, "v": 2384881587, "oneway": true, "points": [[1950.23, 1770.12], [1942.4, 1763.86], [1927.87, 1751.45]], "length": 29.13}, {"u": 2384881601, "v": 2384881598, "oneway": true, "points": [[1959.4, 1776.92], [1950.23, 1770.12]], "length": 11.41}, {"u": 2384881601, "v": 53538723, "oneway": true, "points": [[1959.4, 1776.92], [1950.19, 1785.24], [1925.13, 1807.35], [1915.76, 1815.91], [1904.18, 1827.79], [1881.28, 1851.25], [1871.99, 1860.78]], "length": 121.21}, {"u": 2384881629, "v": 2384881598, "oneway": true, "points": [[1892.68, 1820.34], [1939.27, 1780.07], [1941.68, 1777.88], [1950.23, 1770.12]], "length": 76.39}, {"u": 2384881629, "v": 2384881587, "oneway": true, "points": [[1892.68, 1820.34], [1905.51, 1803.83], [1910.42, 1797.51], [1917.67, 1788.18], [1928.31, 1770.97], [1929.65, 1767.82], [1930.9, 1762.91], [1930.21, 1757.54], [1927.87, 1751.45]], "length": 81.39}, {"u": 2384881635, "v": 53538723, "oneway": false, "points": [[1863.01, 1853.03], [1871.99, 1860.78]], "length": 11.86}, {"u": 2384881635, "v": 2384881629, "oneway": true, "points": [[1863.01, 1853.03], [1872.11, 1843.0], [1892.68, 1820.34]], "length": 44.14}, {"u": 2384881652, "v": 456681760, "oneway": true, "points": [[1618.39, 1893.44], [1618.96, 1903.49]], "length": 10.06}, {"u": 2384881652, "v": 1142903104, "oneway": true, "points": [[1618.39, 1893.44], [1622.39, 1893.45], [1624.97, 1893.63], [1634.7, 1897.07]], "length": 16.9}, {"u": 2384881654, "v": 2384881652, "oneway": true, "points": [[1612.92, 1896.67], [1618.39, 1893.44]], "length": 6.35}, {"u": 2384881654, "v": 1777291057, "oneway": true, "points": [[1612.92, 1896.67], [1611.1, 1894.62], [1605.49, 1888.31], [1554.58, 1847.05], [1482.32, 1781.21], [1449.86, 1752.04], [1427.7, 1734.25], [1314.94, 1631.85], [1304.54, 1622.67]], "length": 412.72}, {"u": 2384881666, "v": 2384881679, "oneway": true, "points": [[1619.44, 1935.12], [1617.42, 1944.55]], "length": 9.65}, {"u": 2384881679, "v": 2384881654, "oneway": true, "points": [[1617.42, 1944.55], [1612.12, 1929.03], [1610.49, 1909.91], [1610.5, 1907.37], [1612.92, 1896.67]], "length": 49.11}, {"u": 2384881679, "v": 2712062761, "oneway": false, "points": [[1617.42, 1944.55], [1618.63, 1960.87], [1619.59, 1973.84], [1624.49, 2020.46], [1628.19, 2055.58], [1631.76, 2089.54], [1635.28, 2122.99], [1637.62, 2158.31], [1639.78, 2190.87], [1637.78, 2212.37], [1635.36, 2227.13], [1630.51, 2248.71], [1617.39, 2281.84], [1611.16, 2295.95], [1605.88, 2310.02], [1601.08, 2322.8]], "length": 385.77}, {"u": 2573847767, "v": 2573847776, "oneway": false, "points": [[-1615.15, -1892.92], [-1622.47, -1896.94], [-1657.69, -1916.25], [-1694.82, -1935.56], [-1699.24, -1937.88]], "length": 95.35}, {"u": 2573847767, "v": 4089413144, "oneway": false, "points": [[-1615.15, -1892.92], [-1606.15, -1888.08], [-1549.56, -1856.95], [-1513.99, -1836.54], [-1511.23, -1834.95], [-1503.84, -1832.81]], "length": 126.7}, {"u": 2573847767, "v": 53447618, "oneway": false, "points": [[-1615.15, -1892.92], [-1613.15, -1896.57], [-1583.03, -1951.67], [-1582.24, -1953.13], [-1578.56, -1959.87]], "length": 76.3}, {"u": 2573847767, "v": 2573847784, "oneway": false, "points": [[-1615.15, -1892.92], [-1616.08, -1885.34], [-1618.06, -1858.72], [-1618.46, -1853.36], [-1618.59, -1851.65], [-1619.36, -1843.31], [-1619.66, -1840.02], [-1620.56, -1833.93], [-1621.63, -1826.71], [-1622.85, -1820.99], [-1624.38, -1814.87], [-1625.64, -1809.76], [-1626.53, -1806.18], [-1629.17, -1797.95], [-1633.66, -1786.48], [-1635.48, -1781.84], [-1637.99, -1776.23], [-1644.17, -1762.47], [-1647.04, -1751.4], [-1648.89, -1742.03], [-1648.85, -1738.72], [-1648.87, -1728.37]], "length": 169.49}, {"u": 2573847770, "v": 270405510, "oneway": false, "points": [[-1787.87, -1987.29], [-1788.16, -2002.73], [-1788.06, -2011.34]], "length": 24.06}, {"u": 2573847770, "v": 4095684894, "oneway": false, "points": [[-1787.87, -1987.29], [-1787.54, -1973.51], [-1787.0, -1951.04]], "length": 36.25}, {"u": 2573847770, "v": 2573847776, "oneway": false, "points": [[-1787.87, -1987.29], [-1777.92, -1982.34], [-1775.53, -1980.96], [-1744.97, -1963.45], [-1704.2, -1940.51], [-1699.24, -1937.88]], "length": 101.49}, {"u": 2573847776, "v": 53447620, "oneway": false, "points": [[-1699.24, -1937.88], [-1696.44, -1943.28], [-1695.18, -1945.55], [-1667.21, -1996.09], [-1666.09, -1998.1], [-1661.99, -2005.73]], "length": 77.41}, {"u": 2573847776, "v": 2573847767, "oneway": false, "points": [[-1699.24, -1937.88], [-1694.82, -1935.56], [-1657.69, -1916.25], [-1622.47, -1896.94], [-1615.15, -1892.92]], "length": 95.35}, {"u": 2573847776, "v": 2573847770, "oneway": false, "points": [[-1699.24, -1937.88], [-1704.2, -1940.51], [-1744.97, -1963.45], [-1775.53, -1980.96], [-1777.92, -1982.34], [-1787.87, -1987.29]], "length": 101.49}, {"u": 2573847782, "v": 2573847784, "oneway": false, "points": [[-1780.37, -1725.69], [-1770.97, -1725.99], [-1725.74, -1727.37], [-1675.7, -1728.02], [-1658.38, -1728.24], [-1648.87, -1728.37]], "length": 131.54}, {"u": 2573847782, "v": 4095666564, "oneway": false, "points": [[-1780.37, -1725.69], [-1780.7, -1734.73], [-1782.48, -1783.94], [-1783.06, -1802.43]], "length": 76.78}, {"u": 2573847782, "v": 53478277, "oneway": false, "points": [[-1780.37, -1725.69], [-1788.3, -1725.52], [-1813.77, -1724.96], [-1896.5, -1721.76], [-2008.67, -1717.43], [-2014.54, -1717.21]], "length": 234.32}, {"u": 2573847782, "v": 53529689, "oneway": false, "points": [[-1780.37, -1725.69], [-1779.96, -1714.37], [-1778.17, -1665.74], [-1776.35, -1616.17], [-1775.94, -1605.11]], "length": 120.66}, {"u": 2573847784, "v": 2573847782, "oneway": false, "points": [[-1648.87, -1728.37], [-1658.38, -1728.24], [-1675.7, -1728.02], [-1725.74, -1727.37], [-1770.97, -1725.99], [-1780.37, -1725.69]], "length": 131.54}, {"u": 2573847784, "v": 1710317933, "oneway": false, "points": [[-1648.87, -1728.37], [-1640.34, -1728.41], [-1612.67, -1729.18], [-1603.72, -1729.37], [-1557.06, -1730.35], [-1528.3, -1730.93], [-1520.1, -1731.12]], "length": 128.8}, {"u": 2573847784, "v": 53529686, "oneway": false, "points": [[-1648.87, -1728.37], [-1648.6, -1718.24], [-1648.56, -1714.71], [-1648.05, -1677.65], [-1647.92, -1668.25], [-1646.28, -1619.02], [-1645.91, -1607.86]], "length": 120.55}, {"u": 2573847784, "v": 2573847767, "oneway": false, "points": [[-1648.87, -1728.37], [-1648.85, -1738.72], [-1648.89, -1742.03], [-1647.04, -1751.4], [-1644.17, -1762.47], [-1637.99, -1776.23], [-1635.48, -1781.84], [-1633.66, -1786.48], [-1629.17, -1797.95], [-1626.53, -1806.18], [-1625.64, -1809.76], [-1624.38, -1814.87], [-1622.85, -1820.99], [-1621.63, -1826.71], [-1620.56, -1833.93], [-1619.66, -1840.02], [-1619.36, -1843.31], [-1618.59, -1851.65], [-1618.46, -1853.36], [-1618.06, -1858.72], [-1616.08, -1885.34], [-1615.15, -1892.92]], "length": 169.49}, {"u": 2573847790, "v": 53576829, "oneway": false, "points": [[-1638.61, -1243.6], [-1646.66, -1243.5], [-1707.78, -1242.77], [-1731.72, -1242.49], [-1759.17, -1241.79], [-1767.07, -1241.58]], "length": 128.48}, {"u": 2573847790, "v": 1179459737, "oneway": false, "points": [[-1638.61, -1243.6], [-1628.53, -1243.87], [-1521.32, -1246.88], [-1517.86, -1246.98], [-1508.07, -1247.14]], "length": 130.58}, {"u": 2573847790, "v": 53676376, "oneway": false, "points": [[-1638.61, -1243.6], [-1638.32, -1233.96], [-1638.22, -1230.22], [-1635.58, -1140.58], [-1635.4, -1134.95], [-1635.08, -1123.33]], "length": 120.32}, {"u": 2573847790, "v": 53621256, "oneway": false, "points": [[-1638.61, -1243.6], [-1638.53, -1255.75], [-1638.53, -1258.09], [-1638.31, -1305.35], [-1639.57, -1353.55], [-1639.87, -1365.16]], "length": 121.58}, {"u": 2627868774, "v": 53498398, "oneway": false, "points": [[2624.46, 2253.57], [2631.51, 2253.94], [2635.85, 2254.18], [2643.6, 2255.79], [2658.54, 2264.6], [2675.24, 2265.4], [2681.73, 2265.05]], "length": 59.89}, {"u": 2627868774, "v": 2948595023, "oneway": false, "points": [[2624.46, 2253.57], [2617.78, 2251.76], [2613.93, 2250.41]], "length": 11.0}, {"u": 2627868774, "v": 53447046, "oneway": true, "points": [[2624.46, 2253.57], [2626.61, 2256.93], [2641.65, 2282.1], [2645.11, 2288.75], [2645.3, 2289.81], [2646.68, 2297.63]], "length": 49.82}, {"u": 2627868777, "v": 53604822, "oneway": false, "points": [[2572.77, 2178.46], [2571.15, 2175.88]], "length": 3.04}, {"u": 2627868777, "v": 2627868774, "oneway": true, "points": [[2572.77, 2178.46], [2576.24, 2181.69], [2580.37, 2185.98], [2585.52, 2193.79], [2610.49, 2231.72], [2624.46, 2253.57]], "length": 91.4}, {"u": 2634682652, "v": 2634682653, "oneway": false, "points": [[-255.54, -2489.67], [-296.82, -2473.71]], "length": 44.26}, {"u": 2634682652, "v": 53544865, "oneway": false, "points": [[-255.54, -2489.67], [-254.66, -2472.7], [-251.23, -2399.26], [-250.92, -2392.78]], "length": 97.0}, {"u": 2634682652, "v": 316562664, "oneway": false, "points": [[-255.54, -2489.67], [-179.21, -2520.05], [-172.21, -2522.82]], "length": 89.68}, {"u": 2634682653, "v": 316562665, "oneway": false, "points": [[-296.82, -2473.71], [-307.42, -2469.62]], "length": 11.36}, {"u": 2634682653, "v": 2634682652, "oneway": false, "points": [[-296.82, -2473.71], [-255.54, -2489.67]], "length": 44.26}, {"u": 2634682653, "v": 53552968, "oneway": false, "points": [[-296.82, -2473.71], [-295.24, -2399.9], [-295.04, -2390.75]], "length": 82.98}, {"u": 2634682669, "v": 316562667, "oneway": false, "points": [[-419.22, -2430.09], [-419.5, -2437.18]], "length": 7.09}, {"u": 2634682669, "v": 53642782, "oneway": false, "points": [[-419.22, -2430.09], [-419.02, -2424.94], [-417.76, -2392.72], [-417.48, -2385.6]], "length": 44.53}, {"u": 2634682669, "v": 53463567, "oneway": true, "points": [[-419.22, -2430.09], [-428.1, -2428.6], [-452.95, -2424.41], [-504.4, -2419.1], [-542.96, -2416.32], [-589.17, -2414.6], [-633.75, -2412.53], [-639.64, -2412.29]], "length": 221.35}, {"u": 2634693264, "v": 53447075, "oneway": false, "points": [[73.77, -2056.26], [82.44, -2056.64], [85.54, -2056.79]], "length": 11.78}, {"u": 2634693266, "v": 53447075, "oneway": false, "points": [[95.72, -2057.23], [85.54, -2056.79]], "length": 10.18}, {"u": 2634693274, "v": 3755083604, "oneway": false, "points": [[-471.44, -2188.19], [-470.46, -2178.81], [-467.25, -2148.08], [-449.35, -1977.18]], "length": 212.16}, {"u": 2634693274, "v": 53438623, "oneway": false, "points": [[-471.44, -2188.19], [-515.61, -2186.28], [-531.88, -2185.57], [-536.13, -2185.39], [-538.81, -2185.27]], "length": 67.43}, {"u": 2634693274, "v": 1612121520, "oneway": false, "points": [[-471.44, -2188.19], [-468.64, -2188.31], [-430.29, -2189.97], [-400.78, -2191.26]], "length": 70.73}, {"u": 2634693276, "v": 53438624, "oneway": false, "points": [[-405.62, -2287.87], [-422.68, -2286.98], [-471.81, -2284.42], [-517.62, -2282.04], [-536.95, -2281.03], [-545.47, -2280.59]], "length": 140.04}, {"u": 2634693276, "v": 53543498, "oneway": false, "points": [[-405.62, -2287.87], [-295.52, -2293.6], [-291.22, -2293.83]], "length": 114.55}, {"u": 2634693276, "v": 53562507, "oneway": true, "points": [[-405.62, -2287.87], [-405.98, -2296.51], [-407.65, -2336.76], [-409.32, -2377.37], [-409.67, -2385.93]], "length": 98.14}, {"u": 2634693278, "v": 12911858894, "oneway": false, "points": [[-1424.87, -1612.63], [-1427.95, -1732.91]], "length": 120.31}, {"u": 2634693278, "v": 53511571, "oneway": false, "points": [[-1424.87, -1612.63], [-1421.51, -1491.08]], "length": 121.6}, {"u": 2634693278, "v": 1179795931, "oneway": false, "points": [[-1424.87, -1612.63], [-1432.18, -1612.51], [-1481.67, -1611.7], [-1486.56, -1611.61], [-1491.67, -1611.55], [-1494.96, -1611.46], [-1503.16, -1611.25]], "length": 78.3}, {"u": 2634693299, "v": 2634708186, "oneway": true, "points": [[-622.03, -2093.25], [-617.58, -2094.62], [-613.68, -2096.99], [-612.0, -2099.94], [-611.23, -2103.42], [-612.07, -2132.91], [-612.95, -2148.91], [-613.83, -2159.61], [-614.75, -2173.28], [-614.98, -2182.79]], "length": 95.65}, {"u": 2634693299, "v": 53434870, "oneway": false, "points": [[-622.03, -2093.25], [-625.3, -2092.7], [-631.47, -2092.19], [-663.21, -2090.84], [-778.5, -2084.02], [-787.75, -2084.62]], "length": 166.04}, {"u": 2634708186, "v": 53463567, "oneway": false, "points": [[-614.98, -2182.79], [-615.43, -2190.99], [-616.9, -2217.58], [-622.37, -2262.54], [-626.21, -2292.98], [-639.13, -2404.64], [-639.34, -2406.98], [-639.64, -2412.29]], "length": 230.89}, {"u": 2634708186, "v": 53434871, "oneway": false, "points": [[-614.98, -2182.79], [-621.74, -2182.55], [-669.28, -2181.38], [-784.3, -2177.7], [-791.17, -2177.36]], "length": 176.28}, {"u": 2634708186, "v": 53438623, "oneway": false, "points": [[-614.98, -2182.79], [-606.57, -2183.03], [-585.62, -2183.59], [-560.42, -2184.33], [-550.65, -2184.75], [-547.7, -2184.88], [-538.81, -2185.27]], "length": 76.21}, {"u": 2635256558, "v": 2726180832, "oneway": false, "points": [[-2910.44, -1710.62], [-2900.9, -1721.66], [-2896.9, -1725.61], [-2892.15, -1730.19], [-2887.31, -1733.55], [-2881.84, -1737.15], [-2875.96, -1740.49], [-2867.3, -1743.79], [-2857.15, -1746.46], [-2851.48, -1747.95], [-2845.6, -1748.61]], "length": 77.55}, {"u": 2635256558, "v": 2637056004, "oneway": false, "points": [[-2910.44, -1710.62], [-2916.44, -1703.63], [-2932.58, -1684.8], [-2958.98, -1653.62], [-2972.92, -1635.83]], "length": 97.47}, {"u": 2635256558, "v": 2635256569, "oneway": false, "points": [[-2910.44, -1710.62], [-2890.71, -1693.11], [-2853.01, -1660.3], [-2811.44, -1626.48]], "length": 129.95}, {"u": 2635256569, "v": 2635256558, "oneway": false, "points": [[-2811.44, -1626.48], [-2853.01, -1660.3], [-2890.71, -1693.11], [-2910.44, -1710.62]], "length": 129.95}, {"u": 2635256569, "v": 2635256574, "oneway": false, "points": [[-2811.44, -1626.48], [-2793.12, -1610.11], [-2724.54, -1551.96], [-2712.85, -1541.86]], "length": 129.93}, {"u": 2635256569, "v": 53444645, "oneway": false, "points": [[-2811.44, -1626.48], [-2817.46, -1619.37], [-2842.95, -1589.21], [-2868.27, -1559.24], [-2873.37, -1553.21]], "length": 95.94}, {"u": 2635256574, "v": 2635256569, "oneway": false, "points": [[-2712.85, -1541.86], [-2724.54, -1551.96], [-2793.12, -1610.11], [-2811.44, -1626.48]], "length": 129.93}, {"u": 2635256574, "v": 53621168, "oneway": false, "points": [[-2712.85, -1541.86], [-2706.52, -1536.86], [-2692.95, -1525.53], [-2660.57, -1498.56], [-2614.27, -1458.44]], "length": 129.16}, {"u": 2635256574, "v": 53444642, "oneway": false, "points": [[-2712.85, -1541.86], [-2718.24, -1534.96], [-2743.85, -1505.42], [-2770.13, -1474.97], [-2775.79, -1468.82]], "length": 96.42}, {"u": 2637056004, "v": 53444645, "oneway": false, "points": [[-2972.92, -1635.83], [-2966.69, -1630.66], [-2951.66, -1618.18], [-2927.77, -1598.35], [-2905.83, -1580.15], [-2884.12, -1562.12], [-2880.82, -1559.38], [-2873.37, -1553.21]], "length": 129.38}, {"u": 2637056004, "v": 2635256558, "oneway": false, "points": [[-2972.92, -1635.83], [-2958.98, -1653.62], [-2932.58, -1684.8], [-2916.44, -1703.63], [-2910.44, -1710.62]], "length": 97.47}, {"u": 2637056004, "v": 3812685629, "oneway": false, "points": [[-2972.92, -1635.83], [-2979.19, -1628.58], [-2990.28, -1615.77], [-2998.28, -1605.2], [-3004.84, -1597.9], [-3029.63, -1568.54], [-3035.25, -1561.68], [-3029.35, -1556.28], [-3022.78, -1550.25]], "length": 113.81}, {"u": 2637157420, "v": 53454658, "oneway": false, "points": [[-2383.18, -1346.49], [-2441.68, -1344.91], [-2450.86, -1344.62]], "length": 67.71}, {"u": 2637157420, "v": 53590715, "oneway": true, "points": [[-2383.18, -1346.49], [-2382.95, -1352.83], [-2381.9, -1356.75], [-2381.23, -1359.26], [-2378.35, -1365.77], [-2374.39, -1371.55], [-2370.98, -1375.41], [-2365.33, -1380.46], [-2359.09, -1383.84], [-2349.54, -1387.03], [-2341.7, -1389.14], [-2328.24, -1391.53], [-2321.61, -1391.66]], "length": 85.44}, {"u": 2637710726, "v": 53727087, "oneway": false, "points": [[299.81, -3088.69], [357.8, -3079.16], [366.58, -3076.8]], "length": 67.86}, {"u": 2637710726, "v": 53624470, "oneway": false, "points": [[299.81, -3088.69], [288.96, -3090.31], [266.23, -3093.71], [253.57, -3095.54], [236.47, -3097.25], [177.54, -3101.69], [136.33, -3102.0], [130.97, -3101.7], [68.7, -3098.19], [21.42, -3096.18], [-73.38, -3092.15]], "length": 374.18}, {"u": 2637766380, "v": 4687823320, "oneway": true, "points": [[323.84, -2816.48], [338.49, -2864.57], [348.61, -2893.98], [360.33, -2921.66], [369.44, -2938.9], [405.31, -3006.8]], "length": 207.73}, {"u": 2637766387, "v": 6291669589, "oneway": false, "points": [[223.7, -2728.8], [211.71, -2717.57], [178.56, -2684.95], [166.47, -2674.17], [162.35, -2670.49], [149.99, -2660.69], [146.72, -2658.6], [128.13, -2646.73], [97.07, -2629.96], [74.86, -2620.3], [68.64, -2617.59], [67.03, -2617.0], [55.01, -2612.58]], "length": 207.19}, {"u": 2637766387, "v": 2637766380, "oneway": true, "points": [[223.7, -2728.8], [232.22, -2740.24], [243.82, -2749.44], [252.61, -2753.23], [273.17, -2760.32], [288.31, -2770.49], [297.03, -2778.81], [303.32, -2784.81], [313.59, -2799.28], [323.84, -2816.48]], "length": 137.13}, {"u": 2637766387, "v": 452816429, "oneway": false, "points": [[223.7, -2728.8], [243.34, -2743.48], [260.96, -2751.31], [286.04, -2755.25], [295.49, -2756.09], [306.99, -2757.13]], "length": 90.22}, {"u": 2637766399, "v": 452816429, "oneway": true, "points": [[268.88, -2634.97], [279.56, -2665.5], [285.23, -2683.61], [290.72, -2702.78], [306.99, -2757.13]], "length": 128.0}, {"u": 2637766399, "v": 2637766387, "oneway": true, "points": [[268.88, -2634.97], [270.56, -2655.33], [280.8, -2690.39], [286.35, -2708.18], [286.91, -2718.31], [286.29, -2726.7], [285.04, -2730.1], [283.72, -2733.72], [278.49, -2740.07], [270.08, -2743.68], [260.27, -2744.58], [247.02, -2741.25], [223.7, -2728.8]], "length": 168.95}, {"u": 2638675157, "v": 53679819, "oneway": false, "points": [[-1476.35, -2798.19], [-1485.06, -2791.31], [-1500.57, -2779.05], [-1517.02, -2761.24], [-1521.21, -2745.33], [-1524.65, -2720.56], [-1544.17, -2508.05], [-1547.15, -2484.17]], "length": 334.03}, {"u": 2638675157, "v": 53639885, "oneway": false, "points": [[-1476.35, -2798.19], [-1481.05, -2806.08], [-1496.54, -2833.36]], "length": 40.55}, {"u": 2638675157, "v": 4248941674, "oneway": false, "points": [[-1476.35, -2798.19], [-1467.24, -2805.15], [-1449.21, -2818.93]], "length": 34.16}, {"u": 2638675157, "v": 10829398901, "oneway": false, "points": [[-1476.35, -2798.19], [-1471.99, -2791.07], [-1450.02, -2755.86], [-1433.85, -2723.14], [-1427.13, -2707.74], [-1415.09, -2675.9], [-1404.05, -2636.69], [-1402.49, -2629.64], [-1401.08, -2617.41], [-1399.94, -2607.51]], "length": 207.42}, {"u": 2638675190, "v": 53679819, "oneway": false, "points": [[-1393.02, -2490.14], [-1406.56, -2490.42], [-1409.83, -2490.25], [-1503.74, -2485.19], [-1539.05, -2484.36], [-1547.15, -2484.17]], "length": 154.28}, {"u": 2638675190, "v": 2638675244, "oneway": false, "points": [[-1393.02, -2490.14], [-1392.31, -2474.77], [-1388.31, -2370.16], [-1387.98, -2362.92]], "length": 127.32}, {"u": 2638675190, "v": 10829398901, "oneway": false, "points": [[-1393.02, -2490.14], [-1393.49, -2497.64], [-1394.3, -2504.72], [-1398.09, -2571.84], [-1399.3, -2598.43], [-1399.57, -2604.35], [-1399.94, -2607.51]], "length": 117.6}, {"u": 2638675236, "v": 1180187547, "oneway": false, "points": [[-1122.18, -2515.56], [-1106.99, -2510.6]], "length": 15.99}, {"u": 2638675236, "v": 1180187578, "oneway": true, "points": [[-1122.18, -2515.56], [-1112.55, -2533.01], [-1111.01, -2535.81], [-1093.38, -2569.2], [-1079.56, -2601.34], [-1078.21, -2604.49], [-1070.14, -2624.59], [-1066.87, -2632.73], [-1060.82, -2647.78]], "length": 145.95}, {"u": 2638675244, "v": 2638675253, "oneway": false, "points": [[-1387.98, -2362.92], [-1380.64, -2362.01], [-1377.98, -2362.14], [-1376.37, -2362.22], [-1325.31, -2364.77], [-1279.88, -2367.11], [-1273.43, -2364.03]], "length": 115.44}, {"u": 2638675244, "v": 2638675190, "oneway": false, "points": [[-1387.98, -2362.92], [-1388.31, -2370.16], [-1392.31, -2474.77], [-1393.02, -2490.14]], "length": 127.32}, {"u": 2638675244, "v": 2771341200, "oneway": false, "points": [[-1387.98, -2362.92], [-1387.59, -2355.13], [-1383.18, -2265.84], [-1382.85, -2259.22]], "length": 103.82}, {"u": 2638675244, "v": 53679815, "oneway": false, "points": [[-1387.98, -2362.92], [-1400.57, -2362.62], [-1404.2, -2362.38], [-1444.78, -2359.75], [-1461.97, -2359.45], [-1478.57, -2360.54], [-1514.81, -2367.95], [-1559.48, -2380.94], [-1568.05, -2382.85]], "length": 183.01}, {"u": 2638675253, "v": 53473010, "oneway": false, "points": [[-1273.43, -2364.03], [-1266.93, -2376.33]], "length": 13.91}, {"u": 2638675253, "v": 2638675244, "oneway": false, "points": [[-1273.43, -2364.03], [-1279.88, -2367.11], [-1325.31, -2364.77], [-1376.37, -2362.22], [-1377.98, -2362.14], [-1380.64, -2362.01], [-1387.98, -2362.92]], "length": 115.44}, {"u": 2638675253, "v": 1180187677, "oneway": false, "points": [[-1273.43, -2364.03], [-1244.77, -2347.2], [-1234.62, -2341.46], [-1231.24, -2339.55], [-1225.56, -2336.33]], "length": 55.31}, {"u": 2638675264, "v": 53473010, "oneway": false, "points": [[-1204.59, -2488.88], [-1247.12, -2407.39], [-1250.08, -2402.76], [-1255.85, -2393.71], [-1266.93, -2376.33]], "length": 128.76}, {"u": 2705148498, "v": 53416322, "oneway": true, "points": [[569.55, 1080.42], [560.33, 1073.04]], "length": 11.81}, {"u": 2705148498, "v": 2705148499, "oneway": false, "points": [[569.55, 1080.42], [575.47, 1074.04], [604.6, 1042.62], [631.77, 1013.31], [637.14, 1007.52]], "length": 99.41}, {"u": 2705148499, "v": 53640824, "oneway": true, "points": [[637.14, 1007.52], [650.48, 1019.15], [707.11, 1068.54], [714.15, 1074.69]], "length": 102.19}, {"u": 2705148499, "v": 2705148498, "oneway": false, "points": [[637.14, 1007.52], [631.77, 1013.31], [604.6, 1042.62], [575.47, 1074.04], [569.55, 1080.42]], "length": 99.41}, {"u": 2705148524, "v": 53461154, "oneway": false, "points": [[279.93, 952.02], [338.56, 887.75], [340.87, 885.21], [347.26, 878.2]], "length": 99.92}, {"u": 2705151904, "v": 53416322, "oneway": false, "points": [[459.94, 1138.74], [479.07, 1155.8], [480.82, 1156.87], [482.75, 1157.13], [484.65, 1156.66], [486.21, 1155.48], [495.43, 1145.24], [538.91, 1096.87], [551.95, 1082.36], [554.76, 1079.24], [560.33, 1073.04]], "length": 144.4}, {"u": 2707919647, "v": 53461450, "oneway": false, "points": [[1014.58, 138.24], [1011.04, 144.78], [1010.36, 146.04], [1001.76, 160.41], [993.93, 167.61]], "length": 36.25}, {"u": 2707919868, "v": 53558139, "oneway": false, "points": [[2203.03, 1121.71], [2209.25, 1115.08], [2233.78, 1087.23], [2262.42, 1055.03], [2263.4, 1053.68], [2269.4, 1045.38]], "length": 101.21}, {"u": 2707919868, "v": 53461503, "oneway": false, "points": [[2203.03, 1121.71], [2192.56, 1131.9], [2137.31, 1182.07], [2128.68, 1189.89]], "length": 100.88}, {"u": 2707919868, "v": 53494572, "oneway": false, "points": [[2203.03, 1121.71], [2197.65, 1116.79], [2116.45, 1042.45], [2108.8, 1035.45]], "length": 127.76}, {"u": 2712062758, "v": 2712062759, "oneway": false, "points": [[1590.53, 2431.05], [1590.3, 2412.36]], "length": 18.69}, {"u": 2712062758, "v": 496686196, "oneway": false, "points": [[1590.53, 2431.05], [1586.59, 2431.25], [1581.81, 2432.23], [1577.12, 2433.37], [1566.5, 2437.37], [1512.32, 2456.35], [1486.51, 2464.29], [1471.48, 2470.05], [1447.76, 2480.66], [1444.69, 2480.88], [1441.66, 2479.82], [1438.98, 2477.75], [1436.11, 2473.05], [1426.55, 2454.99], [1416.18, 2434.81], [1413.44, 2430.69], [1410.04, 2428.11], [1404.57, 2427.37], [1398.99, 2428.97], [1393.68, 2431.13], [1354.72, 2450.34], [1344.84, 2455.29], [1339.23, 2458.88], [1331.24, 2464.01]], "length": 306.71}, {"u": 2712062758, "v": 496686159, "oneway": false, "points": [[1590.53, 2431.05], [1590.68, 2435.2], [1592.03, 2454.95], [1594.13, 2485.69]], "length": 54.76}, {"u": 2712062759, "v": 2712062758, "oneway": false, "points": [[1590.3, 2412.36], [1590.53, 2431.05]], "length": 18.69}, {"u": 2712062759, "v": 496686170, "oneway": false, "points": [[1590.3, 2412.36], [1582.87, 2412.22], [1579.97, 2410.84], [1578.86, 2406.33], [1579.68, 2379.38], [1581.78, 2350.47], [1582.95, 2347.13], [1585.38, 2345.91], [1588.88, 2345.84], [1595.98, 2346.2]], "length": 88.1}, {"u": 2712062759, "v": 496686170, "oneway": false, "points": [[1590.3, 2412.36], [1590.35, 2396.69], [1592.37, 2368.89], [1595.98, 2346.2]], "length": 66.52}, {"u": 2712062761, "v": 496686170, "oneway": false, "points": [[1601.08, 2322.8], [1595.98, 2346.2]], "length": 23.96}, {"u": 2712062761, "v": 2713391900, "oneway": false, "points": [[1601.08, 2322.8], [1594.76, 2321.19], [1587.76, 2320.25], [1579.41, 2319.78], [1567.45, 2320.07], [1385.69, 2325.25], [1379.18, 2325.92], [1370.29, 2328.19], [1362.0, 2331.86], [1349.07, 2339.33], [1291.57, 2371.26], [1284.19, 2375.76]], "length": 329.87}, {"u": 2712062761, "v": 2384881679, "oneway": false, "points": [[1601.08, 2322.8], [1605.88, 2310.02], [1611.16, 2295.95], [1617.39, 2281.84], [1630.51, 2248.71], [1635.36, 2227.13], [1637.78, 2212.37], [1639.78, 2190.87], [1637.62, 2158.31], [1635.28, 2122.99], [1631.76, 2089.54], [1628.19, 2055.58], [1624.49, 2020.46], [1619.59, 1973.84], [1618.63, 1960.87], [1617.42, 1944.55]], "length": 385.77}, {"u": 2713279290, "v": 13334632578, "oneway": false, "points": [[-287.56, 63.06], [-320.19, 98.5]], "length": 48.17}, {"u": 2713279290, "v": 1160692039, "oneway": true, "points": [[-287.56, 63.06], [-287.8, 57.63], [-286.64, 52.57], [-283.99, 47.96], [-277.28, 40.62]], "length": 25.88}, {"u": 2713279291, "v": 1701854143, "oneway": false, "points": [[-339.29, 119.78], [-345.88, 127.11], [-387.62, 173.63], [-401.31, 188.88], [-406.8, 194.99]], "length": 101.07}, {"u": 2713279291, "v": 53640838, "oneway": true, "points": [[-339.29, 119.78], [-325.4, 132.69], [-283.3, 171.1], [-279.84, 174.26], [-279.45, 174.62], [-272.34, 181.12], [-266.05, 186.85], [-248.88, 202.53], [-242.46, 208.39]], "length": 131.25}, {"u": 2713279291, "v": 13334632578, "oneway": true, "points": [[-339.29, 119.78], [-338.88, 109.68], [-333.99, 104.29], [-331.15, 101.84], [-327.59, 99.75], [-323.67, 98.73], [-320.19, 98.5]], "length": 32.81}, {"u": 2713292536, "v": 1142904218, "oneway": false, "points": [[576.83, 327.33], [584.56, 319.72], [585.83, 318.2], [643.95, 255.42]], "length": 98.38}, {"u": 2713292536, "v": 53423466, "oneway": false, "points": [[576.83, 327.33], [570.23, 333.63], [568.62, 335.49], [539.56, 369.08], [536.11, 373.06], [534.95, 374.48], [532.59, 376.95], [503.31, 407.44], [500.91, 409.98], [495.28, 416.7]], "length": 121.05}, {"u": 2713292536, "v": 1142903857, "oneway": false, "points": [[576.83, 327.33], [583.36, 332.58], [652.75, 393.4], [717.93, 456.23], [724.58, 462.62]], "length": 200.41}, {"u": 2713292536, "v": 53407941, "oneway": false, "points": [[576.83, 327.33], [569.57, 320.6], [534.63, 289.69], [501.21, 258.98], [467.62, 229.04], [465.02, 226.76], [457.94, 220.35], [455.76, 218.46], [435.57, 200.34], [433.26, 198.16], [426.75, 191.8]], "length": 202.24}, {"u": 2713311875, "v": 53408525, "oneway": false, "points": [[1912.67, 1464.18], [1875.48, 1494.36], [1869.16, 1500.03]], "length": 56.38}, {"u": 2713311958, "v": 366215894, "oneway": true, "points": [[742.46, 664.61], [739.57, 656.63], [704.28, 622.39], [686.2, 605.51], [667.81, 589.28], [661.66, 583.74], [655.39, 577.65], [648.59, 571.03], [646.91, 568.58], [645.34, 566.22], [644.7, 564.23], [643.88, 561.21], [643.45, 558.73], [643.51, 556.69], [644.01, 554.71], [644.33, 551.1]], "length": 154.68}, {"u": 2713311958, "v": 53423470, "oneway": true, "points": [[742.46, 664.61], [709.68, 634.38], [674.31, 601.44], [636.85, 569.01], [632.63, 565.35]], "length": 148.06}, {"u": 2713311960, "v": 316302550, "oneway": false, "points": [[550.84, 655.01], [544.35, 662.12], [515.46, 693.8], [489.03, 722.78], [484.27, 727.99]], "length": 98.78}, {"u": 2713311960, "v": 53423470, "oneway": false, "points": [[550.84, 655.01], [555.54, 649.46], [569.64, 634.4], [625.58, 573.07], [632.63, 565.35]], "length": 121.37}, {"u": 2713311960, "v": 316302558, "oneway": false, "points": [[550.84, 655.01], [557.11, 660.71], [610.89, 709.66], [692.76, 784.17], [699.8, 790.57]], "length": 201.41}, {"u": 2713311960, "v": 2713311962, "oneway": false, "points": [[550.84, 655.01], [543.58, 648.9], [485.44, 596.14], [450.55, 564.81], [447.75, 562.22], [432.67, 548.65], [406.86, 525.5], [401.4, 520.52]], "length": 201.05}, {"u": 2713311962, "v": 449907112, "oneway": false, "points": [[401.4, 520.52], [407.04, 514.34], [408.46, 512.78], [433.78, 485.01], [441.1, 476.98], [448.9, 468.43], [474.34, 440.53], [476.47, 438.2], [482.42, 431.67]], "length": 120.24}, {"u": 2713311962, "v": 53667521, "oneway": false, "points": [[401.4, 520.52], [395.45, 527.05], [392.72, 530.05], [373.57, 551.05], [352.43, 574.24], [339.89, 587.99], [334.47, 593.93]], "length": 99.34}, {"u": 2713311962, "v": 2713311960, "oneway": false, "points": [[401.4, 520.52], [406.86, 525.5], [432.67, 548.65], [447.75, 562.22], [450.55, 564.81], [485.44, 596.14], [543.58, 648.9], [550.84, 655.01]], "length": 201.05}, {"u": 2713311962, "v": 3455711385, "oneway": false, "points": [[401.4, 520.52], [394.15, 513.91], [356.65, 479.63], [341.56, 466.04], [331.29, 456.7], [330.2, 455.71], [288.67, 418.11], [282.78, 412.77]], "length": 160.26}, {"u": 2713353784, "v": 316305093, "oneway": false, "points": [[1661.71, 630.46], [1667.7, 623.42], [1723.96, 562.71], [1729.23, 557.32]], "length": 99.55}, {"u": 2713353784, "v": 53461474, "oneway": false, "points": [[1661.71, 630.46], [1654.91, 637.52], [1630.37, 663.02], [1600.36, 696.67], [1592.94, 704.77]], "length": 101.26}, {"u": 2713353784, "v": 53571775, "oneway": false, "points": [[1661.71, 630.46], [1668.23, 636.37], [1804.14, 759.42], [1810.92, 765.56]], "length": 201.28}, {"u": 2713353784, "v": 316305099, "oneway": false, "points": [[1661.71, 630.46], [1654.86, 624.23], [1520.14, 501.56], [1511.82, 493.98]], "length": 202.72}, {"u": 2713365262, "v": 53668897, "oneway": false, "points": [[1825.08, 1902.21], [1815.36, 1911.53], [1804.57, 1920.36], [1799.24, 1925.59]], "length": 34.87}, {"u": 2713365262, "v": 2384881635, "oneway": true, "points": [[1825.08, 1902.21], [1826.85, 1899.62], [1844.14, 1874.33], [1856.66, 1860.2], [1863.01, 1853.03]], "length": 62.23}, {"u": 2713365265, "v": 53578357, "oneway": true, "points": [[1185.15, 2146.32], [1151.93, 2111.62], [1137.2, 2092.63], [1130.86, 2084.63], [1124.61, 2073.98]], "length": 94.62}, {"u": 2713365265, "v": 53578366, "oneway": false, "points": [[1185.15, 2146.32], [1195.82, 2168.68], [1201.23, 2180.43], [1202.63, 2183.97], [1204.64, 2189.06], [1219.88, 2231.72], [1229.05, 2254.5], [1245.83, 2297.9], [1247.59, 2302.43]], "length": 168.24}, {"u": 2713391900, "v": 496686202, "oneway": false, "points": [[1284.19, 2375.76], [1302.48, 2409.03]], "length": 37.97}, {"u": 2713391900, "v": 2712062761, "oneway": false, "points": [[1284.19, 2375.76], [1291.57, 2371.26], [1349.07, 2339.33], [1362.0, 2331.86], [1370.29, 2328.19], [1379.18, 2325.92], [1385.69, 2325.25], [1567.45, 2320.07], [1579.41, 2319.78], [1587.76, 2320.25], [1594.76, 2321.19], [1601.08, 2322.8]], "length": 329.87}, {"u": 2713391900, "v": 53578366, "oneway": false, "points": [[1284.19, 2375.76], [1279.37, 2366.66], [1267.75, 2344.94], [1256.59, 2324.07], [1254.66, 2319.97], [1252.4, 2314.32], [1247.59, 2302.43]], "length": 82.04}, {"u": 2713391937, "v": 1699123283, "oneway": false, "points": [[915.08, 1836.1], [920.49, 1830.75], [1076.26, 1694.52], [1205.03, 1551.15], [1211.01, 1545.12]], "length": 415.75}, {"u": 2713391937, "v": 53537015, "oneway": false, "points": [[915.08, 1836.1], [909.97, 1830.58], [859.35, 1773.51], [854.39, 1767.66]], "length": 91.48}, {"u": 2713391937, "v": 53578351, "oneway": false, "points": [[915.08, 1836.1], [921.73, 1843.57], [1036.42, 1974.01]], "length": 183.69}, {"u": 2714912985, "v": 53538734, "oneway": false, "points": [[2306.26, 2278.94], [2298.78, 2271.74], [2167.52, 2144.74], [2161.11, 2138.53]], "length": 201.95}, {"u": 2714912985, "v": 1706427648, "oneway": false, "points": [[2306.26, 2278.94], [2301.31, 2283.94], [2269.44, 2316.43], [2255.52, 2330.94], [2243.02, 2343.98], [2235.81, 2351.49]], "length": 101.13}, {"u": 2714912985, "v": 1706427672, "oneway": false, "points": [[2306.26, 2278.94], [2313.74, 2271.27], [2343.62, 2240.92], [2365.85, 2217.54], [2383.46, 2198.59], [2392.13, 2190.49]], "length": 123.3}, {"u": 2714912986, "v": 53538791, "oneway": false, "points": [[2437.9, 2405.53], [2444.28, 2411.65], [2479.37, 2445.35], [2511.28, 2476.79], [2552.01, 2517.74], [2558.51, 2524.18]], "length": 169.2}, {"u": 2714912986, "v": 53626974, "oneway": false, "points": [[2437.9, 2405.53], [2430.78, 2412.35], [2415.83, 2427.44], [2372.88, 2471.2], [2367.1, 2477.6]], "length": 101.04}, {"u": 2714912986, "v": 1706427666, "oneway": false, "points": [[2437.9, 2405.53], [2443.43, 2399.7], [2515.35, 2327.44], [2521.54, 2317.8]], "length": 121.44}, {"u": 2714977035, "v": 53479821, "oneway": false, "points": [[-720.32, 46.47], [-714.29, 51.95], [-688.75, 75.18], [-688.13, 75.75], [-676.66, 86.18], [-669.17, 92.99], [-667.58, 94.45], [-666.87, 95.09], [-658.54, 102.66], [-656.02, 104.95], [-640.55, 119.03], [-639.58, 119.9], [-627.73, 130.69], [-615.89, 141.45], [-609.65, 147.13], [-578.44, 175.52], [-571.8, 181.55]], "length": 200.76}, {"u": 2714977035, "v": 53642012, "oneway": false, "points": [[-720.32, 46.47], [-728.05, 39.61], [-737.29, 31.4], [-759.21, 11.94], [-765.86, 6.04], [-767.97, 4.17], [-774.53, -1.65], [-775.2, -2.25], [-790.27, -15.62], [-797.23, -21.79], [-797.85, -22.35], [-803.98, -27.79], [-811.0, -34.02], [-831.53, -52.25], [-850.0, -68.64], [-850.67, -69.26], [-852.86, -71.33], [-854.84, -73.72], [-856.54, -76.12], [-858.38, -79.67], [-859.68, -83.47], [-860.87, -88.08]], "length": 196.14}, {"u": 2714977035, "v": 53472467, "oneway": false, "points": [[-720.32, 46.47], [-714.67, 40.34], [-698.42, 22.65], [-697.79, 21.96], [-678.65, 1.13], [-677.64, 0.05], [-661.09, -17.98], [-658.81, -20.59], [-652.64, -27.32]], "length": 100.12}, {"u": 2714977035, "v": 53441256, "oneway": false, "points": [[-720.32, 46.47], [-725.75, 52.39], [-744.92, 73.18], [-747.3, 75.82], [-758.62, 88.16], [-760.69, 90.4], [-780.96, 112.45], [-783.05, 114.72], [-788.22, 120.35]], "length": 100.35}, {"u": 2726180832, "v": 2635256558, "oneway": false, "points": [[-2845.6, -1748.61], [-2851.48, -1747.95], [-2857.15, -1746.46], [-2867.3, -1743.79], [-2875.96, -1740.49], [-2881.84, -1737.15], [-2887.31, -1733.55], [-2892.15, -1730.19], [-2896.9, -1725.61], [-2900.9, -1721.66], [-2910.44, -1710.62]], "length": 77.55}, {"u": 2771341200, "v": 53612039, "oneway": false, "points": [[-1382.85, -2259.22], [-1395.82, -2262.2], [-1399.6, -2262.09], [-1416.4, -2261.62], [-1433.66, -2260.64], [-1479.22, -2258.04], [-1514.74, -2257.25]], "length": 132.34}, {"u": 2771341200, "v": 5497859257, "oneway": false, "points": [[-1382.85, -2259.22], [-1382.7, -2253.29], [-1380.7, -2169.49], [-1380.46, -2159.08]], "length": 100.17}, {"u": 2771341200, "v": 2638675244, "oneway": false, "points": [[-1382.85, -2259.22], [-1383.18, -2265.84], [-1387.59, -2355.13], [-1387.98, -2362.92]], "length": 103.82}, {"u": 2816310343, "v": 3812685626, "oneway": false, "points": [[-2444.52, -1459.15], [-2453.95, -1447.42], [-2464.57, -1434.42]], "length": 31.84}, {"u": 2816310343, "v": 4194510097, "oneway": true, "points": [[-2444.52, -1459.15], [-2441.72, -1464.36], [-2440.51, -1465.9], [-2439.47, -1466.8], [-2436.42, -1468.32], [-2434.46, -1469.12], [-2432.23, -1469.71], [-2428.56, -1470.32], [-2423.8, -1470.65], [-2416.64, -1470.26], [-2385.15, -1467.93]], "length": 64.31}, {"u": 2816310345, "v": 53483912, "oneway": false, "points": [[-2021.03, -993.24], [-2030.29, -993.0], [-2154.16, -989.52], [-2162.13, -989.32]], "length": 141.15}, {"u": 2816310345, "v": 3811323394, "oneway": false, "points": [[-2021.03, -993.24], [-2011.82, -993.52], [-1899.52, -996.81], [-1893.33, -996.98]], "length": 127.76}, {"u": 2816310345, "v": 53643765, "oneway": false, "points": [[-2021.03, -993.24], [-2020.94, -1001.37], [-2020.57, -1036.0], [-2020.33, -1053.26]], "length": 60.02}, {"u": 2816310345, "v": 2816310353, "oneway": false, "points": [[-2021.03, -993.24], [-2021.04, -985.29], [-2022.92, -919.16]], "length": 74.11}, {"u": 2816310353, "v": 53483354, "oneway": true, "points": [[-2022.92, -919.16], [-2032.09, -918.89], [-2067.94, -917.82], [-2118.24, -915.87], [-2151.82, -915.12], [-2160.27, -914.73]], "length": 137.42}, {"u": 2816310353, "v": 2816310345, "oneway": false, "points": [[-2022.92, -919.16], [-2021.04, -985.29], [-2021.03, -993.24]], "length": 74.11}, {"u": 2816310353, "v": 53602671, "oneway": false, "points": [[-2022.92, -919.16], [-2023.61, -889.24], [-2023.67, -885.02], [-2024.34, -863.32], [-2024.57, -855.93], [-2024.66, -853.02], [-2024.37, -843.61]], "length": 75.58}, {"u": 2848493171, "v": 2848493172, "oneway": false, "points": [[-2771.27, -191.89], [-2766.61, -190.54], [-2758.71, -189.58], [-2746.63, -189.5], [-2742.65, -189.59], [-2737.35, -189.72], [-2733.36, -189.81]], "length": 38.15}, {"u": 2848493171, "v": 3607816606, "oneway": true, "points": [[-2771.27, -191.89], [-2779.07, -190.53], [-2832.66, -199.0], [-2843.59, -203.75]], "length": 74.1}, {"u": 2848493172, "v": 53485102, "oneway": false, "points": [[-2733.36, -189.81], [-2733.63, -199.99], [-2733.66, -201.03], [-2734.78, -231.14], [-2735.38, -247.07], [-2735.68, -253.07], [-2735.9, -258.02], [-2736.38, -275.2], [-2736.63, -282.88]], "length": 93.13}, {"u": 2848493172, "v": 3894523242, "oneway": false, "points": [[-2733.36, -189.81], [-2723.1, -190.06], [-2706.92, -190.45]], "length": 26.46}, {"u": 2848493172, "v": 2848493171, "oneway": false, "points": [[-2733.36, -189.81], [-2737.35, -189.72], [-2742.65, -189.59], [-2746.63, -189.5], [-2758.71, -189.58], [-2766.61, -190.54], [-2771.27, -191.89]], "length": 38.15}, {"u": 2848493173, "v": 1857601486, "oneway": false, "points": [[-2624.06, -192.23], [-2624.26, -198.4]], "length": 6.18}, {"u": 2848493173, "v": 3894523242, "oneway": true, "points": [[-2624.06, -192.23], [-2632.62, -191.97], [-2678.25, -189.97], [-2698.67, -189.13], [-2706.92, -190.45]], "length": 83.03}, {"u": 2848493174, "v": 3607816648, "oneway": false, "points": [[-2540.91, -203.6], [-2540.44, -193.81]], "length": 9.8}, {"u": 2848493174, "v": 53461796, "oneway": true, "points": [[-2540.91, -203.6], [-2531.99, -204.28], [-2512.32, -205.3], [-2494.18, -206.18], [-2465.28, -207.56], [-2457.94, -207.86], [-2453.37, -208.03], [-2423.89, -209.51], [-2370.82, -212.19]], "length": 170.31}, {"u": 2848493174, "v": 53516186, "oneway": false, "points": [[-2540.91, -203.6], [-2541.14, -210.97], [-2542.17, -245.8], [-2546.47, -392.08], [-2546.7, -399.91]], "length": 196.4}, {"u": 2856773811, "v": 2857394107, "oneway": false, "points": [[1280.12, 2800.71], [1291.02, 2804.81], [1320.76, 2810.97], [1336.36, 2815.01], [1341.68, 2816.38], [1360.42, 2819.41], [1373.77, 2819.25], [1411.95, 2818.62], [1494.34, 2814.51], [1497.91, 2814.36], [1502.15, 2813.87], [1504.14, 2813.45]], "length": 226.51}, {"u": 2857394107, "v": 316306590, "oneway": false, "points": [[1504.14, 2813.45], [1505.98, 2812.45], [1513.59, 2807.85]], "length": 10.98}, {"u": 2857394107, "v": 2856773811, "oneway": false, "points": [[1504.14, 2813.45], [1502.15, 2813.87], [1497.91, 2814.36], [1494.34, 2814.51], [1411.95, 2818.62], [1373.77, 2819.25], [1360.42, 2819.41], [1341.68, 2816.38], [1336.36, 2815.01], [1320.76, 2810.97], [1291.02, 2804.81], [1280.12, 2800.71]], "length": 226.51}, {"u": 2858999189, "v": 53538743, "oneway": true, "points": [[-19.47, 409.18], [-14.29, 403.57], [21.27, 365.04], [67.3, 315.15], [108.13, 272.32], [111.33, 269.02], [117.22, 262.49]], "length": 200.51}, {"u": 2858999189, "v": 53541408, "oneway": true, "points": [[-19.47, 409.18], [-10.82, 417.2], [35.25, 459.63], [41.66, 465.45]], "length": 83.09}, {"u": 2859093884, "v": 53589794, "oneway": false, "points": [[2177.73, 1541.51], [2183.66, 1550.61], [2193.16, 1564.46], [2214.43, 1599.07], [2234.72, 1632.09], [2242.93, 1645.45], [2251.39, 1659.22], [2270.24, 1689.88]], "length": 174.87}, {"u": 2859093884, "v": 2384881527, "oneway": false, "points": [[2177.73, 1541.51], [2184.65, 1533.0], [2210.24, 1500.79], [2212.42, 1498.05], [2216.79, 1492.88]], "length": 62.37}, {"u": 2859093884, "v": 53636372, "oneway": false, "points": [[2177.73, 1541.51], [2172.86, 1533.14], [2141.12, 1478.6], [2136.51, 1470.7]], "length": 81.93}, {"u": 2859093884, "v": 2384881533, "oneway": false, "points": [[2177.73, 1541.51], [2173.82, 1546.01], [2154.33, 1568.39]], "length": 35.65}, {"u": 2859245506, "v": 53508176, "oneway": false, "points": [[-940.51, -529.64], [-940.75, -537.97], [-940.8, -540.49], [-941.38, -569.79], [-941.8, -589.4], [-941.8, -591.44], [-942.05, -600.15], [-941.75, -605.49], [-940.59, -609.64], [-939.03, -612.77], [-936.72, -616.08], [-903.92, -652.61], [-897.49, -659.71]], "length": 146.4}, {"u": 2859245506, "v": 3241106071, "oneway": false, "points": [[-940.51, -529.64], [-918.21, -530.45], [-914.33, -530.14], [-911.1, -529.64], [-908.64, -529.08], [-906.08, -528.32], [-903.08, -527.07], [-900.91, -525.61], [-899.74, -524.76], [-884.42, -511.31], [-875.64, -503.47], [-869.81, -498.34], [-860.92, -490.53], [-846.08, -477.48], [-824.48, -458.49], [-822.23, -456.49], [-819.97, -454.23], [-815.92, -450.05]], "length": 154.28}, {"u": 2859245506, "v": 2859245565, "oneway": false, "points": [[-940.51, -529.64], [-947.15, -529.34], [-978.19, -527.77], [-987.87, -527.28]], "length": 47.42}, {"u": 2859245549, "v": 3227608153, "oneway": false, "points": [[42.6, 194.87], [36.08, 202.1], [33.98, 204.42], [14.13, 226.43], [-0.22, 242.33], [-12.29, 255.71], [-38.25, 284.47], [-59.95, 308.53], [-73.79, 323.87], [-82.96, 334.03], [-92.86, 345.0]], "length": 202.21}, {"u": 2859245549, "v": 53414098, "oneway": false, "points": [[42.6, 194.87], [47.71, 189.21], [49.39, 187.35], [61.54, 173.88], [65.54, 169.45], [71.35, 163.01], [90.11, 142.21], [97.02, 134.56], [108.57, 121.76], [115.57, 114.0], [117.26, 112.19], [124.59, 104.01]], "length": 122.38}, {"u": 2859245549, "v": 53538743, "oneway": false, "points": [[42.6, 194.87], [49.14, 201.03], [79.07, 227.92], [110.7, 256.64], [117.22, 262.49]], "length": 100.71}, {"u": 2859245549, "v": 53538741, "oneway": false, "points": [[42.6, 194.87], [36.58, 189.19], [27.02, 180.26], [-12.25, 143.53], [-24.32, 131.15], [-29.84, 125.64]], "length": 100.22}, {"u": 2859245565, "v": 4173789198, "oneway": false, "points": [[-987.87, -527.28], [-987.35, -518.14], [-987.22, -515.79], [-985.51, -486.02], [-985.29, -482.19], [-981.79, -421.04], [-981.34, -413.14], [-981.17, -410.26], [-980.65, -401.06]], "length": 126.43}, {"u": 2859245565, "v": 2859245573, "oneway": false, "points": [[-987.87, -527.28], [-997.64, -526.79], [-1036.15, -524.85], [-1075.41, -522.88], [-1082.69, -522.51]], "length": 94.94}, {"u": 2859245565, "v": 2859245506, "oneway": false, "points": [[-987.87, -527.28], [-978.19, -527.77], [-947.15, -529.34], [-940.51, -529.64]], "length": 47.42}, {"u": 2859245573, "v": 53499299, "oneway": false, "points": [[-1082.69, -522.51], [-1083.09, -530.99], [-1083.24, -533.67], [-1085.42, -578.08], [-1085.72, -582.83], [-1089.88, -663.65], [-1090.91, -685.84], [-1089.56, -694.09]], "length": 171.9}, {"u": 2859245573, "v": 53582203, "oneway": false, "points": [[-1082.69, -522.51], [-1092.61, -521.69], [-1204.96, -516.28], [-1209.77, -516.03], [-1215.19, -515.75]], "length": 132.68}, {"u": 2859245573, "v": 2859245565, "oneway": false, "points": [[-1082.69, -522.51], [-1075.41, -522.88], [-1036.15, -524.85], [-997.64, -526.79], [-987.87, -527.28]], "length": 94.94}, {"u": 2859245573, "v": 2859245574, "oneway": false, "points": [[-1082.69, -522.51], [-1082.3, -512.9], [-1082.08, -509.95], [-1079.33, -452.54], [-1078.35, -433.94], [-1078.11, -429.13], [-1077.05, -406.28], [-1076.51, -396.38]], "length": 126.28}, {"u": 2859245574, "v": 2859245573, "oneway": false, "points": [[-1076.51, -396.38], [-1077.05, -406.28], [-1078.11, -429.13], [-1078.35, -433.94], [-1079.33, -452.54], [-1082.08, -509.95], [-1082.3, -512.9], [-1082.69, -522.51]], "length": 126.28}, {"u": 2859245574, "v": 4173789198, "oneway": true, "points": [[-1076.51, -396.38], [-1068.78, -396.75], [-1028.77, -398.71], [-1026.31, -398.83], [-990.05, -400.6], [-980.65, -401.06]], "length": 95.98}, {"u": 2859245574, "v": 450714559, "oneway": false, "points": [[-1076.51, -396.38], [-1076.58, -385.49], [-1075.08, -356.36], [-1074.93, -352.93], [-1074.08, -333.97], [-1073.96, -331.59], [-1073.74, -326.46], [-1072.84, -310.49], [-1070.94, -276.86], [-1070.74, -273.84], [-1069.8, -263.51]], "length": 133.06}, {"u": 2859245582, "v": 450714993, "oneway": true, "points": [[-1200.35, -257.04], [-1212.56, -257.1], [-1281.28, -253.34], [-1324.16, -251.04], [-1332.18, -250.54], [-1340.85, -250.23], [-1380.3, -248.47], [-1441.89, -245.74], [-1446.79, -245.53], [-1458.65, -244.99]], "length": 258.6}, {"u": 2859245582, "v": 53582205, "oneway": false, "points": [[-1200.35, -257.04], [-1200.37, -267.58], [-1200.4, -271.74], [-1203.31, -330.94], [-1203.37, -332.41], [-1203.55, -336.54], [-1203.95, -341.76], [-1204.37, -351.11], [-1206.22, -378.79], [-1207.19, -389.06]], "length": 132.23}, {"u": 2859245582, "v": 2859245583, "oneway": false, "points": [[-1200.35, -257.04], [-1200.19, -244.74], [-1198.36, -204.65], [-1196.98, -174.82], [-1194.11, -125.26], [-1193.68, -114.11], [-1193.35, -106.82], [-1191.84, -79.41], [-1189.77, -70.18], [-1188.82, -61.95], [-1186.17, -12.05], [-1184.89, 11.93], [-1184.4, 21.22], [-1183.92, 29.6]], "length": 287.27}, {"u": 2859245583, "v": 450716051, "oneway": false, "points": [[-1183.92, 29.6], [-1192.89, 30.89], [-1304.63, 35.88], [-1349.03, 38.02], [-1441.16, 42.44], [-1449.84, 42.86]], "length": 266.29}, {"u": 2859245583, "v": 53434711, "oneway": false, "points": [[-1183.92, 29.6], [-1183.26, 38.87], [-1182.07, 59.63], [-1181.27, 73.48], [-1179.79, 99.19], [-1179.03, 113.74], [-1178.54, 116.64], [-1177.58, 119.18], [-1176.04, 121.17], [-1173.98, 122.25], [-1169.66, 122.03], [-1144.46, 120.72], [-1108.0, 118.83], [-1094.53, 118.13]], "length": 174.34}, {"u": 2859245583, "v": 2859245582, "oneway": false, "points": [[-1183.92, 29.6], [-1184.4, 21.22], [-1184.89, 11.93], [-1186.17, -12.05], [-1188.82, -61.95], [-1189.77, -70.18], [-1191.84, -79.41], [-1193.35, -106.82], [-1193.68, -114.11], [-1194.11, -125.26], [-1196.98, -174.82], [-1198.36, -204.65], [-1200.19, -244.74], [-1200.35, -257.04]], "length": 287.27}, {"u": 2859245583, "v": 53441265, "oneway": false, "points": [[-1183.92, 29.6], [-1174.97, 28.4], [-1140.57, 26.7], [-1133.36, 26.42], [-1093.38, 24.32], [-1057.65, 22.6], [-1031.13, 21.47], [-1021.97, 21.28]], "length": 162.2}, {"u": 2859302267, "v": 2859302272, "oneway": false, "points": [[-1497.76, -868.11], [-1489.7, -868.3], [-1363.57, -874.46]], "length": 134.34}, {"u": 2859302267, "v": 1179459773, "oneway": false, "points": [[-1497.76, -868.11], [-1506.15, -867.71], [-1513.7, -867.34]], "length": 15.96}, {"u": 2859302267, "v": 1179459672, "oneway": true, "points": [[-1497.76, -868.11], [-1497.3, -858.18], [-1496.52, -832.88], [-1496.49, -819.52], [-1496.18, -775.27], [-1495.0, -748.98], [-1494.85, -747.28]], "length": 120.88}, {"u": 2859302272, "v": 1179956582, "oneway": false, "points": [[-1363.57, -874.46], [-1363.14, -862.83], [-1362.2, -844.14], [-1360.8, -813.19], [-1360.66, -810.12], [-1359.99, -795.28], [-1359.42, -782.56]], "length": 91.99}, {"u": 2859302272, "v": 13146093508, "oneway": false, "points": [[-1363.57, -874.46], [-1361.63, -874.54], [-1359.83, -874.56]], "length": 3.74}, {"u": 2859302272, "v": 2859302267, "oneway": false, "points": [[-1363.57, -874.46], [-1489.7, -868.3], [-1497.76, -868.11]], "length": 134.34}, {"u": 2859304393, "v": 482811372, "oneway": false, "points": [[-2151.26, -548.22], [-2142.63, -548.72], [-2140.5, -548.79], [-2130.5, -549.1], [-2119.52, -549.4], [-2102.18, -550.04], [-2097.28, -550.23], [-2080.48, -550.85]], "length": 70.83}, {"u": 2859304393, "v": 1180005838, "oneway": false, "points": [[-2151.26, -548.22], [-2150.8, -476.75], [-2150.75, -468.15]], "length": 80.07}, {"u": 2859304393, "v": 2859304395, "oneway": false, "points": [[-2151.26, -548.22], [-2151.36, -550.41], [-2151.54, -552.98], [-2151.77, -555.45], [-2152.18, -558.42], [-2152.66, -561.07], [-2153.16, -563.75], [-2153.92, -567.01], [-2154.91, -570.08], [-2156.0, -572.86], [-2156.86, -574.9], [-2158.19, -577.16], [-2159.75, -579.18]], "length": 32.61}, {"u": 2859304395, "v": 1426438835, "oneway": true, "points": [[-2159.75, -579.18], [-2158.15, -588.83], [-2155.9, -594.71], [-2154.95, -598.19], [-2154.06, -602.0]], "length": 23.6}, {"u": 2859304395, "v": 2859304393, "oneway": false, "points": [[-2159.75, -579.18], [-2158.19, -577.16], [-2156.86, -574.9], [-2156.0, -572.86], [-2154.91, -570.08], [-2153.92, -567.01], [-2153.16, -563.75], [-2152.66, -561.07], [-2152.18, -558.42], [-2151.77, -555.45], [-2151.54, -552.98], [-2151.36, -550.41], [-2151.26, -548.22]], "length": 32.61}, {"u": 2859304395, "v": 2859304803, "oneway": false, "points": [[-2159.75, -579.18], [-2163.87, -582.41], [-2228.7, -634.35], [-2261.64, -660.07], [-2297.0, -687.66], [-2329.93, -713.36], [-2348.44, -727.82], [-2355.03, -732.95], [-2377.72, -750.66], [-2385.35, -756.63], [-2389.35, -759.74]], "length": 292.09}, {"u": 2859304803, "v": 1426438819, "oneway": false, "points": [[-2389.35, -759.74], [-2442.25, -801.03]], "length": 67.11}, {"u": 2859304803, "v": 2859304395, "oneway": false, "points": [[-2389.35, -759.74], [-2385.35, -756.63], [-2377.72, -750.66], [-2355.03, -732.95], [-2348.44, -727.82], [-2329.93, -713.36], [-2297.0, -687.66], [-2261.64, -660.07], [-2228.7, -634.35], [-2163.87, -582.41], [-2159.75, -579.18]], "length": 292.09}, {"u": 2859304803, "v": 1180005819, "oneway": true, "points": [[-2389.35, -759.74], [-2408.02, -767.16], [-2423.0, -779.24], [-2425.91, -781.07], [-2428.81, -782.53], [-2447.87, -789.29], [-2522.33, -811.65], [-2534.37, -814.43], [-2539.12, -815.36], [-2546.02, -815.73], [-2549.16, -815.73], [-2560.01, -820.57]], "length": 183.12}, {"u": 2925569869, "v": 53490496, "oneway": false, "points": [[2760.82, 1848.04], [2760.28, 1849.89]], "length": 1.93}, {"u": 2925569869, "v": 1192282519, "oneway": true, "points": [[2760.82, 1848.04], [2765.3, 1851.03]], "length": 5.38}, {"u": 2925569869, "v": 53611268, "oneway": false, "points": [[2760.82, 1848.04], [2762.43, 1844.89], [2767.91, 1837.9], [2774.15, 1811.16], [2775.62, 1804.82], [2782.47, 1773.87], [2783.08, 1771.12], [2784.45, 1764.92]], "length": 87.25}, {"u": 2925570317, "v": 53461474, "oneway": false, "points": [[1525.84, 780.08], [1531.67, 773.58], [1586.93, 712.11], [1592.94, 704.77]], "length": 100.88}, {"u": 2925570317, "v": 53515071, "oneway": false, "points": [[1525.84, 780.08], [1519.83, 786.68], [1500.61, 808.09], [1496.54, 812.6], [1486.89, 823.32], [1485.34, 825.04], [1479.35, 831.7], [1476.78, 834.54], [1464.75, 848.39], [1459.3, 854.24]], "length": 99.63}, {"u": 2925570317, "v": 53432346, "oneway": false, "points": [[1525.84, 780.08], [1532.03, 785.57], [1554.53, 805.09], [1556.27, 806.64], [1557.6, 807.84], [1569.74, 818.7], [1571.18, 820.01], [1574.48, 822.96], [1606.82, 851.88], [1615.8, 859.97], [1624.2, 867.49], [1631.56, 874.13], [1668.37, 907.98], [1675.33, 914.28]], "length": 200.9}, {"u": 2925570317, "v": 53432339, "oneway": false, "points": [[1525.84, 780.08], [1519.36, 774.43], [1495.21, 751.85], [1436.38, 697.67], [1428.68, 691.11], [1423.03, 685.74], [1422.47, 685.21], [1410.98, 674.88], [1408.21, 672.32], [1393.26, 658.51], [1392.74, 658.03], [1391.19, 656.55], [1384.81, 650.72], [1376.81, 643.41]], "length": 202.22}, {"u": 2938172405, "v": 387186883, "oneway": true, "points": [[-273.6, -981.05], [-257.39, -982.45]], "length": 16.28}, {"u": 2938172405, "v": 4091376224, "oneway": true, "points": [[-273.6, -981.05], [-277.53, -990.53], [-286.08, -1008.41], [-293.0, -1021.26]], "length": 44.68}, {"u": 2938172406, "v": 2938172405, "oneway": true, "points": [[-270.67, -974.24], [-273.6, -981.05]], "length": 7.41}, {"u": 2938172406, "v": 387186935, "oneway": true, "points": [[-270.67, -974.24], [-275.23, -970.75], [-280.05, -967.46], [-284.7, -965.17], [-290.95, -963.17], [-304.87, -961.63]], "length": 37.32}, {"u": 2948594974, "v": 366215913, "oneway": false, "points": [[1080.21, 972.28], [1090.49, 960.84]], "length": 15.38}, {"u": 2948594974, "v": 53430018, "oneway": false, "points": [[1080.21, 972.28], [1073.7, 979.44], [1062.48, 991.79], [1049.6, 1005.97], [1038.8, 1017.86]], "length": 61.58}, {"u": 2948594974, "v": 449920083, "oneway": true, "points": [[1080.21, 972.28], [1071.09, 963.84], [1023.93, 920.22], [1009.91, 907.24], [964.37, 865.13]], "length": 157.79}, {"u": 2948595023, "v": 2627868774, "oneway": false, "points": [[2613.93, 2250.41], [2617.78, 2251.76], [2624.46, 2253.57]], "length": 11.0}, {"u": 2948595023, "v": 2627868777, "oneway": true, "points": [[2613.93, 2250.41], [2612.4, 2248.11], [2604.77, 2238.19], [2574.37, 2182.47], [2572.77, 2178.46]], "length": 83.07}, {"u": 2948595043, "v": 1706427684, "oneway": true, "points": [[2698.91, 2370.8], [2698.21, 2366.83], [2698.68, 2362.83]], "length": 8.06}, {"u": 2948595076, "v": 53408000, "oneway": false, "points": [[1309.22, 718.22], [1302.77, 725.36], [1300.28, 728.12], [1296.56, 732.23], [1288.2, 741.48], [1285.5, 744.47], [1250.27, 783.49], [1241.87, 792.77], [1239.37, 795.53], [1236.39, 798.83], [1217.09, 820.19], [1203.82, 834.89], [1178.25, 863.18], [1174.0, 867.88]], "length": 201.7}, {"u": 2948595076, "v": 53515071, "oneway": false, "points": [[1309.22, 718.22], [1316.05, 724.41], [1318.77, 726.87], [1386.11, 787.92], [1393.67, 794.76], [1396.45, 797.28], [1409.43, 809.04], [1437.64, 834.65], [1441.72, 838.28], [1454.29, 849.48], [1459.3, 854.24]], "length": 202.55}, {"u": 2948595076, "v": 1192248462, "oneway": false, "points": [[1309.22, 718.22], [1302.75, 712.78], [1300.41, 710.8], [1270.3, 685.35], [1255.12, 672.52]], "length": 70.82}, {"u": 2948595076, "v": 53432339, "oneway": false, "points": [[1309.22, 718.22], [1314.63, 712.98], [1352.87, 669.91], [1353.93, 668.73], [1370.33, 650.57], [1376.81, 643.41]], "length": 100.84}, {"u": 2948601585, "v": 3235649725, "oneway": false, "points": [[1024.99, 733.02], [1031.0, 726.47], [1081.18, 671.72], [1089.49, 662.46], [1093.96, 657.49], [1097.25, 654.0], [1128.67, 618.48], [1135.27, 611.03], [1143.86, 601.3], [1147.55, 596.35], [1157.39, 584.8], [1189.44, 551.5], [1191.35, 549.41], [1196.35, 543.94], [1219.07, 519.09], [1222.06, 515.82], [1228.52, 508.76]], "length": 302.91}, {"u": 2948601585, "v": 366215907, "oneway": false, "points": [[1024.99, 733.02], [1018.82, 739.8], [995.15, 765.75], [987.13, 774.55], [984.96, 776.93], [976.3, 786.42], [974.55, 788.35], [951.58, 813.55], [949.44, 815.9], [941.31, 824.81]], "length": 124.21}, {"u": 2948601585, "v": 53408000, "oneway": false, "points": [[1024.99, 733.02], [1030.76, 738.25], [1094.36, 795.8], [1105.71, 806.07], [1121.37, 820.24], [1165.45, 860.12], [1167.79, 862.25], [1174.0, 867.88]], "length": 200.98}, {"u": 2948601585, "v": 53407975, "oneway": false, "points": [[1024.99, 733.02], [1017.7, 726.56], [958.54, 674.09], [955.84, 671.7], [928.79, 647.71], [880.87, 604.2], [874.56, 598.55]], "length": 201.77}, {"u": 2948601586, "v": 53461503, "oneway": false, "points": [[2023.52, 1287.95], [2030.24, 1281.67], [2031.38, 1280.62], [2059.81, 1254.96], [2062.68, 1252.36], [2121.49, 1196.69], [2128.68, 1189.89]], "length": 143.8}, {"u": 2948601586, "v": 1142904042, "oneway": false, "points": [[2023.52, 1287.95], [2015.42, 1294.18], [2013.6, 1295.52], [2011.78, 1296.87], [1989.51, 1305.35], [1985.13, 1307.08], [1972.4, 1310.91], [1966.84, 1311.9], [1961.19, 1311.45]], "length": 67.89}, {"u": 2948601586, "v": 3208339054, "oneway": false, "points": [[2023.52, 1287.95], [2032.09, 1299.41], [2049.52, 1327.8], [2057.49, 1342.3]], "length": 64.17}, {"u": 2948601586, "v": 53432356, "oneway": false, "points": [[2023.52, 1287.95], [2018.3, 1281.6], [2002.53, 1262.49], [1997.9, 1257.12], [1995.67, 1254.57], [1990.48, 1248.62]], "length": 51.38}, {"u": 2955373055, "v": 449967724, "oneway": true, "points": [[2946.11, 2606.04], [2941.47, 2607.72], [2935.4, 2609.43], [2929.95, 2610.67], [2923.42, 2612.16], [2908.48, 2617.1], [2885.74, 2627.36], [2869.87, 2637.63], [2859.93, 2644.07]], "length": 94.95}, {"u": 2955373055, "v": 447178140, "oneway": false, "points": [[2946.11, 2606.04], [2945.55, 2595.41], [2945.38, 2592.24], [2943.11, 2562.13], [2942.54, 2554.46], [2941.06, 2535.57], [2940.79, 2532.25], [2939.57, 2520.27], [2937.85, 2513.75], [2935.16, 2506.3], [2934.49, 2505.34], [2931.67, 2501.27], [2923.65, 2492.63], [2912.07, 2482.14], [2892.33, 2465.47], [2870.06, 2443.01], [2869.31, 2442.26], [2868.48, 2441.42], [2865.57, 2438.58], [2803.17, 2377.75], [2794.12, 2368.93], [2791.04, 2366.09], [2786.75, 2362.69], [2781.44, 2359.35], [2774.04, 2355.47], [2768.13, 2353.16], [2762.08, 2351.31]], "length": 334.75}, {"u": 2985254834, "v": 1180005834, "oneway": false, "points": [[-2015.24, -445.1], [-2016.24, -465.86], [-2016.51, -475.33]], "length": 30.26}, {"u": 2987035532, "v": 2987035535, "oneway": true, "points": [[-2467.4, -822.56], [-2474.67, -815.85], [-2479.92, -815.41], [-2494.59, -814.17]], "length": 29.89}, {"u": 2987035532, "v": 13030502563, "oneway": false, "points": [[-2467.4, -822.56], [-2478.46, -831.93], [-2497.45, -847.71]], "length": 39.19}, {"u": 2987035532, "v": 1426438819, "oneway": false, "points": [[-2467.4, -822.56], [-2456.38, -813.17], [-2450.75, -808.19], [-2442.25, -801.03]], "length": 33.11}, {"u": 2987035535, "v": 1426438819, "oneway": true, "points": [[-2494.59, -814.17], [-2489.5, -809.84], [-2486.25, -807.27], [-2482.92, -805.33], [-2477.51, -803.14], [-2468.85, -800.5], [-2460.33, -798.5], [-2456.78, -798.0], [-2453.32, -798.05], [-2442.25, -801.03]], "length": 56.84}, {"u": 2987035535, "v": 1180005819, "oneway": true, "points": [[-2494.59, -814.17], [-2504.25, -814.06], [-2518.77, -815.9], [-2530.4, -817.91], [-2537.34, -818.43], [-2546.04, -818.53], [-2549.25, -818.51], [-2560.01, -820.57]], "length": 65.92}, {"u": 2988375113, "v": 53677752, "oneway": true, "points": [[-2793.8, 13.35], [-2796.82, 13.31], [-2799.68, 12.38], [-2802.14, 10.64], [-2803.96, 8.26], [-2805.01, 5.45], [-2805.17, 2.46], [-2804.44, -0.46], [-2802.88, -3.02]], "length": 24.04}, {"u": 2988375113, "v": 53486858, "oneway": false, "points": [[-2793.8, 13.35], [-2793.96, 26.97], [-2793.64, 33.8], [-2793.39, 41.92]], "length": 28.58}, {"u": 2988748407, "v": 53589715, "oneway": false, "points": [[-2253.16, -55.18], [-2231.02, -55.88]], "length": 22.15}, {"u": 2988748407, "v": 53589708, "oneway": true, "points": [[-2253.16, -55.18], [-2254.45, -86.91], [-2254.83, -96.36], [-2255.38, -110.21]], "length": 55.07}, {"u": 3031362525, "v": 53580611, "oneway": false, "points": [[-2426.59, 281.64], [-2418.62, 286.89]], "length": 9.54}, {"u": 3031362525, "v": 53580606, "oneway": false, "points": [[-2426.59, 281.64], [-2426.29, 269.95], [-2427.51, 254.28], [-2427.66, 248.2]], "length": 33.49}, {"u": 3031362525, "v": 450505541, "oneway": false, "points": [[-2426.59, 281.64], [-2436.81, 292.1], [-2459.92, 293.09], [-2502.34, 294.68]], "length": 80.22}, {"u": 3035654115, "v": 2987035532, "oneway": true, "points": [[-2454.56, -823.35], [-2467.4, -822.56]], "length": 12.86}, {"u": 3035654115, "v": 53556383, "oneway": false, "points": [[-2454.56, -823.35], [-2409.82, -825.43], [-2396.07, -826.16], [-2386.98, -826.6], [-2339.03, -828.73]], "length": 115.66}, {"u": 3088209646, "v": 2858999189, "oneway": true, "points": [[-87.61, 483.03], [-83.77, 478.87], [-78.94, 473.63], [-29.23, 419.77], [-25.96, 416.21], [-25.17, 415.36], [-19.47, 409.18]], "length": 100.48}, {"u": 3088209646, "v": 3227608153, "oneway": false, "points": [[-87.61, 483.03], [-87.79, 474.48], [-88.01, 464.35], [-88.22, 460.71], [-91.79, 365.13], [-92.86, 345.0]], "length": 138.13}, {"u": 3088209646, "v": 316292003, "oneway": true, "points": [[-87.61, 483.03], [-99.26, 472.5], [-122.98, 451.1], [-153.22, 423.82], [-160.06, 417.63]], "length": 97.6}, {"u": 3088209647, "v": 3088209646, "oneway": true, "points": [[-25.6, 539.58], [-32.29, 533.75], [-82.36, 487.94], [-87.61, 483.03]], "length": 83.93}, {"u": 3088209649, "v": 3088209647, "oneway": true, "points": [[49.46, 608.05], [42.17, 601.81], [-19.44, 545.63], [-25.6, 539.58]], "length": 101.61}, {"u": 3088209649, "v": 53425702, "oneway": false, "points": [[49.46, 608.05], [54.93, 602.26], [56.55, 600.45], [110.26, 540.61], [111.44, 539.29], [116.59, 533.55]], "length": 100.29}, {"u": 3088209661, "v": 316292008, "oneway": false, "points": [[167.99, 776.38], [189.09, 752.72], [191.39, 750.26], [197.69, 743.41]], "length": 44.37}, {"u": 3157337335, "v": 53637455, "oneway": false, "points": [[-309.63, 282.68], [-316.17, 289.91], [-317.66, 291.55], [-330.09, 305.3], [-332.47, 307.93], [-352.69, 330.61], [-372.48, 352.19], [-377.65, 357.67]], "length": 101.25}, {"u": 3157337335, "v": 53640838, "oneway": false, "points": [[-309.63, 282.68], [-304.05, 276.5], [-301.83, 274.04], [-287.09, 257.74], [-282.85, 253.06], [-276.11, 245.61], [-250.64, 217.44], [-248.03, 214.56], [-242.46, 208.39]], "length": 100.16}, {"u": 3157337335, "v": 1701854143, "oneway": true, "points": [[-309.63, 282.68], [-316.16, 276.78], [-360.47, 236.79], [-362.56, 234.9], [-393.02, 207.42], [-406.8, 194.99]], "length": 130.89}, {"u": 3208339050, "v": 3786926320, "oneway": false, "points": [[2591.6, 1269.52], [2643.67, 1331.04], [2660.61, 1351.38], [2719.68, 1372.1], [2727.82, 1374.95]], "length": 178.3}, {"u": 3208339050, "v": 3208342165, "oneway": false, "points": [[2591.6, 1269.52], [2497.43, 1156.35], [2490.26, 1149.62], [2485.8, 1145.45]], "length": 163.16}, {"u": 3208339050, "v": 53558151, "oneway": false, "points": [[2591.6, 1269.52], [2536.45, 1315.0], [2529.66, 1320.6]], "length": 80.29}, {"u": 3208339051, "v": 53437418, "oneway": false, "points": [[2184.58, 1241.41], [2189.77, 1246.53], [2191.32, 1248.07], [2215.48, 1271.96], [2223.62, 1279.08], [2245.16, 1297.68], [2251.81, 1303.73]], "length": 91.72}, {"u": 3208339051, "v": 3208342164, "oneway": false, "points": [[2184.58, 1241.41], [2191.34, 1235.09], [2222.35, 1203.2], [2257.81, 1163.74], [2314.15, 1102.56], [2315.82, 1100.74], [2322.32, 1093.69]], "length": 202.02}, {"u": 3208339051, "v": 3208339054, "oneway": false, "points": [[2184.58, 1241.41], [2173.73, 1250.38], [2157.0, 1266.61], [2103.78, 1307.83], [2066.44, 1336.13], [2057.49, 1342.3]], "length": 162.42}, {"u": 3208339054, "v": 3208339051, "oneway": false, "points": [[2057.49, 1342.3], [2066.44, 1336.13], [2103.78, 1307.83], [2157.0, 1266.61], [2173.73, 1250.38], [2184.58, 1241.41]], "length": 162.42}, {"u": 3208339054, "v": 2948601586, "oneway": false, "points": [[2057.49, 1342.3], [2049.52, 1327.8], [2032.09, 1299.41], [2023.52, 1287.95]], "length": 64.17}, {"u": 3208339054, "v": 53539556, "oneway": false, "points": [[2057.49, 1342.3], [2061.19, 1348.15], [2065.68, 1355.83], [2067.9, 1359.08]], "length": 19.75}, {"u": 3208342164, "v": 3208339051, "oneway": false, "points": [[2322.32, 1093.69], [2315.82, 1100.74], [2314.15, 1102.56], [2257.81, 1163.74], [2222.35, 1203.2], [2191.34, 1235.09], [2184.58, 1241.41]], "length": 202.02}, {"u": 3208342164, "v": 53558139, "oneway": false, "points": [[2322.32, 1093.69], [2315.82, 1087.24], [2281.93, 1056.61], [2280.43, 1055.26], [2269.4, 1045.38]], "length": 71.66}, {"u": 3208342164, "v": 3208342165, "oneway": false, "points": [[2322.32, 1093.69], [2328.0, 1087.7], [2329.9, 1085.71], [2371.69, 1041.73], [2375.37, 1045.15], [2406.07, 1073.55], [2480.83, 1140.96], [2485.8, 1145.45]], "length": 225.88}, {"u": 3208342164, "v": 53437425, "oneway": false, "points": [[2322.32, 1093.69], [2327.57, 1098.33], [2349.2, 1117.5], [2385.17, 1149.35], [2388.73, 1152.51]], "length": 88.72}, {"u": 3208342165, "v": 3208339050, "oneway": false, "points": [[2485.8, 1145.45], [2490.26, 1149.62], [2497.43, 1156.35], [2591.6, 1269.52]], "length": 163.16}, {"u": 3208342165, "v": 3208342164, "oneway": false, "points": [[2485.8, 1145.45], [2480.83, 1140.96], [2406.07, 1073.55], [2375.37, 1045.15], [2371.69, 1041.73], [2329.9, 1085.71], [2328.0, 1087.7], [2322.32, 1093.69]], "length": 225.88}, {"u": 3208342165, "v": 53558147, "oneway": false, "points": [[2485.8, 1145.45], [2443.51, 1191.63], [2441.87, 1193.41], [2435.85, 1199.98]], "length": 73.95}, {"u": 3227608153, "v": 2859245549, "oneway": false, "points": [[-92.86, 345.0], [-82.96, 334.03], [-73.79, 323.87], [-59.95, 308.53], [-38.25, 284.47], [-12.29, 255.71], [-0.22, 242.33], [14.13, 226.43], [33.98, 204.42], [36.08, 202.1], [42.6, 194.87]], "length": 202.21}, {"u": 3227608153, "v": 1345392073, "oneway": false, "points": [[-92.86, 345.0], [-93.87, 322.07], [-96.33, 275.94], [-96.4, 274.58], [-96.48, 273.36], [-97.61, 254.29], [-99.25, 218.52], [-99.85, 205.54], [-100.29, 194.48]], "length": 150.7}, {"u": 3227608153, "v": 3088209646, "oneway": false, "points": [[-92.86, 345.0], [-91.79, 365.13], [-88.22, 460.71], [-88.01, 464.35], [-87.79, 474.48], [-87.61, 483.03]], "length": 138.13}, {"u": 3227608153, "v": 316292003, "oneway": false, "points": [[-92.86, 345.0], [-102.69, 355.62], [-128.14, 383.13], [-147.19, 403.73], [-152.22, 409.17], [-154.61, 411.75], [-160.06, 417.63]], "length": 98.95}, {"u": 3227608153, "v": 2858999189, "oneway": true, "points": [[-92.86, 345.0], [-81.38, 355.81], [-72.72, 363.73], [-52.41, 381.11], [-23.97, 405.45], [-19.47, 409.18]], "length": 97.51}, {"u": 3227608154, "v": 53441253, "oneway": false, "points": [[-705.28, 329.33], [-691.88, 314.45], [-686.01, 307.94], [-673.34, 293.87], [-659.72, 278.77], [-646.77, 264.4], [-644.38, 261.76], [-638.92, 255.75]], "length": 99.08}, {"u": 3235649725, "v": 2948601585, "oneway": false, "points": [[1228.52, 508.76], [1222.06, 515.82], [1219.07, 519.09], [1196.35, 543.94], [1191.35, 549.41], [1189.44, 551.5], [1157.39, 584.8], [1147.55, 596.35], [1143.86, 601.3], [1135.27, 611.03], [1128.67, 618.48], [1097.25, 654.0], [1093.96, 657.49], [1089.49, 662.46], [1081.18, 671.72], [1031.0, 726.47], [1024.99, 733.02]], "length": 302.91}, {"u": 3235649725, "v": 53432339, "oneway": false, "points": [[1228.52, 508.76], [1235.57, 515.23], [1255.3, 533.42], [1265.19, 542.4], [1279.96, 556.65], [1280.19, 556.86], [1287.33, 563.6], [1289.54, 565.63], [1294.07, 569.74], [1301.81, 576.62], [1317.41, 590.41], [1353.96, 622.75], [1362.07, 630.19], [1369.9, 637.15], [1376.81, 643.41]], "length": 200.32}, {"u": 3235649725, "v": 53445464, "oneway": false, "points": [[1228.52, 508.76], [1220.7, 502.06], [1213.1, 495.55], [1196.71, 481.01], [1190.37, 475.38], [1157.5, 446.22], [1144.61, 434.77], [1106.48, 400.94], [1084.26, 381.2], [1077.54, 375.27]], "length": 201.53}, {"u": 3235649725, "v": 53461463, "oneway": false, "points": [[1228.52, 508.76], [1234.2, 502.55], [1235.93, 500.67], [1253.76, 481.18], [1287.46, 444.38], [1288.96, 442.74], [1296.13, 434.9]], "length": 100.13}, {"u": 3235650820, "v": 53645079, "oneway": false, "points": [[1216.03, 222.92], [1222.07, 228.62], [1283.51, 286.36], [1315.77, 316.09]], "length": 136.49}, {"u": 3235650820, "v": 53667246, "oneway": false, "points": [[1216.03, 222.92], [1208.3, 216.52], [1207.02, 215.46], [1196.51, 207.08], [1185.81, 203.94], [1158.15, 196.8], [1075.44, 177.07], [1071.12, 176.03]], "length": 154.33}, {"u": 3235650820, "v": 53445467, "oneway": false, "points": [[1216.03, 222.92], [1207.69, 232.1], [1206.04, 233.92], [1153.96, 291.2], [1153.29, 291.94], [1146.92, 298.95]], "length": 102.75}, {"u": 3241106071, "v": 2859245506, "oneway": false, "points": [[-815.92, -450.05], [-819.97, -454.23], [-822.23, -456.49], [-824.48, -458.49], [-846.08, -477.48], [-860.92, -490.53], [-869.81, -498.34], [-875.64, -503.47], [-884.42, -511.31], [-899.74, -524.76], [-900.91, -525.61], [-903.08, -527.07], [-906.08, -528.32], [-908.64, -529.08], [-911.1, -529.64], [-914.33, -530.14], [-918.21, -530.45], [-940.51, -529.64]], "length": 154.28}, {"u": 3241106071, "v": 53699396, "oneway": false, "points": [[-815.92, -450.05], [-809.69, -444.39], [-807.37, -442.26], [-770.82, -408.99], [-756.28, -395.75], [-735.17, -376.53], [-726.8, -368.91], [-674.79, -321.56], [-673.41, -320.31], [-667.2, -314.65]], "length": 201.13}, {"u": 3241106071, "v": 53604263, "oneway": true, "points": [[-815.92, -450.05], [-810.43, -456.05], [-789.44, -478.93], [-754.69, -516.83], [-748.25, -523.84]], "length": 100.12}, {"u": 3241106091, "v": 53608986, "oneway": true, "points": [[-886.47, -373.22], [-881.18, -369.23], [-878.82, -367.0], [-861.06, -351.21], [-846.49, -338.38], [-832.66, -326.2], [-822.7, -317.42], [-741.83, -245.67], [-734.83, -239.02]], "length": 202.52}, {"u": 3241106091, "v": 3241106071, "oneway": true, "points": [[-886.47, -373.22], [-879.24, -381.19], [-862.32, -399.45], [-858.11, -404.05], [-852.81, -409.82], [-847.05, -416.1], [-823.16, -442.15], [-815.92, -450.05]], "length": 104.31}, {"u": 3264677727, "v": 53578330, "oneway": false, "points": [[547.62, 1260.27], [560.03, 1246.78], [577.32, 1227.35], [584.58, 1219.19], [597.96, 1204.08], [601.08, 1200.56], [605.87, 1195.69], [608.27, 1193.55], [611.0, 1191.65]], "length": 93.52}, {"u": 3269827284, "v": 53578519, "oneway": false, "points": [[-726.68, -997.32], [-713.62, -984.99], [-711.57, -983.06], [-660.05, -934.44], [-653.43, -928.2]], "length": 100.72}, {"u": 3270240364, "v": 3270240367, "oneway": false, "points": [[931.26, 836.47], [925.06, 843.28], [922.15, 846.47], [857.15, 917.79], [855.84, 919.23], [849.16, 926.55]], "length": 121.89}, {"u": 3270240364, "v": 316303180, "oneway": true, "points": [[931.26, 836.47], [916.1, 822.43], [792.5, 711.02], [790.03, 708.79], [781.42, 701.01]], "length": 202.0}, {"u": 3270240367, "v": 1699123288, "oneway": false, "points": [[849.16, 926.55], [843.5, 932.76], [840.74, 935.79], [787.99, 993.67], [782.26, 999.96]], "length": 99.32}, {"u": 3270240367, "v": 3270240364, "oneway": false, "points": [[849.16, 926.55], [855.84, 919.23], [857.15, 917.79], [922.15, 846.47], [925.06, 843.28], [931.26, 836.47]], "length": 121.89}, {"u": 3270240367, "v": 349378518, "oneway": false, "points": [[849.16, 926.55], [855.81, 932.54], [897.52, 970.21], [927.25, 997.45], [928.83, 998.91], [954.91, 1022.81], [991.13, 1055.79], [998.36, 1062.38]], "length": 201.77}, {"u": 3270240367, "v": 316302558, "oneway": false, "points": [[849.16, 926.55], [842.25, 920.26], [706.26, 796.46], [699.8, 790.57]], "length": 201.99}, {"u": 3271744858, "v": 53642012, "oneway": false, "points": [[-838.48, -124.78], [-852.79, -108.96], [-855.61, -105.44], [-858.03, -101.94], [-859.75, -98.54], [-860.82, -93.21], [-860.87, -88.08]], "length": 44.48}, {"u": 3306923767, "v": 1179459768, "oneway": true, "points": [[-1492.9, -1016.71], [-1500.73, -1023.79], [-1501.8, -1027.81], [-1502.26, -1031.6], [-1502.7, -1041.87], [-1502.65, -1049.98], [-1502.79, -1067.24], [-1503.49, -1073.59], [-1504.87, -1078.48], [-1507.8, -1084.65]], "length": 72.48}, {"u": 3306923767, "v": 1179459735, "oneway": false, "points": [[-1492.9, -1016.71], [-1483.68, -1016.43], [-1442.21, -1016.58]], "length": 50.7}, {"u": 3306923767, "v": 2859302267, "oneway": true, "points": [[-1492.9, -1016.71], [-1493.15, -1011.94], [-1493.8, -997.53], [-1494.0, -992.86], [-1494.72, -971.93], [-1497.4, -939.02], [-1498.15, -926.75], [-1498.92, -915.11], [-1499.3, -903.05], [-1498.42, -882.06], [-1497.76, -868.11]], "length": 148.83}, {"u": 3306923798, "v": 3306923767, "oneway": true, "points": [[-1512.65, -967.59], [-1509.18, -973.98], [-1506.64, -985.49], [-1506.26, -992.87], [-1506.01, -997.57], [-1505.44, -1009.01], [-1503.4, -1013.27], [-1502.53, -1014.51], [-1501.29, -1015.22], [-1497.97, -1015.97], [-1492.9, -1016.71]], "length": 58.8}, {"u": 3306923798, "v": 1179459768, "oneway": true, "points": [[-1512.65, -967.59], [-1511.98, -981.37], [-1511.61, -992.87], [-1511.33, -997.58], [-1510.84, -1012.94], [-1510.85, -1018.31], [-1510.86, -1023.71], [-1509.08, -1049.92], [-1507.8, -1084.65]], "length": 117.18}, {"u": 3358764343, "v": 1188394186, "oneway": true, "points": [[-208.48, -803.74], [-214.87, -798.39], [-218.3, -794.81], [-226.82, -792.96]], "length": 22.02}, {"u": 3455711385, "v": 53425693, "oneway": true, "points": [[282.78, 412.77], [260.75, 392.6], [259.01, 391.01], [250.56, 383.27]], "length": 43.69}, {"u": 3455711385, "v": 2713311962, "oneway": false, "points": [[282.78, 412.77], [288.67, 418.11], [330.2, 455.71], [331.29, 456.7], [341.56, 466.04], [356.65, 479.63], [394.15, 513.91], [401.4, 520.52]], "length": 160.26}, {"u": 3607816606, "v": 1180005830, "oneway": false, "points": [[-2843.59, -203.75], [-2857.05, -205.83], [-2859.77, -206.25]], "length": 16.37}, {"u": 3607816606, "v": 2848493171, "oneway": true, "points": [[-2843.59, -203.75], [-2837.4, -204.39], [-2831.79, -204.97], [-2777.49, -196.12], [-2771.27, -191.89]], "length": 74.41}, {"u": 3607816648, "v": 2848493174, "oneway": false, "points": [[-2540.44, -193.81], [-2540.91, -203.6]], "length": 9.8}, {"u": 3607816648, "v": 2848493173, "oneway": true, "points": [[-2540.44, -193.81], [-2550.32, -193.64], [-2565.0, -193.21], [-2574.62, -193.42], [-2583.62, -193.49], [-2597.2, -193.18], [-2616.78, -192.45], [-2624.06, -192.23]], "length": 83.65}, {"u": 3637918464, "v": 3812685605, "oneway": false, "points": [[-3148.9, -1403.85], [-3143.39, -1410.37], [-3141.74, -1412.3], [-3117.05, -1440.49], [-3091.8, -1469.52], [-3086.54, -1475.37]], "length": 94.88}, {"u": 3637918464, "v": 53462402, "oneway": false, "points": [[-3148.9, -1403.85], [-3069.48, -1335.98], [-3062.7, -1330.17]], "length": 113.4}, {"u": 3755083604, "v": 2634693274, "oneway": false, "points": [[-449.35, -1977.18], [-467.25, -2148.08], [-470.46, -2178.81], [-471.44, -2188.19]], "length": 212.16}, {"u": 3755083604, "v": 53679791, "oneway": false, "points": [[-449.35, -1977.18], [-449.07, -1974.5], [-447.06, -1955.35], [-446.03, -1945.54]], "length": 31.82}, {"u": 3755083604, "v": 3755083605, "oneway": false, "points": [[-449.35, -1977.18], [-435.01, -1977.97], [-427.17, -1978.39], [-416.96, -1978.95]], "length": 32.44}, {"u": 3755083605, "v": 3755083604, "oneway": false, "points": [[-416.96, -1978.95], [-427.17, -1978.39], [-435.01, -1977.97], [-449.35, -1977.18]], "length": 32.44}, {"u": 3786903332, "v": 53408525, "oneway": false, "points": [[2054.07, 1671.29], [2047.86, 1664.23], [1869.16, 1500.03]], "length": 252.09}, {"u": 3786903332, "v": 2384881547, "oneway": false, "points": [[2054.07, 1671.29], [2060.62, 1664.36], [2078.73, 1645.18], [2082.68, 1640.98], [2096.2, 1627.02], [2104.84, 1618.09]], "length": 73.54}, {"u": 3786903332, "v": 53407742, "oneway": false, "points": [[2054.07, 1671.29], [2052.36, 1673.41], [2048.79, 1677.65], [2043.73, 1683.55], [2039.82, 1687.8]], "length": 21.82}, {"u": 3786906785, "v": 53498440, "oneway": false, "points": [[2639.01, 1694.77], [2637.55, 1683.25]], "length": 11.61}, {"u": 3786906785, "v": 3786906803, "oneway": true, "points": [[2639.01, 1694.77], [2640.44, 1698.37], [2641.83, 1705.55], [2643.6, 1717.92], [2645.16, 1730.23]], "length": 36.09}, {"u": 3786906803, "v": 53498437, "oneway": false, "points": [[2645.16, 1730.23], [2638.08, 1729.9]], "length": 7.09}, {"u": 3786906803, "v": 53611268, "oneway": false, "points": [[2645.16, 1730.23], [2650.12, 1730.63], [2651.85, 1730.97], [2681.11, 1736.7], [2708.06, 1744.95], [2777.68, 1763.16], [2784.45, 1764.92]], "length": 143.7}, {"u": 3786906803, "v": 3786906811, "oneway": true, "points": [[2645.16, 1730.23], [2645.57, 1739.01], [2645.67, 1741.28], [2645.82, 1746.48], [2645.79, 1749.56], [2645.07, 1753.48], [2643.45, 1759.21], [2641.43, 1763.41], [2638.66, 1769.28], [2635.13, 1776.91]], "length": 48.85}, {"u": 3786906811, "v": 2925569869, "oneway": true, "points": [[2635.13, 1776.91], [2640.45, 1780.66], [2685.6, 1809.82], [2719.85, 1828.64], [2750.84, 1843.32], [2760.82, 1848.04]], "length": 144.67}, {"u": 3786906811, "v": 3786906822, "oneway": true, "points": [[2635.13, 1776.91], [2632.25, 1782.16], [2626.76, 1790.55], [2619.7, 1801.04], [2617.51, 1803.58], [2615.19, 1805.55], [2613.47, 1806.61], [2612.39, 1807.28], [2608.27, 1808.7], [2604.49, 1809.16], [2601.05, 1809.26], [2594.82, 1809.27]], "length": 56.19}, {"u": 3786906822, "v": 53490487, "oneway": true, "points": [[2594.82, 1809.27], [2587.93, 1807.13]], "length": 7.21}, {"u": 3786910293, "v": 3786910294, "oneway": true, "points": [[2126.83, 1600.4], [2122.84, 1596.18]], "length": 5.81}, {"u": 3786910293, "v": 2384881547, "oneway": true, "points": [[2126.83, 1600.4], [2123.28, 1604.43], [2119.47, 1607.62], [2114.37, 1611.89], [2104.84, 1618.09]], "length": 28.36}, {"u": 3786910294, "v": 2384881533, "oneway": true, "points": [[2122.84, 1596.18], [2130.15, 1589.72], [2154.33, 1568.39]], "length": 41.99}, {"u": 3786926320, "v": 53611281, "oneway": false, "points": [[2727.82, 1374.95], [2733.77, 1376.65], [2791.3, 1393.07], [2813.39, 1396.67], [2823.24, 1398.16], [2821.24, 1447.94], [2821.12, 1451.0], [2820.87, 1457.15]], "length": 157.39}, {"u": 3786926320, "v": 3208339050, "oneway": false, "points": [[2727.82, 1374.95], [2719.68, 1372.1], [2660.61, 1351.38], [2643.67, 1331.04], [2591.6, 1269.52]], "length": 178.3}, {"u": 3786926320, "v": 53568332, "oneway": false, "points": [[2727.82, 1374.95], [2727.3, 1383.51], [2723.45, 1446.04], [2723.41, 1446.81], [2723.07, 1452.33]], "length": 77.52}, {"u": 3811323394, "v": 53430446, "oneway": false, "points": [[-1893.33, -996.98], [-1844.66, -998.4]], "length": 48.69}, {"u": 3811323394, "v": 2816310345, "oneway": false, "points": [[-1893.33, -996.98], [-1899.52, -996.81], [-2011.82, -993.52], [-2021.03, -993.24]], "length": 127.76}, {"u": 3811323394, "v": 3811323395, "oneway": false, "points": [[-1893.33, -996.98], [-1893.19, -990.16], [-1891.85, -922.61]], "length": 74.39}, {"u": 3811323395, "v": 2816310353, "oneway": true, "points": [[-1891.85, -922.61], [-1899.82, -922.24], [-1924.42, -921.76], [-2014.24, -919.22], [-2022.92, -919.16]], "length": 131.13}, {"u": 3811323395, "v": 3811323394, "oneway": false, "points": [[-1891.85, -922.61], [-1893.19, -990.16], [-1893.33, -996.98]], "length": 74.39}, {"u": 3811323395, "v": 53503864, "oneway": false, "points": [[-1891.85, -922.61], [-1891.11, -894.22], [-1890.78, -882.46], [-1890.46, -869.17], [-1890.42, -867.6], [-1890.25, -860.47], [-1890.22, -859.0], [-1890.2, -849.81]], "length": 72.82}, {"u": 3812685575, "v": 4874980024, "oneway": false, "points": [[-2658.58, -987.77], [-2651.94, -994.67], [-2650.92, -995.86], [-2633.51, -1016.07], [-2626.05, -1024.66], [-2602.82, -1052.38], [-2601.38, -1054.03], [-2595.14, -1061.52]], "length": 97.31}, {"u": 3812685575, "v": 3812685579, "oneway": false, "points": [[-2658.58, -987.77], [-2665.6, -992.97], [-2673.57, -999.7], [-2696.95, -1019.19]], "length": 49.6}, {"u": 3812685575, "v": 53462362, "oneway": false, "points": [[-2658.58, -987.77], [-2651.93, -981.31], [-2642.17, -972.48], [-2589.61, -927.58], [-2584.53, -923.06], [-2574.66, -914.69], [-2567.39, -908.68], [-2556.53, -897.51]], "length": 136.31}, {"u": 3812685579, "v": 53428597, "oneway": false, "points": [[-2696.95, -1019.19], [-2702.8, -1012.77], [-2704.99, -1010.55], [-2706.38, -1009.1], [-2707.31, -1007.22], [-2707.53, -1002.99], [-2706.77, -983.28], [-2706.53, -969.09]], "length": 54.06}, {"u": 3812685579, "v": 53462374, "oneway": false, "points": [[-2696.95, -1019.19], [-2702.92, -1024.82], [-2716.31, -1036.18], [-2759.84, -1073.6], [-2770.21, -1081.71]], "length": 96.34}, {"u": 3812685579, "v": 3812685575, "oneway": false, "points": [[-2696.95, -1019.19], [-2673.57, -999.7], [-2665.6, -992.97], [-2658.58, -987.77]], "length": 49.6}, {"u": 3812685605, "v": 3812685629, "oneway": false, "points": [[-3086.54, -1475.37], [-3079.69, -1483.09], [-3053.64, -1513.35], [-3028.42, -1543.34], [-3022.78, -1550.25]], "length": 98.36}, {"u": 3812685605, "v": 3637918464, "oneway": false, "points": [[-3086.54, -1475.37], [-3091.8, -1469.52], [-3117.05, -1440.49], [-3141.74, -1412.3], [-3143.39, -1410.37], [-3148.9, -1403.85]], "length": 94.88}, {"u": 3812685605, "v": 53556407, "oneway": false, "points": [[-3086.54, -1475.37], [-3079.61, -1469.55], [-3077.32, -1467.62], [-3005.5, -1406.84], [-3000.58, -1402.68]], "length": 112.58}, {"u": 3812685612, "v": 4095618185, "oneway": false, "points": [[-2176.79, -1473.09], [-2177.3, -1483.26], [-2177.51, -1487.5], [-2182.68, -1671.76], [-2183.18, -1680.51], [-2184.11, -1687.54], [-2185.47, -1692.61], [-2188.08, -1695.82], [-2192.77, -1699.38]], "length": 229.89}, {"u": 3812685612, "v": 3812685620, "oneway": false, "points": [[-2176.79, -1473.09], [-2186.24, -1472.68], [-2323.86, -1469.71]], "length": 147.11}, {"u": 3812685612, "v": 4095648221, "oneway": false, "points": [[-2176.79, -1473.09], [-2176.33, -1462.16], [-2174.88, -1427.62], [-2174.41, -1412.85], [-2173.2, -1363.57], [-2173.08, -1358.97]], "length": 114.18}, {"u": 3812685612, "v": 53511603, "oneway": false, "points": [[-2176.79, -1473.09], [-2167.54, -1473.35], [-2149.28, -1473.86], [-2115.16, -1474.81]], "length": 61.65}, {"u": 3812685620, "v": 4194510097, "oneway": false, "points": [[-2323.86, -1469.71], [-2385.15, -1467.93]], "length": 61.32}, {"u": 3812685620, "v": 53590715, "oneway": false, "points": [[-2323.86, -1469.71], [-2323.55, -1459.11], [-2323.44, -1455.2], [-2321.61, -1391.66]], "length": 78.08}, {"u": 3812685620, "v": 3812685612, "oneway": false, "points": [[-2323.86, -1469.71], [-2186.24, -1472.68], [-2176.79, -1473.09]], "length": 147.11}, {"u": 3812685626, "v": 53454658, "oneway": false, "points": [[-2464.57, -1434.42], [-2458.29, -1427.96], [-2456.05, -1425.64], [-2453.81, -1423.34], [-2452.68, -1404.86], [-2451.03, -1358.49], [-2450.9, -1355.0], [-2450.86, -1344.62]], "length": 94.23}, {"u": 3812685626, "v": 2816310343, "oneway": false, "points": [[-2464.57, -1434.42], [-2453.95, -1447.42], [-2444.52, -1459.15]], "length": 31.84}, {"u": 3812685626, "v": 53621164, "oneway": false, "points": [[-2464.57, -1434.42], [-2477.57, -1418.81], [-2509.11, -1381.07], [-2515.05, -1373.81]], "length": 78.88}, {"u": 3812685629, "v": 53473321, "oneway": false, "points": [[-3022.78, -1550.25], [-3015.45, -1544.0], [-2943.79, -1482.82], [-2937.43, -1477.39]], "length": 112.22}, {"u": 3812685629, "v": 3812685605, "oneway": false, "points": [[-3022.78, -1550.25], [-3028.42, -1543.34], [-3053.64, -1513.35], [-3079.69, -1483.09], [-3086.54, -1475.37]], "length": 98.36}, {"u": 3812685629, "v": 2637056004, "oneway": false, "points": [[-3022.78, -1550.25], [-3029.35, -1556.28], [-3035.25, -1561.68], [-3029.63, -1568.54], [-3004.84, -1597.9], [-2998.28, -1605.2], [-2990.28, -1615.77], [-2979.19, -1628.58], [-2972.92, -1635.83]], "length": 113.81}, {"u": 3859915626, "v": 53668846, "oneway": false, "points": [[1225.45, 1404.58], [1230.61, 1409.36]], "length": 7.03}, {"u": 3859915626, "v": 53453137, "oneway": false, "points": [[1225.45, 1404.58], [1221.55, 1400.97], [1219.51, 1399.11], [1203.26, 1384.28], [1179.47, 1362.57], [1164.26, 1348.67], [1153.81, 1339.13], [1148.93, 1334.68], [1135.21, 1322.16], [1088.8, 1279.33], [1086.91, 1277.58], [1079.53, 1270.77]], "length": 197.99}, {"u": 3859915626, "v": 53536994, "oneway": true, "points": [[1225.45, 1404.58], [1232.31, 1397.51], [1243.98, 1384.92], [1249.3, 1380.68], [1256.22, 1376.65]], "length": 41.83}, {"u": 3886439879, "v": 1192150256, "oneway": true, "points": [[573.45, -46.82], [580.72, -34.35], [583.95, -26.8], [585.33, -22.44], [585.7, -21.27], [586.59, -18.46], [587.88, -12.98], [587.9, -10.7], [587.93, -7.7], [587.48, -4.57], [587.29, -3.53], [586.86, -1.49], [585.31, 6.13]], "length": 56.38}, {"u": 3886439879, "v": 13018504178, "oneway": true, "points": [[573.45, -46.82], [584.82, -36.87], [591.04, -24.46], [592.28, -20.26], [595.26, -9.87], [597.99, -3.77], [599.2, -2.34], [605.17, 11.3]], "length": 67.62}, {"u": 3894523242, "v": 1857601486, "oneway": true, "points": [[-2706.92, -190.45], [-2698.84, -195.88], [-2669.46, -196.86], [-2632.66, -198.09], [-2624.26, -198.4]], "length": 84.35}, {"u": 3894523242, "v": 2848493172, "oneway": false, "points": [[-2706.92, -190.45], [-2723.1, -190.06], [-2733.36, -189.81]], "length": 26.46}, {"u": 3937040986, "v": 3937040992, "oneway": true, "points": [[36.93, -2235.01], [37.84, -2227.29], [38.33, -2222.69], [39.42, -2217.63], [41.53, -2214.38], [43.38, -2212.06], [47.77, -2209.81]], "length": 29.35}, {"u": 3937040986, "v": 366229507, "oneway": true, "points": [[36.93, -2235.01], [26.44, -2218.12], [20.49, -2208.53]], "length": 31.16}, {"u": 3937040992, "v": 53447076, "oneway": false, "points": [[47.77, -2209.81], [63.16, -2210.64], [70.66, -2211.49], [80.03, -2213.46]], "length": 32.54}, {"u": 3937040992, "v": 366229507, "oneway": false, "points": [[47.77, -2209.81], [31.87, -2209.0], [20.49, -2208.53]], "length": 27.31}, {"u": 3951970461, "v": 452816429, "oneway": true, "points": [[380.84, -2915.77], [366.58, -2905.23], [357.7, -2891.05], [354.52, -2884.0], [345.93, -2859.73], [340.11, -2841.5], [328.91, -2801.61], [322.5, -2777.82], [321.5, -2774.85], [319.77, -2769.69], [316.04, -2762.85], [312.32, -2759.27], [306.99, -2757.13]], "length": 180.43}, {"u": 3951970461, "v": 452816427, "oneway": true, "points": [[380.84, -2915.77], [363.23, -2876.76], [350.86, -2839.24], [341.02, -2804.23], [330.71, -2771.97], [325.03, -2754.05]], "length": 171.34}, {"u": 4055610627, "v": 53413619, "oneway": false, "points": [[-2709.25, 338.19], [-2697.78, 320.0], [-2695.46, 315.68], [-2690.29, 303.88], [-2690.26, 290.0], [-2690.24, 282.96], [-2690.92, 256.55], [-2691.33, 247.44], [-2695.23, 152.77], [-2695.43, 144.53]], "length": 198.74}, {"u": 4089413144, "v": 1179796036, "oneway": true, "points": [[-1503.84, -1832.81], [-1482.74, -1872.61], [-1471.74, -1893.31], [-1468.27, -1899.83]], "length": 75.87}, {"u": 4089413144, "v": 2573847767, "oneway": false, "points": [[-1503.84, -1832.81], [-1511.23, -1834.95], [-1513.99, -1836.54], [-1549.56, -1856.95], [-1606.15, -1888.08], [-1615.15, -1892.92]], "length": 126.7}, {"u": 4089413153, "v": 4089413144, "oneway": true, "points": [[-1484.1, -1836.89], [-1497.77, -1832.88], [-1502.46, -1832.66], [-1503.84, -1832.81]], "length": 20.34}, {"u": 4089413153, "v": 1179795960, "oneway": true, "points": [[-1484.1, -1836.89], [-1489.67, -1825.53], [-1498.2, -1802.63], [-1498.74, -1800.67], [-1501.22, -1791.66], [-1503.75, -1782.43], [-1506.19, -1761.01], [-1507.03, -1742.25], [-1506.18, -1731.39]], "length": 109.27}, {"u": 4091376211, "v": 4091376224, "oneway": true, "points": [[-332.79, -983.57], [-319.23, -985.22], [-310.43, -986.0], [-306.86, -986.64], [-304.89, -987.24], [-301.89, -988.28], [-298.15, -990.65], [-295.51, -992.71], [-293.6, -995.27], [-291.78, -997.93], [-290.72, -1001.81], [-290.32, -1006.66], [-293.0, -1021.26]], "length": 69.29}, {"u": 4091376211, "v": 2938172405, "oneway": true, "points": [[-332.79, -983.57], [-319.56, -980.53], [-310.4, -979.56], [-298.97, -979.5], [-285.15, -979.71], [-273.6, -981.05]], "length": 59.66}, {"u": 4091376224, "v": 366229504, "oneway": true, "points": [[-293.0, -1021.26], [-314.15, -1079.5], [-330.17, -1127.37], [-340.34, -1165.79], [-352.87, -1222.0], [-361.19, -1256.41], [-377.41, -1342.28], [-387.26, -1398.52], [-393.22, -1441.8], [-395.15, -1484.85], [-389.83, -1535.87], [-378.94, -1580.76], [-364.67, -1619.74], [-342.89, -1661.97], [-294.41, -1739.22], [-273.54, -1773.1], [-115.62, -2022.04], [-61.05, -2112.0], [-41.05, -2142.13], [-11.04, -2190.58], [-9.42, -2193.16], [-0.89, -2207.9]], "length": 1307.2}, {"u": 4095606995, "v": 53478277, "oneway": false, "points": [[-2025.77, -1892.2], [-2023.75, -1884.5], [-2018.82, -1866.25], [-2017.42, -1855.88], [-2017.22, -1823.51], [-2017.19, -1814.64], [-2017.06, -1810.26], [-2016.48, -1790.17], [-2014.76, -1724.22], [-2014.54, -1717.21]], "length": 176.04}, {"u": 4095606995, "v": 270405510, "oneway": false, "points": [[-2025.77, -1892.2], [-2016.68, -1895.06], [-1994.49, -1903.19], [-1972.98, -1914.57], [-1944.86, -1932.38], [-1941.77, -1934.35], [-1922.09, -1946.81], [-1912.05, -1952.85], [-1907.52, -1955.57], [-1880.42, -1971.87], [-1852.56, -1988.48], [-1833.96, -1999.8], [-1817.09, -2008.62], [-1807.71, -2011.0], [-1796.74, -2011.3], [-1788.06, -2011.34]], "length": 268.95}, {"u": 4095606995, "v": 258725731, "oneway": false, "points": [[-2025.77, -1892.2], [-2030.74, -1891.18], [-2059.01, -1887.68], [-2070.5, -1886.76], [-2084.97, -1886.0], [-2101.14, -1886.66], [-2131.66, -1890.67], [-2164.13, -1897.74], [-2198.92, -1905.86], [-2213.37, -1908.68], [-2226.91, -1909.83], [-2235.65, -1909.1], [-2252.63, -1905.76], [-2260.41, -1903.44], [-2294.44, -1893.27], [-2316.84, -1886.33], [-2331.09, -1882.23], [-2349.37, -1878.75], [-2366.8, -1876.87], [-2396.42, -1875.17], [-2423.75, -1874.68], [-2428.87, -1874.59], [-2449.62, -1874.2], [-2490.46, -1874.69], [-2513.57, -1876.26], [-2523.98, -1876.96], [-2527.29, -1877.19], [-2538.37, -1879.28], [-2554.7, -1884.01], [-2569.63, -1889.15], [-2589.32, -1896.39], [-2598.45, -1900.04], [-2611.85, -1902.16], [-2625.66, -1902.37], [-2655.81, -1899.39], [-2671.61, -1897.05]], "length": 657.09}, {"u": 4095618185, "v": 2816310343, "oneway": true, "points": [[-2192.77, -1699.38], [-2196.25, -1690.66], [-2200.25, -1671.88], [-2202.16, -1664.37], [-2211.75, -1645.74], [-2218.85, -1633.06], [-2226.87, -1620.97], [-2235.74, -1608.91], [-2246.34, -1596.87], [-2247.23, -1595.7], [-2258.21, -1583.93], [-2268.34, -1573.31], [-2272.84, -1569.52], [-2281.78, -1562.0], [-2295.22, -1549.55], [-2298.46, -1546.55], [-2324.54, -1529.46], [-2357.96, -1509.71], [-2372.39, -1505.51], [-2401.89, -1498.21], [-2420.73, -1492.7], [-2438.8, -1487.0], [-2445.71, -1483.96], [-2449.57, -1480.16], [-2451.13, -1477.02], [-2451.82, -1472.62], [-2451.47, -1470.01], [-2449.76, -1466.08], [-2444.52, -1459.15]], "length": 380.42}, {"u": 4095618185, "v": 3812685612, "oneway": false, "points": [[-2192.77, -1699.38], [-2188.08, -1695.82], [-2185.47, -1692.61], [-2184.11, -1687.54], [-2183.18, -1680.51], [-2182.68, -1671.76], [-2177.51, -1487.5], [-2177.3, -1483.26], [-2176.79, -1473.09]], "length": 229.89}, {"u": 4095648221, "v": 4095648227, "oneway": true, "points": [[-2173.08, -1358.97], [-2171.03, -1358.8], [-2169.14, -1357.97], [-2167.62, -1356.56], [-2166.64, -1354.75], [-2166.31, -1352.71]], "length": 10.32}, {"u": 4095648221, "v": 3812685612, "oneway": false, "points": [[-2173.08, -1358.97], [-2173.2, -1363.57], [-2174.41, -1412.85], [-2174.88, -1427.62], [-2176.33, -1462.16], [-2176.79, -1473.09]], "length": 114.18}, {"u": 4095648223, "v": 53621277, "oneway": false, "points": [[-2178.84, -1352.34], [-2182.12, -1352.25], [-2185.33, -1352.2], [-2263.27, -1349.78], [-2267.93, -1349.75]], "length": 89.12}, {"u": 4095648223, "v": 4095648221, "oneway": true, "points": [[-2178.84, -1352.34], [-2178.67, -1354.27], [-2177.91, -1356.06], [-2176.64, -1357.52], [-2174.97, -1358.52], [-2173.08, -1358.97]], "length": 9.7}, {"u": 4095648225, "v": 53692030, "oneway": false, "points": [[-2172.71, -1346.49], [-2172.54, -1341.57], [-2170.75, -1292.17], [-2169.06, -1242.28], [-2168.71, -1231.3]], "length": 115.26}, {"u": 4095648225, "v": 4095648223, "oneway": true, "points": [[-2172.71, -1346.49], [-2174.54, -1346.81], [-2176.2, -1347.64], [-2177.55, -1348.92], [-2178.45, -1350.53], [-2178.84, -1352.34]], "length": 9.27}, {"u": 4095648227, "v": 53621269, "oneway": false, "points": [[-2166.31, -1352.71], [-2163.7, -1352.79], [-2162.1, -1352.83], [-2035.83, -1356.24], [-2027.76, -1356.46]], "length": 138.6}, {"u": 4095648227, "v": 4095648225, "oneway": true, "points": [[-2166.31, -1352.71], [-2166.64, -1350.77], [-2167.55, -1349.02], [-2168.97, -1347.63], [-2170.75, -1346.77], [-2172.71, -1346.49]], "length": 9.88}, {"u": 4095666564, "v": 4095684894, "oneway": true, "points": [[-1783.06, -1802.43], [-1786.15, -1811.93], [-1787.34, -1821.25], [-1787.84, -1825.17], [-1791.83, -1872.75], [-1792.63, -1893.43], [-1792.45, -1917.61], [-1791.47, -1928.96], [-1787.0, -1951.04]], "length": 149.88}, {"u": 4095666564, "v": 2573847782, "oneway": false, "points": [[-1783.06, -1802.43], [-1782.48, -1783.94], [-1780.7, -1734.73], [-1780.37, -1725.69]], "length": 76.78}, {"u": 4095684894, "v": 2573847770, "oneway": false, "points": [[-1787.0, -1951.04], [-1787.54, -1973.51], [-1787.87, -1987.29]], "length": 36.25}, {"u": 4095684894, "v": 4095666564, "oneway": true, "points": [[-1787.0, -1951.04], [-1785.77, -1942.87], [-1785.6, -1941.74], [-1784.3, -1932.14], [-1783.83, -1924.29], [-1782.38, -1873.1], [-1781.57, -1821.42], [-1781.5, -1816.26], [-1781.76, -1809.09], [-1783.06, -1802.43]], "length": 148.98}, {"u": 4139816155, "v": 53607068, "oneway": true, "points": [[-1885.34, -641.05], [-1884.99, -631.69], [-1884.73, -625.23], [-1884.32, -608.5], [-1884.3, -607.69], [-1884.1, -597.74], [-1883.76, -580.88], [-1882.92, -538.81], [-1882.87, -536.39], [-1882.21, -503.76], [-1882.08, -493.16], [-1882.05, -491.23], [-1881.92, -481.98]], "length": 159.11}, {"u": 4139816155, "v": 1180005831, "oneway": false, "points": [[-1885.34, -641.05], [-1896.88, -640.47], [-1922.61, -639.19], [-1967.17, -636.98], [-1978.05, -636.44], [-2011.19, -634.79], [-2019.94, -634.36]], "length": 134.76}, {"u": 4139816155, "v": 53509962, "oneway": false, "points": [[-1885.34, -641.05], [-1875.7, -641.53], [-1858.19, -642.42], [-1829.57, -643.87], [-1827.82, -643.97], [-1808.67, -644.95], [-1799.68, -645.41], [-1784.83, -646.17], [-1764.79, -647.19], [-1761.1, -647.37], [-1752.34, -647.82]], "length": 133.17}, {"u": 4172253594, "v": 2705148498, "oneway": true, "points": [[645.33, 1150.04], [639.08, 1143.28], [619.13, 1125.0], [583.54, 1092.1], [572.3, 1082.92], [569.55, 1080.42]], "length": 102.97}, {"u": 4172253594, "v": 53578330, "oneway": false, "points": [[645.33, 1150.04], [639.67, 1156.19], [636.74, 1159.29], [621.94, 1175.01], [618.4, 1178.9], [612.36, 1187.68], [611.0, 1191.65]], "length": 54.34}, {"u": 4172253594, "v": 53640824, "oneway": false, "points": [[645.33, 1150.04], [651.71, 1143.21], [652.57, 1142.25], [705.18, 1084.53], [707.71, 1081.76], [709.3, 1080.01], [714.15, 1074.69]], "length": 102.05}, {"u": 4173748917, "v": 53720172, "oneway": true, "points": [[-586.82, -102.96], [-574.72, -92.06], [-555.89, -75.1], [-548.28, -68.25], [-546.95, -67.05], [-528.26, -50.23], [-526.79, -48.9], [-522.59, -45.12], [-504.11, -28.46], [-459.76, 11.72], [-443.33, 26.27], [-436.21, 32.68]], "length": 202.69}, {"u": 4173748917, "v": 53591794, "oneway": true, "points": [[-586.82, -102.96], [-577.4, -113.65], [-527.63, -170.11], [-525.96, -172.01], [-519.0, -179.89]], "length": 102.55}, {"u": 4173748917, "v": 53472467, "oneway": true, "points": [[-586.82, -102.96], [-591.22, -99.99], [-592.71, -98.48], [-593.65, -96.76], [-594.05, -95.6], [-594.32, -94.41], [-594.55, -92.11], [-594.82, -90.11], [-595.13, -89.24], [-595.63, -88.61], [-629.05, -51.58], [-643.69, -34.38], [-645.79, -32.62], [-652.64, -27.32]], "length": 101.77}, {"u": 4173789198, "v": 3241106091, "oneway": true, "points": [[-980.65, -401.06], [-971.85, -401.41], [-956.25, -401.93], [-950.67, -402.09], [-945.08, -402.16], [-936.38, -401.15], [-933.9, -400.36], [-925.66, -397.77], [-920.23, -395.1], [-910.04, -389.49], [-894.48, -378.52], [-892.02, -377.04], [-886.47, -373.22]], "length": 101.92}, {"u": 4173789198, "v": 2859245565, "oneway": false, "points": [[-980.65, -401.06], [-981.17, -410.26], [-981.34, -413.14], [-981.79, -421.04], [-985.29, -482.19], [-985.51, -486.02], [-987.22, -515.79], [-987.35, -518.14], [-987.87, -527.28]], "length": 126.43}, {"u": 4173796882, "v": 917593526, "oneway": false, "points": [[-383.11, -367.23], [-384.06, -368.13], [-399.86, -383.57], [-417.93, -399.82], [-422.25, -403.65], [-424.25, -405.41], [-448.8, -428.19], [-469.76, -448.34], [-470.56, -449.07], [-485.93, -463.07], [-490.7, -467.41], [-503.23, -478.82], [-510.55, -485.48]], "length": 173.87}, {"u": 4173796882, "v": 13324853247, "oneway": true, "points": [[-383.11, -367.23], [-381.13, -367.8], [-379.04, -367.91], [-376.81, -367.72], [-374.81, -366.96], [-365.51, -358.65], [-359.73, -353.46]], "length": 28.78}, {"u": 4173797761, "v": 53482965, "oneway": true, "points": [[-265.01, -707.51], [-281.08, -722.04], [-287.94, -728.54]], "length": 31.11}, {"u": 4173797761, "v": 53444048, "oneway": false, "points": [[-265.01, -707.51], [-254.49, -697.35], [-243.76, -687.58], [-228.59, -673.8], [-219.12, -665.18], [-187.82, -636.71], [-151.01, -603.2], [-137.44, -590.89]], "length": 172.85}, {"u": 4194510097, "v": 3812685620, "oneway": false, "points": [[-2385.15, -1467.93], [-2323.86, -1469.71]], "length": 61.32}, {"u": 4194510097, "v": 2816310343, "oneway": true, "points": [[-2385.15, -1467.93], [-2423.28, -1463.39], [-2427.47, -1463.1], [-2435.59, -1463.17], [-2437.22, -1462.91], [-2439.76, -1461.95], [-2444.52, -1459.15]], "length": 60.6}, {"u": 4214349299, "v": 53504312, "oneway": false, "points": [[-2556.96, -727.8], [-2556.66, -718.7], [-2551.35, -551.93], [-2550.96, -545.0]], "length": 182.9}, {"u": 4214349299, "v": 1180005819, "oneway": false, "points": [[-2556.96, -727.8], [-2557.22, -734.59], [-2558.07, -761.64], [-2559.69, -810.92], [-2560.01, -820.57]], "length": 92.83}, {"u": 4214349299, "v": 53582923, "oneway": false, "points": [[-2556.96, -727.8], [-2566.98, -727.73], [-2631.53, -724.85], [-2639.56, -724.49]], "length": 82.67}, {"u": 4248707700, "v": 1179796036, "oneway": false, "points": [[-1453.98, -1891.76], [-1461.53, -1896.02], [-1468.27, -1899.83]], "length": 16.41}, {"u": 4248707700, "v": 4089413153, "oneway": true, "points": [[-1453.98, -1891.76], [-1457.4, -1885.99], [-1457.98, -1885.14], [-1465.05, -1872.44], [-1481.44, -1842.31], [-1484.1, -1836.89]], "length": 62.61}, {"u": 4248941674, "v": 2638675157, "oneway": false, "points": [[-1449.21, -2818.93], [-1467.24, -2805.15], [-1476.35, -2798.19]], "length": 34.16}, {"u": 4248941674, "v": 53473027, "oneway": false, "points": [[-1449.21, -2818.93], [-1415.38, -2844.17], [-1400.44, -2851.67], [-1364.85, -2862.42], [-1330.46, -2870.5], [-1327.4, -2871.08], [-1314.08, -2873.63]], "length": 148.1}, {"u": 4687823320, "v": 2637707069, "oneway": true, "points": [[405.31, -3006.8], [440.5, -3073.43]], "length": 75.35}, {"u": 4687823320, "v": 53727087, "oneway": true, "points": [[405.31, -3006.8], [399.52, -3033.16], [397.26, -3046.31], [393.95, -3051.89], [389.6, -3056.93], [384.63, -3062.23], [375.94, -3069.56], [366.58, -3076.8]], "length": 83.95}, {"u": 4874980024, "v": 53454630, "oneway": false, "points": [[-2595.14, -1061.52], [-2589.83, -1067.94], [-2587.33, -1070.89], [-2563.9, -1098.41], [-2538.17, -1128.3], [-2532.47, -1134.86]], "length": 96.47}, {"u": 4874980024, "v": 3812685575, "oneway": false, "points": [[-2595.14, -1061.52], [-2601.38, -1054.03], [-2602.82, -1052.38], [-2626.05, -1024.66], [-2633.51, -1016.07], [-2650.92, -995.86], [-2651.94, -994.67], [-2658.58, -987.77]], "length": 97.31}, {"u": 4874980024, "v": 53534017, "oneway": false, "points": [[-2595.14, -1061.52], [-2588.18, -1055.64], [-2464.9, -948.9], [-2462.22, -946.57], [-2454.97, -940.76]], "length": 185.02}, {"u": 4874980024, "v": 4874980027, "oneway": false, "points": [[-2595.14, -1061.52], [-2602.06, -1067.13], [-2692.88, -1144.0], [-2695.74, -1146.3], [-2703.04, -1152.42]], "length": 141.09}, {"u": 4874980027, "v": 53473289, "oneway": false, "points": [[-2703.04, -1152.42], [-2697.11, -1159.47], [-2672.51, -1187.94], [-2645.49, -1219.82], [-2641.43, -1224.62]], "length": 94.91}, {"u": 4874980027, "v": 53462374, "oneway": false, "points": [[-2703.04, -1152.42], [-2708.87, -1145.99], [-2734.17, -1116.2], [-2760.59, -1087.48], [-2770.21, -1081.71]], "length": 98.01}, {"u": 4874980027, "v": 4874980024, "oneway": false, "points": [[-2703.04, -1152.42], [-2695.74, -1146.3], [-2692.88, -1144.0], [-2602.06, -1067.13], [-2595.14, -1061.52]], "length": 141.09}, {"u": 4874980027, "v": 53556400, "oneway": false, "points": [[-2703.04, -1152.42], [-2709.69, -1158.14], [-2712.55, -1160.57], [-2793.48, -1228.59], [-2795.58, -1230.32], [-2802.08, -1235.88]], "length": 129.51}, {"u": 5112004105, "v": 5463552488, "oneway": false, "points": [[-487.73, 393.7], [-497.07, 385.12], [-528.17, 356.52], [-536.47, 348.9], [-541.4, 344.37]], "length": 72.9}, {"u": 5446595705, "v": 445963180, "oneway": false, "points": [[-1448.02, 159.72], [-1445.84, 145.56], [-1445.96, 140.48], [-1446.58, 129.85], [-1446.69, 126.71], [-1446.89, 122.15], [-1447.85, 99.19], [-1448.49, 86.26]], "length": 73.68}, {"u": 5463552488, "v": 5468393309, "oneway": false, "points": [[-541.4, 344.37], [-536.4, 338.84], [-532.91, 334.98], [-522.89, 323.91], [-519.43, 320.07], [-496.16, 294.34], [-493.18, 291.04], [-480.28, 276.76], [-474.35, 270.2]], "length": 99.99}, {"u": 5463552488, "v": 53441253, "oneway": false, "points": [[-541.4, 344.37], [-547.99, 338.7], [-553.57, 333.94], [-554.95, 332.75], [-585.65, 304.39], [-593.21, 297.27], [-613.44, 278.97], [-631.84, 262.31], [-638.92, 255.75]], "length": 131.79}, {"u": 5463552488, "v": 5112004105, "oneway": false, "points": [[-541.4, 344.37], [-536.47, 348.9], [-528.17, 356.52], [-497.07, 385.12], [-487.73, 393.7]], "length": 72.9}, {"u": 5468393309, "v": 53637455, "oneway": false, "points": [[-474.35, 270.2], [-460.74, 282.51], [-458.73, 284.33], [-428.29, 311.86], [-406.82, 331.28], [-406.0, 332.02], [-404.92, 333.0], [-402.93, 334.8], [-385.65, 350.44], [-377.65, 357.67]], "length": 130.4}, {"u": 5468393309, "v": 53479821, "oneway": false, "points": [[-474.35, 270.2], [-488.92, 256.95], [-491.2, 254.88], [-511.17, 236.71], [-530.43, 219.19], [-540.06, 210.44], [-551.98, 199.6], [-565.52, 187.28], [-571.8, 181.55]], "length": 131.73}, {"u": 5468393309, "v": 13334632600, "oneway": false, "points": [[-474.35, 270.2], [-468.32, 263.52], [-456.05, 249.95], [-452.81, 246.36], [-446.77, 239.69], [-442.29, 234.73], [-432.49, 223.89], [-425.39, 216.03]], "length": 73.02}, {"u": 5468393309, "v": 5463552488, "oneway": false, "points": [[-474.35, 270.2], [-480.28, 276.76], [-493.18, 291.04], [-496.16, 294.34], [-519.43, 320.07], [-522.89, 323.91], [-532.91, 334.98], [-536.4, 338.84], [-541.4, 344.37]], "length": 99.99}, {"u": 5497859257, "v": 2771341200, "oneway": false, "points": [[-1380.46, -2159.08], [-1380.7, -2169.49], [-1382.7, -2253.29], [-1382.85, -2259.22]], "length": 100.17}, {"u": 5497859257, "v": 53639872, "oneway": false, "points": [[-1380.46, -2159.08], [-1380.09, -2150.93], [-1378.51, -2116.1]], "length": 43.02}, {"u": 5497859257, "v": 53447618, "oneway": false, "points": [[-1380.46, -2159.08], [-1390.7, -2158.72], [-1395.36, -2158.56], [-1415.22, -2157.87], [-1430.03, -2156.97], [-1448.07, -2154.75], [-1459.27, -2153.36], [-1468.69, -2149.09], [-1477.45, -2141.95], [-1499.15, -2105.54], [-1572.82, -1970.4], [-1573.91, -1968.4], [-1578.56, -1959.87]], "length": 309.02}, {"u": 5730487258, "v": 53538743, "oneway": false, "points": [[173.6, 313.65], [170.51, 310.72], [124.02, 268.57], [117.22, 262.49]], "length": 76.13}, {"u": 5730487258, "v": 5730487260, "oneway": false, "points": [[173.6, 313.65], [174.77, 313.2], [176.02, 313.06], [177.26, 313.26], [178.4, 313.79], [179.36, 314.6]], "length": 6.28}, {"u": 5730487258, "v": 5730487261, "oneway": false, "points": [[173.6, 313.65], [172.55, 314.45], [171.77, 315.5], [171.31, 316.73], [171.22, 318.04], [171.49, 319.32], [172.11, 320.47], [173.02, 321.41]], "length": 9.19}, {"u": 5730487259, "v": 5730487261, "oneway": false, "points": [[180.38, 319.03], [179.86, 320.2], [179.02, 321.19], [177.94, 321.92], [176.71, 322.32], [175.41, 322.37], [174.15, 322.06], [173.02, 321.41]], "length": 9.08}, {"u": 5730487259, "v": 5730487260, "oneway": false, "points": [[180.38, 319.03], [180.57, 317.85], [180.45, 316.68], [180.04, 315.57], [179.36, 314.6]], "length": 4.74}, {"u": 5730487259, "v": 53425693, "oneway": false, "points": [[180.38, 319.03], [184.19, 322.31], [224.06, 358.92], [242.99, 376.31], [244.94, 378.1], [250.56, 383.27]], "length": 95.14}, {"u": 5730487260, "v": 5730487259, "oneway": false, "points": [[179.36, 314.6], [180.04, 315.57], [180.45, 316.68], [180.57, 317.85], [180.38, 319.03]], "length": 4.74}, {"u": 5730487260, "v": 5730487258, "oneway": false, "points": [[179.36, 314.6], [178.4, 313.79], [177.26, 313.26], [176.02, 313.06], [174.77, 313.2], [173.6, 313.65]], "length": 6.28}, {"u": 5730487261, "v": 5730487258, "oneway": false, "points": [[173.02, 321.41], [172.11, 320.47], [171.49, 319.32], [171.22, 318.04], [171.31, 316.73], [171.77, 315.5], [172.55, 314.45], [173.6, 313.65]], "length": 9.19}, {"u": 5730487261, "v": 5730487259, "oneway": false, "points": [[173.02, 321.41], [174.15, 322.06], [175.41, 322.37], [176.71, 322.32], [177.94, 321.92], [179.02, 321.19], [179.86, 320.2], [180.38, 319.03]], "length": 9.08}, {"u": 5730487261, "v": 53541408, "oneway": true, "points": [[173.02, 321.41], [170.82, 323.22], [151.22, 344.81], [137.22, 360.23], [66.96, 437.6], [48.16, 458.29], [47.37, 459.16], [41.66, 465.45]], "length": 194.97}, {"u": 5890633223, "v": 53463508, "oneway": false, "points": [[-674.88, -2417.72], [-674.66, -2410.57]], "length": 7.15}, {"u": 5890633223, "v": 53463513, "oneway": false, "points": [[-674.88, -2417.72], [-675.06, -2423.33], [-675.19, -2425.87], [-679.89, -2517.26], [-681.07, -2521.49], [-684.5, -2531.49]], "length": 114.62}, {"u": 5890633223, "v": 6233229328, "oneway": true, "points": [[-674.88, -2417.72], [-666.21, -2418.18], [-646.41, -2419.34], [-640.0, -2419.61]], "length": 34.92}, {"u": 5890633230, "v": 53434862, "oneway": false, "points": [[-714.55, -2411.97], [-823.94, -2406.74], [-832.42, -2406.29]], "length": 118.01}, {"u": 5890633230, "v": 5890633223, "oneway": true, "points": [[-714.55, -2411.97], [-708.6, -2416.0], [-681.88, -2417.4], [-674.88, -2417.72]], "length": 40.95}, {"u": 6233229328, "v": 53463567, "oneway": false, "points": [[-640.0, -2419.61], [-639.64, -2412.29]], "length": 7.32}, {"u": 6233229328, "v": 316562667, "oneway": true, "points": [[-640.0, -2419.61], [-634.74, -2419.82], [-590.27, -2422.0], [-543.6, -2424.6], [-497.52, -2427.28], [-462.04, -2431.22], [-436.32, -2434.04], [-428.45, -2435.51], [-419.5, -2437.18]], "length": 221.37}, {"u": 6275800735, "v": 13146093508, "oneway": true, "points": [[-1114.35, -910.29], [-1151.27, -894.5], [-1164.83, -888.23], [-1182.6, -880.42], [-1209.01, -871.4], [-1222.7, -868.39], [-1238.38, -866.27], [-1257.32, -865.15], [-1273.31, -864.58], [-1348.52, -869.67], [-1354.36, -871.42], [-1359.83, -874.56]], "length": 255.02}, {"u": 6291669589, "v": 2637766387, "oneway": false, "points": [[55.01, -2612.58], [67.03, -2617.0], [68.64, -2617.59], [74.86, -2620.3], [97.07, -2629.96], [128.13, -2646.73], [146.72, -2658.6], [149.99, -2660.69], [162.35, -2670.49], [166.47, -2674.17], [178.56, -2684.95], [211.71, -2717.57], [223.7, -2728.8]], "length": 207.19}, {"u": 6291669589, "v": 316562664, "oneway": false, "points": [[55.01, -2612.58], [15.04, -2596.65], [11.41, -2595.21], [-38.39, -2575.36], [-51.52, -2570.18], [-83.44, -2557.92], [-130.23, -2539.48], [-165.47, -2526.01], [-172.21, -2522.82]], "length": 244.33}, {"u": 6291669589, "v": 847061279, "oneway": false, "points": [[55.01, -2612.58], [48.85, -2628.72], [45.15, -2637.44], [42.91, -2642.76], [36.77, -2660.7], [31.41, -2674.33], [26.39, -2698.97], [24.73, -2717.38], [29.76, -2757.03], [35.98, -2806.17], [35.07, -2829.59], [32.32, -2850.72], [17.72, -2892.84], [-3.37, -2934.04], [-27.66, -2974.07], [-63.65, -3014.75], [-71.56, -3019.52]], "length": 445.24}, {"u": 6401044369, "v": 452816427, "oneway": false, "points": [[349.14, -2664.31], [351.68, -2675.41], [355.39, -2684.69], [357.48, -2691.18], [364.38, -2720.0], [365.23, -2725.94], [364.06, -2731.14], [362.89, -2735.24], [358.87, -2741.45], [354.75, -2745.02], [347.47, -2748.8], [337.74, -2751.08], [330.14, -2752.85], [325.03, -2754.05]], "length": 117.53}, {"u": 6401044370, "v": 53465696, "oneway": false, "points": [[233.41, -2454.53], [229.14, -2447.98], [225.11, -2443.53], [219.86, -2437.8], [198.01, -2413.31], [186.83, -2400.55], [172.28, -2384.63], [152.88, -2363.85], [141.82, -2348.25], [110.24, -2303.68], [107.96, -2297.83], [106.62, -2290.35], [106.44, -2279.56], [107.42, -2268.14], [108.07, -2250.93], [105.55, -2239.19], [102.45, -2233.43]], "length": 267.02}, {"u": 6404917413, "v": 316562664, "oneway": false, "points": [[-496.22, -2817.48], [-473.17, -2798.36], [-454.79, -2783.12], [-403.36, -2740.45], [-300.97, -2664.72], [-211.46, -2593.4], [-192.55, -2575.06], [-186.32, -2563.5], [-179.47, -2541.16], [-175.87, -2532.06], [-172.21, -2522.82]], "length": 445.01}, {"u": 6577170380, "v": 53636372, "oneway": false, "points": [[2116.89, 1439.87], [2136.51, 1470.7]], "length": 36.54}, {"u": 6577170380, "v": 1142903012, "oneway": true, "points": [[2116.89, 1439.87], [2095.98, 1409.4], [2091.49, 1402.22]], "length": 45.43}, {"u": 6577823481, "v": 53486814, "oneway": true, "points": [[-2307.77, -199.72], [-2320.93, -191.75], [-2344.0, -178.64], [-2403.64, -151.28], [-2417.82, -144.54], [-2428.34, -139.56], [-2433.1, -135.87], [-2438.17, -130.61], [-2440.12, -127.89], [-2442.43, -123.04], [-2443.64, -117.73], [-2443.63, -103.29], [-2443.2, -86.24], [-2443.08, -81.21], [-2442.52, -68.2], [-2441.88, -53.15], [-2441.63, -45.91], [-2440.73, -19.49], [-2439.94, -8.1]], "length": 272.09}, {"u": 6610389586, "v": 450714559, "oneway": true, "points": [[-921.65, -266.53], [-925.3, -267.64], [-929.28, -268.63], [-933.46, -269.19], [-937.33, -269.43], [-945.48, -269.32], [-957.2, -268.91], [-969.95, -268.3], [-981.5, -267.75], [-1027.74, -265.53], [-1051.67, -264.39], [-1069.8, -263.51]], "length": 148.61}, {"u": 6610389586, "v": 3241106091, "oneway": true, "points": [[-921.65, -266.53], [-921.59, -279.81], [-921.46, -297.43], [-921.35, -318.07], [-921.13, -323.39], [-920.39, -328.68], [-919.38, -332.61], [-918.25, -336.18], [-916.53, -339.93], [-914.58, -342.94], [-912.49, -345.69], [-909.75, -348.9], [-895.14, -363.98], [-886.47, -373.22]], "length": 119.06}, {"u": 6915301805, "v": 53626974, "oneway": false, "points": [[2331.99, 2443.3], [2360.05, 2471.2], [2367.1, 2477.6]], "length": 49.1}, {"u": 7189398145, "v": 1179967125, "oneway": false, "points": [[-749.15, -1166.27], [-722.13, -1144.21], [-715.02, -1138.03], [-709.56, -1130.35], [-707.63, -1124.3], [-707.95, -1119.94], [-709.62, -1117.4], [-710.88, -1115.5], [-728.63, -1094.08], [-735.71, -1083.37], [-762.71, -1042.75], [-766.24, -1040.47], [-769.17, -1039.39], [-772.12, -1039.29], [-775.09, -1040.35], [-777.79, -1042.4], [-794.23, -1061.95], [-825.0, -1089.49]], "length": 242.85}, {"u": 7189398145, "v": 13056348946, "oneway": true, "points": [[-749.15, -1166.27], [-754.56, -1166.83], [-759.04, -1168.22], [-761.75, -1169.79], [-769.71, -1177.53], [-773.47, -1180.94], [-775.24, -1182.54], [-777.9, -1184.5], [-781.36, -1186.12]], "length": 38.95}, {"u": 7189398161, "v": 13056348945, "oneway": true, "points": [[-810.51, -1175.11], [-796.96, -1185.46], [-789.61, -1189.98], [-786.6, -1191.33], [-783.57, -1191.91], [-780.27, -1192.01], [-776.69, -1191.34]], "length": 39.01}, {"u": 7189398161, "v": 1191535148, "oneway": true, "points": [[-810.51, -1175.11], [-748.55, -1242.27], [-741.11, -1250.31], [-738.94, -1252.66], [-733.97, -1258.05]], "length": 112.86}, {"u": 8174660902, "v": 1182471954, "oneway": true, "points": [[-429.9, -848.14], [-426.13, -847.53], [-421.31, -846.25], [-416.86, -844.42], [-409.06, -839.51], [-399.36, -831.11], [-382.87, -816.13], [-377.76, -811.5], [-362.68, -797.8], [-353.51, -789.46], [-324.61, -763.22], [-321.17, -760.09], [-318.31, -757.45]], "length": 145.18}, {"u": 8316813421, "v": 1850006061, "oneway": false, "points": [[-3036.36, 158.26], [-2902.11, 153.12]], "length": 134.35}, {"u": 8316813421, "v": 53486863, "oneway": false, "points": [[-3036.36, 158.26], [-3036.65, 149.32], [-3039.3, 65.92], [-3039.38, 63.42], [-3039.76, 57.95], [-3039.89, 56.7], [-3039.94, 54.79], [-3038.9, 53.43], [-3037.67, 53.1], [-2985.84, 51.17], [-2961.51, 49.99], [-2943.35, 49.71]], "length": 200.92}, {"u": 8729846828, "v": 53667521, "oneway": false, "points": [[183.68, 458.8], [190.4, 464.89], [193.03, 467.26], [229.92, 500.21], [241.24, 510.33], [282.96, 547.59], [289.42, 553.36], [324.58, 585.04], [327.2, 587.2], [334.47, 593.93]], "length": 202.49}, {"u": 8729846828, "v": 53425693, "oneway": true, "points": [[183.68, 458.8], [184.68, 457.68], [195.47, 445.52], [244.85, 389.88], [250.56, 383.27]], "length": 100.89}, {"u": 8868957845, "v": 1179459735, "oneway": true, "points": [[-1265.49, -1026.24], [-1264.6, -1021.63], [-1264.56, -1011.58], [-1267.01, -1005.62], [-1274.25, -1005.39], [-1297.35, -1005.34], [-1308.02, -1006.11], [-1357.43, -1005.87], [-1363.39, -1005.51], [-1383.5, -1005.84], [-1399.9, -1008.8], [-1442.21, -1016.58]], "length": 197.41}, {"u": 8868957845, "v": 11603196290, "oneway": false, "points": [[-1265.49, -1026.24], [-1265.49, -1033.13], [-1265.86, -1081.42], [-1265.56, -1084.87], [-1265.02, -1088.35], [-1264.36, -1091.5], [-1263.55, -1094.61], [-1262.56, -1097.61], [-1261.48, -1100.34], [-1260.32, -1102.77], [-1259.07, -1105.1], [-1257.62, -1107.31], [-1256.22, -1109.12], [-1254.58, -1110.96], [-1244.73, -1121.72], [-1237.56, -1129.41]], "length": 112.54}, {"u": 9146885459, "v": 53473027, "oneway": false, "points": [[-1297.75, -2612.84], [-1299.39, -2624.58], [-1300.44, -2633.05], [-1300.6, -2635.83], [-1303.27, -2695.43], [-1305.46, -2744.16], [-1306.51, -2767.67], [-1308.24, -2806.22], [-1310.72, -2838.79], [-1312.42, -2861.12], [-1312.74, -2863.52], [-1314.08, -2873.63]], "length": 261.42}, {"u": 9146885459, "v": 53473010, "oneway": false, "points": [[-1297.75, -2612.84], [-1295.56, -2593.63], [-1294.48, -2590.2], [-1285.04, -2560.24], [-1276.02, -2531.61], [-1275.87, -2530.37], [-1274.88, -2522.13], [-1274.6, -2519.88], [-1273.67, -2512.23], [-1272.54, -2483.55], [-1271.39, -2454.72], [-1270.6, -2434.88], [-1270.19, -2424.41], [-1267.97, -2391.82], [-1266.93, -2376.33]], "length": 239.96}, {"u": 9146885459, "v": 1180187578, "oneway": false, "points": [[-1297.75, -2612.84], [-1289.76, -2613.71], [-1244.82, -2615.73], [-1229.45, -2620.3], [-1216.78, -2625.9], [-1196.86, -2638.85], [-1181.32, -2642.95], [-1150.28, -2646.37], [-1111.29, -2649.65], [-1082.74, -2651.35], [-1068.1, -2650.57], [-1060.82, -2647.78]], "length": 244.16}, {"u": 9146885459, "v": 10829398901, "oneway": false, "points": [[-1297.75, -2612.84], [-1306.94, -2612.51], [-1340.38, -2611.02], [-1348.62, -2610.8], [-1390.22, -2608.98], [-1399.94, -2607.51]], "length": 102.38}, {"u": 10829398901, "v": 9146885459, "oneway": false, "points": [[-1399.94, -2607.51], [-1390.22, -2608.98], [-1348.62, -2610.8], [-1340.38, -2611.02], [-1306.94, -2612.51], [-1297.75, -2612.84]], "length": 102.38}, {"u": 10829398901, "v": 2638675157, "oneway": false, "points": [[-1399.94, -2607.51], [-1401.08, -2617.41], [-1402.49, -2629.64], [-1404.05, -2636.69], [-1415.09, -2675.9], [-1427.13, -2707.74], [-1433.85, -2723.14], [-1450.02, -2755.86], [-1471.99, -2791.07], [-1476.35, -2798.19]], "length": 207.42}, {"u": 10829398901, "v": 2638675190, "oneway": false, "points": [[-1399.94, -2607.51], [-1399.57, -2604.35], [-1399.3, -2598.43], [-1398.09, -2571.84], [-1394.3, -2504.72], [-1393.49, -2497.64], [-1393.02, -2490.14]], "length": 117.6}, {"u": 11205598924, "v": 1706427652, "oneway": true, "points": [[2681.17, 2338.95], [2692.2, 2345.92], [2695.96, 2347.21], [2697.36, 2347.68], [2711.35, 2352.57]], "length": 33.31}, {"u": 11205598924, "v": 53447046, "oneway": false, "points": [[2681.17, 2338.95], [2667.97, 2324.46], [2651.65, 2305.17], [2646.68, 2297.63]], "length": 53.9}, {"u": 11390496552, "v": 316305090, "oneway": false, "points": [[1606.24, 390.84], [1598.85, 401.16], [1581.1, 421.23]], "length": 39.48}, {"u": 11603196290, "v": 1180079551, "oneway": true, "points": [[-1237.56, -1129.41], [-1275.86, -1164.06], [-1365.66, -1245.31]], "length": 172.75}, {"u": 11603196290, "v": 8868957845, "oneway": false, "points": [[-1237.56, -1129.41], [-1244.73, -1121.72], [-1254.58, -1110.96], [-1256.22, -1109.12], [-1257.62, -1107.31], [-1259.07, -1105.1], [-1260.32, -1102.77], [-1261.48, -1100.34], [-1262.56, -1097.61], [-1263.55, -1094.61], [-1264.36, -1091.5], [-1265.02, -1088.35], [-1265.56, -1084.87], [-1265.86, -1081.42], [-1265.49, -1033.13], [-1265.49, -1026.24]], "length": 112.54}, {"u": 11793715342, "v": 53640736, "oneway": true, "points": [[1766.16, 1954.55], [1752.36, 1977.68], [1742.73, 1988.28]], "length": 41.25}, {"u": 11793715342, "v": 53668897, "oneway": false, "points": [[1766.16, 1954.55], [1791.82, 1932.09], [1799.24, 1925.59]], "length": 43.97}, {"u": 12849307402, "v": 1160692043, "oneway": false, "points": [[-336.41, -76.06], [-340.33, -69.33], [-360.81, -46.42], [-368.09, -42.12]], "length": 46.98}, {"u": 12911858844, "v": 53629591, "oneway": false, "points": [[-990.7, -1210.11], [-832.87, -1335.15], [-830.36, -1336.96], [-829.38, -1337.65], [-827.51, -1338.48], [-825.02, -1339.09], [-823.27, -1339.25], [-822.06, -1338.74], [-819.83, -1336.84], [-793.1, -1312.45], [-782.55, -1303.2]], "length": 266.47}, {"u": 12911858844, "v": 53629591, "oneway": false, "points": [[-990.7, -1210.11], [-984.35, -1204.0], [-983.51, -1203.27], [-968.33, -1190.12], [-944.5, -1168.07], [-935.31, -1159.95], [-925.27, -1151.03], [-922.42, -1149.43], [-920.29, -1150.06], [-905.84, -1167.02], [-787.49, -1297.75], [-782.55, -1303.2]], "length": 299.64}, {"u": 12911858844, "v": 917880340, "oneway": false, "points": [[-990.7, -1210.11], [-1016.07, -1189.76], [-1048.49, -1164.0], [-1050.73, -1160.8], [-1050.91, -1157.64], [-1050.44, -1155.37], [-1049.31, -1153.14], [-1047.33, -1150.71], [-1029.99, -1134.28], [-1019.35, -1125.57], [-1011.68, -1118.23], [-974.24, -1084.06], [-966.26, -1076.79], [-956.29, -1067.47], [-938.83, -1052.19], [-936.59, -1050.23], [-929.84, -1043.85]], "length": 247.81}, {"u": 12911858894, "v": 2634693278, "oneway": false, "points": [[-1427.95, -1732.91], [-1424.87, -1612.63]], "length": 120.31}, {"u": 12911858894, "v": 53444545, "oneway": false, "points": [[-1427.95, -1732.91], [-1427.86, -1747.79], [-1427.24, -1757.26], [-1425.09, -1767.66], [-1419.79, -1781.62], [-1416.76, -1787.69], [-1383.75, -1848.09], [-1378.99, -1856.89], [-1342.98, -1923.17], [-1317.57, -1977.69], [-1297.65, -2008.04], [-1280.79, -2027.98]], "length": 333.54}, {"u": 12911858894, "v": 1179795960, "oneway": false, "points": [[-1427.95, -1732.91], [-1433.94, -1732.78], [-1466.34, -1732.15], [-1469.95, -1732.08], [-1497.61, -1731.55], [-1506.18, -1731.39]], "length": 78.24}, {"u": 13009756501, "v": 53521155, "oneway": false, "points": [[-2798.56, -870.04], [-2805.64, -870.96], [-2808.54, -873.03], [-2812.96, -876.17], [-2836.3, -888.29], [-2850.15, -893.79], [-2862.61, -896.65], [-2875.05, -898.18], [-2889.41, -898.78], [-2949.85, -895.98], [-2957.74, -895.74]], "length": 165.41}, {"u": 13009756501, "v": 53421608, "oneway": false, "points": [[-2798.56, -870.04], [-2798.97, -902.92], [-2799.46, -921.19], [-2800.14, -946.16], [-2800.81, -967.67]], "length": 97.65}, {"u": 13009756501, "v": 2298789030, "oneway": false, "points": [[-2798.56, -870.04], [-2797.49, -818.59], [-2792.51, -810.37]], "length": 61.07}, {"u": 13018504178, "v": 1192150413, "oneway": true, "points": [[605.17, 11.3], [607.16, 11.79], [636.29, 18.99], [668.16, 27.51], [695.92, 36.41], [703.22, 38.96], [716.83, 46.31], [729.2, 56.27], [740.78, 68.77], [772.52, 95.73], [776.76, 99.38], [780.89, 102.54]], "length": 202.75}, {"u": 13030502563, "v": 2987035532, "oneway": false, "points": [[-2497.45, -847.71], [-2478.46, -831.93], [-2467.4, -822.56]], "length": 39.19}, {"u": 13030502563, "v": 13030502567, "oneway": false, "points": [[-2497.45, -847.71], [-2507.72, -851.95], [-2514.82, -857.65], [-2519.79, -861.77], [-2528.66, -869.12], [-2547.63, -885.31], [-2550.73, -888.0], [-2553.58, -894.99]], "length": 74.79}, {"u": 13030502563, "v": 13030502564, "oneway": false, "points": [[-2497.45, -847.71], [-2502.94, -857.4], [-2509.99, -863.46], [-2515.36, -868.15], [-2516.77, -869.34]], "length": 29.41}, {"u": 13030502564, "v": 53534017, "oneway": true, "points": [[-2516.77, -869.34], [-2512.89, -873.76], [-2511.05, -875.86], [-2493.55, -895.71], [-2486.01, -904.27], [-2460.74, -934.4], [-2454.97, -940.76]], "length": 94.45}, {"u": 13030502564, "v": 13030502563, "oneway": false, "points": [[-2516.77, -869.34], [-2515.36, -868.15], [-2509.99, -863.46], [-2502.94, -857.4], [-2497.45, -847.71]], "length": 29.41}, {"u": 13030502564, "v": 13030502567, "oneway": false, "points": [[-2516.77, -869.34], [-2523.52, -874.88], [-2542.39, -891.44], [-2545.33, -893.86], [-2553.58, -894.99]], "length": 45.97}, {"u": 13030502567, "v": 53462362, "oneway": false, "points": [[-2553.58, -894.99], [-2556.53, -897.51]], "length": 3.88}, {"u": 13030502567, "v": 13030502563, "oneway": false, "points": [[-2553.58, -894.99], [-2550.73, -888.0], [-2547.63, -885.31], [-2528.66, -869.12], [-2519.79, -861.77], [-2514.82, -857.65], [-2507.72, -851.95], [-2497.45, -847.71]], "length": 74.79}, {"u": 13030502567, "v": 13030502564, "oneway": false, "points": [[-2553.58, -894.99], [-2545.33, -893.86], [-2542.39, -891.44], [-2523.52, -874.88], [-2516.77, -869.34]], "length": 45.97}, {"u": 13056348945, "v": 13056348946, "oneway": true, "points": [[-776.69, -1191.34], [-781.36, -1186.12]], "length": 7.0}, {"u": 13056348945, "v": 7189398145, "oneway": true, "points": [[-776.69, -1191.34], [-773.39, -1190.3], [-769.79, -1188.48], [-753.59, -1172.89], [-751.38, -1169.96], [-749.15, -1166.27]], "length": 37.97}, {"u": 13056348946, "v": 13056348947, "oneway": true, "points": [[-781.36, -1186.12], [-850.69, -1111.91]], "length": 101.56}, {"u": 13056348947, "v": 1179967125, "oneway": false, "points": [[-850.69, -1111.91], [-844.11, -1105.87], [-842.99, -1104.91], [-825.0, -1089.49]], "length": 34.1}, {"u": 13056348947, "v": 13056348949, "oneway": true, "points": [[-850.69, -1111.91], [-914.57, -1041.12], [-919.88, -1035.08]], "length": 103.39}, {"u": 13056348949, "v": 917880340, "oneway": false, "points": [[-919.88, -1035.08], [-929.84, -1043.85]], "length": 13.28}, {"u": 13056348949, "v": 1180120617, "oneway": true, "points": [[-919.88, -1035.08], [-925.36, -1028.16], [-942.94, -1008.8], [-969.44, -981.23], [-976.44, -974.39], [-984.87, -967.03]], "length": 94.2}, {"u": 13056348949, "v": 53493140, "oneway": false, "points": [[-919.88, -1035.08], [-913.44, -1029.36], [-911.09, -1027.27], [-893.55, -1011.2]], "length": 35.54}, {"u": 13069954941, "v": 53472474, "oneway": true, "points": [[-766.34, -202.63], [-796.36, -168.83], [-803.3, -163.58]], "length": 53.91}, {"u": 13069954941, "v": 1181378741, "oneway": true, "points": [[-766.34, -202.63], [-779.38, -195.97], [-783.01, -192.3], [-786.68, -189.4], [-790.78, -187.04], [-794.32, -185.81], [-797.51, -184.99], [-800.95, -184.52], [-804.67, -184.31], [-808.44, -184.48], [-811.78, -185.1], [-815.23, -186.0], [-818.63, -187.53], [-834.19, -197.94], [-847.51, -203.54]], "length": 91.09}, {"u": 13091071866, "v": 53426174, "oneway": true, "points": [[186.73, -264.0], [183.13, -253.44], [173.24, -242.92], [146.37, -212.43], [138.27, -209.53]], "length": 74.85}, {"u": 13091071866, "v": 53426175, "oneway": false, "points": [[186.73, -264.0], [198.08, -276.49], [203.48, -281.13]], "length": 23.99}, {"u": 13132340420, "v": 366215894, "oneway": true, "points": [[546.0, 462.64], [576.23, 490.58], [607.32, 518.56], [624.16, 533.18], [639.26, 546.52], [644.33, 551.1]], "length": 132.28}, {"u": 13132340420, "v": 53423470, "oneway": true, "points": [[546.0, 462.64], [551.97, 475.44], [563.87, 489.13], [594.78, 519.03], [619.53, 542.42], [623.28, 545.78], [625.99, 548.1], [627.56, 549.62], [629.2, 551.72], [631.01, 554.6], [632.06, 556.89], [632.55, 559.21], [632.74, 560.53], [632.89, 562.13], [632.89, 563.66], [632.63, 565.35]], "length": 137.25}, {"u": 13146093508, "v": 2859302272, "oneway": false, "points": [[-1359.83, -874.56], [-1361.63, -874.54], [-1363.57, -874.46]], "length": 3.74}, {"u": 13146093508, "v": 1179956625, "oneway": true, "points": [[-1359.83, -874.56], [-1355.15, -876.8], [-1354.37, -877.15], [-1348.86, -878.49], [-1315.97, -879.64], [-1258.05, -882.72], [-1237.77, -884.16], [-1222.91, -885.95], [-1208.0, -889.06], [-1192.92, -894.1], [-1171.32, -903.02], [-1095.16, -933.13]], "length": 274.33}, {"u": 13151160466, "v": 53508174, "oneway": false, "points": [[-919.51, -853.78], [-918.31, -852.73], [-915.02, -849.84], [-903.06, -839.33], [-901.27, -837.75], [-866.17, -806.89], [-855.37, -797.4], [-843.76, -787.19], [-834.17, -778.76], [-816.98, -763.66], [-809.4, -756.99]], "length": 146.6}, {"u": 13151160466, "v": 1180120831, "oneway": true, "points": [[-919.51, -853.78], [-928.63, -854.45], [-947.54, -870.66], [-956.47, -878.46], [-964.24, -885.34], [-980.25, -899.32]], "length": 77.54}, {"u": 13191853166, "v": 53441265, "oneway": false, "points": [[-1023.89, -26.42], [-1023.86, -25.87], [-1023.72, -22.31], [-1022.46, 9.12], [-1022.32, 12.61], [-1021.97, 21.28]], "length": 47.73}, {"u": 13202666793, "v": 53640736, "oneway": true, "points": [[1731.0, 1978.06], [1742.73, 1988.28]], "length": 15.55}, {"u": 13202666793, "v": 11793715342, "oneway": true, "points": [[1731.0, 1978.06], [1741.62, 1968.46], [1753.55, 1957.67], [1766.16, 1954.55]], "length": 43.39}, {"u": 13206778050, "v": 13202666793, "oneway": true, "points": [[1719.07, 1991.73], [1731.0, 1978.06]], "length": 18.14}, {"u": 13206778050, "v": 1142903570, "oneway": true, "points": [[1719.07, 1991.73], [1713.5, 1986.64], [1704.52, 1978.38], [1697.32, 1971.87], [1680.82, 1956.87], [1668.41, 1945.98], [1660.01, 1938.67], [1657.53, 1936.61], [1636.69, 1919.3]], "length": 109.71}, {"u": 13324853243, "v": 53615252, "oneway": false, "points": [[-311.12, -302.43], [-298.43, -291.6], [-295.13, -288.74], [-287.35, -281.9]], "length": 31.41}, {"u": 13324853243, "v": 917593109, "oneway": true, "points": [[-311.12, -302.43], [-313.44, -302.36], [-315.77, -302.37], [-317.98, -302.9], [-320.11, -303.99], [-358.61, -339.38], [-366.22, -346.38]], "length": 71.95}, {"u": 13324853247, "v": 917593109, "oneway": false, "points": [[-359.73, -353.46], [-366.22, -346.38]], "length": 9.6}, {"u": 13324853247, "v": 53467500, "oneway": false, "points": [[-359.73, -353.46], [-351.0, -362.95], [-279.79, -440.57], [-273.15, -447.8]], "length": 128.05}, {"u": 13324853247, "v": 13324853243, "oneway": true, "points": [[-359.73, -353.46], [-352.01, -346.55], [-336.43, -332.61], [-324.57, -322.0], [-312.6, -311.28], [-311.29, -309.31], [-310.59, -307.22], [-310.62, -304.77], [-311.12, -302.43]], "length": 72.65}, {"u": 13334632578, "v": 2713279290, "oneway": false, "points": [[-320.19, 98.5], [-287.56, 63.06]], "length": 48.17}, {"u": 13334632578, "v": 2713279291, "oneway": true, "points": [[-320.19, 98.5], [-319.89, 101.94], [-320.4, 105.64], [-321.49, 109.25], [-323.76, 112.92], [-328.93, 118.73], [-339.29, 119.78]], "length": 33.47}, {"u": 13334632600, "v": 5468393309, "oneway": false, "points": [[-425.39, 216.03], [-432.49, 223.89], [-442.29, 234.73], [-446.77, 239.69], [-452.81, 246.36], [-456.05, 249.95], [-468.32, 263.52], [-474.35, 270.2]], "length": 73.02}, {"u": 13334632600, "v": 1701854143, "oneway": true, "points": [[-425.39, 216.03], [-425.52, 213.99], [-425.18, 212.05], [-424.39, 209.84], [-423.06, 207.48], [-421.03, 204.48], [-416.4, 198.84], [-406.8, 194.99]], "length": 30.32}, {"u": 13334818837, "v": 1188394186, "oneway": false, "points": [[-259.54, -757.03], [-226.82, -792.96]], "length": 48.59}, {"u": 13334818837, "v": 1182471991, "oneway": false, "points": [[-259.54, -757.03], [-267.98, -748.28]], "length": 12.16}, {"u": 13334818837, "v": 4173797761, "oneway": true, "points": [[-259.54, -757.03], [-267.61, -742.47], [-269.74, -737.44], [-270.72, -733.76], [-271.15, -730.59], [-271.16, -728.35], [-271.08, -725.53], [-270.53, -722.07], [-269.73, -719.13], [-268.75, -716.17], [-265.01, -707.51]], "length": 53.28}]} \ No newline at end of file diff --git a/src/UIManager.js b/src/UIManager.js index b344b2d..fd5779c 100644 --- a/src/UIManager.js +++ b/src/UIManager.js @@ -9,6 +9,10 @@ export class UIManager { this.btnSave = document.getElementById('btn-save'); this.btnDiscard = document.getElementById('btn-discard'); this.btnToggle = document.getElementById('ui-toggle'); + this.btnZoning = document.getElementById('btn-zoning'); + + // We need a callback to main.js to actually change colors + this.onToggleZoning = null; this.initListeners(); } @@ -29,6 +33,17 @@ export class UIManager { this.btnToggle.addEventListener('click', () => { this.elContainer.classList.toggle('hidden'); }); + + this.btnZoning.addEventListener('click', () => { + const isActive = this.btnZoning.classList.toggle('active'); + this.btnZoning.style.background = isActive ? '#4B5563' : ''; // Darken when active + this.btnZoning.style.color = isActive ? 'white' : ''; + + if (this.onToggleZoning) { + this.onToggleZoning(isActive); + } + }); + } updateStats(lengthInMeters) { diff --git a/src/main.js b/src/main.js index 899b5b6..73f631f 100644 --- a/src/main.js +++ b/src/main.js @@ -14,7 +14,9 @@ const SETTINGS = { colors: { background: 0xE6E6E6, ground: 0xDDDDDD, - building: 0xFFFFFF, + zoningRes: new THREE.Color(0xA855F7), + zoningCom: new THREE.Color(0x3B82F6), + building: new THREE.Color(0xFFFFFF), water: 0xAADAFF, park: 0xC3E6CB, road: 0x999999, @@ -57,6 +59,10 @@ function init() { uiManager.updateStats(dist); }; + uiManager.onToggleZoning = (isActive) => { + updateBuildingColors(isActive); + }; + // 3. Data Load Promise.all([ fetch(SETTINGS.files.visual).then(r => r.json()), @@ -70,6 +76,38 @@ function init() { animate(); } +function updateBuildingColors(showZoning) { + scene.traverse((obj) => { + // We tagged buildings with userData in renderCity (see below) + if (obj.name === 'BUILDING_MESH') { + + if (!showZoning) { + // Revert to white + obj.material.color.setHex(SETTINGS.colors.building.getHex()); + return; + } + + // Get Data + const data = obj.userData.cityData; // We need to ensure we save this during creation + if (!data) return; + + if (data.type === 'residential') { + // Lerp from White to Purple based on density + const color = SETTINGS.colors.building.clone(); + color.lerp(SETTINGS.colors.zoningRes, data.density || 0.5); + obj.material.color.copy(color); + } + else if (data.type === 'commercial') { + // Lerp from White to Blue + const color = SETTINGS.colors.building.clone(); + color.lerp(SETTINGS.colors.zoningCom, data.density || 0.5); + obj.material.color.copy(color); + } + } + }); +} + + // ========================================== // 2. Scene Setup // ========================================== @@ -97,6 +135,10 @@ function setupScene() { dirLight.shadow.camera.right = 1500; dirLight.shadow.camera.top = 1500; dirLight.shadow.camera.bottom = -1500; + dirLight.shadow.camera.near = 0.5; + dirLight.shadow.camera.far = 3000; // Must be > 1225 to reach the ground + dirLight.shadow.bias = -0.01; // Clean up shadow artifacts + scene.add(dirLight); const plane = new THREE.Mesh( @@ -168,12 +210,60 @@ function renderCity(data) { scene.add(mesh); }; + createBuildingLayer(data.buildings); + createLayer(data.water, SETTINGS.colors.water, 0, 0.1, false); createLayer(data.parks, SETTINGS.colors.park, 0, 0.2, false); createLayer(data.roads, SETTINGS.colors.road, 0, 0.3, false); - createLayer(data.buildings, SETTINGS.colors.building, 10, 0, true); + } +function createBuildingLayer(buildings) { + if (!buildings || !buildings.length) return; + + + const mat = new THREE.MeshStandardMaterial({ + color: SETTINGS.colors.building, + roughness: 0.6, + side: THREE.DoubleSide, + shadowSide: THREE.DoubleSide + + }); + + buildings.forEach(b => { + const shape = new THREE.Shape(); + if (b.shape.outer.length < 3) return; + shape.moveTo(b.shape.outer[0][0], b.shape.outer[0][1]); + for (let i = 1; i < b.shape.outer.length; i++) shape.lineTo(b.shape.outer[i][0], b.shape.outer[i][1]); + + if (b.shape.holes) { + b.shape.holes.forEach(h => { + const path = new THREE.Path(); + path.moveTo(h[0][0], h[0][1]); + for (let k = 1; k < h.length; k++) path.lineTo(h[k][0], h[k][1]); + shape.holes.push(path); + }); + } + + const geom = new THREE.ExtrudeGeometry(shape, { + depth: b.height, + bevelEnabled: false + }); + geom.rotateX(-Math.PI / 2); + + const mesh = new THREE.Mesh(geom, mat.clone()); + mesh.castShadow = true; + mesh.receiveShadow = true; + + // Store metadata for the Zoning Toggle + mesh.name = 'BUILDING_MESH'; + mesh.userData.cityData = b.data; + + scene.add(mesh); + }); +} + + function animate() { requestAnimationFrame(animate); controls.update();